-
Notifications
You must be signed in to change notification settings - Fork 53
/
propersdata.js
7334 lines (7333 loc) · 341 KB
/
propersdata.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
var sundayKeys = [
{title:"Proprium Temporum...",en:"Proper of the Time..."},
{key:"Adv1",title:"I Adventus",en:"1st Sunday in Advent"},
{key:"Adv2",title:"II Adventus",en:"2nd Sunday in Advent"},
{key:"Adv3",title:"III Adventus",en:"3rd Sunday in Advent"},
{key:"Adv3w",title:"Feria Quarta IV Temporum in Adventu",en:"Ember Wednesday in Advent"},
{key:"Adv3f",title:"Feria Sexta IV Temporum in Adventu",en:"Ember Friday in Advent"},
{key:"Adv3s",title:"Sabbato IV Temporum in Adventu",en:"Ember Saturday in Advent"},
{key:"Adv3ss",title:"Sabbato IV Temporum (forma brevior)",en:"Ember Saturday (shorter form)"},
{key:"Adv4",title:"IV Adventus",en:"4th Sunday in Advent"},
{key:"Dec24",title:"pridie Nativitas",en:"Christmas Eve"},
{key:"Dec25_1",title:"Nativitas Domini, Missa ad media noctem",en:"The Nativity of our Lord (Christmas), Mass at Midnight"},
{key:"Dec25_2",title:"Nativitas Domini, Missa ad matutinam",en:"Christmas, Mass at dawn"},
{key:"Dec25_3",title:"Nativitas Domini, Missa interdiu",en:"Christmas, Mass during the day"},
{key:"Nat1",title:"Dominica in Oct Nativitatis",en:"Sunday within the octave of Christmas"},
{key:"Jan1",title:"Octava Nativitatis (Circumcisione Domini)",en:"Octave day of Christmas (Jan 1.)"},
{key:"Nat2",title:"Sanctissimi Nominis Jesu",en:"Sunday preceding the Epiphany (Holy Name of Jesus)"},
{key:"Jan5a",title:"In Vigilia Epiphaniæ",en:"Vigil of Epiphany"},
{key:"Epi",title:"Epiphania",en:"Epiphany"},
{key:"Epi1",title:"I post Epiphaniam (Sanctæ Familiæ)",en:"1st Sunday after Epiphany (Holy Family)"},
{key:"Epi1s",title:" Feria post I post Epiphaniam",en:" Feria after 1st Sunday after Epiphany"},
{key:"Epi2",title:"II post Epiphaniam",en:"2nd Sunday after Epiphany"},
{key:"Epi3",title:"III post Epiphaniam",en:"3rd Sunday after Epiphany"},
{key:"Epi4",title:"IV post Epiphaniam",en:"4th Sunday after Epiphany"},
{key:"Epi5",title:"V post Epiphaniam",en:"5th Sunday after Epiphany"},
{key:"Epi6",title:"VI post Epiphaniam",en:"6th Sunday after Epiphany"},
{key:"7a",title:"Septuagesima",en:"Septuagesima"},
{key:"6a",title:"Sexagesima",en:"Sexagesima"},
{key:"5a",title:"Quinquagesima",en:"Quinquagesima"},
{key:"5aw",title:"Feria IV Cinerum",en:"Ash Wednesday"},
{key:"5ah",title:" Feria V post Cinerum",en:" Thursday after Ash Wednesday"},
{key:"5af",title:" Feria VI post Cinerum",en:" Friday after Ash Wednesday"},
{key:"5as",title:" Sabbato post Cinerum",en:" Saturday after Ash Wednesday"},
{key:"Quad1",title:"Dominica I in Quadragesima",en:"1st Sunday in Lent"},
{key:"Quad1m",title:" Feria II post Dominicam I Quadragesimæ",en:" Monday in the 1st week of Lent"},
{key:"Quad1t",title:" Feria III post Dominicam I Quadragesimæ",en:" Tuesday in the 1st week of Lent"},
{key:"Quad1w",title:" Feria Quarta IV Temporum in Quadragesima",en:" Ember Wednesday in Lent"},
{key:"Quad1h",title:" Feria V post Dominicam I Quadragesimæ",en:" Thursday in the 1st week of Lent"},
{key:"Quad1f",title:" Feria Sexta IV Temporum in Quadragesima",en:" Ember Friday in Lent"},
{key:"Quad1s",title:" Sabbato IV Temporum in Quadragesima",en:" Ember Saturday in Lent"},
{key:"Quad1ss",title:" Sabbato IV Temporum (forma brevior)",en:" Ember Saturday (shorter form)"},
{key:"Quad2",title:"Dominica II in Quadragesima",en:"2nd Sunday in Lent"},
{key:"Quad2m",title:" Feria II post Dominicam II Quadragesimæ",en:" Monday in the 2nd week of Lent"},
{key:"Quad2t",title:" Feria III post Dominicam II Quadragesimæ",en:" Tuesday in the 2nd week of Lent"},
{key:"Quad2w",title:" Feria IV post Dominicam II Quadragesimæ",en:" Wednesday in the 2nd week of Lent"},
{key:"Quad2h",title:" Feria V post Dominicam II Quadragesimæ",en:" Thursday in the 2nd week of Lent"},
{key:"Quad2f",title:" Feria VI post Dominicam II Quadragesimæ",en:" Friday in the 2nd week of Lent"},
{key:"Quad2s",title:" Sabbato post Dominicam II Quadragesimæ",en:" Saturday in the 2nd week of Lent"},
{key:"Quad3",title:"Dominica III in Quadragesima",en:"3rd Sunday in Lent"},
{key:"Quad3m",title:" Feria II post Dominicam III Quadragesime",en:" Monday in the 3rd week of Lent"},
{key:"Quad3t",title:" Feria III post Dominicam III Quadragesimæ",en:" Tuesday in the 3rd week of Lent"},
{key:"Quad3w",title:" Feria IV post Dominicam III Quadragesimæ",en:" Wednesday in the 3rd week of Lent"},
{key:"Quad3h",title:" Feria V post Dominicam III Quadragesimæ",en:" Thursday in the 3rd week of Lent"},
{key:"Quad3f",title:" Feria VI post Dominicam III Quadragesimæ",en:" Friday in the 3rd week of Lent"},
{key:"Quad3s",title:" Sabbato post Dominicam III Quadragesimæ",en:" Saturday in the 3rd week of Lent"},
{key:"Quad4",title:"Dominica IV in Quadragesima",en:"4th Sunday in Lent"},
{key:"Quad4m",title:" Feria II post Dominicam IV Quadragesime",en:" Monday in the 4th week of Lent"},
{key:"Quad4t",title:" Feria III post Dominicam IV Quadragesimæ",en:" Tuesday in the 4th week of Lent"},
{key:"Quad4w",title:" Feria IV post Dominicam IV Quadragesimæ",en:" Wednesday in the 4th week of Lent"},
{key:"Quad4h",title:" Feria V post Dominicam IV Quadragesimæ",en:" Thursday in the 4th week of Lent"},
{key:"Quad4f",title:" Feria VI post Dominicam IV Quadragesimæ",en:" Friday in the 4th week of Lent"},
{key:"Quad4s",title:" Sabbato post Dominicam IV Quadragesimæ",en:" Saturday in the 4th week of Lent"},
{key:"Quad5",title:"Dominica I Passionis",en:"Passion Sunday"},
{key:"Quad5m",title:" Feria II post Dominicam I Passionis",en:" Monday in Passion Week"},
{key:"Quad5t",title:" Feria III post Dominicam I Passionis",en:" Tuesday in Passion Week"},
{key:"Quad5w",title:" Feria IV post Dominicam I Passionis",en:" Wednesday in Passion Week"},
{key:"Quad5h",title:" Feria V post Dominicam I Passionis",en:" Thursday in Passion Week"},
{key:"Quad5f",title:" Feria VI post Dominicam I Passionis",en:" Friday in Passion Week"},
{key:"Quad5f_sd",title:" Feria VI: Septem Dolorum beatæ Mariæ Virginis",en:" Friday: The Seven Sorrows of the Blessed Virgin Mary"},
{key:"Quad5s",title:" Sabbato post Dominicam I Passionis",en:" Saturday in Passion Week"},
{key:"Quad6",title:"Dominica in Palmis",en:"Palm Sunday"},
{key:"Quad6_v",title:"Dominica in Palmis (ante 1955)",en:"Palm Sunday (pre 1955)"},
{key:"Quad6m",title:" Feria II Hebdomadæ Sanctæ",en:" Monday in Holy Week"},
{key:"Quad6t",title:" Feria III Hebdomadæ Sanctæ",en:" Tuesday in Holy Week"},
{key:"Quad6t_v",title:" Feria III Hebdomadæ Sanctæ (ante 1955)",en:" Tuesday in Holy Week (pre 1955)"},
{key:"Quad6w",title:" Feria IV Hebdomadæ Sanctæ",en:" Wednesday in Holy Week"},
{key:"Quad6w_v",title:" Feria IV Hebdomadæ Sanctæ (ante 1955)",en:" Wednesday in Holy Week (pre 1955)"},
{key:"Quad6h",title:"Feria V in Cena Domini",en:"Maundy Thursday"},
{key:"Quad6h_v",title:"Feria V in Cena Domini (ante 1955)",en:"Maundy Thursday (pre 1955)"},
{key:"Quad6h-lotio",title:" Antiphonæ ad Lotionem Pedum",en:" Antiphons at the Washing of the Feet"},
{key:"Quad6f",title:"Feria VI in Passione et Morte Domini",en:"Good Friday"},
{key:"Quad6f_v",title:"Feria VI in Parasceve (ante 1955)",en:"Good Friday (pre 1955)"},
{key:"Quad6s",title:"Vigilia Paschalis",en:"Easter Vigil"},
{key:"Quad6s_v",title:"Vigilia Paschalis (ante 1955)",en:"Easter Vigil (pre 1955)"},
{key:"Pasc0",title:"Dominica Resurrectionis",en:"Easter Sunday"},
{key:"Pasc0m",title:"Feria II in Oct Paschæ",en:"Easter Monday"},
{key:"Pasc0t",title:"Feria III in Oct Paschæ",en:"Easter Tuesday"},
{key:"Pasc0w",title:"Feria IV in Oct Paschæ",en:"Easter Wednesday"},
{key:"Pasc0h",title:"Feria V in Oct Paschæ",en:"Easter Thursday"},
{key:"Pasc0f",title:"Feria VI in Oct Paschæ",en:"Easter Friday"},
{key:"Pasc0s",title:"Sabbato in Oct Paschæ",en:"Easter Saturday"},
{key:"Pasc1",title:"Dominica in Albis (in Oct Paschæ)",en:"Low Sunday (The Octave of Easter)"},
{key:"Pasc2",title:"II post Pascha",en:"2nd Sunday after Easter"},
{key:"Pasc2w",title:"S. Joseph Sponsi B. Mariæ V.",en:"Solemnity of St Joseph"},
{key:"Pasc3",title:"III post Pascha",en:"3rd Sunday after Easter"},
{key:"Pasc4",title:"IV post Pascha",en:"4th Sunday after Easter"},
{key:"Pasc5",title:"V post Pascha",en:"5th Sunday after Easter"},
{key:"Asc",title:"Ascensio",en:"Ascension Thursday"},
{key:"Pasc6",title:"in Oct Ascensione Domini",en:"Sunday within the octave of the Ascension"},
{key:"Pasc6s",title:"Sabbato in Vigilia Pentecostes",en:"Pentecost Vigil (Whitsun Eve)"},
{key:"Pasc6s_v",title:"Sabbato in Vigilia Pentecostes (ante 1955)",en:"Pentecost Vigil (Whitsun Eve) (pre 1955)"},
{key:"Pent0",title:"Dominica Pentecostes",en:"Pentecost (Whitsunday)"},
{key:"Pent0m",title:"Feria II in Oct Pentecostes",en:"Pentecost Monday"},
{key:"Pent0t",title:"Feria III in Oct Pentecostes",en:"Pentecost Tuesday"},
{key:"Pent0w",title:"Feria Quarta IV Temp. Pentecostes",en:"Ember Wednesday of Pentecost"},
{key:"Pent0h",title:"Feria V in Oct Pentecostes",en:"Pentecost Thursday"},
{key:"Pent0f",title:"Feria Sexta IV Temp. Pentecostes",en:"Ember Friday of Pentecost"},
{key:"Pent0s",title:"Sabbato IV Temp. Pentecostes",en:"Ember Saturday of Pentecost"},
{key:"Pent0ss",title:"Sabbato IV Temporum (forma brevior)",en:"Ember Saturday (shorter form)"},
{key:"Pent1",title:"Sanctissimæ Trinitatis",en:"Trinity Sunday"},
{key:"Pent1w",title:" Feria post 1 post Pentecosten",en:" Feria after 1st Sunday after Pentecost"},
{key:"CorpusChristi",title:"Corpus Christi",en:"Corpus Christi"},
{key:"Pent2",title:"Dominica in Octavam Sme Corporis Christi",en:"Sunday within the octave of Corpus Christi (2nd after Pentecost)"},
{key:"SCJ",title:"Sacratissimum Cor Jesu",en:"Most Sacred Heart of Jesus"},
{key:"Pent3",title:"Dominica in Octavam Sme Cordis Jesu",en:"Sunday within the octave of Sacred Heart (3rd after Pentecost)"},
{key:"Pent4",title:"4 post Pentecosten",en:"4th Sunday after Pentecost"},
{key:"Pent5",title:"5 post Pentecosten",en:"5th Sunday after Pentecost"},
{key:"Pent6",title:"6 post Pentecosten",en:"6th Sunday after Pentecost"},
{key:"Pent7",title:"7 post Pentecosten",en:"7th Sunday after Pentecost"},
{key:"Pent8",title:"8 post Pentecosten",en:"8th Sunday after Pentecost"},
{key:"Pent9",title:"9 post Pentecosten",en:"9th Sunday after Pentecost"},
{key:"Pent10",title:"10 post Pentecosten",en:"10th Sunday after Pentecost"},
{key:"Pent11",title:"11 post Pentecosten",en:"11th Sunday after Pentecost"},
{key:"Pent12",title:"12 post Pentecosten",en:"12th Sunday after Pentecost"},
{key:"Pent13",title:"13 post Pentecosten",en:"13th Sunday after Pentecost"},
{key:"Pent14",title:"14 post Pentecosten",en:"14th Sunday after Pentecost"},
{key:"Pent15",title:"15 post Pentecosten",en:"15th Sunday after Pentecost"},
{key:"Pent16",title:"16 post Pentecosten",en:"16th Sunday after Pentecost"},
{key:"Pent17",title:"17 post Pentecosten",en:"17th Sunday after Pentecost"},
{key:"EmbWedSept",title:"Feria Quarta IV Temporum Septembris",en:"Ember Wednesday in September"},
{key:"EmbFriSept",title:"Feria Sexta IV Temporum Septembris",en:"Ember Friday in September"},
{key:"EmbSatSept",title:"Sabbato IV Temporum Septembris",en:"Ember Saturday in September"},
{key:"EmbSatSeptS",title:"Sabbato IV Temporum (forma brevior)",en:"Ember Saturday (shorter form)"},
{key:"Pent18",title:"18 post Pentecosten",en:"18th Sunday after Pentecost"},
{key:"Pent19",title:"19 post Pentecosten",en:"19th Sunday after Pentecost"},
{key:"Pent20",title:"20 post Pentecosten",en:"20th Sunday after Pentecost"},
{key:"Pent21",title:"21 post Pentecosten",en:"21st Sunday after Pentecost"},
{key:"Pent22",title:"22 post Pentecosten",en:"22nd Sunday after Pentecost"},
{key:"ChristusRex",title:"Domini Nostri Jesu Christi Regis",en:"Feast of Our Lord Jesus Christ, King"},
{key:"Pent23",title:"23 post Pentecosten",en:"23rd Sunday after Pentecost"}
];
var canticumMap = {"Benedictus":{"ref":"Luc 1: 68-79","map":[0,1,2,3,4,5,6,7,8,9,10,11]},"Magnificat":{"ref":"Luc 1: 46-55","map":[0,1,2,3,4,5,6,7,8,9]},"Nunc dimittis":{"ref":"Luc 2: 29-32","map":[0,1,2,3]},"Canticum Annae":{"ref":"1 Reg 2: 1-10","map":[0,2,3,5,6,8,9,10,13,14]},"Canticum David":{"ref":"1 Par 29: 10-13","map":[0,1,4,6]},"Canticum Ecclesiastici":{"ref":"Eccli 36: 1-16","map":[0,1,3,4,5,6,6,7,7,8,9,10,11,13,14,15]},"Canticum Ezechiae":{"ref":"Is 38: 10-20","map":[0,1,3,5,6,8,10,10,12,13,14]},"Canticum Habacuc":{"ref":"Ha 3: 2-19","map":[0,3,5,6,7,10,11,13,14,16,17,18,20,22,23,26,29,30]},"Canticum Isaiae":{"ref":"Is 45: 15-25","map":[0,1,2,3,5,7,9,11,12,14,15]},"Canticum Isaiae (alterum)":{"ref":"Is 53: 1-5","map":[0,1,3,5,7]},"Canticum Jeremiae":{"ref":"Jer 31: 10-14","map":[0,2,3,6,8]},"Canticum Judith":{"ref":"Judith 16: 15-21","map":[0,1,2,4,5,6,7]},"Canticum Moysis":{"ref":"Exod 15: 1-19","map":[0,1,3,3,4,5,5,6,8,10,11,12,12,14,15,16,18,19,20]},"Canticum Moysis (Deut)":{"ref":"Deut 32: 1-18","map":[0,1,2,3,4,5,7,9,11,12,14,16,17,19,21,23,24,26]},"Canticum Tobiae":{"ref":"Tob 13: 1-10","map":[0,1,2,3,5,6,7,8,9,10]}};
var psalmsArray = new Array(150).join(',').split(',').map(function(i,j) {
var psalm = j+1;
var val = ("00" + psalm).slice(-3);
return {
key: val,
en: "" + psalm,
title: "" + psalm
};
});
var canticleArray = Object.keys(canticumMap).map(function(key) {
return {
key: key,
en: key,
title: key
}
});
var psalmCanticleArray = [{
children: psalmsArray,
en: "Psalms",
title: "Psalmi"
}, {
children: canticleArray,
en: "Canticles",
title: "Cantica"
}];
var ultimaeDominicaePostPentecosten = [
{key:"PentEpi3",title:"3. quæ superfuit post Epiphaniam",en:"3rd Sunday after Epiphany"},
{key:"PentEpi4",title:"4. quæ superfuit post Epiphaniam",en:"4th Sunday after Epiphany"},
{key:"PentEpi5",title:"5. quæ superfuit post Epiphaniam",en:"5th Sunday after Epiphany"},
{key:"PentEpi6",title:"6. quæ superfuit post Epiphaniam",en:"6th Sunday after Epiphany"},
{key:"Pent24",title:"Ultima post Pentecosten",en:"Last Sunday after Pentecost"}
];
var otherKeys = [
{title:"Votivæ et Aliæ Missæ...",en:"Votive/Other Masses..."},
{title:"Selige quidque proprium secundum inceptum",key:"custom",en:"Select each proper by incipit"},
{key:"nuptialis",title:"Missa nuptialis",en:"Wedding Mass"},
{key:"defunctorum",title:"Missa pro Defunctis",en:"Mass for the Dead"},
{key:"dedicatio",title:"Missa Dedicationis Ecclesiæ",en:"Mass of the dedication of a church"},
{key:"litaniis",title:"Ad Litaniis Maj. et Min.",en:"At Major and Minor Litanies"},
{group:true, title:"Missa votiva de Feria II",en:"Votive Mass on Mondays"},
{key:"votiveST",title:"Missa votiva de Sanctissima Trinitate",en:"Votive Mass of the Most Holy Trinity"},
{group:true, title:"Missa votiva de Feria III",en:"Votive Mass on Tuesdays"},
{key:"votiveA",title:"Missa votiva de Angelis",en:"Votive Mass of the Holy Angels"},
{group:true, title:"Missæ votivæ de Feria IV",en:"Votive Masses on Wednesdays"},
{key:"votiveJ",title:"Missa votiva de Sancto Joseph",en:"Votive Mass of Saint Joseph"},
{key:"votivePP",title:"Missa votiva de SS. Apostolis Petro et Paulo",en:"Votive Mass of Saints Peter and Paul"},
{key:"votiveOA",title:"Missa votiva de omnibus SS. Apostolis",en:"Votive Mass of the Apostles"},
{group:true, title:"Missæ votivæ de Feria V",en:"Votive Masses on Thursdays"},
{key:"votiveSS",title:"Missa votiva de Spiritu Sancto",en:"Votive Mass of the Holy Ghost"},
{key:"votiveSES",title:"Missa votiva de Sanctissimo Sacramento",en:"Votive Mass of the Most Holy Sacrament"},
{key:"votiveJCSES",title:"Missa votiva de Jesu Christo Summo et Æterno Sacerdote",en:"Votive Mass of Christ the Eternal High Priest"},
{group:true, title:"Missæ votivæ de Feria VI",en:"Votive Masses on Fridays"},
{key:"votiveSC",title:"Missa votiva de Sancta Cruce",en:"Votive Mass of the Holy Cross"},
{key:"votivePJC",title:"Missa votiva de Passione D.N. Jesu Christo",en:"Votive Mass of the Passion of Our Lord Jesus Christ"},
{key:"votiveSCJ",title:"Missa votiva de Sacratissimo Corde Jesu",en:"Votive Mass of the Most Sacred Heart of Jesus"},
{group:true, title:"Missæ de Sancta Maria in Sabbato",en:"Masses of Our Lady on Saturday"},
{key:"SMadvent",title:"Ab Adventu usque ad Nativitatem",en:"in Advent"},
{key:"SMchristmas",title:"A Nativitate usque ad Purificationem",en:"From Christmas to Candlemas"},
{key:"SMlent",title:"A Purificatione usque ad Pascha",en:"From Candlemas to Easter"},
{key:"SMeaster",title:"A Pascha usque ad Pentecosten",en:"From Easter to Pentecost"},
{key:"SMpentecost",title:"A Pentecoste usque ad Adventum",en:"From Pentecost to Advent"},
{key:"Aug22",title:"Immaculati Cordis B.M.V.",en:"Of the Immaculate Heart of BVM"},
{group:true, title:"Missæ votivæ aliæ",en:"Other Votive Masses"},
{key:"votiveESP", title:"Pro eligendo Summo Pontifice",en:"For electing a pope"},
{key:"votiveFP", title:"Pro Fidei Propagatione",en:"For the propagation of the faith"},
{key:"votiveED", title:"Pro Ecclesiæ defensione",en:"For defense of the Church"},
{key:"votiveUE", title:"Pro unitate Ecclesiæ",en:"For unity of the Church"},
{key:"votiveTB", title:"Tempore belli",en:"In time of war"},
{key:"votiveP", title:"Pro pace",en:"To beg for Peace"},
{key:"votiveVM", title:"Pro vitanda mortalitate",en:"In time of Pestilence"},
{key:"votiveRP", title:"Pro remissione peccatorum",en:"For the remission of sins"},
{key:"votivePIA", title:"Pro peregrinantibus (et iter agentibus)",en:"For pilgrims and travelers"},
{key:"votiveMPI", title:"Pro Infirmis",en:"For the Sick"},
{key:"votiveGBM", title:"Ad postulandam gratiam bene moriendi",en:"To ask for the grace of a happy death"},
{key:"votiveQN", title:"Pro quacumque necessitate",en:"For any necessity"},
{key:"votiveECJ",title:"De Eucharistico Corde Jesu",en:"Of the Eucharistic Heart of Jesus"}
];
var saintKeys = [
{title:"Proprium Sanctorum...",en:"Proper of the Saints..."},
/* START_saintKeys */
{key:"Jan5",title:"Jan 5: St Telesphorus",en:"Jan 5: St Telesphorus"},
{key:"Jan11",title:"Jan 11: St Hyginus",en:"Jan 11: St Hyginus"},
{key:"Jan13",title:"Jan 13: Baptism of Our Lord Jesus Christ",en:"Jan 13: Baptism of Our Lord Jesus Christ"},
{key:"Jan14",title:"Jan 14: St Hilary",en:"Jan 14: St Hilary"},
{key:"Jan15",title:"Jan 15: St Paul the First Hermit",en:"Jan 15: St Paul the First Hermit"},
{key:"Jan16",title:"Jan 16: St Marcellus I",en:"Jan 16: St Marcellus I"},
{key:"Jan17",title:"Jan 17: St Anthony",en:"Jan 17: St Anthony"},
{key:"Jan18",title:"Jan 18: Chair of St Peter in Rome",en:"Jan 18: Chair of St Peter in Rome"},
{key:"Jan19",title:"Jan 19: Ss Marius and Companions",en:"Jan 19: Ss Marius and Companions"},
{key:"Jan20",title:"Jan 20: St Fabian and St Sebastian",en:"Jan 20: St Fabian and St Sebastian"},
{key:"Jan21",title:"Jan 21: St Agnes",en:"Jan 21: St Agnes"},
{key:"Jan22",title:"Jan 22: Ss Vincent and Anastasius",en:"Jan 22: Ss Vincent and Anastasius"},
{key:"Jan23",title:"Jan 23: St Raymond of Penafort",en:"Jan 23: St Raymond of Penafort"},
{key:"Jan24",title:"Jan 24: St Timothy",en:"Jan 24: St Timothy"},
{key:"Jan25",title:"Jan 25: Conversion of St Paul",en:"Jan 25: Conversion of St Paul"},
{key:"Jan26",title:"Jan 26: St Polycarp",en:"Jan 26: St Polycarp"},
{key:"Jan27",title:"Jan 27: St John Chrysostom",en:"Jan 27: St John Chrysostom"},
{key:"Jan28",title:"Jan 28: St Peter Nolasco",en:"Jan 28: St Peter Nolasco"},
{key:"Jan29",title:"Jan 29: St Francis de Sales",en:"Jan 29: St Francis de Sales"},
{key:"Jan30",title:"Jan 30: St Martina",en:"Jan 30: St Martina"},
{key:"Jan31",title:"Jan 31: St John Bosco",en:"Jan 31: St John Bosco"},
{key:"Feb1",title:"Feb 1: St Ignatius",en:"Feb 1: St Ignatius"},
{key:"Feb2",title:"Feb 2: Purification of BVM",en:"Feb 2: Purification of BVM"},
{key:"Feb3",title:"Feb 3: St Blase",en:"Feb 3: St Blase"},
{key:"Feb4",title:"Feb 4: St Andrew Corsini",en:"Feb 4: St Andrew Corsini"},
{key:"Feb5",title:"Feb 5: St Agatha",en:"Feb 5: St Agatha"},
{key:"Feb6",title:"Feb 6: St Titus",en:"Feb 6: St Titus"},
{key:"Feb7",title:"Feb 7: St Romuald",en:"Feb 7: St Romuald"},
{key:"Feb8",title:"Feb 8: St John of Matha",en:"Feb 8: St John of Matha"},
{key:"Feb9",title:"Feb 9: St Cyril of Alexandria",en:"Feb 9: St Cyril of Alexandria"},
{key:"Feb10",title:"Feb 10: St Scholastica",en:"Feb 10: St Scholastica"},
{key:"Feb11",title:"Feb 11: Apparition of BVM at Lourdes",en:"Feb 11: Apparition of BVM at Lourdes"},
{key:"Feb12",title:"Feb 12: Seven Founders of the Servite Order",en:"Feb 12: Seven Founders of the Servite Order"},
{key:"Feb14",title:"Feb 14: St Valentine",en:"Feb 14: St Valentine"},
{key:"Feb15",title:"Feb 15: Ss Faustinus and Jovita",en:"Feb 15: Ss Faustinus and Jovita"},
{key:"Feb18",title:"Feb 18: St Simeon",en:"Feb 18: St Simeon"},
{key:"Feb18a",title:"Feb 18: St Marie Bernadette Soubirous",en:"Feb 18: St Marie Bernadette Soubirous"},
{key:"Feb22",title:"Feb 22: Chair of St Peter at Antioch",en:"Feb 22: Chair of St Peter at Antioch"},
{key:"Feb23",title:"Feb 23: St Peter Damian",en:"Feb 23: St Peter Damian"},
{key:"Feb23or24",title:"Feb 23 vel 24: In vigilia S Matthiæ",en:"Feb 23 or 24: Vigil of St Matthias"},
{key:"Feb24or25",title:"Feb 24 or 25: St Matthias",en:"Feb 24 or 25: St Matthias"},
{key:"Feb27or28",title:"Feb 27 or 28: St Gabriel of Our Lady of Sorrows",en:"Feb 27 or 28: St Gabriel of Our Lady of Sorrows"},
{key:"Mar4",title:"Mar 4: St Casimir of Lithuania",en:"Mar 4: St Casimir of Lithuania"},
{key:"Mar6",title:"Mar 6: Ss Perpetua and Felicity and Companions",en:"Mar 6: Ss Perpetua and Felicity and Companions"},
{key:"Mar7",title:"Mar 7: St Thomas Aquinas",en:"Mar 7: St Thomas Aquinas"},
{key:"Mar8",title:"Mar 8: St John of God",en:"Mar 8: St John of God"},
{key:"Mar9",title:"Mar 9: St Frances of Rome",en:"Mar 9: St Frances of Rome"},
{key:"Mar10",title:"Mar 10: Forty Martyrs of Sebaste",en:"Mar 10: Forty Martyrs of Sebaste"},
{key:"Mar12",title:"Mar 12: St Gregory the Great",en:"Mar 12: St Gregory the Great"},
{key:"Mar17",title:"Mar 17: St Patrick",en:"Mar 17: St Patrick"},
{key:"Mar18",title:"Mar 18: St Cyril of Jerusalem",en:"Mar 18: St Cyril of Jerusalem"},
{key:"Mar19",title:"Mar 19: St Joseph",en:"Mar 19: St Joseph",class:1,transferIfSunday:true},
{key:"Mar21",title:"Mar 21: St Benedict",en:"Mar 21: St Benedict"},
{key:"Mar24",title:"Mar 24: St Gabriel the Archangel",en:"Mar 24: St Gabriel the Archangel"},
{key:"Mar25",title:"Mar 25: Annunciation of Our Lady",en:"Mar 25: Annunciation of Our Lady",class:1,transferIfSunday:true},
{key:"Mar27",title:"Mar 27: St John Damascene",en:"Mar 27: St John Damascene"},
{key:"Mar28",title:"Mar 28: St John Capistran",en:"Mar 28: St John Capistran"},
{key:"Apr2",title:"Apr 2: St Francis of Paula",en:"Apr 2: St Francis of Paula"},
{key:"Apr4",title:"Apr 4: St Isidore",en:"Apr 4: St Isidore"},
{key:"Apr5",title:"Apr 5: St Vincent Ferrer",en:"Apr 5: St Vincent Ferrer"},
{key:"Apr11",title:"Apr 11: St Leo I",en:"Apr 11: St Leo I"},
{key:"Apr13",title:"Apr 13: St Hermenegild",en:"Apr 13: St Hermenegild"},
{key:"Apr14",title:"Apr 14: St Justin",en:"Apr 14: St Justin"},
{key:"Apr17",title:"Apr 17: St Anicetus",en:"Apr 17: St Anicetus"},
{key:"Apr21",title:"Apr 21: St Anselm",en:"Apr 21: St Anselm"},
{key:"Apr22",title:"Apr 22: Ss Soter and Caius",en:"Apr 22: Ss Soter and Caius"},
{key:"Apr23",title:"Apr 23: St George",en:"Apr 23: St George"},
{key:"Apr24",title:"Apr 24: St Fidelis of Sigmaringen",en:"Apr 24: St Fidelis of Sigmaringen"},
{key:"Apr25",title:"Apr 25: St Mark",en:"Apr 25: St Mark"},
{key:"Apr26",title:"Apr 26: Ss Cletus and Marcellinus",en:"Apr 26: Ss Cletus and Marcellinus"},
{key:"Apr27",title:"Apr 27: St Peter Canisius",en:"Apr 27: St Peter Canisius"},
{key:"Apr28",title:"Apr 28: St Paul of the Cross",en:"Apr 28: St Paul of the Cross"},
{key:"Apr29",title:"Apr 29: St Peter of Verona",en:"Apr 29: St Peter of Verona"},
{key:"Apr30",title:"Apr 30: St Catherine of Sienna",en:"Apr 30: St Catherine of Sienna"},
{key:"May1",title:"May 1: St Joseph the Worker",en:"May 1: St Joseph the Worker",class:1},
{key:"May2",title:"May 2: St Athanasius",en:"May 2: St Athanasius"},
{key:"May3",title:"May 3: In Inventione S Crucis",en:"May 3: Finding of the Holy Cross"},
{key:"May4",title:"May 4: St Monica",en:"May 4: St Monica"},
{key:"May5",title:"May 5: St Pius V",en:"May 5: St Pius V"},
{key:"May6",title:"May 6: S Joannis: Ap et Ev ante Portam Latinam",en:"May 6: St John before the Latin Gate"},
{key:"May7",title:"May 7: St Stanislaus",en:"May 7: St Stanislaus"},
{key:"May8",title:"May 8: In Apparitione S Michaelis Archangeli",en:"May 8: Apparition of St. Michael the Archangel"},
{key:"May9",title:"May 9: St Gregory Nazianzen",en:"May 9: St Gregory Nazianzen"},
{key:"May10",title:"May 10: St Antoninus",en:"May 10: St Antoninus"},
{key:"May11",title:"May 11: Ss Philip and James",en:"May 11: Ss Philip and James"},
{key:"May12",title:"May 12: Ss Nereus, Achilleus, Domitilla, and Pancras",en:"May 12: Ss Nereus, Achilleus, Domitilla, and Pancras"},
{key:"May13",title:"May 13: St Robert Bellarmine",en:"May 13: St Robert Bellarmine"},
{key:"May14",title:"May 14: St Boniface",en:"May 14: St Boniface"},
{key:"May15",title:"May 15: St John Baptist de la Salle",en:"May 15: St John Baptist de la Salle"},
{key:"May16",title:"May 16: St Ubaldus",en:"May 16: St Ubaldus"},
{key:"May17",title:"May 17: St Paschal Baylon",en:"May 17: St Paschal Baylon"},
{key:"May18",title:"May 18: St Venantius",en:"May 18: St Venantius"},
{key:"May19",title:"May 19: St Peter Celestine",en:"May 19: St Peter Celestine"},
{key:"May20",title:"May 20: St Bernardine of Siena",en:"May 20: St Bernardine of Siena"},
{key:"May24",title:"May 24: Our Lady Help of Christians",en:"May 24: Our Lady Help of Christians"},
{key:"May25",title:"May 25: St Gregory VII",en:"May 25: St Gregory VII"},
{key:"May26",title:"May 26: St Philip Neri",en:"May 26: St Philip Neri"},
{key:"May27",title:"May 27: St Bede the Venerable",en:"May 27: St Bede the Venerable"},
{key:"May28",title:"May 28: St Augustine of Canterbury",en:"May 28: St Augustine of Canterbury"},
{key:"May29",title:"May 29: St Mary Magdalen of Pazzi",en:"May 29: St Mary Magdalen of Pazzi"},
{key:"May30",title:"May 30: St Felix",en:"May 30: St Felix"},
{key:"May31",title:"May 31: Queenship of BVM",en:"May 31: Queenship of BVM"},
{key:"Jun1",title:"Jun 1: St Angela Merici",en:"Jun 1: St Angela Merici"},
{key:"Jun2",title:"Jun 2: Sts Marcellinus, Peter, and Erasmus",en:"Jun 2: Sts Marcellinus, Peter, and Erasmus"},
{key:"Jun4",title:"Jun 4: St Francis Caracciolo",en:"Jun 4: St Francis Caracciolo"},
{key:"Jun5",title:"Jun 5: St Boniface",en:"Jun 5: St Boniface"},
{key:"Jun6",title:"Jun 6: St Norbert",en:"Jun 6: St Norbert"},
{key:"Jun9",title:"Jun 9: Ss Primus and Felician",en:"Jun 9: Ss Primus and Felician"},
{key:"Jun10",title:"Jun 10: St Margaret",en:"Jun 10: St Margaret"},
{key:"Jun11",title:"Jun 11: St Barnabas",en:"Jun 11: St Barnabas"},
{key:"Jun12",title:"Jun 12: St John of San Facundo",en:"Jun 12: St John of San Facundo"},
{key:"Jun13",title:"Jun 13: St Anthony of Padua",en:"Jun 13: St Anthony of Padua"},
{key:"Jun14",title:"Jun 14: St Basil the Great",en:"Jun 14: St Basil the Great"},
{key:"Jun15",title:"Jun 15: Sts Vitus, Modestus, and Crescentia",en:"Jun 15: Sts Vitus, Modestus, and Crescentia"},
{key:"Jun17",title:"Jun 17: St Gregory Barbadici",en:"Jun 17: St Gregory Barbadici"},
{key:"Jun18",title:"Jun 18: St Ephrem",en:"Jun 18: St Ephrem"},
{key:"Jun19",title:"Jun 19: St Juliana Falconieri",en:"Jun 19: St Juliana Falconieri"},
{key:"Jun19a",title:"Jun 19: Ss Gervasii et Protasii",en:"Jun 19: Sts Gervase and Protase"},
{key:"Jun20",title:"Jun 20: St Silverius",en:"Jun 20: St Silverius"},
{key:"Jun21",title:"Jun 21: St Aloysius Gonzaga",en:"Jun 21: St Aloysius Gonzaga"},
{key:"Jun22",title:"Jun 22: St Paulinus",en:"Jun 22: St Paulinus"},
{key:"Jun23",title:"Jun 23: In Vigilia Nativitatis S Joannis Baptistæ",en:"Jun 23: Vigil of the Birth of St John the Baptist"},
{key:"Jun24",title:"Jun 24: Birth of St John the Baptist",en:"Jun 24: Birth of St John the Baptist"},
{key:"Jun25",title:"Jun 25: St William",en:"Jun 25: St William"},
{key:"Jun26",title:"Jun 26: Ss John and Paul",en:"Jun 26: Ss John and Paul"},
{key:"Jun28",title:"Jun 28: Vigil of Ss Peter and Paul",en:"Jun 28: Vigil of SS Peter and Paul"},
{key:"Jun29",title:"Jun 29: Ss Peter and Paul",en:"Jun 29: Ss Peter and Paul"},
{key:"Jun30",title:"Jun 30: Commemoration of St Paul",en:"Jun 30: Commemoration of St Paul"},
{key:"Jul1",title:"Jul 1: The Most Precious Blood of Our Lord",en:"Jul 1: The Most Precious Blood of Our Lord"},
{key:"Jul2",title:"Jul 2: The Visitation of BVM",en:"Jul 2: The Visitation of BVM"},
{key:"Jul3",title:"Jul 3: St Irenaeus",en:"Jul 3: St Irenaeus"},
{key:"Jul3a",title:"Jul 3: S Leonis II",en:"Jul 3: St Leo II"},
{key:"Jul4",title:"Jul 4: Within the octave of the Apostles Peter and Paul",en:"Jul 4: Within the octave of the Apostles Peter and Paul"},
{key:"Jul5",title:"Jul 5: St Anthony Mary Zaccaria",en:"Jul 5: St Anthony Mary Zaccaria"},
{key:"Jul6",title:"Jul 6: In Octava Ss Petri et Pauli App",en:"Jul 6: Octave of Ss Peter and Paul"},
{key:"Jul7",title:"Jul 7: Ss Cyril and Methodius",en:"Jul 7: Ss Cyril and Methodius"},
{key:"Jul8",title:"Jul 8: St Elizabeth",en:"Jul 8: St Elizabeth"},
{key:"Jul10",title:"Jul 10: The Seven Holy Brothers",en:"Jul 10: The Seven Holy Brothers"},
{key:"Jul11",title:"Jul 11: St Pius I",en:"Jul 11: St Pius I"},
{key:"Jul11a",title:"Jul 11: St Oliver Plunkett",en:"Jul 11: St Oliver Plunkett"},
{key:"Jul12",title:"Jul 12: St John Gualbert",en:"Jul 12: St John Gualbert"},
{key:"Jul13",title:"Jul 13: S Anacleti Papæ et Mart",en:"Jul 13: St Anacletus"},
{key:"Jul14",title:"Jul 14: St Bonaventure",en:"Jul 14: St Bonaventure"},
{key:"Jul15",title:"Jul 15: St Henry",en:"Jul 15: St Henry"},
{key:"Jul16",title:"Jul 16: Our Lady of Mount Carmel",en:"Jul 16: Our Lady of Mount Carmel"},
{key:"Jul17",title:"Jul 17: St Alexius",en:"Jul 17: St Alexius"},
{key:"Jul18",title:"Jul 18: St Camillus de Lellis",en:"Jul 18: St Camillus de Lellis"},
{key:"Jul19",title:"Jul 19: St Vincent de Paul",en:"Jul 19: St Vincent de Paul"},
{key:"Jul20",title:"Jul 20: St Jerome Emilian",en:"Jul 20: St Jerome Emilian"},
{key:"Jul21",title:"Jul 21: St Lawrence of Brindisi",en:"Jul 21: St Lawrence of Brindisi"},
{key:"Jul21a",title:"Jul 21: S Praxedis Virginis",en:"Jul 21: St Praxedes"},
{key:"Jul22",title:"Jul 22: St Mary Magdalen",en:"Jul 22: St Mary Magdalen"},
{key:"Jul23",title:"Jul 23: St Apollinaris",en:"Jul 23: St Apollinaris"},
{key:"Jul24",title:"Jul 24: In Vigilia S Jacobi Apostoli",en:"Jul 24: Vigil of St. James"},
{key:"Jul25",title:"Jul 25: St James the Greater",en:"Jul 25: St James the Greater"},
{key:"Jul26",title:"Jul 26: St Anne",en:"Jul 26: St Anne"},
{key:"Jul27",title:"Jul 27: St Pantaleon",en:"Jul 27: St Pantaleon"},
{key:"Jul28",title:"Jul 28: Ss Nazarius and Celsus",en:"Jul 28: Ss Nazarius and Celsus"},
{key:"Jul29",title:"Jul 29: St Martha",en:"Jul 29: St Martha"},
{key:"Jul30",title:"Jul 30: Ss Abdon and Sennen",en:"Jul 30: Ss Abdon and Sennen"},
{key:"Jul31",title:"Jul 31: St Ignatius of Loyola",en:"Jul 31: St Ignatius of Loyola"},
{key:"Aug1",title:"Aug 1: Holy Machabees",en:"Aug 1: Holy Machabees"},
{key:"Aug1a",title:"Aug 1: S Petri Ap ad Vincula",en:"Aug 1: St Peter at the Chains"},
{key:"Aug2",title:"Aug 2: St Alphonsus Mary de Ligouri",en:"Aug 2: St Alphonsus Mary de Ligouri"},
{key:"Aug3",title:"Aug 3: In Inventione S Stephani Protomartyris",en:"Aug 3: The Finding of St Stephen’s Relics"},
{key:"Aug4",title:"Aug 4: St Dominic",en:"Aug 4: St Dominic"},
{key:"Aug5",title:"Aug 5: Dedication of the Basilica of St Mary Major",en:"Aug 5: Dedication of the Basilica of St Mary Major"},
{key:"Aug6",title:"Aug 6: Transfiguration of Our Lord",en:"Aug 6: Transfiguration of Our Lord"},
{key:"Aug7",title:"Aug 7: St Cajetan",en:"Aug 7: St Cajetan"},
{key:"Aug8",title:"Aug 8: St John Mary Vianney",en:"Aug 8: St John Mary Vianney"},
{key:"Aug8a",title:"Aug 8: Ss Cyriaci, Largi, et Smaragdi Martyrum",en:"Aug 8: Ss Cyriacus, Largus, and Smaragdus"},
{key:"Aug9",title:"Aug 9: Vigil of St Lawrence",en:"Aug 9: Vigil of St Lawrence"},
{key:"Aug10",title:"Aug 10: St Lawrence",en:"Aug 10: St Lawrence"},
{key:"Aug11",title:"Aug 11: St Tiburtius and St Susanna",en:"Aug 11: St Tiburtius and St Susanna"},
{key:"Aug12",title:"Aug 12: St Clare",en:"Aug 12: St Clare"},
{key:"Aug13",title:"Aug 13: Ss Hippolytus and Cassian",en:"Aug 13: Ss Hippolytus and Cassian"},
{key:"Aug14",title:"Aug 14: Vigil of Assumption of BVM",en:"Aug 14: Vigil of Assumption of BVM"},
{key:"Aug15",title:"Aug 15: Assumption of BVM",en:"Aug 15: Assumption of BVM"},
{key:"Aug16",title:"Aug 16: St Joachim",en:"Aug 16: St Joachim"},
{key:"Aug17",title:"Aug 17: St Hyacinth",en:"Aug 17: St Hyacinth"},
{key:"Aug18",title:"Aug 18: St Agapitus",en:"Aug 18: St Agapitus"},
{key:"Aug19",title:"Aug 19: St John Eudes",en:"Aug 19: St John Eudes"},
{key:"Aug20",title:"Aug 20: St Bernard",en:"Aug 20: St Bernard"},
{key:"Aug21",title:"Aug 21: St Jane Frances de Chantal",en:"Aug 21: St Jane Frances de Chantal"},
{key:"Aug22",title:"Aug 22: Feast of the Immaculate Heart of BVM",en:"Aug 22: Feast of the Immaculate Heart of BVM"},
{key:"Aug23",title:"Aug 23: St Philip Benizi",en:"Aug 23: St Philip Benizi"},
{key:"Aug24",title:"Aug 24: St Bartholomew",en:"Aug 24: St Bartholomew"},
{key:"Aug25",title:"Aug 25: St Louis",en:"Aug 25: St Louis"},
{key:"Aug26",title:"Aug 26: St Zephyrinus",en:"Aug 26: St Zephyrinus"},
{key:"Aug27",title:"Aug 27: St Joseph Calasanctius",en:"Aug 27: St Joseph Calasanctius"},
{key:"Aug28",title:"Aug 28: St Augustine",en:"Aug 28: St Augustine"},
{key:"Aug29",title:"Aug 29: Beheading of St John the Baptist",en:"Aug 29: Beheading of St John the Baptist"},
{key:"Aug30",title:"Aug 30: St Rose of Lima",en:"Aug 30: St Rose of Lima"},
{key:"Aug31",title:"Aug 31: St Raymund Nonnatus",en:"Aug 31: St Raymund Nonnatus"},
{key:"Sep1",title:"Sep 1: St Giles",en:"Sep 1: St Giles"},
{key:"Sep2",title:"Sep 2: St Stephen",en:"Sep 2: St Stephen"},
{key:"Sep3",title:"Sep 3: St Pius X",en:"Sep 3: St Pius X"},
{key:"Sep5",title:"Sep 5: St Lawrence Justinian",en:"Sep 5: St Lawrence Justinian"},
{key:"Sep8",title:"Sep 8: Nativity of BVM",en:"Sep 8: Nativity of BVM"},
{key:"Sep9",title:"Sep 9: St Gorgonius",en:"Sep 9: St Gorgonius"},
{key:"Sep9a",title:"Sep 9: St Peter Claver",en:"Sep 9: St Peter Claver"},
{key:"Sep10",title:"Sep 10: St Nicholas of Tolentino",en:"Sep 10: St Nicholas of Tolentino"},
{key:"Sep11",title:"Sep 11: Ss Protus and Hyacinth",en:"Sep 11: Ss Protus and Hyacinth"},
{key:"Sep12",title:"Sep 12: Most Holy Name of Mary",en:"Sep 12: Most Holy Name of Mary"},
{key:"Sep14",title:"Sep 14: The Exaltation of the Holy Cross",en:"Sep 14: The Exaltation of the Holy Cross"},
{key:"Sep15",title:"Sep 15: Seven Sorrows of BVM",en:"Sep 15: Seven Sorrows of BVM"},
{key:"Sep16",title:"Sep 16: St Cornelius",en:"Sep 16: St Cornelius"},
{key:"Sep17",title:"Sep 17: The Stigmata of St Francis",en:"Sep 17: The Stigmata of St Francis"},
{key:"Sep18",title:"Sep 18: St Joseph of Cupertino",en:"Sep 18: St Joseph of Cupertino"},
{key:"Sep19",title:"Sep 19: St Januarius",en:"Sep 19: St Januarius"},
{key:"Sep20",title:"Sep 20: St Eustace and Companions",en:"Sep 20: St Eustace and Companions"},
{key:"Sep21",title:"Sep 21: St Matthew",en:"Sep 21: St Matthew"},
{key:"Sep22",title:"Sep 22: St Thomas of Villanova",en:"Sep 22: St Thomas of Villanova"},
{key:"Sep23",title:"Sep 23: St Linus",en:"Sep 23: St Linus"},
{key:"Sep24",title:"Sep 24: Our Lady of Ransom",en:"Sep 24: Our Lady of Ransom"},
{key:"Sep26",title:"Sep 26: Ss Cyprian and Justina",en:"Sep 26: Ss Cyprian and Justina"},
{key:"Sep26a",title:"Sep 26: Ss Isaac Jogues, John de Brebeuf, and Companions",en:"Sep 26: Ss Isaac Jogues, John de Brebeuf, and Companions"},
{key:"Sep27",title:"Sep 27: Ss Cosmas and Damian",en:"Sep 27: Ss Cosmas and Damian"},
{key:"Sep28",title:"Sep 28: St Wenceslaus",en:"Sep 28: St Wenceslaus"},
{key:"Sep29",title:"Sep 29: St Michael the Archangel",en:"Sep 29: St Michael the Archangel"},
{key:"Sep30",title:"Sep 30: St Jerome",en:"Sep 30: St Jerome"},
{key:"Oct1",title:"Oct 1: St Remigius",en:"Oct 1: St Remigius"},
{key:"Oct2",title:"Oct 2: The Holy Guardian Angels",en:"Oct 2: The Holy Guardian Angels"},
{key:"Oct3",title:"Oct 3: St Thérèse of the Child Jesus",en:"Oct 3: St Thérèse of the Child Jesus"},
{key:"Oct4",title:"Oct 4: St Francis of Assisi",en:"Oct 4: St Francis of Assisi"},
{key:"Oct5",title:"Oct 5: St Placid and Companions",en:"Oct 5: St Placid and Companions"},
{key:"Oct6",title:"Oct 6: St Bruno",en:"Oct 6: St Bruno"},
{key:"Oct7",title:"Oct 7: The Most Holy Rosary of BVM",en:"Oct 7: The Most Holy Rosary of BVM"},
{key:"Oct8",title:"Oct 8: St Bridget",en:"Oct 8: St Bridget"},
{key:"Oct9",title:"Oct 9: St John Leonardi",en:"Oct 9: St John Leonardi"},
{key:"Oct10",title:"Oct 10: St Francis Borgia",en:"Oct 10: St Francis Borgia"},
{key:"Oct11",title:"Oct 11: The Motherhood of BVM",en:"Oct 11: The Motherhood of BVM"},
{key:"Oct13",title:"Oct 13: St Edward",en:"Oct 13: St Edward"},
{key:"Oct14",title:"Oct 14: St Callistus",en:"Oct 14: St Callistus"},
{key:"Oct15",title:"Oct 15: St Teresa of Avila",en:"Oct 15: St Teresa of Avila"},
{key:"Oct16",title:"Oct 16: St Hedwig",en:"Oct 16: St Hedwig"},
{key:"Oct17",title:"Oct 17: St Margaret Mary Alacoque",en:"Oct 17: St Margaret Mary Alacoque"},
{key:"Oct18",title:"Oct 18: St Luke",en:"Oct 18: St Luke"},
{key:"Oct19",title:"Oct 19: St Peter of Alcantara",en:"Oct 19: St Peter of Alcantara"},
{key:"Oct20",title:"Oct 20: St John Cantius",en:"Oct 20: St John Cantius"},
{key:"Oct21",title:"Oct 21: St Hilarion",en:"Oct 21: St Hilarion"},
{key:"Oct23",title:"Oct 23: St Anthony Mary Claret",en:"Oct 23: St Anthony Mary Claret"},
{key:"Oct24",title:"Oct 24: St Raphael",en:"Oct 24: St Raphael"},
{key:"Oct25",title:"Oct 25: Ss Chrysanthus and Daria",en:"Oct 25: Ss Chrysanthus and Daria"},
{key:"Oct25a",title:"Oct 25: St Isidore the Farmer",en:"Oct 25: St Isidore the Farmer"},
{key:"Oct26",title:"Oct 26: St Evaristus",en:"Oct 26: St Evaristus"},
{key:"Oct27",title:"Oct 27: Vigil of Ss Simon and Jude",en:"Oct 27: Vigil of Ss Simon and Jude"},
{key:"Oct28",title:"Oct 28: Ss Simon and Jude",en:"Oct 28: Ss Simon and Jude"},
{key:"Oct31",title:"Oct 31: Vigil of All Saints",en:"Oct 31: Vigil of All Saints"},
{key:"Nov1",title:"Nov 1: The Feast of All Saints",en:"Nov 1: The Feast of All Saints"},
{key:"Nov2",title:"Nov 2: All Souls' Day",en:"Nov 2: All Souls' Day",class:1,transferIfSunday:true},
{key:"Nov4",title:"Nov 4: St Charles Borromeo",en:"Nov 4: St Charles Borromeo"},
{key:"Nov5",title:"Nov 5: The Feast of the Holy Relics",en:"Nov 5: The Feast of the Holy Relics"},
{key:"Nov8",title:"Nov 8: Four Holy Crowned Martyrs",en:"Nov 8: Four Holy Crowned Martyrs"},
{key:"Nov9",title:"Nov 9: The Dedication of the Lateran Basilica",en:"Nov 9: The Dedication of the Lateran Basilica"},
{key:"Nov10",title:"Nov 10: St Andrew Avellino",en:"Nov 10: St Andrew Avellino"},
{key:"Nov11",title:"Nov 11: St Martin of Tours",en:"Nov 11: St Martin of Tours"},
{key:"Nov12",title:"Nov 12: St Martin I",en:"Nov 12: St Martin I"},
{key:"Nov13",title:"Nov 13: St Didacus",en:"Nov 13: St Didacus"},
{key:"Nov13a",title:"Nov 13: St Frances Xavier Cabrini",en:"Nov 13: St Frances Xavier Cabrini"},
{key:"Nov14",title:"Nov 14: St Josaphat",en:"Nov 14: St Josaphat"},
{key:"Nov15",title:"Nov 15: St Albert the Great",en:"Nov 15: St Albert the Great"},
{key:"Nov16",title:"Nov 16: St Gertrude",en:"Nov 16: St Gertrude"},
{key:"Nov17",title:"Nov 17: St Gregory the Wonderworker",en:"Nov 17: St Gregory the Wonderworker"},
{key:"Nov18",title:"Nov 18: The Dedication of the Basilicas of Ss Peter and Paul",en:"Nov 18: The Dedication of the Basilicas of Ss Peter and Paul"},
{key:"Nov19",title:"Nov 19: St Elizabeth of Hungary",en:"Nov 19: St Elizabeth of Hungary"},
{key:"Nov20",title:"Nov 20: St Felix of Valois",en:"Nov 20: St Felix of Valois"},
{key:"Nov21",title:"Nov 21: The Presentation of BVM",en:"Nov 21: The Presentation of BVM"},
{key:"Nov22",title:"Nov 22: St Cecilia",en:"Nov 22: St Cecilia"},
{key:"Nov23",title:"Nov 23: St Clement I",en:"Nov 23: St Clement I"},
{key:"Nov24",title:"Nov 24: St John of the Cross",en:"Nov 24: St John of the Cross"},
{key:"Nov25",title:"Nov 25: St Catherine of Alexandria",en:"Nov 25: St Catherine of Alexandria"},
{key:"Nov26",title:"Nov 26: St Sylvester",en:"Nov 26: St Sylvester"},
{key:"Nov27",title:"Nov 27: Our Lady of the Miraculous Medal",en:"Nov 27: Our Lady of the Miraculous Medal"},
{key:"Nov29",title:"Nov 29: St Saturninus",en:"Nov 29: St Saturninus"},
{key:"Nov29a",title:"Nov 29: In vigilia S. Andreæ Apostoli",en:"Nov 29: Vigil of St Andrew"},
{key:"Nov30",title:"Nov 30: St Andrew",en:"Nov 30: St Andrew"},
{key:"Dec2",title:"Dec 2: St Bibiana",en:"Dec 2: St Bibiana"},
{key:"Dec3",title:"Dec 3: St Francis Xavier",en:"Dec 3: St Francis Xavier"},
{key:"Dec4",title:"Dec 4: St Peter Chrysologus",en:"Dec 4: St Peter Chrysologus"},
{key:"Dec5",title:"Dec 5: St Sabbas",en:"Dec 5: St Sabbas"},
{key:"Dec6",title:"Dec 6: St Nicholas",en:"Dec 6: St Nicholas"},
{key:"Dec7",title:"Dec 7: St Ambrose",en:"Dec 7: St Ambrose"},
{key:"Dec8",title:"Dec 8: The Immaculate Conception of BVM",en:"Dec 8: The Immaculate Conception of BVM"},
{key:"Dec10",title:"Dec 10: St Melchiades",en:"Dec 10: St Melchiades"},
{key:"Dec11",title:"Dec 11: St Damasus",en:"Dec 11: St Damasus"},
{key:"Dec12",title:"Dec 12: Our Lady of Guadalupe",en:"Dec 12: Our Lady of Guadalupe"},
{key:"Dec13",title:"Dec 13: St Lucy",en:"Dec 13: St Lucy"},
{key:"Dec16",title:"Dec 16: St Eusebius",en:"Dec 16: St Eusebius"},
{key:"Dec20",title:"Dec 20: In Vigilia S Thomæ Apostoli",en:"Dec 20: Vigil of St Thomas"},
{key:"Dec21",title:"Dec 21: St Thomas",en:"Dec 21: St Thomas"},
{key:"Dec26",title:"Dec 26: St Stephen",en:"Dec 26: St Stephen"},
{key:"Dec27",title:"Dec 27: St John",en:"Dec 27: St John"},
{key:"Dec28",title:"Dec 28: The Holy Innocents",en:"Dec 28: The Holy Innocents"},
{key:"Dec29",title:"Dec 29: St Thomas Becket",en:"Dec 29: St Thomas Becket"}
/* END_GEN */
];
var gabcPsalm21 = "initial-style: 0;\n\
commentary: Psalm 21;\n\
%%\n\
(f3)1. De(h)us,(h) De(h)us(h) me(h)us,(h) ré(h)spi(h)ce(h) in(h) me:(f.) †(,) qua(h)re(h) me(h) de(h)<i>re</i>(g)<i>li</i>(f)<b>quís</b>(h)ti?(h.) *(:) lon(h)ge(h) a(h) sa(h)lú(h)te(h) me(h)a(h) ver(h)ba(h) de(h)lic(h)tó(h)rum(h) me(h)<b>ó</b>(h)rum.(f.) (::)";
var versesPsalm21 = '<div class="verses">\
<p><span class="versenum">2. </span>Deus meus, clamábo per diem, et <i>non</i> <i>ex</i><b>áu</b>dies: * et nocte, et non ad insipiéntiam <b>mi</b>hi.</p>\
<p><span class="versenum">3. </span>Tu autem in <i>sanc</i><i>to</i> <b>há</b>bitas: * laus <b>Is</b>raël.</p>\
<p><span class="versenum">4. </span>In te speravérunt <i>pa</i><i>tres</i> <b>nos</b>tri: * speravérunt, et liberásti <b>e</b>os.</p>\
<p><span class="versenum">5. </span>Ad te clamavérunt, et <i>sal</i><i>vi</i> <b>fac</b>ti sunt: * in te speravérunt, et non sunt con<b>fú</b>si.</p>\
<p><span class="versenum">6. </span>Ego autem sum vermis, <i>et</i> <i>non</i> <b>ho</b>mo: * oppróbrium hóminum, et abjéctio <b>ple</b>bis.</p>\
<p><span class="versenum">7. </span>Omnes vidéntes me <i>de</i><i>ri</i><b>sé</b>runt me: * locúti sunt lábiis, et movérunt <b>ca</b>put.</p>\
<p><span class="versenum">8. </span>Sperávit in Dómino, erí<i>pi</i><i>at</i> <b>e</b>um: * salvum fáciat eum, quóniam vult <b>e</b>um.</p>\
<p><span class="versenum">9. </span>Quóniam tu es, qui extraxísti <i>me</i> <i>de</i> <b>ven</b>tre: * spes mea ab ubéribus matris <b>me</b>æ.</p>\
<p><span class="versenum">10. </span>In te projéctus sum ex útero: † de ventre matris meæ Deus <i>me</i><i>us</i> <b>es</b> tu, * ne discésseris <b>a</b> me:</p>\
<p><span class="versenum">11. </span>Quóniam tribulátio <i>pró</i><i>xi</i><b>ma</b> est: * quóniam non est qui <b>ád</b>juvet.</p>\
<p><span class="versenum">12. </span>Circumdedérunt me ví<i>tu</i><i>li</i> <b>mul</b>ti: * tauri pingues obse<b>dé</b>runt me.</p>\
<p><span class="versenum">13. </span>Aperuérunt super <i>me</i> <i>os</i> <b>su</b>um: * sicut leo rápiens et <b>rú</b>giens.</p>\
<p><span class="versenum">14. </span>Sicut a<i>qua</i> <i>ef</i><b>fú</b>sus sum: * et dispérsa sunt ómnia ossa <b>me</b>a.</p>\
<p><span class="versenum">15. </span>Factum est cor meum tamquam ce<i>ra</i> <i>li</i><b>qué</b>scens: * in médio ventris <b>me</b>i.</p>\
<p><span class="versenum">16. </span>Aruit tamquam testa virtus mea, † et lingua mea adhǽsit fáu<i>ci</i><i>bus</i> <b>me</b>is: * et in púlverem mortis dedu<b>xís</b>ti me.</p>\
<p><span class="versenum">17. </span>Quóniam circumdedérunt me <i>ca</i><i>nes</i> <b>mul</b>ti: * concílium malignántium ob<b>sé</b>dit me.</p>\
<p><span class="versenum">18. </span>Fodérunt manus meas et <i>pe</i><i>des</i> <b>me</b>os: * dinumeravérunt ómnia ossa <b>me</b>a.</p>\
<p><span class="versenum">19. </span>Ipsi vero consideravérunt et inspexérunt me: † divisérunt sibi vesti<i>mén</i><i>ta</i> <b>me</b>a, * et super vestem meam misérunt <b>sor</b>tem.</p>\
<p><span class="versenum">20. </span>Tu autem, Dómine, ne elongáveris auxílium <i>tu</i><i>um</i> <b>a</b> me: * ad defensiónem meam <b>cón</b>spice.</p>\
<p><span class="versenum">21. </span>Erue a frámea, Deus, á<i>ni</i><i>mam</i> <b>me</b>am: * et de manu canis únicam <b>me</b>am.</p>\
<p><span class="versenum">22. </span>Salva me ex o<i>re</i> <i>le</i><b>ó</b>nis: * et a córnibus unicórnium humilitátem <b>me</b>am.</p>\
<p><span class="versenum">23. </span>Narrábo nomen tuum frá<i>tri</i><i>bus</i> <b>me</b>is: * in médio Ecclésiæ lau<b>dá</b>bo te.</p>\
<p><span class="versenum">24. </span>Qui timétis Dóminum, lau<i>dá</i><i>te</i> <b>e</b>um: * univérsum semen Jacob, glorificáte <b>e</b>um.</p>\
<p><span class="versenum">25. </span>Tímeat eum omne <i>se</i><i>men</i> <b>Is</b>raël: * quóniam non sprevit, neque despéxit deprecatiónem <b>páu</b>peris:</p>\
<p><span class="versenum">26. </span>Nec avértit fáciem <i>su</i><i>am</i> <b>a</b> me: * et cum clamárem ad eum, exau<b>dí</b>vit me.</p>\
<p><span class="versenum">27. </span>Apud te laus mea in ecclé<i>si</i><i>a</i> <b>ma</b>gna: * vota mea reddam in conspéctu timéntium <b>e</b>um.</p>\
<p><span class="versenum">28. </span>Edent páuperes, et saturabúntur: † et laudábunt Dóminum qui re<i>quí</i><i>runt</i> <b>e</b>um: * vivent corda eórum in sǽculum <b>sǽ</b>culi.</p>\
<p><span class="versenum">29. </span>Reminiscéntur et convertén<i>tur</i> <i>ad</i> <b>Dó</b>minum * univérsi fines <b>ter</b>ræ:</p>\
<p><span class="versenum">30. </span>Et adorábunt in con<i>spéc</i><i>tu</i> <b>e</b>jus * univérsæ famíliæ <b>Gén</b>tium.</p>\
<p><span class="versenum">31. </span>Quóniam Dómi<i>ni</i> <i>est</i> <b>re</b>gnum: * et ipse dominábitur <b>Gén</b>tium.</p>\
<p><span class="versenum">32. </span>Manducavérunt et adoravérunt omnes <i>pin</i><i>gues</i> <b>ter</b>ræ: * in conspéctu ejus cadent omnes qui descéndunt in <b>ter</b>ram.</p>\
<p><span class="versenum">33. </span>Et ánima mea <i>il</i><i>li</i> <b>vi</b>vet: * et semen meum sérviet <b>ip</b>si.</p>\
<p><span class="versenum">34. </span>Annuntiábitur Dómino generátio ventúra: † et annuntiábunt cæli justítiam ejus pópulo <i>qui</i> <i>na</i><b>scé</b>tur, * quem fecit <b>Dó</b>minus.</p>\
</div>';
var gabcHagios = "initial-style: 1;\n\
annotation: \\Vbar;\n\
%%\n\
(c4)H{A}<alt>The first choir:</alt>(g)gi(fe)os(fgf/fe) o(c) The(d)ós.(fg!hv/hg.)\n\
<sp>R/</sp>.(::) Sanc<alt>The second choir:</alt>(g)tus(fgf/fe) De(cd)us.(fg!hv/hg.) (::)\n\
<sp>V/</sp>. Há(g)gi(fe)os(fgf/fe) Is(c)chy(d)rós.(fg!hv/hg.) (::)\n\
<sp>R/</sp>. Sanc(g)tus(fgf/fe) For(cd)tis.(fg!hv/hg.) (::)\n\
<sp>V/</sp>. Há(gh)gi(g)os(ixhg/hiHG'g) A(f)thá(g)na(h)tos,(hiwjvIHiih.) (;) e(g)lé(hj/jvIH')i(g)son(hg/h_g) hy(fd)más.(fghv/hg.) (::)\n\
<sp>R/</sp>. Sanc(gh)tus(ixhg/hiHG'g) Im(f)mor(g)tá(h)lis,(hiwjvIHiih.) (;) mi(g)se(hj/jvIH')ré(g)re(hg/h_g) no(fd)bis.(fghv/hg.) (::)\n";
var gabcReproachesV1 = "initial-style: 0;\n\
%%\n\
(c4)<sp>V/</sp>. {E}(c)go(de) prop(e)ter(e) te(e) fla(e)gel(e)lá(e)vi(e) Æ(e)gýp(d)tum(e.) (,)\n\
cum(e) pri(e)mo(f)gé(g)ni(f)tis(f) su(evDC)is:(c.) (;)\n\
et(c) tu(d_e) me(e) fla(e)gel(e)lá(e)tum(ed) tra(f)di(d)dís(ef)ti.(edeDC.) (::) ^P{}ópule^() (c+)\n";
var gabcReproachesOtherVerses = "initial-style: 0;\n\
%%\n\
(c4)^2.^ E<alt>Two cantors of the first choir sing:</alt>(c)go(de) te(e) e(e)dú(e)xi(e) de(e) Æ(e)gýp(d)to,(e.) (,) \
de(c)mér(de)so(e) Pha(e)ra(e)ó(e)ne(e) in(f) ma(g)re(f) Ru(evDC)brum:(c.) (;) \
et(c) tu(d_e) me(e) tra(e)di(e)dís(e)ti(e.) (,) prin(e)cí(e)pi(e)bus(ed) sa(f)cer(d)dó(ef)tum.(edeDC.) (::) ^P{}ópule^() (c+Z) \
\
^3.^ E<alt>Two cantors of the second choir sing:</alt>(c)go(de) an(e)te(e) te(e) a(f)pé(g)ru(f)i(f) ma(evDC)re:(c.) (;) \
et(c) tu(d_e) a(e)pe(e)ru(e)ís(e)ti(e) lán(e)ce(e)a(ed) la(f)tus(d) me(ef)um.(edeDC.) (::) ^P{}ópule^() (c+Z) \
\
^4.^ E<alt>Two cantors of the first choir sing:</alt>(c)go(de) an(e)te(e) te(e) præ(d)í(e)vi(e.) (,) in(e) co(f)lúm(g)na(f) nu(evDC)bis:(c.) (;) \
et(c) tu(d_e) me(e) du(e)xís(e)ti(e.) (,) ad(e) præ(e)tó(e)ri(ed)um(f) Pi(d)lá(ef)ti.(edeDC.) (::) ^P{}ópule^() (c+Z) \
\
^5.^ E<alt>Two cantors of the second choir sing:</alt>(c)go(de) te(e) pa(e)vi(e) man(e)na(f) per(g) de(f)sér(evDC)tum:(c.) (;) \
et(c) tu(d_e) me(e) ce(e)ci(e)dís(e)ti(e.) (,) á(e)la(e)pis(ed) et(f) fla(d)gél(ef)lis.(edeDC.) (::) ^P{}ópule^() (c+Z) \
\
^6.^ E<alt>Two cantors of the first choir sing:</alt>(c)go(de) te(e) po(e)tá(e)vi(e.) (,) a(e)qua(e) sa(f)lú(g)tis(f) de(f) pe(evDC)tra:(c.) (;) \
et(c) tu(d_e) me(e) po(e)tás(e)ti(e.) (,) fel(e)le(ed) et(f) a(d)cé(ef)to.(edeDC.) (::) ^P{}ópule^() (c+Z) \
\
^7.^ E<alt>Two cantors of the second choir sing:</alt>(c)go(de) prop(e)ter(e) te(e.) (,) Cha(e)na(e)næ(e)ó(e)rum(f) re(g)ges(f) per(f)cús(evDC)si:(c.) (;) \
et(c) tu(d_e) per(e)cus(e)sís(e)ti(e.) (,) a(e)rún(e)di(e)ne(ed) ca(f)put(d) me(ef)um.(edeDC.) (::) ^P{}ópule^() (c+Z) \
\
^8.^ E<alt>Two cantors of the first choir sing:</alt>(c)go(de) de(e)di(e) ti(e)bi(f) scep(g)trum(f) re(f)gá(evDC)le:(c.) (;) \
et(c) tu(d_e) de(e)dís(e)ti(e) cá(e)pi(e)ti(e) me(e)o(e.) (,) spí(e)ne(ed)am(f) co(d)ró(ef)nam.(edeDC.) (::) ^P{}ópule^() (c+Z) \
\
^9.^ E<alt>Two cantors of the second choir sing:</alt>(c)go(de) te(e) ex(e)al(e)tá(e)vi(f) ma(g)gna(f) vir(f)tú(evDC)te:(c.) (;) \
et(c) tu(d_e) me(e) sus(e)pen(e)dís(e)ti(e.) (,) in(e) pa(ed)tí(f)bu(e)lo(d) cru(ef)cis.(edeDC.) (::) ^P{}ópule^() (c+Z)\n";
var gabcEasterAlleluia = "initial-style: 1;\n\
office-part:Antiphona;\n\
mode:6;\n\
%%\n\
(c4)AL(f)le(g')lú(h)ia,(f.) *(,) al(gh)le(g')lú(f)ia,(d_c) (,) al(f)le(gh)lú(gf~)ia.(f.) (::)";
var rubricBeforeUnveilingCross = "At the end of the Prayers, the Priest, turned towards the people, unveils the Cross. He intones the Antiphon <Ecce lignum Crucis.> The assistant clergy joins with him in continuing the chant as far as the <r/. Venite adorémus.> The choir sings <Veníte adorémus.> whilst all kneel except the Celebrant. The same chant is sung three times, each time in a higher tone of voice.";
var rubricAdorationOfTheCross = "The adoration of the Cross then takes place, during which all or some of the following Reproaches are sung, according to the number who are to venerate the Cross.";
var rubricTwoCantorsInTheMiddle = "Two cantors sing the following in the middle of the Choir:";
var rubricTwoCantorsOfTheSecondChoir = "Two cantors of the second choir sing:";
var rubricTwoChoirsRespondHagios = "The two choirs respond in turn <Hagios o Theós, Sanctus Deus.> etc. It is always the first choir that sings <Hagios.>";
var rubricThenTwoCantorsOfTheFirstChoir = "Then two cantors of the first choir sing:";
var rubricTwoChoirsRespondHagiosAgain = "The two choirs again respond in turn <Hagios o Theós. Sanctus Deus.> etc.";
var rubricFollowingReproachesSungInTurn = "The following Reproaches are sung in turn by the cantors. After each Reproach, the two choirs together respond <Pópule meus.> as above, as far as the <v/. Quia.>";
var rubricBothChoirsRepeatPopule = "Both choirs repeat: <Pópule meus>:";
var rubricBothChoirsThenSingAntiphon = "Both choirs then sing the following antiphon:";
var rubricTheAntiphonCrucemIsRepeated = "The antiphon <Crucem tuam.> is repeated";
var rubricCruxFidelis = "<Crux fidélis.> is then sung and the hymn <Pange, lingua, gloriósi.> After the first stanza of the hymn, <v/. Crux fidélis.> is repeated as far as <Dulce lignum;> after the second stanza, <Dulce lignum.> is repeated. This alternate repetition takes place after each stanza of the hymn."
var replaceQuiaVerse = [/(\(::\))\s+<sp>V\/<\/sp>\.?\s+Qu[ií]\([^)]+\)a\([^)]+\)\s.*/,'$1'];
var replaceAltEtc = [/\\hspace{[^}]*}/g,'',/(?:\(Z\)\s*)?<alt>(.*?\\emph.*?)<\/alt>/gi,'^_$1_^() (Z)\n',/\\emph{([^(}]+)\}/g,'_$1_'];
var replaceOfficePartToTract = [/((?:$|\n)office-part:)\s*[^;]+;/,'$1Tractus;'];
var replaceRemoveAsterisks = [/(\*(\|\*)*|<i>ij\.<\/i>)\(/g,'('];
var replaceRemoveHtmlAsterisks = [/\*\s+/g,''];
var replaceRemoveAbImminentibus = [/<p>Ab imminénti<i>bus<\/i> <i>per<\/i><b>í<\/b>culis,[^\n]*<\/p>/i,''];
var extraChants = {
"litaniis": [
{
title: "At the Procession",
rubric: "Before the procession, the choir sings, standing:",
id: 30
}, {
rubric: "Then, two cantors, kneeling before the altar, begin the litany. Each invocation is doubled, unless the procession cannot take place.",
id: 'litanies/saints1-1',
gabcReplace: replaceRemoveAsterisks,
url: 'litanies/saints1-2rogations.html',
htmlReplace: replaceRemoveHtmlAsterisks
}, {
id: 'litanies/saints1-3',
gabcReplace: replaceRemoveAsterisks,
url: 'litanies/saints1-4.html',
htmlReplace: replaceRemoveHtmlAsterisks.concat(replaceRemoveAbImminentibus)
}, {
id: "litanies/saints1-5",
gabcReplace: replaceRemoveAsterisks,
url: 'litanies/saints1-6.html',
htmlReplace: replaceRemoveHtmlAsterisks
},
{
id: "litanies/saints1-7",
gabcReplace: replaceRemoveAsterisks
}, {
gabc: "initial-style: 0;\n%%\n(c3)Pa(h)ter(h) nos(h)ter.(f.) (::) <i>secreto.</i>() \
V/. Et(h) ne(h) nos(h) in(h)dú(h)cas(h) in(h) ten(h)ta(h)ti(h)ó(h)nem.(f.) (::) \
R/. Sed(h) lí(h)be(h)ra(h) nos(h) a(h) ma(h)lo.(f.) (::)"
}, {
gabc: "initial-style: 1;\
commentary: Psalm 69;\
%%\
(c3)De(h)us,(h) in(h) ad(h)ju(h)tó(h)ri(h)um(h) me(h)<i>um</i>(g) <i>in</i>(f)<b>tén</b>(h)de:(h.) *(:) Dó(h)mi(h)ne(h) ad(h) ad(h)ju(h)ván(h)dum(h) me(h) fes(h)<b>tí</b>(h)na.(f.) (::)\
<i>Flex:</i>() vi(h)ví(h)fi(h)cet(h) e(h)um, †(f. h h h ::)",
html: "<div class='verses' style='display: inline-block'>\
<p><span class='versenum'>2. </span>Confundántur et re<i>ve</i><i>re</i><b>án</b>tur, * qui quærunt ánimam <b>me</b>am.</p>\
<p><span class='versenum'>3. </span>Avertántur retrórsum, et <i>e</i><i>ru</i><b>bés</b>cant, * qui volunt mihi <b>ma</b>la.</p>\
<p><span class='versenum'>4. </span>Avertántur statim e<i>ru</i><i>be</i><b>scén</b>tes, * qui dicunt mihi: Euge, <b>eu</b>ge.</p>\
<p><span class='versenum'>5. </span>Exsúltent et læténtur in te om<i>nes</i> <i>qui</i> <b>quæ</b>runt te, * et dicant semper: Magnificétur Dóminus: qui díligunt salutáre <b>tu</b>um.</p>\
<p><span class='versenum'>6. </span>Ego vero egé<i>nus</i>, <i>et</i> <b>pau</b>per sum: * Deus, ádju<b>va</b> me.</p>\
<p><span class='versenum'>7. </span>Adjútor meus, et liberátor <i>me</i><i>us</i> <b>es</b> tu: * Dómine, ne mo<b>ré</b>ris.</p>\
<p><span class='versenum'>8. </span>Glória Pa<i>tri</i>, <i>et</i> <b>Fí</b>lio, * et Spirítui <b>Sanc</b>to.</p>\
<p><span class='versenum'>9. </span>Sicut erat in princípio, et <i>nunc</i>, <i>et</i> <b>sem</b>per, * et in sǽcula sæculórum. <b>A</b>men.</p>\
<p></p>\
<p><span class='versiculum'>v</span> Salvos fac servos <b>tu</b>os.</p>\
<p><span class='versiculum'>r</span> Deus meus sperántes <b>in</b> te.</p>\
<p><span class='versiculum'>v</span> Esto nobis Dómine turris forti<b>tú</b>dinis.</p>\
<p><span class='versiculum'>r</span> A fácie ini<b>mí</b>ci.</p>\
<p><span class='versiculum'>v</span> Nihil profíciat inimícus in <b>no</b>bis.</p>\
<p><span class='versiculum'>r</span> Et fílius iniquitátis non appónat nocére <b>no</b>bis.</p>\
<p><span class='versiculum'>v</span> Domine non secúndum peccáta nostra fácias <b>no</b>bis.</p>\
<p><span class='versiculum'>r</span> Neque secúndum iniquitátes nostras retríbuas <b>no</b>bis.</p>\
<p><span class='versiculum'>v</span> Orémus pro Pontífice nostro <span class='rubric' style='padding-left: 0'>N.</span></p>\
<p><span class='versiculum'>r</span> Dóminus consérvet eum, et vivíficet eum, † et beátum fáciat e<i>um</i> <i>in</i> <b>ter</b>ra, * et non tradat eum in ánimam inimicórum <b>e</b>jus.</p>\
<p><span class='versiculum'>v</span> Orémus pro benefactóribus <b>nos</b>tris.</p>\
<p><span class='versiculum'>r</span> Retribúere dignáre Domine, † ómnibus nobis bona faciéntibus propter <i>nomen</i> <b>tu</b>um, * vitam ætérnam. <b>A</b>men.</p>\
<p><span class='versiculum'>v</span> Orémus pro fidélibus de<b>fún</b>ctis.</p>\
<p><span class='versiculum'>r</span> Réquiem ætérnam dona <i>eis</i> <b>Dó</b>mine, * et lux perpétua lúceat <b>e</b>is.</p>\
<p><span class='versiculum'>v</span> Requiéscant in <b>pa</b>ce. <span class='versiculum'>r</span> <b>A</b>men.</p>\
<p><span class='versiculum'>v</span> Pro frátribus nostris ab<b>sén</b>tibus.</p>\
<p><span class='versiculum'>r</span> Salvos fac <i>servos</i> <b>tu</b>os, * Deus meus, sperántes <b>in</b> te.</p>\
<p><span class='versiculum'>v</span> Mitte eis Dómine auxílium de <b>san</b>cto.</p>\
<p><span class='versiculum'>r</span> Et de Sion tuére <b>e</b>os.</p>\
<p><span class='versiculum'>v</span> Dómine exáudi oratiónem <b>me</b>am.</p>\
<p><span class='versiculum'>r</span> Et clamor meus ad te <b>vé</b>niat.</p>\
<p><span class='versiculum'>v</span> Dóminus vo<b>bís</b>cum. <span class='versiculum'>v</span> Et cum spíritu <b>tu</b>o.</p>\
</div>"
}
],
"defunctorum": {
ite: [{
id: 823
}, {
title: "Absolution after Mass",
rubric: "After Mass, if there is to be Absolution, the Celebrant goes to the catafalque, and the cantor intones:",
id: 376,
rubricAfter: "Repeat <Libera me Domine.> as far as the <v/. Tremens.>"
}, {
rubric: "When the Responsory is ended, the Cantor and the first Choir sing:",
gabc: "initial-style: 0;\n%%\n(c4)Ký(f)ri(f)e(f') e(f)lé(gh)i(g)son.(gf..) (::)"
}, {
rubric: "The second choir responds:",
gabc: "initial-style: 0;\n%%\n(c4)Chris(f)te(f') e(f)lé(gh)i(g)son.(gf..) (::)"
}, {
rubric: "Both choirs together:",
gabc: "initial-style: 0;\n%%\n(c4)Ký(h)ri(g)e(f.) e(hjg)lé(h')i(g)son.(fe..) (::)"
}, {
rubric: "The priest intones:",
gabc: "initial-style: 0;\n%%\n(c4)Pa(f)ter(f) nos(f)ter.(d.) <i>...</i>(::) \
V/. Et(f) ne(f) nos(f) in(f)dú(f)cas(f) in(f) ten(f)ta(f)ti(f)ó(f)nem.(d.) (::) \
R/. Sed(f) lí(f)be(f)ra(f) nos(f) a(f) ma(f)lo.(d.) (::) \
V/. A(f) por(f)ta(f) ín(f)fe(d)ri.(d.) (::) \
R/. E(f)ru(f)e(f) Dó(f)mi(f)ne (f) á|[á(f)ni|ni(f)mam|mas (f) e|e{ó}(f)jus|rum] (d.) (::) \
V/. Re|[Re(f)qui|qui(f)és|és(f)cat|cant] (f) in(f) pa(f)ce(d.) (::) \
R/. A(f)men.(f.) (::) \
V/. Dó(f)mi(f)ne(f) ex(f)áu(f)di(f) o(f)ra(f)ti(f)ó(f)nem(f) me(f)am.(d.) (::) \
R/. Et(f) cla(f)mor(f) me(f)us(f) ad(f) te(f) vé(f)ni(d)at.(d.) (::)"
}, {
gabc: "initial-style: 0;\n%%\n(c4)V/. Ré(f)qui(f)em(f) æ(f)tér(f)nam(f) do(f)na (f) e|[e(f)i|is] (f) Dó(f)mi(d)ne.(d.) (::) \
R/. Et(f) lux(f) pe(f)pé(f)tu(f)a(f) lú(f)ce(f)at (f) e|[e(f)i.|is.] (d.) (::) \
<alt>The Cantors:</alt>V/. Re|[Re(g)qui|qui(h)és|és(h)cat|cant] (g') in(h) pa(hg)ce.(g.) (::) \
R/. A(g)men.(gh..) (::) \
<alt>The Celebrant:</alt>V/. A|[A(e)ni|ni(e)ma|mæ (e) e|e(e)jus|{ó}rum] (e) et(e) á(e)ni(e)mæ(e) óm(e)ni(e)um(e) fi(e)dé(e)li(e)um(e) de(e)func(e)tó(e)rum,(e) per(e) mi(e)se(e)ri(e)cór(e)di(e)am(e) De(e)i(e) re(e)qui(e)és(e)cant(e) in(e) pa(e)ce.(e.) (::) \
R/. A(e.)men.(e.) (::)"
}]
},
"Feb2": [
{
rubric: "After the prayers, the Priest puts incense into the thurible. Whilst he distributes the candles, the choir sings:",
id: 2897,
gabcReplace: [/\s*\(::\)[^#]*/,' (::)'], // remove everything after the first (::)
sticky: 0
}, {
id: 2897,
gabcReplace: [/(\n%%\r?\n\s*\([cf][1-4]\)\s*)[^#]*?\(::\)/,'\ninitial-style: 0;$1'], // remove the first verse [up to the first (::)]
sticky: 1
}, {
rubric: "When the distribution of candles is ended, the Choir sings:",
id: 30,
rubricAfter: "Repeat: <Exsúrge Dómine.>"
}, {
rubric: "The procession then takes place. When the Celebrant has put incense into the thurible, the Deacon turns toward the people and says:",
gabc: "initial-style: 0;\n%%\n(c3) <sp>V/</sp> Pro(h)ce(h)dá(h)mus(h) in(h) pa(h)ce.(f.) (::)\n<sp>R/</sp> In(h) nó(h)mi(h)ne(h) Chris(h)ti.(h) A(h)men.(f.) (::)"
}, {
rubric: "During the procession, the following antiphons are sung:",
id: 1311
}, {
id: 46
}, {
rubric: "On re-entering the church, the following Responsory is sung:",
id: 513
}
],
"5aw": [
{
rubric: "The ashes, made from olive branches or other branches blessed the previous year, are placed in a vessel on the altar."
}, {
rubric: "The Choir first sings the following Antiphon:",
id: 1081
}, {
rubric: "During the imposition of the ashes, the Choir sings:",
id: 313
}, {
id: 1208
}, {
id: 743
}
],
"Quad6_v": [
{
rubric: "After Terce and the Asperges given in the usual manner, the Priest blesses the palms or branches of olive or of other trees, which have been placed before the altar or at the Epistle side. The choir first sings the following Antiphon:",
id: 817,
rubricAfter: "The Lesson is in the tone of the Epistle."
}, {
lectio: "Exodus 15: 27; 16: 1-7"
}, {
rubric: "In place of the Gradual, the Choir sings one of the following responsories",
id: {
"Collegérunt pontífices": 8107,
"In monte Olivéti": 8108
}
}, {
lectio: "Matthæus 21: 1-9"
}, {
rubric: "The Versicles and Responses before the Preface are sung in the ferial tone:",
id: 7675
}, {
rubric: "The <Sanctus.> is here sung by the Choir as on Ferias in Lent:",
id: 298
}, {
rubric: "After the Blessing, the Celebrant distributes the Palms, whilst the Choir sings the following Antiphons:",
id: 1215
}, {
id: 1155,
rubricAfter: "These Antiphons are repeated as often as is necessary until the end of the distribution of the Palms"
}, {
title: "The Procession with Blessed Palms",
rubric: "The Procession then takes place. When the Celebrant has put incense into the thurible, the Deacon turns towards the people and sings:",
gabc: "initial-style: 0;\n%%\n(c3) <sp>V/</sp> Pro(h)ce(h)dá(h)mus(h) in(h) pa(h)ce.(f.) (::)\n<sp>R/</sp> In(h) nó(h)mi(h)ne(h) Chris(h)ti.(h) A(f)men.(h.) (::) <i>or:</i> A(h)men.(f.) (::)"
}, {
rubric: "During the Procession, the following Antiphons are sung or as many of them as are required.",
id: 8110,
psalmtone: true
}, {
id: 8109,
psalmtone: true
}, {
id: 8177,
psalmtone: true
}, {
id: 247,
psalmtone: true
}, {
id: {
"Roman Tone": 173,
"Monastic Tone": 8283
}
}, {
id: {
"Roman Tone": 770,
"Monastic Tone": 8284
}
}, {
rubric: "On the return of the Procession, two or four Cantors enter the church, and, closing the door, stand with their faces towards the procession, singing the following:",
id: 259,
rubricAfter: "The Choir outside the Church repeats <Glória, laus.> etc. Then the Cantors inside sing all or some of the following stanzas as they think best, after each of which the Choir outside repeats the first stanza <Glória, Laus.>",
sticky: 0
}, {
id: "259-2"
}, {
rubric: "The Choir outside: <Glória, laus.> The Cantors inside:",
id: "259-3"
}, {
rubric: "The Choir outside: <Glória, laus.> The Cantors inside:",
id: "259-4"
}, {
rubric: "The Choir outside: <Glória, laus.> The Cantors inside:",
id: "259-5"
}, {
rubric: "The Choir outside: <Glória, laus.> The Cantors inside:",
id: "259-6",
sticky: 1
}, {
rubric: "The Sub-deacon knocks at the door with the foot of the Cross; the door is opened at once and the Procession enters the church singing the following Responsory:",
id: 606
}
],
"Quad6": [
{
rubric: "After Terce, the Asperges omitted, the Priest blesses the palms or branches of olive or of other trees, which have been placed before the altar or at the Epistle side. The choir first sings the following Antiphon:",
id: 817
}, {
rubric: "After the Blessing, the Celebrant distributes the Palms, whilst the Choir sings the following Antiphons:",
id: 1215,
sticky: 0
}, {
gabc: "initial-style: 0;\ncommentary: Psalm 23, 1-2, 7-10;\n%%\n(c4)1. Dó(f)mi(gh)ni(h) est(h) ter(h)ra,(h) et(h) ple(h)ni(h)<b>tú</b>(ixi hr)do(h) <b>e</b>(g hr)jus:(h.) *(:) or(h)bis(h) ter(h)rá(h)rum,(h) et(h) u(h)ni(h)vér(h)si(h) qui(h) há(h)bi(h)<i>tant</i>(g) <i>in</i>(f) <b>e</b>(gh gr)o.(gf..) (::)\
<i>Flex:</i> pr{í}n(h)ci(h)pes,(h) ves(h)tras, †(g. h h h) (::) 2. Qui(h)a(h) ip(h)se...(h)",
html: '<div class="verses" style="display:inline-block">\
<p><span class="versenum">2. </span>Quia ipse super mária fun<b>dá</b>vit <b>e</b>um: * et super flúmina præpa<i>rá</i><i>vit</i> <b>e</b>um. <span class="rubric pull-right">The antiphon <span class="quote">Púeri</span> is repeated as above.</span></p>\
<p><span class="versenum">7. </span>Attóllite portas, príncipes, vestras, † et elevámini, portæ <b>æ</b>ter<b>ná</b>les: * et introí<i>bit</i> <i>Rex</i> <b>gló</b>riæ.</p>\
<p><span class="versenum">8. </span>Quis est iste Rex glóriæ? † Dóminus <b>for</b>tis et <b>pot</b>ens: * Dóminus pot<i>ens</i> <i>in</i> <b>prǽ</b>lio. <span class="rubric pull-right">The antiphon <span class="quote">Púeri</span> is repeated as above.</span></p>\
<p><span class="versenum">9. </span>Attóllite portas, príncipes, vestras, † et elevámini, portæ <b>æ</b>ter<b>ná</b>les: * et introí<i>bit</i> <i>Rex</i> <b>gló</b>riæ.</p>\
<p><span class="versenum">10. </span>Quis est <b>is</b>te Rex <b>gló</b>riæ? * Dóminus virtútum ipse <i>est</i> <i>Rex</i> <b>gló</b>riæ. <span class="rubric pull-right">The antiphon <span class="quote">Púeri</span> is repeated as above.</span></p>\
<p><span class="versenum">11. </span>Glória <b>Pa</b>tri, et <b>Fí</b>lio, * et Spirí<i>tu</i><i>i</i> <b>Sanc</b>to.</p>\
<p><span class="versenum">12. </span>Sicut erat in princípio, et <b>nunc</b>, et <b>sem</b>per, * et in sǽcula sæcu<i>ló</i><i>rum</i>. <b>A</b>men. <span class="rubric pull-right">The antiphon <span class="quote">Púeri</span> is repeated as above.</span></p>\
</div>',
sticky: 1
}, {
id: 1155,
sticky: 0
}, {
gabc: "initial-style: 0;\ncommentary: Psalm 46;\n%%\n(c4)1. Om(f)nes(gh) Gen(h)tes,(h) <b>pláu</b>(ixi)di(hr)te(h) <b>má</b>(g)ni(hr)bus:(h.) *(:) ju(h)bi(h)lá(h)te(h) De(h)o(h) in(h) vo(h)ce(h) ex(h)sul(h)<i>ta</i>(g)<i>ti</i>(f)<b>ó</b>(gh gr)nis.(gf..) (::) 2. Quón(h)i(h)am...(h)",
html: '<div class="verses" style="display:inline-block">\
<p><span class="versenum">2. </span>Quóniam Dóminus ex<b>cél</b>sus, ter<b>rí</b>bilis: * Rex magnus super <i>om</i><i>nem</i> <b>ter</b>ram. <span class="rubric pull-right">The antiphon <span class="quote">Púeri</span> is repeated as above.</span></p>\
<p><span class="versenum">3. </span>Subjécit <b>pó</b>pulos <b>no</b>bis: * et Gentes sub pé<i>di</i><i>bus</i> <b>nos</b>tris.</p>\
<p><span class="versenum">4. </span>Elégit nobis heredi<b>tá</b>tem <b>su</b>am: * spéciem Jacob, <i>quam</i> <i>di</i><b>lé</b>xit. <span class="rubric pull-right">The antiphon <span class="quote">Púeri</span> is repeated as above.</span></p>\
<p><span class="versenum">5. </span>Ascéndit <b>De</b>us in <b>jú</b>bilo: * et Dóminus in <i>vo</i><i>ce</i> <b>tu</b>bæ.</p>\
<p><span class="versenum">6. </span>Psállite Deo <b>nos</b>tro, <b>psál</b>lite: * psállite Regi <i>nos</i><i>tro</i>, <b>psál</b>lite. <span class="rubric pull-right">The antiphon <span class="quote">Púeri</span> is repeated as above.</span></p>\
<p><span class="versenum">7. </span>Quóniam Rex omnis <b>ter</b>ræ <b>De</b>us: * psállite <i>sa</i><i>pi</i><b>én</b>ter.</p>\
<p><span class="versenum">8. </span>Regnábit Deus <b>su</b>per <b>Gen</b>tes: * Deus sedet super sedem <i>sanc</i><i>tam</i> <b>su</b>am. <span class="rubric pull-right">The antiphon <span class="quote">Púeri</span> is repeated as above.</span></p>\
<p><span class="versenum">9. </span>Príncipes populórum congregáti sunt cum <b>De</b>o <b>A</b>braham: * quóniam dii fortes terræ veheménter <i>e</i><i>le</i><b>vá</b>ti sunt. <span class="rubric pull-right">The antiphon <span class="quote">Púeri</span> is repeated as above.</span></p>\
<p><span class="versenum">10. </span>Glória <b>Pa</b>tri, et <b>Fí</b>lio, * et Spirí<i>tu</i><i>i</i> <b>Sanc</b>to.</p>\
<p><span class="versenum">11. </span>Sicut erat in princípio, et <b>nunc</b>, et <b>sem</b>per, * et in sǽcula sæcu<i>ló</i><i>rum</i>. <b>A</b>men. <span class="rubric pull-right">The antiphon <span class="quote">Púeri</span> is repeated as above.</span></p>\
</div>',
sticky: 1
}, {
lectio: "Matthæus 21: 1-9"
}, {
title: "The Procession with Blessed Palms",
rubric: "After the Gospel, the celebrant, with the ministers (or servers), returns to the foot of the altar, makes reverence, and blesses incense. Then the deacon (or celebrant) turns to the people and says:",
gabc: "initial-style: 0;\n%%\n(c3) <sp>V/</sp> Pro(h)ce(h)dá(h)mus(h) in(h) pa(h)ce.(f.) (::)\n<sp>R/</sp> In(h) nó(h)mi(h)ne(h) Chris(h)ti.(h) A(h)men.(f.) (::)"
}, {
rubric: "As the procession begins, all or some of the following antiphons may be sung:",
id: 247,
psalmtone: true
}, {
id: {
"Roman Tone": 173,
"Monastic Tone": 8283
}
}, {
id: {
"Roman Tone": 770,
"Monastic Tone": 8284
}
}, {
id: 901,
psalmtone: true
}, {
rubric: "In the course of the procession the following hymn is sung. If possible, the whole congregation should sing each time the refrain <Glória laus.> as shown below.",
id: 259,
sticky: 0
}, {
rubric: "All: <Glória, laus.> The choir:",
id: "259-2"
}, {
rubric: "All: <Glória, laus.> The choir:",
id: "259-3"
}, {
rubric: "All: <Glória, laus.> The choir:",
id: "259-4"
}, {
rubric: "All: <Glória, laus.> The choir:",
id: "259-5"
}, {
rubric: "All: <Glória, laus.> The choir:",
id: "259-6",
sticky: 1
}, {
rubric: "All: <Glória, laus.> Then one of the following antiphons is sung:",
id: {
"VIII G*": 532,
"VIII G": 1092
},
sticky: 0
}, {
gabc: "initial-style: 0;\ncommentary: Psalm 147;\n%%\n(c4)1. Lau(g)da,(h) Je(j)rú(j)sa(j)lem,(j) <b>Dó</b>(k)mi(jr)num:(j.) *(:) lau(j)da(j) De(j)um(j) <i>tu</i>(i)<i>um</i>,(j) <b>Si</b>(h gr)on.(g.) (::) 2. Quón(j)i(j)am...(j)",
html: '<div class="verses">\
<p><span class="versenum">2. </span>Quóniam confortávit seras portárum tu<b>á</b>rum: * benedíxit fíliis <i>tu</i><i>is</i> <b>in</b> te.</p>\
<p><span class="versenum">3. </span>Qui pósuit fines tuos <b>pa</b>cem: * et ádipe fruménti <i>sá</i><i>ti</i><b>at</b> te.</p>\
<p><span class="versenum">4. </span>Qui emíttit elóquium suum <b>ter</b>ræ: * velóciter currit <i>ser</i><i>mo</i> <b>e</b>jus.</p>\
<p><span class="versenum">5. </span>Qui dat nivem sicut <b>la</b>nam: * nébulam sicut cí<i>ne</i><i>rem</i> <b>spar</b>git.</p>\
<p><span class="versenum">6. </span>Mittit crystállum suam sicut buc<b>cél</b>las: * ante fáciem frígoris ejus quis <i>sus</i><i>ti</i><b>né</b>bit?</p>\
<p><span class="versenum">7. </span>Emíttet verbum suum, et liquefáciet <b>e</b>a: * flabit spíritus ejus, et <i>flu</i><i>ent</i> <b>a</b>quæ.</p>\
<p><span class="versenum">8. </span>Qui annúntiat verbum suum <b>Ja</b>cob: * justítias, et judícia <i>su</i><i>a</i> <b>Is</b>raël.</p>\
<p><span class="versenum">9. </span>Non fecit táliter omni nati<b>ó</b>ni: * et judícia sua non manifes<i>tá</i><i>vit</i> <b>e</b>is.</p>\
<p><span class="versenum">10. </span>Glória Patri, et <b>Fí</b>lio, * et Spirí<i>tu</i><i>i</i> <b>Sanc</b>to.</p>\
<p><span class="versenum">11. </span>Sicut erat in princípio, et nunc, et <b>sem</b>per, * et in sǽcula sæcu<i>ló</i><i>rum</i>. <b>A</b>men.</p>\
</div>',
sticky: 1
}, {
rubric: "The antiphon <Omnes colláudant.> is repeated, as above.",
id: 1312
}, {
id: 1051
}, {
rubric: "The faithful may also sing the hymn <Christus vincit.> or any other chant in honor of Christ the King."
}, {
rubric: "When the procession enters the church, that is, as the celebrant goes through the door, this last responsory is begun:",
id: 606
}
],
"Quad6h-lotio": {
"asperges": [
// options: [279, 649, 291, 736, 504, 1242, 1252, 1013]
{ title: 'I', id: 279, rubricAfter: ["The antiphon <Mandátum novum.> is repeated.", "The following antiphons are each repeated after the Psalm or Versicle. Only the first verse of the Psalm is said in each case."] },
{ title: 'II', id: 649 },
{ title: 'III', id: 291 },
{ title: 'IV', id: 736 },
{ title: 'V', id: 504 },
{ title: 'VI', id: 1242 },
{ title: 'VII', id: 1252 },
{ rubric: "The following antiphon is not included in the liturgical books after the 1955 Holy Week reform.", id: 8268 },
{ title: 'VIII', id: 1013, rubric: "The following antiphon and its verses are never omitted. It is begun towards the end of the washing of the feet; some of the preceding antiphons may be omitted." }
]
},
"Quad6h": {
"ite": [
{
title: "THE SOLEMN TRANSLATION AND RESERVATION OF THE BLESSED SACRAMENT",
rubric: "During the procession the hymn <Pange, lingua, gloriósi Córporis mystérium.> is sung until the verse <Tantum ergo.> exclusive; if necessary, the hymn is repeated from the second verse. If the procession is very long, other hymns, psalms or canticles may be sung.",
id: 1310
}, {
title: "THE STRIPPING OF THE ALTARS",
rubric: "The celebrant and the sacred ministers [and the servers] go to the high altar, bow, rise, and begin the stripping of the altars as follows.",
rubricAfter: "The celebrant says the following antiphon in a clear voice:"
}, {
html: "<span class='rubric'>Psalm 21, 19.</span> <span class='verses'>Divisérunt sibi vestiménta mea: et super vestem meam misérunt sortem.</verses>"
}, {
rubric: "Adding the intonation of the same psalm:",
gabc: gabcPsalm21,
rubricAfter: "The choir continue the recitation of this psalm from <longe a salúte mea.> until the stripping of the altars is completed.",
html: versesPsalm21,
}, {
rubricAfter: "After stripping the altars they return to the high altar, and when the celebrant has repeated the antiphon <Divisérunt> they return to the sacristy."
}