-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path013.lyx
2449 lines (2044 loc) · 55.8 KB
/
013.lyx
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
#LyX 2.1 created this file. For more info see http://www.lyx.org/
\lyxformat 474
\begin_document
\begin_header
\textclass memoir
\use_default_options true
\master hpmor_volume1_16x23.lyx
\begin_modules
initials
\end_modules
\maintain_unincluded_children false
\language english
\language_package default
\inputencoding auto
\fontencoding global
\font_roman times
\font_sans default
\font_typewriter default
\font_math auto
\font_default_family default
\use_non_tex_fonts false
\font_sc false
\font_osf false
\font_sf_scale 100
\font_tt_scale 100
\graphics default
\default_output_format default
\output_sync 0
\bibtex_command default
\index_command default
\paperfontsize 11
\spacing single
\use_hyperref false
\papersize custom
\use_geometry true
\use_package amsmath 1
\use_package amssymb 1
\use_package cancel 1
\use_package esint 1
\use_package mathdots 1
\use_package mathtools 1
\use_package mhchem 1
\use_package stackrel 1
\use_package stmaryrd 1
\use_package undertilde 1
\cite_engine basic
\cite_engine_type default
\biblio_style plain
\use_bibtopic false
\use_indices false
\paperorientation portrait
\suppress_date true
\justification true
\use_refstyle 1
\index Index
\shortcut idx
\color #008000
\end_index
\paperwidth 8.25in
\paperheight 10.75in
\leftmargin 0.5in
\topmargin 0.875in
\rightmargin 0.625in
\bottommargin 0.875in
\secnumdepth 3
\tocdepth 3
\paragraph_separation indent
\paragraph_indentation default
\quotes_language english
\papercolumns 2
\papersides 2
\paperpagestyle default
\tracking_changes false
\output_changes false
\html_math_output 0
\html_css_as_file 0
\html_be_strict false
\end_header
\begin_body
\begin_layout Chapter
Asking the Wrong Questions
\end_layout
\begin_layout Initial
\begin_inset Argument 2
status open
\begin_layout Plain Layout
A
\end_layout
\end_inset
\begin_inset Argument 3
status open
\begin_layout Plain Layout
s
\end_layout
\end_inset
soon as Harry opened his eyes in the Ravenclaw first-year boys' dormitory,
on the morning of his first full day at Hogwarts, he knew something was
wrong.
\end_layout
\begin_layout Standard
It was quiet.
\end_layout
\begin_layout Standard
\emph on
Too
\emph default
quiet.
\end_layout
\begin_layout Standard
Oh, right… There was a Quietus Charm on his bed's headboard, controlled
by a small slider bar, which was the only reason it was ever possible for
anyone to go to sleep in Ravenclaw.
\end_layout
\begin_layout Standard
Harry sat up and looked around, expecting to see others rising for the day
\begin_inset space ~
\end_inset
--
\end_layout
\begin_layout Standard
The dorm, empty.
\end_layout
\begin_layout Standard
The beds, rumpled and unmade.
\end_layout
\begin_layout Standard
The sun, coming in at a rather high angle.
\end_layout
\begin_layout Standard
His Quieter turned all the way up to maximum.
\end_layout
\begin_layout Standard
And his mechanical alarm clock was still running, but the alarm was turned
off.
\end_layout
\begin_layout Standard
He'd been allowed to sleep until 9:52
\begin_inset space ~
\end_inset
am, apparently.
Despite his best efforts to synchronize his 26-hour sleep cycle to his
arrival at Hogwarts, he hadn't gotten to sleep last night until around
1
\begin_inset space ~
\end_inset
am.
He'd been planning to wake up at 7:00
\begin_inset space ~
\end_inset
am with the other students, he could stand being a little sleep-deprived
his first day so long as he got some sort of magical fix before tomorrow.
But now he'd missed breakfast.
And his very first class at Hogwarts, in Herbology, had started one hour
and twenty-two minutes ago.
\end_layout
\begin_layout Standard
The anger was slowly, slowly wakening in him.
Oh, what a nice little prank.
Turn off his alarm.
Turn up the Quieter.
And let Mr.
\begin_inset ERT
status open
\begin_layout Plain Layout
\backslash
\end_layout
\end_inset
Bigshot Harry Potter miss his first class, and be blamed for being a heavy
sleeper.
\end_layout
\begin_layout Standard
When Harry found out who'd done this…
\end_layout
\begin_layout Standard
No, this could only have been done with the cooperation of all twelve other
boys in the Ravenclaw dorm.
All of them would have seen his sleeping form.
All of them had let him sleep through breakfast.
\end_layout
\begin_layout Standard
The anger drained away, replaced by confusion and a horribly wounded feeling.
They'd
\emph on
liked
\emph default
him.
He'd thought.
Last night, he'd thought they liked him.
\emph on
Why…
\end_layout
\begin_layout Standard
As Harry stepped out of the bed, he saw a piece of paper facing out from
his headboard.
\end_layout
\begin_layout Standard
The paper said,
\end_layout
\begin_layout Quote
\emph on
My fellow Ravenclaws,
\end_layout
\begin_layout Quote
\emph on
It's been an extra long day.
Please let me sleep in and don't worry about my missing breakfast.
I haven't forgotten about my first class.
\end_layout
\begin_layout Quote
\emph on
Yours,
\end_layout
\begin_layout Quote
\emph on
Harry Potter.
\end_layout
\begin_layout Standard
And Harry stood there, frozen, ice water beginning to trickle through his
veins.
\end_layout
\begin_layout Standard
The paper was in his own handwriting, in his own mechanical pencil.
\end_layout
\begin_layout Standard
And he didn't remember writing it.
\end_layout
\begin_layout Standard
And… Harry squinted at the piece of paper.
And unless he was imagining it, the words “I haven't forgotten” were written
in a different style, as if he was trying to tell himself something…?
\end_layout
\begin_layout Standard
Had he
\emph on
known
\emph default
he was going to be Obliviated? Had he stayed up late, committed some sort
of crime or covert activity, and then… but he didn't
\emph on
know
\emph default
the Obliviate spell… had someone else… what…
\end_layout
\begin_layout Standard
A thought occurred to Harry.
If he
\emph on
had
\emph default
known he was going to be Obliviated…
\end_layout
\begin_layout Standard
Still in his pyjamas, Harry ran around his bed to his trunk, pressed his
thumb against the lock, pulled out his pouch, stuck in his hand and said
“Note to myself.”
\end_layout
\begin_layout Standard
And another piece of paper popped into his hand.
\end_layout
\begin_layout Standard
Harry took it out, staring at it.
It too was in his own handwriting.
\end_layout
\begin_layout Standard
The note said:
\end_layout
\begin_layout Quote
\emph on
Dear Me,
\end_layout
\begin_layout Quote
\emph on
Please play the game.
You can only play the game once in a lifetime.
This is an irreplaceable opportunity.
\end_layout
\begin_layout Quote
\emph on
Recognition code 927, I am a potato.
\end_layout
\begin_layout Quote
\emph on
Yours,
\end_layout
\begin_layout Quote
\emph on
You.
\end_layout
\begin_layout Standard
Harry nodded slowly.
“Recognition code 927, I am a potato” was indeed the message he had worked
out in advance — some years earlier, while watching TV — that only he would
know.
If he had to identify a duplicate of himself as being really
\emph on
him,
\emph default
or something.
Just in case.
Be Prepared.
\end_layout
\begin_layout Standard
Harry couldn't
\emph on
trust
\emph default
the message, there might be other spells involved.
But it ruled out any simple prank.
He had definitely written this and he definitely didn't remember writing
it.
\end_layout
\begin_layout Standard
Staring at the paper, Harry became aware of ink showing through from the
other side.
\end_layout
\begin_layout Standard
He flipped it over.
\end_layout
\begin_layout Standard
The reverse side read:
\end_layout
\begin_layout Standard
\align center
INSTRUCTIONS FOR THE GAME:
\end_layout
\begin_layout Standard
\align center
you do not know the rules of the game
\begin_inset Newline newline
\end_inset
you do not know the stakes of the game
\begin_inset Newline newline
\end_inset
you do not know the objective of the game
\begin_inset Newline newline
\end_inset
you do not know who controls the game
\begin_inset Newline newline
\end_inset
you do not know how to end the game
\end_layout
\begin_layout Standard
\align center
You start with 100 points.
\begin_inset Newline newline
\end_inset
Begin.
\end_layout
\begin_layout Standard
Harry stared at the “instructions”.
This side wasn't handwritten; the writing was perfectly regular, hence
artificial.
It looked as if it had been inscribed by a Quotes Quill, such as the one
he'd bought to take dictation.
\end_layout
\begin_layout Standard
He had
\emph on
absolutely no clue
\emph default
what was going on.
\end_layout
\begin_layout Standard
Well… step one was to get dressed and eat.
Maybe reverse the order of that.
His stomach felt rather empty.
\end_layout
\begin_layout Standard
He'd missed breakfast, of course, but he was Prepared for that eventuality,
having visualised it in advance.
Harry put his hand into his pouch and said “Snack bars”, expecting to get
the box of cereal bars he'd bought before departing for Hogwarts.
\end_layout
\begin_layout Standard
What popped up did not feel like a box of cereal bars.
\end_layout
\begin_layout Standard
When Harry brought his hand into his field of vision he saw two tiny candy
bars — not nearly enough for a meal — attached to a note, and the note
was inscribed in the same writing as the game instructions.
\end_layout
\begin_layout Standard
The note said:
\end_layout
\begin_layout Standard
\align center
\begin_inset Box Frameless
position "t"
hor_pos "c"
has_inner_box 1
inner_pos "t"
use_parbox 0
use_makebox 0
width "80col%"
special "none"
height "1in"
height_special "totalheight"
status open
\begin_layout Plain Layout
ATTEMPT FAILED: -1 POINT
\begin_inset Newline newline
\end_inset
CURRENT POINTS: 99
\begin_inset Newline newline
\end_inset
PHYSICAL STATE: STILL HUNGRY
\begin_inset Newline newline
\end_inset
MENTAL STATE: CONFUSED
\end_layout
\end_inset
\end_layout
\begin_layout Standard
“Gleehhhhh” Harry's mouth said without any sort of conscious intervention
or decision on his part.
\end_layout
\begin_layout Standard
He stood there for around a minute.
\end_layout
\begin_layout Standard
One minute later, it
\emph on
still
\emph default
didn't make any sense and he
\emph on
still
\emph default
had absolutely no idea what was going on and his brain hadn't even
\emph on
begun
\emph default
to grasp at any
\emph on
hypotheses
\emph default
like his mental hands were encased in rubber balls and couldn't pick anything
up.
\end_layout
\begin_layout Standard
His stomach, which had its own priorities, suggested a possible experimental
probe.
\end_layout
\begin_layout Standard
“Ah…” Harry said to the empty room.
“I don't suppose I could spend a point and get my box of cereal bars back?”
\end_layout
\begin_layout Standard
There was only silence.
\end_layout
\begin_layout Standard
Harry put his hand into the pouch and said “Box of cereal bars.”
\end_layout
\begin_layout Standard
A box that felt like the right shape popped up into his hand… but it was
too light, and it was open, and it was empty, and the note attached to
it said:
\end_layout
\begin_layout Standard
\align center
\begin_inset Box Frameless
position "t"
hor_pos "c"
has_inner_box 1
inner_pos "t"
use_parbox 0
use_makebox 0
width "80col%"
special "none"
height "1in"
height_special "totalheight"
status open
\begin_layout Plain Layout
POINTS SPENT: 1
\begin_inset Newline newline
\end_inset
CURRENT POINTS: 98
\begin_inset Newline newline
\end_inset
YOU HAVE GAINED: A BOX OF CEREAL BARS
\end_layout
\end_inset
\end_layout
\begin_layout Standard
“I'd like to spend one point and get the
\emph on
actual cereal bars
\emph default
back,” said Harry.
\end_layout
\begin_layout Standard
Again, silence.
\end_layout
\begin_layout Standard
Harry put his hand into the pouch and said “cereal bars”.
\end_layout
\begin_layout Standard
Nothing came up.
\end_layout
\begin_layout Standard
Harry shrugged despairingly and went over to the cabinet he'd been given
near his bed, to get his wizard's robes for the day.
\end_layout
\begin_layout Standard
On the floor of the cabinet, under his robes, were the cereal bars, and
a note:
\end_layout
\begin_layout Standard
\align center
\begin_inset Box Frameless
position "t"
hor_pos "c"
has_inner_box 1
inner_pos "t"
use_parbox 0
use_makebox 0
width "80col%"
special "none"
height "1in"
height_special "totalheight"
status open
\begin_layout Plain Layout
POINTS SPENT: 1
\begin_inset Newline newline
\end_inset
CURRENT POINTS: 97
\begin_inset Newline newline
\end_inset
YOU HAVE GAINED: 6 CEREAL BARS
\begin_inset Newline newline
\end_inset
YOU ARE STILL WEARING: PYJAMAS
\begin_inset Newline newline
\end_inset
DO NOT EAT WHILE YOU ARE WEARING YOUR PYJAMAS
\begin_inset Newline newline
\end_inset
YOU WILL GET A PYJAMA PENALTY
\end_layout
\end_inset
\end_layout
\begin_layout Standard
\emph on
And now I know that whoever controls the game is insane.
\end_layout
\begin_layout Standard
“My guess is that the game is controlled by Dumbledore,” Harry said out
loud.
Maybe
\emph on
this
\emph default
time he could set a new land speed record for being quick on the uptake.
\end_layout
\begin_layout Standard
Silence.
\end_layout
\begin_layout Standard
But Harry was starting to pick up the pattern; the note would be in the
next place he looked.
So Harry looked under his bed.
\end_layout
\begin_layout Standard
\align center
\begin_inset Box Frameless
position "t"
hor_pos "c"
has_inner_box 1
inner_pos "t"
use_parbox 0
use_makebox 0
width "80col%"
special "none"
height "1in"
height_special "totalheight"
status open
\begin_layout Plain Layout
HA! HA HA HA HA HA!
\begin_inset Newline newline
\end_inset
HA HA HA HA HA HA!
\begin_inset Newline newline
\end_inset
HA! HA! HA! HA! HA! HA!
\begin_inset Newline newline
\end_inset
DUMBLEDORE DOES NOT CONTROL THE GAME
\begin_inset Newline newline
\end_inset
BAD GUESS
\begin_inset Newline newline
\end_inset
VERY BAD GUESS
\begin_inset Newline newline
\end_inset
-20 POINTS
\begin_inset Newline newline
\end_inset
AND YOU ARE STILL WEARING PYJAMAS
\begin_inset Newline newline
\end_inset
IT IS YOUR FOURTH MOVE
\begin_inset Newline newline
\end_inset
AND YOU ARE STILL WEARING PYJAMAS
\begin_inset Newline newline
\end_inset
PYJAMA PENALTY: -2 POINTS
\begin_inset Newline newline
\end_inset
CURRENT POINTS: 75
\end_layout
\end_inset
\end_layout
\begin_layout Standard
Welp, that was a puzzler, all right.
It was only his first day at school and once you ruled out Dumbledore,
he didn't know the name of anyone else here who was this crazy.
\end_layout
\begin_layout Standard
His body more or less on autopilot, Harry gathered up a set of robes and
underwear, pulled out the cavern level of his trunk (he was a very private
sort of person and someone might walk into the dorm), got dressed, and
then went back upstairs to put away his pyjamas.
\end_layout
\begin_layout Standard
Harry paused before pulling out the cabinet drawer that held his pyjamas.
If the pattern here held true…
\end_layout
\begin_layout Standard
“How can I earn more points?” Harry said out loud.
\end_layout
\begin_layout Standard
Then he pulled out the drawer.
\end_layout
\begin_layout Standard
\align center
\begin_inset Box Frameless
position "t"
hor_pos "c"
has_inner_box 1
inner_pos "t"
use_parbox 0
use_makebox 0
width "80col%"
special "none"
height "1in"
height_special "totalheight"
status open
\begin_layout Plain Layout
OPPORTUNITIES TO DO GOOD ARE EVERYWHERE
\begin_inset Newline newline
\end_inset
BUT DARKNESS IS WHERE THE LIGHT NEEDS TO BE
\begin_inset Newline newline
\end_inset
COST OF QUESTION: 1 POINT
\begin_inset Newline newline
\end_inset
CURRENT POINTS: 74
\begin_inset Newline newline
\end_inset
NICE UNDERWEAR
\begin_inset Newline newline
\end_inset
DID YOUR MOTHER PICK THEM OUT?
\end_layout
\end_inset
\end_layout
\begin_layout Standard
Harry crushed the note in his hand, face flaming scarlet.
Draco's curse came back to him.
\emph on
Son of a mudblood —
\end_layout
\begin_layout Standard
At this point he knew better than to say it out loud.
He would probably get a Profanity Penalty.
\end_layout
\begin_layout Standard
Harry girded himself with his mokeskin pouch and wand.
He peeled off the wrapper of one his cereal bars and threw it into the
room's rubbish bin, where it landed atop a mostly-uneaten Chocolate Frog,
a crumpled envelope and some green and red wrapping paper.
He put the other cereal bars into his mokeskin pouch.
\end_layout
\begin_layout Standard
He looked around in a final, desperate, and ultimately futile search for
clues.
\end_layout
\begin_layout Standard
And then Harry left the dorm, eating as he went, in search of the Slytherin
dungeons.
At least that was what he
\emph on
thought
\emph default
the line was about.
\end_layout
\begin_layout Standard
Trying to navigate the halls of Hogwarts was like… probably
\emph on
not
\emph default
quite as bad as wandering around inside an Escher painting, that was the
sort of thing you said for rhetorical effect rather than for its being
true.
\end_layout
\begin_layout Standard
A short time later, Harry was thinking that in fact an Escher painting would
have both pluses and minuses compared to Hogwarts.
Minuses: No consistent gravitational orientation.
Pluses: At least the stairs wouldn't move around
\emph on
WHILE YOU WERE STILL ON THEM.
\end_layout
\begin_layout Standard
Harry had originally climbed four flights of stairs to get to his dorm.
After clambering down no fewer than twelve flights of stairs without getting
anywhere near the dungeons, Harry had concluded that (1) an Escher painting
would be a
\emph on
cakewalk
\emph default
by comparison, (2) he was somehow
\emph on
higher
\emph default
in the castle than when he'd started, and (3) he was so
\emph on
thoroughly
\emph default
lost that he wouldn't have been surprised to look out of the next window
and see two moons in the sky.
\end_layout
\begin_layout Standard
Backup plan A had been to stop and ask for directions, but there seemed
to be an extreme lack of people wandering around, as if the beggars were
all attending class the way they were supposed to or something.
\end_layout
\begin_layout Standard
Backup plan B…
\end_layout
\begin_layout Standard
“I'm lost,” Harry said out loud.
“Can, um, the spirit of the Hogwarts castle help me or something?”
\end_layout
\begin_layout Standard
“I don't think this castle has a spirit,” observed a wizened old lady in
one of the paintings on the walls.
“Life, perhaps, but not spirit.”
\end_layout
\begin_layout Standard
There was a brief pause.
\end_layout
\begin_layout Standard
“Are you —” Harry said, and then shut his mouth.
On second thought, no he was NOT going to ask the painting whether it was
fully conscious in the sense of being aware of its own awareness.
\end_layout
\begin_layout Standard
“I'm Harry Potter,” said his mouth, more or less on autopilot.
Also more or less automatically, Harry stuck out a hand towards the painting.
\end_layout
\begin_layout Standard
The woman in the painting looked down at Harry's hand and raised her eyebrows.
\end_layout
\begin_layout Standard
Slowly, the hand dropped back to Harry's side.
\end_layout
\begin_layout Standard
“Sorry,” Harry said, “I'm sort of new here.”
\end_layout
\begin_layout Standard
“So I perceive, young raven.
Where are you trying to go?”
\end_layout
\begin_layout Standard
Harry hesitated.
“I'm not really sure,” he said.
\end_layout
\begin_layout Standard
“Then perhaps you are already there.”
\end_layout
\begin_layout Standard
“Well, wherever I
\emph on
am
\emph default
trying to go, I don't think
\emph on
this
\emph default
is it…” Harry shut his mouth, aware of just how much he was sounding like
an idiot.
“Let me start over.
I'm playing this game only I don't know what the rules are —” That didn't
really work either, did it.
“Okay, third try.
I'm looking for opportunities to do good so I can score points, and all
I have is this cryptic hint about how darkness is where the light needs
to be, so I was trying to go down but I seem to keep going up instead…”
\end_layout
\begin_layout Standard
The old lady in the painting was looking at him rather sceptically.
\end_layout
\begin_layout Standard
Harry sighed.
“My life tends to get a bit peculiar.”
\end_layout
\begin_layout Standard
“Would it be fair to say that you don't know where you're going or why you're
trying to get there?”