summaryrefslogtreecommitdiff
path: root/internal
diff options
context:
space:
mode:
Diffstat (limited to 'internal')
-rw-r--r--internal/calendar/oracle_ef_test.go116
-rw-r--r--internal/calendar/testdata/oracle-ef.json4382
2 files changed, 4498 insertions, 0 deletions
diff --git a/internal/calendar/oracle_ef_test.go b/internal/calendar/oracle_ef_test.go
new file mode 100644
index 0000000..ce4badd
--- /dev/null
+++ b/internal/calendar/oracle_ef_test.go
@@ -0,0 +1,116 @@
+package calendar_test
+
+import (
+ "encoding/json"
+ "os"
+ "sort"
+ "strings"
+ "testing"
+ "time"
+
+ "github.com/lukaszkasprzak/lectio/internal/caldata"
+ "github.com/lukaszkasprzak/lectio/internal/calendar"
+)
+
+type efOracleDay struct {
+ Tempora string `json:"tempora"`
+ Title string `json:"title"`
+ Rank int `json:"rank"`
+ Colour string `json:"colour"`
+}
+
+// efSeasonFromString maps a missalemeum tempora/title phrase (for a day in the
+// given month) to lectio's EF season. Order matters. Two position-dependent
+// subtleties: the Whit-octave weekdays ("Monday after Pentecost") are still
+// Paschaltide, so only "Sunday after Pentecost" is Time after Pentecost; and the
+// resumed Sundays after Epiphany (celebrated in autumn) sit within Time after
+// Pentecost, so an "after Epiphany" phrase in the second half of the year maps
+// there, not to Time after Epiphany.
+func efSeasonFromString(s string, month int) calendar.Season {
+ s = strings.ToLower(s)
+ has := func(subs ...string) bool {
+ for _, sub := range subs {
+ if strings.Contains(s, sub) {
+ return true
+ }
+ }
+ return false
+ }
+ switch {
+ case has("vigil of christmas"): // last day of Advent
+ return calendar.Advent
+ case has("advent"):
+ return calendar.Advent
+ case has("sunday after pentecost"), has("trinity", "christ the king", "corpus christi"):
+ return calendar.TimeAfterPentecost
+ case has("after epiphany", "epiphany"):
+ if month >= 6 { // resumed Epiphany Sundays, celebrated within Time after Pentecost
+ return calendar.TimeAfterPentecost
+ }
+ return calendar.TimeAfterEpiphany
+ case has("passion", "palm", "holy week", "maundy", "good friday", "holy saturday"):
+ return calendar.Passiontide
+ case has("septuagesima", "sexagesima", "quinquagesima"):
+ return calendar.Septuagesima
+ case has("ash wednesday", "lent"):
+ return calendar.Lent
+ case has("pentecost", "ascension", "rogation", "after easter", "easter", "low sunday", "paschal", "whit"):
+ return calendar.Easter_ // incl. the Whit octave (Mon-Sat after Pentecost)
+ case has("christmas", "nativity", "circumcision", "holy name", "octave day of christ"):
+ return calendar.Christmas
+ default:
+ return "" // unknown phrase -> skip this day
+ }
+}
+
+// TestOracleEF diffs the EF engine against missalemeum (Divinum Officium data).
+// Season is asserted strictly (validates temporalEF); rank/colour are reported
+// informationally (partial 1962 sanctoral).
+func TestOracleEF(t *testing.T) {
+ raw, err := os.ReadFile("testdata/oracle-ef.json")
+ if err != nil {
+ t.Skip("EF oracle snapshot missing; run scripts/build-oracle-ef.sh")
+ }
+ var oracle map[string]efOracleDay
+ if err := json.Unmarshal(raw, &oracle); err != nil {
+ t.Fatal(err)
+ }
+ sel := calendar.DefaultSelection()
+ sel.Form = "old"
+ layers := []calendar.Layer{caldata.Tridentine()}
+
+ dates := make([]string, 0, len(oracle))
+ for d := range oracle {
+ dates = append(dates, d)
+ }
+ sort.Strings(dates)
+
+ var seasonMiss, skipped, total int
+ shown := 0
+ for _, date := range dates {
+ od := oracle[date]
+ src := od.Tempora
+ if src == "" {
+ src = od.Title
+ }
+ day, _ := time.Parse("2006-01-02", date)
+ want := efSeasonFromString(src, int(day.Month()))
+ if want == "" {
+ skipped++
+ continue
+ }
+ total++
+ got := calendar.Compute(day.UTC(), sel, layers)
+ if got.Season != want {
+ seasonMiss++
+ if shown < 25 {
+ t.Errorf("%s: EF season got %q want %q (from %q)", date, got.Season, want, src)
+ shown++
+ }
+ }
+ }
+ t.Logf("EF oracle: %d checked, %d skipped(unmapped), %d season mismatches", total, skipped, seasonMiss)
+ if seasonMiss > 0 {
+ t.Fatalf("%d/%d EF season mismatches vs missalemeum — temporalEF is wrong", seasonMiss, total)
+ }
+}
diff --git a/internal/calendar/testdata/oracle-ef.json b/internal/calendar/testdata/oracle-ef.json
new file mode 100644
index 0000000..3ddf10c
--- /dev/null
+++ b/internal/calendar/testdata/oracle-ef.json
@@ -0,0 +1,4382 @@
+{
+ "2025-01-01": {
+ "tempora": "",
+ "title": "Octave Day of Christmas",
+ "rank": 1,
+ "colour": "w"
+ },
+ "2025-01-06": {
+ "tempora": "",
+ "title": "Epiphany of the Lord",
+ "rank": 1,
+ "colour": "w"
+ },
+ "2025-01-10": {
+ "tempora": "",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2025-01-07": {
+ "tempora": "",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2025-01-02": {
+ "tempora": "",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2025-01-03": {
+ "tempora": "",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2025-01-05": {
+ "tempora": "",
+ "title": "Holy Name of Jesus",
+ "rank": 2,
+ "colour": "w"
+ },
+ "2025-01-09": {
+ "tempora": "",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2025-01-12": {
+ "tempora": "",
+ "title": "The Holy Family: Jesus, Mary & Joseph",
+ "rank": 2,
+ "colour": "w"
+ },
+ "2025-01-20": {
+ "tempora": "Feria II after II Sunday after Epiphany",
+ "title": "Sts. Fabian & Sebastian",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2025-01-16": {
+ "tempora": "Feria V after Epiphany",
+ "title": "St. Marcellus I",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2025-01-04": {
+ "tempora": "",
+ "title": "II Mass of the B. V. M. – Vultum Tuum",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2025-01-13": {
+ "tempora": "Feria II after Epiphany",
+ "title": "Commemoration of the Baptism of the Lord",
+ "rank": 2,
+ "colour": "w"
+ },
+ "2025-01-19": {
+ "tempora": "",
+ "title": "II Sunday after Epiphany",
+ "rank": 2,
+ "colour": "g"
+ },
+ "2025-01-08": {
+ "tempora": "",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2025-01-17": {
+ "tempora": "Feria VI after Epiphany",
+ "title": "St. Anthony",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-01-26": {
+ "tempora": "",
+ "title": "III Sunday after Epiphany",
+ "rank": 2,
+ "colour": "g"
+ },
+ "2025-01-25": {
+ "tempora": "Saturday after II Sunday after Epiphany",
+ "title": "Conversion of St. Paul",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-01-11": {
+ "tempora": "",
+ "title": "II Mass of the B. V. M. – Vultum Tuum",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2025-01-21": {
+ "tempora": "Feria III after II Sunday after Epiphany",
+ "title": "St. Agnes",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2025-01-27": {
+ "tempora": "Feria II after III Sunday after Epiphany",
+ "title": "St. John Chrysostom",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-01-22": {
+ "tempora": "Feria IV after II Sunday after Epiphany",
+ "title": "Sts. Vincent & Anastasius",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2025-01-14": {
+ "tempora": "Feria III after Epiphany",
+ "title": "St. Hilary",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-01-31": {
+ "tempora": "Feria VI after III Sunday after Epiphany",
+ "title": "St. John Bosco",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-01-15": {
+ "tempora": "Feria IV after Epiphany",
+ "title": "St. Paul, the First Hermit",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-01-28": {
+ "tempora": "Feria III after III Sunday after Epiphany",
+ "title": "St. Peter Nolasco",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-01-24": {
+ "tempora": "Feria VI after II Sunday after Epiphany",
+ "title": "St. Timothy",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2025-01-18": {
+ "tempora": "Saturday after Epiphany",
+ "title": "II Mass of the B. V. M. – Vultum Tuum",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2025-02-01": {
+ "tempora": "Saturday after III Sunday after Epiphany",
+ "title": "St. Ignatius of Antioch",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2025-01-29": {
+ "tempora": "Feria IV after III Sunday after Epiphany",
+ "title": "St. Francis de Sales",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-02-05": {
+ "tempora": "Feria IV after IV Sunday after Epiphany",
+ "title": "St. Agatha",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2025-02-09": {
+ "tempora": "",
+ "title": "V Sunday after Epiphany",
+ "rank": 2,
+ "colour": "g"
+ },
+ "2025-02-03": {
+ "tempora": "Feria II after IV Sunday after Epiphany",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2025-02-07": {
+ "tempora": "Feria VI after IV Sunday after Epiphany",
+ "title": "St. Romuald",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-02-10": {
+ "tempora": "Feria II after V Sunday after Epiphany",
+ "title": "St. Scholastica",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-02-11": {
+ "tempora": "Feria III after V Sunday after Epiphany",
+ "title": "Our Lady of Lourdes",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-02-16": {
+ "tempora": "",
+ "title": "Septuagesima Sunday",
+ "rank": 2,
+ "colour": "v"
+ },
+ "2025-02-13": {
+ "tempora": "Feria V after V Sunday after Epiphany",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2025-02-02": {
+ "tempora": "IV Sunday after Epiphany",
+ "title": "Purification of the Blessed Virgin Mary",
+ "rank": 2,
+ "colour": "w"
+ },
+ "2025-02-12": {
+ "tempora": "Feria IV after V Sunday after Epiphany",
+ "title": "Seven Holy Servite Founders",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-02-04": {
+ "tempora": "Feria III after IV Sunday after Epiphany",
+ "title": "St. Andrew Corsini",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-01-30": {
+ "tempora": "Feria V after III Sunday after Epiphany",
+ "title": "St. Martina",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2025-01-23": {
+ "tempora": "Feria V after II Sunday after Epiphany",
+ "title": "St. Raymond of Peñafort",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-02-17": {
+ "tempora": "Feria II after Septuagesima",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "v"
+ },
+ "2025-02-20": {
+ "tempora": "Feria V after Septuagesima",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "v"
+ },
+ "2025-02-19": {
+ "tempora": "Feria IV after Septuagesima",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "v"
+ },
+ "2025-02-21": {
+ "tempora": "Feria VI after Septuagesima",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "v"
+ },
+ "2025-02-14": {
+ "tempora": "Feria VI after V Sunday after Epiphany",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2025-02-23": {
+ "tempora": "",
+ "title": "Sexagesima Sunday",
+ "rank": 2,
+ "colour": "v"
+ },
+ "2025-02-08": {
+ "tempora": "Saturday after IV Sunday after Epiphany",
+ "title": "St. John of Matha",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-02-06": {
+ "tempora": "Feria V after IV Sunday after Epiphany",
+ "title": "St. Titus",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-02-25": {
+ "tempora": "Feria III after Sexagesimæ",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "v"
+ },
+ "2025-03-05": {
+ "tempora": "",
+ "title": "Ash Wednesday",
+ "rank": 1,
+ "colour": "v"
+ },
+ "2025-02-24": {
+ "tempora": "Feria II after Sexagesima",
+ "title": "St. Matthias",
+ "rank": 2,
+ "colour": "r"
+ },
+ "2025-02-26": {
+ "tempora": "Feria IV after Sexagesimæ",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "v"
+ },
+ "2025-02-27": {
+ "tempora": "Feria V after Sexagesimæ",
+ "title": "St. Gabriel of Our Lady of Sorrows",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-02-28": {
+ "tempora": "Feria VI after Sexagesimæ",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "v"
+ },
+ "2025-02-22": {
+ "tempora": "Saturday after Septuagesima",
+ "title": "Chair of St. Peter",
+ "rank": 2,
+ "colour": "w"
+ },
+ "2025-03-03": {
+ "tempora": "Feria II after Quinquagesima",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "v"
+ },
+ "2025-03-02": {
+ "tempora": "",
+ "title": "Quinquagesima Sunday",
+ "rank": 2,
+ "colour": "v"
+ },
+ "2025-03-13": {
+ "tempora": "",
+ "title": "Feria V after the I Sunday of Lent",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2025-03-11": {
+ "tempora": "",
+ "title": "Feria III after the I Sunday of Lent",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2025-03-09": {
+ "tempora": "",
+ "title": "I Sunday of Lent",
+ "rank": 1,
+ "colour": "v"
+ },
+ "2025-03-06": {
+ "tempora": "",
+ "title": "Feria V after Ash Wednesday",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2025-02-15": {
+ "tempora": "Saturday after V Sunday after Epiphany",
+ "title": "III Mass of the B. V. M. – Salve, Sancta Parens",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2025-02-18": {
+ "tempora": "Feria III after Septuagesima",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "v"
+ },
+ "2025-03-14": {
+ "tempora": "",
+ "title": "Ember Friday of Lent",
+ "rank": 2,
+ "colour": "v"
+ },
+ "2025-03-16": {
+ "tempora": "",
+ "title": "II Sunday of Lent",
+ "rank": 1,
+ "colour": "v"
+ },
+ "2025-03-01": {
+ "tempora": "Saturday after Sexagesimæ",
+ "title": "III Mass of the B. V. M. – Salve, Sancta Parens",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2025-03-12": {
+ "tempora": "",
+ "title": "Ember Wednesday of Lent",
+ "rank": 2,
+ "colour": "v"
+ },
+ "2025-03-07": {
+ "tempora": "",
+ "title": "Feria VI after Ash Wednesday",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2025-03-10": {
+ "tempora": "",
+ "title": "Feria II after the I Sunday of Lent",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2025-03-20": {
+ "tempora": "",
+ "title": "Feria V after the II Sunday of Lent",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2025-03-04": {
+ "tempora": "Feria III after Quinquagesima",
+ "title": "St. Casimir",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-03-22": {
+ "tempora": "",
+ "title": "Saturday after the II Sunday of Lent",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2025-03-23": {
+ "tempora": "",
+ "title": "III Sunday of Lent",
+ "rank": 1,
+ "colour": "v"
+ },
+ "2025-03-08": {
+ "tempora": "",
+ "title": "Saturday after Ash Wednesday",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2025-03-26": {
+ "tempora": "",
+ "title": "Feria IV after the III Sunday of Lent",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2025-03-30": {
+ "tempora": "",
+ "title": "IV Sunday of Lent",
+ "rank": 1,
+ "colour": "pv"
+ },
+ "2025-03-18": {
+ "tempora": "",
+ "title": "Feria III after the II Sunday of Lent",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2025-03-19": {
+ "tempora": "Feria IV after the II Sunday of Lent",
+ "title": "St. Joseph, Spouse of the Bl. Virgin Mary",
+ "rank": 1,
+ "colour": "w"
+ },
+ "2025-03-15": {
+ "tempora": "",
+ "title": "Ember Saturday of Lent",
+ "rank": 2,
+ "colour": "v"
+ },
+ "2025-03-29": {
+ "tempora": "",
+ "title": "Saturday after the III Sunday of Lent",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2025-03-25": {
+ "tempora": "Feria III after the III Sunday of Lent",
+ "title": "Annunciation of the Blessed Virgin Mary",
+ "rank": 1,
+ "colour": "w"
+ },
+ "2025-04-06": {
+ "tempora": "",
+ "title": "Passion Sunday",
+ "rank": 1,
+ "colour": "v"
+ },
+ "2025-03-31": {
+ "tempora": "",
+ "title": "Feria II after the IV Sunday of Lent",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2025-04-01": {
+ "tempora": "",
+ "title": "Feria III after the IV Sunday of Lent",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2025-03-28": {
+ "tempora": "",
+ "title": "Feria VI after the III Sunday of Lent",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2025-03-24": {
+ "tempora": "",
+ "title": "Feria II after the III Sunday of Lent",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2025-03-21": {
+ "tempora": "",
+ "title": "Feria VI after the II Sunday of Lent",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2025-04-03": {
+ "tempora": "",
+ "title": "Feria V after the IV Sunday of Lent",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2025-04-13": {
+ "tempora": "",
+ "title": "Palm Sunday",
+ "rank": 1,
+ "colour": "rv"
+ },
+ "2025-03-27": {
+ "tempora": "",
+ "title": "Feria V after the III Sunday of Lent",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2025-04-08": {
+ "tempora": "",
+ "title": "Feria III of Passion Week",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2025-03-17": {
+ "tempora": "",
+ "title": "Feria II after the II Sunday of Lent",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2025-04-12": {
+ "tempora": "",
+ "title": "Saturday of Passion Week",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2025-04-10": {
+ "tempora": "",
+ "title": "Feria V of Passion Week",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2025-04-07": {
+ "tempora": "",
+ "title": "Feria II of Passion Week",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2025-04-20": {
+ "tempora": "",
+ "title": "Easter Sunday",
+ "rank": 1,
+ "colour": "w"
+ },
+ "2025-04-09": {
+ "tempora": "",
+ "title": "Feria IV of Passion Week",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2025-04-17": {
+ "tempora": "",
+ "title": "Holy Thursday",
+ "rank": 1,
+ "colour": "w"
+ },
+ "2025-04-14": {
+ "tempora": "",
+ "title": "Feria II of Holy Week",
+ "rank": 1,
+ "colour": "v"
+ },
+ "2025-04-02": {
+ "tempora": "",
+ "title": "Feria IV after the IV Sunday of Lent",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2025-04-11": {
+ "tempora": "",
+ "title": "Feria VI of Passion Week",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2025-04-22": {
+ "tempora": "",
+ "title": "Tuesday in the Octave of Easter",
+ "rank": 1,
+ "colour": "w"
+ },
+ "2025-04-18": {
+ "tempora": "",
+ "title": "Good Friday",
+ "rank": 1,
+ "colour": "bv"
+ },
+ "2025-04-27": {
+ "tempora": "",
+ "title": "Low Sunday",
+ "rank": 1,
+ "colour": "w"
+ },
+ "2025-04-25": {
+ "tempora": "",
+ "title": "Friday in the Octave of Easter",
+ "rank": 1,
+ "colour": "w"
+ },
+ "2025-04-19": {
+ "tempora": "",
+ "title": "Holy Saturday",
+ "rank": 1,
+ "colour": "vw"
+ },
+ "2025-04-23": {
+ "tempora": "",
+ "title": "Wednesday in the Octave of Easter",
+ "rank": 1,
+ "colour": "w"
+ },
+ "2025-04-21": {
+ "tempora": "",
+ "title": "Monday in the Octave of Easter",
+ "rank": 1,
+ "colour": "w"
+ },
+ "2025-04-24": {
+ "tempora": "",
+ "title": "Thursday in the Octave of Easter",
+ "rank": 1,
+ "colour": "w"
+ },
+ "2025-04-28": {
+ "tempora": "Monday after I Sunday after Easter",
+ "title": "St. Paul of the Cross",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-04-26": {
+ "tempora": "",
+ "title": "Saturday in the Octave of Easter",
+ "rank": 1,
+ "colour": "w"
+ },
+ "2025-04-04": {
+ "tempora": "",
+ "title": "Feria VI after the IV Sunday of Lent",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2025-05-04": {
+ "tempora": "",
+ "title": "II Sunday after Easter",
+ "rank": 2,
+ "colour": "w"
+ },
+ "2025-05-01": {
+ "tempora": "Thursday after I Sunday after Easter",
+ "title": "St. Joseph the Workman",
+ "rank": 1,
+ "colour": "w"
+ },
+ "2025-05-02": {
+ "tempora": "Friday after I Sunday after Easter",
+ "title": "St. Athanasius",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-04-15": {
+ "tempora": "",
+ "title": "Feria III of Holy Week",
+ "rank": 1,
+ "colour": "v"
+ },
+ "2025-04-29": {
+ "tempora": "Tuesday after I Sunday after Easter",
+ "title": "St. Peter of Verona",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2025-05-08": {
+ "tempora": "Thursday after II Sunday after Easter",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2025-05-06": {
+ "tempora": "Tuesday after II Sunday after Easter",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2025-04-30": {
+ "tempora": "Wednesday after I Sunday after Easter",
+ "title": "St. Catherine of Siena",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-04-05": {
+ "tempora": "",
+ "title": "Saturday after the IV Sunday of Lent",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2025-04-16": {
+ "tempora": "",
+ "title": "Feria IV of Holy Week",
+ "rank": 1,
+ "colour": "v"
+ },
+ "2025-05-05": {
+ "tempora": "Monday after II Sunday after Easter",
+ "title": "St. Pius V",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-05-12": {
+ "tempora": "Monday after III Sunday after Easter",
+ "title": "Sts. Nereus, Achilleus, Domitilla, & Pancras",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2025-05-09": {
+ "tempora": "Friday after II Sunday after Easter",
+ "title": "St. Gregory of Nazianzen",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-05-07": {
+ "tempora": "Wednesday after II Sunday after Easter",
+ "title": "St. Stanislaus",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2025-05-13": {
+ "tempora": "Tuesday after III Sunday after Easter",
+ "title": "St. Robert Bellarmine",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-05-18": {
+ "tempora": "",
+ "title": "IV Sunday after Easter",
+ "rank": 2,
+ "colour": "w"
+ },
+ "2025-05-11": {
+ "tempora": "",
+ "title": "III Sunday after Easter",
+ "rank": 2,
+ "colour": "w"
+ },
+ "2025-05-22": {
+ "tempora": "Thursday after IV Sunday after Easter",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2025-05-21": {
+ "tempora": "Wednesday after IV Sunday after Easter",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2025-05-03": {
+ "tempora": "Saturday after I Sunday after Easter",
+ "title": "IV Mass of the B. V. M. – Salve, Sancta Parens",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2025-05-23": {
+ "tempora": "Friday after IV Sunday after Easter",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2025-05-14": {
+ "tempora": "Wednesday after III Sunday after Easter",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2025-05-29": {
+ "tempora": "",
+ "title": "Ascension of the Lord",
+ "rank": 1,
+ "colour": "w"
+ },
+ "2025-05-25": {
+ "tempora": "",
+ "title": "V Sunday after Easter",
+ "rank": 2,
+ "colour": "w"
+ },
+ "2025-05-15": {
+ "tempora": "Thursday after III Sunday after Easter",
+ "title": "St. John Baptist de la Salle",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-05-17": {
+ "tempora": "Saturday after III Sunday after Easter",
+ "title": "St. Paschal Baylon",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-05-20": {
+ "tempora": "Tuesday after IV Sunday after Easter",
+ "title": "St. Bernardine of Siena",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-05-10": {
+ "tempora": "Saturday after II Sunday after Easter",
+ "title": "St. Antoninus",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-05-19": {
+ "tempora": "Monday after IV Sunday after Easter",
+ "title": "St. Peter Celestine",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-05-26": {
+ "tempora": "The Minor Litanies – Rogations",
+ "title": "St. Philip Neri",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-06-01": {
+ "tempora": "",
+ "title": "Sunday after the Ascension",
+ "rank": 2,
+ "colour": "w"
+ },
+ "2025-05-30": {
+ "tempora": "Feria VI after the Ascension",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2025-06-08": {
+ "tempora": "",
+ "title": "Pentecost Sunday",
+ "rank": 1,
+ "colour": "r"
+ },
+ "2025-05-28": {
+ "tempora": "",
+ "title": "Vigil of the Ascension",
+ "rank": 2,
+ "colour": "w"
+ },
+ "2025-06-03": {
+ "tempora": "Feria III after the Ascension",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2025-06-07": {
+ "tempora": "",
+ "title": "Saturday after the Ascension",
+ "rank": 1,
+ "colour": "r"
+ },
+ "2025-05-24": {
+ "tempora": "Saturday after IV Sunday after Easter",
+ "title": "IV Mass of the B. V. M. – Salve, Sancta Parens",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2025-05-31": {
+ "tempora": "Saturday after the Ascension",
+ "title": "Queenship of the Blessed Virgin Mary",
+ "rank": 2,
+ "colour": "w"
+ },
+ "2025-06-05": {
+ "tempora": "Feria V after the Ascension",
+ "title": "St. Boniface",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2025-06-09": {
+ "tempora": "",
+ "title": "Monday after Pentecost",
+ "rank": 1,
+ "colour": "r"
+ },
+ "2025-05-16": {
+ "tempora": "Friday after III Sunday after Easter",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2025-06-04": {
+ "tempora": "Feria IV after the Ascension",
+ "title": "St. Francis Caracciolo",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-06-15": {
+ "tempora": "",
+ "title": "Trinity Sunday",
+ "rank": 1,
+ "colour": "w"
+ },
+ "2025-06-10": {
+ "tempora": "",
+ "title": "Tuesday after Pentecost",
+ "rank": 1,
+ "colour": "r"
+ },
+ "2025-05-27": {
+ "tempora": "The Minor Litanies – Rogations",
+ "title": "St. Bede the Venerable",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-06-02": {
+ "tempora": "Feria II after the Ascension",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2025-06-13": {
+ "tempora": "",
+ "title": "Ember Friday of Pentecost",
+ "rank": 1,
+ "colour": "r"
+ },
+ "2025-06-12": {
+ "tempora": "",
+ "title": "Thursday after Pentecost",
+ "rank": 1,
+ "colour": "r"
+ },
+ "2025-06-22": {
+ "tempora": "",
+ "title": "II Sunday after Pentecost",
+ "rank": 2,
+ "colour": "g"
+ },
+ "2025-06-16": {
+ "tempora": "Feria II after I Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2025-06-11": {
+ "tempora": "",
+ "title": "Ember Wednesday of Pentecost",
+ "rank": 1,
+ "colour": "r"
+ },
+ "2025-06-23": {
+ "tempora": "Feria II after II Sunday after Pentecost",
+ "title": "Vigil of the Nativity of St. John the Baptist",
+ "rank": 2,
+ "colour": "v"
+ },
+ "2025-06-19": {
+ "tempora": "",
+ "title": "Corpus Christi",
+ "rank": 1,
+ "colour": "w"
+ },
+ "2025-06-24": {
+ "tempora": "Feria III after II Sunday after Pentecost",
+ "title": "Nativity of St. John the Baptist",
+ "rank": 1,
+ "colour": "w"
+ },
+ "2025-06-21": {
+ "tempora": "Saturday after I Sunday after Pentecost",
+ "title": "St. Aloysius Gongzaga",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-06-26": {
+ "tempora": "Feria V after II Sunday after Pentecost",
+ "title": "Sts. John & Paul",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2025-06-25": {
+ "tempora": "Feria IV after II Sunday after Pentecost",
+ "title": "St. William",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-06-20": {
+ "tempora": "Feria V after I Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2025-06-27": {
+ "tempora": "",
+ "title": "Sacred Heart of Jesus",
+ "rank": 1,
+ "colour": "w"
+ },
+ "2025-06-28": {
+ "tempora": "Saturday after II Sunday after Pentecost",
+ "title": "Vigil of Sts. Peter & Paul",
+ "rank": 2,
+ "colour": "v"
+ },
+ "2025-06-06": {
+ "tempora": "Feria VI after the Ascension",
+ "title": "St. Norbert",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-07-01": {
+ "tempora": "Feria III after III Sunday after Pentecost",
+ "title": "The Precious Blood of Our Lord Jesus Christ",
+ "rank": 1,
+ "colour": "r"
+ },
+ "2025-06-18": {
+ "tempora": "Feria IV after I Sunday after Pentecost",
+ "title": "St. Ephrem of Syria",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2025-07-06": {
+ "tempora": "",
+ "title": "IV Sunday after Pentecost",
+ "rank": 2,
+ "colour": "g"
+ },
+ "2025-06-30": {
+ "tempora": "Feria II after III Sunday after Pentecost",
+ "title": "In Commemoratione Sancti Pauli Apostoli",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2025-06-29": {
+ "tempora": "III Sunday after Pentecost",
+ "title": "Sts. Peter & Paul",
+ "rank": 1,
+ "colour": "r"
+ },
+ "2025-07-03": {
+ "tempora": "Feria V after III Sunday after Pentecost",
+ "title": "St. Irenaeus",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2025-07-04": {
+ "tempora": "Feria VI after III Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2025-06-17": {
+ "tempora": "Feria III after I Sunday after Pentecost",
+ "title": "St. Gregory Barbarigo",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-07-05": {
+ "tempora": "Saturday after III Sunday after Pentecost",
+ "title": "St. Anthony Mary Zaccariah",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-07-09": {
+ "tempora": "Feria IV after IV Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2025-07-08": {
+ "tempora": "Feria III after IV Sunday after Pentecost",
+ "title": "St. Elizabeth of Portugal",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-07-07": {
+ "tempora": "Feria II after IV Sunday after Pentecost",
+ "title": "Sts. Cyril & Methodius",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-07-10": {
+ "tempora": "Feria V after IV Sunday after Pentecost",
+ "title": "Seven Holy Brothers and Sts. Rufina & Secunda",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2025-07-13": {
+ "tempora": "",
+ "title": "V Sunday after Pentecost",
+ "rank": 2,
+ "colour": "g"
+ },
+ "2025-07-19": {
+ "tempora": "Saturday after V Sunday after Pentecost",
+ "title": "St. Vincent de Paul",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-07-02": {
+ "tempora": "Feria IV after III Sunday after Pentecost",
+ "title": "Visitation of the Blessed Virgin Mary",
+ "rank": 2,
+ "colour": "w"
+ },
+ "2025-06-14": {
+ "tempora": "",
+ "title": "Ember Saturday of Pentecost",
+ "rank": 1,
+ "colour": "r"
+ },
+ "2025-07-20": {
+ "tempora": "",
+ "title": "VI Sunday after Pentecost",
+ "rank": 2,
+ "colour": "g"
+ },
+ "2025-07-11": {
+ "tempora": "Feria VI after IV Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2025-07-22": {
+ "tempora": "Feria III after VI Sunday after Pentecost",
+ "title": "St. Mary Magdalene",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-07-16": {
+ "tempora": "Feria IV after V Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2025-07-12": {
+ "tempora": "Saturday after IV Sunday after Pentecost",
+ "title": "St. John Gualbert",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2025-07-14": {
+ "tempora": "Feria II after V Sunday after Pentecost",
+ "title": "St. Bonaventure",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-07-18": {
+ "tempora": "Feria VI after V Sunday after Pentecost",
+ "title": "Camillus de Lellis",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2025-07-26": {
+ "tempora": "Saturday after VI Sunday after Pentecost",
+ "title": "St. Anne, Mother of the Blessed Virgin",
+ "rank": 2,
+ "colour": "w"
+ },
+ "2025-07-15": {
+ "tempora": "Feria III after V Sunday after Pentecost",
+ "title": "St. Henry the Emperor",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-07-27": {
+ "tempora": "",
+ "title": "VII Sunday after Pentecost",
+ "rank": 2,
+ "colour": "g"
+ },
+ "2025-07-25": {
+ "tempora": "Feria VI after VI Sunday after Pentecost",
+ "title": "St. James the Greater",
+ "rank": 2,
+ "colour": "r"
+ },
+ "2025-07-24": {
+ "tempora": "Feria V after VI Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2025-07-31": {
+ "tempora": "Feria V after VII Sunday after Pentecost",
+ "title": "St. Ignatius Loyola",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-08-03": {
+ "tempora": "",
+ "title": "VIII Sunday after Pentecost",
+ "rank": 2,
+ "colour": "g"
+ },
+ "2025-07-17": {
+ "tempora": "Feria V after V Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2025-07-21": {
+ "tempora": "Feria II after VI Sunday after Pentecost",
+ "title": "St. Laurence of Brindisi",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-08-01": {
+ "tempora": "Feria VI after VII Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2025-07-29": {
+ "tempora": "Feria III after VII Sunday after Pentecost",
+ "title": "St. Martha",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2025-07-28": {
+ "tempora": "Feria II after VII Sunday after Pentecost",
+ "title": "Sts. Nazarius & Celsus, St. Victor I & St. Innocent I",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2025-07-30": {
+ "tempora": "Feria IV after VII Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2025-08-02": {
+ "tempora": "Saturday after VII Sunday after Pentecost",
+ "title": "St. Alphonsus Liguori",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2025-08-04": {
+ "tempora": "Feria II after VIII Sunday after Pentecost",
+ "title": "St. Dominic",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-08-15": {
+ "tempora": "Feria VI after IX Sunday after Pentecost",
+ "title": "Assumption of the Blessed Virgin Mary",
+ "rank": 1,
+ "colour": "w"
+ },
+ "2025-08-06": {
+ "tempora": "Feria IV after VIII Sunday after Pentecost",
+ "title": "Transfiguration of Our Lord",
+ "rank": 2,
+ "colour": "w"
+ },
+ "2025-08-12": {
+ "tempora": "Feria III after IX Sunday after Pentecost",
+ "title": "St. Clare",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-08-11": {
+ "tempora": "Feria II after IX Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2025-08-17": {
+ "tempora": "",
+ "title": "X Sunday after Pentecost",
+ "rank": 2,
+ "colour": "g"
+ },
+ "2025-08-10": {
+ "tempora": "",
+ "title": "IX Sunday after Pentecost",
+ "rank": 2,
+ "colour": "g"
+ },
+ "2025-08-13": {
+ "tempora": "Feria IV after IX Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2025-08-05": {
+ "tempora": "Feria III after VIII Sunday after Pentecost",
+ "title": "Dedication of the Basilica of St. Mary Major",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-08-07": {
+ "tempora": "Feria V after VIII Sunday after Pentecost",
+ "title": "St. Cajetan",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-08-16": {
+ "tempora": "Saturday after IX Sunday after Pentecost",
+ "title": "St. Joachim, Father of the Blessed Virgin",
+ "rank": 2,
+ "colour": "w"
+ },
+ "2025-08-21": {
+ "tempora": "Feria V after X Sunday after Pentecost",
+ "title": "St. Jane Frances de Chantal",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-08-18": {
+ "tempora": "Feria II after X Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2025-07-23": {
+ "tempora": "Feria IV after VI Sunday after Pentecost",
+ "title": "St. Apollinaris",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-08-08": {
+ "tempora": "Feria VI after VIII Sunday after Pentecost",
+ "title": "St. John Mary Vianney",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-08-23": {
+ "tempora": "Saturday after X Sunday after Pentecost",
+ "title": "St. Philip Benizi",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-08-20": {
+ "tempora": "Feria IV after X Sunday after Pentecost",
+ "title": "St. Bernard of Clairvaux",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-08-22": {
+ "tempora": "Feria VI after X Sunday after Pentecost",
+ "title": "Immaculate Heart of Mary",
+ "rank": 2,
+ "colour": "w"
+ },
+ "2025-08-14": {
+ "tempora": "Feria V after IX Sunday after Pentecost",
+ "title": "Vigil of the Assumption",
+ "rank": 2,
+ "colour": "w"
+ },
+ "2025-08-25": {
+ "tempora": "Feria II after XI Sunday after Pentecost",
+ "title": "St. Louis IX",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-08-27": {
+ "tempora": "Feria IV after XI Sunday after Pentecost",
+ "title": "St. Joseph Calasance",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-08-31": {
+ "tempora": "",
+ "title": "XII Sunday after Pentecost",
+ "rank": 2,
+ "colour": "g"
+ },
+ "2025-08-24": {
+ "tempora": "",
+ "title": "XI Sunday after Pentecost",
+ "rank": 2,
+ "colour": "g"
+ },
+ "2025-08-09": {
+ "tempora": "Saturday after VIII Sunday after Pentecost",
+ "title": "V Mass of the B. V. M. – Salve, Sancta Parens",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2025-08-26": {
+ "tempora": "Feria III after XI Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2025-08-19": {
+ "tempora": "Feria III after X Sunday after Pentecost",
+ "title": "St. John Eudes",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-09-04": {
+ "tempora": "Feria V after XII Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2025-09-03": {
+ "tempora": "Feria IV after XII Sunday after Pentecost",
+ "title": "St. Pius X",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-09-07": {
+ "tempora": "",
+ "title": "XIII Sunday after Pentecost",
+ "rank": 2,
+ "colour": "g"
+ },
+ "2025-09-02": {
+ "tempora": "Feria III after XII Sunday after Pentecost",
+ "title": "St. Stephen of Hungary",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-08-30": {
+ "tempora": "Saturday after XI Sunday after Pentecost",
+ "title": "St. Rose of Lima",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2025-08-28": {
+ "tempora": "Feria V after XI Sunday after Pentecost",
+ "title": "St. Augustine",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2025-09-10": {
+ "tempora": "Feria IV after XIII Sunday after Pentecost",
+ "title": "St. Nicholas of Tolentino",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-08-29": {
+ "tempora": "Feria VI after XI Sunday after Pentecost",
+ "title": "Beheading of St. John the Baptist",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2025-09-09": {
+ "tempora": "Feria III after XIII Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2025-09-14": {
+ "tempora": "XIV Sunday after Pentecost",
+ "title": "Exaltation of the Holy Cross",
+ "rank": 2,
+ "colour": "r"
+ },
+ "2025-09-08": {
+ "tempora": "Feria II after XIII Sunday after Pentecost",
+ "title": "Nativity of the Blessed Virgin Mary",
+ "rank": 2,
+ "colour": "w"
+ },
+ "2025-09-11": {
+ "tempora": "Feria V after XIII Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2025-09-01": {
+ "tempora": "Feria II after XII Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2025-09-12": {
+ "tempora": "Feria VI after XIII Sunday after Pentecost",
+ "title": "Most Holy Name of Mary",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-09-19": {
+ "tempora": "Feria VI after XIV Sunday after Pentecost",
+ "title": "St. Januarius & Companions",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2025-09-18": {
+ "tempora": "Feria V after XIV Sunday after Pentecost",
+ "title": "St. Joseph of Cupertino",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-09-05": {
+ "tempora": "Feria VI after XII Sunday after Pentecost",
+ "title": "St. Lawrence Justinian",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-09-06": {
+ "tempora": "Saturday after XII Sunday after Pentecost",
+ "title": "V Mass of the B. V. M. – Salve, Sancta Parens",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2025-09-25": {
+ "tempora": "Feria V after XV Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2025-09-17": {
+ "tempora": "Feria IV after XIV Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2025-09-15": {
+ "tempora": "Feria II after XIV Sunday after Pentecost",
+ "title": "Seven Sorrows of the Blessed Virgin Mary",
+ "rank": 2,
+ "colour": "w"
+ },
+ "2025-09-26": {
+ "tempora": "",
+ "title": "Ember Friday of September",
+ "rank": 2,
+ "colour": "v"
+ },
+ "2025-09-21": {
+ "tempora": "",
+ "title": "XV Sunday after Pentecost",
+ "rank": 2,
+ "colour": "g"
+ },
+ "2025-09-13": {
+ "tempora": "Saturday after XIII Sunday after Pentecost",
+ "title": "V Mass of the B. V. M. – Salve, Sancta Parens",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2025-09-29": {
+ "tempora": "Feria II after XVI Sunday after Pentecost",
+ "title": "Dedication of St. Michael the Archangel",
+ "rank": 1,
+ "colour": "w"
+ },
+ "2025-09-28": {
+ "tempora": "",
+ "title": "XVI Sunday after Pentecost",
+ "rank": 2,
+ "colour": "g"
+ },
+ "2025-09-30": {
+ "tempora": "Feria III after XVI Sunday after Pentecost",
+ "title": "St. Jerome",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-10-03": {
+ "tempora": "Feria VI after XVI Sunday after Pentecost",
+ "title": "St. Theresa of the Infant Jesus",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-10-05": {
+ "tempora": "",
+ "title": "XVII Sunday after Pentecost",
+ "rank": 2,
+ "colour": "g"
+ },
+ "2025-10-02": {
+ "tempora": "Feria V after XVI Sunday after Pentecost",
+ "title": "Holy Guardian Angels",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-10-04": {
+ "tempora": "Saturday after XVI Sunday after Pentecost",
+ "title": "St. Francis of Assisi",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-09-20": {
+ "tempora": "Saturday after XIV Sunday after Pentecost",
+ "title": "V Mass of the B. V. M. – Salve, Sancta Parens",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2025-10-09": {
+ "tempora": "Feria V after XVII Sunday after Pentecost",
+ "title": "St. John Leonardi",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-09-24": {
+ "tempora": "",
+ "title": "Ember Wednesday of September",
+ "rank": 2,
+ "colour": "v"
+ },
+ "2025-10-08": {
+ "tempora": "Feria IV after XVII Sunday after Pentecost",
+ "title": "St. Bridget of Sweden",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-09-23": {
+ "tempora": "Feria III after XV Sunday after Pentecost",
+ "title": "St. Linus",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2025-10-10": {
+ "tempora": "Feria VI after XVII Sunday after Pentecost",
+ "title": "St. Francis Borgia",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-10-07": {
+ "tempora": "Feria III after XVII Sunday after Pentecost",
+ "title": "Our Lady of the Rosary",
+ "rank": 2,
+ "colour": "w"
+ },
+ "2025-10-14": {
+ "tempora": "Feria III after XVIII Sunday after Pentecost",
+ "title": "St. Callistus I",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2025-10-06": {
+ "tempora": "Feria II after XVII Sunday after Pentecost",
+ "title": "St. Bruno",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-09-27": {
+ "tempora": "",
+ "title": "Ember Saturday of September",
+ "rank": 2,
+ "colour": "v"
+ },
+ "2025-10-12": {
+ "tempora": "",
+ "title": "XVIII Sunday after Pentecost",
+ "rank": 2,
+ "colour": "g"
+ },
+ "2025-10-11": {
+ "tempora": "Saturday after XVII Sunday after Pentecost",
+ "title": "Maternity of the Blessed Virgin Mary",
+ "rank": 2,
+ "colour": "w"
+ },
+ "2025-09-22": {
+ "tempora": "Feria II after XV Sunday after Pentecost",
+ "title": "St. Thomas of Villanova",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-09-16": {
+ "tempora": "Feria III after XIV Sunday after Pentecost",
+ "title": "Sts. Cornelius & Cyprian",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2025-10-15": {
+ "tempora": "Feria IV after XVIII Sunday after Pentecost",
+ "title": "St. Teresa of Avila",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-10-16": {
+ "tempora": "Feria V after XVIII Sunday after Pentecost",
+ "title": "St. Hedwig",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-10-26": {
+ "tempora": "XX Sunday after Pentecost",
+ "title": "Christ the King",
+ "rank": 1,
+ "colour": "w"
+ },
+ "2025-10-18": {
+ "tempora": "Saturday after XVIII Sunday after Pentecost",
+ "title": "St. Luke the Evangelist",
+ "rank": 2,
+ "colour": "r"
+ },
+ "2025-10-17": {
+ "tempora": "Feria VI after XVIII Sunday after Pentecost",
+ "title": "St. Margaret Mary Alacoque",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-10-19": {
+ "tempora": "",
+ "title": "XIX Sunday after Pentecost",
+ "rank": 2,
+ "colour": "g"
+ },
+ "2025-10-20": {
+ "tempora": "Feria II after XIX Sunday after Pentecost",
+ "title": "St. John Cantius",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-10-22": {
+ "tempora": "Feria IV after XIX Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2025-10-23": {
+ "tempora": "Feria V after XIX Sunday after Pentecost",
+ "title": "St. Anthony Mary Claret",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-10-24": {
+ "tempora": "Feria VI after XIX Sunday after Pentecost",
+ "title": "St. Raphael the Archangel",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-10-29": {
+ "tempora": "Feria IV after XX Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2025-10-27": {
+ "tempora": "Feria II after XX Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2025-10-28": {
+ "tempora": "Feria III after XX Sunday after Pentecost",
+ "title": "Sts. Simon & Jude",
+ "rank": 2,
+ "colour": "r"
+ },
+ "2025-10-31": {
+ "tempora": "Feria VI after XX Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2025-10-01": {
+ "tempora": "Feria IV after XVI Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2025-11-01": {
+ "tempora": "Saturday after XX Sunday after Pentecost",
+ "title": "All Saints",
+ "rank": 1,
+ "colour": "w"
+ },
+ "2025-10-30": {
+ "tempora": "Feria V after XX Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2025-10-13": {
+ "tempora": "Feria II after XVIII Sunday after Pentecost",
+ "title": "St. Edward",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-11-05": {
+ "tempora": "Feria IV after XXI Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2025-11-02": {
+ "tempora": "",
+ "title": "XXI Sunday after Pentecost",
+ "rank": 2,
+ "colour": "g"
+ },
+ "2025-11-07": {
+ "tempora": "Feria VI after XXI Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2025-11-06": {
+ "tempora": "Feria V after XXI Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2025-11-14": {
+ "tempora": "Feria VI after XXII Sunday after Pentecost",
+ "title": "St. Josaphat",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-11-12": {
+ "tempora": "Feria IV after XXII Sunday after Pentecost",
+ "title": "St. Martin I",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2025-11-16": {
+ "tempora": "",
+ "title": "XXIII Sunday after Pentecost",
+ "rank": 2,
+ "colour": "g"
+ },
+ "2025-11-15": {
+ "tempora": "Saturday after XXII Sunday after Pentecost",
+ "title": "St. Albert the Great",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-11-13": {
+ "tempora": "Feria V after XXII Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2025-11-11": {
+ "tempora": "Feria III after XXII Sunday after Pentecost",
+ "title": "St. Martin of Tours",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-11-04": {
+ "tempora": "Feria III after XXI Sunday after Pentecost",
+ "title": "St. Charles Borromeo",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-11-20": {
+ "tempora": "Feria V after XXIII Sunday after Pentecost",
+ "title": "St. Felix of Valois",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-11-10": {
+ "tempora": "Feria II after XXII Sunday after Pentecost",
+ "title": "St. Andrew Avellino",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-10-21": {
+ "tempora": "Feria III after XIX Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2025-11-23": {
+ "tempora": "",
+ "title": "XXIV Sunday after Pentecost",
+ "rank": 2,
+ "colour": "g"
+ },
+ "2025-10-25": {
+ "tempora": "Saturday after XIX Sunday after Pentecost",
+ "title": "V Mass of the B. V. M. – Salve, Sancta Parens",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2025-11-17": {
+ "tempora": "Feria II after XXIII Sunday after Pentecost",
+ "title": "St. Gregory the Wonderworker",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-11-19": {
+ "tempora": "Feria IV after XXIII Sunday after Pentecost",
+ "title": "St. Elizabeth of Hungary",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-11-09": {
+ "tempora": "XXII Sunday after Pentecost",
+ "title": "Dedication of the Archbasilica of Our Holy Savior",
+ "rank": 2,
+ "colour": "w"
+ },
+ "2025-11-30": {
+ "tempora": "",
+ "title": "I Sunday of Advent",
+ "rank": 1,
+ "colour": "v"
+ },
+ "2025-11-27": {
+ "tempora": "Feria V after XXIV Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2025-11-28": {
+ "tempora": "Feria VI after XXIV Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2025-11-08": {
+ "tempora": "Saturday after XXI Sunday after Pentecost",
+ "title": "V Mass of the B. V. M. – Salve, Sancta Parens",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2025-12-01": {
+ "tempora": "",
+ "title": "Feria II after I Sunday of Advent",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2025-11-22": {
+ "tempora": "Saturday after XXIII Sunday after Pentecost",
+ "title": "St. Cecilia",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2025-11-21": {
+ "tempora": "Feria VI after XXIII Sunday after Pentecost",
+ "title": "Presentation of the Blessed Virgin Mary",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-11-03": {
+ "tempora": "Feria II after XXI Sunday after Pentecost",
+ "title": "Commemoration of All Souls",
+ "rank": 1,
+ "colour": "b"
+ },
+ "2025-11-24": {
+ "tempora": "Feria II after XXIV Sunday after Pentecost",
+ "title": "St. John of the Cross",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-12-02": {
+ "tempora": "Feria III after I Sunday of Advent",
+ "title": "St. Vivian",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2025-12-08": {
+ "tempora": "Feria II after II Sunday of Advent",
+ "title": "Immaculate Conception of the Blessed Virgin Mary",
+ "rank": 1,
+ "colour": "w"
+ },
+ "2025-12-07": {
+ "tempora": "",
+ "title": "II Sunday of Advent",
+ "rank": 1,
+ "colour": "v"
+ },
+ "2025-11-25": {
+ "tempora": "Feria III after XXIV Sunday after Pentecost",
+ "title": "St. Catherine of Alexandria",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2025-11-18": {
+ "tempora": "Feria III after XXIII Sunday after Pentecost",
+ "title": "Dedication of the Basilicas of Sts. Peter & Paul",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-12-09": {
+ "tempora": "",
+ "title": "Feria III after II Sunday of Advent",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2025-12-03": {
+ "tempora": "Feria IV after I Sunday of Advent",
+ "title": "St. Francis Xavier",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-12-12": {
+ "tempora": "",
+ "title": "Feria VI after II Sunday of Advent",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2025-12-04": {
+ "tempora": "Feria V after I Sunday of Advent",
+ "title": "St. Peter Chrysologus",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-12-05": {
+ "tempora": "",
+ "title": "Feria VI after I Sunday of Advent",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2025-12-06": {
+ "tempora": "Sabbato after I Sunday of Advent",
+ "title": "St. Nicholas",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-12-14": {
+ "tempora": "",
+ "title": "III Sunday of Advent",
+ "rank": 1,
+ "colour": "pv"
+ },
+ "2025-12-15": {
+ "tempora": "",
+ "title": "Feria II after III Sunday of Advent",
+ "rank": 3,
+ "colour": "pv"
+ },
+ "2025-11-29": {
+ "tempora": "Saturday after XXIV Sunday after Pentecost",
+ "title": "V Mass of the B. V. M. – Salve, Sancta Parens",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2025-12-18": {
+ "tempora": "",
+ "title": "Feria V after III Sunday of Advent",
+ "rank": 2,
+ "colour": "pv"
+ },
+ "2025-12-11": {
+ "tempora": "Feria V after II Sunday of Advent",
+ "title": "St. Damasus I",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-12-25": {
+ "tempora": "",
+ "title": "The Nativity of Our Lord",
+ "rank": 1,
+ "colour": "w"
+ },
+ "2025-12-19": {
+ "tempora": "",
+ "title": "Ember Friday of Advent",
+ "rank": 2,
+ "colour": "v"
+ },
+ "2025-12-10": {
+ "tempora": "",
+ "title": "Feria IV after II Sunday of Advent",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2025-12-17": {
+ "tempora": "",
+ "title": "Ember Wednesday of Advent",
+ "rank": 2,
+ "colour": "v"
+ },
+ "2025-11-26": {
+ "tempora": "Feria IV after XXIV Sunday after Pentecost",
+ "title": "St. Sylvester",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2025-12-21": {
+ "tempora": "",
+ "title": "IV Sunday of Advent",
+ "rank": 1,
+ "colour": "v"
+ },
+ "2025-12-22": {
+ "tempora": "",
+ "title": "Feria II after IV Sunday of Advent",
+ "rank": 2,
+ "colour": "v"
+ },
+ "2025-12-24": {
+ "tempora": "",
+ "title": "Vigil of Christmas",
+ "rank": 1,
+ "colour": "v"
+ },
+ "2025-12-13": {
+ "tempora": "Sabbato after II Sunday of Advent",
+ "title": "St. Lucy",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2025-12-23": {
+ "tempora": "",
+ "title": "Feria III after IV Sunday of Advent",
+ "rank": 2,
+ "colour": "v"
+ },
+ "2025-12-16": {
+ "tempora": "Feria III after III Sunday of Advent",
+ "title": "St. Eusebius",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2025-12-30": {
+ "tempora": "",
+ "title": "Feria in the Octave of Christmas",
+ "rank": 2,
+ "colour": "w"
+ },
+ "2025-12-26": {
+ "tempora": "",
+ "title": "St. Stephen",
+ "rank": 2,
+ "colour": "r"
+ },
+ "2025-12-31": {
+ "tempora": "",
+ "title": "Feria in the Octave of Christmas",
+ "rank": 2,
+ "colour": "w"
+ },
+ "2025-12-29": {
+ "tempora": "",
+ "title": "Feria in the Octave of Christmas",
+ "rank": 2,
+ "colour": "w"
+ },
+ "2025-12-27": {
+ "tempora": "",
+ "title": "St. John the Evangelist",
+ "rank": 2,
+ "colour": "w"
+ },
+ "2025-12-20": {
+ "tempora": "",
+ "title": "Ember Saturday of Advent",
+ "rank": 2,
+ "colour": "v"
+ },
+ "2025-12-28": {
+ "tempora": "",
+ "title": "Sunday in the Octave of Christmas",
+ "rank": 2,
+ "colour": "w"
+ },
+ "2026-01-01": {
+ "tempora": "",
+ "title": "Octave Day of Christmas",
+ "rank": 1,
+ "colour": "w"
+ },
+ "2026-01-02": {
+ "tempora": "",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2026-01-06": {
+ "tempora": "",
+ "title": "Epiphany of the Lord",
+ "rank": 1,
+ "colour": "w"
+ },
+ "2026-01-04": {
+ "tempora": "",
+ "title": "Holy Name of Jesus",
+ "rank": 2,
+ "colour": "w"
+ },
+ "2026-01-07": {
+ "tempora": "",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2026-01-05": {
+ "tempora": "",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2026-01-12": {
+ "tempora": "Feria II after Epiphany",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2026-01-18": {
+ "tempora": "",
+ "title": "II Sunday after Epiphany",
+ "rank": 2,
+ "colour": "g"
+ },
+ "2026-01-11": {
+ "tempora": "",
+ "title": "The Holy Family: Jesus, Mary & Joseph",
+ "rank": 2,
+ "colour": "w"
+ },
+ "2026-01-17": {
+ "tempora": "Saturday after Epiphany",
+ "title": "St. Anthony",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-01-20": {
+ "tempora": "Feria III after II Sunday after Epiphany",
+ "title": "Sts. Fabian & Sebastian",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2026-01-21": {
+ "tempora": "Feria IV after II Sunday after Epiphany",
+ "title": "St. Agnes",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2026-01-19": {
+ "tempora": "Feria II after II Sunday after Epiphany",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2026-01-22": {
+ "tempora": "Feria V after II Sunday after Epiphany",
+ "title": "Sts. Vincent & Anastasius",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2026-01-25": {
+ "tempora": "",
+ "title": "III Sunday after Epiphany",
+ "rank": 2,
+ "colour": "g"
+ },
+ "2026-01-26": {
+ "tempora": "Feria II after III Sunday after Epiphany",
+ "title": "St. Polycarp",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2026-01-24": {
+ "tempora": "Saturday after II Sunday after Epiphany",
+ "title": "St. Timothy",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2026-01-27": {
+ "tempora": "Feria III after III Sunday after Epiphany",
+ "title": "St. John Chrysostom",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-01-28": {
+ "tempora": "Feria IV after III Sunday after Epiphany",
+ "title": "St. Peter Nolasco",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-01-29": {
+ "tempora": "Feria V after III Sunday after Epiphany",
+ "title": "St. Francis de Sales",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-01-31": {
+ "tempora": "Saturday after III Sunday after Epiphany",
+ "title": "St. John Bosco",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-01-23": {
+ "tempora": "Feria VI after II Sunday after Epiphany",
+ "title": "St. Raymond of Peñafort",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-02-01": {
+ "tempora": "",
+ "title": "Septuagesima Sunday",
+ "rank": 2,
+ "colour": "v"
+ },
+ "2026-01-13": {
+ "tempora": "Feria III after Epiphany",
+ "title": "Commemoration of the Baptism of the Lord",
+ "rank": 2,
+ "colour": "w"
+ },
+ "2026-01-30": {
+ "tempora": "Feria VI after III Sunday after Epiphany",
+ "title": "St. Martina",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2026-02-03": {
+ "tempora": "Feria III after Septuagesima",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "v"
+ },
+ "2026-01-08": {
+ "tempora": "",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2026-01-09": {
+ "tempora": "",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2026-02-02": {
+ "tempora": "Feria II after Septuagesima",
+ "title": "Purification of the Blessed Virgin Mary",
+ "rank": 2,
+ "colour": "w"
+ },
+ "2026-01-10": {
+ "tempora": "",
+ "title": "II Mass of the B. V. M. – Vultum Tuum",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2026-01-03": {
+ "tempora": "",
+ "title": "II Mass of the B. V. M. – Vultum Tuum",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2026-01-16": {
+ "tempora": "Feria VI after Epiphany",
+ "title": "St. Marcellus I",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2026-02-08": {
+ "tempora": "",
+ "title": "Sexagesima Sunday",
+ "rank": 2,
+ "colour": "v"
+ },
+ "2026-02-07": {
+ "tempora": "Saturday after Septuagesima",
+ "title": "St. Romuald",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-02-10": {
+ "tempora": "Feria III after Sexagesimæ",
+ "title": "St. Scholastica",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-02-05": {
+ "tempora": "Feria V after Septuagesima",
+ "title": "St. Agatha",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2026-01-15": {
+ "tempora": "Feria V after Epiphany",
+ "title": "St. Paul, the First Hermit",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-02-11": {
+ "tempora": "Feria IV after Sexagesimæ",
+ "title": "Our Lady of Lourdes",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-02-12": {
+ "tempora": "Feria V after Sexagesimæ",
+ "title": "Seven Holy Servite Founders",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-02-13": {
+ "tempora": "Feria VI after Sexagesimæ",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "v"
+ },
+ "2026-02-04": {
+ "tempora": "Feria IV after Septuagesima",
+ "title": "St. Andrew Corsini",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-01-14": {
+ "tempora": "Feria IV after Epiphany",
+ "title": "St. Hilary",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-02-20": {
+ "tempora": "",
+ "title": "Feria VI after Ash Wednesday",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2026-02-15": {
+ "tempora": "",
+ "title": "Quinquagesima Sunday",
+ "rank": 2,
+ "colour": "v"
+ },
+ "2026-02-19": {
+ "tempora": "",
+ "title": "Feria V after Ash Wednesday",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2026-02-22": {
+ "tempora": "",
+ "title": "I Sunday of Lent",
+ "rank": 1,
+ "colour": "v"
+ },
+ "2026-02-21": {
+ "tempora": "",
+ "title": "Saturday after Ash Wednesday",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2026-02-17": {
+ "tempora": "Feria III after Quinquagesima",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "v"
+ },
+ "2026-02-16": {
+ "tempora": "Feria II after Quinquagesima",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "v"
+ },
+ "2026-02-06": {
+ "tempora": "Feria VI after Septuagesima",
+ "title": "St. Titus",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-02-25": {
+ "tempora": "",
+ "title": "Ember Wednesday of Lent",
+ "rank": 2,
+ "colour": "v"
+ },
+ "2026-02-18": {
+ "tempora": "",
+ "title": "Ash Wednesday",
+ "rank": 1,
+ "colour": "v"
+ },
+ "2026-03-02": {
+ "tempora": "",
+ "title": "Feria II after the II Sunday of Lent",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2026-03-01": {
+ "tempora": "",
+ "title": "II Sunday of Lent",
+ "rank": 1,
+ "colour": "v"
+ },
+ "2026-02-26": {
+ "tempora": "",
+ "title": "Feria V after the I Sunday of Lent",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2026-03-03": {
+ "tempora": "",
+ "title": "Feria III after the II Sunday of Lent",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2026-02-24": {
+ "tempora": "Feria III after the I Sunday of Lent",
+ "title": "St. Matthias",
+ "rank": 2,
+ "colour": "r"
+ },
+ "2026-02-14": {
+ "tempora": "Saturday after Sexagesimæ",
+ "title": "III Mass of the B. V. M. – Salve, Sancta Parens",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2026-02-09": {
+ "tempora": "Feria II after Sexagesima",
+ "title": "St. Cyril of Alexandria",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-02-23": {
+ "tempora": "",
+ "title": "Feria II after the I Sunday of Lent",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2026-02-27": {
+ "tempora": "",
+ "title": "Ember Friday of Lent",
+ "rank": 2,
+ "colour": "v"
+ },
+ "2026-03-08": {
+ "tempora": "",
+ "title": "III Sunday of Lent",
+ "rank": 1,
+ "colour": "v"
+ },
+ "2026-03-05": {
+ "tempora": "",
+ "title": "Feria V after the II Sunday of Lent",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2026-03-11": {
+ "tempora": "",
+ "title": "Feria IV after the III Sunday of Lent",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2026-03-13": {
+ "tempora": "",
+ "title": "Feria VI after the III Sunday of Lent",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2026-03-14": {
+ "tempora": "",
+ "title": "Saturday after the III Sunday of Lent",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2026-03-15": {
+ "tempora": "",
+ "title": "IV Sunday of Lent",
+ "rank": 1,
+ "colour": "pv"
+ },
+ "2026-02-28": {
+ "tempora": "",
+ "title": "Ember Saturday of Lent",
+ "rank": 2,
+ "colour": "v"
+ },
+ "2026-03-16": {
+ "tempora": "",
+ "title": "Feria II after the IV Sunday of Lent",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2026-03-12": {
+ "tempora": "",
+ "title": "Feria V after the III Sunday of Lent",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2026-03-06": {
+ "tempora": "",
+ "title": "Feria VI after the II Sunday of Lent",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2026-03-10": {
+ "tempora": "",
+ "title": "Feria III after the III Sunday of Lent",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2026-03-09": {
+ "tempora": "",
+ "title": "Feria II after the III Sunday of Lent",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2026-03-07": {
+ "tempora": "",
+ "title": "Saturday after the II Sunday of Lent",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2026-03-22": {
+ "tempora": "",
+ "title": "Passion Sunday",
+ "rank": 1,
+ "colour": "v"
+ },
+ "2026-03-20": {
+ "tempora": "",
+ "title": "Feria VI after the IV Sunday of Lent",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2026-03-23": {
+ "tempora": "",
+ "title": "Feria II of Passion Week",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2026-03-26": {
+ "tempora": "",
+ "title": "Feria V of Passion Week",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2026-03-19": {
+ "tempora": "Feria V after the IV Sunday of Lent",
+ "title": "St. Joseph, Spouse of the Bl. Virgin Mary",
+ "rank": 1,
+ "colour": "w"
+ },
+ "2026-03-24": {
+ "tempora": "",
+ "title": "Feria III of Passion Week",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2026-03-27": {
+ "tempora": "",
+ "title": "Feria VI of Passion Week",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2026-03-30": {
+ "tempora": "",
+ "title": "Feria II of Holy Week",
+ "rank": 1,
+ "colour": "v"
+ },
+ "2026-03-21": {
+ "tempora": "",
+ "title": "Saturday after the IV Sunday of Lent",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2026-03-25": {
+ "tempora": "Feria IV of Passion Week",
+ "title": "Annunciation of the Blessed Virgin Mary",
+ "rank": 1,
+ "colour": "w"
+ },
+ "2026-04-02": {
+ "tempora": "",
+ "title": "Holy Thursday",
+ "rank": 1,
+ "colour": "w"
+ },
+ "2026-04-03": {
+ "tempora": "",
+ "title": "Good Friday",
+ "rank": 1,
+ "colour": "bv"
+ },
+ "2026-03-28": {
+ "tempora": "",
+ "title": "Saturday of Passion Week",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2026-03-18": {
+ "tempora": "",
+ "title": "Feria IV after the IV Sunday of Lent",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2026-03-04": {
+ "tempora": "",
+ "title": "Feria IV after the II Sunday of Lent",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2026-03-17": {
+ "tempora": "",
+ "title": "Feria III after the IV Sunday of Lent",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2026-04-04": {
+ "tempora": "",
+ "title": "Holy Saturday",
+ "rank": 1,
+ "colour": "vw"
+ },
+ "2026-04-06": {
+ "tempora": "",
+ "title": "Monday in the Octave of Easter",
+ "rank": 1,
+ "colour": "w"
+ },
+ "2026-04-05": {
+ "tempora": "",
+ "title": "Easter Sunday",
+ "rank": 1,
+ "colour": "w"
+ },
+ "2026-04-07": {
+ "tempora": "",
+ "title": "Tuesday in the Octave of Easter",
+ "rank": 1,
+ "colour": "w"
+ },
+ "2026-03-29": {
+ "tempora": "",
+ "title": "Palm Sunday",
+ "rank": 1,
+ "colour": "rv"
+ },
+ "2026-04-09": {
+ "tempora": "",
+ "title": "Thursday in the Octave of Easter",
+ "rank": 1,
+ "colour": "w"
+ },
+ "2026-03-31": {
+ "tempora": "",
+ "title": "Feria III of Holy Week",
+ "rank": 1,
+ "colour": "v"
+ },
+ "2026-04-08": {
+ "tempora": "",
+ "title": "Wednesday in the Octave of Easter",
+ "rank": 1,
+ "colour": "w"
+ },
+ "2026-04-10": {
+ "tempora": "",
+ "title": "Friday in the Octave of Easter",
+ "rank": 1,
+ "colour": "w"
+ },
+ "2026-04-12": {
+ "tempora": "",
+ "title": "Low Sunday",
+ "rank": 1,
+ "colour": "w"
+ },
+ "2026-04-11": {
+ "tempora": "",
+ "title": "Saturday in the Octave of Easter",
+ "rank": 1,
+ "colour": "w"
+ },
+ "2026-04-16": {
+ "tempora": "Thursday after I Sunday after Easter",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2026-04-15": {
+ "tempora": "Wednesday after I Sunday after Easter",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2026-04-19": {
+ "tempora": "",
+ "title": "II Sunday after Easter",
+ "rank": 2,
+ "colour": "w"
+ },
+ "2026-04-13": {
+ "tempora": "Monday after I Sunday after Easter",
+ "title": "St. Hermenegild",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2026-04-20": {
+ "tempora": "Monday after II Sunday after Easter",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2026-04-01": {
+ "tempora": "",
+ "title": "Feria IV of Holy Week",
+ "rank": 1,
+ "colour": "v"
+ },
+ "2026-04-14": {
+ "tempora": "Tuesday after I Sunday after Easter",
+ "title": "St. Justin",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2026-04-22": {
+ "tempora": "Wednesday after II Sunday after Easter",
+ "title": "Sts. Soter & Caius",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2026-04-25": {
+ "tempora": "Saturday after II Sunday after Easter",
+ "title": "St. Mark",
+ "rank": 2,
+ "colour": "r"
+ },
+ "2026-04-26": {
+ "tempora": "",
+ "title": "III Sunday after Easter",
+ "rank": 2,
+ "colour": "w"
+ },
+ "2026-04-28": {
+ "tempora": "Tuesday after III Sunday after Easter",
+ "title": "St. Paul of the Cross",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-04-17": {
+ "tempora": "Friday after I Sunday after Easter",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2026-04-24": {
+ "tempora": "Friday after II Sunday after Easter",
+ "title": "St. Fidelis of Sigmaringen",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2026-04-23": {
+ "tempora": "Thursday after II Sunday after Easter",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2026-04-21": {
+ "tempora": "Tuesday after II Sunday after Easter",
+ "title": "St. Anselm",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-05-01": {
+ "tempora": "Friday after III Sunday after Easter",
+ "title": "St. Joseph the Workman",
+ "rank": 1,
+ "colour": "w"
+ },
+ "2026-04-29": {
+ "tempora": "Wednesday after III Sunday after Easter",
+ "title": "St. Peter of Verona",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2026-05-02": {
+ "tempora": "Saturday after III Sunday after Easter",
+ "title": "St. Athanasius",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-05-03": {
+ "tempora": "",
+ "title": "IV Sunday after Easter",
+ "rank": 2,
+ "colour": "w"
+ },
+ "2026-04-30": {
+ "tempora": "Thursday after III Sunday after Easter",
+ "title": "St. Catherine of Siena",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-04-27": {
+ "tempora": "Monday after III Sunday after Easter",
+ "title": "St. Peter Canisius",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-05-10": {
+ "tempora": "",
+ "title": "V Sunday after Easter",
+ "rank": 2,
+ "colour": "w"
+ },
+ "2026-05-04": {
+ "tempora": "Monday after IV Sunday after Easter",
+ "title": "St. Monica",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-05-08": {
+ "tempora": "Friday after IV Sunday after Easter",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2026-04-18": {
+ "tempora": "Saturday after I Sunday after Easter",
+ "title": "IV Mass of the B. V. M. – Salve, Sancta Parens",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2026-05-06": {
+ "tempora": "Wednesday after IV Sunday after Easter",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2026-05-05": {
+ "tempora": "Tuesday after IV Sunday after Easter",
+ "title": "St. Pius V",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-05-12": {
+ "tempora": "The Minor Litanies – Rogations",
+ "title": "Sts. Nereus, Achilleus, Domitilla, & Pancras",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2026-05-11": {
+ "tempora": "The Minor Litanies – Rogations",
+ "title": "Sts. Philip & James",
+ "rank": 2,
+ "colour": "r"
+ },
+ "2026-05-07": {
+ "tempora": "Thursday after IV Sunday after Easter",
+ "title": "St. Stanislaus",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2026-05-14": {
+ "tempora": "",
+ "title": "Ascension of the Lord",
+ "rank": 1,
+ "colour": "w"
+ },
+ "2026-05-17": {
+ "tempora": "",
+ "title": "Sunday after the Ascension",
+ "rank": 2,
+ "colour": "w"
+ },
+ "2026-05-21": {
+ "tempora": "Feria V after the Ascension",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2026-05-18": {
+ "tempora": "Feria II after the Ascension",
+ "title": "St. Venantius",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2026-05-09": {
+ "tempora": "Saturday after IV Sunday after Easter",
+ "title": "St. Gregory of Nazianzen",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-05-23": {
+ "tempora": "",
+ "title": "Saturday after the Ascension",
+ "rank": 1,
+ "colour": "r"
+ },
+ "2026-05-22": {
+ "tempora": "Feria VI after the Ascension",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2026-05-24": {
+ "tempora": "",
+ "title": "Pentecost Sunday",
+ "rank": 1,
+ "colour": "r"
+ },
+ "2026-05-26": {
+ "tempora": "",
+ "title": "Tuesday after Pentecost",
+ "rank": 1,
+ "colour": "r"
+ },
+ "2026-05-13": {
+ "tempora": "",
+ "title": "Vigil of the Ascension",
+ "rank": 2,
+ "colour": "w"
+ },
+ "2026-05-25": {
+ "tempora": "",
+ "title": "Monday after Pentecost",
+ "rank": 1,
+ "colour": "r"
+ },
+ "2026-05-15": {
+ "tempora": "Feria VI after the Ascension",
+ "title": "St. John Baptist de la Salle",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-05-28": {
+ "tempora": "",
+ "title": "Thursday after Pentecost",
+ "rank": 1,
+ "colour": "r"
+ },
+ "2026-05-19": {
+ "tempora": "Feria III after the Ascension",
+ "title": "St. Peter Celestine",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-05-20": {
+ "tempora": "Feria IV after the Ascension",
+ "title": "St. Bernardine of Siena",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-05-27": {
+ "tempora": "",
+ "title": "Ember Wednesday of Pentecost",
+ "rank": 1,
+ "colour": "r"
+ },
+ "2026-05-29": {
+ "tempora": "",
+ "title": "Ember Friday of Pentecost",
+ "rank": 1,
+ "colour": "r"
+ },
+ "2026-05-16": {
+ "tempora": "Saturday after the Ascension",
+ "title": "IV Mass of the B. V. M. – Salve, Sancta Parens",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2026-05-30": {
+ "tempora": "",
+ "title": "Ember Saturday of Pentecost",
+ "rank": 1,
+ "colour": "r"
+ },
+ "2026-06-03": {
+ "tempora": "Feria IV after I Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2026-06-08": {
+ "tempora": "Feria II after II Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2026-06-05": {
+ "tempora": "Feria V after I Sunday after Pentecost",
+ "title": "St. Boniface",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2026-06-07": {
+ "tempora": "",
+ "title": "II Sunday after Pentecost",
+ "rank": 2,
+ "colour": "g"
+ },
+ "2026-05-31": {
+ "tempora": "",
+ "title": "Trinity Sunday",
+ "rank": 1,
+ "colour": "w"
+ },
+ "2026-06-11": {
+ "tempora": "Feria V after II Sunday after Pentecost",
+ "title": "St. Barnabas",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2026-06-01": {
+ "tempora": "Feria II after I Sunday after Pentecost",
+ "title": "St. Angela Merici",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-06-10": {
+ "tempora": "Feria IV after II Sunday after Pentecost",
+ "title": "St. Margaret of Scotland",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-06-04": {
+ "tempora": "",
+ "title": "Corpus Christi",
+ "rank": 1,
+ "colour": "w"
+ },
+ "2026-06-14": {
+ "tempora": "",
+ "title": "III Sunday after Pentecost",
+ "rank": 2,
+ "colour": "g"
+ },
+ "2026-06-16": {
+ "tempora": "Feria III after III Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2026-06-02": {
+ "tempora": "Feria III after I Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2026-06-12": {
+ "tempora": "",
+ "title": "Sacred Heart of Jesus",
+ "rank": 1,
+ "colour": "w"
+ },
+ "2026-06-21": {
+ "tempora": "",
+ "title": "IV Sunday after Pentecost",
+ "rank": 2,
+ "colour": "g"
+ },
+ "2026-06-09": {
+ "tempora": "Feria III after II Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2026-06-13": {
+ "tempora": "Saturday after II Sunday after Pentecost",
+ "title": "St. Anthony of Padua",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-06-23": {
+ "tempora": "Feria III after IV Sunday after Pentecost",
+ "title": "Vigil of the Nativity of St. John the Baptist",
+ "rank": 2,
+ "colour": "v"
+ },
+ "2026-06-15": {
+ "tempora": "Feria II after III Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2026-06-06": {
+ "tempora": "Saturday after I Sunday after Pentecost",
+ "title": "St. Norbert",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-06-22": {
+ "tempora": "Feria II after IV Sunday after Pentecost",
+ "title": "St. Paulinus of Nola",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-06-19": {
+ "tempora": "Feria VI after III Sunday after Pentecost",
+ "title": "St. Julia of Falconieri",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2026-07-01": {
+ "tempora": "Feria IV after V Sunday after Pentecost",
+ "title": "The Precious Blood of Our Lord Jesus Christ",
+ "rank": 1,
+ "colour": "r"
+ },
+ "2026-07-02": {
+ "tempora": "Feria V after V Sunday after Pentecost",
+ "title": "Visitation of the Blessed Virgin Mary",
+ "rank": 2,
+ "colour": "w"
+ },
+ "2026-07-03": {
+ "tempora": "Feria VI after V Sunday after Pentecost",
+ "title": "St. Irenaeus",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2026-06-24": {
+ "tempora": "Feria IV after IV Sunday after Pentecost",
+ "title": "Nativity of St. John the Baptist",
+ "rank": 1,
+ "colour": "w"
+ },
+ "2026-07-04": {
+ "tempora": "Saturday after V Sunday after Pentecost",
+ "title": "V Mass of the B. V. M. – Salve, Sancta Parens",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2026-07-05": {
+ "tempora": "",
+ "title": "VI Sunday after Pentecost",
+ "rank": 2,
+ "colour": "g"
+ },
+ "2026-07-07": {
+ "tempora": "Feria III after VI Sunday after Pentecost",
+ "title": "Sts. Cyril & Methodius",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-07-06": {
+ "tempora": "Feria II after VI Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2026-07-08": {
+ "tempora": "Feria IV after VI Sunday after Pentecost",
+ "title": "St. Elizabeth of Portugal",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-07-09": {
+ "tempora": "Feria V after VI Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2026-07-10": {
+ "tempora": "Feria VI after VI Sunday after Pentecost",
+ "title": "Seven Holy Brothers and Sts. Rufina & Secunda",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2026-06-26": {
+ "tempora": "Feria VI after IV Sunday after Pentecost",
+ "title": "Sts. John & Paul",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2026-07-11": {
+ "tempora": "Saturday after VI Sunday after Pentecost",
+ "title": "V Mass of the B. V. M. – Salve, Sancta Parens",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2026-07-12": {
+ "tempora": "",
+ "title": "VII Sunday after Pentecost",
+ "rank": 2,
+ "colour": "g"
+ },
+ "2026-07-13": {
+ "tempora": "Feria II after VII Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2026-07-14": {
+ "tempora": "Feria III after VII Sunday after Pentecost",
+ "title": "St. Bonaventure",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-06-18": {
+ "tempora": "Feria V after III Sunday after Pentecost",
+ "title": "St. Ephrem of Syria",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2026-07-15": {
+ "tempora": "Feria IV after VII Sunday after Pentecost",
+ "title": "St. Henry the Emperor",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-07-17": {
+ "tempora": "Feria VI after VII Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2026-07-16": {
+ "tempora": "Feria V after VII Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2026-07-18": {
+ "tempora": "Saturday after VII Sunday after Pentecost",
+ "title": "Camillus de Lellis",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2026-07-19": {
+ "tempora": "",
+ "title": "VIII Sunday after Pentecost",
+ "rank": 2,
+ "colour": "g"
+ },
+ "2026-06-29": {
+ "tempora": "Feria II after V Sunday after Pentecost",
+ "title": "Sts. Peter & Paul",
+ "rank": 1,
+ "colour": "r"
+ },
+ "2026-07-22": {
+ "tempora": "Feria IV after VIII Sunday after Pentecost",
+ "title": "St. Mary Magdalene",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-07-21": {
+ "tempora": "Feria III after VIII Sunday after Pentecost",
+ "title": "St. Laurence of Brindisi",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-07-23": {
+ "tempora": "Feria V after VIII Sunday after Pentecost",
+ "title": "St. Apollinaris",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-07-24": {
+ "tempora": "Feria VI after VIII Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2026-07-25": {
+ "tempora": "Saturday after VIII Sunday after Pentecost",
+ "title": "St. James the Greater",
+ "rank": 2,
+ "colour": "r"
+ },
+ "2026-07-26": {
+ "tempora": "",
+ "title": "IX Sunday after Pentecost",
+ "rank": 2,
+ "colour": "g"
+ },
+ "2026-07-27": {
+ "tempora": "Feria II after IX Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2026-07-28": {
+ "tempora": "Feria III after IX Sunday after Pentecost",
+ "title": "Sts. Nazarius & Celsus, St. Victor I & St. Innocent I",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2026-07-29": {
+ "tempora": "Feria IV after IX Sunday after Pentecost",
+ "title": "St. Martha",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2026-07-30": {
+ "tempora": "Feria V after IX Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2026-07-31": {
+ "tempora": "Feria VI after IX Sunday after Pentecost",
+ "title": "St. Ignatius Loyola",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-08-01": {
+ "tempora": "Saturday after IX Sunday after Pentecost",
+ "title": "V Mass of the B. V. M. – Salve, Sancta Parens",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2026-08-02": {
+ "tempora": "",
+ "title": "X Sunday after Pentecost",
+ "rank": 2,
+ "colour": "g"
+ },
+ "2026-08-03": {
+ "tempora": "Feria II after X Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2026-08-04": {
+ "tempora": "Feria III after X Sunday after Pentecost",
+ "title": "St. Dominic",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-08-05": {
+ "tempora": "Feria IV after X Sunday after Pentecost",
+ "title": "Dedication of the Basilica of St. Mary Major",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-08-06": {
+ "tempora": "Feria V after X Sunday after Pentecost",
+ "title": "Transfiguration of Our Lord",
+ "rank": 2,
+ "colour": "w"
+ },
+ "2026-06-17": {
+ "tempora": "Feria IV after III Sunday after Pentecost",
+ "title": "St. Gregory Barbarigo",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-08-07": {
+ "tempora": "Feria VI after X Sunday after Pentecost",
+ "title": "St. Cajetan",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-08-08": {
+ "tempora": "Saturday after X Sunday after Pentecost",
+ "title": "St. John Mary Vianney",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-08-10": {
+ "tempora": "Feria II after XI Sunday after Pentecost",
+ "title": "St. Lawrence",
+ "rank": 2,
+ "colour": "r"
+ },
+ "2026-08-09": {
+ "tempora": "XI Sunday after Pentecost",
+ "title": "Vigil of St. Lawrence",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2026-08-11": {
+ "tempora": "Feria III after XI Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2026-08-12": {
+ "tempora": "Feria IV after XI Sunday after Pentecost",
+ "title": "St. Clare",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-08-13": {
+ "tempora": "Feria V after XI Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2026-08-16": {
+ "tempora": "",
+ "title": "XII Sunday after Pentecost",
+ "rank": 2,
+ "colour": "g"
+ },
+ "2026-08-14": {
+ "tempora": "Feria VI after XI Sunday after Pentecost",
+ "title": "Vigil of the Assumption",
+ "rank": 2,
+ "colour": "w"
+ },
+ "2026-08-15": {
+ "tempora": "Saturday after XI Sunday after Pentecost",
+ "title": "Assumption of the Blessed Virgin Mary",
+ "rank": 1,
+ "colour": "w"
+ },
+ "2026-08-17": {
+ "tempora": "Feria II after XII Sunday after Pentecost",
+ "title": "St. Hyacinth",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-08-18": {
+ "tempora": "Feria III after XII Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2026-08-19": {
+ "tempora": "Feria IV after XII Sunday after Pentecost",
+ "title": "St. John Eudes",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-06-25": {
+ "tempora": "Feria V after IV Sunday after Pentecost",
+ "title": "St. William",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-08-20": {
+ "tempora": "Feria V after XII Sunday after Pentecost",
+ "title": "St. Bernard of Clairvaux",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-08-21": {
+ "tempora": "Feria VI after XII Sunday after Pentecost",
+ "title": "St. Jane Frances de Chantal",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-08-23": {
+ "tempora": "",
+ "title": "XIII Sunday after Pentecost",
+ "rank": 2,
+ "colour": "g"
+ },
+ "2026-08-22": {
+ "tempora": "Saturday after XII Sunday after Pentecost",
+ "title": "Immaculate Heart of Mary",
+ "rank": 2,
+ "colour": "w"
+ },
+ "2026-08-24": {
+ "tempora": "Feria II after XIII Sunday after Pentecost",
+ "title": "St. Bartholomew",
+ "rank": 2,
+ "colour": "r"
+ },
+ "2026-08-25": {
+ "tempora": "Feria III after XIII Sunday after Pentecost",
+ "title": "St. Louis IX",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-08-26": {
+ "tempora": "Feria IV after XIII Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2026-08-27": {
+ "tempora": "Feria V after XIII Sunday after Pentecost",
+ "title": "St. Joseph Calasance",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-08-28": {
+ "tempora": "Feria VI after XIII Sunday after Pentecost",
+ "title": "St. Augustine",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2026-08-29": {
+ "tempora": "Saturday after XIII Sunday after Pentecost",
+ "title": "Beheading of St. John the Baptist",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2026-08-30": {
+ "tempora": "",
+ "title": "XIV Sunday after Pentecost",
+ "rank": 2,
+ "colour": "g"
+ },
+ "2026-08-31": {
+ "tempora": "Feria II after XIV Sunday after Pentecost",
+ "title": "St. Raymond Nonnatus",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-09-01": {
+ "tempora": "Feria III after XIV Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2026-06-28": {
+ "tempora": "",
+ "title": "V Sunday after Pentecost",
+ "rank": 2,
+ "colour": "g"
+ },
+ "2026-09-07": {
+ "tempora": "Feria II after XV Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2026-09-04": {
+ "tempora": "Feria VI after XIV Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2026-09-06": {
+ "tempora": "",
+ "title": "XV Sunday after Pentecost",
+ "rank": 2,
+ "colour": "g"
+ },
+ "2026-06-30": {
+ "tempora": "Feria III after V Sunday after Pentecost",
+ "title": "In Commemoratione Sancti Pauli Apostoli",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2026-09-03": {
+ "tempora": "Feria V after XIV Sunday after Pentecost",
+ "title": "St. Pius X",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-09-13": {
+ "tempora": "",
+ "title": "XVI Sunday after Pentecost",
+ "rank": 2,
+ "colour": "g"
+ },
+ "2026-09-14": {
+ "tempora": "Feria II after XVI Sunday after Pentecost",
+ "title": "Exaltation of the Holy Cross",
+ "rank": 2,
+ "colour": "r"
+ },
+ "2026-09-10": {
+ "tempora": "Feria V after XV Sunday after Pentecost",
+ "title": "St. Nicholas of Tolentino",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-09-02": {
+ "tempora": "Feria IV after XIV Sunday after Pentecost",
+ "title": "St. Stephen of Hungary",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-06-27": {
+ "tempora": "Saturday after IV Sunday after Pentecost",
+ "title": "V Mass of the B. V. M. – Salve, Sancta Parens",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2026-07-20": {
+ "tempora": "Feria II after VIII Sunday after Pentecost",
+ "title": "St. Jerome Emiliani",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2026-09-08": {
+ "tempora": "Feria III after XV Sunday after Pentecost",
+ "title": "Nativity of the Blessed Virgin Mary",
+ "rank": 2,
+ "colour": "w"
+ },
+ "2026-06-20": {
+ "tempora": "Saturday after III Sunday after Pentecost",
+ "title": "V Mass of the B. V. M. – Salve, Sancta Parens",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2026-09-09": {
+ "tempora": "Feria IV after XV Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2026-09-11": {
+ "tempora": "Feria VI after XV Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2026-09-12": {
+ "tempora": "Saturday after XV Sunday after Pentecost",
+ "title": "Most Holy Name of Mary",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-09-19": {
+ "tempora": "Saturday after XVI Sunday after Pentecost",
+ "title": "St. Januarius & Companions",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2026-09-21": {
+ "tempora": "Feria II after XVII Sunday after Pentecost",
+ "title": "St. Matthew",
+ "rank": 2,
+ "colour": "r"
+ },
+ "2026-09-20": {
+ "tempora": "",
+ "title": "XVII Sunday after Pentecost",
+ "rank": 2,
+ "colour": "g"
+ },
+ "2026-09-05": {
+ "tempora": "Saturday after XIV Sunday after Pentecost",
+ "title": "St. Lawrence Justinian",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-09-18": {
+ "tempora": "Feria VI after XVI Sunday after Pentecost",
+ "title": "St. Joseph of Cupertino",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-09-28": {
+ "tempora": "Feria II after XVIII Sunday after Pentecost",
+ "title": "St. Wenceslaus",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2026-09-27": {
+ "tempora": "",
+ "title": "XVIII Sunday after Pentecost",
+ "rank": 2,
+ "colour": "g"
+ },
+ "2026-09-25": {
+ "tempora": "",
+ "title": "Ember Friday of September",
+ "rank": 2,
+ "colour": "v"
+ },
+ "2026-09-29": {
+ "tempora": "Feria III after XVIII Sunday after Pentecost",
+ "title": "Dedication of St. Michael the Archangel",
+ "rank": 1,
+ "colour": "w"
+ },
+ "2026-09-15": {
+ "tempora": "Feria III after XVI Sunday after Pentecost",
+ "title": "Seven Sorrows of the Blessed Virgin Mary",
+ "rank": 2,
+ "colour": "w"
+ },
+ "2026-09-17": {
+ "tempora": "Feria V after XVI Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2026-09-23": {
+ "tempora": "",
+ "title": "Ember Wednesday of September",
+ "rank": 2,
+ "colour": "v"
+ },
+ "2026-10-02": {
+ "tempora": "Feria VI after XVIII Sunday after Pentecost",
+ "title": "Holy Guardian Angels",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-10-03": {
+ "tempora": "Saturday after XVIII Sunday after Pentecost",
+ "title": "St. Theresa of the Infant Jesus",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-10-04": {
+ "tempora": "",
+ "title": "XIX Sunday after Pentecost",
+ "rank": 2,
+ "colour": "g"
+ },
+ "2026-09-30": {
+ "tempora": "Feria IV after XVIII Sunday after Pentecost",
+ "title": "St. Jerome",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-10-05": {
+ "tempora": "Feria II after XIX Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2026-09-24": {
+ "tempora": "Feria V after XVII Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2026-10-07": {
+ "tempora": "Feria IV after XIX Sunday after Pentecost",
+ "title": "Our Lady of the Rosary",
+ "rank": 2,
+ "colour": "w"
+ },
+ "2026-10-09": {
+ "tempora": "Feria VI after XIX Sunday after Pentecost",
+ "title": "St. John Leonardi",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-10-06": {
+ "tempora": "Feria III after XIX Sunday after Pentecost",
+ "title": "St. Bruno",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-10-10": {
+ "tempora": "Saturday after XIX Sunday after Pentecost",
+ "title": "St. Francis Borgia",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-10-12": {
+ "tempora": "Feria II after XX Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2026-10-08": {
+ "tempora": "Feria V after XIX Sunday after Pentecost",
+ "title": "St. Bridget of Sweden",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-10-11": {
+ "tempora": "",
+ "title": "XX Sunday after Pentecost",
+ "rank": 2,
+ "colour": "g"
+ },
+ "2026-09-26": {
+ "tempora": "",
+ "title": "Ember Saturday of September",
+ "rank": 2,
+ "colour": "v"
+ },
+ "2026-10-16": {
+ "tempora": "Feria VI after XX Sunday after Pentecost",
+ "title": "St. Hedwig",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-10-19": {
+ "tempora": "Feria II after XXI Sunday after Pentecost",
+ "title": "St. Peter of Alcantara",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-10-17": {
+ "tempora": "Saturday after XX Sunday after Pentecost",
+ "title": "St. Margaret Mary Alacoque",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-10-14": {
+ "tempora": "Feria IV after XX Sunday after Pentecost",
+ "title": "St. Callistus I",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2026-09-22": {
+ "tempora": "Feria III after XVII Sunday after Pentecost",
+ "title": "St. Thomas of Villanova",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-10-15": {
+ "tempora": "Feria V after XX Sunday after Pentecost",
+ "title": "St. Teresa of Avila",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-09-16": {
+ "tempora": "Feria IV after XVI Sunday after Pentecost",
+ "title": "Sts. Cornelius & Cyprian",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2026-10-20": {
+ "tempora": "Feria III after XXI Sunday after Pentecost",
+ "title": "St. John Cantius",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-10-18": {
+ "tempora": "",
+ "title": "XXI Sunday after Pentecost",
+ "rank": 2,
+ "colour": "g"
+ },
+ "2026-10-27": {
+ "tempora": "Feria III after XXII Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2026-10-01": {
+ "tempora": "Feria V after XVIII Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2026-10-23": {
+ "tempora": "Feria VI after XXI Sunday after Pentecost",
+ "title": "St. Anthony Mary Claret",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-10-22": {
+ "tempora": "Feria V after XXI Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2026-10-24": {
+ "tempora": "Saturday after XXI Sunday after Pentecost",
+ "title": "St. Raphael the Archangel",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-10-25": {
+ "tempora": "XXII Sunday after Pentecost",
+ "title": "Christ the King",
+ "rank": 1,
+ "colour": "w"
+ },
+ "2026-10-28": {
+ "tempora": "Feria IV after XXII Sunday after Pentecost",
+ "title": "Sts. Simon & Jude",
+ "rank": 2,
+ "colour": "r"
+ },
+ "2026-10-13": {
+ "tempora": "Feria III after XX Sunday after Pentecost",
+ "title": "St. Edward",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-10-30": {
+ "tempora": "Feria VI after XXII Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2026-10-29": {
+ "tempora": "Feria V after XXII Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2026-11-03": {
+ "tempora": "Feria III after XXIII Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2026-11-05": {
+ "tempora": "Feria V after XXIII Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2026-11-01": {
+ "tempora": "XXIII Sunday after Pentecost",
+ "title": "All Saints",
+ "rank": 1,
+ "colour": "w"
+ },
+ "2026-10-26": {
+ "tempora": "Feria II after XXII Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2026-11-06": {
+ "tempora": "Feria VI after XXIII Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2026-11-14": {
+ "tempora": "Saturday after V Sunday after Epiphany",
+ "title": "St. Josaphat",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-11-12": {
+ "tempora": "Feria V after V Sunday after Epiphany",
+ "title": "St. Martin I",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2026-11-08": {
+ "tempora": "",
+ "title": "V Sunday after Epiphany",
+ "rank": 2,
+ "colour": "g"
+ },
+ "2026-11-16": {
+ "tempora": "Feria II after VI Sunday after Epiphany",
+ "title": "St. Gertrude the Great",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-10-31": {
+ "tempora": "Saturday after XXII Sunday after Pentecost",
+ "title": "V Mass of the B. V. M. – Salve, Sancta Parens",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2026-11-15": {
+ "tempora": "",
+ "title": "VI Sunday after Epiphany",
+ "rank": 2,
+ "colour": "g"
+ },
+ "2026-11-11": {
+ "tempora": "Feria IV after V Sunday after Epiphany",
+ "title": "St. Martin of Tours",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-11-13": {
+ "tempora": "Feria VI after V Sunday after Epiphany",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2026-11-04": {
+ "tempora": "Feria IV after XXIII Sunday after Pentecost",
+ "title": "St. Charles Borromeo",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-10-21": {
+ "tempora": "Feria IV after XXI Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2026-11-07": {
+ "tempora": "Saturday after XXIII Sunday after Pentecost",
+ "title": "V Mass of the B. V. M. – Salve, Sancta Parens",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2026-11-22": {
+ "tempora": "",
+ "title": "XXIV Sunday after Pentecost",
+ "rank": 2,
+ "colour": "g"
+ },
+ "2026-11-10": {
+ "tempora": "Feria III after V Sunday after Epiphany",
+ "title": "St. Andrew Avellino",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-11-20": {
+ "tempora": "Feria VI after VI Sunday after Epiphany",
+ "title": "St. Felix of Valois",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-11-19": {
+ "tempora": "Feria V after VI Sunday after Epiphany",
+ "title": "St. Elizabeth of Hungary",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-11-17": {
+ "tempora": "Feria III after VI Sunday after Epiphany",
+ "title": "St. Gregory the Wonderworker",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-11-27": {
+ "tempora": "Feria VI after XXIV Sunday after Pentecost",
+ "title": "Feria",
+ "rank": 4,
+ "colour": "g"
+ },
+ "2026-11-23": {
+ "tempora": "Feria II after XXIV Sunday after Pentecost",
+ "title": "St. Clement I",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2026-11-09": {
+ "tempora": "Feria II after V Sunday after Epiphany",
+ "title": "Dedication of the Archbasilica of Our Holy Savior",
+ "rank": 2,
+ "colour": "w"
+ },
+ "2026-11-30": {
+ "tempora": "Feria II after I Sunday of Advent",
+ "title": "St. Andrew",
+ "rank": 2,
+ "colour": "r"
+ },
+ "2026-11-29": {
+ "tempora": "",
+ "title": "I Sunday of Advent",
+ "rank": 1,
+ "colour": "v"
+ },
+ "2026-12-01": {
+ "tempora": "",
+ "title": "Feria III after I Sunday of Advent",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2026-11-21": {
+ "tempora": "Saturday after VI Sunday after Epiphany",
+ "title": "Presentation of the Blessed Virgin Mary",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-11-02": {
+ "tempora": "Feria II after XXIII Sunday after Pentecost",
+ "title": "Commemoration of All Souls",
+ "rank": 1,
+ "colour": "b"
+ },
+ "2026-12-06": {
+ "tempora": "",
+ "title": "II Sunday of Advent",
+ "rank": 1,
+ "colour": "v"
+ },
+ "2026-11-25": {
+ "tempora": "Feria IV after XXIV Sunday after Pentecost",
+ "title": "St. Catherine of Alexandria",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2026-11-24": {
+ "tempora": "Feria III after XXIV Sunday after Pentecost",
+ "title": "St. John of the Cross",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-12-02": {
+ "tempora": "Feria IV after I Sunday of Advent",
+ "title": "St. Vivian",
+ "rank": 3,
+ "colour": "r"
+ },
+ "2026-11-28": {
+ "tempora": "Saturday after XXIV Sunday after Pentecost",
+ "title": "V Mass of the B. V. M. – Salve, Sancta Parens",
+ "rank": 4,
+ "colour": "w"
+ },
+ "2026-11-18": {
+ "tempora": "Feria IV after VI Sunday after Epiphany",
+ "title": "Dedication of the Basilicas of Sts. Peter & Paul",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-12-03": {
+ "tempora": "Feria V after I Sunday of Advent",
+ "title": "St. Francis Xavier",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-12-09": {
+ "tempora": "",
+ "title": "Feria IV after II Sunday of Advent",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2026-12-08": {
+ "tempora": "Feria III after II Sunday of Advent",
+ "title": "Immaculate Conception of the Blessed Virgin Mary",
+ "rank": 1,
+ "colour": "w"
+ },
+ "2026-12-12": {
+ "tempora": "",
+ "title": "Sabbato after II Sunday of Advent",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2026-12-13": {
+ "tempora": "",
+ "title": "III Sunday of Advent",
+ "rank": 1,
+ "colour": "pv"
+ },
+ "2026-12-05": {
+ "tempora": "",
+ "title": "Sabbato after I Sunday of Advent",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2026-12-04": {
+ "tempora": "Feria VI after I Sunday of Advent",
+ "title": "St. Peter Chrysologus",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-12-14": {
+ "tempora": "",
+ "title": "Feria II after III Sunday of Advent",
+ "rank": 3,
+ "colour": "pv"
+ },
+ "2026-12-11": {
+ "tempora": "Feria VI after II Sunday of Advent",
+ "title": "St. Damasus I",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-12-17": {
+ "tempora": "",
+ "title": "Feria V after III Sunday of Advent",
+ "rank": 2,
+ "colour": "pv"
+ },
+ "2026-12-15": {
+ "tempora": "",
+ "title": "Feria III after III Sunday of Advent",
+ "rank": 3,
+ "colour": "pv"
+ },
+ "2026-12-10": {
+ "tempora": "",
+ "title": "Feria V after II Sunday of Advent",
+ "rank": 3,
+ "colour": "v"
+ },
+ "2026-12-18": {
+ "tempora": "",
+ "title": "Ember Friday of Advent",
+ "rank": 2,
+ "colour": "v"
+ },
+ "2026-11-26": {
+ "tempora": "Feria V after XXIV Sunday after Pentecost",
+ "title": "St. Sylvester",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-12-20": {
+ "tempora": "",
+ "title": "IV Sunday of Advent",
+ "rank": 1,
+ "colour": "v"
+ },
+ "2026-12-07": {
+ "tempora": "Feria II after II Sunday of Advent",
+ "title": "St. Ambrose",
+ "rank": 3,
+ "colour": "w"
+ },
+ "2026-12-24": {
+ "tempora": "",
+ "title": "Vigil of Christmas",
+ "rank": 1,
+ "colour": "v"
+ },
+ "2026-12-22": {
+ "tempora": "",
+ "title": "Feria III after IV Sunday of Advent",
+ "rank": 2,
+ "colour": "v"
+ },
+ "2026-12-23": {
+ "tempora": "",
+ "title": "Feria IV after IV Sunday of Advent",
+ "rank": 2,
+ "colour": "v"
+ },
+ "2026-12-16": {
+ "tempora": "",
+ "title": "Ember Wednesday of Advent",
+ "rank": 2,
+ "colour": "v"
+ },
+ "2026-12-21": {
+ "tempora": "Feria II after IV Sunday of Advent",
+ "title": "St. Thomas",
+ "rank": 2,
+ "colour": "r"
+ },
+ "2026-12-30": {
+ "tempora": "",
+ "title": "Feria in the Octave of Christmas",
+ "rank": 2,
+ "colour": "w"
+ },
+ "2026-12-26": {
+ "tempora": "",
+ "title": "St. Stephen",
+ "rank": 2,
+ "colour": "r"
+ },
+ "2026-12-28": {
+ "tempora": "",
+ "title": "Holy Innocents",
+ "rank": 2,
+ "colour": "r"
+ },
+ "2026-12-29": {
+ "tempora": "",
+ "title": "Feria in the Octave of Christmas",
+ "rank": 2,
+ "colour": "w"
+ },
+ "2026-12-31": {
+ "tempora": "",
+ "title": "Feria in the Octave of Christmas",
+ "rank": 2,
+ "colour": "w"
+ },
+ "2026-12-19": {
+ "tempora": "",
+ "title": "Ember Saturday of Advent",
+ "rank": 2,
+ "colour": "v"
+ },
+ "2026-12-27": {
+ "tempora": "",
+ "title": "Sunday in the Octave of Christmas",
+ "rank": 2,
+ "colour": "w"
+ },
+ "2026-12-25": {
+ "tempora": "",
+ "title": "The Nativity of Our Lord",
+ "rank": 1,
+ "colour": "w"
+ }
+}