-
Notifications
You must be signed in to change notification settings - Fork 0
/
dreamdiary.inform.txt
1293 lines (1258 loc) · 41.8 KB
/
dreamdiary.inform.txt
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
"Most Portentous Dream Diary" by Joey Jones
Include Dream Tables by Joey Jones.
Use MAX_PROP_TABLE_SIZE of 50000.
Use MAX_SYMBOLS of 50000.
Use ALLOC_CHUNK_SIZE of 50000.
Use MAX_STATIC_DATA of 300000.
Use MAX_NUM_STATIC_STRINGS of 50000.
Use MAX_ARRAYS of 20000.
Rule for printing the banner text:
say "[fixed letter spacing]A Most Portentous Dream Diary[line break]by J. Jones[roman type][paragraph break]Today I start my dream diary in earnest. Herein, for three calendar years, I will faithfully record my dreams and offer up the portentous interpretations of the sages.[paragraph break]" instead
The Most Portentous Dream Diary is a room.
Use no scoring.
Instead of looking, say dreaming.
To say dreaming:
say calendar;
say "[paragraph break]And so my three year experiment must come to an end. With [conditionality] thoughts I end this journey. Whether I am wiser or more learned for it, I cannot say."
To say calendar:
repeat with N running from 1 to the number of rows in the Table of Dates:
choose row N in the Table of Dates;
say "[bold type][week entry] the [day entry] of [month entry][roman type][line break]";
if the event entry is not "":
say "Today it is [event entry]";
choose a random row in the table of conditions;
say ". [one of]I feel like I'm[or]It's like I'm[or]I spent a good part of the day[or]I learned I was[cycling] [affliction entry]. [no line break]";
if a random chance of 1 in 2 succeeds:
say "I slept [one of]well[or]very well[or]incredible poorly[or]fitfully[or]restlessly[or]like a baby[or]peacefully[or]uncomfortably[or]like a log[at random][one of][or][or][or][or][or][or] as per usual[or] for once[or] the whole night through[or] more or less[or] unsurprisingly[or], such is my fate[at random][one of].[no line break][or].[no line break][or]![no line break][or]!![no line break][as decreasingly likely outcomes] [no line break]";
say "[dream structure][no line break]";
if a random chance of 1 in 5 succeeds:
say " [one of]Well well well[or]I know that doesn't make sense[or]I don't pretend to make sense of this[or]I'm not sure how this portends[or]I don't like this[or]I feel strangely good about this[or]This will be hard to puzzle out[or]So it goes[or]I want to go back to bed[or]This again[or]This doesn't portend well[or]How portentious[or]I wish I hadn't bothered looking that up[or]Not what I [expected][or]This is what I [expected][or]As [expected][or]Just my luck[or]I look forward to seeing how this plays out[in random order][one of].[or].[or]![or]...[or]!![as decreasingly likely outcomes][paragraph break]";
else:
say paragraph break.
The primary is a text that varies.
The secondary is a text that varies.
The subject is a text that varies.
The other is a text that varies.
The movement is a text that varies.
The tertiary is a text that varies.
The duration is a text that varies.
The spell is a text that varies.
The locale is a text that varies.
The ambience is a text that varies.
The conditionality is a text that varies.
The diagnosis is a text that varies.
The prop1 is a text that varies.
The prop2 is a text that varies.
To say dream structure:
if a random chance of 1 in 30 succeeds:
say excuse instead;
choose a random row in the table of themes;
now the subject is the theme entry;
now prop1 is the proposition entry;
now the primary is the interpretation entry;
choose a random row in the table of themes;
now the other is the theme entry;
now prop2 is the proposition entry;
now the secondary is the interpretation entry;
choose a random row in the table of acting;
now the movement is the act entry;
now the tertiary is the interpretation entry;
choose a random row in the table of conditions;
now the conditionality is the affliction entry;
now the diagnosis is the interpretation entry;
choose a random row in the table of places;
now the locale is the place entry;
now the ambience is the interpretation entry;
choose a random row in the table of periods;
now the duration is the time entry;
now the spell is the interpretation entry;
if a random chance of 1 in 10 succeeds:
instead say "[I dreamed] [prop1] [subject] was [movement] [prop2] [other][staging][scheduling] whilst I was [conditionality]. [sages][primary] [secondary] [tertiary][guff][diagnosis]'";
if a random chance of 1 in 9 succeeds:
instead say "[I dreamed] I was [movement][staging][scheduling]. [sages][tertiary][guff]'";
if a random chance of 1 in 8 succeeds:
instead say "[I dreamed] I [one of]was[or]spent the whole dream[or]suddenly became[or]happened to be[or]didn't know I was[at random] [conditionality][staging][scheduling]. [sages][diagnosis][guff]'";
if a random chance of 1 in 7 succeeds:
choose a random row in the table of plurals;
now the subject is the plural entry;
now the primary is the interpretation entry;
instead say "[I dreamed] I was [movement] some [subject][staging][scheduling]. [sages][tertiary] [primary][guff]'";
if a random chance of 1 in 6 succeeds:
instead say "[I dreamed] I was [movement] [prop1] [subject][staging][scheduling]. [sages][tertiary] [primary][guff]'";
if a random chance of 1 in 5 succeeds:
instead say "[I dreamed] [prop1] [subject] was [movement] me[staging][scheduling][swatch]. [sages][primary] [tertiary][guff][diagnosis]'";
if a random chance of 1 in 4 succeeds:
instead say "[I dreamed] I was in [locale][swatch]. [sages][ambience][blankness][diagnosis]'";
if a random chance of 1 in 3 succeeds:
choose a random row in the table of plurals;
now the subject is the plural entry;
now the primary is the interpretation entry;
now prop1 is "[one of]some[or]these[or]lots of[at random]";
instead say "[I dreamed] [one of]there was[or]I saw[or]I was in the presence of[or]I held[or]I owned[or]I had[or]there existed[at random] [prop1] [subject][swivel]. [sages][primary][blankness][secondary]'";
if a random chance of 1 in 2 succeeds:
instead say "I [one of]had[or]dreamed[or]recall[at random] two [one of]distinct [or]seperate [or][or][or]melding [or]combined [or]intermingling [or]contrasting [at random]dreams. First I dreamed I was [movement] [prop1] [subject]. Then I dreamed I was [conditionality]. [sages][tertiary] [primary] [diagnosis]'";
else:
choose a random row in the table of plurals;
now the subject is the plural entry;
now the primary is the interpretation entry;
instead say "[I dreamed] of [subject]. The [subject] were [conditionality]. [sages][primary] [diagnosis]'".
To say expected:
say "[one of]expected[or]anticipated[or]thought[or]figured[or]always [expected][at random]".
To say swatch:
if a random chance of 1 in 2 succeeds:
say " [one of]and I became[or]leading me to be[or]making me[or]and then I was[at random] [conditionality]";
now blankness is " ";
else:
say "";
now diagnosis is "";
now blankness is "".
Blankness is a text that varies.
To say swivel:
if a random chance of 1 in 3 succeeds:
say " and [prop2] [other]";
now blankness is " ";
else:
say "";
now blankness is "";
now secondary is "".
To say sages:
if a random chance of 1 in 4 succeeds:
say "[one of]This was one interpretation[or]I liked this interpretation[or]Apparently[or]Accordingly[or]My fate is[or]This portends the following[or]Thus[or]And so[or]As such[or]The books say[or]Alas[or]Therefore[or]And so it is written[or]It is written[or]The sages write[or]Expert opinion holds[or]The sages say the following[or]Interpretation[or]According to the books[or]Looking it up[or]This is what I've come up with[or]Lo[or]Lo and behold[or]Behold[or]Translation[or]From the dictionaries[at random]: '";
else:
say "'".
To say guff:
if ambience is not "":
say " [ambience]";
if spell is not "":
say " [spell]".
To say staging:
If a random chance of 1 in 5 succeeds:
say " in [locale]";
else:
now ambience is "".
To say scheduling:
If a random chance of 1 in 10 succeeds:
say " during [duration]";
else:
now spell is "".
To say excuse:
say "I didn't [one of]remember[or]record[or]take note of[or]write down[at random] my dream because [one of]someone knocked on my door[or]my spouse woke me in the morning[or]a bird tapped at the window waking me[or]a baby cried waking me[or]I mislaid this diary[or]I couldn't find my pen in time[or]it was just so boring[or]it was completely ineffable[or]I fell into a dreamless slumber moments after awaking[or]it was breakfast time before I remembered I should have done so[or]I completely forgot[or]I dreamed that I had already done so[in random order].".
Birthmonth is a text that varies.
Birthday is a text that varies.
When play begins:
choose a random row in the table of dates;
now the event entry is "my birthday";
now birthmonth is the month entry;
now birthday is the day entry;
repeat with N running from 1 to the number of rows in the Table of Dates:
choose row N in the Table of Dates;
if the month entry is birthmonth and the day entry is birthday:
now the event entry is "my birthday";
clean the sheets.
Sheetday is a text that varies.
To clean the sheets:
choose a random row in the table of dates;
now sheetday is the day entry;
repeat with N running from 1 to the number of rows in the Table of Dates:
choose row N in the Table of Dates;
if the day entry is sheetday:
now the event entry is "the day we clean the sheets".
To say I dreamed:
say "[one of]In the only dream I remember,[or]Thus I dreamed[or]I dreamed[or]In my sleep I dreamed[or]I had this dream[at random]".
Table of Dates
Week Day Month Event
"Monday" "1st" "January" "New Year's Day"
"Tuesday" "2nd" "January" ""
"Wednesday" "3rd" "January" ""
"Thursday" "4th" "January" ""
"Friday" "5th" "January" ""
"Saturday" "6th" "January" ""
"Sunday" "7th" "January" ""
"Monday" "8th" "January" ""
"Tuesday" "9th" "January" ""
"Wednesday" "10th" "January" ""
"Thursday" "11th" "January" ""
"Friday" "12th" "January" ""
"Saturday" "13th" "January" ""
"Sunday" "14th" "January" ""
"Monday" "15th" "January" ""
"Tuesday" "16th" "January" ""
"Wednesday" "17th" "January" ""
"Thursday" "18th" "January" ""
"Friday" "19th" "January" ""
"Saturday" "20th" "January" ""
"Sunday" "21st" "January" ""
"Monday" "22nd" "January" ""
"Tuesday" "23rd" "January" ""
"Wednesday" "24th" "January" ""
"Thursday" "25th" "January" ""
"Friday" "26th" "January" ""
"Saturday" "27th" "January" ""
"Sunday" "28th" "January" ""
"Monday" "29th" "January" ""
"Tuesday" "30th" "January" ""
"Wednesday" "31st" "January" ""
"Thursday" "1st" "February" ""
"Friday" "2nd" "February" ""
"Saturday" "3rd" "February" ""
"Sunday" "4th" "February" ""
"Monday" "5th" "February" ""
"Tuesday" "6th" "February" ""
"Wednesday" "7th" "February" ""
"Thursday" "8th" "February" ""
"Friday" "9th" "February" ""
"Saturday" "10th" "February" ""
"Sunday" "11th" "February" ""
"Monday" "12th" "February" ""
"Tuesday" "13th" "February" ""
"Wednesday" "14th" "February" ""
"Thursday" "15th" "February" ""
"Friday" "16th" "February" ""
"Saturday" "17th" "February" ""
"Sunday" "18th" "February" ""
"Monday" "19th" "February" ""
"Tuesday" "20th" "February" ""
"Wednesday" "21st" "February" ""
"Thursday" "22nd" "February" ""
"Friday" "23rd" "February" ""
"Saturday" "24th" "February" ""
"Sunday" "25th" "February" ""
"Monday" "26th" "February" ""
"Tuesday" "27th" "February" ""
"Wednesday" "28th" "February" ""
"Thursday" "1st" "March" ""
"Friday" "2nd" "March" ""
"Saturday" "3rd" "March" ""
"Sunday" "4th" "March" ""
"Monday" "5th" "March" ""
"Tuesday" "6th" "March" ""
"Wednesday" "7th" "March" ""
"Thursday" "8th" "March" ""
"Friday" "9th" "March" ""
"Saturday" "10th" "March" ""
"Sunday" "11th" "March" ""
"Monday" "12th" "March" ""
"Tuesday" "13th" "March" ""
"Wednesday" "14th" "March" ""
"Thursday" "15th" "March" ""
"Friday" "16th" "March" ""
"Saturday" "17th" "March" ""
"Sunday" "18th" "March" ""
"Monday" "19th" "March" ""
"Tuesday" "20th" "March" ""
"Wednesday" "21st" "March" ""
"Thursday" "22nd" "March" ""
"Friday" "23rd" "March" ""
"Saturday" "24th" "March" ""
"Sunday" "25th" "March" ""
"Monday" "26th" "March" ""
"Tuesday" "27th" "March" ""
"Wednesday" "28th" "March" ""
"Thursday" "29th" "March" ""
"Friday" "30th" "March" "Good Friday"
"Saturday" "31st" "March" ""
"Sunday" "1st" "April" "Easter Sunday"
"Monday" "2nd" "April" ""
"Tuesday" "3rd" "April" ""
"Wednesday" "4th" "April" ""
"Thursday" "5th" "April" ""
"Friday" "6th" "April" ""
"Saturday" "7th" "April" ""
"Sunday" "8th" "April" ""
"Monday" "9th" "April" ""
"Tuesday" "10th" "April" ""
"Wednesday" "11th" "April" ""
"Thursday" "12th" "April" ""
"Friday" "13th" "April" ""
"Saturday" "14th" "April" ""
"Sunday" "15th" "April" ""
"Monday" "16th" "April" ""
"Tuesday" "17th" "April" ""
"Wednesday" "18th" "April" ""
"Thursday" "19th" "April" ""
"Friday" "20th" "April" ""
"Saturday" "21st" "April" ""
"Sunday" "22nd" "April" ""
"Monday" "23rd" "April" ""
"Tuesday" "24th" "April" ""
"Wednesday" "25th" "April" ""
"Thursday" "26th" "April" ""
"Friday" "27th" "April" ""
"Saturday" "28th" "April" ""
"Sunday" "29th" "April" ""
"Monday" "30th" "April" ""
"Tuesday" "1st" "May" ""
"Wednesday" "2nd" "May" ""
"Thursday" "3rd" "May" ""
"Friday" "4th" "May" ""
"Saturday" "5th" "May" ""
"Sunday" "6th" "May" ""
"Monday" "7th" "May" ""
"Tuesday" "8th" "May" ""
"Wednesday" "9th" "May" ""
"Thursday" "10th" "May" ""
"Friday" "11th" "May" ""
"Saturday" "12th" "May" ""
"Sunday" "13th" "May" ""
"Monday" "14th" "May" ""
"Tuesday" "15th" "May" ""
"Wednesday" "16th" "May" ""
"Thursday" "17th" "May" ""
"Friday" "18th" "May" ""
"Saturday" "19th" "May" ""
"Sunday" "20th" "May" ""
"Monday" "21st" "May" ""
"Tuesday" "22nd" "May" ""
"Wednesday" "23rd" "May" ""
"Thursday" "24th" "May" ""
"Friday" "25th" "May" ""
"Saturday" "26th" "May" ""
"Sunday" "27th" "May" ""
"Monday" "28th" "May" ""
"Tuesday" "29th" "May" ""
"Wednesday" "30th" "May" ""
"Thursday" "31st" "May" ""
"Friday" "1st" "June" ""
"Saturday" "2nd" "June" ""
"Sunday" "3rd" "June" ""
"Monday" "4th" "June" ""
"Tuesday" "5th" "June" ""
"Wednesday" "6th" "June" ""
"Thursday" "7th" "June" ""
"Friday" "8th" "June" ""
"Saturday" "9th" "June" ""
"Sunday" "10th" "June" ""
"Monday" "11th" "June" ""
"Tuesday" "12th" "June" ""
"Wednesday" "13th" "June" ""
"Thursday" "14th" "June" ""
"Friday" "15th" "June" ""
"Saturday" "16th" "June" ""
"Sunday" "17th" "June" ""
"Monday" "18th" "June" ""
"Tuesday" "19th" "June" ""
"Wednesday" "20th" "June" ""
"Thursday" "21st" "June" ""
"Friday" "22nd" "June" ""
"Saturday" "23rd" "June" ""
"Sunday" "24th" "June" ""
"Monday" "25th" "June" ""
"Tuesday" "26th" "June" ""
"Wednesday" "27th" "June" ""
"Thursday" "28th" "June" ""
"Friday" "29th" "June" ""
"Saturday" "30th" "June" ""
"Sunday" "1st" "July" ""
"Monday" "2nd" "July" ""
"Tuesday" "3rd" "July" ""
"Wednesday" "4th" "July" ""
"Thursday" "5th" "July" ""
"Friday" "6th" "July" ""
"Saturday" "7th" "July" ""
"Sunday" "8th" "July" ""
"Monday" "9th" "July" ""
"Tuesday" "10th" "July" ""
"Wednesday" "11th" "July" ""
"Thursday" "12th" "July" ""
"Friday" "13th" "July" ""
"Saturday" "14th" "July" ""
"Sunday" "15th" "July" ""
"Monday" "16th" "July" ""
"Tuesday" "17th" "July" ""
"Wednesday" "18th" "July" ""
"Thursday" "19th" "July" ""
"Friday" "20th" "July" ""
"Saturday" "21st" "July" ""
"Sunday" "22nd" "July" ""
"Monday" "23rd" "July" ""
"Tuesday" "24th" "July" ""
"Wednesday" "25th" "July" ""
"Thursday" "26th" "July" ""
"Friday" "27th" "July" ""
"Saturday" "28th" "July" ""
"Sunday" "29th" "July" ""
"Monday" "30th" "July" ""
"Tuesday" "31st" "July" ""
"Wednesday" "1st" "August" ""
"Thursday" "2nd" "August" ""
"Friday" "3rd" "August" ""
"Saturday" "4th" "August" ""
"Sunday" "5th" "August" ""
"Monday" "6th" "August" ""
"Tuesday" "7th" "August" ""
"Wednesday" "8th" "August" ""
"Thursday" "9th" "August" ""
"Friday" "10th" "August" ""
"Saturday" "11th" "August" ""
"Sunday" "12th" "August" ""
"Monday" "13th" "August" ""
"Tuesday" "14th" "August" ""
"Wednesday" "15th" "August" ""
"Thursday" "16th" "August" ""
"Friday" "17th" "August" ""
"Saturday" "18th" "August" ""
"Sunday" "19th" "August" ""
"Monday" "20th" "August" ""
"Tuesday" "21st" "August" ""
"Wednesday" "22nd" "August" ""
"Thursday" "23rd" "August" ""
"Friday" "24th" "August" ""
"Saturday" "25th" "August" ""
"Sunday" "26th" "August" ""
"Monday" "27th" "August" ""
"Tuesday" "28th" "August" ""
"Wednesday" "29th" "August" ""
"Thursday" "30th" "August" ""
"Friday" "31st" "August" ""
"Saturday" "1st" "September" ""
"Sunday" "2nd" "September" ""
"Monday" "3rd" "September" ""
"Tuesday" "4th" "September" ""
"Wednesday" "5th" "September" ""
"Thursday" "6th" "September" ""
"Friday" "7th" "September" ""
"Saturday" "8th" "September" ""
"Sunday" "9th" "September" ""
"Monday" "10th" "September" ""
"Tuesday" "11th" "September" ""
"Wednesday" "12th" "September" ""
"Thursday" "13th" "September" ""
"Friday" "14th" "September" ""
"Saturday" "15th" "September" ""
"Sunday" "16th" "September" ""
"Monday" "17th" "September" ""
"Tuesday" "18th" "September" ""
"Wednesday" "19th" "September" ""
"Thursday" "20th" "September" ""
"Friday" "21st" "September" ""
"Saturday" "22nd" "September" ""
"Sunday" "23rd" "September" ""
"Monday" "24th" "September" ""
"Tuesday" "25th" "September" ""
"Wednesday" "26th" "September" ""
"Thursday" "27th" "September" ""
"Friday" "28th" "September" ""
"Saturday" "29th" "September" ""
"Sunday" "30th" "September" ""
"Monday" "1st" "October" ""
"Tuesday" "2nd" "October" ""
"Wednesday" "3rd" "October" ""
"Thursday" "4th" "October" ""
"Friday" "5th" "October" ""
"Saturday" "6th" "October" ""
"Sunday" "7th" "October" ""
"Monday" "8th" "October" ""
"Tuesday" "9th" "October" ""
"Wednesday" "10th" "October" ""
"Thursday" "11th" "October" ""
"Friday" "12th" "October" ""
"Saturday" "13th" "October" ""
"Sunday" "14th" "October" ""
"Monday" "15th" "October" ""
"Tuesday" "16th" "October" ""
"Wednesday" "17th" "October" ""
"Thursday" "18th" "October" ""
"Friday" "19th" "October" ""
"Saturday" "20th" "October" ""
"Sunday" "21st" "October" ""
"Monday" "22nd" "October" ""
"Tuesday" "23rd" "October" ""
"Wednesday" "24th" "October" ""
"Thursday" "25th" "October" ""
"Friday" "26th" "October" ""
"Saturday" "27th" "October" ""
"Sunday" "28th" "October" ""
"Monday" "29th" "October" ""
"Tuesday" "30th" "October" ""
"Wednesday" "31st" "October" "All Hallow's Eve"
"Thursday" "1st" "November" ""
"Friday" "2nd" "November" ""
"Saturday" "3rd" "November" ""
"Sunday" "4th" "November" ""
"Monday" "5th" "November" ""
"Tuesday" "6th" "November" ""
"Wednesday" "7th" "November" ""
"Thursday" "8th" "November" ""
"Friday" "9th" "November" ""
"Saturday" "10th" "November" ""
"Sunday" "11th" "November" ""
"Monday" "12th" "November" ""
"Tuesday" "13th" "November" ""
"Wednesday" "14th" "November" ""
"Thursday" "15th" "November" ""
"Friday" "16th" "November" ""
"Saturday" "17th" "November" ""
"Sunday" "18th" "November" ""
"Monday" "19th" "November" ""
"Tuesday" "20th" "November" ""
"Wednesday" "21st" "November" ""
"Thursday" "22nd" "November" ""
"Friday" "23rd" "November" ""
"Saturday" "24th" "November" ""
"Sunday" "25th" "November" ""
"Monday" "26th" "November" ""
"Tuesday" "27th" "November" ""
"Wednesday" "28th" "November" ""
"Thursday" "29th" "November" ""
"Friday" "30th" "November" ""
"Saturday" "1st" "December" ""
"Sunday" "2nd" "December" ""
"Monday" "3rd" "December" ""
"Tuesday" "4th" "December" ""
"Wednesday" "5th" "December" ""
"Thursday" "6th" "December" ""
"Friday" "7th" "December" ""
"Saturday" "8th" "December" ""
"Sunday" "9th" "December" ""
"Monday" "10th" "December" ""
"Tuesday" "11th" "December" ""
"Wednesday" "12th" "December" ""
"Thursday" "13th" "December" ""
"Friday" "14th" "December" ""
"Saturday" "15th" "December" ""
"Sunday" "16th" "December" ""
"Monday" "17th" "December" ""
"Tuesday" "18th" "December" ""
"Wednesday" "19th" "December" ""
"Thursday" "20th" "December" ""
"Friday" "21st" "December" ""
"Saturday" "22nd" "December" ""
"Sunday" "23rd" "December" ""
"Monday" "24th" "December" ""
"Tuesday" "25th" "December" "Christmas"
"Wednesday" "26th" "December" ""
"Thursday" "27th" "December" ""
"Friday" "28th" "December" ""
"Saturday" "29th" "December" ""
"Sunday" "30th" "December" ""
"Monday" "31st" "December" "New Year's Eve"
"Tuesday" "1st" "January" "New Year's Day"
"Wednesday" "2nd" "January" ""
"Thursday" "3rd" "January" ""
"Friday" "4th" "January" ""
"Saturday" "5th" "January" ""
"Sunday" "6th" "January" ""
"Monday" "7th" "January" ""
"Tuesday" "8th" "January" ""
"Wednesday" "9th" "January" ""
"Thursday" "10th" "January" ""
"Friday" "11th" "January" ""
"Saturday" "12th" "January" ""
"Sunday" "13th" "January" ""
"Monday" "14th" "January" ""
"Tuesday" "15th" "January" ""
"Wednesday" "16th" "January" ""
"Thursday" "17th" "January" ""
"Friday" "18th" "January" ""
"Saturday" "19th" "January" ""
"Sunday" "20th" "January" ""
"Monday" "21st" "January" ""
"Tuesday" "22nd" "January" ""
"Wednesday" "23rd" "January" ""
"Thursday" "24th" "January" ""
"Friday" "25th" "January" ""
"Saturday" "26th" "January" ""
"Sunday" "27th" "January" ""
"Monday" "28th" "January" ""
"Tuesday" "29th" "January" ""
"Wednesday" "30th" "January" ""
"Thursday" "31st" "January" ""
"Friday" "1st" "February" ""
"Saturday" "2nd" "February" ""
"Sunday" "3rd" "February" ""
"Monday" "4th" "February" ""
"Tuesday" "5th" "February" ""
"Wednesday" "6th" "February" ""
"Thursday" "7th" "February" ""
"Friday" "8th" "February" ""
"Saturday" "9th" "February" ""
"Sunday" "10th" "February" ""
"Monday" "11th" "February" ""
"Tuesday" "12th" "February" ""
"Wednesday" "13th" "February" ""
"Thursday" "14th" "February" ""
"Friday" "15th" "February" ""
"Saturday" "16th" "February" ""
"Sunday" "17th" "February" ""
"Monday" "18th" "February" ""
"Tuesday" "19th" "February" ""
"Wednesday" "20th" "February" ""
"Thursday" "21st" "February" ""
"Friday" "22nd" "February" ""
"Saturday" "23rd" "February" ""
"Sunday" "24th" "February" ""
"Monday" "25th" "February" ""
"Tuesday" "26th" "February" ""
"Wednesday" "27th" "February" ""
"Thursday" "28th" "February" ""
"Friday" "1st" "March" ""
"Saturday" "2nd" "March" ""
"Sunday" "3rd" "March" ""
"Monday" "4th" "March" ""
"Tuesday" "5th" "March" ""
"Wednesday" "6th" "March" ""
"Thursday" "7th" "March" ""
"Friday" "8th" "March" ""
"Saturday" "9th" "March" ""
"Sunday" "10th" "March" ""
"Monday" "11th" "March" ""
"Tuesday" "12th" "March" ""
"Wednesday" "13th" "March" ""
"Thursday" "14th" "March" ""
"Friday" "15th" "March" ""
"Saturday" "16th" "March" ""
"Sunday" "17th" "March" ""
"Monday" "18th" "March" ""
"Tuesday" "19th" "March" ""
"Wednesday" "20th" "March" ""
"Thursday" "21st" "March" ""
"Friday" "22nd" "March" ""
"Saturday" "23rd" "March" ""
"Sunday" "24th" "March" ""
"Monday" "25th" "March" ""
"Tuesday" "26th" "March" ""
"Wednesday" "27th" "March" ""
"Thursday" "28th" "March" ""
"Friday" "29th" "March" ""
"Saturday" "30th" "March" ""
"Sunday" "31st" "March" ""
"Monday" "1st" "April" ""
"Tuesday" "2nd" "April" ""
"Wednesday" "3rd" "April" ""
"Thursday" "4th" "April" ""
"Friday" "5th" "April" ""
"Saturday" "6th" "April" ""
"Sunday" "7th" "April" ""
"Monday" "8th" "April" ""
"Tuesday" "9th" "April" ""
"Wednesday" "10th" "April" ""
"Thursday" "11th" "April" ""
"Friday" "12th" "April" ""
"Saturday" "13th" "April" ""
"Sunday" "14th" "April" ""
"Monday" "15th" "April" ""
"Tuesday" "16th" "April" ""
"Wednesday" "17th" "April" ""
"Thursday" "18th" "April" ""
"Friday" "19th" "April" "Good Friday"
"Saturday" "20th" "April" ""
"Sunday" "21st" "April" "Easter Sunday"
"Monday" "22nd" "April" ""
"Tuesday" "23rd" "April" ""
"Wednesday" "24th" "April" ""
"Thursday" "25th" "April" ""
"Friday" "26th" "April" ""
"Saturday" "27th" "April" ""
"Sunday" "28th" "April" ""
"Monday" "29th" "April" ""
"Tuesday" "30th" "April" ""
"Wednesday" "1st" "May" ""
"Thursday" "2nd" "May" ""
"Friday" "3rd" "May" ""
"Saturday" "4th" "May" ""
"Sunday" "5th" "May" ""
"Monday" "6th" "May" ""
"Tuesday" "7th" "May" ""
"Wednesday" "8th" "May" ""
"Thursday" "9th" "May" ""
"Friday" "10th" "May" ""
"Saturday" "11th" "May" ""
"Sunday" "12th" "May" ""
"Monday" "13th" "May" ""
"Tuesday" "14th" "May" ""
"Wednesday" "15th" "May" ""
"Thursday" "16th" "May" ""
"Friday" "17th" "May" ""
"Saturday" "18th" "May" ""
"Sunday" "19th" "May" ""
"Monday" "20th" "May" ""
"Tuesday" "21st" "May" ""
"Wednesday" "22nd" "May" ""
"Thursday" "23rd" "May" ""
"Friday" "24th" "May" ""
"Saturday" "25th" "May" ""
"Sunday" "26th" "May" ""
"Monday" "27th" "May" ""
"Tuesday" "28th" "May" ""
"Wednesday" "29th" "May" ""
"Thursday" "30th" "May" ""
"Friday" "31st" "May" ""
"Saturday" "1st" "June" ""
"Sunday" "2nd" "June" ""
"Monday" "3rd" "June" ""
"Tuesday" "4th" "June" ""
"Wednesday" "5th" "June" ""
"Thursday" "6th" "June" ""
"Friday" "7th" "June" ""
"Saturday" "8th" "June" ""
"Sunday" "9th" "June" ""
"Monday" "10th" "June" ""
"Tuesday" "11th" "June" ""
"Wednesday" "12th" "June" ""
"Thursday" "13th" "June" ""
"Friday" "14th" "June" ""
"Saturday" "15th" "June" ""
"Sunday" "16th" "June" ""
"Monday" "17th" "June" ""
"Tuesday" "18th" "June" ""
"Wednesday" "19th" "June" ""
"Thursday" "20th" "June" ""
"Friday" "21st" "June" ""
"Saturday" "22nd" "June" ""
"Sunday" "23rd" "June" ""
"Monday" "24th" "June" ""
"Tuesday" "25th" "June" ""
"Wednesday" "26th" "June" ""
"Thursday" "27th" "June" ""
"Friday" "28th" "June" ""
"Saturday" "29th" "June" ""
"Sunday" "30th" "June" ""
"Monday" "1st" "July" ""
"Tuesday" "2nd" "July" ""
"Wednesday" "3rd" "July" ""
"Thursday" "4th" "July" ""
"Friday" "5th" "July" ""
"Saturday" "6th" "July" ""
"Sunday" "7th" "July" ""
"Monday" "8th" "July" ""
"Tuesday" "9th" "July" ""
"Wednesday" "10th" "July" ""
"Thursday" "11th" "July" ""
"Friday" "12th" "July" ""
"Saturday" "13th" "July" ""
"Sunday" "14th" "July" ""
"Monday" "15th" "July" ""
"Tuesday" "16th" "July" ""
"Wednesday" "17th" "July" ""
"Thursday" "18th" "July" ""
"Friday" "19th" "July" ""
"Saturday" "20th" "July" ""
"Sunday" "21st" "July" ""
"Monday" "22nd" "July" ""
"Tuesday" "23rd" "July" ""
"Wednesday" "24th" "July" ""
"Thursday" "25th" "July" ""
"Friday" "26th" "July" ""
"Saturday" "27th" "July" ""
"Sunday" "28th" "July" ""
"Monday" "29th" "July" ""
"Tuesday" "30th" "July" ""
"Wednesday" "31st" "July" ""
"Thursday" "1st" "August" ""
"Friday" "2nd" "August" ""
"Saturday" "3rd" "August" ""
"Sunday" "4th" "August" ""
"Monday" "5th" "August" ""
"Tuesday" "6th" "August" ""
"Wednesday" "7th" "August" ""
"Thursday" "8th" "August" ""
"Friday" "9th" "August" ""
"Saturday" "10th" "August" ""
"Sunday" "11th" "August" ""
"Monday" "12th" "August" ""
"Tuesday" "13th" "August" ""
"Wednesday" "14th" "August" ""
"Thursday" "15th" "August" ""
"Friday" "16th" "August" ""
"Saturday" "17th" "August" ""
"Sunday" "18th" "August" ""
"Monday" "19th" "August" ""
"Tuesday" "20th" "August" ""
"Wednesday" "21st" "August" ""
"Thursday" "22nd" "August" ""
"Friday" "23rd" "August" ""
"Saturday" "24th" "August" ""
"Sunday" "25th" "August" ""
"Monday" "26th" "August" ""
"Tuesday" "27th" "August" ""
"Wednesday" "28th" "August" ""
"Thursday" "29th" "August" ""
"Friday" "30th" "August" ""
"Saturday" "31st" "August" ""
"Sunday" "1st" "September" ""
"Monday" "2nd" "September" ""
"Tuesday" "3rd" "September" ""
"Wednesday" "4th" "September" ""
"Thursday" "5th" "September" ""
"Friday" "6th" "September" ""
"Saturday" "7th" "September" ""
"Sunday" "8th" "September" ""
"Monday" "9th" "September" ""
"Tuesday" "10th" "September" ""
"Wednesday" "11th" "September" ""
"Thursday" "12th" "September" ""
"Friday" "13th" "September" ""
"Saturday" "14th" "September" ""
"Sunday" "15th" "September" ""
"Monday" "16th" "September" ""
"Tuesday" "17th" "September" ""
"Wednesday" "18th" "September" ""
"Thursday" "19th" "September" ""
"Friday" "20th" "September" ""
"Saturday" "21st" "September" ""
"Sunday" "22nd" "September" ""
"Monday" "23rd" "September" ""
"Tuesday" "24th" "September" ""
"Wednesday" "25th" "September" ""
"Thursday" "26th" "September" ""
"Friday" "27th" "September" ""
"Saturday" "28th" "September" ""
"Sunday" "29th" "September" ""
"Monday" "30th" "September" ""
"Tuesday" "1st" "October" ""
"Wednesday" "2nd" "October" ""
"Thursday" "3rd" "October" ""
"Friday" "4th" "October" ""
"Saturday" "5th" "October" ""
"Sunday" "6th" "October" ""
"Monday" "7th" "October" ""
"Tuesday" "8th" "October" ""
"Wednesday" "9th" "October" ""
"Thursday" "10th" "October" ""
"Friday" "11th" "October" ""
"Saturday" "12th" "October" ""
"Sunday" "13th" "October" ""
"Monday" "14th" "October" ""
"Tuesday" "15th" "October" ""
"Wednesday" "16th" "October" ""
"Thursday" "17th" "October" ""
"Friday" "18th" "October" ""
"Saturday" "19th" "October" ""
"Sunday" "20th" "October" ""
"Monday" "21st" "October" ""
"Tuesday" "22nd" "October" ""
"Wednesday" "23rd" "October" ""
"Thursday" "24th" "October" ""
"Friday" "25th" "October" ""
"Saturday" "26th" "October" ""
"Sunday" "27th" "October" ""
"Monday" "28th" "October" ""
"Tuesday" "29th" "October" ""
"Wednesday" "30th" "October" ""
"Thursday" "31st" "October" "All Hallow's Eve"
"Friday" "1st" "November" ""
"Saturday" "2nd" "November" ""
"Sunday" "3rd" "November" ""
"Monday" "4th" "November" ""
"Tuesday" "5th" "November" ""
"Wednesday" "6th" "November" ""
"Thursday" "7th" "November" ""
"Friday" "8th" "November" ""
"Saturday" "9th" "November" ""
"Sunday" "10th" "November" ""
"Monday" "11th" "November" ""
"Tuesday" "12th" "November" ""
"Wednesday" "13th" "November" ""
"Thursday" "14th" "November" ""
"Friday" "15th" "November" ""
"Saturday" "16th" "November" ""
"Sunday" "17th" "November" ""
"Monday" "18th" "November" ""
"Tuesday" "19th" "November" ""
"Wednesday" "20th" "November" ""
"Thursday" "21st" "November" ""
"Friday" "22nd" "November" ""
"Saturday" "23rd" "November" ""
"Sunday" "24th" "November" ""
"Monday" "25th" "November" ""
"Tuesday" "26th" "November" ""
"Wednesday" "27th" "November" ""
"Thursday" "28th" "November" ""
"Friday" "29th" "November" ""
"Saturday" "30th" "November" ""
"Sunday" "1st" "December" ""
"Monday" "2nd" "December" ""
"Tuesday" "3rd" "December" ""
"Wednesday" "4th" "December" ""
"Thursday" "5th" "December" ""
"Friday" "6th" "December" ""
"Saturday" "7th" "December" ""
"Sunday" "8th" "December" ""
"Monday" "9th" "December" ""
"Tuesday" "10th" "December" ""
"Wednesday" "11th" "December" ""
"Thursday" "12th" "December" ""
"Friday" "13th" "December" ""
"Saturday" "14th" "December" ""
"Sunday" "15th" "December" ""
"Monday" "16th" "December" ""
"Tuesday" "17th" "December" ""
"Wednesday" "18th" "December" ""
"Thursday" "19th" "December" ""
"Friday" "20th" "December" ""
"Saturday" "21st" "December" ""
"Sunday" "22nd" "December" ""
"Monday" "23rd" "December" ""
"Tuesday" "24th" "December" ""
"Wednesday" "25th" "December" "Christmas"
"Thursday" "26th" "December" ""
"Friday" "27th" "December" ""
"Saturday" "28th" "December" ""
"Sunday" "29th" "December" ""
"Monday" "30th" "December" ""
"Tuesday" "31st" "December" "New Year's Eve"
"Wednesday" "1st" "January" "New Year's Day"
"Thursday" "2nd" "January" ""
"Friday" "3rd" "January" ""
"Saturday" "4th" "January" ""
"Sunday" "5th" "January" ""
"Monday" "6th" "January" ""
"Tuesday" "7th" "January" ""
"Wednesday" "8th" "January" ""
"Thursday" "9th" "January" ""
"Friday" "10th" "January" ""
"Saturday" "11th" "January" ""
"Sunday" "12th" "January" ""
"Monday" "13th" "January" ""
"Tuesday" "14th" "January" ""
"Wednesday" "15th" "January" ""
"Thursday" "16th" "January" ""
"Friday" "17th" "January" ""
"Saturday" "18th" "January" ""
"Sunday" "19th" "January" ""
"Monday" "20th" "January" ""
"Tuesday" "21st" "January" ""
"Wednesday" "22nd" "January" ""
"Thursday" "23rd" "January" ""
"Friday" "24th" "January" ""
"Saturday" "25th" "January" ""
"Sunday" "26th" "January" ""
"Monday" "27th" "January" ""
"Tuesday" "28th" "January" ""
"Wednesday" "29th" "January" ""
"Thursday" "30th" "January" ""
"Friday" "31st" "January" ""
"Saturday" "1st" "February" ""
"Sunday" "2nd" "February" ""
"Monday" "3rd" "February" ""
"Tuesday" "4th" "February" ""
"Wednesday" "5th" "February" ""
"Thursday" "6th" "February" ""
"Friday" "7th" "February" ""
"Saturday" "8th" "February" ""
"Sunday" "9th" "February" ""
"Monday" "10th" "February" ""
"Tuesday" "11th" "February" ""
"Wednesday" "12th" "February" ""
"Thursday" "13th" "February" ""
"Friday" "14th" "February" ""
"Saturday" "15th" "February" ""
"Sunday" "16th" "February" ""
"Monday" "17th" "February" ""
"Tuesday" "18th" "February" ""
"Wednesday" "19th" "February" ""
"Thursday" "20th" "February" ""
"Friday" "21st" "February" ""
"Saturday" "22nd" "February" ""
"Sunday" "23rd" "February" ""
"Monday" "24th" "February" ""
"Tuesday" "25th" "February" ""
"Wednesday" "26th" "February" ""
"Thursday" "27th" "February" ""
"Friday" "28th" "February" ""
"Saturday" "1st" "March" ""
"Sunday" "2nd" "March" ""
"Monday" "3rd" "March" ""
"Tuesday" "4th" "March" ""
"Wednesday" "5th" "March" ""
"Thursday" "6th" "March" ""
"Friday" "7th" "March" ""
"Saturday" "8th" "March" ""
"Sunday" "9th" "March" ""
"Monday" "10th" "March" ""
"Tuesday" "11th" "March" ""
"Wednesday" "12th" "March" ""
"Thursday" "13th" "March" ""