Agreus commited on
Commit
a8415a3
·
verified ·
1 Parent(s): d7431cd

Update spaCy pipeline

Browse files
.gitattributes CHANGED
@@ -33,3 +33,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ en_pipeline-any-py3-none-any.whl filter=lfs diff=lfs merge=lfs -text
37
+ ner/model filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - spacy
4
+ - token-classification
5
+ language:
6
+ - en
7
+ ---
8
+ | Feature | Description |
9
+ | --- | --- |
10
+ | **Name** | `en_pipeline` |
11
+ | **Version** | `0.0.0` |
12
+ | **spaCy** | `>=3.7.2,<3.8.0` |
13
+ | **Default Pipeline** | `ner` |
14
+ | **Components** | `ner` |
15
+ | **Vectors** | 0 keys, 0 unique vectors (0 dimensions) |
16
+ | **Sources** | n/a |
17
+ | **License** | n/a |
18
+ | **Author** | [n/a]() |
19
+
20
+ ### Label Scheme
21
+
22
+ <details>
23
+
24
+ <summary>View label scheme (9 labels for 1 components)</summary>
25
+
26
+ | Component | Labels |
27
+ | --- | --- |
28
+ | **`ner`** | `AM_TIME_END`, `AM_TIME_START`, `DATE_END`, `DATE_START`, `MILITARY_TIME_END`, `MILITARY_TIME_START`, `PM_TIME_END`, `PM_TIME_START`, `REASON` |
29
+
30
+ </details>
config.cfg ADDED
@@ -0,0 +1,130 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [paths]
2
+ train = null
3
+ dev = null
4
+ vectors = null
5
+ init_tok2vec = null
6
+
7
+ [system]
8
+ seed = 0
9
+ gpu_allocator = null
10
+
11
+ [nlp]
12
+ lang = "en"
13
+ pipeline = ["ner"]
14
+ disabled = []
15
+ before_creation = null
16
+ after_creation = null
17
+ after_pipeline_creation = null
18
+ batch_size = 1000
19
+ tokenizer = {"@tokenizers":"spacy.Tokenizer.v1"}
20
+ vectors = {"@vectors":"spacy.Vectors.v1"}
21
+
22
+ [components]
23
+
24
+ [components.ner]
25
+ factory = "ner"
26
+ incorrect_spans_key = null
27
+ moves = null
28
+ scorer = {"@scorers":"spacy.ner_scorer.v1"}
29
+ update_with_oracle_cut_size = 100
30
+
31
+ [components.ner.model]
32
+ @architectures = "spacy.TransitionBasedParser.v2"
33
+ state_type = "ner"
34
+ extra_state_tokens = false
35
+ hidden_width = 64
36
+ maxout_pieces = 2
37
+ use_upper = true
38
+ nO = null
39
+
40
+ [components.ner.model.tok2vec]
41
+ @architectures = "spacy.HashEmbedCNN.v2"
42
+ pretrained_vectors = null
43
+ width = 96
44
+ depth = 4
45
+ embed_size = 2000
46
+ window_size = 1
47
+ maxout_pieces = 3
48
+ subword_features = true
49
+
50
+ [corpora]
51
+
52
+ [corpora.dev]
53
+ @readers = "spacy.Corpus.v1"
54
+ path = ${paths.dev}
55
+ gold_preproc = false
56
+ max_length = 0
57
+ limit = 0
58
+ augmenter = null
59
+
60
+ [corpora.train]
61
+ @readers = "spacy.Corpus.v1"
62
+ path = ${paths.train}
63
+ gold_preproc = false
64
+ max_length = 0
65
+ limit = 0
66
+ augmenter = null
67
+
68
+ [training]
69
+ seed = ${system.seed}
70
+ gpu_allocator = ${system.gpu_allocator}
71
+ dropout = 0.1
72
+ accumulate_gradient = 1
73
+ patience = 1600
74
+ max_epochs = 0
75
+ max_steps = 20000
76
+ eval_frequency = 200
77
+ frozen_components = []
78
+ annotating_components = []
79
+ dev_corpus = "corpora.dev"
80
+ train_corpus = "corpora.train"
81
+ before_to_disk = null
82
+ before_update = null
83
+
84
+ [training.batcher]
85
+ @batchers = "spacy.batch_by_words.v1"
86
+ discard_oversize = false
87
+ tolerance = 0.2
88
+ get_length = null
89
+
90
+ [training.batcher.size]
91
+ @schedules = "compounding.v1"
92
+ start = 100
93
+ stop = 1000
94
+ compound = 1.001
95
+ t = 0.0
96
+
97
+ [training.logger]
98
+ @loggers = "spacy.ConsoleLogger.v1"
99
+ progress_bar = false
100
+
101
+ [training.optimizer]
102
+ @optimizers = "Adam.v1"
103
+ beta1 = 0.9
104
+ beta2 = 0.999
105
+ L2_is_weight_decay = true
106
+ L2 = 0.01
107
+ grad_clip = 1.0
108
+ use_averages = false
109
+ eps = 0.00000001
110
+ learn_rate = 0.001
111
+
112
+ [training.score_weights]
113
+ ents_f = 1.0
114
+ ents_p = 0.0
115
+ ents_r = 0.0
116
+ ents_per_type = null
117
+
118
+ [pretraining]
119
+
120
+ [initialize]
121
+ vectors = ${paths.vectors}
122
+ init_tok2vec = ${paths.init_tok2vec}
123
+ vocab_data = null
124
+ lookups = null
125
+ before_init = null
126
+ after_init = null
127
+
128
+ [initialize.components]
129
+
130
+ [initialize.tokenizer]
en_pipeline-any-py3-none-any.whl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0a7f15c44ea069fdcb53170d169cb95835262d55f8594ba3b91f891f12929bb5
3
+ size 3586107
meta.json ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lang":"en",
3
+ "name":"pipeline",
4
+ "version":"0.0.0",
5
+ "description":"",
6
+ "author":"",
7
+ "email":"",
8
+ "url":"",
9
+ "license":"",
10
+ "spacy_version":">=3.7.2,<3.8.0",
11
+ "spacy_git_version":"a89eae928",
12
+ "vectors":{
13
+ "width":0,
14
+ "vectors":0,
15
+ "keys":0,
16
+ "name":null
17
+ },
18
+ "labels":{
19
+ "ner":[
20
+ "AM_TIME_END",
21
+ "AM_TIME_START",
22
+ "DATE_END",
23
+ "DATE_START",
24
+ "MILITARY_TIME_END",
25
+ "MILITARY_TIME_START",
26
+ "PM_TIME_END",
27
+ "PM_TIME_START",
28
+ "REASON"
29
+ ]
30
+ },
31
+ "pipeline":[
32
+ "ner"
33
+ ],
34
+ "components":[
35
+ "ner"
36
+ ],
37
+ "disabled":[
38
+
39
+ ],
40
+ "requirements":[
41
+
42
+ ]
43
+ }
ner/cfg ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "moves":null,
3
+ "update_with_oracle_cut_size":100,
4
+ "multitasks":[
5
+
6
+ ],
7
+ "min_action_freq":1,
8
+ "learn_tokens":false,
9
+ "beam_width":1,
10
+ "beam_density":0.0,
11
+ "beam_update_prob":0.0,
12
+ "incorrect_spans_key":null
13
+ }
ner/model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c83ee95887e5ea6bd0b3cdfce14e4ed527d6ae82fea6898c19229e0ff6f04850
3
+ size 3841240
ner/moves ADDED
@@ -0,0 +1 @@
 
 
1
+ ��moves��{"0":{},"1":{"AM_TIME_START":-1,"AM_TIME_END":-2,"PM_TIME_START":-3,"PM_TIME_END":-4,"MILITARY_TIME_START":-5,"MILITARY_TIME_END":-6,"DATE_START":-7,"DATE_END":-8,"REASON":-9},"2":{"AM_TIME_START":-1,"AM_TIME_END":-2,"PM_TIME_START":-3,"PM_TIME_END":-4,"MILITARY_TIME_START":-5,"MILITARY_TIME_END":-6,"DATE_START":-7,"DATE_END":-8,"REASON":-9},"3":{"AM_TIME_START":-1,"AM_TIME_END":-2,"PM_TIME_START":-3,"PM_TIME_END":-4,"MILITARY_TIME_START":-5,"MILITARY_TIME_END":-6,"DATE_START":-7,"DATE_END":-8,"REASON":-9},"4":{"":1,"AM_TIME_START":-1,"AM_TIME_END":-2,"PM_TIME_START":-3,"PM_TIME_END":-4,"MILITARY_TIME_START":-5,"MILITARY_TIME_END":-6,"DATE_START":-7,"DATE_END":-8,"REASON":-9},"5":{"":1}}�cfg��neg_key�
tokenizer ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ ��prefix_search� �^§|^%|^=|^—|^–|^\+(?![0-9])|^…|^……|^,|^:|^;|^\!|^\?|^¿|^؟|^¡|^\(|^\)|^\[|^\]|^\{|^\}|^<|^>|^_|^#|^\*|^&|^。|^?|^!|^,|^、|^;|^:|^~|^·|^।|^،|^۔|^؛|^٪|^\.\.+|^…|^\'|^"|^”|^“|^`|^‘|^´|^’|^‚|^,|^„|^»|^«|^「|^」|^『|^』|^(|^)|^〔|^〕|^【|^】|^《|^》|^〈|^〉|^〈|^〉|^⟦|^⟧|^\$|^£|^€|^¥|^฿|^US\$|^C\$|^A\$|^₽|^﷼|^₴|^₠|^₡|^₢|^₣|^₤|^₥|^₦|^₧|^₨|^₩|^₪|^₫|^€|^₭|^₮|^₯|^₰|^₱|^₲|^₳|^₴|^₵|^₶|^₷|^₸|^₹|^₺|^₻|^₼|^₽|^₾|^₿|^[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]�suffix_search�2�…$|……$|,$|:$|;$|\!$|\?$|¿$|؟$|¡$|\($|\)$|\[$|\]$|\{$|\}$|<$|>$|_$|#$|\*$|&$|。$|?$|!$|,$|、$|;$|:$|~$|·$|।$|،$|۔$|؛$|٪$|\.\.+$|…$|\'$|"$|”$|“$|`$|‘$|´$|’$|‚$|,$|„$|»$|«$|「$|」$|『$|』$|($|)$|〔$|〕$|【$|】$|《$|》$|〈$|〉$|〈$|〉$|⟦$|⟧$|[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]$|'s$|'S$|’s$|’S$|—$|–$|(?<=[0-9])\+$|(?<=°[FfCcKk])\.$|(?<=[0-9])(?:\$|£|€|¥|฿|US\$|C\$|A\$|₽|﷼|₴|₠|₡|₢|₣|₤|₥|₦|₧|₨|₩|₪|₫|€|₭|₮|₯|₰|₱|₲|₳|₴|₵|₶|₷|₸|₹|₺|₻|₼|₽|₾|₿)$|(?<=[0-9])(?:km|km²|km³|m|m²|m³|dm|dm²|dm³|cm|cm²|cm³|mm|mm²|mm³|ha|µm|nm|yd|in|ft|kg|g|mg|µg|t|lb|oz|m/s|km/h|kmh|mph|hPa|Pa|mbar|mb|MB|kb|KB|gb|GB|tb|TB|T|G|M|K|%|км|км²|км³|м|м²|м³|дм|дм²|дм³|см|см²|см³|мм|мм²|мм³|нм|кг|г|мг|м/с|км/ч|кПа|Па|мбар|Кб|КБ|кб|Мб|МБ|мб|Гб|ГБ|гб|Тб|ТБ|тбكم|كم²|كم³|م|م²|م³|سم|سم²|سم³|مم|مم²|مم³|كم|غرام|جرام|جم|كغ|ملغ|كوب|اكواب)$|(?<=[0-9a-z\uFF41-\uFF5A\u00DF-\u00F6\u00F8-\u00FF\u0101\u0103\u0105\u0107\u0109\u010B\u010D\u010F\u0111\u0113\u0115\u0117\u0119\u011B\u011D\u011F\u0121\u0123\u0125\u0127\u0129\u012B\u012D\u012F\u0131\u0133\u0135\u0137\u0138\u013A\u013C\u013E\u0140\u0142\u0144\u0146\u0148\u0149\u014B\u014D\u014F\u0151\u0153\u0155\u0157\u0159\u015B\u015D\u015F\u0161\u0163\u0165\u0167\u0169\u016B\u016D\u016F\u0171\u0173\u0175\u0177\u017A\u017C\u017E\u017F\u0180\u0183\u0185\u0188\u018C\u018D\u0192\u0195\u0199-\u019B\u019E\u01A1\u01A3\u01A5\u01A8\u01AA\u01AB\u01AD\u01B0\u01B4\u01B6\u01B9\u01BA\u01BD-\u01BF\u01C6\u01C9\u01CC\u01CE\u01D0\u01D2\u01D4\u01D6\u01D8\u01DA\u01DC\u01DD\u01DF\u01E1\u01E3\u01E5\u01E7\u01E9\u01EB\u01ED\u01EF\u01F0\u01F3\u01F5\u01F9\u01FB\u01FD\u01FF\u0201\u0203\u0205\u0207\u0209\u020B\u020D\u020F\u0211\u0213\u0215\u0217\u0219\u021B\u021D\u021F\u0221\u0223\u0225\u0227\u0229\u022B\u022D\u022F\u0231\u0233-\u0239\u023C\u023F\u0240\u0242\u0247\u0249\u024B\u024D\u024F\u2C61\u2C65\u2C66\u2C68\u2C6A\u2C6C\u2C71\u2C73\u2C74\u2C76-\u2C7B\uA723\uA725\uA727\uA729\uA72B\uA72D\uA72F-\uA731\uA733\uA735\uA737\uA739\uA73B\uA73D\uA73F\uA741\uA743\uA745\uA747\uA749\uA74B\uA74D\uA74F\uA751\uA753\uA755\uA757\uA759\uA75B\uA75D\uA75F\uA761\uA763\uA765\uA767\uA769\uA76B\uA76D\uA76F\uA771-\uA778\uA77A\uA77C\uA77F\uA781\uA783\uA785\uA787\uA78C\uA78E\uA791\uA793-\uA795\uA797\uA799\uA79B\uA79D\uA79F\uA7A1\uA7A3\uA7A5\uA7A7\uA7A9\uA7AF\uA7B5\uA7B7\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E01\u1E03\u1E05\u1E07\u1E09\u1E0B\u1E0D\u1E0F\u1E11\u1E13\u1E15\u1E17\u1E19\u1E1B\u1E1D\u1E1F\u1E21\u1E23\u1E25\u1E27\u1E29\u1E2B\u1E2D\u1E2F\u1E31\u1E33\u1E35\u1E37\u1E39\u1E3B\u1E3D\u1E3F\u1E41\u1E43\u1E45\u1E47\u1E49\u1E4B\u1E4D\u1E4F\u1E51\u1E53\u1E55\u1E57\u1E59\u1E5B\u1E5D\u1E5F\u1E61\u1E63\u1E65\u1E67\u1E69\u1E6B\u1E6D\u1E6F\u1E71\u1E73\u1E75\u1E77\u1E79\u1E7B\u1E7D\u1E7F\u1E81\u1E83\u1E85\u1E87\u1E89\u1E8B\u1E8D\u1E8F\u1E91\u1E93\u1E95-\u1E9D\u1E9F\u1EA1\u1EA3\u1EA5\u1EA7\u1EA9\u1EAB\u1EAD\u1EAF\u1EB1\u1EB3\u1EB5\u1EB7\u1EB9\u1EBB\u1EBD\u1EBF\u1EC1\u1EC3\u1EC5\u1EC7\u1EC9\u1ECB\u1ECD\u1ECF\u1ED1\u1ED3\u1ED5\u1ED7\u1ED9\u1EDB\u1EDD\u1EDF\u1EE1\u1EE3\u1EE5\u1EE7\u1EE9\u1EEB\u1EED\u1EEF\u1EF1\u1EF3\u1EF5\u1EF7\u1EF9\u1EFB\u1EFD\u1EFFёа-яәөүҗңһα-ωάέίόώήύа-щюяіїєґѓѕјљњќѐѝ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F%²\-\+…|……|,|:|;|\!|\?|¿|؟|¡|\(|\)|\[|\]|\{|\}|<|>|_|#|\*|&|。|?|!|,|、|;|:|~|·|।|،|۔|؛|٪(?:\'"”“`‘´’‚,„»«「」『』()〔〕【】《》〈〉〈〉⟦⟧)])\.$|(?<=[A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEЁА-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌΏΉΎА-ЩЮЯІЇЄҐЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F][A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEЁА-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌΏΉΎА-ЩЮЯІЇЄҐЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])\.$�infix_finditer�>�\.\.+|…|[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]|(?<=[0-9])[+\-\*^](?=[0-9-])|(?<=[a-z\uFF41-\uFF5A\u00DF-\u00F6\u00F8-\u00FF\u0101\u0103\u0105\u0107\u0109\u010B\u010D\u010F\u0111\u0113\u0115\u0117\u0119\u011B\u011D\u011F\u0121\u0123\u0125\u0127\u0129\u012B\u012D\u012F\u0131\u0133\u0135\u0137\u0138\u013A\u013C\u013E\u0140\u0142\u0144\u0146\u0148\u0149\u014B\u014D\u014F\u0151\u0153\u0155\u0157\u0159\u015B\u015D\u015F\u0161\u0163\u0165\u0167\u0169\u016B\u016D\u016F\u0171\u0173\u0175\u0177\u017A\u017C\u017E\u017F\u0180\u0183\u0185\u0188\u018C\u018D\u0192\u0195\u0199-\u019B\u019E\u01A1\u01A3\u01A5\u01A8\u01AA\u01AB\u01AD\u01B0\u01B4\u01B6\u01B9\u01BA\u01BD-\u01BF\u01C6\u01C9\u01CC\u01CE\u01D0\u01D2\u01D4\u01D6\u01D8\u01DA\u01DC\u01DD\u01DF\u01E1\u01E3\u01E5\u01E7\u01E9\u01EB\u01ED\u01EF\u01F0\u01F3\u01F5\u01F9\u01FB\u01FD\u01FF\u0201\u0203\u0205\u0207\u0209\u020B\u020D\u020F\u0211\u0213\u0215\u0217\u0219\u021B\u021D\u021F\u0221\u0223\u0225\u0227\u0229\u022B\u022D\u022F\u0231\u0233-\u0239\u023C\u023F\u0240\u0242\u0247\u0249\u024B\u024D\u024F\u2C61\u2C65\u2C66\u2C68\u2C6A\u2C6C\u2C71\u2C73\u2C74\u2C76-\u2C7B\uA723\uA725\uA727\uA729\uA72B\uA72D\uA72F-\uA731\uA733\uA735\uA737\uA739\uA73B\uA73D\uA73F\uA741\uA743\uA745\uA747\uA749\uA74B\uA74D\uA74F\uA751\uA753\uA755\uA757\uA759\uA75B\uA75D\uA75F\uA761\uA763\uA765\uA767\uA769\uA76B\uA76D\uA76F\uA771-\uA778\uA77A\uA77C\uA77F\uA781\uA783\uA785\uA787\uA78C\uA78E\uA791\uA793-\uA795\uA797\uA799\uA79B\uA79D\uA79F\uA7A1\uA7A3\uA7A5\uA7A7\uA7A9\uA7AF\uA7B5\uA7B7\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E01\u1E03\u1E05\u1E07\u1E09\u1E0B\u1E0D\u1E0F\u1E11\u1E13\u1E15\u1E17\u1E19\u1E1B\u1E1D\u1E1F\u1E21\u1E23\u1E25\u1E27\u1E29\u1E2B\u1E2D\u1E2F\u1E31\u1E33\u1E35\u1E37\u1E39\u1E3B\u1E3D\u1E3F\u1E41\u1E43\u1E45\u1E47\u1E49\u1E4B\u1E4D\u1E4F\u1E51\u1E53\u1E55\u1E57\u1E59\u1E5B\u1E5D\u1E5F\u1E61\u1E63\u1E65\u1E67\u1E69\u1E6B\u1E6D\u1E6F\u1E71\u1E73\u1E75\u1E77\u1E79\u1E7B\u1E7D\u1E7F\u1E81\u1E83\u1E85\u1E87\u1E89\u1E8B\u1E8D\u1E8F\u1E91\u1E93\u1E95-\u1E9D\u1E9F\u1EA1\u1EA3\u1EA5\u1EA7\u1EA9\u1EAB\u1EAD\u1EAF\u1EB1\u1EB3\u1EB5\u1EB7\u1EB9\u1EBB\u1EBD\u1EBF\u1EC1\u1EC3\u1EC5\u1EC7\u1EC9\u1ECB\u1ECD\u1ECF\u1ED1\u1ED3\u1ED5\u1ED7\u1ED9\u1EDB\u1EDD\u1EDF\u1EE1\u1EE3\u1EE5\u1EE7\u1EE9\u1EEB\u1EED\u1EEF\u1EF1\u1EF3\u1EF5\u1EF7\u1EF9\u1EFB\u1EFD\u1EFFёа-яәөүҗңһα-ωάέίόώήύа-щюяіїєґѓѕјљњќѐѝ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F\'"”“`‘´’‚,„»«「」『』()〔〕【】《》〈〉〈〉⟦⟧])\.(?=[A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEЁА-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌΏΉΎА-ЩЮЯІЇЄҐЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F\'"”“`‘´’‚,„»«「」『』()〔〕【】《》〈〉〈〉⟦⟧])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F]),(?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F0-9])(?:-|–|—|--|---|——|~)(?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F0-9])[:<>=/](?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])�token_match��url_match�
2
+ ��A�
3
+ � ��A� �'��A�'�''��A�''�'Cause��A�'CauseC�because�'Cos��A�'CosC�because�'Coz��A�'CozC�because�'Cuz��A�'CuzC�because�'S��A�'SC�'s�'bout��A�'boutC�about�'cause��A�'causeC�because�'cos��A�'cosC�because�'coz��A�'cozC�because�'cuz��A�'cuzC�because�'d��A�'d�'em��A�'emC�them�'ll��A�'llC�will�'nuff��A�'nuffC�enough�'re��A�'reC�are�'s��A�'sC�'s�(*_*)��A�(*_*)�(-8��A�(-8�(-:��A�(-:�(-;��A�(-;�(-_-)��A�(-_-)�(._.)��A�(._.)�(:��A�(:�(;��A�(;�(=��A�(=�(>_<)��A�(>_<)�(^_^)��A�(^_^)�(o:��A�(o:�(¬_¬)��A�(¬_¬)�(ಠ_ಠ)��A�(ಠ_ಠ)�(╯°□°)╯︵┻━┻��A�(╯°□°)╯︵┻━┻�)-:��A�)-:�):��A�):�-_-��A�-_-�-__-��A�-__-�._.��A�._.�0.0��A�0.0�0.o��A�0.o�0_0��A�0_0�0_o��A�0_o�10a.m.��A�10�A�a.m.C�a.m.�10am��A�10�A�amC�a.m.�10p.m.��A�10�A�p.m.C�p.m.�10pm��A�10�A�pmC�p.m.�11a.m.��A�11�A�a.m.C�a.m.�11am��A�11�A�amC�a.m.�11p.m.��A�11�A�p.m.C�p.m.�11pm��A�11�A�pmC�p.m.�12a.m.��A�12�A�a.m.C�a.m.�12am��A�12�A�amC�a.m.�12p.m.��A�12�A�p.m.C�p.m.�12pm��A�12�A�pmC�p.m.�1a.m.��A�1�A�a.m.C�a.m.�1am��A�1�A�amC�a.m.�1p.m.��A�1�A�p.m.C�p.m.�1pm��A�1�A�pmC�p.m.�2a.m.��A�2�A�a.m.C�a.m.�2am��A�2�A�amC�a.m.�2p.m.��A�2�A�p.m.C�p.m.�2pm��A�2�A�pmC�p.m.�3a.m.��A�3�A�a.m.C�a.m.�3am��A�3�A�amC�a.m.�3p.m.��A�3�A�p.m.C�p.m.�3pm��A�3�A�pmC�p.m.�4a.m.��A�4�A�a.m.C�a.m.�4am��A�4�A�amC�a.m.�4p.m.��A�4�A�p.m.C�p.m.�4pm��A�4�A�pmC�p.m.�5a.m.��A�5�A�a.m.C�a.m.�5am��A�5�A�amC�a.m.�5p.m.��A�5�A�p.m.C�p.m.�5pm��A�5�A�pmC�p.m.�6a.m.��A�6�A�a.m.C�a.m.�6am��A�6�A�amC�a.m.�6p.m.��A�6�A�p.m.C�p.m.�6pm��A�6�A�pmC�p.m.�7a.m.��A�7�A�a.m.C�a.m.�7am��A�7�A�amC�a.m.�7p.m.��A�7�A�p.m.C�p.m.�7pm��A�7�A�pmC�p.m.�8)��A�8)�8-)��A�8-)�8-D��A�8-D�8D��A�8D�8a.m.��A�8�A�a.m.C�a.m.�8am��A�8�A�amC�a.m.�8p.m.��A�8�A�p.m.C�p.m.�8pm��A�8�A�pmC�p.m.�9a.m.��A�9�A�a.m.C�a.m.�9am��A�9�A�amC�a.m.�9p.m.��A�9�A�p.m.C�p.m.�9pm��A�9�A�pmC�p.m.�:'(��A�:'(�:')��A�:')�:'-(��A�:'-(�:'-)��A�:'-)�:(��A�:(�:((��A�:((�:(((��A�:(((�:()��A�:()�:)��A�:)�:))��A�:))�:)))��A�:)))�:*��A�:*�:-(��A�:-(�:-((��A�:-((�:-(((��A�:-(((�:-)��A�:-)�:-))��A�:-))�:-)))��A�:-)))�:-*��A�:-*�:-/��A�:-/�:-0��A�:-0�:-3��A�:-3�:->��A�:->�:-D��A�:-D�:-O��A�:-O�:-P��A�:-P�:-X��A�:-X�:-]��A�:-]�:-o��A�:-o�:-p��A�:-p�:-x��A�:-x�:-|��A�:-|�:-}��A�:-}�:/��A�:/�:0��A�:0�:1��A�:1�:3��A�:3�:>��A�:>�:D��A�:D�:O��A�:O�:P��A�:P�:X��A�:X�:]��A�:]�:o��A�:o�:o)��A�:o)�:p��A�:p�:x��A�:x�:|��A�:|�:}��A�:}�:’(��A�:’(�:’)��A�:’)�:’-(��A�:’-(�:’-)��A�:’-)�;)��A�;)�;-)��A�;-)�;-D��A�;-D�;D��A�;D�;_;��A�;_;�<.<��A�<.<�</3��A�</3�<3��A�<3�<33��A�<33�<333��A�<333�<space>��A�<space>�=(��A�=(�=)��A�=)�=/��A�=/�=3��A�=3�=D��A�=D�=[��A�=[�=]��A�=]�=|��A�=|�>.<��A�>.<�>.>��A�>.>�>:(��A�>:(�>:o��A�>:o�><(((*>��A�><(((*>�@_@��A�@_@�Adm.��A�Adm.�Ain't��A�Ai�A�n'tC�not�Aint��A�Ai�A�ntC�not�Ain’t��A�Ai�A�n’tC�not�Ak.��A�Ak.C�Alaska�Ala.��A�Ala.C�Alabama�Apr.��A�Apr.C�April�Aren't��A�AreC�are�A�n'tC�not�Arent��A�AreC�are�A�ntC�not�Aren’t��A�AreC�are�A�n’tC�not�Ariz.��A�Ariz.C�Arizona�Ark.��A�Ark.C�Arkansas�Aug.��A�Aug.C�August�Bros.��A�Bros.�C'mon��A�C'mC�come�A�on�C++��A�C++�Calif.��A�Calif.C�California�Can't��A�CaC�can�A�n'tC�not�Can't've��A�CaC�can�A�n'tC�not�A�'veC�have�Cannot��A�CanC�can�A�not�Cant��A�CaC�can�A�ntC�not�Cantve��A�CaC�can�A�ntC�not�A�veC�have�Can’t��A�CaC�can�A�n’tC�not�Can’t’ve��A�CaC�can�A�n’tC�not�A�’veC�have�Co.��A�Co.�Colo.��A�Colo.C�Colorado�Conn.��A�Conn.C�Connecticut�Corp.��A�Corp.�Could've��A�CouldC�could�A�'ve�Couldn't��A�CouldC�could�A�n'tC�not�Couldn't've��A�CouldC�could�A�n'tC�not�A�'veC�have�Couldnt��A�CouldC�could�A�ntC�not�Couldntve��A�CouldC�could�A�ntC�not�A�veC�have�Couldn’t��A�CouldC�could�A�n’tC�not�Couldn’t’ve��A�CouldC�could�A�n’tC�not�A�’veC�have�Couldve��A�CouldC�could�A�ve�Could’ve��A�CouldC�could�A�’ve�C’mon��A�C’mC�come�A�on�D.C.��A�D.C.�Daren't��A�DareC�dare�A�n'tC�not�Darent��A�DareC�dare�A�ntC�not�Daren’t��A�DareC�dare�A�n’tC�not�Dec.��A�Dec.C�December�Del.��A�Del.C�Delaware�Didn't��A�DidC�do�A�n'tC�not�Didn't've��A�DidC�do�A�n'tC�not�A�'veC�have�Didnt��A�DidC�do�A�ntC�not�Didntve��A�DidC�do�A�ntC�not�A�veC�have�Didn’t��A�DidC�do�A�n’tC�not�Didn’t’ve��A�DidC�do�A�n’tC�not�A�’veC�have�Doesn't��A�DoesC�does�A�n'tC�not�Doesn't've��A�DoesC�does�A�n'tC�not�A�'veC�have�Doesnt��A�DoesC�does�A�ntC�not�Doesntve��A�DoesC�does�A�ntC�not�A�veC�have�Doesn’t��A�DoesC�does�A�n’tC�not�Doesn’t’ve��A�DoesC�does�A�n’tC�not�A�’veC�have�Doin��A�DoinC�doing�Doin'��A�Doin'C�doing�Doin’��A�Doin’C�doing�Don't��A�DoC�do�A�n'tC�not�Don't've��A�DoC�do�A�n'tC�not�A�'veC�have�Dont��A�DoC�do�A�ntC�not�Dontve��A�DoC�do�A�ntC�not�A�veC�have�Don’t��A�DoC�do�A�n’tC�not�Don’t’ve��A�DoC�do�A�n’tC�not�A�’veC�have�Dr.��A�Dr.�E.G.��A�E.G.�E.g.��A�E.g.�Feb.��A�Feb.C�February�Fla.��A�Fla.C�Florida�Ga.��A�Ga.C�Georgia�Gen.��A�Gen.�Goin��A�GoinC�going�Goin'��A�Goin'C�going�Goin’��A�Goin’C�going�Gonna��A�GonC�going�A�naC�to�Gotta��A�GotC�got�A�taC�to�Gov.��A�Gov.�Hadn't��A�HadC�have�A�n'tC�not�Hadn't've��A�HadC�have�A�n'tC�not�A�'veC�have�Hadnt��A�HadC�have�A�ntC�not�Hadntve��A�HadC�have�A�ntC�not�A�veC�have�Hadn’t��A�HadC�have�A�n’tC�not�Hadn’t’ve��A�HadC�have�A�n’tC�not�A�’veC�have�Hasn't��A�HasC�has�A�n'tC�not�Hasnt��A�HasC�has�A�ntC�not�Hasn’t��A�HasC�has�A�n’tC�not�Haven't��A�HaveC�have�A�n'tC�not�Havent��A�HaveC�have�A�ntC�not�Haven’t��A�HaveC�have�A�n’tC�not�Havin��A�HavinC�having�Havin'��A�Havin'C�having�Havin’��A�Havin’C�having�He'd��A�HeC�he�A�'dC�'d�He'd've��A�HeC�he�A�'dC�would�A�'veC�have�He'll��A�HeC�he�A�'llC�will�He'll've��A�HeC�he�A�'llC�will�A�'veC�have�He's��A�HeC�he�A�'sC�'s�Hed��A�HeC�he�A�dC�'d�Hedve��A�HeC�he�A�dC�would�A�veC�have�Hellve��A�HeC�he�A�llC�will�A�veC�have�Hes��A�HeC�he�A�s�He’d��A�HeC�he�A�’dC�'d�He’d’ve��A�HeC�he�A�’dC�would�A�’veC�have�He’ll��A�HeC�he�A�’llC�will�He’ll’ve��A�HeC�he�A�’llC�will�A�’veC�have�He’s��A�HeC�he�A�’sC�'s�How'd��A�HowC�how�A�'dC�'d�How'd've��A�HowC�how�A�'dC�would�A�'veC�have�How'd'y��A�HowC�how�A�'d�A�'yC�you�How'll��A�HowC�how�A�'llC�will�How'll've��A�HowC�how�A�'llC�will�A�'veC�have�How're��A�HowC�how�A�'reC�are�How's��A�HowC�how�A�'sC�'s�How've��A�HowC�how�A�'ve�Howd��A�HowC�how�A�dC�'d�Howdve��A�HowC�how�A�dC�would�A�veC�have�Howll��A�HowC�how�A�llC�will�Howllve��A�HowC�how�A�llC�will�A�veC�have�Howre��A�HowC�how�A�reC�are�Hows��A�HowC�how�A�s�Howve��A�How�A�veC�have�How’d��A�HowC�how�A�’dC�'d�How’d’ve��A�HowC�how�A�’dC�would�A�’veC�have�How’d’y��A�HowC�how�A�’d�A�’yC�you�How’ll��A�HowC�how�A�’llC�will�How’ll’ve��A�HowC�how�A�’llC�will�A�’veC�have�How’re��A�HowC�how�A�’reC�are�How’s��A�HowC�how�A�’sC�'s�How’ve��A�HowC�how�A�’ve�I'd��A�IC�i�A�'dC�'d�I'd've��A�IC�i�A�'dC�would�A�'veC�have�I'll��A�IC�i�A�'llC�will�I'll've��A�IC�i�A�'llC�will�A�'veC�have�I'm��A�IC�i�A�'mC�am�I'ma��A�IC�i�A�'mC�am�A�aC�gonna�I've��A�IC�i�A�'veC�have�I.E.��A�I.E.�I.e.��A�I.e.�Ia.��A�Ia.C�Iowa�Id��A�IC�i�A�dC�'d�Id.��A�Id.C�Idaho�Idve��A�IC�i�A�dC�would�A�veC�have�Ill.��A�Ill.C�Illinois�Illve��A�IC�i�A�llC�will�A�veC�have�Im��A�IC�i�A�m�Ima��A�IC�i�A�mC�am�A�aC�gonna�Inc.��A�Inc.�Ind.��A�Ind.C�Indiana�Isn't��A�IsC�is�A�n'tC�not�Isnt��A�IsC�is�A�ntC�not�Isn’t��A�IsC�is�A�n’tC�not�It'd��A�ItC�it�A�'dC�'d�It'd've��A�ItC�it�A�'dC�would�A�'veC�have�It'll��A�ItC�it�A�'llC�will�It'll've��A�ItC�it�A�'llC�will�A�'veC�have�It's��A�ItC�it�A�'sC�'s�Itd��A�ItC�it�A�dC�'d�Itdve��A�ItC�it�A�dC�would�A�veC�have�Itll��A�ItC�it�A�llC�will�Itllve��A�ItC�it�A�llC�will�A�veC�have�It’d��A�ItC�it�A�’dC�'d�It’d’ve��A�ItC�it�A�’dC�would�A�’veC�have�It’ll��A�ItC�it�A�’llC�will�It’ll’ve��A�ItC�it�A�’llC�will�A�’veC�have�It’s��A�ItC�it�A�’sC�'s�Ive��A�IC�i�A�veC�have�I’d��A�IC�i�A�’dC�'d�I’d’ve��A�IC�i�A�’dC�would�A�’veC�have�I’ll��A�IC�i�A�’llC�will�I’ll’ve��A�IC�i�A�’llC�will�A�’veC�have�I’m��A�IC�i�A�’mC�am�I’ma��A�IC�i�A�’mC�am�A�aC�gonna�I’ve��A�IC�i�A�’veC�have�Jan.��A�Jan.C�January�Jr.��A�Jr.�Jul.��A�Jul.C�July�Jun.��A�Jun.C�June�Kan.��A�Kan.C�Kansas�Kans.��A�Kans.C�Kansas�Ky.��A�Ky.C�Kentucky�La.��A�La.C�Louisiana�Let's��A�LetC�let�A�'sC�us�Let’s��A�LetC�let�A�’sC�us�Lovin��A�LovinC�loving�Lovin'��A�Lovin'C�loving�Lovin’��A�Lovin’C�loving�Ltd.��A�Ltd.�Ma'am��A�Ma'amC�madam�Mar.��A�Mar.C�March�Mass.��A�Mass.C�Massachusetts�Mayn't��A�MayC�may�A�n'tC�not�Mayn't've��A�MayC�may�A�n'tC�not�A�'veC�have�Maynt��A�MayC�may�A�ntC�not�Mayntve��A�MayC�may�A�ntC�not�A�veC�have�Mayn’t��A�MayC�may�A�n’tC�not�Mayn’t’ve��A�MayC�may�A�n’tC�not�A�’veC�have�Ma’am��A�Ma’amC�madam�Md.��A�Md.�Messrs.��A�Messrs.�Mich.��A�Mich.C�Michigan�Might've��A�MightC�might�A�'ve�Mightn't��A�MightC�might�A�n'tC�not�Mightn't've��A�MightC�might�A�n'tC�not�A�'veC�have�Mightnt��A�MightC�might�A�ntC�not�Mightntve��A�MightC�might�A�ntC�not�A�veC�have�Mightn’t��A�MightC�might�A�n’tC�not�Mightn’t’ve��A�MightC�might�A�n’tC�not�A�’veC�have�Mightve��A�MightC�might�A�ve�Might’ve��A�MightC�might�A�’ve�Minn.��A�Minn.C�Minnesota�Miss.��A�Miss.C�Mississippi�Mo.��A�Mo.�Mont.��A�Mont.�Mr.��A�Mr.�Mrs.��A�Mrs.�Ms.��A�Ms.�Mt.��A�Mt.C�Mount�Must've��A�MustC�must�A�'ve�Mustn't��A�MustC�must�A�n'tC�not�Mustn't've��A�MustC�must�A�n'tC�not�A�'veC�have�Mustnt��A�MustC�must�A�ntC�not�Mustntve��A�MustC�must�A�ntC�not�A�veC�have�Mustn’t��A�MustC�must�A�n’tC�not�Mustn’t’ve��A�MustC�must�A�n’tC�not�A�’veC�have�Mustve��A�MustC�must�A�ve�Must’ve��A�MustC�must�A�’ve�N.C.��A�N.C.C�North Carolina�N.D.��A�N.D.C�North Dakota�N.H.��A�N.H.C�New Hampshire�N.J.��A�N.J.C�New Jersey�N.M.��A�N.M.C�New Mexico�N.Y.��A�N.Y.C�New York�Neb.��A�Neb.C�Nebraska�Nebr.��A�Nebr.C�Nebraska�Needn't��A�NeedC�need�A�n'tC�not�Needn't've��A�NeedC�need�A�n'tC�not�A�'veC�have�Neednt��A�NeedC�need�A�ntC�not�Needntve��A�NeedC�need�A�ntC�not�A�veC�have�Needn’t��A�NeedC�need�A�n’tC�not�Needn’t’ve��A�NeedC�need�A�n’tC�not�A�’veC�have�Nev.��A�Nev.C�Nevada�Not've��A�NotC�not�A�'veC�have�Nothin��A�NothinC�nothing�Nothin'��A�Nothin'C�nothing�Nothin’��A�Nothin’C�nothing�Notve��A�NotC�not�A�veC�have�Not’ve��A�NotC�not�A�’veC�have�Nov.��A�Nov.C�November�Nuthin��A�NuthinC�nothing�Nuthin'��A�Nuthin'C�nothing�Nuthin’��A�Nuthin’C�nothing�O'clock��A�O'clockC�o'clock�O.O��A�O.O�O.o��A�O.o�O_O��A�O_O�O_o��A�O_o�Oct.��A�Oct.C�October�Okla.��A�Okla.C�Oklahoma�Ol��A�OlC�old�Ol'��A�Ol'C�old�Ol’��A�Ol’C�old�Ore.��A�Ore.C�Oregon�Oughtn't��A�OughtC�ought�A�n'tC�not�Oughtn't've��A�OughtC�ought�A�n'tC�not�A�'veC�have�Oughtnt��A�OughtC�ought�A�ntC�not�Oughtntve��A�OughtC�ought�A�ntC�not�A�veC�have�Oughtn’t��A�OughtC�ought�A�n’tC�not�Oughtn’t’ve��A�OughtC�ought�A�n’tC�not�A�’veC�have�O’clock��A�O’clockC�o'clock�Pa.��A�Pa.C�Pennsylvania�Ph.D.��A�Ph.D.�Prof.��A�Prof.�Rep.��A�Rep.�Rev.��A�Rev.�S.C.��A�S.C.C�South Carolina�Sen.��A�Sen.�Sep.��A�Sep.C�September�Sept.��A�Sept.C�September�Shan't��A�ShaC�shall�A�n'tC�not�Shan't've��A�ShaC�shall�A�n'tC�not�A�'veC�have�Shant��A�ShaC�shall�A�ntC�not�Shantve��A�ShaC�shall�A�ntC�not�A�veC�have�Shan’t��A�ShaC�shall�A�n’tC�not�Shan’t’ve��A�ShaC�shall�A�n’tC�not�A�’veC�have�She'd��A�SheC�she�A�'dC�'d�She'd've��A�SheC�she�A�'dC�would�A�'veC�have�She'll��A�SheC�she�A�'llC�will�She'll've��A�SheC�she�A�'llC�will�A�'veC�have�She's��A�SheC�she�A�'sC�'s�Shedve��A�SheC�she�A�dC�would�A�veC�have�Shellve��A�SheC�she�A�llC�will�A�veC�have�Shes��A�SheC�she�A�s�She’d��A�SheC�she�A�’dC�'d�She’d’ve��A�SheC�she�A�’dC�would�A�’veC�have�She’ll��A�SheC�she�A�’llC�will�She’ll’ve��A�SheC�she�A�’llC�will�A�’veC�have�She’s��A�SheC�she�A�’sC�'s�Should've��A�ShouldC�should�A�'ve�Shouldn't��A�ShouldC�should�A�n'tC�not�Shouldn't've��A�ShouldC�should�A�n'tC�not�A�'veC�have�Shouldnt��A�ShouldC�should�A�ntC�not�Shouldntve��A�ShouldC�should�A�ntC�not�A�veC�have�Shouldn’t��A�ShouldC�should�A�n’tC�not�Shouldn’t’ve��A�ShouldC�should�A�n’tC�not�A�’veC�have�Shouldve��A�ShouldC�should�A�ve�Should’ve��A�ShouldC�should�A�’ve�Somethin��A�SomethinC�something�Somethin'��A�Somethin'C�something�Somethin’��A�Somethin’C�something�St.��A�St.�Tenn.��A�Tenn.C�Tennessee�That'd��A�ThatC�that�A�'dC�'d�That'd've��A�ThatC�that�A�'dC�would�A�'veC�have�That'll��A�ThatC�that�A�'llC�will�That'll've��A�ThatC�that�A�'llC�will�A�'veC�have�That's��A�ThatC�that�A�'sC�'s�Thatd��A�ThatC�that�A�dC�'d�Thatdve��A�ThatC�that�A�dC�would�A�veC�have�Thatll��A�ThatC�that�A�llC�will�Thatllve��A�ThatC�that�A�llC�will�A�veC�have�Thats��A�ThatC�that�A�s�That’d��A�ThatC�that�A�’dC�'d�That’d’ve��A�ThatC�that�A�’dC�would�A�’veC�have�That’ll��A�ThatC�that�A�’llC�will�That’ll’ve��A�ThatC�that�A�’llC�will�A�’veC�have�That’s��A�ThatC�that�A�’sC�'s�There'd��A�ThereC�there�A�'dC�'d�There'd've��A�ThereC�there�A�'dC�would�A�'veC�have�There'll��A�ThereC�there�A�'llC�will�There'll've��A�ThereC�there�A�'llC�will�A�'veC�have�There're��A�ThereC�there�A�'reC�are�There's��A�ThereC�there�A�'sC�'s�There've��A�ThereC�there�A�'ve�Thered��A�ThereC�there�A�dC�'d�Theredve��A�ThereC�there�A�dC�would�A�veC�have�Therell��A�ThereC�there�A�llC�will�Therellve��A�ThereC�there�A�llC�will�A�veC�have�Therere��A�ThereC�there�A�reC�are�Theres��A�ThereC�there�A�s�Thereve��A�There�A�veC�have�There’d��A�ThereC�there�A�’dC�'d�There’d’ve��A�ThereC�there�A�’dC�would�A�’veC�have�There’ll��A�ThereC�there�A�’llC�will�There’ll’ve��A�ThereC�there�A�’llC�will�A�’veC�have�There’re��A�ThereC�there�A�’reC�are�There’s��A�ThereC�there�A�’sC�'s�There’ve��A�ThereC�there�A�’ve�These'd��A�TheseC�these�A�'dC�'d�These'd've��A�TheseC�these�A�'dC�would�A�'veC�have�These'll��A�TheseC�these�A�'llC�will�These'll've��A�TheseC�these�A�'llC�will�A�'veC�have�These're��A�TheseC�these�A�'reC�are�These've��A�TheseC�these�A�'ve�Thesed��A�TheseC�these�A�dC�'d�Thesedve��A�TheseC�these�A�dC�would�A�veC�have�Thesell��A�TheseC�these�A�llC�will�Thesellve��A�TheseC�these�A�llC�will�A�veC�have�Thesere��A�TheseC�these�A�reC�are�Theseve��A�These�A�veC�have�These’d��A�TheseC�these�A�’dC�'d�These’d’ve��A�TheseC�these�A�’dC�would�A�’veC�have�These’ll��A�TheseC�these�A�’llC�will�These’ll’ve��A�TheseC�these�A�’llC�will�A�’veC�have�These’re��A�TheseC�these�A�’reC�are�These’ve��A�TheseC�these�A�’ve�They'd��A�TheyC�they�A�'dC�'d�They'd've��A�TheyC�they�A�'dC�would�A�'veC�have�They'll��A�TheyC�they�A�'llC�will�They'll've��A�TheyC�they�A�'llC�will�A�'veC�have�They're��A�TheyC�they�A�'reC�are�They've��A�TheyC�they�A�'veC�have�Theyd��A�TheyC�they�A�dC�'d�Theydve��A�TheyC�they�A�dC�would�A�veC�have�Theyll��A�TheyC�they�A�llC�will�Theyllve��A�TheyC�they�A�llC�will�A�veC�have�Theyre��A�TheyC�they�A�reC�are�Theyve��A�TheyC�they�A�veC�have�They’d��A�TheyC�they�A�’dC�'d�They’d’ve��A�TheyC�they�A�’dC�would�A�’veC�have�They’ll��A�TheyC�they�A�’llC�will�They’ll’ve��A�TheyC�they�A�’llC�will�A�’veC�have�They’re��A�TheyC�they�A�’reC�are�They’ve��A�TheyC�they�A�’veC�have�This'd��A�ThisC�this�A�'dC�'d�This'd've��A�ThisC�this�A�'dC�would�A�'veC�have�This'll��A�ThisC�this�A�'llC�will�This'll've��A�ThisC�this�A�'llC�will�A�'veC�have�This's��A�ThisC�this�A�'sC�'s�Thisd��A�ThisC�this�A�dC�'d�Thisdve��A�ThisC�this�A�dC�would�A�veC�have�Thisll��A�ThisC�this�A�llC�will�Thisllve��A�ThisC�this�A�llC�will�A�veC�have�Thiss��A�ThisC�this�A�s�This’d��A�ThisC�this�A�’dC�'d�This’d’ve��A�ThisC�this�A�’dC�would�A�’veC�have�This’ll��A�ThisC�this�A�’llC�will�This’ll’ve��A�ThisC�this�A�’llC�will�A�’veC�have�This’s��A�ThisC�this�A�’sC�'s�Those'd��A�ThoseC�those�A�'dC�'d�Those'd've��A�ThoseC�those�A�'dC�would�A�'veC�have�Those'll��A�ThoseC�those�A�'llC�will�Those'll've��A�ThoseC�those�A�'llC�will�A�'veC�have�Those're��A�ThoseC�those�A�'reC�are�Those've��A�ThoseC�those�A�'ve�Thosed��A�ThoseC�those�A�dC�'d�Thosedve��A�ThoseC�those�A�dC�would�A�veC�have�Thosell��A�ThoseC�those�A�llC�will�Thosellve��A�ThoseC�those�A�llC�will�A�veC�have�Thosere��A�ThoseC�those�A�reC�are�Thoseve��A�Those�A�veC�have�Those’d��A�ThoseC�those�A�’dC�'d�Those’d’ve��A�ThoseC�those�A�’dC�would�A�’veC�have�Those’ll��A�ThoseC�those�A�’llC�will�Those’ll’ve��A�ThoseC�those�A�’llC�will�A�’veC�have�Those’re��A�ThoseC�those�A�’reC�are�Those’ve��A�ThoseC�those�A�’ve�V.V��A�V.V�V_V��A�V_V�Va.��A�Va.C�Virginia�Wash.��A�Wash.C�Washington�Wasn't��A�WasC�was�A�n'tC�not�Wasnt��A�WasC�was�A�ntC�not�Wasn’t��A�WasC�was�A�n’tC�not�We'd��A�WeC�we�A�'dC�'d�We'd've��A�WeC�we�A�'dC�would�A�'veC�have�We'll��A�WeC�we�A�'llC�will�We'll've��A�WeC�we�A�'llC�will�A�'veC�have�We're��A�WeC�we�A�'reC�are�We've��A�WeC�we�A�'veC�have�Wed��A�WeC�we�A�dC�'d�Wedve��A�WeC�we�A�dC�would�A�veC�have�Wellve��A�WeC�we�A�llC�will�A�veC�have�Weren't��A�WereC�were�A�n'tC�not�Werent��A�WereC�were�A�ntC�not�Weren’t��A�WereC�were�A�n’tC�not�Weve��A�WeC�we�A�veC�have�We’d��A�WeC�we�A�’dC�'d�We’d’ve��A�WeC�we�A�’dC�would�A�’veC�have�We’ll��A�WeC�we�A�’llC�will�We’ll’ve��A�WeC�we�A�’llC�will�A�’veC�have�We’re��A�WeC�we�A�’reC�are�We’ve��A�WeC�we�A�’veC�have�What'd��A�WhatC�what�A�'dC�'d�What'd've��A�WhatC�what�A�'dC�would�A�'veC�have�What'll��A�WhatC�what�A�'llC�will�What'll've��A�WhatC�what�A�'llC�will�A�'veC�have�What're��A�WhatC�what�A�'reC�are�What's��A�WhatC�what�A�'sC�'s�What've��A�WhatC�what�A�'ve�Whatd��A�WhatC�what�A�dC�'d�Whatdve��A�WhatC�what�A�dC�would�A�veC�have�Whatll��A�WhatC�what�A�llC�will�Whatllve��A�WhatC�what�A�llC�will�A�veC�have�Whatre��A�WhatC�what�A�reC�are�Whats��A�WhatC�what�A�s�Whatve��A�What�A�veC�have�What’d��A�WhatC�what�A�’dC�'d�What’d’ve��A�WhatC�what�A�’dC�would�A�’veC�have�What’ll��A�WhatC�what�A�’llC�will�What’ll’ve��A�WhatC�what�A�’llC�will�A�’veC�have�What’re��A�WhatC�what�A�’reC�are�What’s��A�WhatC�what�A�’sC�'s�What’ve��A�WhatC�what�A�’ve�When'd��A�WhenC�when�A�'dC�'d�When'd've��A�WhenC�when�A�'dC�would�A�'veC�have�When'll��A�WhenC�when�A�'llC�will�When'll've��A�WhenC�when�A�'llC�will�A�'veC�have�When're��A�WhenC�when�A�'reC�are�When's��A�WhenC�when�A�'sC�'s�When've��A�WhenC�when�A�'ve�Whend��A�WhenC�when�A�dC�'d�Whendve��A�WhenC�when�A�dC�would�A�veC�have�Whenll��A�WhenC�when�A�llC�will�Whenllve��A�WhenC�when�A�llC�will�A�veC�have�Whenre��A�WhenC�when�A�reC�are�Whens��A�WhenC�when�A�s�Whenve��A�When�A�veC�have�When’d��A�WhenC�when�A�’dC�'d�When’d’ve��A�WhenC�when�A�’dC�would�A�’veC�have�When’ll��A�WhenC�when�A�’llC�will�When’ll’ve��A�WhenC�when�A�’llC�will�A�’veC�have�When’re��A�WhenC�when�A�’reC�are�When’s��A�WhenC�when�A�’sC�'s�When’ve��A�WhenC�when�A�’ve�Where'd��A�WhereC�where�A�'dC�'d�Where'd've��A�WhereC�where�A�'dC�would�A�'veC�have�Where'll��A�WhereC�where�A�'llC�will�Where'll've��A�WhereC�where�A�'llC�will�A�'veC�have�Where're��A�WhereC�where�A�'reC�are�Where's��A�WhereC�where�A�'sC�'s�Where've��A�WhereC�where�A�'ve�Whered��A�WhereC�where�A�dC�'d�Wheredve��A�WhereC�where�A�dC�would�A�veC�have�Wherell��A�WhereC�where�A�llC�will�Wherellve��A�WhereC�where�A�llC�will�A�veC�have�Wherere��A�WhereC�where�A�reC�are�Wheres��A�WhereC�where�A�s�Whereve��A�Where�A�veC�have�Where’d��A�WhereC�where�A�’dC�'d�Where’d’ve��A�WhereC�where�A�’dC�would�A�’veC�have�Where’ll��A�WhereC�where�A�’llC�will�Where’ll’ve��A�WhereC�where�A�’llC�will�A�’veC�have�Where’re��A�WhereC�where�A�’reC�are�Where’s��A�WhereC�where�A�’sC�'s�Where’ve��A�WhereC�where�A�’ve�Who'd��A�WhoC�who�A�'dC�'d�Who'd've��A�WhoC�who�A�'dC�would�A�'veC�have�Who'll��A�WhoC�who�A�'llC�will�Who'll've��A�WhoC�who�A�'llC�will�A�'veC�have�Who're��A�WhoC�who�A�'reC�are�Who's��A�WhoC�who�A�'sC�'s�Who've��A�WhoC�who�A�'ve�Whod��A�WhoC�who�A�dC�'d�Whodve��A�WhoC�who�A�dC�would�A�veC�have�Wholl��A�WhoC�who�A�llC�will�Whollve��A�WhoC�who�A�llC�will�A�veC�have�Whos��A�WhoC�who�A�s�Whove��A�Who�A�veC�have�Who’d��A�WhoC�who�A�’dC�'d�Who’d’ve��A�WhoC�who�A�’dC�would�A�’veC�have�Who’ll��A�WhoC�who�A�’llC�will�Who’ll’ve��A�WhoC�who�A�’llC�will�A�’veC�have�Who’re��A�WhoC�who�A�’reC�are�Who’s��A�WhoC�who�A�’sC�'s�Who’ve��A�WhoC�who�A�’ve�Why'd��A�WhyC�why�A�'dC�'d�Why'd've��A�WhyC�why�A�'dC�would�A�'veC�have�Why'll��A�WhyC�why�A�'llC�will�Why'll've��A�WhyC�why�A�'llC�will�A�'veC�have�Why're��A�WhyC�why�A�'reC�are�Why's��A�WhyC�why�A�'sC�'s�Why've��A�WhyC�why�A�'ve�Whyd��A�WhyC�why�A�dC�'d�Whydve��A�WhyC�why�A�dC�would�A�veC�have�Whyll��A�WhyC�why�A�llC�will�Whyllve��A�WhyC�why�A�llC�will�A�veC�have�Whyre��A�WhyC�why�A�reC�are�Whys��A�WhyC�why�A�s�Whyve��A�Why�A�veC�have�Why’d��A�WhyC�why�A�’dC�'d�Why’d’ve��A�WhyC�why�A�’dC�would�A�’veC�have�Why’ll��A�WhyC�why�A�’llC�will�Why’ll’ve��A�WhyC�why�A�’llC�will�A�’veC�have�Why’re��A�WhyC�why�A�’reC�are�Why’s��A�WhyC�why�A�’sC�'s�Why’ve��A�WhyC�why�A�’ve�Wis.��A�Wis.C�Wisconsin�Won't��A�WoC�will�A�n'tC�not�Won't've��A�WoC�will�A�n'tC�not�A�'veC�have�Wont��A�WoC�will�A�ntC�not�Wontve��A�WoC�will�A�ntC�not�A�veC�have�Won’t��A�WoC�will�A�n’tC�not�Won’t’ve��A�WoC�will�A�n’tC�not�A�’veC�have�Would've��A�WouldC�would�A�'ve�Wouldn't��A�WouldC�would�A�n'tC�not�Wouldn't've��A�WouldC�would�A�n'tC�not�A�'veC�have�Wouldnt��A�WouldC�would�A�ntC�not�Wouldntve��A�WouldC�would�A�ntC�not�A�veC�have�Wouldn’t��A�WouldC�would�A�n’tC�not�Wouldn’t’ve��A�WouldC�would�A�n’tC�not�A�’veC�have�Wouldve��A�WouldC�would�A�ve�Would’ve��A�WouldC�would�A�’ve�XD��A�XD�XDD��A�XDD�You'd��A�YouC�you�A�'dC�'d�You'd've��A�YouC�you�A�'dC�would�A�'veC�have�You'll��A�YouC�you�A�'llC�will�You'll've��A�YouC�you�A�'llC�will�A�'veC�have�You're��A�YouC�you�A�'reC�are�You've��A�YouC�you�A�'veC�have�Youd��A�YouC�you�A�dC�'d�Youdve��A�YouC�you�A�dC�would�A�veC�have�Youll��A�YouC�you�A�llC�will�Youllve��A�YouC�you�A�llC�will�A�veC�have�Youre��A�YouC�you�A�reC�are�Youve��A�YouC�you�A�veC�have�You’d��A�YouC�you�A�’dC�'d�You’d’ve��A�YouC�you�A�’dC�would�A�’veC�have�You’ll��A�YouC�you�A�’llC�will�You’ll’ve��A�YouC�you�A�’llC�will�A�’veC�have�You’re��A�YouC�you�A�’reC�are�You’ve��A�YouC�you�A�’veC�have�[-:��A�[-:�[:��A�[:�[=��A�[=�\")��A�\")�\n��A�\n�\t��A�\t�]=��A�]=�^_^��A�^_^�^__^��A�^__^�^___^��A�^___^�a.��A�a.�a.m.��A�a.m.�ain't��A�ai�A�n'tC�not�aint��A�ai�A�ntC�not�ain’t��A�ai�A�n’tC�not�and/or��A�and/orC�and/or�aren't��A�areC�are�A�n'tC�not�arent��A�areC�are�A�ntC�not�aren’t��A�areC�are�A�n’tC�not�b.��A�b.�c'mon��A�c'mC�come�A�on�c.��A�c.�can't��A�caC�can�A�n'tC�not�can't've��A�caC�can�A�n'tC�not�A�'veC�have�cannot��A�can�A�not�cant��A�caC�can�A�ntC�not�cantve��A�caC�can�A�ntC�not�A�veC�have�can’t��A�caC�can�A�n’tC�not�can’t’ve��A�caC�can�A�n’tC�not�A�’veC�have�co.��A�co.�could've��A�couldC�could�A�'ve�couldn't��A�couldC�could�A�n'tC�not�couldn't've��A�couldC�could�A�n'tC�not�A�'veC�have�couldnt��A�couldC�could�A�ntC�not�couldntve��A�couldC�could�A�ntC�not�A�veC�have�couldn’t��A�couldC�could�A�n’tC�not�couldn’t’ve��A�couldC�could�A�n’tC�not�A�’veC�have�couldve��A�couldC�could�A�ve�could’ve��A�couldC�could�A�’ve�c’mon��A�c’mC�come�A�on�d.��A�d.�daren't��A�dareC�dare�A�n'tC�not�darent��A�dareC�dare�A�ntC�not�daren’t��A�dareC�dare�A�n’tC�not�didn't��A�didC�do�A�n'tC�not�didn't've��A�didC�do�A�n'tC�not�A�'veC�have�didnt��A�didC�do�A�ntC�not�didntve��A�didC�do�A�ntC�not�A�veC�have�didn’t��A�didC�do�A�n’tC�not�didn’t’ve��A�didC�do�A�n’tC�not�A�’veC�have�doesn't��A�doesC�does�A�n'tC�not�doesn't've��A�doesC�does�A�n'tC�not�A�'veC�have�doesnt��A�doesC�does�A�ntC�not�doesntve��A�doesC�does�A�ntC�not�A�veC�have�doesn’t��A�doesC�does�A�n’tC�not�doesn’t’ve��A�doesC�does�A�n’tC�not�A�’veC�have�doin��A�doinC�doing�doin'��A�doin'C�doing�doin’��A�doin’C�doing�don't��A�doC�do�A�n'tC�not�don't've��A�doC�do�A�n'tC�not�A�'veC�have�dont��A�doC�do�A�ntC�not�dontve��A�doC�do�A�ntC�not�A�veC�have�don’t��A�doC�do�A�n’tC�not�don’t’ve��A�doC�do�A�n’tC�not�A�’veC�have�e.��A�e.�e.g.��A�e.g.�em��A�emC�them�f.��A�f.�g.��A�g.�goin��A�goinC�going�goin'��A�goin'C�going�goin’��A�goin’C�going�gonna��A�gonC�going�A�naC�to�gotta��A�got�A�taC�to�h.��A�h.�hadn't��A�hadC�have�A�n'tC�not�hadn't've��A�hadC�have�A�n'tC�not�A�'veC�have�hadnt��A�hadC�have�A�ntC�not�hadntve��A�hadC�have�A�ntC�not�A�veC�have�hadn’t��A�hadC�have�A�n’tC�not�hadn’t’ve��A�hadC�have�A�n’tC�not�A�’veC�have�hasn't��A�hasC�has�A�n'tC�not�hasnt��A�hasC�has�A�ntC�not�hasn’t��A�hasC�has�A�n’tC�not�haven't��A�haveC�have�A�n'tC�not�havent��A�haveC�have�A�ntC�not�haven’t��A�haveC�have�A�n’tC�not�havin��A�havinC�having�havin'��A�havin'C�having�havin’��A�havin’C�having�he'd��A�heC�he�A�'dC�'d�he'd've��A�heC�he�A�'dC�would�A�'veC�have�he'll��A�heC�he�A�'llC�will�he'll've��A�heC�he�A�'llC�will�A�'veC�have�he's��A�heC�he�A�'sC�'s�hed��A�heC�he�A�dC�'d�hedve��A�heC�he�A�dC�would�A�veC�have�hellve��A�heC�he�A�llC�will�A�veC�have�hes��A�heC�he�A�s�he’d��A�heC�he�A�’dC�'d�he’d’ve��A�heC�he�A�’dC�would�A�’veC�have�he’ll��A�heC�he�A�’llC�will�he’ll’ve��A�heC�he�A�’llC�will�A�’veC�have�he’s��A�heC�he�A�’sC�'s�how'd��A�howC�how�A�'dC�'d�how'd've��A�howC�how�A�'dC�would�A�'veC�have�how'd'y��A�how�A�'d�A�'yC�you�how'll��A�howC�how�A�'llC�will�how'll've��A�howC�how�A�'llC�will�A�'veC�have�how're��A�howC�how�A�'reC�are�how's��A�howC�how�A�'sC�'s�how've��A�howC�how�A�'ve�howd��A�howC�how�A�dC�'d�howdve��A�howC�how�A�dC�would�A�veC�have�howll��A�howC�how�A�llC�will�howllve��A�howC�how�A�llC�will�A�veC�have�howre��A�howC�how�A�reC�are�hows��A�howC�how�A�s�howve��A�how�A�veC�have�how’d��A�howC�how�A�’dC�'d�how’d’ve��A�howC�how�A���dC�would�A�’veC�have�how’d’y��A�how�A�’d�A�’yC�you�how’ll��A�howC�how�A�’llC�will�how’ll’ve��A�howC�how�A�’llC�will�A�’veC�have�how’re��A�howC�how�A�’reC�are�how’s��A�howC�how�A�’sC�'s�how’ve��A�howC�how�A�’ve�i'd��A�iC�i�A�'dC�'d�i'd've��A�iC�i�A�'dC�would�A�'veC�have�i'll��A�iC�i�A�'llC�will�i'll've��A�iC�i�A�'llC�will�A�'veC�have�i'm��A�iC�i�A�'mC�am�i'ma��A�iC�i�A�'mC�am�A�aC�gonna�i've��A�iC�i�A�'veC�have�i.��A�i.�i.e.��A�i.e.�id��A�iC�i�A�dC�'d�idve��A�iC�i�A�dC�would�A�veC�have�illve��A�iC�i�A�llC�will�A�veC�have�im��A�iC�i�A�m�ima��A�iC�i�A�mC�am�A�aC�gonna�isn't��A�isC�is�A�n'tC�not�isnt��A�isC�is�A�ntC�not�isn’t��A�isC�is�A�n’tC�not�it'd��A�itC�it�A�'dC�'d�it'd've��A�itC�it�A�'dC�would�A�'veC�have�it'll��A�itC�it�A�'llC�will�it'll've��A�itC�it�A�'llC�will�A�'veC�have�it's��A�itC�it�A�'sC�'s�itd��A�itC�it�A�dC�'d�itdve��A�itC�it�A�dC�would�A�veC�have�itll��A�itC�it�A�llC�will�itllve��A�itC�it�A�llC�will�A�veC�have�it’d��A�itC�it�A�’dC�'d�it’d’ve��A�itC�it�A�’dC�would�A�’veC�have�it’ll��A�itC�it�A�’llC�will�it’ll’ve��A�itC�it�A�’llC�will�A�’veC�have�it’s��A�itC�it�A�’sC�'s�ive��A�iC�i�A�veC�have�i’d��A�iC�i�A�’dC�'d�i’d’ve��A�iC�i�A�’dC�would�A�’veC�have�i’ll��A�iC�i�A�’llC�will�i’ll’ve��A�iC�i�A�’llC�will�A�’veC�have�i’m��A�iC�i�A�’mC�am�i’ma��A�iC�i�A�’mC�am�A�aC�gonna�i’ve��A�iC�i�A�’veC�have�j.��A�j.�k.��A�k.�l.��A�l.�let's��A�let�A�'sC�us�let’s��A�let�A�’sC�us�ll��A�llC�will�lovin��A�lovinC�loving�lovin'��A�lovin'C�loving�lovin’��A�lovin’C�loving�m.��A�m.�ma'am��A�ma'amC�madam�mayn't��A�mayC�may�A�n'tC�not�mayn't've��A�mayC�may�A�n'tC�not�A�'veC�have�maynt��A�mayC�may�A�ntC�not�mayntve��A�mayC�may�A�ntC�not�A�veC�have�mayn’t��A�mayC�may�A�n’tC�not�mayn’t’ve��A�mayC�may�A�n’tC�not�A�’veC�have�ma’am��A�ma’amC�madam�might've��A�mightC�might�A�'ve�mightn't��A�mightC�might�A�n'tC�not�mightn't've��A�mightC�might�A�n'tC�not�A�'veC�have�mightnt��A�mightC�might�A�ntC�not�mightntve��A�mightC�might�A�ntC�not�A�veC�have�mightn’t��A�mightC�might�A�n’tC�not�mightn’t’ve��A�mightC�might�A�n’tC�not�A�’veC�have�mightve��A�mightC�might�A�ve�might’ve��A�mightC�might�A�’ve�must've��A�mustC�must�A�'ve�mustn't��A�mustC�must�A�n'tC�not�mustn't've��A�mustC�must�A�n'tC�not�A�'veC�have�mustnt��A�mustC�must�A�ntC�not�mustntve��A�mustC�must�A�ntC�not�A�veC�have�mustn’t��A�mustC�must�A�n’tC�not�mustn’t’ve��A�mustC�must�A�n’tC�not�A�’veC�have�mustve��A�mustC�must�A�ve�must’ve��A�mustC�must�A�’ve�n.��A�n.�needn't��A�needC�need�A�n'tC�not�needn't've��A�needC�need�A�n'tC�not�A�'veC�have�neednt��A�needC�need�A�ntC�not�needntve��A�needC�need�A�ntC�not�A�veC�have�needn’t��A�needC�need�A�n’tC�not�needn’t’ve��A�needC�need�A�n’tC�not�A�’veC�have�not've��A�not�A�'veC�have�nothin��A�nothinC�nothing�nothin'��A�nothin'C�nothing�nothin’��A�nothin’C�nothing�notve��A�not�A�veC�have�not’ve��A�not�A�’veC�have�nuff��A�nuffC�enough�nuthin��A�nuthinC�nothing�nuthin'��A�nuthin'C�nothing�nuthin’��A�nuthin’C�nothing�o'clock��A�o'clockC�o'clock�o.��A�o.�o.0��A�o.0�o.O��A�o.O�o.o��A�o.o�o_0��A�o_0�o_O��A�o_O�o_o��A�o_o�ol��A�olC�old�ol'��A�ol'C�old�ol’��A�ol’C�old�oughtn't��A�oughtC�ought�A�n'tC�not�oughtn't've��A�oughtC�ought�A�n'tC�not�A�'veC�have�oughtnt��A�oughtC�ought�A�ntC�not�oughtntve��A�oughtC�ought�A�ntC�not�A�veC�have�oughtn’t��A�oughtC�ought�A�n’tC�not�oughtn’t’ve��A�oughtC�ought�A�n’tC�not�A�’veC�have�o’clock��A�o’clockC�o'clock�p.��A�p.�p.m.��A�p.m.�q.��A�q.�r.��A�r.�s.��A�s.�shan't��A�shaC�shall�A�n'tC�not�shan't've��A�shaC�shall�A�n'tC�not�A�'veC�have�shant��A�shaC�shall�A�ntC�not�shantve��A�shaC�shall�A�ntC�not�A�veC�have�shan’t��A�shaC�shall�A�n’tC�not�shan’t’ve��A�shaC�shall�A�n’tC�not�A�’veC�have�she'd��A�sheC�she�A�'dC�'d�she'd've��A�sheC�she�A�'dC�would�A�'veC�have�she'll��A�sheC�she�A�'llC�will�she'll've��A�sheC�she�A�'llC�will�A�'veC�have�she's��A�sheC�she�A�'sC�'s�shedve��A�sheC�she�A�dC�would�A�veC�have�shellve��A�sheC�she�A�llC�will�A�veC�have�shes��A�sheC�she�A�s�she’d��A�sheC�she�A�’dC�'d�she’d’ve��A�sheC�she�A�’dC�would�A�’veC�have�she’ll��A�sheC�she�A�’llC�will�she’ll’ve��A�sheC�she�A�’llC�will�A�’veC�have�she’s��A�sheC�she�A�’sC�'s�should've��A�shouldC�should�A�'ve�shouldn't��A�shouldC�should�A�n'tC�not�shouldn't've��A�shouldC�should�A�n'tC�not�A�'veC�have�shouldnt��A�shouldC�should�A�ntC�not�shouldntve��A�shouldC�should�A�ntC�not�A�veC�have�shouldn’t��A�shouldC�should�A�n’tC�not�shouldn’t’ve��A�shouldC�should�A�n’tC�not�A�’veC�have�shouldve��A�shouldC�should�A�ve�should’ve��A�shouldC�should�A�’ve�somethin��A�somethinC�something�somethin'��A�somethin'C�something�somethin’��A�somethin’C�something�t.��A�t.�that'd��A�thatC�that�A�'dC�'d�that'd've��A�thatC�that�A�'dC�would�A�'veC�have�that'll��A�thatC�that�A�'llC�will�that'll've��A�thatC�that�A�'llC�will�A�'veC�have�that's��A�thatC�that�A�'sC�'s�thatd��A�thatC�that�A�dC�'d�thatdve��A�thatC�that�A�dC�would�A�veC�have�thatll��A�thatC�that�A�llC�will�thatllve��A�thatC�that�A�llC�will�A�veC�have�thats��A�thatC�that�A�s�that’d��A�thatC�that�A�’dC�'d�that’d’ve��A�thatC�that�A�’dC�would�A�’veC�have�that’ll��A�thatC�that�A�’llC�will�that’ll’ve��A�thatC�that�A�’llC�will�A�’veC�have�that’s��A�thatC�that�A�’sC�'s�there'd��A�thereC�there�A�'dC�'d�there'd've��A�thereC�there�A�'dC�would�A�'veC�have�there'll��A�thereC�there�A�'llC�will�there'll've��A�thereC�there�A�'llC�will�A�'veC�have�there're��A�thereC�there�A�'reC�are�there's��A�thereC�there�A�'sC�'s�there've��A�thereC�there�A�'ve�thered��A�thereC�there�A�dC�'d�theredve��A�thereC�there�A�dC�would�A�veC�have�therell��A�thereC�there�A�llC�will�therellve��A�thereC�there�A�llC�will�A�veC�have�therere��A�thereC�there�A�reC�are�theres��A�thereC�there�A�s�thereve��A�there�A�veC�have�there’d��A�thereC�there�A�’dC�'d�there’d’ve��A�thereC�there�A�’dC�would�A�’veC�have�there’ll��A�thereC�there�A�’llC�will�there’ll’ve��A�thereC�there�A�’llC�will�A�’veC�have�there’re��A�thereC�there�A�’reC�are�there’s��A�thereC�there�A�’sC�'s�there’ve��A�thereC�there�A�’ve�these'd��A�theseC�these�A�'dC�'d�these'd've��A�theseC�these�A�'dC�would�A�'veC�have�these'll��A�theseC�these�A�'llC�will�these'll've��A�theseC�these�A�'llC�will�A�'veC�have�these're��A�theseC�these�A�'reC�are�these've��A�theseC�these�A�'ve�thesed��A�theseC�these�A�dC�'d�thesedve��A�theseC�these�A�dC�would�A�veC�have�thesell��A�theseC�these�A�llC�will�thesellve��A�theseC�these�A�llC�will�A�veC�have�thesere��A�theseC�these�A�reC�are�theseve��A�these�A�veC�have�these’d��A�theseC�these�A�’dC�'d�these’d’ve��A�theseC�these�A�’dC�would�A�’veC�have�these’ll��A�theseC�these�A�’llC�will�these’ll’ve��A�theseC�these�A�’llC�will�A�’veC�have�these’re��A�theseC�these�A�’reC�are�these’ve��A�theseC�these�A�’ve�they'd��A�theyC�they�A�'dC�'d�they'd've��A�theyC�they�A�'dC�would�A�'veC�have�they'll��A�theyC�they�A�'llC�will�they'll've��A�theyC�they�A�'llC�will�A�'veC�have�they're��A�theyC�they�A�'reC�are�they've��A�theyC�they�A�'veC�have�theyd��A�theyC�they�A�dC�'d�theydve��A�theyC�they�A�dC�would�A�veC�have�theyll��A�theyC�they�A�llC�will�theyllve��A�theyC�they�A�llC�will�A�veC�have�theyre��A�theyC�they�A�reC�are�theyve��A�theyC�they�A�veC�have�they’d��A�theyC�they�A�’dC�'d�they’d’ve��A�theyC�they�A�’dC�would�A�’veC�have�they’ll��A�theyC�they�A�’llC�will�they’ll’ve��A�theyC�they�A�’llC�will�A�’veC�have�they’re��A�theyC�they�A�’reC�are�they’ve��A�theyC�they�A�’veC�have�this'd��A�thisC�this�A�'dC�'d�this'd've��A�thisC�this�A�'dC�would�A�'veC�have�this'll��A�thisC�this�A�'llC�will�this'll've��A�thisC�this�A�'llC�will�A�'veC�have�this's��A�thisC�this�A�'sC�'s�thisd��A�thisC�this�A�dC�'d�thisdve��A�thisC�this�A�dC�would�A�veC�have�thisll��A�thisC�this�A�llC�will�thisllve��A�thisC�this�A�llC�will�A�veC�have�thiss��A�thisC�this�A�s�this’d��A�thisC�this�A�’dC�'d�this’d’ve��A�thisC�this�A�’dC�would�A�’veC�have�this’ll��A�thisC�this�A�’llC�will�this’ll’ve��A�thisC�this�A�’llC�will�A�’veC�have�this’s��A�thisC�this�A�’sC�'s�those'd��A�thoseC�those�A�'dC�'d�those'd've��A�thoseC�those�A�'dC�would�A�'veC�have�those'll��A�thoseC�those�A�'llC�will�those'll've��A�thoseC�those�A�'llC�will�A�'veC�have�those're��A�thoseC�those�A�'reC�are�those've��A�thoseC�those�A�'ve�thosed��A�thoseC�those�A�dC�'d�thosedve��A�thoseC�those�A�dC�would�A�veC�have�thosell��A�thoseC�those�A�llC�will�thosellve��A�thoseC�those�A�llC�will�A�veC�have�thosere��A�thoseC�those�A�reC�are�thoseve��A�those�A�veC�have�those’d��A�thoseC�those�A�’dC�'d�those’d’ve��A�thoseC�those�A�’dC�would�A�’veC�have�those’ll��A�thoseC�those�A�’llC�will�those’ll’ve��A�thoseC�those�A�’llC�will�A�’veC�have�those’re��A�thoseC�those�A�’reC�are�those’ve��A�thoseC�those�A�’ve�u.��A�u.�v.��A�v.�v.s.��A�v.s.�v.v��A�v.v�v_v��A�v_v�vs.��A�vs.�w.��A�w.�w/o��A�w/oC�without�wasn't��A�wasC�was�A�n'tC�not�wasnt��A�wasC�was�A�ntC�not�wasn’t��A�wasC�was�A�n’tC�not�we'd��A�weC�we�A�'dC�'d�we'd've��A�weC�we�A�'dC�would�A�'veC�have�we'll��A�weC�we�A�'llC�will�we'll've��A�weC�we�A�'llC�will�A�'veC�have�we're��A�weC�we�A�'reC�are�we've��A�weC�we�A�'veC�have�wed��A�weC�we�A�dC�'d�wedve��A�weC�we�A�dC�would�A�veC�have�wellve��A�weC�we�A�llC�will�A�veC�have�weren't��A�wereC�were�A�n'tC�not�werent��A�wereC�were�A�ntC�not�weren’t��A�wereC�were�A�n’tC�not�weve��A�weC�we�A�veC�have�we’d��A�weC�we�A�’dC�'d�we’d’ve��A�weC�we�A�’dC�would�A�’veC�have�we’ll��A�weC�we�A�’llC�will�we’ll’ve��A�weC�we�A�’llC�will�A�’veC�have�we’re��A�weC�we�A�’reC�are�we’ve��A�weC�we�A�’veC�have�what'd��A�whatC�what�A�'dC�'d�what'd've��A�whatC�what�A�'dC�would�A�'veC�have�what'll��A�whatC�what�A�'llC�will�what'll've��A�whatC�what�A�'llC�will�A�'veC�have�what're��A�whatC�what�A�'reC�are�what's��A�whatC�what�A�'sC�'s�what've��A�whatC�what�A�'ve�whatd��A�whatC�what�A�dC�'d�whatdve��A�whatC�what�A�dC�would�A�veC�have�whatll��A�whatC�what�A�llC�will�whatllve��A�whatC�what�A�llC�will�A�veC�have�whatre��A�whatC�what�A�reC�are�whats��A�whatC�what�A�s�whatve��A�what�A�veC�have�what’d��A�whatC�what�A�’dC�'d�what’d’ve��A�whatC�what�A�’dC�would�A�’veC�have�what’ll��A�whatC�what�A�’llC�will�what’ll’ve��A�whatC�what�A�’llC�will�A�’veC�have�what’re��A�whatC�what�A�’reC�are�what’s��A�whatC�what�A�’sC�'s�what’ve��A�whatC�what�A�’ve�when'd��A�whenC�when�A�'dC�'d�when'd've��A�whenC�when�A�'dC�would�A�'veC�have�when'll��A�whenC�when�A�'llC�will�when'll've��A�whenC�when�A�'llC�will�A�'veC�have�when're��A�whenC�when�A�'reC�are�when's��A�whenC�when�A�'sC�'s�when've��A�whenC�when�A�'ve�whend��A�whenC�when�A�dC�'d�whendve��A�whenC�when�A�dC�would�A�veC�have�whenll��A�whenC�when�A�llC�will�whenllve��A�whenC�when�A�llC�will�A�veC�have�whenre��A�whenC�when�A�reC�are�whens��A�whenC�when�A�s�whenve��A�when�A�veC�have�when’d��A�whenC�when�A�’dC�'d�when’d’ve��A�whenC�when�A�’dC�would�A�’veC�have�when’ll��A�whenC�when�A�’llC�will�when’ll’ve��A�whenC�when�A�’llC�will�A�’veC�have�when’re��A�whenC�when�A�’reC�are�when’s��A�whenC�when�A�’sC�'s�when’ve��A�whenC�when�A�’ve�where'd��A�whereC�where�A�'dC�'d�where'd've��A�whereC�where�A�'dC�would�A�'veC�have�where'll��A�whereC�where�A�'llC�will�where'll've��A�whereC�where�A�'llC�will�A�'veC�have�where're��A�whereC�where�A�'reC�are�where's��A�whereC�where�A�'sC�'s�where've��A�whereC�where�A�'ve�whered��A�whereC�where�A�dC�'d�wheredve��A�whereC�where�A�dC�would�A�veC�have�wherell��A�whereC�where�A�llC�will�wherellve��A�whereC�where�A�llC�will�A�veC�have�wherere��A�whereC�where�A�reC�are�wheres��A�whereC�where�A�s�whereve��A�where�A�veC�have�where’d��A�whereC�where�A�’dC�'d�where’d’ve��A�whereC�where�A�’dC�would�A�’veC�have�where’ll��A�whereC�where�A�’llC�will�where’ll’ve��A�whereC�where�A�’llC�will�A�’veC�have�where’re��A�whereC�where�A�’reC�are�where’s��A�whereC�where�A�’sC�'s�where’ve��A�whereC�where�A�’ve�who'd��A�whoC�who�A�'dC�'d�who'd've��A�whoC�who�A�'dC�would�A�'veC�have�who'll��A�whoC�who�A�'llC�will�who'll've��A�whoC�who�A�'llC�will�A�'veC�have�who're��A�whoC�who�A�'reC�are�who's��A�whoC�who�A�'sC�'s�who've��A�whoC�who�A�'ve�whod��A�whoC�who�A�dC�'d�whodve��A�whoC�who�A�dC�would�A�veC�have�wholl��A�whoC�who�A�llC�will�whollve��A�whoC�who�A�llC�will�A�veC�have�whos��A�whoC�who�A�s�whove��A�who�A�veC�have�who’d��A�whoC�who�A�’dC�'d�who’d’ve��A�whoC�who�A�’dC�would�A�’veC�have�who’ll��A�whoC�who�A�’llC�will�who’ll’ve��A�whoC�who�A�’llC�will�A�’veC�have�who’re��A�whoC�who�A�’reC�are�who’s��A�whoC�who�A�’sC�'s�who’ve��A�whoC�who�A�’ve�why'd��A�whyC�why�A�'dC�'d�why'd've��A�whyC�why�A�'dC�would�A�'veC�have�why'll��A�whyC�why�A�'llC�will�why'll've��A�whyC�why�A�'llC�will�A�'veC�have�why're��A�whyC�why�A�'reC�are�why's��A�whyC�why�A�'sC�'s�why've��A�whyC�why�A�'ve�whyd��A�whyC�why�A�dC�'d�whydve��A�whyC�why�A�dC�would�A�veC�have�whyll��A�whyC�why�A�llC�will�whyllve��A�whyC�why�A�llC�will�A�veC�have�whyre��A�whyC�why�A�reC�are�whys��A�whyC�why�A�s�whyve��A�why�A�veC�have�why’d��A�whyC�why�A�’dC�'d�why’d’ve��A�whyC�why�A�’dC�would�A�’veC�have�why’ll��A�whyC�why�A�’llC�will�why’ll’ve��A�whyC�why�A�’llC�will�A�’veC�have�why’re��A�whyC�why�A�’reC�are�why’s��A�whyC�why�A�’sC�'s�why’ve��A�whyC�why�A�’ve�won't��A�woC�will�A�n'tC�not�won't've��A�woC�will�A�n'tC�not�A�'veC�have�wont��A�woC�will�A�ntC�not�wontve��A�woC�will�A�ntC�not�A�veC�have�won’t��A�woC�will�A�n’tC�not�won’t’ve��A�woC�will�A�n’tC�not�A�’veC�have�would've��A�wouldC�would�A�'ve�wouldn't��A�wouldC�would�A�n'tC�not�wouldn't've��A�wouldC�would�A�n'tC�not�A�'veC�have�wouldnt��A�wouldC�would�A�ntC�not�wouldntve��A�wouldC�would�A�ntC�not�A�veC�have�wouldn’t��A�wouldC�would�A�n’tC�not�wouldn’t’ve��A�wouldC�would�A�n’tC�not�A�’veC�have�wouldve��A�wouldC�would�A�ve�would’ve��A�wouldC�would�A�’ve�x.��A�x.�xD��A�xD�xDD��A�xDD�y'all��A�y'C�you�A�all�y.��A�y.�yall��A�yC�you�A�all�you'd��A�youC�you�A�'dC�'d�you'd've��A�youC�you�A�'dC�would�A�'veC�have�you'll��A�youC�you�A�'llC�will�you'll've��A�youC�you�A�'llC�will�A�'veC�have�you're��A�youC�you�A�'reC�are�you've��A�youC�you�A�'veC�have�youd��A�youC�you�A�dC�'d�youdve��A�youC�you�A�dC�would�A�veC�have�youll��A�youC�you�A�llC�will�youllve��A�youC�you�A�llC�will�A�veC�have�youre��A�youC�you�A�reC�are�youve��A�youC�you�A�veC�have�you’d��A�youC�you�A�’dC�'d�you’d’ve��A�youC�you�A�’dC�would�A�’veC�have�you’ll��A�youC�you�A�’llC�will�you’ll’ve��A�youC�you�A�’llC�will�A�’veC�have�you’re��A�youC�you�A�’reC�are�you’ve��A�youC�you�A�’veC�have�y’all��A�y’C�you�A�all�z.��A�z.� ��A� C� �¯\(ツ)/¯��A�¯\(ツ)/¯�°C.��A�°�A�C�A�.�°F.��A�°�A�F�A�.�°K.��A�°�A�K�A�.�°c.��A�°�A�c�A�.�°f.��A�°�A�f�A�.�°k.��A�°�A�k�A�.�ä.��A�ä.�ö.��A�ö.�ü.��A�ü.�ಠ_ಠ��A�ಠ_ಠ�ಠ︵ಠ��A�ಠ︵ಠ�—��A�—�‘S��A�‘SC�'s�‘s��A�‘sC�'s�’��A�’�’Cause��A�’CauseC�because�’Cos��A�’CosC�because�’Coz��A�’CozC�because�’Cuz��A�’CuzC�because�’S��A�’SC�'s�’bout��A�’boutC�about�’cause��A�’causeC�because�’cos��A�’cosC�because�’coz��A�’cozC�because�’cuz��A�’cuzC�because�’d��A�’d�’em��A�’emC�them�’ll��A�’llC�will�’nuff��A�’nuffC�enough�’re��A�’reC�are�’s��A�’sC�'s�’’��A�’’�faster_heuristics�
vocab/key2row ADDED
@@ -0,0 +1 @@
 
 
1
+
vocab/lookups.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:76be8b528d0075f7aae98d6fa57a6d3c83ae480a8469e668d7b0af968995ac71
3
+ size 1
vocab/strings.json ADDED
@@ -0,0 +1,6536 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ "\t",
3
+ "\n",
4
+ " ",
5
+ " ",
6
+ "\"",
7
+ "'",
8
+ "''",
9
+ "'-(",
10
+ "'-)",
11
+ "'Cause",
12
+ "'Cos",
13
+ "'Coz",
14
+ "'Cuz",
15
+ "'S",
16
+ "'X",
17
+ "'Xxx",
18
+ "'Xxxxx",
19
+ "'am",
20
+ "'bout",
21
+ "'cause",
22
+ "'cos",
23
+ "'coz",
24
+ "'cuz",
25
+ "'d",
26
+ "'em",
27
+ "'ll",
28
+ "'m",
29
+ "'nuff",
30
+ "'re",
31
+ "'s",
32
+ "'ve",
33
+ "'x",
34
+ "'xx",
35
+ "'xxx",
36
+ "'xxxx",
37
+ "'y",
38
+ "(",
39
+ "(((",
40
+ "(*>",
41
+ "(*_*)",
42
+ "(-8",
43
+ "(-:",
44
+ "(-;",
45
+ "(-_-)",
46
+ "(-d",
47
+ "(._.)",
48
+ "(:",
49
+ "(;",
50
+ "(=",
51
+ "(>_<)",
52
+ "(^_^)",
53
+ "(o:",
54
+ "(x:",
55
+ "(x_x)",
56
+ "(\u00ac_\u00ac)",
57
+ "(\u0ca0_\u0ca0)",
58
+ "(\u256f\u00b0\u25a1\u00b0\uff09\u256f\ufe35\u253b\u2501\u253b",
59
+ ")",
60
+ ")))",
61
+ ")-:",
62
+ ")/\u00af",
63
+ "):",
64
+ "*",
65
+ ",",
66
+ "-",
67
+ "-((",
68
+ "-))",
69
+ "-/",
70
+ "-0",
71
+ "-3",
72
+ "-8",
73
+ "-D",
74
+ "-O",
75
+ "-P",
76
+ "-X",
77
+ "-_-",
78
+ "-__-",
79
+ "-d",
80
+ "-o",
81
+ "-p",
82
+ "-x",
83
+ "-|",
84
+ ".",
85
+ "..",
86
+ ".C.",
87
+ ".D.",
88
+ ".E.",
89
+ ".G.",
90
+ ".H.",
91
+ ".J.",
92
+ ".M.",
93
+ ".Y.",
94
+ "._.",
95
+ ".e.",
96
+ ".g.",
97
+ ".m.",
98
+ ".s.",
99
+ "/",
100
+ "/01",
101
+ "/02",
102
+ "/03",
103
+ "/04",
104
+ "/05",
105
+ "/06",
106
+ "/07",
107
+ "/08",
108
+ "/09",
109
+ "/10",
110
+ "/11",
111
+ "/12",
112
+ "/13",
113
+ "/14",
114
+ "/15",
115
+ "/16",
116
+ "/17",
117
+ "/18",
118
+ "/19",
119
+ "/20",
120
+ "/21",
121
+ "/22",
122
+ "/23",
123
+ "/24",
124
+ "/25",
125
+ "/26",
126
+ "/27",
127
+ "/28",
128
+ "/29",
129
+ "/3",
130
+ "/30",
131
+ "/31",
132
+ "/d",
133
+ "/or",
134
+ "0",
135
+ "0.0",
136
+ "0.o",
137
+ "0/2",
138
+ "0/3",
139
+ "0/4",
140
+ "0/5",
141
+ "0/6",
142
+ "0/7",
143
+ "0/8",
144
+ "0/9",
145
+ "00:00",
146
+ "00:01",
147
+ "00:02",
148
+ "00:03",
149
+ "00:05",
150
+ "00:06",
151
+ "00:07",
152
+ "00:08",
153
+ "00:09",
154
+ "00:10",
155
+ "00:11",
156
+ "00:12",
157
+ "00:13",
158
+ "00:14",
159
+ "00:17",
160
+ "00:20",
161
+ "00:21",
162
+ "00:22",
163
+ "00:25",
164
+ "00:26",
165
+ "00:27",
166
+ "00:28",
167
+ "00:30",
168
+ "00:31",
169
+ "00:32",
170
+ "00:33",
171
+ "00:34",
172
+ "00:35",
173
+ "00:37",
174
+ "00:38",
175
+ "00:39",
176
+ "00:40",
177
+ "00:41",
178
+ "00:42",
179
+ "00:43",
180
+ "00:45",
181
+ "00:46",
182
+ "00:47",
183
+ "00:48",
184
+ "00:49",
185
+ "00:51",
186
+ "00:52",
187
+ "00:53",
188
+ "00:54",
189
+ "00:55",
190
+ "00:56",
191
+ "00:58",
192
+ "00:59",
193
+ "01/01",
194
+ "01/02",
195
+ "01/02/2026",
196
+ "01/04",
197
+ "01/04/2025",
198
+ "01/05",
199
+ "01/05/2025",
200
+ "01/05/2026",
201
+ "01/07",
202
+ "01/07/2025",
203
+ "01/08/2024",
204
+ "01/08/2025",
205
+ "01/08/2026",
206
+ "01/09/2024",
207
+ "01/10",
208
+ "01/10/2025",
209
+ "01/10/2026",
210
+ "01/11",
211
+ "01/11/2024",
212
+ "01/11/2025",
213
+ "01/12",
214
+ "01/12/2025",
215
+ "01/13/2024",
216
+ "01/13/2026",
217
+ "01/14/2025",
218
+ "01/14/2026",
219
+ "01/15",
220
+ "01/15/2026",
221
+ "01/16",
222
+ "01/16/2024",
223
+ "01/17/2024",
224
+ "01/17/2026",
225
+ "01/18/2024",
226
+ "01/18/2025",
227
+ "01/19/2024",
228
+ "01/19/2026",
229
+ "01/2",
230
+ "01/2/2025",
231
+ "01/2/2026",
232
+ "01/20",
233
+ "01/20/2024",
234
+ "01/20/2026",
235
+ "01/22",
236
+ "01/22/2025",
237
+ "01/23/2025",
238
+ "01/24",
239
+ "01/25",
240
+ "01/25/2024",
241
+ "01/25/2025",
242
+ "01/25/2026",
243
+ "01/26/2026",
244
+ "01/27",
245
+ "01/27/2024",
246
+ "01/28/2024",
247
+ "01/28/2025",
248
+ "01/28/2026",
249
+ "01/29",
250
+ "01/29/2026",
251
+ "01/3/2025",
252
+ "01/30",
253
+ "01/30/2025",
254
+ "01/31",
255
+ "01/31/2025",
256
+ "01/4",
257
+ "01/5",
258
+ "01/8",
259
+ "01/8/2024",
260
+ "01/9",
261
+ "01/9/2025",
262
+ "01:00",
263
+ "01:01",
264
+ "01:02",
265
+ "01:02a.m",
266
+ "01:03",
267
+ "01:03PM",
268
+ "01:03pm",
269
+ "01:04",
270
+ "01:06",
271
+ "01:08",
272
+ "01:08p.m",
273
+ "01:09AM",
274
+ "01:09am",
275
+ "01:10",
276
+ "01:11",
277
+ "01:12",
278
+ "01:13",
279
+ "01:16",
280
+ "01:16o'clock",
281
+ "01:17",
282
+ "01:18",
283
+ "01:19",
284
+ "01:20",
285
+ "01:21",
286
+ "01:21am",
287
+ "01:22",
288
+ "01:22am",
289
+ "01:24",
290
+ "01:26",
291
+ "01:27",
292
+ "01:27p.m",
293
+ "01:29P.M.",
294
+ "01:29p.m.",
295
+ "01:30",
296
+ "01:31",
297
+ "01:32",
298
+ "01:33",
299
+ "01:34",
300
+ "01:37",
301
+ "01:38",
302
+ "01:39",
303
+ "01:40",
304
+ "01:41",
305
+ "01:43",
306
+ "01:43P.M.",
307
+ "01:43p.m.",
308
+ "01:44",
309
+ "01:44PM",
310
+ "01:44o'clock",
311
+ "01:44pm",
312
+ "01:45",
313
+ "01:45p.m",
314
+ "01:46",
315
+ "01:47",
316
+ "01:48",
317
+ "01:48AM",
318
+ "01:48P.M.",
319
+ "01:48am",
320
+ "01:48p.m.",
321
+ "01:49",
322
+ "01:49pm",
323
+ "01:52",
324
+ "01:53",
325
+ "01:54",
326
+ "01:54a.m",
327
+ "01:55",
328
+ "01:56",
329
+ "01:58",
330
+ "01:59",
331
+ "02/01/2026",
332
+ "02/02/2026",
333
+ "02/03/2026",
334
+ "02/05/2024",
335
+ "02/07",
336
+ "02/07/2025",
337
+ "02/08",
338
+ "02/08/2024",
339
+ "02/08/2026",
340
+ "02/09/2026",
341
+ "02/10",
342
+ "02/11",
343
+ "02/11/2024",
344
+ "02/11/2025",
345
+ "02/12",
346
+ "02/12/2024",
347
+ "02/13/2025",
348
+ "02/14",
349
+ "02/14/2024",
350
+ "02/14/2026",
351
+ "02/15",
352
+ "02/15/2024",
353
+ "02/15/2025",
354
+ "02/16",
355
+ "02/17",
356
+ "02/17/2024",
357
+ "02/17/2026",
358
+ "02/18",
359
+ "02/19",
360
+ "02/19/2026",
361
+ "02/20",
362
+ "02/22",
363
+ "02/22/2024",
364
+ "02/22/2026",
365
+ "02/23",
366
+ "02/23/2024",
367
+ "02/25",
368
+ "02/25/2024",
369
+ "02/26",
370
+ "02/26/2024",
371
+ "02/26/2026",
372
+ "02/27",
373
+ "02/28",
374
+ "02/28/2024",
375
+ "02/28/2027",
376
+ "02/5",
377
+ "02/6/2026",
378
+ "02/7",
379
+ "02/8",
380
+ "02/8/2026",
381
+ "02/9",
382
+ "024",
383
+ "025",
384
+ "026",
385
+ "027",
386
+ "02:02",
387
+ "02:02PM",
388
+ "02:02pm",
389
+ "02:03",
390
+ "02:03p.m",
391
+ "02:07",
392
+ "02:07P.M.",
393
+ "02:07p.m.",
394
+ "02:08P.M.",
395
+ "02:08p.m.",
396
+ "02:09",
397
+ "02:10",
398
+ "02:12",
399
+ "02:12a.m",
400
+ "02:14",
401
+ "02:15PM",
402
+ "02:15pm",
403
+ "02:16PM",
404
+ "02:16pm",
405
+ "02:17am",
406
+ "02:17pm",
407
+ "02:18",
408
+ "02:18AM",
409
+ "02:18PM",
410
+ "02:18am",
411
+ "02:18pm",
412
+ "02:19",
413
+ "02:19PM",
414
+ "02:19pm",
415
+ "02:20p.m",
416
+ "02:21",
417
+ "02:22",
418
+ "02:22pm",
419
+ "02:23",
420
+ "02:24",
421
+ "02:25",
422
+ "02:26",
423
+ "02:27",
424
+ "02:27pm",
425
+ "02:28",
426
+ "02:29PM",
427
+ "02:29pm",
428
+ "02:30",
429
+ "02:31",
430
+ "02:32pm",
431
+ "02:33",
432
+ "02:34o'clock",
433
+ "02:35",
434
+ "02:38",
435
+ "02:42",
436
+ "02:44",
437
+ "02:44pm",
438
+ "02:45",
439
+ "02:46",
440
+ "02:47",
441
+ "02:48",
442
+ "02:49",
443
+ "02:50",
444
+ "02:51P.M.",
445
+ "02:51p.m.",
446
+ "02:53",
447
+ "02:56",
448
+ "02:59",
449
+ "03/01/2024",
450
+ "03/01/2026",
451
+ "03/03/2026",
452
+ "03/04/2024",
453
+ "03/04/2026",
454
+ "03/04/2027",
455
+ "03/05/2024",
456
+ "03/05/2026",
457
+ "03/05/2027",
458
+ "03/06",
459
+ "03/08",
460
+ "03/1",
461
+ "03/10",
462
+ "03/11",
463
+ "03/11/2024",
464
+ "03/11/2025",
465
+ "03/11/2026",
466
+ "03/12",
467
+ "03/12/2026",
468
+ "03/13/2026",
469
+ "03/14",
470
+ "03/14/2026",
471
+ "03/15",
472
+ "03/15/2026",
473
+ "03/16",
474
+ "03/16/2025",
475
+ "03/17",
476
+ "03/17/2024",
477
+ "03/17/2026",
478
+ "03/18",
479
+ "03/18/2024",
480
+ "03/18/2025",
481
+ "03/18/2026",
482
+ "03/18/2027",
483
+ "03/19",
484
+ "03/19/2025",
485
+ "03/2",
486
+ "03/20/2024",
487
+ "03/20/2025",
488
+ "03/20/2027",
489
+ "03/21/2026",
490
+ "03/22",
491
+ "03/22/2026",
492
+ "03/23/2026",
493
+ "03/24",
494
+ "03/24/2025",
495
+ "03/25/2025",
496
+ "03/26/2024",
497
+ "03/27",
498
+ "03/28",
499
+ "03/28/2024",
500
+ "03/29",
501
+ "03/29/2025",
502
+ "03/3",
503
+ "03/30/2024",
504
+ "03/31/2024",
505
+ "03/31/2025",
506
+ "03/31/2026",
507
+ "03/4/2026",
508
+ "03/5",
509
+ "03/5/2024",
510
+ "03/6/2024",
511
+ "03/7",
512
+ "03/7/2025",
513
+ "03/7/2026",
514
+ "03/8",
515
+ "03:00",
516
+ "03:01",
517
+ "03:02",
518
+ "03:03",
519
+ "03:04",
520
+ "03:05",
521
+ "03:05AM",
522
+ "03:05am",
523
+ "03:06",
524
+ "03:08pm",
525
+ "03:09PM",
526
+ "03:09pm",
527
+ "03:10",
528
+ "03:10P.M.",
529
+ "03:10o'clock",
530
+ "03:10p.m.",
531
+ "03:11",
532
+ "03:11a.m",
533
+ "03:12",
534
+ "03:12pm",
535
+ "03:13P.M.",
536
+ "03:13p.m.",
537
+ "03:14",
538
+ "03:15",
539
+ "03:15PM",
540
+ "03:15pm",
541
+ "03:16P.M.",
542
+ "03:16PM",
543
+ "03:16p.m.",
544
+ "03:16pm",
545
+ "03:17",
546
+ "03:17PM",
547
+ "03:17pm",
548
+ "03:18P.M.",
549
+ "03:18p.m.",
550
+ "03:20",
551
+ "03:20p.m",
552
+ "03:21",
553
+ "03:22p.m",
554
+ "03:23",
555
+ "03:25",
556
+ "03:26PM",
557
+ "03:26pm",
558
+ "03:27",
559
+ "03:27PM",
560
+ "03:27o'clock",
561
+ "03:27pm",
562
+ "03:29",
563
+ "03:30",
564
+ "03:31",
565
+ "03:31AM",
566
+ "03:31am",
567
+ "03:33",
568
+ "03:34PM",
569
+ "03:34pm",
570
+ "03:37",
571
+ "03:38",
572
+ "03:40",
573
+ "03:41",
574
+ "03:42",
575
+ "03:43P.M.",
576
+ "03:43p.m.",
577
+ "03:44o'clock",
578
+ "03:45",
579
+ "03:48",
580
+ "03:50",
581
+ "03:50pm",
582
+ "03:51",
583
+ "03:54",
584
+ "03:56P.M.",
585
+ "03:56p.m.",
586
+ "03:57",
587
+ "03:58",
588
+ "03:59a.m",
589
+ "04/01",
590
+ "04/01/2024",
591
+ "04/01/2025",
592
+ "04/01/2026",
593
+ "04/03/2026",
594
+ "04/04/2024",
595
+ "04/07/2026",
596
+ "04/08",
597
+ "04/09/2024",
598
+ "04/09/2025",
599
+ "04/1",
600
+ "04/10",
601
+ "04/10/2024",
602
+ "04/10/2025",
603
+ "04/11/2024",
604
+ "04/11/2026",
605
+ "04/12/2025",
606
+ "04/13/2025",
607
+ "04/13/2026",
608
+ "04/15",
609
+ "04/15/2025",
610
+ "04/16/2025",
611
+ "04/17",
612
+ "04/17/2025",
613
+ "04/18/2025",
614
+ "04/19/2024",
615
+ "04/20/2024",
616
+ "04/20/2025",
617
+ "04/20/2026",
618
+ "04/22",
619
+ "04/22/2024",
620
+ "04/22/2025",
621
+ "04/22/2027",
622
+ "04/23",
623
+ "04/23/2026",
624
+ "04/24",
625
+ "04/24/2024",
626
+ "04/24/2025",
627
+ "04/26/2025",
628
+ "04/27",
629
+ "04/27/2025",
630
+ "04/28",
631
+ "04/28/2025",
632
+ "04/28/2026",
633
+ "04/29",
634
+ "04/29/2024",
635
+ "04/29/2025",
636
+ "04/30/2024",
637
+ "04/30/2025",
638
+ "04/4",
639
+ "04/5/2025",
640
+ "04/6/2026",
641
+ "04/7",
642
+ "04:00",
643
+ "04:01",
644
+ "04:02PM",
645
+ "04:02pm",
646
+ "04:03",
647
+ "04:03A.M.",
648
+ "04:03PM",
649
+ "04:03a.m.",
650
+ "04:03pm",
651
+ "04:04",
652
+ "04:05",
653
+ "04:06",
654
+ "04:07",
655
+ "04:08pm",
656
+ "04:09",
657
+ "04:10",
658
+ "04:10p.m",
659
+ "04:11",
660
+ "04:11pm",
661
+ "04:12",
662
+ "04:12o'clock",
663
+ "04:13P.M.",
664
+ "04:13p.m.",
665
+ "04:14o'clock",
666
+ "04:15",
667
+ "04:16",
668
+ "04:16o'clock",
669
+ "04:17p.m",
670
+ "04:18",
671
+ "04:19",
672
+ "04:20PM",
673
+ "04:20p.m",
674
+ "04:20pm",
675
+ "04:22",
676
+ "04:26",
677
+ "04:27",
678
+ "04:27pm",
679
+ "04:28p.m",
680
+ "04:29",
681
+ "04:30",
682
+ "04:32",
683
+ "04:32P.M.",
684
+ "04:32p.m.",
685
+ "04:33P.M.",
686
+ "04:33p.m.",
687
+ "04:34",
688
+ "04:35",
689
+ "04:36P.M.",
690
+ "04:36p.m.",
691
+ "04:39",
692
+ "04:40",
693
+ "04:40pm",
694
+ "04:41",
695
+ "04:42pm",
696
+ "04:43pm",
697
+ "04:44",
698
+ "04:45",
699
+ "04:46a.m",
700
+ "04:46p.m",
701
+ "04:47",
702
+ "04:48",
703
+ "04:49",
704
+ "04:50",
705
+ "04:52",
706
+ "04:53A.M.",
707
+ "04:53a.m.",
708
+ "04:54",
709
+ "04:54PM",
710
+ "04:54pm",
711
+ "04:55",
712
+ "04:55PM",
713
+ "04:55pm",
714
+ "04:56",
715
+ "04:57",
716
+ "04:59",
717
+ "05/01/2024",
718
+ "05/01/2027",
719
+ "05/02",
720
+ "05/05",
721
+ "05/05/2025",
722
+ "05/06/2024",
723
+ "05/06/2025",
724
+ "05/07/2026",
725
+ "05/08/2024",
726
+ "05/08/2026",
727
+ "05/09/2026",
728
+ "05/1",
729
+ "05/1/2025",
730
+ "05/10/2024",
731
+ "05/10/2026",
732
+ "05/11",
733
+ "05/11/2025",
734
+ "05/12/2025",
735
+ "05/13",
736
+ "05/14",
737
+ "05/14/2024",
738
+ "05/14/2025",
739
+ "05/15/2024",
740
+ "05/15/2026",
741
+ "05/17",
742
+ "05/17/2024",
743
+ "05/18/2026",
744
+ "05/19",
745
+ "05/2",
746
+ "05/20",
747
+ "05/20/2024",
748
+ "05/21/2025",
749
+ "05/21/2026",
750
+ "05/21/2027",
751
+ "05/22",
752
+ "05/22/2027",
753
+ "05/23/2024",
754
+ "05/24",
755
+ "05/24/2025",
756
+ "05/24/2026",
757
+ "05/25",
758
+ "05/25/2025",
759
+ "05/26/2025",
760
+ "05/27/2025",
761
+ "05/27/2026",
762
+ "05/28",
763
+ "05/28/2026",
764
+ "05/28/2027",
765
+ "05/29",
766
+ "05/29/2024",
767
+ "05/29/2026",
768
+ "05/3/2025",
769
+ "05/30",
770
+ "05/30/2025",
771
+ "05/31",
772
+ "05/31/2024",
773
+ "05/31/2026",
774
+ "05/4/2026",
775
+ "05/5/2024",
776
+ "05/7",
777
+ "05/7/2025",
778
+ "05/8/2024",
779
+ "05:00",
780
+ "05:02",
781
+ "05:03",
782
+ "05:03p.m",
783
+ "05:04",
784
+ "05:05",
785
+ "05:07am",
786
+ "05:08",
787
+ "05:09",
788
+ "05:09o'clock",
789
+ "05:10o'clock",
790
+ "05:11pm",
791
+ "05:12",
792
+ "05:13PM",
793
+ "05:13pm",
794
+ "05:14pm",
795
+ "05:15",
796
+ "05:16p.m",
797
+ "05:18",
798
+ "05:19",
799
+ "05:19pm",
800
+ "05:20",
801
+ "05:20p.m",
802
+ "05:21",
803
+ "05:21am",
804
+ "05:23",
805
+ "05:26",
806
+ "05:27",
807
+ "05:27pm",
808
+ "05:28",
809
+ "05:28pm",
810
+ "05:29P.M.",
811
+ "05:29p.m.",
812
+ "05:30PM",
813
+ "05:30pm",
814
+ "05:31",
815
+ "05:32",
816
+ "05:32o'clock",
817
+ "05:32pm",
818
+ "05:34",
819
+ "05:35",
820
+ "05:37AM",
821
+ "05:37am",
822
+ "05:38",
823
+ "05:39",
824
+ "05:39A.M.",
825
+ "05:39PM",
826
+ "05:39a.m.",
827
+ "05:39pm",
828
+ "05:40",
829
+ "05:41o'clock",
830
+ "05:42",
831
+ "05:43",
832
+ "05:44",
833
+ "05:45",
834
+ "05:45pm",
835
+ "05:48",
836
+ "05:49",
837
+ "05:50",
838
+ "05:50p.m",
839
+ "05:51",
840
+ "05:52",
841
+ "05:54o'clock",
842
+ "05:54pm",
843
+ "05:55",
844
+ "05:56p.m",
845
+ "05:57",
846
+ "05:59",
847
+ "06/04/2026",
848
+ "06/06/2025",
849
+ "06/08/2024",
850
+ "06/1/2026",
851
+ "06/10",
852
+ "06/10/2024",
853
+ "06/11",
854
+ "06/11/2024",
855
+ "06/13/2025",
856
+ "06/15",
857
+ "06/15/2024",
858
+ "06/16",
859
+ "06/17",
860
+ "06/17/2024",
861
+ "06/18",
862
+ "06/18/2024",
863
+ "06/18/2025",
864
+ "06/18/2026",
865
+ "06/19/2025",
866
+ "06/20",
867
+ "06/20/2025",
868
+ "06/21",
869
+ "06/22",
870
+ "06/22/2024",
871
+ "06/23",
872
+ "06/23/2026",
873
+ "06/23/2027",
874
+ "06/24",
875
+ "06/24/2025",
876
+ "06/26",
877
+ "06/26/2025",
878
+ "06/26/2026",
879
+ "06/27",
880
+ "06/27/2024",
881
+ "06/27/2025",
882
+ "06/28",
883
+ "06/28/2025",
884
+ "06/28/2027",
885
+ "06/29",
886
+ "06/29/2026",
887
+ "06/3",
888
+ "06/30",
889
+ "06/31/2026",
890
+ "06/4",
891
+ "06/5",
892
+ "06/6",
893
+ "06/7",
894
+ "06/7/2026",
895
+ "06/8",
896
+ "06:00P.M.",
897
+ "06:00p.m.",
898
+ "06:01",
899
+ "06:02",
900
+ "06:03",
901
+ "06:04",
902
+ "06:06",
903
+ "06:09",
904
+ "06:10",
905
+ "06:11",
906
+ "06:12",
907
+ "06:13",
908
+ "06:13PM",
909
+ "06:13pm",
910
+ "06:14",
911
+ "06:15P.M.",
912
+ "06:15p.m.",
913
+ "06:16",
914
+ "06:16pm",
915
+ "06:17PM",
916
+ "06:17pm",
917
+ "06:18",
918
+ "06:19P.M.",
919
+ "06:19p.m.",
920
+ "06:21",
921
+ "06:21p.m",
922
+ "06:23",
923
+ "06:24",
924
+ "06:24am",
925
+ "06:25",
926
+ "06:25a.m",
927
+ "06:25p.m",
928
+ "06:26",
929
+ "06:26PM",
930
+ "06:26pm",
931
+ "06:27",
932
+ "06:27pm",
933
+ "06:28",
934
+ "06:29P.M.",
935
+ "06:29p.m.",
936
+ "06:29pm",
937
+ "06:30pm",
938
+ "06:31o'clock",
939
+ "06:34",
940
+ "06:34P.M.",
941
+ "06:34p.m.",
942
+ "06:35",
943
+ "06:37",
944
+ "06:37P.M.",
945
+ "06:37p.m.",
946
+ "06:38",
947
+ "06:39P.M.",
948
+ "06:39p.m.",
949
+ "06:40",
950
+ "06:41",
951
+ "06:42",
952
+ "06:43",
953
+ "06:44",
954
+ "06:45",
955
+ "06:46",
956
+ "06:46PM",
957
+ "06:46pm",
958
+ "06:48",
959
+ "06:48pm",
960
+ "06:50",
961
+ "06:51",
962
+ "06:52am",
963
+ "06:53",
964
+ "06:53PM",
965
+ "06:53pm",
966
+ "06:55",
967
+ "06:56",
968
+ "06:56p.m",
969
+ "06:56pm",
970
+ "06:57",
971
+ "07/01/2024",
972
+ "07/02",
973
+ "07/02/2025",
974
+ "07/03",
975
+ "07/03/2024",
976
+ "07/04",
977
+ "07/04/2026",
978
+ "07/05",
979
+ "07/05/2024",
980
+ "07/06/2025",
981
+ "07/07/2025",
982
+ "07/08/2025",
983
+ "07/08/2026",
984
+ "07/09/2026",
985
+ "07/1/2025",
986
+ "07/10",
987
+ "07/10/2024",
988
+ "07/11",
989
+ "07/13",
990
+ "07/13/2026",
991
+ "07/14",
992
+ "07/14/2024",
993
+ "07/14/2025",
994
+ "07/15",
995
+ "07/16",
996
+ "07/16/2026",
997
+ "07/17",
998
+ "07/17/2024",
999
+ "07/17/2026",
1000
+ "07/17/2027",
1001
+ "07/18",
1002
+ "07/18/2025",
1003
+ "07/19",
1004
+ "07/20/2024",
1005
+ "07/20/2027",
1006
+ "07/21",
1007
+ "07/22",
1008
+ "07/22/2025",
1009
+ "07/22/2026",
1010
+ "07/23",
1011
+ "07/23/2026",
1012
+ "07/24",
1013
+ "07/25",
1014
+ "07/26",
1015
+ "07/26/2024",
1016
+ "07/26/2026",
1017
+ "07/27",
1018
+ "07/27/2024",
1019
+ "07/27/2025",
1020
+ "07/28",
1021
+ "07/29",
1022
+ "07/29/2025",
1023
+ "07/29/2026",
1024
+ "07/30",
1025
+ "07/31",
1026
+ "07/31/2024",
1027
+ "07/4/2027",
1028
+ "07/5",
1029
+ "07/5/2024",
1030
+ "07/6/2024",
1031
+ "07/6/2025",
1032
+ "07/8/2025",
1033
+ "07:00",
1034
+ "07:00PM",
1035
+ "07:00pm",
1036
+ "07:02",
1037
+ "07:02P.M.",
1038
+ "07:02p.m.",
1039
+ "07:04",
1040
+ "07:05",
1041
+ "07:05P.M.",
1042
+ "07:05p.m.",
1043
+ "07:06",
1044
+ "07:07",
1045
+ "07:07pm",
1046
+ "07:09",
1047
+ "07:10",
1048
+ "07:11",
1049
+ "07:11P.M.",
1050
+ "07:11p.m.",
1051
+ "07:14",
1052
+ "07:15pm",
1053
+ "07:16",
1054
+ "07:18",
1055
+ "07:18P.M.",
1056
+ "07:18p.m.",
1057
+ "07:19",
1058
+ "07:22",
1059
+ "07:22AM",
1060
+ "07:22am",
1061
+ "07:23p.m",
1062
+ "07:24",
1063
+ "07:25p.m",
1064
+ "07:26",
1065
+ "07:26pm",
1066
+ "07:28",
1067
+ "07:28p.m",
1068
+ "07:29",
1069
+ "07:30",
1070
+ "07:31",
1071
+ "07:31pm",
1072
+ "07:32",
1073
+ "07:33",
1074
+ "07:33p.m",
1075
+ "07:35",
1076
+ "07:36",
1077
+ "07:38",
1078
+ "07:40",
1079
+ "07:40pm",
1080
+ "07:41",
1081
+ "07:41AM",
1082
+ "07:41am",
1083
+ "07:42",
1084
+ "07:42pm",
1085
+ "07:43P.M.",
1086
+ "07:43p.m.",
1087
+ "07:45",
1088
+ "07:46",
1089
+ "07:46P.M.",
1090
+ "07:46o'clock",
1091
+ "07:46p.m.",
1092
+ "07:47pm",
1093
+ "07:48",
1094
+ "07:50pm",
1095
+ "07:51",
1096
+ "07:51p.m",
1097
+ "07:51pm",
1098
+ "07:53",
1099
+ "07:54p.m",
1100
+ "07:55",
1101
+ "07:55PM",
1102
+ "07:55p.m",
1103
+ "07:55pm",
1104
+ "07:56",
1105
+ "07:56p.m",
1106
+ "07:58",
1107
+ "07:59o'clock",
1108
+ "08/03/2026",
1109
+ "08/04/2024",
1110
+ "08/04/2026",
1111
+ "08/07",
1112
+ "08/08/2025",
1113
+ "08/09/2025",
1114
+ "08/10",
1115
+ "08/10/2024",
1116
+ "08/10/2026",
1117
+ "08/11",
1118
+ "08/11/2024",
1119
+ "08/11/2026",
1120
+ "08/12",
1121
+ "08/12/2024",
1122
+ "08/12/2026",
1123
+ "08/12/2027",
1124
+ "08/13",
1125
+ "08/13/2025",
1126
+ "08/13/2026",
1127
+ "08/14",
1128
+ "08/14/2024",
1129
+ "08/14/2025",
1130
+ "08/15/2024",
1131
+ "08/15/2026",
1132
+ "08/16",
1133
+ "08/16/2024",
1134
+ "08/17",
1135
+ "08/17/2025",
1136
+ "08/17/2027",
1137
+ "08/18",
1138
+ "08/18/2025",
1139
+ "08/19",
1140
+ "08/19/2025",
1141
+ "08/20/2025",
1142
+ "08/20/2027",
1143
+ "08/21",
1144
+ "08/21/2026",
1145
+ "08/22",
1146
+ "08/22/2025",
1147
+ "08/23/2024",
1148
+ "08/23/2025",
1149
+ "08/23/2026",
1150
+ "08/24",
1151
+ "08/24/2024",
1152
+ "08/25",
1153
+ "08/25/2024",
1154
+ "08/25/2025",
1155
+ "08/26",
1156
+ "08/26/2025",
1157
+ "08/26/2026",
1158
+ "08/27",
1159
+ "08/27/2025",
1160
+ "08/28",
1161
+ "08/28/2024",
1162
+ "08/28/2025",
1163
+ "08/28/2026",
1164
+ "08/29",
1165
+ "08/29/2025",
1166
+ "08/29/2026",
1167
+ "08/30",
1168
+ "08/30/2025",
1169
+ "08/30/2026",
1170
+ "08/31/2025",
1171
+ "08/31/2027",
1172
+ "08/5",
1173
+ "08/6/2025",
1174
+ "08/8",
1175
+ "08:00",
1176
+ "08:00p.m",
1177
+ "08:01",
1178
+ "08:03",
1179
+ "08:03A.M.",
1180
+ "08:03a.m.",
1181
+ "08:03p.m",
1182
+ "08:04",
1183
+ "08:05",
1184
+ "08:05PM",
1185
+ "08:05pm",
1186
+ "08:07",
1187
+ "08:07P.M.",
1188
+ "08:07p.m.",
1189
+ "08:08pm",
1190
+ "08:09",
1191
+ "08:09pm",
1192
+ "08:10",
1193
+ "08:12",
1194
+ "08:14",
1195
+ "08:15PM",
1196
+ "08:15pm",
1197
+ "08:17AM",
1198
+ "08:17am",
1199
+ "08:17pm",
1200
+ "08:19",
1201
+ "08:19P.M.",
1202
+ "08:19p.m.",
1203
+ "08:20",
1204
+ "08:21PM",
1205
+ "08:21pm",
1206
+ "08:22",
1207
+ "08:23",
1208
+ "08:25",
1209
+ "08:25A.M.",
1210
+ "08:25a.m.",
1211
+ "08:25p.m",
1212
+ "08:26",
1213
+ "08:28",
1214
+ "08:28P.M.",
1215
+ "08:28p.m.",
1216
+ "08:29P.M.",
1217
+ "08:29p.m.",
1218
+ "08:30",
1219
+ "08:31AM",
1220
+ "08:31am",
1221
+ "08:32pm",
1222
+ "08:33",
1223
+ "08:34",
1224
+ "08:34AM",
1225
+ "08:34am",
1226
+ "08:36",
1227
+ "08:36PM",
1228
+ "08:36pm",
1229
+ "08:38P.M.",
1230
+ "08:38p.m.",
1231
+ "08:40",
1232
+ "08:40pm",
1233
+ "08:41",
1234
+ "08:41P.M.",
1235
+ "08:41a.m",
1236
+ "08:41p.m.",
1237
+ "08:42",
1238
+ "08:43",
1239
+ "08:45",
1240
+ "08:46",
1241
+ "08:47",
1242
+ "08:48",
1243
+ "08:49p.m",
1244
+ "08:51",
1245
+ "08:51P.M.",
1246
+ "08:51p.m.",
1247
+ "08:54AM",
1248
+ "08:54am",
1249
+ "08:55",
1250
+ "08:56",
1251
+ "08:57",
1252
+ "08:58",
1253
+ "08:59",
1254
+ "08:59AM",
1255
+ "08:59PM",
1256
+ "08:59am",
1257
+ "08:59p.m",
1258
+ "08:59pm",
1259
+ "09/02",
1260
+ "09/02/2024",
1261
+ "09/04/2024",
1262
+ "09/04/2026",
1263
+ "09/05/2024",
1264
+ "09/05/2026",
1265
+ "09/07",
1266
+ "09/07/2026",
1267
+ "09/07/2027",
1268
+ "09/08/2026",
1269
+ "09/09/2025",
1270
+ "09/10",
1271
+ "09/10/2024",
1272
+ "09/10/2026",
1273
+ "09/11",
1274
+ "09/11/2025",
1275
+ "09/12/2024",
1276
+ "09/12/2026",
1277
+ "09/13/2024",
1278
+ "09/14",
1279
+ "09/14/2024",
1280
+ "09/15/2027",
1281
+ "09/16/2024",
1282
+ "09/16/2025",
1283
+ "09/16/2026",
1284
+ "09/18",
1285
+ "09/18/2024",
1286
+ "09/18/2025",
1287
+ "09/18/2026",
1288
+ "09/2",
1289
+ "09/2/2025",
1290
+ "09/20/2025",
1291
+ "09/21",
1292
+ "09/22/2025",
1293
+ "09/23",
1294
+ "09/23/2025",
1295
+ "09/24",
1296
+ "09/24/2026",
1297
+ "09/25",
1298
+ "09/25/2024",
1299
+ "09/26/2026",
1300
+ "09/27",
1301
+ "09/27/2024",
1302
+ "09/27/2025",
1303
+ "09/28",
1304
+ "09/28/2025",
1305
+ "09/28/2026",
1306
+ "09/29",
1307
+ "09/29/2024",
1308
+ "09/29/2025",
1309
+ "09/31/2025",
1310
+ "09/31/2026",
1311
+ "09/4",
1312
+ "09/5",
1313
+ "09/5/2027",
1314
+ "09/6/2025",
1315
+ "09/6/2026",
1316
+ "09/8",
1317
+ "09:00",
1318
+ "09:00PM",
1319
+ "09:00pm",
1320
+ "09:01",
1321
+ "09:01pm",
1322
+ "09:02",
1323
+ "09:02A.M.",
1324
+ "09:02a.m.",
1325
+ "09:04at",
1326
+ "09:05",
1327
+ "09:06a.m",
1328
+ "09:07",
1329
+ "09:07pm",
1330
+ "09:08",
1331
+ "09:08PM",
1332
+ "09:08pm",
1333
+ "09:09P.M.",
1334
+ "09:09o'clock",
1335
+ "09:09p.m.",
1336
+ "09:10",
1337
+ "09:11pm",
1338
+ "09:14",
1339
+ "09:15",
1340
+ "09:17",
1341
+ "09:17AM",
1342
+ "09:17am",
1343
+ "09:18PM",
1344
+ "09:18pm",
1345
+ "09:19",
1346
+ "09:19pm",
1347
+ "09:21",
1348
+ "09:21PM",
1349
+ "09:21pm",
1350
+ "09:22",
1351
+ "09:23",
1352
+ "09:24",
1353
+ "09:25",
1354
+ "09:25at",
1355
+ "09:26",
1356
+ "09:26AM",
1357
+ "09:26am",
1358
+ "09:27",
1359
+ "09:27P.M.",
1360
+ "09:27p.m.",
1361
+ "09:28",
1362
+ "09:33",
1363
+ "09:34pm",
1364
+ "09:35",
1365
+ "09:35A.M.",
1366
+ "09:35a.m.",
1367
+ "09:37",
1368
+ "09:37p.m",
1369
+ "09:39p.m",
1370
+ "09:40",
1371
+ "09:41",
1372
+ "09:41pm",
1373
+ "09:43",
1374
+ "09:43PM",
1375
+ "09:43pm",
1376
+ "09:45",
1377
+ "09:46",
1378
+ "09:46P.M.",
1379
+ "09:46p.m.",
1380
+ "09:49",
1381
+ "09:50",
1382
+ "09:52",
1383
+ "09:52pm",
1384
+ "09:54",
1385
+ "09:55",
1386
+ "09:56",
1387
+ "09:58",
1388
+ "09:59P.M.",
1389
+ "09:59p.m.",
1390
+ "09:59pm",
1391
+ "0AM",
1392
+ "0PM",
1393
+ "0_0",
1394
+ "0_o",
1395
+ "0am",
1396
+ "0at",
1397
+ "0pm",
1398
+ "0th",
1399
+ "1",
1400
+ "1/01",
1401
+ "1/01/2026",
1402
+ "1/05/2026",
1403
+ "1/06",
1404
+ "1/07/2025",
1405
+ "1/1",
1406
+ "1/10",
1407
+ "1/10/2025",
1408
+ "1/11",
1409
+ "1/11/2025",
1410
+ "1/12",
1411
+ "1/14",
1412
+ "1/14/2025",
1413
+ "1/15/2026",
1414
+ "1/16",
1415
+ "1/17",
1416
+ "1/17/2025",
1417
+ "1/18",
1418
+ "1/19",
1419
+ "1/19/2026",
1420
+ "1/2",
1421
+ "1/20",
1422
+ "1/20/2026",
1423
+ "1/21",
1424
+ "1/21/2025",
1425
+ "1/21/2026",
1426
+ "1/24",
1427
+ "1/25",
1428
+ "1/25/2024",
1429
+ "1/25/2026",
1430
+ "1/26",
1431
+ "1/26/2025",
1432
+ "1/28",
1433
+ "1/3",
1434
+ "1/30",
1435
+ "1/31",
1436
+ "1/4",
1437
+ "1/5",
1438
+ "1/6",
1439
+ "1/7",
1440
+ "1/7/2026",
1441
+ "1/8",
1442
+ "1/8/2024",
1443
+ "1/9",
1444
+ "10",
1445
+ "10/02",
1446
+ "10/02/2026",
1447
+ "10/03",
1448
+ "10/03/2025",
1449
+ "10/04",
1450
+ "10/04/2025",
1451
+ "10/05",
1452
+ "10/06",
1453
+ "10/06/2024",
1454
+ "10/06/2026",
1455
+ "10/06/2027",
1456
+ "10/08",
1457
+ "10/1/2024",
1458
+ "10/10/2025",
1459
+ "10/10/2026",
1460
+ "10/11",
1461
+ "10/11/2025",
1462
+ "10/12",
1463
+ "10/12/2025",
1464
+ "10/12/2026",
1465
+ "10/13/2024",
1466
+ "10/13/2026",
1467
+ "10/13/2027",
1468
+ "10/14/2024",
1469
+ "10/14/2026",
1470
+ "10/14/2027",
1471
+ "10/15",
1472
+ "10/15/2024",
1473
+ "10/15/2025",
1474
+ "10/15/2026",
1475
+ "10/16",
1476
+ "10/16/2024",
1477
+ "10/16/2025",
1478
+ "10/16/2026",
1479
+ "10/16/2027",
1480
+ "10/17",
1481
+ "10/17/2024",
1482
+ "10/17/2025",
1483
+ "10/18",
1484
+ "10/18/2024",
1485
+ "10/18/2025",
1486
+ "10/18/2026",
1487
+ "10/19",
1488
+ "10/19/2025",
1489
+ "10/2",
1490
+ "10/2/2025",
1491
+ "10/20",
1492
+ "10/20/2026",
1493
+ "10/21",
1494
+ "10/21/2024",
1495
+ "10/22",
1496
+ "10/22/2026",
1497
+ "10/23/2024",
1498
+ "10/23/2026",
1499
+ "10/23/2027",
1500
+ "10/24",
1501
+ "10/24/2024",
1502
+ "10/24/2025",
1503
+ "10/24/2026",
1504
+ "10/25",
1505
+ "10/25/2024",
1506
+ "10/25/2025",
1507
+ "10/25/2026",
1508
+ "10/25/2027",
1509
+ "10/26/2025",
1510
+ "10/26/2026",
1511
+ "10/27",
1512
+ "10/27/2025",
1513
+ "10/28/2024",
1514
+ "10/28/2025",
1515
+ "10/28/2026",
1516
+ "10/28/2027",
1517
+ "10/29/2025",
1518
+ "10/29/2026",
1519
+ "10/3",
1520
+ "10/30",
1521
+ "10/30/2024",
1522
+ "10/30/2025",
1523
+ "10/30/2026",
1524
+ "10/30/2027",
1525
+ "10/31",
1526
+ "10/31/2024",
1527
+ "10/31/2027",
1528
+ "10/4",
1529
+ "10/4/2024",
1530
+ "10/4/2026",
1531
+ "10/4/2027",
1532
+ "10/5",
1533
+ "10/5/2024",
1534
+ "10/5/2025",
1535
+ "10/5/2026",
1536
+ "10/6/2024",
1537
+ "10/6/2026",
1538
+ "10/7",
1539
+ "10/7/2025",
1540
+ "10/8",
1541
+ "10/8/2025",
1542
+ "10/8/2026",
1543
+ "10/9",
1544
+ "10/9/2024",
1545
+ "10/9/2025",
1546
+ "10:00",
1547
+ "10:00P.M.",
1548
+ "10:00p.m",
1549
+ "10:00p.m.",
1550
+ "10:00pm",
1551
+ "10:01",
1552
+ "10:01PM",
1553
+ "10:01pm",
1554
+ "10:02",
1555
+ "10:02P.M.",
1556
+ "10:02PM",
1557
+ "10:02p.m.",
1558
+ "10:02pm",
1559
+ "10:03",
1560
+ "10:04a.m",
1561
+ "10:04pm",
1562
+ "10:05",
1563
+ "10:05at",
1564
+ "10:06at",
1565
+ "10:07",
1566
+ "10:07at",
1567
+ "10:08",
1568
+ "10:08p.m",
1569
+ "10:09",
1570
+ "10:09at",
1571
+ "10:10",
1572
+ "10:10A.M.",
1573
+ "10:10a.m.",
1574
+ "10:11",
1575
+ "10:11PM",
1576
+ "10:11am",
1577
+ "10:11pm",
1578
+ "10:12",
1579
+ "10:12o'clock",
1580
+ "10:13",
1581
+ "10:13P.M.",
1582
+ "10:13p.m.",
1583
+ "10:14",
1584
+ "10:14P.M.",
1585
+ "10:14o'clock",
1586
+ "10:14p.m.",
1587
+ "10:15",
1588
+ "10:16",
1589
+ "10:17",
1590
+ "10:17P.M.",
1591
+ "10:17p.m.",
1592
+ "10:18",
1593
+ "10:18at",
1594
+ "10:18pm",
1595
+ "10:19",
1596
+ "10:20PM",
1597
+ "10:20at",
1598
+ "10:20o'clock",
1599
+ "10:20pm",
1600
+ "10:21",
1601
+ "10:21o'clock",
1602
+ "10:21p.m",
1603
+ "10:22",
1604
+ "10:22a.m",
1605
+ "10:23",
1606
+ "10:23o'clock",
1607
+ "10:23pm",
1608
+ "10:25",
1609
+ "10:25at",
1610
+ "10:26",
1611
+ "10:26p.m",
1612
+ "10:26pm",
1613
+ "10:27",
1614
+ "10:28",
1615
+ "10:29",
1616
+ "10:29PM",
1617
+ "10:29pm",
1618
+ "10:30",
1619
+ "10:30o'clock",
1620
+ "10:32",
1621
+ "10:32a.m",
1622
+ "10:32at",
1623
+ "10:33",
1624
+ "10:33at",
1625
+ "10:33o'clock",
1626
+ "10:34",
1627
+ "10:34P.M.",
1628
+ "10:34p.m.",
1629
+ "10:35",
1630
+ "10:35o'clock",
1631
+ "10:36pm",
1632
+ "10:37",
1633
+ "10:37pm",
1634
+ "10:38",
1635
+ "10:38P.M.",
1636
+ "10:38PM",
1637
+ "10:38o'clock",
1638
+ "10:38p.m.",
1639
+ "10:38pm",
1640
+ "10:39",
1641
+ "10:39am",
1642
+ "10:40",
1643
+ "10:40A.M.",
1644
+ "10:40a.m.",
1645
+ "10:40p.m",
1646
+ "10:41",
1647
+ "10:41at",
1648
+ "10:41o'clock",
1649
+ "10:42AM",
1650
+ "10:42am",
1651
+ "10:42at",
1652
+ "10:43",
1653
+ "10:43PM",
1654
+ "10:43am",
1655
+ "10:43pm",
1656
+ "10:44",
1657
+ "10:45",
1658
+ "10:45P.M.",
1659
+ "10:45p.m.",
1660
+ "10:46",
1661
+ "10:46at",
1662
+ "10:46o'clock",
1663
+ "10:46pm",
1664
+ "10:47",
1665
+ "10:47pm",
1666
+ "10:48",
1667
+ "10:48pm",
1668
+ "10:49",
1669
+ "10:49at",
1670
+ "10:49pm",
1671
+ "10:50",
1672
+ "10:51",
1673
+ "10:52",
1674
+ "10:52a.m",
1675
+ "10:52pm",
1676
+ "10:55",
1677
+ "10:55o'clock",
1678
+ "10:56",
1679
+ "10:59o'clock",
1680
+ "10:59p.m",
1681
+ "10a.m",
1682
+ "10a.m.",
1683
+ "10p.m",
1684
+ "10p.m.",
1685
+ "10th",
1686
+ "11",
1687
+ "11/01",
1688
+ "11/01/2024",
1689
+ "11/02/2026",
1690
+ "11/03",
1691
+ "11/03/2025",
1692
+ "11/04/2024",
1693
+ "11/04/2025",
1694
+ "11/05",
1695
+ "11/05/2024",
1696
+ "11/05/2025",
1697
+ "11/06/2025",
1698
+ "11/06/2027",
1699
+ "11/07/2024",
1700
+ "11/08/2025",
1701
+ "11/08/2026",
1702
+ "11/09",
1703
+ "11/09/2026",
1704
+ "11/1",
1705
+ "11/1/2025",
1706
+ "11/10",
1707
+ "11/10/2024",
1708
+ "11/10/2026",
1709
+ "11/10/2027",
1710
+ "11/11/2024",
1711
+ "11/12",
1712
+ "11/12/2024",
1713
+ "11/12/2025",
1714
+ "11/13",
1715
+ "11/13/2027",
1716
+ "11/14/2024",
1717
+ "11/14/2025",
1718
+ "11/14/2026",
1719
+ "11/15",
1720
+ "11/15/2025",
1721
+ "11/15/2026",
1722
+ "11/16/2025",
1723
+ "11/16/2026",
1724
+ "11/17",
1725
+ "11/17/2026",
1726
+ "11/18",
1727
+ "11/18/2024",
1728
+ "11/18/2025",
1729
+ "11/18/2026",
1730
+ "11/18/2027",
1731
+ "11/19/2024",
1732
+ "11/2",
1733
+ "11/2/2024",
1734
+ "11/2/2025",
1735
+ "11/20",
1736
+ "11/20/2024",
1737
+ "11/21",
1738
+ "11/21/2025",
1739
+ "11/22",
1740
+ "11/22/2026",
1741
+ "11/23/2025",
1742
+ "11/23/2026",
1743
+ "11/24",
1744
+ "11/24/2024",
1745
+ "11/24/2025",
1746
+ "11/24/2026",
1747
+ "11/24/2027",
1748
+ "11/25",
1749
+ "11/25/2025",
1750
+ "11/25/2026",
1751
+ "11/26",
1752
+ "11/26/2024",
1753
+ "11/26/2025",
1754
+ "11/26/2026",
1755
+ "11/26/2027",
1756
+ "11/27",
1757
+ "11/27/2025",
1758
+ "11/28",
1759
+ "11/28/2024",
1760
+ "11/28/2025",
1761
+ "11/28/2026",
1762
+ "11/29/2024",
1763
+ "11/29/2027",
1764
+ "11/3/2024",
1765
+ "11/3/2026",
1766
+ "11/30",
1767
+ "11/30/2024",
1768
+ "11/30/2026",
1769
+ "11/31/2025",
1770
+ "11/4",
1771
+ "11/4/2024",
1772
+ "11/4/2025",
1773
+ "11/4/2026",
1774
+ "11/5/2026",
1775
+ "11/6/2025",
1776
+ "11/6/2026",
1777
+ "11/7",
1778
+ "11/7/2025",
1779
+ "11/8/2026",
1780
+ "11/9",
1781
+ "11/9/2025",
1782
+ "11:00",
1783
+ "11:00pm",
1784
+ "11:01P.M.",
1785
+ "11:01o'clock",
1786
+ "11:01p.m.",
1787
+ "11:02",
1788
+ "11:02P.M.",
1789
+ "11:02p.m",
1790
+ "11:02p.m.",
1791
+ "11:03",
1792
+ "11:04",
1793
+ "11:04o'clock",
1794
+ "11:04pm",
1795
+ "11:05PM",
1796
+ "11:05pm",
1797
+ "11:07at",
1798
+ "11:07pm",
1799
+ "11:08",
1800
+ "11:08p.m",
1801
+ "11:09",
1802
+ "11:09PM",
1803
+ "11:09pm",
1804
+ "11:10",
1805
+ "11:11AM",
1806
+ "11:11P.M.",
1807
+ "11:11am",
1808
+ "11:11p.m.",
1809
+ "11:11pm",
1810
+ "11:12",
1811
+ "11:12A.M.",
1812
+ "11:12a.m.",
1813
+ "11:12p.m",
1814
+ "11:13",
1815
+ "11:14",
1816
+ "11:14at",
1817
+ "11:15",
1818
+ "11:16",
1819
+ "11:17",
1820
+ "11:17P.M.",
1821
+ "11:17a.m",
1822
+ "11:17p.m.",
1823
+ "11:19at",
1824
+ "11:19pm",
1825
+ "11:20",
1826
+ "11:20P.M.",
1827
+ "11:20am",
1828
+ "11:20at",
1829
+ "11:20p.m.",
1830
+ "11:21",
1831
+ "11:21PM",
1832
+ "11:21pm",
1833
+ "11:22",
1834
+ "11:22p.m",
1835
+ "11:23",
1836
+ "11:24",
1837
+ "11:25",
1838
+ "11:26",
1839
+ "11:26o'clock",
1840
+ "11:27A.M.",
1841
+ "11:27a.m.",
1842
+ "11:28",
1843
+ "11:28o'clock",
1844
+ "11:29",
1845
+ "11:30",
1846
+ "11:30at",
1847
+ "11:31",
1848
+ "11:32",
1849
+ "11:32P.M.",
1850
+ "11:32p.m.",
1851
+ "11:33",
1852
+ "11:33P.M.",
1853
+ "11:33PM",
1854
+ "11:33p.m.",
1855
+ "11:33pm",
1856
+ "11:34",
1857
+ "11:34at",
1858
+ "11:35",
1859
+ "11:35am",
1860
+ "11:35pm",
1861
+ "11:36",
1862
+ "11:38",
1863
+ "11:38P.M.",
1864
+ "11:38PM",
1865
+ "11:38p.m.",
1866
+ "11:38pm",
1867
+ "11:39o'clock",
1868
+ "11:39pm",
1869
+ "11:40",
1870
+ "11:40at",
1871
+ "11:41PM",
1872
+ "11:41pm",
1873
+ "11:42PM",
1874
+ "11:42a.m",
1875
+ "11:42pm",
1876
+ "11:43P.M.",
1877
+ "11:43p.m.",
1878
+ "11:44",
1879
+ "11:44PM",
1880
+ "11:44pm",
1881
+ "11:45",
1882
+ "11:45AM",
1883
+ "11:45P.M.",
1884
+ "11:45am",
1885
+ "11:45p.m.",
1886
+ "11:45pm",
1887
+ "11:46",
1888
+ "11:46a.m",
1889
+ "11:46p.m",
1890
+ "11:46pm",
1891
+ "11:47AM",
1892
+ "11:47am",
1893
+ "11:49AM",
1894
+ "11:49am",
1895
+ "11:49pm",
1896
+ "11:51",
1897
+ "11:52",
1898
+ "11:52P.M.",
1899
+ "11:52at",
1900
+ "11:52p.m.",
1901
+ "11:53",
1902
+ "11:54",
1903
+ "11:55",
1904
+ "11:56",
1905
+ "11:56P.M.",
1906
+ "11:56p.m.",
1907
+ "11:57",
1908
+ "11:57P.M.",
1909
+ "11:57am",
1910
+ "11:57p.m.",
1911
+ "11:58",
1912
+ "11:59",
1913
+ "11:59at",
1914
+ "11a.m",
1915
+ "11a.m.",
1916
+ "11p.m",
1917
+ "11p.m.",
1918
+ "11th",
1919
+ "12",
1920
+ "12/01/2026",
1921
+ "12/01/2027",
1922
+ "12/02",
1923
+ "12/02/2024",
1924
+ "12/03",
1925
+ "12/03/2026",
1926
+ "12/04",
1927
+ "12/04/2025",
1928
+ "12/05/2024",
1929
+ "12/05/2026",
1930
+ "12/06",
1931
+ "12/06/2025",
1932
+ "12/06/2026",
1933
+ "12/06/2027",
1934
+ "12/07",
1935
+ "12/08",
1936
+ "12/09",
1937
+ "12/09/2026",
1938
+ "12/1/2024",
1939
+ "12/10",
1940
+ "12/10/2025",
1941
+ "12/10/2026",
1942
+ "12/11/2024",
1943
+ "12/11/2025",
1944
+ "12/11/2026",
1945
+ "12/12",
1946
+ "12/12/2025",
1947
+ "12/12/2026",
1948
+ "12/13",
1949
+ "12/13/2024",
1950
+ "12/13/2025",
1951
+ "12/14",
1952
+ "12/14/2024",
1953
+ "12/14/2025",
1954
+ "12/14/2026",
1955
+ "12/15",
1956
+ "12/15/2024",
1957
+ "12/15/2026",
1958
+ "12/16",
1959
+ "12/16/2024",
1960
+ "12/16/2025",
1961
+ "12/16/2026",
1962
+ "12/17",
1963
+ "12/17/2026",
1964
+ "12/18",
1965
+ "12/18/2025",
1966
+ "12/18/2027",
1967
+ "12/19/2026",
1968
+ "12/2",
1969
+ "12/2/2026",
1970
+ "12/2/2027",
1971
+ "12/20",
1972
+ "12/20/2024",
1973
+ "12/20/2025",
1974
+ "12/21",
1975
+ "12/21/2024",
1976
+ "12/21/2025",
1977
+ "12/21/2026",
1978
+ "12/22/2025",
1979
+ "12/22/2026",
1980
+ "12/23",
1981
+ "12/23/2024",
1982
+ "12/23/2025",
1983
+ "12/23/2026",
1984
+ "12/24",
1985
+ "12/24/2025",
1986
+ "12/24/2026",
1987
+ "12/25",
1988
+ "12/26/2024",
1989
+ "12/26/2025",
1990
+ "12/27",
1991
+ "12/27/2026",
1992
+ "12/28",
1993
+ "12/28/2024",
1994
+ "12/28/2026",
1995
+ "12/28/2027",
1996
+ "12/29",
1997
+ "12/3",
1998
+ "12/3/2027",
1999
+ "12/30",
2000
+ "12/30/2025",
2001
+ "12/31",
2002
+ "12/31/2026",
2003
+ "12/4/2024",
2004
+ "12/4/2026",
2005
+ "12/5",
2006
+ "12/5/2024",
2007
+ "12/6",
2008
+ "12/7",
2009
+ "12/9",
2010
+ "12/9/2024",
2011
+ "12/9/2025",
2012
+ "12:00",
2013
+ "12:00am",
2014
+ "12:01PM",
2015
+ "12:01pm",
2016
+ "12:02",
2017
+ "12:02o'clock",
2018
+ "12:03",
2019
+ "12:04",
2020
+ "12:04at",
2021
+ "12:05",
2022
+ "12:06",
2023
+ "12:07",
2024
+ "12:07AM",
2025
+ "12:07am",
2026
+ "12:08",
2027
+ "12:09",
2028
+ "12:09AM",
2029
+ "12:09am",
2030
+ "12:11",
2031
+ "12:11o'clock",
2032
+ "12:11pm",
2033
+ "12:12",
2034
+ "12:13",
2035
+ "12:13am",
2036
+ "12:14",
2037
+ "12:15",
2038
+ "12:16",
2039
+ "12:17",
2040
+ "12:17P.M.",
2041
+ "12:17p.m.",
2042
+ "12:19",
2043
+ "12:20pm",
2044
+ "12:21",
2045
+ "12:22",
2046
+ "12:24",
2047
+ "12:24A.M.",
2048
+ "12:24a.m.",
2049
+ "12:25",
2050
+ "12:26",
2051
+ "12:26at",
2052
+ "12:27pm",
2053
+ "12:28",
2054
+ "12:28p.m",
2055
+ "12:29",
2056
+ "12:30",
2057
+ "12:31o'clock",
2058
+ "12:32",
2059
+ "12:32at",
2060
+ "12:33",
2061
+ "12:33p.m",
2062
+ "12:34",
2063
+ "12:35",
2064
+ "12:36",
2065
+ "12:37",
2066
+ "12:38",
2067
+ "12:39PM",
2068
+ "12:39pm",
2069
+ "12:40",
2070
+ "12:41",
2071
+ "12:41AM",
2072
+ "12:41am",
2073
+ "12:42",
2074
+ "12:44",
2075
+ "12:45",
2076
+ "12:45o'clock",
2077
+ "12:45pm",
2078
+ "12:46",
2079
+ "12:46at",
2080
+ "12:47",
2081
+ "12:49",
2082
+ "12:49at",
2083
+ "12:50",
2084
+ "12:51",
2085
+ "12:52",
2086
+ "12:53",
2087
+ "12:53a.m",
2088
+ "12:54",
2089
+ "12:56",
2090
+ "12:56PM",
2091
+ "12:56pm",
2092
+ "12:57",
2093
+ "12:57AM",
2094
+ "12:57am",
2095
+ "12:57p.m",
2096
+ "12:58",
2097
+ "12:59",
2098
+ "12a.m",
2099
+ "12a.m.",
2100
+ "12p.m",
2101
+ "12p.m.",
2102
+ "12th",
2103
+ "13:00",
2104
+ "13:02",
2105
+ "13:03",
2106
+ "13:04",
2107
+ "13:05",
2108
+ "13:06",
2109
+ "13:07",
2110
+ "13:10",
2111
+ "13:11",
2112
+ "13:12",
2113
+ "13:13",
2114
+ "13:15",
2115
+ "13:17",
2116
+ "13:18",
2117
+ "13:19",
2118
+ "13:20",
2119
+ "13:21",
2120
+ "13:22",
2121
+ "13:24",
2122
+ "13:25",
2123
+ "13:26",
2124
+ "13:27",
2125
+ "13:31",
2126
+ "13:32",
2127
+ "13:33",
2128
+ "13:35",
2129
+ "13:36",
2130
+ "13:37",
2131
+ "13:39",
2132
+ "13:40",
2133
+ "13:41",
2134
+ "13:45",
2135
+ "13:46",
2136
+ "13:47",
2137
+ "13:48",
2138
+ "13:49",
2139
+ "13:51",
2140
+ "13:52",
2141
+ "13:53",
2142
+ "13:54",
2143
+ "13:55",
2144
+ "13:57",
2145
+ "13:59",
2146
+ "13th",
2147
+ "14:00",
2148
+ "14:02",
2149
+ "14:03",
2150
+ "14:04",
2151
+ "14:05",
2152
+ "14:06",
2153
+ "14:07",
2154
+ "14:08",
2155
+ "14:09",
2156
+ "14:10",
2157
+ "14:11",
2158
+ "14:12",
2159
+ "14:13",
2160
+ "14:14",
2161
+ "14:15",
2162
+ "14:18",
2163
+ "14:19",
2164
+ "14:20",
2165
+ "14:21",
2166
+ "14:22",
2167
+ "14:23",
2168
+ "14:25",
2169
+ "14:26",
2170
+ "14:27",
2171
+ "14:31",
2172
+ "14:32",
2173
+ "14:33",
2174
+ "14:34",
2175
+ "14:35",
2176
+ "14:36",
2177
+ "14:37",
2178
+ "14:39",
2179
+ "14:40",
2180
+ "14:41",
2181
+ "14:42",
2182
+ "14:43",
2183
+ "14:45",
2184
+ "14:47",
2185
+ "14:48",
2186
+ "14:51",
2187
+ "14:52",
2188
+ "14:53",
2189
+ "14:54",
2190
+ "14:55",
2191
+ "14:57",
2192
+ "14:58",
2193
+ "14th",
2194
+ "15:00",
2195
+ "15:01",
2196
+ "15:02",
2197
+ "15:03",
2198
+ "15:04",
2199
+ "15:05",
2200
+ "15:06",
2201
+ "15:08",
2202
+ "15:09",
2203
+ "15:10",
2204
+ "15:11",
2205
+ "15:12",
2206
+ "15:13",
2207
+ "15:15",
2208
+ "15:16",
2209
+ "15:17",
2210
+ "15:19",
2211
+ "15:20",
2212
+ "15:21",
2213
+ "15:22",
2214
+ "15:23",
2215
+ "15:24",
2216
+ "15:25",
2217
+ "15:26",
2218
+ "15:27",
2219
+ "15:30",
2220
+ "15:32",
2221
+ "15:33",
2222
+ "15:34",
2223
+ "15:37",
2224
+ "15:38",
2225
+ "15:39",
2226
+ "15:40",
2227
+ "15:41",
2228
+ "15:42",
2229
+ "15:43",
2230
+ "15:44",
2231
+ "15:45",
2232
+ "15:46",
2233
+ "15:47",
2234
+ "15:49",
2235
+ "15:51",
2236
+ "15:52",
2237
+ "15:53",
2238
+ "15:54",
2239
+ "15:55",
2240
+ "15:57",
2241
+ "15:58",
2242
+ "15th",
2243
+ "16:00",
2244
+ "16:01",
2245
+ "16:02",
2246
+ "16:03",
2247
+ "16:04",
2248
+ "16:05",
2249
+ "16:06",
2250
+ "16:07",
2251
+ "16:09",
2252
+ "16:10",
2253
+ "16:11",
2254
+ "16:12",
2255
+ "16:14",
2256
+ "16:15",
2257
+ "16:17",
2258
+ "16:19",
2259
+ "16:21",
2260
+ "16:22",
2261
+ "16:23",
2262
+ "16:24",
2263
+ "16:25",
2264
+ "16:26",
2265
+ "16:27",
2266
+ "16:28",
2267
+ "16:29",
2268
+ "16:31",
2269
+ "16:32",
2270
+ "16:33",
2271
+ "16:34",
2272
+ "16:35",
2273
+ "16:36",
2274
+ "16:37",
2275
+ "16:38",
2276
+ "16:40",
2277
+ "16:41",
2278
+ "16:42",
2279
+ "16:43",
2280
+ "16:44",
2281
+ "16:45",
2282
+ "16:46",
2283
+ "16:47",
2284
+ "16:49",
2285
+ "16:50",
2286
+ "16:51",
2287
+ "16:52",
2288
+ "16:54",
2289
+ "16:57",
2290
+ "16:58",
2291
+ "16:59",
2292
+ "16th",
2293
+ "17:00",
2294
+ "17:01",
2295
+ "17:02",
2296
+ "17:03",
2297
+ "17:04",
2298
+ "17:05",
2299
+ "17:06",
2300
+ "17:07",
2301
+ "17:08",
2302
+ "17:09",
2303
+ "17:10",
2304
+ "17:11",
2305
+ "17:12",
2306
+ "17:13",
2307
+ "17:14",
2308
+ "17:15",
2309
+ "17:17",
2310
+ "17:18",
2311
+ "17:19",
2312
+ "17:21",
2313
+ "17:22",
2314
+ "17:23",
2315
+ "17:24",
2316
+ "17:25",
2317
+ "17:26",
2318
+ "17:27",
2319
+ "17:28",
2320
+ "17:29",
2321
+ "17:30",
2322
+ "17:31",
2323
+ "17:32",
2324
+ "17:33",
2325
+ "17:34",
2326
+ "17:35",
2327
+ "17:36",
2328
+ "17:37",
2329
+ "17:38",
2330
+ "17:39",
2331
+ "17:40",
2332
+ "17:41",
2333
+ "17:42",
2334
+ "17:43",
2335
+ "17:44",
2336
+ "17:45",
2337
+ "17:46",
2338
+ "17:47",
2339
+ "17:48",
2340
+ "17:49",
2341
+ "17:50",
2342
+ "17:52",
2343
+ "17:54",
2344
+ "17:55",
2345
+ "17:57",
2346
+ "17:59",
2347
+ "17th",
2348
+ "18:01",
2349
+ "18:02",
2350
+ "18:03",
2351
+ "18:04",
2352
+ "18:05",
2353
+ "18:06",
2354
+ "18:07",
2355
+ "18:08",
2356
+ "18:11",
2357
+ "18:12",
2358
+ "18:14",
2359
+ "18:15",
2360
+ "18:17",
2361
+ "18:18",
2362
+ "18:21",
2363
+ "18:22",
2364
+ "18:23",
2365
+ "18:24",
2366
+ "18:25",
2367
+ "18:26",
2368
+ "18:27",
2369
+ "18:28",
2370
+ "18:29",
2371
+ "18:31",
2372
+ "18:32",
2373
+ "18:33",
2374
+ "18:34",
2375
+ "18:35",
2376
+ "18:36",
2377
+ "18:37",
2378
+ "18:38",
2379
+ "18:39",
2380
+ "18:40",
2381
+ "18:41",
2382
+ "18:43",
2383
+ "18:44",
2384
+ "18:45",
2385
+ "18:46",
2386
+ "18:47",
2387
+ "18:48",
2388
+ "18:49",
2389
+ "18:50",
2390
+ "18:51",
2391
+ "18:54",
2392
+ "18:56",
2393
+ "18:57",
2394
+ "18:58",
2395
+ "18:59",
2396
+ "18th",
2397
+ "19:01",
2398
+ "19:02",
2399
+ "19:03",
2400
+ "19:04",
2401
+ "19:05",
2402
+ "19:06",
2403
+ "19:07",
2404
+ "19:08",
2405
+ "19:11",
2406
+ "19:12",
2407
+ "19:14",
2408
+ "19:16",
2409
+ "19:17",
2410
+ "19:18",
2411
+ "19:19",
2412
+ "19:20",
2413
+ "19:21",
2414
+ "19:22",
2415
+ "19:23",
2416
+ "19:24",
2417
+ "19:25",
2418
+ "19:26",
2419
+ "19:27",
2420
+ "19:29",
2421
+ "19:31",
2422
+ "19:32",
2423
+ "19:33",
2424
+ "19:34",
2425
+ "19:35",
2426
+ "19:36",
2427
+ "19:37",
2428
+ "19:38",
2429
+ "19:39",
2430
+ "19:40",
2431
+ "19:41",
2432
+ "19:42",
2433
+ "19:43",
2434
+ "19:44",
2435
+ "19:45",
2436
+ "19:46",
2437
+ "19:47",
2438
+ "19:48",
2439
+ "19:49",
2440
+ "19:50",
2441
+ "19:51",
2442
+ "19:52",
2443
+ "19:54",
2444
+ "19:56",
2445
+ "19:57",
2446
+ "19:58",
2447
+ "19th",
2448
+ "1:01",
2449
+ "1:02PM",
2450
+ "1:02pm",
2451
+ "1:04A.M.",
2452
+ "1:04a.m.",
2453
+ "1:05",
2454
+ "1:05o'clock",
2455
+ "1:06p.m",
2456
+ "1:07",
2457
+ "1:07a.m",
2458
+ "1:10",
2459
+ "1:11",
2460
+ "1:13",
2461
+ "1:13o'clock",
2462
+ "1:14",
2463
+ "1:14PM",
2464
+ "1:14pm",
2465
+ "1:15PM",
2466
+ "1:15pm",
2467
+ "1:16",
2468
+ "1:17pm",
2469
+ "1:18",
2470
+ "1:18A.M.",
2471
+ "1:18a.m.",
2472
+ "1:20o'clock",
2473
+ "1:21",
2474
+ "1:24PM",
2475
+ "1:24pm",
2476
+ "1:28",
2477
+ "1:30",
2478
+ "1:33pm",
2479
+ "1:35",
2480
+ "1:38",
2481
+ "1:38pm",
2482
+ "1:39p.m",
2483
+ "1:45",
2484
+ "1:45o'clock",
2485
+ "1:45p.m",
2486
+ "1:47",
2487
+ "1:48",
2488
+ "1:49",
2489
+ "1:52pm",
2490
+ "1:53AM",
2491
+ "1:53am",
2492
+ "1:56A.M.",
2493
+ "1:56a.m.",
2494
+ "1:57",
2495
+ "1:59P.M.",
2496
+ "1:59am",
2497
+ "1:59p.m.",
2498
+ "1AM",
2499
+ "1PM",
2500
+ "1a.m",
2501
+ "1a.m.",
2502
+ "1am",
2503
+ "1at",
2504
+ "1p.m",
2505
+ "1p.m.",
2506
+ "1pm",
2507
+ "1st",
2508
+ "1th",
2509
+ "2",
2510
+ "2/01/2026",
2511
+ "2/02/2025",
2512
+ "2/03",
2513
+ "2/04",
2514
+ "2/05",
2515
+ "2/06",
2516
+ "2/06/2027",
2517
+ "2/1",
2518
+ "2/10",
2519
+ "2/11/2025",
2520
+ "2/11/2026",
2521
+ "2/13/2027",
2522
+ "2/15",
2523
+ "2/15/2024",
2524
+ "2/17",
2525
+ "2/18/2025",
2526
+ "2/19",
2527
+ "2/2",
2528
+ "2/20/2027",
2529
+ "2/21",
2530
+ "2/21/2026",
2531
+ "2/22",
2532
+ "2/23/2024",
2533
+ "2/26/2025",
2534
+ "2/27/2025",
2535
+ "2/28",
2536
+ "2/28/2024",
2537
+ "2/3",
2538
+ "2/3/2024",
2539
+ "2/3/2026",
2540
+ "2/30/2025",
2541
+ "2/4",
2542
+ "2/4/2026",
2543
+ "2/5",
2544
+ "2/6",
2545
+ "2/7",
2546
+ "2/7/2027",
2547
+ "2/8",
2548
+ "2/9",
2549
+ "2024",
2550
+ "2024/01/03",
2551
+ "2024/01/05",
2552
+ "2024/01/10",
2553
+ "2024/01/11",
2554
+ "2024/01/12",
2555
+ "2024/01/16",
2556
+ "2024/01/19",
2557
+ "2024/01/21",
2558
+ "2024/01/24",
2559
+ "2024/01/25",
2560
+ "2024/01/3",
2561
+ "2024/01/8",
2562
+ "2024/02/04",
2563
+ "2024/02/08",
2564
+ "2024/02/12",
2565
+ "2024/02/14",
2566
+ "2024/02/17",
2567
+ "2024/02/2",
2568
+ "2024/02/20",
2569
+ "2024/02/21",
2570
+ "2024/02/24",
2571
+ "2024/02/26",
2572
+ "2024/02/28",
2573
+ "2024/03/05",
2574
+ "2024/03/1",
2575
+ "2024/03/13",
2576
+ "2024/03/19",
2577
+ "2024/03/20",
2578
+ "2024/03/26",
2579
+ "2024/03/27",
2580
+ "2024/03/28",
2581
+ "2024/03/29",
2582
+ "2024/03/31",
2583
+ "2024/04/1",
2584
+ "2024/04/14",
2585
+ "2024/04/15",
2586
+ "2024/04/17",
2587
+ "2024/04/18",
2588
+ "2024/04/19",
2589
+ "2024/04/22",
2590
+ "2024/04/26",
2591
+ "2024/04/28",
2592
+ "2024/04/5",
2593
+ "2024/04/6",
2594
+ "2024/05/07",
2595
+ "2024/05/08",
2596
+ "2024/05/11",
2597
+ "2024/05/13",
2598
+ "2024/05/14",
2599
+ "2024/05/15",
2600
+ "2024/05/16",
2601
+ "2024/05/20",
2602
+ "2024/05/22",
2603
+ "2024/05/27",
2604
+ "2024/05/30",
2605
+ "2024/05/8",
2606
+ "2024/06/08",
2607
+ "2024/06/09",
2608
+ "2024/06/10",
2609
+ "2024/06/11",
2610
+ "2024/06/15",
2611
+ "2024/06/17",
2612
+ "2024/06/21",
2613
+ "2024/06/22",
2614
+ "2024/06/26",
2615
+ "2024/06/27",
2616
+ "2024/06/30",
2617
+ "2024/07/08",
2618
+ "2024/07/10",
2619
+ "2024/07/12",
2620
+ "2024/07/14",
2621
+ "2024/07/16",
2622
+ "2024/07/17",
2623
+ "2024/07/18",
2624
+ "2024/07/19",
2625
+ "2024/07/20",
2626
+ "2024/07/21",
2627
+ "2024/07/23",
2628
+ "2024/07/26",
2629
+ "2024/07/30",
2630
+ "2024/07/5",
2631
+ "2024/08/02",
2632
+ "2024/08/12",
2633
+ "2024/08/15",
2634
+ "2024/08/17",
2635
+ "2024/08/19",
2636
+ "2024/08/22",
2637
+ "2024/08/25",
2638
+ "2024/08/28",
2639
+ "2024/09/02",
2640
+ "2024/09/07",
2641
+ "2024/09/10",
2642
+ "2024/09/13",
2643
+ "2024/09/15",
2644
+ "2024/09/17",
2645
+ "2024/09/18",
2646
+ "2024/09/20",
2647
+ "2024/09/21",
2648
+ "2024/09/22",
2649
+ "2024/09/23",
2650
+ "2024/09/24",
2651
+ "2024/09/27",
2652
+ "2024/09/28",
2653
+ "2024/09/31",
2654
+ "2024/1/07",
2655
+ "2024/1/18",
2656
+ "2024/1/19",
2657
+ "2024/1/25",
2658
+ "2024/10/02",
2659
+ "2024/10/04",
2660
+ "2024/10/14",
2661
+ "2024/10/16",
2662
+ "2024/10/21",
2663
+ "2024/10/22",
2664
+ "2024/10/24",
2665
+ "2024/10/29",
2666
+ "2024/10/6",
2667
+ "2024/10/9",
2668
+ "2024/11/11",
2669
+ "2024/11/12",
2670
+ "2024/11/13",
2671
+ "2024/11/14",
2672
+ "2024/11/15",
2673
+ "2024/11/18",
2674
+ "2024/11/2",
2675
+ "2024/11/21",
2676
+ "2024/11/23",
2677
+ "2024/11/24",
2678
+ "2024/11/25",
2679
+ "2024/11/28",
2680
+ "2024/11/30",
2681
+ "2024/12/07",
2682
+ "2024/12/08",
2683
+ "2024/12/10",
2684
+ "2024/12/13",
2685
+ "2024/12/14",
2686
+ "2024/12/15",
2687
+ "2024/12/16",
2688
+ "2024/12/17",
2689
+ "2024/12/18",
2690
+ "2024/12/20",
2691
+ "2024/12/21",
2692
+ "2024/12/22",
2693
+ "2024/12/23",
2694
+ "2024/12/25",
2695
+ "2024/12/26",
2696
+ "2024/12/29",
2697
+ "2024/12/3",
2698
+ "2024/12/4",
2699
+ "2024/12/5",
2700
+ "2024/12/6",
2701
+ "2024/2/15",
2702
+ "2024/2/22",
2703
+ "2024/2/28",
2704
+ "2024/3/12",
2705
+ "2024/3/24",
2706
+ "2024/3/5",
2707
+ "2024/3/8",
2708
+ "2024/4/01",
2709
+ "2024/4/11",
2710
+ "2024/4/12",
2711
+ "2024/4/14",
2712
+ "2024/4/24",
2713
+ "2024/4/9",
2714
+ "2024/5/05",
2715
+ "2024/5/1",
2716
+ "2024/5/14",
2717
+ "2024/5/15",
2718
+ "2024/5/21",
2719
+ "2024/5/22",
2720
+ "2024/5/31",
2721
+ "2024/5/6",
2722
+ "2024/6/19",
2723
+ "2024/6/30",
2724
+ "2024/6/8",
2725
+ "2024/7/05",
2726
+ "2024/7/16",
2727
+ "2024/7/18",
2728
+ "2024/7/2",
2729
+ "2024/7/20",
2730
+ "2024/7/30",
2731
+ "2024/8/02",
2732
+ "2024/8/19",
2733
+ "2024/8/27",
2734
+ "2024/8/3",
2735
+ "2024/9/01",
2736
+ "2024/9/08",
2737
+ "2024/9/3",
2738
+ "2024/9/8",
2739
+ "2025",
2740
+ "2025/01/04",
2741
+ "2025/01/08",
2742
+ "2025/01/11",
2743
+ "2025/01/12",
2744
+ "2025/01/14",
2745
+ "2025/01/15",
2746
+ "2025/01/18",
2747
+ "2025/01/22",
2748
+ "2025/01/25",
2749
+ "2025/01/28",
2750
+ "2025/01/29",
2751
+ "2025/01/30",
2752
+ "2025/02/05",
2753
+ "2025/02/08",
2754
+ "2025/02/11",
2755
+ "2025/02/12",
2756
+ "2025/02/19",
2757
+ "2025/02/20",
2758
+ "2025/02/21",
2759
+ "2025/02/24",
2760
+ "2025/02/5",
2761
+ "2025/03/04",
2762
+ "2025/03/05",
2763
+ "2025/03/1",
2764
+ "2025/03/10",
2765
+ "2025/03/11",
2766
+ "2025/03/14",
2767
+ "2025/03/15",
2768
+ "2025/03/20",
2769
+ "2025/03/25",
2770
+ "2025/03/31",
2771
+ "2025/03/9",
2772
+ "2025/04/05",
2773
+ "2025/04/09",
2774
+ "2025/04/11",
2775
+ "2025/04/13",
2776
+ "2025/04/18",
2777
+ "2025/04/20",
2778
+ "2025/04/21",
2779
+ "2025/04/22",
2780
+ "2025/04/24",
2781
+ "2025/04/26",
2782
+ "2025/04/27",
2783
+ "2025/04/28",
2784
+ "2025/04/29",
2785
+ "2025/05/04",
2786
+ "2025/05/07",
2787
+ "2025/05/1",
2788
+ "2025/05/10",
2789
+ "2025/05/11",
2790
+ "2025/05/12",
2791
+ "2025/05/13",
2792
+ "2025/05/14",
2793
+ "2025/05/16",
2794
+ "2025/05/20",
2795
+ "2025/05/22",
2796
+ "2025/05/27",
2797
+ "2025/05/28",
2798
+ "2025/05/3",
2799
+ "2025/05/30",
2800
+ "2025/05/5",
2801
+ "2025/06/06",
2802
+ "2025/06/07",
2803
+ "2025/06/1",
2804
+ "2025/06/10",
2805
+ "2025/06/12",
2806
+ "2025/06/14",
2807
+ "2025/06/15",
2808
+ "2025/06/17",
2809
+ "2025/06/18",
2810
+ "2025/06/24",
2811
+ "2025/06/25",
2812
+ "2025/06/26",
2813
+ "2025/07/1",
2814
+ "2025/07/11",
2815
+ "2025/07/12",
2816
+ "2025/07/14",
2817
+ "2025/07/20",
2818
+ "2025/07/24",
2819
+ "2025/07/27",
2820
+ "2025/07/29",
2821
+ "2025/07/3",
2822
+ "2025/07/5",
2823
+ "2025/07/8",
2824
+ "2025/08/04",
2825
+ "2025/08/05",
2826
+ "2025/08/13",
2827
+ "2025/08/16",
2828
+ "2025/08/20",
2829
+ "2025/08/21",
2830
+ "2025/08/22",
2831
+ "2025/08/25",
2832
+ "2025/08/26",
2833
+ "2025/08/27",
2834
+ "2025/08/31",
2835
+ "2025/08/4",
2836
+ "2025/09/01",
2837
+ "2025/09/09",
2838
+ "2025/09/10",
2839
+ "2025/09/12",
2840
+ "2025/09/13",
2841
+ "2025/09/14",
2842
+ "2025/09/15",
2843
+ "2025/09/18",
2844
+ "2025/09/20",
2845
+ "2025/09/21",
2846
+ "2025/09/23",
2847
+ "2025/09/25",
2848
+ "2025/09/26",
2849
+ "2025/09/27",
2850
+ "2025/09/28",
2851
+ "2025/09/5",
2852
+ "2025/09/7",
2853
+ "2025/1/08",
2854
+ "2025/1/11",
2855
+ "2025/1/12",
2856
+ "2025/1/15",
2857
+ "2025/1/18",
2858
+ "2025/1/2",
2859
+ "2025/1/20",
2860
+ "2025/1/23",
2861
+ "2025/1/29",
2862
+ "2025/1/3",
2863
+ "2025/10/01",
2864
+ "2025/10/04",
2865
+ "2025/10/07",
2866
+ "2025/10/10",
2867
+ "2025/10/11",
2868
+ "2025/10/13",
2869
+ "2025/10/15",
2870
+ "2025/10/16",
2871
+ "2025/10/17",
2872
+ "2025/10/19",
2873
+ "2025/10/21",
2874
+ "2025/10/22",
2875
+ "2025/10/24",
2876
+ "2025/10/25",
2877
+ "2025/10/27",
2878
+ "2025/10/28",
2879
+ "2025/10/29",
2880
+ "2025/10/30",
2881
+ "2025/10/31",
2882
+ "2025/10/7",
2883
+ "2025/11/01",
2884
+ "2025/11/03",
2885
+ "2025/11/05",
2886
+ "2025/11/06",
2887
+ "2025/11/07",
2888
+ "2025/11/09",
2889
+ "2025/11/10",
2890
+ "2025/11/11",
2891
+ "2025/11/13",
2892
+ "2025/11/16",
2893
+ "2025/11/19",
2894
+ "2025/11/20",
2895
+ "2025/11/21",
2896
+ "2025/11/24",
2897
+ "2025/11/25",
2898
+ "2025/11/26",
2899
+ "2025/11/27",
2900
+ "2025/11/28",
2901
+ "2025/11/30",
2902
+ "2025/11/4",
2903
+ "2025/11/5",
2904
+ "2025/11/6",
2905
+ "2025/11/8",
2906
+ "2025/11/9",
2907
+ "2025/12/04",
2908
+ "2025/12/05",
2909
+ "2025/12/07",
2910
+ "2025/12/08",
2911
+ "2025/12/10",
2912
+ "2025/12/12",
2913
+ "2025/12/13",
2914
+ "2025/12/14",
2915
+ "2025/12/16",
2916
+ "2025/12/18",
2917
+ "2025/12/2",
2918
+ "2025/12/21",
2919
+ "2025/12/22",
2920
+ "2025/12/23",
2921
+ "2025/12/24",
2922
+ "2025/12/25",
2923
+ "2025/12/26",
2924
+ "2025/12/27",
2925
+ "2025/12/28",
2926
+ "2025/12/3",
2927
+ "2025/12/4",
2928
+ "2025/2/09",
2929
+ "2025/2/2",
2930
+ "2025/2/25",
2931
+ "2025/2/3",
2932
+ "2025/3/12",
2933
+ "2025/3/13",
2934
+ "2025/3/14",
2935
+ "2025/3/16",
2936
+ "2025/3/19",
2937
+ "2025/3/2",
2938
+ "2025/3/23",
2939
+ "2025/3/31",
2940
+ "2025/3/9",
2941
+ "2025/4/14",
2942
+ "2025/4/15",
2943
+ "2025/4/16",
2944
+ "2025/4/22",
2945
+ "2025/4/28",
2946
+ "2025/4/30",
2947
+ "2025/5/02",
2948
+ "2025/5/13",
2949
+ "2025/5/16",
2950
+ "2025/5/24",
2951
+ "2025/5/27",
2952
+ "2025/5/29",
2953
+ "2025/5/31",
2954
+ "2025/5/9",
2955
+ "2025/6/11",
2956
+ "2025/6/20",
2957
+ "2025/6/26",
2958
+ "2025/6/4",
2959
+ "2025/6/8",
2960
+ "2025/7/04",
2961
+ "2025/7/12",
2962
+ "2025/7/13",
2963
+ "2025/7/14",
2964
+ "2025/7/15",
2965
+ "2025/7/19",
2966
+ "2025/7/2",
2967
+ "2025/7/23",
2968
+ "2025/7/24",
2969
+ "2025/7/25",
2970
+ "2025/8/01",
2971
+ "2025/8/20",
2972
+ "2025/8/21",
2973
+ "2025/8/22",
2974
+ "2025/8/5",
2975
+ "2025/9/13",
2976
+ "2025/9/18",
2977
+ "2025/9/19",
2978
+ "2026",
2979
+ "2026/01/02",
2980
+ "2026/01/06",
2981
+ "2026/01/07",
2982
+ "2026/01/08",
2983
+ "2026/01/10",
2984
+ "2026/01/11",
2985
+ "2026/01/12",
2986
+ "2026/01/13",
2987
+ "2026/01/15",
2988
+ "2026/01/16",
2989
+ "2026/01/18",
2990
+ "2026/01/21",
2991
+ "2026/01/31",
2992
+ "2026/01/4",
2993
+ "2026/02/02",
2994
+ "2026/02/08",
2995
+ "2026/02/11",
2996
+ "2026/02/12",
2997
+ "2026/02/18",
2998
+ "2026/02/19",
2999
+ "2026/02/25",
3000
+ "2026/02/26",
3001
+ "2026/02/27",
3002
+ "2026/02/28",
3003
+ "2026/03/09",
3004
+ "2026/03/10",
3005
+ "2026/03/11",
3006
+ "2026/03/13",
3007
+ "2026/03/15",
3008
+ "2026/03/19",
3009
+ "2026/03/20",
3010
+ "2026/03/3",
3011
+ "2026/03/7",
3012
+ "2026/04/05",
3013
+ "2026/04/08",
3014
+ "2026/04/10",
3015
+ "2026/04/11",
3016
+ "2026/04/13",
3017
+ "2026/04/14",
3018
+ "2026/04/15",
3019
+ "2026/04/18",
3020
+ "2026/04/19",
3021
+ "2026/04/24",
3022
+ "2026/04/27",
3023
+ "2026/04/29",
3024
+ "2026/04/30",
3025
+ "2026/04/6",
3026
+ "2026/04/8",
3027
+ "2026/05/03",
3028
+ "2026/05/07",
3029
+ "2026/05/08",
3030
+ "2026/05/11",
3031
+ "2026/05/14",
3032
+ "2026/05/17",
3033
+ "2026/05/18",
3034
+ "2026/05/22",
3035
+ "2026/05/28",
3036
+ "2026/05/30",
3037
+ "2026/05/31",
3038
+ "2026/06/1",
3039
+ "2026/06/10",
3040
+ "2026/06/16",
3041
+ "2026/06/22",
3042
+ "2026/06/23",
3043
+ "2026/06/24",
3044
+ "2026/06/28",
3045
+ "2026/06/29",
3046
+ "2026/06/30",
3047
+ "2026/07/08",
3048
+ "2026/07/13",
3049
+ "2026/07/15",
3050
+ "2026/07/16",
3051
+ "2026/07/17",
3052
+ "2026/07/19",
3053
+ "2026/07/21",
3054
+ "2026/07/22",
3055
+ "2026/07/27",
3056
+ "2026/07/28",
3057
+ "2026/07/29",
3058
+ "2026/07/31",
3059
+ "2026/07/9",
3060
+ "2026/08/01",
3061
+ "2026/08/02",
3062
+ "2026/08/05",
3063
+ "2026/08/07",
3064
+ "2026/08/08",
3065
+ "2026/08/1",
3066
+ "2026/08/13",
3067
+ "2026/08/14",
3068
+ "2026/08/19",
3069
+ "2026/08/21",
3070
+ "2026/08/24",
3071
+ "2026/08/25",
3072
+ "2026/08/26",
3073
+ "2026/08/28",
3074
+ "2026/08/30",
3075
+ "2026/08/8",
3076
+ "2026/09/01",
3077
+ "2026/09/06",
3078
+ "2026/09/07",
3079
+ "2026/09/10",
3080
+ "2026/09/12",
3081
+ "2026/09/13",
3082
+ "2026/09/14",
3083
+ "2026/09/17",
3084
+ "2026/09/18",
3085
+ "2026/09/19",
3086
+ "2026/09/22",
3087
+ "2026/09/25",
3088
+ "2026/09/26",
3089
+ "2026/09/29",
3090
+ "2026/09/6",
3091
+ "2026/1/13",
3092
+ "2026/1/2",
3093
+ "2026/1/21",
3094
+ "2026/1/28",
3095
+ "2026/10/08",
3096
+ "2026/10/09",
3097
+ "2026/10/14",
3098
+ "2026/10/16",
3099
+ "2026/10/17",
3100
+ "2026/10/2",
3101
+ "2026/10/20",
3102
+ "2026/10/22",
3103
+ "2026/10/23",
3104
+ "2026/10/24",
3105
+ "2026/10/25",
3106
+ "2026/10/27",
3107
+ "2026/10/30",
3108
+ "2026/10/31",
3109
+ "2026/10/5",
3110
+ "2026/10/6",
3111
+ "2026/10/8",
3112
+ "2026/11/05",
3113
+ "2026/11/09",
3114
+ "2026/11/10",
3115
+ "2026/11/11",
3116
+ "2026/11/12",
3117
+ "2026/11/13",
3118
+ "2026/11/14",
3119
+ "2026/11/15",
3120
+ "2026/11/16",
3121
+ "2026/11/17",
3122
+ "2026/11/18",
3123
+ "2026/11/19",
3124
+ "2026/11/22",
3125
+ "2026/11/23",
3126
+ "2026/11/25",
3127
+ "2026/11/26",
3128
+ "2026/11/27",
3129
+ "2026/11/3",
3130
+ "2026/11/30",
3131
+ "2026/11/4",
3132
+ "2026/11/7",
3133
+ "2026/11/8",
3134
+ "2026/12/02",
3135
+ "2026/12/04",
3136
+ "2026/12/05",
3137
+ "2026/12/11",
3138
+ "2026/12/14",
3139
+ "2026/12/15",
3140
+ "2026/12/17",
3141
+ "2026/12/19",
3142
+ "2026/12/20",
3143
+ "2026/12/21",
3144
+ "2026/12/22",
3145
+ "2026/12/24",
3146
+ "2026/12/26",
3147
+ "2026/12/27",
3148
+ "2026/12/28",
3149
+ "2026/12/29",
3150
+ "2026/12/31",
3151
+ "2026/12/4",
3152
+ "2026/12/6",
3153
+ "2026/2/1",
3154
+ "2026/2/10",
3155
+ "2026/2/11",
3156
+ "2026/2/18",
3157
+ "2026/2/28",
3158
+ "2026/2/4",
3159
+ "2026/3/11",
3160
+ "2026/3/12",
3161
+ "2026/3/15",
3162
+ "2026/3/16",
3163
+ "2026/3/17",
3164
+ "2026/3/21",
3165
+ "2026/3/22",
3166
+ "2026/3/26",
3167
+ "2026/3/27",
3168
+ "2026/3/29",
3169
+ "2026/3/31",
3170
+ "2026/3/7",
3171
+ "2026/4/1",
3172
+ "2026/4/10",
3173
+ "2026/4/12",
3174
+ "2026/4/13",
3175
+ "2026/4/14",
3176
+ "2026/4/20",
3177
+ "2026/4/24",
3178
+ "2026/4/28",
3179
+ "2026/4/6",
3180
+ "2026/4/7",
3181
+ "2026/4/8",
3182
+ "2026/4/9",
3183
+ "2026/5/03",
3184
+ "2026/5/11",
3185
+ "2026/5/12",
3186
+ "2026/5/13",
3187
+ "2026/5/14",
3188
+ "2026/5/15",
3189
+ "2026/5/18",
3190
+ "2026/5/2",
3191
+ "2026/5/23",
3192
+ "2026/5/29",
3193
+ "2026/5/30",
3194
+ "2026/5/8",
3195
+ "2026/6/1",
3196
+ "2026/6/10",
3197
+ "2026/6/11",
3198
+ "2026/6/15",
3199
+ "2026/6/19",
3200
+ "2026/6/23",
3201
+ "2026/6/24",
3202
+ "2026/6/29",
3203
+ "2026/7/13",
3204
+ "2026/7/14",
3205
+ "2026/7/16",
3206
+ "2026/7/19",
3207
+ "2026/7/20",
3208
+ "2026/7/23",
3209
+ "2026/7/28",
3210
+ "2026/7/29",
3211
+ "2026/7/31",
3212
+ "2026/7/4",
3213
+ "2026/7/9",
3214
+ "2026/8/24",
3215
+ "2026/8/26",
3216
+ "2026/8/4",
3217
+ "2026/8/7",
3218
+ "2026/9/04",
3219
+ "2026/9/12",
3220
+ "2026/9/20",
3221
+ "2026/9/24",
3222
+ "2026/9/28",
3223
+ "2027",
3224
+ "2027/01/08",
3225
+ "2027/01/19",
3226
+ "2027/02/27",
3227
+ "2027/03/04",
3228
+ "2027/03/05",
3229
+ "2027/03/1",
3230
+ "2027/03/19",
3231
+ "2027/03/27",
3232
+ "2027/04/12",
3233
+ "2027/04/22",
3234
+ "2027/04/23",
3235
+ "2027/04/28",
3236
+ "2027/05/01",
3237
+ "2027/05/13",
3238
+ "2027/05/15",
3239
+ "2027/05/17",
3240
+ "2027/05/22",
3241
+ "2027/05/31",
3242
+ "2027/05/8",
3243
+ "2027/06/08",
3244
+ "2027/06/20",
3245
+ "2027/07/12",
3246
+ "2027/07/2",
3247
+ "2027/07/26",
3248
+ "2027/07/29",
3249
+ "2027/08/12",
3250
+ "2027/08/20",
3251
+ "2027/09/5",
3252
+ "2027/1/26",
3253
+ "2027/10/06",
3254
+ "2027/10/13",
3255
+ "2027/10/14",
3256
+ "2027/10/16",
3257
+ "2027/10/24",
3258
+ "2027/10/27",
3259
+ "2027/10/28",
3260
+ "2027/11/06",
3261
+ "2027/11/10",
3262
+ "2027/11/12",
3263
+ "2027/11/22",
3264
+ "2027/11/25",
3265
+ "2027/11/26",
3266
+ "2027/11/29",
3267
+ "2027/12/06",
3268
+ "2027/12/16",
3269
+ "2027/12/18",
3270
+ "2027/12/28",
3271
+ "2027/12/3",
3272
+ "2027/2/06",
3273
+ "2027/2/20",
3274
+ "2027/3/04",
3275
+ "2027/3/17",
3276
+ "2027/3/29",
3277
+ "2027/4/16",
3278
+ "2027/4/17",
3279
+ "2027/4/19",
3280
+ "2027/4/29",
3281
+ "2027/4/3",
3282
+ "2027/4/30",
3283
+ "2027/5/01",
3284
+ "2027/5/16",
3285
+ "2027/6/20",
3286
+ "2027/6/24",
3287
+ "2027/6/25",
3288
+ "2027/6/9",
3289
+ "2027/7/03",
3290
+ "2027/7/14",
3291
+ "2027/7/17",
3292
+ "2027/7/25",
3293
+ "2027/7/29",
3294
+ "2027/7/30",
3295
+ "2027/7/31",
3296
+ "2027/8/10",
3297
+ "2027/8/15",
3298
+ "2027/8/17",
3299
+ "2027/8/2",
3300
+ "2027/8/26",
3301
+ "2027/9/20",
3302
+ "20:01",
3303
+ "20:03",
3304
+ "20:04",
3305
+ "20:05",
3306
+ "20:06",
3307
+ "20:09",
3308
+ "20:10",
3309
+ "20:11",
3310
+ "20:14",
3311
+ "20:15",
3312
+ "20:16",
3313
+ "20:18",
3314
+ "20:19",
3315
+ "20:20",
3316
+ "20:23",
3317
+ "20:24",
3318
+ "20:25",
3319
+ "20:27",
3320
+ "20:28",
3321
+ "20:30",
3322
+ "20:31",
3323
+ "20:32",
3324
+ "20:37",
3325
+ "20:38",
3326
+ "20:39",
3327
+ "20:40",
3328
+ "20:42",
3329
+ "20:43",
3330
+ "20:44",
3331
+ "20:45",
3332
+ "20:47",
3333
+ "20:48",
3334
+ "20:49",
3335
+ "20:50",
3336
+ "20:52",
3337
+ "20:54",
3338
+ "20:55",
3339
+ "20:56",
3340
+ "20:58",
3341
+ "20:59",
3342
+ "20th",
3343
+ "21:00",
3344
+ "21:01",
3345
+ "21:02",
3346
+ "21:03",
3347
+ "21:04",
3348
+ "21:05",
3349
+ "21:06",
3350
+ "21:07",
3351
+ "21:08",
3352
+ "21:10",
3353
+ "21:11",
3354
+ "21:14",
3355
+ "21:15",
3356
+ "21:16",
3357
+ "21:17",
3358
+ "21:18",
3359
+ "21:20",
3360
+ "21:21",
3361
+ "21:22",
3362
+ "21:23",
3363
+ "21:24",
3364
+ "21:25",
3365
+ "21:26",
3366
+ "21:27",
3367
+ "21:28",
3368
+ "21:29",
3369
+ "21:30",
3370
+ "21:31",
3371
+ "21:32",
3372
+ "21:33",
3373
+ "21:34",
3374
+ "21:35",
3375
+ "21:36",
3376
+ "21:37",
3377
+ "21:38",
3378
+ "21:39",
3379
+ "21:43",
3380
+ "21:44",
3381
+ "21:45",
3382
+ "21:48",
3383
+ "21:49",
3384
+ "21:51",
3385
+ "21:52",
3386
+ "21:54",
3387
+ "21:55",
3388
+ "21:56",
3389
+ "21:57",
3390
+ "21:58",
3391
+ "21:59",
3392
+ "21st",
3393
+ "22:01",
3394
+ "22:02",
3395
+ "22:03",
3396
+ "22:04",
3397
+ "22:05",
3398
+ "22:06",
3399
+ "22:07",
3400
+ "22:08",
3401
+ "22:10",
3402
+ "22:11",
3403
+ "22:13",
3404
+ "22:14",
3405
+ "22:15",
3406
+ "22:16",
3407
+ "22:18",
3408
+ "22:19",
3409
+ "22:20",
3410
+ "22:23",
3411
+ "22:24",
3412
+ "22:26",
3413
+ "22:27",
3414
+ "22:28",
3415
+ "22:29",
3416
+ "22:31",
3417
+ "22:32",
3418
+ "22:35",
3419
+ "22:36",
3420
+ "22:37",
3421
+ "22:39",
3422
+ "22:42",
3423
+ "22:43",
3424
+ "22:44",
3425
+ "22:45",
3426
+ "22:46",
3427
+ "22:48",
3428
+ "22:51",
3429
+ "22:54",
3430
+ "22:55",
3431
+ "22:56",
3432
+ "22:57",
3433
+ "22:58",
3434
+ "22:59",
3435
+ "22nd",
3436
+ "23:00",
3437
+ "23:01",
3438
+ "23:02",
3439
+ "23:05",
3440
+ "23:06",
3441
+ "23:07",
3442
+ "23:08",
3443
+ "23:10",
3444
+ "23:11",
3445
+ "23:13",
3446
+ "23:14",
3447
+ "23:15",
3448
+ "23:16",
3449
+ "23:18",
3450
+ "23:19",
3451
+ "23:21",
3452
+ "23:23",
3453
+ "23:25",
3454
+ "23:26",
3455
+ "23:27",
3456
+ "23:28",
3457
+ "23:30",
3458
+ "23:32",
3459
+ "23:34",
3460
+ "23:35",
3461
+ "23:36",
3462
+ "23:37",
3463
+ "23:40",
3464
+ "23:42",
3465
+ "23:44",
3466
+ "23:45",
3467
+ "23:46",
3468
+ "23:48",
3469
+ "23:49",
3470
+ "23:51",
3471
+ "23:52",
3472
+ "23:54",
3473
+ "23:56",
3474
+ "23:58",
3475
+ "23:59",
3476
+ "23rd",
3477
+ "24th",
3478
+ "25th",
3479
+ "26th",
3480
+ "27th",
3481
+ "28th",
3482
+ "29th",
3483
+ "2:01",
3484
+ "2:01o'clock",
3485
+ "2:03AM",
3486
+ "2:03am",
3487
+ "2:04",
3488
+ "2:04p.m",
3489
+ "2:04pm",
3490
+ "2:05PM",
3491
+ "2:05pm",
3492
+ "2:06",
3493
+ "2:07",
3494
+ "2:09pm",
3495
+ "2:10",
3496
+ "2:11P.M.",
3497
+ "2:11p.m.",
3498
+ "2:13PM",
3499
+ "2:13pm",
3500
+ "2:14o'clock",
3501
+ "2:15",
3502
+ "2:16o'clock",
3503
+ "2:21PM",
3504
+ "2:21pm",
3505
+ "2:22",
3506
+ "2:26P.M.",
3507
+ "2:26p.m.",
3508
+ "2:27",
3509
+ "2:29a.m",
3510
+ "2:30",
3511
+ "2:31",
3512
+ "2:37",
3513
+ "2:38",
3514
+ "2:38p.m",
3515
+ "2:39",
3516
+ "2:40p.m",
3517
+ "2:41p.m",
3518
+ "2:42pm",
3519
+ "2:43PM",
3520
+ "2:43pm",
3521
+ "2:44pm",
3522
+ "2:45",
3523
+ "2:45AM",
3524
+ "2:45am",
3525
+ "2:46P.M.",
3526
+ "2:46p.m.",
3527
+ "2:47",
3528
+ "2:47P.M.",
3529
+ "2:47p.m.",
3530
+ "2:48",
3531
+ "2:49",
3532
+ "2:52",
3533
+ "2:53p.m",
3534
+ "2:54pm",
3535
+ "2:56",
3536
+ "2:58",
3537
+ "2:58pm",
3538
+ "2:59",
3539
+ "2AM",
3540
+ "2PM",
3541
+ "2a.m",
3542
+ "2a.m.",
3543
+ "2am",
3544
+ "2at",
3545
+ "2nd",
3546
+ "2p.m",
3547
+ "2p.m.",
3548
+ "2pm",
3549
+ "2th",
3550
+ "3",
3551
+ "3/02",
3552
+ "3/02/2025",
3553
+ "3/04",
3554
+ "3/04/2027",
3555
+ "3/07/2025",
3556
+ "3/07/2027",
3557
+ "3/08",
3558
+ "3/08/2024",
3559
+ "3/09",
3560
+ "3/1",
3561
+ "3/10",
3562
+ "3/10/2025",
3563
+ "3/10/2026",
3564
+ "3/12",
3565
+ "3/12/2024",
3566
+ "3/12/2025",
3567
+ "3/13",
3568
+ "3/14",
3569
+ "3/16",
3570
+ "3/16/2025",
3571
+ "3/16/2026",
3572
+ "3/17",
3573
+ "3/18",
3574
+ "3/19",
3575
+ "3/19/2027",
3576
+ "3/2",
3577
+ "3/2/2026",
3578
+ "3/20",
3579
+ "3/20/2026",
3580
+ "3/23",
3581
+ "3/23/2024",
3582
+ "3/23/2025",
3583
+ "3/23/2026",
3584
+ "3/24",
3585
+ "3/25",
3586
+ "3/25/2026",
3587
+ "3/26",
3588
+ "3/26/2025",
3589
+ "3/27",
3590
+ "3/27/2024",
3591
+ "3/27/2026",
3592
+ "3/28/2026",
3593
+ "3/29/2027",
3594
+ "3/3",
3595
+ "3/3/2024",
3596
+ "3/3/2025",
3597
+ "3/30",
3598
+ "3/30/2026",
3599
+ "3/31/2025",
3600
+ "3/4/2027",
3601
+ "3/5",
3602
+ "3/5/2024",
3603
+ "3/6/2026",
3604
+ "3/7",
3605
+ "3/7/2026",
3606
+ "3/8",
3607
+ "3/8/2024",
3608
+ "3/9",
3609
+ "3/9/2025",
3610
+ "3/9/2026",
3611
+ "30th",
3612
+ "31st",
3613
+ "33",
3614
+ "333",
3615
+ "3:01",
3616
+ "3:01PM",
3617
+ "3:01pm",
3618
+ "3:02a.m",
3619
+ "3:02pm",
3620
+ "3:03PM",
3621
+ "3:03pm",
3622
+ "3:04",
3623
+ "3:04pm",
3624
+ "3:05PM",
3625
+ "3:05pm",
3626
+ "3:06",
3627
+ "3:07pm",
3628
+ "3:09",
3629
+ "3:09P.M.",
3630
+ "3:09p.m.",
3631
+ "3:12",
3632
+ "3:18p.m",
3633
+ "3:19p.m",
3634
+ "3:20",
3635
+ "3:20o'clock",
3636
+ "3:22",
3637
+ "3:28A.M.",
3638
+ "3:28a.m.",
3639
+ "3:29PM",
3640
+ "3:29a.m",
3641
+ "3:29pm",
3642
+ "3:32P.M.",
3643
+ "3:32p.m.",
3644
+ "3:33pm",
3645
+ "3:35pm",
3646
+ "3:37",
3647
+ "3:37pm",
3648
+ "3:38",
3649
+ "3:39",
3650
+ "3:41",
3651
+ "3:42PM",
3652
+ "3:42pm",
3653
+ "3:43am",
3654
+ "3:45",
3655
+ "3:46P.M.",
3656
+ "3:46p.m.",
3657
+ "3:47",
3658
+ "3:51pm",
3659
+ "3:52",
3660
+ "3:53",
3661
+ "3:55",
3662
+ "3AM",
3663
+ "3PM",
3664
+ "3a.m",
3665
+ "3a.m.",
3666
+ "3am",
3667
+ "3at",
3668
+ "3p.m",
3669
+ "3p.m.",
3670
+ "3pm",
3671
+ "3rd",
3672
+ "3th",
3673
+ "4",
3674
+ "4/01",
3675
+ "4/02",
3676
+ "4/04",
3677
+ "4/1",
3678
+ "4/1/2026",
3679
+ "4/10",
3680
+ "4/10/2026",
3681
+ "4/11",
3682
+ "4/11/2025",
3683
+ "4/12/2024",
3684
+ "4/12/2025",
3685
+ "4/12/2027",
3686
+ "4/13",
3687
+ "4/13/2024",
3688
+ "4/15",
3689
+ "4/16/2027",
3690
+ "4/17",
3691
+ "4/19",
3692
+ "4/2",
3693
+ "4/20/2025",
3694
+ "4/21",
3695
+ "4/21/2027",
3696
+ "4/22/2026",
3697
+ "4/22/2027",
3698
+ "4/24",
3699
+ "4/24/2024",
3700
+ "4/25",
3701
+ "4/26/2024",
3702
+ "4/26/2026",
3703
+ "4/26/2027",
3704
+ "4/27/2026",
3705
+ "4/28",
3706
+ "4/28/2025",
3707
+ "4/28/2026",
3708
+ "4/29/2024",
3709
+ "4/3",
3710
+ "4/30",
3711
+ "4/4",
3712
+ "4/5",
3713
+ "4/6",
3714
+ "4/6/2026",
3715
+ "4/7",
3716
+ "4/8",
3717
+ "4/8/2025",
3718
+ "4/9",
3719
+ "4:00a.m",
3720
+ "4:01p.m",
3721
+ "4:05",
3722
+ "4:07P.M.",
3723
+ "4:07p.m.",
3724
+ "4:10PM",
3725
+ "4:10pm",
3726
+ "4:11",
3727
+ "4:13",
3728
+ "4:15",
3729
+ "4:16p.m",
3730
+ "4:19PM",
3731
+ "4:19pm",
3732
+ "4:20",
3733
+ "4:21",
3734
+ "4:24",
3735
+ "4:28",
3736
+ "4:29pm",
3737
+ "4:30",
3738
+ "4:31PM",
3739
+ "4:31pm",
3740
+ "4:32",
3741
+ "4:34a.m",
3742
+ "4:36",
3743
+ "4:38",
3744
+ "4:38P.M.",
3745
+ "4:38o'clock",
3746
+ "4:38p.m.",
3747
+ "4:39o'clock",
3748
+ "4:40",
3749
+ "4:41A.M.",
3750
+ "4:41P.M.",
3751
+ "4:41a.m.",
3752
+ "4:41p.m.",
3753
+ "4:41pm",
3754
+ "4:42P.M.",
3755
+ "4:42p.m.",
3756
+ "4:43PM",
3757
+ "4:43pm",
3758
+ "4:44p.m",
3759
+ "4:45",
3760
+ "4:48PM",
3761
+ "4:48pm",
3762
+ "4:49o'clock",
3763
+ "4:50o'clock",
3764
+ "4:52",
3765
+ "4:53PM",
3766
+ "4:53pm",
3767
+ "4:55",
3768
+ "4:56",
3769
+ "4:57p.m",
3770
+ "4:58o'clock",
3771
+ "4AM",
3772
+ "4PM",
3773
+ "4a.m",
3774
+ "4a.m.",
3775
+ "4am",
3776
+ "4at",
3777
+ "4p.m",
3778
+ "4p.m.",
3779
+ "4pm",
3780
+ "4th",
3781
+ "5",
3782
+ "5/02/2025",
3783
+ "5/02/2026",
3784
+ "5/03",
3785
+ "5/04",
3786
+ "5/04/2025",
3787
+ "5/05",
3788
+ "5/09",
3789
+ "5/1",
3790
+ "5/10",
3791
+ "5/10/2025",
3792
+ "5/11",
3793
+ "5/12",
3794
+ "5/13",
3795
+ "5/14",
3796
+ "5/14/2026",
3797
+ "5/15",
3798
+ "5/16/2025",
3799
+ "5/16/2027",
3800
+ "5/19/2024",
3801
+ "5/2",
3802
+ "5/2/2026",
3803
+ "5/20/2025",
3804
+ "5/20/2026",
3805
+ "5/21",
3806
+ "5/21/2024",
3807
+ "5/23",
3808
+ "5/23/2024",
3809
+ "5/23/2025",
3810
+ "5/23/2026",
3811
+ "5/24",
3812
+ "5/24/2027",
3813
+ "5/25",
3814
+ "5/27",
3815
+ "5/27/2025",
3816
+ "5/28/2025",
3817
+ "5/29",
3818
+ "5/29/2026",
3819
+ "5/3",
3820
+ "5/30",
3821
+ "5/30/2024",
3822
+ "5/30/2026",
3823
+ "5/30/2027",
3824
+ "5/31",
3825
+ "5/5",
3826
+ "5/5/2025",
3827
+ "5/6",
3828
+ "5/6/2024",
3829
+ "5/7",
3830
+ "5/7/2025",
3831
+ "5/8",
3832
+ "5/8/2026",
3833
+ "5/9",
3834
+ "5:00pm",
3835
+ "5:01",
3836
+ "5:05",
3837
+ "5:06pm",
3838
+ "5:07P.M.",
3839
+ "5:07p.m.",
3840
+ "5:08",
3841
+ "5:09",
3842
+ "5:09pm",
3843
+ "5:10",
3844
+ "5:11",
3845
+ "5:13o'clock",
3846
+ "5:14",
3847
+ "5:14AM",
3848
+ "5:14am",
3849
+ "5:15",
3850
+ "5:16",
3851
+ "5:16PM",
3852
+ "5:16pm",
3853
+ "5:17",
3854
+ "5:18AM",
3855
+ "5:18am",
3856
+ "5:19PM",
3857
+ "5:19pm",
3858
+ "5:20pm",
3859
+ "5:21P.M.",
3860
+ "5:21PM",
3861
+ "5:21p.m.",
3862
+ "5:21pm",
3863
+ "5:25",
3864
+ "5:26",
3865
+ "5:28PM",
3866
+ "5:28pm",
3867
+ "5:29",
3868
+ "5:33a.m",
3869
+ "5:34P.M.",
3870
+ "5:34a.m",
3871
+ "5:34p.m.",
3872
+ "5:36P.M.",
3873
+ "5:36p.m.",
3874
+ "5:37",
3875
+ "5:38",
3876
+ "5:38PM",
3877
+ "5:38pm",
3878
+ "5:40",
3879
+ "5:40PM",
3880
+ "5:40pm",
3881
+ "5:41",
3882
+ "5:41p.m",
3883
+ "5:41pm",
3884
+ "5:43",
3885
+ "5:45",
3886
+ "5:46",
3887
+ "5:46o'clock",
3888
+ "5:47",
3889
+ "5:48",
3890
+ "5:48pm",
3891
+ "5:49pm",
3892
+ "5:50",
3893
+ "5:50A.M.",
3894
+ "5:50P.M.",
3895
+ "5:50a.m.",
3896
+ "5:50p.m.",
3897
+ "5:52am",
3898
+ "5:53",
3899
+ "5:53o'clock",
3900
+ "5:54P.M.",
3901
+ "5:54p.m.",
3902
+ "5:56AM",
3903
+ "5:56am",
3904
+ "5:58pm",
3905
+ "5:59",
3906
+ "5AM",
3907
+ "5PM",
3908
+ "5a.m",
3909
+ "5a.m.",
3910
+ "5am",
3911
+ "5at",
3912
+ "5p.m",
3913
+ "5p.m.",
3914
+ "5pm",
3915
+ "5th",
3916
+ "6",
3917
+ "6/02",
3918
+ "6/03/2027",
3919
+ "6/06/2025",
3920
+ "6/08",
3921
+ "6/09/2024",
3922
+ "6/1",
3923
+ "6/10",
3924
+ "6/11",
3925
+ "6/13",
3926
+ "6/13/2024",
3927
+ "6/14/2025",
3928
+ "6/15/2025",
3929
+ "6/16",
3930
+ "6/17",
3931
+ "6/18",
3932
+ "6/18/2024",
3933
+ "6/18/2025",
3934
+ "6/19/2024",
3935
+ "6/19/2026",
3936
+ "6/2/2024",
3937
+ "6/20/2027",
3938
+ "6/23",
3939
+ "6/24",
3940
+ "6/24/2024",
3941
+ "6/27",
3942
+ "6/28",
3943
+ "6/3",
3944
+ "6/3/2026",
3945
+ "6/4",
3946
+ "6/5",
3947
+ "6/6",
3948
+ "6/7",
3949
+ "6/7/2026",
3950
+ "6/8",
3951
+ "6/8/2025",
3952
+ "6/9",
3953
+ "6:04",
3954
+ "6:04o'clock",
3955
+ "6:06p.m",
3956
+ "6:07",
3957
+ "6:07p.m",
3958
+ "6:08",
3959
+ "6:09pm",
3960
+ "6:10",
3961
+ "6:11",
3962
+ "6:11pm",
3963
+ "6:14",
3964
+ "6:15",
3965
+ "6:16",
3966
+ "6:16AM",
3967
+ "6:16am",
3968
+ "6:17AM",
3969
+ "6:17am",
3970
+ "6:18",
3971
+ "6:18PM",
3972
+ "6:18pm",
3973
+ "6:20",
3974
+ "6:21P.M.",
3975
+ "6:21p.m.",
3976
+ "6:23o'clock",
3977
+ "6:25PM",
3978
+ "6:25pm",
3979
+ "6:26",
3980
+ "6:27",
3981
+ "6:28",
3982
+ "6:32PM",
3983
+ "6:32p.m",
3984
+ "6:32pm",
3985
+ "6:33",
3986
+ "6:33P.M.",
3987
+ "6:33p.m.",
3988
+ "6:35",
3989
+ "6:35PM",
3990
+ "6:35pm",
3991
+ "6:36",
3992
+ "6:37pm",
3993
+ "6:38",
3994
+ "6:38o'clock",
3995
+ "6:39",
3996
+ "6:40",
3997
+ "6:41p.m",
3998
+ "6:42",
3999
+ "6:43",
4000
+ "6:43o'clock",
4001
+ "6:45",
4002
+ "6:47",
4003
+ "6:49",
4004
+ "6:50",
4005
+ "6:50am",
4006
+ "6:51PM",
4007
+ "6:51pm",
4008
+ "6:52PM",
4009
+ "6:52pm",
4010
+ "6:54",
4011
+ "6:54PM",
4012
+ "6:54pm",
4013
+ "6:55PM",
4014
+ "6:55am",
4015
+ "6:55pm",
4016
+ "6:58AM",
4017
+ "6:58am",
4018
+ "6AM",
4019
+ "6PM",
4020
+ "6a.m",
4021
+ "6a.m.",
4022
+ "6am",
4023
+ "6at",
4024
+ "6p.m",
4025
+ "6p.m.",
4026
+ "6pm",
4027
+ "6th",
4028
+ "7",
4029
+ "7/04/2025",
4030
+ "7/08",
4031
+ "7/08/2026",
4032
+ "7/1",
4033
+ "7/1/2026",
4034
+ "7/11",
4035
+ "7/12",
4036
+ "7/12/2025",
4037
+ "7/13/2024",
4038
+ "7/13/2026",
4039
+ "7/14",
4040
+ "7/14/2025",
4041
+ "7/15",
4042
+ "7/15/2025",
4043
+ "7/15/2026",
4044
+ "7/16/2026",
4045
+ "7/17",
4046
+ "7/17/2027",
4047
+ "7/18/2024",
4048
+ "7/18/2025",
4049
+ "7/19/2025",
4050
+ "7/19/2026",
4051
+ "7/2",
4052
+ "7/2/2024",
4053
+ "7/20/2025",
4054
+ "7/20/2026",
4055
+ "7/22",
4056
+ "7/22/2025",
4057
+ "7/24",
4058
+ "7/24/2025",
4059
+ "7/25/2025",
4060
+ "7/25/2027",
4061
+ "7/26",
4062
+ "7/27/2024",
4063
+ "7/28",
4064
+ "7/28/2025",
4065
+ "7/29",
4066
+ "7/3",
4067
+ "7/30/2024",
4068
+ "7/30/2026",
4069
+ "7/30/2027",
4070
+ "7/31",
4071
+ "7/4",
4072
+ "7/4/2026",
4073
+ "7/5",
4074
+ "7/5/2026",
4075
+ "7/6",
4076
+ "7/7/2024",
4077
+ "7/7/2026",
4078
+ "7/8",
4079
+ "7/9",
4080
+ "7:03",
4081
+ "7:03PM",
4082
+ "7:03pm",
4083
+ "7:04",
4084
+ "7:09am",
4085
+ "7:09pm",
4086
+ "7:11",
4087
+ "7:12AM",
4088
+ "7:12am",
4089
+ "7:15pm",
4090
+ "7:16",
4091
+ "7:17",
4092
+ "7:17o'clock",
4093
+ "7:21P.M.",
4094
+ "7:21am",
4095
+ "7:21p.m.",
4096
+ "7:24",
4097
+ "7:25",
4098
+ "7:25pm",
4099
+ "7:28",
4100
+ "7:29",
4101
+ "7:31AM",
4102
+ "7:31am",
4103
+ "7:34",
4104
+ "7:35pm",
4105
+ "7:36",
4106
+ "7:36PM",
4107
+ "7:36pm",
4108
+ "7:38PM",
4109
+ "7:38o'clock",
4110
+ "7:38pm",
4111
+ "7:40",
4112
+ "7:40am",
4113
+ "7:45",
4114
+ "7:49o'clock",
4115
+ "7:52p.m",
4116
+ "7:59",
4117
+ "7:59pm",
4118
+ "7AM",
4119
+ "7PM",
4120
+ "7a.m",
4121
+ "7a.m.",
4122
+ "7am",
4123
+ "7at",
4124
+ "7p.m",
4125
+ "7p.m.",
4126
+ "7pm",
4127
+ "7th",
4128
+ "8",
4129
+ "8)",
4130
+ "8-",
4131
+ "8-)",
4132
+ "8-D",
4133
+ "8-d",
4134
+ "8/01",
4135
+ "8/02/2024",
4136
+ "8/04/2027",
4137
+ "8/06/2026",
4138
+ "8/07/2024",
4139
+ "8/09/2024",
4140
+ "8/1",
4141
+ "8/10",
4142
+ "8/10/2025",
4143
+ "8/10/2027",
4144
+ "8/12",
4145
+ "8/13",
4146
+ "8/13/2025",
4147
+ "8/14",
4148
+ "8/14/2026",
4149
+ "8/15",
4150
+ "8/17/2027",
4151
+ "8/19/2024",
4152
+ "8/2",
4153
+ "8/20/2024",
4154
+ "8/20/2025",
4155
+ "8/20/2026",
4156
+ "8/21/2024",
4157
+ "8/22",
4158
+ "8/23/2024",
4159
+ "8/24",
4160
+ "8/25",
4161
+ "8/25/2024",
4162
+ "8/26",
4163
+ "8/26/2024",
4164
+ "8/26/2026",
4165
+ "8/27/2024",
4166
+ "8/28",
4167
+ "8/29",
4168
+ "8/29/2026",
4169
+ "8/3",
4170
+ "8/3/2026",
4171
+ "8/31",
4172
+ "8/4",
4173
+ "8/5",
4174
+ "8/5/2024",
4175
+ "8/5/2025",
4176
+ "8/6/2024",
4177
+ "8/7",
4178
+ "8/7/2024",
4179
+ "8/7/2026",
4180
+ "8/8",
4181
+ "8/9",
4182
+ "8:00",
4183
+ "8:00AM",
4184
+ "8:00am",
4185
+ "8:01",
4186
+ "8:01A.M.",
4187
+ "8:01a.m.",
4188
+ "8:04",
4189
+ "8:07am",
4190
+ "8:09",
4191
+ "8:09pm",
4192
+ "8:11pm",
4193
+ "8:12",
4194
+ "8:14pm",
4195
+ "8:15",
4196
+ "8:15P.M.",
4197
+ "8:15p.m.",
4198
+ "8:18",
4199
+ "8:21A.M.",
4200
+ "8:21a.m.",
4201
+ "8:21pm",
4202
+ "8:23A.M.",
4203
+ "8:23a.m.",
4204
+ "8:26",
4205
+ "8:27",
4206
+ "8:31",
4207
+ "8:34",
4208
+ "8:37",
4209
+ "8:38PM",
4210
+ "8:38pm",
4211
+ "8:39o'clock",
4212
+ "8:40",
4213
+ "8:40PM",
4214
+ "8:40p.m",
4215
+ "8:40pm",
4216
+ "8:41P.M.",
4217
+ "8:41PM",
4218
+ "8:41p.m.",
4219
+ "8:41pm",
4220
+ "8:42",
4221
+ "8:43A.M.",
4222
+ "8:43a.m.",
4223
+ "8:45pm",
4224
+ "8:46P.M.",
4225
+ "8:46p.m.",
4226
+ "8:47",
4227
+ "8:47p.m",
4228
+ "8:48p.m",
4229
+ "8:49am",
4230
+ "8:50A.M.",
4231
+ "8:50a.m.",
4232
+ "8:54",
4233
+ "8:54pm",
4234
+ "8:59PM",
4235
+ "8:59pm",
4236
+ "8AM",
4237
+ "8D",
4238
+ "8PM",
4239
+ "8a.m",
4240
+ "8a.m.",
4241
+ "8am",
4242
+ "8at",
4243
+ "8d",
4244
+ "8p.m",
4245
+ "8p.m.",
4246
+ "8pm",
4247
+ "8th",
4248
+ "9",
4249
+ "9/01/2024",
4250
+ "9/02",
4251
+ "9/02/2025",
4252
+ "9/04/2026",
4253
+ "9/07/2026",
4254
+ "9/09/2027",
4255
+ "9/11",
4256
+ "9/13",
4257
+ "9/14/2026",
4258
+ "9/15",
4259
+ "9/15/2026",
4260
+ "9/17/2025",
4261
+ "9/18",
4262
+ "9/2",
4263
+ "9/21",
4264
+ "9/21/2025",
4265
+ "9/21/2026",
4266
+ "9/22",
4267
+ "9/23/2026",
4268
+ "9/24",
4269
+ "9/24/2026",
4270
+ "9/25/2025",
4271
+ "9/26",
4272
+ "9/26/2025",
4273
+ "9/29",
4274
+ "9/29/2026",
4275
+ "9/3",
4276
+ "9/3/2025",
4277
+ "9/3/2026",
4278
+ "9/30",
4279
+ "9/30/2024",
4280
+ "9/4",
4281
+ "9/5",
4282
+ "9/5/2025",
4283
+ "9/6",
4284
+ "9/7",
4285
+ "9/8",
4286
+ "9:00a.m",
4287
+ "9:00p.m",
4288
+ "9:01",
4289
+ "9:03p.m",
4290
+ "9:03pm",
4291
+ "9:04o'clock",
4292
+ "9:07pm",
4293
+ "9:09",
4294
+ "9:14AM",
4295
+ "9:14am",
4296
+ "9:15PM",
4297
+ "9:15pm",
4298
+ "9:18",
4299
+ "9:20AM",
4300
+ "9:20PM",
4301
+ "9:20am",
4302
+ "9:20pm",
4303
+ "9:21",
4304
+ "9:21a.m",
4305
+ "9:25PM",
4306
+ "9:25pm",
4307
+ "9:28PM",
4308
+ "9:28p.m",
4309
+ "9:28pm",
4310
+ "9:29",
4311
+ "9:29am",
4312
+ "9:30",
4313
+ "9:31P.M.",
4314
+ "9:31p.m.",
4315
+ "9:32PM",
4316
+ "9:32pm",
4317
+ "9:33",
4318
+ "9:33P.M.",
4319
+ "9:33p.m.",
4320
+ "9:34PM",
4321
+ "9:34pm",
4322
+ "9:36",
4323
+ "9:36pm",
4324
+ "9:37PM",
4325
+ "9:37pm",
4326
+ "9:38am",
4327
+ "9:40",
4328
+ "9:40pm",
4329
+ "9:41PM",
4330
+ "9:41pm",
4331
+ "9:42",
4332
+ "9:42AM",
4333
+ "9:42am",
4334
+ "9:43P.M.",
4335
+ "9:43p.m.",
4336
+ "9:46a.m",
4337
+ "9:46pm",
4338
+ "9:47P.M.",
4339
+ "9:47o'clock",
4340
+ "9:47p.m.",
4341
+ "9:48at",
4342
+ "9:48o'clock",
4343
+ "9:49a.m",
4344
+ "9:49pm",
4345
+ "9:51o'clock",
4346
+ "9:56PM",
4347
+ "9:56pm",
4348
+ "9:57",
4349
+ "9:57pm",
4350
+ "9AM",
4351
+ "9PM",
4352
+ "9a.m",
4353
+ "9a.m.",
4354
+ "9am",
4355
+ "9at",
4356
+ "9p.m",
4357
+ "9p.m.",
4358
+ "9pm",
4359
+ "9th",
4360
+ ":",
4361
+ ":'(",
4362
+ ":')",
4363
+ ":'-(",
4364
+ ":'-)",
4365
+ ":(",
4366
+ ":((",
4367
+ ":(((",
4368
+ ":()",
4369
+ ":)",
4370
+ ":))",
4371
+ ":)))",
4372
+ ":*",
4373
+ ":-(",
4374
+ ":-((",
4375
+ ":-(((",
4376
+ ":-)",
4377
+ ":-))",
4378
+ ":-)))",
4379
+ ":-*",
4380
+ ":-/",
4381
+ ":-0",
4382
+ ":-3",
4383
+ ":->",
4384
+ ":-D",
4385
+ ":-O",
4386
+ ":-P",
4387
+ ":-X",
4388
+ ":-]",
4389
+ ":-d",
4390
+ ":-o",
4391
+ ":-p",
4392
+ ":-x",
4393
+ ":-|",
4394
+ ":-}",
4395
+ ":/",
4396
+ ":0",
4397
+ ":00",
4398
+ ":01",
4399
+ ":02",
4400
+ ":03",
4401
+ ":04",
4402
+ ":05",
4403
+ ":06",
4404
+ ":07",
4405
+ ":08",
4406
+ ":09",
4407
+ ":1",
4408
+ ":10",
4409
+ ":11",
4410
+ ":12",
4411
+ ":13",
4412
+ ":14",
4413
+ ":15",
4414
+ ":16",
4415
+ ":17",
4416
+ ":18",
4417
+ ":19",
4418
+ ":20",
4419
+ ":21",
4420
+ ":22",
4421
+ ":23",
4422
+ ":24",
4423
+ ":25",
4424
+ ":26",
4425
+ ":27",
4426
+ ":28",
4427
+ ":29",
4428
+ ":3",
4429
+ ":30",
4430
+ ":31",
4431
+ ":32",
4432
+ ":33",
4433
+ ":34",
4434
+ ":35",
4435
+ ":36",
4436
+ ":37",
4437
+ ":38",
4438
+ ":39",
4439
+ ":40",
4440
+ ":41",
4441
+ ":42",
4442
+ ":43",
4443
+ ":44",
4444
+ ":45",
4445
+ ":46",
4446
+ ":47",
4447
+ ":48",
4448
+ ":49",
4449
+ ":50",
4450
+ ":51",
4451
+ ":52",
4452
+ ":53",
4453
+ ":54",
4454
+ ":55",
4455
+ ":56",
4456
+ ":57",
4457
+ ":58",
4458
+ ":59",
4459
+ ":>",
4460
+ ":D",
4461
+ ":O",
4462
+ ":P",
4463
+ ":X",
4464
+ ":]",
4465
+ ":d",
4466
+ ":o",
4467
+ ":o)",
4468
+ ":p",
4469
+ ":x",
4470
+ ":x)",
4471
+ ":|",
4472
+ ":}",
4473
+ ":\u2019(",
4474
+ ":\u2019)",
4475
+ ":\u2019-(",
4476
+ ":\u2019-)",
4477
+ ";",
4478
+ ";)",
4479
+ ";-)",
4480
+ ";-D",
4481
+ ";-X",
4482
+ ";-d",
4483
+ ";D",
4484
+ ";X",
4485
+ ";_;",
4486
+ ";d",
4487
+ "<",
4488
+ "<.<",
4489
+ "</3",
4490
+ "</d",
4491
+ "<3",
4492
+ "<33",
4493
+ "<333",
4494
+ "<d",
4495
+ "<dd",
4496
+ "<ddd",
4497
+ "<space>",
4498
+ "<xxxx>",
4499
+ "=",
4500
+ "=(",
4501
+ "=)",
4502
+ "=/",
4503
+ "=3",
4504
+ "=D",
4505
+ "=X",
4506
+ "=[",
4507
+ "=]",
4508
+ "=d",
4509
+ "=|",
4510
+ ">",
4511
+ ">.<",
4512
+ ">.>",
4513
+ ">:(",
4514
+ ">:o",
4515
+ ">:x",
4516
+ "><(((*>",
4517
+ "@",
4518
+ "@_@",
4519
+ "A",
4520
+ "A.M",
4521
+ "A.M.",
4522
+ "AM",
4523
+ "AM_TIME_END",
4524
+ "AM_TIME_START",
4525
+ "APR",
4526
+ "APR/30th",
4527
+ "APRIL",
4528
+ "APRIL/13th",
4529
+ "ART",
4530
+ "ARY",
4531
+ "AUG",
4532
+ "AUGUST",
4533
+ "AUGUST/24th",
4534
+ "Add",
4535
+ "Adm",
4536
+ "Adm.",
4537
+ "Ai",
4538
+ "Ak",
4539
+ "Ak.",
4540
+ "Ala",
4541
+ "Ala.",
4542
+ "Alabama",
4543
+ "Alaska",
4544
+ "Apr",
4545
+ "Apr.",
4546
+ "Apr/5th",
4547
+ "April",
4548
+ "April/14th",
4549
+ "April/25th",
4550
+ "April/6th",
4551
+ "Are",
4552
+ "Ariz",
4553
+ "Ariz.",
4554
+ "Arizona",
4555
+ "Ark",
4556
+ "Ark.",
4557
+ "Arkansas",
4558
+ "Arrange",
4559
+ "At",
4560
+ "Aug",
4561
+ "Aug.",
4562
+ "Aug./10th",
4563
+ "August",
4564
+ "B",
4565
+ "BER",
4566
+ "Block",
4567
+ "Book",
4568
+ "Bros",
4569
+ "Bros.",
4570
+ "C",
4571
+ "C'm",
4572
+ "C++",
4573
+ "C.",
4574
+ "Ca",
4575
+ "Calif",
4576
+ "Calif.",
4577
+ "California",
4578
+ "Can",
4579
+ "Cause",
4580
+ "Co",
4581
+ "Co.",
4582
+ "Colo",
4583
+ "Colo.",
4584
+ "Colorado",
4585
+ "Conn",
4586
+ "Conn.",
4587
+ "Connecticut",
4588
+ "Corp",
4589
+ "Corp.",
4590
+ "Cos",
4591
+ "Could",
4592
+ "Coz",
4593
+ "Create",
4594
+ "Cuz",
4595
+ "C\u2019m",
4596
+ "D",
4597
+ "D.",
4598
+ "D.C.",
4599
+ "DATE_END",
4600
+ "DATE_START",
4601
+ "DAY",
4602
+ "DEC",
4603
+ "DEC./23rd",
4604
+ "DECEMBER",
4605
+ "DECEMBER/26th",
4606
+ "DIY",
4607
+ "Dare",
4608
+ "Dec",
4609
+ "Dec.",
4610
+ "December",
4611
+ "December/22nd",
4612
+ "Del",
4613
+ "Del.",
4614
+ "Delaware",
4615
+ "Did",
4616
+ "Do",
4617
+ "Does",
4618
+ "Doin",
4619
+ "Doin'",
4620
+ "Doin\u2019",
4621
+ "Dr",
4622
+ "Dr.",
4623
+ "E",
4624
+ "E.G.",
4625
+ "E.g",
4626
+ "E.g.",
4627
+ "END",
4628
+ "EPT",
4629
+ "F",
4630
+ "F.",
4631
+ "FEB",
4632
+ "FEB,/25th",
4633
+ "FEB./28th",
4634
+ "FEBRUARY",
4635
+ "FEBRUARY/10th",
4636
+ "FEBRUARY/14th",
4637
+ "FRI",
4638
+ "FRIDAY",
4639
+ "Feb",
4640
+ "Feb,/23rd",
4641
+ "Feb.",
4642
+ "Feb./22nd",
4643
+ "February",
4644
+ "February/5th",
4645
+ "Fla",
4646
+ "Fla.",
4647
+ "Florida",
4648
+ "Fri",
4649
+ "Friday",
4650
+ "From",
4651
+ "G",
4652
+ "Ga",
4653
+ "Ga.",
4654
+ "Gen",
4655
+ "Gen.",
4656
+ "Georgia",
4657
+ "Goin",
4658
+ "Goin'",
4659
+ "Goin\u2019",
4660
+ "Gon",
4661
+ "Got",
4662
+ "Gov",
4663
+ "Gov.",
4664
+ "H",
4665
+ "Had",
4666
+ "Has",
4667
+ "Have",
4668
+ "Havin",
4669
+ "Havin'",
4670
+ "Havin\u2019",
4671
+ "He",
4672
+ "He's",
4673
+ "He\u2019s",
4674
+ "How",
4675
+ "How's",
4676
+ "How\u2019s",
4677
+ "I",
4678
+ "I.E.",
4679
+ "I.e",
4680
+ "I.e.",
4681
+ "Ia",
4682
+ "Ia.",
4683
+ "Id",
4684
+ "Id.",
4685
+ "Idaho",
4686
+ "Ill",
4687
+ "Ill.",
4688
+ "Illinois",
4689
+ "Inc",
4690
+ "Inc.",
4691
+ "Ind",
4692
+ "Ind.",
4693
+ "Indiana",
4694
+ "Iowa",
4695
+ "Is",
4696
+ "It",
4697
+ "It's",
4698
+ "It\u2019s",
4699
+ "J",
4700
+ "JAN",
4701
+ "JANUARY",
4702
+ "JUL",
4703
+ "JUL,/5th",
4704
+ "JULY",
4705
+ "JULY/26th",
4706
+ "JUN",
4707
+ "JUN./14th",
4708
+ "JUN/7th",
4709
+ "JUNE",
4710
+ "JUNE/17th",
4711
+ "Jan",
4712
+ "Jan.",
4713
+ "January",
4714
+ "January/14th",
4715
+ "Jr",
4716
+ "Jr.",
4717
+ "Jul",
4718
+ "Jul.",
4719
+ "July",
4720
+ "July/10th",
4721
+ "July/16th",
4722
+ "Jun",
4723
+ "Jun,/15th",
4724
+ "Jun.",
4725
+ "Jun/2nd",
4726
+ "June",
4727
+ "June/12th",
4728
+ "K",
4729
+ "K.",
4730
+ "Kan",
4731
+ "Kan.",
4732
+ "Kans",
4733
+ "Kans.",
4734
+ "Kansas",
4735
+ "Kentucky",
4736
+ "Ky",
4737
+ "Ky.",
4738
+ "L",
4739
+ "La",
4740
+ "La.",
4741
+ "Let",
4742
+ "Let's",
4743
+ "Let\u2019s",
4744
+ "Louisiana",
4745
+ "Lovin",
4746
+ "Lovin'",
4747
+ "Lovin\u2019",
4748
+ "Ltd",
4749
+ "Ltd.",
4750
+ "M",
4751
+ "MAR",
4752
+ "MAR,/25th",
4753
+ "MARCH",
4754
+ "MARCH/7th",
4755
+ "MAY",
4756
+ "MAY./11th",
4757
+ "MAY./2nd",
4758
+ "MAY./9th",
4759
+ "MILITARY_TIME_END",
4760
+ "MILITARY_TIME_START",
4761
+ "MON",
4762
+ "MONDAY",
4763
+ "Ma'am",
4764
+ "Mar",
4765
+ "Mar.",
4766
+ "Mar/28th",
4767
+ "March",
4768
+ "March/22nd",
4769
+ "Mark",
4770
+ "Mass",
4771
+ "Mass.",
4772
+ "Massachusetts",
4773
+ "May",
4774
+ "May./12th",
4775
+ "May./16th",
4776
+ "May/15th",
4777
+ "Ma\u2019am",
4778
+ "Md",
4779
+ "Md.",
4780
+ "Messrs",
4781
+ "Messrs.",
4782
+ "Mich",
4783
+ "Mich.",
4784
+ "Michigan",
4785
+ "Might",
4786
+ "Minn",
4787
+ "Minn.",
4788
+ "Minnesota",
4789
+ "Miss",
4790
+ "Miss.",
4791
+ "Mississippi",
4792
+ "Mo",
4793
+ "Mo.",
4794
+ "Mon",
4795
+ "Monday",
4796
+ "Mont",
4797
+ "Mont.",
4798
+ "Mount",
4799
+ "Mr",
4800
+ "Mr.",
4801
+ "Mrs",
4802
+ "Mrs.",
4803
+ "Ms",
4804
+ "Ms.",
4805
+ "Mt",
4806
+ "Mt.",
4807
+ "Must",
4808
+ "N",
4809
+ "N.C.",
4810
+ "N.D.",
4811
+ "N.H.",
4812
+ "N.J.",
4813
+ "N.M.",
4814
+ "N.Y.",
4815
+ "NOV",
4816
+ "NOV,/13th",
4817
+ "NOV./25th",
4818
+ "NOVEMBER",
4819
+ "Neb",
4820
+ "Neb.",
4821
+ "Nebr",
4822
+ "Nebr.",
4823
+ "Nebraska",
4824
+ "Need",
4825
+ "Nev",
4826
+ "Nev.",
4827
+ "Nevada",
4828
+ "New Hampshire",
4829
+ "New Jersey",
4830
+ "New Mexico",
4831
+ "New York",
4832
+ "North Carolina",
4833
+ "North Dakota",
4834
+ "Not",
4835
+ "Nothin",
4836
+ "Nothin'",
4837
+ "Nothin\u2019",
4838
+ "Nov",
4839
+ "Nov.",
4840
+ "Nov/30th",
4841
+ "November",
4842
+ "November/19th",
4843
+ "November/1st",
4844
+ "Nuthin",
4845
+ "Nuthin'",
4846
+ "Nuthin\u2019",
4847
+ "O",
4848
+ "O'clock",
4849
+ "O.O",
4850
+ "O.o",
4851
+ "OCT",
4852
+ "OCT,/12th",
4853
+ "OCTOBER",
4854
+ "O_O",
4855
+ "O_o",
4856
+ "Oct",
4857
+ "Oct.",
4858
+ "Oct./22nd",
4859
+ "Oct./27th",
4860
+ "Oct/5th",
4861
+ "October",
4862
+ "Okla",
4863
+ "Okla.",
4864
+ "Oklahoma",
4865
+ "Ol",
4866
+ "Ol'",
4867
+ "Ol\u2019",
4868
+ "On",
4869
+ "Ore",
4870
+ "Ore.",
4871
+ "Oregon",
4872
+ "Ought",
4873
+ "O\u2019clock",
4874
+ "P",
4875
+ "P.M.",
4876
+ "PM",
4877
+ "PM_TIME_END",
4878
+ "PM_TIME_START",
4879
+ "Pa",
4880
+ "Pa.",
4881
+ "Pencil",
4882
+ "Pennsylvania",
4883
+ "Ph",
4884
+ "Ph.D.",
4885
+ "Prof",
4886
+ "Prof.",
4887
+ "Put",
4888
+ "R",
4889
+ "RCH",
4890
+ "REASON",
4891
+ "RIL",
4892
+ "ROOT",
4893
+ "Remind",
4894
+ "Rep",
4895
+ "Rep.",
4896
+ "Reserve",
4897
+ "Rev",
4898
+ "Rev.",
4899
+ "S",
4900
+ "S.C.",
4901
+ "SAT",
4902
+ "SATURDAY",
4903
+ "SEP",
4904
+ "SEP./27th",
4905
+ "SEPT",
4906
+ "SEPT/8th",
4907
+ "SEPTEMBER",
4908
+ "SON",
4909
+ "SUN",
4910
+ "SUNDAY",
4911
+ "Sat",
4912
+ "Saturday",
4913
+ "Schedule",
4914
+ "Sen",
4915
+ "Sen.",
4916
+ "Sep",
4917
+ "Sep.",
4918
+ "Sept",
4919
+ "Sept.",
4920
+ "Sept/28th",
4921
+ "September",
4922
+ "September/19th",
4923
+ "Set",
4924
+ "Sha",
4925
+ "She",
4926
+ "She's",
4927
+ "She\u2019s",
4928
+ "Should",
4929
+ "Somethin",
4930
+ "Somethin'",
4931
+ "Somethin\u2019",
4932
+ "South Carolina",
4933
+ "St",
4934
+ "St.",
4935
+ "Starting",
4936
+ "Sun",
4937
+ "Sunday",
4938
+ "T",
4939
+ "THU",
4940
+ "THURSDAY",
4941
+ "TUE",
4942
+ "TUESDAY",
4943
+ "Tenn",
4944
+ "Tenn.",
4945
+ "Tennessee",
4946
+ "That",
4947
+ "That's",
4948
+ "That\u2019s",
4949
+ "There",
4950
+ "There's",
4951
+ "There\u2019s",
4952
+ "These",
4953
+ "They",
4954
+ "This",
4955
+ "This's",
4956
+ "This\u2019s",
4957
+ "Those",
4958
+ "Thu",
4959
+ "Thursday",
4960
+ "Tue",
4961
+ "Tuesday",
4962
+ "ULY",
4963
+ "UNE",
4964
+ "UST",
4965
+ "V",
4966
+ "V.V",
4967
+ "V_V",
4968
+ "Va",
4969
+ "Va.",
4970
+ "Virginia",
4971
+ "W",
4972
+ "WED",
4973
+ "WEDNESDAY",
4974
+ "Was",
4975
+ "Wash",
4976
+ "Wash.",
4977
+ "Washington",
4978
+ "We",
4979
+ "Wednesday",
4980
+ "Were",
4981
+ "What",
4982
+ "What's",
4983
+ "What\u2019s",
4984
+ "When",
4985
+ "When's",
4986
+ "When\u2019s",
4987
+ "Where",
4988
+ "Where's",
4989
+ "Where\u2019s",
4990
+ "Who",
4991
+ "Who's",
4992
+ "Who\u2019s",
4993
+ "Why",
4994
+ "Why's",
4995
+ "Why\u2019s",
4996
+ "Wis",
4997
+ "Wis.",
4998
+ "Wisconsin",
4999
+ "Wo",
5000
+ "Would",
5001
+ "X'x",
5002
+ "X'xxxx",
5003
+ "X++",
5004
+ "X.",
5005
+ "X.X",
5006
+ "X.X.",
5007
+ "X.x",
5008
+ "X.x.",
5009
+ "XD",
5010
+ "XDD",
5011
+ "XX",
5012
+ "XXX",
5013
+ "XXX,/ddxx",
5014
+ "XXX,/dxx",
5015
+ "XXX./ddxx",
5016
+ "XXX./dxx",
5017
+ "XXX/ddxx",
5018
+ "XXX/dxx",
5019
+ "XXXX",
5020
+ "XXXX/ddxx",
5021
+ "XXXX/dxx",
5022
+ "XXXX_XXX",
5023
+ "XXXX_XXXX",
5024
+ "XXXX_XXXX_XXX",
5025
+ "XXXX_XXXX_XXXX",
5026
+ "XX_XXXX_XXX",
5027
+ "XX_XXXX_XXXX",
5028
+ "X_X",
5029
+ "X_x",
5030
+ "Xx",
5031
+ "Xx'",
5032
+ "Xx'x",
5033
+ "Xx'xx",
5034
+ "Xx.",
5035
+ "Xx.X.",
5036
+ "Xxx",
5037
+ "Xxx'x",
5038
+ "Xxx,/ddxx",
5039
+ "Xxx.",
5040
+ "Xxx./ddxx",
5041
+ "Xxx/ddxx",
5042
+ "Xxx/dxx",
5043
+ "Xxxx",
5044
+ "Xxxx'",
5045
+ "Xxxx'x",
5046
+ "Xxxx.",
5047
+ "Xxxx/ddxx",
5048
+ "Xxxxx",
5049
+ "Xxxxx'",
5050
+ "Xxxxx'x",
5051
+ "Xxxxx.",
5052
+ "Xxxxx/ddxx",
5053
+ "Xxxxx/dxx",
5054
+ "Xxxxx\u2019",
5055
+ "Xxxxx\u2019x",
5056
+ "Xxxx\u2019",
5057
+ "Xxxx\u2019x",
5058
+ "Xxx\u2019x",
5059
+ "Xx\u2019",
5060
+ "Xx\u2019x",
5061
+ "Xx\u2019xx",
5062
+ "X\u2019x",
5063
+ "X\u2019xxxx",
5064
+ "Y",
5065
+ "You",
5066
+ "[",
5067
+ "[-:",
5068
+ "[:",
5069
+ "[=",
5070
+ "\\",
5071
+ "\\\")",
5072
+ "\\n",
5073
+ "\\t",
5074
+ "\\x",
5075
+ "]",
5076
+ "]=",
5077
+ "^",
5078
+ "^_^",
5079
+ "^__^",
5080
+ "^___^",
5081
+ "_*)",
5082
+ "_-)",
5083
+ "_.)",
5084
+ "_<)",
5085
+ "_^)",
5086
+ "__-",
5087
+ "__^",
5088
+ "_\u00ac)",
5089
+ "_\u0ca0)",
5090
+ "a",
5091
+ "a.",
5092
+ "a.m",
5093
+ "a.m.",
5094
+ "about",
5095
+ "ace",
5096
+ "ach",
5097
+ "add",
5098
+ "adm",
5099
+ "adm.",
5100
+ "adoption",
5101
+ "advisor",
5102
+ "afe",
5103
+ "aft",
5104
+ "afternoon",
5105
+ "age",
5106
+ "ai",
5107
+ "ain",
5108
+ "air",
5109
+ "ak",
5110
+ "ak.",
5111
+ "ake",
5112
+ "ala",
5113
+ "ala.",
5114
+ "alk",
5115
+ "all",
5116
+ "alm",
5117
+ "am",
5118
+ "am_time_end",
5119
+ "am_time_start",
5120
+ "ame",
5121
+ "amusement",
5122
+ "an",
5123
+ "an.",
5124
+ "and",
5125
+ "and/or",
5126
+ "ans",
5127
+ "ape",
5128
+ "appointment",
5129
+ "apr",
5130
+ "apr.",
5131
+ "apr./12th",
5132
+ "apr/30th",
5133
+ "apr/5th",
5134
+ "april",
5135
+ "april/13th",
5136
+ "april/14th",
5137
+ "april/19th",
5138
+ "april/20th",
5139
+ "april/25th",
5140
+ "april/6th",
5141
+ "apy",
5142
+ "aquarium",
5143
+ "ar.",
5144
+ "ard",
5145
+ "are",
5146
+ "ariz",
5147
+ "ariz.",
5148
+ "ark",
5149
+ "ark.",
5150
+ "arrange",
5151
+ "art",
5152
+ "artist",
5153
+ "ary",
5154
+ "as",
5155
+ "ash",
5156
+ "ass",
5157
+ "at",
5158
+ "ate",
5159
+ "attend",
5160
+ "auction",
5161
+ "aug",
5162
+ "aug.",
5163
+ "aug./10th",
5164
+ "aug./31st",
5165
+ "august",
5166
+ "august/1st",
5167
+ "august/24th",
5168
+ "ave",
5169
+ "azz",
5170
+ "b",
5171
+ "b.",
5172
+ "balloon",
5173
+ "barbecue",
5174
+ "be",
5175
+ "beach",
5176
+ "because",
5177
+ "beer",
5178
+ "ber",
5179
+ "bike",
5180
+ "bird",
5181
+ "bit",
5182
+ "block",
5183
+ "blogger",
5184
+ "board",
5185
+ "book",
5186
+ "booked",
5187
+ "botanical",
5188
+ "bout",
5189
+ "br.",
5190
+ "bros",
5191
+ "bros.",
5192
+ "business",
5193
+ "butterfly",
5194
+ "buy",
5195
+ "c",
5196
+ "c'm",
5197
+ "c++",
5198
+ "c.",
5199
+ "ca",
5200
+ "caendar",
5201
+ "cafe",
5202
+ "cal",
5203
+ "calendar",
5204
+ "calif",
5205
+ "calif.",
5206
+ "call",
5207
+ "can",
5208
+ "car",
5209
+ "card",
5210
+ "career",
5211
+ "castle",
5212
+ "cause",
5213
+ "ce>",
5214
+ "center",
5215
+ "ch.",
5216
+ "challenge",
5217
+ "charity",
5218
+ "cheese",
5219
+ "children",
5220
+ "chocolate",
5221
+ "cil",
5222
+ "circus",
5223
+ "class",
5224
+ "classic",
5225
+ "cleaning",
5226
+ "client",
5227
+ "clothing",
5228
+ "club",
5229
+ "co",
5230
+ "co.",
5231
+ "coach",
5232
+ "coffee",
5233
+ "colo",
5234
+ "colo.",
5235
+ "come",
5236
+ "comedy",
5237
+ "competition",
5238
+ "concert",
5239
+ "conference",
5240
+ "conn",
5241
+ "conn.",
5242
+ "conservatory",
5243
+ "cooking",
5244
+ "cookout",
5245
+ "corp",
5246
+ "corp.",
5247
+ "cos",
5248
+ "costume",
5249
+ "could",
5250
+ "counselor",
5251
+ "countryside",
5252
+ "coz",
5253
+ "craft",
5254
+ "crafting",
5255
+ "create",
5256
+ "ct.",
5257
+ "cue",
5258
+ "cupcake",
5259
+ "cus",
5260
+ "cut",
5261
+ "cuz",
5262
+ "c\u2019m",
5263
+ "d",
5264
+ "d)",
5265
+ "d-",
5266
+ "d-)",
5267
+ "d-X",
5268
+ "d.",
5269
+ "d.c.",
5270
+ "d.d",
5271
+ "d.x",
5272
+ "d/d",
5273
+ "d/d/dddd",
5274
+ "d/dd",
5275
+ "d/dd/dddd",
5276
+ "d:dd",
5277
+ "d:ddX.X.",
5278
+ "d:ddXX",
5279
+ "d:ddx'xxxx",
5280
+ "d:ddx.x",
5281
+ "d:ddx.x.",
5282
+ "d:ddxx",
5283
+ "dX",
5284
+ "d_d",
5285
+ "d_x",
5286
+ "dance",
5287
+ "dar",
5288
+ "dare",
5289
+ "date",
5290
+ "date_end",
5291
+ "date_start",
5292
+ "day",
5293
+ "dd",
5294
+ "dd/d",
5295
+ "dd/d/dddd",
5296
+ "dd/dd",
5297
+ "dd/dd/dddd",
5298
+ "dd:dd",
5299
+ "dd:ddX.X.",
5300
+ "dd:ddXX",
5301
+ "dd:ddx'xxxx",
5302
+ "dd:ddx.x",
5303
+ "dd:ddx.x.",
5304
+ "dd:ddxx",
5305
+ "ddd",
5306
+ "dddd",
5307
+ "dddd/d/d",
5308
+ "dddd/d/dd",
5309
+ "dddd/dd/d",
5310
+ "dddd/dd/dd",
5311
+ "ddx.x",
5312
+ "ddx.x.",
5313
+ "ddxx",
5314
+ "dec",
5315
+ "dec,/14th",
5316
+ "dec,/1st",
5317
+ "dec.",
5318
+ "dec./23rd",
5319
+ "dec./25th",
5320
+ "december",
5321
+ "december/22nd",
5322
+ "december/26th",
5323
+ "decorating",
5324
+ "del",
5325
+ "del.",
5326
+ "den",
5327
+ "dentist",
5328
+ "der",
5329
+ "did",
5330
+ "dinner",
5331
+ "diy",
5332
+ "dm.",
5333
+ "do",
5334
+ "doctor",
5335
+ "documentary",
5336
+ "does",
5337
+ "dog",
5338
+ "doin",
5339
+ "doin'",
5340
+ "doing",
5341
+ "doin\u2019",
5342
+ "dr",
5343
+ "dr.",
5344
+ "drive",
5345
+ "dry",
5346
+ "dx.x",
5347
+ "dx.x.",
5348
+ "dxx",
5349
+ "e",
5350
+ "e's",
5351
+ "e.",
5352
+ "e.g",
5353
+ "e.g.",
5354
+ "eAM",
5355
+ "ePM",
5356
+ "eal",
5357
+ "eam",
5358
+ "eat",
5359
+ "eb.",
5360
+ "ebr",
5361
+ "ec.",
5362
+ "ech",
5363
+ "edy",
5364
+ "eed",
5365
+ "een",
5366
+ "eer",
5367
+ "eet",
5368
+ "eight",
5369
+ "eightA.M.",
5370
+ "eightAM",
5371
+ "eightP.M.",
5372
+ "eightPM",
5373
+ "eighta.m",
5374
+ "eighta.m.",
5375
+ "eightam",
5376
+ "eightat",
5377
+ "eighteen",
5378
+ "eighteenP.M.",
5379
+ "eighteenam",
5380
+ "eighteenin",
5381
+ "eighteeno'clock",
5382
+ "eighteenp.m",
5383
+ "eighteenp.m.",
5384
+ "eightin",
5385
+ "eighto'clock",
5386
+ "eightp.m",
5387
+ "eightp.m.",
5388
+ "eightpm",
5389
+ "ein",
5390
+ "el.",
5391
+ "eleven",
5392
+ "elevenA.M.",
5393
+ "elevenAM",
5394
+ "elevenPM",
5395
+ "elevena.m",
5396
+ "elevena.m.",
5397
+ "elevenam",
5398
+ "elevenin",
5399
+ "eleveno'clock",
5400
+ "elevenpm",
5401
+ "em",
5402
+ "en",
5403
+ "en.",
5404
+ "end",
5405
+ "ending",
5406
+ "enjoy",
5407
+ "enn",
5408
+ "enough",
5409
+ "ent",
5410
+ "ep.",
5411
+ "epm",
5412
+ "ept",
5413
+ "ere",
5414
+ "ero",
5415
+ "ers",
5416
+ "ert",
5417
+ "ery",
5418
+ "escape",
5419
+ "ese",
5420
+ "ess",
5421
+ "est",
5422
+ "estate",
5423
+ "eum",
5424
+ "ev.",
5425
+ "evening",
5426
+ "event",
5427
+ "exhibit",
5428
+ "exhibition",
5429
+ "expedition",
5430
+ "experiment",
5431
+ "expo",
5432
+ "e\u2019s",
5433
+ "f",
5434
+ "f.",
5435
+ "factory",
5436
+ "fair",
5437
+ "family",
5438
+ "farmers",
5439
+ "feb",
5440
+ "feb,/20th",
5441
+ "feb,/23rd",
5442
+ "feb,/25th",
5443
+ "feb.",
5444
+ "feb./22nd",
5445
+ "feb./28th",
5446
+ "february",
5447
+ "february/10th",
5448
+ "february/14th",
5449
+ "february/5th",
5450
+ "fee",
5451
+ "festival",
5452
+ "fifteen",
5453
+ "fifteenAM",
5454
+ "fifteenP.M.",
5455
+ "fifteenam",
5456
+ "fifteenin",
5457
+ "fifteeno'clock",
5458
+ "fifteenp.m.",
5459
+ "fifteenpm",
5460
+ "fifty",
5461
+ "fiftyA.M.",
5462
+ "fiftyAM",
5463
+ "fiftya.m.",
5464
+ "fiftyam",
5465
+ "fiftyo'clock",
5466
+ "fiftyp.m",
5467
+ "fiftypm",
5468
+ "film",
5469
+ "financial",
5470
+ "five",
5471
+ "fiveA.M.",
5472
+ "fiveAM",
5473
+ "fiveP.M.",
5474
+ "fivePM",
5475
+ "fivea.m",
5476
+ "fivea.m.",
5477
+ "fiveam",
5478
+ "fiveat",
5479
+ "fivein",
5480
+ "fiveo'clock",
5481
+ "fivep.m",
5482
+ "fivep.m.",
5483
+ "fivepm",
5484
+ "fla",
5485
+ "fla.",
5486
+ "fly",
5487
+ "food",
5488
+ "for",
5489
+ "forty",
5490
+ "fortyAM",
5491
+ "fortyP.M.",
5492
+ "fortyPM",
5493
+ "fortyam",
5494
+ "fortyin",
5495
+ "fortyo'clock",
5496
+ "fortyp.m.",
5497
+ "fortypm",
5498
+ "four",
5499
+ "fourA.M.",
5500
+ "fourAM",
5501
+ "fourP.M.",
5502
+ "fourPM",
5503
+ "foura.m",
5504
+ "foura.m.",
5505
+ "fouram",
5506
+ "fourat",
5507
+ "fourin",
5508
+ "fouro'clock",
5509
+ "fourp.m",
5510
+ "fourp.m.",
5511
+ "fourpm",
5512
+ "fourteen",
5513
+ "fourteenAM",
5514
+ "fourteena.m",
5515
+ "fourteenam",
5516
+ "fourteenin",
5517
+ "fourteenpm",
5518
+ "fri",
5519
+ "friday",
5520
+ "friends",
5521
+ "from",
5522
+ "fty",
5523
+ "fundraising",
5524
+ "g",
5525
+ "g.",
5526
+ "ga",
5527
+ "ga.",
5528
+ "gallery",
5529
+ "game",
5530
+ "garden",
5531
+ "gen",
5532
+ "gen.",
5533
+ "ger",
5534
+ "get",
5535
+ "getaway",
5536
+ "ght",
5537
+ "gic",
5538
+ "go",
5539
+ "goin",
5540
+ "goin'",
5541
+ "going",
5542
+ "goin\u2019",
5543
+ "golf",
5544
+ "gon",
5545
+ "gonna",
5546
+ "got",
5547
+ "gov",
5548
+ "gov.",
5549
+ "groceries",
5550
+ "group",
5551
+ "h",
5552
+ "h.",
5553
+ "had",
5554
+ "haircut",
5555
+ "has",
5556
+ "hat",
5557
+ "have",
5558
+ "havin",
5559
+ "havin'",
5560
+ "having",
5561
+ "havin\u2019",
5562
+ "he",
5563
+ "he's",
5564
+ "hen",
5565
+ "her",
5566
+ "hey",
5567
+ "he\u2019s",
5568
+ "hike",
5569
+ "hiking",
5570
+ "hin",
5571
+ "hip",
5572
+ "his",
5573
+ "historic",
5574
+ "historical",
5575
+ "history",
5576
+ "home",
5577
+ "hon",
5578
+ "hop",
5579
+ "host",
5580
+ "hot",
5581
+ "hours",
5582
+ "how",
5583
+ "how's",
5584
+ "how\u2019s",
5585
+ "hundred",
5586
+ "hunt",
5587
+ "i",
5588
+ "i.",
5589
+ "i.e",
5590
+ "i.e.",
5591
+ "ia",
5592
+ "ia.",
5593
+ "ial",
5594
+ "ice",
5595
+ "ich",
5596
+ "ick",
5597
+ "id",
5598
+ "id.",
5599
+ "ide",
5600
+ "ids",
5601
+ "ies",
5602
+ "iew",
5603
+ "if.",
5604
+ "ife",
5605
+ "ike",
5606
+ "ile",
5607
+ "ill",
5608
+ "ill.",
5609
+ "ilm",
5610
+ "ily",
5611
+ "ime",
5612
+ "improv",
5613
+ "improvement",
5614
+ "in",
5615
+ "in'",
5616
+ "inc",
5617
+ "inc.",
5618
+ "inclusive",
5619
+ "ind",
5620
+ "ind.",
5621
+ "ine",
5622
+ "ing",
5623
+ "ini",
5624
+ "inn",
5625
+ "instructor",
5626
+ "int",
5627
+ "interactive",
5628
+ "interview",
5629
+ "in\u2019",
5630
+ "ion",
5631
+ "ird",
5632
+ "is",
5633
+ "is.",
5634
+ "ise",
5635
+ "iss",
5636
+ "ist",
5637
+ "it",
5638
+ "it's",
5639
+ "ith",
5640
+ "ity",
5641
+ "it\u2019s",
5642
+ "ium",
5643
+ "ive",
5644
+ "iz.",
5645
+ "j",
5646
+ "j.",
5647
+ "jan",
5648
+ "jan.",
5649
+ "january",
5650
+ "january/12th",
5651
+ "january/14th",
5652
+ "jazz",
5653
+ "job",
5654
+ "jog",
5655
+ "join",
5656
+ "joy",
5657
+ "jr",
5658
+ "jr.",
5659
+ "jul",
5660
+ "jul,/5th",
5661
+ "jul.",
5662
+ "jul./15th",
5663
+ "july",
5664
+ "july/10th",
5665
+ "july/16th",
5666
+ "july/26th",
5667
+ "jun",
5668
+ "jun,/15th",
5669
+ "jun,/29th",
5670
+ "jun.",
5671
+ "jun./14th",
5672
+ "jun/2nd",
5673
+ "jun/7th",
5674
+ "june",
5675
+ "june/12th",
5676
+ "june/17th",
5677
+ "june/24th",
5678
+ "k",
5679
+ "k.",
5680
+ "kan",
5681
+ "kan.",
5682
+ "kans",
5683
+ "kans.",
5684
+ "karaoke",
5685
+ "ked",
5686
+ "ket",
5687
+ "kids",
5688
+ "kla",
5689
+ "ky",
5690
+ "ky.",
5691
+ "l",
5692
+ "l.",
5693
+ "la",
5694
+ "la.",
5695
+ "lam",
5696
+ "lan",
5697
+ "landmark",
5698
+ "language",
5699
+ "lay",
5700
+ "lecture",
5701
+ "lesson",
5702
+ "let",
5703
+ "let's",
5704
+ "let\u2019s",
5705
+ "lif",
5706
+ "life",
5707
+ "lighthouse",
5708
+ "live",
5709
+ "ll",
5710
+ "ll.",
5711
+ "lo.",
5712
+ "local",
5713
+ "lor",
5714
+ "lovin",
5715
+ "lovin'",
5716
+ "loving",
5717
+ "lovin\u2019",
5718
+ "ltd",
5719
+ "ltd.",
5720
+ "lub",
5721
+ "lve",
5722
+ "m",
5723
+ "m.",
5724
+ "ma'am",
5725
+ "madam",
5726
+ "magic",
5727
+ "making",
5728
+ "mansion",
5729
+ "mar",
5730
+ "mar,/25th",
5731
+ "mar,/9th",
5732
+ "mar.",
5733
+ "mar/28th",
5734
+ "marathon",
5735
+ "march",
5736
+ "march/22nd",
5737
+ "march/7th",
5738
+ "marine",
5739
+ "market",
5740
+ "mass",
5741
+ "mass.",
5742
+ "massage",
5743
+ "may",
5744
+ "may./11th",
5745
+ "may./12th",
5746
+ "may./16th",
5747
+ "may./2nd",
5748
+ "may./9th",
5749
+ "may/15th",
5750
+ "may/8th",
5751
+ "ma\u2019am",
5752
+ "md",
5753
+ "md.",
5754
+ "me",
5755
+ "med",
5756
+ "meet",
5757
+ "meeting",
5758
+ "messrs",
5759
+ "messrs.",
5760
+ "mich",
5761
+ "mich.",
5762
+ "might",
5763
+ "military_time_end",
5764
+ "military_time_start",
5765
+ "mini",
5766
+ "minn",
5767
+ "minn.",
5768
+ "miss",
5769
+ "miss.",
5770
+ "mo",
5771
+ "mo.",
5772
+ "mon",
5773
+ "monday",
5774
+ "mont",
5775
+ "mont.",
5776
+ "morning",
5777
+ "movie",
5778
+ "mr",
5779
+ "mr.",
5780
+ "mrs",
5781
+ "mrs.",
5782
+ "ms",
5783
+ "ms.",
5784
+ "mt",
5785
+ "mt.",
5786
+ "museum",
5787
+ "music",
5788
+ "must",
5789
+ "my",
5790
+ "n",
5791
+ "n's",
5792
+ "n't",
5793
+ "n.",
5794
+ "n.c.",
5795
+ "n.d.",
5796
+ "n.h.",
5797
+ "n.j.",
5798
+ "n.m.",
5799
+ "n.y.",
5800
+ "nAM",
5801
+ "nPM",
5802
+ "na",
5803
+ "nal",
5804
+ "nam",
5805
+ "nat",
5806
+ "nature",
5807
+ "nc.",
5808
+ "nce",
5809
+ "nd.",
5810
+ "nds",
5811
+ "neb",
5812
+ "neb.",
5813
+ "nebr",
5814
+ "nebr.",
5815
+ "need",
5816
+ "ner",
5817
+ "networking",
5818
+ "nev",
5819
+ "nev.",
5820
+ "nge",
5821
+ "nic",
5822
+ "night",
5823
+ "nin",
5824
+ "nine",
5825
+ "nineA.M.",
5826
+ "nineAM",
5827
+ "nineP.M.",
5828
+ "ninePM",
5829
+ "ninea.m",
5830
+ "ninea.m.",
5831
+ "nineam",
5832
+ "nineat",
5833
+ "ninein",
5834
+ "nineo'clock",
5835
+ "ninep.m",
5836
+ "ninep.m.",
5837
+ "ninepm",
5838
+ "nineteen",
5839
+ "nineteenAM",
5840
+ "nineteenPM",
5841
+ "nineteenam",
5842
+ "nineteenin",
5843
+ "nineteeno'clock",
5844
+ "nineteenpm",
5845
+ "nn.",
5846
+ "not",
5847
+ "nothin",
5848
+ "nothin'",
5849
+ "nothing",
5850
+ "nothin\u2019",
5851
+ "nov",
5852
+ "nov,/13th",
5853
+ "nov.",
5854
+ "nov./25th",
5855
+ "nov/30th",
5856
+ "november",
5857
+ "november/17th",
5858
+ "november/19th",
5859
+ "november/1st",
5860
+ "npm",
5861
+ "ns.",
5862
+ "nt",
5863
+ "nt.",
5864
+ "nty",
5865
+ "nuff",
5866
+ "nuthin",
5867
+ "nuthin'",
5868
+ "nuthin\u2019",
5869
+ "nutritionist",
5870
+ "n\u2019s",
5871
+ "n\u2019t",
5872
+ "o",
5873
+ "o'clock",
5874
+ "o's",
5875
+ "o.",
5876
+ "o.0",
5877
+ "o.O",
5878
+ "o.o",
5879
+ "oAM",
5880
+ "oPM",
5881
+ "o_0",
5882
+ "o_O",
5883
+ "o_o",
5884
+ "oam",
5885
+ "observatory",
5886
+ "ock",
5887
+ "oct",
5888
+ "oct,/12th",
5889
+ "oct.",
5890
+ "oct./22nd",
5891
+ "oct./27th",
5892
+ "oct/21st",
5893
+ "oct/5th",
5894
+ "october",
5895
+ "october/23rd",
5896
+ "oes",
5897
+ "of",
5898
+ "of.",
5899
+ "off",
5900
+ "office",
5901
+ "oga",
5902
+ "oh",
5903
+ "oin",
5904
+ "oke",
5905
+ "okla",
5906
+ "okla.",
5907
+ "ol",
5908
+ "ol'",
5909
+ "old",
5910
+ "olf",
5911
+ "olo",
5912
+ "ol\u2019",
5913
+ "ome",
5914
+ "on",
5915
+ "one",
5916
+ "oneA.M.",
5917
+ "oneAM",
5918
+ "oneP.M.",
5919
+ "onePM",
5920
+ "onea.m",
5921
+ "onea.m.",
5922
+ "oneam",
5923
+ "oneat",
5924
+ "onein",
5925
+ "oneo'clock",
5926
+ "onep.m",
5927
+ "onep.m.",
5928
+ "onepm",
5929
+ "onn",
5930
+ "ont",
5931
+ "ood",
5932
+ "ook",
5933
+ "oom",
5934
+ "oon",
5935
+ "oor",
5936
+ "opm",
5937
+ "or",
5938
+ "ore",
5939
+ "ore.",
5940
+ "orp",
5941
+ "ort",
5942
+ "ory",
5943
+ "os.",
5944
+ "ose",
5945
+ "ost",
5946
+ "ought",
5947
+ "oup",
5948
+ "our",
5949
+ "out",
5950
+ "outdoor",
5951
+ "ov.",
5952
+ "o\u2019clock",
5953
+ "o\u2019s",
5954
+ "p",
5955
+ "p.",
5956
+ "p.m",
5957
+ "p.m.",
5958
+ "pa",
5959
+ "pa.",
5960
+ "paint",
5961
+ "painting",
5962
+ "pairing",
5963
+ "palm",
5964
+ "parent",
5965
+ "park",
5966
+ "participate",
5967
+ "party",
5968
+ "pencil",
5969
+ "performance",
5970
+ "personal",
5971
+ "pet",
5972
+ "petting",
5973
+ "ph",
5974
+ "ph.d.",
5975
+ "photography",
5976
+ "phy",
5977
+ "pick",
5978
+ "picnic",
5979
+ "plan",
5980
+ "planetarium",
5981
+ "play",
5982
+ "playdate",
5983
+ "pm",
5984
+ "pm_time_end",
5985
+ "pm_time_start",
5986
+ "poetry",
5987
+ "potluck",
5988
+ "pottery",
5989
+ "pr.",
5990
+ "prof",
5991
+ "prof.",
5992
+ "pt.",
5993
+ "put",
5994
+ "puzzle",
5995
+ "q",
5996
+ "q.",
5997
+ "r",
5998
+ "r.",
5999
+ "rAM",
6000
+ "rPM",
6001
+ "rainforest",
6002
+ "ram",
6003
+ "rat",
6004
+ "rch",
6005
+ "re",
6006
+ "re.",
6007
+ "reader",
6008
+ "reading",
6009
+ "real",
6010
+ "reason",
6011
+ "recital",
6012
+ "red",
6013
+ "ree",
6014
+ "reenactment",
6015
+ "rehabilitation",
6016
+ "relationship",
6017
+ "remind",
6018
+ "ren",
6019
+ "rep",
6020
+ "rep.",
6021
+ "reptile",
6022
+ "rescue",
6023
+ "reserve",
6024
+ "reunion",
6025
+ "rev",
6026
+ "rev.",
6027
+ "ric",
6028
+ "ride",
6029
+ "ril",
6030
+ "rin",
6031
+ "rip",
6032
+ "riz",
6033
+ "rk.",
6034
+ "rof",
6035
+ "rom",
6036
+ "romantic",
6037
+ "room",
6038
+ "ros",
6039
+ "rot",
6040
+ "rov",
6041
+ "rp.",
6042
+ "rpm",
6043
+ "rs.",
6044
+ "rty",
6045
+ "run",
6046
+ "rve",
6047
+ "s",
6048
+ "s's",
6049
+ "s.",
6050
+ "s.c.",
6051
+ "sanctuary",
6052
+ "sat",
6053
+ "saturday",
6054
+ "scavenger",
6055
+ "scenic",
6056
+ "schedule",
6057
+ "science",
6058
+ "screening",
6059
+ "sen",
6060
+ "sen.",
6061
+ "sep",
6062
+ "sep.",
6063
+ "sep./26th",
6064
+ "sep./27th",
6065
+ "sept",
6066
+ "sept.",
6067
+ "sept/28th",
6068
+ "sept/8th",
6069
+ "september",
6070
+ "september/19th",
6071
+ "session",
6072
+ "set",
6073
+ "seven",
6074
+ "sevenA.M.",
6075
+ "sevenAM",
6076
+ "sevenP.M.",
6077
+ "sevena.m",
6078
+ "sevena.m.",
6079
+ "sevenam",
6080
+ "sevenat",
6081
+ "sevenin",
6082
+ "seveno'clock",
6083
+ "sevenp.m",
6084
+ "sevenp.m.",
6085
+ "sevenpm",
6086
+ "seventeen",
6087
+ "seventeenA.M.",
6088
+ "seventeenAM",
6089
+ "seventeenP.M.",
6090
+ "seventeena.m.",
6091
+ "seventeenam",
6092
+ "seventeenin",
6093
+ "seventeeno'clock",
6094
+ "seventeenp.m",
6095
+ "seventeenp.m.",
6096
+ "seventeenpm",
6097
+ "sh.",
6098
+ "sha",
6099
+ "shall",
6100
+ "she",
6101
+ "she's",
6102
+ "she\u2019s",
6103
+ "shi",
6104
+ "shopping",
6105
+ "should",
6106
+ "show",
6107
+ "sic",
6108
+ "sit",
6109
+ "six",
6110
+ "sixA.M.",
6111
+ "sixAM",
6112
+ "sixP.M.",
6113
+ "sixPM",
6114
+ "sixa.m",
6115
+ "sixa.m.",
6116
+ "sixam",
6117
+ "sixin",
6118
+ "sixo'clock",
6119
+ "sixp.m",
6120
+ "sixp.m.",
6121
+ "sixpm",
6122
+ "sixteen",
6123
+ "sixteenA.M.",
6124
+ "sixteenP.M.",
6125
+ "sixteenPM",
6126
+ "sixteena.m",
6127
+ "sixteena.m.",
6128
+ "sixteenam",
6129
+ "sixteenin",
6130
+ "sixteeno'clock",
6131
+ "sixteenp.m.",
6132
+ "sixteenpm",
6133
+ "slam",
6134
+ "solving",
6135
+ "somethin",
6136
+ "somethin'",
6137
+ "something",
6138
+ "somethin\u2019",
6139
+ "son",
6140
+ "sor",
6141
+ "spa",
6142
+ "space",
6143
+ "spree",
6144
+ "srs",
6145
+ "ss.",
6146
+ "st",
6147
+ "st.",
6148
+ "stand",
6149
+ "starting",
6150
+ "storytelling",
6151
+ "stylist",
6152
+ "sun",
6153
+ "sunday",
6154
+ "support",
6155
+ "surprise",
6156
+ "sushi",
6157
+ "s\u2019s",
6158
+ "t",
6159
+ "t's",
6160
+ "t.",
6161
+ "tAM",
6162
+ "tPM",
6163
+ "ta",
6164
+ "take",
6165
+ "tal",
6166
+ "talent",
6167
+ "tam",
6168
+ "tarot",
6169
+ "tasting",
6170
+ "tat",
6171
+ "tattoo",
6172
+ "tch",
6173
+ "td.",
6174
+ "tea",
6175
+ "teacher",
6176
+ "tech",
6177
+ "ten",
6178
+ "tenA.M.",
6179
+ "tenAM",
6180
+ "tenP.M.",
6181
+ "tenPM",
6182
+ "tena.m",
6183
+ "tena.m.",
6184
+ "tenam",
6185
+ "tenin",
6186
+ "tenn",
6187
+ "tenn.",
6188
+ "teno'clock",
6189
+ "tenp.m",
6190
+ "tenp.m.",
6191
+ "tenpm",
6192
+ "ter",
6193
+ "that",
6194
+ "that's",
6195
+ "that\u2019s",
6196
+ "the",
6197
+ "theater",
6198
+ "them",
6199
+ "themed",
6200
+ "therapy",
6201
+ "there",
6202
+ "there's",
6203
+ "there\u2019s",
6204
+ "these",
6205
+ "they",
6206
+ "thirteen",
6207
+ "thirteenA.M.",
6208
+ "thirteenPM",
6209
+ "thirteena.m",
6210
+ "thirteena.m.",
6211
+ "thirteenam",
6212
+ "thirteenin",
6213
+ "thirteeno'clock",
6214
+ "thirteenp.m",
6215
+ "thirteenpm",
6216
+ "thirty",
6217
+ "thirtyAM",
6218
+ "thirtya.m",
6219
+ "thirtyam",
6220
+ "thirtyin",
6221
+ "thirtyp.m",
6222
+ "this",
6223
+ "this's",
6224
+ "this\u2019s",
6225
+ "those",
6226
+ "three",
6227
+ "threeA.M.",
6228
+ "threeAM",
6229
+ "threeP.M.",
6230
+ "threePM",
6231
+ "threea.m",
6232
+ "threea.m.",
6233
+ "threeam",
6234
+ "threein",
6235
+ "threeo'clock",
6236
+ "threep.m",
6237
+ "threep.m.",
6238
+ "threepm",
6239
+ "thu",
6240
+ "thursday",
6241
+ "tic",
6242
+ "til",
6243
+ "time",
6244
+ "tin",
6245
+ "tle",
6246
+ "to",
6247
+ "too",
6248
+ "tor",
6249
+ "tour",
6250
+ "tpm",
6251
+ "train",
6252
+ "trainer",
6253
+ "trampoline",
6254
+ "travel",
6255
+ "trip",
6256
+ "trivia",
6257
+ "tropical",
6258
+ "truck",
6259
+ "try",
6260
+ "tue",
6261
+ "tuesday",
6262
+ "twelve",
6263
+ "twelveA.M.",
6264
+ "twelveP.M.",
6265
+ "twelvea.m",
6266
+ "twelvea.m.",
6267
+ "twelveam",
6268
+ "twelvein",
6269
+ "twelveo'clock",
6270
+ "twelvep.m",
6271
+ "twelvep.m.",
6272
+ "twelvepm",
6273
+ "twenty",
6274
+ "twentyA.M.",
6275
+ "twentyAM",
6276
+ "twentyP.M.",
6277
+ "twentyPM",
6278
+ "twentya.m",
6279
+ "twentya.m.",
6280
+ "twentyam",
6281
+ "twentyat",
6282
+ "twentyin",
6283
+ "twentyo'clock",
6284
+ "twentyp.m",
6285
+ "twentyp.m.",
6286
+ "twentypm",
6287
+ "two",
6288
+ "twoA.M.",
6289
+ "twoAM",
6290
+ "twoP.M.",
6291
+ "twoPM",
6292
+ "twoa.m",
6293
+ "twoa.m.",
6294
+ "twoam",
6295
+ "twoin",
6296
+ "twoo'clock",
6297
+ "twop.m",
6298
+ "twop.m.",
6299
+ "twopm",
6300
+ "t\u2019s",
6301
+ "u",
6302
+ "u.",
6303
+ "uck",
6304
+ "uff",
6305
+ "ug.",
6306
+ "ul.",
6307
+ "uld",
6308
+ "ule",
6309
+ "uly",
6310
+ "ume",
6311
+ "un.",
6312
+ "une",
6313
+ "unt",
6314
+ "until",
6315
+ "up",
6316
+ "ure",
6317
+ "urs",
6318
+ "us",
6319
+ "use",
6320
+ "ust",
6321
+ "v",
6322
+ "v.",
6323
+ "v.s",
6324
+ "v.s.",
6325
+ "v.v",
6326
+ "v_v",
6327
+ "va",
6328
+ "va.",
6329
+ "vacation",
6330
+ "val",
6331
+ "ve",
6332
+ "vel",
6333
+ "ven",
6334
+ "via",
6335
+ "vie",
6336
+ "village",
6337
+ "vin",
6338
+ "vintage",
6339
+ "visit",
6340
+ "volunteer",
6341
+ "vs",
6342
+ "vs.",
6343
+ "w",
6344
+ "w's",
6345
+ "w.",
6346
+ "w/o",
6347
+ "walk",
6348
+ "was",
6349
+ "wash",
6350
+ "wash.",
6351
+ "watch",
6352
+ "watching",
6353
+ "way",
6354
+ "we",
6355
+ "wed",
6356
+ "wednesday",
6357
+ "weekend",
6358
+ "wellness",
6359
+ "were",
6360
+ "what",
6361
+ "what's",
6362
+ "what\u2019s",
6363
+ "when",
6364
+ "when's",
6365
+ "when\u2019s",
6366
+ "where",
6367
+ "where's",
6368
+ "where\u2019s",
6369
+ "who",
6370
+ "who's",
6371
+ "who\u2019s",
6372
+ "why",
6373
+ "why's",
6374
+ "why\u2019s",
6375
+ "wildlife",
6376
+ "will",
6377
+ "wine",
6378
+ "wis",
6379
+ "wis.",
6380
+ "with",
6381
+ "without",
6382
+ "wo",
6383
+ "workshop",
6384
+ "would",
6385
+ "w\u2019s",
6386
+ "x",
6387
+ "x'",
6388
+ "x'x",
6389
+ "x'xxxx",
6390
+ "x.",
6391
+ "x.X",
6392
+ "x.d",
6393
+ "x.x",
6394
+ "x.x.",
6395
+ "x/x",
6396
+ "xAM",
6397
+ "xD",
6398
+ "xDD",
6399
+ "xPM",
6400
+ "xX",
6401
+ "xXX",
6402
+ "x_X",
6403
+ "x_d",
6404
+ "x_x",
6405
+ "xam",
6406
+ "xd",
6407
+ "xdd",
6408
+ "xin",
6409
+ "xpm",
6410
+ "xpo",
6411
+ "xx",
6412
+ "xx'",
6413
+ "xx'x",
6414
+ "xx'xx",
6415
+ "xx.",
6416
+ "xxx",
6417
+ "xxx'x",
6418
+ "xxx,/ddxx",
6419
+ "xxx,/dxx",
6420
+ "xxx./ddxx",
6421
+ "xxx./dxx",
6422
+ "xxx/ddxx",
6423
+ "xxx/dxx",
6424
+ "xxx/xx",
6425
+ "xxxX.X.",
6426
+ "xxxXX",
6427
+ "xxxx",
6428
+ "xxxx'",
6429
+ "xxxx'x",
6430
+ "xxxx'xxxx",
6431
+ "xxxx.x",
6432
+ "xxxx.x.",
6433
+ "xxxx/ddxx",
6434
+ "xxxx/dxx",
6435
+ "xxxxX.X.",
6436
+ "xxxxXX",
6437
+ "xxxx\u2019",
6438
+ "xxxx\u2019x",
6439
+ "xxx\u2019x",
6440
+ "xx\u2019",
6441
+ "xx\u2019x",
6442
+ "xx\u2019xx",
6443
+ "x\u2019",
6444
+ "x\u2019x",
6445
+ "x\u2019xxxx",
6446
+ "x\ufe35x",
6447
+ "y",
6448
+ "y'",
6449
+ "y's",
6450
+ "y.",
6451
+ "yAM",
6452
+ "yPM",
6453
+ "yam",
6454
+ "yat",
6455
+ "yin",
6456
+ "yoga",
6457
+ "you",
6458
+ "ypm",
6459
+ "y\u2019",
6460
+ "y\u2019s",
6461
+ "z",
6462
+ "z.",
6463
+ "zero",
6464
+ "zle",
6465
+ "zoo",
6466
+ "|",
6467
+ "}",
6468
+ "\u00a0",
6469
+ "\u00ac",
6470
+ "\u00ac_\u00ac",
6471
+ "\u00af",
6472
+ "\u00af\\(x)/\u00af",
6473
+ "\u00af\\(\u30c4)/\u00af",
6474
+ "\u00b0",
6475
+ "\u00b0C.",
6476
+ "\u00b0F.",
6477
+ "\u00b0K.",
6478
+ "\u00b0X.",
6479
+ "\u00b0c.",
6480
+ "\u00b0f.",
6481
+ "\u00b0k.",
6482
+ "\u00b0x.",
6483
+ "\u00e4",
6484
+ "\u00e4.",
6485
+ "\u00f6",
6486
+ "\u00f6.",
6487
+ "\u00fc",
6488
+ "\u00fc.",
6489
+ "\u0ca0",
6490
+ "\u0ca0_\u0ca0",
6491
+ "\u0ca0\ufe35\u0ca0",
6492
+ "\u2014",
6493
+ "\u2018",
6494
+ "\u2018S",
6495
+ "\u2018X",
6496
+ "\u2018s",
6497
+ "\u2018x",
6498
+ "\u2019",
6499
+ "\u2019-(",
6500
+ "\u2019-)",
6501
+ "\u2019Cause",
6502
+ "\u2019Cos",
6503
+ "\u2019Coz",
6504
+ "\u2019Cuz",
6505
+ "\u2019S",
6506
+ "\u2019X",
6507
+ "\u2019Xxx",
6508
+ "\u2019Xxxxx",
6509
+ "\u2019am",
6510
+ "\u2019bout",
6511
+ "\u2019cause",
6512
+ "\u2019cos",
6513
+ "\u2019coz",
6514
+ "\u2019cuz",
6515
+ "\u2019d",
6516
+ "\u2019em",
6517
+ "\u2019ll",
6518
+ "\u2019m",
6519
+ "\u2019nuff",
6520
+ "\u2019re",
6521
+ "\u2019s",
6522
+ "\u2019ve",
6523
+ "\u2019x",
6524
+ "\u2019xx",
6525
+ "\u2019xxx",
6526
+ "\u2019xxxx",
6527
+ "\u2019y",
6528
+ "\u2019\u2019",
6529
+ "\u2501",
6530
+ "\u253b",
6531
+ "\u253b\u2501\u253b",
6532
+ "\u256f",
6533
+ "\u25a1",
6534
+ "\ufe35",
6535
+ "\uff09"
6536
+ ]
vocab/vectors ADDED
Binary file (128 Bytes). View file
 
vocab/vectors.cfg ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "mode":"default"
3
+ }