-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathQuestion.cs
3243 lines (2632 loc) · 342 KB
/
Question.cs
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
namespace Souvenir
{
using static AnswerLayout;
public enum Question
{
[SouvenirQuestion("What was the initially displayed number in {0}?", "0", TwoColumns4Answers)]
[AnswerGenerator.Integers(100000000, 999999999)]
_0Number,
[SouvenirQuestion("What was the {1} word shown in {0}?", "1000 Words", ThreeColumns6Answers,
ExampleAnswers = new[] { "Baken", "Ghost", "Tolts", "Oyers", "Sweel", "Rangy", "Noses", "Chapt", "Phuts", "Pingo", "Hylas", "Podia", "Vizor" },
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
_1000WordsWords,
[SouvenirQuestion("What was the {1} displayed letter in {0}?", "100 Levels of Defusal", ThreeColumns6Answers, "B", "C", "D", "F", "G", "H", "J", "K", "L", "M", "N", "P", "Q", "R", "S", "T", "V", "W", "X", "Y", "Z",
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
_100LevelsOfDefusalLetters,
[SouvenirQuestion("Who was the opponent in {0}?", "1, 2, 3 Game", ThreeColumns6Answers, AddThe = true, Type = AnswerType.Sprites)]
_123GameProfile,
[SouvenirQuestion("Who was the opponent in {0}?", "1, 2, 3 Game", ThreeColumns6Answers, "Changyeop", "Eunji", "Gura", "Jinho", "Jungmoon", "Junseok", "Kyungran", "Minseo", "Minsoo", "Poong", "Sangmin", "Sunggyu", "Yuram", AddThe = true)]
_123GameName,
[SouvenirQuestion("What was {1} in {0}?", "1D Chess", ThreeColumns6Answers, "B a→c", "B a→e", "B a→g", "B a→i", "B a→k", "B b→d", "B b→f", "B b→h", "B b→j", "B c→a", "B c→e", "B c→g", "B c→i", "B c→k", "B d→b", "B d→f", "B d→h", "B d→j", "B e→a", "B e→c", "B e→g", "B e→i", "B e→k", "B f→b", "B f→d", "B f→h", "B f→j", "B g→a", "B g→c", "B g→e", "B g→i", "B g→k", "B h→b", "B h→d", "B h→f", "B h→j", "B i→a", "B i→c", "B i→e", "B i→g", "B i→k", "B j→b", "B j→d", "B j→f", "B j→h", "B k→a", "B k→c", "B k→e", "B k→g", "B k→i", "K a→b", "K b→a", "K b→c", "K c→b", "K c→d", "K d→c", "K d→e", "K e→d", "K e→f", "K f→e", "K f→g", "K g→f", "K g→h", "K h→g", "K h→i", "K i→h", "K i→j", "K j→i", "K j→k", "K k→j", "N a→c", "N b→d", "N c→a", "N c→e", "N d→b", "N d→f", "N e→c", "N e→g", "N f→d", "N f→h", "N g→e", "N g→i", "N h→f", "N h→j", "N i→g", "N i→k", "N j→h", "N k→i", "P a→b", "P a→c", "P b→a", "P b→c", "P b→d", "P c→a", "P c→b", "P c→d", "P c→e", "P d→b", "P d→c", "P d→e", "P d→f", "P e→c", "P e→d", "P e→f", "P e→g", "P f→d", "P f→e", "P f→g", "P f→h", "P g→e", "P g→f", "P g→h", "P g→i", "P h→f", "P h→g", "P h→i", "P h→j", "P i→g", "P i→h", "P i→j", "P i→k", "P j→h", "P j→i", "P j→k", "P k→i", "P k→j", "Q a→b", "Q a→c", "Q a→d", "Q a→e", "Q a→f", "Q a→g", "Q a→h", "Q a→i", "Q a→j", "Q a→k", "Q b→a", "Q b→c", "Q b→d", "Q b→e", "Q b→f", "Q b→g", "Q b→h", "Q b→i", "Q b→j", "Q b→k", "Q c→a", "Q c→b", "Q c→d", "Q c→e", "Q c→f", "Q c→g", "Q c→h", "Q c→i", "Q c→j", "Q c→k", "Q d→a", "Q d→b", "Q d→c", "Q d→e", "Q d→f", "Q d→g", "Q d→h", "Q d→i", "Q d→j", "Q d→k", "Q e→a", "Q e→b", "Q e→c", "Q e→d", "Q e→f", "Q e→g", "Q e→h", "Q e→i", "Q e→j", "Q e→k", "Q f→a", "Q f→b", "Q f→c", "Q f→d", "Q f→e", "Q f→g", "Q f→h", "Q f→i", "Q f→j", "Q f→k", "Q g→a", "Q g→b", "Q g→c", "Q g→d", "Q g→e", "Q g→f", "Q g→h", "Q g→i", "Q g→j", "Q g→k", "Q h→a", "Q h→b", "Q h→c", "Q h→d", "Q h→e", "Q h→f", "Q h→g", "Q h→i", "Q h→j", "Q h→k", "Q i→a", "Q i→b", "Q i→c", "Q i→d", "Q i→e", "Q i→f", "Q i→g", "Q i→h", "Q i→j", "Q i→k", "Q j→a", "Q j→b", "Q j→c", "Q j→d", "Q j→e", "Q j→f", "Q j→g", "Q j→h", "Q j→i", "Q j→k", "Q k→a", "Q k→b", "Q k→c", "Q k→d", "Q k→e", "Q k→f", "Q k→g", "Q k→h", "Q k→i", "Q k→j", "R a→b", "R a→d", "R a→f", "R a→h", "R a→j", "R b→a", "R b→c", "R b→e", "R b→g", "R b→i", "R b→k", "R c→b", "R c→d", "R c→f", "R c→h", "R c→j", "R d→a", "R d→c", "R d→e", "R d→g", "R d→i", "R d→k", "R e→b", "R e→d", "R e→f", "R e→h", "R e→j", "R f→a", "R f→c", "R f→e", "R f→g", "R f→i", "R f→k", "R g→b", "R g→d", "R g→f", "R g→h", "R g→j", "R h→a", "R h→c", "R h→e", "R h→g", "R h→i", "R h→k", "R i→b", "R i→d", "R i→f", "R i→h", "R i→j", "R j→a", "R j→c", "R j→e", "R j→g", "R j→i", "R j→k", "R k→b", "R k→d", "R k→f", "R k→h", "R k→j",
ExampleFormatArguments = new[] { "your first move", "Rustmate’s first move", "your second move", "Rustmate’s second move", "your third move", "Rustmate’s third move", "your fourth move", "Rustmate’s fourth move", "your fifth move", "Rustmate’s fifth move", "your sixth move", "Rustmate’s sixth move", "your seventh move", "Rustmate’s seventh move", "your eighth move", "Rustmate’s eighth move", }, ExampleFormatArgumentGroupSize = 1, TranslateFormatArgs = new[] { true })]
_1DChessMoves,
[SouvenirQuestion("What were the markings in {0}?", "3D Maze", ThreeColumns6Answers, "ABC", "ABD", "ABH", "ACD", "ACH", "ADH", "BCD", "BCH", "BDH", "CDH")]
_3DMazeMarkings,
[SouvenirQuestion("What was the cardinal direction in {0}?", "3D Maze", TwoColumns4Answers, "North", "South", "West", "East", TranslateAnswers = true)]
_3DMazeBearing,
[SouvenirQuestion("What was the received word in {0}?", "3D Tap Code", ThreeColumns6Answers,
ExampleAnswers = new[] { "Aback", "Backs", "Habit", "Oasis", "Unzip", "Vogue" })]
_3DTapCodeWord,
[SouvenirQuestion("What was the {1} goal node in {0}?", "3D Tunnels", ThreeColumns6Answers,
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1, Type = AnswerType.SymbolsFont)]
[AnswerGenerator.Strings("a-z.")]
_3DTunnelsTargetNode,
[SouvenirQuestion("What was the initial state of the LEDs in {0} (in reading order)?", "3 LEDs", TwoColumns4Answers, "off/off/off", "off/off/on", "off/on/off", "off/on/on", "on/off/off", "on/off/on", "on/on/off", "on/on/on", TranslateAnswers = true)]
_3LEDsInitialState,
[SouvenirQuestion("What number was initially displayed in {0}?", "3N+1", ThreeColumns6Answers)]
[AnswerGenerator.Integers(1, 100)]
_3NPlus1,
[SouvenirQuestion("What was the displayed number in {0}?", "64", ThreeColumns6Answers, Type = AnswerType.SixtyFourFont, ExampleAnswers = new[] { "A0A3", "bbda", "30", "h3X1", "ABCD", "1234" })]
_64DisplayedNumber, // Use the font from the module because o and 0 are almost identical in the default font.
[SouvenirQuestion("What was the {1} channel’s initial value in {0}?", "7", ThreeColumns6Answers, TranslateFormatArgs = new[] { true },
ExampleFormatArguments = new[] { "red", "green", "blue" }, ExampleFormatArgumentGroupSize = 1)]
[AnswerGenerator.Integers(-9, 9)]
_7InitialValues,
[SouvenirQuestion("What LED color was shown in stage {1} of {0}?", "7", TwoColumns4Answers, "red", "blue", "green", "white",
ExampleFormatArguments = new[] { "0", "1", "2", "3" }, ExampleFormatArgumentGroupSize = 1, TranslateAnswers = true)]
_7LedColors,
[SouvenirQuestion("What was the number of ball {1} in {0}?", "9-Ball", ThreeColumns6Answers, ExampleAnswers = new[] { "2", "3", "4", "5", "6", "7" },
ExampleFormatArguments = new[] { "A", "B", "C", "D", "E", "F", "G" }, ExampleFormatArgumentGroupSize = 1)]
[AnswerGenerator.Integers(2, 8)]
_9BallLetters,
[SouvenirQuestion("What was the letter of ball {1} in {0}?", "9-Ball", ThreeColumns6Answers, ExampleAnswers = new[] { "A", "B", "C", "D", "E", "F" },
ExampleFormatArguments = new[] { "2", "3", "4", "5", "6", "7", "8" }, ExampleFormatArgumentGroupSize = 1)]
[AnswerGenerator.Strings("A-G")]
_9BallNumbers,
[SouvenirQuestion("What was the {1} character displayed on {0}?", "Abyss", ThreeColumns6Answers, ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
[AnswerGenerator.Strings(1, "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz")]
AbyssSeed,
[SouvenirQuestion("What was the background color on the {1} stage in {0}?", "Accumulation", ThreeColumns6Answers, "Blue", "Brown", "Green", "Grey", "Lime", "Orange", "Pink", "Red", "White", "Yellow", TranslateAnswers = true,
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
AccumulationBackgroundColor,
[SouvenirQuestion("What was the border color in {0}?", "Accumulation", ThreeColumns6Answers, "Blue", "Brown", "Green", "Grey", "Lime", "Orange", "Pink", "Red", "White", "Yellow", TranslateAnswers = true)]
AccumulationBorderColor,
[SouvenirQuestion("Which item was the {1} correct item you used in {0}?", "Adventure Game", TwoColumns4Answers, "Broadsword", "Caber", "Nasty knife", "Longbow", "Magic orb", "Grimoire", "Balloon", "Battery", "Bellows", "Cheat code", "Crystal ball", "Feather", "Hard drive", "Lamp", "Moonstone", "Potion", "Small dog", "Stepladder", "Sunstone", "Symbol", "Ticket", "Trophy",
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
AdventureGameCorrectItem,
[SouvenirQuestion("What enemy were you fighting in {0}?", "Adventure Game", TwoColumns4Answers, "Dragon", "Demon", "Eagle", "Goblin", "Troll", "Wizard", "Golem", "Lizard")]
AdventureGameEnemy,
[SouvenirQuestion("What was the {1} in {0}?", "Affine Cycle", TwoColumns4Answers, "Advanced", "Addition", "Allocate", "Allotted", "Binaries", "Billions", "Bulkhead", "Bulwarks", "Ciphered", "Circuits", "Computer", "Compiler", "Decrypts", "Division", "Discover", "Discrete", "Encipher", "Entrance", "Equation", "Equalise", "Finished", "Findings", "Fortress", "Fortunes", "Gauntlet", "Gambling", "Gathered", "Gateways", "Hazarded", "Haziness", "Hunkered", "Hungrier", "Indicate", "Indigoes", "Illusion", "Illuding", "Jigsawed", "Jimmying", "Junction", "Juncture", "Kilowatt", "Kinetics", "Knockout", "Knowable", "Limiting", "Linearly", "Linkages", "Lingered", "Monogram", "Monotone", "Multiply", "Mulcting", "Nanogram", "Nanotube", "Numbered", "Numerate", "Octangle", "Octuples", "Observed", "Obstacle", "Progress", "Projects", "Position", "Positron", "Quadrant", "Quadrics", "Quickest", "Quitters", "Reversed", "Revolved", "Rotation", "Relative", "Starting", "Standard", "Stopping", "Stoccata", "Triggers", "Triangle", "Tomogram", "Tomorrow", "Underrun", "Underlie", "Ultimate", "Ultrahot", "Vicinity", "Viceless", "Voltages", "Voluming", "Wingding", "Winnable", "Whatever", "Whatsits", "Yellowed", "Yeasayer", "Yielders", "Yourself", "Zippered", "Zigzaggy", "Zugzwang", "Zymogene",
ExampleFormatArguments = new[] { "message", "response" }, ExampleFormatArgumentGroupSize = 1, TranslateFormatArgs = new[] { true })]
AffineCycleWord,
[SouvenirQuestion("What was the initial letter in {0}?", "A Letter", ThreeColumns6Answers)]
[AnswerGenerator.Strings("A-Z")]
ALetterInitialLetter,
[SouvenirQuestion("Which letter was pressed in {0}?", "Alfa-Bravo", ThreeColumns6Answers, "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z")]
AlfaBravoPressedLetter,
[SouvenirQuestion("Which letter was to the left of the pressed one in {0}?", "Alfa-Bravo", ThreeColumns6Answers, "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z")]
AlfaBravoLeftPressedLetter,
[SouvenirQuestion("Which letter was to the right of the pressed one in {0}?", "Alfa-Bravo", ThreeColumns6Answers, "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z")]
AlfaBravoRightPressedLetter,
[SouvenirQuestion("What was the last digit on the small display in {0}?", "Alfa-Bravo", ThreeColumns6Answers, "0", "1", "2", "3", "4", "5", "6", "7", "8", "9")]
AlfaBravoDigit,
[SouvenirQuestion("What was the first equation in {0}?", "Algebra", TwoColumns4Answers, "a=3z", "a=5+y", "a=6-x", "a=7x", "a=8y", "a=9+z", "a=x/2", "a=x+1", "a=y/4", "a=y-2", "a=z/10", "a=z-7")]
AlgebraEquation1,
[SouvenirQuestion("What was the second equation in {0}?", "Algebra", TwoColumns4Answers, "b=(2x/10)-y", "b=(7x)y", "b=(x+y)-(z/2)", "b=(y/2)-z", "b=(zy)-(2x)", "b=(z-y)/2", "b=2(z+7)", "b=2z+7", "b=xy-(2+x)", "b=xyz")]
AlgebraEquation2,
[SouvenirQuestion("Which position was the {1} position in {0}?", "Algorithmia", ThreeColumns6Answers, Type = AnswerType.Sprites, ExampleFormatArguments = new[] { "starting", "goal" }, ExampleFormatArgumentGroupSize = 1, TranslateFormatArgs = new[] { true })]
[AnswerGenerator.Grid(4, 4)]
AlgorithmiaPositions,
[SouvenirQuestion("What was the color of the colored bulb in {0}?", "Algorithmia", ThreeColumns6Answers, "Red", "Green", "Blue", "Cyan", "Yellow", "Magenta")]
AlgorithmiaColor,
[SouvenirQuestion("Which number was present in the seed in {0}?", "Algorithmia", ThreeColumns6Answers)]
[AnswerGenerator.Integers(0, 99)]
AlgorithmiaSeed,
[SouvenirQuestion("What was the letter displayed in the {1} stage of {0}?", "Alphabetical Ruling", ThreeColumns6Answers,
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
[AnswerGenerator.Strings(1, 'A', 'Z')]
AlphabeticalRulingLetter,
[SouvenirQuestion("What was the number displayed in the {1} stage of {0}?", "Alphabetical Ruling", ThreeColumns6Answers,
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
[AnswerGenerator.Integers(1, 9)]
AlphabeticalRulingNumber,
[SouvenirQuestion("Which of these numbers was on one of the buttons in the {1} stage of {0}?", "Alphabet Numbers", ThreeColumns6Answers,
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
[AnswerGenerator.Integers(1, 32)]
AlphabetNumbersDisplayedNumbers,
[SouvenirQuestion("What was the {1} letter shown during the cycle in {0}?", "Alphabet Tiles", ThreeColumns6Answers, "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z",
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
AlphabetTilesCycle,
[SouvenirQuestion("What was the missing letter in {0}?", "Alphabet Tiles", ThreeColumns6Answers, "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z")]
AlphabetTilesMissingLetter,
[SouvenirQuestion("What character was displayed on the {1} screen on the {2} in {0}?", "Alpha-Bits", ThreeColumns6Answers, TranslateFormatArgs = new[] { false, true },
Type = AnswerType.DynamicFont, ExampleFormatArguments = new[] { QandA.Ordinal, "left", QandA.Ordinal, "right" }, ExampleFormatArgumentGroupSize = 2)]
[AnswerGenerator.Strings("0-9A-V")]
AlphaBitsDisplayedCharacters,
[SouvenirQuestion("What letter was shown by the raised buttons on the {1} stage on {0}?", "Ángel Hernández", ThreeColumns6Answers, "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z",
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
AngelHernandezMainLetter,
[SouvenirQuestion("What was the maximum weapon damage of the attack phase in {0}?", "Arena", ThreeColumns6Answers, AddThe = true)]
[AnswerGenerator.Integers(1, 99)]
ArenaDamage,
[SouvenirQuestion("Which enemy was present in the defend phase of {0}?", "Arena", TwoColumns4Answers, "Bat", "Snake", "Spider", "Cobra", "Scorpion", "Mole", "Creeper", "Goblin", "Golem", "Robo-Mouse", "Skeleton", "Undead Guard", "The Reaper", "The Mole’s Dad", AddThe = true)]
ArenaEnemies,
[SouvenirQuestion("Which was a number present in the grab phase of {0}?", "Arena", ThreeColumns6Answers, AddThe = true)]
[AnswerGenerator.Integers(10, 99)]
ArenaNumbers,
[SouvenirQuestion("What was the symbol on the submit button in {0}?", "Arithmelogic", ThreeColumns6Answers, Type = AnswerType.Sprites, SpriteFieldName = "ArithmelogicSprites")]
ArithmelogicSubmit,
[SouvenirQuestion("Which number was selectable, but not the solution, in the {1} screen on {0}?", "Arithmelogic", ThreeColumns6Answers, TranslateFormatArgs = new[] { true },
ExampleFormatArguments = new[] { "left", "middle", "right" }, ExampleFormatArgumentGroupSize = 1)]
[AnswerGenerator.Integers(10, 40)]
ArithmelogicNumbers,
[SouvenirQuestion("What was the {1} character displayed on {0}?", "ASCII Maze", ThreeColumns6Answers, "NUL", "SOH", "STX", "ETX", "EOT", "ENQ", "ACK", "BEL", "BS", "HT", "LF", "VT", "FF", "CR", "SO", "SI", "DLE", "DC1", "DC2", "DC3", "DC4", "NAK", "SYN", "ETB", "CAN", "EM", "SUB", "ESC", "FS", "GS", "RS", "US", "(space)", "!", "\"", "#", "$", "%", "&", "'", "(", ")", "*", "+", ",", "-", ".", "/", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", ":", ";", "<", "=", ">", "?", "@", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "[", "\\", "]", "^", "_", "`", "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "{", "|", "}", "~", "DEL", "Ç", "ü", "é", "â", "ä", "à", "å", "ç", "ê", "ë", "è", "ï", "î", "ì", "Ä", "Å", "É", "æ", "Æ", "ô", "ö", "ò", "û", "ù", "ÿ", "Ö", "Ü", "ø", "£", "Ø", "×", "ƒ", "á", "í", "ó", "ú", "ñ", "Ñ", "ª", "º", "¿", "®", "¬", "½", "¼", "¡", "«", "»", "░", "▒", "▓", "│", "┤", "Á", "Â", "À", "©", "╣", "║", "╗", "╝", "¢", "¥", "┐", "└", "┴", "┬", "├", "─", "┼", "ã", "Ã", "╚", "╔", "╩", "╦", "╠", "═", "╬", "¤", "ð", "Ð", "Ê", "Ë", "È", "ı", "Í", "Î", "Ï", "┘", "┌", "█", "▄", "¦", "Ì", "▀", "Ó", "ß", "Ô", "Ò", "õ", "Õ", "µ", "þ", "Þ", "Ú", "Û", "Ù", "ý", "Ý", "¯", "´", "\u2261", "±", "‗", "¾", "¶", "§", "÷", "¸", "°", "¨", "·", "¹", "³", "²", "■", "nbsp",
Type = AnswerType.AsciiMazeFont, ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
ASCIIMazeCharacters,
[SouvenirQuestion("Which of these was an index color in {0}?", "A Square", ThreeColumns6Answers, "Orange", "Pink", "Cyan", "Yellow", "Lavender", "Brown", "Tan", "Blue", "Jade", "Indigo", "White")]
ASquareIndexColors,
[SouvenirQuestion("Which color was submitted {1} in {0}?", "A Square", ThreeColumns6Answers, "Orange", "Pink", "Cyan", "Yellow", "Lavender", "Brown", "Tan", "Blue", "Jade", "Indigo", "White",
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
ASquareCorrectColors,
[SouvenirQuestion("What was T in {0}?", "Azure Button", ThreeColumns6Answers, AddThe = true, Type = AnswerType.Sprites, SpriteFieldName = "AzureButtonSprites")]
AzureButtonT,
[SouvenirQuestion("Which of these cards was shown in Stage 1, but not T, in {0}?", "Azure Button", ThreeColumns6Answers, AddThe = true, Type = AnswerType.Sprites, SpriteFieldName = "AzureButtonSprites")]
AzureButtonNotT,
[SouvenirQuestion("What was M in {0}?", "Azure Button", ThreeColumns6Answers, "1", "2", "3", "4", "5", "6", "7", "8", "9", AddThe = true)]
AzureButtonM,
[SouvenirQuestion("What was the {1} direction in the decoy arrow in {0}?", "Azure Button", TwoColumns4Answers, "north", "north-east", "east", "south-east", "south", "south-west", "west", "north-west",
AddThe = true, ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
AzureButtonDecoyArrowDirection,
[SouvenirQuestion("What was the {1} direction in the {2} non-decoy arrow in {0}?", "Azure Button", TwoColumns4Answers, "north", "north-east", "east", "south-east", "south", "south-west", "west", "north-west",
AddThe = true, ExampleFormatArguments = new[] { QandA.Ordinal, QandA.Ordinal }, ExampleFormatArgumentGroupSize = 2)]
AzureButtonNonDecoyArrowDirection,
[SouvenirQuestion("Which menu item was present in {0}?", "Bakery", OneColumn4Answers,
ExampleAnswers = new[] { "Butter slab", "Sugar cookie", "Applie pie", "Tea biscuit", "Tuile", "Sprinkles Cookie" })]
BakeryItems,
[SouvenirQuestion("What color was the {1} correct button in {0}?", "Bamboozled Again", TwoColumns4Answers, "Red", "Orange", "Yellow", "Lime", "Green", "Jade", "Cyan", "Azure", "Blue", "Violet", "Magenta", "Rose", "White", "Grey", "Black", TranslateAnswers = true,
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
BamboozledAgainButtonColor,
[SouvenirQuestion("What was the text on the {1} correct button in {0}?", "Bamboozled Again", TwoColumns4Answers, "THE LETTER", "ONE LETTER", "THE COLOUR", "ONE COLOUR", "THE PHRASE", "ONE PHRASE", "ALPHA", "BRAVO", "CHARLIE", "DELTA", "ECHO", "GOLF", "KILO", "QUEBEC", "TANGO", "WHISKEY", "VICTOR", "YANKEE", "ECHO ECHO", "E THEN E", "ALPHA PAPA", "PAPA ALPHA", "PAPHA ALPA", "T GOLF", "TANGOLF", "WHISKEE", "WHISKY", "CHARLIE C", "C CHARLIE", "YANGO", "DELTA NEXT", "CUEBEQ", "MILO", "KI LO", "HI-LO", "VVICTOR", "VICTORR", "LIME BRAVO", "BLUE BRAVO", "G IN JADE", "G IN ROSE", "BLUE IN RED", "YES BUT NO", "COLOUR", "MESSAGE", "CIPHER", "BUTTON", "TWO BUTTONS", "SIX BUTTONS", "I GIVE UP", "ONE ELEVEN", "ONE ONE ONE", "THREE ONES", "WHAT?", "THIS?", "THAT?", "BLUE!", "ECHO!", "BLANK", "BLANK?!", "NOTHING", "YELLOW TEXT", "BLACK TEXT?", "QUOTE V", "END QUOTE", "\"QUOTE K\"", "IN RED", "ORANGE", "IN YELLOW", "LIME", "IN GREEN", "JADE", "IN CYAN", "AZURE", "IN BLUE", "VIOLET", "IN MAGENTA", "ROSE",
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
BamboozledAgainButtonText,
[SouvenirQuestion("What was the {1} decrypted text on the display in {0}?", "Bamboozled Again", TwoColumns4Answers, "THE LETTER", "ONE LETTER", "THE COLOUR", "ONE COLOUR", "THE PHRASE", "ONE PHRASE",
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
BamboozledAgainDisplayTexts1,
[SouvenirQuestion("What was the {1} decrypted text on the display in {0}?", "Bamboozled Again", TwoColumns4Answers, "ALPHA", "BRAVO", "CHARLIE", "DELTA", "ECHO", "GOLF", "KILO", "QUEBEC", "TANGO", "WHISKEY", "VICTOR", "YANKEE", "ECHO ECHO", "E THEN E", "ALPHA PAPA", "PAPA ALPHA", "PAPHA ALPA", "T GOLF", "TANGOLF", "WHISKEE", "WHISKY", "CHARLIE C", "C CHARLIE", "YANGO", "DELTA NEXT", "CUEBEQ", "MILO", "KI LO", "HI-LO", "VVICTOR", "VICTORR", "LIME BRAVO", "BLUE BRAVO", "G IN JADE", "G IN ROSE", "BLUE IN RED", "YES BUT NO", "COLOUR", "MESSAGE", "CIPHER", "BUTTON", "TWO BUTTONS", "SIX BUTTONS", "I GIVE UP", "ONE ELEVEN", "ONE ONE ONE", "THREE ONES", "WHAT?", "THIS?", "THAT?", "BLUE!", "ECHO!", "BLANK", "BLANK?!", "NOTHING", "YELLOW TEXT", "BLACK TEXT?", "QUOTE V", "END QUOTE", "\"QUOTE K\"", "IN RED", "ORANGE", "IN YELLOW", "LIME", "IN GREEN", "JADE", "IN CYAN", "AZURE", "IN BLUE", "VIOLET", "IN MAGENTA", "ROSE",
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
BamboozledAgainDisplayTexts2,
[SouvenirQuestion("What color was the {1} text on the display in {0}?", "Bamboozled Again", TwoColumns4Answers, "Red", "Orange", "Yellow", "Lime", "Green", "Jade", "Cyan", "Azure", "Blue", "Violet", "Magenta", "Rose", "White", "Grey", TranslateAnswers = true,
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
BamboozledAgainDisplayColor,
[SouvenirQuestion("What color was the button in the {1} stage of {0}?", "Bamboozling Button", TwoColumns4Answers, "Red", "Orange", "Yellow", "Lime", "Green", "Jade", "Cyan", "Azure", "Blue", "Violet", "Magenta", "Rose", "White", "Grey", "Black", TranslateAnswers = true,
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
BamboozlingButtonColor,
[SouvenirQuestion("What was the {2} label on the button in the {1} stage of {0}?", "Bamboozling Button", TwoColumns4Answers, "A LETTER", "A WORD", "THE LETTER", "THE WORD", "1 LETTER", "1 WORD", "ONE LETTER", "ONE WORD", "B", "C", "D", "E", "G", "K", "N", "P", "Q", "T", "V", "W", "Y", "BRAVO", "CHARLIE", "DELTA", "ECHO", "GOLF", "KILO", "NOVEMBER", "PAPA", "QUEBEC", "TANGO", "VICTOR", "WHISKEY", "YANKEE", "COLOUR", "RED", "ORANGE", "YELLOW", "LIME", "GREEN", "JADE", "CYAN", "AZURE", "BLUE", "VIOLET", "MAGENTA", "ROSE", "IN RED", "IN YELLOW", "IN GREEN", "IN CYAN", "IN BLUE", "IN MAGENTA", "QUOTE", "END QUOTE", TranslateFormatArgs = new[] { false, true },
ExampleFormatArguments = new[] { QandA.Ordinal, "top", QandA.Ordinal, "bottom" }, ExampleFormatArgumentGroupSize = 2)]
BamboozlingButtonLabel,
[SouvenirQuestion("What was the {2} display in the {1} stage of {0}?", "Bamboozling Button", TwoColumns4Answers, "A LETTER", "A WORD", "THE LETTER", "THE WORD", "1 LETTER", "1 WORD", "ONE LETTER", "ONE WORD", "B", "C", "D", "E", "G", "K", "N", "P", "Q", "T", "V", "W", "Y", "BRAVO", "CHARLIE", "DELTA", "ECHO", "GOLF", "KILO", "NOVEMBER", "PAPA", "QUEBEC", "TANGO", "VICTOR", "WHISKEY", "YANKEE", "COLOUR", "RED", "ORANGE", "YELLOW", "LIME", "GREEN", "JADE", "CYAN", "AZURE", "BLUE", "VIOLET", "MAGENTA", "ROSE", "IN RED", "IN YELLOW", "IN GREEN", "IN CYAN", "IN BLUE", "IN MAGENTA", "QUOTE", "END QUOTE",
ExampleFormatArguments = new[] { QandA.Ordinal, QandA.Ordinal }, ExampleFormatArgumentGroupSize = 2)]
BamboozlingButtonDisplay,
[SouvenirQuestion("What was the color of the {2} display in the {1} stage of {0}?", "Bamboozling Button", TwoColumns4Answers, "Red", "Orange", "Yellow", "Lime", "Green", "Jade", "Cyan", "Azure", "Blue", "Violet", "Magenta", "Rose", "White", "Grey", TranslateAnswers = true,
ExampleFormatArguments = new[] { QandA.Ordinal, QandA.Ordinal }, ExampleFormatArgumentGroupSize = 2)]
BamboozlingButtonDisplayColor,
[SouvenirQuestion("What was the category of {0}?", "Bar Charts", OneColumn4Answers, null, ExampleAnswers = new[] { "Non-Percussion Instruments", "European Capital Cities", "Cast of Star Trek: TOS", "Percussion Instruments", "Zodiac Signs", "20th Century Composers" })]
BarChartsCategory,
[SouvenirQuestion("What was the color of the {1} bar in {0}?", "Bar Charts", TwoColumns4Answers, "Red", "Yellow", "Green", "Blue",
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1, TranslateAnswers = true)]
BarChartsColor,
[SouvenirQuestion("What was the position of the {1} bar in {0}?", "Bar Charts", TwoColumns4Answers, TranslateFormatArgs = new[] { true },
ExampleFormatArguments = new[] { "shortest", "second shortest", "second tallest", "tallest" }, ExampleFormatArgumentGroupSize = 1)]
[AnswerGenerator.Ordinal(1, 4)]
BarChartsHeight,
[SouvenirQuestion("What was the label of the {1} bar in {0}?", "Bar Charts", TwoColumns4Answers, null, ExampleAnswers = new[] { "Glockenspiel", "C.Discharge", "Shakespeare", "Sagittarius", "Malted Milk", "Venting Gas" },
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
BarChartsLabel,
[SouvenirQuestion("What was the unit of {0}?", "Bar Charts", ThreeColumns6Answers, "Popularity", "Frequency", "Responses", "Occurrences", "Density", "Magnitude")]
BarChartsUnit,
[SouvenirQuestion("What was the screen number in {0}?", "Barcode Cipher", OneColumn4Answers)]
[AnswerGenerator.Integers(0, 999999, "000000")]
BarcodeCipherScreenNumber,
[SouvenirQuestion("What was the edgework represented by the {1} barcode in {0}?", "Barcode Cipher", OneColumn4Answers, "SERIAL NUMBER", "BATTERIES", "BATTERY HOLDERS", "PORTS", "PORT PLATES", "LIT INDICATORS", "UNLIT INDICATORS", "INDICATORS",
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1, TranslateAnswers = true)]
BarcodeCipherBarcodeEdgework,
[SouvenirQuestion("What was the answer for the {1} barcode in {0}?", "Barcode Cipher", ThreeColumns6Answers, "0", "1", "2", "3", "4", "5", "6", "7", "8", "9",
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
BarcodeCipherBarcodeAnswers,
[SouvenirQuestion("Which ingredient was in the {1} position on {0}?", "Bartending", TwoColumns4Answers, "Adelhyde", "Flanergide", "Bronson Extract", "Karmotrine", "Powdered Delta",
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1, TranslateAnswers = true)]
BartendingIngredients,
[SouvenirQuestion("What was this bean in {0}?", "Beans", OneColumn4Answers, "Wobbly Orange", "Wobbly Yellow", "Wobbly Green", "Not Wobbly Orange", "Not Wobbly Yellow", "Not Wobbly Green",
UsesQuestionSprite = true, TranslateAnswers = true)]
BeansColors,
[SouvenirQuestion("What was sprout {1} in {0}?", "Bean Sprouts", TwoColumns4Answers,
"Raw", "Cooked", "Burnt", "Fake", TranslateAnswers = true,
ExampleFormatArgumentGroupSize = 1,
ExampleFormatArguments = new[] { "1", "2", "3", "4", "5", "6", "7", "8", "9" })]
BeanSproutsColors,
[SouvenirQuestion("What bean was on sprout {1} in {0}?", "Bean Sprouts", TwoColumns4Answers,
"Left", "Right", "None", "Both", TranslateAnswers = true,
ExampleFormatArgumentGroupSize = 1,
ExampleFormatArguments = new[] { "1", "2", "3", "4", "5", "6", "7", "8", "9" })]
BeanSproutsBeans,
[SouvenirQuestion("What was the bean in {0}?", "Big Bean", OneColumn4Answers, "Wobbly Orange", "Wobbly Yellow", "Wobbly Green", "Not Wobbly Orange", "Not Wobbly Yellow", "Not Wobbly Green", TranslateAnswers = true)]
BigBeanColor,
[SouvenirQuestion("What color was {1} in the solution to {0}?", "Big Circle", ThreeColumns6Answers, "Red", "Orange", "Yellow", "Green", "Blue", "Magenta", "White", "Black", TranslateAnswers = true,
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
BigCircleColors,
[SouvenirQuestion("At which numeric value did you cut the correct wire in {0}?", "Binary LEDs", ThreeColumns6Answers)]
[AnswerGenerator.Integers(0, 31)]
BinaryLEDsValue,
[SouvenirQuestion("What was the {1} initial number in {0}?", "Binary Shift", ThreeColumns6Answers, ExampleAnswers = new[] { "13", "14", "34", "46", "53", "64", "67", "77", "82", "96" },
ExampleFormatArguments = new[] { "top-left", "top-middle", "top-right", "left-middle", "center", "right-middle", "bottom-left", "bottom-middle", "bottom-right" }, ExampleFormatArgumentGroupSize = 1, TranslateFormatArgs = new[] { true })]
BinaryShiftInitialNumber,
[SouvenirQuestion("What number was selected at stage {1} in {0}?", "Binary Shift", ThreeColumns6Answers, "top-left", "top-middle", "top-right", "left-middle", "center", "right-middle", "bottom-left", "bottom-middle", "bottom-right", TranslateAnswers = true,
ExampleFormatArguments = new[] { "0", "1", "2" }, ExampleFormatArgumentGroupSize = 1)]
BinaryShiftSelectedNumberPossition,
[SouvenirQuestion("What number was not selected at stage {1} in {0}?", "Binary Shift", ThreeColumns6Answers, "top-left", "top-middle", "top-right", "left-middle", "center", "right-middle", "bottom-left", "bottom-middle", "bottom-right", TranslateAnswers = true,
ExampleFormatArguments = new[] { "0", "1", "2" }, ExampleFormatArgumentGroupSize = 1)]
BinaryShiftNotSelectedNumberPossition,
[SouvenirQuestion("What word was displayed in {0}?", "Binary", ThreeColumns6Answers, "ah", "at", "am", "as", "an", "be", "by", "go", "if", "in", "is", "it", "mu", "nu", "no", "nu", "of", "pi", "to", "up", "us", "we", "xi", "ace", "aim", "air", "bed", "bob", "but", "buy", "can", "cat", "chi", "cut", "day", "die", "dog", "dot", "eat", "eye", "for", "fly", "get", "gut", "had", "hat", "hot", "ice", "lie", "lit", "mad", "map", "may", "new", "not", "now", "one", "pay", "phi", "pie", "psi", "red", "rho", "sad", "say", "sea", "see", "set", "six", "sky", "tau", "the", "too", "two", "why", "win", "yes", "zoo", "alfa", "beta", "blue", "chat", "cyan", "demo", "door", "east", "easy", "each", "edit", "fail", "fall", "fire", "five", "four", "game", "golf", "grid", "hard", "hate", "help", "hold", "iota", "kilo", "lima", "lime", "list", "lock", "lost", "stop", "test", "time", "tree", "type", "west", "wire", "wood", "xray", "yell", "zero", "zeta", "zulu", "abort", "about", "alpha", "black", "bravo", "clock", "close", "could", "crash", "delta", "digit", "eight", "gamma", "glass", "green", "guess", "hotel", "india", "kappa", "later", "least", "lemon", "month", "morse", "north", "omega", "oscar", "panic", "press", "romeo", "seven", "sigma", "smash", "south", "tango", "timer", "voice", "while", "white", "world", "worry", "would", "binary", "defuse", "disarm", "expert", "finish", "forget", "lambda", "manual", "module", "number", "orange", "period", "purple", "quebec", "should", "sierra", "source", "strike", "submit", "twitch", "victor", "violet", "window", "yellow", "yankee", "charlie", "epsilon", "explode", "foxtrot", "juliett", "measure", "mission", "omicron", "subject", "uniform", "upsilon", "whiskey", "detonate", "notsolve", "november")]
BinaryWord,
[SouvenirQuestion("How many pixels were {1} in the {2} quadrant in {0}?", "Bitmaps", ThreeColumns6Answers, TranslateFormatArgs = new[] { true, true },
ExampleFormatArguments = new[] { "white", "top left", "white", "top right", "white", "bottom left", "white", "bottom right", "black", "top left", "black", "top right", "black", "bottom left", "black", "bottom right" }, ExampleFormatArgumentGroupSize = 2)]
[AnswerGenerator.Integers(0, 16)]
Bitmaps,
[SouvenirQuestion("What was on the {1} screen on page {2} in {0}?", "Black Cipher", TwoColumns4Answers, ExampleAnswers = new[] { "AMBUSH", "BANZAI", "BIGGER", "GAMBLE", "KETOSE", "OCULUS", "SCRAMS", "SENSOR", "YEANED", "YOUTHS" },
ExampleFormatArguments = new[] { "top", "1", "middle", "1", "bottom", "1", "top", "2", "middle", "2", "bottom", "2" }, ExampleFormatArgumentGroupSize = 2, TranslateFormatArgs = new[] { true, false })]
BlackCipherScreen,
[SouvenirQuestion("What color was the {1} button in {0}?", "Blind Maze", TwoColumns4Answers, "Red", "Green", "Blue", "Gray", "Yellow", TranslateAnswers = true, TranslateFormatArgs = new[] { true },
ExampleFormatArguments = new[] { "north", "east", "west", "south" }, ExampleFormatArgumentGroupSize = 1)]
BlindMazeColors,
[SouvenirQuestion("Which maze did you solve {0} on?", "Blind Maze", ThreeColumns6Answers)]
[AnswerGenerator.Integers(0, 9)]
BlindMazeMaze,
[SouvenirQuestion("How many times did the LED flash in {0}?", "Blinkstop", ThreeColumns6Answers, "30", "33", "37", "39", "42", "44", "47", "51", "55", "59")]
BlinkstopNumberOfFlashes,
[SouvenirQuestion("Which color did the LED flash the fewest times in {0}?", "Blinkstop", TwoColumns4Answers, "Purple", "Cyan", "Yellow", "Multicolor", TranslateAnswers = true)]
BlinkstopFewestFlashedColor,
[SouvenirQuestion("What was the last letter pressed on {0}?", "Blockbusters", ThreeColumns6Answers)]
[AnswerGenerator.Strings('A', 'Z')]
BlockbustersLastLetter,
[SouvenirQuestion("What were the characters on the screen in {0}?", "Blue Arrows", ThreeColumns6Answers, "CA", "C1", "CB", "C8", "CF", "C4", "CE", "C6", "3A", "31", "3B", "38", "3F", "34", "3E", "36", "GA", "G1", "GB", "G8", "GF", "G4", "GE", "G6", "7A", "71", "7B", "78", "7F", "74", "7E", "76", "DA", "D1", "DB", "D8", "DF", "D4", "DE", "D6", "5A", "51", "5B", "58", "5F", "54", "5E", "56", "HA", "H1", "HB", "H8", "HF", "H4", "HE", "H6", "2A", "21", "2B", "28", "2F", "24", "2E", "26")]
BlueArrowsInitialCharacters,
[SouvenirQuestion("What was D in {0}?", "Blue Button", TwoColumns4Answers, AddThe = true)]
[AnswerGenerator.Integers(1, 4)]
BlueButtonD,
[SouvenirQuestion("What was {1} in {0}?", "Blue Button", TwoColumns4Answers, AddThe = true,
ExampleFormatArguments = new[] { "E", "F", "G", "H" }, ExampleFormatArgumentGroupSize = 1)]
[AnswerGenerator.Integers(0, 3)]
BlueButtonEFGH,
[SouvenirQuestion("What was M in {0}?", "Blue Button", ThreeColumns6Answers, AddThe = true)]
[AnswerGenerator.Integers(1, 9)]
BlueButtonM,
[SouvenirQuestion("What was N in {0}?", "Blue Button", ThreeColumns6Answers, AddThe = true)]
[AnswerGenerator.Integers(4, 9)]
BlueButtonN,
[SouvenirQuestion("What was P in {0}?", "Blue Button", ThreeColumns6Answers, "♠♥♣", "♠♣♥", "♥♠♣", "♥♣♠", "♣♠♥", "♣♥♠", AddThe = true)]
BlueButtonP,
[SouvenirQuestion("What was Q in {0}?", "Blue Button", ThreeColumns6Answers, "Blue", "Green", "Cyan", "Red", "Magenta", "Yellow", TranslateAnswers = true, AddThe = true)]
BlueButtonQ,
[SouvenirQuestion("What was X in {0}?", "Blue Button", TwoColumns4Answers, AddThe = true)]
[AnswerGenerator.Integers(1, 5)]
BlueButtonX,
[SouvenirQuestion("What was on the {1} screen on page {2} in {0}?", "Blue Cipher", TwoColumns4Answers, ExampleAnswers = new[] { "ANCHOR", "ATTAIN", "DECIDE", "JAILOR", "LIGHTS", "OFFERS", "POETIC", "UNISON", "VECTOR", "VISION" },
ExampleFormatArguments = new[] { "top", "1", "middle", "1", "bottom", "1", "top", "2", "middle", "2", "bottom", "2" }, ExampleFormatArgumentGroupSize = 2, TranslateFormatArgs = new[] { true, false })]
BlueCipherScreen,
[SouvenirQuestion("What was the {1} indicator label in {0}?", "Bob Barks", ThreeColumns6Answers, "BOB", "CAR", "CLR", "IND", "FRK", "FRQ", "MSA", "NSA", "SIG", "SND", "TRN", "BUB", "DOG", "ETC", "KEY", TranslateFormatArgs = new[] { true },
ExampleFormatArguments = new[] { "top left", "top right", "bottom left", "bottom right" }, ExampleFormatArgumentGroupSize = 1)]
BobBarksIndicators,
[SouvenirQuestion("Which button flashed {1} in sequence in {0}?", "Bob Barks", TwoColumns4Answers, "top left", "top right", "bottom left", "bottom right", TranslateAnswers = true,
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
BobBarksPositions,
[SouvenirQuestion("What letter was initially visible on {0}?", "Boggle", ThreeColumns6Answers, ExampleAnswers = new[] { "A", "E", "G", "M", "T", "W" })]
BoggleLetters,
[SouvenirQuestion("What was the license number in {0}?", "Bomb Diffusal", TwoColumns4Answers, ExampleAnswers = new[] { "A4BIK5", "HI391D", "ZX98O1", "12K9PL" })]
BombDiffusalLicenseNumber,
[SouvenirQuestion("Which word was shown on {0}?", "Boob Tube", OneColumn4Answers, "Shittah", "Dik-Dik", "Aktashite", "Tetheradick", "Sack-Butt", "Nobber", "Knobstick", "Jerkinhead", "Haboob", "Fanny-Blower", "Assapanick", "Fuksheet", "Clatterfart", "Humpenscrump", "Cock-Bell", "Slagger", "Pakapoo", "Wankapin", "Lobcocked", "Poonga", "Sexagesm", "Tit-Bore", "Pershitte", "Invagination", "Bumfiddler", "Nestle-Cock", "Gullgroper", "Boob Tube", "Boobyalla", "Dreamhole")]
BoobTubeWord,
[SouvenirQuestion("Who said the {1} quote in {0}?", "Book of Mario", ThreeColumns6Answers, Type = AnswerType.Sprites, SpriteFieldName = "BookOfMarioSprites",
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
BookOfMarioPictures,
[SouvenirQuestion("What did {1} say in the {2} stage of {0}?", "Book of Mario", OneColumn4Answers, ExampleAnswers = new[] { "Dark Koopatrol. These people just blow hard...", "I came, Mario! You finna", "Absolutely, I came! Got it!", "Well, I’m so desperate, so you better save me…" },
ExampleFormatArguments = new[] { "Goombell", QandA.Ordinal, "Prince Peach", QandA.Ordinal, "God Browser", QandA.Ordinal, "Mr.Krump", QandA.Ordinal, "Mario", QandA.Ordinal, "Flavio", QandA.Ordinal, "Quiz Thwomb", QandA.Ordinal, "Carbon", QandA.Ordinal, "Belda", QandA.Ordinal, "Make", QandA.Ordinal, "Yoshi Kid", QandA.Ordinal, "Bob", QandA.Ordinal, "Prosecutor Grubba", QandA.Ordinal },
ExampleFormatArgumentGroupSize = 2)]
BookOfMarioQuotes,
[SouvenirQuestion("Which operator did you submit in the {1} stage of {0}?", "Boolean Wires", TwoColumns4Answers, "OR", "XOR", "AND", "NAND", "NOR", ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
BooleanWiresEnteredOperators,
[SouvenirQuestion("What was rule {1} in {0}?", "Boomtar the Great", ThreeColumns6Answers,
ExampleFormatArgumentGroupSize = 1, ExampleFormatArguments = new[] { "one", "two" }, TranslateFormatArgs = new[] { true })]
[AnswerGenerator.Integers(1, 6)]
BoomtarTheGreatRules,
[SouvenirQuestion("What tweet was shown in {0}?", "Bottom Gear", OneColumn4Answers,
"Today on bottom gear I drive a silent electric ca…", "*show budget does not exceed 23¥", "good evening ladies and gents today, our todayz s…", "today we will be reviewing one of a kin vehicle t…", "helo mate we are going to asda do uwant sanythij…", "hello i am stug i go quikk noom", "oy luv you posh dickead oy 'ave cum bak gimme a s…", "hammon you tiny man where is the lambo chevy?", "gon ei crashed it into James car", "hammond you sodding tic tac this was my laborghin…", "call 999 my fokin cah is beaning on Fire mate", "ham ond i have crack additcion i am die", "Jeremy I have to write divorce papers today I don…", "we do not hav petroleum hmalet", "Tody on medium gear, wat happens when taste exhoo…", "K, I'll have a wiff.", "Ery nice.", "No Jeremia, car gas bad for helf.", "Shut mouth hammock.", "cock", "Shut up jams", "th Esped is a lot !", "weed", "car", "feet")]
BottomGearTweet,
[SouvenirQuestion("What was the border color when you pressed the {1} key in {0}?", "Bordered Keys", ThreeColumns6Answers, "Red", "Green", "Blue", "Cyan", "Magenta", "Yellow",
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1, TranslateAnswers = true)]
BorderedKeysBorderColor,
[SouvenirQuestion("What was the digit displayed when you pressed the {1} key in {0}?", "Bordered Keys", ThreeColumns6Answers,
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
[AnswerGenerator.Integers(1, 6)]
BorderedKeysDigit,
[SouvenirQuestion("What was the key color when you pressed the {1} key in {0}?", "Bordered Keys", ThreeColumns6Answers, "Red", "Green", "Blue", "Cyan", "Magenta", "Yellow",
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1, TranslateAnswers = true)]
BorderedKeysKeyColor,
[SouvenirQuestion("What was the label when you pressed the {1} key in {0}?", "Bordered Keys", ThreeColumns6Answers,
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
[AnswerGenerator.Integers(1, 6)]
BorderedKeysLabel,
[SouvenirQuestion("What was the label color when you pressed the {1} key in {0}?", "Bordered Keys", ThreeColumns6Answers, "Red", "Green", "Blue", "Cyan", "Magenta", "Yellow",
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1, TranslateAnswers = true)]
BorderedKeysLabelColor,
[SouvenirQuestion("Which {1} appeared on {0}?", "Boxing", TwoColumns4Answers, ExampleAnswers = new[] { "Muhammad", "Mike", "Floyd", "Joe", "George", "Manny", "Sugar Ray", "Evander" },
ExampleFormatArguments = new[] { "contestant’s first name", "contestant’s last name", "substitute’s first name", "substitute’s last name" }, ExampleFormatArgumentGroupSize = 1, TranslateFormatArgs = new[] { true })]
BoxingNames,
[SouvenirQuestion("What was the {1} of the contestant with strength rating {2} on {0}?", "Boxing", TwoColumns4Answers, ExampleAnswers = new[] { "Muhammad", "Mike", "Floyd", "Joe", "George", "Manny", "Sugar Ray", "Evander" }, TranslateFormatArgs = new[] { true, false },
ExampleFormatArguments = new[] { "first name", "0", "first name", "1", "first name", "2", "last name", "0", "last name", "1", "last name", "2", "substitute’s first name", "0", "substitute’s first name", "1", "substitute’s first name", "2", "substitute’s last name", "0", "substitute’s last name", "1", "substitute’s last name", "2" }, ExampleFormatArgumentGroupSize = 2)]
BoxingContestantByStrength,
[SouvenirQuestion("What was {1}’s strength rating on {0}?", "Boxing", ThreeColumns6Answers, "0", "1", "2", "3", "4",
ExampleFormatArguments = new[] { "Muhammad", "Mike", "Floyd", "Joe", "George", "Manny", "Sugar Ray", "Evander" }, ExampleFormatArgumentGroupSize = 1)]
BoxingStrengthByContestant,
[SouvenirQuestion("What was the {1} pattern in {0}?", "Braille", ThreeColumns6Answers, Type = AnswerType.Sprites, ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
[AnswerGenerator.Circles(2, 3, 20, 20, SuppressEmpty = true)]
BraillePattern,
[SouvenirQuestion("Which color appeared on the egg in {0}?", "Breakfast Egg", TwoColumns4Answers, "Crimson", "Orange", "Pink", "Beige", "Cyan", "Lime", "Petrol", TranslateAnswers = true)]
BreakfastEggColor,
[SouvenirQuestion("What was the {1} correct button you pressed in {0}?", "Broken Buttons", ThreeColumns6Answers, "bomb", "blast", "boom", "burst", "wire", "button", "module", "light", "led", "switch", "RJ-45", "DVI-D", "RCA", "PS/2", "serial", "port", "row", "column", "one", "two", "three", "four", "five", "six", "seven", "eight", "size", "this", "that", "other", "submit", "abort", "drop", "thing", "blank", "broken", "too", "to", "yes", "see", "sea", "c", "wait", "word", "bob", "no", "not", "first", "hold", "late", "fail",
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
BrokenButtons,
[SouvenirQuestion("What was the displayed chord in {0}?", "Broken Guitar Chords", ThreeColumns6Answers, ExampleAnswers = new[] { "C", "Dm", "F#sus", "Gm7", "A9", "Eadd9" })]
BrokenGuitarChordsDisplayedChord,
[SouvenirQuestion("In which position, from left to right, was the broken string in {0}?", "Broken Guitar Chords", ThreeColumns6Answers)]
[AnswerGenerator.Integers(1, 6)]
BrokenGuitarChordsMutedString,
[SouvenirQuestion("What was on the {1} screen on page {2} in {0}?", "Brown Cipher", TwoColumns4Answers, ExampleAnswers = new[] { "AROUND", "JUKING", "OCELOT", "PARDON", "SCHOOL", "SOCCER", "SPRING", "TIMING", "VALVES", "VORTEX" },
ExampleFormatArguments = new[] { "top", "1", "middle", "1", "bottom", "1", "top", "2", "middle", "2", "bottom", "2" }, ExampleFormatArgumentGroupSize = 2, TranslateFormatArgs = new[] { true, false })]
BrownCipherScreen,
[SouvenirQuestion("What was the color of the middle contact point in {0}?", "Brush Strokes", ThreeColumns6Answers, "Red", "Orange", "Yellow", "Lime", "Green", "Cyan", "Sky", "Blue", "Purple", "Magenta", "Brown", "White", "Gray", "Black", "Pink", TranslateAnswers = true)]
BrushStrokesMiddleColor,
[SouvenirQuestion("What were the correct button presses in {0}?", "Bulb", ThreeColumns6Answers, "OOO", "OOI", "OIO", "OII", "IOO", "IOI", "IIO", "III", AddThe = true, Type = AnswerType.TicTacToeFont)]
BulbButtonPresses,
[SouvenirQuestion("What was the {1} displayed digit in {0}?", "Burger Alarm", ThreeColumns6Answers, ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
[AnswerGenerator.Integers(0, 9)]
BurgerAlarmDigits,
[SouvenirQuestion("What was the {1} order number in {0}?", "Burger Alarm", ThreeColumns6Answers, ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
[AnswerGenerator.Integers(0, 99, "00")]
BurgerAlarmOrderNumbers,
[SouvenirQuestion("What was the {1} displayed digit in {0}?", "Burglar Alarm", ThreeColumns6Answers,
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
[AnswerGenerator.Integers(0, 9)]
BurglarAlarmDigits,
[SouvenirQuestion("What color did the light glow in {0}?", "Button", TwoColumns4Answers, "red", "blue", "yellow", "white", AddThe = true, TranslateAnswers = true)]
ButtonLightColor,
[SouvenirQuestion("How many of the buttons in {0} were {1}?", "Button Sequence", ThreeColumns6Answers, TranslateFormatArgs = new[] { true },
ExampleFormatArguments = new[] { "red", "blue", "yellow", "white" }, ExampleFormatArgumentGroupSize = 1)]
[AnswerGenerator.Integers(1, 12)]
ButtonSequencesColorOccurrences,
[SouvenirQuestion("What was the {1} in {0}?", "Caesar Cycle", TwoColumns4Answers, "Advanced", "Addition", "Allocate", "Altering", "Binaries", "Billions", "Bulkhead", "Bulleted", "Ciphered", "Circuits", "Computer", "Continue", "Decrypts", "Division", "Discover", "Disposal", "Encipher", "Entrance", "Equation", "Equipped", "Finished", "Findings", "Fortress", "Forwards", "Gauntlet", "Gambling", "Gathered", "Glooming", "Hazarded", "Haziness", "Hunkered", "Huntsman", "Indicate", "Indigoes", "Illusion", "Illumine", "Jigsawed", "Jimmying", "Junction", "Judgment", "Kilowatt", "Kinetics", "Knockout", "Knuckled", "Limiting", "Linearly", "Linkages", "Labeling", "Monogram", "Monotone", "Multiply", "Mulligan", "Nanogram", "Nanotube", "Numbered", "Numerals", "Octangle", "Octuples", "Observed", "Obscured", "Progress", "Projects", "Position", "Positive", "Quadrant", "Quadrics", "Quickest", "Quintics", "Reversed", "Revolved", "Rotation", "Relation", "Starting", "Standard", "Stopping", "Stopword", "Triggers", "Triangle", "Toggling", "Together", "Underrun", "Underlie", "Ultimate", "Ultrared", "Vicinity", "Viceless", "Voltages", "Volatile", "Wingding", "Winnable", "Whatever", "Whatnots", "Yellowed", "Yeasayer", "Yielding", "Yourself", "Zippered", "Zigzaggy", "Zugzwang", "Zymogram",
ExampleFormatArguments = new[] { "message", "response" }, ExampleFormatArgumentGroupSize = 1, TranslateFormatArgs = new[] { true })]
CaesarCycleWord,
[SouvenirQuestion("What text was on the top display in the {1} stage of {0}?", "Caesar Psycho", ThreeColumns6Answers,
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
[AnswerGenerator.Strings("5*A-Z")]
CaesarPsychoScreenTexts,
[SouvenirQuestion("What color was the text on the top display in the second stage of {0}?", "Caesar Psycho", ThreeColumns6Answers, "white", "red", "magenta", "yellow", "green", "cyan", "violet")]
CaesarPsychoScreenColor,
[SouvenirQuestion("What was the LED color in {0}?", "Calendar", TwoColumns4Answers, "Green", "Yellow", "Red", "Blue", TranslateAnswers = true)]
CalendarLedColor,
[SouvenirQuestion("What color was this cell initially in {0}?", "CA-RPS", TwoColumns4Answers, "Red", "Green", "Blue", "Black", UsesQuestionSprite = true, TranslateAnswers = true)]
CARPSCell,
[SouvenirQuestion("What color was the {1} button in {0}?", "Cartinese", TwoColumns4Answers, "Red", "Yellow", "Green", "Blue",
ExampleFormatArguments = new[] { "up", "right", "down", "left" }, ExampleFormatArgumentGroupSize = 1, TranslateAnswers = true, TranslateFormatArgs = new[] { true })]
CartineseButtonColors,
[SouvenirQuestion("What lyric was played by the {1} button in {0}?", "Cartinese", TwoColumns4Answers, "Aingobodirou", "Dongifubounan", "Ayofumylu", "Dimycamilayw", "Dogosemiu", "Bitgosemiu", "Iwittyluyu", "Herolideca", "Anseweke", "Likwoveke", "Omeygah", "Dediamnatifney",
ExampleFormatArguments = new[] { "up", "right", "down", "left" }, ExampleFormatArgumentGroupSize = 1, TranslateFormatArgs = new[] { true })]
CartineseLyrics,
[SouvenirQuestion("What was the colour of the {1} panel in {0}?", "Catchphrase", ThreeColumns6Answers, "Red", "Green", "Blue", "Orange", "Purple", "Yellow",
ExampleFormatArguments = new[] { "top-left", "top-right", "bottom-left", "bottom-right" }, ExampleFormatArgumentGroupSize = 1, TranslateAnswers = true, TranslateFormatArgs = new[] { true })]
CatchphraseColour,
[SouvenirQuestion("What was the {1} submitted answer in {0}?", "Challenge & Contact", TwoColumns4Answers, ExampleAnswers = new[] { "Accumulation", "Coffeebucks", "Perplexing", "Zoo", "Sunstone", "Bob" },
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
ChallengeAndContactAnswers,
[SouvenirQuestion("What was the {1} character in {0}?", "Character Codes", ThreeColumns6Answers, ExampleAnswers = new[] { "♥", "♣", "•", "☑", "☣", "Ϣ" },
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
CharacterCodesCharacter,
[SouvenirQuestion("Which letter was present but not submitted on the left slider of {0}?", "Character Shift", ThreeColumns6Answers)]
[AnswerGenerator.Strings("A-Z")]
CharacterShiftLetters,
[SouvenirQuestion("Which digit was present but not submitted on the right slider of {0}?", "Character Shift", ThreeColumns6Answers)]
[AnswerGenerator.Strings("0-9")]
CharacterShiftDigits,
[SouvenirQuestion("Who was displayed in the {1} slot in the {2} stage of {0}?", "Character Slots", ThreeColumns6Answers, Type = AnswerType.Sprites, SpriteFieldName = "CharacterSlotsSprites",
ExampleFormatArguments = new[] { QandA.Ordinal, QandA.Ordinal }, ExampleFormatArgumentGroupSize = 2)]
CharacterSlotsDisplayedCharacters,
[SouvenirQuestion("What was {1} in {0}?", "Cheap Checkout", ThreeColumns6Answers, TranslateFormatArgs = new[] { true },
ExampleFormatArguments = new[] { "the paid amount", "the first paid amount", "the second paid amount" }, ExampleFormatArgumentGroupSize = 1)]
[AnswerGenerator.Integers(5, 50, "$0\".00\"")]
CheapCheckoutPaid,
[SouvenirQuestion("Which bird {1} present in {0}?", "Cheep Checkout", OneColumn4Answers, "Auklet", "Bluebird", "Chickadee", "Dove", "Egret", "Finch", "Godwit", "Hummingbird", "Ibis", "Jay", "Kinglet", "Loon", "Magpie", "Nuthatch", "Oriole", "Pipit", "Quail", "Raven", "Shrike", "Thrush", "Umbrellabird", "Vireo", "Warbler", "Xantus’s Hummingbird", "Yellowlegs", "Zigzag Heron", TranslateAnswers = true,
ExampleFormatArguments = new[] { "was", "was not" }, ExampleFormatArgumentGroupSize = 1, TranslateFormatArgs = new[] { true })]
CheepCheckoutBirds,
[SouvenirQuestion("What was the {1} coordinate in {0}?", "Chess", ThreeColumns6Answers,
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
[AnswerGenerator.Strings("a-f", "1-6")]
ChessCoordinate,
[SouvenirQuestion("What color was the {1} LED in {0}?", "Chinese Counting", TwoColumns4Answers, "White", "Red", "Green", "Orange", TranslateAnswers = true, TranslateFormatArgs = new[] { true },
ExampleFormatArguments = new[] { "left", "right" }, ExampleFormatArgumentGroupSize = 1)]
ChineseCountingLED,
[SouvenirQuestion("Which note was part of the given chord in {0}?", "Chord Qualities", ThreeColumns6Answers, "A", "A♯", "B", "C", "C♯", "D", "D♯", "E", "F", "F♯", "G", "G♯")]
ChordQualitiesNotes,
[SouvenirQuestion("Which arrow was shown in {0}?", "↻↺", ThreeColumns6Answers, Type = AnswerType.Sprites, SpriteFieldName = "ClockCounterSprites")]
ClockCounterArrows,
[SouvenirQuestion("What was the displayed number in {0}?", "Code", ThreeColumns6Answers, null, AddThe = true)]
[AnswerGenerator.Integers(999, 9999)]
CodeDisplayNumber,
[SouvenirQuestion("Which of these words was submitted in {0}?", "Codenames", TwoColumns4Answers, ExampleAnswers = new[] { "Hyperborean", "Weenus", "Melody", "King" })]
CodenamesAnswers,
[SouvenirQuestion("What was the last served coffee in {0}?", "Coffeebucks", OneColumn4Answers, "Twix Frappuccino", "The Blue Drink", "Matcha & Espresso Fusion", "Caramel Snickerdoodle Macchiato", "Liquid Cocaine", "S’mores Hot Chocolate", "The Pink Drink", "Grasshopper Frappuccino")]
CoffeebucksCoffee,
[SouvenirQuestion("Which coin was flipped in {0}?", "Coinage", ThreeColumns6Answers, ExampleAnswers = new[] { "e4", "h5", "d4", "h4", "c4", "h3", "c3", "g2", "f3", "h1", "f7" })]
CoinageFlip,
[SouvenirQuestion("What was {1}’s number in {0}?", "Color Addition", ThreeColumns6Answers, ExampleFormatArguments = new[] { "red", "green", "blue" }, ExampleFormatArgumentGroupSize = 1, TranslateFormatArgs = new[] { true })]
[AnswerGenerator.Strings(3, "0123456789")]
ColorAdditionNumbers,
[SouvenirQuestion("What color was this dot in {0}?", "Color Braille", ThreeColumns6Answers, "Black", "Blue", "Green", "Cyan", "Red", "Magenta", "Yellow", "White", TranslateAnswers = true, UsesQuestionSprite = true)]
ColorBrailleColor,
[SouvenirQuestion("What was the {1}-stage indicator pattern in {0}?", "Color Decoding", TwoColumns4Answers, "Checkered", "Horizontal", "Vertical", "Solid", TranslateAnswers = true,
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
ColorDecodingIndicatorPattern,
[SouvenirQuestion("Which color {1} in the {2}-stage indicator pattern in {0}?", "Color Decoding", TwoColumns4Answers, "Green", "Purple", "Red", "Blue", "Yellow", TranslateAnswers = true, TranslateFormatArgs = new[] { true, false },
ExampleFormatArguments = new[] { "appeared", QandA.Ordinal, "did not appear", QandA.Ordinal }, ExampleFormatArgumentGroupSize = 2)]
ColorDecodingIndicatorColors,
[SouvenirQuestion("What was the displayed word in {0}?", "Colored Keys", ThreeColumns6Answers, "red", "blue", "green", "yellow", "purple", "white", TranslateAnswers = true)]
ColoredKeysDisplayWord,
[SouvenirQuestion("What was the displayed word’s color in {0}?", "Colored Keys", ThreeColumns6Answers, "red", "blue", "green", "yellow", "purple", "white", TranslateAnswers = true)]
ColoredKeysDisplayWordColor,
[SouvenirQuestion("What was the color of the {1} key in {0}?", "Colored Keys", ThreeColumns6Answers, "red", "blue", "green", "yellow", "purple", "white",
ExampleFormatArguments = new[] { "top-left", "top-right", "bottom-left", "bottom-right" }, ExampleFormatArgumentGroupSize = 1, TranslateAnswers = true, TranslateFormatArgs = new[] { true })]
ColoredKeysKeyColor,
[SouvenirQuestion("What letter was on the {1} key in {0}?", "Colored Keys", ThreeColumns6Answers,
ExampleFormatArguments = new[] { "top-left", "top-right", "bottom-left", "bottom-right" }, ExampleFormatArgumentGroupSize = 1, TranslateFormatArgs = new[] { true })]
[AnswerGenerator.Strings('A', 'Z')]
ColoredKeysKeyLetter,
[SouvenirQuestion("What was the first color group in {0}?", "Colored Squares", ThreeColumns6Answers, "White", "Red", "Blue", "Green", "Yellow", "Magenta", TranslateAnswers = true)]
ColoredSquaresFirstGroup,
[SouvenirQuestion("What was the initial position of the switches in {0}?", "Colored Switches", ThreeColumns6Answers,
Type = AnswerType.SymbolsFont)]
[AnswerGenerator.Strings(5, 'Q', 'R')]
ColoredSwitchesInitialPosition,
[SouvenirQuestion("What was the position of the switches when the LEDs came on in {0}?", "Colored Switches", ThreeColumns6Answers,
Type = AnswerType.SymbolsFont)]
[AnswerGenerator.Strings(5, 'Q', 'R')]
ColoredSwitchesWhenLEDsCameOn,
[SouvenirQuestion("What was the color of the {1} LED in {0}?", "Color Morse", ThreeColumns6Answers, "Blue", "Green", "Orange", "Purple", "Red", "Yellow", "White", TranslateAnswers = true,
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
ColorMorseColor,
[SouvenirQuestion("What character was flashed by the {1} LED in {0}?", "Color Morse", ThreeColumns6Answers,
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
[AnswerGenerator.Strings("0-9A-Z")]
ColorMorseCharacter,
[SouvenirQuestion("What color was the {1} LED in {0}?", "Color One Two", TwoColumns4Answers, "Red", "Blue", "Green", "Yellow", TranslateAnswers = true,
ExampleFormatArguments = new[] { "left", "right" }, ExampleFormatArgumentGroupSize = 1, TranslateFormatArgs = new[] { true })]
ColorOneTwoColor,
[SouvenirQuestion("How many buttons were {1} in {0}?", "Colors Maximization", ThreeColumns6Answers, ExampleFormatArguments = new[] { "red", "green", "blue" }, ExampleFormatArgumentGroupSize = 1, TranslateFormatArgs = new[] { true })]
[AnswerGenerator.Integers(0, 11)]
ColorsMaximizationColorCount,
[SouvenirQuestion("What was the colour of this {1} in the {2} stage of {0}?", "Coloured Cubes", ThreeColumns6Answers, "Black", "Indigo", "Blue", "Forest", "Teal", "Azure", "Green", "Jade", "Cyan", "Maroon", "Plum", "Violet", "Olive", "Grey", "Maya", "Lime", "Mint", "Aqua", "Red", "Rose", "Magenta", "Orange", "Salmon", "Pink", "Yellow", "Cream", "White",
ExampleFormatArguments = new[] { "cube", QandA.Ordinal, "stage light", QandA.Ordinal }, ExampleFormatArgumentGroupSize = 2, UsesQuestionSprite = true, TranslateAnswers = true, TranslateFormatArgs = new[] { true, false })]
ColouredCubesColours,
[SouvenirQuestion("What was the color of the last word in the sequence in {0}?", "Colour Flash", ThreeColumns6Answers, "Red", "Yellow", "Green", "Blue", "Magenta", "White", TranslateAnswers = true)]
ColourFlashLastColor,
[SouvenirQuestion("What number began here in {0}?", "Concentration", ThreeColumns6Answers, UsesQuestionSprite = true,
TranslatableStrings = new[] { "the Concentration which began with {1} in the {0} position (in reading order)" })]
[AnswerGenerator.Integers(1, 15)]
ConcentrationStartingDigit,
[SouvenirQuestion("What was the color of this button in {0}?", "Conditional Buttons", ThreeColumns6Answers, "black", "blue", "dark green", "light green", "orange", "pink", "purple", "red", "white", "yellow", UsesQuestionSprite = true, TranslateAnswers = true)]
ConditionalButtonsColors,
[SouvenirQuestion("What number was initially displayed on this screen in {0}?", "Connected Monitors", ThreeColumns6Answers, UsesQuestionSprite = true)]
[AnswerGenerator.Integers(0, 99)]
ConnectedMonitorsNumber,
[SouvenirQuestion("What colour was the indicator on this screen in {0}?", "Connected Monitors", ThreeColumns6Answers, "Red", "Orange", "Green", "Blue", "Purple", "White", UsesQuestionSprite = true, TranslateAnswers = true)]
ConnectedMonitorsSingleIndicator,
[SouvenirQuestion("What colour was the {1} indicator on this screen in {0}?", "Connected Monitors", ThreeColumns6Answers, "Red", "Orange", "Green", "Blue", "Purple", "White",
UsesQuestionSprite = true, ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1, TranslateAnswers = true)]
ConnectedMonitorsOrdinalIndicator,
[SouvenirQuestion("What pair of numbers was present in {0}?", "Connection Check", ThreeColumns6Answers)]
[AnswerGenerator.Strings("1-8", " ", "1-8")]
ConnectionCheckNumbers,
[SouvenirQuestion("What was the solution you selected first in {0}?", "Coordinates", OneColumn4Answers, ExampleAnswers = new[] { "[4,7]", "C4", "<0, 2>", "3, 1", "(6,2)", "B-1", "“1, 0”", "4/3", "[12]", "#23", "四十七" })]
CoordinatesFirstSolution,
[SouvenirQuestion("What was the grid size in {0}?", "Coordinates", OneColumn4Answers, "9", "15", "25", "21", "35", "49", "(9)", "(15)", "(21)", "(25)", "(35)", "(49)", "3 by 3", "4 by 3", "5 by 3", "6 by 3", "7 by 3", "3 by 4", "4 by 4", "5 by 4", "6 by 4", "7 by 4", "3 by 5", "4 by 5", "5 by 5", "6 by 5", "7 by 5", "3 by 6", "4 by 6", "5 by 6", "6 by 6", "7 by 6", "3 by 7", "4 by 7", "5 by 7", "6 by 7", "7 by 7", "9*3", "12*4", "15*5", "18*6", "21*7", "12*3", "16*4", "20*5", "24*6", "28*7", "15*3", "20*4", "25*5", "30*6", "35*7", "18*3", "24*4", "30*5", "36*6", "42*7", "21*3", "28*4", "35*5", "42*6", "49*7", "9 : 3", "12 : 3", "15 : 3", "18 : 3", "21 : 3", "12 : 4", "16 : 4", "20 : 4", "24 : 4", "28 : 4", "15 : 5", "20 : 5", "25 : 5", "30 : 5", "35 : 5", "18 : 6", "24 : 6", "30 : 6", "36 : 6", "42 : 6", "21 : 7", "28 : 7", "35 : 7", "42 : 7", "49 : 7", "3×3", "3×4", "3×5", "3×6", "3×7", "4×3", "4×4", "4×5", "4×6", "4×7", "5×3", "5×4", "5×5", "5×6", "5×7", "6×3", "6×4", "6×5", "6×6", "6×7", "7×3", "7×4", "7×5", "7×6", "7×7")]
CoordinatesSize,
[SouvenirQuestion("What was on the {1} screen on page {2} in {0}?", "Coral Cipher", TwoColumns4Answers, ExampleAnswers = new[] { "AMBUSH", "BANZAI", "BIGGER", "GAMBLE", "KETOSE", "OCULUS", "SCRAMS", "SENSOR", "YEANED", "YOUTHS" },
ExampleFormatArguments = new[] { "top", "1", "middle", "1", "bottom", "1", "top", "2", "middle", "2", "bottom", "2" }, ExampleFormatArgumentGroupSize = 2, TranslateFormatArgs = new[] { true, false })]
CoralCipherScreen,
[SouvenirQuestion("What was the color of the {1} corner in {0}?", "Corners", TwoColumns4Answers, "red", "green", "blue", "yellow", TranslateAnswers = true, TranslateFormatArgs = new[] { true },
ExampleFormatArguments = new[] { "top-left", "top-right", "bottom-right", "bottom-left" }, ExampleFormatArgumentGroupSize = 1)]
CornersColors,
[SouvenirQuestion("How many corners in {0} were {1}?", "Corners", ThreeColumns6Answers, "0", "1", "2", "3", "4", TranslateFormatArgs = new[] { true },
ExampleFormatArguments = new[] { "red", "green", "blue", "yellow" }, ExampleFormatArgumentGroupSize = 1)]
CornersColorCount,
[SouvenirQuestion("What was on the {1} screen on page {2} in {0}?", "Cornflower Cipher", TwoColumns4Answers, ExampleAnswers = new[] { "AMBUSH", "BANZAI", "BIGGER", "GAMBLE", "KETOSE", "OCULUS", "SCRAMS", "SENSOR", "YEANED", "YOUTHS" },
ExampleFormatArguments = new[] { "top", "1", "middle", "1", "bottom", "1", "top", "2", "middle", "2", "bottom", "2" }, ExampleFormatArgumentGroupSize = 2, TranslateFormatArgs = new[] { true, false })]
CornflowerCipherScreen,
[SouvenirQuestion("What was the number initially shown in {0}?", "Cosmic", ThreeColumns6Answers)]
[AnswerGenerator.Integers(0, 9999)]
CosmicNumber,
[SouvenirQuestion("What was the {1} ingredient shown in {0}?", "Crazy Hamburger", ThreeColumns6Answers, "Bread", "Cheese", "Grass", "Meat", "Oil", "Peppers",
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
CrazyHamburgerIngredient,
[SouvenirQuestion("What was the {1} location in {0}?", "Crazy Maze", ThreeColumns6Answers,
ExampleFormatArguments = new[] { "starting", "goal" }, ExampleFormatArgumentGroupSize = 1, TranslateFormatArgs = new[] { true })]
[AnswerGenerator.Strings("A-Z", "A-Z")]
CrazyMazeStartOrGoal,
[SouvenirQuestion("What was on the {1} screen on page {2} in {0}?", "Cream Cipher", TwoColumns4Answers, ExampleAnswers = new[] { "AMBUSH", "BANZAI", "BIGGER", "GAMBLE", "KETOSE", "OCULUS", "SCRAMS", "SENSOR", "YEANED", "YOUTHS" },
ExampleFormatArguments = new[] { "top", "1", "middle", "1", "bottom", "1", "top", "2", "middle", "2", "bottom", "2" }, ExampleFormatArgumentGroupSize = 2, TranslateFormatArgs = new[] { true, false })]
CreamCipherScreen,
[SouvenirQuestion("What were the weather conditions on the {1} day in {0}?", "Creation", TwoColumns4Answers, "Clear", "Heat Wave", "Meteor Shower", "Rain", "Windy",
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1, TranslateAnswers = true)]
CreationWeather,
[SouvenirQuestion("What was on the {1} screen on page {2} in {0}?", "Crimson Cipher", TwoColumns4Answers, ExampleAnswers = new[] { "AMBUSH", "BANZAI", "BIGGER", "GAMBLE", "KETOSE", "OCULUS", "SCRAMS", "SENSOR", "YEANED", "YOUTHS" },
ExampleFormatArguments = new[] { "top", "1", "middle", "1", "bottom", "1", "top", "2", "middle", "2", "bottom", "2" }, ExampleFormatArgumentGroupSize = 2, TranslateFormatArgs = new[] { true, false })]
CrimsonCipherScreen,
[SouvenirQuestion("What was the color in {0}?", "Critters", TwoColumns4Answers, "Yellow", "Pink", "Blue", "White", TranslateAnswers = true)]
CrittersColor,
[SouvenirQuestion("What was the displayed word in {0}?", "Cruel Binary", TwoColumns4Answers, ExampleAnswers = new[] { "LEAST", "YELLOW", "SIERRA", "WHITE" })]
CruelBinaryDisplayedWord,
[SouvenirQuestion("Which of these characters appeared in the {1} stage of {0}?", "Cruel Keypads", ThreeColumns6Answers, "ㄹ", "ㅁ", "ㅂ", "ㄱ", "ㄲ", "ㄷ", "ㅈ", "ㅉ", "ㅟ", "ㅋ", "ㅌ", "ㅍ", "ㅃ", "ㅅ", "ㅆ", "ㅇ", "ㅢ", "ㄴ", "ㄸ", ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
CruelKeypadsDisplayedSymbols,
[SouvenirQuestion("What was the color of the bar in the {1} stage of {0}?", "Cruel Keypads", ThreeColumns6Answers, "Red", "Blue", "Yellow", "Green", "Magenta", "White", ExampleFormatArguments = new[] { QandA.Ordinal }, TranslateAnswers = true, ExampleFormatArgumentGroupSize = 1)]
CruelKeypadsColors,
[SouvenirQuestion("Which cell was pre-filled at the start of {0}?", "cRule", TwoColumns4Answers, Type = AnswerType.Sprites, AddThe = true)]
CRulePrefilled,
[SouvenirQuestion("Which symbol pair was here in {0}?", "cRule", ThreeColumns6Answers, "♤♤", "♤♧", "♤♢", "♤♡", "♧♤", "♧♧", "♧♢", "♧♡", "♢♤", "♢♧", "♢♢", "♢♡", "♡♤", "♡♧", "♡♢", "♡♡", AddThe = true, UsesQuestionSprite = true)]
CRuleSymbolPair,
[SouvenirQuestion("Which symbol pair was present on {0}?", "cRule", ThreeColumns6Answers, "♤♤", "♤♧", "♤♢", "♤♡", "♧♤", "♧♧", "♧♢", "♧♡", "♢♤", "♢♧", "♢♢", "♢♡", "♡♤", "♡♧", "♡♢", "♡♡", AddThe = true)]
CRuleSymbolPairPresent,
[SouvenirQuestion("Where was {1} in {0}?", "cRule", ThreeColumns6Answers, Type = AnswerType.Sprites, AddThe = true,
ExampleFormatArguments = new[] { "♤♤", "♤♧", "♤♢", "♤♡", "♧♤", "♧♧", "♧♢", "♧♡", "♢♤", "♢♧", "♢♢", "♢♡", "♡♤", "♡♧", "♡♢", "♡♡" }, ExampleFormatArgumentGroupSize = 1)]
CRuleSymbolPairCell,
[SouvenirQuestion("What was the {1} in {0}?", "Cryptic Cycle", TwoColumns4Answers, "Advanced", "Addition", "Allocate", "Altering", "Binaries", "Billions", "Bulkhead", "Bulleted", "Ciphered", "Circuits", "Computer", "Continue", "Decrypts", "Division", "Discover", "Disposal", "Examined", "Examples", "Equation", "Equipped", "Finished", "Findings", "Fortress", "Forwards", "Gauntlet", "Gambling", "Gathered", "Glooming", "Hazarded", "Haziness", "Hunkered", "Huntsman", "Indicate", "Indigoes", "Illusion", "Illumine", "Jigsawed", "Jimmying", "Junction", "Judgment", "Kilowatt", "Kinetics", "Knockout", "Knuckled", "Limiting", "Linearly", "Linkages", "Labeling", "Monogram", "Monotone", "Multiply", "Mulligan", "Nanogram", "Nanotube", "Numbered", "Numerals", "Octangle", "Octuples", "Observed", "Obscured", "Progress", "Projects", "Position", "Positive", "Quadrant", "Quadplex", "Quickest", "Quintics", "Reversed", "Revolved", "Rotation", "Relation", "Starting", "Standard", "Stopping", "Stopword", "Triggers", "Triangle", "Toggling", "Together", "Underrun", "Underlie", "Ultimate", "Ultrared", "Vicinity", "Viceless", "Voltages", "Volatile", "Wingding", "Winnable", "Whatever", "Whatnots", "Yellowed", "Yeasayer", "Yielding", "Yourself", "Zippered", "Zigzaggy", "Zugzwang", "Zymogram",
ExampleFormatArguments = new[] { "message", "response" }, ExampleFormatArgumentGroupSize = 1, TranslateFormatArgs = new[] { true })]
CrypticCycleWord,
[SouvenirQuestion("What was the label of the {1} key in {0}?", "Cryptic Keypad", ThreeColumns6Answers,
ExampleFormatArguments = new[] { "top-left", "top-right", "bottom-left", "bottom-right" }, ExampleFormatArgumentGroupSize = 1, TranslateFormatArgs = new[] { true })]
[AnswerGenerator.Strings("A-Z")]
CrypticKeypadLabels,
[SouvenirQuestion("Which cardinal direction was the {1} key rotated to in {0}?", "Cryptic Keypad", TwoColumns4Answers, "North", "East", "South", "West", TranslateAnswers = true,
ExampleFormatArguments = new[] { "top-left", "top-right", "bottom-left", "bottom-right" }, ExampleFormatArgumentGroupSize = 1, TranslateFormatArgs = new[] { true })]
CrypticKeypadRotations,
[SouvenirQuestion("What was the {1} cube rotation in {0}?", "Cube", TwoColumns4Answers, "rotate cw", "tip left", "tip backwards", "rotate ccw", "tip right", "tip forwards",
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1, AddThe = true, TranslateAnswers = true)]
CubeRotations,
[SouvenirQuestion("What was the first digit of the initially displayed number in {0}?", "Cursed Double-Oh", ThreeColumns6Answers)]
[AnswerGenerator.Integers(0, 9)]
CursedDoubleOhInitialPosition,
[SouvenirQuestion("Who was the {1} customer in {0}?", "Customer Identification", OneColumn4Answers, "Akari", "Alberto", "Allan", "Amy", "Austin", "Bertha", "Big Pauly", "Boomer", "Boopsy & Bill", "Brody", "Bruna Romano", "C.J. Friskins", "Cameo", "Captain Cori", "Carlo Romano", "Cecilia", "Cherissa", "Chester", "Chuck", "Clair", "Cletus", "Clover", "Connor", "Cooper", "Crystal", "Daniela", "Deano", "Didar", "Doan", "Drakson", "Duke Gotcha", "Edna", "Elle", "Ember", "Emmlette", "Evelyn", "Fernanda", "Foodini", "Franco", "Georgito", "Gino Romano", "Greg", "Gremmie", "Hacky Zak", "Hank", "Hope", "Hugo", "Iggy", "Indigo", "Ivy", "James", "Janana", "Johnny", "Jojo", "Joy", "Julep", "Kahuna", "Kaleb", "Kasey O", "Kayla", "Kenji", "Kenton", "Kingsley", "Koilee", "LePete", "Liezel", "Lisa", "Little Edoardo", "Maggie", "Mandi", "Marty", "Mary", "Matt", "Mayor Mallow", "Mesa", "Mindy", "Mitch", "Moe", "Mousse", "Mr. Bombolony", "Nevada", "Nick", "Ninjoy", "Nye", "Okalani", "Olga", "Olivia", "Pally", "Papa Louie", "Peggy", "Penny", "Perri", "Petrona", "Pinch Hitwell", "Professor Fitz", "Prudence", "Quinn", "Radlynn", "Rhonda", "Rico", "Ripley", "Rita", "Robby", "Rollie", "Roy", "Rudy", "Santa", "Sarge Fan", "Sasha", "Scarlett", "Scooter", "Shannon", "Sienna", "Simone", "Skip", "Skyler", "Sprinks The Clown", "Steven", "Sue", "Taylor", "The Dynamoe", "Timm", "Tohru", "Tony", "Trishna", "Utah", "Vicky", "Vincent", "Wally", "Wendy", "Whiff", "Whippa", "Willow", "Wylan B", "Xandra", "Xolo", "Yippy", "Yui", "Zoe",
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
CustomerIdentificationCustomer,
[SouvenirQuestion("Where was the button at the {1} stage in {0}?", "Cyan Button", TwoColumns4Answers, "top left", "top middle", "top right", "bottom left", "bottom middle", "bottom right",
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1, AddThe = true, TranslateAnswers = true)]
CyanButtonPositions,
[SouvenirQuestion("Which region did you depart from in {0}?", "DACH Maze", OneColumn4Answers, "Burgenland, A", "Carinthia, A", "Lower Austria, A", "North Tyrol, A", "Upper Austria, A", "East Tyrol, A", "Salzburg, A", "Styria, A", "Vorarlberg, A", "Vienna, A", "Aargau, CH", "Appenzell Inner Rhodes, CH", "Appenzell Outer Rhodes, CH", "Basel Country, CH", "Bern, CH", "Basel City, CH", "Fribourg, CH", "Geneva, CH", "Glarus, CH", "Grisons, CH", "Jura, CH", "Luzern, CH", "Nidwalden, CH", "Neuchâtel, CH", "Obwalden, CH", "Schaffhausen, CH", "St. Gallen, CH", "Solothurn, CH", "Schwyz, CH", "Thurgau, CH", "Ticino, CH", "Uri, CH", "Vaud, CH", "Valais, CH", "Zug, CH", "Zürich, CH", "Brandenburg, D", "Berlin, D", "Baden-Württemberg, D", "Bavaria, D", "Bremen, D", "Hesse, D", "Hamburg, D", "Mecklenburg-Vorpommern, D", "Lower Saxony, D", "North Rhine-Westphalia, D", "Rhineland-Palatinate, D", "Schleswig-Holstein, D", "Saarland, D", "Saxony, D", "Saxony-Anhalt, D", "Thuringia, D", "Liechtenstein", TranslateAnswers = true)]
DACHMazeOrigin,
[SouvenirQuestion("What was the shape generated in {0}?", "Deaf Alley", ThreeColumns6Answers, ExampleAnswers = new[] { "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "a", "b", "d", "e", "f", "g", "h", "i", "j", "k", "m", "n", "p", "q", "r", "t", "u", "y", "1", "2", "3", "4", "6", "7", "8", "9", "~", "`", "!", "@", "#", "$", "%", "^", "&", "*", "(", ")", "-", "_", "+", "=", "[", "]", "{", "}", ":", ";", "“", "‘", "<", ",", ">", ".", "?", "/", "\\" })]
DeafAlleyShape,
[SouvenirQuestion("What deck did the first card of {0} belong to?", "Deck of Many Things", TwoColumns4Answers, "Standard", "Metropolitan", "Maritime", "Arctic", "Tropical", "Oasis", "Celestial", AddThe = true)]
DeckOfManyThingsFirstCard,
[SouvenirQuestion("What was the starting {1} defining color in {0}?", "Decolored Squares", ThreeColumns6Answers, "White", "Red", "Blue", "Green", "Yellow", "Magenta", TranslateAnswers = true, TranslateFormatArgs = new[] { true },
ExampleFormatArguments = new[] { "column", "row" }, ExampleFormatArgumentGroupSize = 1)]
DecoloredSquaresStartingPos,
[SouvenirQuestion("What was the {1} of the {2} goal in {0}?", "Decolour Flash", ThreeColumns6Answers, "Blue", "Green", "Red", "Magenta", "Yellow", "White", ExampleFormatArguments = new[] { "colour", QandA.Ordinal, "word", QandA.Ordinal }, ExampleFormatArgumentGroupSize = 2, TranslateAnswers = true, TranslateFormatArgs = new[] { true, false })]
DecolourFlashGoal,
[SouvenirQuestion("What number was initially shown on display {1} in {0}?", "Denial Displays", ThreeColumns6Answers, ExampleAnswers = new[] { "1", "22", "333", "4", "55", "666", "7", "88", "999" },
ExampleFormatArguments = new[] { "A", "B", "C", "D", "E" }, ExampleFormatArgumentGroupSize = 1)]
DenialDisplaysDisplays,
[SouvenirQuestion("What was the {1} display in {0}?", "DetoNATO", TwoColumns4Answers, ExampleAnswers = new[] { "Ozzy Osbourne", "Jouleliette", "Flockstrot", "Joulelette", "Jouleliett", "Uniqueform" },
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
DetoNATODisplay,
[SouvenirQuestion("What was the {1} egg’s {2} rotation in {0}?", "Devilish Eggs", TwoColumns4Answers, "W90CW", "W180CW", "W270CW", "W360CW", "W90CCW", "W180CCW", "W270CCW", "W360CCW", "T90CW", "T180CW", "T270CW", "T360CW", "T90CCW", "T180CCW", "T270CCW", "T360CCW", TranslateFormatArgs = new[] { true, false },
ExampleFormatArguments = new[] { "top", QandA.Ordinal, "bottom", QandA.Ordinal }, ExampleFormatArgumentGroupSize = 2)]
DevilishEggsRotations,
[SouvenirQuestion("What was the {1} digit in the string of numbers on {0}?", "Devilish Eggs", ThreeColumns6Answers, "0", "1", "2", "3", "4", "5", "6", "7", "8", "9",
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
DevilishEggsNumbers,
[SouvenirQuestion("What was the {1} letter in the string of letters on {0}?", "Devilish Eggs", ThreeColumns6Answers, "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z",
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
DevilishEggsLetters,
[SouvenirQuestion("What was the number on the {1} button in {0}?", "Digisibility", ThreeColumns6Answers,
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
[AnswerGenerator.Integers(1, 9)]
DigisibilityDisplayedNumber,
[SouvenirQuestion("What was the initial number in {0}?", "Digit String", TwoColumns4Answers)]
[AnswerGenerator.Strings("1-9", "6*0-9", "1-9")]
DigitStringInitialNumber,
[SouvenirQuestion("Which of these was a visible character in {0}?", "Dimension Disruption", ThreeColumns6Answers)]
[AnswerGenerator.Strings("A-Z0-9")]
DimensionDisruptionVisibleLetters,
[SouvenirQuestion("How many times did you press the button in the {1} stage of {0}?", "Directional Button", TwoColumns4Answers, "1", "2", "3", "4",
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
DirectionalButtonButtonCount,
[SouvenirQuestion("What was {1}’s remembered position in {0}?", "Discolored Squares", ThreeColumns6Answers, Type = AnswerType.Sprites, TranslateFormatArgs = new[] { true },
ExampleFormatArguments = new[] { "Blue", "Red", "Yellow", "Green", "Magenta" }, ExampleFormatArgumentGroupSize = 1)]
[AnswerGenerator.Grid(4, 4)]
DiscoloredSquaresRememberedPositions,
[SouvenirQuestion("What was the missing information for the {1} key in {0}?", "Disordered Keys", OneColumn4Answers, "Key color", "Label color", "Label",
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1, TranslateAnswers = true)]
DisorderedKeysMissingInfo,
[SouvenirQuestion("What was the revealed key color for the {1} key in {0}?", "Disordered Keys", ThreeColumns6Answers, "Red", "Green", "Blue", "Cyan", "Magenta", "Yellow",
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1, TranslateAnswers = true)]
DisorderedKeysRevealedKeyColor,
[SouvenirQuestion("What was the revealed label for the {1} key in {0}?", "Disordered Keys", ThreeColumns6Answers,
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
[AnswerGenerator.Integers(1, 6)]
DisorderedKeysRevealedLabel,
[SouvenirQuestion("What was the revealed label color for the {1} key in {0}?", "Disordered Keys", ThreeColumns6Answers, "Red", "Green", "Blue", "Cyan", "Magenta", "Yellow",
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1, TranslateAnswers = true)]
DisorderedKeysRevealedLabelColor,
[SouvenirQuestion("What was the unrevealed key color for the {1} key in {0}?", "Disordered Keys", ThreeColumns6Answers, "Red", "Green", "Blue", "Cyan", "Magenta", "Yellow",
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1, TranslateAnswers = true)]
DisorderedKeysUnrevealedKeyColor,
[SouvenirQuestion("What was the unrevealed label for the {1} key in {0}?", "Disordered Keys", ThreeColumns6Answers,
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
[AnswerGenerator.Integers(1, 6)]
DisorderedKeysUnrevealedKeyLabel,
[SouvenirQuestion("What was the unrevealed label color for the {1} key in {0}?", "Disordered Keys", ThreeColumns6Answers, "Red", "Green", "Blue", "Cyan", "Magenta", "Yellow",
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1, TranslateAnswers = true)]
DisorderedKeysUnrevealedLabelColor,
[SouvenirQuestion("What was the {1} stage’s number in {0}?", "Divisible Numbers", ThreeColumns6Answers, null,
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
[AnswerGenerator.Integers(0, 9999)]
DivisibleNumbersNumbers,
[SouvenirQuestion("What jingle played in {0}?", "Doofenshmirtz Evil Inc.", OneColumn4Answers, Type = AnswerType.Audio, ForeignAudioID = "doofenshmirtzEvilIncModule", AudioSizeMultiplier = 8)]
DoofenshmirtzEvilIncJingles,
[SouvenirQuestion("Which image was shown in {0}?", "Doofenshmirtz Evil Inc.", ThreeColumns6Answers, Type = AnswerType.Sprites)]
DoofenshmirtzEvilIncInators,
[SouvenirQuestion("What was the starting position in {0}?", "Double Arrows", ThreeColumns6Answers)]
[AnswerGenerator.Integers(1, 81, "00")]
DoubleArrowsStart,
[SouvenirQuestion("Which {1} arrow moved {2} in the grid in {0}?", "Double Arrows", TwoColumns4Answers, "Up", "Right", "Left", "Down",
ExampleFormatArguments = new[] { "inner", "up", "outer", "up", "inner", "down", "outer", "down", "inner", "left", "outer", "left", "inner", "right", "outer", "right" }, TranslateAnswers = true, ExampleFormatArgumentGroupSize = 2, TranslateFormatArgs = new[] { true, true })]
DoubleArrowsArrow,
[SouvenirQuestion("Which direction in the grid did the {1} arrow move in {0}?", "Double Arrows", TwoColumns4Answers, "Up", "Right", "Left", "Down",
ExampleFormatArguments = new[] { "inner up", "inner down", "inner left", "inner right", "outer up", "outer down", "outer left", "outer right" }, TranslateAnswers = true, ExampleFormatArgumentGroupSize = 1, TranslateFormatArgs = new[] { true })]
DoubleArrowsMovement,
[SouvenirQuestion("What was the screen color on the {1} stage of {0}?", "Double Color", ThreeColumns6Answers, "Green", "Blue", "Red", "Pink", "Yellow", TranslateAnswers = true,
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
DoubleColorColors,
[SouvenirQuestion("What was the digit on the {1} display in {0}?", "Double Digits", ThreeColumns6Answers, "0", "1", "2", "3", "4", "5", "6", "7", "8", "9",
ExampleFormatArguments = new[] { "left", "right" }, ExampleFormatArgumentGroupSize = 1, TranslateFormatArgs = new[] { true })]
DoubleDigitsDisplays,
[SouvenirQuestion("What was the starting key number in {0}?", "Double Expert", ThreeColumns6Answers)]
[AnswerGenerator.Integers(30, 69)]
DoubleExpertStartingKeyNumber,
[SouvenirQuestion("What was the word you submitted in {0}?", "Double Expert", ThreeColumns6Answers, ExampleAnswers = new[] { "Echo", "November", "Rodeo", "Words", "Victor", "Zulu" })]
DoubleExpertSubmittedWord,
[SouvenirQuestion("What clip was played in {0}?", "Double Listening", ThreeColumns6Answers, Type = AnswerType.Audio, AudioFieldName = "ListeningAudio")]
DoubleListeningSounds,
[SouvenirQuestion("Which button was the submit button in {0}?", "Double-Oh", ThreeColumns6Answers, "↕", "⇕", "↔", "⇔", "◆")]
DoubleOhSubmitButton,
[SouvenirQuestion("What color was the {1} screen in the {2} stage of {0}?", "Double Screen", TwoColumns4Answers, "Red", "Yellow", "Green", "Blue", TranslateAnswers = true,
ExampleFormatArguments = new[] { "top", QandA.Ordinal, "bottom", QandA.Ordinal }, ExampleFormatArgumentGroupSize = 2, TranslateFormatArgs = new[] { true, false })]
DoubleScreenColors,
[SouvenirQuestion("Which of these symptoms was listed on {0}?", "Dr. Doctor", TwoColumns4Answers, "Bloating", "Chills", "Cold Hands", "Constipation", "Cough", "Diarrhea", "Disappearance of the Ears", "Dizziness", "Excessive Crying", "Fatigue", "Fever", "Foot swelling", "Gas", "Hallucination", "Headache", "Loss of Smell", "Muscle Cramp", "Nausea", "Numbness", "Shortness of Breath", "Sleepiness", "Thirstiness", "Throat irritation")]
DrDoctorSymptoms,
[SouvenirQuestion("Which of these diseases was listed on {0}, but not the one treated?", "Dr. Doctor", TwoColumns4Answers, "Alztimer’s", "Braintenance", "Color allergy", "Detonession", "Emojilepsy", "Foot and Morse", "Gout of Life", "HRV", "Indicitis", "Jaundry", "Keypad stones", "Legomania", "Microcontusion", "Narcolization", "OCd", "Piekinson’s", "Quackgrounds", "Royal Flu", "Seizure Siphor", "Tetrinus", "Urinary LEDs", "Verticode", "Widgeting", "XMAs", "Yes-no infection", "Zooties", "Chronic Talk", "Jukepox", "Neurolysis", "Perspective Loss", "Orientitis", "Huntington’s disease")]
DrDoctorDiseases,
[SouvenirQuestion("What was the decrypted word in {0}?", "Dreamcipher", OneColumn4Answers, ExampleAnswers = new[] { "asparagus", "demonstration", "fossilizing", "foursquare", "grinning", "jumpiness", "pasteboard", "prosecution", "sarcastic", "transition" })]
DreamcipherWord,
[SouvenirQuestion("What was the color of the curtain in {0}?", "Duck", TwoColumns4Answers, "blue", "yellow", "green", "orange", "red", AddThe = true, TranslateAnswers = true)]
DuckCurtainColor,
[SouvenirQuestion("Which player {1} present in {0}?", "Dumb Waiters", OneColumn4Answers, ExampleAnswers = new[] { "Arceus", "Danny7007", "EpicToast", "eXish", "Fang", "Makebao", "MCD573", "Mr. Peanut", "Mythers", "Xmaster" },
ExampleFormatArguments = new[] { "was", "was not" }, ExampleFormatArgumentGroupSize = 1, TranslateFormatArgs = new[] { true })]
DumbWaitersPlayerAvailable,
[SouvenirQuestion("What was the background in {0}?", "Earthbound", ThreeColumns6Answers, Type = AnswerType.Sprites)]
EarthboundBackground,
[SouvenirQuestion("Which monster was displayed in {0}?", "Earthbound", ThreeColumns6Answers, Type = AnswerType.Sprites)]
EarthboundMonster,
[SouvenirQuestion("What word was asked to be spelled in {0}?", "eeB gnillepS", TwoColumns4Answers, ExampleAnswers = new[] { "odontalgia", "precocious", "privilege", "prospicience" })]
eeBgnillepSWord,
[SouvenirQuestion("What was the last digit on the small display in {0}?", "Eight", ThreeColumns6Answers)]
[AnswerGenerator.Integers(0, 9)]
EightLastSmallDisplayDigit,
[SouvenirQuestion("What was the position of the last broken digit in {0}?", "Eight", ThreeColumns6Answers)]
[AnswerGenerator.Integers(1, 8)]
EightLastBrokenDigitPosition,
[SouvenirQuestion("What were the last resulting digits in {0}?", "Eight", ThreeColumns6Answers)]
[AnswerGenerator.Integers(50, 99)]
EightLastResultingDigits,
[SouvenirQuestion("What was the last displayed number in {0}?", "Eight", ThreeColumns6Answers)]
[AnswerGenerator.Integers(10, 99)]
EightLastDisplayedNumber,
[SouvenirQuestion("What was the {1} rune shown on {0}?", "Elder Futhark", TwoColumns4Answers, "Algiz", "Ansuz", "Berkana", "Dagaz", "Ehwaz", "Eihwaz", "Fehu", "Gebo", "Hagalaz", "Isa", "Jera", "Kenaz", "Laguz", "Mannaz", "Nauthiz", "Othila", "Perthro", "Raido", "Sowulo", "Teiwaz", "Thurisaz", "Uruz", "Wunjo",
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
ElderFutharkRunes,
[SouvenirQuestion("What was the {1} emoji in {0}?", "Emoji", ThreeColumns6Answers, Type = AnswerType.Sprites,
ExampleFormatArguments = new[] { "left", "right" }, ExampleFormatArgumentGroupSize = 1, TranslateFormatArgs = new[] { true })]
EmojiEmoji,
[SouvenirQuestion("What was the {1} keyword in {0}?", "ENA Cipher", TwoColumns4Answers, ExampleAnswers = new[] { "AMBUSH", "BANZAI", "BIGGER", "GAMBLE", "KETOSE", "OCULUS", "SCRAMS", "SENSOR", "YEANED", "YOUTHS" },
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
EnaCipherKeywordAnswer,
[SouvenirQuestion("What was the transposition key in {0}?", "ENA Cipher", TwoColumns4Answers)]
[AnswerGenerator.Strings(6, "123456")]
EnaCipherExtAnswer,
[SouvenirQuestion("What was the encrypted word in {0}?", "ENA Cipher", TwoColumns4Answers)]
[AnswerGenerator.Strings(6, "ABCDEFGHIJKLMNOPQRSTUVWXYZ")]
EnaCipherEncryptedAnswer,
[SouvenirQuestion("Which of these numbers appeared on a die in the {1} stage of {0}?", "Encrypted Dice", TwoColumns4Answers,
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
[AnswerGenerator.Integers(1, 6)]
EncryptedDice,
[SouvenirQuestion("Which shape was the {1} operand in {0}?", "Encrypted Equations", ThreeColumns6Answers, Type = AnswerType.Sprites, SpriteFieldName = "EncryptedEquationsSprites",
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
EncryptedEquationsShapes,
[SouvenirQuestion("What method of encryption was used by {0}?", "Encrypted Hangman", OneColumn4Answers, "Caesar Cipher", "Atbash Cipher", "Rot-13 Cipher", "Affine Cipher", "Modern Cipher", "Vigenère Cipher", "Playfair Cipher", TranslateAnswers = true)]
EncryptedHangmanEncryptionMethod,
[SouvenirQuestion("What module name was encrypted by {0}?", "Encrypted Hangman", OneColumn4Answers, ExampleAnswers = new[] { "Anagrams", "Word Scramble", "Two Bits", "Switches", "Lights Out", "Emoji Math", "Math", "Semaphore", "Piano Keys", "Colour Flash" })]
EncryptedHangmanModule,
[SouvenirQuestion("Which symbol on {0} was spinning {1}?", "Encrypted Maze", ThreeColumns6Answers, "f", "H", "$", "l", "B", "N", "g", "I", "%", "m", "C", "O", "h", "J", "&", "n", "D", "P", "i", "K", "'", "o", "E", "Q", "j", "L", "(", "p", "F", "R",
Type = AnswerType.DynamicFont, ExampleFormatArguments = new[] { "clockwise", "counter-clockwise" }, ExampleFormatArgumentGroupSize = 1, TranslateFormatArgs = new[] { true })]
EncryptedMazeSymbols,
[SouvenirQuestion("What was the {1} on {0}?", "Encrypted Morse", TwoColumns4Answers, ExampleAnswers = new[] { "Detonate", "Ready Now", "Please No", "Cheesecake" },
ExampleFormatArguments = new[] { "received call", "sent response" }, ExampleFormatArgumentGroupSize = 1, TranslateFormatArgs = new[] { true })]
EncryptedMorseCallResponse,
[SouvenirQuestion("What was the first encoding used in {0}?", "Encryption Bingo", OneColumn4Answers, "Morse Code", "Tap Code", "Maritime Flags", "Semaphore", "Pigpen", "Lombax", "Braille", "Wingdings", "Zoni", "Galatic Alphabet", "Arrow", "Listening", "Regular Number", "Chinese Number", "Cube Symbols", "Runes", "New York Point", "Fontana", "ASCII Hex Code", TranslateAnswers = true)]
EncryptionBingoEncoding,
[SouvenirQuestion("What was the {1} in {0}?", "Enigma Cycle", TwoColumns4Answers, ExampleAnswers = new[] { "ABNORMAL", "AUTHORED", "BACKDOOR", "BOULDERS", "CHANGING", "CUMBERED", "DEBUGGED", "DODGIEST", "EDITABLE", "EXCESSES", "FAIRYISM", "FRAGMENT", "GIBBERED", "GROANING", "HEADACHE", "HUDDLING", "ILLUSORY", "IRONICAL", "JOKINGLY", "JUDGMENT", "KEYNOTES", "KINDLING", "LIKENESS", "LOCKOUTS", "MOBILITY", "MUFFLING", "NEUTRALS", "NOTIONAL", "OFFTRACK", "ORDERING", "PHANTASM", "PROVOKED", "QUITTERS", "QUOTABLE", "RHETORIC", "ROULETTE", "SHUTDOWN", "SUBLIMES", "TARTNESS", "TYPHONIC", "UNPURGED", "UGLINESS", "VARIANCE", "VOLATILE", "WACKIEST", "WORKFLOW", "XENOLITH", "XANTHENE", "YABBERED", "YOURSELF", "ZAPPIEST", "ZILLIONS" },
ExampleFormatArguments = new[] { "message", "response" }, ExampleFormatArgumentGroupSize = 1, TranslateFormatArgs = new[] { true })]
EnigmaCycleWords,
[SouvenirQuestion("What was the {1} number shown in {0}?", "Entry Number Four", TwoColumns4Answers, ExampleAnswers = new[] { "01234567", "42424242", "99999999", "66669420" },
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
[AnswerGenerator.Integers(10000000, 99999999, 1, "00000000")]
EntryNumberFourNumbers,
[SouvenirQuestion("What was the expected fourth entry in {0}?", "Entry Number Four", TwoColumns4Answers, ExampleAnswers = new[] { "01234567", "42424242", "99999999", "66669420" })]
[AnswerGenerator.Integers(0, 99999999, 1, "00000000")]
EntryNumberFourExpected,
[SouvenirQuestion("What was the constant coefficient in {0}?", "Entry Number Four", TwoColumns4Answers, ExampleAnswers = new[] { "01234567", "42424242", "99999999", "66669420" })]
[AnswerGenerator.Integers(10000000, 99999999, 1, "00000000")]
EntryNumberFourCoeff,
[SouvenirQuestion("What was the {1} number shown in {0}?", "Entry Number One", TwoColumns4Answers, ExampleAnswers = new[] { "01234567", "42424242", "99999999", "66669420" },
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
[AnswerGenerator.Integers(0, 99999999, 1, "00000000")]
EntryNumberOneNumbers,
[SouvenirQuestion("What was the expected first entry in {0}?", "Entry Number One", TwoColumns4Answers, ExampleAnswers = new[] { "01234567", "42424242", "99999999", "66669420" })]
[AnswerGenerator.Integers(10000000, 99999999, 1, "00000000")]
EntryNumberOneExpected,
[SouvenirQuestion("What was the constant coefficient in {0}?", "Entry Number One", TwoColumns4Answers, ExampleAnswers = new[] { "01234567", "42424242", "99999999", "66669420" })]
[AnswerGenerator.Integers(10000000, 99999999, 1, "00000000")]
EntryNumberOneCoeff,
[SouvenirQuestion("What word was asked to be spelled in {0}?", "Épelle-moi Ça", TwoColumns4Answers, ExampleAnswers = new[] { "abasourdi", "aberrant", "abrasive", "acatalectique", "accueil", "acrobatie", "aligot", "amphigourique", "analgésiante", "antipasti" })]
EpelleMoiCaWord,
[SouvenirQuestion("What was the displayed symbol in {0}?", "Equations X", ThreeColumns6Answers, "H(T)", "P", "\u03C7", "\u03C9", "Z(T)", "\u03C4", "\u03BC", "\u03B1", "K")]
EquationsXSymbols,
[SouvenirQuestion("What was the active error code in {0}?", "Error Codes", ThreeColumns6Answers)]
[AnswerGenerator.Integers(0, 101, 1, "X2")]
ErrorCodesActiveError,
[SouvenirQuestion("What was the beat for the {1} arrow from the bottom in {0}?", "Etterna", ThreeColumns6Answers,
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
[AnswerGenerator.Integers(1, 32)]
EtternaNumber,
[SouvenirQuestion("What was the starting target planet in {0}?", "Exoplanets", TwoColumns4Answers, "outer", "middle", "inner", "none", TranslateAnswers = true)]
ExoplanetsStartingTargetPlanet,
[SouvenirQuestion("What was the starting target digit in {0}?", "Exoplanets", ThreeColumns6Answers, "0", "1", "2", "3", "4", "5", "6", "7", "8", "9")]
ExoplanetsStartingTargetDigit,
[SouvenirQuestion("What was the final target planet in {0}?", "Exoplanets", TwoColumns4Answers, "outer", "middle", "inner", "none", TranslateAnswers = true)]
ExoplanetsTargetPlanet,
[SouvenirQuestion("What was the final target digit in {0}?", "Exoplanets", ThreeColumns6Answers, "0", "1", "2", "3", "4", "5", "6", "7", "8", "9")]
ExoplanetsTargetDigit,
[SouvenirQuestion("What was one of the prime numbers chosen in {0}?", "Factoring Maze", ThreeColumns6Answers, "2", "3", "5", "7", "11", "13", "17", "19", "23", "29")]
FactoringMazeChosenPrimes,
[SouvenirQuestion("What room did you start in in {0}?", "Factory Maze", OneColumn4Answers, "Bathroom", "Assembly Line", "Cafeteria", "Room A9", "Broom Closet", "Basement", "Copy Room", "Unnecessarily Long-Named Room", "Library", "Break Room", "Empty Room with Two Doors", "Arcade", "Classroom", "Module Testing Room", "Music Studio", "Computer Room", "Infirmary", "Bomb Room", "Space", "Storage Room", "Lounge", "Conference Room", "Kitchen", "Incinerator")]
FactoryMazeStartRoom,
[SouvenirQuestion("What was the last pair of letters in {0}?", "Fast Math", ThreeColumns6Answers, ExampleAnswers = new[] { "CT", "DK", "SA", "SG", "SX", "TX", "TZ", "XP", "XX", "ZB" })]
FastMathLastLetters,
[SouvenirQuestion("Which button referred to the {1} button in reading order in {0}?", "Faulty Buttons", ThreeColumns6Answers, Type = AnswerType.Sprites, ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
[AnswerGenerator.Grid(4, 4)]
FaultyButtonsReferredToThisButton,
[SouvenirQuestion("Which button did the {1} button in reading order refer to in {0}?", "Faulty Buttons", ThreeColumns6Answers, Type = AnswerType.Sprites, ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
[AnswerGenerator.Grid(4, 4)]
FaultyButtonsThisButtonReferredTo,
[SouvenirQuestion("What was the exit coordinate in {0}?", "Faulty RGB Maze", ThreeColumns6Answers)]
[AnswerGenerator.Strings("A-G", "1-7")]
FaultyRGBMazeExit,
[SouvenirQuestion("Where was the {1} key in {0}?", "Faulty RGB Maze", ThreeColumns6Answers, TranslateFormatArgs = new[] { true },
ExampleFormatArguments = new[] { "red", "green", "blue" }, ExampleFormatArgumentGroupSize = 1)]
[AnswerGenerator.Strings("A-G", "1-7")]
FaultyRGBMazeKeys,
[SouvenirQuestion("Which maze number was the {1} maze in {0}?", "Faulty RGB Maze", ThreeColumns6Answers, TranslateFormatArgs = new[] { true },
ExampleFormatArguments = new[] { "red", "green", "blue" }, ExampleFormatArgumentGroupSize = 1)]
[AnswerGenerator.Strings("0-9a-f")]
FaultyRGBMazeNumber,
[SouvenirQuestion("What was the day displayed in the {1} stage of {0}?", "Find The Date", ThreeColumns6Answers,
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
[AnswerGenerator.Integers(0, 31)]
FindTheDateDay,
[SouvenirQuestion("What was the month displayed in the {1} stage of {0}?", "Find The Date", TwoColumns4Answers, "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December",
ExampleFormatArguments = new[] { QandA.Ordinal }, ExampleFormatArgumentGroupSize = 1)]
FindTheDateMonth,
[SouvenirQuestion("What was the year displayed in the {1} stage of {0}?", "Find The Date", ThreeColumns6Answers,