aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/frotz/detection_tables.h
blob: 42a51704dd97c789ecd5bcb355492ec80450378d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
/* ScummVM - Graphic Adventure Engine
 *
 * ScummVM is the legal property of its developers, whose names
 * are too numerous to list here. Please refer to the COPYRIGHT
 * file distributed with this source distribution.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 *
 */

#include "engines/game.h"
#include "common/gui_options.h"
#include "common/language.h"

namespace Glk {
namespace Frotz {

/**
 * Game descriptor for ZCode games
 */
struct FrotzGameDescription {
	const char *const _gameId;
	const char *const _extra;
	const char *const _md5;
	size_t _filesize;
	Common::Language _language;
	const char *const _guiOptions;
};

const PlainGameDescriptor FROTZ_GAME_LIST[] = {
	{ "zcode", "Unknown Z-code game" },

	// Infocom games
	{ "amfv", "A Mind Forever Voyaging" },
	{ "arthur", "Arthur: The Quest for Excalibur" },
	{ "ballyhoo", "Ballyhoo" },
	{ "beyondzork", "Beyond Zork" },
	{ "borderzone", "Border Zone" },
	{ "bureaucracy", "Bureaucracy" },
	{ "cutthroats", "Cutthroats" },
	{ "deadline", "Deadline" },
	{ "enchanter", "Enchanter" },
	{ "hhgttg", "The Hitchhiker's Guide to the Galaxy" },
	{ "hollywoodhijinx", "Hollywood Hijinx" },
	{ "infidel", "Infidel" },
	{ "journey", "Journey" },
	{ "lgop", "Leather Goddesses of Phobos" },
	{ "lurkinghorror", "The Lurking Horror" },
	{ "minizork1", "Mini Zork I: The Great Underground Empire" },
	{ "moonmist", "Moonmist" },
	{ "nordbert", "Nord and Bert Couldn't Make Head or Tail of It" },
	{ "planetfall", "Planetfall" },
	{ "plunderedhearts", "Plundered Hearts" },
	{ "infocomsampler1", "Infocom Sampler 1" },
	{ "infocomsampler2", "Infocom Sampler 2" },
	{ "seastalker", "Seastalker" },
	{ "sherlockriddle", "Sherlock: The Riddle of the Crown Jewels" },
	{ "shogun", "James Clavell's Shogun" },
	{ "sorcerer", "Sorcerer" },
	{ "spellbreaker", "Spellbreaker" },
	{ "starcross", "Starcross" },
	{ "stationfall", "Stationfall" },
	{ "suspect", "Suspect" },
	{ "suspended", "Suspended" },
	{ "trinity", "Trinity" },
	{ "wishbringer", "Wishbringer" },
	{ "thewitness", "The Witness" },
	{ "zork0", "Zork Zero: The Revenge of Megaboz" },
	{ "zork1", "Zork I: The Great Underground Empire" },
	{ "zork2", "Zork II: The Wizard of Frobozz" },
	{ "zork3", "Zork III: The Dungeon Master" },
	{ "ztuu", "Zork: The Undiscovered Underground" },

	// Converted Scott Adams games
	{ "adventureland",     "Adventureland" },
	{ "pirateadventure",   "Pirate Adventure" },
	{ "missionimpossible", "Mission Impossible" },
	{ "voodoocastle",      "Voodoo Castle" },
	{ "thecount",          "The Count" },
	{ "strangeodyssey",    "Strange Odyssey" },
	{ "mysteryfunhouse",   "Mystery Fun House" },
	{ "pyramidofdoom",     "Pyramid Of Doom" },
	{ "ghosttown",         "Ghost Town" },
	{ "savageisland1",     "Savage Island, Part 1" },
	{ "savageisland2",     "Savage Island, Part 2" },
	{ "goldenvoyage",      "The Golden Voyage" },
	{ "adventure13",       "Adventure 13" },
	{ "adventure14",       "Adventure 14" },
	{ "buckaroobanzai",    "Buckaroo Banzai" },
	{ "marveladventure",   "Marvel Adventure #1" },
	{ "questprobe2",       "Questprobe 2: Spiderman" },
	{ "scottsampler",      "Adventure International's Mini-Adventure Sampler" },

	// English ZCode games
	{ "404life",           "404 - Life not found" },
	{ "69105keys",         "69,105 Keys" },
	{ "905",               "9:05" },
	{ "9dancers",          "The Nine Dancers (Larsoft Adventure number 4)" },
	{ "cockandbull",       "A Cock and Bull Story" },
	{ "aasmasters",        "AAS Masters, in which all is revealed" },
	{ "accuse",            "Accuse" },
	{ "acheton",           "Acheton" },
	{ "acorncourt",        "The Acorn Court" },
	{ "acrobat",           "The Mysterious Case of the Acrobat and His Peers" },
	{ "acrossstars",       "Across the Stars" },
	{ "acrossstarsclues",  "Across the Stars: Invisiclues" },
	{ "addendum",          "Flawed Addendum" },
	{ "adv",               "Adventure, Colossal Cave" },
	{ "adv350",            "Adventure, 350 point Colossal Cave" },
	{ "adv440",            "Adventure II, 440 point Colossal Cave" },
	{ "adv550",            "Adventure 3, 550 point Colossal Cave" },
	{ "adv551",            "Adventure 6, 551 point Colossal Cave" },
	{ "adventuretime",     "Adventure Time" },
	{ "adverbum",          "Ad Verbum" },
	{ "affront",           "Annoyotron IV: Affrontotron" },
	{ "aisle",             "Aisle" },
	{ "alice",             "Alice Through the Looking Glass" },
	{ "allroads",          "All Roads" },
	{ "alongtheriver",     "Along the River" },
	{ "alpha",             "Journey to Alpha Centauri (In Real Time)" },
	{ "ambassadorsdaughter", "The Ambassador''s Daughter, a Brief Romance" },
	{ "amish",             "Amishville" },
	{ "amiss",             "Amissville" },
	{ "anchor",            "Anchorhead: an Interactive Tale of Lovecraftian Horror" },
	{ "hipponewyear",      "And A Hippo New Year" },
	{ "animals",           "Animals 1.1" },
	{ "annoy",             "Annoyotron" },
	{ "aotyrz",            "Attack of the Yeti Robot Zombies" },
	{ "aphasiaquest",      "Aphasia Quest" },
	{ "appall",            "Appallatron: Annoyotron 3" },
	{ "aridandpale",       "Arid and Pale" },
	{ "asylum",            "Asylum" },
	{ "atrocitron",        "Atrocitron, An Interactive Puzzlebox" },
	{ "ats",               "A Tight Spot" },
	{ "atwork",            "Danger! Adventurer At Work!" },
	{ "aug4",              "Augmented Fourth, an Interactive Performance" },
	{ "avon",              "Avon" },
	{ "awakening",         "The Awakening" },
	{ "awitl",             "A Week In The Life" },
	{ "ayac",              "Are You A Chef? An interactive ifMUD-saving" },
	{ "b2demo",            "Pick up the Phone Booth and Die, Part 2" },
	{ "b7snare",           "Snare, an interactive Blake's 7 adventure" },
	{ "babytree",          "Baby tree" },
	{ "backtowakeUp",      "Back to WakeUp, a Backpacker Tale" },
	{ "martyquest",        "Back to the Future - Marty Quest: an adventure through time" },
	{ "backup",            "Backup, an Interactive System Failure" },
	{ "balances",          "Balances, An Interactive Short Story" },
	{ "baldersdeath",      "Balder's Death" },
	{ "ballerina102",      "Not Just an Ordinary Ballerina" },
	{ "balt24",            "Baltimore:24, An Exercise in Interactive Fiction" },
	{ "bathtub",           "There's a Snake in the Bathtub, a Test of Patience" },
	{ "bazic",             "baZic version 0.1, Z-Machine BASIC implementation" },
	{ "bear",              "A Bear's Night Out, an Interactive Children's Story" },
	{ "bedlam",            "Bedlam, An Interactive Preview" },
	{ "bedtime",           "Bed Time" },
	{ "andrewplotkin",     "Being Andrew Plotkin" },
	{ "beingsteve",        "Being Steve" },
	{ "beneath",           "Beneath: a Transformation" },
	{ "beyond",            "Beyond" },
	{ "bibleretold",       "The Bible Retold: The Bread and the Fishes" },
	{ "bicon",             "BiCon, an Interactive Infatuation" },
	{ "biscuit",           "Biscuit, An Interactive Funeral" },
	{ "bishoes",           "Buried In Shoes" },
	{ "bj",                "Blow Job Drifter, An Interactive You Kno What" },
	{ "blair",             "Tales From The College Presents A Breath Of Fresh Blair" },
	{ "bluechairs",        "Blue Chairs" },
	{ "blues",             "Tinseltown Blues: A quest for success in Hollyweird" },
	{ "bofh",              "The Bastard Operator from Hell" },
	{ "bomber",            "The Mad Bomber" },
	{ "bookvol",           "Book and Volume" },
	{ "booth",             "Pick up the Phone Booth and Die" },
	{ "boothdye",          "Pick up the Phone Booth and Dye" },
	{ "brainnightguest",   "Brain of the Night Guest" },
	{ "brandx",            "BrandX" },
	{ "breakin",           "Break-In, an Interactive Burglary" },
	{ "bronze",            "Bronze, Inform 7 demonstration game" },
	{ "bryantcollection",  "The Bryant Collection, an Interactive Anthology" },
	{ "bse",               "BSE, An Interactive Epidemic" },
	{ "building",          "Building" },
	{ "nightbunnies",      "The Night of the Vampire Bunnies" },
	{ "bureaucrocy",       "Bureaucrocy, a frustrating tale about paperwork" },
	{ "burglar",           "Burglar! A Learning Experience" },
	{ "burnsnightsupper",  "Burns Night Supper" },
	{ "burnkoran",         "Burn The Koran and Die" },
	{ "busted",            "Busted! A game of high cunning and low humor" },
	{ "byzantine",         "Byzantine Perspective" },
	{ "cabal",             "The Cabal: The Interactive Illuminati" },
	{ "cacophony",         "Cacophony, an interactive stumbling" },
	{ "calendar",          "Calendar, an Inform 7 abuse" },
	{ "calmmutemoving",    "Calm, Mute, Moving" },
	{ "calypso",           "Calypso" },
	{ "candy",             "Candy, An Attempt at Reliving Childhood" },
	{ "cars",              "ASCII Cars!!! A game of racing with the imagination" },
	{ "casting",           "Casting" },
	{ "castleadventure",   "Castle Adventure!" },
	{ "castleredprince",   "Castle of the Red Prince, an interactive land of darkness" },
	{ "siliconcastles",    "Silicon Castles" },
	{ "catcherintherye",   "Catcher in the Rye" },
	{ "catseye",           "Cat's Eye, Miniventure #2" },
	{ "causality",         "Causality: The Search for Eternal Life" },
	{ "caveadventure",     "Cave Adventure" },
	{ "cavernofdoom",      "Zork: The Cavern of Doom" },
	{ "cavernsofchaos",    "Caverns of Chaos" },
	{ "cavetrip",          "The Spelunking Trip" },
	{ "ccake",             "Arthur Yahtzee: The Curse of Hell's Cheesecake" },
	{ "chaos",             "Chaos" },
	{ "chaosgame",         "Chaos" },
	{ "cheater",           "Cheater, An Annoying Adventure" },
	{ "cheesedoff",        "Cheesed Off!" },
	{ "cheeseshop",        "Cheeseshop" },
	{ "cheshirecat",       "Save the Cheshire Cat!" },
	{ "chico",             "Chico and I Ran" },
	{ "childsplay",        "Child's Play, A child, a toy, and a rival" },
	{ "chix",              "Chicks Dig Jerks" },
	{ "cia",               "CIA Adventure" },
	{ "claw",              "Wearing the Claw" },
	{ "codenamesilver",    "Code Name Silver Steel" },
	{ "cointoss",          "Coin toss" },
	{ "coke",              "Coke Is It!" },
	{ "coldiron",          "Cold Iron" },
	{ "colonists",         "Colonists" },
	{ "coloromc",          "Color of Milk Coffee" },
	{ "comp96",            "Yearly IF competitions unofficial 'front-end' game" },
	{ "conankill",         "Conan Kill Everything" },
	{ "dreamcorruptor",    "Corrupter of Dreams" },
	{ "cottage",           "Cottage" },
	{ "cove",              "The Cove" },
	{ "creepydemo",        "A Day in the Creepy Life of Bob Demo" },
	{ "crimescene",        "A Crime Scene, a Short Story" },
	{ "criticalbreach",    "Critical Breach, an Escape Story" },
	{ "crobe",             "Crobe" },
	{ "cryptographer",     "Cryptographer" },
	{ "crystalpalace",     "The Crystal Palace" },
	{ "csbb",              "Crystal and Stone Beetle and Bone" },
	{ "ctdoom",            "Countdown to Doom" },
	{ "curses",            "Curses, An Interactive Diversion" },
	{ "curves",            "Dangerous Curves" },
	{ "cycles",            "Vicious Cycles" },
	{ "cyclops",           "The Land of the Cyclops" },
	{ "dday",              "D-Day" },
	{ "damnatiomemoriae",  "Damnatio Memoriae" },
	{ "darkiss1",          "Darkiss! Wrath of the Vampire - Chapter 1: The Awakening" },
	{ "dashslapney",       "Dash Slapney, Patrol Leader" },
	{ "dayinlife",         "A Day in Life" },
	{ "dd4",               "Dutch Dapper IV: The Final Voyage" },
	{ "deadmansgrave",     "Dead Man's Grave: A Tell Don't Show Mystery" },
	{ "deadmeat",          "Dead Meat in the Pit" },
	{ "deadpavane",        "Dead Pavane for a Princess" },
	{ "deadreckoning",     "Dead Reckoning" },
	{ "deadsville",        "Deadsville" },
	{ "death",             "Death to my Enemies" },
	{ "debate",            "Debate" },
	{ "deephome",          "Deephome" },
	{ "degeneracy",        "Degeneracy" },
	{ "dejavu",            "Deja Vu" },
	{ "deliciousbreakfast", "Delicious Breakfast" },
	{ "delusions",         "Delusions" },
	{ "detective",         "Detective" },
	{ "detention",         "Detention, an attempt to escape from school" },
	{ "devildoit",         "The Devil Made Me Do It" },
	{ "devours",           "All Things Devours" },
	{ "dewdrops",          "Within a Wreath of Dewdrops" },
	{ "djinni",            "The Djinni Chronicles \"Undercurrents of Manipulation\"" },
	{ "dogslife",          "It's a Dog's Life" },
	{ "zunidoll",          "The Zuni Doll" },
	{ "dontgo",            "Don't Go" },
	{ "dontpeeyourself",   "Don't Pee Yourself!" },
	{ "dotd",              "Dawn of the Demon" },
	{ "downthematrix",     "Down The Matrix" },
	{ "dpod",              "Dracula - Prince of Darkness" },
	{ "dracula2",          "Dracula: Part 2, The Arrival" },
	{ "dracula1",          "Dracula: Part 1, The First Night" },
	{ "dragon",            "Dragon Adventure" },
	{ "dragonflies",       "Dragon Flies Like Labradorite" },
	{ "dragontroll",       "The Dragon and the Troll" },
	{ "dreamhold",         "The Dreamhold" },
	{ "dreamtooreal",      "A Dream Too Real" },
	{ "dual",              "Dual Transform" },
	{ "dumont",            "Dr. Dumont's Wild P.A.R.T.I" },
	{ "eas",               "Earth And Sky: Episode 1" },
	{ "cliffedge",         "Edge of the Cliff" },
	{ "edifice",           "The Edifice" },
	{ "egyptianwalking",   "Egyptian Walking Simulator" },
	{ "elephants",         "When I Was Shot By Elephants III" },
	{ "eleven",            "Film at Eleven" },
	{ "eliza",             "Eliza" },
	{ "enemies",           "Enemies" },
	{ "enigma",            "Enimga" },
	{ "enterprise",        "The Enterprise Incidents" },
	{ "entropy",           "Entropy" },
	{ "epyk",              "Eypk" },
	{ "erden",             "Travels in the Land of Erden: In Quest of the Adventure" },
	{ "eric",              "Eric The Power-Mad Dungeon Master" },
	{ "escape",            "Escape!" },
	{ "escaperemember",    "An Escape To Remember" },
	{ "eurydice",          "Eurydice" },
	{ "f209",              "Apartment 209" },
	{ "fable",             "A Fable" },
	{ "faculty",           "The Care and Feeding of Adjuncts" },
	{ "failsafe",          "FailSafe" },
	{ "farm",              "The Farmer's Daughter" },
	{ "fff",               "Fox, Fowl and Feed" },
	{ "figaro",            "Figaro" },
	{ "figueres",          "Figueres in my Basement" },
	{ "findesick",         "Fin de sickleburg" },
	{ "findthebed",        "Find the Bed" },
	{ "finetuned",         "Fine-Tuned" },
	{ "fingertipsfriend",  "Fingertips: I Found a New Friend" },
	{ "fingertipsmilk",    "Fingertips: Please Pass the Milk Please" },
	{ "firstday",          "The First Day of My New Life" },
	{ "fmvpoker",          "Frobozz Magic Video Poker" },
	{ "forestdemo",        "Forest Demo" },
	{ "fork",              "Fork: The Great Underground Dining Room" },
	{ "hiddennazi",        "The Game Formerly Known as Hidden Nazi Mode" },
	{ "forms",             "Of Forms Unknown" },
	{ "fracture",          "Fractured Metamorphoses (Example Version)" },
	{ "fragileshells",     "Fragile Shells" },
	{ "frankie",           "Frankenstein Adventure" },
	{ "freefall",          "Free Fall" },
	{ "frobozzi",          "The Encyclopedia Frobozzica (Abridged Edition)" },
	{ "frozen",            "Frozen: A Night at the Lab" },
	{ "fyleet",            "Fyleet" },
	{ "ga",                "Geocaching Adventure - GC3JJ9C - Cryptic Puzzle #6" },
	{ "galatea",           "Galatea" },
	{ "gamer",             "Gamer: Digital Limbo" },
	{ "gamlet",            "Gamlet" },
	{ "gardening",         "Gardening for Beginners" },
	{ "gatoron",           "Gator-On, Friend to Wetlands!" },
	{ "gaucho",            "Gaucho" },
	{ "gd",                "Goodbye Doggy" },
	{ "geb",               "Goose, Egg, Badger" },
	{ "geist",             "Geist" },
	{ "gerbilriot",        "Gerbil Riot" },
	{ "ghost",             "The Ghost Train" },
	{ "glass",             "Glass, a fractured fairy tale" },
	{ "glik1",             "Glik part 1: Undead Menace" },
	{ "gnuzoo",            "Gnu in the Zoo" },
	{ "godot",             "Looking For Godot" },
	{ "goldilocks",        "Goldilocks is a Fox!" },
	{ "golf",              "Textfire Golf" },
	{ "gostak",            "The Gostak" },
	{ "gourmet",           "Gourmet" },
	{ "gourmetgaffe",      "Gourmet Gaffe" },
	{ "gowest",            "Go West" },
	{ "greatxavio",        "The Great Xavio" },
	{ "greenrain",         "A Green Rain" },
	{ "growingup",         "Growing Up" },
	{ "grue",              "GRUE" },
	{ "guard",             "Guard Duty" },
	{ "guess",             "Guess The Verb!" },
	{ "guestreet",         "Life on Gue Street" },
	{ "gumshoe",           "Gumshoe" },
	{ "gussdeath",         "Guss's Death" },
	{ "halloweve",         "Hallow Eve" },
	{ "hamhouse",          "In the House of Professor Evil: The HAM HOUSE" },
	{ "hamil",             "Hamil" },
	{ "hangar22",          "Hangar 22" },
	{ "happyeverafter",    "Happy Ever After" },
	{ "crabhat",           "Oh No, Mr Crab Stole Your Hat!" },
	{ "hauntedhouse",      "Haunted House" },
	{ "hauntings",         "Hauntings" },
	{ "heist",             "Heist: The Crime of the Century" },
	{ "heliopause",        "Hoist Sail for the Heliopause and Home" },
	{ "welcometohell",     "Welcome to Hell" },
	{ "hellosword",        "Hello Sword - The journey" },
	{ "hellsbasement",     "Hell's Basement" },
	{ "helpcollides",      "When Help Collides: The Wreck of the H.M.S. Snark" },
	{ "heroes",            "Heroes" },
	{ "heroinesmantle",    "Heroine's Mantle" },
	{ "hidepachyderm",     "Hide a pachyderm!" },
	{ "hlainform",         "HLA Inform: A Classic Quest" },
	{ "hobbittruestory",   "The Hobbit - The True Story" },
	{ "robotempire",       "Holy Robot Empire" },
	{ "home",              "Home" },
	{ "homecoming",        "Homecoming" },
	{ "hoosegow",          "Hoosegow, a Wild West Wreck" },
	{ "housekey1",         "Housekey, Part I" },
	{ "housedream",        "House of Dream of Moon" },
	{ "humongouscave",     "Adventure in Humongous Cave" },
	{ "humongouscavehints", "Humongous Cave Hints" },
	{ "hummingbird",       "Flight of the Hummingbird" },
	{ "hunterdark",        "Hunter, in Darkness" },
	{ "hyperrpg",          "Hyper RPG Game!" },
	{ "i0",                "I-0: the \"jailbait on the interstate\" game" },
	{ "ibo",               "Ibo" },
	{ "iceweb",            "Iceweb" },
	{ "identity",          "Identity" },
	{ "ifwhispers5",       "IF Whispers 5" },
	{ "ifaquarium",        "IF Aquarium" },
	{ "ifquake",           "Text adventure interpretation of Id's classic FPS Level 1" },
	{ "ill",               "I'll" },
	{ "imiagination",      "Imiagination" },
	{ "cubicle",           "In The Cubicle" },
	{ "inamanor",          "In a Manor of Speaking" },
	{ "inevita",           "Inevitable" },
	{ "informatory",       "Informatory" },
	{ "inhumane",          "Inhumane: An Infralogic Massacre" },
	{ "insight",           "Insight" },
	{ "intangible",        "Intangible" },
	{ "ifplayer",          "Interactive Fiction Player" },
	{ "interviewrockstar", "Interview with a Rock Star" },
	{ "lionskin",          "In the Skin of a Lion Quest: Caravaggio's Journey" },
	{ "intruder",          "Intruder - Interactive Fiction: A Burglary" },
	{ "invisibleadv",      "The Believable Adventures of an Invisible Man" },
	{ "pressedon",         "I pressed on, being chased by a stapler with my name on it" },
	{ "iraqiinvasion",     "Iraqi Invasion: A Text Misadventure" },
	{ "islandsfaraway",    "Islands Far Away" },
	{ "beanstalker",       "The Bean Stalker" },
	{ "jetblue",           "Jet-Blue" },
	{ "jewelofknowledge",  "The Jewel of Knowledge" },
	{ "jigsaw",            "Jigsaw, An Interactive History" },
	{ "jigsawrules",       "Jigsaw: Rules and Footnotes" },
	{ "juicehead",         "Juicehead, an interactive binge" },
	{ "justanotherday",    "Just Another Day" },
	{ "karn",              "Return to Karn" },
	{ "keepingdido",       "Keeping Dido" },
	{ "kidnapsea",         "Kidnapped - On the Sea" },
	{ "kierkegaardsspider", "Kierkegaard's Spider" },
	{ "kiiwii",            "Kii!Wii! A tiny friend to brighten your day" },
	{ "killingthedoctor",  "Killing the Doctor" },
	{ "kirby",             "The X-Child, Kevin Johnson Residence Hall Saga 2" },
	{ "kitten",            "robotfindskitten" },
	{ "kooku",             "Kook U" },
	{ "lambs",             "Silence of the Lambs" },
	{ "lambs2",            "Silence of the Lambs 2" },
	{ "largemachine",      "Large Machine" },
	{ "lash",              "Local Asynchronous Satellite Hookup" },
	{ "ldodoom",           "Last Days of Doom" },
	{ "leaptime",          "Leap Time" },
	{ "lecture",           "Lecture Feature" },
	{ "lex",               "LeX" },
	{ "librariani7",       "Life of A Librarian (Inform 7 version)" },
	{ "libraryfront",      "All Quiet on the Library Front" },
	{ "lifeordeath",       "Life or Death" },
	{ "blacklily",         "The Black Lily" },
	{ "limp",              "Limp" },
	{ "nemeanlion",        "The Nemean Lion: another anonymous joke game" },
	{ "lists",             "Lists and Lists" },
	{ "livejoseph",        "LiveJoseph" },
	{ "llr3",              "A Little Like Rogue" },
	{ "lmstvg",            "LMS The Video Game" },
	{ "lookingtothesky",   "Looking to the Sky" },
	{ "motherloose",       "Mother Loose" },
	{ "lostspellmaker",    "The Lost Spellmaker" },
	{ "lostpig",           "Lost Pig And Place Under Ground" },
	{ "lostsheep",         "The Bible Retold: The Lost Sheep" },
	{ "luicorp",           "The Ludicorp Mystery" },
	{ "magictoyshop",      "The Magic Toyshop" },
	{ "magicmuffin",       "Magic Muffin - The Desert" },
	{ "mahadev",           "Mahadev: Painless Little Stupid Games #6" },
	{ "makeitgood",        "Make it Good" },
	{ "mansion",           "Mansion" },
	{ "revenger",          "Revenger" },
	{ "masquerade",        "Masquerade" },
	{ "medusa",            "Medusa, NPC Conversations Example" },
	{ "mercy",             "Mercy" },
	{ "metamorphoses",     "Metamorphoses" },
	{ "mhpquest",          "Quest for the Magic Healing Plant" },
	{ "midpoints",         "Midpoints" },
	{ "mimesis",           "Sins Against Mimesis" },
	{ "mindelectric",      "The Mind Electric" },
	{ "mines",             "Mines" },
	{ "christminster",     "Christminster" },
	{ "misdirection",      "The Act Of Misdirection" },
	{ "missinggrandpa",    "Missing Grandpa: Lost in Time" },
	{ "mobius",            "Mobius" },
	{ "monstermaker",      "Monster Maker" },
	{ "monzasphantom",     "Monza's Phantom" },
	{ "moonshaped",        "Moon-Shaped" },
	{ "moonglow",          "Moonglow, Miniventure #1" },
	{ "moonwrecked",       "Moonwrecked" },
	{ "more",              "More" },
	{ "mortlakemanor",     "Mortlake Manor" },
	{ "mountain",          "Mountain, an Interactive Expedition" },
	{ "mousequest",        "Mouse Quest Chapter 1 - The Arrival of Winter" },
	{ "mrp",               "The Story of Mr. P." },
	{ "mst3k1",            "Detective, An Interactive MiSTing (Mystery Science Theater 3000)" },
	{ "mst3k2",            "A Fable, interactive MiSTing-up of \"A Fable\"" },
	{ "mulldoon",          "The Mulldoon Legacy" },
	{ "mulldoonmurders",   "The Mulldoon Murders" },
	{ "murdac",            "Murdac" },
	{ "murdererleft",      "What The Murderer Had Left" },
	{ "muse",              "Muse: An Autumn Romance" },
	{ "musician",          "The Musician" },
	{ "myangel",           "My Angel" },
	{ "mylastduchess",     "My Last Duchess" },
	{ "conceptisproven",   "My Little Project Concept is Proven" },
	{ "oceantower",        "Love, Hate and the Mysterious Ocean Tower" },
	{ "nameless",          "Endless, Nameless" },
	{ "nautilisia",        "Nautilisia" },
	{ "newday",            "A New Day" },
	{ "nidus",             "Nidus" },
	{ "nightcomputer",     "Night at the Computer Center" },
	{ "nightchristmas",    "An Abbreviated Night Before Christmas" },
	{ "nihilism",          "The Abyss" },
	{ "ninepoints",        "Nine Points" },
	{ "njag2",             "Not Just A Game" },
	{ "noroom",            "No Room" },
	{ "northnorth",        "The Northnorth Passage" },
	{ "nudistsgonewild",   "Nudists Gone Wild" },
	{ "adventurelobjan",   "Adventure (Lobjan translation)" },
	{ "oad",               "Only After Dark" },
	{ "odieus",            "Odieus's Quest for the Magic Flingshot (Beta)" },
	{ "omniquest",         "Omniquest" },
	{ "ogisoas",           "One Game in Search of a Story" },
	{ "onegirl",           "One Girl" },
	{ "onyourback",        "On Your Back" },
	{ "orevore",           "Orevore Courier" },
	{ "bloodless",         "Bloodless on the Orient Express" },
	{ "orion",             "The Orion Agenda" },
	{ "ottumwa",           "PDFA Ottumwa" },
	{ "outofthepit",       "Out of the Pit" },
	{ "paddlingmania",     "Total Paddling Mania" },
	{ "paint",             "Paint and Corners" },
	{ "palebluelight",     "Pale Blue Light" },
	{ "paperchase",        "Paper Chase" },
	{ "parallel",          "Parallel" },
	{ "paranoia",          "Paranoia" },
	{ "parc",              "Parc" },
	{ "pathway",           "Pathway to Destruction" },
	{ "peacock",           "Not Made With Hands" },
	{ "pegasus",           "Pegasus" },
	{ "pentari",           "Pentari" },
	{ "pirilousmagic",     "Perilous Magic" },
	{ "perrysworld",       "Perry's World" },
	{ "phlegm",            "Phlegm" },
	{ "photograph",        "Photograph, a Portrait of Reflection" },
	{ "photopia",          "Photopia" },
	{ "piece",             "Piece of Mind" },
	{ "pigpancake",        "Pigpancake" },
	{ "piracy2",           "Piracy 2.0" },
	{ "piraterailroad",    "Pirate Railroad" },
	{ "plsg",              "Painless Little Stupid Games" },
	{ "praser5",           "Praser 5" },
	{ "primer",            "Primer" },
	{ "primrose",          "The Primrose Path" },
	{ "iceprincess",       "The Ice Princess" },
	{ "probing",           "Offensive Probing" },
	{ "promoted",          "Promoted!" },
	{ "puerto",            "The board game Puerto Rico" },
	{ "punkpoints",        "Punk Points" },
	{ "puppetman",         "The Puppet-Man (Larsoft Adventure number 5)" },
	{ "putpbaa",           "Pick Up the Phone Booth and Aisle" },
	{ "pytho",             "Pytho's Mask" },
	{ "muffinquest",       "The Quest for the Magic Muffin" },
	{ "muffinquest3",      "Quest for the Magic Bagel...Err Muffin 3" },
	{ "simpletheft2",      "A Simple Theft 2: A Simple Theftier" },
	{ "quidditch1954",     "The Quidditch Final of 1954" },
	{ "ralph",             "Ralph, An Interactive Sniffing" },
	{ "rameses",           "Rameses, a Tale of Heroes" },
	{ "rans",              "RANS, an interworld progress" },
	{ "rachaelbadday",     "Rachel has a bad day" },
	{ "readinginmay",      "A Reading in May" },
	{ "relief",            "The Hunt For Relief" },
	{ "reorsbushcave",     "Reor's Bush-Cave (The Sprout Pouch pt 4)" },
	{ "reser",             "Rock'Em Sock'Em Robots" },
	{ "resident",          "The Resident" },
	{ "retrofatale",       "Retro Fatale" },
	{ "reverb",            "Reverberations" },
	{ "reverzi",           "Reverzi" },
	{ "ribbons",           "Ribbons" },
	{ "risenecropolis",    "Rise of the Necropolis" },
	{ "risorg",            "Risorgimento Represso" },
	{ "robots",            "Robots - Another Abuse of the Z-Machine" },
	{ "rogue",             "zRogue" },
	{ "roomserial",        "Room Serial, an escape game" },
	{ "rota",              "The Reliques of Tolti-Aph" },
	{ "rpn",               "RPN" },
	{ "rtdoom",            "Return to Doom" },
	{ "samegame",          "SameGame, another episode in the Z-Machine abuse saga" },
	{ "samhain",           "Samhain: Pick Up The Pumpkin and KILL" },
	{ "sangraal",          "Sangraal" },
	{ "santassleighride",  "Santa's Sleigh Ride" },
	{ "saveprinceton",     "Save Princeton" },
	{ "savoirfaire",       "Savoir-Faire" },
	{ "scald",             "Scald" },
	{ "informschool",      "Inform School" },
	{ "schooldays",        "Schooldays" },
	{ "scopa",             "Scopa, a graphical (Z-code V6) card game" },
	{ "finalselection",    "Final Selection" },
	{ "sfiction",          "Speculative Fiction: Beginner's Lessons" },
	{ "shadowgate",        "Shadowgate" },
	{ "sherlock1",         "Sherlock gamebook #1: Murder at the Diogenes Club" },
	{ "sherlock2",         "Sherlock gamebook #2: The Black River Emerald" },
	{ "sherlock3",         "Sherlock gamebook #3: Death at Appledore Towers" },
	{ "sherlock4",         "Sherlock gamebook #4: The Crown vs Dr. Watson" },
	{ "shade",             "Shade" },
	{ "shadowofmemories",  "Shadow of Memories" },
	{ "shadowsoldiers",    "Shadow Soldiers" },
	{ "shallow",           "Shallow" },
	{ "sherbet",           "The Meteor, the Stone and a Long Glass of Sherbet" },
	{ "shrapnel",          "Shrapnel" },
	{ "sixgrayrats",       "Six Gray Rats Crawl Up The Pillow" },
	{ "slackerx",          "Slacker X" },
	{ "sleepcycle",        "Sleep Cycle" },
	{ "snafufun",          "SNAFUFUN" },
	{ "snowquest",         "Snowquest" },
	{ "neverplayed",       "So, You've Never Played a Text Adventure Before, Huh?" },
	{ "sofar",             "So Far, An Interactive Catharsis" },
	{ "softporn",          "Softporn Adventure" },
	{ "solitary",          "Solitary" },
	{ "somewhere",         "Somewhere" },
	{ "soreality",         "So Reality" },
	{ "spacestation",      "Space Station: based on Planetfall example transcript" },
	{ "spaceinvaderz",     "Space InvaderZ" },
	{ "spadventure",       "SpAdventure" },
	{ "spiritwrak",        "SpiritWrak" },
	{ "sporkery1",         "Sporkery 1: There Will Be Sporking" },
	{ "spot",              "The Spot" },
	{ "spring",            "She's Got a Thing For a Spring" },
	{ "spycatcher",        "Spycatcher" },
	{ "starborn",          "Starborn" },
	{ "seeksorrow",        "Starry Seeksorrow" },
	{ "stealingthestolen", "Stealing the Stolen" },
	{ "stiffmst",          "Stiffy Makane: Mystery Science Theater 3000" },
	{ "stinkorswim",       "Stink or Swim" },
	{ "stonecave",         "The Stone Cave" },
	{ "stormcellar",       "Storm Cellar" },
	{ "strangeworld",      "Strange World" },
	{ "sturdlint",         "Sturdlint (The Mempotnaclob): Painless Little Stupid Games #7" },
	{ "suicide",           "Suicide, a self-ordered death sentence" },
	{ "sunburn",           "Sunburn" },	
	{ "sunburst",          "Sunburst: A C64 science fiction adventure game" },
	{ "sundayafternoon",   "Sunday Afternoon" },
	{ "briantimmons",      "The Surprising Case of Brian Timmons" },
	{ "sushi",             "A Day For Fresh Sushi" },
	{ "sutwin",            "The Space Under the Window" },
	{ "suvehnux",          "Suveh Nux" },
	{ "swineback",         "Swineback Ridge" },
	{ "sycamoratree",      "Sycamora Tree" },
	{ "taipan",            "Taipan!" },
	{ "spiderandweb",      "Spider And Web" },
	{ "tatctae",           "Time: All things come to an end" },
	{ "tauntingdonut",     "Taunting Donut" },
	{ "tblw",              "The Blood lust Warrior" },
	{ "tcomremake",        "The Color of Magic remake" },
	{ "tcoty",             "The Citizen of the Year" },
	{ "teacherfeature",    "Teacher Feature" },
	{ "williamtell",       "William Tell" },
	{ "telling",           "Whom The Telling Changed" },
	{ "temple",            "The Temple" },
	{ "terrortabby",       "Attack of the Terror Tabby!" },
	{ "tesseract",         "Beyond The Tesseract" },
	{ "tgm",               "The Great Machine - a fragment" },
	{ "thatdamnelevator",  "That Damn Elevator" },
	{ "thatdamnremote",    "thatdamnremote" },
	{ "cenricfamilycurse", "The Cenric Family Curse" },
	{ "vergingpaths",      "The Garden of Verging Paths" },
	{ "minimalistgame",    "The Minimalist Game" },
	{ "talemorning",       "The Mundane Tale of the Morning After" },
	{ "paperbagprincess",  "The Paper Bag Princess" },
	{ "worldupsidedown",   "The World Turned Upside Down" },
	{ "advhoudini",        "The Adventures of Houdini" },
	{ "penury",            "The Algophilists' Penury" },
	{ "theatre",           "Theatre" },
	{ "dayishothitler",    "The Day I Shot..." },
	{ "doghouse",          "The Dog/House" },
	{ "emptyroom",         "The Empty Room" },
	{ "forgottengirls",    "The Forgotten Girls" },
	{ "henribeauchamp",    "The Gallery of Henri Beauchamp" },
	{ "garliccage",        "The Garlic Cage, Episode I" },	
	{ "grandquest",        "The Grand Quest" },
	{ "thegreat",          "The Great, A Voyage To The Inner Self" },
	{ "greatpancake",      "The Great Pancake Detectives - Case #27" },
	{ "horriblepyramid",   "The Horrible Pyramid" },
	{ "house",             "The House" },
	{ "houseoffear",       "The House of Fear" },
	{ "island",            "The Island" },
	{ "kazooist",          "The Kazooist" },
	{ "lastdarkday",       "The Last Dark Day: Painless Little Stupid Games #8" },
	{ "priceoffreedom",    "The Price of Freedom" },
	{ "prize",             "The Prize" },
	{ "nascarexperience",  "The Realistic Nascar eXperience" },
	{ "smallroom",         "Trapped in a Small Room" },
	{ "spotlight",         "The Spotlight" },
	{ "stargods",          "The Star Gods" },
	{ "terribleoldmanse",  "The Terrible Old Manse: 8bit fun in 7bit ASCII" },
	{ "townmusicians",     "The Town Musicians" },
	{ "valleyhouse",       "The Valley House: Painless Little Stupid Games #10" },
	{ "warblersnest",      "The Warbler's Nest" },
	{ "thorn",             "The Thorn" },
	{ "threecows",         "Three Cows and Two Doors" },
	{ "threediopolis",     "Threediopolis" },
	{ "threemore",         "Three More Visitors" },
	{ "timefortea",        "Time For Tea: A Game of Tea, Cakes, and Deadly Secrets" },
	{ "tirehoax",          "My Magic Tire Hoax" },
	{ "tk1",               "Time Killer #1: Claustrophobia" },
	{ "tkatc",             "The King and the Crown, Special Edition" },
	{ "toask",             "Treasures of a Slaver's Kingdom" },
	{ "tok",               "ToK" },
	{ "downtowntokyo",     "Downtown Tokyo Present Day" },
	{ "tower",             "Tower, a surreal trip" },
	{ "toxinx",            "Toxin X" },
	{ "trapped",           "Trapped" },
	{ "troll",             "Zork: A Troll's Eye View" },
	{ "trw",               "Tull Road Warrior" },
	{ "trystoffate",       "Tryst of Fate" },
	{ "tubetrouble",       "Tube Trouble" },
	{ "tutorial",          "Tutorial" },
	{ "tutorialhotel",     "Hotel Tutorial" },
	{ "tuuli",             "Tuuli" },
	{ "typo",              "Typo!" },
	{ "uhohdemo",          "Uh-oh! (demo version)" },
	{ "underdoos",         "The Underoos that ate New York!" },
	{ "underthebed",       "Under the Bed" },
	{ "ungodlyhour",       "Ungodly hour" },
	{ "uninvited",         "Uninvited" },
	{ "unicornpool",       "The Unicorn Pool" },
	{ "vacation",          "Vacation Gone Awry" },
	{ "vagueness",         "What Happens In Vagueness" },
	{ "vampiresun",        "House of the Midnight Sun - A Vampire's Tale" },
	{ "notinvenice",       "Not in Venice" },
	{ "vespers",           "Vespers" },
	{ "varicella",         "Varicella" },
	{ "vigilance",         "Internal Vigilance" },
	{ "vindaloo",          "Vindaloo" },
	{ "violet",            "Violet" },
	{ "virtuality",        "Virtuality" },
	{ "lackofvision",      "Lack of Vision" },
	{ "visitor",           "The Visitor" },
	{ "vosr",              "Voices of Spoon River" },
	{ "wadewar3",          "The WadeWars Book III" },
	{ "walkamongus",       "Walk Among Us" },
	{ "walkinthepark",     "A Walk in the Park" },
	{ "wallpaper",         "Delightful Wallpaper" },
	{ "warp",              "Warp!" },
	{ "wizardscastle",     "Wizard's Castle" },
	{ "weareunfinished",   "We Are Unfinished" },
	{ "weapon",            "The Weapon" },
	{ "weather",           "A Change in the Weather" },
	{ "thewedding",        "The Wedding" },
	{ "weding",            "Wedding" },
	{ "weirdcity",         "Weird City Interloper" },
	{ "weirdness",         "Weirdness: Strange, Different, and Altogether Weird" },
	{ "wwwanderer",        "Werewolves and Wanderer" },
	{ "wernersquest",      "Werner's Quest Parts 1-4" },
	{ "whispers",          "The Corn Identity, an \"IF Whispers\" collaborative project" },
	{ "whitehouses",       "White Houses" },
	{ "wildflowers",       "Wildflowers" },
	{ "windchester",       "Winchester's Nightmare" },		
	{ "windhall",          "The Windhall Chronicles, Volume One" },
	{ "winterwonderland",  "Winter Wonderland" },
	{ "wir1",              "When in Rome 1: Accounting for Taste" },
	{ "wir2",              "When in Rome 2: Far from Home" },
	{ "wireless",          "Get Magazine. Open Magazine. Read Article" },
	{ "insidewoman",       "Inside Woman" },
	{ "wossname",          "Spodgeville Murphy and The Jewelled Eye of Wossname" },
	{ "wrenlaw",           "Wrenlaw" },
	{ "wscholars",         "Weishaupt Scholars" },
	{ "wump2ka",           "Wumpus 2000, The Virulent Labyrinth Of Yob-Shuggoth" },
	{ "wumpus",            "Hunt the Wumpus" },
	{ "wurm",              "Wurm" },
	{ "xenophobia",        "Xenophobia" },
	{ "yagwad",            "YAGWAD: Yes, Another Game With A Dragon!" },
	{ "yakshaving",        "Yak Shaving for Kicks and Giggles!" },
	{ "yomomma",           "Raising the Flag on Mount Yo Momma" },
	{ "stewgoing",         "You've Got A Stew Going!" },
	{ "zlife",             "Z-Life" },
	{ "zassball",          "ZassBall, Another Abuse of the Z-Machine" },
	{ "zbefunge",          "ZBefunge 0.7 beta" },
	{ "zcamel",            "Camel" },
	{ "zcatalog",          "The Z-Files, a Z-Code Catalog" },
	{ "zchess",            "Z-Chess" },
	{ "zdungeon",          "ZDungeon" },
	{ "zedfunge",          "ZedFunge 0.7.3 beta" },
	{ "zedit",             "ZEdit, The World's Most Portable Text Editor" },
	{ "zegro",             "Zegrothenus" },
	{ "zenon",             "Escape from the Starship Zenon" },
	{ "zenspeak",          "Zen Speaks!" },
	{ "zokoban",           "Z-Machine Sokoban" },
	{ "zombies",           "Zombies, yet another abuse of the Z-Machine" },
	{ "zorklxix",          "Zork LXIX: The Great Underground Hot Dog" },
	{ "zorkianstories1",   "Zorkian Stories 1: G.U.E" },
	{ "zorknplus9",        "Zork N plus 9" },
	{ "zracer",            "ZRacer" },
	{ "zsnake",            "Z-Snake" },
	{ "ztornado",          "Z-Tornado" },
	{ "ztrek",             "Super Z Trek" },
	{ "ztuu",              "Zork: The Undiscovered Underground" },
	{ "zugzwang",          "Zugzwang: The Interactive Life of a Chess Piece" },

	{ nullptr, nullptr }
};

#define NONE GUIO4(GUIO_NOSPEECH, GUIO_NOSFX, GUIO_NOMUSIC, GUIO_NOSUBTITLES)
#define ENTRY0(ID, VERSION, MD5, FILESIZE) { ID, VERSION, MD5, FILESIZE, Common::EN_ANY, NONE }
#define ENTRY1(ID, VERSION, MD5, FILESIZE, LANG) { ID, VERSION, MD5, FILESIZE, LANG, NONE }
#define ENTRYS(ID, VERSION, MD5, FILESIZE) { ID, VERSION, MD5, FILESIZE, Common::EN_ANY, GUIO3(GUIO_NOSPEECH, GUIO_NOMUSIC, GUIO_NOSUBTITLES) }

#define FROTZ_TABLE_END_MARKER { nullptr, nullptr, nullptr, 0, Common::EN_ANY, "" }

const FrotzGameDescription FROTZ_GAMES[] = {
	// Infocom Games - English
	ENTRY0("amfv", "R77-850814", "b7ffaed0ca4a90450f92b34066133377", 262016),
	ENTRY0("amfv", "R79-851122", "1e37dbcf7ccc9244dbfc3229796362f4", 262544),
	ENTRY0("arthur", "R54-890606", "ced2c66d03a49de0e8190b468332f081", 271360),
	ENTRY0("arthur", "R74-890714", "13d13f375f85a874c82a8ac7ad69dc41", 269200),
	ENTRY0("ballyhoo", "R97-851218", "7944e832a7d7b34037c7b6791de43dbd", 128556),
	ENTRY0("beyondzork", "R49-870917", "a5547795def620d0a75a064f9a37ab2d", 261900),
	ENTRY0("beyondzork", "R51-870923", "73948f415596fa4d9afe442b2c19e61f", 261548),
	ENTRY0("beyondzork", "R57-871221", "c56cac07a500e5864a994b19286bc07c", 261388),
	ENTRY0("borderzone", "R9-871008", "189231ed0675f6be3be86856f49211af", 178372),
	ENTRY0("bureaucracy", "R86-870212", "2bb00311d4c201082cfcd278ae5db921", 243144),
	ENTRY0("bureaucracy", "R116-870602", "a8ae194257a989ed3d82648a507466f2", 243340),
	ENTRY0("cutthroats", "R23-840809", "059801d9f90fffeb3645816c37c7eda2", 112558),
	ENTRY0("deadline", "R22-820809", "1610e84ca2505885566e648c1c525976", 111782),
	ENTRY0("deadline", "R26-821108", "e1ae6af1098067b86076c34865ae713c", 108372),
	ENTRY0("deadline", "R27-831006", "166ffb7cabc6b85f210655f371c89c46", 108454),
	ENTRY0("enchanter", "R10-830810", "7b41d915b4c2e31423d99925e9438aa4", 109126),
	ENTRY0("enchanter", "R15-831107", "e70f21aad650dd196fa3601cab5e0fc5", 109230),
	ENTRY0("enchanter", "R16-831118", "46187e0691f6f5ecdd5a336885db6aad", 109234),
	ENTRY0("enchanter", "R29-860820", "f87cdafad3682ead25cfc473656ff713", 111126),
	ENTRY0("hhgttg", "R47-840914", "fdda8f4239819402c62db866bb61a648", 112622),
	ENTRY0("hhgttg", "R56-841221", "a214fcb42bc9f554d07d983a12f6a062", 113444),
	ENTRY0("hhgttg", "R58-851002", "e867d49ad1fb9406ff4e0678a4ee2ac9", 113332),
	ENTRY0("hhgttg", "R59-851108", "34f6abc1f2a42be127ef434fc475f0ee", 113334),
	ENTRY0("hhgttg", "R31-871119", "379022bcd4ec74b90274c6100c33f579", 158412),
	ENTRY0("hollywoodhijinx", "R37-861215", "7b52824057ae24e098c228c41460ef75", 109650),
	ENTRY0("infidel", "R22-830916", "38f713e53af720624434529ea780040c", 93556),
	ENTRY0("journey", "R30-890322", "c9893bc0399080bd3850d4db2120d110", 280472),
	ENTRY0("journey", "R77-890616", "8a4ab56f62e1b7c918b837794182dbcd", 282176),
	ENTRY0("journey", "R83-890706", "c33ea33ab8aec6c617734dcfe1211067", 282312),
	ENTRY0("lgop", "R0", "69b3534570851b90d7f53ebe9d224a6a", 128998),
	ENTRY0("lgop", "R4-880405", "6bdae7434df7c03f3589ece0bed3317d", 159928),
	ENTRY0("lgop", "R59-860730", "e81237e220a612c5a93fbcc1fdf85a0a", 129022),
	ENTRYS("lurkinghorror", "R203", "e2d2505510479fec0405727e3d0abc10", 128986),
	ENTRYS("lurkinghorror", "R219", "83936d75c2cfd71fb64bf63c4696b9ac", 129704),
	ENTRYS("lurkinghorror", "R221", "c60cd0bf3c6eda867241378c7cb5464a", 129944),
	ENTRY0("minizork1", "R34-871124", "0d7700679e5e63dec97f712698610a46", 52216),
	ENTRY0("moonmist", "R4-860918", "284797c3025ffaf76aecfa5c2bbffa86", 129002),
	ENTRY0("moonmist", "R9-861022", "698475de2769c66bc5a1eca600c71561", 128866),
	ENTRY0("nordbert", "R19-870722", "da1e189e19e3b24b2e35bd41fc32d261", 170284),
	ENTRY0("planetfall", "R20-830708", "15815c461a8548b7630d2aee46d07cc7", 107958),
	ENTRY0("planetfall", "R26-831014", "cf6ce61eb2eff9d4f18d7bcba7c12cfb", 108674),
	ENTRY0("planetfall", "R29-840118", "9facd8b974e658520fb762af4c4789dc", 109052),
	ENTRY0("planetfall", "R37-851003", "01844816673414c97d21dc003304989b",109398),
	ENTRY0("planetfall", "R10-880531", "34c69f1d24418fd4d2de195a1d7546c4", 136560),
	ENTRY0("plunderedhearts", "R26-870730", "fe5b9eb91949d41838166364f1753b10", 128962),
	ENTRY0("infocomsampler1", "R26-840731", "5483febc51abd55fb5e04c4c97a0b260", 112610),
	ENTRY0("infocomsampler1", "R53-850407", "47b8b8394e25faec870a798145529688", 126708),
	ENTRY0("infocomsampler1", "R55-850823", "05d9d1a1c3c73fce9e24ab695ece16c8", 126902),
	ENTRY0("infocomsampler2", "R97-870601", "201fa230a942df5aa75bb5b5f609e8ce", 125314),
	ENTRY0("seastalker", "R15-840501", "2f0220b0390deda695e01832a92b5493", 117738),
	ENTRY0("seastalker", "R15-840522", "050961fa7788c309bbf40accbff2ffdf", 117728),
	ENTRY0("seastalker", "R16-850515", "eb39dff7beb3589c8581dd2e3569eb78", 117752),
	ENTRY0("seastalker", "R16-850603", "bccf194b1e823e37db2431b586662773", 117762),
	ENTRY0("seastalker", "R86-840320", "64fb27e7b9fd682ff4f0d0ec6616a468", 116456),
	ENTRYS("sherlockriddle", "R21-871214", "69862f7f07a4e977159ea4da7f2f2ba6", 188444),
	ENTRYS("sherlockriddle", "R26-880127", "2cb2bda2e34eb7f9494cb585720e74cd", 190180),
	ENTRY0("shogun", "R322-890706", "62cca41feb94082442026f44f3e48e19", 344816),
	ENTRY0("sorcerer", "R4-840131", "d4a914fdfe90f5cd055a03b9aa24addd", 109734),
	ENTRY0("sorcerer", "R6-840508", "7ee357c10a9e049fe7c641a4817ee575", 109482),
	ENTRY0("sorcerer", "R13-851021", "7a076459806eaee72015b2b2882a89dc", 108692),
	ENTRY0("sorcerer", "R15-851108", "cde88a011d2ba183ff69b47b0d8881c6", 108682),
	ENTRY0("spellbreaker", "R63-850916", "b7b9eef231dee03fb40a9d98416fa0d5", 128480),
	ENTRY0("spellbreaker", "R87-860904", "852286847f4cdd790075fa824260ff4e", 128916),
	ENTRY0("starcross", "R15-820901", "fb2e6d9a0ad5822f3a8d4aec949e4e3c", 84984),
	ENTRY0("starcross", "R17-821021", "ed1e62e1f0eb9d819be45c076c5729f7", 83792),
	ENTRY0("stationfall", "R107-870430", "cfadfb66afabaa2971ec9b4ae65266ca", 128934),
	ENTRY0("suspect", "R14-841005", "3d759ccb19233f51968fa79d7374b393", 118692),
	ENTRY0("suspended", "v5-830222", "d898430e3cccdee9f9acfffcc9ef709c", 105418),
	ENTRY0("suspended", "R7-830419", "65f0cc760a2500d110242fbf942f1028", 105500),
	ENTRY0("suspended", "R8-830521", "b749d42462dfec21831b69635cd9c5e8", 105492),
	ENTRY0("suspended", "R8_2-840521", "6088ad7cb553626b52875a9b8e801312", 105584),
	ENTRY0("trinity", "R11-860509", "994ea591f8d401e11661c912b92ee05e", 262016),
	ENTRY0("trinity", "R12-860926", "5377dc1ee39f1c8ed572944f89946eb2", 262064),
	ENTRY0("wishbringer", "R23-880706", "bec823084c5622e88eca5a886278d2a5", 164712),
	ENTRY0("wishbringer", "R68-850501", "898b9b157ce8e54a0953366d6317fbd5", 128952),
	ENTRY0("wishbringer", "R69-850920", "e7c0412c4b3bda39de438a02cbae3816", 128904),
	ENTRY0("thewitness", "R13-830524", "d2297ddfe2c1b976c1b0c381ab01e2b3", 102608),
	ENTRY0("thewitness", "R18-830910", "a6e441b0b92a72537c830fed201267af", 103728),
	ENTRY0("thewitness", "R22-840924", "1019b9b1e1aa2c6eda945d7d92c2073a", 104664),
	ENTRY0("zork0", "R296-881019", "fca554c21542729c9d154c319af6307e", 295536),
	ENTRY0("zork0", "R366-demo-890323", "b58c35dc2ba36d48fade99564922c7c3", 296376),
	ENTRY0("zork0", "R366-890323", "e787b2cad2d6f29fd812e737f75646e8", 296376),
	ENTRY0("zork0", "R383-890602", "32e3e7ec438dabe77df2351af6ece324", 299392),
	ENTRY0("zork0", "R393-890714", "29fb0e090bbff7bc8e9661e55da69ae7", 299968),
	ENTRY0("zork1", "R15-UG3AU5", "fa2d22304700898cb8de921f46ca4bc9", 78566),
	ENTRY0("zork1", "R20", "b222bed4a0ab2650135cba7f4b1b1c67", 75734),
	ENTRY0("zork1", "R23-820428", "6ad3d9ab2874beefcbc53630e9261118", 75780),
	ENTRY0("zork1", "R25-820515", "287a1ce17f458fb2e776499a13796719", 75808),
	ENTRY0("zork1", "R26-820803", "285f1d7c5deb1a2f23825f63823d0777", 75964),
	ENTRY0("zork1", "R28-821013", "83bb70d73f3b4b5c4a32d8588b2d0707", 76018),
	ENTRY0("zork1", "R30-830330", "d6d8b3ae49a683a6fce2383a8bab36a5", 76324),
	ENTRY0("zork1", "R5", "dd5ba502b30189d03abfcfb9817dffe0", 82836),
	ENTRY0("zork1", "R52-871125", "e56267fd041c71fc229f7deb6b6537c2", 105264),
	ENTRY0("zork1", "R75-830929", "b35bca8dd18f6312c7e54dcd7958d7e5", 84868),
	ENTRY0("zork1", "R76-840509", "50ebf3c0c959ac2571c23cb7f7907c70", 84874),
	ENTRY0("zork1", "R88-840726", "d708b6751126f3b2b7612c760f080d41", 84876),
	ENTRY0("zork2", "R15-820308", "4b6ecc8e40243ddbd4cc19ef82304c3b", 82110),
	ENTRY0("zork2", "R17-820427", "386f2cd937e0ca316695d6ddca521c78", 82368),
	ENTRY0("zork2", "R18-820512", "a019dd721134b57f5926ee2adf634b55", 82422),
	ENTRY0("zork2", "R18_2-820517", "6cafa0e5239a74aa120bb8e2c33441be", 82422),
	ENTRY0("zork2", "R19-820721", "a5236020509af26b47c737e51ce884aa", 82586),
	ENTRY0("zork2", "R22-830331", "600264d62720731283454592261ec3fe", 82920),
	ENTRY0("zork2", "R23-830411", "6c2e766b553c127bb07f7a0f8fe03ae2", 81876),
	ENTRY0("zork2", "R48-840904", "a5064c9c3ce0bc02f16e01d745f39b67", 89912),
	ENTRY0("zork2", "R7-UG3AU5", "8243ce12e7b3ce24b150f34cc2cb472c", 85260),
	ENTRY0("zork3", "R10-820818", "ba4897f4d82ba08906295dd3aebf501a", 82334),
	ENTRY0("zork3", "R15-830331", "2fb29e6f5eebb643f42714ca9086e145", 82558),
	ENTRY0("zork3", "R15_2-840518", "672b54d8f457bd3be32e41fc9e069d71", 82642),
	ENTRY0("zork3", "R16-830410", "4717f8ec2f08da7d438c05f1351d28bd", 81626),
	ENTRY0("zork3", "R17-840727", "c5dc520f469771c59d193558d405341d", 82714),
	ENTRY0("ztuu", "ztuu-970828", "3a55991be19943a13da58a91cd3615eb", 102524),

	// Infocom Games - Foreign
	ENTRY1("zork1", "R3-880113", "9f336c92c1fd392fc7e81288e5c9b6ab", 116216, Common::DE_DEU),

	// Converted Scott Adams games
	ENTRY0("adventureland", "941017", "cde66d37efaff46f18e67b0f39e4d0cd", 43008),
	ENTRY0("scottsampler", "980329", "86c473c81e86637105108afa943c3ced", 23040),
	ENTRY0("buckaroobanzai", "980329", "cdbf748cdcee3cade378cf62cfe01d43", 24064),
	ENTRY0("thecount", "980329", "a0060ef9c9fa5cc3d3dbbc060f6451c2", 25088),
	ENTRY0("mysteryfunhouse", "980329", "4b78c1883356db8184b351c5a269fdce", 24064),
	ENTRY0("ghosttown", "980329", "0240f4119bb9b8e8197f37049c9b4f82", 25600),
	ENTRY0("goldenvoyage", "980329", "d986f2ac673abdce741c90e8b9fc3acf", 26112),
	ENTRY0("marveladventure", "HULK-980329", "964dfa22fcd54d2674123951af79136b", 25600),
	ENTRY0("strangeodyssey", "980329", "8216fc5ca7ed593d6a9c4265064d83a4", 24576),
	ENTRY0("pirateadventure", "980329", "0c3d27eaa6563835bfb1aadd309e7a00", 24064),
	ENTRY0("pyramidofdoom", "980329", "a6fc7fd81b7330bc254afbac17b29058", 26112),
	ENTRY0("adventure14", "980329", "56e5d7c33d5403ed59a62f67744f4d02", 26624),
	ENTRY0("savageisland1", "980329", "6f6cf307a97becb32524fe66a910587e", 24576),
	ENTRY0("savageisland2", "980329", "a43ab1063e6a8d4849ad3b69f1e4cacb", 25600),
	ENTRY0("missionimpossible", "980329", "9c759b65e43e2d9d6aa02122248040ae", 24064),
	ENTRY0("adventure13", "980329", "54cc89bbead7dac21455b9c00f32f604", 25088),
	ENTRY0("questprobe2", "980329", "6b9cb86c332c092b3a93973ba9f4c946", 27136),
	ENTRY0("voodoocastle", "980329", "bff285e6c9291fc6ba77c9743b610c2d", 24064),

	// English ZCode games 
	ENTRY0("404life", "110524", "a4ee7ba2cb611e0ae3e413a6eb9dc4da", 506770),
	ENTRY0("69105keys", "090302", "bc343936e0e9d79a3736b200eadfc6ee", 195162),
	ENTRY0("905", "120724", "885acc1cf4ae18428d8a1998d57f2925", 87040),
	ENTRY0("9dancers", "040718", "8a7faee46b0d6f35cb0cbeb7ac8631b2", 99328),
	ENTRY0("cockandbull", "170401", "6036a188e9def979678697ce7be14171", 895024),
	ENTRY0("aasmasters", "030410", "bb6645f33130c7881da72ff0bfb6fb5b", 68608),
	ENTRY0("accuse", "070321", "3a1098524f8d6964a5d7a2579e9367f1", 129528),
	ENTRY0("acheton", "111115", "5abc5f815b7f4f6031781a3e6126ef03", 250880),
	ENTRY0("acorncourt", "970904", "119dc6466da205261efc1ef8e00d26d1", 55296),
	ENTRY0("acrobat", "090111", "adaf3516d405d7dc65cbff1986f41af2", 2068718),
	ENTRY0("acrossstars", "100329", "ef910f930a01ac4d24051b8fce549180", 524288),
	ENTRY0("acrossstarsclues", "100213", "d23e9bf6019f212ff324f4595f8b6177", 122880),
	ENTRY0("addendum", "080611", "e6ec3704b04d638f53aaf5f082efb424", 199420),
	ENTRY0("adv440", "160307", "af1ab807e8c438d0e548c6b4903c33a1", 193536),
	ENTRY0("adv550", "160307", "631ab32f7370e1c1e5b4e9fe6ad539fb", 231424),
	ENTRY0("adv551", "171110", "24449bf1875c0b75491173ba4243bc99", 334848),
	ENTRY0("adv350", "151001", "88fe704848a77346d196a46f7cfb3b38", 66414),
	ENTRY0("adv350", "060321", "d00c3717a46734c2ae96fb8d2ad0a226", 138240),
	ENTRY0("adv350", "011123", "5d4867b23e904d22453f031c87d6dcf0", 118272),
	ENTRY0("adv350", "160307", "5f800280865d57cbfeb66695e79dc9b9", 147456),
	ENTRY0("adv", "150118", "c776a1a9a8122967160fb51a39485113", 431616),
	ENTRY0("adventureland", "961111", "21f1bd1815a8b3ba5730fe168ff88e59", 49152),
	ENTRY0("adventuretime", "110111", "b6e0e55780b699e37411f0eb176f7496", 359368),
	ENTRY0("adverbum", "060905", "e5c04bcadb953ad0a280b541f7510338", 138240),
	ENTRY0("affront", "040226", "1b10a2dcedebdea772cea1c7b0407331", 50176),
	ENTRY0("aisle", "990528", "a7af83193b4139f65c020ac49ff30447", 122368),
	ENTRY0("alice", "030501", "ce25288e736c1c420a990b609943a990", 86528),
	ENTRY0("allroads", "011119", "84ce94d8c6c77452537511f14739b612", 172032),
	ENTRY0("alongtheriver", "100630", "1b670d231c4b0cc10b51ba60196c6a68", 198144),
	ENTRY0("alpha", "981017", "f8fbbc64455efc259f9b41517d82b4ab", 51200),
	ENTRY0("ambassadorsdaughter", "150525", "d415de88a7a756be04f5203f8b4668ee", 255488),
	ENTRY0("amish", "020603", "d4194b4de41c9663f464bb33f1917a7d", 50688),
	ENTRY0("amiss", "020409", "fa22d754f2b9daedc232bfbc6b28b6d1", 143872),
	ENTRY0("anchor", "990206", "2bc49d98d980bfefa064ae76f4a217e5", 520192),
	ENTRY0("hipponewyear", "130210", "b226fcbf871613684d8d2c7941e02e82", 317440),
	ENTRY0("animals", "150314", "d5e0c7c6641709eeb5c4c0797519962c", 32768),
	ENTRY0("annoy", "990127", "0383c40a28c606ddf8bfba3a66469055", 71168),
	ENTRY0("aotyrz", "060825", "d9264cedc9cb438eedf67f611dbdbb3e", 159232),
	ENTRY0("aphasiaquest", "150426", "ee480b0a0983e636649777a745a8f6f0", 233896),
	ENTRY0("appall", "020422", "3c33d5639fa341829dde7c4b9b1875fd", 52736),
	ENTRY0("aridandpale", "090501", "d18d5d2b8ceef04234f64373958097e5", 199400),
	ENTRY0("asylum", "090721", "1fcf07b963cd664cf11660882de99e47", 135680),
	ENTRY0("atrocitron", "161215", "6798fc939e1c6a92eb8e356e359a0ee4", 91648),
	ENTRY0("ats", "000001", "accd04838197c1e4937bac253349b623", 387072),
	ENTRY0("atwork", "000705", "44e22cd9dd5124dd149b761dfd6e93e8", 78336),
	ENTRY0("aug4", "130702", "0b9a2b7c37f3d56fcd8d0b531582f8df", 364544),
	ENTRY0("avon", "111115", "82a3d640af8cb7707a1b4301192679b1", 104960),
	ENTRY0("awakening", "980726", "66181a19b3316f6644c20a9ee18be40f", 99328),
	ENTRY0("awitl", "980215", "8cf72be55d75137cc435ab25f479c123", 56320),
	ENTRY0("ayac", "010107", "b503a9f2817ce97480160e454e470c58", 68608),
	ENTRY0("b2demo", "961017", "28d166262aa22fb55fdb9685a5a124ef", 65024),
	ENTRY0("b7snare", "150118", "5e1057596f6fe7d0efb100f80ae65f27", 284672),
	ENTRY0("babytree", "120512", "79e230657b07b2e8fa45ffbe4635d03f", 294352),
	ENTRY0("backtowakeUp", "080313", "73ada6a69651bea315206d7994164b95", 640246),
	ENTRY0("martyquest", "120430", "80b274b7feb7c19ee0aeba85dac0d688", 268272),
	ENTRY0("backup", "091204", "52d1d40ff557c21b7d4464e12b6d646c", 429188),
	ENTRY0("balances", "961216", "2b740e4bf08e64580085640b40a0ead8", 75264),
	ENTRY0("baldersdeath", "111107", "cec997b2ba4917a2dab2640f276f1c7c", 254404),
	ENTRY0("ballerina102", "991128", "9f92c9d90a536f62d7a535e7026c28bc", 508928),
	ENTRY0("balt24", "970706", "7c45c1ea2780a5eed643f35fb44dccda", 58368),
	ENTRY0("bathtub", "060409", "580a828689b64b150d29c4247c873acc", 85504),
	ENTRY0("bazic", "010710", "a6c277d223557127c7d0678aa128d501", 55296),
	ENTRY0("bear", "990224", "8e96c4de71e6fd4bdafb10bdea76893b", 109568),
	ENTRY0("bedlam", "970711", "6c816efb1a7fc99345fdb85bb9e01ac6", 59392),
	ENTRY0("bedtime", "120324", "2a39f06bdad42384b026059d690cd779", 260120),
	ENTRY0("andrewplotkin", "080423", "9679960dde743ff1f506c12db29c5214", 366740),
	ENTRY0("beingsteve", "060519", "a446f37fcd5945428797573295acbe03", 124810),
	ENTRY0("beneath", "080107", "8e53f4d65b0b68ef92fb2fbd3592dcc5", 176128),
	ENTRY0("beyond", "100115", "61bd0b7eae9e81c7d01496d623a497e1", 336982),
	ENTRY0("bibleretold", "102283", "158f9c1818f7a80607a3b8281a9bc140", 169472),
	ENTRY0("bicon", "101006", "2f2d993faf161318c4b4c5ee0957e288", 366836),
	ENTRY0("biscuit", "010310", "e4d8262dbeeab8e340e522e5cef740a8", 137728),
	ENTRY0("bishoes", "090513", "05c6dae3ea1896e756ce54bae26564ae", 85504),
	ENTRY0("bj", "981103", "2787b18265a5bceccd0a4d311f94d97a", 158720),
	ENTRY0("blair", "971119", "39a811c3280594ef64942d73ab11f7d4", 83456),
	ENTRY0("bluechairs", "041229", "4ebedbd54fc2eae27fc7d867cadb37c3", 241152),
	ENTRY0("blues", "020618", "dea57d7b1b41b5961143e7faa6125ad9", 261632),
	ENTRY0("bofh", "030202", "c43d7674558043729cf3916f7e1bfe4d", 101376),
	ENTRY0("bomber", "971123", "1c1740d9770d53d7a18cf56006e8d88b", 3584),
	ENTRY0("bookvol", "051225", "c949b9db879b10faea5cfca45ee6a657", 225792),
	ENTRY0("booth", "960409", "953578eeec2b85c92fd54d87f3e9c7fb", 44544),
	ENTRY0("boothdye", "345678", "772134a9ceb8c7dc5f2b10d6d139aa0d", 51712),
	ENTRY0("brainnightguest", "110312", "a53b823f032f6f24cf726cb3807126e0", 232448),
	ENTRY0("brandx", "111115", "2937e62eefe4f059ea9d8d85f4fd55a0", 112128),
	ENTRY0("breakin", "000926", "0cc04d377f04ba75f647c9a21688b9b6", 208896),
	ENTRY0("bronze", "060503", "ef5b57f69601b8f5944699a6b31bc58d", 492472),
	ENTRY0("bryantcollection", "1", "2c331a7c183ef29ea13b68075a58c73b", 528620),
	ENTRY0("bse", "970110", "d260f722540f8c24a8c5b88778c76261", 89088),
	ENTRY0("building", "030706", "cc5ab40754fde9739113ef2524ef66b5", 253440),
	ENTRY0("nightbunnies", "971205", "6a2cc6996865a4d1520ae467a5a802fd", 78848),
	ENTRY0("bureaucrocy", "141113", "7dcbbc724b7416ad0b80b3159c7e3525", 387606),
	ENTRY0("burglar", "010925", "ca9ae17d983afb2d79aad60486a5a859", 71680),
	ENTRY0("burnsnightsupper", "120124", "a1153aab71b7a3bc4bd1aa056f3145e8", 251342),
	ENTRY0("burnkoran", "101128", "216f61842ba2024b291b4e0ae7769500", 222746),
	ENTRY0("busted", "941223", "e164cfeed308fd25bc102a18b3c8f15c", 82944),
	ENTRY0("byzantine", "091119", "61dcb1e79885f76f9f5f5c62ce2c7e8d", 1727208),
	ENTRY0("cabal", "041127", "b8f7f30bef898f4ed1814b0094c40b1e", 178176),
	ENTRY0("cacophony", "091209", "a612e786ee256ecf14580bd7e922b27a", 364032),
	ENTRY0("calendar", "070805", "8f8f6f45daa40e640805b83279196cfe", 137728),
	ENTRY0("calmmutemoving", "110712", "c4f0e45605825341e566bbd4a1d52522", 173056),
	ENTRY0("calypso", "140421", "5fadae3572711526d7b61c90bab58087", 97792),
	ENTRY0("candy", "970621", "322249ca0d96df20c010d8c2226cf0f2", 59392),
	ENTRY0("cars", "980923", "c857ca87a713ac8d3ae13a49ea05f994", 57344),
	ENTRY0("cars", "981010", "b6d057301718325b393e7e8e99bf09e6", 57344),
	ENTRY0("casting", "050707", "11ec0ca3c23c327e77a83985305c17f4", 247808),
	ENTRY0("castleadventure", "121207", "7119fd8068a8e467e3e34c66cbee005b", 243200),
	ENTRY0("castleredprince", "130227", "1dc1bc1337931b25d57594e566152772", 362880),
	ENTRY0("catcherintherye", "060611", "0bb71366efbf85f9a4700c6f121e7972", 198550),
	ENTRY0("catseye", "041018", "7ff8e2d98b56e7f79508f6e22d6383ae", 10239),
	ENTRY0("causality", "240304", "4ee72c8d430dc4d0e28fadf99b1dcd73", 117760),
	ENTRY0("caveadventure", "070718", "6d2fc2d639efba54382481ac319500b9", 550986),
	ENTRY0("cavernofdoom", "030312", "87769a24b64ec0dc2e261c7111d7662d", 133120),
	ENTRY0("cavernsofchaos", "990813", "05104b58bb5d6e1765b8a3be541381d3", 24576),
	ENTRY0("cavetrip", "041225", "5f0668876d3f8b03e62bd53d3ab276f3", 117760),
	ENTRY0("ccake", "000311", "2f0745fb253ef799472afb4e7e7f13a9", 80384),
	ENTRY0("chaos", "090801", "ede5478e9a87906205d784181b33e8aa", 96768),
	ENTRY0("chaosgame", "090526", "0b902ce73efd76e5c57230a25e27f364", 176004),
	ENTRY0("cheater", "960920", "69753e7cb886a003615b8aa415702135", 48640),
	ENTRY0("cheesedoff", "160724", "f22a5e611479057236e0a8af31b62e70", 448080),
	ENTRY0("cheeseshop", "021230", "88329068474b92abf4b4363c177f6971", 85504),
	ENTRY0("cheshirecat", "141012", "0a8c570fb7499bcc35109fdf7320132b", 79872),
	ENTRY0("chico", "000413", "b46bc30a1495c8cc9b1f9399f0ac5ed5", 162304),
	ENTRY0("childsplay", "080129", "d21a117c5a40afcbdb04a08aa109da57", 535396),
	ENTRY0("chix", "991124", "760b7fb0fcd9c99ae1295c06ff52529d", 206848),
	ENTRY0("cia", "961218", "2cdacedf416e7a575de47412e1d164f8", 54784),
	ENTRY0("claw", "970327", "4d3992e95530a301ca58939a197c6b1b", 130048),
	ENTRY0("codenamesilver", "170619", "8250de9dd95418d6cfa1b5f323254ac4", 357888),
	ENTRY0("cointoss", "150217", "e19c6d27ccdae1fee28136f8efb829ec", 314426),
	ENTRY0("coke", "990331", "8ee8282eceb70c6bb6b9c427d1e01aff", 107008),
	ENTRY0("coldiron", "111119", "82f24d7b6d66e76871c64ea47b4a6f5e", 230400),
	ENTRY0("colonists", "130911", "2f5bfc75a420df67718f542d67e9c118", 534020),
	ENTRY0("coloromc", "120110", "95a3d47250d6cdacfb2c9aa334ae71db", 194560),
	ENTRY0("comp96", "970626", "208b6f721e472f89654e6feb1b54b747", 84992),
	ENTRY0("conankill", "050428", "eff6760b564715f763d6fc25fce8a7eb", 91136),
	ENTRY0("dreamcorruptor", "171029", "1f4f956de3054621f928204c0e6b0d6d", 429160),
	ENTRY0("cottage", "090715", "b2c6f964c0bd4d8a0c12009697ff7307", 616308),
	ENTRY0("cove", "000525", "a84f448606c1b271a41b225244ef43a9", 130048),
	ENTRY0("creepydemo", "100317", "e211ed2eef47d78f72330d98e0f9503f", 150016),
	ENTRY0("crimescene", "130123", "508196f1cd974f789fdc2af69767a1d1", 320916),
	ENTRY0("criticalbreach", "130817", "348fc7ef47cab92d0b7f286da3c3ab90", 268800),
	ENTRY0("crobe", "111115", "d8b138a87f6226b8283c33c50c6f254c", 92160),
	ENTRY0("cryptographer", "071216", "5c306d5f1cee2d4eabf199012a354ff8", 40448),
	ENTRY0("csbb", "090625", "30bd815bc7d5943a0c8725e3b31ec373", 489984),
	ENTRY0("ctdoom", "000920", "24e754f22952fa0dfd88fd1e50e4e4d0", 132608),
	ENTRY0("curses", "951024", "636ca27c82d3af77142ea92e6522b9ba", 259072),
	ENTRY0("curves", "010613", "c80a64ffb0a19c5cb89108fb36485d04", 524288),
	ENTRY0("cycles", "020222", "cfe1bb9275f72a63e6b4d96fb39907b3", 121344),
	ENTRY0("cyclops", "020505", "f4ab4dc7f8f8e0fc1f716b3a43273b58", 78336),
	ENTRY0("crystalpalace", "111125", "70b49b3ed49f022f73796765008e1e6a", 310316),
	ENTRY0("dday", "110720", "897fbdf9cb2468b09c30961524d36ae5", 266364),
	ENTRY0("damnatiomemoriae", "061008", "c69e98feed6b49dcecc040a6babab455", 166474),
	ENTRY0("darkiss1", "160130", "8c8f759915eedbf014b1c8d8ecc282db", 134144),
	ENTRY0("dashslapney", "120510", "d934c25530f689c8c25ce71bf184b82a", 338426),
	ENTRY0("dayinlife", "080406", "ad0b46d14e3a8d577a58f0d93d700f4f", 173558),
	ENTRY0("dd4", "030207", "c5921ad782bc25cbd7e3f8c8b1412a4a", 163328),
	ENTRY0("deadpavane", "131204", "cf0f923ae3b079c29608770aecdefdf1", 269270),
	ENTRY0("deadreckoning", "030730", "1232dc599a00548bcc2d6453a01c5e50", 87040),
	ENTRY0("deadsville", "081105", "58ddf8bfbd4a78aa722127193f6f54f5", 120320),
	ENTRY0("deadmansgrave", "151101", "85750a3498daff7750b65f298858f175", 547808),
	ENTRY0("deadmeat", "170527", "c0f127f032ade1f46267028371e68e5b", 252374),
	ENTRY0("death", "030309", "4e013a77c165338cbf2662ba04465a9b", 120320),
	ENTRY0("debate", "070412", "bc1c6db5b5fe43d6d11982907debeed4", 162816),
	ENTRY0("deephome", "991210", "d30357d2b08ab21e8f2da0e74a3c87d7", 133120),
	ENTRY0("degeneracy", "010331", "d42d960bcfc2a8e1fadc809b31c96f02", 167424),
	ENTRY0("dejavu", "930921", "ece489ece5cffa0b8575f44e094a115e", 22500),
	ENTRY0("deliciousbreakfast", "111015", "393e71995dbb13c23a1b5dd5403341d7", 152852),
	ENTRY0("delusions", "971121", "8e78eef73d07048d99514bab624fb9aa", 193024),
	ENTRY0("detective", "000715", "c09fde6c6777c2c422de18668cf986a2", 108032),
	ENTRY0("detention", "130827", "c2361faf8bbc8996fc0db8e71ef001da", 244684),
	ENTRY0("devildoit", "000724", "c4c97ca9af421dc9a14849355e7f7a1f", 60416),
	ENTRY0("devours", "050325", "f9be89a5a26be53b52c08b6cea0ed3d1", 160768),
	ENTRY0("dewdrops", "050115", "32e07656bbfbc7b4d0b5fe8fd4d1ca7d", 109056),
	ENTRY0("djinni", "001117", "107f0d7432596234db354dbe3cbb4b68", 105472),
	ENTRY0("dogslife", "981015", "e6f0adca898d757c49c9d81a67d3b6cc", 67584),
	ENTRY0("zunidoll", "971031", "128ad329e657c405f85ddbc19bd26538", 76800),
	ENTRY0("dontgo", "120119", "5b153263f946a6013d80d07fa1573dbf", 195584),
	ENTRY0("dontpeeyourself", "150807", "ffbdd3b0860e5a5b5ffbbdbb6ac4fc46", 211968),
	ENTRY0("dotd", "050619", "48b47df16c2d32612fe2f09f234d99dd", 245248),
	ENTRY0("downthematrix", "120521", "291d6e004fe0ace1dbaf79434fbd5403", 319976),
	ENTRY0("dpod", "051012", "b573b31e2df3f90b396a6ddaf27e120e", 303104),
	ENTRY0("dracula2", "080819", "446564750ebe364539c27f89a520bb08", 108544),
	ENTRY0("dracula1", "070424", "42b5559ca5f01f7ef63ef4573d71326b", 87552),
	ENTRY0("dragon", "040211", "744c35647fddfb830594596b4b350b71", 145408),
	ENTRY0("dragonflies", "111130", "ff692bffb014fe109c3bfe2e072ac98b", 565060),
	ENTRY0("dragontroll", "070120", "44e48cb9689e156d322a1de0a14d420e", 3584),
	ENTRY0("dreamhold", "041231", "78eb852b88f9424647a4e18caa4c6707", 386560),
	ENTRY0("dreamtooreal", "061128", "ac2bc1ebcfd2c8b5eed405c4f7fcb10c", 138124),
	ENTRY0("dual", "100225", "57f0e173be4258de1ce224e74172ea11", 430282),
	ENTRY0("dumont", "990223", "c5b6b0c7dcf3e771207bc44a7a3eaa0b", 224768),
	ENTRY0("eas", "011204", "5dffcdadd1f24333aa6cb03fefce22fe", 183296),
	ENTRY0("cliffedge", "111030", "2bcba042a3b56fb010c9ab0e64cecad5", 324608),
	ENTRY0("edifice", "980206", "e2fd79d86f7e77659ef60519d2423856", 181760),
	ENTRY0("egyptianwalking", "151231", "ef80dd50c700becf2b4b254ce3ad3c9f", 334848),
	ENTRY0("elephants", "120409", "6e9cbdf3128079d42abef931964ed835", 236032),
	ENTRY0("eleven", "001231", "a573abd0e05318d72502e2ff3b48f5fa", 214528),
	ENTRY0("eliza", "990207", "293e7e1e2790af326547cd7be6c44d92", 7680),
	ENTRY0("enemies", "990115", "ff9fc17bf66ffbfba125d9a7c20c2c60", 289280),
	ENTRY0("enigma", "160202", "743b7440094810ebe9b9d86d994ef07b", 418468),
	ENTRY0("enterprise", "020428", "791a68da0a0da75307ce60bcf6f07f55", 156672),
	ENTRY0("entropy", "090516", "2acf5da303368989679bbb8ee71da5ea", 125440),
	ENTRY0("epyk", "091111", "2d14b9b9499bc87ecad01215009fa2c7", 236988),
	ENTRY0("erden", "980131", "6125e83116854253240b489a22e83b9f", 348160),
	ENTRY0("eric", "000001", "6ed92a1deef039921701441bc371883a", 116224),
	ENTRY0("escape", "130210", "988b6899f8d3c9bc4bbd3153ce1ab31f", 275358),
	ENTRY0("escaperemember", "060705", "57b062c6f3e42cac8cb0775265c33c42", 284810),
	ENTRY0("eurydice", "121206", "1f4112cdff2e5c924e54bfe06181ff49", 845206),
	ENTRY0("f209", "970806", "98d739b8f6f5df78cbdc338dd50f89c5", 56832),
	ENTRY0("fable", "000715", "603d4573ad89adabb7bf8d0b031705c0", 95744),
	ENTRY0("faculty", "080116", "8998ea6435611921f97bb67fff0dd130", 218612),
	ENTRY0("failsafe", "001218", "05293830576ae81e9a61f38cab731d38", 78336),
	ENTRY0("farm", "020101", "9838d582cdd87814598eff791775a53d", 135168),
	ENTRY0("fff", "080121", "c29786d16b5498656e19f06eb3d58d94", 100864),
	ENTRY0("figaro", "100911", "b696b4578c9d4044edb137e3a87b0f50", 406596),
	ENTRY0("figueres", "1", "c0d9ff83a9ff5eba8938934a339aee6d", 277992),
	ENTRY0("findesick", "180802", "ccb98f2fa05f747e00c883c47e8ba31f", 331776),
	ENTRY0("findthebed", "100708", "02d3f5a2fba50f42c750a902f04f54c8", 289224),
	ENTRY0("finetuned", "020520", "354ff8d5758cd27f054d5f575dd37742", 293888),
	ENTRY0("fingertipsfriend", "140106", "44cad06c5c79a7f99e53974a7d08c273", 423480),
	ENTRY0("fingertipsmilk", "140312", "01d3504181777b30f96de20dfedda359", 278664),
	ENTRY0("fmvpoker", "001227", "0d7bec942838ba2d42af2f836e2a8fc5", 24064),
	ENTRY0("forestdemo", "121216", "f629bfa6755cd36f45dbc3fe12b97936", 243130),
	ENTRY0("fork", "071205", "cc07f97369a7f20da06eabf4fa8f2e4a", 201728),
	ENTRY0("forms", "970206", "7de27dd6539ed6ef1c6176ab030510dd", 91136),
	ENTRY0("fracture", "010306", "d684caf97f01d447b37376ef7c708a85", 111104),
	ENTRY0("fragileshells", "111109", "6232ef15b7508aab6072a85afb86908c", 547610),
	ENTRY0("frankie", "040304", "1ce64a1c5a2d928cfb48b4d760246972", 91648),
	ENTRY0("freefall", "951111", "3e7898a1e767a2de61336ff2ff4bb1f4", 3584),
	ENTRY0("frobozzi", "990129", "3ca33fdafd15fed40ce32de557a84195", 184320),
	ENTRY0("frozen", "960620", "e6185f87a3bfb42baf2f1de528a479a4", 63488),
	ENTRY0("fyleet", "111115", "df1bc4b00ad8bc376a29c74ad7c23a22", 141824),
	ENTRY0("fmvpoker", "000913", "3f4ee585aa91660d5483ef2f132fb1d3", 19456),
	ENTRY0("firstday", "110119", "58c46cbeeaf96c3302515cb3e9aedcec", 454606),
	ENTRY0("hiddennazi", "100911", "93521e3903e1fa63cfb7ababebd4c3e1", 367570),
	ENTRY0("ga", "120510", "ec52eee6bc32f783edc18088b6abf943", 177664),
	ENTRY0("galatea", "040208", "7d2f6474d49625ff3537f594f17d2469", 441992),
	ENTRY0("gamer", "120415", "f5cdd32b3c0c1f09fe7c659103317365", 293356),
	ENTRY0("gamlet", "041223", "c434581d222f89b85e67bea37aa702af", 260608),
	ENTRY0("gardening", "080412", "2d9ff32f10bc569977984c9042afee4f", 394156),
	ENTRY0("gatoron", "091116", "00ddc82b9268ea0968084e215057f21b", 123904),
	ENTRY0("gaucho", "120805", "3ec2942af85d52ecd22c6ee3decf9b8b", 176640),
	ENTRY0("gd", "010806", "5be045c6983f16f2d44e660f9f0192a2", 50176),
	ENTRY0("geb", "051028", "8b731db0410993b8421e06dd7f3e37b2", 165376),
	ENTRY0("geist", "140115", "96f54aaa29ddd0bbfa5db914150633a5", 244736),
	ENTRY0("gerbilriot", "000513", "69d3926fdd11464a3a79bc10c03cd324", 79360),
	ENTRY0("ghost", "290912", "3e737617d1eb7f551d858e1b9ad5dd3f", 210944),
	ENTRY0("glass", "061008", "f687986dab7bd4e2f61d3f282c1ded4d", 373812),
	ENTRY0("glik1", "111211", "1cfc3dd21b01fa968d36b6d58fe80862", 353620),
	ENTRY0("gnuzoo", "160331", "1f9274506529a4c934f09cfe06cda804", 478060),
	ENTRY0("godot", "960599", "953905ec43f6e595d1634adb37ed879e", 49152),
	ENTRY0("goldilocks", "090410", "1e2b32a419bfc9703dda529f40c01782", 217600),
	ENTRY0("golf", "010114", "5dd8638e40d97806c5eb9c05618db775", 195584),
	ENTRY0("gostak", "020305", "06a39a234ada7e57733e1ab442909170", 88064),
	ENTRY0("gourmet", "031116", "6a78f4aa50d962668a2bf7b0e788bafe", 360808),
	ENTRY0("gourmetgaffe", "120624", "0c59f0c03fd36303ec02d370cee9b650", 257156),
	ENTRY0("gowest", "120425", "2c1e329d9cde395785f8323a740a361e", 251988),
	ENTRY0("greatxavio", "041204", "3725be7347d460cc3661b0268db55db5", 177664),
	ENTRY0("greenrain", "100611", "f28e8e500d4fbc94d59f5bfdb9cf7f4d", 275516),
	ENTRY0("growingup", "110825", "9bada495ce70bfcae2566f01b844d20a", 267720),
	ENTRY0("grue", "170810", "578ee64d95f854174a256e75e90f2306", 365056),
	ENTRY0("guard", "991231", "db56b6f0f381ba32f30749530ebdc25f", 410624),
	ENTRY0("guess", "001210", "df6dcaadb7f2d25cbbeb1b357c716a32", 235008),
	ENTRY0("guestreet", "100031", "2637075afb748532ebf851310158017e", 12800),
	ENTRY0("gumshoe", "960331", "935eabe90b3904a0cde9811a463fcc39", 143360),
	ENTRY0("gussdeath", "040131", "1c3d12957d1ecf3ce28b7fe36cb34111", 41472),
	ENTRY0("halloweve", "111028", "0a209a7dc47242f906d8b782e4efb887", 324608),
	ENTRY0("hamil", "111115", "3c6f7131752edfd7b78252112b3a6e66", 81920),
	ENTRY0("hamhouse", "081124", "068b91ec4a227760e08f1ba48acaeb7a", 238080),
	ENTRY0("hangar22", "110617", "a96bff6dae1e76771688f73e6570550e", 152064),
	ENTRY0("happyeverafter", "130114", "921e9eec1c4049b630b0a00379bd7d5b", 121856),
	ENTRY0("crabhat", "130216", "c7ccd1b68fd860cbaec5ee721e0a06e4", 154112),
	ENTRY0("hauntedhouse", "170103", "6d1a6caced27d901c09896ac74de6022", 400078),
	ENTRY0("hauntings", "111109", "931b910ab47044e8792c4d5adc5163e3", 225792),
	ENTRY0("heist", "990217", "d37eab3288f34d5673f72d8697835e8e", 358400),
	ENTRY0("heliopause", "100703", "423b5192b31eb0705a928b3900b6b208", 389388),
	ENTRY0("welcometohell", "980816", "1c7493e0ca533b9cc04097d90b112b24", 51200),
	ENTRY0("hellsbasement", "140826", "749bad5b6169b1cee259b9f21cfee75b", 275890),
	ENTRY0("helpcollides", "030208", "2185bd75e8cc26ac7773effc300ec210", 286720),
	ENTRY0("heroes", "011130", "1bfe7f301e15816e46c60edfae9030a5", 204800),
	ENTRY0("heroinesmantle", "001211", "4beb00dfd7abed53bb529946662fc252", 523776),
	ENTRY0("hidepachyderm", "151011", "304cbcbdbd9338fc60872270905ed6f0", 215040),
	ENTRY0("hlainform", "050715", "e919e8ca4e2358b010d3a758a98609c8", 168960),
	ENTRY0("hobbittruestory", "170425", "5964f6951be8da16fb350b9d0982c89e", 374272),
	ENTRY0("hobbittruestory", "170601", "037bdb4c4518a9335f86b71a11a673e9", 414292),
	ENTRY0("robotempire", "140601", "0be65fa2571465799544009bbf9cc083", 431986),
	ENTRY0("home", "110204", "454bbecf0847b69f17748a04e225fca6", 156672),
	ENTRY0("homecoming", "140903", "b3987678e4d9fcc95fa9718c3f9ce7a8", 1089176),
	ENTRY0("hoosegow", "130320", "5d8d2858bb803b227ac923a654dd367c", 2024678),
	ENTRY0("housekey1", "080112", "ddc18dd2a69887dec6c1d4d994d35a8e", 134144),
	ENTRY0("housedream", "071204", "64709099677209a81c9edd196ef3e266", 312320),
	ENTRY1("hellosword", "060113", "7c5289ab479a5aace75a5518969fedf3", 153600, Common::EN_ANY),
	ENTRY0("humongouscave", "000001", "4d0a5a75192c8343315855f881874515", 332800),
	ENTRY0("humongouscavehints", "000001", "d6581a6fcf31851267e1acc00c466e4b", 124928),
	ENTRY0("hummingbird", "110101", "1b48ec7b38899b5747ad4a16be029889", 775268),
	ENTRY0("hunterdark", "991119", "3c3288e7023f07e525d7301bb84ffba1", 116224),
	ENTRY0("hyperrpg", "090630", "46d18c446800ea7cdaa7f1d370ab7c05", 198628),
	ENTRY0("i0", "140603", "878cd0b3cb05340b49cf18999ba59fab", 219136),
	ENTRY0("ibo", "120109", "b592aa3222e86ee1baaa45107cca6f83", 196608),
	ENTRY0("iceweb", nullptr, "b4f294ede4bcf5134a49d3a8d47cd2a0", 506932),
	ENTRY0("identity", "041121", "72fe1d48259be82d586bb4eb48ccaff9", 126976),
	ENTRY0("ifaquarium", nullptr, "5f99b211f5bef1c1d1e89762dd451cac", 235088),
	ENTRY0("ifwhispers5", "120312", "ebdd62f2484dc87955055cb1093d9359", 326144),
	ENTRY0("ill", "000218", "34f194a208f828c4c77d3954082d75a7", 73216),
	ENTRY0("imiagination", nullptr, "df766ac578a86f0b9d7231bddac5b09b", 252886),
	ENTRY0("inevita", "030428", "6152b19bbf3eb3dd4334004e7094dbe8", 213504),
	ENTRY0("informatory", "981211", "c9eb276f103f83b8e7044c1f3930264b", 141312),
	ENTRY0("inhumane", "950817", "e07f6bde81912a655468010fa13ed9f9", 68096),
	ENTRY0("insight", "030209", "77cd4bd598e9f175faf8f84d6751c140", 151040),
	ENTRY0("intangible", nullptr, "b1941de7a9ce4efc9c21e7ba11072954", 304060),
	ENTRY0("ifplayer", nullptr, "d471621d98969c2c3050586af788a88f", 251826),
	ENTRY0("interviewrockstar", nullptr, "559b8521d944c959739095fc3f0e06b7", 243226),
	ENTRY0("lionskin", nullptr, "dfdc63b480603baf62a2ccb34533bf0a", 325570),
	ENTRY0("invisibleadv", "100130", "f42de996030f1caeb1695c6923db2249", 336896),
	ENTRY0("cubicle", nullptr, "6a83df1b1ce0d799847c80741d2cc7df", 347684),
	ENTRY0("pressedon", nullptr, "26ece4d715035234a5d6d8275bd4de85", 246968),
	ENTRY0("islandsfaraway", nullptr, "67a890cf7b6bc8c2b40ff101a3a69784", 262616),
	ENTRY0("beanstalker", "180105", "6490a77e5f0d5e01b37c0ed29e017a56", 33812),
	ENTRY0("jetblue", "051012", "e1b0f957e0a4967a0f5d66f9e7313944", 209920),
	ENTRY0("jewelofknowledge", "990710", "38c384ce3d1c31791fe98859558dcb68", 225792),
	ENTRY0("jigsaw", "951129", "44b8fdbadfc399f48a3367fade486e07", 304640),
	ENTRY0("jigsawrules", "951128", "a1f0f980850e6b7e4ef79f93d549a227", 64000),
	ENTRY0("jigsaw", "951129", "faefa6d593cebdd177167c24f7cfd373", 262144),
	ENTRY0("juicehead", nullptr, "54288e72711653d544da189152eaea0b", 272146),
	ENTRY0("justanotherday", nullptr, "33a1880b1813fbc0d7ceac6ca75dfe59", 616844),
	ENTRY0("karn", "961207", "daa05c92a3a1b678c29fe8bbf64a09be", 165888),
	ENTRY0("keepingdido", nullptr, "56eb7cbeb898cbd892146d9795a91d4b", 332180),
	ENTRY0("kidnapsea", "110608", "ddcf23cb530746544e0f416337dcf6bc", 191488),
	ENTRY0("kierkegaardsspider", nullptr, "19f457515033fd938856e6507b8a6bc1", 254414),
	ENTRY0("kiiwii", "141113", "091ab4e450db053a419fb4a8ffe87a22", 255488),
	ENTRY0("killingthedoctor", "010221", "6370cf6b47fee82e75f1edb6e4b7f7b0", 57344),
	ENTRY0("kirby", "062776", "7750af7ab62cb01dd04e5b665d299d1e", 143360),
	ENTRY0("kitten", "130320", "a55520ba5084b68bfb3d1ba9346dd2d6", 45056),
	ENTRY0("kooku", "971119", "68dc431ab53ff87af1a3bc037122667e", 94208),


	// Italian ZCode games
	ENTRY1("hellosword", "060113", "a432a8286f9f76dae891699175332237", 166400, Common::IT_ITA),

	FROTZ_TABLE_END_MARKER
};

} // End of namespace Frotz
} // End of namespace Glk