-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoriginaltext.txt
3383 lines (3383 loc) · 997 KB
/
originaltext.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{0} I[73] [32]d[100]o[111]n[110]'[39]t[116] [32]m[109]e[101]a[97]n[110] [32]t[116]o[111] [32]p[112]l[108]e[101]a[97]s[115]e[101] [32]g[103]r[114]a[97]n[110]d[100] [32]p[112]e[101]o[111]p[112]l[108]e[101].[46]
{1} W[87]i[105]t[116]h[104] [32]l[108]o[111]v[118]e[101] [32]f[102]r[114]i[105]e[101]n[110]d[100]s[115]'[39] [32]n[110]o[111]t[116]i[105]o[111]n[110]s[115] [32]I[73]'[39]d[100] [32]r[114]a[97]t[116]e[101]
{2} A[65]n[110]d[100] [32]g[103]i[105]v[118]e[101] [32]y[121]o[111]u[117] [32]a[97]l[108]l[108] [32]t[116]h[104]a[97]t[116] [32]1[49] [32]c[99]o[111]u[117]l[108]d[100] [32]s[115]c[99]r[114]i[105]b[98]b[98]l[108]e[101]
{3} A[65]s[115] [32]p[112]a[97]w[119]n[110] [32]t[116]h[104]a[97]t[116]'[39]s[115] [32]w[119]o[111]r[114]t[116]h[104] [32]o[111]f[102] [32]d[100]e[101]a[97]r[114] [32]m[109]a[97]t[116]e[101].[46]
{4} I[73]t[116]s[115] [32]w[119]o[111]r[114]t[116]h[104] [32]o[111]f[102] [32]f[102]i[105]n[110]e[101] [32]a[97]n[110]d[100] [32]c[99]h[104]a[97]r[114]m[109]i[105]n[110]g[103] [32]s[115]o[111]u[117]l[108],[44]
{5} O[79]f[102] [32]s[115]a[97]i[105]n[110]t[116] [32]f[102]u[117]l[108]f[102]i[105]l[108]l[108]e[101]d[100] [32]g[103]e[101]n[110]e[101]r[114]o[111]u[117]s[115] [32]d[100]r[114]e[101]a[97]m[109]s[115],[44]
{6} O[79]f[102] [32]l[108]i[105]v[118]e[101]l[108]y[121] [32]l[108]u[117]c[99]i[105]d[100] [32]v[118]e[101]r[114]s[115]e[101]'[39]s[115] [32]g[103]l[108]o[111]w[119],[44]
{7} O[79]f[102] [32]l[108]o[111]f[102]t[116]y[121] [32]t[116]h[104]o[111]u[117]g[103]h[104]t[116]s[115],[44] [32]o[111]f[102] [32]s[115]i[105]m[109]p[112]l[108]e[101] [32]t[116]h[104]i[105]n[110]g[103]s[115].[46]
{8} A[65]l[108]l[108] [32]r[114]i[105]g[103]h[104]t[116],[44] [32]b[98]y[121] [32]h[104]a[97]n[110]d[100] [32]u[117]n[110]f[102]a[97]i[105]r[114] [32]o[111]w[119]n[110]
{9} Y[89]o[111]u[117] [32]t[116]a[97]k[107]e[101] [32]m[109]y[121] [32]s[115]e[101]t[116] [32]o[111]f[102] [32]f[102]l[108]o[111]r[114]i[105]d[100] [32]r[114]h[104]y[121]m[109]e[101]s[115]
{10} W[87]h[104]i[105]c[99]h[104] [32]a[97]r[114]e[101] [32]h[104]a[97]l[108]f[102]-[45]f[102]u[117]n[110]n[110]y[121] [32]a[97]n[110]d[100] [32]h[104]a[97]l[108]f[102]-[45]m[109]o[111]u[117]r[114]n[110]f[102]u[117]l[108],[44]
{11} O[79]f[102] [32]c[99]o[111]m[109]m[109]o[111]n[110] [32]t[116]h[104]i[105]n[110]k[107]i[105]n[110]g[103],[44] [32]s[115]o[111]m[109]e[101]w[119]h[104]a[97]t[116] [32]t[116]h[104]o[111]u[117]g[103]h[104]t[116]f[102]u[117]l[108],[44]
{12} S[83]l[108]i[105]p[112]s[115]h[104]o[111]d[100] [32]r[114]e[101]s[115]u[117]l[108]t[116] [32]o[111]f[102] [32]m[109]y[121] [32]p[112]a[97]s[115]t[116]i[105]m[109]e[101]s[115],[44]
{13} O[79]f[102] [32]s[115]l[108]e[101]e[101]p[112]l[108]e[101]s[115]s[115] [32]n[110]i[105]g[103]h[104]t[116]s[115],[44] [32]o[111]f[102] [32]i[105]n[110]s[115]p[112]i[105]r[114]a[97]t[116]i[105]o[111]n[110]s[115],[44]
{14} O[79]f[102] [32]y[121]e[101]a[97]r[114]s[115] [32]y[121]o[111]u[117]n[110]g[103] [32]b[98]u[117]t[116] [32]w[119]h[104]i[105]t[116]h[104]e[101]r[114]e[101]d[100] [32]h[104]a[97]r[114]d[100],[44]
{15} O[79]f[102] [32]m[109]i[105]n[110]d[100] [32]s[115]o[111]m[109]e[101] [32]c[99]o[111]l[108]d[100] [32]o[111]b[98]s[115]e[101]r[114]v[118]a[97]t[116]i[105]o[111]n[110]s[115],[44]
{16} O[79]f[102] [32]g[103]r[114]i[105]e[101]v[118]o[111]u[117]s[115] [32]n[110]o[111]t[116]e[101]s[115] [32]o[111]f[102] [32]t[116]h[104]e[101] [32]h[104]e[101]a[97]r[114]t[116].[46]
{17} C[67]H[72]A[65]P[80]T[84]E[69]R[82] [32]O[79]N[78]E[69]
{18} H[72]e[101] [32]h[104]u[117]r[114]r[114]i[105]e[101]s[115] [32]u[117]p[112] [32]t[116]o[111] [32]l[108]i[105]v[118]e[101],[44] [32]A[65]s[115] [32]w[119]e[101]l[108]l[108] [32]a[97]s[115] [32]h[104]e[101] [32]d[100]o[111]e[101]s[115] [32]t[116]o[111] [32]f[102]e[101]e[101]l[108].[46]
{19} K[75].[46] [32]V[86]y[121]a[97]s[115]e[101]m[109]s[115]k[107]y[121].[46]
{20} I[73]
{21} '[39]M[77]y[121] [32]u[117]n[110]c[99]l[108]e[101] [32]k[107]e[101]e[101]p[112]s[115] [32]t[116]o[111] [32]h[104]o[111]n[110]e[101]s[115]t[116] [32]s[115]y[121]s[115]t[116]e[101]m[109]s[115]:[58] [32]B[66]y[121] [32]f[102]a[97]l[108]l[108]i[105]n[110]g[103] [32]i[105]l[108]l[108] [32]y[121]e[101]t[116] [32]n[110]o[111]t[116] [32]i[105]n[110] [32]j[106]e[101]s[115]t[116],[44]
{22} H[72]e[101] [32]m[109]a[97]d[100]e[101] [32]m[109]e[101] [32]l[108]o[111]v[118]e[101] [32]h[104]i[105]m[109] [32]w[119]i[105]t[116]h[104] [32]i[105]n[110]s[115]i[105]s[115]t[116]e[101]n[110]c[99]e[101] [32]A[65]n[110]d[100] [32]c[99]o[111]u[117]l[108]d[100]n[110]'[39]t[116] [32]f[102]i[105]n[110]d[100] [32]s[115]o[111]m[109]e[101] [32]b[98]e[101]t[116]t[116]e[101]r[114] [32]t[116]e[101]s[115]t[116].[46]
{23} W[87]e[101]l[108]l[108],[44] [32]h[104]i[105]s[115] [32]e[101]x[120]a[97]m[109]p[112]l[108]e[101] [32]g[103]i[105]v[118]e[101]s[115] [32]a[97] [32]l[108]e[101]s[115]s[115]o[111]n[110];[59] [32]B[66]u[117]t[116],[44] [32]g[103]o[111]o[111]d[100]n[110]e[101]s[115]s[115] [32]m[109]e[101],[44] [32]i[105]t[116]'[39]s[115] [32]q[113]u[117]i[105]t[116]e[101] [32]d[100]i[105]s[115]t[116]r[114]e[101]s[115]s[115]i[105]n[110]g[103]
{24} T[84]o[111] [32]s[115]i[105]t[116] [32]w[119]i[105]t[116]h[104] [32]h[104]i[105]m[109] [32]a[97]l[108]l[108] [32]d[100]a[97]y[121] [32]a[97]n[110]d[100] [32]n[110]i[105]g[103]h[104]t[116],[44] [32]N[78]o[111]t[116] [32]s[115]t[116]e[101]p[112]p[112]i[105]n[110]g[103] [32]o[111]u[117]t[116] [32]o[111]f[102] [32]h[104]i[105]s[115] [32]s[115]i[105]g[103]h[104]t[116].[46]
{25} A[65]n[110]d[100] [32]w[119]h[104]a[97]t[116] [32]i[105]n[110]s[115]i[105]d[100]i[105]o[111]u[117]s[115]n[110]e[101]s[115]s[115] [32]y[121]o[111]u[117] [32]s[115]h[104]o[111]w[119],[44] [32]W[87]h[104]e[101]n[110] [32]y[121]o[111]u[117] [32]a[97]m[109]u[117]s[115]e[101] [32]a[97] [32]m[109]a[97]n[110] [32]h[104]a[97]l[108]f[102] [32]d[100]e[101]a[97]d[100]
{26} A[65]r[114]r[114]a[97]n[110]g[103]e[101] [32]t[116]h[104]e[101] [32]p[112]i[105]l[108]l[108]o[111]w[119]s[115] [32]i[105]n[110] [32]b[98]e[101]d[100] [32]T[84]h[104]e[101]n[110] [32]g[103]i[105]v[118]e[101] [32]h[104]i[105]m[109] [32]d[100]r[114]u[117]g[103]s[115] [32]i[105]n[110] [32]s[115]a[97]d[100]n[110]e[101]s[115]s[115],[44] [32]t[116]h[104]o[111]u[117]g[103]h[104]
{27} Y[89]o[111]u[117] [32]s[115]i[105]g[103]h[104] [32]n[110]o[111]t[116] [32]s[115]p[112]e[101]a[97]k[107]i[105]n[110]g[103] [32]o[111]f[102] [32]y[121]o[111]u[117]r[114] [32]w[119]i[105]l[108]l[108]:[58] [32]W[87]h[104]e[101]n[110] [32]w[119]i[105]l[108]l[108] [32]t[116]h[104]e[101] [32]d[100]e[101]v[118]i[105]l[108] [32]c[99]o[111]m[109]e[101] [32]f[102]o[111]r[114] [32]h[104]i[105]m[109]![33]'[39]
{28} I[73]I[73]
{29} T[84]h[104]e[101] [32]y[121]o[111]u[117]n[110]g[103] [32]s[115]c[99]a[97]p[112]e[101]g[103]r[114]a[97]c[99]e[101] [32]w[119]a[97]s[115] [32]s[115]o[111] [32]d[100]e[101]e[101]m[109]i[105]n[110]g[103],[44] [32]W[87]h[104]e[101]n[110] [32]h[104]e[101] [32]b[98]y[121] [32]p[112]o[111]s[115]t[116]-[45]c[99]h[104]a[97]i[105]s[115]e[101] [32]i[105]n[110] [32]d[100]u[117]s[115]t[116]
{30} W[87]a[97]s[115] [32]s[115]h[104]a[97]k[107]i[105]n[110]g[103].[46] [32]D[68]u[117]e[101] [32]t[116]o[111] [32]Z[90]u[117]e[101]s[115] [32]h[104]e[101]'[39]s[115] [32]b[98]e[101]i[105]n[110]g[103] [32]T[84]h[104]e[101] [32]h[104]e[101]i[105]r[114] [32]o[111]f[102] [32]a[97]l[108]l[108] [32]r[114]e[101]l[108]a[97]t[116]i[105]v[118]e[101]s[115] [32]i[105]n[110] [32]t[116]r[114]u[117]s[115]t[116].[46]
{31} R[82]u[117]s[115]l[108]a[97]n[110]'[39]s[115],[44] [32]L[76]y[121]u[117]d[100]m[109]i[105]l[108]a[97]'[39]s[115] [32]f[102]r[114]i[105]e[101]n[110]d[100]s[115]![33]
{32} S[83]o[111]m[109]e[101]h[104]o[111]w[119],[44] [32]W[87]i[105]t[116]h[104]o[111]u[117]t[116] [32]p[112]r[114]e[101]f[102]a[97]c[99]e[101]s[115],[44] [32]j[106]u[117]s[115]t[116] [32]n[110]o[111]w[119],[44] [32]F[70]o[111]r[114] [32]h[104]e[101]r[114]o[111] [32]o[111]f[102] [32]m[109]y[121] [32]b[98]o[111]o[111]k[107] [32]L[76]e[101]t[116] [32]m[109]e[101] [32]a[97]t[116]t[116]r[114]a[97]c[99]t[116] [32]a[97]t[116]t[116]e[101]n[110]t[116]i[105]v[118]e[101] [32]l[108]o[111]o[111]k[107]:[58]
{33} O[79]n[110]e[101]g[103]i[105]n[110],[44] [32]f[102]r[114]i[105]e[101]n[110]d[100] [32]o[111]f[102] [32]m[109]i[105]n[110]e[101] [32]f[102]o[111]r[114] [32]y[121]e[101]a[97]r[114]s[115],[44] [32]W[87]a[97]s[115] [32]b[98]o[111]r[114]n[110] [32]o[111]n[110] [32]N[78]e[101]v[118]a[97]-[45]r[114]i[105]v[118]e[101]r[114]'[39]s[115] [32]b[98]a[97]n[110]k[107]s[115].[46]
{34} M[77]a[97]y[121] [32]b[98]e[101],[44] [32]y[121]o[111]u[117] [32]r[114]o[111]s[115]e[101] [32]f[102]r[114]o[111]m[109] [32]t[116]h[104]e[101] [32]c[99]l[108]a[97]n[110]s[115] [32]I[73]n[110] [32]t[116]h[104]o[111]s[115]e[101] [32]p[112]l[108]a[97]c[99]e[101]s[115],[44] [32]o[111]r[114] [32]h[104]a[97]v[118]e[101] [32]d[100]e[101]a[97]r[114]s[115],[44]
{35} S[83]o[111]m[109]e[101]w[119]h[104]e[101]r[114]e[101] [32]y[121]o[111]u[117] [32]c[99]o[111]u[117]l[108]d[100] [32]l[108]o[111]o[111]k[107] [32]a[97]t[116] [32]m[109]e[101],[44] [32]B[66]u[117]t[116] [32]h[104]a[97]r[114]m[109]f[102]u[117]l[108] [32]i[105]s[115] [32]t[116]h[104]e[101] [32]N[78]o[111]r[114]t[116]h[104] [32]f[102]o[111]r[114] [32]m[109]e[101],[44]
{36} I[73]I[73]I[73]
{37} H[72]i[105]s[115] [32]f[102]a[97]t[116]h[104]e[101]r[114] [32]s[115]e[101]r[114]v[118]e[101]d[100] [32]f[102]o[111]r[114] [32]m[109]a[97]n[110]y[121] [32]y[121]e[101]a[97]r[114]s[115],[44] [32]A[65]n[110]d[100] [32]f[102]e[101]l[108]l[108] [32]i[105]n[110] [32]d[100]e[101]b[98]t[116],[44] [32]s[115]u[117]c[99]h[104] [32]b[98]i[105]g[103] [32]a[97]n[110]d[100] [32]v[118]a[97]s[115]t[116],[44]
{38} T[84]h[104]a[97]t[116],[44] [32]g[103]i[105]v[118]i[105]n[110]g[103] [32]b[98]a[97]l[108]l[108]s[115] [32]t[116]h[104]r[114]e[101]e[101] [32]t[116]i[105]m[109]e[101]s[115] [32]a[97] [32]y[121]e[101]a[97]r[114],[44] [32]H[72]e[101] [32]s[115]q[113]u[117]a[97]n[110]d[100]e[101]r[114]e[101]d[100] [32]a[97]l[108]l[108] [32]h[104]e[101] [32]h[104]a[97]d[100] [32]a[97]t[116] [32]l[108]a[97]s[115]t[116].[46]
{39} B[66]u[117]t[116] [32]E[69]u[117]g[103]e[101]n[110]e[101]'[39]s[115] [32]f[102]a[97]t[116]e[101] [32]f[102]o[111]r[114] [32]h[104]i[105]m[109] [32]w[119]a[97]s[115] [32]f[102]a[97]i[105]r[114]:[58] [32]A[65]t[116] [32]f[102]i[105]r[114]s[115]t[116] [32]b[98]y[121] [32]M[77]a[97]d[100]a[97]m[109]e[101] [32]h[104]e[101] [32]w[119]a[97]s[115] [32]c[99]a[97]r[114]e[101]d[100],[44]
{40} B[66]u[117]t[116] [32]t[116]h[104]e[101]n[110] [32]a[97] [32]f[102]r[114]e[101]n[110]c[99]h[104]m[109]a[97]n[110] [32]t[116]o[111]o[111]k[107] [32]h[104]e[101]r[114] [32]p[112]l[108]a[97]c[99]e[101].[46]
{41} T[84]h[104]e[101] [32]b[98]o[111]y[121] [32]w[119]a[97]s[115] [32]f[102]r[114]i[105]s[115]k[107]y[121] [32]b[98]u[117]t[116] [32]w[119]i[105]t[116]h[104] [32]g[103]r[114]a[97]c[99]e[101].[46]
{42} M[77]o[111]n[110]s[115]i[105]e[101]u[117]r[114] [32]l[108]'[39]A[65]b[98]b[98]e[101],[44] [32]a[97] [32]F[70]r[114]e[101]n[110]c[99]h[104]m[109]a[97]n[110] [32]m[109]e[101]r[114]e[101],[44] [32]T[84]o[111] [32]g[103]i[105]v[118]e[101] [32]t[116]h[104]e[101] [32]b[98]o[111]y[121] [32]s[115]o[111]m[109]e[101] [32]c[99]h[104]a[97]n[110]c[99]e[101] [32]t[116]o[111] [32]r[114]e[101]s[115]t[116],[44]
{43} W[87]a[97]s[115] [32]t[116]e[101]a[97]c[99]h[104]i[105]n[110]g[103] [32]h[104]i[105]m[109] [32]w[119]i[105]t[116]h[104] [32]r[114]e[101]a[97]d[100]y[121] [32]j[106]e[101]s[115]t[116],[44] [32]W[87]i[105]t[116]h[104] [32]m[109]o[111]r[114]a[97]l[108]s[115] [32]n[110]e[101]v[118]e[101]r[114] [32]w[119]a[97]s[115] [32]s[115]e[101]v[118]e[101]r[114]e[101],[44]
{44} F[70]o[111]r[114] [32]p[112]r[114]a[97]n[110]k[107]s[115] [32]r[114]e[101]p[112]r[114]o[111]v[118]e[101]d[100] [32]w[119]i[105]t[116]h[104] [32]g[103]e[101]n[110]t[116]l[108]e[101] [32]t[116]a[97]l[108]k[107]s[115],[44] [32]T[84]o[111] [32]S[83]u[117]m[109]m[109]e[101]r[114] [32]G[71]a[97]r[114]d[100]e[101]n[110] [32]t[116]o[111]o[111]k[107] [32]f[102]o[111]r[114] [32]w[119]a[97]l[108]k[107]s[115].[46]
{45} I[73]V[86]
{46} I[73]n[110]s[115]u[117]r[114]g[103]e[101]n[110]t[116] [32]y[121]o[111]u[117]t[116]h[104] [32]i[105]s[115] [32]n[110]o[111]t[116] [32]y[121]e[101]t[116] [32]e[101]n[110]d[100]l[108]e[101]s[115]s[115].[46] [32]W[87]h[104]e[101]n[110] [32]E[69]u[117]g[103]e[101]n[110]e[101] [32]w[119]a[97]s[115] [32]t[116]o[111] [32]c[99]h[104]a[97]n[110]g[103]e[101] [32]h[104]i[105]s[115] [32]s[115]o[111]r[114]t[116]
{47} I[73]n[110] [32]t[116]i[105]m[109]e[101]s[115] [32]o[111]f[102] [32]h[104]o[111]p[112]e[101]s[115],[44] [32]t[116]e[101]n[110]d[100]e[101]r[114] [32]s[115]a[97]d[100]n[110]e[101]s[115]s[115],[44] [32]M[77]o[111]n[110]s[115]i[105]e[101]u[117]r[114] [32]w[119]a[97]s[115] [32]d[100]r[114]i[105]v[118]e[101]n[110] [32]f[102]r[114]o[111]m[109] [32]t[116]h[104]e[101] [32]c[99]o[111]u[117]r[114]t[116].[46]
{48} O[79]n[110]e[101]g[103]i[105]n[110]'[39]s[115] [32]n[110]o[111]w[119] [32]f[102]r[114]e[101]e[101] [32]f[102]r[114]o[111]m[109] [32]c[99]a[97]r[114]e[101].[46] [32]I[73]n[110] [32]f[102]a[97]s[115]h[104]i[105]o[111]n[110] [32]h[104]a[97]s[115] [32]h[104]e[101] [32]c[99]u[117]t[116] [32]h[104]i[105]s[115] [32]h[104]a[97]i[105]r[114],[44]
{49} L[76]i[105]k[107]e[101] [32]L[76]o[111]n[110]d[100]o[111]n[110] [32]d[100]a[97]n[110]d[100]y[121],[44] [32]w[119]e[101]l[108]l[108] [32]a[97]r[114]r[114]a[97]y[121]e[101]d[100],[44] [32]F[70]i[105]r[114]s[115]t[116] [32]c[99]o[111]m[109]i[105]n[110]g[103] [32]t[116]o[111] [32]t[116]h[104]e[101] [32]w[119]o[111]r[114]l[108]d[100] [32]h[104]e[101] [32]m[109]a[97]d[100]e[101].[46]
{50} H[72]i[105]s[115] [32]F[70]r[114]e[101]n[110]c[99]h[104] [32]w[119]a[97]s[115] [32]s[115]o[111] [32]p[112]e[101]r[114]f[102]e[101]c[99]t[116] [32]n[110]o[111]w[119],[44] [32]T[84]h[104]a[97]t[116] [32]h[104]e[101] [32]c[99]o[111]u[117]l[108]d[100] [32]c[99]h[104]a[97]t[116],[44] [32]a[97]s[115] [32]w[119]e[101]l[108]l[108] [32]a[97]s[115] [32]w[119]r[114]i[105]t[116]e[101],[44]
{51} H[72]e[101] [32]w[119]a[97]s[115] [32]i[105]n[110] [32]d[100]a[97]n[110]c[99]e[101]s[115] [32]q[113]u[117]i[105]c[99]k[107] [32]a[97]n[110]d[100] [32]l[108]i[105]g[103]h[104]t[116],[44] [32]W[87]i[105]t[116]h[104]o[111]u[117]t[116] [32]t[116]e[101]n[110]s[115]i[105]o[111]n[110] [32]h[104]e[101] [32]c[99]o[111]u[117]l[108]d[100] [32]b[98]o[111]w[119]:[58]
{52} W[87]h[104]a[97]t[116] [32]m[109]o[111]r[114]e[101] [32]y[121]o[111]u[117] [32]w[119]a[97]n[110]t[116]?[63]
{53} T[84]h[104]e[101] [32]w[119]o[111]r[114]l[108]d[100] [32]s[115]a[97]i[105]d[100]:[58] [32]w[119]h[104]y[121],[44] [32]H[72]e[101] [32]i[105]s[115] [32]a[97] [32]c[99]l[108]e[101]v[118]e[101]r[114],[44] [32]p[112]r[114]e[101]t[116]t[116]y[121] [32]g[103]u[117]y[121].[46]
{54} V[86]
{55} W[87]e[101] [32]a[97]l[108]l[108] [32]t[116]o[111] [32]l[108]e[101]a[97]r[114]n[110] [32]h[104]a[97]d[100] [32]l[108]i[105]t[116]t[116]l[108]e[101] [32]g[103]o[111] [32]A[65]n[110]d[100] [32]a[97]n[110]y[121]h[104]o[111]w[119] [32]s[115]o[111]m[109]e[101]t[116]h[104]i[105]n[110]g[103] [32]g[103]o[111]t[116],[44]
{56} W[87]i[105]t[116]h[104] [32]e[101]d[100]u[117]c[99]a[97]t[116]i[105]o[111]n[110],[44] [32]a[97]s[115] [32]y[121]o[111]u[117] [32]k[107]n[110]o[111]w[119],[44] [32]W[87]e[101] [32]a[97]l[108]l[108] [32]c[99]a[97]n[110] [32]s[115]h[104]i[105]n[110]e[101],[44] [32]a[97]n[110]d[100] [32]b[98]l[108]e[101]s[115]s[115] [32]i[105]t[116] [32]G[71]o[111]d[100]![33]
{57} O[79]n[110]e[101]g[103]i[105]n[110] [32]w[119]a[97]s[115] [32]i[105]n[110] [32]e[101]y[121]e[101]s[115] [32]o[111]f[102] [32]p[112]e[101]o[111]p[112]l[108]e[101],[44] [32]([40]W[87]h[104]i[105]c[99]h[104] [32]w[119]e[101]r[114]e[101] [32]i[105]n[110] [32]j[106]u[117]d[100]g[103]e[101]m[109]e[101]n[110]t[116]s[115] [32]s[115]t[116]r[114]i[105]c[99]t[116],[44] [32]n[110]o[111]t[116] [32]f[102]e[101]e[101]b[98]l[108]e[101],[44])[41]
{58} A[65] [32]p[112]e[101]d[100]a[97]n[110]t[116] [32]b[98]u[117]t[116] [32]o[111]f[102] [32]s[115]c[99]i[105]e[101]n[110]c[99]e[101] [32]m[109]a[97]n[110].[46] [32]H[72]e[101] [32]h[104]a[97]d[100] [32]a[97] [32]h[104]a[97]p[112]p[112]y[121] [32]t[116]a[97]l[108]e[101]n[110]t[116] [32]t[116]h[104]e[101]n[110]:[58]
{59} H[72]e[101] [32]w[119]a[97]s[115] [32]e[101]n[110]a[97]b[98]l[108]e[101]d[100],[44] [32]s[115]l[108]i[105]g[103]h[104]t[116]l[108]y[121] [32]r[114]u[117]s[115]h[104]i[105]n[110]g[103],[44] [32]T[84]o[111] [32]s[115]p[112]e[101]a[97]k[107] [32]o[111]f[102] [32]a[97]n[110]y[121]t[116]h[104]i[105]n[110]g[103] [32]a[97]t[116] [32]o[111]n[110]c[99]e[101],[44]
{60} A[65]s[115] [32]r[114]e[101]a[97]l[108] [32]e[101]x[120]p[112]e[101]r[114]t[116] [32]d[100]o[111]e[101]s[115] [32]b[98]y[121] [32]c[99]h[104]a[97]n[110]c[99]e[101].[46] [32]H[72]e[101] [32]c[99]o[111]u[117]l[108]d[100] [32]b[98]e[101] [32]s[115]i[105]l[108]e[101]n[110]t[116] [32]i[105]n[110] [32]d[100]i[105]s[115]c[99]u[117]s[115]s[115]i[105]o[111]n[110],[44]
{61} H[72]i[105]s[115] [32]e[101]p[112]i[105]g[103]r[114]a[97]m[109]'[39]s[115] [32]u[117]n[110]w[119]a[97]i[105]t[116]e[101]d[100] [32]f[102]i[105]l[108]e[101] [32]C[67]o[111]u[117]l[108]d[100] [32]m[109]a[97]k[107]e[101] [32]a[97]l[108]l[108] [32]p[112]r[114]e[101]t[116]t[116]y[121] [32]l[108]a[97]d[100]i[105]e[101]s[115] [32]s[115]m[109]i[105]l[108]e[101].[46]
{62} V[86]I[73]
{63} B[66]u[117]t[116] [32]L[76]a[97]t[116]i[105]n[110]'[39]s[115] [32]n[110]o[111]t[116] [32]i[105]n[110] [32]f[102]a[97]s[115]h[104]i[105]o[111]n[110] [32]n[110]o[111]w[119].[46] [32]T[84]o[111] [32]t[116]e[101]l[108]l[108] [32]t[116]h[104]e[101] [32]t[116]r[114]u[117]t[116]h[104] [32]b[98]u[117]t[116] [32]f[102]r[114]a[97]n[110]k[107] [32]e[101]n[110]o[111]u[117]g[103]h[104],[44]
{64} H[72]e[101] [32]k[107]n[110]e[101]w[119] [32]t[116]h[104]e[101] [32]L[76]a[97]t[116]i[105]n[110] [32]a[97]n[110]y[121]h[104]o[111]w[119]:[58] [32]T[84]o[111] [32]t[116]a[97]l[108]k[107] [32]a[97]b[98]o[111]u[117]t[116] [32]e[101]p[112]i[105]g[103]r[114]a[97]f[102],[44]
{65} O[79]f[102] [32]J[74]o[111]u[117]v[118]e[101]n[110]a[97]l[108]e[101] [32]t[116]o[111] [32]t[116]a[97]l[108]k[107] [32]m[109]u[117]c[99]h[104] [32]b[98]e[101]t[116]t[116]e[101]r[114],[44] [32]T[84]o[111] [32]e[101]n[110]d[100] [32]w[119]i[105]t[116]h[104] [32]v[118]a[97]l[108]e[101] [32]o[111]w[119]n[110] [32]l[108]e[101]t[116]t[116]e[101]r[114],[44]
{66} R[82]e[101]m[109]e[101]m[109]b[98]e[101]r[114]e[101]d[100],[44] [32]t[116]h[104]o[111]u[117]g[103]h[104] [32]w[119]i[105]t[116]h[104] [32]m[109]i[105]s[115]t[116]a[97]k[107]e[101]s[115],[44] [32]T[84]w[119]o[111] [32]l[108]i[105]t[116]t[116]l[108]e[101] [32]v[118]e[101]r[114]s[115]e[101]s[115] [32]o[111]f[102] [32]E[69]n[110]a[97]i[105]d[100]'[39]s[115].[46]
{67} H[72]e[101] [32]n[110]e[101]v[118]e[101]r[114] [32]w[119]i[105]s[115]h[104]e[101]d[100] [32]t[116]o[111] [32]r[114]u[117]m[109]m[109]a[97]g[103]e[101] [32]q[113]u[117]i[105]c[99]k[107]l[108]y[121] [32]I[73]n[110] [32]c[99]h[104]r[114]o[111]n[110]o[111]l[108]o[111]g[103]i[105]c[99]a[97]l[108] [32]t[116]h[104]i[105]c[99]k[107] [32]d[100]u[117]s[115]t[116]
{68} O[79]f[102] [32]w[119]r[114]i[105]t[116]i[105]n[110]g[103]s[115] [32]o[111]f[102] [32]t[116]h[104]e[101] [32]l[108]i[105]f[102]e[101] [32]i[105]n[110] [32]p[112]a[97]s[115]t[116],[44] [32]B[66]u[117]t[116] [32]a[97]n[110]c[99]i[105]e[101]n[110]t[116] [32]a[97]n[110]e[101]c[99]d[100]o[111]t[116]e[101]s[115] [32]d[100]e[101]e[101]p[112]l[108]y[121] [32]-[45]
{69} F[70]r[114]o[111]m[109] [32]R[82]o[111]m[109]u[117]l[108] [32]t[116]o[111] [32]t[116]h[104]e[101] [32]p[112]r[114]e[101]s[115]e[101]n[110]t[116] [32]d[100]a[97]y[121] [32]-[45] [32]I[73]n[110] [32]d[100]e[101]p[112]t[116]h[104] [32]o[111]f[102] [32]m[109]i[105]n[110]d[100] [32]h[104]e[101] [32]k[107]e[101]p[112]t[116] [32]a[97]w[119]a[97]y[121].[46]
{70} V[86]I[73]I[73]
{71} N[78]o[111]t[116] [32]h[104]a[97]v[118]i[105]n[110]g[103] [32]a[97]n[110]y[121] [32]h[104]i[105]g[103]h[104]e[101]r[114] [32]p[112]a[97]s[115]s[115]i[105]o[111]n[110] [32]T[84]o[111] [32]r[114]h[104]y[121]m[109]e[101]s[115] [32]t[116]o[111] [32]d[100]e[101]d[100]i[105]c[99]a[97]t[116]e[101] [32]h[104]i[105]s[115] [32]l[108]i[105]f[102]e[101],[44]
{72} I[73]a[97]m[109]b[98]u[117]s[115] [32]h[104]e[101],[44] [32]a[97]t[116] [32]f[102]r[114]a[97]n[110]k[107] [32]c[99]o[111]n[110]f[102]e[101]s[115]s[115]i[105]o[111]n[110],[44] [32]F[70]r[114]o[111]m[109] [32]t[116]r[114]o[111]c[99]h[104]e[101]e[101] [32]c[99]o[111]u[117]l[108]d[100]n[110]'[39]t[116] [32]t[116]e[101]l[108]l[108] [32]m[109]e[101]a[97]n[110]w[119]h[104]i[105]l[108]e[101].[46]
{73} F[70]e[101]o[111]c[99]r[114]i[105]t[116]e[101],[44] [32]G[71]o[111]m[109]e[101]r[114] [32]w[119]e[101]r[114]e[101] [32]r[114]e[101]p[112]r[114]o[111]v[118]e[101]d[100],[44] [32]Y[89]e[101]t[116] [32]A[65]d[100]a[97]m[109] [32]S[83]m[109]i[105]t[116]h[104] [32]w[119]a[97]s[115] [32]w[119]e[101]l[108]l[108] [32]a[97]p[112]p[112]r[114]o[111]v[118]e[101]d[100],[44]
{74} I[73]n[110] [32]h[104]o[111]u[117]s[115]e[101]-[45]k[107]e[101]e[101]p[112]i[105]n[110]g[103] [32]h[104]e[101] [32]w[119]a[97]s[115] [32]b[98]e[101]s[115]t[116] [32]A[65]r[114]i[105]d[100] [32]a[97]n[110]y[121] [32]p[112]r[114]o[111]b[98]l[108]e[101]m[109]s[115] [32]p[112]u[117]t[116] [32]t[116]o[111] [32]t[116]e[101]s[115]t[116]:[58]
{75} O[79]f[102] [32]h[104]o[111]w[119] [32]s[115]t[116]a[97]t[116]e[101] [32]i[105]t[116]s[115]e[101]l[108]f[102] [32]e[101]n[110]r[114]i[105]c[99]h[104]e[101]s[115],[44] [32]A[65]n[110]d[100] [32]h[104]o[111]w[119] [32]l[108]i[105]v[118]e[101]s[115],[44] [32]w[119]h[104]i[105]c[99]h[104] [32]w[119]a[97]y[121] [32]a[97]n[110]d[100] [32]w[119]h[104]y[121]
{76} W[87]i[105]t[116]h[104]o[111]u[117]t[116] [32]g[103]o[111]l[108]d[100] [32]c[99]a[97]n[110] [32]r[114]e[101]v[118]i[105]v[118]e[101] [32]W[87]h[104]i[105]l[108]e[101] [32]s[115]i[105]m[109]p[112]l[108]e[101] [32]p[112]r[114]o[111]d[100]u[117]c[99]t[116] [32]i[105]s[115] [32]i[105]t[116]s[115] [32]r[114]i[105]c[99]h[104]n[110]e[101]s[115]s[115]:[58]
{77} H[72]i[105]s[115] [32]f[102]a[97]t[116]h[104]e[101]r[114] [32]d[100]i[105]d[100]n[110]'[39]t[116] [32]u[117]n[110]d[100]e[101]r[114]s[115]t[116]a[97]n[110]d[100] [32]A[65]r[114]i[105]d[100] [32]p[112]u[117]t[116] [32]i[105]n[110] [32]p[112]l[108]e[101]d[100]g[103]e[101] [32]t[116]h[104]e[101] [32]w[119]h[104]o[111]l[108]e[101] [32]l[108]a[97]n[110]d[100],[44]
{78} Y[89]I[73]I[73]I[73]
{79} T[84]o[111] [32]t[116]e[101]l[108]l[108] [32]y[121]o[111]u[117] [32]a[97]l[108]l[108],[44] [32]w[119]h[104]a[97]t[116] [32]h[104]e[101] [32]h[104]a[97]d[100] [32]k[107]n[110]o[111]w[119]n[110],[44] [32]I[73] [32]h[104]a[97]v[118]e[101]n[110]'[39]t[116] [32]a[97]n[110]y[121] [32]t[116]i[105]m[109]e[101] [32]a[97]t[116] [32]a[97]l[108]l[108].[46]
{80} H[72]i[105]s[115] [32]g[103]e[101]n[110]i[105]u[117]s[115] [32]w[119]a[97]s[115] [32]u[117]n[110]i[105]q[113]u[117]e[101],[44] [32]a[97]l[108]o[111]n[110]e[101],[44] [32]H[72]e[101] [32]k[107]n[110]e[101]w[119] [32]o[111]f[102] [32]s[115]o[111]m[109]e[101]t[116]h[104]i[105]n[110]g[103] [32]b[98]e[101]s[115]t[116] [32]o[111]f[102] [32]a[97]l[108]l[108],[44]
{81} W[87]h[104]i[105]c[99]h[104] [32]w[119]a[97]s[115] [32]f[102]o[111]r[114] [32]h[104]i[105]m[109] [32]f[102]r[114]o[111]m[109] [32]t[116]i[105]m[109]e[101] [32]o[111]f[102] [32]c[99]h[104]i[105]l[108]d[100]h[104]o[111]o[111]d[100] [32]L[76]i[105]k[107]e[101] [32]w[119]o[111]r[114]k[107] [32]a[97]n[110]d[100] [32]t[116]o[111]r[114]m[109]e[101]n[110]t[116],[44] [32]w[119]a[97]s[115] [32]d[100]e[101]l[108]i[105]g[103]h[104]t[116]f[102]u[117]l[108],[44]
{82} W[87]h[104]i[105]c[99]h[104] [32]p[112]r[114]e[101]s[115]s[115]e[101]d[100] [32]h[104]i[105]s[115] [32]s[115]p[112]i[105]r[114]i[105]t[116]s[115] [32]a[97]l[108]l[108] [32]t[116]h[104]e[101] [32]w[119]a[97]y[121] [32]A[65]n[110]d[100] [32]k[107]e[101]p[112]t[116] [32]h[104]i[105]s[115] [32]l[108]a[97]z[122]i[105]n[110]e[101]s[115]s[115] [32]f[102]o[111]r[114] [32]d[100]a[97]y[121],[44] [32]-[45]
{83} I[73]t[116] [32]w[119]a[97]s[115] [32]t[116]h[104]e[101] [32]a[97]r[114]t[116] [32]o[111]f[102] [32]t[116]e[101]n[110]d[100]e[101]r[114] [32]p[112]a[97]s[115]s[115]i[105]o[111]n[110],[44] [32]B[66]y[121] [32]N[78]a[97]z[122]o[111]n[110] [32]b[98]r[114]i[105]g[103]h[104]t[116]l[108]y[121] [32]g[103]l[108]o[111]r[114]i[105]f[102]i[105]e[101]d[100].[46]
{84} B[66]u[117]t[116] [32]N[78]a[97]z[122]o[111]n[110] [32]w[119]a[97]s[115] [32]b[98]y[121] [32]w[119]o[111]r[114]l[108]d[100] [32]d[100]e[101]n[110]i[105]e[101]d[100] [32]A[65]n[110]d[100] [32]s[115]u[117]f[102]f[102]e[101]r[114]e[101]d[100] [32]p[112]a[97]s[115]t[116] [32]r[114]e[101]b[98]e[101]l[108]l[108]i[105]o[111]u[117]s[115] [32]s[115]e[101]s[115]s[115]i[105]o[111]n[110]:[58]
{85} M[77]o[111]l[108]d[100]a[97]v[118]i[105]a[97],[44] [32]t[116]h[104]a[97]t[116]'[39]s[115] [32]f[102]a[97]r[114] [32]a[97]w[119]a[97]y[121] [32]F[70]r[114]o[111]m[109] [32]I[73]t[116]a[97]l[108]y[121],[44] [32]w[119]a[97]s[115] [32]e[101]n[110]d[100] [32]o[111]f[102] [32]w[119]a[97]y[121].[46]
{86} I[73]X[88]
{87} .[46].[46].[46].[46].[46].[46].[46].[46].[46] [32] [9].[46].[46].[46].[46].[46].[46].[46].[46].[46] [32] [9].[46].[46].[46].[46].[46].[46].[46].[46].[46]
{88} X[88]
{89} F[70]r[114]o[111]m[109] [32]e[101]a[97]r[114]l[108]y[121] [32]t[116]i[105]m[109]e[101]s[115] [32]h[104]e[101] [32]w[119]a[97]s[115] [32]d[100]i[105]s[115]s[115]e[101]m[109]b[98]l[108]i[105]n[110]g[103],[44] [32]S[83]o[111]m[109]e[101] [32]h[104]i[105]d[100]d[100]e[101]n[110] [32]h[104]o[111]p[112]e[101] [32]h[104]e[101] [32]c[99]o[111]u[117]l[108]d[100] [32]l[108]e[101]a[97]v[118]e[101],[44]
{90} H[72]e[101] [32]p[112]i[105]n[110]e[101]d[100] [32]a[97]w[119]a[97]y[121],[44] [32]h[104]e[101] [32]w[119]a[97]s[115] [32]d[100]i[105]s[115]s[115]u[117]a[97]d[100]i[105]n[110]g[103],[44] [32]W[87]a[97]s[115] [32]d[100]u[117]l[108]l[108] [32]a[97]n[110]d[100] [32]j[106]e[101]a[97]l[108]o[111]u[117]s[115],[44] [32]m[109]a[97]d[100]e[101] [32]b[98]e[101]l[108]i[105]e[101]v[118]e[101];[59]
{91} C[67]o[111]u[117]l[108]d[100] [32]c[99]o[111]m[109]e[101] [32]s[115]u[117]c[99]h[104] [32]p[112]r[114]o[111]u[117]d[100] [32]o[111]r[114] [32]o[111]b[98]e[101]d[100]i[105]e[101]n[110]t[116],[44] [32]C[67]o[111]u[117]l[108]d[100] [32]b[98]e[101] [32]a[97]t[116]t[116]e[101]n[110]t[116]i[105]v[118]e[101] [32]o[111]r[114] [32]i[105]n[110]d[100]i[105]f[102]f[102]e[101]r[114]e[101]n[110]t[116];[59]
{92} W[87]a[97]s[115] [32]l[108]a[97]n[110]g[103]u[117]i[105]s[115]h[104]i[105]n[110]g[103] [32]a[97]n[110]d[100] [32]t[116]a[97]c[99]i[105]t[116]u[117]r[114]n[110],[44] [32]E[69]l[108]o[111]q[113]u[117]e[101]n[110]t[116] [32]a[97]r[114]d[100]e[101]n[110]t[116]l[108]y[121] [32]i[105]n[110] [32]t[116]u[117]r[114]n[110];[59]
{93} I[73]n[110] [32]h[104]e[101]a[97]r[114]t[116]y[121] [32]l[108]e[101]t[116]t[116]e[101]r[114],[44] [32]a[97]s[115] [32]i[105]t[116]s[115] [32]s[115]e[101]n[110]d[100]e[101]r[114],[44] [32]H[72]e[101] [32]w[119]a[97]s[115] [32]s[115]l[108]i[105]p[112]s[115]h[104]o[111]d[100].[46]
{94} F[70]o[111]r[114] [32]a[97]l[108]l[108] [32]o[111]f[102] [32]t[116]h[104]a[97]t[116]
{95} O[79]f[102] [32]o[111]w[119]n[110] [32]l[108]i[105]f[102]e[101] [32]h[104]e[101] [32]c[99]o[111]u[117]l[108]d[100] [32]f[102]o[111]r[114]g[103]e[101]t[116]![33]
{96} H[72]i[105]s[115] [32]l[108]o[111]o[111]k[107] [32]w[119]a[97]s[115] [32]a[97]l[108]w[119]a[97]y[121]s[115] [32]q[113]u[117]i[105]c[99]k[107] [32]a[97]n[110]d[100] [32]t[116]e[101]n[110]d[100]e[101]r[114],[44]
{97} W[87]a[97]s[115] [32]i[105]m[109]p[112]u[117]d[100]e[101]n[110]t[116] [32]a[97]n[110]d[100] [32]s[115]h[104]y[121];[59] [32]s[115]o[111]m[109]e[101]t[116]i[105]m[109]e[101]s[115] [32]C[67]o[111]u[117]l[108]d[100] [32]s[115]h[104]o[111]w[119] [32]h[104]o[111]w[119] [32]t[116]e[101]a[97]r[114] [32]s[115]h[104]i[105]n[110]e[101]s[115],[44]
{98} X[88]I[73]
{99} W[87]a[97]s[115] [32]s[115]e[101]e[101]m[109]i[105]n[110]g[103] [32]n[110]e[101]w[119] [32]o[111]n[110] [32]e[101]a[97]c[99]h[104] [32]o[111]c[99]c[99]a[97]s[115]i[105]o[111]n[110],[44] [32]W[87]i[105]t[116]h[104] [32]j[106]o[111]k[107]e[101]s[115] [32]i[105]n[110]n[110]o[111]c[99]e[101]n[110]c[99]e[101] [32]a[97]m[109]a[97]z[122]e[101]d[100].[46]
{100} C[67]o[111]u[117]l[108]d[100] [32]g[103]i[105]v[118]e[101] [32]a[97] [32]f[102]r[114]i[105]g[103]h[104]t[116] [32]b[98]y[121] [32]d[100]e[101]s[115]p[112]e[101]r[114]a[97]t[116]i[105]o[111]n[110],[44] [32]W[87]i[105]t[116]h[104] [32]f[102]l[108]a[97]t[116]t[116]e[101]r[114]y[121] [32]c[99]o[111]u[117]l[108]d[100] [32]d[100]r[114]a[97]w[119] [32]o[111]n[110]e[101]'[39]s[115] [32]g[103]a[97]z[122]e[101],[44]
{101} W[87]a[97]s[115] [32]a[97]b[98]l[108]e[101] [32]a[97]n[110]y[121] [32]g[103]l[108]i[105]m[109]p[112]s[115]e[101] [32]o[111]f[102] [32]s[115]w[119]e[101]e[101]t[116]n[110]e[101]s[115]s[115],[44] [32]O[79]f[102] [32]v[118]e[101]r[114]g[103]i[105]n[110] [32]y[121]e[101]a[97]r[114]s[115] [32]b[98]i[105]a[97]s[115] [32]g[103]i[105]f[102]t[116]n[110]e[101]s[115]s[115]
{102} W[87]i[105]t[116]h[104] [32]p[112]a[97]s[115]s[115]i[105]o[111]n[110] [32]a[97]n[110]d[100] [32]t[116]h[104]e[101] [32]w[119]i[105]t[116] [32]t[116]o[111] [32]g[103]a[97]i[105]n[110],[44] [32]F[70]o[111]r[114] [32]s[115]u[117]d[100]d[100]e[101]n[110] [32]t[116]e[101]n[110]d[100]e[101]r[114]n[110]e[101]s[115]s[115] [32]t[116]o[111] [32]w[119]a[97]i[105]t[116],[44]
{103} F[70]o[111]r[114] [32]w[119]o[111]r[114]d[100]s[115] [32]o[111]f[102] [32]l[108]o[111]v[118]e[101] [32]t[116]o[111] [32]b[98]e[101] [32]e[101]n[110]t[116]r[114]e[101]a[97]t[116]i[105]n[110]g[103],[44] [32]F[70]i[105]r[114]s[115]t[116] [32]m[109]o[111]v[118]e[101] [32]o[111]f[102] [32]h[104]e[101]a[97]r[114]t[116] [32]t[116]o[111] [32]c[99]a[97]t[116]c[99]h[104] [32]b[98]y[121] [32]c[99]h[104]a[97]n[110]c[99]e[101],[44]
{104} T[84]o[111] [32]c[99]h[104]a[97]s[115]e[101] [32]t[116]h[104]e[101] [32]l[108]o[111]v[118]e[101] [32]a[97]n[110]d[100] [32]a[97]l[108]l[108] [32]a[97]t[116] [32]o[111]n[110]c[99]e[101] [32]T[84]o[111] [32]g[103]e[101]t[116] [32]a[97]g[103]r[114]e[101]e[101]d[100] [32]a[97] [32]s[115]e[101]c[99]r[114]e[101]t[116] [32]m[109]e[101]e[101]t[116]i[105]n[110]g[103],[44]
{105} A[65]n[110]d[100] [32]t[116]h[104]e[101]n[110] [32]f[102]r[114]o[111]m[109] [32]p[112]e[101]o[111]p[112]l[108]e[101] [32]f[102]a[97]r[114] [32]a[97]w[119]a[97]y[121] [32]T[84]o[111] [32]g[103]i[105]v[118]e[101] [32]h[104]e[101]r[114] [32]l[108]e[101]s[115]s[115]o[111]n[110]s[115] [32]a[97]l[108]l[108] [32]t[116]h[104]e[101] [32]d[100]a[97]y[121]?[63]
{106} X[88]I[73]I[73]
{107} A[65]n[110]d[100] [32]h[104]o[111]w[119] [32]c[99]o[111]u[117]l[108]d[100] [32]h[104]e[101] [32]b[98]e[101] [32]a[97]n[110]n[110]o[111]y[121]i[105]n[110]g[103] [32]T[84]h[104]e[101] [32]h[104]e[101]a[97]r[114]t[116]s[115] [32]o[111]f[102] [32]l[108]a[97]d[100]i[105]e[101]s[115],[44] [32]w[119]h[104]o[111]m[109] [32]h[104]e[101] [32]k[107]n[110]e[101]w[119]![33]
{108} B[66]u[117]t[116] [32]w[119]h[104]e[101]n[110] [32]h[104]i[105]s[115] [32]t[116]h[104]o[111]u[117]g[103]h[104]t[116]s[115] [32]w[119]e[101]r[114]e[101] [32]o[111]f[102] [32]d[100]e[101]s[115]t[116]r[114]o[111]y[121]i[105]n[110]g[103] [32]H[72]i[105]s[115] [32]o[111]w[119]n[110] [32]r[114]i[105]v[118]a[97]l[108]s[115],[44] [32]t[116]h[104]o[111]u[117]g[103]h[104] [32]f[102]e[101]w[119],[44]
{109} H[72]i[105]s[115] [32]s[115]c[99]a[97]n[110]d[100]a[97]l[108] [32]t[116]a[97]l[108]k[107]s[115] [32]w[119]e[101]r[114]e[101] [32]s[115]u[117]c[99]h[104] [32]b[98]a[97]c[99]k[107]b[98]i[105]t[116]i[105]n[110]g[103]![33]
{110} H[72]i[105]s[115] [32]n[110]e[101]t[116]s[115] [32]f[102]o[111]r[114] [32]t[116]h[104]e[101]m[109] [32]w[119]e[101]r[114]e[101] [32]s[115]o[111] [32]f[102]r[114]i[105]g[103]h[104]t[116]e[101]n[110]i[105]n[110]g[103]![33]
{111} B[66]u[117]t[116] [32]b[98]l[108]i[105]s[115]s[115]f[102]u[117]l[108] [32]h[104]u[117]s[115]b[98]a[97]n[110]d[100] [32]o[111]f[102] [32]c[99]o[111]q[113]u[117]e[101]t[116]t[116]e[101],[44] [32]T[84]o[111] [32]p[112]a[97]r[114]t[116] [32]f[102]r[114]o[111]m[109] [32]h[104]i[105]m[109] [32]y[121]o[111]u[117] [32]d[100]i[105]d[100] [32]r[114]e[101]g[103]r[114]e[101]t[116]![33]
{112} B[66]y[121] [32]c[99]u[117]n[110]n[110]i[105]n[110]g[103] [32]h[104]u[117]s[115]b[98]a[97]n[110]d[100] [32]h[104]e[101] [32]w[119]a[97]s[115] [32]g[103]r[114]e[101]e[101]t[116]e[101]d[100],[44] [32]O[79]f[102] [32]F[70]a[97]u[117]b[98]l[108]a[97]s[115] [32]p[112]r[114]e[101]v[118]i[105]o[111]u[117]s[115] [32]a[97] [32]f[102]a[97]n[110];[59]
{113} B[66]y[121] [32]o[111]n[110]e[101] [32]m[109]i[105]s[115]t[116]r[114]u[117]s[115]t[116]f[102]u[117]l[108] [32]o[111]l[108]d[100] [32]m[109]a[97]n[110];[59] [32]H[72]i[105]m[109] [32]s[115]t[116]a[97]t[116]e[101]l[108]y[121] [32]c[99]u[117]c[99]k[107]o[111]l[108]d[100] [32]a[97]d[100]m[109]i[105]t[116]t[116]e[101]d[100],[44]
{114} W[87]h[104]o[111]'[39]s[115] [32]a[97]l[108]w[119]a[97]y[121]s[115] [32]p[112]r[114]o[111]u[117]d[100] [32]o[111]f[102] [32]h[104]i[105]m[109]s[115]e[101]l[108]f[102],[44] [32]O[79]f[102] [32]d[100]i[105]n[110]n[110]e[101]r[114] [32]a[97]n[110]d[100] [32]o[111]f[102] [32]w[119]i[105]f[102]e[101] [32]h[104]e[101]r[114]s[115]e[101]l[108]f[102].[46]
{115} X[88]I[73]I[73]I[73],[44] [32]X[88]I[73]V[86]
{116} .[46].[46].[46].[46].[46].[46].[46].[46].[46] [32] [9].[46].[46].[46].[46].[46].[46].[46].[46].[46] [32] [9].[46].[46].[46].[46].[46].[46].[46].[46].[46]
{117} X[88]V[86]
{118} S[83]o[111]m[109]e[101]t[116]i[105]m[109]e[101]s[115],[44] [32]w[119]h[104]e[101]n[110] [32]h[104]e[101]'[39]s[115] [32]i[105]n[110] [32]b[98]e[101]d[100] [32]y[121]e[101]t[116] [32]s[115]l[108]e[101]e[101]p[112]i[105]n[110]g[103],[44] [32]S[83]o[111]m[109]e[101] [32]p[112]a[97]p[112]e[101]r[114]s[115] [32]t[116]h[104]e[101]y[121] [32]a[97]r[114]e[101] [32]b[98]r[114]i[105]n[110]g[103]i[105]n[110]g[103] [32]h[104]i[105]m[109].[46]
{119} W[87]h[104]a[97]t[116]?[63]
{120} I[73]n[110]v[118]i[105]t[116]a[97]t[116]i[105]o[111]n[110]s[115] [32]f[102]o[111]r[114] [32]a[97] [32]m[109]e[101]e[101]t[116]i[105]n[110]g[103]?[63]
{121} T[84]h[104]r[114]e[101]e[101] [32]h[104]o[111]u[117]s[115]e[101]s[115] [32]w[119]i[105]l[108]l[108] [32]w[119]a[97]i[105]t[116] [32]f[102]o[111]r[114] [32]h[104]i[105]m[109].[46]
{122} S[83]o[111]m[109]e[101] [32]b[98]a[97]l[108]l[108]s[115],[44] [32]o[111]n[110]e[101] [32]c[99]h[104]i[105]l[108]d[100]r[114]e[101]n[110]'[39]s[115] [32]e[101]n[110]t[116]e[101]r[114]t[116]a[97]i[105]n[110]m[109]e[101]n[110]t[116].[46].[46].[46]
{123} W[87]h[104]a[97]t[116] [32]w[119]i[105]l[108]l[108] [32]h[104]e[101] [32]c[99]h[104]o[111]o[111]s[115]e[101] [32]f[102]o[111]r[114] [32]h[104]i[105]s[115] [32]e[101]n[110]g[103]a[97]g[103]e[101]m[109]e[101]n[110]t[116]?[63]
{124} W[87]i[105]t[116]h[104] [32]w[119]h[104]i[105]c[99]h[104] [32]t[116]o[111] [32]s[115]t[116]a[97]r[114]t[116]?[63]
{125} I[73]n[110] [32]w[119]o[111]n[110]d[100]e[101]r[114] [32]s[115]t[116]y[121]l[108]e[101] [32]T[84]o[111] [32]e[101]v[118]e[101]r[114]y[121] [32]p[112]l[108]a[97]c[99]e[101] [32]h[104]e[101] [32]c[99]a[97]m[109]e[101] [32]i[105]n[110] [32]t[116]i[105]m[109]e[101].[46]
{126} M[77]e[101]a[97]n[110]w[119]h[104]i[105]l[108]e[101] [32]h[104]e[101]'[39]s[115] [32]d[100]r[114]e[101]s[115]s[115]e[101]d[100] [32]f[102]o[111]r[114] [32]w[119]a[97]l[108]k[107] [32]a[97]t[116] [32]m[109]o[111]r[114]n[110]i[105]n[110]g[103],[44] [32]H[72]i[105]s[115] [32]b[98]o[111]l[108]i[105]v[118]a[97]r[114] [32]h[104]e[101]'[39]s[115] [32]h[104]a[97]v[118]i[105]n[110]g[103] [32]o[111]n[110] [9]{[123]3[51]][93]
{127} A[65]n[110]d[100] [32]c[99]o[111]m[109]e[101]s[115] [32]t[116]o[111] [32]b[98]o[111]u[117]i[105]e[101]w[119]a[97]r[114]d[100] [32]q[113]u[117]i[105]t[116]e[101] [32]f[102]o[111]r[114]l[108]o[111]n[110]e[101]:[58] [32]H[72]e[101] [32]t[116]h[104]e[101]r[114]e[101] [32]a[97]t[116] [32]a[97] [32]s[115]p[112]a[97]c[99]e[101] [32]i[105]s[115] [32]w[119]a[97]l[108]k[107]i[105]n[110]g[103]
{128} U[85]n[110]t[116]i[105]l[108] [32]h[104]i[105]s[115] [32]b[98]r[114]e[101]g[103]e[101]t[116] [32]s[115]l[108]e[101]e[101]p[112]l[108]e[101]s[115]s[115],[44] [32]f[102]i[105]n[110]e[101] [32]W[87]i[105]l[108]l[108] [32]s[115]t[116]r[114]i[105]k[107]e[101] [32]t[116]h[104]e[101] [32]b[98]e[101]l[108]l[108]s[115] [32]f[102]o[111]r[114] [32]h[104]i[105]m[109] [32]t[116]o[111] [32]d[100]i[105]n[110]e[101].[46]
{129} X[88]V[86]I[73]
{130} I[73]t[116]s[115] [32]d[100]a[97]r[114]k[107].[46]
{131} I[73]n[110] [32]s[115]l[108]e[101]d[100]g[103]e[101] [32]h[104]e[101]'[39]s[115] [32]s[115]i[105]t[116]t[116]i[105]n[110]g[103] [32]n[110]o[111]w[119].[46] [32]-[45]A[65]w[119]a[97]y[121],[44] [32]a[97]w[119]a[97]y[121]![33] [32]-[45] [32]t[116]h[104]e[101] [32]d[100]r[114]i[105]v[118]e[101]r[114] [32]m[109]a[97]r[114]k[107]s[115],[44]
{132} A[65]n[110]d[100],[44] [32]c[99]o[111]v[118]e[101]r[114]e[101]d[100] [32]w[119]i[105]t[116]h[104] [32]t[116]h[104]e[101] [32]f[102]r[114]o[111]s[115]t[116]e[101]d[100] [32]g[103]o[111]w[119]n[110],[44] [32]H[72]i[105]s[115] [32]b[98]e[101]a[97]v[118]e[101]r[114] [32]c[99]o[111]l[108]l[108]a[97]r[114] [32]n[110]o[111]w[119] [32]s[115]p[112]a[97]r[114]k[107]s[115].[46]
{133} T[84]o[111] [32]T[84]a[97]l[108]o[111]n[110]'[39]s[115] [32]s[115]u[117]r[114]e[101]l[108]y[121] [32]h[104]e[101]'[39]s[115] [32]r[114]a[97]i[105]d[100]i[105]n[110]g[103].[46] [32]K[75]a[97]v[118]e[101]r[114]i[105]n[110] [32]t[116]h[104]e[101]r[114]e[101] [32]i[105]s[115] [32]a[97]w[119]a[97]i[105]t[116]i[105]n[110]g[103].[46]
{134} H[72]e[101] [32]c[99]o[111]m[109]e[101]s[115]:[58] [32]t[116]h[104]e[101] [32]c[99]o[111]r[114]k[107]s[115] [32]f[102]o[111]r[114] [32]c[99]e[101]i[105]l[108]i[105]n[110]g[103] [32]p[112]a[97]s[115]s[115],[44] [32]T[84]h[104]e[101] [32]w[119]i[105]n[110]e[101] [32]l[108]i[105]k[107]e[101] [32]c[99]o[111]m[109]e[101]t[116] [32]s[115]p[112]l[108]a[97]s[115]h[104]e[101]s[115] [32]f[102]a[97]s[115]t[116].[46]
{135} A[65] [32]b[98]l[108]o[111]o[111]d[100]y[121] [32]r[114]o[111]a[97]s[115]t[116]-[45]b[98]e[101]e[101]f[102] [32]i[105]s[115] [32]g[103]i[105]v[118]e[101]n[110],[44] [32]A[65]n[110]d[100] [32]t[116]r[114]u[117]f[102]f[102]l[108]e[101]s[115],[44] [32]s[115]p[112]l[108]e[101]n[110]d[100]o[111]u[117]r[114] [32]o[111]f[102] [32]t[116]e[101]e[101]n[110]a[97]g[103]e[101],[44]
{136} I[73]n[110] [32]F[70]r[114]a[97]n[110]c[99]e[101] [32]o[111]f[102] [32]c[99]o[111]o[111]k[107]i[105]n[110]g[103] [32]h[104]i[105]g[103]h[104]e[101]s[115]t[116] [32]g[103]a[97]u[117]g[103]e[101];[59] [32]A[65]n[110]d[100] [32]p[112]i[105]e[101] [32]t[116]r[114]a[97]i[105]n[110] [32]S[83]t[116]r[114]a[97]s[115]s[115]b[98]u[117]r[114]g[103],[44] [32]f[102]r[114]e[101]s[115]h[104]l[108]y[121] [32]d[100]r[114]i[105]v[118]e[101]n[110],[44]
{137} B[66]e[101]t[116]w[119]e[101]e[101]n[110] [32]t[116]h[104]e[101] [32]L[76]i[105]m[109]b[98]u[117]r[114]g[103] [32]l[108]i[105]v[118]e[101]l[108]y[121] [32]c[99]h[104]e[101]e[101]s[115]e[101] [32]A[65]n[110]d[100] [32]b[98]e[101]s[115]t[116] [32]p[112]i[105]n[110]e[101]-[45]a[97]p[112]p[112]l[108]e[101] [32]g[103]o[111]l[108]d[100] [32]s[115]q[113]u[117]e[101]e[101]s[115]e[101].[46]
{138} X[88]Y[89]I[73]I[73]
{139} T[84]h[104]e[101] [32]t[116]h[104]i[105]r[114]s[115]t[116] [32]d[100]e[101]m[109]a[97]n[110]d[100]s[115] [32]s[115]o[111]m[109]e[101] [32]m[109]o[111]r[114]e[101] [32]o[111]f[102] [32]d[100]r[114]i[105]n[110]k[107]i[105]n[110]g[103] [32]T[84]o[111] [32]c[99]o[111]o[111]l[108] [32]h[104]o[111]t[116] [32]c[99]u[117]t[116]l[108]e[101]t[116]'[39]s[115] [32]f[102]a[97]t[116] [32]a[97]t[116] [32]o[111]n[110]c[99]e[101],[44]
{140} B[66]u[117]t[116] [32]b[98]r[114]e[101]g[103]e[101]t[116] [32]b[98]e[101]l[108]l[108]s[115] [32]a[97]r[114]e[101] [32]n[110]o[111]w[119] [32]c[99]l[108]i[105]n[110]k[107]i[105]n[110]g[103]:[58] [32]N[78]e[101]w[119] [32]b[98]a[97]l[108]l[108]e[101]t[116] [32]w[119]i[105]l[108]l[108] [32]b[98]e[101]g[103]i[105]n[110] [32]b[98]y[121] [32]c[99]h[104]a[97]n[110]c[99]e[101],[44]
{141} O[79]f[102] [32]t[116]h[104]e[101]a[97]t[116]r[114]e[101] [32]s[115]t[116]r[114]i[105]c[99]t[116] [32]l[108]e[101]g[103]i[105]s[115]l[108]a[97]t[116]o[111]r[114],[44] [32]I[73]n[110]c[99]o[111]n[110]s[115]t[116]a[97]n[110]t[116] [32]a[97]d[100]o[111]r[114]e[101]r[114] [32]o[111]f[102] [32]l[108]a[97]t[116]e[101]r[114]
{142} Q[81]u[117]i[105]t[116]e[101] [32]c[99]h[104]a[97]r[114]m[109]i[105]n[110]g[103] [32]a[97]c[99]t[116]r[114]e[101]s[115]s[115]e[101]s[115],[44] [32]h[104]e[101] [32]i[105]s[115] [32]A[65]n[110] [32]h[104]o[111]n[110]o[111]u[117]r[114]e[101]d[100] [32]c[99]i[105]t[116]y[121]z[122]e[101]n[110] [32]o[111]f[102] [32]l[108]i[105]n[110]k[107]s[115].[46]
{143} F[70]o[111]r[114] [32]t[116]h[104]e[101]a[97]t[116]r[114]e[101] [32]O[79]n[110]e[101]g[103]i[105]n[110]'[39]s[115] [32]s[115]p[112]e[101]e[101]d[100]i[105]n[110]g[103].[46] [32]I[73]n[110] [32]i[105]t[116] [32]e[101]a[97]c[99]h[104] [32]m[109]a[97]n[110] [32]i[105]s[115] [32]f[102]r[114]e[101]e[101] [32]a[97]t[116] [32]a[97]l[108]l[108]:[58]
{144} H[72]e[101] [32]m[109]a[97]y[121] [32]e[101]a[97]c[99]h[104] [32]e[101]n[110]t[116]r[114]e[101]c[99]h[104]a[97]t[116] [32]c[99]a[97]t[116]c[99]a[97]l[108]l[108],[44] [32]O[79]r[114] [32]h[104]i[105]s[115]s[115] [32]M[77]o[111]i[105]n[110]a[97],[44] [32]F[70]e[101]d[100]r[114]a[97] [32]g[103]r[114]e[101]e[101]t[116]i[105]n[110]g[103];[59]
{145} O[79]r[114] [32]C[67]l[108]e[101]o[111]p[112]a[97]t[116]r[114]a[97] [32]m[109]a[97]y[121] [32]e[101]n[110]c[99]o[111]r[114]e[101] [32]([40]B[66]y[121] [32]o[111]t[116]h[104]e[101]r[114]s[115] [32]t[116]o[111] [32]b[98]e[101] [32]h[104]e[101]a[97]r[114]d[100] [32]o[111]n[110]c[99]e[101] [32]m[109]o[111]r[114]e[101])[41].[46]
{146} X[88]Y[89]I[73]I[73]I[73]
{147} E[69]n[110]c[99]h[104]a[97]n[110]t[116]i[105]n[110]g[103] [32]l[108]a[97]n[110]d[100]![33] [32]I[73]n[110] [32]d[100]a[97]y[121]s[115] [32]o[111]f[102] [32]w[119]i[105]s[115]d[100]o[111]m[109],[44] [32]O[79]f[102] [32]s[115]a[97]t[116]i[105]r[114]e[101] [32]g[103]r[114]e[101]a[97]t[116] [32]p[112]o[111]t[116]e[101]n[110]t[116]a[97]t[116]e[101],[44]
{148} F[70]o[111]n[110]v[118]i[105]z[122]i[105]n[110] [32]s[115]h[104]o[111]n[110]e[101],[44] [32]a[97] [32]f[102]r[114]i[105]e[101]n[110]d[100] [32]o[111]f[102] [32]f[102]r[114]e[101]e[101]d[100]o[111]m[109],[44] [32]K[75]n[110]y[121]a[97]z[122]h[104]n[110]i[105]n[110] [32]w[119]a[97]s[115] [32]a[97]l[108]w[119]a[97]y[121]s[115] [32]u[117]p[112]-[45]t[116]o[111]-[45]d[100]a[97]t[116]e[101].[46]
{149} W[87]i[105]t[116]h[104] [32]O[79]z[122]e[101]r[114]o[111]v[118] [32]a[97]l[108]l[108] [32]w[119]e[101]r[114]e[101] [32]d[100]e[101]l[108]i[105]g[103]h[104]t[116]e[101]d[100],[44] [32]S[83]e[101]m[109]y[121]o[111]n[110]o[111]v[118]a[97] [32]w[119]i[105]t[116]h[104] [32]h[104]i[105]m[109] [32]d[100]i[105]v[118]i[105]d[100]e[101]d[100]
{150} T[84]h[104]e[101] [32]t[116]e[101]a[97]r[114]s[115] [32]o[111]f[102] [32]t[116]h[104]e[101] [32]p[112]e[101]o[111]p[112]l[108]e[101]'[39]s[115] [32]a[97]w[119]e[101].[46] [32]K[75]a[97]t[116]e[101]n[110]i[105]n[110] [32]t[116]h[104]e[101]r[114]e[101] [32]c[99]o[111]u[117]l[108]d[100] [32]r[114]e[101]s[115]t[116]o[111]r[114]e[101]
{151} O[79]f[102] [32]C[67]o[111]r[114]n[110]e[101]i[105]l[108]l[108]e[101] [32]s[115]t[116]a[97]t[116]e[101]l[108]y[121] [32]g[103]e[101]n[110]i[105]u[117]s[115];[59] [32]t[116]h[104]e[101]r[114]e[101] [32]W[87]a[97]s[115] [32]k[107]n[110]o[111]w[119]n[110] [32]p[112]r[114]i[105]c[99]k[107]l[108]y[121] [32]S[83]h[104]a[97]k[107]h[104]o[111]v[118]s[115]k[107]o[111]y[121]
{152} W[87]h[104]o[111] [32]w[119]r[114]o[111]t[116]e[101] [32]c[99]o[111]m[109]e[101]d[100]i[105]e[101]s[115] [32]w[119]i[105]t[116]h[104] [32]j[106]o[111]y[121];[59] [32]W[87]i[105]t[116]h[104] [32]g[103]l[108]o[111]r[114]y[121] [32]D[68]i[105]d[100]l[108]a[97]'[39]s[115] [32]c[99]r[114]o[111]w[119]n[110]e[101]d[100] [32]t[116]h[104]e[101]r[114]e[101].[46]
{153} A[65]n[110]d[100] [32]t[116]h[104]e[101]r[114]e[101],[44] [32]i[105]n[110] [32]t[116]h[104]e[101] [32]s[115]h[104]a[97]d[100]e[101]s[115] [32]o[111]f[102] [32]l[108]i[105]n[110]k[107]s[115],[44] [32]M[77]y[121] [32]y[121]o[111]u[117]n[110]g[103]e[101]r[114] [32]d[100]a[97]y[121]s[115] [32]w[119]e[101]r[114]e[101] [32]r[114]u[117]s[115]h[104]i[105]n[110]g[103] [32]t[116]h[104]i[105]n[110]g[103]s[115],[44]
{154} X[88]I[73]X[88]
{155} M[77]y[121] [32]g[103]o[111]d[100]d[100]e[101]s[115]s[115]e[101]s[115]'[39] [32]w[119]h[104]a[97]t[116] [32]a[97]r[114]e[101] [32]y[121]o[111]u[117]?[63] [32]w[119]h[104]e[101]r[114]e[101]?[63]
{156} Y[89]o[111]u[117] [32]l[108]i[105]s[115]t[116]e[101]n[110] [32]t[116]o[111] [32]m[109]y[121] [32]g[103]r[114]i[105]e[101]v[118]o[111]u[117]s[115] [32]c[99]a[97]l[108]l[108]:[58]
{157} A[65]r[114]e[101] [32]y[121]o[111]u[117] [32]t[116]h[104]e[101] [32]s[115]a[97]m[109]e[101],[44] [32]o[111]r[114] [32]o[111]t[116]h[104]e[101]r[114]s[115] [32]d[100]a[97]r[114]e[101]d[100] [32]T[84]o[111] [32]c[99]h[104]a[97]n[110]g[103]e[101],[44] [32]r[114]e[101]p[112]l[108]a[97]c[99]e[101] [32]y[121]o[111]u[117] [32]t[116]h[104]e[101]r[114]e[101] [32]a[97]l[108]l[108]?[63]
{158} S[83]h[104]a[97]l[108]l[108] [32]I[73] [32]a[97]g[103]a[97]i[105]n[110] [32]y[121]o[111]u[117]r[114] [32]c[99]h[104]o[111]r[114]u[117]s[115] [32]h[104]e[101]a[97]r[114]?[63]
{159} O[79]f[102] [32]R[82]u[117]s[115]s[115]i[105]a[97]n[110] [32]T[84]e[101]r[114]p[112]s[115]i[105]c[99]h[104]o[111]r[114]e[101]'[39]s[115] [32]d[100]e[101]a[97]r[114]
{160} S[83]h[104]a[97]l[108]l[108] [32]s[115]e[101]e[101] [32]e[101]m[109]o[111]t[116]i[105]o[111]n[110]a[97]l[108] [32]f[102]l[108]i[105]g[103]h[104]t[116]?[63]
{161} O[79]r[114] [32]d[100]i[105]s[115]m[109]a[97]l[108] [32]e[101]y[121]e[101] [32]w[119]i[105]l[108]l[108] [32]n[110]e[101]v[118]e[101]r[114] [32]f[102]i[105]n[110]d[100]
{162} A[65]t[116] [32]b[98]o[111]r[114]i[105]n[110]g[103] [32]s[115]t[116]a[97]g[103]e[101] [32]s[115]o[111]m[109]e[101] [32]k[107]n[110]o[111]w[119]n[110] [32]a[97]c[99]t[116]o[111]r[114],[44] [32]A[65]n[110]d[100],[44] [32]t[116]u[117]r[114]n[110]i[105]n[110]g[103] [32]t[116]o[111] [32]u[117]n[110]k[107]n[110]o[111]w[119]n[110] [32]w[119]o[111]r[114]l[108]d[100]
{163} M[77]y[121] [32]d[100]i[105]s[115]i[105]l[108]l[108]u[117]s[115]i[105]o[111]n[110]e[101]d[100] [32]l[108]o[111]r[114]n[110]e[101]t[116]t[116]e[101],[44] [32]O[79]f[102] [32]j[106]o[111]y[121] [32]s[115]o[111]m[109]e[101] [32]c[99]a[97]r[114]e[101]l[108]e[101]s[115]s[115] [32]s[115]p[112]e[101]c[99]t[116]a[97]t[116]o[111]r[114],[44]
{164} W[87]i[105]t[116]h[104] [32]y[121]a[97]w[119]n[110] [32]I[73]'[39]l[108]l[108] [32]c[99]o[111]v[118]e[101]r[114] [32]d[100]i[105]s[115]r[114]e[101]s[115]p[112]e[101]c[99]t[116] [32]A[65]n[110]d[100] [32]s[115]h[104]a[97]l[108]l[108] [32]o[111]f[102] [32]b[98]y[121]g[103]o[111]n[110]e[101] [32]r[114]e[101]c[99]o[111]l[108]l[108]e[101]c[99]t[116]?[63]
{165} X[88]X[88]
{166} E[69]a[97]c[99]h[104] [32]b[98]o[111]x[120] [32]i[105]n[110] [32]t[116]h[104]e[101]a[97]t[116]r[114]e[101] [32]i[105]s[115] [32]s[115]h[104]i[105]n[110]i[105]n[110]g[103],[44] [32]I[73]n[110] [32]p[112]i[105]t[116] [32]e[101]a[97]c[99]h[104] [32]s[115]t[116]a[97]l[108]l[108] [32]a[97]l[108]r[114]e[101]a[97]d[100]y[121] [32]b[98]o[111]i[105]l[108]s[115],[44]
{167} I[73]n[110] [32]g[103]a[97]l[108]l[108]e[101]r[114]y[121] [32]t[116]h[104]e[101] [32]c[99]l[108]a[97]p[112]s[115] [32]a[97]r[114]e[101] [32]f[102]l[108]y[121]i[105]n[110]g[103],[44] [32]A[65]n[110]d[100] [32]r[114]i[105]s[115]i[105]n[110]g[103] [32]c[99]u[117]r[114]t[116]a[97]i[105]n[110] [32]m[109]a[97]k[107]e[101]s[115] [32]a[97] [32]n[110]o[111]i[105]s[115]e[101].[46]
{168} H[72]a[97]l[108]f[102]-[45]a[97]i[105]r[114]e[101]a[97]l[108] [32]a[97]n[110]d[100] [32]r[114]e[101]s[115]p[112]l[108]e[101]n[110]d[100]e[101]d[100],[44] [32]T[84]o[111] [32]m[109]a[97]g[103]i[105]c[99] [32]b[98]o[111]w[119] [32]a[97]l[108]l[108] [32]a[97]t[116]t[116]e[101]n[110]d[100]e[101]d[100],[44]
{169} I[73]s[115]t[116]テ[-61]ウ[-77]m[109]i[105]n[110]a[97]'[39]s[115] [32]i[105]n[110] [32]f[102]r[114]o[111]n[110]t[116] [32]o[111]f[102] [32]p[112]i[105]t[116],[44] [32]W[87]i[105]t[116]h[104] [32]n[110]y[121]m[109]t[116]h[104]s[115] [32]s[115]h[104]e[101] [32]w[119]a[97]i[105]t[116]s[115] [32]t[116]o[111] [32]m[109]a[97]k[107]e[101] [32]a[97] [32]h[104]i[105]t[116].[46]
{170} W[87]i[105]t[116]h[104] [32]o[111]n[110]e[101] [32]o[111]f[102] [32]f[102]e[101]e[101]t[116] [32]t[116]h[104]e[101] [32]f[102]l[108]o[111]o[111]r[114] [32]s[115]h[104]e[101]'[39]s[115] [32]t[116]o[111]u[117]c[99]h[104]i[105]n[110]g[103],[44] [32]W[87]i[105]t[116]h[104] [32]o[111]t[116]h[104]e[101]r[114] [32]s[115]l[108]o[111]w[119]l[108]y[121] [32]s[115]h[104]e[101] [32]w[119]h[104]e[101]e[101]l[108]s[115],[44]
{171} T[84]h[104]e[101]n[110] [32]s[115]u[117]d[100]d[100]e[101]n[110] [32]c[99]a[97]p[112]e[101]r[114] [32]-[45] [32]a[97]n[110]d[100] [32]s[115]h[104]e[101] [32]f[102]l[108]e[101]e[101]t[116]s[115] [32]L[76]i[105]k[107]e[101] [32]d[100]o[111]w[119]n[110] [32]f[102]r[114]o[111]m[109] [32]E[69]o[111]l[108]u[117]s[115] [32]m[109]a[97]r[114]c[99]h[104]i[105]n[110]g[103],[44]
{172} S[83]h[104]e[101] [32]m[109]a[97]k[107]e[101]s[115] [32]h[104]e[101]r[114] [32]f[102]i[105]g[103]u[117]r[114]e[101] [32]t[116]w[119]i[105]n[110]e[101] [32]a[97]n[110]d[100] [32]t[116]w[119]i[105]s[115]t[116],[44] [32]W[87]i[105]t[116]h[104] [32]q[113]u[117]i[105]c[99]k[107] [32]h[104]e[101]r[114] [32]f[102]o[111]o[111]t[116] [32]t[116]h[104]e[101] [32]f[102]o[111]o[111]t[116] [32]s[115]h[104]e[101] [32]b[98]e[101]a[97]t[116]s[115].[46]
{173} X[88]X[88]I[73]
{174} E[69]a[97]c[99]h[104] [32]c[99]l[108]a[97]p[112]s[115].[46]
{175} O[79]n[110]e[101]g[103]i[105]n[110] [32]n[110]o[111]w[119] [32]e[101]n[110]t[116]e[101]r[114]s[115],[44] [32]F[70]o[111]r[114] [32]s[115]t[116]a[97]l[108]l[108]s[115] [32]c[99]o[111]m[109]e[101]s[115] [32]o[111]v[118]e[101]r[114] [32]t[116]h[104]e[101] [32]f[102]e[101]e[101]t[116],[44]
{176} L[76]o[111]r[114]n[110]e[101]t[116]t[116]e[101] [32]h[104]i[105]s[115] [32]d[100]o[111]u[117]b[98]l[108]e[101] [32]s[115]l[108]a[97]n[110]t[116]w[119]i[105]s[115]e[101] [32]r[114]e[101]n[110]d[100]e[101]r[114]s[115] [32]T[84]o[111] [32]s[115]e[101]e[101] [32]a[97]l[108]l[108] [32]l[108]a[97]d[100]i[105]e[101]s[115] [32]t[116]o[111] [32]b[98]e[101] [32]f[102]i[105]t[116],[44]
{177} H[72]e[101] [32]c[99]a[97]s[115]t[116] [32]a[97] [32]g[103]l[108]a[97]n[110]c[99]e[101] [32]a[97]t[116] [32]l[108]a[97]d[100]i[105]e[101]s[115]'[39] [32]t[116]i[105]r[114]e[101]s[115],[44] [32]A[65]t[116] [32]c[99]i[105]r[114]c[99]l[108]e[101]s[115] [32]b[98]u[117]t[116] [32]w[119]i[105]t[116]h[104] [32]l[108]o[111]o[111]k[107]s[115],[44] [32]a[97]t[116]t[116]i[105]r[114]e[101]s[115]
{178} W[87]a[97]s[115] [32]t[116]e[101]r[114]r[114]i[105]b[98]l[108]y[121] [32]u[117]n[110]s[115]a[97]t[116]i[105]s[115]f[102]i[105]e[101]d[100].[46] [32]W[87]i[105]t[116]h[104] [32]e[101]v[118]e[101]r[114]y[121] [32]m[109]a[97]n[110] [32]a[97]t[116] [32]a[97]n[110]y[121] [32]s[115]i[105]d[100]e[101]
{179} H[72]e[101] [32]b[98]o[111]w[119]e[101]d[100].[46] [32]U[85]n[110]a[97]t[116]t[116]e[101]n[110]d[100]i[105]n[110]g[103] [32]b[98]o[111]d[100]y[121],[44] [32]A[65]t[116] [32]s[115]t[116]a[97]g[103]e[101] [32]h[104]e[101] [32]l[108]o[111]o[111]k[107]e[101]d[100] [32]a[97]s[115] [32]i[105]f[102] [32]b[98]y[121] [32]c[99]h[104]a[97]n[110]c[99]e[101],[44]
{180} T[84]u[117]r[114]n[110]e[101]d[100] [32]o[111]f[102]f[102],[44] [32]t[116]h[104]e[101]n[110] [32]y[121]a[97]w[119]n[110]e[101]d[100] [32]a[97]n[110]d[100] [32]s[115]a[97]i[105]d[100] [32]a[97]t[116] [32]o[111]n[110]c[99]e[101]:[58]
{181} ツ[-62]ォ[-85]I[73]t[116]'[39]s[115] [32]t[116]i[105]m[109]e[101] [32]t[116]o[111] [32]c[99]h[104]a[97]n[110]g[103]e[101] [32]t[116]h[104]e[101]m[109] [32]i[105]n[110] [32]a[97] [32]b[98]o[111]d[100]y[121],[44]
{182} T[84]o[111]o[111] [32]l[108]o[111]n[110]g[103] [32]b[98]y[121] [32]b[98]a[97]l[108]l[108]e[101]t[116]s[115] [32]I[73] [32]w[119]a[97]s[115] [32]p[112]r[114]e[101]s[115]s[115]e[101]d[100],[44] [32]B[66]y[121] [32]D[68]i[105]d[100]l[108]e[101] [32]t[116]o[111]o[111] [32]I[73] [32]a[97]m[109] [32]d[100]e[101]p[112]r[114]e[101]s[115]s[115]e[101]d[100]ツ[-62]サ[-69].[46]
{183} X[88]X[88]I[73]I[73]
{184} Y[89]e[101]t[116] [32]C[67]u[117]p[112]i[105]d[100]s[115],[44] [32]d[100]e[101]v[118]i[105]l[108]s[115] [32]a[97]n[110]d[100] [32]t[116]h[104]e[101] [32]s[115]e[101]r[114]p[112]e[101]n[110]t[116]s[115] [32]M[77]a[97]k[107]e[101] [32]n[110]o[111]i[105]s[115]e[101] [32]a[97]n[110]d[100] [32]h[104]o[111]p[112] [32]i[105]n[110] [32]f[102]r[114]o[111]n[110]t[116] [32]o[111]f[102] [32]p[112]i[105]t[116];[59]
{185} Y[89]e[101]t[116] [32]s[115]o[111]m[109]e[101] [32]o[111]f[102] [32]w[119]e[101]a[97]r[114]y[121] [32]m[109]e[101]n[110]-[45]s[115]e[101]r[114]v[118]a[97]n[110]t[116]s[115] [32]A[65]t[116] [32]e[101]n[110]t[116]r[114]a[97]n[110]c[99]e[101] [32]o[111]n[110] [32]f[102]u[117]r[114]-[45]c[99]o[111]a[97]l[108]s[115] [32]s[115]l[108]e[101]e[101]p[112];[59]
{186} Y[89]e[101]t[116] [32]s[115]o[111]m[109]e[101]o[111]n[110]e[101] [32]h[104]i[105]s[115]s[115]e[101]s[115],[44] [32]f[102]e[101]e[101]t[116] [32]a[97]r[114]e[101] [32]s[115]t[116]a[97]m[109]p[112]i[105]n[110]g[103],[44] [32]S[83]o[111]m[109]e[101] [32]b[98]l[108]o[111]w[119] [32]n[110]o[111]s[115]e[101],[44] [32]c[99]o[111]u[117]g[103]h[104],[44] [32]a[97]r[114]e[101] [32]c[99]l[108]a[97]p[112]p[112]i[105]n[110]g[103];[59]
{187} Y[89]e[101]t[116] [32]o[111]u[117]t[116]s[115]i[105]d[100]e[101],[44] [32]a[97]s[115] [32]w[119]e[101]l[108]l[108]'[39]s[115] [32]i[105]n[110]s[115]i[105]d[100]e[101],[44] [32]T[84]h[104]e[101] [32]l[108]a[97]n[110]t[116]e[101]r[114]n[110]s[115] [32]e[101]v[118]e[101]r[114]y[121]w[119]h[104]e[101]r[114]e[101] [32]s[115]h[104]i[105]n[110]e[101];[59]
{188} Y[89]e[101]t[116],[44] [32]b[98]e[101]i[105]n[110]g[103] [32]c[99]h[104]i[105]l[108]l[108]e[101]d[100],[44] [32]a[97]r[114]e[101] [32]s[115]t[116]r[114]i[105]k[107]i[105]n[110]g[103] [32]h[104]o[111]r[114]s[115]e[101]s[115],[44] [32]A[65]n[110]n[110]o[111]y[121]e[101]d[100] [32]b[98]y[121] [32]h[104]a[97]r[114]n[110]e[101]s[115]s[115];[59] [32]n[110]e[101]a[97]r[114] [32]l[108]i[105]g[103]h[104]t[116]
{189} T[84]h[104]e[101] [32]d[100]r[114]i[105]v[118]e[101]r[114]s[115] [32]a[97]l[108]l[108] [32]t[116]h[104]e[101]m[109]s[115]e[101]l[108]v[118]e[101]s[115] [32]i[105]n[110]c[99]i[105]t[116]e[101] [32]B[66]y[121] [32]c[99]l[108]a[97]p[112]p[112]i[105]n[110]g[103];[59] [32]e[101]a[97]c[99]h[104] [32]h[104]i[105]s[115] [32]m[109]a[97]s[115]t[116]e[101]r[114] [32]c[99]u[117]r[114]s[115]e[101]s[115].[46].[46].[46]
{190} O[79]n[110]e[101]g[103]i[105]n[110]'[39]s[115] [32]o[111]u[117]t[116] [32]b[98]y[121] [32]h[104]i[105]m[109]s[115]e[101]l[108]f[102],[44] [32]H[72]e[101] [32]g[103]o[111]e[101]s[115] [32]t[116]o[111] [32]r[114]e[101]d[100]r[114]e[101]s[115]s[115] [32]h[104]i[105]m[109]s[115]e[101]l[108]f[102].[46]
{191} X[88]X[88]I[73]I[73]I[73]
{192} S[83]h[104]a[97]l[108]l[108] [32]I[73] [32]p[112]o[111]r[114]t[116]r[114]a[97]y[121] [32]i[105]n[110] [32]t[116]r[114]u[117]t[116]h[104]f[102]u[117]l[108] [32]p[112]i[105]c[99]t[116]u[117]r[114]e[101] [32]S[83]e[101]c[99]l[108]u[117]d[100]e[101]d[100] [32]s[115]t[116]u[117]d[100]y[121] [32]o[111]f[102] [32]t[116]h[104]e[101] [32]b[98]e[101]s[115]t[116],[44]
{193} A[65]l[108]l[108] [32]f[102]a[97]s[115]h[104]i[105]o[111]n[110]e[101]d[100] [32]m[109]o[111]d[100]e[101]l[108] [32]o[111]f[102] [32]t[116]h[104]e[101] [32]c[99]r[114]e[101]a[97]t[116]u[117]r[114]e[101] [32]W[87]h[104]o[111]'[39]s[115] [32]d[100]r[114]e[101]s[115]s[115]e[101]d[100],[44] [32]u[117]n[110]d[100]r[114]e[101]s[115]s[115]e[101]d[100],[44] [32]a[97]n[110]e[101]w[119] [32]r[114]e[101]d[100]r[114]e[101]s[115]s[115]e[101]d[100].[46]
{194} A[65]l[108]l[108] [32]f[102]a[97]n[110]c[99]y[121] [32]g[103]o[111]o[111]d[100]s[115] [32]f[102]o[111]r[114] [32]w[119]h[104]i[105]m[109]s[115] [32]a[97]b[98]u[117]n[110]d[100]a[97]n[110]t[116] [32]W[87]h[104]i[105]c[99]h[104] [32]a[97]r[114]e[101] [32]s[115]u[117]p[112]p[112]l[108]i[105]e[101]d[100] [32]b[98]y[121] [32]b[98]u[117]s[115]y[121] [32]L[76]o[111]n[110]d[100]o[111]n[110]
{195} A[65]l[108]l[108] [32]o[111]v[118]e[101]r[114] [32]t[116]h[104]e[101] [32]B[66]a[97]l[108]t[116]i[105]c[99] [32]w[119]a[97]v[118]e[101]s[115] [32]F[70]o[111]r[114] [32]f[102]o[111]r[114]e[101]s[115]t[116],[44] [32]f[102]a[97]t[116] [32]a[97]n[110]d[100] [32]h[104]a[97]n[110]d[100]-[45]m[109]a[97]d[100]e[101] [32]l[108]a[97]c[99]e[101];[59]
{196} A[65]l[108]l[108] [32]t[116]h[104]i[105]n[110]g[103]s[115] [32]b[98]y[121] [32]P[80]a[97]r[114]i[105]s[115] [32]c[99]r[114]a[97]f[102]t[116] [32]i[105]n[110]v[118]e[101]n[110]t[116]e[101]d[100] [32]T[84]o[111] [32]h[104]e[101]l[108]p[112] [32]t[116]h[104]e[101] [32]i[105]d[100]l[108]e[101] [32]h[104]u[117]n[110]g[103]r[114]y[121] [32]t[116]a[97]s[115]t[116]e[101]
{197} T[84]h[104]e[101] [32]g[103]r[114]e[101]a[97]t[116] [32]p[112]r[114]o[111]s[115]p[112]e[101]r[114]i[105]t[116]y[121] [32]l[108]o[111] [32]w[119]a[97]s[115]t[116]e[101] [32]-[45] [32]T[84]o[111] [32]h[104]a[97]v[118]e[101] [32]a[97]t[116] [32]h[104]o[111]m[109]e[101] [32]h[104]e[101] [32]i[105]n[110]t[116]e[101]n[110]d[100]e[101]d[100]:[58]
{198} P[80]h[104]i[105]l[108]o[111]s[115]o[111]p[112]h[104]e[101]r[114] [32]a[97]m[109]o[111]n[110]g[103] [32]h[104]i[105]s[115] [32]m[109]a[97]t[116]e[101]s[115] [32]W[87]i[105]t[116]h[104] [32]t[116]h[104]e[101]m[109] [32]h[104]i[105]s[115] [32]r[114]o[111]o[111]m[109] [32]h[104]e[101] [32]d[100]e[101]c[99]o[111]r[114]a[97]t[116]e[101]s[115].[46]
{199} X[88]X[88]I[73]V[86]
{200} V[86]i[105]s[115]a[97]n[110]t[116]i[105]n[110]e[101] [32]t[116]u[117]b[98]e[101]s[115] [32]w[119]i[105]t[116]h[104] [32]a[97]m[109]b[98]e[101]r[114],[44] [32]t[116]r[114]e[101]a[97]s[115]u[117]r[114]e[101]s[115] [32]O[79]f[102] [32]b[98]r[114]o[111]n[110]z[122]e[101] [32]a[97]n[110]d[100] [32]p[112]o[111]r[114]c[99]e[101]l[108]a[97]i[105]n[110] [32]o[111]f[102] [32]t[116]h[104]e[101] [32]p[112]a[97]s[115]t[116];[59]
{201} F[70]o[111]r[114] [32]c[99]o[111]d[100]d[100]l[108]e[101]d[100] [32]s[115]e[101]n[110]s[115]e[101] [32]t[116]h[104]e[101] [32]b[98]e[101]s[115]t[116] [32]o[111]f[102] [32]p[112]l[108]e[101]a[97]s[115]u[117]r[114]e[101]s[115]:[58] [32]P[80]e[101]r[114]f[102]u[117]m[109]e[101] [32]i[105]n[110] [32]b[98]o[111]t[116]t[116]l[108]e[101]s[115] [32]o[111]f[102] [32]c[99]u[117]t[116] [32]g[103]l[108]a[97]s[115]s[115].[46]
{202} S[83]o[111]m[109]e[101] [32]f[102]i[105]l[108]e[101]s[115] [32]o[111]f[102] [32]s[115]t[116]e[101]e[101]l[108] [32]f[102]o[111]r[114] [32]n[110]a[97]i[105]l[108]s[115],[44] [32]s[115]o[111]m[109]e[101] [32]c[99]o[111]m[109]b[98]s[115],[44] [32]S[83]o[111]m[109]e[101] [32]s[115]c[99]i[105]s[115]s[115]o[111]r[114]s[115],[44] [32]s[115]t[116]r[114]a[97]i[105]g[103]h[104]t[116] [32]a[97]n[110]d[100] [32]w[119]r[114]y[121]:[58] [32]h[104]e[101] [32]o[111]w[119]n[110]s[115]
{203} F[70]o[111]r[114] [32]t[116]e[101]e[101]t[116]h[104] [32]t[116]h[104]e[101] [32]b[98]r[114]u[117]s[115]h[104]e[101]s[115],[44] [32]a[97]n[110]d[100] [32]f[102]o[111]r[114] [32]n[110]a[97]i[105]l[108]s[115],[44] [32]S[83]o[111]m[109]e[101] [32]t[116]h[104]i[105]r[114]t[116]y[121] [32]k[107]i[105]n[110]d[100]s[115] [32]f[102]o[111]r[114] [32]a[97]l[108]l[108] [32]a[97]v[118]a[97]i[105]l[108]s[115].[46]
{204} R[82]o[111]u[117]s[115]s[115]e[101]a[97]u[117] [32]([40]I[73]'[39]d[100] [32]s[115]a[97]y[121] [32]a[97]s[115] [32]i[105]f[102] [32]b[98]y[121]p[112]a[97]s[115]s[115]i[105]n[110]g[103])[41],[44] [32]O[79]f[102] [32]h[104]o[111]w[119] [32]d[100]a[97]r[114]e[101]d[100] [32]p[112]o[111]m[109]p[112]o[111]u[117]s[115] [32]G[71]r[114]i[105]m[109]
{205} T[84]o[111] [32]b[98]r[114]u[117]s[115]h[104] [32]h[104]i[105]s[115] [32]n[110]a[97]i[105]l[108]s[115] [32]i[105]n[110] [32]f[102]r[114]o[111]n[110]t[116] [32]o[111]f[102] [32]h[104]i[105]m[109],[44] [32]E[69]l[108]o[111]q[113]u[117]e[101]n[110]t[116] [32]m[109]a[97]d[100]c[99]a[97]p[112],[44] [32]w[119]a[97]s[115]n[110]'[39]t[116] [32]g[103]r[114]a[97]s[115]p[112]i[105]n[110]g[103].[46]
{206} T[84]h[104]e[101] [32]k[107]n[110]i[105]g[103]h[104]t[116] [32]o[111]f[102] [32]f[102]r[114]e[101]e[101]d[100]o[111]m[109] [32]a[97]n[110]d[100] [32]o[111]f[102] [32]r[114]i[105]g[103]h[104]t[116],[44] [32]I[73]n[110] [32]c[99]a[97]s[115]e[101] [32]l[108]i[105]k[107]e[101] [32]t[116]h[104]i[105]s[115] [32]h[104]e[101] [32]w[119]a[97]s[115]n[110]'[39]t[116] [32]r[114]i[105]g[103]h[104]t[116].[46]
{207} X[88]X[88]V[86]
{208} Y[89]o[111]u[117] [32]m[109]a[97]y[121] [32]b[98]e[101]c[99]o[111]m[109]e[101] [32]a[97] [32]m[109]a[97]n[110] [32]o[111]f[102] [32]b[98]u[117]s[115]i[105]n[110]e[101]s[115]s[115] [32]A[65]n[110]d[100] [32]t[116]h[104]i[105]n[110]k[107] [32]o[111]f[102] [32]b[98]e[101]a[97]u[117]t[116]y[121] [32]o[111]f[102] [32]t[116]h[104]e[101] [32]n[110]a[97]i[105]l[108]s[115].[46]
{209} W[87]i[105]t[116]h[104] [32]a[97]g[103]e[101] [32]t[116]o[111] [32]a[97]r[114]g[103]u[117]e[101] [32]i[105]s[115] [32]u[117]n[110]f[102]i[105]t[116]n[110]e[101]s[115]s[115];[59] [32]T[84]h[104]e[101] [32]c[99]u[117]s[115]t[116]o[111]m[109]'[39]s[115] [32]d[100]e[101]s[115]p[112]o[111]t[116] [32]o[111]f[102] [32]t[116]h[104]e[101] [32]m[109]a[97]l[108]e[101]s[115].[46]
{210} L[76]i[105]k[107]e[101] [32]g[103]r[114]e[101]a[97]t[116] [32]C[67]h[104]a[97]d[100]a[97]y[121]e[101]v[118],[44] [32]E[69]u[117]g[103]e[101]n[110]e[101] [32]d[100]e[101]a[97]r[114] [32]O[79]f[102] [32]j[106]e[101]a[97]l[108]o[111]u[117]s[115]y[121] [32]r[114]e[101]p[112]r[114]o[111]a[97]c[99]h[104] [32]f[102]e[101]a[97]r[114]e[101]d[100],[44]
{211} W[87]a[97]s[115] [32]p[112]e[101]d[100]a[97]n[110]t[116],[44] [32]j[106]u[117]d[100]g[103]i[105]n[110]g[103] [32]o[111]f[102] [32]t[116]h[104]e[101] [32]c[99]l[108]o[111]t[116]h[104],[44] [32]W[87]e[101]'[39]l[108]l[108] [32]c[99]a[97]l[108]l[108] [32]h[104]i[105]m[109] [32]d[100]a[97]n[110]d[100]y[121] [32]f[102]o[111]r[114] [32]t[116]h[104]e[101] [32]f[102]o[111]r[114]t[116]h[104].[46]
{212} A[65]t[116] [32]l[108]e[101]a[97]s[115]t[116] [32]t[116]h[104]r[114]e[101]e[101] [32]h[104]o[111]u[117]r[114]s[115] [32]h[104]e[101] [32]d[100]a[97]i[105]l[108]y[121] [32]I[73]n[110] [32]f[102]r[114]o[111]n[110]t[116] [32]o[111]f[102] [32]m[109]i[105]r[114]r[114]o[111]r[114]s[115] [32]g[103]l[108]a[97]d[100]l[108]y[121] [32]s[115]p[112]e[101]n[110]t[116],[44]
{213} A[65]n[110]d[100] [32]f[102]r[114]o[111]m[109] [32]h[104]i[105]s[115] [32]d[100]r[114]e[101]s[115]s[115]i[105]n[110]g[103] [32]r[114]o[111]o[111]m[109] [32]h[104]e[101] [32]w[119]e[101]n[110]t[116] [32]L[76]i[105]k[107]e[101] [32]g[103]i[105]d[100]d[100]y[121] [32]V[86]e[101]n[110]u[117]s[115],[44] [32]w[119]h[104]e[101]n[110] [32]q[113]u[117]i[105]t[116]e[101] [32]g[103]a[97]i[105]l[108]y[121],[44]
{214} I[73]n[110] [32]m[109]a[97]n[110]'[39]s[115] [32]a[97]t[116]t[116]i[105]r[114]e[101] [32]a[97]l[108]l[108] [32]a[97]r[114]r[114]a[97]y[121]e[101]d[100],[44] [32]T[84]h[104]e[101] [32]g[103]o[111]d[100]d[100]e[101]s[115]s[115] [32]c[99]o[111]m[109]e[101]s[115] [32]t[116]o[111] [32]m[109]a[97]s[115]q[113]u[117]e[101]r[114]a[97]d[100]e[101].[46]
{215} X[88]X[88]V[86]I[73]
{216} T[84]h[104]e[101] [32]m[109]o[111]d[100]e[101]r[114]n[110] [32]t[116]a[97]s[115]t[116]e[101] [32]o[111]f[102] [32]h[104]i[105]s[115] [32]a[97]t[116]t[116]i[105]r[114]e[101],[44] [32]T[84]o[111] [32]k[107]e[101]e[101]p[112] [32]y[121]o[111]u[117]r[114] [32]c[99]u[117]r[114]i[105]o[111]u[117]s[115] [32]g[103]a[97]z[122]e[101],[44]
{217} T[84]o[111] [32]m[109]e[101]e[101]t[116] [32]t[116]h[104]e[101] [32]s[115]c[99]h[104]o[111]l[108]a[97]r[114] [32]w[119]o[111]r[114]l[108]d[100]'[39]s[115] [32]d[100]e[101]s[115]i[105]r[114]e[101] [32]I[73] [32]c[99]o[111]u[117]l[108]d[100] [32]d[100]e[101]s[115]c[99]r[114]i[105]b[98]e[101],[44] [32]y[121]o[111]u[117]'[39]d[100] [32]b[98]e[101] [32]a[97]m[109]a[97]z[122]e[101]d[100].[46]
{218} O[79]f[102] [32]c[99]o[111]u[117]r[114]s[115]e[101],[44] [32]i[105]t[116] [32]w[119]o[111]u[117]l[108]d[100] [32]b[98]e[101] [32]s[115]o[111] [32]b[98]o[111]l[108]d[100],[44] [32]D[68]e[101]s[115]c[99]r[114]i[105]b[98]i[105]n[110]g[103] [32]i[105]s[115] [32]w[119]h[104]a[97]t[116] [32]I[73] [32]m[109]u[117]s[115]t[116] [32]h[104]o[111]l[108]d[100].[46]
{219} B[66] [32]B[66]y[121] [32]p[112]a[97]n[110]t[116]a[97]l[108]o[111]n[110]e[101]s[115],[44] [32]f[102]r[114]a[97]c[99],[44] [32]g[103]i[105]l[108]l[108]e[101]t[116]t[116]e[101] [32]-[45] [32]I[73]n[110] [32]R[82]u[117]s[115]s[115]i[105]a[97]n[110] [32]t[116]h[104]e[101]y[121] [32]a[97]r[114]e[101] [32]a[97]b[98]s[115]e[101]n[110]t[116] [32]y[121]e[101]t[116].[46]
{220} I[73] [32]n[110]o[111]w[119] [32]s[115]e[101]e[101],[44] [32]o[111]f[102] [32]i[105]t[116] [32]c[99]o[111]n[110]f[102]e[101]s[115]s[115]i[105]n[110]g[103],[44] [32]T[84]h[104]a[97]t[116] [32]e[101]v[118]e[101]n[110] [32]m[109]y[121] [32]s[115]u[117]c[99]h[104] [32]p[112]o[111]o[111]r[114] [32]s[115]t[116]y[121]l[108]e[101]
{221} Y[89]e[101]t[116] [32]m[109]i[105]g[103]h[104]t[116] [32]b[98]e[101] [32]l[108]e[101]s[115]s[115] [32]f[102]u[117]l[108]f[102]i[105]l[108]l[108]e[101]d[100] [32]f[102]o[111]r[114] [32]w[119]h[104]i[105]l[108]e[101] [32]B[66]y[121] [32]f[102]o[111]r[114]e[101]i[105]g[103]n[110] [32]w[119]o[111]r[114]d[100]s[115] [32]w[119]i[105]t[116]h[104]o[111]u[117]t[116] [32]p[112]r[114]e[101]s[115]s[115]i[105]n[110]g[103],[44]
{222} Y[89]e[101]t[116] [32]l[108]o[111]n[110]g[103] [32]a[97]g[103]o[111] [32]d[100]i[105]d[100] [32]I[73] [32]l[108]o[111]o[111]k[107] [32]F[70]o[111]r[114] [32]w[119]o[111]r[114]d[100]s[115] [32]i[105]n[110] [32]A[65]c[99]a[97]d[100]e[101]m[109]i[105]c[99] [32]B[66]o[111]o[111]k[107].[46]
{223} X[88]X[88]V[86]I[73]I[73]
{224} T[84]o[111] [32]o[111]t[116]h[104]e[101]r[114] [32]t[116]h[104]i[105]n[110]g[103]s[115] [32]l[108]e[101]t[116]'[39]s[115] [32]m[109]a[97]k[107]e[101] [32]a[97]p[112]p[112]r[114]o[111]a[97]c[99]h[104]:[58] [32]F[70]o[111]r[114] [32]b[98]a[97]l[108]l[108]e[101]t[116] [32]w[119]e[101] [32]s[115]h[104]a[97]l[108]l[108] [32]h[104]u[117]r[114]r[114]y[121] [32]u[117]p[112].[46]
{225} T[84]o[111] [32]i[105]t[116] [32]h[104]e[101]a[97]d[100]l[108]o[111]n[110]g[103] [32]i[105]n[110] [32]s[115]i[105]m[109]p[112]l[108]e[101] [32]c[99]o[111]a[97]c[99]h[104] [32]O[79]n[110]e[101]g[103]i[105]n[110] [32]n[110]o[111]w[119] [32]h[104]a[97]s[115] [32]s[115]p[112]e[101]d[100] [32]u[117]p[112]
{226} I[73]n[110] [32]f[102]r[114]o[111]n[110]t[116] [32]o[111]f[102] [32]d[100]a[97]r[114]k[107]e[101]n[110]e[101]d[100] [32]s[115]i[105]l[108]e[101]n[110]t[116] [32]h[104]o[111]m[109]e[101]s[115],[44] [32]A[65]l[108]o[111]n[110]g[103] [32]t[116]h[104]e[101] [32]s[115]l[108]e[101]e[101]p[112]y[121] [32]s[115]t[116]r[114]e[101]e[101]t[116]s[115] [32]i[105]n[110] [32]r[114]o[111]w[119]s[115];[59]
{227} A[65]l[108]l[108] [32]d[100]o[111]u[117]b[98]l[108]e[101] [32]l[108]a[97]n[110]t[116]e[101]r[114]n[110]s[115] [32]i[105]n[110] [32]t[116]h[104]e[101] [32]s[115]i[105]g[103]h[104]t[116] [32]A[65]r[114]e[101] [32]s[115]t[116]r[114]e[101]t[116]c[99]h[104]i[105]n[110]g[103] [32]t[116]h[104]e[101]i[105]r[114] [32]j[106]o[111]y[121]f[102]u[117]l[108] [32]l[108]i[105]g[103]h[104]t[116],[44]
{228} A[65]n[110]d[100] [32]m[109]a[97]k[107]e[101] [32]s[115]o[111]m[109]e[101] [32]r[114]a[97]i[105]n[110]b[98]o[111]w[119]s[115] [32]o[111]n[110] [32]s[115]n[110]o[111]w[119].[46] [32]B[66]y[121] [32]l[108]a[97]m[109]p[112]i[105]o[111]n[110]s[115] [32]d[100]o[111]t[116]t[116]e[101]d[100] [32]f[102]r[114]o[111]m[109] [32]t[116]h[104]e[101] [32]s[115]i[105]d[100]e[101]s[115]
{229} A[65] [32]s[115]p[112]l[108]e[101]n[110]d[100]i[105]d[100] [32]h[104]o[111]u[117]s[115]e[101] [32]n[110]o[111]w[119] [32]s[115]h[104]i[105]n[110]e[101]s[115],[44] [32]I[73]n[110] [32]w[119]i[105]n[110]d[100]o[111]w[119]s[115] [32]s[115]o[111]m[109]e[101] [32]s[115]h[104]a[97]d[100]e[101]s[115] [32]c[99]a[97]n[110] [32]f[102]l[108]o[111]w[119],[44]
{230} A[65]p[112]p[112]e[101]a[97]r[114] [32]p[112]r[114]o[111]f[102]i[105]l[108]e[101]s[115] [32]o[111]f[102] [32]h[104]e[101]a[97]d[100]s[115] [32]O[79]f[102] [32]l[108]a[97]d[100]i[105]e[101]s[115] [32]a[97]n[110]d[100] [32]o[111]f[102] [32]f[102]a[97]s[115]h[104]i[105]o[111]n[110] [32]c[99]r[114]a[97]n[110]k[107]s[115].[46]
{231} X[88]X[88]V[86]I[73]I[73]I[73]
{232} M[77]y[121] [32]E[69]u[117]g[103]e[101]n[110]e[101] [32]i[105]s[115] [32]i[105]n[110] [32]f[102]r[114]o[111]n[110]t[116] [32]o[111]f[102] [32]h[104]o[111]m[109]e[101].[46] [32]H[72]a[97]l[108]l[108] [32]p[112]o[111]r[114]t[116]e[101]r[114] [32]s[115]h[104]a[97]d[100]f[102]l[108]y[121] [32]h[104]e[101] [32]b[98]y[121]p[112]a[97]s[115]s[115]e[101]d[100],[44]
{233} U[85]p[112] [32]m[109]a[97]r[114]b[98]l[108]e[101] [32]f[102]o[111]o[111]t[116]s[115]t[116]e[101]p[112]s[115] [32]h[104]e[101] [32]h[104]a[97]s[115] [32]f[102]l[108]o[111]w[119]n[110],[44] [32]W[87]i[105]t[116]h[104] [32]h[104]a[97]n[110]d[100] [32]h[104]a[97]s[115] [32]m[109]e[101]n[110]d[100]e[101]d[100] [32]h[104]a[97]i[105]r[114] [32]f[102]a[97]s[115]t[116].[46]
{234} C[67]a[97]m[109]e[101] [32]i[105]n[110].[46]
{235} T[84]h[104]e[101] [32]h[104]a[97]l[108]l[108] [32]i[105]s[115] [32]f[102]u[117]l[108]l[108] [32]o[111]f[102] [32]c[99]r[114]o[111]w[119]d[100];[59] [32]T[84]h[104]e[101] [32]m[109]u[117]s[115]i[105]c[99]'[39]s[115] [32]w[119]e[101]a[97]r[114]y[121] [32]o[111]f[102] [32]s[115]o[111]u[117]n[110]d[100];[59]
{236} M[77]a[97]z[122]u[117]r[114]k[107]a[97] [32]i[105]s[115] [32]t[116]h[104]e[101] [32]c[99]r[114]o[111]w[119]d[100]'[39]s[115] [32]c[99]h[104]o[111]i[105]c[99]e[101];[59] [32]A[65]l[108]l[108] [32]r[114]o[111]u[117]n[110]d[100] [32]a[97]r[114]e[101] [32]c[99]r[114]u[117]s[115]h[104] [32]a[97]n[110]d[100] [32]n[110]o[111]i[105]s[115]e[101];[59]
{237} T[84]h[104]e[101] [32]s[115]p[112]u[117]r[114]s[115] [32]o[111]f[102] [32]h[104]o[111]r[114]s[115]e[101]-[45]g[103]u[117]a[97]r[114]d[100]s[115]-[45]m[109]a[97]n[110] [32]a[97]r[114]e[101] [32]j[106]i[105]n[110]g[103]l[108]i[105]n[110]g[103],[44] [32]E[69]a[97]c[99]h[104] [32]f[102]o[111]o[111]t[116] [32]o[111]f[102] [32]p[112]r[114]e[101]t[116]t[116]y[121] [32]l[108]a[97]d[100]i[105]e[101]s[115] [32]f[102]l[108]i[105]e[101]s[115],[44]
{238} A[65]t[116] [32]t[116]h[104]e[101]i[105]r[114] [32]f[102]a[97]s[115]c[99]i[105]n[110]a[97]t[116]i[105]n[110]g[103] [32]s[115]i[105]g[103]n[110]s[115] [32]T[84]h[104]e[101] [32]f[102]l[108]a[97]m[109]i[105]n[110]g[103] [32]l[108]o[111]o[111]k[107]s[115] [32]o[111]f[102] [32]m[109]e[101]n[110] [32]a[97]r[114]e[101] [32]f[102]l[108]e[101]e[101]t[116]i[105]n[110]g[103].[46]
{239} T[84]h[104]r[114]o[111]u[117]g[103]h[104] [32]r[114]o[111]a[97]r[114] [32]o[111]f[102] [32]f[102]i[105]d[100]d[100]l[108]e[101]s[115] [32]n[110]e[101]v[118]e[101]r[114] [32]t[116]h[104]r[114]i[105]v[118]e[101]s[115] [32]T[84]h[104]e[101] [32]j[106]e[101]a[97]l[108]o[111]u[117]s[115] [32]w[119]h[104]i[105]s[115]p[112]e[101]r[114] [32]o[111]f[102] [32]s[115]t[116]y[121]l[108]e[101]d[100] [32]w[119]i[105]v[118]e[101]s[115].[46]
{240} X[88]X[88]I[73]X[88]
{241} I[73]n[110] [32]d[100]a[97]y[121]s[115] [32]o[111]f[102] [32]g[103]a[97]i[105]e[101]t[116]y[121] [32]a[97]n[110]d[100] [32]w[119]i[105]s[115]h[104]e[101]s[115] [32]I[73] [32]c[99]o[111]u[117]l[108]d[100] [32]a[97]t[116] [32]b[98]a[97]l[108]l[108]e[101]t[116]s[115] [32]l[108]o[111]s[115]e[101] [32]m[109]y[121] [32]w[119]i[105]t[116];[59]
{242} I[73]t[116]'[39]s[115] [32]b[98]e[101]t[116]t[116]e[101]r[114] [32]p[112]l[108]a[97]c[99]e[101] [32]f[102]o[111]r[114] [32]p[112]a[97]s[115]s[115]i[105]n[110]g[103] [32]l[108]e[101]t[116]t[116]e[101]r[114]s[115] [32]f[102]i[105]t[116].[46]
{243} O[79]h[104],[44] [32]y[121]o[111]u[117],[44] [32]t[116]h[104]e[101] [32]h[104]u[117]s[115]b[98]a[97]n[110]d[100]s[115] [32]s[115]o[111] [32]h[104]o[111]n[110]o[111]u[117]r[114]e[101]d[100]![33]
{244} T[84]o[111] [32]y[121]o[111]u[117] [32]I[73]'[39]l[108]l[108] [32]g[103]i[105]v[118]e[101] [32]m[109]y[121] [32]s[115]e[101]r[114]v[118]i[105]c[99]e[101];[59] [32]f[102]o[111]r[114]w[119]a[97]r[114]d[100] [32]Y[89]o[111]u[117] [32]k[107]e[101]e[101]p[112] [32]o[111]n[110] [32]m[109]i[105]n[110]d[100] [32]m[109]y[121] [32]s[115]p[112]e[101]e[101]c[99]h[104] [32]t[116]o[111] [32]y[121]o[111]u[117];[59]
{245} I[73]'[39]d[100] [32]l[108]i[105]k[107]e[101] [32]a[97]n[110]e[101]w[119] [32]t[116]o[111] [32]w[119]a[97]r[114]n[110] [32]a[97]l[108]l[108] [32]y[121]o[111]u[117]:[58] [32]Y[89]o[111]u[117],[44] [32]m[109]o[111]t[116]h[104]e[101]r[114]s[115],[44] [32]s[115]h[104]o[111]u[117]l[108]d[100] [32]b[98]e[101] [32]m[109]o[111]r[114]e[101] [32]s[115]e[101]v[118]e[101]r[114]e[101],[44]
{246} W[87]h[104]i[105]l[108]e[101] [32]l[108]o[111]o[111]k[107]i[105]n[110]g[103] [32]a[97]f[102]t[116]e[101]r[114] [32]g[103]i[105]r[114]l[108]s[115],[44] [32]a[97]n[110]d[100] [32]y[121]e[101]t[116] [32]A[65]t[116] [32]t[116]h[104]e[101]m[109] [32]k[107]e[101]e[101]p[112] [32]s[115]t[116]r[114]i[105]c[99]t[116]l[108]y[121] [32]y[121]o[111]u[117]r[114] [32]l[108]o[111]r[114]n[110]e[101]t[116]t[116]e[101]![33]
{247} I[73]f[102] [32]n[110]o[111]t[116].[46].[46].[46] [32]i[105]f[102] [32]n[110]o[111]t[116],[44] [32]l[108]e[101]t[116] [32]G[71]o[111]d[100] [32]d[100]e[101]l[108]i[105]v[118]e[101]r[114]![33]
{248} I[73] [32]w[119]r[114]i[105]t[116]e[101] [32]i[105]t[116],[44] [32]a[97]s[115] [32]f[102]o[111]r[114] [32]l[108]o[111]n[110]g[103] [32]m[109]y[121] [32]t[116]i[105]m[109]e[101] [32]I[73] [32]h[104]a[97]v[118]e[101]n[110]'[39]t[116] [32]a[97]n[110]y[121] [32]s[115]i[105]n[110] [32]o[111]f[102] [32]m[109]i[105]n[110]e[101].[46]
{249} X[88]X[88]X[88]
{250} A[65]l[108]a[97]s[115]![33] [32]f[102]o[111]r[114] [32]f[102]u[117]n[110]s[115],[44] [32]w[119]h[104]i[105]c[99]h[104] [32]c[99]a[97]n[110] [32]b[98]e[101] [32]d[100]i[105]f[102]f[102]e[101]r[114]e[101]d[100],[44] [32]I[73]'[39]v[118]e[101] [32]r[114]u[117]i[105]n[110]e[101]d[100] [32]m[109]u[117]c[99]h[104] [32]o[111]f[102] [32]o[111]w[119]n[110] [32]l[108]i[105]f[102]e[101].[46]
{251} B[66]u[117]t[116] [32]i[105]f[102] [32]t[116]h[104]e[101] [32]m[109]o[111]r[114]a[97]l[108]s[115] [32]n[110]e[101]v[118]e[101]r[114] [32]s[115]h[104]i[105]f[102]t[116]e[101]d[100],[44] [32]M[77]y[121] [32]l[108]o[111]v[118]e[101] [32]t[116]o[111] [32]b[98]a[97]l[108]l[108]e[101]t[116]s[115] [32]c[99]o[111]u[117]l[108]d[100] [32]s[115]u[117]r[114]v[118]i[105]v[118]e[101].[46]
{252} I[73] [32]l[108]i[105]k[107]e[101] [32]t[116]e[101]e[101]n[110]a[97]g[103]e[101]'[39]s[115] [32]l[108]i[105]v[118]e[101]l[108]y[121] [32]m[109]a[97]d[100]n[110]e[101]s[115]s[115],[44] [32]T[84]h[104]e[101] [32]t[116]i[105]g[103]h[104]t[116]n[110]e[101]s[115]s[115],[44] [32]b[98]r[114]i[105]g[103]h[104]t[116]n[110]e[101]s[115]s[115] [32]a[97]n[110]d[100] [32]t[116]h[104]e[101] [32]g[103]l[108]a[97]d[100]n[110]e[101]s[115]s[115];[59]
{253} O[79]f[102] [32]l[108]a[97]d[100]i[105]e[101]s[115] [32]w[119]e[101]l[108]l[108]-[45]c[99]o[111]n[110]s[115]i[105]d[100]e[101]r[114]e[101]d[100] [32]d[100]r[114]e[101]s[115]s[115].[46] [32]I[73] [32]l[108]o[111]v[118]e[101] [32]g[103]i[105]r[114]l[108]s[115] [32]f[102]e[101]e[101]t[116].[46] [32]B[66]u[117]t[116] [32]i[105]t[116]'[39]s[115] [32]a[97] [32]s[115]t[116]r[114]e[101]s[115]s[115]
{254} T[84]o[111] [32]t[116]r[114]y[121] [32]t[116]o[111] [32]f[102]i[105]n[110]d[100] [32]i[105]n[110] [32]R[82]u[117]s[115]s[115]i[105]a[97] [32]w[119]h[104]o[111]l[108]e[101] [32]O[79]f[102] [32]t[116]h[104]e[101]m[109] [32]t[116]h[104]r[114]e[101]e[101] [32]p[112]a[97]i[105]r[114]s[115] [32]s[115]t[116]r[114]a[97]i[105]g[103]h[104]t[116] [32]a[97]n[110]d[100] [32]f[102]i[105]n[110]e[101].[46]
{255} A[65]h[104]![33] [32]I[73]'[39]l[108]l[108] [32]f[102]o[111]r[114]e[101]v[118]e[101]r[114] [32]k[107]e[101]e[101]p[112] [32]i[105]n[110] [32]m[109]i[105]n[110]d[100] [32]S[83]m[109]a[97]l[108]l[108] [32]f[102]e[101]e[101]t[116] [32]o[111]f[102] [32]l[108]a[97]d[100]y[121].[46]
{256} S[83]a[97]d[100] [32]a[97]n[110]d[100] [32]c[99]o[111]l[108]d[100],[44]
{257} I[73] [32]d[100]o[111] [32]r[114]e[101]m[109]e[101]m[109]b[98]e[101]r[114] [32]t[116]h[104]e[101]m[109];[59] [32]i[105]n[110] [32]d[100]r[114]e[101]a[97]m[109] [32]T[84]h[104]e[101]y[121] [32]t[116]r[114]o[111]u[117]b[98]l[108]e[101] [32]a[97]l[108]l[108] [32]m[109]y[121] [32]h[104]e[101]a[97]r[114]t[116],[44] [32]s[115]u[117]c[99]h[104] [32]g[103]r[114]i[105]m[109].[46]
{258} X[88]X[88]X[88]I[73]
{259} I[73]n[110] [32]w[119]h[104]a[97]t[116] [32]a[97] [32]w[119]a[97]s[115]t[116]e[101],[44] [32]w[119]h[104]e[101]n[110]?[63] [32]w[119]h[104]e[101]r[114]e[101]?[63] [32]h[104]o[111]w[119]?[63] [32]Y[89]o[111]u[117],[44] [32]m[109]a[97]d[100]m[109]a[97]n[110].[46] [32]w[119]i[105]l[108]l[108] [32]a[97]l[108]l[108] [32]t[116]h[104]e[101]m[109] [32]f[102]o[111]r[114]g[103]e[101]t[116]?[63]
{260} A[65]h[104],[44] [32]f[102]e[101]e[101]t[116],[44] [32]s[115]u[117]c[99]h[104] [32]s[115]m[109]a[97]l[108]l[108],[44] [32]w[119]h[104]e[101]r[114]e[101] [32]a[97]r[114]e[101] [32]y[121]o[111]u[117] [32]f[102]l[108]o[111]w[119],[44] [32]W[87]h[104]a[97]t[116] [32]v[118]e[101]r[114]n[110]a[97]l[108] [32]p[112]l[108]a[97]n[110]t[116]s[115] [32]a[97]r[114]e[101] [32]t[116]r[114]a[97]m[109]p[112]l[108]i[105]n[110]g[103] [32]y[121]e[101]t[116]?[63]
{261} I[73]n[110] [32]e[101]a[97]s[115]t[116]e[101]r[114]n[110] [32]c[99]o[111]m[109]f[102]o[111]r[114]t[116] [32]b[98]e[101]i[105]n[110]g[103] [32]c[99]h[104]e[101]r[114]i[105]s[115]h[104]e[101]d[100] [32]S[83]a[97]d[100] [32]n[110]o[111]r[114]t[116]h[104]e[101]r[114]n[110] [32]s[115]n[110]o[111]w[119] [32]t[116]o[111] [32]e[101]m[109]b[98]e[101]l[108]l[108]i[105]s[115]h[104].[46]
{262} Y[89]o[111]u[117] [32]n[110]e[101]v[118]e[101]r[114] [32]s[115]t[116]a[97]m[109]p[112]e[101]d[100] [32]y[121]o[111]u[117]r[114] [32]s[115]m[109]a[97]l[108]l[108] [32]f[102]o[111]o[111]t[116]-[45]p[112]r[114]i[105]n[110]t[116]s[115].[46] [32]Y[89]o[111]u[117] [32]l[108]i[105]k[107]e[101]d[100] [32]s[115]m[109]o[111]o[111]t[116]h[104] [32]c[99]a[97]r[114]p[112]e[101]r[114]t[116]s[115] [32]o[111]f[102] [32]s[115]o[111]m[109]e[101] [32]p[112]r[114]i[105]n[110]t[116]s[115]
{263} T[84]o[111] [32]t[116]o[111]u[117]c[99]h[104] [32]i[105]n[110] [32]s[115]p[112]l[108]e[101]n[110]d[100]i[105]d[100] [32]a[97]d[100]m[109]i[105]r[114]a[97]t[116]i[105]o[111]n[110].[46]
{264} I[73]s[115] [32]i[105]t[116] [32]h[104]i[105]g[103]h[104] [32]t[116]i[105]m[109]e[101] [32]a[97]s[115] [32]I[73] [32]f[102]o[111]r[114]g[103]o[111]t[116]
{265} F[70]o[111]r[114] [32]y[121]o[111]u[117] [32]t[116]h[104]e[101] [32]g[103]l[108]o[111]r[114]y[121] [32]a[97]n[110]d[100] [32]t[116]h[104]e[101] [32]l[108]a[97]u[117]d[100],[44] [32]T[84]h[104]e[101] [32]f[102]a[97]t[116]h[104]e[101]r[114]'[39]s[115] [32]l[108]a[97]n[110]d[100],[44] [32]i[105]n[110]c[99]a[97]r[114]c[99]e[101]r[114]a[97]t[116]i[105]o[111]n[110]?[63]
{266} B[66]u[117]t[116] [32]h[104]a[97]p[112]p[112]i[105]n[110]e[101]s[115]s[115] [32]o[111]f[102] [32]y[121]o[111]u[117]t[116]h[104] [32]h[104]a[97]s[115] [32]g[103]o[111]n[110]e[101] [32]L[76]i[105]k[107]e[101] [32]l[108]i[105]g[103]h[104]t[116] [32]f[102]o[111]o[111]t[116]-[45]p[112]r[114]i[105]n[110]t[116]s[115] [32]i[105]n[110] [32]f[102]i[105]e[101]l[108]d[100]s[115] [32]f[102]o[111]r[114]l[108]o[111]n[110]e[101].[46]
{267} X[88]X[88]X[88]I[73]I[73]
{268} D[68]i[105]a[97]n[110]a[97]'[39]s[115] [32]b[98]r[114]e[101]a[97]s[115]t[116]s[115],[44] [32]t[116]h[104]e[101] [32]c[99]h[104]e[101]e[101]k[107]s[115] [32]o[111]f[102] [32]F[70]l[108]o[111]r[114]a[97] [32]D[68]e[101]l[108]i[105]g[103]h[104]t[116]f[102]u[117]l[108] [32]a[97]r[114]e[101],[44] [32]m[109]y[121] [32]f[102]r[114]e[101]i[105]n[110]d[100]s[115],[44] [32]y[121]o[111]u[117] [32]s[115]e[101]e[101]![33]
{269} B[66]u[117]t[116] [32]f[102]o[111]o[111]t[116],[44] [32]s[115]u[117]c[99]h[104] [32]s[115]m[109]a[97]l[108]l[108],[44] [32]o[111]f[102] [32]T[84]e[101]r[114]p[112]s[115]i[105]c[99]h[104]o[111]r[114]e[101] [32]M[77]o[111]r[114]e[101] [32]c[99]h[104]a[97]r[114]m[109]i[105]n[110]g[103] [32]s[115]o[111]m[109]e[101]w[119]h[104]a[97]t[116] [32]i[105]s[115] [32]f[102]o[111]r[114] [32]m[109]e[101].[46]
{270} I[73]t[116] [32]i[105]s[115] [32]p[112]r[114]e[101]d[100]i[105]c[99]t[116]i[105]n[110]g[103] [32]t[116]o[111] [32]m[109]y[121] [32]g[103]a[97]z[122]i[105]n[110]g[103] [32]R[82]e[101]w[119]a[97]r[114]d[100],[44] [32]w[119]h[104]i[105]c[99]h[104] [32]I[73] [32]c[99]a[97]n[110]'[39]t[116] [32]b[98]e[101] [32]a[97]p[112]p[112]r[114]a[97]i[105]s[115]i[105]n[110]g[103],[44]
{271} C[67]o[111]n[110]d[100]i[105]t[116]i[105]o[111]n[110]a[97]l[108]l[108]y[121] [32]b[98]y[121] [32]i[105]t[116]s[115] [32]c[99]h[104]a[97]r[114]m[109]s[115] [32]S[83]e[101]l[108]f[102]-[45]w[119]i[105]l[108]l[108]e[101]d[100] [32]d[100]e[101]s[115]i[105]r[114]e[101]s[115] [32]i[105]t[116] [32]a[97]l[108]a[97]r[114]m[109]s[115].[46]
{272} M[77]y[121] [32]f[102]r[114]i[105]e[101]n[110]d[100] [32]E[69]l[108]v[118]i[105]n[110]a[97]![33] [32]N[78]o[111]t[116]h[104]i[105]n[110]g[103] [32]h[104]i[105]n[110]d[100]e[101]r[114]s[115] [32]T[84]o[111] [32]l[108]o[111]v[118]e[101] [32]i[105]t[116] [32]u[117]n[110]d[100]e[101]r[114] [32]t[116]a[97]b[98]l[108]e[101] [32]c[99]l[108]o[111]t[116]h[104],[44]
{273} I[73]n[110] [32]s[115]p[112]r[114]i[105]n[110]g[103] [32]a[97]t[116] [32]g[103]r[114]a[97]s[115]s[115] [32]a[97]n[110]d[100] [32]s[115]o[111] [32]f[102]o[111]r[114]t[116]h[104],[44] [32]A[65]t[116] [32]i[105]r[114]o[111]n[110] [32]f[102]i[105]r[114]e[101]-[45]p[112]l[108]a[97]c[99]e[101] [32]i[105]n[110] [32]w[119]i[105]n[110]t[116]e[101]r[114]s[115],[44]
{274} A[65]t[116] [32]s[115]m[109]o[111]o[111]t[116]h[104] [32]o[111]f[102] [32]p[112]a[97]r[114]q[113]u[117]e[101]t[116]s[115] [32]i[105]n[110] [32]t[116]h[104]e[101] [32]h[104]a[97]l[108]l[108]s[115],[44] [32]A[65]t[116] [32]s[115]e[101]a[97] [32]o[111]n[110] [32]g[103]r[114]a[97]n[110]i[105]t[116]e[101] [32]a[97]n[110]d[100] [32]a[97]t[116] [32]m[109]a[97]l[108]l[108]s[115].[46]
{275} X[88]X[88]X[88]I[73]I[73]I[73]
{276} I[73] [32]k[107]e[101]e[101]p[112] [32]i[105]n[110] [32]m[109]i[105]n[110]d[100] [32]t[116]h[104]e[101] [32]s[115]e[101]a[97],[44] [32]q[113]u[117]i[105]t[116]e[101] [32]s[115]t[116]o[111]r[114]m[109]y[121]:[58] [32]W[87]h[104]a[97]t[116] [32]e[101]n[110]v[118]i[105]o[111]u[117]s[115] [32]I[73] [32]w[119]a[97]s[115] [32]w[119]h[104]e[101]n[110] [32]w[119]a[97]v[118]e[101]s[115]
{277} I[73]n[110] [32]t[116]u[117]r[114]n[110] [32]t[116]o[111] [32]g[103]i[105]r[114]l[108] [32]w[119]e[101]r[114]e[101] [32]a[97]l[108]l[108] [32]r[114]e[101]t[116]u[117]r[114]n[110]i[105]n[110]g[103] [32]W[87]i[105]t[116]h[104] [32]l[108]o[111]v[118]e[101] [32]t[116]o[111] [32]f[102]e[101]e[101]t[116] [32]t[116]o[111] [32]l[108]a[97]y[121] [32]t[116]h[104]e[101]m[109]s[115]e[101]l[108]v[118]e[101]s[115].[46]
{278} W[87]i[105]t[116]h[104] [32]w[119]a[97]v[118]e[101]s[115] [32]I[73] [32]w[119]i[105]s[115]h[104]e[101]d[100] [32]m[109]y[121]s[115]e[101]l[108]f[102] [32]s[115]o[111]m[109]e[101]h[104]o[111]w[119] [32]T[84]o[111] [32]t[116]o[111]u[117]c[99]h[104] [32]h[104]e[101]r[114] [32]d[100]e[101]a[97]r[114] [32]f[102]e[101]e[101]t[116] [32]b[98]y[121] [32]m[109]o[111]u[117]t[116]h[104].[46]
{279} A[65]m[109]o[111]n[110]g[103] [32]a[97]l[108]l[108] [32]t[116]h[104]o[111]s[115]e[101] [32]a[97]r[114]d[100]e[101]n[110]t[116] [32]d[100]a[97]y[121]s[115] [32]O[79]f[102] [32]b[98]o[111]i[105]l[108]i[105]n[110]g[103] [32]y[121]o[111]u[117]t[116]h[104],[44] [32]s[115]u[117]c[99]h[104] [32]b[98]r[114]i[105]g[103]h[104]t[116] [32]a[97]n[110]d[100] [32]g[103]a[97]y[121],[44]
{280} I[73] [32]n[110]e[101]v[118]e[101]r[114] [32]w[119]i[105]s[115]h[104]e[101]d[100] [32]w[119]i[105]t[116]h[104] [32]s[115]u[117]c[99]h[104] [32]a[97] [32]t[116]o[111]r[114]t[116]u[117]r[114]e[101] [32]T[84]o[111] [32]k[107]i[105]s[115]s[115] [32]y[121]o[111]u[117]n[110]g[103] [32]A[65]r[114]m[109]i[105]d[100]'[39]s[115] [32]p[112]r[114]e[101]t[116]t[116]y[121] [32]l[108]i[105]p[112]s[115],[44]
{281} O[79]r[114] [32]r[114]o[111]s[115]e[101]s[115] [32]o[111]f[102] [32]f[102]l[108]a[97]m[109]i[105]n[110]g[103] [32]c[99]h[104]e[101]e[101]k[107]s[115],[44] [32]O[79]r[114] [32]b[98]o[111]s[115]o[111]m[109],[44] [32]w[119]h[104]i[105]c[99]h[104] [32]a[97]w[119]a[97]i[105]t[116]s[115] [32]f[102]o[111]r[114] [32]f[102]o[111]r[114]t[116]u[117]n[110]e[101].[46]
{282} A[65]h[104],[44] [32]n[110]e[101]v[118]e[101]r[114] [32]i[105]m[109]p[112]u[117]l[108]s[115]e[101] [32]o[111]f[102] [32]t[116]h[104]e[101] [32]s[115]e[101]n[110]s[115]e[101] [32]P[80]u[117]t[116] [32]r[114]a[97]c[99]k[107] [32]m[109]y[121] [32]s[115]o[111]u[117]l[108] [32]e[101]v[118]e[101]r[114] [32]h[104]e[101]n[110]c[99]e[101].[46]
{283} X[88]X[88]X[88]I[73]V[86]
{284} B[66]u[117]t[116] [32]o[111]t[116]h[104]e[101]r[114] [32]t[116]i[105]m[109]e[101]s[115] [32]i[105]n[110] [32]m[109]i[105]n[110]d[100] [32]I[73] [32]b[98]e[101]a[97]r[114]![33]
{285} I[73] [32]s[115]a[97]w[119] [32]m[109]y[121]s[115]e[101]l[108]f[102] [32]i[105]n[110] [32]c[99]h[104]e[101]r[114]i[105]s[115]h[104]e[101]d[100] [32]d[100]r[114]e[101]a[97]m[109]
{286} T[84]o[111] [32]k[107]e[101]e[101]p[112] [32]t[116]h[104]e[101] [32]h[104]a[97]p[112]p[112]y[121] [32]s[115]t[116]i[105]r[114]r[114]u[117]p[112] [32]d[100]a[97]r[114]e[101].[46].[46].[46]
{287} M[77]e[101]a[97]n[110]w[119]h[104]i[105]l[108]e[101] [32]s[115]m[109]a[97]l[108]l[108] [32]f[102]o[111]o[111]t[116] [32]i[105]n[110] [32]h[104]a[97]n[110]d[100]s[115] [32]l[108] [32]f[102]e[101]e[101]l[108];[59]
{288} A[65]n[110]d[100] [32]w[119]o[111]r[114]k[107]s[115] [32]a[97]g[103]a[97]i[105]n[110] [32]i[105]m[109]a[97]g[103]i[105]n[110]a[97]t[116]i[105]o[111]n[110].[46] [32]A[65]g[103]a[97]i[105]n[110] [32]h[104]e[101]r[114] [32]t[116]o[111]u[117]c[99]h[104] [32]o[111]f[102] [32]f[102]a[97]s[115]c[99]i[105]n[110]a[97]t[116]i[105]o[111]n[110]
{289} I[73]n[110] [32]c[99]o[111]l[108]d[100] [32]h[104]e[101]a[97]r[114]t[116] [32]i[105]s[115] [32]k[107]i[105]n[110]d[100]l[108]i[105]n[110]g[103] [32]b[98]l[108]o[111]o[111]d[100].[46].[46].[46] [32]A[65]g[103]a[97]i[105]n[110] [32]t[116]h[104]e[101] [32]g[103]r[114]i[105]e[101]f[102],[44] [32]o[111]f[102] [32]l[108]o[111]v[118]e[101] [32]t[116]h[104]e[101] [32]f[102]l[108]o[111]o[111]d[100]![33]
{290} T[84]h[104]e[101] [32]t[116]a[97]l[108]k[107]a[97]t[116]i[105]v[118]e[101] [32]m[109]y[121] [32]l[108]y[121]r[114]e[101]'[39]s[115] [32]t[116]i[105]r[114]e[101]d[100] [32]T[84]o[111] [32]g[103]l[108]o[111]r[114]i[105]f[102]y[121] [32]a[97]l[108]l[108] [32]h[104]a[97]u[117]g[103]h[104]t[116]y[121] [32]r[114]a[97]n[110]k[107]s[115].[46]
{291} T[84]h[104]e[101]y[121] [32]d[100]o[111]n[110]'[39]t[116] [32]c[99]o[111]s[115]t[116] [32]y[121]e[101]t[116] [32]n[110]e[101]i[105]t[116]h[104]e[101]r[114] [32]s[115]e[101]n[110]s[115]e[101],[44] [32]N[78]o[111]r[114] [32]a[97]n[110]y[121] [32]s[115]o[111]n[110]g[103]s[115],[44] [32]b[98]y[121] [32]t[116]h[104]e[101]m[109] [32]i[105]n[110]s[115]p[112]i[105]r[114]e[101]d[100]:[58]
{292} O[79]f[102] [32]s[115]o[111]r[114]c[99]e[101]r[114]e[101]s[115]s[115]e[101]s[115] [32]w[119]o[111]r[114]d[100]s[115] [32]a[97]n[110]d[100] [32]p[112]e[101]e[101]p[112] [32]D[68]e[101]l[108]u[117]s[115]i[105]v[118]e[101] [32]a[97]r[114]e[101].[46].[46].[46] [32]a[97]s[115] [32]t[116]h[104]e[101]i[105]r[114] [32]f[102]e[101]e[101]t[116].[46]
{293} X[88]X[88]X[88]V[86]
{294} W[87]h[104]a[97]t[116]'[39]s[115] [32]m[109]y[121] [32]O[79]n[110]e[101]g[103]i[105]n[110]?[63]
{295} W[87]a[97]y[121] [32]i[105]s[115] [32]e[101]n[110]d[100]l[108]e[101]s[115]s[115] [32]T[84]o[111] [32]b[98]e[101]d[100] [32]f[102]r[114]o[111]m[109] [32]b[98]a[97]l[108]l[108]e[101]t[116];[59] [32]h[104]a[97]l[108]f[102] [32]a[97]s[115]l[108]e[101]e[101]p[112]
{296} H[72]e[101] [32]s[115]p[112]e[101]e[101]d[100]s[115] [32]t[116]h[104]r[114]o[111]u[117]g[103]h[104] [32]P[80]e[101]t[116]e[101]r[114]s[115]b[98]u[117]r[114]g[103],[44] [32]a[97]l[108]l[108] [32]r[114]e[101]s[115]t[116]l[108]e[101]s[115]s[115],[44] [32]A[65]w[119]o[111]k[107]e[101]n[110] [32]b[98]y[121] [32]d[100]r[114]u[117]m[109]s[115]'[39]s[115] [32]b[98]e[101]a[97]t[116].[46]
{297} T[84]h[104]e[101] [32]h[104]a[97]w[119]k[107]e[101]r[114]s[115] [32]w[119]a[97]l[108]k[107],[44] [32]g[103]e[101]t[116]s[115] [32]u[117]p[112] [32]t[116]h[104]e[101] [32]s[115]a[97]l[108]e[101]s[115]m[109]a[97]n[110],[44] [32]I[73]s[115] [32]d[100]r[114]a[97]g[103]g[103]i[105]n[110]g[103] [32]t[116]o[111] [32]c[99]a[97]b[98]s[115]t[116]a[97]n[110]d[100] [32]a[97] [32]c[99]a[97]b[98]m[109]a[97]n[110],[44]
{298} W[87]i[105]t[116]h[104] [32]j[106]u[117]g[103] [32]y[121]o[111]u[117]n[110]g[103] [32]w[119]o[111]m[109]a[97]n[110] [32]g[103]o[111]e[101]s[115] [32]f[102]a[97]s[115]t[116],[44] [32]B[66]y[121] [32]f[102]e[101]e[101]t[116] [32]s[115]h[104]e[101] [32]c[99]r[114]u[117]s[115]h[104]e[101]s[115] [32]s[115]n[110]o[111]w[119]-[45]d[100]u[117]s[115]t[116].[46]
{299} T[84]h[104]e[101] [32]m[109]o[111]r[114]n[110]i[105]n[110]g[103] [32]p[112]l[108]e[101]a[97]s[115]a[97]n[110]t[116] [32]n[110]o[111]i[105]s[115]e[101] [32]a[97]r[114]o[111]s[115]e[101].[46]
{300} E[69]a[97]c[99]h[104] [32]s[115]h[104]u[117]t[116]t[116]e[101]r[114]'[39]s[115] [32]o[111]p[112]e[101]n[110],[44] [32]a[97]n[110]d[100] [32]d[100]r[114]y[121]
{301} B[66]l[108]u[117]e[101] [32]s[115]m[109]o[111]k[107]e[101] [32]r[114]i[105]s[115]e[101]s[115] [32]t[116]o[111] [32]t[116]h[104]e[101] [32]s[115]k[107]y[121],[44] [32]A[65]n[110]d[100] [32]t[116]h[104]o[111]r[114]o[111]u[117]g[103]h[104] [32]G[71]e[101]r[114]m[109]a[97]n[110] [32]b[98]a[97]k[107]e[101]r[114] [32]g[103]o[111]e[101]s[115]
{302} I[73]n[110] [32]p[112]a[97]p[112]e[101]r[114] [32]c[99]a[97]p[112] [32]f[102]o[111]r[114] [32]e[101]a[97]c[99]h[104] [32]o[111]f[102] [32]u[117]s[115] [32]T[84]o[111] [32]o[111]p[112]e[101]n[110] [32]h[104]i[105]s[115] [32]w[119]a[97]s[115]i[105]s[115]t[116]d[100]a[97]s[115].[46]
{303} X[88]X[88]X[88]V[86]I[73]
{304} O[79]f[102] [32]b[98]a[97]l[108]l[108]e[101]t[116]'[39]s[115] [32]n[110]o[111]i[105]s[115]e[101]s[115] [32]b[98]e[101]i[105]n[110]g[103] [32]t[116]i[105]r[114]e[101]d[100],[44] [32]T[84]r[114]a[97]n[110]s[115]f[102]o[111]r[114]m[109]i[105]n[110]g[103] [32]m[109]o[111]r[114]n[110]i[105]n[110]g[103] [32]i[105]n[110]t[116]o[111] [32]n[110]i[105]g[103]h[104]t[116],[44]
{305} H[72]e[101] [32]c[99]a[97]l[108]m[109]l[108]y[121] [32]s[115]l[108]e[101]e[101]p[112]s[115] [32]i[105]n[110] [32]b[98]e[101]d[100],[44] [32]r[114]e[101]t[116]i[105]r[114]e[101]d[100] [32]F[70]r[114]o[111]m[109] [32]p[112]a[97]s[115]t[116]i[105]m[109]e[101]s[115],[44] [32]f[102]l[108]o[111]u[117]r[114]i[105]s[115]h[104]i[105]n[110]g[103] [32]b[98]i[105]g[103] [32]c[99]h[104]i[105]l[108]d[100].[46]
{306} T[84]h[104]e[101] [32]a[97]f[102]t[116]e[101]r[114]n[110]o[111]o[111]n[110] [32]h[104]e[101] [32]p[112]a[97]s[115]s[115]e[101]s[115],[44] [32]r[114]e[101]a[97]d[100]y[121] [32]A[65]g[103]a[97]i[105]n[110] [32]t[116]o[111] [32]w[119]a[97]s[115]t[116]e[101] [32]h[104]i[105]s[115] [32]d[100]a[97]y[121] [32]a[97]l[108]r[114]e[101]a[97]d[100]y[121].[46]
{307} H[72]i[105]s[115] [32]l[108]i[105]f[102]e[101]'[39]s[115] [32]m[109]o[111]n[110]o[111]t[116]o[111]n[110]o[111]u[117]s[115] [32]a[97]n[110]d[100] [32]i[105]s[115] [32]m[109]i[105]x[120]e[101]d[100],[44] [32]T[84]h[104]e[101] [32]s[115]a[97]m[109]e[101] [32]f[102]o[111]r[114] [32]m[109]a[97]n[110]y[121] [32]d[100]a[97]y[121]s[115] [32]i[105]s[115] [32]f[102]i[105]x[120]e[101]d[100],[44]
{308} B[66]u[117]t[116] [32]w[119]a[97]s[115] [32]m[109]y[121] [32]E[69]u[117]g[103]e[101]n[110]e[101] [32]s[115]a[97]t[116]i[105]s[115]f[102]y[121]i[105]n[110]g[103] [32]B[66]y[121] [32]b[98]e[101]i[105]n[110]g[103] [32]f[102]r[114]e[101]e[101] [32]i[105]n[110] [32]p[112]r[114]i[105]m[109]e[101] [32]o[111]f[102] [32]l[108]i[105]f[102]e[101],[44]
{309} A[65]m[109]o[111]n[110]g[103] [32]h[104]i[105]s[115] [32]v[118]i[105]c[99]t[116]o[111]r[114]i[105]e[101]s[115] [32]t[116]o[111] [32]t[116]h[104]r[114]i[105]v[118]e[101],[44] [32]A[65]n[110]d[100] [32]h[104]i[105]s[115] [32]a[97]m[109]u[117]s[115]e[101]m[109]e[101]n[110]t[116]s[115] [32]g[103]r[114]a[97]t[116]i[105]f[102]y[121]i[105]n[110]g[103]?[63]
{310} M[77]a[97]y[121] [32]b[98]e[101],[44] [32]i[105]n[110] [32]v[118]a[97]i[105]n[110] [32]h[104]e[101] [32]w[119]a[97]s[115] [32]a[97]t[116] [32]f[102]e[101]a[97]s[115]t[116]s[115] [32]S[83]u[117]c[99]h[104] [32]c[99]a[97]r[114]e[101]l[108]e[101]s[115]s[115] [32]a[97]n[110]d[100] [32]f[102]i[105]n[110]e[101] [32]a[97]t[116] [32]l[108]e[101]a[97]s[115]t[116]?[63]
{311} X[88]X[88]X[88]V[86]I[73]I[73]
{312} H[72]i[105]s[115] [32]p[112]a[97]s[115]s[115]i[105]o[111]n[110]s[115] [32]w[119]e[101]r[114]e[101] [32]t[116]o[111]o[111] [32]q[113]u[117]i[105]c[99]k[107]l[108]y[121] [32]c[99]o[111]l[108]d[100],[44] [32]A[65]n[110]d[100] [32]h[104]e[101] [32]w[119]a[97]s[115] [32]b[98]o[111]r[114]e[101]d[100] [32]b[98]y[121] [32]w[119]o[111]r[114]l[108]d[100]l[108]y[121] [32]n[110]o[111]i[105]s[115]e[101];[59]
{313} N[78]o[111]t[116] [32]v[118]e[101]r[114]y[121] [32]l[108]o[111]n[110]g[103] [32]h[104]e[101] [32]c[99]o[111]u[117]l[108]d[100] [32]b[98]e[101]h[104]o[111]l[108]d[100] [32]T[84]h[104]e[101] [32]g[103]i[105]r[114]l[108]s[115] [32]a[97]s[115] [32]o[111]b[98]j[106]e[101]c[99]t[116] [32]o[111]f[102] [32]h[104]i[105]s[115] [32]c[99]h[104]o[111]i[105]c[99]e[101];[59]
{314} A[65]d[100]u[117]l[108]t[116]e[101]r[114]i[105]e[101]s[115] [32]w[119]e[101]r[114]e[101] [32]n[110]o[111]t[116] [32]a[97]d[100]o[111]n[110]n[110]g[103];[59] [32]H[72]i[105]s[115] [32]f[102]r[114]i[105]e[101]n[110]d[100]s[115] [32]a[97]n[110]d[100] [32]f[102]r[114]e[101]i[105]n[110]d[100]s[115]h[104]i[105]p[112] [32]m[109]a[97]d[100]e[101] [32]h[104]i[105]m[109] [32]b[98]o[111]r[114]i[105]n[110]g[103],[44]
{315} A[65]s[115] [32]n[110]o[111]w[119] [32]n[110]o[111]t[116] [32]a[97]t[116] [32]a[97]n[110]y[121] [32]t[116]i[105]m[109]e[101] [32]H[72]e[101] [32]c[99]o[111]u[117]l[108]d[100] [32]b[98]e[101]a[97]r[114]-[45]s[115]t[116]e[101]a[97]k[107]s[115] [32]a[97]n[110]d[100] [32]S[83]t[116]r[114]a[97]s[115]s[115]b[98]u[117]r[114]g[103] [32]p[112]i[105]e[101]
{316} W[87]i[105]t[116]h[104] [32]f[102]i[105]z[122]z[122] [32]b[98]y[121] [32]b[98]o[111]t[116]t[116]l[108]e[101] [32]w[119]i[105]n[110]e[101] [32]b[98]e[101] [32]p[112]o[111]u[117]r[114]i[105]n[110]g[103] [32]W[87]h[104]i[105]l[108]e[101] [32]s[115]a[97]y[121]i[105]n[110]g[103] [32]c[99]l[108]e[101]v[118]e[101]r[114] [32]p[112]n[110]c[99]k[107]y[121] [32]w[119]o[111]r[114]d[100] [32]-[45]
{317} B[66]e[101]c[99]a[97]u[117]s[115]e[101] [32]o[111]f[102] [32]a[97]c[99]h[104]e[101] [32]o[111]f[102] [32]o[111]w[119]n[110] [32]h[104]e[101]a[97]d[100].[46] [32]A[65]n[110]d[100],[44] [32]t[116]h[104]o[111]u[117]g[103]h[104] [32]s[115]t[116]a[97]y[121]i[105]n[110]g[103] [32]r[114]a[97]k[107]e[101] [32]a[97]d[100]o[111]r[114]i[105]n[110]g[103],[44]
{318} H[72]e[101] [32]c[99]e[101]a[97]s[115]e[101]d[100] [32]t[116]o[111] [32]l[108]i[105]k[107]e[101] [32]([40]w[119]i[105]t[116]h[104] [32]t[116]h[104]e[101]m[109] [32]w[119]a[97]s[115] [32]l[108]e[101]d[100])[41] [32]I[73]n[110]v[118]e[101]c[99]t[116]i[105]v[118]e[101]s[115],[44] [32]s[115]a[97]b[98]l[108]e[101]s[115] [32]a[97]n[110]d[100] [32]t[116]h[104]e[101] [32]l[108]e[101]a[97]d[100].[46]
{319} X[88]X[88]X[88]V[86]I[73]I[73]I[73]
{320} H[72]i[105]s[115] [32]i[105]l[108]l[108]n[110]e[101]s[115]s[115] [32]n[110]e[101]v[118]e[101]r[114] [32]w[119]a[97]s[115] [32]d[100]i[105]s[115]t[116]i[105]n[110]g[103]u[117]i[105]s[115]h[104]e[101]d[100] [32]F[70]r[114]o[111]m[109] [32]i[105]l[108]l[108]n[110]e[101]s[115]s[115],[44] [32]k[107]n[110]o[111]w[119]n[110] [32]s[115]o[111] [32]f[102]a[97]r[114],[44]
{321} W[87]h[104]i[105]c[99]h[104] [32]t[116]h[104]e[101]y[121] [32]a[97]r[114]e[101] [32]c[99]a[97]l[108]l[108]i[105]n[110]g[103] [32]s[115]p[112]l[108]e[101]e[101]n[110] [32]i[105]n[110] [32]E[69]n[110]g[103]l[108]i[105]s[115]h[104],[44] [32]I[73]n[110] [32]R[82]u[117]s[115]s[115]i[105]a[97]n[110] [32]k[107]n[110]o[111]w[119]n[110] [32]a[97]s[115] [32]k[107]h[104]a[97]n[110]d[100]r[114]a[97].[46]
{322} I[73]t[116] [32]c[99]a[97]u[117]g[103]h[104]t[116] [32]h[104]i[105]m[109] [32]n[110]o[111]w[119] [32]a[97]n[110]d[100] [32]f[102]o[111]r[114] [32]e[101]v[118]e[101]r[114];[59] [32]B[66]u[117]t[116] [32]y[121]e[101]t[116] [32]t[116]o[111] [32]k[107]i[105]l[108]l[108] [32]h[104]i[105]m[109]s[115]e[101]l[108]f[102] [32]h[104]e[101] [32]n[110]e[101]v[118]e[101]r[114],[44]
{323} T[84]h[104]a[97]n[110]k[107]s[115] [32]G[71]o[111]d[100],[44] [32]h[104]a[97]d[100] [32]a[97]n[110]y[121] [32]w[119]i[105]s[115]h[104] [32]t[116]o[111] [32]t[116]r[114]y[121];[59] [32]B[66]u[117]t[116] [32]a[97]t[116] [32]t[116]h[104]e[101] [32]l[108]i[105]f[102]e[101] [32]h[104]i[105]s[115] [32]l[108]o[111]o[111]k[107] [32]w[119]a[97]s[115] [32]w[119]r[114]y[121].[46]
{324} C[67]h[104]i[105]l[108]d[100]-[45]H[72]a[97]r[114]o[111]l[108]d[100]'[39]s[115] [32]c[99]o[111]p[112]y[121],[44] [32]g[103]r[114]i[105]m[109],[44] [32]m[109]o[111]r[114]o[111]s[115]e[101] [32]T[84]o[111] [32]i[105]n[110]n[110]e[101]r[114] [32]r[114]o[111]o[111]m[109]s[115] [32]a[97]n[110]d[100] [32]h[104]a[97]l[108]l[108]s[115] [32]h[104]e[101] [32]c[99]a[97]m[109]e[101];[59]
{325} T[84]h[104]e[101] [32]b[98]o[111]s[115]t[116]o[111]n[110],[44] [32]g[103]o[111]s[115]s[115]i[105]p[112]s[115] [32]w[119]e[101]r[114]e[101] [32]i[105]n[110] [32]v[118]a[97]i[105]n[110],[44] [32]O[79]r[114] [32]d[100]e[101]a[97]r[114] [32]l[108]o[111]o[111]k[107]s[115] [32]o[111]r[114] [32]s[115]i[105]g[103]h[104]s[115] [32]-[45] [32]a[97]l[108]l[108] [32]t[116]h[104]o[111]s[115]e[101]
{326} D[68]i[105]d[100] [32]n[110]e[101]v[118]e[101]r[114] [32]t[116]o[111]u[117]c[99]h[104] [32]h[104]i[105]r[114]e[101] [32]a[97]s[115] [32]b[98]e[101]f[102]o[111]r[114]e[101],[44] [32]H[72]e[101] [32]c[99]a[97]u[117]g[103]h[104]t[116] [32]t[116]h[104]e[101] [32]s[115]i[105]g[103]h[104]t[116] [32]o[111]f[102] [32]n[110]o[111]t[116]h[104]i[105]n[110]g[103] [32]m[109]o[111]r[114]e[101].[46]
{327} X[88]X[88]X[88]I[73]X[88],[44] [32]X[88]L[76],[44] [32]X[88]L[76]I[73] [32].[46].[46].[46].[46].[46].[46].[46].[46].[46] [32] [9].[46].[46].[46].[46].[46].[46].[46].[46].[46] [32] [9].[46].[46].[46].[46].[46].[46].[46].[46].[46]
{328} X[88]L[76]I[73]I[73]
{329} O[79]f[102] [32]h[104]i[105]g[103]h[104]e[101]r[114] [32]w[119]o[111]r[114]l[108]d[100] [32]t[116]h[104]e[101] [32]q[113]u[117]e[101]e[101]r[114] [32]l[108]a[97]d[100]i[105]e[101]s[115]![33]
{330} T[84]h[104]e[101] [32]f[102]i[105]r[114]s[115]t[116] [32]h[104]e[101] [32]m[109]a[97]d[100]e[101] [32]-[45] [32]h[104]e[101] [32]l[108]e[101]f[102]t[116] [32]y[121]o[111]u[117] [32]a[97]l[108]l[108];[59]
{331} I[73]t[116]'[39]s[115] [32]t[116]r[114]u[117]e[101],[44] [32]t[116]h[104]a[97]t[116] [32]a[97]l[108]l[108] [32]w[119]e[101] [32]l[108]i[105]v[118]e[101] [32]i[105]n[110] [32]a[97]g[103]e[101]s[115],[44] [32]W[87]h[104]e[101]n[110] [32]r[114]a[97]t[116]h[104]e[101]r[114] [32]b[98]o[111]r[114]i[105]n[110]g[103] [32]i[105]s[115] [32]h[104]i[105]g[103]h[104] [32]c[99]a[97]l[108]l[108].[46]
{332} A[65]r[114]i[105]d[100] [32]t[116]h[104]o[111]u[117]g[103]h[104] [32]l[108]a[97]d[100]i[105]e[101]s[115] [32]c[99]a[97]n[110] [32]b[98]e[101] [32]t[116]a[97]l[108]k[107]i[105]n[110]g[103] [32]O[79]f[102] [32]S[83]a[97]y[121] [32]a[97]n[110]d[100] [32]B[66]e[101]n[110]t[116]h[104]a[97]m[109] [32]a[97]t[116] [32]t[116]h[104]e[101] [32]w[119]a[97]l[108]k[107]i[105]n[110]g[103],[44]
{333} B[66]u[117]t[116] [32]a[97]s[115] [32]a[97] [32]w[119]h[104]o[111]l[108]e[101] [32]t[116]h[104]e[101]i[105]r[114] [32]t[116]a[97]l[108]k[107] [32]I[73]s[115] [32]h[104]a[97]r[114]m[109]l[108]e[101]s[115]s[115],[44] [32]b[98]u[117]t[116] [32]u[117]n[110]p[112]l[108]e[101]a[97]s[115]a[97]n[110]t[116] [32]m[109]o[111]c[99]k[107].[46]
{334} B[66]e[101]s[115]i[105]d[100]e[101]s[115],[44] [32]t[116]h[104]e[101]y[121] [32]a[97]l[108]l[108] [32]a[97]r[114]e[101] [32]s[115]o[111] [32]p[112]u[117]r[114]e[101],[44] [32]M[77]a[97]g[103]e[101]s[115]t[116]i[105]c[99],[44] [32]f[102]o[111]r[114] [32]t[116]h[104]e[101] [32]l[108]o[111]v[118]e[101] [32]u[117]n[110]f[102]i[105]t[116],[44]
{335} A[65]r[114]e[101] [32]f[102]u[117]l[108]l[108] [32]o[111]f[102] [32]p[112]i[105]e[101]t[116]y[121],[44] [32]o[111]f[102] [32]w[119]i[105]t[116],[44] [32]S[83]u[117]c[99]h[104] [32]c[99]a[97]u[117]t[116]i[105]o[111]u[117]s[115],[44] [32]t[116]h[104]a[97]t[116] [32]w[119]e[101] [32]c[99]a[97]n[110]'[39]t[116] [32]e[101]n[110]d[100]u[117]r[114]e[101],[44]
{336} A[65]n[110]d[100] [32]a[97]l[108]w[119]a[97]y[121]s[115] [32]t[116]u[117]r[114]n[110]e[101]d[100],[44] [32]f[102]r[114]o[111]m[109] [32]u[117]s[115] [32]-[45] [32]I[73] [32]m[109]e[101]a[97]n[110].[46] [32]T[84]h[104]a[97]t[116] [32]t[116]h[104]e[101]i[105]r[114] [32]l[108]o[111]o[111]k[107]s[115] [32]g[103]i[105]v[118]e[101] [32]r[114]i[105]s[115]e[101] [32]f[102]o[111]r[114] [32]s[115]p[112]l[108]e[101]e[101]n[110].[46]
{337} X[88]L[76]I[73]I[73]I[73]
{338} A[65]n[110]d[100] [32]y[121]o[111]u[117],[44] [32]t[116]h[104]e[101] [32]g[103]i[105]r[114]l[108]s[115] [32]a[97]l[108]l[108] [32]y[121]o[111]u[117]n[110]g[103],[44] [32]g[103]o[111]o[111]d[100] [32]l[108]o[111]o[111]k[107]i[105]n[110]g[103],[44] [32]W[87]h[104]o[111]m[109] [32]d[100]r[114]o[111]s[115]h[104]k[107]i[105]e[101]s[115] [32]q[113]u[117]i[105]c[99]k[107]l[108]y[121] [32]t[116]a[97]k[107]e[101] [32]a[97]w[119]a[97]y[121]
{339} I[73]n[110] [32]l[108]a[97]t[116]e[101] [32]o[111]f[102] [32]e[101]v[118]e[101]n[110]i[105]n[110]g[103],[44] [32]s[115]u[117]c[99]h[104] [32]a[97]m[109]u[117]s[115]i[105]n[110]g[103],[44] [32]A[65]l[108]o[111]n[110]g[103] [32]t[116]h[104]e[101] [32]P[80]e[101]t[116]e[101]r[114]s[115]b[98]u[117]r[114]g[103] [32]h[104]i[105]g[103]h[104]-[45]w[119]a[97]y[121],[44]
{340} B[66]y[121] [32]h[104]i[105]m[109] [32]w[119]e[101]r[114]e[101] [32]l[108]e[101]f[102]t[116] [32]a[97]t[116] [32]y[121]o[111]u[117]r[114] [32]e[101]m[109]p[112]l[108]o[111]y[121]m[109]e[101]n[110]t[116]s[115].[46]
{341} A[65]p[112]o[111]s[115]t[116]a[97]t[116]e[101] [32]o[111]f[102] [32]w[119]i[105]l[108]d[100] [32]e[101]n[110]j[106]o[111]y[121]m[109]e[101]n[110]t[116]s[115],[44]
{342} A[65]t[116] [32]h[104]o[111]m[109]e[101] [32]d[100]i[105]d[100] [32]h[104]e[101] [32]s[115]h[104]u[117]t[116] [32]h[104]i[105]m[109]s[115]e[101]l[108]f[102] [32]A[65]n[110]d[100] [32]y[121]a[97]w[119]n[110]i[105]n[110]g[103],[44] [32]t[116]r[114]i[105]e[101]d[100] [32]t[116]o[111] [32]w[119]r[114]i[105]t[116]e[101] [32]o[111]f[102] [32]s[115]e[101]l[108]f[102].[46]
{343} H[72]e[101] [32]t[116]r[114]i[105]e[101]d[100],[44] [32]b[98]u[117]t[116] [32]o[111]f[102] [32]t[116]h[104]e[101] [32]w[119]o[111]r[114]k[107] [32]p[112]e[101]r[114]s[115]i[105]s[115]t[116]e[101]n[110]t[116] [32]H[72]e[101] [32]f[102]e[101]l[108]t[116] [32]y[121]e[101]t[116] [32]s[115]i[105]c[99]k[107]n[110]e[101]s[115]s[115].[46] [32]N[78]o[111]t[116]h[104]i[105]n[110]g[103] [32]g[103]o[111]o[111]d[100]
{344} C[67]o[111]u[117]l[108]d[100] [32]c[99]o[111]m[109]e[101] [32]o[111]f[102] [32]s[115]u[117]c[99]h[104] [32]a[97] [32]l[108]a[97]z[122]y[121] [32]m[109]o[111]o[111]d[100].[46] [32]H[72]e[101] [32]d[100]i[105]d[100]n[110]'[39]t[116] [32]j[106]o[111]i[105]n[110] [32]t[116]h[104]e[101] [32]g[103]u[117]i[105]l[108]d[100] [32]e[101]x[120]i[105]s[115]t[116]e[101]n[110]t[116]
{345} O[79]f[102] [32]m[109]e[101]n[110],[44] [32]w[119]h[104]o[111]m[109] [32]I[73] [32]c[99]a[97]n[110]'[39]t[116] [32]j[106]u[117]d[100]g[103]e[101] [32]f[102]o[111]r[114] [32]l[108]o[111]n[110]g[103],[44] [32]A[65]s[115] [32]I[73] [32]m[109]y[121]s[115]e[101]l[108]f[102] [32]t[116]o[111] [32]t[116]h[104]e[101]m[109] [32]b[98]e[101]l[108]o[111]n[110]g[103].[46]
{346} X[88]L[76]I[73]V[86]
{347} D[68]e[101]v[118]o[111]t[116]e[101]d[100] [32]t[116]o[111] [32]l[108]a[97]z[122]y[121] [32]f[102]e[101]e[101]l[108]i[105]n[110]g[103],[44] [32]W[87]i[105]t[116]h[104] [32]v[118]o[111]i[105]d[100] [32]i[105]n[110] [32]s[115]o[111]u[117]l[108],[44] [32]h[104]e[101] [32]r[114]e[101]s[115]s[115]t[116]r[114]a[97]i[105]n[110]s[115]
{348} H[72]i[105]s[115] [32]t[116]e[101]m[109]p[112]e[101]r[114],[44] [32]i[105]n[110] [32]h[104]i[105]s[115] [32]c[99]h[104]a[97]i[105]r[114] [32]s[115]i[105]t[116]t[116]i[105]n[110]g[103],[44] [32]A[65]n[110]d[100] [32]a[97]i[105]m[109]s[115] [32]t[116]o[111] [32]o[111]w[119]n[110] [32]e[101]a[97]c[99]h[104] [32]o[111]t[116]h[104]e[101]r[114]'[39]s[115] [32]b[98]r[114]a[97]i[105]n[110]s[115];[59]
{349} W[87]i[105]t[116]h[104] [32]r[114]a[97]n[110]k[107]s[115] [32]o[111]f[102] [32]b[98]o[111]o[111]k[107]s[115] [32]h[104]i[105]s[115] [32]s[115]h[104]e[101]l[108]f[102] [32]f[102]u[117]l[108]f[102]i[105]l[108]l[108]i[105]n[110]g[103],[44] [32]F[70]o[111]r[114] [32]l[108]o[111]n[110]g[103] [32]h[104]e[101] [32]e[101]a[97]g[103]e[101]r[114]l[108]y[121] [32]w[119]a[97]s[115] [32]r[114]e[101]a[97]d[100]i[105]n[110]g[103],[44]
{350} B[66]u[117]t[116] [32]s[115]a[97]w[119]:[58] [32]a[97]n[110]n[110]u[117]i[105],[44] [32]t[116]h[104]e[101] [32]r[114]a[97]v[118]e[101],[44] [32]t[116]h[104]e[101] [32]h[104]a[97]r[114]m[109],[44] [32]T[84]h[104]e[101] [32]f[102]r[114]a[97]u[117]d[100];[59] [32]n[110]o[111]r[114] [32]s[115]h[104]a[97]m[109]e[101],[44] [32]n[110]o[111]r[114] [32]s[115]e[101]n[110]s[115]e[101],[44] [32]n[110]o[111]r[114] [32]c[99]h[104]a[97]r[114]m[109];[59]
{351} I[73]n[110] [32]a[97]l[108]l[108] [32]o[111]f[102] [32]t[116]h[104]e[101]m[109] [32]r[114]e[101]s[115]t[116]r[114]i[105]c[99]t[116]i[105]o[111]n[110]'[39]s[115] [32]q[113]u[117]e[101]e[101]r[114];[59] [32]A[65]n[110]t[116]i[105]q[113]u[117]i[105]t[116]y[121] [32]t[116]h[104]e[101] [32]o[111]l[108]d[100] [32]b[98]a[97]c[99]k[107]s[115].[46]
{352} T[84]h[104]e[101] [32]n[110]o[111]v[118]e[101]l[108]t[116]y[121] [32]w[119]i[105]t[116]h[104] [32]a[97]g[103]e[101]s[115] [32]s[115]m[109]a[97]c[99]k[107]s[115].[46]
{353} L[76]i[105]k[107]e[101] [32]w[119]o[111]m[109]e[101]n[110],[44] [32]b[98]o[111]o[111]k[107]s[115] [32]w[119]e[101]r[114]e[101] [32]a[97]l[108]l[108] [32]l[108]e[101]f[102]t[116] [32]h[104]e[101]r[114]e[101],[44]
{354} A[65]n[110]d[100] [32]s[115]h[104]e[101]l[108]f[102] [32]w[119]i[105]t[116]h[104] [32]d[100]u[117]s[115]t[116]y[121] [32]b[98]o[111]o[111]k[107]s[115] [32]a[97]n[110]e[101]w[119] [32]W[87]i[105]t[116]h[104] [32]m[109]o[111]u[117]r[114]n[110]i[105]n[110]g[103] [32]t[116]a[97]f[102]f[102]e[101]t[116]a[97] [32]h[104]e[101] [32]d[100]r[114]e[101]w[119].[46]
{355} X[88]L[76]V[86]
{356} O[79]f[102] [32]w[119]o[111]r[114]l[108]d[100] [32]c[99]o[111]n[110]v[118]e[101]n[110]t[116]i[105]o[111]n[110]s[115] [32]b[98]r[114]e[101]a[97]k[107]i[105]n[110]g[103] [32]l[108]o[111]a[97]d[100] [32]L[76]i[105]k[107]e[101] [32]h[104]e[101] [32]I[73] [32]l[108]a[97]g[103]g[103]e[101]d[100] [32]b[98]e[101]h[104]i[105]n[110]d[100] [32]o[111]f[102] [32]f[102]u[117]s[115]s[115],[44]
{357} I[73] [32]w[119]a[97]s[115] [32]h[104]i[105]s[115] [32]f[102]r[114]i[105]e[101]n[110]d[100] [32]s[115]o[111]m[109]e[101] [32]w[119]h[104]i[105]l[108]e[101] [32]a[97]g[103]o[111].[46]
{358} I[73] [32]l[108]i[105]k[107]e[101]d[100] [32]h[104]i[105]s[115] [32]f[102]e[101]a[97]t[116]u[117]r[114]e[101]s[115] [32]i[105]n[110] [32]t[116]h[104]e[101] [32]p[112]a[97]s[115]t[116]:[58]
{359} D[68]e[101]v[118]o[111]t[116]i[105]o[111]n[110] [32]t[116]o[111] [32]d[100]r[114]e[101]a[97]m[109]s[115] [32]u[117]n[110]w[119]i[105]t[116]t[116]i[105]n[110]g[103],[44] [32]U[85]n[110]i[105]m[109]i[105]t[116]a[97]t[116]e[101]d[100] [32]s[115]t[116]r[114]a[97]n[110]g[103]e[101] [32]u[117]n[110]f[102]i[105]t[116]t[116]i[105]n[110]g[103],[44]
{360} H[72]i[105]s[115] [32]s[115]h[104]a[97]r[114]p[112],[44] [32]b[98]u[117]t[116] [32]s[115]o[111]m[109]e[101]w[119]h[104]a[97]t[116] [32]c[99]o[111]o[111]l[108]i[105]n[110]g[103] [32]w[119]i[105]t[116].[46]
{361} I[73] [32]w[119]a[97]s[115] [32]e[101]m[109]b[98]i[105]t[116]t[116]e[101]r[114]e[101]d[100],[44] [32]h[104]e[101].[46] [32]u[117]n[110]f[102]i[105]t[116].[46]
{362} W[87]e[101] [32]k[107]n[110]e[101]w[119] [32]t[116]h[104]e[101] [32]g[103]a[97]m[109]e[101] [32]o[111]f[102] [32]p[112]a[97]s[115]s[115]i[105]o[111]n[110]'[39]s[115] [32]o[111]a[97]t[116]h[104];[59] [32]B[66]y[121] [32]l[108]i[105]f[102]e[101] [32]w[119]e[101]r[114]e[101] [32]a[97]n[110]g[103]u[117]i[105]s[115]h[104]e[101]d[100] [32]a[97]s[115] [32]a[97] [32]r[114]u[117]l[108]e[101];[59]
{363} T[84]h[104]e[101] [32]h[104]e[101]a[97]t[116] [32]o[111]f[102] [32]h[104]e[101]a[97]r[114]t[116]s[115] [32]b[98]e[101]c[99]a[97]m[109]e[101] [32]a[97]l[108]l[108] [32]c[99]o[111]o[111]l[108];[59] [32]B[66]e[101]s[115]i[105]d[100]e[101]s[115] [32]w[119]e[101] [32]w[119]e[101]r[114]e[101] [32]a[97]w[119]a[97]i[105]t[116]e[101]d[100] [32]b[98]o[111]t[116]h[104]
{364} B[66]y[121] [32]s[115]p[112]i[105]t[116]e[101] [32]o[111]f[102] [32]f[102]o[111]r[114]t[116]u[117]n[110]e[101] [32]a[97]n[110]d[100] [32]o[111]f[102] [32]m[109]e[101]a[97]n[110],[44] [32]W[87]h[104]i[105]l[108]e[101] [32]b[98]o[111]t[116]h[104] [32]w[119]e[101]r[114]e[101] [32]b[98]e[101]g[103]i[105]n[110]n[110]e[101]r[114]s[115] [32]t[116]h[104]e[101]n[110].[46]
{365} X[88]L[76]V[86]I[73]
{366} W[87]h[104]o[111] [32]h[104]a[97]s[115] [32]i[105]d[100]e[101]a[97]s[115] [32]a[97]n[110]d[100] [32]i[105]s[115] [32]l[108]i[105]v[118]i[105]n[110]g[103],[44] [32]H[72]e[101] [32]l[108]o[111]o[111]k[107]s[115] [32]a[97]t[116] [32]p[112]e[101]o[111]p[112]l[108]e[101] [32]w[119]i[105]t[116]h[104] [32]d[100]i[105]s[115]d[100]a[97]i[105]n[110],[44]
{367} H[72]e[101] [32]h[104]a[97]s[115] [32]a[97] [32]t[116]r[114]o[111]u[117]b[98]l[108]e[101] [32]f[102]r[114]o[111]m[109] [32]t[116]h[104]e[101] [32]f[102]e[101]e[101]l[108]i[105]n[110]g[103] [32]O[79]f[102] [32]s[115]p[112]o[111]o[111]k[107] [32]o[111]f[102] [32]u[117]n[110]r[114]e[101]t[116]u[117]r[114]n[110]i[105]n[110]g[103] [32]d[100]a[97]y[121].[46]
{368} H[72]e[101] [32]h[104]a[97]s[115]n[110]'[39]t[116] [32]a[97]n[110]y[121] [32]f[102]a[97]s[115]c[99]i[105]n[110]a[97]t[116]i[105]o[111]n[110]s[115],[44] [32]B[66]u[117]t[116] [32]h[104]a[97]s[115] [32]s[115]o[111]m[109]e[101] [32]s[115]n[110]a[97]k[107]e[101] [32]o[111]f[102] [32]r[114]e[101]c[99]o[111]l[108]l[108]e[101]c[99]t[116]i[105]o[111]n[110]s[115],[44]
{369} A[65]n[110]d[100] [32]h[104]i[105]m[109] [32]r[114]e[101]p[112]e[101]n[110]t[116]a[97]n[110]c[99]e[101] [32]b[98]a[97]d[100]l[108]y[121] [32]n[110]a[97]g[103]s[115];[59] [32]T[84]h[104]i[105]s[115] [32]i[105]n[110]s[115]p[112]i[105]r[114]a[97]t[116]i[105]o[111]n[110] [32]o[111]f[102]t[116]e[101]n[110] [32]a[97]d[100]d[100]s[115]
{370} G[71]r[114]e[101]a[97]t[116] [32]c[99]h[104]a[97]r[114]m[109] [32]t[116]o[111] [32]a[97]n[110]y[121] [32]c[99]o[111]n[110]v[118]e[101]r[114]s[115]a[97]t[116]i[105]o[111]n[110].[46]
{371} A[65]t[116] [32]f[102]i[105]r[114]s[115]t[116] [32]h[104]i[105]s[115] [32]l[108]a[97]n[110]g[103]u[117]a[97]g[103]e[101] [32]m[109]e[101] [32]c[99]o[111]n[110]f[102]u[117]s[115]e[101]d[100],[44]
{372} B[66]u[117]t[116] [32]i[105]n[110] [32]a[97] [32]w[119]h[104]i[105]l[108]e[101] [32]I[73] [32]h[104]a[97]d[100] [32]b[98]e[101]e[101]n[110] [32]u[117]s[115]e[101]d[100] [32]T[84]o[111] [32]c[99]a[97]u[117]s[115]t[116]i[105]c[99],[44] [32]h[104]o[111]t[116] [32]a[97]r[114]g[103]u[117]m[109]e[101]n[110]t[116]a[97]t[116]i[105]o[111]n[110],[44]
{373} T[84]o[111] [32]j[106]o[111]k[107]e[101]s[115] [32]m[109]i[105]x[120]t[116]u[117]r[114]e[101]d[100] [32]w[119]i[105]t[116]h[104] [32]t[116]h[104]e[101] [32]b[98]i[105]l[108]e[101],[44] [32]T[84]o[111] [32]e[101]p[112]i[105]g[103]r[114]a[97]m[109]s[115] [32]w[119]i[105]t[116]h[104] [32]n[110]o[111] [32]s[115]m[109]i[105]l[108]e[101].[46]
{374} X[88]L[76]V[86]I[73]1[49]
{375} A[65]n[110]d[100] [32]o[111]f[102]t[116]e[101]n[110] [32]i[105]n[110] [32]t[116]h[104]e[101] [32]s[115]u[117]m[109]m[109]e[101]r[114]'[39]s[115] [32]s[115]p[112]h[104]e[101]r[114]e[101],[44] [32]W[87]h[104]e[101]n[110] [32]c[99]l[108]e[101]a[97]r[114] [32]i[105]s[115] [32]t[116]h[104]e[101] [32]s[115]k[107]y[121] [32]a[97]t[116] [32]n[110]i[105]g[103]h[104]t[116]
{376} A[65]l[108]l[108] [32]o[111]v[118]e[101]r[114] [32]t[116]h[104]e[101] [32]N[78]e[101]v[118]a[97] [32]r[114]i[105]v[118]e[101]r[114],[44] [32]W[87]h[104]e[101]n[110] [32]w[119]a[97]t[116]e[101]r[114]s[115],[44] [32]b[98]e[101]i[105]n[110]g[103] [32]g[103]a[97]i[105]l[108]y[121] [32]l[108]i[105]g[103]h[104]t[116],[44]
{377} D[68]o[111] [32]n[110]o[111]t[116] [32]r[114]e[101]f[102]l[108]e[101]c[99]t[116] [32]D[68]i[105]a[97]n[110]a[97]'[39]s[115] [32]f[102]e[101]a[97]t[116]u[117]r[114]e[101]s[115],[44] [32]R[82]e[101]c[99]a[97]l[108]l[108]i[105]n[110]g[103] [32]b[98]y[121]g[103]o[111]n[110]e[101] [32]n[110]o[111]v[118]e[101]l[108]'[39]s[115] [32]c[99]r[114]e[101]a[97]t[116]u[117]r[114]e[101]s[115],[44]
{378} R[82]e[101]c[99]a[97]l[108]l[108]i[105]n[110]g[103] [32]f[102]o[111]r[114]m[109]e[101]r[114] [32]l[108]o[111]v[118]e[101],[44] [32]s[115]u[117]c[99]h[104] [32]f[102]r[114]e[101]e[101],[44] [32]P[80]e[101]r[114]c[99]e[101]p[112]t[116]i[105]b[98]l[108]e[101] [32]a[97]n[110]d[100] [32]c[99]a[97]r[114]e[101]f[102]r[114]e[101]e[101],[44]
{379} B[66]y[121] [32]n[110]i[105]g[103]h[104]t[116]'[39]s[115] [32]b[98]e[101]n[110]e[101]v[118]o[111]l[108]e[101]n[110]t[116] [32]l[108]i[105]g[103]h[104]t[116] [32]b[98]r[114]e[101]a[97]t[116]h[104]i[105]n[110]g[103] [32]W[87]e[101] [32]m[109]u[117]t[116]e[101]l[108]y[121] [32]r[114]e[101]v[118]e[101]l[108]e[101]d[100] [32]a[97]n[110]d[100] [32]c[99]o[111]u[117]l[108]d[100] [32]f[102]a[97]i[105]l[108]![33]
{380} L[76]i[105]k[107]e[101] [32]c[99]o[111]n[110]v[118]i[105]c[99]t[116] [32]i[105]n[110] [32]t[116]h[104]e[101] [32]s[115]t[116]o[111]c[99]k[107]s[115] [32]f[102]r[114]o[111]m[109] [32]j[106]a[97]i[105]l[108] [32]I[73]f[102] [32]b[98]r[114]o[111]u[117]g[103]h[104]t[116] [32]t[116]o[111] [32]f[102]o[111]r[114]e[101]s[115]t[116]s[115] [32]w[119]h[104]i[105]l[108]e[101] [32]h[104]e[101]'[39]s[115] [32]s[115]l[108]e[101]e[101]p[112]i[105]n[110]g[103],[44]
{381} W[87]e[101] [32]a[97]l[108]l[108] [32]w[119]e[101]r[114]e[101] [32]t[116]a[97]k[107]e[101]n[110] [32]b[98]y[121] [32]t[116]h[104]e[101] [32]d[100]r[114]e[101]a[97]m[109]s[115],[44] [32]A[65]s[115] [32]i[105]f[102] [32]y[121]o[111]u[117]n[110]g[103] [32]l[108]i[105]f[102]e[101] [32]a[97]n[110]e[101]w[119] [32]b[98]e[101]g[103]i[105]n[110]s[115].[46]
{382} X[88]L[76]V[86]I[73]I[73]I[73]
{383} W[87]i[105]t[116]h[104] [32]u[117]t[116]t[116]e[101]r[114]l[108]y[121] [32]r[114]e[101]g[103]r[114]e[101]t[116]f[102]u[117]l[108] [32]s[115]o[111]u[117]l[108],[44] [32]O[79]n[110] [32]g[103]r[114]a[97]n[110]i[105]t[116] [32]l[108]e[101]a[97]n[110]i[105]n[110]g[103],[44] [32]s[115]t[116]r[114]a[97]i[105]g[103]h[104]t[116].[46] [32]u[117]p[112]r[114]i[105]g[103]h[104]t[116],[44]
{384} S[83]t[116]o[111]o[111]d[100] [32]E[69]u[117]g[103]e[101]n[110]e[101],[44] [32]t[116]h[104]o[111]u[117]g[103]h[104]t[116]f[102]u[117]l[108],[44] [32]q[113]u[117]i[105]t[116]e[101] [32]a[97]l[108]o[111]n[110]e[101],[44] [32]A[65]s[115] [32]p[112]o[111]e[101]t[116] [32]h[104]i[105]m[109]s[115]e[101]l[108]f[102] [32]d[100]e[101]s[115]c[99]r[114]i[105]b[98]e[101]d[100].[46]
{385} N[78]i[105]g[103]h[104]t[116] [32]s[115]e[101]n[110]t[116]r[114]i[105]e[101]s[115],[44] [32]f[102]a[97]r[114] [32]f[102]r[114]o[111]m[109] [32]o[111]n[110]e[101] [32]t[116]o[111] [32]o[111]t[116]h[104]e[101]r[114],[44] [32]I[73]n[110] [32]s[115]t[116]i[105]l[108]l[108]n[110]e[101]s[115]s[115] [32]c[99]a[97]l[108]l[108]e[101]d[100] [32]e[101]a[97]c[99]h[104] [32]o[111]n[110]e[101] [32]a[97]n[110]o[111]t[116]h[104]e[101]r[114];[59]
{386} O[79]f[102] [32]d[100]r[114]o[111]s[115]h[104]k[107]y[121] [32]l[108]i[105]g[103]h[104]t[116],[44] [32]r[114]e[101]m[109]o[111]t[116]e[101] [32]n[110]o[111]i[105]s[115]e[101] [32]F[70]r[114]o[111]m[109] [32]M[77]i[105]l[108]l[108]i[105]o[111]n[110] [32]s[115]t[116]r[114]e[101]e[101]t[116] [32]w[119]a[97]s[115] [32]h[104]e[101]a[97]r[114]d[100].[46]
{387} S[83]o[111]m[109]e[101] [32]b[98]o[111]y[121]s[115] [32]I[73]n[110] [32]b[98]o[111]a[97]t[116] [32]w[119]i[105]t[116]h[104] [32]i[105]t[116]s[115] [32]o[111]a[97]r[114]s[115] [32]r[114]o[111]w[119]e[101]d[100] [32]A[65]l[108]o[111]n[110]g[103] [32]t[116]h[104]e[101] [32]s[115]l[108]e[101]e[101]p[112]y[121] [32]N[78]e[101]v[118]a[97]'[39]s[115] [32]s[115]t[116]r[114]e[101]a[97]m[109],[44]
{388} A[65]n[110]d[100] [32]w[119]e[101] [32]a[97]d[100]o[111]r[114]e[101]d[100],[44] [32]l[108]i[105]k[107]e[101] [32]i[105]n[110] [32]a[97] [32]d[100]r[114]e[101]a[97]m[109],[44] [32]S[83]o[111]m[109]e[101] [32]s[115]o[111]n[110]g[103] [32]o[111]f[102] [32]h[104]o[111]r[114]n[110] [32]a[97]n[110]d[100] [32]m[109]a[97]n[110],[44] [32]s[115]u[117]c[99]h[104] [32]b[98]o[111]l[108]d[100].[46].[46].[46]
{389} M[77]o[111]r[114]e[101] [32]s[115]w[119]e[101]e[101]t[116],[44] [32]t[116]h[104]a[97]n[110] [32]j[106]o[111]y[121]s[115] [32]b[98]e[101]n[110]e[101]a[97]t[116]h[104] [32]t[116]h[104]e[101] [32]m[109]o[111]o[111]n[110],[44] [32]W[87]i[105]l[108]l[108] [32]s[115]t[116]a[97]y[121] [32]o[111]f[102] [32]T[84]o[111]r[114]k[107]w[119]a[97]t[116]'[39]s[115] [32]o[111]c[99]t[116]a[97]v[118]e[101]s[115] [32]t[116]u[117]n[110]e[101]![33]
{390} X[88]L[76]I[73]X[88]
{391} O[79]h[104],[44] [32]B[66]r[114]e[101]n[110]t[116]a[97]![33] [32]I[73] [32]a[97]g[103]a[97]i[105]n[110] [32]s[115]h[104]a[97]l[108]l[108] [32]s[115]e[101]e[101] [32]y[121]o[111]u[117].[46] [32]M[77]y[121] [32]d[100]e[101]a[97]r[114] [32]A[65]d[100]r[114]i[105]a[97]t[116]i[105]c[99] [32]w[119]a[97]v[118]e[101]s[115],[44]
{392} I[73]n[110]s[115]p[112]i[105]r[114]e[101]d[100],[44] [32]I[73] [32]a[97]g[103]a[97]i[105]n[110] [32]s[115]h[104]a[97]l[108]l[108] [32]f[102]e[101]e[101]l[108] [32]y[121]o[111]u[117],[44] [32]Y[89]o[111]u[117]r[114] [32]m[109]a[97]g[103]i[105]c[99] [32]v[118]o[111]i[105]c[99]e[101] [32]f[102]o[111]r[114] [32]m[109]e[101] [32]a[97]w[119]a[97]i[105]t[116]s[115]![33]
{393} A[65]p[112]p[112]o[111]l[108]o[111]'[39]s[115] [32]c[99]h[104]i[105]l[108]d[100]r[114]e[101]n[110] [32]t[116]o[111]o[111]k[107] [32]i[105]t[116] [32]s[115]a[97]c[99]r[114]e[101]d[100];[59] [32]F[70]o[111]r[114] [32]A[65]l[108]b[98]i[105]o[111]n[110] [32]p[112]r[114]o[111]u[117]d[100] [32]l[108]y[121]r[114]e[101] [32]r[114]a[97]t[116]e[101]d[100]
{394} I[73] [32]l[108]o[111]v[118]e[101] [32]h[104]i[105]m[109],[44] [32]h[104]e[101]'[39]s[115] [32]m[109]y[121] [32]k[107]i[105]n[110] [32]i[105]n[110]-[45]l[108]a[97]w[119].[46]
{395} I[73]t[116]a[97]l[108]i[105]a[97]n[110] [32]n[110]i[105]g[103]h[104]t[116]s[115] [32]I[73] [32]s[115]h[104]a[97]l[108]l[108] [32]a[97]d[100]o[111]r[114]e[101].[46]
{396} A[65]n[110]d[100] [32]b[98]e[101]i[105]n[110]g[103] [32]f[102]r[114]e[101]e[101],[44] [32]a[97]g[103]a[97]i[105]n[110] [9]r[114]e[101]v[118]e[101]l[108] [32]I[73]n[110] [32]g[103]i[105]r[114]l[108] [32]f[102]r[114]o[111]m[109] [32]V[86]e[101]n[110]e[101]c[99]e[101],[44] [32]p[112]r[114]e[101]t[116]t[116]y[121],[44] [32]y[121]o[111]u[117]n[110]g[103],[44]
{397} S[83]o[111]m[109]e[101]t[116]i[105]m[109]e[101]s[115] [32]s[115]h[104]e[101]'[39]s[115] [32]t[116]a[97]l[108]k[107]a[97]t[116]i[105]v[118]e[101] [32]o[111]r[114] [32]d[100]u[117]m[109]b[98],[44] [32]I[73]n[110] [32]s[115]e[101]c[99]r[114]e[101]t[116] [32]g[103]o[111]n[110]d[100]o[111]l[108]a[97] [32]I[73]'[39]l[108]l[108] [32]t[116]r[114]a[97]v[118]e[101]l[108]
{398} W[87]i[105]t[116]h[104] [32]h[104]e[101]r[114],[44] [32]m[109]y[121] [32]l[108]i[105]p[112]s[115] [32]w[119]i[105]l[108]l[108] [32]f[102]i[105]n[110]d[100] [32]a[97]n[110]e[101]w[119] [32]P[80]e[101]t[116]r[114]a[97]r[114]k[107]a[97]'[39]s[115] [32]l[108]a[97]n[110]g[103]u[117]a[97]g[103]e[101] [32]'[39]I[73] [32]l[108]o[111]v[118]e[101] [32]y[121]o[111]u[117]'[39] [32].[46]
{399} L[76]
{400} B[66]u[117]t[116] [32]w[119]i[105]l[108]l[108] [32]i[105]t[116] [32]c[99]o[111]m[109]e[101],[44] [32]m[109]y[121] [32]d[100]a[97]y[121] [32]o[111]f[102] [32]f[102]r[114]e[101]e[101]d[100]o[111]m[109]?[63]
{401} I[73]t[116]s[115] [32]t[116]i[105]m[109]e[101]![33] [32]-[45] [32]I[73] [32]e[101]v[118]e[101]r[114]y[121]d[100]a[97]y[121] [32]a[97]p[112]p[112]e[101]a[97]l[108].[46]
{402} A[65]t[116] [32]s[115]e[101]a[97] [32]I[73] [32]w[119]a[97]i[105]t[116] [32]f[102]o[111]r[114] [32]b[98]e[101]t[116]t[116]e[101]r[114] [32]s[115]e[101]a[97]s[115]o[111]n[110],[44] [32]T[84]h[104]e[101] [32]s[115]a[97]i[105]l[108]s[115] [32]o[111]f[102] [32]s[115]h[104]i[105]p[112]s[115] [32]I[73] [32]c[99]a[97]l[108]l[108],[44] [32]I[73] [32]f[102]e[101]e[101]l[108],[44]
{403} T[84]h[104]a[97]t[116] [32]u[117]n[110]d[100]e[101]r[114] [32]g[103]a[97]l[108]e[101],[44] [32]e[101]n[110] [32]w[119]a[97]v[118]e[101]s[115] [32]i[105]n[110] [32]b[98]o[111]a[97]t[116] [32]A[65]l[108]l[108] [32]o[111]v[118]e[101]r[114] [32]t[116]h[104]e[101] [32]s[115]e[101]a[97] [32]c[99]r[114]o[111]s[115]s[115]r[114]o[111]a[97]d[100]
{404} S[83]h[104]o[111]u[117]l[108]d[100] [32]I[73] [32]b[98]e[101]g[103]i[105]n[110] [32]m[109]y[121] [32]f[102]r[114]e[101]e[101]d[100]o[111]m[109] [32]f[102]l[108]i[105]g[103]h[104]t[116].[46]
{405} I[73]t[116]'[39]s[115] [32]t[116]i[105]m[109]e[101] [32]t[116]o[111] [32]l[108]e[101]a[97]v[118]e[101] [32]f[102]o[111]r[114] [32]l[108]i[105]f[102]e[101] [32]t[116]h[104]e[101] [32]t[116]i[105]g[103]h[104]t[116]
{406} A[65]n[110]d[100] [32]h[104]o[111]s[115]t[116]i[105]l[108]e[101] [32]s[115]h[104]o[111]r[114]e[101],[44] [32]I[73] [32]s[115]h[104]a[97]l[108]l[108] [32]b[98]e[101] [32]r[114]u[117]s[115]h[104]i[105]n[110]g[103] [32]T[84]o[111] [32]c[99]o[111]m[109]e[101] [32]t[116]o[111] [32]m[109]i[105]d[100]d[100]a[97]y[121] [32]d[100]e[101]s[115]e[101]r[114]t[116] [32]s[115]t[116]e[101]p[112]p[112]e[101]
{407} I[73]n[110] [32]A[65]f[102]r[114]i[105]c[99]a[97];[59] [32]a[97]t[116] [32]a[97]n[110]y[121] [32]s[115]t[116]e[101]p[112] [32]T[84]o[111] [32]s[115]i[105]g[103]h[104] [32]a[97]b[98]o[111]u[117]t[116] [32]m[109]i[105]r[114]k[107]y[121] [32]R[82]u[117]s[115]s[115]i[105]a[97],[44]
{408} I[73]n[110] [32]w[119]h[104]i[105]c[99]h[104] [32]1[49] [32]l[108]o[111]v[118]e[101]d[100] [32]a[97]n[110]d[100] [32]s[115]u[117]f[102]f[102]e[101]r[114]e[101]d[100] [32]h[104]a[97]r[114]d[100],[44] [32]A[65]n[110]d[100] [32]w[119]h[104]e[101]r[114]e[101] [32]b[98]u[117]r[114]i[105]e[101]d[100] [32]I[73] [32]m[109]y[121] [32]h[104]e[101]a[97]r[114]t[116].[46]
{409} L[76]I[73]
{410} O[79]n[110]e[101]g[103]i[105]n[110] [32]w[119]a[97]s[115] [32]a[97]l[108]r[114]e[101]a[97]d[100]y[121] [32]r[114]e[101]a[97]d[100]y[121] [32]W[87]i[105]t[116]h[104] [32]m[109]e[101] [32]s[115]o[111]m[109]e[101] [32]f[102]o[111]r[114]e[101]i[105]g[103]n[110] [32]l[108]a[97]n[110]d[100]s[115] [32]t[116]o[111] [32]r[114]a[97]t[116]e[101],[44]
{411} B[66]u[117]t[116] [32]f[102]a[97]t[116]e[101] [32]f[102]o[111]r[114] [32]u[117]s[115] [32]w[119]a[97]s[115] [32]n[110]e[101]v[118]e[101]r[114] [32]s[115]t[116]e[101]a[97]d[100]y[121]:[58] [32]F[70]o[111]r[114] [32]l[108]o[111]n[110]g[103] [32]w[119]e[101] [32]h[104]a[97]d[100] [32]t[116]o[111] [32]s[115]e[101]p[112]a[97]r[114]a[97]t[116]e[101].[46]
{412} A[65]w[119]a[97]y[121] [32]h[104]a[97]d[100] [32]p[112]a[97]s[115]s[115]e[101]d[100] [32]h[104]i[105]s[115] [32]o[111]l[108]d[100] [32]f[102]a[97]t[116]h[104]e[101]r[114],[44] [32]O[79]n[110]e[101]g[103]i[105]n[110] [32]w[119]a[97]s[115] [32]a[97]t[116]t[116]a[97]c[99]k[107]e[101]d[100] [32]b[98]y[121] [32]r[114]a[97]t[116]h[104]e[101]r[114]
{413} A[65]g[103]g[103]r[114]e[101]s[115]s[115]i[105]v[118]e[101] [32]l[108]e[101]n[110]d[100]e[101]r[114]s[115] [32]e[101]a[97]c[99]h[104] [32]o[111]f[102]f[102]e[101]n[110]d[100]s[115],[44] [32]E[69]a[97]c[99]h[104] [32]h[104]a[97]s[115] [32]h[104]i[105]s[115] [32]o[111]w[119]n[110] [32]w[119]i[105]t[116] [32]a[97]n[110]d[100] [32]s[115]e[101]n[110]s[115]e[101].[46]
{414} B[66]u[117]t[116] [32]E[69]u[117]g[103]e[101]n[110]e[101] [32]a[97]l[108]l[108] [32]t[116]h[104]e[101] [32]l[108]a[97]w[119]s[115]u[117]i[105]t[116]s[115] [32]h[104]a[97]t[116]e[101]d[100] [32]W[87]i[105]t[116]h[104] [32]l[108]o[111]t[116] [32]c[99]o[111]n[110]t[116]e[101]n[110]t[116]e[101]d[100],[44] [32]g[103]a[97]v[118]e[101] [32]a[97]l[108]l[108] [32]t[116]h[104]e[101]m[109]
{415} I[73]n[110]h[104]e[101]r[114]i[105]t[116]a[97]g[103]e[101],[44] [32]h[104]e[101] [32]h[104]a[97]d[100] [32]b[98]y[121] [32]t[116]h[104]e[101]n[110],[44] [32]N[78]o[111]t[116] [32]s[115]e[101]e[101]i[105]n[110]g[103] [32]l[108]o[111]s[115]s[115] [32]i[105]n[110] [32]a[97]l[108]l[108],[44] [32]h[104]e[101] [32]w[119]a[97]s[115]t[116]e[101]d[100]
{416} O[79]r[114] [32]m[109]a[97]y[121] [32]b[98]e[101] [32]g[103]u[117]e[101]s[115]s[115]e[101]d[100] [32]f[102]r[114]o[111]m[109] [32]f[102]a[97]r[114] [32]a[97]w[119]a[97]y[121] [32]T[84]h[104]a[97]t[116] [32]u[117]n[110]c[99]l[108]e[101] [32]h[104]i[105]s[115] [32]w[119]o[111]u[117]l[108]d[100] [32]p[112]a[97]s[115]s[115] [32]a[97]w[119]a[97]y[121].[46]
{417} L[76]I[73]I[73]
{418} R[82]e[101]p[112]o[111]r[114]t[116] [32]f[102]o[111]r[114] [32]h[104]i[105]m[109] [32]w[119]a[97]s[115] [32]s[115]o[111] [32]s[115]u[117]d[100]d[100]e[101]n[110] [32]F[70]r[114]o[111]m[109] [32]s[115]t[116]e[101]w[119]a[97]r[114]d[100]:[58]
{419} 禺-30][-128]彈-100]U[85]n[110]c[99]l[108]e[101] [32]i[105]s[115] [32]i[105]n[110] [32]b[98]e[101]d[100],[44] [32]H[72]i[105]s[115] [32]b[98]r[114]e[101]a[97]t[116]h[104] [32]a[97]g[103]a[97]i[105]n[110] [32]b[98]e[101]g[103]a[97]n[110] [32]t[116]o[111] [32]h[104]a[97]r[114]d[100]e[101]n[110],[44] [32]T[84]o[111] [32]s[115]e[101]e[101] [32]h[104]i[105]s[115] [32]n[110]e[101]p[112]h[104]e[101]w[119] [32]h[104]e[101]'[39]d[100] [32]b[98]e[101] [32]g[103]l[108]a[97]d[100]禺-30][-128]拏-99].[46]
{420} I[73]n[110] [32]s[115]a[97]d[100]n[110]e[101]s[115]s[115] [32]h[104]e[101] [32]i[105]t[116] [32]a[97]l[108]l[108] [32]w[119]a[97]s[115] [32]r[114]e[101]a[97]d[100]i[105]n[110]g[103],[44] [32]A[65]t[116] [32]o[111]n[110]c[99]e[101] [32]h[104]e[101] [32]h[104]u[117]r[114]r[114]i[105]e[101]d[100] [32]f[102]o[111]r[114] [32]t[116]h[104]e[101] [32]m[109]e[101]e[101]t[116]i[105]n[110]g[103],[44]
{421} B[66]y[121] [32]p[112]o[111]s[115]t[116]-[45]c[99]h[104]a[97]s[115]e[101] [32]h[104]e[101] [32]h[104]e[101]a[97]d[100]l[108]o[111]n[110]g[103] [32]w[119]e[101]n[110]t[116],[44] [32]W[87]a[97]s[115] [32]y[121]a[97]w[119]n[110]i[105]n[110]g[103] [32]s[115]w[119]e[101]e[101]t[116]l[108]y[121] [32]b[98]e[101]f[102]o[111]r[114]e[101] [32]h[104]a[97]n[110]d[100],[44]
{422} P[80]r[114]e[101]p[112]a[97]r[114]e[101]d[100] [32]f[102]o[111]r[114] [32]t[116]h[104]e[101] [32]s[115]a[97]k[107]e[101] [32]o[111]f[102] [32]m[109]o[111]n[110]e[101]y[121] [32]T[84]o[111] [32]s[115]i[105]g[103]h[104]s[115],[44] [32]t[116]o[111] [32]b[98]o[111]r[114]e[101]d[100]o[111]m[109] [32]a[97]n[110]d[100] [32]t[116]o[111] [32]f[102]r[114]a[97]u[117]d[100]
{423} ([40]W[87]i[105]t[116]h[104] [32]a[97]l[108]l[108] [32]t[116]h[104]a[97]t[116] [32]I[73] [32]b[98]e[101]g[103]a[97]n[110] [32]m[109]y[121] [32]t[116]h[104]o[111]u[117]g[103]h[104]t[116])[41].[46] [32]B[66]u[117]t[116] [32]w[119]h[104]e[101]n[110] [32]h[104]e[101] [32]r[114]e[101]a[97]c[99]h[104]e[101]d[100] [32]i[105]t[116] [32]i[105]n[110] [32]a[97] [32]h[104]u[117]r[114]r[114]y[121],[44]
{424} O[79]n[110] [32]t[116]a[97]b[98]l[108]e[101] [32]E[69]u[117]g[103]e[101]n[110]e[101] [32]f[102]o[111]u[117]n[110]d[100] [32]t[116]h[104]e[101]n[110] [32]F[70]o[111]r[114] [32]f[102]u[117]n[110]e[101]r[114]a[97]l[108] [32]p[112]r[114]e[101]p[112]a[97]r[114]e[101]d[100] [32]m[109]a[97]n[110].[46]
{425} L[76]I[73]I[73]I[73]
{426} H[72]e[101] [32]f[102]o[111]u[117]n[110]d[100] [32]h[104]o[111]u[117]s[115]e[101] [32]f[102]u[117]l[108]l[108] [32]o[111]f[102] [32]s[115]e[101]r[114]v[118]a[97]n[110]t[116]s[115];[59] [32]T[84]o[111] [32]s[115]e[101]e[101] [32]d[100]e[101]c[99]e[101]a[97]s[115]e[101]d[100],[44] [32]f[102]r[114]o[111]m[109] [32]a[97]n[110]y[121] [32]s[115]i[105]d[100]e[101]s[115]
{427} H[72]i[105]s[115] [32]f[102]r[114]i[105]e[101]n[110]d[100]s[115] [32]a[97]r[114]r[114]i[105]v[118]e[101]d[100] [32]l[108]i[105]k[107]e[101] [32]v[118]i[105]l[108]e[101] [32]o[111]b[98]s[115]e[101]r[114]v[118]e[101]r[114]s[115] [32]W[87]h[104]o[111] [32]c[99]o[111]m[109]e[101] [32]t[116]o[111] [32]f[102]u[117]n[110]e[101]r[114]a[97]l[108]s[115] [32]a[97]l[108]l[108] [32]t[116]i[105]m[109]e[101]s[115].[46]
{428} D[68]e[101]c[99]e[101]a[97]s[115]e[101]d[100] [32]w[119]a[97]s[115] [32]b[98]u[117]r[114]i[105]e[101]d[100] [32]a[97]f[102]t[116]e[101]r[114] [32]m[109]e[101]e[101]t[116]i[105]n[110]g[103],[44] [32]T[84]h[104]e[101] [32]p[112]r[114]i[105]e[101]s[115]t[116]s[115] [32]a[97]n[110]d[100] [32]g[103]u[117]e[101]s[115]t[116]s[115] [32]w[119]e[101]r[114]e[101] [32]d[100]r[114]i[105]n[110]k[107]i[105]n[110]g[103],[44] [32]e[101]a[97]t[116]i[105]n[110]g[103],[44]
{429} T[84]h[104]e[101]n[110] [32]a[97]l[108]l[108] [32]t[116]h[104]e[101]y[121] [32]g[103]r[114]a[97]n[110]d[100]l[108]y[121] [32]w[119]e[101]n[110]t[116] [32]a[97]w[119]a[97]y[121],[44] [32]A[65]s[115] [32]i[105]f[102] [32]t[116]h[104]e[101]y[121] [32]s[115]p[112]e[101]n[110]t[116] [32]a[97] [32]b[98]u[117]s[115]i[105]n[110]e[101]s[115]s[115] [32]d[100]a[97]y[121].[46]
{430} T[84]h[104]e[101] [32]f[102]o[111]r[114]m[109]e[101]r[114] [32]f[102]o[111]e[101] [32]o[111]f[102] [32]t[116]h[104]e[101] [32]o[111]r[114]d[100]e[101]r[114]s[115],[44] [32]T[84]h[104]e[101] [32]w[119]a[97]s[115]t[116]e[101]r[114],[44] [32]E[69]u[117]g[103]e[101]n[110]e[101] [32]o[111]f[102] [32]t[116]h[104]e[101] [32]l[108]a[97]n[110]d[100]s[115],[44]
{431} O[79]f[102] [32]w[119]a[97]t[116]e[101]r[114]s[115],[44] [32]f[102]o[111]r[114]e[101]s[115]t[116]s[115] [32]a[97]n[110]d[100] [32]o[111]f[102] [32]h[104]a[97]n[110]d[100]s[115] [32]I[73]s[115] [32]m[109]a[97]s[115]t[116]e[101]r[114] [32]i[105]n[110] [32]t[116]h[104]e[101] [32]c[99]o[111]u[117]n[110]t[116]r[114]y[121] [32]b[98]o[111]r[114]d[100]e[101]r[114]s[115];[59]
{432} H[72]e[101]'[39]s[115] [32]v[118]e[101]r[114]y[121] [32]g[103]l[108]a[97]d[100] [32]t[116]h[104]a[97]t[116] [32]f[102]o[111]r[114]m[109]e[101]r[114] [32]p[112]a[97]s[115]s[115] [32]H[72]e[101] [32]c[99]h[104]a[97]n[110]g[103]e[101]d[100] [32]f[102]o[111]r[114] [32]a[97]n[110]y[121]t[116]h[104]i[105]n[110]g[103] [32]a[97]t[116] [32]l[108]a[97]s[115]t[116].[46]
{433} L[76]I[73]V[86]
{434} A[65]t[116] [32]f[102]i[105]r[114]s[115]t[116] [32]t[116]w[119]o[111] [32]d[100]a[97]y[121]s[115] [32]a[97]n[110]e[101]w[119] [32]h[104]e[101] [32]d[100]r[114]o[111]v[118]e[101] [32]A[65]l[108]o[111]n[110]g[103] [32]s[115]e[101]c[99]l[108]u[117]d[100]e[101]d[100] [32]l[108]o[111]n[110]e[101] [32]f[102]i[105]e[101]l[108]d[100]s[115]
{435} I[73]n[110] [32]c[99]o[111]o[111]l[108]n[110]e[101]s[115]s[115] [32]o[111]f[102] [32]t[116]h[104]e[101] [32]g[103]l[108]o[111]o[111]m[109]y[121] [32]g[103]r[114]o[111]v[118]e[101] [32]W[87]i[105]t[116]h[104] [32]p[112]u[117]r[114]l[108] [32]a[97]n[110]d[100] [32]b[98]a[97]b[98]b[98]l[108]e[101] [32]o[111]f[102] [32]s[115]t[116]i[105]l[108]l[108] [32]s[115]t[116]r[114]e[101]a[97]m[109]s[115],[44]
{436} O[79]n[110] [32]t[116]h[104]i[105]r[114]d[100] [32]d[100]a[97]y[121],[44] [32]l[108]o[111]o[111]k[107]i[105]n[110]g[103] [32]a[97]l[108]l[108] [32]a[97]r[114]o[111]u[117]n[110]d[100],[44] [32]H[72]e[101] [32]s[115]a[97]w[119] [32]n[110]o[111]r[114] [32]c[99]o[111]p[112]s[115]e[101],[44] [32]n[110]o[111]r[114] [32]h[104]i[105]l[108]l[108],[44] [32]n[110]o[111]r[114] [32]g[103]r[114]o[111]u[117]n[110]d[100];[59]
{437} H[72]e[101] [32]q[113]u[117]i[105]c[99]k[107]l[108]y[121] [32]s[115]l[108]e[101]e[101]p[112]y[121] [32]w[119]a[97]s[115] [32]f[102]r[114]o[111]m[109] [32]t[116]h[104]e[101]m[109],[44] [32]A[65]n[110]d[100] [32]g[103]r[114]a[97]s[115]p[112]e[101]d[100] [32]a[97]l[108]l[108] [32]c[99]l[108]e[101]a[97]r[114]l[108]y[121] [32]b[98]y[121] [32]t[116]h[104]e[101]n[110]:[58]
{438} I[73]n[110] [32]c[99]o[111]u[117]n[110]t[116]r[114]y[121] [32]t[116]e[101]d[100]i[105]u[117]m[109]'[39]s[115] [32]p[112]r[114]e[101]v[118]a[97]i[105]l[108]i[105]n[110]g[103] [32]W[87]i[105]t[116]h[104]o[111]u[117]t[116] [32]p[112]a[97]l[108]a[97]c[99]e[101]s[115] [32]o[111]r[114] [32]s[115]t[116]r[114]e[101]e[101]t[116]s[115],[44]
{439} N[78]o[111]r[114] [32]b[98]a[97]l[108]l[108]e[101]t[116]s[115],[44] [32]c[99]a[97]r[114]d[100]s[115],[44] [32]n[110]o[111]r[114] [32]v[118]e[101]r[114]s[115]e[101] [32]o[111]n[110]e[101] [32]m[109]e[101]e[101]t[116]s[115].[46]
{440} K[75]h[104]a[97]n[110]d[100]r[114]a[97] [32]p[112]u[117]r[114]s[115]u[117]e[101]d[100] [32]h[104]i[105]m[109],[44] [32]a[97]l[108]w[119]a[97]y[121]s[115] [32]w[119]a[97]i[105]t[116]i[105]n[110]g[103],[44]
{441} I[73]t[116] [32]l[108]o[111]o[111]k[107]e[101]d[100] [32]f[102]o[111]r[114] [32]h[104]i[105]m[109] [32]t[116]h[104]r[114]o[111]u[117]g[103]h[104] [32]a[97]l[108]l[108] [32]h[104]i[105]s[115] [32]l[108]i[105]f[102]e[101] [32]L[76]i[105]k[107]e[101] [32]o[111]w[119]n[110] [32]s[115]h[104]a[97]d[100]e[101] [32]o[111]r[114] [32]l[108]o[111]y[121]a[97]l[108] [32]w[119]i[105]f[102]e[101].[46]
{442} L[76]V[86]
{443} B[66]u[117]t[116] [32]I[73] [32]w[119]a[97]s[115] [32]b[98]o[111]r[114]n[110] [32]f[102]o[111]r[114] [32]p[112]e[101]a[97]c[99]e[101]f[102]u[117]l[108] [32]l[108]i[105]v[118]i[105]n[110]g[103],[44] [32]I[73]n[110] [32]v[118]i[105]l[108]l[108]a[97]g[103]e[101] [32]s[115]t[116]i[105]l[108]l[108]n[110]e[101]s[115]s[115] [32]g[103]l[108]a[97]d[100]l[108]y[121] [32]b[98]r[114]e[101]a[97]t[116]h[104]e[101],[44]
{444} I[73]n[110] [32]c[99]o[111]u[117]n[110]t[116]r[114]y[121] [32]l[108]y[121]r[114]e[101] [32]i[105]s[115] [32]m[109]o[111]r[114]e[101] [32]r[114]i[105]n[110]g[103]i[105]n[110]g[103],[44] [32]M[77]o[111]r[114]e[101] [32]v[118]i[105]v[118]i[105]d[100] [32]a[97]r[114]e[101] [32]c[99]r[114]e[101]a[97]t[116]i[105]v[118]e[101] [32]d[100]r[114]e[101]a[97]m[109]s[115].[46]
{445} D[68]e[101]v[118]o[111]t[116]e[101]d[100] [32]t[116]o[111] [32]c[99]h[104]i[105]l[108]d[100]i[105]s[115]h[104] [32]l[108]e[101]i[105]s[115]u[117]r[114]e[101] [32]1[49] [32]h[104]i[105]k[107]e[101] [32]a[97]t[116] [32]l[108]a[97]k[107]e[101] [32]i[105]n[110] [32]d[100]e[101]s[115]e[101]r[114]t[116] [32]n[110]a[97]t[116]u[117]r[114]e[101],[44]
{446} A[65]n[110]d[100] [32]f[102]a[97]r[114] [32]n[110]i[105]e[101]n[110]t[116]e[101] [32]i[105]s[115] [32]m[109]y[121] [32]l[108]a[97]w[119].[46] [9] [32]I[73] [32]w[119]a[97]k[107]e[101] [32]a[97]t[116] [32]m[109]o[111]r[114]n[110]i[105]n[110]g[103]s[115] [32]t[116]o[111] [32]a[97]d[100]o[111]r[114]e[101]
{447} T[84]h[104]e[101] [32]s[115]w[119]e[101]e[101]t[116] [32]p[112]r[114]o[111]s[115]p[112]e[101]r[114]i[105]t[116]y[121] [32]a[97]n[110]d[100] [32]f[102]r[114]e[101]e[101]d[100]o[111]m[109];[59] [32]I[73] [32]r[114]e[101]a[97]d[100] [32]a[97] [32]l[108]i[105]t[116]t[116]l[108]e[101],[44] [32]s[115]l[108]e[101]e[101]p[112] [32]f[102]o[111]r[114] [32]l[108]o[111]n[110]g[103],[44]
{448} F[70]o[111]r[114] [32]f[102]l[108]y[121]i[105]n[110]g[103] [32]g[103]l[108]o[111]r[114]y[121] [32]d[100]o[111]n[110]'[39]t[116] [32]l[108]o[111]n[110]g[103].[46]
{449} T[84]h[104]e[101] [32]s[115]a[97]m[109]e[101] [32]I[73] [32]w[119]a[97]s[115] [32]i[105]n[110] [32]t[116]i[105]m[109]e[101] [32]o[111]f[102] [32]w[119]i[105]s[115]d[100]o[111]m[109],[44]
{450} A[65]l[108]l[108] [32]d[100]a[97]y[121]s[115] [32]I[73] [32]s[115]p[112]e[101]n[110]t[116] [32]i[105]n[110] [32]s[115]l[108]e[101]e[101]p[112],[44] [32]i[105]n[110] [32]s[115]h[104]a[97]d[100]e[101]s[115],[44] [32]A[65]n[110]d[100] [32]t[116]h[104]e[101]r[114]e[101] [32]h[104]a[97]d[100] [32]m[109]y[121] [32]h[104]a[97]p[112]p[112]i[105]e[101]s[115]t[116] [32]d[100]a[97]y[121]s[115].[46]
{451} L[76]V[86]I[73]
{452} T[84]h[104]e[101] [32]l[108]o[111]v[118]e[101],[44] [32]t[116]h[104]e[101] [32]p[112]l[108]a[97]n[110]t[116]s[115],[44] [32]t[116]h[104]e[101] [32]v[118]o[111]i[105]d[100],[44] [32]t[116]h[104]e[101] [32]v[118]i[105]l[108]l[108]a[97]g[103]e[101],[44] [32]T[84]h[104]e[101] [32]f[102]i[105]e[101]l[108]d[100]s[115]![33] [32]t[116]o[111] [32]y[121]o[111]u[117] [32]I[73]'[39]m[109] [32]s[115]t[116]a[97]u[117]n[110]c[99]h[104] [32]a[97] [32]f[102]r[114]i[105]e[101]n[110]d[100].[46]
{453} F[70]r[114]o[111]m[109] [32]E[69]u[117]g[103]e[101]n[110]e[101] [32]d[100]i[105]f[102]f[102]e[101]r[114] [32]I[73] [32]m[109]y[121] [32]i[105]m[109]a[97]g[103]e[101],[44] [32]T[84]o[111] [32]n[110]o[111]t[116]e[101] [32]t[116]h[104]i[105]s[115] [32]I[73] [32]a[97]l[108]w[119]a[97]y[121]s[115] [32]t[116]r[114]e[101]n[110]d[100],[44]
{454} I[73]n[110] [32]o[111]r[114]d[100]e[101]r[114] [32]t[116]h[104]a[97]t[116] [32]d[100]e[101]r[114]i[105]s[115]i[105]v[118]e[101] [32]r[114]e[101]a[97]d[100]e[101]r[114],[44] [32]O[79]r[114] [32]a[97]n[110]y[121] [32]e[101]d[100]i[105]t[116]o[111]r[114],[44] [32]t[116]o[111]o[111] [32]e[101]a[97]g[103]e[101]r[114]
{455} F[70]o[111]r[114] [32]i[105]n[110]t[116]r[114]i[105]c[99]a[97]t[116]e[101] [32]a[97]n[110]d[100] [32]s[115]l[108]a[97]n[110]d[100]e[101]r[114] [32]t[116]a[97]l[108]k[107],[44] [32]I[73]n[110] [32]c[99]h[104]e[101]c[99]k[107]i[105]n[110]g[103] [32]a[97]l[108]l[108] [32]m[109]y[121] [32]t[116]r[114]a[97]i[105]t[116]s[115] [32]f[102]o[111]r[114] [32]m[109]o[111]c[99]k[107],[44]
{456} C[67]o[111]u[117]l[108]d[100] [32]n[110]o[111]t[116] [32]r[114]e[101]p[112]e[101]a[97]t[116],[44] [32]y[121]e[101]t[116] [32]b[98]e[101]i[105]n[110]g[103] [32]s[115]h[104]a[97]m[109]e[101]l[108]e[101]s[115]s[115],[44] [32]T[84]h[104]a[97]t[116] [32]I[73] [32]c[99]o[111]u[117]l[108]d[100] [32]s[115]c[99]r[114]i[105]b[98]b[98]l[108]e[101] [32]o[111]w[119]n[110] [32]f[102]a[97]c[99]e[101]
{457} L[76]i[105]k[107]e[101] [32]B[66]y[121]r[114]o[111]n[110],[44] [32]p[112]o[111]e[101]t[116] [32]o[111]f[102] [32]g[103]r[114]a[97]c[99]e[101].[46] [32]O[79]r[114] [32]i[105]t[116]'[39]s[115] [32]i[105]m[109]p[112]o[111]s[115]s[115]i[105]b[98]l[108]e[101] [32]o[111]r[114] [32]f[102]a[97]i[105]t[116]h[104]l[108]e[101]s[115]s[115]
{458} T[84]o[111] [32]w[119]r[114]i[105]t[116]e[101] [32]a[97]b[98]o[111]u[117]t[116] [32]o[111]t[116]h[104]e[101]r[114]s[115]e[101]l[108]f[102] [32]A[65]s[115] [32]i[105]f[102] [32]a[97]b[98]o[111]u[117]t[116] [32]o[111]w[119]n[110]s[115]e[101]l[108]f[102]?[63]
{459} L[76]V[86]I[73]I[73]
{460} A[65]l[108]l[108] [32]p[112]o[111]e[101]t[116]s[115],[44] [32]m[109]e[101]a[97]n[110]w[119]h[104]i[105]l[108]e[101] [32]I[73]'[39]l[108]l[108] [32]n[110]o[111]t[116]e[101],[44] [32]O[79]f[102] [32]d[100]r[114]e[101]a[97]m[109]y[121],[44] [32]p[112]e[101]n[110]s[115]i[105]v[118]e[101] [32]l[108]o[111]v[118]e[101] [32]a[97]r[114]e[101] [32]f[102]r[114]i[105]e[101]n[110]d[100]s[115],[44]
{461} S[83]o[111]m[109]e[101]t[116]i[105]m[109]e[101]s[115] [32]i[105]n[110] [32]d[100]r[114]e[101]a[97]m[109] [32]t[116]h[104]e[101]y[121] [32]a[97]l[108]l[108],[44] [32]w[119]h[104]o[111]m[109] [32]d[100]o[111]t[116]e[101],[44] [32]T[84]o[111] [32]s[115]o[111]u[117]l[108] [32]m[109]i[105]n[110]e[101] [32]a[97]r[114]r[114]i[105]v[118]e[101]d[100] [32]l[108]i[105]k[107]e[101] [32]g[103]u[117]e[101]s[115]t[116]s[115]:[58]
{462} M[77]y[121] [32]s[115]o[111]u[117]l[108] [32]s[115]e[101]c[99]r[114]e[101]t[116] [32]f[102]o[111]r[114]m[109]s[115] [32]w[119]a[97]s[115] [32]k[107]e[101]e[101]p[112]i[105]n[110]g[103],[44] [32]M[77]y[121] [32]m[109]u[117]s[115]e[101] [32]m[109]a[97]d[100]e[101] [32]a[97]l[108]l[108] [32]t[116]h[104]e[101]m[109] [32]o[111]n[110]c[99]e[101] [32]m[109]o[111]r[114]e[101] [32]l[108]i[105]v[118]i[105]n[110]g[103],[44]
{463} A[65]n[110]d[100] [32]I[73],[44] [32]u[117]n[110]t[116]r[114]o[111]u[117]b[98]l[108]e[101]d[100],[44] [32]g[103]l[108]o[111]r[114]i[105]f[102]i[105]e[101]d[100] [32]T[84]h[104]e[101] [32]g[103]i[105]r[114]l[108] [32]f[102]r[114]o[111]m[109] [32]r[114]o[111]c[99]k[107]s[115],[44] [32]i[105]d[100]e[101]a[97]l[108] [32]m[109]y[121],[44]
{464} A[65]n[110]d[100] [32]g[103]i[105]r[114]l[108]s[115],[44] [32]a[97]t[116] [32]b[98]a[97]n[110]k[107]s[115] [32]S[83]a[97]l[108]g[103]i[105]r[114]i[105]a[97]n[110] [32]c[99]a[97]p[112]t[116]u[117]r[114]e[101]d[100].[46]
{465} B[66]u[117]t[116] [32]n[110]o[111]w[119],[44] [32]f[102]r[114]i[105]e[101]n[110]d[100]s[115],[44] [32]f[102]r[114]o[111]m[109] [32]a[97]l[108]l[108] [32]m[109]y[121] [32]s[115]i[105]d[100]e[101]s[115] [32]-[45]
{466} '[39]O[79]f[102] [32]w[119]h[104]o[111]m[109] [32]y[121]o[111]u[117]r[114] [32]o[111]w[119]n[110] [32]l[108]y[121]r[114]e[101] [32]s[115]i[105]g[103]h[104]s[115]?[63]'[39] [32]B[66]y[121] [32]y[121]o[111]u[117] [32]I[73]'[39]m[109] [32]o[111]f[102]t[116]e[101]n[110] [32]b[98]r[114]i[105]s[115]k[107]l[108]y[121] [32]q[113]u[117]e[101]s[115]t[116]i[105]o[111]n[110]e[101]d[100],[44] [32]-[45]
{467} '[39]T[84]o[111] [32]w[119]h[104]o[111]m[109] [32]i[105]n[110] [32]t[116]h[104]r[114]o[111]n[110]g[103] [32]o[111]f[102] [32]j[106]e[101]a[97]l[108]o[111]u[117]s[115] [32]g[103]i[105]r[114]l[108]s[115] [32]Y[89]o[111]u[117] [32]d[100]e[101]d[100]i[105]c[99]a[97]t[116]e[101]d[100] [32]t[116]u[117]n[110]e[101] [32]o[111]f[102] [32]h[104]e[101]r[114]s[115]?[63]'[39]
{468} L[76]V[86]I[73]I[73]I[73]
{469} '[39]W[87]h[104]o[111]s[115]e[101] [32]g[103]l[108]a[97]n[110]c[99]e[101],[44] [32]e[101]x[120]c[99]i[105]t[116]i[105]n[110]g[103] [32]i[105]n[110]s[115]p[112]i[105]r[114]a[97]t[116]i[105]o[111]n[110],[44] [32]W[87]i[105]t[116]h[104] [32]s[115]w[119]e[101]e[101]t[116] [32]c[99]a[97]r[114]e[101]s[115]s[115] [32]g[103]a[97]v[118]e[101] [32]b[98]e[101]s[115]t[116] [32]r[114]e[101]w[119]a[97]r[114]d[100]
{470} F[70]o[111]r[114] [32]t[116]h[104]o[111]u[117]g[103]h[104]t[116]f[102]u[117]l[108] [32]s[115]i[105]n[110]g[103]i[105]n[110]g[103] [32]w[119]i[105]t[116]h[104] [32]a[97]t[116]t[116]e[101]n[110]t[116]i[105]o[111]n[110]?[63]'[39]
{471} '[39]A[65]n[110]d[100] [32]w[119]h[104]o[111]m[109] [32]y[121]o[111]u[117]r[114] [32]l[108]o[111]v[118]e[101]l[108]y[121] [32]v[118]e[101]r[114]s[115]e[101] [32]a[97]d[100]o[111]r[114]e[101]d[100]?[63]'[39]
{472} A[65]h[104],[44] [32]n[110]o[111] [32]o[111]n[110]e[101],[44] [32]m[109]y[121] [32]f[102]r[114]i[105]e[101]n[110]d[100]s[115],[44] [32]b[98]e[101]l[108]i[105]e[101]v[118]e[101] [32]m[109]e[101]![33]
{473} B[66]u[117]t[116] [32]r[114]o[111]a[97]d[100] [32]a[97]l[108]a[97]r[114]m[109] [32]o[111]f[102] [32]l[108]o[111]v[118]e[101] [32]t[116]h[104]e[101]n[110] [32]f[102]i[105]l[108]l[108]e[101]d[100] [32]m[109]e[101].[46]
{474} A[65]l[108]l[108] [32]t[116]h[104]a[97]t[116] [32]I[73] [32]g[103]l[108]a[97]d[100]l[108]e[101]s[115]s[115]l[108]y[121] [32]s[115]u[117]r[114]v[118]i[105]v[118]e[101]d[100].[46]
{475} H[72]e[101]'[39]s[115] [32]b[98]l[108]e[101]s[115]s[115]e[101]d[100],[44] [32]w[119]h[104]o[111] [32]w[119]i[105]t[116]h[104] [32]h[104]i[105]s[115] [32]l[108]o[111]v[118]e[101] [32]c[99]o[111]m[109]b[98]i[105]n[110]e[101]d[100]
{476} O[79]f[102] [32]r[114]h[104]y[121]m[109]e[101]s[115] [32]t[116]h[104]e[101] [32]f[102]e[101]v[118]e[101]r[114]:[58] [32]h[104]e[101] [32]c[99]o[111]u[117]l[108]d[100] [32]d[100]o[111]u[117]b[98]l[108]e[101] [32]O[79]f[102] [32]p[112]o[111]e[101]t[116]r[114]y[121] [32]s[115]a[97]c[99]r[114]e[101]d[100] [32]s[115]c[99]r[114]a[97]p[112]s[115],[44]
{477} A[65]r[114]i[105]d[100],[44] [32]f[102]o[111]l[108]l[108]o[111]w[119]i[105]n[110]g[103] [32]P[80]e[101]t[116]r[114]a[97]r[114]k[107]a[97]'[39]s[115] [32]t[116]r[114]a[97]c[99]k[107]s[115],[44] [32]C[67]o[111]u[117]l[108]d[100] [32]c[99]a[97]l[108]m[109] [32]h[104]i[105]s[115] [32]h[104]e[101]a[97]r[114]t[116]'[39]s[115] [32]t[116]h[104]e[101] [32]b[98]i[105]g[103]g[103]e[101]s[115]t[116] [32]t[116]r[114]o[111]u[117]b[98]l[108]e[101].[46]
{478} C[67]o[111]u[117]l[108]d[100] [32]c[99]a[97]t[116]c[99]h[104] [32]t[116]h[104]e[101] [32]g[103]l[108]o[111]r[114]y[121] [32]b[98]y[121] [32]t[116]h[104]e[101] [32]w[119]a[97]y[121]:[58] [32]B[66]u[117]t[116] [32]I[73] [32]i[105]n[110] [32]l[108]o[111]v[118]e[101] [32]w[119]a[97]s[115] [32]d[100]u[117]m[109]b[98],[44] [32]i[105]n[110]a[97]n[110]e[101].[46]
{479} L[76]I[73]X[88]
{480} T[84]h[104]e[101] [32]l[108]o[111]v[118]e[101]'[39]s[115] [32]f[102]o[111]r[114]e[101]g[103]o[111]n[110]e[101],[44] [32]t[116]h[104]e[101] [32]m[109]u[117]s[115]e[101] [32]a[97]p[112]p[112]e[101]a[97]r[114]e[101]d[100],[44] [32]A[65]n[110]d[100] [32]c[99]l[108]e[101]a[97]r[114]e[101]r[114] [32]m[109]y[121] [32]m[109]i[105]n[110]d[100] [32]b[98]e[101]c[99]a[97]m[109]e[101],[44]
{481} I[73]'[39]m[109] [32]f[102]r[114]e[101]e[101],[44] [32]b[98]u[117]t[116] [32]l[108]o[111]o[111]k[107] [32]f[102]o[111]r[114] [32]u[117]n[110]i[105]o[111]n[110],[44] [32]g[103]e[101]a[97]r[114]e[101]d[100] [32]I[73]n[110] [32]s[115]o[111]u[117]n[110]d[100],[44] [32]s[115]e[101]n[110]s[115]e[101] [32]a[97]n[110]d[100] [32]t[116]e[101]m[109]p[112]e[101]r[114] [32]g[103]a[97]m[109]e[101]/[47]
{482} I[73] [32]w[119]r[114]i[105]t[116]e[101],[44] [32]a[97]n[110]d[100] [32]h[104]e[101]a[97]r[114]t[116] [32]y[121]e[101]t[116] [32]i[105]s[115]n[110]'[39]t[116] [32]b[98]o[111]r[114]i[105]n[110]g[103],[44] [32]T[84]h[104]e[101] [32]p[112]e[101]n[110] [32]u[117]n[110]w[119]i[105]t[116]t[116]i[105]n[110]g[103] [32]i[105]s[115]n[110]'[39]t[116] [32]d[100]r[114]a[97]w[119]i[105]n[110]g[103]
{483} A[65]l[108]o[111]n[110]g[103] [32]u[117]n[110]f[102]i[105]n[110]i[105]s[115]h[104]e[101]d[100] [32]r[114]h[104]y[121]m[109]e[101]s[115] [32]o[111]f[102] [32]w[119]o[111]r[114]d[100]s[115] [32]N[78]o[111] [32]g[103]i[105]r[114]l[108]'[39]s[115] [32]s[115]m[109]a[97]l[108]l[108] [32]f[102]e[101]e[101]t[116] [32]a[97]n[110]d[100] [32]n[110]o[111] [32]h[104]e[101]a[97]d[100]s[115].[46]
{484} E[69]x[120]t[116]i[105]n[110]g[103]u[117]i[105]s[115]h[104]e[101]d[100] [32]a[97]s[115]h[104] [32]w[119]i[105]l[108]l[108] [32]n[110]o[111]t[116] [32]b[98]e[101] [32]h[104]e[101]a[97]t[116]i[105]n[110]g[103],[44] [32]W[87]i[105]t[116]h[104]o[111]u[117]t[116] [32]t[116]e[101]a[97]r[114]s[115] [32]I[73] [32]a[97]m[109] [32]s[115]a[97]d[100]
{485} A[65]n[110]d[100] [32]i[105]n[110] [32]a[97] [32]w[119]h[104]i[105]l[108]e[101] [32]o[111]f[102] [32]s[115]t[116]o[111]r[114]m[109] [32]t[116]h[104]e[101] [32]t[116]r[114]a[97]c[99]k[107] [32]I[73]n[110] [32]s[115]o[111]u[117]l[108] [32]m[109]i[105]n[110]e[101] [32]w[119]i[105]l[108]l[108] [32]s[115]o[111]o[111]n[110] [32]b[98]e[101] [32]c[99]e[101]a[97]s[115]i[105]n[110]g[103],[44]
{486} A[65]n[110]d[100] [32]t[116]h[104]e[101]n[110] [32]I[73] [32]s[115]h[104]a[97]l[108]l[108] [32]b[98]e[101]g[103]i[105]n[110] [32]t[116]o[111] [32]r[114]h[104]y[121]m[109]e[101] [32]N[78]e[101]w[119] [32]c[99]o[111]u[117]p[112]l[108]e[101]t[116]s[115],[44] [32]m[109]o[111]r[114]e[101] [32]t[116]h[104]a[97]n[110] [32]t[116]w[119]e[101]n[110]t[116]y[121] [32]f[102]i[105]v[118]e[101],[44]
{487} L[76]X[88]
{488} A[65]l[108]r[114]e[101]a[97]d[100]y[121] [32]I[73] [32]o[111]f[102] [32]p[112]l[108]a[97]n[110] [32]w[119]a[97]s[115] [32]t[116]h[104]i[105]n[110]k[107]i[105]n[110]g[103],[44] [32]O[79]f[102] [32]n[110]a[97]m[109]e[101] [32]o[111]f[102] [32]p[112]e[101]r[114]s[115]o[111]n[110] [32]n[110]u[117]m[109]b[98]e[101]r[114] [32]o[111]n[110]e[101],[44]
{489} F[70]r[114]o[111]m[109] [32]n[110]o[111]v[118]e[101]l[108]'[39]s[115] [32]o[111]n[110]l[108]y[121] [32]b[98]e[101]g[103]i[105]n[110]n[110]i[105]n[110]g[103] [32]禺-30][-128]納-108] [32]I[73]'[39]v[118]e[101] [32]f[102]i[105]n[110]i[105]s[115]h[104]e[101]d[100] [32]n[110]o[111]w[119] [32]c[99]h[104]a[97]p[112]t[116]e[101]r[114] [32]o[111]n[110]e[101].[46]
{490} I[73] [32]c[99]h[104]e[101]c[99]k[107]e[101]d[100] [32]i[105]t[116] [32]a[97]l[108]l[108],[44] [32]a[97]n[110]d[100] [32]v[118]e[101]r[114]y[121] [32]s[115]t[116]r[114]i[105]c[99]t[116]l[108]y[121];[59] [32]I[73]n[110] [32]m[109]a[97]n[110]y[121] [32]p[112]l[108]a[97]c[99]e[101]s[115] [32]c[99]o[111]n[110]t[116]r[114]a[97]d[100]i[105]c[99]t[116]o[111]r[114]y[121],[44]
{491} B[66]u[117]t[116] [32]n[110]e[101]v[118]e[101]r[114] [32]w[119]a[97]n[110]t[116]e[101]d[100] [32]t[116]o[111] [32]c[99]o[111]r[114]r[114]e[101]c[99]t[116];[59] [32]T[84]o[111] [32]c[99]e[101]n[110]s[115]o[111]r[114]s[115]h[104]i[105]p[112] [32]I[73]'[39]l[108]l[108] [32]p[112]a[97]y[121] [32]m[109]y[121] [32]d[100]e[101]b[98]t[116];[59]
{492} T[84]o[111] [32]j[106]o[111]u[117]r[114]n[110]a[97]l[108]i[105]s[115]t[116]s[115] [32]I[73] [32]p[112]u[117]t[116] [32]a[97]t[116] [32]m[109]e[101]r[114]c[99]y[121] [32]O[79]f[102] [32]l[108]a[97]b[98]o[111]u[117]r[114] [32]m[109]i[105]n[110]e[101] [32]s[115]o[111]m[109]e[101] [32]r[114]e[101]a[97]l[108] [32]f[102]r[114]u[117]i[105]t[116].[46]
{493} Y[89]o[111]u[117] [32]g[103]e[101]t[116] [32]a[97]l[108]o[111]n[110]g[103] [32]t[116]h[104]e[101] [32]N[78]e[101]v[118]a[97]'[39]s[115] [32]r[114]o[111]u[117]t[116]e[101],[44] [32]N[78]e[101]w[119]b[98]o[111]r[114]n[110] [32]b[98]y[121] [32]m[109]e[101] [32]t[116]h[104]e[101] [32]w[119]o[111]r[114]k[107] [32]o[111]f[102] [32]f[102]a[97]n[110]c[99]y[121];[59]
{494} F[70]o[111]r[114] [32]m[109]e[101] [32]t[116]h[104]e[101] [32]g[103]l[108]o[111]r[114]y[121] [32]b[98]r[114]i[105]n[110]g[103],[44] [32]o[111]f[102] [32]c[99]o[111]u[117]r[114]s[115]e[101]:[58] [32]W[87]r[114]y[121] [32]t[116]a[97]l[108]k[107]s[115],[44] [32]t[116]h[104]e[101] [32]n[110]o[111]i[105]s[115]e[101],[44] [32]a[97] [32]l[108]o[111]t[116] [32]o[111]f[102] [32]c[99]u[117]r[114]s[115]e[101]![33]
{495} C[67]H[72]A[65]P[80]T[84]E[69]R[82] [32]T[84]W[87]O[79]
{496} O[79] [32],[44] [32]r[114]u[117]s[115]![33]
{497} H[72]o[111]r[114]
{498} O[79] [32]R[82]u[117]s[115]s[115]i[105]a[97]![33]
{499} I[73]
{500} T[84]h[104]e[101] [32]h[104]a[97]m[109]l[108]e[101]t[116],[44] [32]w[119]h[104]e[101]r[114]e[101] [32]E[69]u[117]g[103]e[101]n[110]e[101]'[39]s[115] [32]b[98]o[111]r[114]i[105]n[110]g[103],[44] [32]I[73]s[115] [32]n[110]i[105]c[99]e[101] [32]a[97]n[110]d[100] [32]c[99]o[111]s[115]y[121] [32]a[97] [32]n[110]o[111]o[111]k[107],[44]
{501} I[73]n[110] [32]i[105]t[116] [32]a[97] [32]f[102]r[114]i[105]e[101]n[110]d[100] [32]o[111]f[102] [32]j[106]o[111]y[121]s[115] [32]q[113]u[117]i[105]t[116]e[101] [32]v[118]i[105]r[114]g[103]i[105]n[110] [32]C[67]o[111]u[117]l[108]d[100] [32]b[98]l[108]e[101]s[115]s[115] [32]t[116]h[104]e[101] [32]s[115]k[107]y[121] [32]i[105]f[102] [32]c[99]a[97]s[115]t[116] [32]a[97] [32]l[108]o[111]o[111]k[107].[46]
{502} H[72]i[105]s[115] [32]h[104]o[111]u[117]s[115]e[101] [32]s[115]t[116]o[111]o[111]d[100] [32]i[105]n[110] [32]p[112]l[108]a[97]c[99]e[101] [32]s[115]e[101]l[108]e[101]c[99]t[116]e[101]d[100],[44] [32]F[70]r[114]o[111]m[109] [32]w[119]i[105]n[110]d[100]s[115] [32]b[98]y[121] [32]m[109]o[111]u[117]n[110]t[116]a[97]i[105]n[110]s[115] [32]p[112]r[114]o[111]t[116]e[101]c[99]t[116]e[101]d[100],[44]
{503} O[79]n[110] [32]r[114]i[105]v[118]e[101]r[114]'[39]s[115] [32]b[98]a[97]t[116]i[105]k[107];[59] [32]a[97]n[110]d[100] [32]f[102]a[97]r[114] [32]a[97]w[119]a[97]y[121] [32]I[73]n[110] [32]f[102]r[114]o[111]n[110]t[116] [32]o[111]f[102] [32]i[105]t[116],[44] [32]a[97]l[108]l[108] [32]l[108]o[111]o[111]k[107]i[105]n[110]g[103] [32]g[103]a[97]y[121],[44]
{504} S[83]o[111]m[109]e[101] [32]m[109]e[101]a[97]d[100]o[111]w[119]s[115] [32]a[97]n[110]d[100] [32]f[102]i[105]e[101]l[108]d[100]s[115] [32]e[101]x[120]t[116]e[101]n[110]d[100]e[101]d[100];[59] [32]S[83]o[111]m[109]e[101]w[119]h[104]e[101]r[114]e[101] [32]v[118]i[105]l[108]l[108]a[97]g[103]e[101]s[115] [32]w[119]e[101]r[114]e[101] [32]s[115]e[101]e[101]n[110],[44]
{505} S[83]o[111]m[109]e[101] [32]h[104]e[101]r[114]d[100]s[115] [32]w[119]e[101]r[114]e[101] [32]w[119]a[97]l[108]k[107]i[105]n[110]g[103] [32]i[105]n[110] [32]t[116]h[104]e[101] [32]s[115]c[99]e[101]n[110]e[101],[44] [32]B[66]y[121] [32]g[103]a[97]r[114]d[100]e[101]n[110] [32]c[99]a[97]n[110]o[111]p[112]i[105]e[101]s[115] [32]w[119]e[101]r[114]e[101] [32]e[101]n[110]d[100]e[101]d[100],[44]
{506} I[73]t[116] [32]w[119]a[97]s[115] [32]n[110]e[101]g[103]l[108]e[101]c[99]t[116]e[101]d[100].[46],[44] [32]l[108]a[97]r[114]g[103]e[101] [32]i[105]n[110] [32]g[103]a[97]u[117]g[103]e[101],[44] [32]O[79]f[102] [32]d[100]r[114]y[121]a[97]d[100]s[115] [32]s[115]h[104]e[101]l[108]t[116]e[101]r[114] [32]f[102]o[111]r[114] [32]a[97]n[110] [32]a[97]g[103]e[101].[46]
{507} I[73]I[73]
{508} T[84]h[104]e[101] [32]h[104]o[111]n[110]o[111]u[117]r[114]e[101]d[100] [32]c[99]a[97]s[115]t[116]l[108]e[101] [32]w[119]a[97]s[115] [32]e[101]r[114]e[101]c[99]t[116]e[101]d[100] [32]L[76]i[105]k[107]e[101] [32]a[97]l[108]l[108] [32]s[115]u[117]c[99]h[104] [32]c[99]a[97]s[115]t[116]l[108]e[101]s[115]:[58] [32]i[105]t[116] [32]w[119]a[97]s[115] [32]f[102]i[105]n[110]e[101]
{509} A[65]n[110]d[100] [32]p[112]l[108]a[97]c[99]i[105]d[100],[44] [32]s[115]o[111]l[108]i[105]d[100]l[108]y[121] [32]e[101]f[102]f[102]e[101]c[99]t[116]e[101]d[100],[44] [32]I[73]n[110] [32]s[115]t[116]y[121]l[108]e[101] [32]o[111]f[102] [32]c[99]l[108]e[101]v[118]e[101]r[114] [32]o[111]l[108]d[100] [32]t[116]i[105]m[109]e[101].[46]
{510} A[65]t[116] [32]a[97]n[110]y[121] [32]p[112]l[108]a[97]c[99]e[101] [32]t[116]h[104]e[101]r[114]e[101] [32]a[97]r[114]e[101] [32]s[115]o[111]m[109]e[101] [32]c[99]h[104]a[97]m[109]b[98]e[101]r[114]s[115],[44] [32]O[79]f[102] [32]d[100]a[97]m[109]a[97]s[115]k[107] [32]a[97]r[114]e[101] [32]i[105]n[110] [32]r[114]o[111]o[111]m[109]s[115] [32]w[119]a[97]l[108]l[108]p[112]a[97]p[112]e[101]r[114]s[115],[44]
{511} T[84]h[104]e[101] [32]p[112]o[111]r[114]t[116]r[114]a[97]i[105]t[116]s[115] [32]o[111]f[102] [32]t[116]h[104]e[101] [32]t[116]s[115]a[97]r[114]s[115] [32]o[111]n[110] [32]w[119]a[97]l[108]l[108]s[115],[44] [32]A[65]n[110]d[100] [32]m[109]o[111]t[116]l[108]e[101]y[121] [32]t[116]i[105]l[108]e[101]s[115] [32]o[111]n[110] [32]s[115]t[116]o[111]v[118]e[101]s[115].[46]
{512} A[65]l[108]l[108]'[39]s[115] [32]B[66]y[121] [32]n[110]o[111]w[119] [32]m[109]u[117]c[99]h[104] [32]d[100]i[105]l[108]a[97]p[112]i[105]d[100]a[97]t[116]e[101]d[100],[44] [32]I[73]n[110]d[100]e[101]e[101]d[100],[44] [32]I[73] [32]d[100]o[111]n[110]'[39]t[116] [32]k[107]n[110]o[111]w[119] [32]w[119]h[104]y[121].[46]
{513} B[66]u[117]t[116] [32]a[97]n[110]y[121]w[119]a[97]y[121] [32]t[116]h[104]e[101] [32]f[102]r[114]i[105]e[101]n[110]d[100] [32]o[111]f[102] [32]m[109]i[105]n[110]e[101] [32]T[84]o[111] [32]b[98]e[101] [32]l[108]i[105]g[103]h[104]t[116]-[45]h[104]e[101]a[97]r[114]t[116]e[101]d[100] [32]h[104]a[97]d[100] [32]b[98]e[101]e[101]n[110] [32]f[102]a[97]t[116]e[101]d[100],[44]
{514} A[65]s[115] [32]h[104]e[101] [32]i[105]n[110]d[100]i[105]f[102]f[102]e[101]r[114]e[101]n[110]t[116]l[108]y[121] [32]c[99]o[111]u[117]l[108]d[100] [32]y[121]a[97]w[119]n[110] [32]I[73]n[110]s[115]i[105]d[100]e[101] [32]a[97]n[110]t[116]i[105]q[113]u[117]e[101] [32]o[111]r[114] [32]m[109]o[111]d[100]e[101]r[114]n[110] [32]h[104]a[97]l[108]l[108].[46]
{515} I[73]I[73]I[73]
{516} O[79]n[110]e[101]g[103]i[105]n[110] [32]h[104]a[97]d[100] [32]t[116]h[104]a[97]t[116] [32]r[114]o[111]o[111]m[109] [32]f[102]o[111]r[114] [32]l[108]i[105]v[118]i[105]n[110]g[103],[44] [32]I[73]n[110] [32]w[119]h[104]i[105]c[99]h[104] [32]h[104]i[105]s[115] [32]u[117]n[110]c[99]l[108]e[101] [32]l[108]i[105]v[118]e[101]d[100] [32]o[111]n[110] [32]e[101]a[97]r[114]t[116]h[104]:[58]
{517} A[65]t[116] [32]w[119]i[105]n[110]d[100]o[111]w[119] [32]h[104]e[101] [32]f[102]l[108]i[105]e[101]s[115] [32]w[119]a[97]s[115] [32]k[107]i[105]l[108]l[108]i[105]n[110]g[103] [32]A[65]n[110]d[100] [32]d[100]a[97]i[105]l[108]y[121] [32]h[104]o[111]u[117]s[115]e[101]-[45]k[107]e[101]e[101]p[112]e[101]r[114] [32]c[99]u[117]r[114]s[115]e[101]d[100].[46]
{518} I[73]t[116] [32]a[97]l[108]l[108] [32]w[119]a[97]s[115] [32]s[115]i[105]m[109]p[112]l[108]e[101]:[58] [32]f[102]l[108]o[111]o[111]r[114]s[115] [32]o[111]f[102] [32]o[111]a[97]k[107],[44] [32]D[68]i[105]v[118]a[97]n[110],[44] [32]t[116]h[104]e[101] [32]t[116]a[97]b[98]l[108]e[101],[44] [32]l[108]a[97]r[114]g[103]e[101] [32]w[119]a[97]r[114]d[100]r[114]o[111]b[98]e[101],[44]
{519} O[79]f[102] [32]a[97]n[110]y[121] [32]i[105]n[110]k[107] [32]n[110]o[111]t[116] [32]a[97]n[110]y[121] [32]s[115]p[112]o[111]t[116],[44] [32]I[73]n[110] [32]r[114]o[111]o[111]m[109] [32]t[116]w[119]o[111] [32]c[99]u[117]p[112]b[98]o[111]a[97]r[114]d[100]s[115] [32]t[116]h[104]e[101]y[121] [32]h[104]a[97]d[100] [32]g[103]o[111]t[116]:[58]
{520} I[73]n[110] [32]o[111]n[110]e[101] [32]h[104]e[101] [32]s[115]a[97]w[119] [32]o[111]f[102] [32]b[98]r[114]a[97]n[110]d[100]i[105]e[101]s[115] [32]o[111]r[114]d[100]e[101]r[114],[44] [32]I[73]n[110] [32]o[111]t[116]h[104]e[101]r[114] [32]f[102]o[111]u[117]n[110]d[100] [32]d[100]e[101]b[98]i[105]t[116] [32]b[98]o[111]o[111]k[107],[44]
{521} A[65] [32]j[106]u[117]g[103] [32]f[102]o[111]r[114] [32]a[97]p[112]p[112]l[108]e[101] [32]j[106]u[117]i[105]c[99]e[101] [32]h[104]e[101] [32]t[116]o[111]o[111]k[107],[44] [32]A[65]n[110] [32]o[111]l[108]d[100] [32]c[99]a[97]l[108]e[101]n[110]d[100]a[97]r[114] [32]i[105]n[110] [32]o[111]r[114]d[100]e[101]r[114]:[58]
{522} T[84]h[104]e[101] [32]o[111]l[108]d[100] [32]m[109]a[97]n[110] [32]h[104]a[97]d[100] [32]n[110]o[111] [32]t[116]i[105]m[109]e[101] [32]T[84]o[111] [32]r[114]e[101]a[97]d[100] [32]t[116]h[104]e[101] [32]b[98]o[111]o[111]k[107]s[115] [32]o[111]f[102] [32]o[111]t[116]h[104]e[101]r[114] [32]k[107]i[105]n[110]d[100].[46]
{523} I[73]V[86]
{524} A[65]m[109]o[111]n[110]g[103] [32]h[104]i[105]s[115] [32]p[112]r[114]o[111]p[112]e[101]r[114]t[116]i[105]e[101]s[115] [32]a[97]l[108]o[111]n[110]e[101],[44] [32]T[84]o[111] [32]p[112]a[97]s[115]s[115] [32]a[97]w[119]a[97]y[121] [32]h[104]i[105]s[115] [32]l[108]a[97]z[122]y[121] [32]t[116]i[105]m[109]e[101],[44]
{525} H[72]e[101] [32]w[119]a[97]n[110]t[116]e[101]d[100] [32]t[116]o[111] [32]e[101]s[115]t[116]a[97]b[98]l[108]i[105]s[115]h[104] [32]o[111]w[119]n[110],[44] [32]I[73]n[110] [32]o[111]r[114]d[100]e[101]r[114]s[115] [32]n[110]e[101]w[119]e[101]r[114] [32]f[102]a[97]s[115]h[104]i[105]o[111]n[110]e[101]d[100] [32]l[108]i[105]n[110]e[101]:[58]
{526} I[73]n[110] [32]c[99]o[111]u[117]n[110]t[116]r[114]y[121]'[39]s[115] [32]p[112]l[108]a[97]c[99]e[101] [32]t[116]h[104]e[101] [32]m[109]a[97]n[110] [32]o[111]f[102] [32]w[119]i[105]s[115]d[100]o[111]m[109],[44] [32]H[72]e[101] [32]g[103]a[97]v[118]e[101] [32]h[104]i[105]s[115] [32]s[115]e[101]r[114]f[102]s[115] [32]a[97] [32]p[112]i[105]e[101]c[99]e[101] [32]o[111]f[102] [32]f[102]r[114]e[101]e[101]d[100]o[111]m[109]:[58]
{527} T[84]h[104]e[101] [32]c[99]o[111]r[114]v[118]e[101]e[101] [32]y[121]o[111]k[107]e[101] [32]c[99]h[104]a[97]n[110]g[103]e[101]d[100] [32]f[102]o[111]r[114] [32]r[114]a[97]t[116]e[101],[44] [32]A[65]n[110]d[100] [32]s[115]e[101]r[114]f[102]s[115] [32]w[119]e[101]r[114]e[101] [32]b[98]l[108]e[101]s[115]s[115]i[105]n[110]g[103] [32]t[116]h[104]e[101]i[105]r[114] [32]f[102]a[97]t[116]e[101].[46]
{528} F[70]o[111]r[114] [32]t[116]h[104]a[97]t[116] [32]a[97] [32]n[110]e[101]i[105]g[103]h[104]b[98]o[111]u[117]r[114] [32]i[105]n[110] [32]h[104]i[105]s[115] [32]f[102]a[97]r[114]m[109]i[105]n[110]g[103] [32]W[87]a[97]s[115] [32]p[112]u[117]f[102]f[102]i[105]n[110]g[103] [32]u[117]p[112]:[58] [32]t[116]o[111] [32]h[104]i[105]s[115] [32]b[98]i[105]g[103] [32]f[102]a[97]r[114]m[109]
{529} H[72]e[101] [32]s[115]a[97]w[119] [32]i[105]n[110] [32]i[105]t[116] [32]s[115]o[111]m[109]e[101] [32]d[100]r[114]e[101]a[97]d[100]f[102]u[117]l[108] [32]h[104]a[97]r[114]m[109];[59] [32]T[84]h[104]e[101] [32]o[111]t[116]h[104]e[101]r[114] [32]s[115]m[109]i[105]l[108]e[101]d[100],[44] [32]b[98]u[117]t[116] [32]s[115]m[109]i[105]l[108]e[101] [32]w[119]a[97]s[115] [32]c[99]u[117]n[110]n[110]i[105]n[110]g[103];[59]
{530} A[65]n[110]d[100] [32]t[116]h[104]e[101]y[121] [32]e[101]x[120]p[112]r[114]e[101]s[115]s[115]e[101]d[100] [32]t[116]h[104]e[101] [32]c[99]o[111]m[109]m[109]o[111]n[110] [32]w[119]i[105]s[115]h[104] [32]T[84]o[111] [32]c[99]a[97]l[108]l[108] [32]h[104]i[105]m[109] [32]d[100]a[97]n[110]g[103]e[101]r[114]o[111]u[117]s[115] [32]q[113]u[117]e[101]e[101]r[114] [32]f[102]i[105]s[115]h[104].[46]
{531} V[86]
{532} A[65]t[116] [32]f[102]i[105]r[114]s[115]t[116] [32]t[116]h[104]e[101]y[121] [32]c[99]a[97]m[109]e[101] [32]t[116]o[111] [32]h[104]i[105]m[109] [32]f[102]o[111]r[114] [32]v[118]i[105]s[115]i[105]t[116] [32]B[66]u[117]t[116] [32]a[97]s[115] [32]h[104]e[101] [32]u[117]s[115]u[117]a[97]l[108]l[108]y[121] [32]w[119]a[97]s[115] [32]g[103]o[111]n[110]e[101]
{533} ([40]F[70]o[111]r[114] [32]h[104]i[105]m[109] [32]t[116]o[111] [32]h[104]i[105]d[100]e[101] [32]w[119]a[97]s[115] [32]v[118]e[101]r[114]y[121] [32]e[101]a[97]s[115]y[121] [32]B[66]y[121] [32]r[114]i[105]d[100]i[105]n[110]g[103] [32]s[115]t[116]a[97]l[108]l[108]i[105]o[111]n[110] [32]f[102]r[114]o[111]m[109] [32]t[116]h[104]e[101] [32]D[68]o[111]n[110],[44]
{534} W[87]h[104]e[101]n[110] [32]s[115]u[117]d[100]d[100]e[101]n[110]l[108]y[121] [32]f[102]r[114]o[111]m[109] [32]v[118]i[105]l[108]l[108]a[97]g[103]e[101] [32]r[114]e[101]a[97]r[114] [32]H[72]e[101] [32]c[99]o[111]u[117]l[108]d[100] [32]s[115]o[111]m[109]e[101] [32]d[100]r[114]o[111]s[115]h[104]k[107]y[121]'[39]s[115] [32]s[115]o[111]u[117]n[110]d[100]s[115] [32]h[104]e[101]a[97]r[114])[41],[44]
{535} S[83]u[117]c[99]h[104] [32]a[97]c[99]t[116]s[115] [32]i[105]n[110]s[115]u[117]l[108]t[116]e[101]d[100] [32]n[110]e[101]i[105]g[103]h[104]b[98]o[111]u[117]r[114]s[115] [32]a[97]l[108]l[108],[44] [32]T[84]h[104]e[101]y[121] [32]s[115]t[116]o[111]p[112]p[112]e[101]d[100] [32]t[116]o[111] [32]c[99]o[111]m[109]e[101] [32]t[116]o[111] [32]h[104]i[105]m[109] [32]a[97]t[116] [32]a[97]l[108]l[108].[46]
{536} '[39]H[72]e[101]'[39]s[115] [32]i[105]g[103]n[110]o[111]r[114]a[97]m[109]u[117]s[115]'[39],[44] [32]s[115]a[97]i[105]d[100] [32]t[116]h[104]e[101] [32]n[110]e[101]i[105]g[103]h[104]b[98]o[111]u[117]r[114]s[115],[44] [32]'[39]H[72]e[101] [32]i[105]s[115] [32]f[102]r[114]e[101]e[101]-[45]t[116]h[104]i[105]n[110]k[107]e[101]r[114],[44] [32]d[100]r[114]i[105]n[110]k[107]s[115] [32]r[114]e[101]d[100] [32]w[119]i[105]n[110]e[101]
{537} F[70]r[114]o[111]m[109] [32]g[103]l[108]a[97]s[115]s[115] [32]n[110]o[111]t[116] [32]s[115]t[116]o[111]p[112]p[112]i[105]n[110]g[103] [32]F[70]o[111]r[114] [32]a[97] [32]w[119]h[104]i[105]l[108]e[101]'[39].[46] [32]H[72]e[101] [32]n[110]e[101]v[118]e[101]r[114] [32]k[107]i[105]s[115]s[115]e[101]s[115] [32]h[104]a[97]n[110]d[100]s[115] [32]o[111]f[102] [32]l[108]a[97]d[100]i[105]e[101]s[115],[44]
{538} S[83]a[97]y[121]s[115] [32]y[121]e[101]s[115] [32]o[111]r[114] [32]n[110]o[111],[44] [32]n[110]e[101]v[118]e[101]r[114] [32]ミ[-48]エ[-76]ミ[-48]ー[-80]-[45]ム[-47]ー-127] [32]O[79]r[114] [32]ミ[-48]ス[-67]ミ[-48]オ[-75]ム[-47]�-126]-[45]ム[-47]ー-127]'[39]([40]t[116]h[104]e[101] [32]w[119]o[111]r[114]d[100]s[115],[44] [32]t[116]h[104]e[101]y[121] [32]a[97]l[108]l[108] [32]w[119]o[111]u[117]l[108]d[100] [32]p[112]a[97]s[115]s[115])[41].[46]
{539} V[86]I[73]
{540} I[73]n[110] [32]o[111]w[119]n[110] [32]v[118]i[105]l[108]l[108]a[97]g[103]e[101] [32]t[116]o[111] [32]a[97]p[112]p[112]e[101]a[97]r[114] [32]N[78]e[101]w[119] [32]l[108]a[97]n[110]d[100]l[108]o[111]r[114]d[100] [32]i[105]n[110] [32]a[97] [32]d[100]r[114]o[111]s[115]h[104]k[107]y[121] [32]c[99]a[97]m[109]e[101],[44]
{541} A[65]n[110]d[100] [32]t[116]o[111] [32]t[116]h[104]e[101] [32]s[115]a[97]m[109]e[101] [32]a[97]n[110]d[100] [32]s[115]t[116]r[114]i[105]c[99]t[116] [32]r[114]e[101]v[118]e[101]a[97]l[108]e[101]r[114],[44] [32]T[84]o[111] [32]n[110]e[101]i[105]g[103]h[104]b[98]o[111]u[117]r[114]h[104]o[111]o[111]d[100] [32]o[111]c[99]c[99]a[97]s[115]i[105]o[111]n[110]s[115] [32]g[103]a[97]v[118]e[101].[46]
{542} B[66]y[121] [32]n[110]a[97]m[109]e[101] [32]h[104]e[101] [32]w[119]a[97]s[115] [32]V[86]l[108]a[97]d[100]i[105]m[109]i[105]r[114] [32]L[76]e[101]n[110]s[115]k[107]y[121].[46] [32]W[87]i[105]t[116]h[104] [32]G[71]テ[-61]カ[-74]t[116]t[116]i[105]n[110]g[103]e[101]n[110] [32]i[105]n[110] [32]s[115]o[111]u[117]l[108] [32]f[102]r[114]a[97]n[110]k[107]l[108]y[121],[44]
{543} H[72]e[101],[44] [32]d[100]a[97]n[110]d[100]y[121] [32]i[105]n[110] [32]h[104]i[105]s[115] [32]p[112]r[114]i[105]m[109]e[101],[44] [32]a[97]p[112]p[112]r[114]o[111]v[118]e[101]s[115] [32]A[65]l[108]l[108] [32]K[75]a[97]n[110]t[116]'[39]s[115] [32]i[105]d[100]e[101]a[97]s[115] [32]a[97]n[110]d[100] [32]h[104]i[105]s[115] [32]m[109]o[111]v[118]e[101]s[115].[46]
{544} H[72]e[101] [32]b[98]r[114]o[111]u[117]g[103]h[104]t[116] [32]f[102]r[114]o[111]m[109] [32]G[71]e[101]r[114]m[109]a[97]n[110]y[121] [32]h[104]i[105]s[115] [32]d[100]e[101]a[97]r[114],[44] [32]A[65]s[115] [32]p[112]o[111]e[101]t[116],[44] [32]o[111]f[102] [32]l[108]e[101]a[97]r[114]n[110]i[105]n[110]g[103] [32]f[102]r[114]u[117]i[105]t[116]s[115],[44]
{545} W[87]e[101]r[114]e[101] [32]f[102]u[117]l[108]l[108] [32]o[111]f[102] [32]l[108]i[105]b[98]e[101]r[114]t[116]y[121] [32]h[104]i[105]s[115] [32]v[118]i[105]e[101]w[119]s[115] [32]A[65]n[110]d[100] [32]s[115]o[111]u[117]l[108].[46] [32]A[65]r[114]d[100]e[101]n[110]t[116],[44] [32]s[115]o[111]m[109]e[101]w[119]h[104]a[97]t[116] [32]q[113]u[117]e[101]e[101]r[114]
{546} W[87]a[97]s[115] [32]h[104]i[105]s[115] [32]e[101]m[109]o[111]t[116]i[105]o[111]n[110]a[97]l[108] [32]s[115]p[112]e[101]e[101]c[99]h[104].[46] [32]B[66]l[108]a[97]c[99]k[107] [32]c[99]u[117]r[114]l[108]s[115] [32]h[104]i[105]s[115] [32]s[115]h[104]o[111]u[117]l[108]d[100]e[101]r[114]s[115] [32]c[99]o[111]u[117]l[108]d[100] [32]r[114]e[101]a[97]c[99]h[104].[46]
{547} V[86]I[73]I[73]
{548} F[70]r[114]o[111]m[109] [32]c[99]o[111]l[108]d[100] [32]w[119]o[111]r[114]l[108]d[100] [32]o[111]f[102] [32]d[100]i[105]s[115]s[115]i[105]p[112]a[97]t[116]i[105]o[111]n[110] [32]T[84]o[111] [32]f[102]a[97]d[100]e[101] [32]a[97]w[119]a[97]y[121] [32]n[110]o[111]t[116] [32]h[104]a[97]v[118]i[105]n[110]g[103] [32]t[116]i[105]m[109]e[101],[44]
{549} H[72]i[105]s[115] [32]s[115]o[111]u[117]l[108]'[39]s[115] [32]w[119]a[97]r[114]m[109]e[101]d[100] [32]w[119]i[105]t[116]h[104] [32]i[105]n[110]s[115]p[112]i[105]r[114]a[97]t[116]i[105]o[111]n[110] [32]B[66]y[121] [32]l[108]a[97]d[100]y[121]'[39]s[115] [32]g[103]r[114]e[101]e[101]t[116]i[105]n[110]g[103]s[115],[44] [32]f[102]r[114]i[105]e[101]n[110]d[100]l[108]y[121] [32]k[107]i[105]n[110]d[100].[46]
{550} C[67]o[111]n[110]c[99]e[101]r[114]n[110]s[115] [32]o[111]f[102] [32]h[104]e[101]a[97]r[114]t[116] [32]h[104]e[101] [32]w[119]a[97]s[115] [32]i[105]g[103]n[110]o[111]r[114]i[105]n[110]g[103],[44] [32]H[72]e[101] [32]f[102]u[117]t[116]u[117]r[114]e[101] [32]h[104]o[111]p[112]e[101]s[115] [32]w[119]a[97]s[115] [32]a[97]d[100]o[111]r[114]i[105]n[110]g[103],[44]
{551} A[65]n[110]d[100] [32]o[111]f[102] [32]t[116]h[104]e[101] [32]w[119]o[111]r[114]l[108]d[100] [32]n[110]e[101]w[119] [32]l[108]u[117]s[115]t[116]r[114]e[101],[44] [32]n[110]o[111]i[105]s[115]e[101] [32]F[70]u[117]l[108]f[102]i[105]l[108]l[108]e[101]d[100] [32]h[104]i[105]s[115] [32]w[119]i[105]t[116] [32]w[119]i[105]t[116]h[104] [32]f[102]u[117]t[116]u[117]r[114]e[101] [32]j[106]o[111]y[121]s[115].[46]
{552} B[66]y[121] [32]h[104]o[111]n[110]e[101]y[121]e[101]d[100] [32]d[100]r[114]e[101]a[97]m[109] [32]h[104]e[101] [32]w[119]a[97]s[115] [32]a[97]m[109]u[117]s[115]i[105]n[110]g[103] [32]T[84]h[104]e[101] [32]d[100]o[111]u[117]b[98]t[116]s[115] [32]o[111]f[102] [32]h[104]i[105]s[115] [32]o[111]w[119]n[110] [32]h[104]e[101]a[97]r[114]t[116];[59]
{553} F[70]o[111]r[114] [32]h[104]i[105]m[109] [32]t[116]h[104]e[101] [32]a[97]i[105]m[109] [32]o[111]f[102] [32]l[108]i[105]f[102]e[101] [32]w[119]a[97]s[115] [32]s[115]m[109]a[97]r[114]t[116] [32]Q[81]u[117]i[105]t[116]e[101] [32]p[112]u[117]z[122]z[122]l[108]i[105]n[110]g[103] [32]r[114]i[105]d[100]d[100]l[108]e[101],[44] [32]m[109]u[117]c[99]h[104] [32]a[97]l[108]l[108]u[117]r[114]i[105]n[110]g[103],[44]
{554} H[72]e[101] [32]p[112]u[117]z[122]z[122]l[108]e[101]d[100] [32]o[111]v[118]e[101]r[114] [32]e[101]f[102]f[102]e[101]c[99]t[116],[44] [32]I[73]n[110] [32]i[105]t[116] [32]c[99]o[111]u[117]l[108]d[100] [32]m[109]i[105]r[114]a[97]c[99]l[108]e[101]s[115] [32]s[115]u[117]s[115]p[112]e[101]c[99]t[116].[46]
{555} V[86]I[73]I[73]I[73]
{556} H[72]e[101] [32]d[100]i[105]d[100] [32]b[98]e[101]l[108]i[105]e[101]v[118]e[101],[44] [32]t[116]h[104]a[97]t[116] [32]s[115]o[111]u[117]l[108] [32]d[100]e[101]a[97]r[114] [32]W[87]i[105]l[108]l[108] [32]j[106]o[111]i[105]n[110] [32]e[101]n[110]e[101]v[118]i[105]t[116]a[97]b[98]l[108]y[121] [32]h[104]i[105]m[109],[44]
{557} T[84]h[104]a[97]t[116] [32]s[115]h[104]e[101],[44] [32]d[100]e[101]l[108]i[105]g[103]h[104]t[116]l[108]e[101]s[115]s[115] [32]i[105]n[110] [32]t[116]h[104]e[101] [32]n[110]e[101]a[97]r[114],[44] [32]I[73]s[115] [32]d[100]a[97]i[105]l[108]y[121] [32]w[119]a[97]i[105]t[116]i[105]n[110]g[103] [32]j[106]u[117]s[115]t[116] [32]f[102]o[111]r[114] [32]h[104]i[105]m[109];[59]
{558} A[65]n[110]d[100] [32]h[104]e[101] [32]w[119]a[97]s[115] [32]s[115]u[117]r[114]e[101]:[58] [32]f[102]r[114]i[105]e[101]n[110]d[100]s[115] [32]a[97]r[114]e[101] [32]r[114]e[101]a[97]d[100]y[121] [32]T[84]o[111] [32]s[115]u[117]f[102]f[102]e[101]r[114] [32]a[97]l[108]l[108] [32]f[102]o[111]r[114] [32]h[104]i[105]m[109] [32]a[97]l[108]r[114]e[101]a[97]d[100]y[121],[44]
{559} W[87]i[105]l[108]l[108] [32]n[110]e[101]v[118]e[101]r[114] [32]t[116]r[114]e[101]m[109]b[98]l[108]e[101] [32]t[116]h[104]e[101]i[105]r[114] [32]h[104]a[97]n[110]d[100] [32]T[84]o[111] [32]b[98]e[101]a[97]t[116] [32]t[116]h[104]e[101] [32]s[115]l[108]a[97]n[110]d[100]e[101]r[114] [32]o[111]f[102]f[102] [32]a[97] [32]m[109]a[97]n[110];[59]
{560} T[84]h[104]a[97]t[116] [32]t[116]h[104]e[101]r[114]e[101] [32]a[97]r[114]e[101] [32]b[98]y[121] [32]f[102]a[97]t[116]e[101] [32]s[115]e[101]l[108]e[101]c[99]t[116]e[101]d[100] [32]O[79]f[102] [32]p[112]e[101]o[111]p[112]l[108]e[101] [32]d[100]e[101]a[97]r[114] [32]s[115]a[97]c[99]r[114]e[101]d[100] [32]f[102]r[114]i[105]e[101]n[110]d[100]s[115];[59]
{561} T[84]h[104]a[97]t[116] [32]t[116]h[104]e[101]i[105]r[114] [32]f[102]r[114]i[105]e[101]n[110]d[100]s[115]h[104]i[105]p[112] [32]n[110]e[101]v[118]e[101]r[114] [32]e[101]n[110]d[100]s[115];[59] [32]B[66]y[121] [32]u[117]n[110]r[114]e[101]f[102]l[108]e[101]c[99]t[116]e[101]d[100] [32]r[114]a[97]y[121]s[115] [32]e[101]f[102]f[102]e[101]c[99]t[116]e[101]d[100],[44]
{562} I[73]t[116] [32]w[119]i[105]l[108]l[108] [32]s[115]o[111]m[109]e[101]t[116]i[105]m[109]e[101] [32]a[97]l[108]l[108] [32]u[117]s[115] [32]i[105]l[108]l[108]u[117]m[109]e[101],[44] [32]W[87]i[105]l[108]l[108] [32]g[103]i[105]f[102]t[116] [32]t[116]h[104]e[101] [32]w[119]o[111]r[114]l[108]d[100] [32]s[115]o[111]m[109]e[101] [32]b[98]l[108]e[101]s[115]s[115]e[101]d[100] [32]p[112]e[101]r[114]f[102]u[117]m[109]e[101].[46]
{563} I[73]X[88]
{564} R[82]e[101]g[103]r[114]e[101]t[116],[44] [32]r[114]e[101]s[115]e[101]n[110]t[116]m[109]e[101]n[110]t[116],[44] [32]b[98]e[101]i[105]n[110]g[103] [32]s[115]o[111]r[114]r[114]y[121],[44] [32]S[83]o[111]m[109]e[101] [32]p[112]u[117]r[114]e[101] [32]l[108]o[111]v[118]e[101] [32]t[116]o[111] [32]e[101]v[118]e[101]r[114]y[121] [32]b[98]o[111]o[111]n[110],[44]
{565} S[83]o[111]m[109]e[101] [32]s[115]w[119]e[101]e[101]t[116]i[105]s[115]h[104] [32]t[116]o[111]r[114]t[116]u[117]r[114]e[101] [32]o[111]f[102] [32]t[116]h[104]e[101] [32]g[103]l[108]o[111]r[114]y[121] [32]H[72]i[105]s[115] [32]b[98]l[108]o[111]o[111]d[100] [32]e[101]x[120]c[99]i[105]t[116]e[101]d[100] [32]v[118]e[101]r[114]y[121] [32]s[115]o[111]o[111]n[110].[46]
{566} W[87]i[105]t[116]h[104] [32]l[108]y[121]r[114]e[101],[44] [32]w[119]h[104]i[105]l[108]e[101] [32]a[97]b[98]r[114]o[111]a[97]d[100] [32]r[114]e[101]s[115]i[105]d[100]i[105]n[110]g[103],[44] [32]I[73]n[110] [32]G[71]o[111]e[101]t[116]h[104]e[101]'[39]s[115],[44] [32]S[83]h[104]i[105]n[110]e[101]r[114]'[39]s[115] [32]p[112]l[108]a[97]c[99]e[101]s[115] [32]h[104]i[105]k[107]i[105]n[110]g[103],[44]
{567} B[66]y[121] [32]t[116]h[104]e[101]i[105]r[114] [32]p[112]o[111]e[101]t[116]i[105]c[99] [32]l[108]i[105]g[103]h[104]t[116] [32]H[72]e[101] [32]o[111]w[119]n[110] [32]s[115]o[111]u[117]l[108] [32]d[100]i[105]d[100] [32]i[105]g[103]n[110]i[105]t[116]e[101].[46]
{568} O[79]f[102] [32]a[97]r[114]t[116] [32]h[104]i[105]g[103]h[104] [32]m[109]u[117]s[115]e[101]s[115] [32]f[102]i[105]n[110]e[101] [32]i[105]m[109]p[112]r[114]e[101]s[115]s[115]i[105]o[111]n[110]s[115] [32]H[72]e[101],[44] [32]h[104]a[97]p[112]p[112]y[121],[44] [32]n[110]e[101]v[118]e[101]r[114] [32]p[112]u[117]t[116] [32]t[116]o[111] [32]s[115]h[104]a[97]m[109]e[101],[44]
{569} I[73]n[110] [32]s[115]o[111]n[110]g[103]s[115] [32]c[99]o[111]u[117]l[108]d[100] [32]p[112]r[114]o[111]u[117]d[100]l[108]y[121] [32]r[114]e[101]t[116]a[97]i[105]n[110] [32]F[70]o[111]r[114] [32]a[97]l[108]l[108] [32]h[104]i[105]s[115] [32]l[108]i[105]f[102]e[101] [32]e[101]x[120]a[97]l[108]t[116]e[101]d[100] [32]p[112]a[97]s[115]s[115]i[105]o[111]n[110]s[115]
{570} A[65]n[110]d[100] [32]i[105]m[109]p[112]u[117]l[108]s[115]e[101]s[115] [32]o[111]f[102] [32]v[118]i[105]r[114]g[103]i[105]n[110] [32]d[100]r[114]e[101]a[97]m[109],[44] [32]A[65]n[110]d[100] [32]g[103]r[114]a[97]n[110]d[100] [32]s[115]i[105]m[109]p[112]l[108]i[105]c[99]i[105]t[116]y[121] [32]i[105]n[110] [32]h[104]i[105]m[109].[46]
{571} X[88]
{572} H[72]e[101] [32]s[115]a[97]n[110]g[103] [32]o[111]f[102] [32]l[108]o[111]v[118]e[101],[44] [32]f[102]o[111]r[114] [32]l[108]o[111]v[118]e[101] [32]w[119]a[97]s[115] [32]l[108]o[111]y[121]a[97]l[108],[44] [32]H[72]i[105]s[115] [32]s[115]o[111]n[110]g[103] [32]w[119]a[97]s[115] [32]c[99]l[108]e[101]a[97]r[114] [32]l[108]i[105]k[107]e[101] [32]t[116]h[104]e[101] [32]n[110]o[111]o[111]n[110],[44]
{573} L[76]i[105]k[107]e[101] [32]t[116]h[104]o[111]u[117]g[103]h[104]t[116]s[115] [32]o[111]f[102] [32]s[115]i[105]m[109]p[112]l[108]e[101] [32]l[108]a[97]d[100]y[121]'[39]s[115] [32]s[115]o[111]u[117]l[108],[44] [32]L[76]i[105]k[107]e[101] [32]d[100]r[114]e[101]a[97]m[109]s[115] [32]o[111]f[102] [32]c[99]h[104]i[105]l[108]d[100],[44] [32]o[111]r[114] [32]l[108]i[105]k[107]e[101] [32]t[116]h[104]e[101] [32]m[109]o[111]o[111]n[110]
{574} I[73]n[110] [32]d[100]e[101]s[115]e[101]r[114]t[116]s[115] [32]o[111]f[102] [32]t[116]h[104]e[101] [32]h[104]e[101]a[97]v[118]e[101]n[110]'[39]s[115] [32]d[100]i[105]s[115]t[116]r[114]i[105]c[99]t[116]s[115],[44] [32]T[84]h[104]e[101] [32]g[103]o[111]d[100]d[100]e[101]s[115]s[115] [32]o[111]f[102] [32]t[116]h[104]e[101] [32]s[115]i[105]g[103]h[104]s[115] [32]a[97]n[110]d[100] [32]s[115]e[101]c[99]r[114]e[101]t[116]s[115].[46]
{575} H[72]e[101] [32]s[115]a[97]n[110]g[103] [32]o[111]f[102] [32]p[112]a[97]r[114]t[116]i[105]n[110]g[103]s[115] [32]a[97]n[110]d[100] [32]o[111]f[102] [32]g[103]r[114]i[105]e[101]f[102]s[115],[44] [32]O[79]f[102] [32]s[115]o[111]m[109]e[101]t[116]h[104]i[105]n[110]g[103],[44] [32]f[102]o[111]g[103]g[103]y[121] [32]m[109]i[105]s[115]b[98]e[101]l[108]i[105]e[101]f[102]s[115],[44]
{576} A[65]n[110]d[100] [32]o[111]f[102] [32]r[114]o[111]m[109]a[97]n[110]t[116]i[105]c[99] [32]f[102]i[105]n[110]e[101]s[115]t[116] [32]r[114]o[111]s[115]e[101].[46] [32]H[72]e[101] [32]s[115]a[97]n[110]g[103] [32]o[111]f[102] [32]c[99]o[111]u[117]n[110]t[116]r[114]i[105]e[101]s[115]:[58] [32]f[102]a[97]r[114] [32]a[97]w[119]a[97]y[121]
{577} I[73]n[110] [32]t[116]h[104]e[101]m[109] [32]i[105]n[110] [32]s[115]t[116]i[105]l[108]l[108]n[110]e[101]s[115]s[115] [32]o[111]f[102] [32]t[116]h[104]e[101] [32]d[100]a[97]y[121] [32]H[72]e[101] [32]r[114]e[101]a[97]l[108] [32]t[116]e[101]a[97]r[114]s[115] [32]c[99]o[111]u[117]l[108]d[100] [32]e[101]x[120]p[112]o[111]s[115]e[101];[59]
{578} H[72]e[101] [32]s[115]a[97]n[110]g[103] [32]o[111]f[102] [32]h[104]o[111]w[119] [32]l[108]i[105]f[102]e[101] [32]c[99]o[111]u[117]l[108]d[100] [32]f[102]a[97]d[100]e[101];[59] [32]A[65]l[108]l[108] [32]t[116]h[104]a[97]t[116] [32]i[105]n[110] [32]h[104]i[105]s[115] [32]t[116]e[101]e[101]n[110]a[97]g[103]e[101] [32]h[104]e[101] [32]m[109]a[97]d[100]e[101].[46]
{579} X[88]I[73]
{580} T[84]h[104]e[101] [32]o[111]n[110]e[101] [32]w[119]a[97]s[115] [32]E[69]u[117]g[103]e[101]n[110]e[101] [32]i[105]n[110] [32]t[116]h[104]e[101]s[115]e[101] [32]d[100]e[101]s[115]e[101]r[114]t[116]s[115],[44] [32]W[87]h[104]o[111] [32]c[99]o[111]u[117]l[108]d[100] [32]e[101]v[118]a[97]l[108]u[117]a[97]t[116]e[101] [32]h[104]i[105]s[115] [32]g[103]i[105]f[102]t[116]s[115].[46]
{581} B[66]u[117]t[116] [32]l[108]a[97]n[110]d[100]l[108]o[111]r[114]d[100]s[115] [32]o[111]f[102] [32]t[116]h[104]e[101] [32]c[99]o[111]u[117]n[110]t[116]r[114]y[121]'[39]s[115] [32]p[112]e[101]a[97]s[115]a[97]n[110]t[116]s[115] [32]W[87]e[101]r[114]e[101] [32]n[110]e[101]v[118]e[101]r[114] [32]l[108]i[105]k[107]e[101]d[100] [32]b[98]y[121] [32]h[104]i[105]m[109] [32]a[97]t[116] [32]f[102]e[101]a[97]s[115]t[116]s[115];[59]
{582} T[84]h[104]e[101] [32]n[110]o[111]i[105]s[115]y[121] [32]t[116]a[97]l[108]k[107]s[115] [32]h[104]e[101] [32]w[119]a[97]s[115] [32]e[101]s[115]c[99]a[97]p[112]i[105]n[110]g[103];[59] [32]A[65]l[108]l[108] [32]t[116]h[104]e[101]i[105]r[114] [32]p[112]r[114]u[117]d[100]e[101]n[110]t[116] [32]t[116]a[97]l[108]k[107],[44] [32]s[115]u[117]c[99]h[104] [32]r[114]a[97]v[118]i[105]n[110]g[103],[44]
{583} A[65]b[98]o[111]u[117]t[116] [32]h[104]a[97]y[121]i[105]n[110]g[103] [32]a[97]n[110]d[100] [32]o[111]f[102] [32]w[119]i[105]n[110]e[101],[44] [32]O[79]f[102] [32]k[107]e[101]n[110]n[110]e[101]l[108]s[115],[44] [32]o[111]f[102] [32]r[114]e[101]l[108]a[97]t[116]i[105]o[111]n[110]'[39]s[115] [32]l[108]i[105]n[110]t[116],[44] [32]-[45]
{584} C[67]o[111]u[117]l[108]d[100] [32]n[110]e[101]v[118]e[101]r[114] [32]s[115]h[104]o[111]w[119] [32]s[115]h[104]i[105]n[110]i[105]n[110]g[103] [32]p[112]a[97]s[115]s[115]i[105]o[111]n[110],[44] [32]N[78]o[111]r[114] [32]s[115]p[112]a[97]r[114]k[107]s[115] [32]o[111]f[102] [32]p[112]o[111]e[101]t[116]i[105]c[99] [32]l[108]i[105]g[103]h[104]t[116],[44]
{585} N[78]o[111]r[114] [32]s[115]h[104]a[97]r[114]p[112]n[110]e[101]s[115]s[115],[44] [32]n[110]o[111]r[114] [32]s[115]o[111]m[109]e[101] [32]s[115]i[105]g[103]n[110] [32]o[111]f[102] [32]m[109]i[105]n[110]d[100],[44] [32]N[78]o[111]r[114] [32]o[111]f[102] [32]c[99]o[111]m[109]m[109]u[117]n[110]a[97]l[108] [32]l[108]i[105]f[102]e[101] [32]s[115]u[117]c[99]c[99]e[101]s[115]s[115]i[105]o[111]n[110];[59]
{586} B[66]u[117]t[116] [32]t[116]a[97]l[108]k[107] [32]o[111]f[102] [32]t[116]h[104]e[101]i[105]r[114] [32]d[100]e[101]a[97]r[114] [32]w[119]i[105]v[118]e[101]s[115] [32]B[66]y[121] [32]a[97]b[98]s[115]e[101]n[110]t[116] [32]w[119]i[105]t[116] [32]h[104]i[105]m[109] [32]a[97]l[108]w[119]a[97]y[121]s[115] [32]s[115]t[116]r[114]i[105]k[107]e[101]s[115].[46]
{587} X[88]I[73]I[73]
{588} H[72]e[101]'[39]s[115] [32]h[104]a[97]n[110]d[100]s[115]o[111]m[109]e[101],[44] [32]r[114]i[105]c[99]h[104],[44] [32]o[111]f[102] [32]f[102]a[97]i[105]r[114] [32]m[109]a[97]n[110]n[110]e[101]r[114].[46] [32]A[65]n[110]d[100] [32]n[110]e[101]i[105]g[103]h[104]b[98]o[111]u[117]r[114]s[115] [32]s[115]a[97]i[105]d[100]:[58] [32]h[104]e[101] [32]n[110]e[101]e[101]d[100]s[115] [32]a[97] [32]b[98]r[114]i[105]d[100]e[101].[46]
{589} S[83]u[117]c[99]h[104] [32]c[99]u[117]s[115]t[116]o[111]m[109]'[39]s[115] [32]k[107]n[110]o[111]w[119]n[110] [32]e[101]v[118]e[101]r[114]y[121]w[119]h[104]e[101]r[114]e[101]:[58] [32]T[84]o[111] [32]m[109]a[97]r[114]r[114]y[121] [32]d[100]a[97]u[117]g[103]h[104]t[116]e[101]r[114]s[115] [32]e[101]v[118]e[101]r[114]y[121] [32]t[116]r[114]i[105]e[101]d[100]
{590} T[84]o[111] [32]h[104]a[97]v[118]e[101] [32]h[104]a[97]l[108]f[102]-[45]R[82]u[117]s[115]s[115]i[105]a[97]n[110] [32]n[110]e[101]i[105]g[103]h[104]b[98]o[111]u[117]r[114] [32]d[100]e[101]a[97]r[114];[59] [32]A[65]s[115] [32]q[113]u[117]i[105]c[99]k[107]l[108]y[121] [32]a[97]s[115] [32]h[104]e[101] [32]c[99]a[97]n[110] [32]a[97]p[112]p[112]e[101]a[97]r[114]
{591} T[84]h[104]e[101]y[121] [32]s[115]p[112]e[101]a[97]k[107] [32]t[116]o[111] [32]h[104]i[105]m[109] [32]o[111]f[102] [32]n[110]o[111] [32]m[109]o[111]r[114]e[101],[44] [32]B[66]u[117]t[116] [32]b[98]e[101]i[105]n[110]g[103] [32]b[98]a[97]c[99]h[104]e[101]l[108]o[111]r[114] [32]i[105]s[115] [32]b[98]o[111]r[114]e[101];[59]
{592} H[72]i[105]m[109] [32]c[99]a[97]l[108]l[108] [32]t[116]o[111] [32]s[115]i[105]t[116] [32]t[116]o[111] [32]s[115]a[97]m[109]o[111]v[118]a[97]r[114],[44] [32]A[65]n[110]d[100] [32]D[68]o[111]o[111]n[110]y[121]a[97] [32]q[113]u[117]i[105]c[99]k[107]l[108]y[121] [32]g[103]i[105]v[118]e[101]s[115] [32]h[104]i[105]m[109] [32]t[116]e[101]a[97],[44]
{593} T[84]h[104]e[101]y[121] [32]w[119]h[104]i[105]s[115]p[112]e[101]r[114] [32]h[104]e[101]r[114],[44] [32]Y[89]o[111]u[117],[44] [32]D[68]o[111]o[111]n[110]y[121]a[97],[44] [32]s[115]e[101]e[101]![33]
{594} T[84]h[104]e[101]n[110] [32]b[98]r[114]i[105]n[110]g[103] [32]t[116]o[111] [32]D[68]o[111]o[111]n[110]y[121]a[97] [32]s[115]o[111]m[109]e[101] [32]g[103]u[117]i[105]t[116]a[97]r[114],[44]
{595} A[65]n[110]d[100] [32]s[115]h[104]e[101] [32]i[105]s[115] [32]s[115]q[113]u[117]e[101]a[97]k[107]i[105]n[110]g[103] [32]([40]d[100]e[101]a[97]r[114] [32]m[109]e[101]![33])[41]:[58] [32]I[73]n[110] [32]g[103]o[111]l[108]d[100] [32]c[99]h[104]a[97]m[109]b[98]e[101]r[114] [32]v[118]i[105]s[115]i[105]t[116] [32]m[109]e[101]![33].[46].[46].[46]
{596} X[88]I[73]I[73]I[73]
{597} B[66]u[117]t[116] [32]L[76]e[101]n[110]s[115]k[107]y[121],[44] [32]h[104]a[97]v[118]i[105]n[110]g[103] [32]n[110]o[111] [32]w[119]i[105]s[115]h[104]e[101]s[115] [32]O[79]f[102] [32]m[109]a[97]r[114]r[114]i[105]a[97]g[103]e[101] [32]t[116]i[105]e[101]s[115] [32]t[116]h[104]e[101] [32]w[119]e[101]i[105]g[103]h[104]t[116] [32]t[116]o[111] [32]h[104]a[97]v[118]e[101],[44]
{598} T[84]o[111] [32]E[69]u[117]g[103]e[101]n[110]e[101] [32]s[115]e[101]n[110]t[116] [32]h[104]i[105]s[115] [32]h[104]e[101]a[97]r[114]t[116]y[121] [32]g[103]r[114]e[101]e[101]t[116]i[105]n[110]g[103]s[115]:[58] [32]S[83]o[111]m[109]e[101] [32]h[104]i[105]n[110]t[116]s[115] [32]o[111]n[110] [32]n[110]e[101]a[97]r[114]n[110]e[101]s[115]s[115] [32]h[104]e[101] [32]g[103]a[97]v[118]e[101].[46]
{599} T[84]h[104]e[101]y[121] [32]f[102]r[114]i[105]e[101]n[110]d[100]s[115] [32]b[98]e[101]c[99]a[97]m[109]e[101].[46]
{600} B[66]u[117]t[116] [32]w[119]a[97]v[118]e[101] [32]a[97]n[110]d[100] [32]s[115]t[116]o[111]n[110]e[101],[44] [32]T[84]h[104]e[101] [32]i[105]c[99]e[101] [32]a[97]n[110]d[100] [32]f[102]l[108]a[97]m[109]e[101],[44] [32]t[116]h[104]e[101] [32]v[118]e[101]r[114]s[115]e[101] [32]a[97]n[110]d[100] [32]p[112]r[114]o[111]s[115]e[101]
{601} H[72]a[97]v[118]e[101] [32]l[108]e[101]s[115]s[115] [32]i[105]n[110] [32]d[100]i[105]f[102]f[102]e[101]r[114]e[101]n[110]c[99]e[101] [32]b[98]e[101]t[116]w[119]e[101]e[101]n[110] [32]E[69]a[97]c[99]h[104] [32]o[111]n[110]e[101].[46]
{602} A[65]t[116] [32]f[102]i[105]r[114]s[115]t[116] [32]t[116]h[104]e[101]y[121]'[39]d[100] [32]n[110]o[111]t[116]h[104]i[105]n[110]g[103] [32]s[115]e[101]e[101]n[110] [32]I[73]n[110] [32]c[99]o[111]m[109]m[109]o[111]n[110].[46]
{603} T[84]h[104]e[101]n[110] [32]t[116]h[104]e[101]y[121] [32]e[101]s[115]t[116]i[105]m[109]a[97]t[116]e[101]d[100] [32]E[69]a[97]c[99]h[104] [32]o[111]n[110]e[101] [32]a[97]n[110]o[111]t[116]h[104]e[101]r[114];[59] [32]d[100]a[97]i[105]l[108]y[121] [32]f[102]o[111]r[114]t[116]h[104]
{604} T[84]h[104]e[101]y[121] [32]m[109]e[101]t[116] [32]e[101]a[97]c[99]h[104] [32]o[111]t[116]h[104]e[101]r[114],[44] [32]r[114]i[105]d[100]i[105]n[110]g[103] [32]h[104]o[111]r[114]s[115]e[101],[44] [32]A[65]n[110]d[100] [32]t[116]h[104]e[101]n[110] [32]b[98]e[101]c[99]a[97]m[109]e[101] [32]u[117]n[110]s[115]e[101]p[112]a[97]r[114]a[97]t[116]e[101]d[100].[46]
{605} S[83]u[117]c[99]h[104] [32]m[109]e[101]n[110] [32]([40]I[73]'[39]m[109] [32]f[102]i[105]r[114]s[115]t[116] [32]o[111]f[102] [32]t[116]h[104]e[101]m[109] [32]t[116]o[111] [32]b[98]l[108]a[97]m[109]e[101])[41] [32]F[70]r[114]o[111]m[109] [32]b[98]o[111]r[114]e[101]d[100]o[111]m[109] [32]d[100]e[101]a[97]r[114] [32]f[102]r[114]i[105]e[101]n[110]d[100]s[115] [32]b[98]e[101]c[99]a[97]m[109]e[101],[44]
{606} X[88]I[73]V[86]
{607} B[66]u[117]t[116] [32]e[101]v[118]e[101]n[110] [32]s[115]u[117]c[99]h[104] [32]a[97] [32]f[102]r[114]i[105]e[101]n[110]d[100]s[115]h[104]i[105]p[112],[44] [32]r[114]e[101]a[97]d[100]e[101]r[114]s[115],[44] [32]W[87]e[101] [32]h[104]a[97]v[118]e[101]n[110]'[39]t[116] [32]n[110]o[111]w[119];[59] [32]e[101]a[97]c[99]h[104] [32]o[111]f[102] [32]u[117]s[115]
{608} W[87]i[105]t[116]h[104]o[111]u[117]t[116] [32]p[112]r[114]e[101]j[106]u[117]d[100]i[105]c[99]e[101] [32]c[99]o[111]n[110]s[115]i[105]d[100]e[101]r[114]s[115] [32]T[84]h[104]e[101] [32]o[111]t[116]h[104]e[101]r[114]s[115] [32]o[111]i[105]l[108]s[115] [32]b[98]u[117]t[116] [32]u[117]s[115] [32]a[97]s[115] [32]o[111]n[110]e[101]s[115].[46]
{609} T[84]o[111] [32]b[98]e[101] [32]N[78]a[97]p[112]o[111]l[108]e[101]o[111]n[110] [32]e[101]a[97]c[99]h[104] [32]w[119]i[105]s[115]h[104]e[101]s[115],[44] [32]B[66]u[117]t[116] [32]m[109]i[105]l[108]l[108]i[105]o[111]n[110]s[115] [32]o[111]f[102] [32]t[116]h[104]e[101] [32]t[116]w[119]o[111]-[45]l[108]e[101]g[103]g[103]e[101]d[100] [32]c[99]r[114]e[101]a[97]t[116]u[117]r[114]e[101]s[115]
{610} F[70]o[111]r[114] [32]u[117]s[115] [32]a[97]r[114]e[101] [32]o[111]n[110]l[108]y[121] [32]s[115]o[111]m[109]e[101] [32]t[116]o[111]o[111]l[108]s[115],[44] [32]A[65]n[110]d[100] [32]a[97]l[108]l[108] [32]o[111]n[110]e[101]s[115] [32]p[112]a[97]s[115]s[115]i[105]o[111]n[110]a[97]t[116]e[101] [32]a[97]r[114]e[101] [32]f[102]o[111]o[111]l[108]s[115].[46]
{611} B[66]u[117]t[116] [32]E[69]u[117]g[103]e[101]n[110]e[101] [32]w[119]a[97]s[115] [32]b[98]e[101]y[121]o[111]n[110]d[100] [32]c[99]o[111]n[110]c[99]e[101]p[112]t[116]i[105]o[111]n[110]:[58] [32]O[79]f[102] [32]c[99]o[111]u[117]r[114]s[115]e[101],[44] [32]h[104]e[101] [32]k[107]n[110]e[101]w[119] [32]t[116]h[104]e[101] [32]p[112]e[101]o[111]p[112]l[108]e[101] [32]w[119]e[101]l[108]l[108],[44]
{612} I[73]n[110] [32]g[103]e[101]n[110]e[101]r[114]a[97]l[108] [32]h[104]e[101] [32]g[103]a[97]v[118]e[101] [32]t[116]h[104]e[101]m[109] [32]h[104]e[101]l[108]l[108],[44] [32]B[66]u[117]t[116] [32]a[97]n[110]y[121] [32]r[114]u[117]l[108]e[101] [32]h[104]a[97]s[115] [32]s[115]o[111]m[109]e[101] [32]e[101]x[120]c[99]e[101]p[112]t[116]i[105]o[111]n[110]:[58]
{613} H[72]e[101] [32]d[100]i[105]f[102]f[102]e[101]r[114]e[101]d[100] [32]p[112]e[101]o[111]p[112]l[108]e[101] [32]i[105]n[110] [32]e[101]f[102]f[102]e[101]c[99]t[116],[44] [32]A[65]n[110]d[100] [32]o[111]t[116]h[104]e[101]r[114]'[39]s[115] [32]p[112]a[97]s[115]s[115]i[105]o[111]n[110]s[115] [32]c[99]o[111]u[117]l[108]d[100] [32]r[114]e[101]s[115]p[112]e[101]c[99]t[116].[46]
{614} X[88]V[86]
{615} T[84]o[111] [32]L[76]e[101]n[110]s[115]k[107]y[121] [32]h[104]e[101] [32]c[99]o[111]u[117]l[108]d[100] [32]l[108]i[105]s[115]t[116]e[101]n[110] [32]s[115]m[109]i[105]l[108]i[105]n[110]g[103].[46]
{616} H[72]i[105]s[115] [32]a[97]r[114]d[100]e[101]n[110]t[116] [32]t[116]a[97]l[108]k[107] [32]w[119]a[97]s[115] [32]f[102]u[117]l[108]l[108] [32]o[111]f[102] [32]h[104]a[97]z[122]e[101];[59]
{617} H[72]i[105]s[115] [32]w[119]i[105]t[116] [32]o[111]f[102] [32]p[112]o[111]e[101]t[116] [32]w[119]a[97]s[115] [32]m[109]i[105]l[108]d[100]i[105]n[110]g[103];[59] [32]H[72]i[105]s[115] [32]c[99]o[111]n[110]s[115]t[116]a[97]n[110]t[116]l[108]y[121] [32]i[105]n[110]s[115]p[112]i[105]r[114]e[101]d[100] [32]f[102]a[97]z[122]e[101],[44] [32]-[45]
{618} H[72]e[101] [32]t[116]r[114]i[105]e[101]d[100] [32]h[104]i[105]s[115] [32]c[99]o[111]o[111]l[108]i[105]n[110]g[103] [32]w[119]o[111]r[114]d[100] [32]t[116]o[111] [32]o[111]w[119]n[110],[44] [32]T[84]o[111] [32]k[107]e[101]e[101]p[112] [32]a[97]w[119]a[97]y[121] [32]f[102]r[114]o[111]m[109] [32]m[109]a[97]n[110] [32]l[108]i[105]k[107]e[101] [32]t[116]h[104]i[105]s[115];[59]
{619} H[72]e[101] [32]t[116]h[104]o[111]u[117]g[103]h[104]t[116]:[58] [32]a[97] [32]f[102]o[111]o[111]l[108] [32]w[119]o[111]u[117]l[108]d[100] [32]t[116]r[114]o[111]u[117]b[98]l[108]e[101] [32]h[104]i[105]s[115] [32]S[83]u[117]c[99]h[104] [32]q[113]u[117]i[105]c[99]k[107]l[108]y[121] [32]f[102]a[97]d[100]i[105]n[110]g[103] [32]h[104]i[105]g[103]h[104] [32]a[97]f[102]f[102]e[101]c[99]t[116]i[105]o[111]n[110],[44]
{620} W[87]i[105]t[116]h[104]o[111]u[117]t[116] [32]m[109]e[101] [32]h[104]i[105]s[115] [32]t[116]i[105]m[109]e[101] [32]w[119]i[105]l[108]l[108] [32]c[99]o[111]m[109]e[101],[44] [32]B[66]u[117]t[116] [32]n[110]o[111]w[119] [32]l[108]e[101]t[116] [32]h[104]i[105]m[109] [32]l[108]i[105]v[118]e[101] [32]i[105]n[110] [32]c[99]a[97]l[108]m[109]
{621} A[65]n[110]d[100] [32]g[103]r[114]e[101]a[97]t[116] [32]b[98]e[101]l[108]i[105]e[101]f[102] [32]i[105]n[110] [32]w[119]o[111]r[114]l[108]d[100]'[39]s[115] [32]p[112]e[101]r[114]f[102]e[101]c[99]t[116]i[105]o[111]n[110],[44] [32]F[70]o[111]r[114]g[103]i[105]v[118]e[101] [32]h[104]i[105]m[109] [32]a[97]r[114]d[100]o[111]u[117]r[114] [32]o[111]f[102] [32]h[104]i[105]s[115] [32]a[97]g[103]e[101],[44]
{622} O[79]f[102] [32]y[121]o[111]u[117]n[110]g[103] [32]d[100]e[101]l[108]i[105]r[114]i[105]u[117]m[109] [32]h[104]i[105]g[103]h[104] [32]r[114]a[97]g[103]e[101].[46]
{623} X[88]V[86]I[73]
{624} E[69]a[97]c[99]h[104] [32]t[116]o[111]p[112]i[105]c[99]'[39]s[115] [32]a[97]r[114]g[103]u[117]e[101]d[100] [32]a[97]t[116] [32]t[116]h[104]e[101] [32]m[109]e[101]e[101]t[116]i[105]n[110]g[103]s[115]:[58] [32]T[84]o[111] [32]m[109]e[101]d[100]i[105]t[116]a[97]t[116]e[101] [32]t[116]h[104]e[101]y[121] [32]w[119]e[101]r[114]e[101] [32]i[105]n[110] [32]m[109]o[111]o[111]d[100]
{625} O[79]n[110] [32]r[114]e[101]a[97]l[108] [32]p[112]r[114]i[105]c[99]e[101] [32]o[111]f[102] [32]a[97]n[110]c[99]i[105]e[101]n[110]t[116] [32]t[116]r[114]e[101]a[97]t[116]i[105]e[101]s[115],[44] [32]O[79]n[110] [32]e[101]v[118]i[105]l[108],[44] [32]g[103]o[111]o[111]d[100],[44] [32]o[111]n[110] [32]s[115]c[99]i[105]e[101]n[110]c[99]e[101] [32]f[102]r[114]u[117]i[105]t[116],[44]
{626} O[79]n[110] [32]o[111]l[108]d[100] [32]p[112]r[114]e[101]j[106]u[117]d[100]i[105]c[99]e[101]s[115] [32]h[104]a[97]r[114]m[109]f[102]u[117]l[108],[44] [32]E[69]t[116]e[101]r[114]n[110]a[97]l[108] [32]s[115]e[101]c[99]r[114]e[101]t[116] [32]t[116]o[111]m[109]b[98]s[115] [32]a[97]l[108]a[97]r[114]m[109]f[102]u[117]l[108],[44]
{627} T[84]h[104]e[101] [32]f[102]a[97]t[116]e[101] [32]a[97]n[110]d[100] [32]l[108]i[105]f[102]e[101] [32]i[105]n[110] [32]t[116]h[104]e[101]i[105]r[114] [32]t[116]u[117]r[114]n[110] [32]T[84]o[111] [32]t[116]h[104]e[101]i[105]r[114] [32]j[106]u[117]d[100]g[103]e[101]m[109]e[101]n[110]t[116] [32]c[99]o[111]u[117]l[108]d[100] [32]r[114]e[101]t[116]u[117]r[114]n[110].[46]
{628} T[84]h[104]e[101] [32]p[112]o[111]e[101]t[116] [32]i[105]n[110] [32]h[104]e[101]a[97]t[116] [32]o[111]f[102] [32]j[106]u[117]d[100]g[103]e[101]m[109]e[101]n[110]t[116] [32]S[83]o[111]m[109]e[101] [32]n[110]o[111]t[116]h[104]e[101]r[114]n[110] [32]p[112]o[111]e[101]m[109] [32]c[99]o[111]u[117]l[108]d[100] [32]c[99]i[105]t[116]e[101],[44]
{629} A[65]s[115] [32]i[105]f[102] [32]t[116]o[111] [32]p[112]r[114]o[111]v[118]e[101] [32]t[116]h[104]a[97]t[116] [32]h[104]e[101] [32]w[119]a[97]s[115] [32]r[114]i[105]g[103]h[104]t[116].[46] [32]A[65]n[110]d[100] [32]E[69]u[117]g[103]e[101]n[110]e[101],[44] [32]p[112]a[97]s[115]s[115]i[105]o[111]n[110]a[97]t[116]e[101],[44] [32]i[105]n[110]d[100]u[117]l[108]g[103]e[101]n[110]t[116],[44]
{630} W[87]h[104]o[111] [32]u[117]n[110]d[100]e[101]r[114]s[115]t[116]o[111]o[111]d[100] [32]i[105]t[116] [32]w[119]e[101]e[101] [32]a[97] [32]h[104]i[105]t[116],[44] [32]A[65]l[108]l[108] [32]h[104]i[105]s[115] [32]a[97]t[116]t[116]e[101]n[110]t[116]i[105]o[111]n[110] [32]p[112]a[97]i[105]d[100] [32]t[116]o[111] [32]i[105]t[116].[46]
{631} X[88]V[86]I[73]I[73]
{632} B[66]u[117]t[116] [32]o[111]f[102]t[116]e[101]n[110] [32]p[112]a[97]s[115]s[115]i[105]o[111]n[110]s[115] [32]w[119]e[101]r[114]e[101] [32]i[105]n[110]v[118]a[97]d[100]i[105]n[110]g[103] [32]T[84]h[104]e[101] [32]m[109]i[105]n[110]d[100] [32]o[111]f[102] [32]h[104]e[101]r[114]m[109]i[105]t[116]s[115],[44] [32]o[111]f[102] [32]m[109]y[121] [32]m[109]e[101]n[110].[46]
{633} O[79]f[102] [32]p[112]a[97]s[115]s[115]i[105]o[111]n[110]s[115] [32]p[112]r[114]e[101]s[115]s[115] [32]a[97]t[116] [32]l[108]a[97]s[115]t[116] [32]e[101]s[115]c[99]a[97]p[112]i[105]n[110]g[103],[44] [32]A[65]g[103]a[97]i[105]n[110] [32]O[79]n[110]e[101]g[103]i[105]n[110] [32]s[115]a[97]i[105]d[100] [32]o[111]f[102] [32]t[116]h[104]e[101]m[109]
{634} U[85]n[110]w[119]i[105]l[108]l[108]i[105]n[110]g[103]l[108]y[121],[44] [32]w[119]i[105]t[116]h[104] [32]s[115]i[105]g[103]h[104]s[115] [32]o[111]f[102] [32]p[112]i[105]t[116]y[121]:[58] [32]H[72]e[101]'[39]s[115] [32]b[98]l[108]e[101]s[115]s[115]e[101]d[100],[44] [32]w[119]h[104]o[111] [32]k[107]n[110]e[101]w[119] [32]a[97]l[108]l[108] [32]t[116]h[104]e[101]i[105]r[114] [32]p[112]r[114]e[101]t[116]t[116]y[121]
{635} E[69]f[102]f[102]e[101]c[99]t[116]s[115],[44] [32]b[98]u[117]t[116] [32]s[115]t[116]e[101]p[112]p[112]e[101]d[100] [32]a[97]w[119]a[97]y[121] [32]a[97]n[110]e[101]w[119];[59] [32]H[72]e[101]'[39]s[115] [32]b[98]l[108]e[101]s[115]s[115]e[101]d[100] [32]m[109]u[117]c[99]h[104] [32]m[109]o[111]r[114]e[101],[44] [32]w[119]h[104]o[111] [32]n[110]e[101]v[118]e[101]r[114] [32]k[107]n[110]e[101]w[119]
{636} T[84]h[104]e[101] [32]l[108]o[111]v[118]e[101];[59] [32]w[119]h[104]o[111] [32]c[99]o[111]o[111]l[108]e[101]d[100] [32]i[105]t[116] [32]w[119]i[105]t[116]h[104] [32]d[100]i[105]v[118]o[111]r[114]c[99]e[101]m[109]e[101]n[110]t[116],[44] [32]B[66]y[121] [32]s[115]c[99]a[97]n[110]d[100]a[97]l[108] [32]e[101]n[110]m[109]i[105]t[116]y[121] [32]c[99]o[111]u[117]l[108]d[100] [32]s[115]t[116]r[114]a[97]n[110]d[100],[44]
{637} A[65]n[110]d[100] [32]y[121]a[97]w[119]n[110]e[101]d[100] [32]w[119]i[105]t[116]h[104] [32]h[104]a[97]p[112]p[112]y[121] [32]w[119]i[105]f[102]e[101] [32]a[97]n[110]d[100] [32]f[102]r[114]i[105]e[101]n[110]d[100],[44] [32]N[78]o[111]t[116] [32]t[116]r[114]o[111]u[117]b[98]l[108]e[101]d[100] [32]b[98]y[121] [32]t[116]h[104]e[101] [32]j[106]e[101]a[97]l[108]o[111]u[117]s[115] [32]t[116]o[111]r[114]m[109]e[101]n[110]t[116];[59]
{638} W[87]h[104]o[111] [32]f[102]a[97]t[116]h[104]e[101]r[114]'[39]s[115] [32]m[109]o[111]n[110]e[101]y[121] [32]n[110]e[101]v[118]e[101]r[114] [32]t[116]r[114]u[117]s[115]t[116]s[115] [32]T[84]o[111] [32]c[99]u[117]n[110]n[110]i[105]n[110]g[103] [32]f[102]r[114]i[105]e[101]n[110]d[100]s[115],[44] [32]t[116]o[111] [32]c[99]r[114]u[117]f[102]t[116]y[121] [32]c[99]a[97]r[114]d[100]s[115],[44]
{639} X[88]V[86]I[73]I[73]I[73]
{640} W[87]h[104]e[101]n[110] [32]w[119]e[101] [32]s[115]h[104]a[97]l[108]l[108] [32]g[103]a[97]t[116]h[104]e[101]r[114] [32]u[117]n[110]d[100]e[101]r[114] [32]b[98]a[97]n[110]n[110]e[101]r[114] [32]O[79]f[102] [32]s[115]t[116]i[105]l[108]l[108]n[110]e[101]s[115]s[115],[44] [32]r[114]a[97]t[116]i[105]o[111]n[110]a[97]l[108] [32]a[97]n[110]d[100] [32]c[99]a[97]i[105]r[114]n[110],[44]
{641} W[87]h[104]e[101]n[110] [32]w[119]e[101]l[108]l[108] [32]h[104]a[97]v[118]e[101] [32]c[99]o[111]o[111]l[108]e[101]d[100] [32]t[116]h[104]e[101] [32]p[112]a[97]s[115]s[115]i[105]o[111]n[110]s[115] [32]t[116]e[101]m[109]p[112]e[101]r[114] [32]A[65]n[110]d[100] [32]n[110]o[111] [32]m[109]o[111]r[114]e[101] [32]t[116]h[104]e[101]y[121] [32]w[119]o[111]u[117]l[108]d[100] [32]a[97]l[108]a[97]r[114]m[109]
{642} A[65]l[108]l[108] [32]u[117]s[115],[44] [32]w[119]e[101]l[108]l[108] [32]l[108]a[97]u[117]g[103]h[104] [32]a[97]t[116] [32]t[116]h[104]e[101]i[105]r[114] [32]i[105]m[109]p[112]u[117]l[108]s[115]e[101],[44] [32]A[65]t[116] [32]l[108]a[97]t[116]e[101] [32]r[114]i[105]d[100]i[105]c[99]u[117]l[108]o[111]u[117]s[115] [32]o[111]p[112]i[105]n[110]i[105]o[111]n[110]s[115],[44]
{643} T[84]h[104]e[101]n[110] [32]w[119]e[101]'[39]l[108]l[108] [32]s[115]u[117]b[98]m[109]i[105]s[115]s[115]i[105]v[118]e[101]l[108]y[121] [32]o[111]b[98]e[101]y[121] [32]T[84]o[111] [32]h[104]e[101]a[97]r[114] [32]s[115]t[116]o[111]r[114]i[105]e[101]s[115] [32]b[98]y[121] [32]t[116]h[104]e[101] [32]w[119]a[97]y[121]
{644} A[65]b[98]o[111]u[117]t[116] [32]o[111]t[116]h[104]e[101]r[114]'[39]s[115] [32]r[114]e[101]s[115]t[116]l[108]e[101]s[115]s[115] [32]p[112]a[97]s[115]s[115]i[105]o[111]n[110]s[115],[44] [32]A[65]n[110]d[100] [32]o[111]t[116]h[104]e[101]r[114]'[39]s[115] [32]l[108]o[111]v[118]e[101] [32]w[119]i[105]l[108]l[108] [32]t[116]o[111]u[117]c[99]h[104] [32]t[116]h[104]e[101] [32]h[104]e[101]a[97]r[114]t[116],[44] [32]-[45]
{645} W[87]e[101]'[39]l[108]l[108] [32]b[98]e[101] [32]l[108]i[105]k[107]e[101] [32]i[105]n[110]v[118]a[97]l[108]i[105]d[100] [32]i[105]n[110] [32]h[104]u[117]t[116],[44] [32]W[87]h[104]o[111] [32]n[110]e[101]a[97]r[114]s[115] [32]e[101]a[97]r[114]s[115] [32]t[116]o[111] [32]c[99]o[111]n[110]f[102]e[101]s[115]s[115]i[105]o[111]n[110]s[115]
{646} O[79]f[102] [32]b[98]o[111]a[97]s[115]t[116]i[105]n[110]g[103] [32]m[109]o[111]u[117]s[115]t[116]a[97]c[99]h[104]e[101]d[100] [32]y[121]o[111]u[117]n[110]g[103] [32]g[103]u[117]a[97]r[114]d[100]s[115] [32]W[87]h[104]o[111] [32]c[99]o[111]n[110]q[113]u[117]e[101]r[114]e[101]d[100] [32]p[112]r[114]e[101]t[116]t[116]y[121] [32]l[108]a[97]d[100]i[105]e[101]s[115]'[39] [32]h[104]e[101]a[97]r[114]t[116]s[115].[46]
{647} X[88]I[73]X[88]
{648} B[66]u[117]t[116] [32]a[97]l[108]l[108] [32]t[116]h[104]e[101] [32]y[121]o[111]u[117]n[110]g[103]s[115]t[116]e[101]r[114]s[115],[44] [32]a[97]l[108]w[119]a[97]y[121]s[115] [32]f[102]l[108]a[97]m[109]i[105]n[110]g[103],[44] [32]C[67]o[111]u[117]l[108]d[100] [32]n[110]e[101]v[118]e[101]r[114] [32]e[101]n[110]m[109]i[105]t[116]y[121] [32]c[99]o[111]n[110]c[99]e[101]a[97]l[108],[44]
{649} T[84]h[104]e[101] [32]s[115]a[97]d[100]n[110]e[101]s[115]s[115],[44] [32]g[103]l[108]a[97]d[100]n[110]e[101]s[115]s[115],[44] [32]l[108]o[111]v[118]e[101] [32]i[105]n[110]f[102]l[108]a[97]m[109]i[105]n[110]g[103] [32]T[84]h[104]e[101]y[121] [32]a[97]l[108]l[108] [32]w[119]e[101]r[114]e[101] [32]r[114]e[101]a[97]d[100]y[121] [32]t[116]o[111] [32]r[114]e[101]v[118]e[101]a[97]l[108].[46]
{650} O[79]n[110]e[101]g[103]i[105]n[110] [32]n[110]o[111] [32]l[108]o[111]v[118]e[101] [32]c[99]o[111]u[117]l[108]d[100] [32]h[104]o[111]o[111]k[107] [32]i[105]n[110],[44] [32]B[66]u[117]t[116] [32]l[108]i[105]s[115]t[116]e[101]n[110]e[101]d[100] [32]w[119]i[105]t[116]h[104] [32]a[97] [32]p[112]o[111]m[109]p[112]o[111]u[117]s[115] [32]l[108]o[111]o[111]k[107]-[45]i[105]n[110]
{651} T[84]o[111] [32]L[76]e[101]n[110]s[115]k[107]y[121] [32]s[115]p[112]e[101]a[97]k[107]i[105]n[110]g[103] [32]o[111]f[102] [32]h[104]i[105]m[109]s[115]e[101]l[108]f[102],[44] [32]R[82]e[101]v[118]e[101]a[97]l[108]i[105]n[110]g[103] [32]a[97]l[108]l[108] [32]h[104]i[105]s[115] [32]h[104]e[101]a[97]r[114]t[116] [32]i[105]t[116]s[115]e[101]l[108]f[102],[44]
{652} H[72]i[105]s[115] [32]c[99]o[111]n[110]s[115]c[99]i[105]e[101]n[110]c[99]e[101] [32]L[76]e[101]n[110]s[115]k[107]y[121] [32]w[119]a[97]s[115] [32]r[114]e[101]v[118]e[101]a[97]l[108]i[105]n[110]g[103],[44] [32]H[72]i[105]s[115] [32]o[111]w[119]n[110] [32]s[115]o[111]u[117]l[108] [32]c[99]r[114]i[105]t[116]i[105]c[99]i[105]z[122]e[101]d[100].[46]
{653} O[79]n[110]e[101]g[103]i[105]n[110] [32]q[113]u[117]i[105]c[99]k[107]l[108]y[121] [32]r[114]e[101]c[99]o[111]g[103]n[110]i[105]z[122]e[101]d[100] [32]T[84]h[104]e[101] [32]t[116]a[97]l[108]k[107] [32]o[111]f[102] [32]l[108]o[111]v[118]e[101],[44] [32]w[119]h[104]i[105]c[99]h[104] [32]w[119]a[97]s[115] [32]f[102]u[117]l[108]f[102]i[105]l[108]l[108]i[105]n[110]g[103]
{654} W[87]i[105]t[116]h[104] [32]m[109]a[97]n[110]y[121] [32]s[115]e[101]n[110]s[115]e[101]s[115] [32]a[97]l[108]l[108] [32]t[116]h[104]i[105]s[115] [32]f[102]u[117]s[115]s[115],[44] [32]W[87]h[104]i[105]c[99]h[104] [32]i[105]s[115] [32]a[97]n[110]t[116]i[105]q[113]u[117]e[101] [32]f[102]o[111]r[114] [32]a[97]l[108]l[108] [32]o[111]f[102] [32]u[117]s[115].[46]
{655} X[88]X[88]
{656} A[65]h[104],[44] [32]h[104]e[101] [32]c[99]o[111]u[117]l[108]d[100] [32]l[108]o[111]v[118]e[101];[59] [32]t[116]h[104]e[101]y[121] [32]d[100]o[111]n[110]'[39]t[116] [32]n[110]o[111]w[119] [32]H[72]a[97]v[118]e[101] [32]a[97]n[110]y[121]t[116]h[104]i[105]n[110]g[103] [32]l[108]i[105]k[107]e[101] [32]r[114]e[101]a[97]l[108] [32]l[108]o[111]v[118]e[101]
{657} O[79]f[102] [32]p[112]o[111]e[101]t[116],[44] [32]w[119]h[104]o[111]'[39]s[115] [32]a[97]n[110]y[121]h[104]o[111]w[119] [32]C[67]o[111]n[110]v[118]i[105]c[99]t[116]e[101]d[100] [32]t[116]o[111] [32]t[116]h[104]e[101] [32]t[116]r[114]u[117]t[116]h[104]f[102]u[117]l[108] [32]l[108]o[111]v[118]e[101]:[58]
{658} O[79]n[110]e[101] [32]v[118]i[105]s[115]i[105]o[111]n[110] [32]a[97]l[108]w[119]a[97]y[121]s[115],[44] [32]e[101]v[118]e[101]r[114]y[121]w[119]h[104]e[101]r[114]e[101],[44] [32]T[84]h[104]e[101] [32]r[114]i[105]m[109]e[101] [32]d[100]e[101]s[115]i[105]r[114]e[101] [32]c[99]o[111]m[109]e[101]s[115] [32]t[116]o[111] [32]d[100]a[97]r[114]e[101]
{659} T[84]o[111] [32]c[99]o[111]m[109]f[102]o[111]r[114]t[116] [32]s[115]o[111]r[114]r[114]o[111]w[119] [32]a[97]n[110]d[100] [32]g[103]r[114]i[105]e[101]f[102].[46]
{660} A[65]n[110]d[100] [32]n[110]o[111]t[116]h[104]i[105]n[110]g[103] [32]c[99]o[111]o[111]l[108]e[101]d[100] [32]h[104]i[105]s[115] [32]s[115]t[116]r[114]o[111]n[110]g[103] [32]b[98]e[101]l[108]i[105]e[101]f[102]:[58]
{661} N[78]o[111]r[114] [32]l[108]o[111]n[110]g[103]e[101]s[115]t[116] [32]y[121]e[101]a[97]r[114]s[115] [32]o[111]f[102] [32]t[116]h[104]e[101] [32]p[112]a[97]r[114]t[116]i[105]n[110]g[103]s[115],[44] [32]N[78]o[111]r[114] [32]a[97]l[108]l[108] [32]t[116]o[111] [32]m[109]u[117]s[115]e[101]s[115] [32]g[103]i[105]v[118]e[101]n[110] [32]t[116]i[105]m[109]e[101],[44]
{662} N[78]o[111]r[114] [32]f[102]o[111]r[114]e[101]i[105]g[103]n[110] [32]b[98]e[101]a[97]u[117]t[116]i[105]e[101]s[115] [32]s[115]o[111] [32]f[102]i[105]n[110]e[101],[44] [32]N[78]o[111]r[114] [32]s[115]c[99]i[105]e[101]n[110]c[99]e[101]s[115],[44] [32]n[110]o[111]r[114] [32]e[101]v[118]e[101]n[110]i[105]n[110]g[103] [32]p[112]a[97]r[114]t[116]i[105]e[101]s[115]
{663} C[67]o[111]u[117]l[108]d[100] [32]c[99]h[104]a[97]n[110]g[103]e[101] [32]h[104]i[105]s[115] [32]s[115]o[111]u[117]l[108] [32]l[108]i[105]t[116]t[116]l[108]e[101] [32]b[98]i[105]t[116]:[58] [32]S[83]o[111]m[109]e[101] [32]v[118]i[105]r[114]g[103]i[105]n[110] [32]f[102]i[105]r[114]e[101] [32]f[102]l[108]a[97]m[109]e[101]d[100] [32]i[105]n[110] [32]i[105]t[116],[44]
{664} X[88]X[88]I[73]
{665} Y[89]e[101]t[116] [32]c[99]h[104]i[105]l[108]d[100],[44] [32]b[98]y[121] [32]O[79]l[108]g[103]a[97] [32]f[102]a[97]s[115]c[99]i[105]n[110]a[97]t[116]e[101]d[100],[44] [32]I[73]g[103]n[110]o[111]r[114]a[97]n[110]t[116] [32]y[121]e[101]t[116] [32]o[111]f[102] [32]h[104]e[101]a[97]r[114]t[116]y[121] [32]p[112]a[97]i[105]n[110]s[115],[44]
{666} H[72]e[101],[44] [32]t[116]o[111]u[117]c[99]h[104]i[105]n[110]g[103] [32]w[119]i[105]t[116]n[110]e[101]s[115]s[115],[44] [32]c[99]a[97]p[112]t[116]i[105]v[118]a[97]t[116]e[101]d[100] [32]B[66]y[121] [32]c[99]h[104]i[105]l[108]d[100]i[105]s[115]h[104] [32]p[112]r[114]e[101]t[116]t[116]i[105]n[110]e[101]s[115]s[115] [32]o[111]f[102] [32]g[103]a[97]m[109]e[101]s[115]
{667} I[73]n[110] [32]s[115]h[104]a[97]d[100]e[101] [32]o[111]f[102] [32]o[111]l[108]d[100] [32]t[116]r[114]e[101]e[101]s[115] [32]p[112]r[114]o[111]t[116]e[101]c[99]t[116]i[105]v[118]e[101],[44] [32]H[72]e[101] [32]w[119]a[97]s[115] [32]i[105]n[110] [32]g[103]a[97]m[109]e[101]s[115] [32]h[104]e[101]r[114] [32]m[109]a[97]t[116]e[101] [32]e[101]f[102]f[102]e[101]c[99]t[116]i[105]v[118]e[101].[46]
{668} A[65]n[110]d[100] [32]p[112]a[97]r[114]e[101]n[110]t[116]s[115] [32]f[102]o[111]r[114]e[101]s[115]a[97]w[119] [32]t[116]h[104]e[101] [32]f[102]a[97]t[116]e[101]:[58] [32]W[87]e[101]r[114]e[101] [32]c[99]a[97]l[108]c[99]u[117]l[108]a[97]t[116]i[105]n[110]g[103] [32]w[119]e[101]d[100]d[100]i[105]n[110]g[103] [32]d[100]a[97]t[116]e[101];[59]
{669} I[73]n[110] [32]s[115]t[116]i[105]l[108]l[108]n[110]e[101]s[115]s[115] [32]o[111]f[102] [32]t[116]h[104]e[101] [32]h[104]u[117]m[109]b[98]l[108]e[101] [32]g[103]r[114]o[111]v[118]e[101] [32]O[79]f[102] [32]i[105]n[110]n[110]o[111]c[99]e[101]n[110]c[99]e[101] [32]s[115]o[111]m[109]e[101] [32]c[99]h[104]a[97]r[114]m[109]i[105]n[110]g[103] [32]l[108]o[111]o[111]m[109],[44]
{670} S[83]h[104]e[101] [32]n[110]e[101]a[97]r[114] [32]p[112]a[97]r[114]e[101]n[110]t[116]s[115] [32]c[99]o[111]u[117]l[108]d[100] [32]b[98]l[108]o[111]o[111]m[109],[44] [32]L[76]i[105]k[107]e[101] [32]l[108]i[105]l[108]i[105]e[101]s[115] [32]i[105]n[110] [32]t[116]h[104]e[101] [32]v[118]a[97]l[108]l[108]e[101]y[121] [32]g[103]r[114]o[111]w[119],[44]
{671} U[85]n[110]k[107]n[110]o[111]w[119]n[110] [32]i[105]n[110] [32]t[116]h[104]e[101] [32]t[116]h[104]i[105]c[99]k[107] [32]o[111]f[102] [32]g[103]r[114]a[97]s[115]s[115] [32]T[84]o[111] [32]b[98]e[101]e[101]s[115],[44] [32]t[116]o[111] [32]m[109]o[111]t[116]h[104]s[115] [32]a[97]t[116] [32]n[110]o[111] [32]p[112]a[97]t[116]h[104]s[115].[46]
{672} X[88]X[88]I[73]I[73]
{673} T[84]o[111] [32]h[104]e[101]r[114] [32]w[119]a[97]s[115] [32]d[100]u[117]e[101] [32]f[102]i[105]r[114]s[115]t[116] [32]d[100]r[114]e[101]a[97]m[109] [32]u[117]n[110]q[113]u[117]i[105]e[101]t[116] [32]O[79]f[102] [32]p[112]o[111]e[101]t[116]:[58] [32]a[97]t[116] [32]l[108]o[111]v[118]e[101] [32]t[116]h[104]e[101] [32]d[100]r[114]i[105]v[118]e[101],[44]
{674} A[65]n[110]d[100] [32]t[116]h[104]o[111]u[117]g[103]h[104]t[116] [32]o[111]f[102] [32]h[104]e[101]r[114] [32]i[105]n[110] [32]h[104]i[105]m[109] [32]i[105]n[110]s[115]p[112]i[105]r[114]e[101]d[100] [32]F[70]i[105]r[114]s[115]t[116] [32]m[109]o[111]a[97]n[110] [32]o[111]f[102] [32]h[104]i[105]s[115] [32]c[99]o[111]n[110]s[115]c[99]i[105]o[111]u[117]s[115] [32]l[108]i[105]f[102]e[101].[46]
{675} B[66]u[117]t[116] [32]y[121]o[111]u[117] [32]f[102]o[111]r[114]g[103]i[105]v[118]e[101] [32]h[104]i[105]m[109],[44] [32]g[103]a[97]m[109]e[101]s[115] [32]i[105]n[110] [32]s[115]t[116]i[105]l[108]l[108]n[110]e[101]s[115]s[115]![33]
{676} H[72]e[101] [32]l[108]i[105]k[107]e[101]d[100] [32]t[116]h[104]e[101] [32]g[103]r[114]o[111]v[118]e[101]'[39]s[115] [32]t[116]i[105]m[109]i[105]d[100] [32]t[116]h[104]i[105]c[99]k[107]n[110]e[101]s[115]s[115],[44]
{677} H[72]e[101] [32]l[108]i[105]k[107]e[101]d[100] [32]t[116]h[104]e[101] [32]s[115]t[116]i[105]l[108]l[108]n[110]e[101]s[115]s[115],[44] [32]l[108]o[111]n[110]e[101] [32]m[109]o[111]o[111]d[100],[44] [32]T[84]h[104]e[101] [32]n[110]i[105]g[103]h[104]t[116],[44] [32]t[116]h[104]e[101] [32]s[115]t[116]a[97]r[114]s[115],[44] [32]t[116]h[104]e[101] [32]r[114]o[111]u[117]n[110]d[100] [32]m[109]o[111]o[111]n[110].[46]
{678} T[84]h[104]e[101] [32]m[109]o[111]o[111]n[110],[44] [32]t[116]h[104]i[105]s[115] [32]m[109]i[105]r[114]a[97]c[99]l[108]e[101] [32]i[105]n[110] [32]h[104]e[101]a[97]v[118]e[101]n[110]s[115],[44] [32]T[84]o[111] [32]w[119]h[104]i[105]c[99]h[104] [32]w[119]e[101] [32]d[100]e[101]d[100]i[105]c[99]a[97]t[116]e[101]d[100] [32]n[110]i[105]g[103]h[104]t[116]s[115]
{679} A[65]t[116] [32]m[109]e[101]e[101]t[116]i[105]n[110]g[103]s[115] [32]b[98]u[117]t[116] [32]w[119]i[105]t[116]h[104]o[111]u[117]t[116] [32]l[108]i[105]g[103]h[104]t[116]s[115],[44] [32]A[65]n[110]d[100] [32]t[116]e[101]a[97]r[114]s[115],[44] [32]s[115]e[101]c[99]r[114]e[101]t[116] [32]t[116]o[111]r[114]m[109]e[101]n[110]t[116]'[39]s[115] [32]g[103]l[108]a[97]d[100]n[110]e[101]s[115]s[115].[46].[46].[46]
{680} B[66]u[117]t[116] [32]n[110]o[111]w[119] [32]d[100]e[101]a[97]r[114] [32]m[109]o[111]o[111]n[110] [32]f[102]o[111]r[114] [32]u[117]s[115] [32]I[73]s[115] [32]m[109]e[101]r[114]e[101] [32]l[108]a[97]n[110]t[116]e[101]r[114]n[110] [32]i[105]n[110] [32]t[116]h[104]e[101] [32]s[115]k[107]i[105]e[101]s[115].[46]
{681} X[88]X[88]I[73]I[73]I[73]
{682} S[83]h[104]e[101]'[39]s[115] [32]d[100]u[117]t[116]i[105]f[102]u[117]l[108] [32]a[97]n[110]d[100] [32]a[97]l[108]w[119]a[97]y[121]s[115] [32]m[109]o[111]d[100]e[101]s[115]t[116],[44] [32]A[65]s[115] [32]f[102]r[114]e[101]s[115]h[104] [32]a[97]s[115] [32]m[109]o[111]r[114]n[110]i[105]n[110]g[103],[44] [32]a[97]l[108]w[119]a[97]y[121]s[115] [32]g[103]a[97]y[121],[44]
{683} L[76]i[105]k[107]e[101] [32]l[108]i[105]f[102]e[101] [32]o[111]f[102] [32]b[98]a[97]r[114]d[100],[44] [32]s[115]u[117]c[99]h[104] [32]s[115]i[105]m[109]p[112]l[108]e[101],[44] [32]h[104]o[111]n[110]e[101]s[115]t[116],[44] [32]L[76]i[105]k[107]e[101] [32]k[107]i[105]s[115]s[115] [32]o[111]f[102] [32]l[108]o[111]v[118]e[101] [32]a[97]t[116] [32]d[100]a[97]w[119]n[110] [32]o[111]f[102] [32]d[100]a[97]y[121];[59]
{684} T[84]h[104]e[101] [32]e[101]y[121]e[101]s[115] [32]a[97]r[114]e[101] [32]b[98]l[108]u[117]e[101] [32]a[97]s[115] [32]d[100]e[101]p[112]t[116]h[104] [32]o[111]f[102] [32]h[104]e[101]a[97]v[118]e[101]n[110]s[115],[44] [32]T[84]h[104]e[101] [32]s[115]m[109]i[105]l[108]e[101],[44] [32]t[116]h[104]e[101] [32]f[102]l[108]a[97]x[120]e[101]n[110] [32]c[99]u[117]r[114]l[108]s[115] [32]o[111]f[102] [32]h[104]a[97]i[105]r[114]s[115],[44]
{685} T[84]h[104]e[101] [32]m[109]o[111]v[118]i[105]n[110]g[103]s[115],[44] [32]v[118]o[111]i[105]c[99]e[101],[44] [32]t[116]h[104]e[101] [32]f[102]i[105]g[103]u[117]r[114]e[101] [32]f[102]i[105]n[110]e[101],[44] [32]A[65]l[108]l[108] [32]O[79]l[108]g[103]a[97] [32]h[104]a[97]s[115].[46].[46].[46] [32]b[98]u[117]t[116] [32]y[121]o[111]u[117] [32]c[99]a[97]n[110] [32]f[102]i[105]n[110]d[100]
{686} A[65]t[116] [32]a[97]n[110]y[121] [32]n[110]o[111]v[118]e[101]l[108] [32]t[116]h[104]o[111]s[115]e[101] [32]f[102]e[101]a[97]t[116]u[117]r[114]e[101]s[115],[44] [32]H[72]e[101]r[114] [32]o[111]w[119]n[110] [32]p[112]o[111]r[114]t[116]r[114]a[97]i[105]t[116],[44] [32]v[118]e[101]r[114]y[121] [32]n[110]i[105]c[99]e[101];[59]
{687} I[73] [32]w[119]a[97]s[115] [32]i[105]n[110] [32]l[108]o[111]v[118]e[101] [32]w[119]i[105]t[116]h[104] [32]i[105]t[116] [32]s[115]o[111]m[109]e[101]t[116]i[105]m[109]e[101]s[115],[44] [32]B[66]u[117]t[116] [32]s[115]o[111]o[111]n[110] [32]w[119]a[97]s[115] [32]b[98]o[111]r[114]e[101]d[100] [32]b[98]y[121] [32]p[112]r[114]e[101]t[116]t[116]y[121] [32]c[99]r[114]e[101]a[97]t[116]u[117]r[114]e[101]s[115].[46]
{688} A[65]l[108]l[108]o[111]w[119] [32]m[109]e[101],[44] [32]t[116]h[104]e[101] [32]r[114]e[101]a[97]d[100]e[101]r[114]s[115] [32]m[109]i[105]n[110]e[101],[44] [32]T[84]o[111] [32]s[115]h[104]o[111]w[119] [32]y[121]o[111]u[117] [32]h[104]e[101]r[114] [32]e[101]l[108]d[100]e[101]r[114] [32]l[108]i[105]n[110]e[101].[46]
{689} X[88]X[88]I[73]V[86]
{690} T[84]a[97]t[116]y[121]a[97]n[110]a[97] [32]w[119]a[97]s[115] [32]t[116]h[104]e[101] [32]n[110]a[97]m[109]e[101] [32]o[111]f[102] [32]s[115]i[105]s[115]t[116]e[101]r[114].[46].[46].[46] [32]S[83]u[117]c[99]h[104] [32]n[110]a[97]m[109]e[101] [32]w[119]e[101] [32]u[117]s[115]e[101] [32]t[116]o[111] [32]g[103]r[114]a[97]t[116]i[105]f[102]y[121]
{691} T[84]h[104]e[101] [32]n[110]o[111]v[118]e[101]l[108]'[39]s[115] [32]p[112]a[97]g[103]e[101]s[115] [32]o[111]f[102] [32]m[109]y[121] [32]e[101]i[105]t[116]h[104]e[101]r[114],[44] [32]A[65]t[116] [32]w[119]i[105]l[108]l[108] [32]t[116]h[104]a[97]t[116] [32]n[110]a[97]m[109]e[101] [32]w[119]e[101]l[108]l[108] [32]s[115]a[97]n[110]c[99]t[116]i[105]f[102]y[121].[46]
{692} W[87]h[104]y[121] [32]n[110]o[111]t[116]?[63] [32]I[73]t[116]'[39]s[115] [32]p[112]l[108]e[101]a[97]s[115]a[97]n[110]t[116] [32]a[97]n[110]d[100] [32]s[115]o[111]n[110]o[111]r[114]o[111]u[117]s[115];[59] [32]W[87]i[105]t[116]h[104] [32]i[105]t[116],[44] [32]I[73] [32]k[107]n[110]o[111]w[119],[44] [32]a[97]l[108]w[119]a[97]y[121]s[115] [32]g[103]o[111]e[101]s[115]
{693} R[82]e[101]m[109]i[105]n[110]i[105]s[115]c[99]e[101]n[110]c[99]e[101] [32]o[111]f[102] [32]o[111]l[108]d[100] [32]t[116]i[105]m[109]e[101],[44] [32]O[79]f[102] [32]m[109]a[97]i[105]d[100]e[101]n[110]'[39]s[115] [32]r[114]o[111]o[111]m[109]![33]
{694} W[87]e[101] [32]m[109]u[117]s[115]t[116] [32]m[109]e[101]a[97]n[110]w[119]h[104]i[105]l[108]e[101]
{695} C[67]o[111]n[110]f[102]e[101]s[115]s[115];[59] [32]w[119]e[101] [32]h[104]a[97]v[118]e[101] [32]t[116]h[104]e[101] [32]t[116]a[97]s[115]t[116]e[101] [32]q[113]u[117]i[105]t[116]e[101] [32]m[109]e[101]r[114]e[101] [32]I[73]n[110] [32]l[108]i[105]f[102]e[101],[44] [32]a[97]s[115] [32]w[119]e[101]l[108]l[108] [32]a[97]s[115] [32]i[105]n[110] [32]t[116]h[104]e[101] [32]n[110]a[97]m[109]e[101]s[115],[44]
{696} ([40]N[78]o[111]t[116] [32]s[115]p[112]e[101]a[97]k[107]i[105]n[110]g[103] [32]o[111]f[102] [32]t[116]h[104]e[101] [32]v[118]e[101]r[114]s[115]e[101]s[115] [32]f[102]r[114]a[97]m[109]e[101]s[115])[41].[46] [32]T[84]h[104]e[101] [32]e[101]d[100]u[117]c[99]a[97]t[116]i[105]o[111]n[110] [32]c[99]a[97]n[110]'[39]t[116] [32]a[97]d[100]h[104]e[101]r[114]e[101]
{697} T[84]o[111] [32]u[117]s[115]:[58] [32]f[102]r[114]o[111]m[109] [32]i[105]t[116] [32]w[119]e[101] [32]h[104]a[97]v[118]e[101] [32]n[110]o[111]t[116] [32]m[109]o[111]r[114]e[101] [32]T[84]h[104]a[97]n[110] [32]m[109]i[105]n[110]c[99]i[105]n[110]g[103] [32]m[109]a[97]n[110]n[110]e[101]r[114]s[115] [32]t[116]o[111] [32]a[97]d[100]o[111]r[114]e[101].[46]
{698} X[88]X[88]V[86]
{699} B[66]u[117]t[116] [32]w[119]e[101]l[108]l[108],[44] [32]s[115]h[104]e[101]'[39]s[115] [32]n[110]a[97]m[109]e[101]d[100] [32]T[84]a[97]t[116]y[121]a[97]n[110]a[97];[59] [32]g[103]l[108]a[97]d[100]l[108]e[101]s[115]s[115],[44] [32]N[78]o[111]r[114] [32]b[98]y[121] [32]h[104]e[101]r[114] [32]s[115]i[105]s[115]t[116]e[101]r[114]'[39]s[115] [32]p[112]r[114]e[101]t[116]t[116]y[121] [32]g[103]r[114]a[97]c[99]e[101],[44]
{700} N[78]o[111]r[114] [32]b[98]y[121] [32]h[104]e[101]r[114] [32]p[112]l[108]e[101]a[97]s[115]a[97]n[110]t[116] [32]r[114]u[117]d[100]d[100]y[121] [32]f[102]r[114]e[101]s[115]h[104]n[110]e[101]s[115]s[115] [32]S[83]h[104]e[101]'[39]d[100] [32]c[99]a[97]t[116]c[99]h[104] [32]o[111]n[110]e[101]'[39]s[115] [32]e[101]y[121]e[101]s[115] [32]b[98]y[121] [32]s[115]i[105]m[109]p[112]l[108]e[101] [32]f[102]a[97]c[99]e[101].[46]
{701} S[83]h[104]e[101]'[39]s[115] [32]w[119]i[105]l[108]d[100] [32]a[97]n[110]d[100] [32]s[115]a[97]d[100],[44] [32]i[105]s[115] [32]d[100]a[97]i[105]l[108]y[121] [32]s[115]i[105]l[108]e[101]n[110]t[116].[46] [32]L[76]i[105]k[107]e[101] [32]f[102]o[111]r[114]e[101]s[115]t[116] [32]c[99]a[97]l[108]f[102],[44] [32]s[115]h[104]e[101]'[39]s[115] [32]o[111]f[102]t[116]e[101]n[110] [32]f[102]r[114]i[105]g[103]h[104]t[116]e[101]n[110]e[101]d[100],[44]
{702} I[73]n[110] [32]o[111]w[119]n[110] [32]f[102]a[97]m[109]i[105]l[108]y[121] [32]s[115]h[104]e[101] [32]w[119]a[97]s[115] [32]L[76]i[105]k[107]e[101] [32]s[115]t[116]r[114]a[97]n[110]g[103]e[101] [32]a[97] [32]g[103]i[105]r[114]l[108] [32]i[105]n[110] [32]t[116]h[104]o[111]u[117]g[103]h[104]t[116]s[115] [32]q[113]u[117]i[105]t[116]e[101] [32]l[108]o[111]s[115]t[116];[59]
{703} S[83]h[104]e[101] [32]n[110]e[101]v[118]e[101]r[114] [32]c[99]o[111]u[117]l[108]d[100] [32]c[99]a[97]r[114]e[101]s[115]s[115] [32]i[105]n[110]s[115]p[112]i[105]r[114]e[101] [32]F[70]o[111]r[114] [32]p[112]a[97]r[114]e[101]n[110]t[116]s[115];[59] [32]i[105]t[116] [32]a[97]l[108]l[108] [32]s[115]e[101]e[101]m[109]e[101]d[100] [32]w[119]r[114]o[111]n[110]g[103].[46]
{704} Y[89]e[101]t[116] [32]b[98]e[101]i[105]n[110]g[103] [32]c[99]h[104]i[105]l[108]d[100],[44] [32]i[105]n[110] [32]c[99]h[104]i[105]l[108]d[100]r[114]e[101]n[110]'[39]s[115] [32]t[116]h[104]r[114]o[111]n[110]g[103] [32]T[84]o[111] [32]p[112]l[108]a[97]y[121] [32]a[97]n[110]d[100] [32]j[106]u[117]m[109]p[112] [32]h[104]a[97]d[100] [32]n[110]o[111]n[110]e[101] [32]d[100]e[101]s[115]i[105]r[114]e[101],[44]
{705} B[66]u[117]t[116] [32]a[97]t[116] [32]t[116]h[104]e[101] [32]w[119]i[105]n[110]d[100]o[111]w[119],[44] [32]n[110]o[111]t[116] [32]g[103]a[97]y[121],[44] [32]W[87]a[97]s[115] [32]m[109]u[117]t[116]e[101]l[108]y[121] [32]s[115]i[105]t[116]t[116]i[105]n[110]g[103] [32]a[97]l[108]l[108] [32]t[116]h[104]e[101] [32]d[100]a[97]y[121].[46]
{706} X[88]X[88]V[86]I[73]
{707} T[84]o[111] [32]p[112]e[101]n[110]s[115]i[105]v[118]e[101]n[110]e[101]s[115]s[115] [32]s[115]h[104]e[101] [32]g[103]o[111]t[116] [32]a[97]c[99]c[99]u[117]s[115]t[116]o[111]m[109]e[101]d[100] [32]F[70]r[114]o[111]m[109] [32]c[99]r[114]a[97]d[100]l[108]e[101] [32]t[116]o[111] [32]t[116]h[104]e[101] [32]p[112]r[114]e[101]s[115]e[101]n[110]t[116] [32]d[100]a[97]y[121],[44]
{708} A[65]n[110]d[100] [32]d[100]r[114]i[105]f[102]t[116]i[105]n[110]g[103] [32]o[111]f[102] [32]t[116]h[104]e[101] [32]c[99]o[111]u[117]n[110]t[116]r[114]y[121]'[39]s[115] [32]p[112]a[97]s[115]t[116]i[105]m[109]e[101] [32]I[73]n[110] [32]a[97]l[108]l[108] [32]h[104]e[101]r[114] [32]d[100]r[114]e[101]a[97]m[109]s[115] [32]l[108]o[111]o[111]k[107]e[101]d[100] [32]b[98]e[101]t[116]t[116]e[101]r[114],[44] [32]g[103]a[97]y[121].[46]
{709} H[72]e[101]r[114] [32]t[116]e[101]n[110]d[100]e[101]r[114] [32]f[102]i[105]n[110]g[103]e[101]r[114]s[115] [32]d[100]i[105]d[100]n[110]'[39]t[116] [32]d[100]a[97]r[114]e[101] [32]T[84]o[111] [32]t[116]a[97]k[107]e[101] [32]a[97] [32]n[110]e[101]e[101]d[100]l[108]e[101];[59] [32]s[115]h[104]e[101] [32]c[99]o[111]u[117]l[108]d[100] [32]n[110]e[101]v[118]e[101]r[114]
{710} S[83]o[111]m[109]e[101] [32]f[102]r[114]a[97]m[109]e[101] [32]a[97]n[110]d[100] [32]l[108]a[97]c[99]e[101] [32]f[102]o[111]r[114] [32]w[119]o[111]r[114]k[107]i[105]n[110]g[103] [32]f[102]i[105]t[116],[44] [32]I[73]n[110] [32]s[115]i[105]l[108]k[107] [32]e[101]m[109]b[98]r[114]o[111]i[105]d[100]e[101]r[114] [32]n[110]e[101]v[118]e[101]r[114] [32]d[100]i[105]d[100].[46]
{711} A[65]s[115] [32]s[115]i[105]g[103]n[110] [32]o[111]f[102] [32]l[108]u[117]s[115]t[116] [32]f[102]o[111]r[114] [32]f[102]u[117]t[116]u[117]r[114]e[101] [32]b[98]e[101]i[105]n[110]g[103] [32]T[84]h[104]e[101] [32]m[109]a[97]s[115]t[116]e[101]r[114] [32]o[111]f[102] [32]h[104]e[101]r[114] [32]h[104]o[111]m[109]e[101],[44] [32]c[99]h[104]i[105]l[108]d[100]
{712} I[73]n[110] [32]g[103]a[97]m[109]e[101]s[115] [32]w[119]i[105]t[116]h[104] [32]d[100]o[111]l[108]l[108] [32]c[99]a[97]n[110] [32]t[116]r[114]a[97]i[105]n[110] [32]f[102]o[111]r[114] [32]m[109]i[105]l[108]d[100] [32]D[68]e[101]c[99]o[111]r[114]u[117]m[109] [32]o[111]f[102] [32]t[116]h[104]e[101] [32]l[108]o[111]y[121]a[97]l[108] [32]l[108]i[105]v[118]i[105]n[110]g[103]:[58]
{713} I[73]m[109]p[112]o[111]r[114]t[116]a[97]n[110]t[116]l[108]y[121] [32]r[114]e[101]p[112]e[101]a[97]t[116]s[115] [32]f[102]o[111]r[114] [32]d[100]o[111]l[108]l[108] [32]T[84]h[104]e[101] [32]m[109]o[111]t[116]h[104]e[101]r[114]'[39]s[115] [32]l[108]e[101]s[115]s[115]o[111]n[110]s[115],[44] [32]t[116]h[104]o[111]u[117]g[103]h[104] [32]s[115]m[109]a[97]l[108]l[108].[46]
{714} X[88]X[88]V[86]I[73]I[73]
{715} Y[89]e[101]t[116] [32]b[98]e[101]i[105]n[110]g[103] [32]c[99]h[104]i[105]l[108]d[100],[44] [32]a[97]t[116] [32]a[97]n[110]y[121] [32]y[121]e[101]a[97]r[114] [32]T[84]a[97]t[116]y[121]a[97]n[110]a[97] [32]d[100]i[105]d[100]n[110]'[39]t[116] [32]p[112]l[108]a[97]y[121] [32]w[119]i[105]t[116]h[104] [32]d[100]o[111]l[108]l[108];[59]
{716} A[65]b[98]o[111]u[117]t[116] [32]n[110]e[101]w[119]s[115] [32]a[97]n[110]d[100] [32]f[102]a[97]s[115]h[104]i[105]o[111]n[110]s[115] [32]d[100]e[101]a[97]r[114] [32]W[87]i[105]t[116]h[104] [32]d[100]o[111]l[108]l[108]s[115] [32]s[115]h[104]e[101] [32]d[100]i[105]d[100]n[110]'[39]t[116] [32]t[116]a[97]l[108]k[107] [32]a[97]t[116] [32]a[97]l[108]l[108],[44]
{717} F[70]o[111]r[114] [32]a[97]l[108]l[108] [32]t[116]h[104]e[101] [32]c[99]h[104]i[105]l[108]d[100]i[105]s[115]h[104] [32]t[116]r[114]i[105]c[99]k[107]s[115] [32]f[102]e[101]l[108]t[116] [32]s[115]o[111]r[114]r[114]y[121],[44] [32]T[84]o[111] [32]t[116]h[104]e[101]m[109] [32]w[119]a[97]s[115] [32]s[115]t[116]r[114]a[97]n[110]g[103]e[101]r[114];[59] [32]d[100]r[114]e[101]a[97]d[100]f[102]u[117]l[108] [32]s[115]t[116]o[111]r[114]y[121]
{718} I[73]n[110] [32]w[119]i[105]n[110]t[116]e[101]r[114] [32]d[100]a[97]r[114]k[107]n[110]e[101]s[115]s[115] [32]o[111]f[102] [32]t[116]h[104]e[101] [32]n[110]i[105]g[103]h[104]t[116] [32]W[87]a[97]s[115] [32]c[99]a[97]p[112]t[116]i[105]v[118]a[97]t[116]i[105]n[110]g[103] [32]h[104]e[101]a[97]r[114]t[116] [32]a[97]n[110]d[100] [32]m[109]i[105]n[110]d[100].[46]
{719} B[66]u[117]t[116] [32]w[119]h[104]e[101]n[110] [32]t[116]h[104]e[101] [32]n[110]u[117]r[114]s[115]e[101] [32]i[105]n[110] [32]s[115]u[117]m[109]m[109]e[101]r[114] [32]g[103]a[97]t[116]h[104]e[101]r[114]e[101]d[100] [32]T[84]o[111] [32]O[79]l[108]g[103]a[97] [32]a[97]l[108]l[108] [32]h[104]e[101]r[114] [32]l[108]i[105]t[116]t[116]l[108]e[101] [32]f[102]r[114]i[105]e[101]n[110]d[100]s[115],[44]
{720} T[84]a[97]t[116]y[121]a[97]n[110]a[97] [32]h[104]a[97]d[100]n[110]'[39]t[116] [32]a[97]n[110]y[121] [32]t[116]r[114]e[101]n[110]d[100]s[115] [32]T[84]o[111] [32]p[112]l[108]a[97]y[121] [32]w[119]i[105]t[116]h[104] [32]t[116]h[104]e[101]m[109] [32]i[105]n[110] [32]a[97]n[110]y[121] [32]w[119]e[101]a[97]t[116]h[104]e[101]r[114]:[58]
{721} S[83]h[104]e[101]'[39]s[115] [32]a[97]l[108]w[119]a[97]y[121]s[115] [32]b[98]o[111]r[114]e[101]d[100] [32]b[98]y[121] [32]l[108]o[111]u[117]d[100] [32]l[108]a[97]u[117]g[103]h[104]s[115] [32]B[66]y[121] [32]n[110]o[111]i[105]s[115]e[101] [32]o[111]f[102] [32]t[116]h[104]e[101]i[105]r[114] [32]p[112]l[108]a[97]y[121]f[102]u[117]l[108] [32]m[109]u[117]f[102]f[102]s[115].[46]
{722} X[88]X[88]V[86]I[73]I[73]I[73]
{723} O[79]n[110] [32]b[98]a[97]l[108]c[99]o[111]n[110]y[121] [32]a[97]t[116] [32]m[109]o[111]r[114]n[110]i[105]n[110]g[103] [32]s[115]i[105]t[116]t[116]i[105]n[110]g[103] [32]S[83]h[104]e[101] [32]l[108]i[105]k[107]e[101]d[100] [32]t[116]o[111] [32]m[109]e[101]e[101]t[116] [32]t[116]h[104]e[101] [32]b[98]r[114]e[101]a[97]k[107] [32]o[111]f[102] [32]d[100]a[97]y[121],[44]
{724} W[87]h[104]e[101]n[110] [32]c[99]l[108]o[111]u[117]d[100]s[115] [32]i[105]n[110] [32]t[116]h[104]e[101] [32]s[115]k[107]y[121] [32]a[97]r[114]e[101] [32]d[100]r[114]i[105]f[102]t[116]i[105]n[110]g[103] [32]A[65]n[110]d[100] [32]s[115]t[116]a[97]r[114]s[115] [32]i[105]n[110] [32]t[116]u[117]r[114]n[110] [32]a[97]l[108]l[108] [32]g[103]e[101]t[116] [32]a[97]w[119]a[97]y[121],[44]
{725} A[65]n[110]d[100] [32]c[99]a[97]l[108]m[109]l[108]y[121] [32]e[101]d[100]g[103]e[101] [32]o[111]f[102] [32]e[101]a[97]r[114]t[116]h[104] [32]i[105]s[115] [32]l[108]i[105]g[103]h[104]t[116]i[105]n[110]g[103],[44] [32]A[65]n[110]d[100],[44] [32]s[115]i[105]g[103]n[110] [32]o[111]f[102] [32]d[100]a[97]y[121],[44] [32]t[116]h[104]e[101] [32]w[119]i[105]n[110]d[100] [32]i[105]s[115] [32]r[114]i[105]s[115]i[105]n[110]g[103],[44]
{726} A[65]n[110]d[100] [32]g[103]r[114]a[97]d[100]u[117]a[97]l[108]l[108]y[121] [32]r[114]i[105]s[115]e[101]s[115] [32]d[100]a[97]y[121].[46]
{727} I[73]n[110] [32]w[119]i[105]n[110]t[116]e[101]r[114],[44] [32]w[119]h[104]e[101]n[110] [32]t[116]h[104]e[101] [32]n[110]i[105]g[103]h[104]t[116]'[39]s[115] [32]w[119]e[101]a[97]k[107] [32]s[115]h[104]a[97]d[100]e[101]
{728} P[80]o[111]s[115]s[115]e[101]s[115]s[115]e[101]s[115] [32]h[104]a[97]l[108]f[102] [32]o[111]f[102] [32]w[119]o[111]r[114]l[108]d[100] [32]e[101]x[120]i[105]s[115]t[116]i[105]n[110]g[103] [32]M[77]u[117]c[99]h[104] [32]l[108]o[111]n[110]g[103]e[101]r[114],[44] [32]i[105]n[110] [32]t[116]h[104]e[101] [32]s[115]o[111]f[102]t[116]e[101]n[110]e[101]d[100] [32]l[108]o[111]o[111]m[109]
{729} O[79]f[102] [32]p[112]a[97]l[108]e[101] [32]a[97]n[110]d[100] [32]f[102]o[111]g[103]g[103]y[121],[44] [32]s[115]l[108]e[101]e[101]p[112]y[121] [32]m[109]o[111]o[111]n[110] [32]T[84]h[104]e[101] [32]l[108]a[97]z[122]y[121] [32]E[69]a[97]s[115]t[116] [32]i[105]s[115] [32]y[121]e[101]t[116] [32]a[97]s[115]l[108]e[101]e[101]p[112]i[105]n[110]g[103],[44] [32]-[45]
{730} A[65]t[116] [32]u[117]s[115]u[117]a[97]l[108] [32]h[104]o[111]u[117]r[114] [32]s[115]t[116]i[105]r[114]r[114]e[101]d[100] [32]u[117]p[112],[44] [32]I[73]n[110] [32]c[99]a[97]n[110]d[100]l[108]e[101]'[39]s[115] [32]l[108]i[105]g[103]h[104]t[116] [32]s[115]h[104]e[101]'[39]s[115] [32]g[103]e[101]t[116]t[116]i[105]n[110]g[103] [32]u[117]p[112].[46]
{731} X[88]X[88]I[73]X[88]
{732} T[84]h[104]e[101] [32]n[110]o[111]v[118]e[101]l[108]s[115] [32]w[119]e[101]r[114]e[101] [32]f[102]o[111]r[114] [32]m[109]a[97]n[110]y[121] [32]y[121]e[101]a[97]r[114]s[115] [32]H[72]e[101]r[114] [32]i[105]n[110]n[110]e[101]r[114] [32]l[108]i[105]f[102]e[101],[44] [32]w[119]e[101]r[114]e[101] [32]l[108]i[105]k[107]e[101]d[100] [32]b[98]y[121] [32]h[104]e[101]r[114];[59]
{733} S[83]h[104]e[101] [32]l[108]o[111]v[118]e[101]d[100] [32]t[116]h[104]e[101] [32]f[102]r[114]a[97]u[117]d[100] [32]a[97]b[98]o[111]u[117]t[116] [32]f[102]e[101]a[97]r[114]s[115] [32]O[79]f[102] [32]R[82]i[105]c[99]h[104]a[97]r[114]d[100]s[115]o[111]n[110] [32]a[97]n[110]d[100] [32]b[98]y[121] [32]R[82]o[111]u[117]s[115]s[115]e[101]a[97]u[117].[46]
{734} H[72]e[101]r[114] [32]f[102]a[97]t[116]h[104]e[101]r[114] [32]w[119]a[97]s[115] [32]g[103]o[111]o[111]d[100]-[45]h[104]u[117]m[109]o[111]u[117]r[114]e[101]d[100] [32]b[98]e[101]i[105]n[110]g[103],[44] [32]F[70]r[114]o[111]m[109] [32]a[97]g[103]e[101] [32]r[114]e[101]t[116]a[97]r[114]t[116]e[101]d[100].[46] [32]S[83]c[99]o[111]r[114]n[110]f[102]u[117]l[108] [32]f[102]e[101]e[101]l[108]i[105]n[110]g[103]
{735} H[72]e[101] [32]h[104]a[97]d[100] [32]o[111]f[102] [32]b[98]o[111]o[111]k[107]s[115],[44] [32]a[97]s[115] [32]n[110]o[111] [32]h[104]a[97]r[114]m[109] [32]I[73]n[110] [32]t[116]h[104]e[101]m[109] [32]h[104]e[101] [32]s[115]a[97]w[119],[44] [32]b[98]u[117]t[116] [32]n[110]o[111] [32]c[99]h[104]a[97]r[114]m[109]
{736} C[67]o[111]u[117]l[108]d[100] [32]g[103]r[114]a[97]s[115]p[112] [32]i[105]n[110] [32]i[105]d[100]l[108]e[101],[44] [32]f[102]u[117]t[116]i[105]l[108]e[101] [32]r[114]e[101]a[97]d[100]i[105]n[110]g[103],[44] [32]W[87]a[97]s[115] [32]n[110]o[111]t[116] [32]c[99]o[111]n[110]c[99]e[101]r[114]n[110]e[101]d[100] [32]a[97] [32]l[108]i[105]t[116]t[116]l[108]e[101] [32]b[98]i[105]t[116]
{737} O[79]f[102] [32]w[119]h[104]a[97]t[116] [32]t[116]h[104]e[101] [32]s[115]e[101]c[99]r[114]e[101]t[116] [32]b[98]o[111]o[111]k[107],[44] [32]s[115]h[104]e[101] [32]h[104]i[105]d[100],[44] [32]I[73]n[110] [32]d[100]a[97]u[117]g[103]h[104]t[116]e[101]r[114]'[39]s[115] [32]b[98]e[101]d[100] [32]t[116]i[105]l[108]l[108] [32]d[100]a[97]y[121] [32]w[119]a[97]s[115] [32]d[100]r[114]e[101]a[97]m[109]i[105]n[110]g[103]
{738} H[72]i[105]s[115] [32]w[119]i[105]f[102]e[101] [32]h[104]e[101]r[114]s[115]e[101]l[108]f[102] [32]s[115]u[117]c[99]h[104] [32]f[102]e[101]e[101]l[108]i[105]n[110]g[103] [32]h[104]a[97]d[100]:[58] [32]F[70]r[114]o[111]m[109] [32]R[82]i[105]c[99]h[104]a[97]r[114]d[100]s[115]o[111]n[110] [32]t[116]o[111] [32]b[98]e[101] [32]q[113]u[117]i[105]t[116]e[101] [32]m[109]a[97]d[100].[46]
{739} X[88]X[88]X[88]
{740} S[83]h[104]e[101] [32]l[108]i[105]k[107]e[101]d[100] [32]t[116]h[104]e[101] [32]b[98]o[111]o[111]k[107]s[115] [32]o[111]f[102] [32]R[82]i[105]c[99]h[104]a[97]r[114]d[100]s[115]o[111]n[110] [32]Y[89]e[101]t[116] [32]n[110]o[111] [32]b[98]e[101]c[99]a[97]u[117]s[115]e[101] [32]t[116]h[104]e[101]m[109] [32]a[97]l[108]l[108] [32]s[115]h[104]e[101] [32]r[114]e[101]a[97]d[100].[46]
{741} A[65]n[110]d[100] [32]n[110]o[111]t[116] [32]b[98]e[101]c[99]a[97]u[117]s[115]e[101] [32]t[116]h[104]e[101] [32]G[71]r[114]a[97]n[110]d[100]i[105]s[115]o[111]n[110] [32]T[84]o[111] [32]L[76]o[111]v[118]e[101]l[108]a[97]c[99]e[101] [32]w[119]a[97]s[115] [32]b[98]y[121] [32]h[104]e[101]r[114] [32]p[112]r[114]e[101]f[102]e[101]r[114]e[101]d[100];[59]
{742} I[73]t[116] [32]w[119]a[97]s[115] [32]b[98]e[101]c[99]a[97]u[117]s[115]e[101] [32]o[111]f[102] [32]c[99]o[111]u[117]s[115]i[105]n[110] [32]d[100]e[101]a[97]r[114]:[58] [32]I[73]n[110] [32]M[77]o[111]s[115]c[99]o[111]w[119] [32]p[112]r[114]i[105]n[110]c[99]e[101]s[115]s[115] [32]A[65]l[108]i[105]n[110]a[97]
{743} W[87]a[97]s[115] [32]t[116]a[97]l[108]k[107]i[105]n[110]g[103] [32]m[109]u[117]c[99]h[104] [32]o[111]f[102] [32]t[116]h[104]e[101]m[109] [32]w[119]i[105]t[116]h[104] [32]p[112]r[114]i[105]d[100]e[101].[46]
{744} F[70]o[111]r[114] [32]h[104]u[117]s[115]b[98]a[97]n[110]d[100] [32]t[116]h[104]e[101]n[110] [32]s[115]h[104]e[101] [32]w[119]a[97]s[115] [32]y[121]e[101]t[116] [32]b[98]r[114]i[105]d[100]e[101].[46]
{745} B[66]u[117]t[116],[44] [32]b[98]e[101]i[105]n[110]g[103] [32]w[119]i[105]f[102]e[101],[44] [32]s[115]h[104]e[101] [32]w[119]i[105]l[108]l[108]y[121]-[45]n[110]i[105]l[108]l[108]y[121] [32]Y[89]e[101]t[116] [32]s[115]i[105]g[103]h[104]e[101]d[100] [32]f[102]o[111]r[114] [32]m[109]a[97]n[110] [32]o[111]f[102] [32]o[111]t[116]h[104]e[101]r[114] [32]k[107]i[105]n[110]d[100],[44]
{746} W[87]h[104]o[111] [32]p[112]l[108]e[101]a[97]s[115]e[101]d[100] [32]h[104]e[101]r[114] [32]s[115]o[111]u[117]l[108] [32]a[97]n[110]d[100] [32]t[116]h[104]e[101] [32]m[109]i[105]n[110]d[100],[44] [32]M[77]u[117]c[99]h[104] [32]m[109]o[111]r[114]e[101] [32]w[119]a[97]s[115] [32]t[116]o[111]u[117]c[99]h[104]i[105]n[110]g[103] [32]a[97]l[108]l[108] [32]h[104]e[101]r[114] [32]f[102]e[101]e[101]l[108]i[105]n[110]g[103]:[58]
{747} G[71]o[111]o[111]d[100] [32]g[103]u[117]y[121] [32]a[97]n[110]d[100] [32]s[115]e[101]r[114]g[103]e[101]a[97]n[110]t[116] [32]o[111]f[102] [32]t[116]h[104]e[101] [32]g[103]u[117]a[97]r[114]d[100]s[115],[44] [32]T[84]h[104]i[105]s[115] [32]G[71]r[114]a[97]n[110]d[100]i[105]s[115]o[111]n[110] [32]c[99]o[111]u[117]l[108]d[100] [32]p[112]l[108]a[97]y[121] [32]t[116]h[104]e[101] [32]c[99]a[97]r[114]d[100]s[115].[46]
{748} X[88]X[88]X[88]I[73]
{749} L[76]i[105]k[107]e[101] [32]h[104]e[101],[44] [32]s[115]h[104]e[101] [32]w[119]a[97]s[115] [32]w[119]e[101]l[108]l[108]-[45]d[100]r[114]e[101]s[115]s[115]e[101]d[100],[44] [32]i[105]n[110] [32]f[102]a[97]s[115]h[104]i[105]o[111]n[110],[44] [32]I[73]n[110] [32]b[98]e[101]s[115]t[116] [32]a[97]t[116]t[116]i[105]r[114]e[101]s[115] [32]e[101]v[118]e[101]r[114]y[121] [32]d[100]a[97]y[121];[59]
{750} B[66]u[117]t[116] [32]s[115]o[111]o[111]n[110],[44] [32]n[110]o[111]t[116] [32]a[97]s[115]k[107]e[101]d[100] [32]f[102]o[111]r[114] [32]h[104]e[101]r[114] [32]c[99]o[111]n[110]c[99]e[101]s[115]s[115]i[105]o[111]n[110],[44] [32]W[87]a[97]s[115] [32]t[116]o[111] [32]t[116]h[104]e[101] [32]a[97]l[108]t[116]a[97]r[114] [32]l[108]e[101]d[100] [32]a[97]w[119]a[97]y[121].[46]
{751} T[84]o[111] [32]d[100]i[105]s[115]s[115]i[105]p[112]a[97]t[116]e[101] [32]h[104]e[101]r[114] [32]g[103]r[114]e[101]a[97]t[116]e[101]s[115]t[116] [32]w[119]o[111]e[101] [9] [32]J[74]u[117]d[100]i[105]c[99]i[105]o[111]u[117]s[115] [32]h[104]u[117]s[115]b[98]a[97]n[110]d[100] [32]h[104]a[97]d[100] [32]a[97] [32]g[103]o[111]:[58]
{752} T[84]o[111] [32]v[118]i[105]l[108]l[108]a[97]g[103]e[101] [32]o[111]w[119]n[110] [32]t[116]o[111]o[111]k[107] [32]h[104]e[101]r[114] [32]s[115]o[111]o[111]n[110];[59] [32]B[66]u[117]t[116] [32]s[115]h[104]e[101] [32]w[119]a[97]s[115] [32]o[111]f[102]t[116]e[101]n[110] [32]i[105]n[110] [32]a[97] [32]f[102]u[117]m[109]e[101],[44]
{753} S[83]o[111]m[109]e[101] [32]d[100]a[97]y[121]s[115] [32]w[119]a[97]s[115] [32]c[99]r[114]y[121]i[105]n[110]g[103],[44] [32]t[116]h[104]e[101]n[110] [32]w[119]a[97]s[115] [32]t[116]r[114]y[121]i[105]n[110]g[103] [32]T[84]o[111] [32]g[103]e[101]t[116] [32]d[100]i[105]v[118]o[111]r[114]c[99]e[101] [32]f[102]r[114]o[111]m[109] [32]n[110]e[101]w[119]l[108]y[121] [32]m[109]a[97]n[110];[59]
{754} B[66]u[117]t[116] [32]s[115]o[111]o[111]n[110] [32]t[116]o[111] [32]f[102]a[97]r[114]m[109]i[105]n[110]g[103] [32]s[115]h[104]e[101] [32]b[98]e[101]g[103]a[97]n[110] [32]T[84]o[111] [32]b[98]e[101] [32]a[97]c[99]c[99]u[117]s[115]t[116]o[111]m[109]e[101]d[100] [32]a[97]n[110]d[100] [32]r[114]e[101]l[108]y[121]i[105]n[110]g[103].[46]
{755} B[66]y[121] [32]u[117]s[115] [32]t[116]h[104]e[101] [32]h[104]a[97]b[98]i[105]t[116]s[115] [32]h[104]a[97]v[118]e[101] [32]b[98]e[101]e[101]n[110] [32]g[103]o[111]t[116] [32]I[73]n[110]s[115]t[116]e[101]a[97]d[100] [32]o[111]f[102] [32]h[104]a[97]p[112]p[112]i[105]n[110]e[101]s[115]s[115] [32]f[102]r[114]o[111]m[109] [32]G[71]o[111]d[100].[46]
{756} X[88]X[88]X[88]I[73]I[73]
{757} T[84]h[104]e[101] [32]h[104]a[97]b[98]i[105]t[116]s[115] [32]s[115]u[117]g[103]a[97]r[114]e[101]d[100] [32]a[97]l[108]l[108] [32]h[104]e[101]r[114] [32]w[119]o[111]e[101] [32]W[87]h[104]i[105]c[99]h[104] [32]w[119]a[97]s[115]n[110]'[39]t[116] [32]s[115]m[109]o[111]o[111]t[116]h[104]e[101]d[100] [32]b[98]y[121] [32]a[97]n[110]y[121] [32]c[99]h[104]a[97]n[110]c[99]e[101]:[58]
{758} B[66]u[117]t[116] [32]s[115]o[111]o[111]n[110] [32]s[115]h[104]e[101] [32]a[97]l[108]l[108] [32]w[119]a[97]s[115] [32]f[102]u[117]l[108]l[108] [32]o[111]f[102] [32]g[103]o[111],[44] [32]B[66]y[121] [32]i[105]t[116] [32]s[115]h[104]e[101] [32]c[99]a[97]l[108]m[109]e[101]d[100] [32]h[104]e[101]r[114]s[115]e[101]l[108]f[102] [32]a[97]t[116] [32]o[111]n[110]c[99]e[101]:[58]
{759} B[66]e[101]t[116]w[119]e[101]e[101]n[110] [32]a[97]f[102]f[102]a[97]i[105]r[114]s[115] [32]a[97]n[110]d[100] [32]t[116]h[104]e[101] [32]l[108]e[101]i[105]s[115]u[117]r[114]e[101] [32]S[83]h[104]e[101] [32]f[102]o[111]u[117]n[110]d[100] [32]o[111]u[117]t[116] [32]w[119]i[105]t[116]h[104] [32]a[97] [32]p[112]l[108]e[101]a[97]s[115]u[117]r[114]e[101]
{760} T[84]h[104]e[101] [32]w[119]a[97]y[121] [32]t[116]o[111] [32]k[107]e[101]e[101]p[112] [32]h[104]e[101]r[114] [32]m[109]a[97]n[110] [32]a[97]w[119]a[97]y[121]![33] [32]A[65]n[110]d[100] [32]e[101]v[118]e[101]r[114]y[121]t[116]h[104]i[105]n[110]g[103] [32]b[98]e[101]c[99]a[97]m[109]e[101] [32]o[111]'[39]k[107]e[101]y[121].[46]
{761} S[83]h[104]e[101] [32]w[119]a[97]s[115] [32]t[116]h[104]e[101] [32]w[119]o[111]r[114]k[107]s[115] [32]i[105]n[110] [32]f[102]i[105]e[101]l[108]d[100]s[115] [32]o[111]b[98]s[115]e[101]r[114]v[118]i[105]n[110]g[103],[44] [32]S[83]h[104]e[101] [32]s[115]a[97]l[108]t[116]e[101]d[100] [32]m[109]u[117]s[115]h[104]r[114]o[111]o[111]m[109]s[115],[44] [32]p[112]u[117]n[110]i[105]s[115]h[104]e[101]d[100] [32]m[109]e[101]n[110],[44]
{762} S[83]h[104]e[101] [32]k[107]e[101]p[112]t[116] [32]a[97]c[99]c[99]o[111]u[117]n[110]t[116]s[115];[59] [32]a[97]l[108]w[119]a[97]y[121]s[115] [32]t[116]h[104]e[101]n[110] [32]O[79]n[110] [32]S[83]a[97]t[116]u[117]r[114]d[100]a[97]y[121]s[115] [32]t[116]h[104]e[101]y[121] [32]b[98]a[97]t[116]h[104] [32]w[119]e[101]r[114]e[101] [32]s[115]e[101]r[114]v[118]i[105]n[110]g[103],[44]
{763} S[83]o[111]m[109]e[101]t[116]i[105]m[109]e[101]s[115] [32]s[115]h[104]e[101] [32]b[98]e[101]a[97]t[116] [32]a[97] [32]h[104]o[111]u[117]s[115]e[101]-[45]m[109]a[97]i[105]d[100],[44] [32]-[45] [32]A[65]l[108]l[108] [32]t[116]h[104]a[97]t[116] [32]n[110]o[111]t[116] [32]a[97]s[115]k[107]i[105]n[110]g[103] [32]m[109]a[97]n[110] [32]s[115]h[104]e[101] [32]m[109]a[97]d[100]e[101].[46]
{764} X[88]X[88]X[88]I[73]I[73]I[73]
{765} S[83]o[111]m[109]e[101]t[116]i[105]m[109]e[101]s[115] [32]w[119]i[105]t[116]h[104] [32]o[111]w[119]n[110] [32]b[98]l[108]o[111]o[111]d[100] [32]s[115]h[104]e[101] [32]w[119]r[114]o[111]t[116]e[101] [32]T[84]o[111] [32]l[108]a[97]d[100]y[121]'[39]s[115] [32]a[97]l[108]b[98]u[117]m[109] [32]i[105]f[102] [32]b[98]y[121] [32]c[99]h[104]a[97]n[110]c[99]e[101],[44]
{766} T[84]h[104]e[101]n[110] [32]c[99]h[104]a[97]n[110]g[103]e[101]d[100] [32]i[105]n[110] [32]s[115]t[116]r[114]i[105]c[99]t[116] [32]a[97]n[110]d[100] [32]q[113]u[117]i[105]c[99]k[107] [32]a[97] [32]m[109]o[111]d[100]e[101] [32]T[84]h[104]e[101] [32]m[109]a[97]i[105]d[100]e[101]n[110]'[39]s[115] [32]n[110]a[97]m[109]e[101]s[115] [32]b[98]y[121] [32]n[110]a[97]m[109]e[101]s[115] [32]f[102]r[114]o[111]m[109] [32]F[70]r[114]a[97]n[110]c[99]e[101],[44]
{767} S[83]h[104]e[101] [32]t[116]r[114]i[105]e[101]d[100] [32]h[104]e[101]r[114] [32]c[99]o[111]r[114]s[115]e[101]t[116] [32]t[116]i[105]g[103]h[104]t[116] [32]t[116]o[111] [32]w[119]e[101]a[97]r[114],[44] [32]A[65]n[110]d[100] [32]R[82]u[117]s[115]s[115]i[105]a[97]n[110] [32]禺-30][-128]彈-100]ミ[-48]ス[-67]禺-30][-128]拏-99] [32]i[105]n[110] [32]F[70]r[114]e[101]n[110]c[99]h[104] [32]b[98]e[101]s[115]t[116] [32]m[109]a[97]n[110]n[110]e[101]r[114]
{768} T[84]h[104]r[114]o[111]u[117]g[103]h[104] [32]n[110]o[111]s[115]e[101] [32]s[115]i[105]n[110]g[103]i[105]n[110]g[103]l[108]y[121] [32]c[99]o[111]u[117]l[108]d[100] [32]s[115]a[97]y[121],[44] [32]B[66]u[117]t[116] [32]s[115]o[111]o[111]n[110] [32]h[104]e[101]r[114] [32]m[109]o[111]o[111]d[100] [32]c[99]o[111]u[117]l[108]d[100] [32]p[112]a[97]s[115]s[115] [32]a[97]w[119]a[97]y[121]:[58]
{769} T[84]o[111] [32]h[104]e[101]r[114] [32]i[105]t[116] [32]a[97]l[108]l[108] [32]s[115]e[101]e[101]m[109]e[101]d[100] [32]r[114]a[97]t[116]h[104]e[101]r[114] [32]q[113]u[117]e[101]e[101]r[114],[44] [32]S[83]h[104]e[101] [32]a[97]l[108]l[108] [32]f[102]o[111]r[114]g[103]o[111]t[116],[44] [32]r[114]e[101]p[112]l[108]a[97]c[99]e[101]d[100] [32]a[97]g[103]a[97]i[105]n[110]
{770} E[69]a[97]c[99]h[104] [32]n[110]a[97]m[109]e[101] [32]f[102]r[114]o[111]m[109] [32]F[70]r[114]a[97]n[110]c[99]e[101] [32]b[98]y[121] [32]R[82]u[117]s[115]s[115]i[105]a[97]n[110] [32]n[110]a[97]m[109]e[101],[44] [32]F[70]o[111]r[114]g[103]o[111]t[116] [32]p[112]r[114]i[105]n[110]c[99]e[101]s[115]s[115] [32]A[65]l[108]i[105]n[110]a[97] [32]d[100]e[101]a[97]r[114];[59]
{771} A[65]n[110]d[100] [32]s[115]h[104]e[101] [32]h[104]e[101]r[114]s[115]e[101]l[108]f[102] [32]r[114]e[101]n[110]e[101]w[119]e[101]d[100] [32]a[97]t[116] [32]l[108]a[97]s[115]t[116] [32]N[78]i[105]g[103]h[104]t[116]-[45]c[99]a[97]p[112] [32]a[97]n[110]d[100] [32]d[100]r[114]e[101]s[115]s[115]i[105]n[110]g[103]-[45]g[103]o[111]w[119]n[110] [32]f[102]a[97]s[115]t[116].[46]
{772} X[88]X[88]X[88]I[73]V[86]
{773} H[72]e[101]r[114] [32]h[104]u[117]s[115]b[98]a[97]n[110]d[100]'[39]s[115] [32]l[108]o[111]v[118]e[101] [32]t[116]o[111] [32]w[119]i[105]f[102]e[101] [32]w[119]a[97]s[115] [32]h[104]e[101]a[97]r[114]t[116]y[121],[44] [32]H[72]e[101]r[114] [32]d[100]e[101]e[101]d[100]s[115] [32]h[104]e[101] [32]t[116]o[111]o[111]k[107] [32]f[102]o[111]r[114] [32]m[109]e[101]r[114]e[101] [32]c[99]r[114]a[97]n[110]k[107],[44]
{774} T[84]o[111] [32]t[116]r[114]u[117]s[115]t[116] [32]h[104]i[105]s[115] [32]w[119]i[105]f[102]e[101] [32]h[104]e[101] [32]w[119]a[97]s[115] [32]l[108]i[105]g[103]h[104]t[116]-[45]h[104]e[101]a[97]r[114]t[116]e[101]d[100],[44] [32]I[73]n[110] [32]d[100]r[114]e[101]s[115]s[115]i[105]n[110]g[103]-[45]g[103]o[111]w[119]n[110] [32]a[97]t[116]e[101] [32]a[97]n[110]d[100] [32]d[100]r[114]a[97]n[110]k[107].[46]
{775} H[72]i[105]s[115] [32]l[108]i[105]f[102]e[101] [32]w[119]a[97]s[115] [32]c[99]a[97]l[108]m[109],[44] [32]w[119]i[105]t[116]h[104]o[111]u[117]t[116] [32]w[119]o[111]e[101].[46] [32]S[83]o[111]m[109]e[101]t[116]i[105]m[109]e[101]s[115] [32]h[104]i[105]s[115] [32]n[110]e[101]i[105]g[103]h[104]b[98]o[111]u[117]r[114]s[115] [32]i[105]n[110] [32]h[104]i[105]s[115] [32]h[104]o[111]m[109]e[101]
{776} W[87]o[111]u[117]l[108]d[100] [32]c[99]o[111]m[109]e[101] [32]t[116]o[111]g[103]e[101]t[116]h[104]e[101]r[114] [32]a[97]t[116] [32]w[119]e[101]e[101]k[107]-[45]e[101]n[110]d[100]s[115],[44] [32]U[85]n[110]c[99]e[101]r[114]e[101]m[109]o[111]n[110]i[105]o[111]u[117]s[115] [32]d[100]e[101]a[97]r[114] [32]f[102]r[114]i[105]e[101]n[110]d[100]s[115],[44]
{777} T[84]o[111] [32]g[103]r[114]i[105]e[101]v[118]e[101],[44] [32]t[116]o[111] [32]t[116]a[97]l[108]k[107] [32]o[111]f[102] [32]n[110]e[101]w[119] [32]a[97]f[102]f[102]a[97]i[105]r[114]s[115],[44] [32]T[84]o[111] [32]l[108]a[97]u[117]g[103]h[104],[44] [32]t[116]o[111] [32]g[103]o[111]s[115]s[115]i[105]p[112] [32]f[102]o[111]r[114] [32]a[97] [32]w[119]h[104]i[105]l[108]e[101],[44]
{778} A[65]n[110]d[100] [32]t[116]h[104]u[117]s[115] [32]t[116]h[104]e[101] [32]t[116]i[105]m[109]e[101] [32]w[119]o[111]u[117]l[108]d[100] [32]p[112]a[97]s[115]s[115];[59] [32]m[109]e[101]a[97]n[110]w[119]h[104]i[105]l[108]e[101] [32]T[84]h[104]e[101]y[121] [32]a[97]s[115]k[107],[44] [32]a[97]n[110]d[100] [32]O[79]l[108]g[103]a[97] [32]t[116]e[101]a[97] [32]p[112]r[114]e[101]p[112]a[97]r[114]e[101]s[115];[59]
{779} T[84]h[104]e[101]n[110] [32]s[115]u[117]p[112]p[112]e[101]r[114].[46].[46].[46] [32]t[116]i[105]m[109]e[101] [32]t[116]o[111] [32]b[98]e[101] [32]i[105]n[110] [32]b[98]e[101]d[100],[44] [32]A[65]n[110]d[100] [32]s[115]o[111]o[111]n[110] [32]t[116]h[104]e[101] [32]g[103]u[117]e[101]s[115]t[116]s[115] [32]a[97]l[108]l[108] [32]h[104]o[111]m[109]e[101] [32]g[103]e[101]t[116].[46]
{780} X[88]X[88]X[88]V[86]
{781} T[84]h[104]e[101]y[121] [32]k[107]e[101]p[112]t[116] [32]i[105]n[110] [32]p[112]e[101]a[97]c[99]e[101]f[102]u[117]l[108] [32]l[108]i[105]f[102]e[101] [32]s[115]o[111]m[109]e[101] [32]c[99]u[117]s[115]t[116]o[111]m[109]s[115] [32]O[79]f[102] [32]d[100]e[101]a[97]r[114] [32]o[111]l[108]d[100] [32]d[100]a[97]y[121]s[115];[59] [32]i[105]t[116] [32]m[109]e[101]a[97]n[110]s[115]:[58]
{782} T[84]h[104]e[101]y[121] [32]w[119]e[101]r[114]e[101] [32]a[97]t[116] [32]S[83]h[104]r[114]o[111]v[118]e[101]-[45]d[100]a[97]y[121] [32]a[97]c[99]c[99]u[117]s[115]t[116]o[111]m[109]e[101]d[100] [32]T[84]o[111] [32]h[104]a[97]v[118]e[101] [32]t[116]h[104]e[101] [32]f[102]a[97]t[116]t[116]e[101]s[115]t[116] [32]R[82]u[117]s[115]s[115]i[105]a[97]n[110] [32]b[98]l[108]i[105]n[110]s[115];[59]
{783} T[84]h[104]e[101]y[121] [32]h[104]a[97]d[100] [32]a[97] [32]f[102]a[97]s[115]t[116]i[105]n[110]g[103] [32]t[116]w[119]i[105]c[99]e[101] [32]a[97] [32]y[121]e[101]a[97]r[114],[44] [32]T[84]h[104]e[101]y[121] [32]l[108]i[105]k[107]e[101]d[100] [32]o[111]f[102] [32]r[114]o[111]u[117]n[110]d[100] [32]s[115]w[119]i[105]n[110]g[103] [32]h[104]i[105]g[103]h[104] [32]g[103]e[101]a[97]r[114],[44]
{784} T[84]h[104]e[101] [32]g[103]u[117]e[101]s[115]s[115]i[105]n[110]g[103] [32]s[115]o[111]n[110]g[103]s[115] [32]a[97]n[110]d[100] [32]r[114]o[111]u[117]n[110]d[100] [32]d[100]a[97]n[110]c[99]e[101],[44] [32]O[79]n[110] [32]a[97]l[108]l[108] [32]W[87]h[104]i[105]t[116]s[115]u[117]n[110]d[100]a[97]y[121]s[115] [32]c[99]a[97]u[117]g[103]h[104]t[116] [32]a[97] [32]c[99]h[104]a[97]n[110]c[99]e[101],[44]
{785} W[87]h[104]i[105]l[108]e[101] [32]p[112]e[101]o[111]p[112]l[108]e[101] [32]y[121]a[97]w[119]n[110] [32]i[105]n[110] [32]c[99]h[104]u[117]r[114]c[99]h[104] [32]a[97]t[116] [32]p[112]r[114]a[97]y[121]e[101]r[114],[44] [32]T[84]o[111] [32]f[102]i[105]n[110]d[100] [32]a[97] [32]b[98]u[117]n[110]c[99]h[104] [32]o[111]f[102] [32]p[112]r[114]a[97]y[121]i[105]n[110]g[103] [32]g[103]r[114]a[97]s[115]s[115]
{786} A[65]n[110]d[100] [32]d[100]r[114]o[111]p[112] [32]s[115]o[111]m[109]e[101] [32]t[116]e[101]a[97]r[114]s[115] [32]t[116]w[119]i[105]c[99]e[101] [32]o[111]r[114] [32]t[116]h[104]r[114]i[105]c[99]e[101];[59] [32]T[84]h[104]e[101]y[121] [32]n[110]e[101]e[101]d[100]e[101]d[100] [32]k[107]v[118]a[97]s[115]s[115] [32]n[110]o[111]t[116] [32]l[108]e[101]s[115]s[115] [32]t[116]h[104]a[97]n[110] [32]a[97]i[105]r[114],[44]
{787} A[65]t[116] [32]t[116]a[97]b[98]l[108]e[101] [32]e[101]a[97]c[99]h[104] [32]o[111]f[102] [32]d[100]e[101]a[97]r[114] [32]g[103]u[117]e[101]s[115]t[116]s[115] [32]H[72]a[97]d[100] [32]c[99]o[111]u[117]r[114]s[115]e[101] [32]a[97]c[99]c[99]o[111]r[114]d[100]i[105]n[110]g[103] [32]t[116]o[111] [32]t[116]h[104]e[101] [32]r[114]a[97]n[110]k[107]s[115].[46]
{788} X[88]X[88]X[88]V[86]I[73]
{789} A[65]n[110]d[100] [32]s[115]o[111] [32]g[103]r[114]e[101]w[119] [32]t[116]h[104]e[101]y[121] [32]o[111]l[108]d[100] [32]b[98]o[111]t[116]h[104].[46]
{790} B[66]u[117]t[116] [32]s[115]o[111]o[111]n[110] [32]f[102]o[111]r[114] [32]h[104]u[117]s[115]b[98]a[97]n[110]d[100],[44] [32]a[97]l[108]l[108] [32]a[97]t[116] [32]o[111]n[110]c[99]e[101],[44]
{791} T[84]h[104]e[101] [32]d[100]o[111]o[111]r[114] [32]o[111]f[102] [32]c[99]o[111]f[102]f[102]i[105]n[110] [32]w[119]a[97]s[115] [32]u[117]n[110]c[99]l[108]o[111]s[115]e[101]d[100]:[58] [32]T[84]o[111] [32]h[104]a[97]v[118]e[101] [32]n[110]e[101]w[119] [32]w[119]r[114]e[101]a[97]t[116]h[104] [32]h[104]e[101] [32]g[103]o[111]t[116] [32]a[97] [32]c[99]h[104]a[97]n[110]c[99]e[101];[59]
{792} H[72]e[101] [32]d[100]i[105]e[101]d[100] [32]a[97]t[116] [32]h[104]o[111]u[117]r[114] [32]o[111]f[102] [32]d[100]i[105]n[110]n[110]e[101]r[114],[44] [32]B[66]e[101]r[114]m[109]o[111]n[110]e[101]d[100] [32]b[98]y[121] [32]h[104]i[105]s[115] [32]n[110]e[101]i[105]g[103]h[104]b[98]o[111]u[117]r[114]s[115] [32]d[100]e[101]a[97]r[114],[44]
{793} B[66]y[121] [32]c[99]h[104]i[105]l[108]d[100]r[114]e[101]n[110] [32]a[97]n[110]d[100] [32]b[98]y[121] [32]l[108]o[111]y[121]a[97]l[108] [32]w[119]i[105]f[102]e[101] [32]W[87]i[105]t[116]h[104] [32]c[99]a[97]n[110]d[100]i[105]d[100] [32]n[110]e[101]v[118]e[101]r[114] [32]s[115]e[101]e[101]n[110] [32]i[105]n[110] [32]l[108]i[105]f[102]e[101].[46]
{794} H[72]e[101] [32]w[119]a[97]s[115] [32]a[97] [32]c[99]o[111]m[109]m[109]o[111]n[110] [32]R[82]u[117]s[115]s[115]i[105]a[97]n[110] [32]b[98]a[97]r[114]i[105]n[110],[44] [32]W[87]a[97]s[115] [32]k[107]i[105]n[110]d[100] [32]a[97]n[110]d[100] [32]g[103]o[111]o[111]d[100];[59] [32]a[97]t[116] [32]h[104]i[105]s[115] [32]r[114]e[101]m[109]a[97]i[105]n[110]s[115]
{795} T[84]h[104]e[101] [32]m[109]o[111]n[110]u[117]m[109]e[101]n[110]t[116] [32]i[105]n[110] [32]w[119]o[111]r[114]d[100]s[115] [32]e[101]x[120]p[112]l[108]a[97]i[105]n[110]s[115] [32]S[83]u[117]b[98]m[109]i[105]s[115]s[115]i[105]v[118]e[101] [32]s[115]i[105]n[110]n[110]e[101]r[114],[44] [32]D[68]i[105]m[109]i[105]t[116]r[114]y[121] [32]L[76]a[97]r[114]i[105]n[110],[44]
{796} T[84]h[104]e[101] [32]b[98]r[114]i[105]g[103]a[97]d[100]i[105]e[101]r[114],[44] [32]a[97] [32]s[115]l[108]a[97]v[118]e[101] [32]o[111]f[102] [32]G[71]o[111]d[100],[44] [32]H[72]a[97]s[115] [32]p[112]e[101]a[97]c[99]e[101] [32]b[98]y[121] [32]h[104]i[105]m[109] [32]f[102]o[111]r[114]e[101]v[118]e[101]r[114] [32]g[103]o[111]t[116].[46]
{797} X[88]X[88]X[88]V[86]I[73]I[73]
{798} A[65]t[116] [32]h[104]i[105]s[115] [32]P[80]e[101]n[110]a[97]t[116]e[101]s[115],[44] [32]q[113]u[117]i[105]t[116]e[101] [32]p[112]e[101]r[114]m[109]i[105]s[115]s[115]i[105]v[118]e[101] [32]V[86]l[108]a[97]d[100]i[105]m[109]i[105]r[114] [32]h[104]o[111]n[110]o[111]u[117]r[114]e[101]d[100] [32]a[97]l[108]l[108],[44] [32]w[119]h[104]o[111] [32]d[100]i[105]e[101]d[100];[59]
{799} A[65]t[116] [32]n[110]e[101]i[105]g[103]h[104]b[98]o[111]u[117]r[114]'[39]s[115] [32]m[109]o[111]n[110]u[117]m[109]e[101]n[110]t[116] [32]s[115]u[117]b[98]m[109]i[105]s[115]s[115]i[105]v[118]e[101] [32]H[72]e[101] [32]d[100]e[101]d[100]i[105]c[99]a[97]t[116]e[101]d[100] [32]h[104]i[105]m[109] [32]a[97] [32]s[115]i[105]g[103]h[104];[59]
{800} H[72]i[105]s[115] [32]h[104]e[101]a[97]r[114]t[116] [32]w[119]a[97]s[115] [32]s[115]a[97]d[100],[44] [32]h[104]i[105]s[115] [32]v[118]o[111]i[105]c[99]e[101] [32]w[119]a[97]s[115] [32]m[109]o[111]u[117]r[114]n[110]f[102]u[117]l[108].[46]
{801} '[39]A[65]h[104],[44] [32]p[112]o[111]o[111]r[114] [32]Y[89]o[111]r[114]i[105]c[99]k[107],[44] [32]s[115]a[97]i[105]d[100] [32]h[104]e[101],[44] [32]j[106]o[111]y[121]f[102]u[117]l[108]
{802} H[72]e[101] [32]k[107]e[101]p[112]t[116] [32]m[109]e[101] [32]o[111]f[102]t[116]e[101]n[110] [32]i[105]n[110] [32]h[104]i[105]s[115] [32]h[104]a[97]n[110]d[100]s[115],[44] [32]W[87]h[104]i[105]l[108]e[101] [32]I[73] [32]c[99]o[111]u[117]l[108]d[100] [32]s[115]h[104]o[111]w[119] [32]m[109]a[97]n[110]y[121] [32]p[112]r[114]a[97]n[110]k[107]s[115]
{803} W[87]i[105]t[116]h[104] [32]m[109]e[101]d[100]a[97]l[108] [32]f[102]o[111]r[114] [32]O[79]c[99]h[104]a[97]k[107]o[111]v[118] [32]p[112]l[108]a[97]y[121]i[105]n[110]g[103],[44] [32]I[73]n[110]t[116]e[101]n[110]d[100]e[101]d[100] [32]O[79]l[108]g[103]a[97] [32]f[102]o[111]r[114] [32]m[109]y[121] [32]w[119]i[105]f[102]e[101]
{804} A[65]n[110]d[100] [32]w[119]o[111]n[110]d[100]e[101]r[114]e[101]d[100]:[58] [32]w[119]o[111]u[117]l[108]d[100] [32]h[104]e[101] [32]b[98]e[101] [32]a[97]l[108]i[105]v[118]e[101]?[63]'[39]
{805} S[83]i[105]n[110]c[99]e[101]r[114]e[101]l[108]y[121],[44] [32]i[105]n[110] [32]g[103]r[114]i[105]e[101]f[102] [32]e[101]m[109]b[98]r[114]a[97]c[99]i[105]n[110]g[103]
{806} H[72]i[105]s[115] [32]h[104]e[101]a[97]r[114]t[116],[44] [32]V[86]l[108]a[97]d[100]i[105]m[109]i[105]r[114] [32]q[113]i[105]c[99]k[107]l[108]y[121] [32]p[112]e[101]n[110]n[110]e[101]d[100] [32]A[65]t[116] [32]t[116]o[111]m[109]b[98] [32]a[97] [32]m[109]a[97]d[100]r[114]i[105]g[103]a[97]l[108] [32]b[98]y[121] [32]h[104]a[97]n[110]d[100].[46]
{807} X[88]X[88]X[88]V[86]I[73]I[73]I[73]
{808} B[66]y[121] [32]w[119]r[114]i[105]t[116]i[105]n[110]g[103] [32]v[118]e[101]r[114]s[115]e[101],[44] [32]t[116]h[104]e[101] [32]d[100]i[105]s[115]m[109]a[97]l[108] [32]m[109]o[111]u[117]r[114]n[110]e[101]r[114] [32]O[79]f[102] [32]p[112]a[97]r[114]e[101]n[110]t[116]s[115],[44] [32]w[119]i[105]t[116]h[104] [32]r[114]u[117]n[110]n[110]i[105]n[110]g[103] [32]e[101]y[121]e[101]s[115],[44]
{809} T[84]h[104]e[101] [32]a[97]s[115]h[104]e[101]s[115] [32]p[112]a[97]t[116]r[114]i[105]a[97]r[114]c[99]h[104]a[97]l[108] [32]h[104]o[111]n[110]o[111]u[117]r[114]e[101]d[100].[46]
{810} A[65]l[108]a[97]s[115]![33] [32]O[79]n[110] [32]f[102]u[117]r[114]r[114]o[111]w[119]s[115] [32]o[111]f[102] [32]l[108]i[105]v[118]e[101]s[115]
{811} N[78]e[101]w[119] [32]g[103]e[101]n[110]e[101]r[114]a[97]t[116]i[105]o[111]n[110]s[115] [32]b[98]y[121] [32]s[115]o[111]m[109]e[101] [32]r[114]e[101]a[97]s[115]o[111]n[110],[44] [32]A[65]t[116] [32]s[115]e[101]c[99]r[114]e[101]t[116] [32]w[119]i[105]l[108]l[108] [32]o[111]f[102] [32]g[103]r[114]e[101]a[97]t[116] [32]p[112]r[114]o[111]v[118]i[105]s[115]i[105]o[111]n[110]
{812} A[65]r[114]i[105]s[115]e[101] [32]a[97]n[110]d[100] [32]r[114]i[105]p[112]e[101]n[110],[44] [32]t[116]h[104]e[101]n[110] [32]w[119]i[105]l[108]l[108] [32]f[102]a[97]l[108]l[108],[44] [32]A[65]n[110]d[100] [32]o[111]t[116]h[104]e[101]r[114]s[115] [32]a[97]f[102]t[116]e[101]r[114] [32]t[116]h[104]e[101]m[109] [32]c[99]o[111]m[109]e[101] [32]a[97]l[108]l[108],[44]
{813} T[84]o[111]-[45]d[100]a[97]y[121] [32]f[102]r[114]i[105]v[118]o[111]l[108]o[111]u[117]s[115] [32]g[103]e[101]n[110]e[101]r[114]a[97]t[116]i[105]o[111]n[110] [32]M[77]a[97]t[116]u[117]r[114]e[101]s[115],[44] [32]s[115]t[116]i[105]r[114]s[115],[44] [32]a[97]l[108]r[114]e[101]a[97]d[100]y[121] [32]t[116]e[101]s[115]t[116]s[115]
{814} G[71]r[114]a[97]n[110]d[100]f[102]a[97]t[116]h[104]e[101]r[114]s[115] [32]t[116]o[111] [32]t[116]h[104]e[101] [32]t[116]o[111]m[109]b[98]s[115] [32]d[100]o[111] [32]p[112]r[114]e[101]s[115]s[115],[44] [32]I[73]t[116] [32]c[99]o[111]m[109]e[101]s[115],[44] [32]t[116]h[104]e[101] [32]t[116]i[105]m[109]e[101] [32]o[111]f[102] [32]e[101]x[120]i[105]t[116]a[97]t[116]i[105]o[111]n[110],[44]
{815} G[71]r[114]a[97]n[110]d[100]c[99]h[104]i[105]l[108]d[100]r[114]e[101]n[110] [32]o[111]n[110]c[99]e[101] [32]u[117]p[112]o[111]n[110] [32]g[103]o[111]o[111]d[100] [32]d[100]a[97]y[121] [32]W[87]i[105]l[108]l[108] [32]p[112]r[114]e[101]s[115]s[115] [32]f[102]r[114]o[111]m[109] [32]w[119]o[111]r[114]l[108]d[100] [32]a[97]l[108]l[108] [32]u[117]s[115] [32]a[97]w[119]a[97]y[121].[46]
{816} X[88]X[88]X[88]I[73]X[88]
{817} M[77]e[101]a[97]n[110]w[119]h[104]i[105]l[108]e[101] [32]i[105]n[110] [32]l[108]i[105]f[102]e[101] [32]y[121]o[111]u[117] [32]t[116]r[114]y[121] [32]t[116]o[111] [32]r[114]e[101]v[118]e[101]l[108],[44] [32]A[65]s[115] [32]m[109]u[117]c[99]h[104] [32]a[97]s[115] [32]I[73] [32]y[121]o[111]u[117] [32]t[116]a[97]k[107]e[101] [32]f[102]o[111]r[114]m[109] [32]i[105]t[116]![33]
{818} I[73] [32]g[103]r[114]a[97]s[115]p[112] [32]i[105]t[116]s[115] [32]v[118]a[97]n[110]i[105]t[116]y[121],[44] [32]a[97]n[110]d[100] [32]n[110]e[101]v[118]e[101]r[114] [32]T[84]o[111]o[111] [32]m[109]u[117]c[99]h[104] [32]I[73] [32]w[119]a[97]s[115] [32]a[97]t[116]t[116]a[97]c[99]h[104]e[101]d[100] [32]t[116]o[111] [32]i[105]t[116];[59]
{819} F[70]o[111]r[114] [32]f[102]a[97]n[110]t[116]o[111]m[109]s[115] [32]I[73] [32]m[109]y[121] [32]e[101]y[121]e[101]l[108]i[105]d[100]s[115] [32]c[99]l[108]o[111]s[115]e[101]d[100];[59] [32]B[66]u[117]t[116] [32]s[115]o[111]m[109]e[101] [32]r[114]e[101]m[109]o[111]t[116]e[101] [32]d[100]e[101]a[97]r[114] [32]h[104]o[111]p[112]e[101]s[115]
{820} S[83]o[111]m[109]e[101]t[116]i[105]m[109]e[101]s[115] [32]a[97]r[114]e[101] [32]t[116]r[114]o[111]u[117]b[98]l[108]i[105]n[110]g[103] [32]w[119]i[105]t[116] [32]a[97]n[110]d[100] [32]h[104]e[101]a[97]r[114]t[116]:[58] [32]W[87]i[105]t[116]h[104]o[111]u[117]t[116] [32]p[112]r[114]i[105]n[110]t[116]i[105]n[110]g[103] [32]p[112]r[114]e[101]t[116]t[116]y[121] [32]m[109]a[97]r[114]k[107]
{821} T[84]o[111] [32]l[108]e[101]a[97]v[118]e[101] [32]t[116]h[104]e[101] [32]w[119]o[111]r[114]l[108]d[100] [32]I[73] [32]w[119]o[111]u[117]l[108]d[100] [32]h[104]e[101] [32]s[115]o[111]r[114]r[114]y[121].[46]
{822} I[73] [32]l[108]i[105]v[118]e[101] [32]a[97]n[110]d[100] [32]w[119]r[114]i[105]t[116]e[101] [32]n[110]o[111]t[116] [32]f[102]o[111]r[114] [32]a[97]p[112]p[112]l[108]a[97]u[117]s[115]e[101],[44]
{823} B[66]u[117]t[116],[44] [32]s[115]e[101]e[101]m[109]s[115] [32]t[116]o[111] [32]m[109]e[101] [32]I[73]'[39]d[100] [32]w[119]i[105]s[115]h[104],[44] [32]o[111]f[102] [32]c[99]o[111]u[117]r[114]s[115]e[101] [32]T[84]o[111] [32]f[102]i[105]l[108]l[108] [32]m[109]y[121] [32]f[102]a[97]t[116]e[101] [32]w[119]i[105]t[116]h[104] [32]k[107]i[105]n[110]d[100] [32]o[111]f[102] [32]g[103]l[108]o[111]r[114]y[121].[46]
{824} I[73]n[110] [32]h[104]o[111]p[112]e[101] [32]t[116]h[104]a[97]t[116] [32]b[98]y[121] [32]f[102]u[117]t[116]u[117]r[114]e[101] [32]f[102]r[114]i[105]e[101]n[110]d[100] [32]O[79]f[102] [32]m[109]e[101] [32]s[115]o[111]m[109]e[101] [32]s[115]o[111]u[117]n[110]d[100] [32]w[119]i[105]l[108]l[108] [32]b[98]e[101] [32]s[115]a[97]i[105]d[100].[46]
{825} X[88]L[76]
{826} T[84]h[104]e[101] [32]h[104]e[101]a[97]r[114]t[116] [32]o[111]f[102] [32]s[115]o[111]m[109]e[101]b[98]o[111]d[100]y[121] [32]h[104]e[101]'[39]l[108]l[108] [32]c[99]h[104]e[101]r[114]i[105]s[115]h[104],[44] [32]A[65]r[114]i[105]d[100],[44] [32]k[107]e[101]p[112]t[116] [32]b[98]y[121] [32]t[116]o[111]u[117]c[99]h[104] [32]o[111]f[102] [32]t[116]r[114]u[117]t[116]h[104]f[102]u[117]l[108] [32]f[102]a[97]t[116]e[101],[44]
{827} P[80]e[101]r[114]h[104]a[97]p[112]s[115],[44] [32]i[105]n[110] [32]L[76]e[101]t[116]h[104]e[101] [32]w[119]o[111]n[110]'[39]t[116] [32]p[112]e[101]r[114]i[105]s[115]h[104] [32]M[77]y[121] [32]v[118]e[101]r[114]s[115]e[101],[44] [32]b[98]y[121] [32]w[119]i[105]t[116] [32]a[97]n[110]d[100] [32]h[104]e[101]a[97]r[114]t[116] [32]w[119]e[101]l[108]l[108] [32]m[109]a[97]d[100]e[101];[59]
{828} P[80]e[101]r[114]h[104]a[97]p[112]s[115],[44] [32]i[105]n[110] [32]f[102]r[114]o[111]n[110]t[116] [32]o[111]f[102] [32]p[112]o[111]r[114]t[116]r[114]a[97]i[105]t[116] [32]f[102]a[97]m[109]o[111]u[117]s[115],[44] [32]T[84]o[111] [32]p[112]e[101]o[111]p[112]l[108]e[101] [32]f[102]u[117]t[116]u[117]r[114]e[101] [32]i[105]g[103]n[110]o[111]r[114]a[97]m[109]o[111]u[117]s[115]
{829} W[87]i[105]l[108]l[108] [32]s[115]h[104]o[111]w[119] [32]m[109]y[121] [32]r[114]e[101]n[110]o[111]w[119]n[110]e[101]d[100] [32]f[102]a[97]c[99]e[101] [32]A[65]n[110]d[100] [32]s[115]a[97]y[121]:[58] [32]'[39]I[73]t[116]'[39]s[115] [32]p[112]o[111]e[101]t[116] [32]o[111]f[102] [32]g[103]r[114]a[97]c[99]e[101]![33]'[39]
{830} A[65]c[99]c[99]e[101]p[112]t[116] [32]y[121]o[111]u[117] [32]a[97]l[108]l[108] [32]m[109]y[121] [32]t[116]h[104]a[97]n[110]k[107]f[102]u[117]l[108] [32]f[102]e[101]e[101]l[108]i[105]n[110]g[103]s[115] [32]A[65]d[100]m[109]i[105]r[114]e[101]r[114] [32]o[111]f[102] [32]p[112]e[101]a[97]c[99]e[101]f[102]u[117]l[108] [32]m[109]u[117]s[115]e[101],[44]
{831} A[65]h[104],[44] [32]y[121]o[111]u[117],[44] [32]w[119]h[104]o[111]s[115]e[101] [32]m[109]e[101]m[109]o[111]r[114]y[121] [32]w[119]i[105]l[108]l[108] [32]f[102]u[117]s[115]e[101] [32]I[73]n[110] [32]v[118]e[101]r[114]s[115]e[101] [32]m[109]y[121] [32]f[102]l[108]y[121]i[105]n[110]g[103] [32]f[102]e[101]e[101]b[98]l[108]e[101] [32]d[100]e[101]a[97]l[108]i[105]n[110]g[103]s[115],[44]
{832} W[87]h[104]o[111]s[115]e[101] [32]g[103]r[114]a[97]t[116]e[101]f[102]u[117]l[108],[44] [32]f[102]e[101]e[101]l[108]i[105]n[110]g[103],[44] [32]t[116]r[114]u[117]t[116]h[104]f[102]u[117]l[108] [32]h[104]a[97]n[110]d[100] [32]W[87]i[105]l[108]l[108] [32]p[112]a[97]t[116] [32]t[116]h[104]e[101] [32]f[102]a[97]m[109]e[101] [32]o[111]f[102] [32]o[111]l[108]d[100] [32]m[109]a[97]n[110]![33]
{833} C[67]H[72]A[65]P[80]T[84]E[69]R[82] [32]T[84]H[72]R[82]E[69]E[69]
{834} F[70]i[105]l[108]l[108]e[101] [32]テ[-61]ゥ[-87]t[116]a[97]i[105]t[116] [32]f[102]i[105]l[108]l[108]e[101],[44] [32]e[101]l[108]l[108]e[101] [32]テ[-61]ゥ[-87]t[116]a[97]i[105]t[116] [32]a[97]m[109]o[111]u[117]r[114]e[101]s[115]e[101].[46] [32]S[83]h[104]e[101] [32]w[119]a[97]s[115] [32]a[97] [32]g[103]i[105]r[114]l[108] [32]S[83]h[104]e[101] [32]w[119]a[97]s[115] [32]i[105]n[110] [32]l[108]o[111]v[118]e[101].[46]
{835} M[77]a[97]l[108]f[102]i[105]l[108]a[97]t[116]r[114]e[101].[46]
{836} I[73]
{837} '[39]W[87]h[104]a[97]t[116] [32]w[119]a[97]y[121]?[63]
{838} Y[89]o[111]u[117] [32]p[112]o[111]e[101]t[116]s[115],[44] [32]a[97]r[114]e[101] [32]q[113]u[117]e[101]e[101]r[114]![33]'[39] [32]-[45]G[71]o[111]o[111]d[100] [32]b[98]y[121]e[101],[44] [32]O[79]n[110]e[101]g[103]i[105]n[110],[44] [32]t[116]i[105]m[109]e[101] [32]h[104]a[97]s[115] [32]g[103]o[111]n[110]e[101].[46]
{839} '[39]I[73] [32]d[100]o[111]n[110]'[39]t[116] [32]h[104]a[97]m[109]p[112]e[101]r[114] [32]y[121]o[111]u[117],[44] [32]b[98]u[117]t[116] [32]d[100]e[101]a[97]r[114],[44] [32]F[70]o[111]r[114] [32]e[101]v[118]e[101]n[110]i[105]n[110]g[103]s[115] [32]w[119]h[104]e[101]r[114]e[101] [32]h[104]a[97]v[118]e[101] [32]y[121]o[111]u[117] [32]g[103]o[111]n[110]e[101]?[63]
{840} -[45]T[84]o[111] [32]L[76]a[97]r[114]i[105]n[110]'[39]s[115] [32]-[45]'[39]O[79]h[104],[44] [32]l[108]o[111]o[111]k[107]s[115] [32]i[105]t[116] [32]s[115]t[116]r[114]a[97]n[110]g[103]e[101]l[108]y[121]:[58] [32]T[84]o[111] [32]k[107]i[105]l[108]l[108] [32]y[121]o[111]u[117]r[114] [32]p[112]r[114]e[101]t[116]t[116]y[121] [32]e[101]v[118]e[101]n[110]i[105]n[110]g[103]s[115] [32]d[100]a[97]i[105]l[108]y[121].[46]
{841} F[70]o[111]r[114]g[103]i[105]v[118]e[101] [32]m[109]e[101],[44] [32]i[105]s[115]n[110]'[39]t[116] [32]i[105]t[116] [32]t[116]o[111]o[111] [32]h[104]a[97]r[114]d[100]?[63]'[39] [32]-[45]F[70]o[111]r[114] [32]m[109]e[101] [32]i[105]t[116]'[39]s[115] [32]n[110]o[111]t[116] [32]-[45] [32]'[39]B[66]u[117]t[116] [32]d[100]e[101]a[97]r[114] [32]b[98]a[97]r[114]d[100],[44]
{842} I[73] [32]d[100]o[111]n[110]'[39]t[116] [32]g[103]r[114]a[97]s[115]p[112] [32]d[100]e[101]s[115]p[112]i[105]t[116]e[101] [32]e[101]n[110]d[100]e[101]a[97]v[118]o[111]u[117]r[114]s[115];[59] [32]Y[89]o[111]u[117] [32]l[108]i[105]s[115]t[116]e[101]n[110] [32]t[116]o[111] [32]([40]i[105]f[102] [32]I[73] [32]a[97]m[109] [32]r[114]i[105]g[103]h[104]t[116]?[63])[41]
{843} T[84]h[104]i[105]s[115] [32]R[82]u[117]s[115]s[115]i[105]a[97]n[110] [32]f[102]a[97]m[109]i[105]l[108]y[121] [32]s[115]e[101]e[101]m[109]s[115] [32]l[108]i[105]g[103]h[104]t[116],[44] [32]T[84]o[111] [32]a[97]l[108]l[108] [32]t[116]h[104]e[101] [32]g[103]u[117]e[101]s[115]t[116]s[115] [32]i[105]t[116]'[39]s[115] [32]a[97]l[108]w[119]a[97]y[121]s[115] [32]z[122]e[101]a[97]l[108]o[111]u[117]s[115],[44]
{844} T[84]h[104]e[101] [32]j[106]a[97]m[109]s[115],[44] [32]e[101]t[116]e[101]r[114]n[110]a[97]l[108] [32]t[116]a[97]l[108]k[107] [32]o[111]f[102] [32]a[97]l[108]l[108]:[58] [32]O[79]f[102] [32]r[114]a[97]i[105]n[110],[44] [32]o[111]f[102] [32]f[102]l[108]a[97]x[120],[44] [32]o[111]f[102] [32]h[104]o[111]r[114]s[115]e[101]s[115]'[39] [32]s[115]t[116]a[97]l[108]l[108].[46]'[39]
{845} I[73]I[73]
{846} -[45]I[73]n[110] [32]t[116]h[104]i[105]s[115] [32]I[73] [32]s[115]e[101]e[101] [32]y[121]e[101]t[116] [32]n[110]o[111] [32]t[116]r[114]o[111]u[117]b[98]l[108]e[101]s[115].[46]
{847} '[39]B[66]u[117]t[116] [32]t[116]r[114]o[111]u[117]b[98]l[108]e[101] [32]i[105]s[115]:[58] [32]t[116]h[104]e[101]y[121] [32]a[97]r[114]e[101] [32]s[115]u[117]c[99]h[104] [32]b[98]o[111]r[114]e[101]s[115]'[39].[46]
{848} -[45]I[73] [32]h[104]a[97]t[116]e[101] [32]y[121]o[111]u[117]r[114] [32]w[119]o[111]r[114]l[108]d[100] [32]o[111]f[102] [32]f[102]a[97]s[115]h[104]i[105]o[111]n[110] [32]m[109]a[97]r[114]b[98]l[108]e[101]s[115],[44] [32]M[77]u[117]c[99]h[104] [32]m[109]o[111]r[114]e[101] [32]I[73] [32]l[108]i[105]k[107]e[101] [32]t[116]h[104]e[101] [32]w[119]o[111]r[114]l[108]d[100] [32]i[105]n[110]d[100]o[111]o[111]r[114]s[115],[44]
{849} A[65]n[110]d[100] [32]t[116]h[104]e[101]r[114]e[101].[46] [32]-[45]
{850} '[39]F[70]o[111]r[114] [32]t[116]h[104]e[101] [32]s[115]a[97]k[107]e[101] [32]o[111]f[102] [32]g[103]o[111]o[111]d[100]n[110]e[101]s[115]s[115],[44] [32]Y[89]o[111]u[117] [32]k[107]e[101]e[101]p[112] [32]t[116]h[104]e[101] [32]e[101]c[99]l[108]o[111]g[103],[44] [32]n[110]o[111]w[119] [32]u[117]s[115]e[101]l[108]e[101]s[115]s[115].[46]
{851} I[73]'[39]m[109] [32]s[115]o[111]r[114]r[114]y[121] [32]t[116]h[104]a[97]t[116] [32]y[121]o[111]u[117] [32]g[103]o[111].[46] [32]w[119]e[101]l[108]l[108],[44] [32]M[77]y[121] [32]d[100]e[101]a[97]r[114] [32]L[76]e[101]n[110]s[115]k[107]y[121],[44] [32]w[119]i[105]l[108]l[108] [32]y[121]o[111]u[117] [32]t[116]e[101]l[108]l[108],[44]
{852} I[73]f[102] [32]t[116]h[104]a[97]t[116] [32]F[70]i[105]l[108]l[108]i[105]d[100]a[97]e[101] [32]y[121]o[111]u[117] [32]c[99]a[97]n[110] [32]s[115]h[104]o[111]w[119],[44] [32]T[84]h[104]e[101] [32]s[115]u[117]b[98]j[106]e[101]c[99]t[116] [32]f[102]o[111]r[114] [32]t[116]h[104]e[101] [32]p[112]e[101]n[110] [32]t[116]o[111] [32]m[109]o[111]u[117]r[114]n[110],[44]
{853} F[70]o[111]r[114] [32]t[116]e[101]a[97]r[114]s[115],[44] [32]r[114]h[104]y[121]m[109]e[101]s[115] [32]a[97]n[110]d[100] [32]s[115]o[111] [32]o[111]n[110]?[63].[46] [32]P[80]r[114]e[101]s[115]e[101]n[110]t[116] [32]m[109]e[101] [32]h[104]e[101]r[114]'[39].[46]
{854} -[45] [32]D[68]'[39]y[121]o[111]u[117] [32]j[106]o[111]k[107]e[101] [32]-[45]
{855} '[39]N[78]o[111]'[39].[46]
{856} -[45]I[73]'[39]m[109] [32]g[103]l[108]a[97]d[100].[46] [32]-[45] [32]'[39]b[98]u[117]t[116] [32]w[119]h[104]e[101]n[110]?[63]'[39] [32]-[45]W[87]e[101]l[108]l[108],[44] [32]n[110]o[111]w[119] [32]j[106]u[117]s[115]t[116],[44] [32]T[84]h[104]e[101]y[121] [32]w[119]i[105]l[108]l[108] [32]r[114]e[101]c[99]e[101]i[105]v[118]e[101] [32]w[119]i[105]t[116]h[104] [32]p[112]l[108]e[101]a[97]s[115]u[117]r[114]e[101] [32]u[117]s[115].[46]
{857} I[73]I[73]I[73]
{858} -[45]L[76]e[101]t[116]'[39]s[115] [32]g[103]o[111].[46]-[45] [32]T[84]h[104]e[101]y[121] [32]w[119]e[101]r[114]e[101] [32]q[113]u[117]i[105]e[101]t[116]l[108]y[121] [32]d[100]r[114]i[105]v[118]e[101]n[110],[44]
{859} A[65]n[110]d[100] [32]g[103]o[111]t[116] [32]t[116]o[111] [32]n[110]e[101]i[105]g[103]h[104]b[98]o[111]u[117]r[114]s[115] [32]i[105]n[110] [32]a[97] [32]w[119]h[104]i[105]l[108]e[101].[46] [32]A[65]t[116] [32]o[111]n[110]c[99]e[101] [32]t[116]h[104]e[101]y[121] [32]h[104]e[101]a[97]r[114]t[116]i[105]l[108]y[121] [32]w[119]e[101]r[114]e[101] [32]g[103]i[105]v[118]e[101]n[110]
{860} A[65]l[108]l[108] [32]s[115]e[101]r[114]v[118]i[105]c[99]e[101]s[115] [32]o[111]f[102] [32]o[111]l[108]d[100] [32]t[116]i[105]m[109]e[101].[46]
{861} I[73]t[116] [32]w[119]a[97]s[115] [32]w[119]e[101]l[108]l[108] [32]k[107]n[110]o[111]w[119]n[110] [32]f[102]r[114]i[105]e[101]n[110]d[100]l[108]y[121] [32]w[119]e[101]l[108]l[108]c[99]o[111]m[109]e[101]:[58]
{862} O[79]n[110] [32]s[115]a[97]u[117]c[99]e[101]r[114]s[115] [32]j[106]a[97]m[109] [32]t[116]h[104]e[101]y[121] [32]g[103]a[97]v[118]e[101],[44] [32]a[97]n[110]d[100] [32]s[115]e[101]l[108]d[100]o[111]m[109] [32]S[83]o[111]m[109]e[101] [32]b[98]e[101]r[114]r[114]y[121] [32]w[119]a[97]t[116]e[101]r[114] [32]i[105]n[110] [32]a[97] [32]j[106]u[117]g[103] [32]P[80]u[117]t[116] [32]o[111]n[110] [32]a[97] [32]t[116]a[97]b[98]l[108]e[101],[44] [32]a[97]n[110]d[100] [32]a[97] [32]c[99]u[117]p[112].[46]
{863} I[73]V[86]
{864} T[84]h[104]e[101] [32]w[119]a[97]y[121] [32]i[105]s[115] [32]s[115]h[104]o[111]r[114]t[116],[44] [32]f[102]r[114]o[111]m[109] [32]d[100]e[101]a[97]r[114] [32]n[110]e[101]i[105]g[103]h[104]b[98]o[111]u[117]r[114] [32]T[84]h[104]e[101]y[121] [32]g[103]o[111] [32]h[104]o[111]m[109]e[101] [32]f[102]a[97]s[115]t[116],[44] [32]a[97]t[116] [32]s[115]p[112]e[101]e[101]d[100];[59]
{865} L[76]e[101]t[116]'[39]s[115] [32]l[108]i[105]s[115]t[116]e[101]n[110],[44] [32]y[121]e[101]t[116] [32]w[119]i[105]t[116]h[104]o[111]u[117]t[116] [32]l[108]a[97]b[98]o[111]u[117]r[114],[44] [32]T[84]o[111] [32]t[116]h[104]e[101]i[105]r[114] [32]t[116]a[97]l[108]k[107]i[105]n[110]g[103],[44] [32]s[115]h[104]o[111]r[114]t[116] [32]i[105]n[110]d[100]e[101]e[101]d[100].[46]
{866} B[66]u[117]t[116] [32]w[119]h[104]y[121],[44] [32]O[79]n[110]e[101]g[103]i[105]n[110],[44] [32]y[121]o[111]u[117] [32]a[97]r[114]e[101] [32]y[121]a[97]w[119]n[110]i[105]n[110]g[103]?[63] [32]-[45]
{867} '[39]M[77]y[121] [32]h[104]a[97]b[98]i[105]t[116],[44].[46].[46]
{868} I[73].[46]'[39] [32]-[45]B[66]u[117]t[116] [32]y[121]o[111]u[117] [32]a[97]r[114]e[101] [32]b[98]o[111]r[114]i[105]n[110]g[103]
{869} M[77]u[117]c[99]h[104] [32]m[109]o[111]r[114]e[101].[46].[46].[46] [32]-[45]
{870} '[39]W[87]e[101]l[108]l[108],[44] [32]n[110]o[111],[44] [32]j[106]u[117]s[115]t[116] [32]t[116]h[104]e[101] [32]s[115]a[97]m[109]e[101].[46].[46].[46]
{871} T[84]h[104]e[101] [32]f[102]i[105]e[101]l[108]d[100] [32]i[105]s[115] [32]d[100]a[97]r[114]k[107] [32]i[105]n[110] [32]p[112]r[114]e[101]t[116]t[116]y[121] [32]g[103]a[97]l[108]e[101].[46].[46].[46]
{872} A[65]n[110]d[100]r[114]y[121]u[117]s[115]h[104]k[107]a[97],[44] [32]q[113]u[117]i[105]c[99]k[107]e[101]r[114] [32]m[109]u[117]s[115]t[116] [32]y[121]o[111]u[117] [32]g[103]o[111]![33]
{873} W[87]h[104]a[97]t[116] [32]f[102]o[111]o[111]l[108]i[105]s[115]h[104],[44] [32]d[100]u[117]m[109]p[112]y[121] [32]i[105]s[115] [32]t[116]h[104]i[105]s[115] [32]p[112]l[108]a[97]c[99]e[101]![33]
{874} Y[89]o[111]u[117] [32]s[115]e[101]e[101],[44] [32]y[121]o[111]u[117]r[114] [32]L[76]a[97]r[114]i[105]n[110]a[97] [32]i[105]s[115] [32]p[112]l[108]a[97]i[105]n[110],[44] [32]B[66]u[117]t[116] [32]v[118]e[101]r[114]y[121] [32]d[100]e[101]a[97]r[114] [32]o[111]l[108]d[100] [32]s[115]o[111]u[117]l[108];[59]
{875} A[65]n[110]d[100] [32]I[73]'[39]m[109] [32]a[97]f[102]r[114]a[97]i[105]d[100]:[58] [32]i[105]n[110] [32]s[115]p[112]i[105]t[116]e[101] [32]o[111]f[102] [32]c[99]h[104]a[97]r[114]m[109] [32]T[84]h[104]a[97]t[116] [32]w[119]a[97]t[116]e[101]r[114] [32]b[98]r[114]i[105]n[110]g[103]s[115] [32]m[109]e[101] [32]m[109]u[117]c[99]h[104] [32]o[111]f[102] [32]h[104]a[97]r[114]m[109].[46].[46].[46]
{876} V[86]
{877} Y[89]o[111]u[117] [32]t[116]e[101]l[108]l[108],[44] [32]o[111]f[102] [32]t[116]h[104]e[101]m[109] [32]w[119]h[104]i[105]c[99]h[104] [32]i[105]s[115] [32]T[84]a[97]t[116]y[121]a[97]n[110]a[97]?[63]'[39] [32]-[45]T[84]h[104]a[97]t[116] [32]g[103]i[105]r[114]l[108],[44] [32]w[119]h[104]i[105]c[99]h[104]'[39]s[115] [32]a[97]l[108]w[119]a[97]y[121]s[115] [32]s[115]o[111] [32]s[115]a[97]d[100];[59]
{878} S[83]h[104]e[101]'[39]s[115] [32]t[116]a[97]c[99]i[105]t[116]u[117]r[114]n[110] [32]l[108]i[105]k[107]e[101] [32]t[116]h[104]a[97]t[116] [32]S[83]w[119]e[101]t[116]l[108]a[97]n[110]a[97],[44].[46].[46] [32]W[87]h[104]e[101]n[110] [32]c[99]a[97]m[109]e[101],[44] [32]a[97]t[116] [32]w[119]i[105]n[110]d[100]o[111]w[119] [32]s[115]h[104]e[101] [32]s[115]a[97]t[116].[46]-[45]
{879} '[39]B[66]u[117]t[116] [32]d[100]o[111] [32]y[121]o[111]u[117] [32]l[108]o[111]v[118]e[101],[44] [32]i[105]n[110]d[100]e[101]e[101]d[100],[44] [32]t[116]h[104]e[101] [32]o[111]t[116]h[104]e[101]r[114]?[63]'[39] [32]-[45]A[65]n[110]d[100] [32]w[119]h[104]a[97]t[116]?[63] [32]-[45]
{880} '[39]B[66]u[117]t[116] [32]I[73]'[39]d[100] [32]p[112]r[114]e[101]f[102]e[101]r[114] [32]a[97]n[110]o[111]t[116]h[104]e[101]r[114],[44]
{881} I[73]f[102] [32]I[73] [32]w[119]e[101]r[114]e[101] [32]p[112]o[111]e[101]t[116] [32]l[108]i[105]k[107]e[101] [32]y[121]o[111]u[117].[46]
{882} O[79]f[102] [32]l[108]i[105]f[102]e[101] [32]h[104]e[101]r[114] [32]f[102]e[101]a[97]t[116]u[117]r[114]e[101]s[115] [32]h[104]a[97]v[118]e[101] [32]b[98]u[117]t[116] [32]f[102]e[101]w[119].[46]
{883} L[76]i[105]k[107]e[101] [32]i[105]n[110] [32]v[118]a[97]n[110] [32]D[68]i[105]c[99]k[107]'[39]s[115] [32]M[77]a[97]d[100]o[111]n[110]n[110]a[97] [32]f[102]i[105]n[110]n[110]e[101]s[115]s[115],[44] [32]H[72]e[101]r[114] [32]f[102]a[97]c[99]e[101] [32]i[105]s[115] [32]r[114]o[111]u[117]n[110]d[100],[44] [32]r[114]e[101]d[100],[44] [32]s[115]h[104]e[101]'[39]s[115] [32]b[98]o[111]o[111]n[110]
{884} A[65]s[115] [32]w[119]e[101]l[108]l[108] [32]a[97]s[115] [32]r[114]u[117]d[100]d[100]y[121] [32]f[102]o[111]o[111]l[108]i[105]s[115]h[104] [32]m[109]o[111]o[111]n[110] [32]A[65]t[116] [32]t[116]h[104]e[101] [32]h[104]o[111]r[114]i[105]z[122]o[111]n[110]'[39]s[115] [32]f[102]o[111]o[111]l[108]i[105]s[115]h[104] [32]b[98]r[114]i[105]g[103]h[104]t[116]n[110]e[101]s[115]s[115]'[39].[46]
{885} V[86]l[108]a[97]d[100]i[105]m[109]i[105]r[114] [32]a[97]n[110]s[115]w[119]e[101]r[114]e[101]d[100] [32]s[115]h[104]o[111]r[114]t[116],[44] [32]w[119]a[97]s[115] [32]d[100]r[114]y[121].[46] [32]T[84]h[104]e[101]n[110] [32]h[104]e[101] [32]w[119]a[97]s[115] [32]m[109]u[117]t[116]e[101],[44] [32]h[104]i[105]s[115] [32]f[102]a[97]c[99]e[101] [32]w[119]a[97]s[115] [32]w[119]r[114]y[121].[46]
{886} V[86]I[73]
{887} M[77]e[101]a[97]n[110]w[119]h[104]i[105]l[108]e[101] [32]O[79]n[110]e[101]g[103]i[105]n[110]'[39]s[115] [32]s[115]t[116]a[97]y[121] [32]a[97]t[116] [32]L[76]a[97]r[114]i[105]n[110]'[39]s[115] [32]W[87]a[97]s[115] [32]e[101]s[115]t[116]i[105]m[109]a[97]t[116]e[101]d[100] [32]l[108]i[105]k[107]e[101] [32]a[97] [32]n[110]e[101]w[119]s[115],[44]
{888} A[65]f[102]f[102]e[101]c[99]t[116]e[101]d[100] [32]n[110]a[97]t[116]i[105]v[118]e[101] [32]R[82]u[117]s[115]s[115]i[105]a[97]n[110] [32]b[98]a[97]n[110]n[110]s[115],[44] [32]A[65]n[110]d[100] [32]a[97]l[108]l[108] [32]t[116]h[104]e[101] [32]n[110]e[101]i[105]g[103]h[104]b[98]o[111]u[117]r[114]s[115] [32]w[119]e[101]r[114]e[101] [32]a[97]m[109]u[117]s[115]e[101]d[100].[46]
{889} T[84]h[104]e[101]y[121] [32]a[97]l[108]l[108] [32]b[98]e[101]g[103]a[97]n[110] [32]t[116]o[111] [32]g[103]u[117]e[101]s[115]s[115] [32]o[111]f[102] [32]r[114]e[101]a[97]s[115]o[111]n[110]s[115],[44] [32]I[73]n[110]v[118]e[101]n[110]t[116]e[101]d[100] [32]s[115]t[116]e[101]a[97]l[108]t[116]h[104]i[105]l[108]y[121] [32]d[100]e[101]c[99]i[105]s[115]i[105]o[111]n[110]s[115],[44]
{890} T[84]h[104]e[101]y[121] [32]j[106]o[111]k[107]e[101]d[100],[44] [32]n[110]o[111]t[116] [32]w[119]i[105]t[116]h[104]o[111]u[117]t[116] [32]s[115]i[105]n[110] [32]A[65]t[116] [32]T[84]a[97]n[110]y[121]a[97]'[39]s[115] [32]s[115]u[117]i[105]t[116]o[111]r[114] [32]m[109]a[97]d[100]e[101] [32]a[97] [32]h[104]i[105]n[110]t[116].[46]
{891} S[83]o[111]m[109]e[101] [32]n[110]e[101]i[105]g[103]h[104]b[98]o[111]u[117]r[114]s[115] [32]s[115]a[97]i[105]d[100] [32]o[111]f[102] [32]t[116]h[104]e[101] [32]i[105]m[109]p[112]r[114]e[101]s[115]s[115]i[105]o[111]n[110] [32]T[84]h[104]a[97]t[116] [32]w[119]e[101]d[100]d[100]i[105]n[110]g[103] [32]h[104]a[97]d[100] [32]s[115]o[111]m[109]e[101] [32]p[112]o[111]i[105]n[110]t[116]e[101]d[100] [32]t[116]i[105]m[109]e[101],[44]
{892} B[66]u[117]t[116] [32]w[119]a[97]s[115] [32]d[100]e[101]l[108]a[97]y[121]e[101]d[100] [32]f[102]o[111]r[114] [32]s[115]h[104]o[111]r[114]t[116] [32]a[97] [32]w[119]h[104]i[105]l[108]e[101] [32]A[65]s[115] [32]t[116]h[104]e[101]y[121] [32]h[104]a[97]d[100] [32]n[110]o[111] [32]r[114]i[105]n[110]g[103]s[115] [32]o[111]f[102] [32]f[102]a[97]s[115]h[104]i[105]o[111]n[110].[46]
{893} A[65]b[98]o[111]u[117]t[116] [32]L[76]e[101]n[110]s[115]k[107]y[121]'[39]s[115] [32]w[119]e[101]d[100]d[100]i[105]n[110]g[103] [32]a[97]l[108]l[108] [32]W[87]e[101]r[114]e[101] [32]s[115]u[117]r[114]e[101] [32]n[110]e[101]i[105]g[103]h[104]b[98]o[111]u[117]r[114]s[115] [32]o[111]n[110]c[99]e[101] [32]f[102]o[111]r[114] [32]a[97]l[108]l[108].[46]
{894} V[86]I[73]I[73]
{895} T[84]a[97]t[116]y[121]a[97]n[110]a[97] [32]h[104]e[101]a[97]r[114]d[100] [32]w[119]i[105]t[116]h[104] [32]i[105]n[110]d[100]i[105]g[103]n[110]a[97]t[116]i[105]o[111]n[110] [32]A[65]l[108]l[108] [32]t[116]h[104]o[111]s[115]e[101] [32]g[103]o[111]s[115]s[115]i[105]p[112]s[115],[44] [32]b[98]u[117]t[116] [32]s[115]h[104]e[101] [32]h[104]a[97]d[100]
{896} W[87]i[105]t[116]h[104] [32]u[117]n[110]e[101]x[120]p[112]e[101]c[99]t[116]e[101]d[100] [32]c[99]o[111]n[110]s[115]o[111]l[108]a[97]t[116]i[105]o[111]n[110] [32]U[85]n[110]w[119]i[105]t[116]t[116]i[105]n[110]g[103]l[108]y[121] [32]s[115]o[111]m[109]e[101] [32]t[116]h[104]o[111]u[117]g[103]h[104]t[116] [32]o[111]f[102] [32]t[116]h[104]a[97]t[116]:[58]
{897} S[83]o[111]m[109]e[101] [32]s[115]t[116]r[114]i[105]n[110]g[103] [32]o[111]f[102] [32]l[108]o[111]v[118]e[101] [32]i[105]n[110] [32]h[104]e[101]r[114] [32]a[97]p[112]p[112]e[101]a[97]r[114]e[101]d[100],[44] [32]I[73]n[110] [32]l[108]o[111]v[118]e[101] [32]a[97]f[102]f[102]a[97]i[105]r[114]s[115] [32]s[115]h[104]e[101] [32]w[119]a[97]s[115] [32]g[103]e[101]a[97]r[114]e[101]d[100]
{898} A[65]s[115] [32]w[119]e[101]l[108]l[108] [32]a[97]s[115] [32]s[115]e[101]e[101]d[100]s[115] [32]i[105]n[110] [32]v[118]i[105]t[116]a[97]l[108] [32]s[115]t[116]r[114]i[105]f[102]e[101] [32]I[73]n[110] [32]e[101]a[97]r[114]t[116]h[104] [32]b[98]y[121] [32]s[115]p[112]r[114]i[105]n[110]g[103] [32]a[97]r[114]e[101] [32]g[103]i[105]v[118]e[101]n[110] [32]l[108]i[105]f[102]e[101].[46]
{899} L[76]o[111]n[110]g[103] [32]s[115]i[105]n[110]c[99]e[101] [32]t[116]h[104]e[101] [32]g[103]i[105]r[114]l[108] [32]b[98]e[101]g[103]a[97]n[110] [32]t[116]o[111] [32]l[108]a[97]n[110]g[103]u[117]i[105]s[115]h[104],[44] [32]C[67]o[111]u[117]l[108]d[100] [32]b[98]u[117]r[114]n[110] [32]i[105]n[110] [32]b[98]l[108]i[105]s[115]s[115],[44] [32]i[105]n[110] [32]d[100]i[105]s[115]m[109]a[97]l[108] [32]m[109]o[111]o[111]d[100],[44]
{900} H[72]e[101]r[114] [32]s[115]p[112]i[105]r[114]i[105]t[116] [32]l[108]o[111]n[110]g[103]e[101]d[100] [32]f[102]o[111]r[114] [32]f[102]a[97]t[116]a[97]l[108] [32]f[102]o[111]o[111]d[100];[59] [32]L[76]o[111]n[110]g[103] [32]s[115]i[105]n[110]c[99]e[101] [32]u[117]n[110]b[98]e[101]a[97]r[114]a[97]b[98]l[108]e[101] [32]a[97]n[110]g[103]u[117]i[105]s[115]h[104]
{901} M[77]a[97]d[100]e[101] [32]a[97]l[108]l[108] [32]y[121]o[111]u[117]n[110]g[103] [32]h[104]e[101]a[97]r[114]t[116] [32]t[116]o[111] [32]p[112]i[105]n[110]e[101] [32]a[97]w[119]a[97]y[121],[44] [32]F[70]o[111]r[114] [32]s[115]o[111]m[109]e[101]o[111]n[110]e[101] [32]d[100]i[105]d[100] [32]h[104]e[101]r[114] [32]s[115]o[111]u[117]l[108] [32]w[119]a[97]i[105]t[116].[46]
{902} V[86]I[73]I[73]I[73]
{903} S[83]h[104]e[101] [32]w[119]a[97]i[105]t[116]e[101]d[100],[44] [32]l[108]o[111]o[111]k[107]e[101]d[100] [32]a[97]n[110]d[100] [32]a[97]n[110]y[121]h[104]o[111]w[119] [32]S[83]h[104]e[101] [32]s[115]a[97]i[105]d[100]:[58] [32]w[119]e[101]l[108]l[108],[44] [32]y[121]e[101]s[115]![33] [32]i[105]t[116] [32]m[109]u[117]s[115]t[116] [32]b[98]e[101] [32]H[72]e[101]
{904} A[65]l[108]a[97]s[115]![33] [32]a[97]l[108]l[108] [32]d[100]a[97]y[121]s[115] [32]a[97]n[110]d[100] [32]n[110]i[105]g[103]h[104]t[116]s[115] [32]a[97]r[114]e[101] [32]n[110]o[111]w[119] [32]O[79]n[110]e[101] [32]l[108]o[111]n[110]g[103] [32]a[97]n[110]d[100] [32]l[108]o[111]n[110]e[101] [32]d[100]r[114]e[101]a[97]m[109] [32]i[105]n[110] [32]h[104]e[101]a[97]t[116],[44]
{905} A[65]l[108]l[108]'[39]s[115] [32]f[102]i[105]l[108]l[108]e[101]d[100] [32]b[98]y[121] [32]H[72]i[105]m[109],[44] [32]b[98]y[121] [32]i[105]m[109]a[97]g[103]e[101] [32]d[100]e[101]a[97]r[114],[44] [32]A[65]n[110]d[100] [32]m[109]a[97]g[103]i[105]c[99] [32]f[102]o[111]r[114]c[99]e[101],[44] [32]t[116]h[104]a[97]t[116] [32]s[115]h[104]e[101] [32]c[99]a[97]n[110] [32]h[104]e[101]a[97]r[114],[44]
{906} Y[89]e[101]t[116] [32]s[115]p[112]e[101]a[97]k[107]s[115] [32]o[111]f[102] [32]H[72]i[105]m[109];[59] [32]a[97]n[110]d[100] [32]s[115]h[104]e[101] [32]a[97]v[118]o[111]i[105]d[100]s[115] [32]T[84]h[104]e[101] [32]s[115]o[111]u[117]n[110]d[100]s[115] [32]o[111]f[102] [32]t[116]h[104]e[101] [32]t[116]e[101]n[110]d[100]e[101]r[114] [32]v[118]o[111]i[105]c[99]e[101]
{907} A[65]n[110]d[100] [32]g[103]a[97]z[122]e[101] [32]a[97]t[116]t[116]e[101]n[110]t[116]i[105]v[118]e[101] [32]o[111]f[102] [32]h[104]e[101]r[114] [32]m[109]a[97]i[105]d[100]e[101]n[110]s[115];[59] [32]S[83]h[104]e[101] [32]d[100]a[97]i[105]l[108]y[121] [32]g[103]r[114]e[101]a[97]t[116]l[108]y[121] [32]i[105]s[115] [32]d[100]e[101]p[112]r[114]e[101]s[115]s[115]e[101]d[100];[59]
{908} S[83]h[104]e[101] [32]d[100]o[111]e[101]s[115]n[110]'[39]t[116] [32]l[108]i[105]s[115]t[116]e[101]n[110] [32]t[116]o[111] [32]t[116]h[104]e[101] [32]g[103]u[117]e[101]s[115]t[116]s[115] [32]A[65]n[110]d[100] [32]c[99]u[117]r[114]s[115]e[101]s[115] [32]t[116]h[104]e[101]i[105]r[114] [32]i[105]d[100]l[108]e[101] [32]l[108]e[101]i[105]s[115]u[117]r[114]e[101]s[115],[44]
{909} U[85]n[110]w[119]a[97]i[105]t[116]e[101]d[100] [32]c[99]o[111]m[109]i[105]n[110]g[103] [32]a[97]n[110]y[121] [32]d[100]a[97]y[121] [32]A[65]n[110]d[100] [32]e[101]a[97]c[99]h[104] [32]d[100]e[101]l[108]a[97]y[121] [32]t[116]o[111] [32]g[103]e[101]t[116] [32]a[97]w[119]a[97]y[121].[46]
{910} I[73]X[88]
{911} A[65]n[110]d[100] [32]-[45]n[110]o[111]w[119] [32]s[115]h[104]e[101] [32]w[119]i[105]t[116]h[104] [32]g[103]r[114]e[101]a[97]t[116] [32]a[97]t[116]t[116]e[101]n[110]t[116]i[105]o[111]n[110] [32]V[86]o[111]l[108]u[117]p[112]t[116]u[117]o[111]u[117]s[115] [32]n[110]o[111]v[118]e[101]l[108]s[115] [32]q[113]u[117]i[105]c[99]k[107]l[108]y[121] [32]r[114]e[101]a[97]d[100]s[115],[44]
{912} W[87]i[105]t[116]h[104] [32]w[119]h[104]a[97]t[116] [32]a[97] [32]l[108]i[105]v[118]e[101]l[108]y[121] [32]f[102]a[97]s[115]c[99]i[105]n[110]a[97]t[116]i[105]o[111]n[110] [32]D[68]e[101]l[108]u[117]d[100]e[101]s[115] [32]h[104]e[101]r[114]s[115]e[101]l[108]f[102] [32]w[119]i[105]t[116]h[104] [32]a[97]l[108]l[108] [32]d[100]e[101]c[99]e[101]i[105]t[116]s[115]![33]
{913} B[66]y[121] [32]h[104]a[97]p[112]p[112]y[121] [32]f[102]o[111]r[114]c[99]e[101] [32]o[111]f[102] [32]o[111]w[119]n[110] [32]d[100]r[114]e[101]a[97]m[109]i[105]n[110]g[103]s[115] [32]S[83]h[104]e[101] [32]b[98]r[114]i[105]n[110]g[103]s[115] [32]t[116]o[111] [32]l[108]i[105]f[102]e[101] [32]a[97]l[108]l[108] [32]n[110]o[111]v[118]e[101]l[108]'[39]s[115] [32]b[98]e[101]i[105]n[110]g[103]s[115],[44]
{914} L[76]i[105]k[107]e[101] [32]J[74]u[117]l[108]i[105]e[101]'[39]s[115] [32]l[108]o[111]v[118]e[101]r[114]s[115],[44] [32]g[103]r[114]a[97]n[110]d[100] [32]W[87]o[111]l[108]l[108]m[109]a[97]r[114],[44] [32]M[77]a[97]l[108]e[101]k[107]-[45]A[65]d[100]e[101]l[108] [32]a[97]n[110]d[100] [32]D[68]e[101] [32]L[76]i[105]n[110]a[97]r[114],[44]
{915} A[65]n[110]d[100] [32]V[86]e[101]r[114]t[116]c[99]r[114],[44] [32]t[116]h[104]a[97]t[116] [32]r[114]e[101]b[98]e[101]l[108]l[108]i[105]o[111]u[117]s[115] [32]m[109]a[97]r[114]t[116]y[121]r[114],[44] [32]U[85]n[110]i[105]m[109]i[105]t[116]a[97]b[98]l[108]e[101] [32]G[71]r[114]a[97]n[110]d[100]i[105]s[115]o[111]n[110]
{916} W[87]i[105]t[116]h[104] [32]w[119]h[104]o[111]m[109] [32]w[119]e[101] [32]a[97]l[108]l[108] [32]t[116]o[111] [32]s[115]l[108]e[101]e[101]p[112] [32]h[104]a[97]d[100] [32]g[103]o[111]n[110]e[101];[59] [32]-[45] [32]F[70]o[111]r[114] [32]t[116]e[101]n[110]d[100]e[101]r[114] [32]g[103]i[105]r[114]l[108],[44] [32]t[116]h[104]e[101] [32]d[100]r[114]e[101]a[97]m[109]e[101]r[114] [32]h[104]e[101]a[97]r[114]t[116]y[121],[44]
{917} I[73]n[110] [32]s[115]i[105]n[110]g[103]l[108]e[101] [32]i[105]m[109]a[97]g[103]e[101] [32]t[116]h[104]e[101]y[121] [32]c[99]o[111]n[110]f[102]u[117]s[115]e[101]d[100],[44] [32]I[73]n[110] [32]o[111]n[110]e[101] [32]O[79]n[110]e[101]g[103]i[105]n[110] [32]a[97]l[108]l[108] [32]w[119]e[101]r[114]e[101] [32]f[102]u[117]s[115]e[101]d[100].[46]
{918} X[88]
{919} S[83]h[104]e[101] [32]f[102]e[101]e[101]l[108]s[115] [32]h[104]e[101]r[114]s[115]e[101]l[108]f[102] [32]l[108]i[105]k[107]e[101] [32]a[97]l[108]l[108] [32]h[104]e[101]r[114] [32]d[100]e[101]a[97]r[114] [32]O[79]f[102] [32]b[98]o[111]o[111]k[107]s[115] [32]b[98]e[101]l[108]o[111]v[118]e[101]d[100] [32]m[109]a[97]i[105]n[110] [32]p[112]e[101]r[114]s[115]o[111]n[110]s[115] [32]f[102]e[101]e[101]l[108]:[58]
{920} C[67]l[108]a[97]r[114]i[105]s[115]s[115]a[97],[44] [32]J[74]u[117]l[108]i[105]e[101] [32]a[97]n[110]d[100] [32]D[68]e[101]l[108]p[112]h[104]i[105]n[110]a[97];[59] [32]T[84]a[97]t[116]y[121]a[97]n[110]a[97] [32]i[105]n[110] [32]t[116]h[104]e[101] [32]f[102]o[111]r[114]e[101]s[115]t[116]'[39]s[115] [32]s[115]t[116]i[105]l[108]l[108]
{921} W[87]i[105]t[116]h[104] [32]d[100]a[97]n[110]g[103]e[101]r[114]o[111]u[117]s[115] [32]b[98]o[111]o[111]k[107] [32]a[97]l[108]o[111]n[110]e[101]'[39]s[115] [32]h[104]i[105]k[107]i[105]n[110]g[103],[44] [32]I[73]n[110] [32]i[105]t[116] [32]r[114]e[101]v[118]e[101]a[97]l[108]s[115] [32]s[115]h[104]e[101] [32]s[115]o[111] [32]s[115]t[116]r[114]i[105]k[107]i[105]n[110]g[103]
{922} H[72]e[101]r[114] [32]s[115]e[101]c[99]r[114]e[101]t[116] [32]h[104]e[101]a[97]t[116],[44] [32]o[111]f[102] [32]w[119]h[104]i[105]c[99]h[104] [32]s[115]h[104]e[101] [32]d[100]r[114]e[101]a[97]m[109]t[116],[44] [32]W[87]h[104]o[111]s[115]e[101] [32]p[112]l[108]e[101]n[110]i[105]t[116]u[117]d[100]e[101] [32]i[105]h[104] [32]h[104]e[101]a[97]r[114]t[116] [32]s[115]h[104]e[101] [32]f[102]e[101]l[108]t[116].[46]
{923} S[83]h[104]e[101] [32]s[115]i[105]g[103]h[104]s[115],[44] [32]a[97]s[115]s[115]u[117]m[109]i[105]n[110]g[103] [32]a[97]s[115] [32]h[104]e[101]r[114] [32]r[114]e[101]a[97]l[108] [32]D[68]e[101]l[108]i[105]g[103]h[104]t[116]s[115] [32]o[111]f[102] [32]o[111]t[116]h[104]e[101]r[114]s[115] [32]a[97]n[110]d[100] [32]t[116]h[104]e[101] [32]g[103]r[114]i[105]e[101]f[102]s[115];[59]
{924} E[69]a[97]c[99]h[104] [32]d[100]a[97]y[121] [32]s[115]h[104]e[101] [32]w[119]h[104]i[105]s[115]p[112]e[101]r[114]s[115] [32]o[111]w[119]n[110] [32]m[109]y[121]t[116]h[104]s[115] [32]O[79]f[102] [32]l[108]e[101]t[116]t[116]e[101]r[114] [32]t[116]o[111] [32]h[104]e[101]r[114] [32]i[105]m[109]a[97]g[103]e[101] [32]d[100]e[101]a[97]r[114].[46]
{925} B[66]u[117]t[116] [32]h[104]e[101]r[114]o[111],[44] [32]I[73]'[39]m[109] [32]n[110]o[111]t[116] [32]w[119]r[114]o[111]n[110]g[103],[44] [32]C[67]o[111]u[117]l[108]d[100] [32]n[110]e[101]v[118]e[101]r[114] [32]b[98]e[101] [32]l[108]i[105]k[107]e[101] [32]G[71]r[114]a[97]n[110]d[100]i[105]s[115]o[111]n[110].[46]
{926} X[88]I[73]
{927} H[72]i[105]s[115] [32]s[115]t[116]y[121]l[108]e[101] [32]t[116]o[111] [32]p[112]o[111]m[109]p[112]o[111]u[117]s[115] [32]t[116]u[117]n[110]e[101] [32]r[114]e[101]r[114]v[118]e[101]r[114]s[115]i[105]n[110]g[103] [32]A[65]n[110] [32]a[97]r[114]d[100]e[101]n[110]t[116] [32]a[97]u[117]t[116]h[104]o[111]r[114] [32]t[116]r[114]i[105]e[101]d[100] [32]s[115]o[111]m[109]e[101]t[116]i[105]m[109]e[101]s[115]
{928} T[84]o[111] [32]s[115]h[104]o[111]w[119] [32]h[104]i[105]s[115] [32]b[98]e[101]l[108]o[111]v[118]e[101]d[100] [32]m[109]a[97]i[105]n[110] [32]p[112]e[101]r[114]s[115]o[111]n[110] [32]A[65]s[115] [32]p[112]e[101]r[114]f[102]e[101]c[99]t[116] [32]o[111]n[110]e[101] [32]f[102]o[111]r[114] [32]a[97]l[108]l[108] [32]t[116]h[104]e[101] [32]t[116]i[105]m[109]e[101]s[115],[44]
{929} A[65]n[110]d[100] [32]g[103]a[97]v[118]e[101] [32]t[116]h[104]i[105]s[115] [32]p[112]e[101]r[114]s[115]o[111]n[110] [32]a[97]l[108]l[108] [32]t[116]h[104]e[101] [32]b[98]e[101]a[97]u[117]t[116]y[121],[44] [32]A[65]n[110]d[100] [32]m[109]a[97]d[100]e[101] [32]h[104]i[105]m[109] [32]w[119]r[114]o[111]n[110]g[103]l[108]y[121] [32]p[112]e[101]r[114]s[115]e[101]c[99]u[117]t[116]e[101]d[100];[59]
{930} W[87]i[105]t[116]h[104] [32]t[116]e[101]n[110]d[100]e[101]r[114] [32]s[115]o[111]u[117]l[108],[44] [32]c[99]l[108]e[101]a[97]r[114] [32]s[115]e[101]n[110]s[115]e[101] [32]H[72]i[105]m[109] [32]g[103]a[97]v[118]e[101] [32]a[97]t[116]t[116]r[114]a[97]c[99]t[116]i[105]v[118]e[101] [32]h[104]a[97]n[110]d[100]s[115]o[111]m[109]e[101] [32]f[102]a[97]c[99]e[101],[44]
{931} A[65]n[110]d[100] [32]h[104]e[101]a[97]t[116]e[101]d[100] [32]b[98]y[121] [32]t[116]h[104]e[101] [32]p[112]u[117]r[114]e[101] [32]p[112]a[97]s[115]s[115]i[105]o[111]n[110] [32]T[84]h[104]i[105]s[115] [32]a[97]g[103]i[105]t[116]a[97]t[116]e[101]d[100] [32]p[112]e[101]r[114]s[115]o[111]n[110] [32]b[98]a[97]d[100]e[101]
{932} H[72]i[105]s[115] [32]w[119]i[105]s[115]h[104] [32]t[116]o[111] [32]s[115]a[97]c[99]r[114]i[105]f[102]i[105]c[99]e[101] [32]h[104]i[105]s[115] [32]f[102]a[97]t[116]e[101];[59] [32]B[66]u[117]t[116] [32]f[102]o[111]r[114] [32]t[116]h[104]e[101] [32]e[101]n[110]d[100] [32]([40]t[116]o[111] [32]m[109]a[97]k[107]e[101] [32]i[105]m[109]p[112]r[114]e[101]s[115]s[115]i[105]o[111]n[110])[41]
{933} W[87]a[97]s[115] [32]a[97]l[108]w[119]a[97]y[121]s[115] [32]p[112]u[117]n[110]i[105]s[115]h[104]e[101]d[100] [32]w[119]i[105]c[99]k[107]e[101]d[100] [32]v[118]i[105]c[99]e[101],[44] [32]A[65]n[110]d[100] [32]g[103]o[111]o[111]d[100] [32]w[119]a[97]s[115] [32]g[103]i[105]v[118]e[101]n[110] [32]g[103]a[97]r[114]l[108]a[97]n[110]d[100]s[115] [32]t[116]w[119]i[105]c[99]e[101].[46]
{934} X[88]I[73]I[73]
{935} I[73]n[110] [32]h[104]a[97]z[122]e[101] [32]a[97]r[114]e[101] [32]n[110]o[111]w[119] [32]m[109]i[105]n[110]d[100]s[115] [32]o[111]f[102] [32]p[112]e[101]o[111]p[112]l[108]e[101]:[58] [32]T[84]h[104]e[101] [32]m[109]o[111]r[114]a[97]l[108] [32]t[116]h[104]e[101]m[109] [32]t[116]o[111] [32]s[115]l[108]e[101]e[101]p[112] [32]j[106]u[117]s[115]t[116] [32]m[109]a[97]k[107]e[101]s[115];[59]
{936} T[84]h[104]e[101] [32]v[118]i[105]c[99]e[101],[44] [32]t[116]h[104]a[97]t[116]'[39]s[115] [32]g[103]e[101]n[110]t[116]l[108]e[101] [32]b[98]u[117]t[116] [32]n[110]o[111]t[116] [32]f[102]e[101]e[101]b[98]l[108]e[101],[44] [32]I[73]n[110] [32]n[110]o[111]v[118]e[101]l[108]s[115] [32]n[110]o[111]w[119] [32]c[99]e[101]l[108]e[101]b[98]r[114]a[97]t[116]e[101]s[115].[46]
{937} O[79]f[102] [32]B[66]r[114]i[105]t[116]i[105]s[115]h[104] [32]m[109]u[117]s[115]e[101] [32]s[115]o[111]m[109]e[101] [32]o[111]l[108]d[100] [32]f[102]a[97]b[98]l[108]e[101]s[115] [32]H[72]e[101]r[114] [32]d[100]r[114]e[101]a[97]m[109]s[115] [32]d[100]i[105]s[115]t[116]u[117]r[114]b[98],[44] [32]a[97]n[110]d[100] [32]i[105]t[116] [32]e[101]n[110]a[97]b[98]l[108]e[101]s[115]
{938} A[65]s[115] [32]i[105]d[100]o[111]l[108]s[115] [32]n[110]o[111]w[119] [32]t[116]o[111] [32]h[104]a[97]v[118]e[101] [32]g[103]o[111]t[116] [32]O[79]r[114] [32]V[86]a[97]m[109]p[112]i[105]r[114]e[101],[44] [32]w[119]h[104]o[111]'[39]s[115] [32]l[108]o[111]s[115]t[116] [32]i[105]n[110] [32]t[116]h[104]o[111]u[117]g[103]h[104]t[116],[44]
{939} O[79]r[114] [32]v[118]a[97]g[103]r[114]a[97]n[110]t[116] [32]M[77]e[101]l[108]m[109]o[111]t[116]h[104],[44] [32]s[115]u[117]c[99]h[104] [32]d[100]i[105]s[115]t[116]r[114]e[101]s[115]s[115]f[102]u[117]l[108],[44] [32]O[79]r[114] [32]C[67]o[111]r[114]s[115]a[97]i[105]r[114],[44] [32]o[111]r[114] [32]E[69]t[116]e[101]r[114]n[110]a[97]l[108] [32]J[74]e[101]w[119],[44]
{940} O[79]r[114] [32]S[83]b[98]o[111]g[103]a[97]r[114],[44] [32]m[109]y[121]t[116]h[104]i[105]c[99]a[97]l[108] [32]a[97] [32]f[102]e[101]w[119].[46]
{941} L[76]o[111]r[114]d[100] [32]B[66]y[121]r[114]o[111]n[110] [32]w[119]i[105]t[116]h[104] [32]h[104]i[105]s[115] [32]w[119]h[104]i[105]m[109] [32]s[115]u[117]c[99]c[99]e[101]s[115]s[115]f[102]u[117]l[108] [32]E[69]n[110]v[118]e[101]l[108]o[111]p[112]e[101]d[100] [32]f[102]u[117]s[115]s[115]y[121] [32]e[101]g[103]o[111]i[105]s[115]m[109] [32]I[73]n[110] [32]h[104]o[111]p[112]e[101]l[108]e[101]s[115]s[115] [32]r[114]o[111]m[109]a[97]n[110]t[116]i[105]c[99]i[105]s[115]m[109].[46]
{942} X[88]I[73]I[73]I[73]
{943} B[66]u[117]t[116] [32]d[100]e[101]a[97]r[114] [32]f[102]r[114]i[105]e[101]n[110]d[100]s[115],[44] [32]i[105]t[116] [32]a[97]l[108]l[108] [32]i[105]s[115] [32]u[117]s[115]e[101]l[108]e[101]s[115]s[115]:[58] [32]I[73]f[102] [32]I[73] [32]i[105]n[110] [32]f[102]u[117]t[116]u[117]r[114]e[101] [32]w[119]o[111]n[110]'[39]t[116] [32]b[98]e[101]
{944} A[65] [32]p[112]o[111]e[101]t[116] [32]b[98]y[121] [32]w[119]i[105]l[108]l[108] [32]o[111]f[102] [32]g[103]o[111]o[111]d[100]n[110]e[101]s[115]s[115],[44] [32]N[78]e[101]w[119] [32]d[100]e[101]v[118]i[105]l[108] [32]t[116]h[104]e[101]n[110] [32]w[119]i[105]l[108]l[108] [32]e[101]n[110]t[116]e[101]r[114] [32]m[109]e[101];[59]
{945} I[73]n[110] [32]s[115]p[112]i[105]t[116]e[101] [32]o[111]f[102] [32]F[70]o[111]e[101]b[98]u[117]s[115] [32]w[119]a[97]r[114]n[110]i[105]n[110]g[103] [32]n[110]o[111]t[116]e[101]s[115] [32]M[77]y[121]s[115]e[101]l[108]f[102] [32]I[73]'[39]l[108]l[108] [32]h[104]u[117]m[109]b[98]l[108]e[101] [32]t[116]o[111] [32]t[116]h[104]e[101] [32]p[112]r[114]o[111]s[115]e[101],[44] [32]W[87]h[104]e[101]n[110] [32]n[110]o[111]v[118]e[101]l[108]s[115] [32]i[105]n[110] [32]t[116]h[104]e[101] [32]o[111]l[108]d[100] [32]w[119]a[97]y[121]s[115]
{946} W[87]i[105]l[108]l[108] [32]t[116]a[97]k[107]e[101] [32]t[116]h[104]e[101] [32]t[116]w[119]i[105]l[108]i[105]g[103]h[104]t[116] [32]o[111]f[102] [32]m[109]y[121] [32]d[100]a[97]y[121]s[115].[46]
{947} N[78]o[111]t[116] [32]s[115]e[101]c[99]r[114]e[101]t[116] [32]t[116]o[111]r[114]t[116]u[117]r[114]e[101]s[115] [32]o[111]f[102] [32]t[116]h[104]e[101] [32]e[101]v[118]i[105]l[108] [32]W[87]o[111]u[117]l[108]d[100] [32]I[73] [32]i[105]n[110] [32]p[112]r[114]o[111]s[115]e[101] [32]r[114]e[101]p[112]r[114]e[101]s[115]e[101]n[110]t[116],[44]
{948} B[66]u[117]t[116] [32]s[115]i[105]m[109]p[112]l[108]y[121] [32]I[73] [32]t[116]o[111] [32]y[121]o[111]u[117] [32]w[119]i[105]l[108]l[108] [32]s[115]e[101]n[110]d[100] [32]T[84]h[104]e[101] [32]l[108]e[101]g[103]e[101]n[110]d[100]s[115] [32]o[111]f[102] [32]t[116]h[104]e[101] [32]R[82]u[117]s[115]s[115]i[105]a[97]n[110] [32]r[114]e[101]a[97]l[108]
{949} P[80]a[97]s[115]t[116] [32]c[99]l[108]a[97]n[110]s[115];[59] [32]t[116]h[104]e[101] [32]c[99]h[104]a[97]r[114]m[109]i[105]n[110]g[103] [32]d[100]r[114]e[101]a[97]m[109]s[115] [32]o[111]f[102] [32]l[108]o[111]v[118]e[101],[44] [32]A[65]n[110]t[116]i[105]q[113]u[117]e[101] [32]m[109]o[111]r[114]a[97]l[108]i[105]t[116]i[105]e[101]s[115] [32]b[98]e[101]l[108]o[111]v[118]e[101]d[100].[46]
{950} X[88]I[73]V[86]
{951} I[73]n[110] [32]t[116]h[104]e[101]m[109] [32]I[73]'[39]l[108]l[108] [32]w[119]r[114]i[105]t[116]e[101] [32]o[111]f[102] [32]s[115]i[105]m[109]p[112]l[108]e[101] [32]s[115]p[112]e[101]e[101]c[99]h[104]e[101]s[115] [32]O[79]f[102] [32]d[100]a[97]d[100],[44] [32]o[111]f[102] [32]u[117]n[110]c[99]l[108]e[101],[44] [32]o[111]l[108]d[100] [32]m[109]a[97]n[110]:[58]
{952} O[79]f[102] [32]b[98]o[111]l[108]d[100] [32]c[99]h[104]i[105]l[108]d[100]r[114]e[101]n[110]'[39]s[115] [32]s[115]e[101]c[99]r[114]e[101]t[116] [32]m[109]e[101]e[101]t[116]i[105]n[110]g[103]s[115] [32]T[84]h[104]a[97]t[116] [32]n[110]e[101]a[97]r[114] [32]l[108]i[105]m[109]e[101] [32]a[97]t[116] [32]b[98]r[114]o[111]o[111]k[107] [32]b[98]e[101]g[103]a[97]n[110].[46]
{953} O[79]f[102] [32]p[112]a[97]r[114]t[116]i[105]n[110]g[103]s[115],[44] [32]j[106]e[101]a[97]l[108]o[111]u[117]s[115] [32]i[105]n[110]d[100]i[105]g[103]n[110]a[97]t[116]i[105]o[111]n[110],[44] [32]O[79]f[102] [32]t[116]e[101]a[97]r[114]s[115] [32]o[111]f[102] [32]c[99]o[111]n[110]c[99]i[105]l[108]i[105]a[97]t[116]i[105]o[111]n[110];[59]
{954} A[65]g[103]a[97]i[105]n[110] [32]o[111]f[102] [32]s[115]c[99]a[97]n[110]d[100]a[97]l[108]s[115],[44] [32]a[97]n[110]d[100] [32]a[97]t[116] [32]l[108]a[97]s[115]t[116] [32]T[84]o[111] [32]a[97]l[108]t[116]a[97]r[114] [32]I[73] [32]s[115]h[104]a[97]l[108]l[108] [32]l[108]e[101]a[97]d[100] [32]t[116]h[104]e[101]m[109] [32]f[102]a[97]s[115]t[116],[44]
{955} A[65]n[110]d[100] [32]I[73]'[39]l[108]l[108] [32]r[114]e[101]m[109]i[105]n[110]d[100] [32]t[116]h[104]e[101] [32]s[115]p[112]e[101]e[101]c[99]h[104] [32]o[111]f[102] [32]p[112]a[97]s[115]s[115]i[105]o[111]n[110],[44] [32]T[84]h[104]e[101] [32]w[119]o[111]r[114]d[100]s[115] [32]o[111]f[102] [32]l[108]o[111]n[110]g[103]i[105]n[110]g[103],[44] [32]w[119]i[105]s[115]t[116]f[102]u[117]l[108] [32]l[108]o[111]v[118]e[101]
{956} T[84]h[104]a[97]t[116] [32]o[111]n[110] [32]t[116]h[104]e[101] [32]d[100]a[97]y[121]s[115] [32]I[73] [32]m[109]e[101]a[97]n[110]t[116] [32]a[97]b[98]o[111]v[118]e[101],[44] [32]A[65]t[116] [32]f[102]e[101]e[101]t[116] [32]o[111]f[102] [32]l[108]a[97]d[100]i[105]e[101]s[115] [32]f[102]o[111]x[120] [32]e[101]x[120]p[112]r[114]e[101]s[115]s[115]i[105]o[111]n[110]
{957} O[79]f[102] [32]f[102]e[101]e[101]l[108]i[105]n[110]g[103]s[115] [32]q[113]u[117]i[105]c[99]k[107]l[108]y[121] [32]c[99]a[97]m[109]e[101] [32]t[116]o[111] [32]m[109]i[105]n[110]d[100],[44] [32]B[66]u[117]t[116] [32]n[110]o[111]w[119] [32]w[119]e[101]a[97]k[107]l[108]y[121] [32]l[108]a[97]g[103] [32]b[98]e[101]h[104]i[105]n[110]d[100].[46]
{958} X[88]V[86]
{959} T[84]a[97]t[116]y[121]a[97]n[110]a[97],[44] [32]a[97]h[104],[44] [32]T[84]a[97]t[116]y[121]a[97]n[110]a[97] [32]d[100]e[101]a[97]r[114]![33]
{960} W[87]i[105]t[116]h[104] [32]y[121]o[111]u[117] [32]I[73] [32]n[110]o[111]w[119] [32]t[116]e[101]a[97]r[114]s[115] [32]s[115]h[104]e[101]d[100];[59]
{961} O[79]f[102] [32]t[116]y[121]r[114]a[97]n[110]t[116] [32]y[121]o[111]u[117] [32]d[100]i[105]d[100]n[110]'[39]t[116] [32]f[102]e[101]a[97]r[114],[44] [32]B[66]u[117]t[116] [32]n[110]o[111]w[119] [32]h[104]e[101] [32]y[121]o[111]u[117]r[114] [32]f[102]a[97]t[116]e[101] [32]h[104]a[97]s[115] [32]h[104]a[97]d[100].[46]
{962} Y[89]o[111]u[117]'[39]l[108]l[108] [32]p[112]e[101]r[114]i[105]s[115]h[104],[44] [32]b[98]u[117]t[116] [32]b[98]e[101]f[102]o[111]r[114]e[101] [32]y[121]o[111]u[117] [32]g[103]o[111],[44] [32]Y[89]o[111]u[117] [32]t[116]r[114]y[121] [32]i[105]n[110] [32]d[100]a[97]z[122]z[122]l[108]i[105]n[110]g[103] [32]p[112]r[114]e[101]t[116]t[116]y[121] [32]h[104]o[111]p[112]e[101]
{963} S[83]o[111]m[109]e[101] [32]d[100]a[97]r[114]k[107]l[108]i[105]n[110]g[103] [32]b[98]l[108]e[101]s[115]s[115]i[105]n[110]g[103] [32]t[116]o[111] [32]i[105]n[110]v[118]i[105]t[116]e[101] [32]T[84]o[111] [32]k[107]n[110]o[111]w[119] [32]b[98]e[101]t[116]t[116]e[101]r[114] [32]b[98]l[108]i[105]s[115]s[115] [32]o[111]f[102] [32]l[108]i[105]f[102]e[101]
{964} A[65]n[110]d[100] [32]m[109]a[97]g[103]i[105]c[99] [32]p[112]o[111]i[105]s[115]o[111]n[110] [32]o[111]f[102] [32]i[105]t[116]s[115] [32]i[105]t[116]c[99]h[104]e[101]s[115];[59] [32]Y[89]o[111]u[117] [32]a[97]r[114]e[101] [32]p[112]u[117]r[114]s[115]u[117]e[101]d[100] [32]b[98]y[121] [32]h[104]a[97]p[112]p[112]y[121] [32]d[100]r[114]e[101]a[97]m[109],[44]
{965} A[65]t[116] [32]a[97]n[110]y[121] [32]p[112]l[108]a[97]c[99]e[101] [32]y[121]o[111]u[117] [32]f[102]a[97]n[110]c[99]y[121] [32]h[104]i[105]m[109],[44] [32]T[84]h[104]e[101] [32]r[114]e[101]f[102]u[117]g[103]e[101] [32]f[102]o[111]r[114] [32]t[116]h[104]e[101] [32]h[104]a[97]p[112]p[112]y[121] [32]w[119]i[105]s[115]h[104]e[101]s[115];[59]
{966} A[65]t[116] [32]a[97]n[110]y[121] [32]p[112]l[108]a[97]c[99]e[101] [32]i[105]n[110] [32]f[102]r[114]o[111]n[110]t[116] [32]o[111]f[102] [32]y[121]o[111]u[117] [32]Y[89]o[111]u[117]r[114] [32]f[102]a[97]t[116]a[97]l[108] [32]t[116]e[101]m[109]p[112]t[116]e[101]r[114] [32]w[119]a[97]i[105]t[116]s[115] [32]f[102]o[111]r[114] [32]y[121]o[111]u[117].[46]
{967} X[88]V[86]I[73]
{968} I[73]n[110] [32]g[103]r[114]i[105]e[101]f[102] [32]o[111]f[102] [32]l[108]o[111]v[118]e[101] [32]T[84]a[97]t[116]y[121]a[97]n[110]a[97] [32]g[103]o[111]e[101]s[115] [32]T[84]o[111] [32]t[116]h[104]e[101]i[105]r[114] [32]g[103]a[97]r[114]d[100]e[101]n[110],[44] [32]s[115]h[104]e[101] [32]i[105]s[115] [32]s[115]a[97]d[100];[59]
{969} B[66]u[117]t[116] [32]s[115]u[117]d[100]d[100]e[101]n[110]l[108]y[121] [32]h[104]e[101]r[114] [32]e[101]y[121]e[101]l[108]i[105]d[100]s[115] [32]c[99]l[108]o[111]s[115]e[101],[44] [32]S[83]h[104]e[101] [32]h[104]a[97]s[115]i[105]t[116]a[97]t[116]e[101]s[115] [32]t[116]o[111] [32]m[109]a[97]k[107]e[101] [32]a[97] [32]s[115]t[116]e[101]p[112].[46].[46],[44]
{970} H[72]e[101]r[114] [32]c[99]h[104]e[101]s[115]t[116] [32]i[105]s[115] [32]h[104]i[105]g[103]h[104],[44] [32]h[104]e[101]r[114] [32]c[99]h[104]e[101]e[101]k[107]s[115] [32]a[97]r[114]e[101] [32]c[99]o[111]v[118]e[101]r[114]e[101]d[100] [32]B[66]y[121] [32]i[105]n[110]s[115]t[116]a[97]n[110]t[116] [32]f[102]l[108]a[97]m[109]e[101],[44] [32]t[116]h[104]e[101]y[121] [32]q[113]u[117]i[105]c[99]k[107]l[108]y[121] [32]f[102]l[108]o[111]w[119]e[101]r[114]e[101]d[100],[44]
{971} T[84]h[104]e[101] [32]b[98]r[114]e[101]a[97]t[116]h[104] [32]i[105]s[115] [32]f[102]a[97]d[100]i[105]n[110]g[103] [32]i[105]n[110] [32]h[104]e[101]r[114] [32]l[108]i[105]p[112]s[115],[44] [32]S[83]h[104]e[101] [32]h[104]e[101]a[97]r[114]d[100] [32]s[115]o[111]m[109]e[101] [32]n[110]o[111]i[105]s[115]e[101],[44] [32]h[104]e[101]r[114] [32]e[101]y[121]e[101]s[115] [32]d[100]i[105]d[100] [32]g[103]l[108]i[105]m[109]p[112]s[115]e[101].[46].[46].[46]
{972} T[84]h[104]e[101] [32]n[110]i[105]g[103]h[104]t[116] [32]t[116]h[104]e[101]n[110] [32]c[99]o[111]m[109]e[101]s[115],[44] [32]t[116]h[104]e[101] [32]m[109]o[111]o[111]n[110] [32]i[105]s[115] [32]m[109]o[111]o[111]v[118]i[105]n[110]g[103] [32]A[65]r[114]o[111]u[117]n[110]d[100] [32]d[100]i[105]s[115]t[116]a[97]n[110]t[116] [32]p[112]a[97]r[114]t[116]s[115] [32]o[111]f[102] [32]s[115]k[107]y[121];[59]
{973} A[65] [32]n[110]i[105]g[103]h[104]t[116]i[105]n[110]g[103]a[97]l[108]e[101] [32]i[105]n[110] [32]h[104]a[97]z[122]e[101] [32]o[111]f[102] [32]n[110]i[105]g[103]h[104]t[116] [32]H[72]i[105]s[115] [32]l[108]o[111]u[117]d[100] [32]m[109]e[101]l[108]o[111]d[100]i[105]e[101]s[115] [32]i[105]s[115] [32]t[116]u[117]n[110]i[105]n[110]g[103].[46]
{974} I[73]n[110] [32]d[100]a[97]r[114]k[107] [32]m[109]y[121] [32]T[84]a[97]n[110]y[121]a[97]'[39]s[115] [32]q[113]u[117]i[105]t[116]e[101] [32]u[117]p[112]s[115]e[101]t[116] [32]W[87]i[105]t[116]h[104] [32]n[110]u[117]r[114]s[115]e[101] [32]i[105]n[110] [32]w[119]h[104]i[105]s[115]p[112]e[101]r[114] [32]h[104]a[97]s[115] [32]a[97] [32]c[99]h[104]a[97]t[116]:[58]
{975} X[88]V[86]I[73]I[73]
{976} '[39].[46].[46].[46]c[99]a[97]n[110]'[39]t[116] [32]s[115]l[108]e[101]e[101]p[112],[44] [32]i[105]t[116]'[39]s[115] [32]s[115]t[116]u[117]f[102]f[102]y[121],[44] [32]y[121]o[111]u[117] [32]u[117]n[110]c[99]l[108]o[111]s[115]e[101] [32]T[84]h[104]e[101] [32]w[119]i[105]n[110]d[100]o[111]w[119] [32]a[97]n[110]d[100] [32]s[115]i[105]t[116] [32]b[98]e[101]s[115]i[105]d[100]e[101].[46].[46].[46]'[39]
{977} -[45]B[66]u[117]t[116] [32]w[119]h[104]a[97]t[116] [32]i[105]s[115] [32]i[105]t[116] [32]-[45]
{978} '[39]Y[89]o[111]u[117] [32]t[116]e[101]l[108]l[108] [32]o[111]f[102] [32]t[116]h[104]o[111]s[115]e[101] [32]Y[89]o[111]u[117]r[114] [32]o[111]l[108]d[100] [32]t[116]i[105]m[109]e[101]s[115].[46].[46].[46] [32]I[73]'[39]v[118]e[101] [32]b[98]o[111]r[114]i[105]n[110]g[103] [32]t[116]i[105]d[100]e[101].[46].[46]'[39]
{979} -[45]B[66]u[117]t[116] [32]w[119]h[104]a[97]t[116] [32]a[97]b[98]o[111]u[117]t[116]?[63]
{980} I[73] [32]h[104]a[97]d[100] [32]h[104]a[97]p[112]p[112]e[101]n[110]e[101]d[100] [32]T[84]o[111] [32]k[107]n[110]o[111]w[119] [32]m[109]a[97]n[110]y[121] [32]o[111]l[108]d[100] [32]l[108]e[101]g[103]e[101]n[110]d[100]s[115],[44]
{981} A[65] [32]l[108]o[111]t[116] [32]o[111]f[102] [32]s[115]t[116]o[111]r[114]i[105]e[101]s[115] [32]w[119]i[105]t[116]h[104] [32]t[116]h[104]e[101] [32]w[119]h[104]i[105]r[114]l[108]s[115],[44] [32]W[87]i[105]t[116]h[104] [32]w[119]i[105]c[99]k[107]e[101]d[100] [32]g[103]h[104]o[111]s[115]t[116]s[115] [32]a[97]n[110]d[100] [32]t[116]h[104]e[101] [32]g[103]i[105]r[114]l[108]s[115].[46].[46].[46]
{982} M[77]y[121] [32]m[109]e[101]m[109]o[111]r[114]y[121] [32]i[105]s[115] [32]d[100]a[97]r[114]k[107].[46].[46],[44] [32]I[73]'[39]m[109] [32]g[103]r[114]a[97]n[110]n[110]y[121].[46].[46].[46] [32]A[65]n[110]d[100] [32]m[109]u[117]c[99]h[104] [32]f[102]o[111]r[114]g[103]o[111]t[116].[46].[46].[46] [32]o[111]f[102] [32]l[108]i[105]f[102]e[101] [32]t[116]h[104]e[101] [32]l[108]i[105]n[110]e[101]
{983} I[73]s[115] [32]d[100]r[114]a[97]w[119]n[110],[44] [32]i[105]n[110] [32]t[116]u[117]r[114]n[110] [32]I[73]'[39]v[118]e[101] [32]b[98]a[97]d[100] [32]n[110]a[97]y[121] [32]t[116]i[105]m[109]e[101].[46]
{984} M[77]y[121] [32]p[112]o[111]o[111]r[114] [32]m[109]i[105]n[110]d[100].[46].[46].[46]
{985} -[45] [32]Y[89]o[111]u[117] [32]t[116]e[101]l[108]l[108] [32]m[109]e[101],[44] [32]n[110]a[97]n[110]n[110]y[121],[44]
{986} A[65]b[98]o[111]u[117]t[116] [32]g[103]i[105]r[114]l[108]s[115],[44] [32]y[121]o[111]u[117] [32]m[109]e[101]a[97]n[110]t[116] [32]a[97]b[98]o[111]v[118]e[101],[44] [32]A[65]n[110]d[100] [32]h[104]o[111]w[119] [32]d[100]i[105]d[100] [32]y[121]o[111]u[117] [32]f[102]a[97]l[108]l[108] [32]i[105]n[110] [32]l[108]o[111]v[118]e[101]?[63]
{987} X[88]V[86]I[73]I[73]I[73]
{988} -[45]A[65]h[104],[44] [32]d[100]e[101]a[97]r[114] [32]m[109]y[121]![33] [32]i[105]n[110] [32]m[109]y[121] [32]t[116]e[101]e[101]n[110]a[97]g[103]e[101]r[114] [32]W[87]e[101] [32]h[104]e[101]a[97]r[114]d[100] [32]y[121]e[101]t[116] [32]n[110]o[111]t[116]h[104]i[105]n[110]g[103] [32]o[111]f[102] [32]t[116]h[104]e[101] [32]l[108]o[111]v[118]e[101],[44]
{989} O[79]r[114] [32]o[111]t[116]h[104]e[101]r[114]w[119]i[105]s[115]e[101] [32]I[73]'[39]d[100] [32]b[98]e[101] [32]w[119]i[105]t[116]h[104] [32]r[114]a[97]g[103]e[101]s[115] [32]B[66]y[121] [32]a[97]l[108]l[108] [32]m[109]y[121] [32]k[107]i[105]n[110] [32]p[112]u[117]r[114]s[115]u[117]e[101]d[100] [32]f[102]o[111]r[114] [32]l[108]o[111]v[118]e[101].[46]-[45]
{990} '[39]B[66]u[117]t[116] [32]h[104]o[111]w[119] [32]d[100]i[105]d[100] [32]y[121]o[111]u[117] [32]m[109]a[97]r[114]r[114]y[121],[44] [32]n[110]a[97]n[110]n[110]y[121]?[63]'[39] [32]-[45]I[73]t[116] [32]w[119]a[97]s[115] [32]b[98]y[121] [32]w[119]i[105]s[115]h[104] [32]o[111]f[102] [32]G[71]o[111]d[100].[46]
{991} M[77]y[121] [32]V[86]a[97]n[110]n[110]y[121] [32]W[87]a[97]s[115] [32]y[121]o[111]u[117]n[110]g[103]e[101]r[114],[44] [32]t[116]h[104]a[97]n[110] [32]m[109]y[121]s[115]e[101]l[108]f[102] [32]I[73] [32]m[109]e[101]a[97]n[110],[44] [32]A[65]n[110]d[100] [32]I[73] [32]w[119]a[97]s[115],[44] [32]d[100]e[101]a[97]r[114],[44] [32]y[121]e[101]t[116] [32]t[116]h[104]i[105]r[114]t[116]e[101]e[101]n[110].[46]
{992} F[70]o[111]r[114] [32]w[119]e[101]e[101]k[107]s[115] [32]m[109]a[97]t[116]c[99]h[104]m[109]a[97]k[107]e[101]r[114] [32]w[119]a[97]s[115] [32]t[116]h[104]e[101]n[110] [32]c[99]o[111]m[109]i[105]n[110]g[103] [32]T[84]o[111] [32]a[97]l[108]l[108] [32]m[109]y[121] [32]k[107]i[105]n[110],[44] [32]a[97]n[110]d[100] [32]d[100]u[117]e[101] [32]t[116]o[111] [32]t[116]h[104]a[97]t[116]
{993} M[77]y[121] [32]f[102]a[97]t[116]h[104]e[101]r[114] [32]g[103]a[97]v[118]e[101] [32]c[99]o[111]n[110]s[115]e[101]n[110]t[116] [32]t[116]o[111] [32]w[119]e[101]d[100].[46]
{994} I[73]n[110] [32]f[102]e[101]a[97]r[114] [32]I[73] [32]w[119]a[97]s[115] [32]c[99]r[114]y[121]i[105]n[110]g[103],[44] [32]d[100]a[97]r[114]l[108]i[105]n[110]g[103],[44]
{995} I[73]n[110] [32]w[119]e[101]e[101]p[112] [32]m[109]y[121] [32]p[112]l[108]a[97]i[105]t[116] [32]w[119]a[97]s[115] [32]t[116]h[104]e[101]n[110] [32]u[117]n[110]d[100]i[105]d[100],[44] [32]W[87]i[105]t[116]h[104] [32]s[115]o[111]n[110]g[103]s[115] [32]t[116]o[111] [32]a[97]l[108]t[116]a[97]r[114] [32]u[117]s[115] [32]c[99]o[111]u[117]l[108]d[100] [32]l[108]e[101]a[97]d[100].[46]
{996} X[88]I[73]X[88]
{997} A[65]n[110]d[100] [32]I[73]'[39]m[109] [32]i[105]n[110] [32]f[102]a[97]m[109]i[105]l[108]y[121] [32]u[117]n[110]k[107]n[110]o[111]w[119]n[110].[46].[46].[46]
{998} B[66]u[117]t[116] [32]a[97]r[114]e[101] [32]y[121]o[111]u[117] [32]l[108]i[105]s[115]t[116]e[101]n[110]i[105]n[110]g[103] [32]y[121]e[101]t[116] [32]t[116]o[111] [32]m[109]e[101]?[63]
{999} '[39]W[87]e[101]l[108]l[108].[46].[46].[46] [32]I[73],[44] [32]m[109]y[121] [32]n[110]a[97]n[110]n[110]y[121].[46] [32]d[100]o[111]n[110]'[39]t[116] [32]k[107]n[110]o[111]w[119].[46].[46].[46] [32]F[70]o[111]r[114] [32]l[108]o[111]v[118]e[101] [32]I[73]'[39]m[109] [32]l[108]o[111]n[110]g[103]i[105]n[110]g[103],[44] [32]d[100]e[101]a[97]r[114] [32]m[109]e[101]![33]