-
Notifications
You must be signed in to change notification settings - Fork 0
/
en.txt
1000 lines (1000 loc) · 4.88 KB
/
en.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
_the
the_
and_
_and
ing_
_to_
_of_
_you
her_
you_
_it_
hat_
_was
_he_
_her
his_
was_
_in_
d_th
_tha
_she
ed_t
she_
_my_
e_th
he_s
that
n_th
_his
t_th
ith_
ed_a
ther
_thi
_wit
with
ere_
_for
ould
_me_
out_
n_t_
he_w
_on_
e_wa
ted_
ked_
thin
d_to
ght_
s_th
ight
e_an
ng_t
for_
uld_
ed_h
_not
on_t
d_he
_but
_is_
all_
e_to
but_
here
one_
_we_
_had
hing
_at_
s_an
tion
aid_
nd_t
he_c
had_
ed_i
f_th
_sai
red_
said
ave_
led_
_him
ion_
not_
ver_
to_t
ent_
of_t
o_th
e_i_
ned_
d_an
hen_
d_i_
our_
e_he
him_
r_th
t_i_
_out
_be_
in_t
_cou
this
like
now_
ter_
_hav
_i_w
nd_s
_lik
ike_
_wha
er_t
_all
what
_int
ough
ng_a
have
t_to
e_of
hey_
_fro
sed_
ever
t_wa
he_t
t_he
e_co
they
ers_
he_h
t_of
nd_i
_as_
d_hi
he_d
some
er_a
_up_
ill_
_whe
ack_
_sho
t_an
_som
_con
e_a_
ore_
e_ha
othe
_did
hed_
are_
d_in
ed_o
_wou
king
_com
_mar
nce_
he_b
lly_
he_p
e_sh
ed_m
woul
ake_
ace_
ting
e_in
er_s
_eve
_rea
een_
ound
rom_
from
_loo
_so_
s_a_
he_l
e_yo
g_th
ome_
nto_
own_
_abo
e_sa
look
over
_hea
ust_
ped_
t_s_
er_h
it_w
use_
_wor
_i_d
y_th
_if_
_kno
_thr
_no_
s_of
he_f
ood_
_sta
as_a
d_a_
ard_
into
were
r_an
nd_h
abou
bout
coul
ally
at_t
_i_m
know
s_he
_do_
ook_
i_wa
your
_a_s
yes_
n_an
way_
ded_
_han
ant_
dn_t
und_
_are
ugh_
ed_b
d_it
ng_i
back
ead_
nd_a
_wer
ess_
s_to
atio
_bac
hand
he_r
n_he
d_be
e_be
he_m
at_i
it_s
e_st
e_re
g_to
ine_
_wan
ind_
in_a
ut_t
_one
just
_i_s
_pro
s_in
s_i_
h_th
want
_or_
to_h
t_it
to_s
_gra
ell_
_ove
_car
_jus
_see
ut_i
d_no
e_wh
ng_h
_an_
ive_
ble_
ment
n_a_
when
at_s
time
er_i
me_t
_don
_fin
e_wi
ed_w
_i_h
e_we
ed_s
_eye
_can
e_ca
very
ide_
t_yo
_i_c
_any
ate_
re_t
en_t
ame_
_a_l
ered
es_a
d_sh
_too
them
nd_w
lled
to_m
e_ma
ain_
s_no
ime_
n_i_
_whi
_wil
t_in
e_wo
ling
l_th
_sto
at_h
can_
re_a
ice_
he_a
ring
y_an
er_w
hem_
t_be
_by_
ary_
old_
d_me
me_a
then
thro
re_i
t_a_
_hel
_tim
_who
or_a
ning
roun
e_it
ding
pped
e_do
i_m_
man_
_man
ng_s
_bre
e_no
of_h
_mor
will
roug
_off
thou
t_sh
to_b
i_ha
ll_t
m_th
_get
_tho
d_my
head
nds_
ast_
don_
_now
d_on
d_yo
down
s_we
tly_
self
ery_
_cha
ng_o
nt_t
_hou
righ
side
d_of
ught
as_t
d_at
nd_o
_rog
me_i
ied_
_a_c
_re_
r_he
nder
est_
_dow
elf_
th_a
e_fo
he_g
gan_
_fac
to_a
e_s_
ure_
e_di
eyes
re_w
_a_f
ve_t
ong_
_str
did_
t_ha
e_so
ven_
oked
or_t
_bee
_per
ear_
_ask
at_w
ence
ooke
_pla
uch_
_mad
as_s
hink
real
ke_a
der_
re_s
t_me
_lea
ed_f
even
get_
e_li
d_wi
arti
how_
ogan
more
tle_
ved_
ons_
er_b
on_a
_i_t
s_ha
_a_p
_pre
roga
y_he
ched
nd_m
at_m
oing
ttle
an_s
didn
e_is
idn_
nd_c
d_fo
gain
been
e_lo
es_t
it_i
is_h
ssed
_i_l
y_i_
hous
ity_
o_be
e_on
e_se
_min
ink_
t_hi
er_m
fore
an_a
_lit
ng_w
of_a
ng_m
s_wh
he_o
y_ha
_aga
agai
in_h
ove_
er_f
nted
s_sh
_fee
en_i
d_ha
at_a
inte
_awa
_how
hrou
face
e_ho
e_hi
s_on
ut_o
n_to
_our
r_a_
turn
_us_
able
mart
e_mo
ely_
is_a
ose_
rtin
_a_b
e_bu
ile_
long
n_hi
er_o
ous_
st_t
ly_a
_bec
nger
is_s
s_be
th_t
ad_t
_dis
ies_
_exp
ade_
cked
ions
omet
than
_aro
ance
arou
nd_p
he_e
new_
d_ou
mary
ause
unde
of_m
an_t
r_to
_wal
d_ma
e_me
ouse
any_
e_ro
sn_t
ying
rned
_rig
y_to
call
is_t
ple_
r_i_
d_so
heir
on_h
_a_m
nts_
nd_f
ou_r
n_my
thei
eir_
who_
hard
_clo
tin_
tter
made
ress
es_i
d_wh
efor
off_
to_g
_nee
t_ma
_nev
_cal
en_a
nter
n_in
nly_
litt
nd_l
reat
houg
in_s
ke_t
_a_t
aske
ged_
t_on
e_tr
ld_h
_bri
appe
ated
d_up
_ll_
as_i
u_re
d_co
ed_u
med_
_goo
sked
es_o
is_i
om_t
read
ve_a
_a_h
ittl
t_wh
_sha
o_yo
nd_b
shou
_bef
_mak
_oth
air_
befo
g_an
_tak
oor_
s_co
_par
goin
ly_t
need
_goi
e_pa
ng_f
s_wi
he_n
_fel
eep_
smil
_smi
good
caus
e_ba
_tur
ly_s
d_st
e_al
ost_
urne
_fir
_sti
wher
_two
bed_
e_ar
ger_
n_sh
two_
d_li
en_s
he_i
ngs_
noth
se_t
_ve_
h_a_
beca
ite_
o_he
s_al
sion
_sou
_tra
ad_a
on_i
is_w
an_i
e_fi
_gol
_und
gold
it_a
id_i
le_t
love
to_d
ands
ange
eed_
s_ar
w_th
_go_
es_w
houl
rs_a
_bro
_har
_lov
e_ne
meth
room
s_so
t_no
mile
my_h
neve
nd_d
s_it
comp
work
ou_t
ethi
ut_a
_lon
i_do
d_we
g_he
ut_h
_jak
jake
ou_w
th_h
_arm
e_pr
ll_o
m_an
come
see_
t_wi
_tal
_got
_i_a
e_la
sing
y_sh
_shi
cent
ays_
d_do
shed
ng_b
en_h
er_c
s_ma
take
_res
_sur
d_wa
e_go
t_so
e_as
leas
_col
ings
ward
_let
ythi
art_
er_l
_bla
away
r_ha
ars_
on_s
race
t_co
_way
er_e
ture
_a_w
_i_k
ced_
t_is
is_f
age_
ecau
elt_
ou_a
t_my
ened
les_
ce_t
ness
ving
he_k
oom_
se_i
_bet
nd_r
to_c
f_he
got_
re_h
_stu
s_li
i_co
tell
th_s
end_
atch
feel
low_
ow_t
stan
ligh
n_sa
too_
it_t
_a_d
_tru
smit
ce_a
ld_b
oice
s_yo
cont
t_we
door
ly_i
pres
r_sh
_pri
_say
t_li
_a_g
olds
on_o
ses_
star
t_wo
a_li
each
mith
st_a
_doo
eat_
late
ow_i
_ope
ante
_tel
eet_
_pul
augh
let_
open
its_
_wat
ll_a
t_al
t_do
dsmi
e_de
e_le
hair
ldsm
ll_b
lose
make
ree_
ried
_muc
e_gr
hear
_mom
_roo
gh_t
much
y_in
felt
h_an
t_fo
_ins
g_in
ious
l_of
most
_des
ical
rst_
went
is_m
n_of
s_fo
_chi
r_in
d_al
e_su
s_st
s_fa
_ver
_voi
ase_
llow
s_go
voic
ot_t
in_m
pull
eing
_sec
ce_i
o_hi
of_s
_lif
iste
_its
k_th
till
ce_w
ed_d
me_s
n_yo
nd_g
stil
_put
ders
es_s
tche
took
wed_
came
g_a_
k_an
n_it
ry_s
_mea
_why
bren
char
han_
why_
a_lo
eopl
ll_i
me_w
ople
peop
walk
_peo
cal_
clos
f_hi
i_sa
inst
o_a_
_las
part