-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathbitcoin.sh
1206 lines (1137 loc) ยท 178 KB
/
bitcoin.sh
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
#!/usr/bin/env bash
# Various bash bitcoin tools
#
# This script uses GNU tools. It is therefore not guaranted to work on a POSIX
# system.
#
# Requirements are detailed in the accompanying README file.
#
# Copyright (C) 2013 Lucien Grondin ([email protected])
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
if [[ ! -v secp256k1 ]]
then declare -r secp256k1="
I16i7sb0sa[[_1*lm1-*lm%q]Std0>tlm%Lts@]s%[Smddl%x-lm/rl%xLms@]s~
[[L0s@0pq]S0d0=0l<~2%2+l<*+[0]Pp]sE[_1*l%x]s_[+l%x]s+2 100^ds<d
14551231950B75FC4402DA1732FC9BEBF-sn1000003D1-dspsm [I1d+d+d*i1
483ADA7726A3C4655DA4FBFC0E1108A8FD17B448A68554199C47D08FFB10D4B8
79BE667EF9DCBBAC55A06295CE870B07029BFCDB2DCE28D959F2815B16F81798
4Ri]dsgx3Rs@l<*+sG[*l%x]s*[-l%x]s-[l%xSclmSd1Su0Sv0Sr1St[q]SQ[lc
0=Qldlcl~xlcsdscsqlrlqlu*-ltlqlv*-lulvstsrsvsulXx]dSXxLXs@LQs@Lc
s@Lds@Lus@Lvs@Lrl%xLts@]sI[lpd1+4/r|]sRi[lpSm[+lCxq]S0[l1lDxlCxq
]Sd[0lCxq]SzdS1rdS2r[L0s@L1s@L2s@Lds@Lms@LCs@]SCd0=0rd0=0r=dl1l<
/l2l</l-xd*l1l<%l2l<%l+xd*+0=zl2l</l1l</l-xlIxl2l<%l1l<%l-xl*xd2
lm|l1l</l2l</+l-xd_3Rl1l</rl-xl*xl1l<%l-xrl<*+lCx]sA[lpSm[LCxq]
S0dl<~SySx[Lms@L0s@LCs@Lxs@Lys@]SC0=0lxd*3*la+ly2*lIxl*xdd*lx2*
l-xd_3Rlxrl-xl*xlyl-xrl<*+lCx]sD[rS.0r[rl.lAxr]SP[q]SQ[d0=Qd2%1
=P2/l.lDxs.lLx][email protected]@LLs@LPs@LQs@]sM[[d2%1=_q]s2 2 2 8^^~dsx
d3lp|rla*+lb+lRxr2=2d2%0=_]sY[2l<*2^+]sU[d2%2+l<*rl</+]sC[l<~dlY
x3R2%rd3R+2%1=_rl<*+]s>[1_3R]sj[3Rd_3Rdl*xd_3RlIxl*x_4Rl*xlIxl*x
r]sf[[LQs@q]SQ3Rd_4R0=QLQs@[3R0*_3RLQs@q]SQrd_3R0=QLQs@rdd*lm%3R
d3Rd3R4**lm%3Rd*3*lm%5R5R*2*lm%rdd*lm%4Rd_3R2*l-xd_6Rl-x*3Rd*8*
l-x3R]s:[_4RSXSYSZ[s@0ddL0s@q]S0d0=0[_4RlZlYlXlPx4R]S+[q]SQ0dd4R
[d0=Qd2%1=+2/lZlYlXl:xsXsYsZlLx]dSLxLXs@LYs@LZs@s@LLs@L0s@L+s@LQ
s@]s;[3Rd[s@s@s@Lqs@q]Sq0=qLqs@6Rd[s@4Rs@4Rs@_3RLqs@q]Sq0=qLqs@d
dl*xd3Rd_4Rl*x6Rd3Rl*x3R6Rd3Rl*x6Rddl*xd3Rd_4Rl*x5d+Rl*x9R3Rl*x4
Rd_3Rl-x3R6Rd_3Rl-x3R[[s@s@s@s@s@s@0 0 0L1s@L2s@3Q]S2s@0*0=2s@s@
4Rs@_3Rl:xL1s@L2s@q]S1d0=1L1s@6Rs@6Rs@ddl*xd3Rd3Rl*x4Rddl*x7R6R
l*xd2l*x5Rd5R_4R_4R+l-xd4Rr5R_3Rl-xl*x5R4Rl*xl-x_5R_5Rl*xl*xr3R]
sP[[[INFINITY]nLIs@q]SI3Rd0=I_3RLIs@IO_5R_5Rlfx1d+d+d*doi2 100^d
3Rr2*+_3Rr2%*+[0]nnAPoi]se"
fi
# This file requires extended globs to be parsed
shopt -s extglob
hash160() {
openssl dgst -sha256 -binary |
openssl dgst -rmd160 -binary
# The code below was a temporary fix
# that does not seem to be necessary anymore (oct. 2023)
# {
# # https://github.com/openssl/openssl/issues/16994
# # "-provider legacy" for openssl 3.0 || fallback for old versions
# 2>/dev/null openssl dgst -provider legacy -rmd160 -binary ||
# openssl dgst -rmd160 -binary
# }
}
escape-output-if-needed()
if test -t 1
then cat -v
else cat
fi
ser32()
if (($1 >= 0 && $1 < 1<<32))
then
printf "%08X" $1 |
basenc --base16 -d
else return 1
fi
ser256()
if [[ "$1" =~ ^(0x)?([[:xdigit:]]{65,})$ ]]
then echo "unexpectedly large parameter" >&2; return 1
elif [[ "$1" =~ ^(0x)?([[:xdigit:]]{64})$ ]]
then basenc --base16 -d <<<"${BASH_REMATCH[2]^^[a-f]}"
elif [[ "$1" =~ ^(0x)?([[:xdigit:]]{1,63})$ ]]
then $FUNCNAME "0x0${BASH_REMATCH[2]}"
else return 1
fi
base58()
if
local -r base58_chars="123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz"
local OPTIND OPTARG o
getopts hdvc o
then
shift $((OPTIND - 1))
case $o in
h)
cat <<-END_USAGE
${FUNCNAME[0]} [options] [FILE]
options are:
-h: show this help
-d: decode
-c: append checksum
-v: verify checksum
${FUNCNAME[0]} encode FILE, or standard input, to standard output.
With no FILE, encode standard input.
When writing to a terminal, ${FUNCNAME[0]} will escape non-printable characters.
END_USAGE
;;
d)
read -r < "${1:-/dev/stdin}"
if [[ "$REPLY" =~ ^(1*)([$base58_chars]+)$ ]]
then
dc -e "${BASH_REMATCH[1]//1/0P}
0${base58_chars//?/ds&1+} 0${BASH_REMATCH[2]//?/ 58*l&+}P" |
escape-output-if-needed
else return 1
fi ;;
v)
tee >(${FUNCNAME[0]} -d "$@" |head -c -4 |${FUNCNAME[0]} -c) |
uniq -d | read
;;
c)
tee >(
openssl dgst -sha256 -binary |
openssl dgst -sha256 -binary |
head -c 4
) < "${1:-/dev/stdin}" |
${FUNCNAME[0]}
;;
esac
else
basenc --base16 "${1:-/dev/stdin}" -w0 |
if
read
[[ $REPLY =~ ^((0{2})*)(([[:xdigit:]]{2})*) ]]
echo -n "${BASH_REMATCH[1]//00/1}"
(( ${#BASH_REMATCH[3]} > 0 ))
then
dc -e "16i0${BASH_REMATCH[3]^^} Ai[58~rd0<x]dsxx+f" |
while read -r
do echo -n "${base58_chars:REPLY:1}"
done
fi
echo
fi
wif()
if
local OPTIND o
getopts hutd o
then
shift $((OPTIND - 1))
case "$o" in
h) cat <<-END_USAGE
${FUNCNAME[0]} reads 32 bytes from stdin and interprets them
as a bitcoin private key to display in Wallet Import Format (WIF).
Usage:
${FUNCNAME[0]} -h
${FUNCNAME[0]} -d
${FUNCNAME[0]} [-t][-u]
The '-h' option displays this message.
The '-u' option will place a suffix indicating that the key will be
associated with a public key in uncompressed form.
The '-t' option will generate addresses for the test network.
The '-d' option performs the reverse operation : it reads a key in WIF
and prints 32 bytes on stdout. When writing to a terminal, non-printable
characters will be escaped.
END_USAGE
;;
d) base58 -d |
tail -c +2 |
head -c 32 |
if test -t 1
then
{
# see https://stackoverflow.com/questions/48101258/how-to-convert-an-ecdsa-key-to-pem-format
basenc --base16 -d <<< "302E0201010420"
cat
basenc --base16 -d <<< "A00706052B8104000A"
} | openssl ec -inform der
else cat
fi
;;
u) BITCOIN_PUBLIC_KEY_FORMAT=uncompressed ${FUNCNAME[0]} "$@";;
t) BITCOIN_NET=TEST ${FUNCNAME[0]} "$@";;
esac
else
{
if [[ "$BITCOIN_NET" = TEST ]]
then printf "\xEF"
else printf "\x80"
fi
head -c 32
if [[ "$BITCOIN_PUBLIC_KEY_FORMAT" != uncompressed ]]
then printf "\x01"
fi
} |
base58 -c
fi
# Bech32 code starts here {{{
#
# Translated from javascript.
#
# Original code link:
# https://github.com/sipa/bech32/blob/master/ref/javascript/bech32.js
#
# Copyright and permission notice in original file :
#
# // Copyright (c) 2017, 2021 Pieter Wuille
# //
# // Permission is hereby granted, free of charge, to any person obtaining a copy
# // of this software and associated documentation files (the "Software"), to deal
# // in the Software without restriction, including without limitation the rights
# // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# // copies of the Software, and to permit persons to whom the Software is
# // furnished to do so, subject to the following conditions:
# //
# // The above copyright notice and this permission notice shall be included in
# // all copies or substantial portions of the Software.
# //
# // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# // THE SOFTWARE.
if [[ ! -v bech32_charset ]]
then
declare -r bech32_charset="qpzry9x8gf2tvdw0s3jn54khce6mua7l"
declare -Ai bech32_charset_reverse
for i in {0..31}
do bech32_charset_reverse[${bech32_charset:i:1}]=i
done
fi
bech32()
if local OPTIND OPTARG o
getopts hmv: o
then shift $((OPTIND - 1))
case "$o" in
h) cat <<-EOF
usage:
${FUNCNAME[0]} -h
${FUNCNAME[0]} [-m] hrp data
EOF
;;
m) BECH32_CONST=0x2bc830a3 ${FUNCNAME[0]} "$@" ;;
v)
if [[ "$OPTARG" =~ ^(.{1,83})1([$bech32_charset]{6,})$ ]]
then
${FUNCNAME[0]} "${BASH_REMATCH[1]}" "${BASH_REMATCH[2]::-6}" |
grep -q "^$OPTARG$"
else return 33
fi
;;
esac
elif [[ "$1$2" =~ [A-Z] && "$hrp$data" =~ [a-z] ]]
then return 1
elif local hrp="${1,,}" data="${2,,}"
(( ${#hrp} + ${#data} + 6 > 90 ))
then return 2
elif (( ${#hrp} < 1 || ${#hrp} > 83 ))
then return 3
elif
local -i ord p out_of_range=0
for ((p=0;p<${#hrp};p++))
do
printf -v ord "%d" "'${hrp:p:1}"
if ((ord < 33 || ord > 126))
then out_of_range=1; break
fi
done
((out_of_range == 1))
then return 4
elif [[ "$data" =~ [^$bech32_charset] ]]
then return 5
else
echo -n "${hrp}1$data"
bech32_create_checksum "$hrp" $(
echo -n "$data" |
while read -n 1
do echo "${bech32_charset_reverse[REPLY]}"
done
)
fi
polymod() {
local -ai generator=(0x{3b6a57b2,26508e6d,1ea119fa,3d4233dd,2a1462b3})
local -i chk=1 value
for value
do
local -i top i
(( top = chk >> 25, chk = (chk & 0x1ffffff) << 5 ^ value ))
for i in {0..4}
do (( ((top >> i) & 1) && (chk^=generator[i]) ))
done
done
echo $chk
}
hrpExpand() {
local -i p ord
for ((p=0; p < ${#1}; ++p))
do printf -v ord "%d" "'${1:p:1}"
echo $(( ord >> 5 ))
done
echo 0
for ((p=0; p < ${#1}; ++p))
do printf -v ord "%d" "'${1:p:1}"
echo $(( ord & 31 ))
done
}
verifyChecksum() (( "$(polymod $(hrpExpand "$1") "${@:2}")" == ${BECH32_CONST:-1} ))
bech32_create_checksum() {
local hrp="$1"
shift
local -i p mod=$(polymod $(hrpExpand "$hrp") "$@" 0 0 0 0 0 0)^${BECH32_CONST:-1}
for p in {0..5}
do echo $(( (mod >> 5 * (5 - p)) & 31 ))
done
}
bech32_encode()
if
local OPTIND o
getopts m o
then
shift $((OPTIND - 1))
BECH32_CONST=0x2bc830a3 $FUNCNAME "$@"
else
local hrp=$1 i
shift
set - "$@" $(bech32_create_checksum "$hrp" "$@")
echo -n "${hrp}1"
for i
do echo -n "${bech32_charset:i:1}"
done
echo
fi
bech32_decode()
if
local OPTIND o
getopts m o
then
shift $((OPTIND - 1))
BECH32_CONST=0x2bc830a3 $FUNCNAME "$@"
else
local bechString=$1
local -i p has_lower=0 has_upper=0 ord
for ((p=0;p<${#bechString};++p))
do
printf -v ord "%d" "'${bechString:p:1}"
if ((ord < 33 || ord > 126))
then return 1
elif ((ord >= 97 && ord <= 122))
then has_lower=1
elif ((ord >= 65 && ord <= 90))
then has_upper=1
fi
done
if ((has_upper && has_lower))
then return 2 # mixed case
elif bechString="${bechString,,}"
((${#bechString} > 90))
then return 3 # string is too long
elif [[ ! "$bechString" =~ 1 ]]
then return 4 # no separator
elif
local hrp="${bechString%1*}"
test -z $hrp
then return 5 # no human readable part
elif local data="${bechString##*1}"
((${#data} < 6))
then return 6 # data is too short
else
for ((p=0;p<${#data};++p))
do echo "${bech32_charset_reverse[${data:p:1}]}"
done |
{
mapfile -t
if verifyChecksum "$hrp" "${MAPFILE[@]}"
then
echo $hrp
for p in "${MAPFILE[@]::${#MAPFILE[@]}-6}"
do echo $p
done
else return 8
fi
}
fi
fi
# bech32-related code ends here }}}
# bip-0173/bip-0350 code starts here {{{
p2wpkh() { segwitAddress -p "$1"; }
segwitAddress()
if
local OPTIND OPTARG o
getopts hp:tv: o
then
shift $((OPTIND - 1))
case "$o" in
h) cat <<-END_USAGE
${FUNCNAME[0]} -h
${FUNCNAME[0]} [-t] [-v witness-version] WITNESS_PROGRAM
${FUNCNAME[0]} [-t] -p compressed-point
END_USAGE
;;
p)
if [[ "$OPTARG" =~ ^0[23][[:xdigit:]]{64}$ ]]
then ${FUNCNAME[0]} "$@" "$(
basenc --base16 -d <<<"${OPTARG^^[a-f]}" |
hash160 |
basenc --base16 -w0
)"
else echo "-p option expects a compressed point as argument" >&2
return 1
fi
;;
t) HRP=tb ${FUNCNAME[0]} "$@" ;;
v) WITNESS_VERSION=$OPTARG ${FUNCNAME[0]} "$@" ;;
esac
elif
local hrp="${HRP:-bc}"
[[ ! "$hrp" =~ ^(bc|tb)$ ]]
then return 1
elif
local witness_program="$1"
[[ ! "$witness_program" =~ ^([[:xdigit:]]{2})+$ ]]
then return 2
elif
local -i version=WITNESS_VERSION
((version < 0))
then return 3
elif ((version == 0))
then
if [[ "$witness_program" =~ ^(.{40}|.{64})$ ]] # 20 or 32 bytes
then
# P2WPKH or P2WSH
bech32_encode "$hrp" $(
echo $version;
echo -n "$witness_program" |
while read -n 2; do echo 0x$REPLY; done |
convertbits 8 5
)
else
1>&2 echo For version 0, the witness program must be either 20 or 32 bytes long.
return 4
fi
elif ((version <= 16))
then
bech32_encode -m "$hrp" $(
echo $version
echo -n "$witness_program" |
while read -n 2; do echo 0x$REPLY; done |
convertbits 8 5
)
else return 255
fi
segwit_verify()
if bech32 -v "$1"
then return 1
else
local hrp
local -i witness_version
local -ai bytes
bech32_decode "$1" |
{
read hrp
[[ "$hrp" =~ ^(bc|tb)$ ]] || return 2
read witness_version
(( witness_version < 0 || witness_version > 16)) && return 3
bytes=($(convertbits 5 8 0)) || return 4
if
((
${#bytes[@]} == 0 ||
${#bytes[@]} < 2 ||
${#bytes[@]} > 40
))
then return 7
elif ((
witness_version == 0 &&
${#bytes[@]} != 20 &&
${#bytes[@]} != 32
))
then return 8
fi
}
fi
convertbits() {
local -i inbits=$1 outbits=$2 pad=${3:-1} val=0 bits=0 i
local -i maxv=$(( (1 << outbits) - 1 ))
while read
do
((
val=(val<<inbits)|REPLY,
bits+=inbits
))
while ((bits >= outbits))
do
(( bits-=outbits ))
echo $(( (val >> bits) & maxv ))
done
done
if ((pad > 0))
then
if ((bits))
then echo $(( (val << (outbits - bits)) & maxv ))
fi
elif (( ( (val << (outbits - bits) ) & maxv ) || bits >= inbits))
then return 1
fi
}
segwit_decode()
if
test-addr() {
bech32_decode "$addr" ||
bech32_decode -m "$addr"
}
local addr="$1"
! test-addr >/dev/null
then return 1
else
test-addr |
{
local hrp
read hrp
if [[ ! "$hrp" =~ ^(bc|tb)$ ]]
then return 2
fi
local -i version
read version
if ((version > 0)) && bech32_decode "$addr" >/dev/null
then return 3
elif ((version == 0)) && bech32_decode -m "$addr" >/dev/null
then return 4
elif ((version > 16))
then return 5
fi
mapfile -t
local p
local -a bytes
bytes=($(
for p in ${MAPFILE[@]}
do echo $p
done |
convertbits 5 8 0
)) || return 6
if
((
${#bytes[@]} == 0 ||
${#bytes[@]} < 2 ||
${#bytes[@]} > 40
))
then return 7
elif ((
version == 0 &&
${#bytes[@]} != 20 &&
${#bytes[@]} != 32
))
then return 8
else
echo $hrp
echo $version
printf "%02x" "${bytes[@]}"
echo
fi
}
fi
# bip-0173 code stops here }}}
# bip-0032 code starts here {{{
BIP32_MAINNET_PUBLIC_VERSION_CODE=0x0488B21E
BIP32_MAINNET_PRIVATE_VERSION_CODE=0x0488ADE4
BIP32_TESTNET_PUBLIC_VERSION_CODE=0x043587CF
BIP32_TESTNET_PRIVATE_VERSION_CODE=0x04358394
isPrivate() ((
$1 == BIP32_TESTNET_PRIVATE_VERSION_CODE ||
$1 == BIP32_MAINNET_PRIVATE_VERSION_CODE
))
isPublic() ((
$1 == BIP32_TESTNET_PUBLIC_VERSION_CODE ||
$1 == BIP32_MAINNET_PUBLIC_VERSION_CODE
))
bip32()
if
local header_format='%08X%02X%08X%08X'
local OPTIND OPTARG o
getopts hst o
then
shift $((OPTIND - 1))
case "$o" in
h) cat <<-END_USAGE
Usage:
$FUNCNAME -h
$FUNCNAME [-st] [derivation-path]
$FUNCNAME generates extended keys as defined by BIP-0032.
When writing to a terminal, $FUNCNAME will print the base58-checked version of the
serialized key. Otherwise, it will print the serialized key.
With no argument, $FUNCNAME will generate an extended master key from a binary
seed read on standard input. With the -t option, it will generate such key
for the test network.
With a derivation path as an argument, $FUNCNAME will read a
seralized extended key from stdin and generate the corresponding derived key.
If the derivation path begins with 'm', $FUNCNAME will expect a master private key as input.
If the derivation path begins with 'M', $FUNCNAME will expect a master public key as input.
Otherwise the derivation path begins with '/', then $FUNCNAME will derive any key read from
standard input.
When expecting a serialized key from stdin, $FUNCNAME will only read the first 78 bytes.
With the -s option, input is interpreted as a seed, not as a serialized key.
With the -t option, input is interpreted as a seed, and a testnet master key is generated.
END_USAGE
;;
s)
{
if [[ "$BITCOIN_NET" = TEST ]]
then printf "$header_format" $BIP32_TESTNET_PRIVATE_VERSION_CODE 0 0 0
else printf "$header_format" $BIP32_MAINNET_PRIVATE_VERSION_CODE 0 0 0
fi
#openssl dgst -sha512 -hmac "Bitcoin seed" -binary |
openssl mac -digest sha512 -macopt key:"Bitcoin seed" -binary hmac |
basenc --base16 -w64 |
tac |
sed 2i00
} |
basenc --base16 -d |
${FUNCNAME[0]} "$@"
;;
t) BITCOIN_NET=TEST ${FUNCNAME[0]} -s "$@";;
esac
elif (( $# > 1 ))
then
echo "too many parameters given : $@" >&2
return 1
elif [[ "$1" =~ ^[mM]?(/([[:digit:]]+h?|N))*$ ]]
then
local path="$1" hexdump="$(
if test -t 0
then
read -p "eXtended key: "
base58 -d <<<"$REPLY"
else cat
fi |
head -c 78 |
basenc --base16 -w0
)"
if (( ${#hexdump} < 2*78 ))
then echo "input is too short" >&2; return 2
fi
local -i version="0x${hexdump:0:8}"
local -i depth="0x${hexdump:8:2}"
local -i parent_fp="0x${hexdump:10:8}"
local -i child_number="0x${hexdump:18:8}"
local chain_code="${hexdump:26:64}"
local key="${hexdump:90:66}"
# sanity checks
if [[ "$path" =~ ^m ]] && ((
version != BIP32_TESTNET_PRIVATE_VERSION_CODE &&
version != BIP32_MAINNET_PRIVATE_VERSION_CODE
))
then return 2
elif [[ "$path" =~ ^M ]] && ((
version != BIP32_TESTNET_PUBLIC_VERSION_CODE &&
version != BIP32_MAINNET_PUBLIC_VERSION_CODE
))
then return 3
elif [[ "$path" =~ ^[mM] ]] && ((depth > 0))
then return 4
elif [[ "$path" =~ ^[mM] ]] && ((parent_fp > 0))
then return 5
elif [[ "$path" =~ ^[mM] ]] && ((child_number > 0))
then return 6
elif [[ ! "$key" =~ ^0[023] ]]
then echo "unexpected key: $key (hexdump is $hexdump)" >&2; return 7
elif ((
version != BIP32_TESTNET_PRIVATE_VERSION_CODE &&
version != BIP32_MAINNET_PRIVATE_VERSION_CODE &&
version != BIP32_TESTNET_PUBLIC_VERSION_CODE &&
version != BIP32_MAINNET_PUBLIC_VERSION_CODE
))
then return 8
elif ((depth < 0 || depth > 255))
then return 9
elif ((parent_fp < 0 || parent_fp > 0xffffffff))
then return 10
elif ((child_number < 0 || child_number > 0xffffffff))
then return 11
elif isPublic $version && [[ "$key" =~ ^00 ]]
then return 12
elif isPrivate $version && [[ "$key" =~ ^0[23] ]]
then return 13
# TODO: check that the point is on the curve?
fi
path="${path#[mM]}"
if test -n "$path"
then
while [[ "$path" =~ ^/(N|[[:digit:]]+h?) ]]
do
path="${path#/${BASH_REMATCH[1]}}"
local operator="${BASH_REMATCH[1]}"
case "$operator" in
N)
case $version in
$((BIP32_TESTNET_PUBLIC_VERSION_CODE)))
;;
$((BIP32_MAINNET_PUBLIC_VERSION_CODE)))
;;
$((BIP32_MAINNET_PRIVATE_VERSION_CODE)))
version=$BIP32_MAINNET_PUBLIC_VERSION_CODE;;&
$((BIP32_TESTNET_PRIVATE_VERSION_CODE)))
version=$BIP32_TESTNET_PUBLIC_VERSION_CODE;;&
*)
read key < <(
dc <<<"$secp256k1 4d*doilgx${key^^}l;xlex"
)
esac
;;
+([[:digit:]])h)
(( child_number= ${operator%h} + (1 << 31) ))
;&
+([[:digit:]]))
((depth++))
local parent_id
if [[ ! "$operator" =~ h$ ]]
then child_number=operator
fi
if isPrivate "$version"
then # CKDpriv
read parent_id < <(dc <<<"$secp256k1 4d*doilgx${key^^}l;xlex")
{
read key
read chain_code
} < <(
{
echo "$secp256k1"
{
if (( child_number >= (1 << 31) ))
then
printf "\x00"
ser256 "0x${key:2}" || echo "WARNING: ser256 return $?" >&2
else
basenc --base16 -d <<<"${parent_id^^[a-f]}"
fi
ser32 $child_number
} |
openssl dgst -sha512 -mac hmac -macopt hexkey:"$chain_code" -binary |
basenc --base16 -w64 |
{
read left
read right
echo "4d*doi$right ${key^^} $left+ln%prp"
}
} | dc
)
elif isPublic "$version"
then # CKDpub
parent_id="$key"
if (( child_number >= (1 << 31) ))
then
echo "extented public key can't produce a hardened child" >&2
return 4
else
{
read key
read chain_code
} < <(
{
echo "$secp256k1"
{
basenc --base16 -d <<<"${key^^[a-f]}"
ser32 $child_number
} |
openssl dgst -sha512 -mac hmac -macopt hexkey:"$chain_code" -binary |
basenc --base16 -w64 |
{
read left
read right
echo "8d+doi$right lgx$left l;x ${key^^}l>x l<~rljx lPxlexp"
}
} | dc
)
fi
else
echo "version is neither private nor public?!" >&2
return 111
fi
while ((${#key} < 66))
do key="0$key"
done
while ((${#chain_code} < 64))
do chain_code="0$chain_code"
done
parent_fp="0x$(
basenc --base16 -d <<<"${parent_id^^[a-f]}"|
hash160 |
head -c 4 |
basenc --base16 -w0
)"
;;
esac
done
fi
printf "$header_format%s%s" $version $depth $parent_fp $child_number "$chain_code" "$key" |
basenc --base16 -d |
if [[ -t 1 ]]
then base58 -c
else cat
fi
else return 255
fi
# bip-0032 code stops here }}}
bip49() {
BIP32_MAINNET_PUBLIC_VERSION_CODE=0x049d7cb2 \
BIP32_MAINNET_PRIVATE_VERSION_CODE=0x049d7878 \
BIP32_TESTNET_PUBLIC_VERSION_CODE=0x044a5262 \
BIP32_TESTNET_PRIVATE_VERSION_CODE=0x044a4e28 \
bip32 "$@"
}
bip84() {
BIP32_MAINNET_PUBLIC_VERSION_CODE=0x04b24746 \
BIP32_MAINNET_PRIVATE_VERSION_CODE=0x04b2430c \
BIP32_TESTNET_PUBLIC_VERSION_CODE=0x045f1cf6 \
BIP32_TESTNET_PRIVATE_VERSION_CODE=0x045f18bc \
bip32 "$@"
}
alias xkey=bip32
alias ykey=bip49
alias zkey=bip84
bip85()
case "$1" in
wif)
shift
$FUNCNAME 2 "$@" |
wif
;;
xprv)
$FUNCNAME 32 ${2:-0} |
basenc --base16 -w64 |
{
read left
read right
printf '%08X%02X%08X%08X%s00%s' $BIP32_MAINNET_PRIVATE_VERSION_CODE 0 0 0 $left $right
} |
basenc --base16 -d |
bip32
;;
mnemo*)
local -i words=${2:-12} index=${3:-0} lang ent=words*32/3
{
case "$LANG" in
ja?(_*)) lang=1;;
ko?(_*)) lang=2;;
es?(_*)) lang=3;;
zh_CN) lang=4;;
zh_TW) lang=5;;
fr?(_*)) lang=6;;
it?(_*)) lang=7;;
cz?(_*)) lang=8;;
*) lang=0;;
esac
# CS = ENT / 32
# MS = (ENT + CS) / 11
$FUNCNAME 39 $lang $words $index
} |
head -c $((ent/8)) |
basenc --base16 -w$((2*(ent/8))) |
{
read
create-mnemonic "$REPLY"
}
;;
hex)
shift
local -i num_bytes=${1:-16} index=${2:-0}
if ((num_bytes < 16 || num_bytes > 64))
then echo "number of bytes ($num_bytes) out of range" >&2
return 46
else
$FUNCNAME 128169 $num_bytes $index |
head -c $num_bytes |
basenc --base16 -w0
fi
;;
*)
local path="m/83696968h/${1:-0}h/${2:-0}h"
shift; shift;
for i in "$@"
do path="$path/${i}h"
done
{
if test -t 0
then
read -p "extended master key: "
base58 -d <<<"$REPLY"
else cat
fi
} |
bip32 "$path" |
tail -c 32 |
openssl dgst -sha512 -hmac "bip-entropy-from-k" -binary |
escape-output-if-needed
;;
esac
# bip-0039 code starts here {{{
bip39_words()
case "${LANG::5}" in
# lists of words from https://github.com/bitcoin/bips/tree/master/bip-0039
fr?(_*)) echo a{b{a{isser,ndon},diquer,eille,o{lir,rder,utir,yer},r{asif,euver,iter,oger,upt},s{ence,olu,urde},usif,yssal},c{a{deฬmie,jou,rien},c{abler,epter,lamer,olade,roche,user},erbe,h{at,eter},i{duler,er},ompte,queฬrir,ronyme,t{eur,if,uel}},d{epte,eฬquat,heฬsif,j{ectif,uger},m{ettre,irer},o{pter,rer,ucir},r{esse,oit},ulte,verbe},eฬr{er,onef},ff{aire,ecter,iche,reux,ubler},g{acer,encer,i{le,ter},r{afer,eฬable,ume}},i{der,guille,lier,mable,sance},j{outer,uster},l{armer,chimie,erte,g{eฬbre,ue},i{eฬner,ment},l{eฬger,iage,ouer,umer},ourdir,paga,tesse,veฬole},m{ateur,b{igu,re},eฬnager,ertume,i{don,ral},o{rcer,ur,vible},p{hibie,leur},usant},n{a{lyse,phore,rchie,tomie},cien,eฬantir,g{le,oisse,uleux},imal,n{exer,once,uel},o{din,malie,nyme,rmal},t{enne,idote},xieux},p{aiser,eฬritif,lanir,ologie,p{areil,eler,orter,uyer}},qu{arium,educ},r{b{itre,uste},d{eur,oise},gent,lequin,m{ature,ement,oire,ure},penter,r{acher,iver,oser},senic,t{eฬriel,icle}},s{p{ect,halte,irer},s{aut,ervir,iette,ocier,urer},t{icot,re,uce}},t{elier,ome,r{ium,oce},t{aque,entif,irer,raper}},u{b{aine,erge},d{ace,ible},gurer,rore,t{omne,ruche}},v{a{ler,ncer,rice},e{nir,rse,ugle},i{ateur,de,on,ser},o{ine,uer},ril},xi{al,ome}} b{a{dge,fouer,g{age,uette},ignade,l{ancer,con,eine,isage},mbin,n{caire,dage,lieue,nieฬre,quier},r{bier,il,on,que,rage},s{sin,tion},t{aille,eau,terie},udrier,varder},elette,eฬlier,elote,eฬneฬfice,e{r{ceau,ger,line,muda},s{ace,ogne}},eฬtail,eurre,i{beron,cycle,dule,jou,l{an,ingue,lard},naire,o{logie,psie,type},s{cuit,on,touri},tume,zarre},l{a{fard,gue,nchir},essant,inder,o{nd,quer,uson}},o{b{ard,ine},i{re,ser},lide,n{bon,dir,heur,ifier,us},r{dure,ne},tte,u{cle,eux,gie,lon,quin,rse,ssole,tique},xeur},r{a{nche,sier,ve},ebis,eฬche,euvage,i{coler,gade,llant,oche,que},o{chure,der,nzer,usse,yeur},u{me,sque,tal,yant}},u{ffle,isson,lletin,r{eau,in},stier,t{iner,oir},v{able,ette}}} c{a{b{anon,ine},chette,d{eau,re},feฬine,i{llou,sson},l{culer,epin,ibre,mer,omnie,vaire},m{arade,eฬra,ion,pagne},n{al,eton,on,tine,ular},p{able,oral,rice,sule,ter,uche},r{abine,bone,esser,ibou,nage,otte,reau,ton},s{cade,ier,que,sure},u{ser,tion},v{alier,erne,iar}},eฬdille,einture,eฬleste,e{llule,n{drier,surer,tral},rcle},eฬreฬbral,e{r{ise,ner,veau},sser},h{a{grin,ise,leur,mbre,nce,pitre,rbon,sseur,ton,usson,virer},e{mise,nille},eฬquier,e{rcher,val},i{en,ffre,gnon,meฬre,ot},lorure,o{colat,isir,se,uette},rome,ute},i{g{are,ogne},menter,n{eฬma,trer},r{culer,er,que},t{erne,oyen,ron},vil},l{a{iron,meur,quer,sse,vier},i{ent,gner,mat,vage},o{che,nage,porte}},o{b{alt,ra},c{asse,otier},d{er,ifier},ffre,gner,heฬsion,i{ffer,ncer},l{eฬre,ibri,line,mater,onel},m{bat,eฬdie,mande,pact},n{cert,duire,fier,geler,noter,sonne,tact,vexe},p{ain,ie},r{ail,beau,dage,niche,pus,rect,teฬge},s{mique,tume},ton,u{de,pure,rage,teau,vrir},yote},r{a{be,inte,vate,yon},eฬ{ature,diter,meux},e{user,vette},i{bler,er,stal,teฬre},o{ire,quer,tale},u{cial,el},ypter},u{bique,eillir,i{lleฬre,sine,vre},l{miner,tiver},muler,pide,r{atif,seur}},y{anure,cle,lindre,nique}} d{a{igner,mier,n{ger,seur},uphin},eฬ{b{attre,iter,order,rider,utant},c{aler,embre,hirer,ider,larer,orer,rire,upler},d{ale,uctif},esse,f{ensif,iler,rayer},g{ager,ivrer,lutir,rafer},jeuner,l{ice,oger}},em{ander,eurer},eฬ{molir,n{icher,ouer}},entelle,eฬ{nuder,p{art,enser,haser,lacer,oser},r{anger,ober},sastre},escente,eฬs{ert,igner,obeฬir},es{siner,trier},eฬt{acher,ester,ourer,resse},ev{ancer,enir,iner,oir},i{a{ble,logue,mant},cter,ffeฬrer,g{eฬrer,ital,ne},luer,m{anche,inuer},oxyde,r{ectif,iger},s{cuter,poser,siper,tance},v{ertir,iser}},o{c{ile,teur},gme,igt,m{aine,icile,pter},n{ateur,jon,ner},pamine,r{toir,ure},s{age,eur,sier},tation,u{anier,ble,ceur,ter},yen},r{a{gon,per},esser,ibbler,oiture},u{p{erie,lexe},r{able,cir}},ynastie} eฬ{blouir,c{arter,h{arpe,elle},l{airer,ipse,ore,use},o{le,nomie,rce,uter},r{aser,eฬmer,ivain,ou},u{me,reuil}},d{ifier,uquer}} eff{acer,ectif,igie,ort,rayer,usion} eฬ{ga{liser,rer},jecter,l{a{borer,rgir},ectron,eฬ{gant,phant},eฬve,i{gible,tisme},oge,u{cider,der}}} emb{aller,ellir,ryon} eฬm{eraude,ission} emmener eฬmo{tion,uvoir} emp{ereur,loyer,orter,rise} eฬmulsion en{c{adrer,heฬre,lave,oche},d{iguer,osser,roit,uire}} eฬnergie en{f{ance,ermer,ouir},g{ager,in,lober}} eฬnigme en{j{amber,eu},lever,n{emi,uyeux},r{ichir,obage},seigne,t{asser,endre,ier,ourer,raver}} eฬnumeฬrer en{v{ahir,iable,oyer},zyme} eฬ{olien,p{a{issir,rgne,tant,ule},i{cerie,deฬmie,er,logue,ne,sode,taphe},oque,r{euve,ouver},uisant},qu{erre,ipe},r{iger,osion}} erreur eฬruption es{calier,p{adon,eฬce,ieฬgle,oir,rit},quiver,s{ayer,ence,ieu,orer},t{ime,omac,rade}} eฬt{a{geฬre,ler,nche,tique},e{indre,ndoir,rnel},h{anol,ique}} ethnie eฬt{irer,o{ffer,ile,nnant,urdir},r{ange,oit},ude} euphorie eฬv{a{luer,sion},entail,i{dence,ter},o{lutif,quer}} ex{a{ct,geฬrer,ucer},c{eller,itant,lusif,use},eฬcuter,e{mple,rcer},h{aler,orter},i{gence,ler,ster},otique,p{eฬdier,lorer,oser,rimer},quis,t{ensif,raire},ulter} f{a{b{le,uleux},c{ette,ile,ture},iblir,laise,m{eux,ille},r{ceur,felu,ine,ouche},sciner,t{al,igue},u{con,tif},v{eur,ori}},eฬ{brile,conder,deฬrer,lin},emme,eฬmur,endoir,eฬodal,ermer,eฬroce,e{rveur,stival,u{ille,tre}},eฬvrier,i{asco,c{eler,tif},deฬle,gure,l{ature,etage,ieฬre,leul,mer,ou,trer},n{ancer,ir},ole,rme,ssure,xer},l{a{irer,mme,sque,tteur},eฬau,eฬche,e{ur,xion},o{con,re},u{ctuer,ide,vial}},o{lie,n{derie,gible,taine},r{cer,geron,muler,tune},ssile,u{dre,geฬre,iller,lure,rmi}},r{a{gile,ise,nchir,pper,yeur},eฬgate,e{iner,lon},eฬ{mir,neฬsie},eฬre,i{able,ction,sson,vole},o{id,mage,ntal,tter},uit},u{gitif,ite,r{eur,ieux,tif},sion,tur}} g{a{gner,l{axie,erie},mbader,r{antir,dien,nir,rigue},z{elle,on}},eฬ{ant,l{atine,ule}},endarme,eฬn{eฬral,ie},en{ou,til},eฬ{o{logie,meฬtre},ranium},e{rme,stuel,yser},i{bier,cler,rafe,vre},l{a{ce,ive},isser,o{be,ire,rieux}},o{lfeur,mme,nfler,r{ge,ille},u{dron,ffre,lot,pille,rmand,tte}},r{a{duel,ffiti,ine,nd,ppin,tuit,vir},enat,i{ffure,ller,mper},o{gner,nder,tte,upe},u{ger,tier,yeฬre}},u{eฬpard,errier,i{de,mauve,tare},statif},y{mnaste,rostat}} h{a{bitude,choir,lte,meau,n{gar,neton},r{icot,monie,pon},sard},eฬ{lium,matome},erbe,eฬrisson,ermine,eฬ{ron,siter},eureux,i{b{erner,ou},larant,stoire,ver},o{m{ard,mage,ogeฬne},n{neur,orer,teux},r{de,izon,loge,mone,rible},u{leux,sse}},u{blot,ileux,m{ain,ble,ide,our},rler},y{dromel,gieฬne,mne,pnose}} i{dylle,g{norer,uane},ll{icite,usion},m{age,biber,iter,m{ense,obile,uable},p{act,eฬrial,lorer,oser,rimer,uter}},n{c{arner,endie,ident,liner,olore},d{exer,ice,uctif},eฬdit,e{ptie,xact},f{ini,liger,ormer,usion},geฬrer,h{aler,iber},j{ecter,ure},nocent,o{culer,nder},s{crire,ecte,igne,olite,pirer,tinct,ulter},t{act,ense,ime,rigue,uitif},utile,v{asion,enter,iter,oquer}},r{onique,r{adier,eฬel,iter}},soler,v{oire,resse}} j{a{guar,illir,mbe,nvier,rdin,u{ger,ne},velot},e{t{able,on},u{di,nesse}},o{indre,n{cher,gler},u{eur,issif,rnal},vial,y{au,eux}},u{biler,gement,nior,pon,riste,stice,teux,veฬnile}} k{ayak,i{mono,osque}} l{a{b{el,ial,ourer},c{eฬrer,tose},gune,i{ne,sser,tier},m{beau,elle,pe},n{ceur,gage,terne},pin,r{geur,me},urier,v{abo,oir}},ecture,eฬg{al,er,ume},e{ssive,ttre,vier,xique},eฬzard,i{asse,b{eฬrer,re},c{ence,orne},eฬ{ge,vre},g{ature,oter,ue},m{er,ite,onade,pide},n{eฬaire,got},onceau,quide,s{ieฬre,ter},t{hium,ige,toral},vreur},o{gique,i{ntain,sir},mbric,terie,u{er,rd,tre,ve},yal},u{bie,c{ide,ratif},eur,gubre,isant,mieฬre,n{aire,di},ron,tter,xueux}} m{a{chine,g{asin,enta,ique},i{gre,llon,ntien,rie,son},jorer,l{axer,eฬfice,heur,ice,lette},mmouth,n{dater,iable,quant,teau,uel},r{athon,bre,chand,di,itime,queur,ron,teler},s{cotte,sif},t{eฬriel,ieฬre,raque},u{dire,ssade,ve},ximal},eฬ{c{hant,onnu},d{aille,ecin,iter,use}},eilleur,eฬl{ange,odie},embre,eฬmoire,e{n{acer,er,hir,songe,tor},rcredi},eฬrite,e{rle,s{sager,ure}},eฬt{al,eฬore,hode,ier},euble,i{auler,crobe,ette,g{non,rer},l{ieu,lion},mique,n{ce,eฬral,imal,orer,ute},r{acle,oiter},ssile,xte},o{bile,derne,elleux,n{dial,iteur,naie,otone,stre,tagne,ument},queur,r{ceau,sure,tier},t{eur,if},u{che,fle,lin,sson,ton,vant}},u{ltiple,nition,r{aille,eฬne,mure},s{cle,eฬum,icien},t{ation,er,uel}},y{r{iade,tille},steฬre,thique}} n{a{geur,ppe,r{quois,rer},t{ation,ion,ure},u{frage,tique},vire},eฬbuleux,ectar,eฬ{faste,g{ation,liger,ocier}},e{ige,rveux,ttoyer,u{rone,tron},veu},i{c{he,kel},trate,veau},o{ble,c{if,turne},i{rceur,sette},m{ade,breux,mer},rmatif,t{able,ifier,oire},u{rrir,veau},v{ateur,embre,ice}},u{a{ge,ncer},i{re,sible},meฬro,ptial,que,tritif}} o{b{eฬir,jectif,liger,s{cur,erver,tacle},t{enir,urer}},c{c{asion,uper},eฬan,t{obre,royer,upler},ulaire},d{eur,orant},ff{enser,icier,rir},give,is{eau,illon},l{factif,ivier},m{brage,ettre},n{ctueux,duler,eฬreux,irique},p{a{le,que},eฬrer,inion,p{ortun,rimer},t{er,ique}},r{a{geux,nge},bite,donner,eille,g{ane,ueil},ifice,nement,que,tie},s{ciller,mose,sature},tarie,u{r{agan,son},t{il,rager},vrage},vation,xy{de,geฬne},zone} p{a{isible,l{ace,mareฬs,ourde,per},n{ache,da,golin,iquer,neau,orama,talon},p{aye,ier,oter,yrus},r{adoxe,celle,esse,fumer,ler,ole,rain,semer,tager,ure,venir},s{sion,teฬque},t{ernel,ience,ron},v{illon,oiser},y{er,sage}},e{i{gne,ntre},lage},eฬlican,e{l{le,ouse,uche},ndule},eฬn{eฬtrer,ible},ensif,eฬ{nurie,p{ite,lum}},er{drix,forer},eฬriode,e{r{muter,plexe,sil,te},ser},eฬtale,etit,eฬtrir,euple,h{araon,o{bie,que,ton},rase,ysique},i{ano,ctural,eฬce,e{rre,uvre},lote,nceau,pette,quer,rogue,s{cine,ton},voter,xel,zza},l{a{card,fond,isir,ner,que,stron,teau},e{urer,xus},iage,o{mb,nger},u{ie,mage}},o{chette,eฬsie,eฬte,i{nte,rier,sson,vre},l{aire,icier,len,ygone},m{made,pier},n{ctuel,deฬrer,ey},rtique,s{ition,seฬder,ture},t{ager,eau,ion},u{ce,lain,mon,rpre,ssin,voir}},r{a{irie,tique},eฬ{cieux,dire,fixe,lude,nom,sence,texte,voir},i{mitif,nce,son,ver},o{bleฬme,ceฬder,dige,fond,greฬs,ie,jeter,logue,mener,pre,speฬre,teฬger,uesse,verbe},u{dence,neau}},sychose,u{blic,ceron,iser,l{pe,sar},n{aise,itif},pitre,rifier,zzle},yramide} qu{asar,e{relle,stion},i{eฬtude,tter},otient} r{a{c{ine,onter},dieux,gondin,i{deur,sin},l{entir,longe},masser,pide,sage,tisser,v{ager,in},yonner},eฬa{ctif,gir,liser,nimer},ecevoir,eฬc{iter,lamer,olter},ec{ruter,uler,ycler},eฬdiger,e{douter,faire},eฬf{lexe,ormer},ef{rain,uge},eฬ{g{alien,ion,lage,ulier},iteฬrer},e{j{eter,ouer},l{atif,ever,ief},m{arque,eฬde,ise,onter,plir,uer},n{ard,fort,ifler,oncer,trer,voi},p{lier,orter,rise,tile},quin},eฬs{erve,ineux,oudre},es{pect,ter},eฬ{sultat,tablir},etenir,eฬticule,et{omber,racer},eฬu{nion,ssir},ev{anche,ivre},eฬv{olte,ulsif},i{chesse,deau,eur,g{ide,oler},ncer,poster,s{ible,que},tuel,v{al,ieฬre}},o{cheux,m{ance,pre},n{ce,din},s{eau,ier},t{atif,or,ule},u{ge,ille,leau,tine},yaume},u{b{an,is},che,elle,gueux,i{ner,sseau},s{er,tique}},ythme} s{a{b{ler,oter,re},coche,fari,gesse,isir,l{ade,ive,on,uer},medi,n{ction,glier},r{casme,dine},turer,u{grenu,mon,ter,vage},v{ant,onner}},c{a{lpel,ndale},eฬ{leฬrat,nario},eptre,heฬma,i{ence,nder},ore,rutin,ulpter},eฬ{ance,c{able,her}},ecouer,eฬ{creฬter,d{atif,uire}},eigneur,eฬ{jour,lectif},em{aine,bler,ence},eฬ{minal,nateur},en{sible,tence},eฬ{parer,quence},er{ein,gent},eฬrieux,errure,eฬrum,ervice,eฬ{same,vir},e{vrage,xtuple},i{deฬral,eฬcle,eฬger,ffler,g{le,nal},l{ence,icium},mple,n{ceฬre,istre},phon,rop,smique,tuer},kier,o{c{ial,le},dium,igneux,l{dat,eil,itude,uble},m{bre,meil,noler},n{de,geur,nette,ore},r{cier,tir},sie,ttise,u{cieux,dure,ffle,lever,pape,rce,tirer,venir}},p{a{cieux,tial},eฬcial,heฬre,iral},t{a{ble,tion},ernum,i{mulus,puler},rict,u{dieux,peur},yliste},u{b{lime,strat,til,venir},c{ceฬs,re},ffixe,ggeฬrer,iveur,lfate,p{erbe,plier},r{face,icate,mener,prise,saut,vie},spect},y{llabe,m{bole,eฬtrie},n{apse,taxe},steฬme}} t{a{b{ac,lier},ctile,iller,l{ent,isman,onner},m{bour,iser},ngible,pis,quiner,r{der,if,tine},sse,t{ami,ouage},u{pe,reau},xer},eฬmoin,e{mporel,n{aille,dre,eur,ir,sion},r{miner,ne,rible}},eฬtine,exte,h{eฬme,eฬ{orie,rapie},orax},i{bia,eฬde,mide,r{elire,oir},ssu,t{ane,re,uber}},o{boggan,leฬrant,mate,n{ique,neau},ponyme,r{che,dre,nade,pille,rent,se,tue},tem,u{cher,rnage,sser},xine},r{a{ction,fic,gique,hir,in,ncher,vail},eฬfle,emper,eฬsor,euil,i{age,bunal,coter,logie,omphe,pler,turer,vial},o{mbone,nc,pical,upeau}},u{ile,lipe,multe,nnel,rbine,t{eur,oyer},yau},y{mpan,p{hon,ique},ran}} u{buesque,lt{ime,rason},n{anime,i{fier,on,que,taire,vers}},r{anium,bain,ticant},s{age,ine,u{el,re}},t{ile,opie}} v{a{c{arme,cin},g{abond,ue},i{llant,ncre,sseau},l{able,ise,lon,ve},mpire,nille,peur,rier,s{eux,sal,te}},e{cteur,dette},eฬ{geฬtal,hicule},einard,eฬloce,endredi,eฬneฬrer,e{n{ger,imeux,touse},rdure},eฬrin,e{r{nir,rou,ser,tu},ston},eฬt{eฬran,uste},ex{ant,er},i{a{duc,nde},ctoire,d{ange,eฬo},g{nette,ueur},l{ain,lage},naigre,olon,peฬre,r{ement,tuose,us},s{age,eur,ion,queux,uel},t{al,esse,icole,rine},v{ace,ipare}},o{cation,guer,i{le,sin,ture},l{aille,can,tiger,ume},r{ace,tex},ter,uloir,y{age,elle}}} wagon xeฬnon yacht z{eฬbre,eฬnith,este,oologie} ;;
es?(_*)) echo aฬbaco a{b{domen,eja,ierto,o{gado,no,rto},r{azo,ir},u{elo,so}},c{a{bar,demia},c{eso,ioฬn},e{ite,lga,nto,ptar}}} aฬcido a{c{larar,neฬ,o{ger,so},t{ivo,o,riz,uar},u{dir,erdo,sar}},d{icto,mitir,o{ptar,rno},u{ana,lto}},eฬreo,f{ectar,i{cioฬn,nar,rmar}}} aฬgil ag{itar,o{niฬa,sto,tar},r{egar,io},u{a,do}} aฬguila a{guja,ho{go,rro},i{re,slar},j{e{drez,no},uste},l{a{craฬn,mbre,rma},ba}} aฬlbum a{l{calde,dea,e{gre,jar,rta,ta},filer,g{a,odoฬn},i{ado,ento,vio},m{a,eja,iฬbar},t{ar,eza,ivo,o,ura},umno,zar},ma{ble,nte,pola,rgo,sar}} aฬmb{ar,ito} a{m{eno,i{go,stad},or,p{aro,lio}},n{c{ho,iano,la},d{ar,eฬn},emia}} aฬngulo anillo aฬnimo a{n{iฬs,otar,t{ena,iguo,ojo},u{al,lar,ncio}},nฬ{adir,ejo,o},p{a{gar,rato},etito,io,licar,o{do,rte,yo},r{ender,obar},u{esta,ro}},ra{do,nฬa,r}} aฬrb{itro,ol} ar{busto,c{hivo,o},d{er,illa,uo}} aฬr{ea,ido} a{r{ies,moniฬa,neฬs,oma,p{a,oฬn},r{eglo,oz,uga},t{e,ista}},s{a{,do,lto},censo,e{gurar,o,sor},i{ento,lo,stir},no,ombro}} aฬspero a{s{t{illa,ro,uto},u{mir,nto}},t{a{jo,que,r},e{nto,o}}} aฬtico atleta aฬtomo a{t{r{aer,oz},uฬn},u{d{az,io},ge,la,mento,sente,tor},v{a{l,nce,ro},e{,llana,na,struz},i{oฬn,so}},y{er,u{da,no}},z{a{fraฬn,r},ote,uฬcar,u{fre,l}}} b{a{b{a,or},che,hiฬa,ile,jar,l{anza,coฬn,de},mbuฬ,n{co,da},nฬo,r{ba,co,niz,ro}},aฬscula,a{s{toฬn,ura},t{alla,eriฬa,ir,uta},uฬl,zar},e{b{eฬ,ida},llo,s{ar,o,tia}},i{cho,en,ngo},l{anco,oque,usa},o{a,b{ina,o},c{a,ina},d{a,ega},ina,l{a,ero,sa},mba,n{dad,ito,o,saฬi},r{de,rar},sque,t{e,iฬn}},oฬveda,ozal,r{a{vo,zo},e{cha,ve},i{llo,nco,sa},o{ca,ma,nce,te},u{ja,sco,to}},u{c{eo,le},e{no,y},f{anda,oฬn}},uฬho,u{itre,lto,r{buja,la,ro},scar,taca,zoฬn}} c{a{b{allo,eza,ina,ra},cao,d{aฬver,ena},er,feฬ,iฬda,imaฬn,j{a,oฬn},l{,amar,cio,do,idad,le,ma,or,vo},m{a,bio,ello,ino,po}},aฬncer,a{n{dil,ela,guro,ica,to},nฬ{a,oฬn},o{ba,s},p{az,itaฬn,ote,tar,ucha},r{a,boฬn}},aฬrcel,a{r{eta,ga,inฬo,ne,peta,ro,ta},s{a,co,ero,pa,tor},t{orce,re},u{dal,sa},zo},e{bolla,d{er,ro},lda},eฬlebre,eloso,eฬlula,e{mento,n{iza,tro},r{ca,do,eza,o,rar,teza}},eฬsped,etro,h{a{cal,leco,mpuฬ,ncla,pa,rla},i{co,ste,vo},o{que,za},u{leta,par}},i{cloฬn,e{go,lo,n,rto},fra,garro,ma,n{co,e,ta},preฬs,r{co,uela},sne,ta,udad},l{a{mor,n,ro,se,ve},i{ente,ma},iฬnica},o{bre,c{cioฬn,hino,ina,o}},oฬdigo,o{do,fre,ger,hete,j{iฬn,o},l{a,cha,egio,gar,ina,lar,mo,umna},m{bate,er,ida}},oฬmodo,o{mpra,n{de,ejo,ga,ocer,sejo,tar},p{a,ia},r{azoฬn,bata,cho,doฬn,ona,rer},s{er,mos,ta}},r{aฬ{neo,ter},e{ar,cer,iฬdo,ma},iฬa,i{men,pta,sis},omo,oฬnica,oqueta,u{do,z}},u{a{dro,rto,tro},b{o,rir},chara,e{llo,nto,rda,sta,va},idar,l{ebra,pa,to},m{bre,plir},n{a,eta},ota,poฬn},uฬpula,u{r{ar,ioso,so,va},tis}} d{a{ma,nza,r{,do}},aฬtil,eber,eฬ{bil,cada},e{cir,do,f{ensa,inir},jar,l{fiฬn,gado,ito},mora,n{so,tal},porte,r{echo,rota},s{ayuno,eo,file,nudo,tino,viฬo},t{alle,ener},uda},iฬa,i{a{blo,dema,mante,na,rio},bujo,ctar,e{nte,ta,z},fiฬcil,gno,l{ema,uir},nero,r{ecto,igir},s{co,enฬo,fraz},v{a,ino}},o{ble,ce,lor,mingo,n{,ar},r{ado,mir,so},s{,is}},r{agoฬn,oga},u{cha,da,e{lo,nฬo},lce},uฬo,u{que,r{ar,eza,o}}} eฬbano e{brio,c{har,o,uador},d{ad,i{cioฬn,ficio,tor},ucar},f{ecto,icaz},je{,mplo},l{e{fante,gir,mento,var},ipse}} eฬlite e{l{ixir,ogio,udir},m{budo,itir,ocioฬn,p{ate,enฬo,leo,resa}},n{ano,c{argo,hufe,iฬa},e{migo,ro},f{ado,ermo},ganฬo,igma,lace,orme,redo,s{ayo,enฬar},t{ero,rar},v{ase,iฬo}}} eฬpoca e{quipo,rizo,s{c{ala,ena,olar,ribir,udo},encia,f{era,uerzo},p{ada,ejo,iฬa,osa,uma},quiฬ,t{ar,e,ilo,ufa}},t{apa,erno}} eฬtica e{tnia,v{a{dir,luar},ento,itar},x{a{cto,men},c{eso,usa},ento,i{gir,lio,stir}}} eฬxito ex{p{erto,licar,oner},tremo} f{aฬb{rica,ula},achada,aฬcil,a{ctor,ena,ja,l{da,lo,so,tar},m{a,ilia,oso},r{aoฬn,macia,ol,sa},se,tiga,una,vor,x},e{brero,cha,liz,o,r{ia,oz}},eฬrtil,e{rvor,stiฬn},i{a{ble,nza,r},bra,c{cioฬn,ha},deo,e{bre,l,ra,sta},gura,j{ar,o},l{a,ete,ial,tro},n{,ca,gir,ito},rma},l{a{co,uta},echa,o{r,ta},u{ir,jo},uฬor},o{bia,ca,g{ata,oฬn},l{io,leto},ndo,r{ma,ro,tuna,zar},sa,to},r{acaso,aฬgil,a{nja,se,ude},e{iฬr,no,sa},iฬo,ito,uta},u{e{go,nte,rza},ga,mar,n{cioฬn,da},r{goฬn,ia},sil},uฬtbol,uturo} g{a{cela,fas,ita,jo,l{a,eriฬa,lo},mba,n{ar,cho,ga,so},r{aje,za},s{olina,tar},to,vilaฬn},e{m{elo,ir},n},eฬnero,e{n{io,te},r{anio,ente,men},sto},i{gante,mnasio,r{ar,o}},l{aciar,o{bo,ria}},o{l{,fo,oso,pe},ma,r{do,ila,ra},t{a,eo},zar},r{ada,aฬfico,a{no,sa,tis,ve},i{eta,llo,pe,s,to},osor,uฬa,u{eso,mo,po}},u{a{nte,po,rdia},erra,iฬa,i{nฬo,on,so,tarra},s{ano,tar}}} h{aber,aฬbil,a{blar,c{er,ha},da,llar,maca,rina,z{,anฬa}},e{b{illa,ra},cho,l{ado,io},mbra,r{ir,mano}},eฬroe,ervir,ie{lo,rro},iฬgado,i{giene,jo,mno,storia},o{cico,g{ar,uera},ja,mbre,n{go,or,ra},r{a,miga,no},stil,yo},u{e{co,lga,rta,so,vo},i{da,r},mano},uฬmedo,u{m{ilde,o},ndir,r{acaฬn,to}}} i{cono,d{eal,ioma}} iฬdolo i{g{l{esia,uฬ},ual},l{egal,usioฬn},m{agen,aฬn,itar,p{ar,erio,oner,ulso}},ncapaz} iฬndice in{erte,f{iel,orme},genio,icio,m{enso,une},nato,s{ecto,tante},tereฬs} iฬntimo i{n{tuir,uฬtil,vierno},r{a,is,oniฬa},sl{a,ote}} j{a{b{aliฬ,oฬn},moฬn,r{abe,diฬn,ra},ula,zmiฬn},e{fe,ringa},inete,o{r{nada,oba},ven,ya},u{e{rga,ves,z},g{ador,o,uete},icio,n{co,gla,io,tar}},uฬpiter,u{rar,sto,venil,zgar}} k{ilo,oala} l{a{bio,c{io,ra},d{o,roฬn},garto},aฬgrima,a{guna,ico,mer},aฬm{ina,para},an{a,cha,gosta,za},aฬpiz,ar{go,va},aฬstima,ata,aฬtex,a{tir,urel,var,zo},e{al,c{cioฬn,he,tor},er,g{ioฬn,umbre},jano,n{gua,to},nฬa,oฬn,opardo,sioฬn,t{al,ra},ve,yenda},i{b{ertad,ro},cor},iฬder,i{diar,enzo,g{a,ero},ma},iฬmite,i{m{oฬn,pio},n{ce,do}},iฬnea,in{gote,o,terna},iฬquido,i{s{o,ta},t{era,io,ro}},l{a{ga,ma,nto,ve},e{gar,nar,var},o{rar,ver},uvia},o{bo,c{ioฬn,o,ura}},oฬgica,o{gro,m{briz,o},nja,te},u{c{ha,ir},gar,jo,n{a,es},pa,stro,to,z}} m{a{c{eta,ho},d{era,re,uro},estro,fia,g{ia,o},iฬz,l{dad,eta,la,o},m{aฬ,bo,ut},n{co,do,ejar,ga,iquiฬ,jar,o,so,ta},nฬana,pa},aฬquina,ar{,co,ea,fil,gen,ido},aฬrmol,a{r{roฬn,tes,zo},sa},aฬscara,a{sivo,t{ar,eria,iz,riz}},aฬximo,a{yor,zorca},e{cha,d{alla,io}},eฬdula,e{j{illa,or},l{ena,oฬn},moria,n{or,saje,te,uฬ},r{cado,engue}},eฬrito,e{s{,oฬn},t{a,er}},eฬtodo,e{tro,zcla},i{e{do,l,mbro},ga,l{,agro,itar,loฬn},mo,n{a,ero}},iฬnimo,i{nuto,ope,rar,s{a,eria,il,mo},t{ad,o}},o{c{hila,ioฬn},d{a,elo},ho,jar,l{de,er,ino},m{ento,ia},n{arca,eda,ja,to},nฬo,r{ada,der,eno,ir,ro,sa,tal},s{ca,trar},tivo,ver},oฬvil,ozo,u{cho,dar,e{ble,la,rte,stra},gre,jer,l{a,eta,ta},ndo,nฬeca,r{al,o}},uฬsculo,us{eo,go},uฬsica,uslo} n{aฬcar,a{cioฬn,dar,ipe,r{anja,iz,rar},sal,t{al,ivo,ural}},aฬusea,av{al,e,idad},ecio,eฬctar,e{g{ar,ocio,ro},oฬn,rvio,to,utro,v{ar,era}},i{cho,do,e{bla,to},nฬ{ez,o}},iฬtido,ivel,o{bleza,che},oฬmina,o{r{ia,ma,te},t{a,icia},v{ato,ela,io}},u{be,ca},uฬcleo,u{d{illo,o},e{ra,ve,z},lo},uฬmero,utria} o{asis,b{eso,ispo,jeto,r{a,ero},servar,tener,vio},c{a{,so},eฬano,h{enta,o},io,re,t{avo,ubre},u{lto,par,rrir}},di{ar,o,sea},este,f{e{nsa,rta},icio,recer},gro,iฬ{do,r},jo,l{a,eada,fato,ivo,la,mo,or,vido},mbligo,n{da,za},p{aco,cioฬn}} oฬpera op{inar,oner,tar} oฬptica o{puesto,ra{cioฬn,dor,l}} oฬrbita or{ca,den,eja} oฬrgano o{r{g{iฬa,ullo},i{ente,gen,lla},o,questa,uga},s{adiฬa,curo,ezno,o,tra},t{onฬo,ro},veja} oฬ{vulo,xido} o{xiฬgeno,yente,zono} p{a{cto,dre,ella},aฬgina,a{go,iฬs},aฬjaro,al{abra,co,eta},aฬlido,a{l{ma,oma,par},n{,al}},aฬnico,a{ntera,nฬuelo,p{aฬ,el,illa},quete,r{ar,cela,ed,ir,o}},aฬrpado,arque,aฬrrafo,a{rte,s{ar,eo,ioฬn,o,ta},t{a,io,ria},u{sa,ta},vo,yaso},e{atoฬn,c{ado,era,ho},d{al,ir},gar,ine,l{ar,danฬo,ea,igro,lejo,o,uca},n{a,sar},nฬoฬn,oฬn,or,pino,quenฬo,r{a,cha,der,eza,fil,ico,la,miso,ro,sona},s{a,ca}},eฬsimo,estanฬa,eฬtalo,e{troฬleo,z{,unฬa}},i{c{ar,hoฬn},e{,dra,rna,za},jama,l{ar,oto},mienta,n{o,tor,za},nฬa,ojo,pa,rata,s{ar,cina,o,ta},toฬn,zca},l{a{ca,n,ta,ya,za},e{ito,no},omo,u{ma,ral}},o{bre,co,d{er,io},e{ma,siฬa,ta},l{en,iciฬa,lo,vo},m{ada,elo,o,pa},ner,r{cioฬn,tal},s{ada,eer,ible,te},t{encia,ro},zo},r{ado,e{coz,gunta,mio,nsa,so,vio},imo,iฬncipe,i{sioฬn,var},o{a,bar,ceso,ducto,eza,fesor,grama,le,mesa,nto,pio},oฬximo,ueba},uฬblico,u{chero,dor,e{blo,rta,sto},l{ga,ir,moฬn,po,so},ma,nto,nฬ{al,o},p{a,ila},reฬ}} qu{e{dar,ja,mar,rer,so},ieto,iฬmica,i{nce,tar}} r{aฬbano,a{b{ia,o},cioฬn,dical,iฬz,m{a,pa},n{cho,go},paz},aฬpido,a{pto,s{go,pa},to,yo,z{a,oฬn}},e{a{ccioฬn,lidad},b{anฬo,ote},c{aer,eta,hazo,oger,reo,to,urso},d{,ondo,ucir},f{lejo,orma,raฬn,ugio},g{alo,ir,la,reso},heฬn,ino,iฬr,ja,l{ato,evo,ieve,leno,oj},m{ar,edio,o},n{cor,dir,ta},p{arto,etir,oso,til},s{,cate,ina,peto,to,umen},t{iro,orno,rato},unir,v{eฬs,ista},y,zar},i{co,e{go,nda,sgo},fa},iฬgido,i{gor,ncoฬn,nฬoฬn},iฬo,i{queza,sa,t{mo,o},zo},o{ble,c{e,iar},d{ar,eo,illa},er,j{izo,o},m{ero,per},n{,co,da},p{a,ero},s{a,ca,tro},tar},u{b{iฬ,or},do,eda,gir,i{do,na},l{eta,o},m{bo,or},ptura,t{a,ina}}} s{aฬbado,a{b{er,io,le},car,g{az,rado},l{a,do,ero,ir,moฬn,oฬn,sa,to,ud,var},mba,n{cioฬn,diฬa,ear,gre,idad,o,to},po,que,r{dina,teฬn},stre,taฬn,una,xofoฬn},e{c{cioฬn,o,reto,ta},d,guir,is,l{lo,va},m{ana,illa},n{da,sor},nฬ{al,or},p{arar,ia},quiฬa,r{,ie,moฬn,vir},s{enta,ioฬn},t{a,enta},vero,x{o,to}},i{dra,e{sta,te},g{lo,no}},iฬlaba,il{bar,encio,la},iฬmbolo,i{mio,rena,stema,t{io,uar}},o{bre,cio,dio,l{,apa,dado,edad}},oฬlido,o{l{tar,ucioฬn},mbra,n{deo,ido,oro,risa},p{a,lar,orte},r{do,presa,teo},steฬn},oฬtano,u{ave,bir,ceso,dor,e{gra,lo,nฬo,rte},frir,jeto,ltaฬn,mar,p{erar,lir,oner,remo},r{,co,enฬo,gir},sto,til}} t{a{b{aco,ique,la,uฬ},c{o,to},jo,l{ar,co,ento,la,oฬn},m{anฬo,bor},n{go,que},p{a,ete,ia,oฬn},quilla,r{de,ea,ifa,jeta,ot,ro,ta},tuaje,uro,z{a,oฬn}},e{atro,c{ho,la}},eฬcnica,e{j{ado,er,ido},l{a,eฬfono},m{a,or,plo},n{az,der,er,is,so},oriฬa,r{apia,co}},eฬrmino,e{r{nura,ror},s{is,oro,tigo},tera,xto,z},i{b{io,uroฬn},e{mpo,nda,rra,so},gre,jera,lde,mbre},iฬmido,i{mo,nta},iฬ{o,pico},i{po,r{a,oฬn},taฬn},iฬt{ere,ulo},iza,o{alla,billo,c{ar,ino},do,ga,ldo,mar,n{o,to},p{ar,e},que},oฬrax,o{r{ero,menta,neo,o,pedo,re,so,tuga},s{,co,er}},oฬxico,r{a{bajo,ctor,er},aฬfico,a{go,je,mo,nce,to,uma,zar},eฬbol,e{gua,inta,n,par,s},i{bu,go,pa,ste,unfo},o{feo,mpa,nco,pa,te,zo},u{co,eno,fa}},u{b{eriฬa,o},erto,m{ba,or}},uฬn{el,ica},u{r{bina,ismo,no},tor}} ubicar uฬlcera u{mbral,n{i{dad,r,verso},o,tar},nฬa,r{b{ano,e},gente,na},s{ar,uario}} uฬtil u{topiฬa,va} v{a{c{a,iฬo,una},g{ar,o},ina,jilla,le},aฬlido,al{le,or},aฬlvula,a{mpiro,r{a,iar,oฬn},so},e{c{ino,tor},hiฬculo,inte,jez,l{a,ero,oz},n{a,cer,da,eno,gar,ir,ta,us},r{,ano,bo,de,eda,ja,so,ter}},iฬa,i{aje,brar,cio},iฬctima,ida,iฬdeo,i{drio,e{jo,rnes},gor,l{,la},n{agre,o},nฬedo,oliฬn,r{al,go,tud},sor},iฬspera,i{sta,tamina,udo,v{az,ero,ir,o}},o{l{caฬn,umen,ver},raz,t{ar,o},z},u{elo,lgar}} y{a{cer,te},e{gua,ma,rno,so},o{do,g{a,ur}}} z{a{firo,nja,pato,rza},o{na,rro},u{mo,rdo}} ;;
zh_CN) echo ็ ไธ ๆฏ ๅจ ไธ ไบ ๆ ๅ ไบบ ่ฟ ไธญ ๅคง ไธบ ไธ ไธช ๅฝ ๆ ไปฅ ่ฆ ไป ๆถ ๆฅ ็จ ไปฌ ็ ๅฐ ไฝ ๅฐ ไบ ๅบ ๅฐฑ ๅ ๅฏน ๆ ไผ ๅฏ ไธป ๅ ๅนด ๅจ ๅ ๅทฅ ไน ่ฝ ไธ ่ฟ ๅญ ่ฏด ไบง ็ง ้ข ่ ๆน ๅ ๅค ๅฎ ่ก ๅญฆ ๆณ ๆ ๆฐ ๅพ ็ป ๅ ไธ ไน ่ฟ ็ ็ญ ้จ ๅบฆ ๅฎถ ็ต ๅ ้ ๅฆ ๆฐด ๅ ้ซ ่ช ไบ ็ ่ตท ๅฐ ็ฉ ็ฐ ๅฎ ๅ ้ ้ฝ ไธค ไฝ ๅถ ๆบ ๅฝ ไฝฟ ็น ไป ไธ ๆฌ ๅป ๆ ๆง ๅฅฝ ๅบ ๅผ ๅฎ ๅ ่ฟ ๅ ็ฑ ๅ
ถ ไบ ็ถ ๅ ๅค ๅคฉ ๆฟ ๅ ๆฅ ้ฃ ็คพ ไน ไบ ๅนณ ๅฝข ็ธ ๅ
จ ่กจ ้ด ๆ ท ไธ ๅ
ณ ๅ ้ ๆฐ ็บฟ ๅ
ๆฐ ๆญฃ ๅฟ ๅ ไฝ ๆ ็ ๅ ๅ ไน ๅฉ ๆฏ ๆ ไฝ ่ดจ ๆฐ ็ฌฌ ๅ ้ ๅฝ ๆญค ๅ ๆก ๅช ๆฒก ็ป ่งฃ ้ฎ ๆ ๅปบ ๆ ๅ
ฌ ๆ ็ณป ๅ ๅพ ๆ
่
ๆ ็ซ ไปฃ ๆณ ๅทฒ ้ ๅนถ ๆ ็ด ้ข ๅ
็จ ๅฑ ไบ ๆ ๆ ่ฑก ๅ ้ฉ ไฝ ๅ
ฅ ๅธธ ๆ ๆป ๆฌก ๅ ๅผ ๆดป ่ฎพ ๅ ็ฎก ็น ไปถ ้ฟ ๆฑ ่ ๅคด ๅบ ่ต ่พน ๆต ่ทฏ ็บง ๅฐ ๅพ ๅฑฑ ็ป ๆฅ ็ฅ ่พ ๅฐ ็ป ่ง ่ฎก ๅซ ๅฅน ๆ ่ง ๆ ๆ น ่ฎบ ่ฟ ๅ ๆ ๅ ไน ๅบ ๅผบ ๆพ ๅณ ่ฅฟ ่ขซ ๅนฒ ๅ ๅฟ
ๆ ๅ
ๅ ๅ ไปป ๅ ๆฎ ๅค ้ ๅ ็ป ่ฒ ๅ
้จ ๅณ ไฟ ๆฒป ๅ ้ ็พ ่ง ็ญ ้ข ไธ ๆตท ๅฃ ไธ ๅฏผ ๅจ ๅ ๅฟ ไธ ้ ๅข ไบ ๆต ้ถ ๆฒน ๆ ๆฏ ๆ ไบค ๅ ่ ไป ่ฎค ๅ
ญ ๅ
ฑ ๆ ๆถ ่ฏ ๆน ๆธ
็พ ๅ ้ ่ฝฌ ๆด ๅ ้ฃ ๅ ๆ ็ฝ ๆ ้ ่ฑ ๅธฆ ๅฎ ๅบ ่บซ ่ฝฆ ไพ ็ ๅก ๅ
ท ไธ ๆฏ ็ฎ ่ณ ่พพ ่ตฐ ็งฏ ็คบ ่ฎฎ ๅฃฐ ๆฅ ๆ ๅฎ ็ฑป ๅ
ซ ็ฆป ๅ ๅ ็กฎ ๆ ็ง ๅผ ไฟก ้ฉฌ ่ ่ฏ ็ฑณ ๆด ็ฉบ ๅ
ๅต ไป ้ ๆธฉ ไผ ๅ ่ฎธ ๆญฅ ็พค ๅนฟ ็ณ ่ฎฐ ้ ๆฎต ็ ็ ๆ ๆ ๅพ ๅซ ไธ ็ฉถ ่ง ่ถ ็ป ่ฃ
ๅฝฑ ็ฎ ไฝ ๆ ้ณ ไผ ไนฆ ๅธ ๅค ๅฎน ๅฟ ้กป ้
ๅ ้ ้ช ่ฟ ๆญ ๆทฑ ้พ ่ฟ ็ฟ ๅ ๅจ ๅง ็ด ๆ ๅค ๅ ๅ ้ ็ ๅ ไน ๅ ็บฆ ๆฏ ่ฌ ๅฒ ๆ ๅณ ไพฟ ๅข ๅพ ้
ธ ๅ ๅธ ๅ
ไฝ ้ค ๆถ ๆ ๅบ ็งฐ ๅคช ๅ ็ฒพ ๅผ ๅท ็ ๆ ็ปด ๅ ้ ๆ ๅ ๅญ ๅ ๆฏ ไบฒ ๅฟซ ๆ ๆฏ ้ข ๆฅ ๆฑ ๅ ็ผ ็ ๆ ๆ ผ ๅ
ป ๆ ็ฝฎ ๆดพ ๅฑ ็ ๅง ๅด ไธ ็ถ ่ฒ ๅ ไบฌ ่ฏ ้ ๅฑ ๅ ๅ
็ซ ไฝ ่ฐ ๆปก ๅฟ ๅฑ ็
ง ๅ ็บข ็ป ๅผ ๅฌ ่ฏฅ ้ ไปท ไธฅ ้ฆ ๅบ ๆถฒ ๅฎ ๅพท ้ ็
่ ๅคฑ ๅฐ ๆญป ่ฎฒ ้
ๅฅณ ้ป ๆจ ๆพ ่ฐ ็ฝช ็ฅ ่บ ๅข ๅธญ ๅซ ไผ ๆ ๅฏ ๆน ่ฅ ้กน ้ฒ ไธพ ็ ่ฑ ๆฐง ๅฟ ๅ ๆ ๅฐ ่ฝ ๆจ ๅธฎ ่ฝฎ ็ ด ไบ ๅธ ๅด ๆณจ ่ฟ ๅญ ๆ ๆ ไพ ๆฒณ ๆ ๅฐ ๅฆ ๆฝ ๅ ๆ ๆบถ ๆ ๆญข ๆก ่จ ๅฃซ ๅ ๆญฆ ๅบ ๅถ ้ฑผ ๆณข ่ง ไป
่ดน ็ดง ็ฑ ๅทฆ ็ซ ๆฉ ๆ ๅฎณ ็ปญ ่ฝป ๆ ่ฏ ้ฃ ๅ
ๅ
ต ๆบ ๅค ๆค ๅธ ่ถณ ๆ ็ป ๅทฎ ่ด ๆฟ ็ฐ ้ ้ป ็ฏ ่ด ๅป ่ ็ปง ๅ
ด ไผผ ไฝ ๅ ๆฒ ่พ ไฟฎ ๆ
ๅ ๅคซ ๅค ้ ็ฌ ่น ๅ ๅณ ่ดข ๅ ๅฏ ๆฅ ่ ่ง ๆฑ ็ป ๅ ๅทด ่ท ่ฝ ๆ ้ฃ ๆฃ ๅธ ๅฉ ๅ ้ณ ไบ ๅ ๅ ๆ ่ ๆ ๅ ็ญ ๅค ๅพ ๆข ๆช ่ท ็ ้ข ๆพ ็ซฏ ่ดฃ ็ซ ็ฎ ่ฟฐ ้ฑ ๅฏ ๅฐฝ ๅธ ๅฐ ่ ๅฒ ๆฟ ็ฌ ไปค ้ ้ฟ ๅฎฃ ็ฏ ๅ ่ฏท ่ถ
ๅพฎ ่ฎฉ ๆง ๅท ่ฏ ่ฝด ๆพ ๅฆ ็บช ็ ไพ ไผ ้กถ ็ก ่ฝฝ ๅ ๆฟ ็ช ๅ ็ฒ ๆ ็ฅ ๅฎข ่ข ๅท ่ ็ป ๆ ๅ ๅ ๆต ไธ ๅ ่ฏ ๅฟต ้ ไป ็ฝ ็ ๅ ๆด ้ ่ฆ ๅค ๅ ็งป ้ข ้ ้ ๆทท ๆฏ ็ญ ็ฎ ็ป ่ ๆฑฝ ๆ ไบ ๅช ๆข ่ท ๅซ ๅ ็ ๅคฎ ๅฏ ็ง ่ฟ
ๅข ่ฅ ๅฐ ๆดฒ ๅป ๆฌ ๆฟ ๅญ ๆ ็ ๅฎค ๅพ
ๆ ธ ๆ ก ๆฃ ไพต ๅง ็ฒ ๆธธ ไน
่ ๅณ ๆง ๆจก ๆน ่ดง ๆ ้ข ้ป ๆฏซ ๆฎ ็จณ ไน ๅฆ ๆค ๆฏ ๆฉ ้ถ ่ฏญ ๆฅ ้
ๅฎ ๆฟ ๅบ ็บธ ๅป ็ผบ ้จ ๅ ้ ๅ ๅ ๆฅ ๅฑ ่ฏฏ ่ฎญ ๆฟ ๅฎก ้ ่ท ่ถ ้ฒ ็ฒฎ ๆค ๅญฉ ่ฑ ็กซ ่ฅ ๅ ้พ ๆผ ็ถ ๆธ ่ก ๆฌข ๆขฐ ๆ ๆญ ๆฒ ๅ ๆป ่ฐ ็พ ่ฎจ ๆ ็ฒ ไนฑ ็ ็ ไน ๆ ่ฏ ๅฎ ้ฒ ่ดต ้ ็
ค ่ฏป ็ญ ไผฏ ้ฆ ไป ่ฟซ ๅฅ ไธฐ ๅน ๆก ๅ
ฐ ๆ
ๅผฆ ่ ๆฒ ๅ ็ฉฟ ๆง ็ญ ไน ่ฐ ้กบ ็ ็ผฉ ๅพ ่ธ ๅ ๆพ ่ ๅฐ ๅผ ๅ
่ ๆ ็ฆ ไนฐ ๆ ไบ ๆฆ ๆ
ข ๆ ็ฃ ๅ ็ฅ ็ ไฟ ้ ่กฅ ่ฏ ็ฟป ่ ่ทต ๅฐผ ่กฃ ๅฎฝ ๆฌ ๆฃ ๅธ ไผค ๆ ๅ ็ง ๅฎ ๆฐข ๅฅ ็ฃ ๆฏ ๆถ ไบฎ ๆซ ๅฎช ๅบ ็ผ ็ ่งฆ ๆ ้ท ้ ่ฏ ๅบง ๅฑ
ๆ ่ฃ ่ ๅผ ๅจ ๆฏ ๅจ ็ปฟ ๆถ ๅ ็ ่กก ้ธก ๅญ ๅปถ ๅฑ ่ถ ๅฑ ไนก ไธด ้ ้กพ ๆ ๅ ็ฏ ๅฒ ๆช ๆ ่ ๅง ็ ่ตต ่ทณ ๅฅ ๅญฃ ่ฏพ ๅฏ ่ก ้ข ๆฌพ ็ป ๅท ้ฝ ไผ ่ธ ๆฎ ๆฐธ ๅฎ ่ ๅท ็ ๅฒฉ ๅผฑ ้ถ ๆจ ๅฅ ๆฒฟ ้ฒ ๆ ๆข ๆป ้ ้ฅญ ๆต ่ช ๆ ่ตถ ๅบ ๅคบ ไผ ็ต ็จ ้ ็ญ ่ต ๅฝ ๅฌ ้ผ ๆญ ็ ่ฃ ้ฉ ๅบท ๅฏ ๅฝ ่ ็บฏ ๅ ็ณ ็ ๆจช ็ฌฆ ็ง ๅช ๅ ๅ ๆช ๆถฆ ๅน
ๅ ็ซ ็ ่ซ ๆณฝ ่ ๅฃค ็ขณ ๆฌง ้ ไพง ๅฏจ ๆข ๅฝป ่ ๆ ่ ๅบญ ็บณ ๅผน ้ฅฒ ไผธ ๆ ้บฆ ๆนฟ ๆ ่ท ็ฆ ๅก ๅบ ็ญ ๆถ ๆท ่ฎฟ ๅก ๅฅ ้ ๆข ๅ ๆ ่ฟน ๅก ๆฐฏ ้ ไปฝ ๆฏ ๆณฅ ้ ๆด ๆ ็ฐ ๅฝฉ ๅ ่ ๅค ๆฉ ๅฟ ้ ็ฎ ็กฌ ไบ ็น ๅ ้ช ๅฝ ไบฆ ๆฝ ็ฏ ้ต ้ด ไธ ๅฐบ ่ฟฝ ๅ ้ ่ฟ ๆณ ็ธ ๆฅผ ้ฟ ่ฐ ๅจ ้ ็ช ๆ ็ดฏ ๅ ๅ
ธ ้ฆ ็ดข ็งฆ ่ ๆฝฎ ็ท ่ฑ ๅฟฝ ๆ ๆ ๅก ้ ๆ ๆฑ ๆฟ ็บค ็ฒ ๅพ ๅฐ ็ ๆฅ ่ฐข ๅฅ ่ดญ ็ฃจ ๅ ๆฑ ๆ ็ข ้ชจ ็ ๆ ๅผ ๆด ๅฒ ่ดฏ ๆฎ ้ ่ฏ ไบก ๅฃ ้กฟ ๅฎ ๅ ๅฐ ้ป ๆญ ็ฎ ๆฎ ๅฌ ๆกฅ ๅฆ ่ญฆ ็ปผ ๆ ๅด ไป ๆตฎ ้ญ ๅพ ๆจ ๆ ่ฐท ่ต ็ฎฑ ้ ่ฎข ็ท ๅน ๅญ ็บท ๅ ่ดฅ ๅฎ ็ป ๅทจ ่ ๅฆ ่ฃ ้ญ ๆนพ ้ฎ ๅก ้ฉป ้
ๆ ๆฉ ๅฅ ๅ ็ขฑ ้ฝฟ ๆช ็ผ ้บป ็บบ ็ฆ ๅบ ็ ็ ็ผ ๅ ็ ๆ ๅฉ ๆถ ็ญ ๅด ๆ ๅฒธ ๆ ๅบ ่ก ่ ๅง ่ดธ ่
ๅฅด ๅฆ ๆฏ ไน ไผ ๆข ๅ ็บฑ ๆ ่พฉ ่ณ ๅฝช ่ฃ ไบฟ ็ ๆต ่ ็ง ่จ ไฟ ็ฝ ่ ๅบ ๅท ็บต ๅฏธ ๆฑ ๆ ๆดช ่ดบ ้ช ๆฌ ็ ็ฏ ๆดฅ ็จป ๅข ่ฝฏ ๅ ๅ ๆป ๅ ่ ่ณ ่ฏ ๅก ๆฑ ่ก ่
ฟ ไปช ๆ
ๅฐพ ่ฝง ๅฐ ่ดก ็ป ้ป ๅ ้ป ๅ ้ ้ ๆฐจ ้ญ ๅณฐ ๅธ ๆธฏ ไผ ่ฝจ ไบฉ ๆฏ ๆฆ ่ซ ๅบ ๆตช ็ง ๆด ๆ ช ๅฅ ๅฎ ่ก ๅฒ ็ ๆณก ็ก ็ซฅ ้ธ ๆฑค ้ ไผ ๆฑ ่ ็ง ็ป ็ธ ๅฒ ็ฃท ็ปฉ ๆ ๆทก ๅฐ ๅฏ ้ท ๆด ๅ ๅพ ้ข ๆณช ็จ ๅฟ ๆณต ่ ๆ ๆด ๆ ้ ่พ ๅฃฎ ้ ่ดซ ่ ๅผฏ ๆฉ ๆณฐ ๅนผ ๅปท ๅฐ ็ช ็บฒ ๅผ ้ถ ็ ๆฐ ๅฎซ ๅง ้ ็ ๆช ๅฐค ็ด ๅพช ๆ ่ ่ฟ ๅคน ่
ฐ ็ผ ็ ็ฉท ๆฃฎ ๆ ็ซน ๆฒ ๅฌ ็ปณ ๅฟ ้ฆ ๅฉ ๅนธ ๆต ๆ ๆฅ ็ ่ดฎ ็คผ ๆปค ้ ็บน ็ฝข ๆ ๅฑ ๅ ่ข ๅ ๅค ็ฝ ็ฆ ๆฝ ไผ ๅขจ ๆฌฒ ็ผ ๅง ๅ ้ฅฑ ไปฟ ๅฅ ้ ้ฌผ ไธฝ ่ทจ ้ป ๆ ้พ ๆซ ๅ ่ข ็ญ ๆฑก ๅน ่ฏธ ๅผง ๅฑ ๆข
ๅฅถ ๆด ็พ ่ ้ด ่ฏ ่ฎผ ๆฑ ๆฏ ๆ ๅฏ ๆบ ๅ ๅฏ ๅฑ ่ท ๆธก ๆ ไธน ่ฐ ่ด ็ขฐ ๆ ็น ๆด ็ ๆขฆ ่ฝ ็ ่ตค ๆธ ๅญ ๆฌ ้ข ๅฅ ้
ไปฒ ่ ็จ ๅฆน ไน ็ ็ณ ๆก ้ต ๅ
้ ่บ ไป ้ญ ้ ๆ ๆฐฎ ๅ
ผ ้ ็ข ่ตซ ๆจ ๅฟ ่ ็ผธ ็ต ๆข ๅ ๅทง ๅฃณ ๅ
ๆ ่ฎฏ ่ฏ ็ขง ็ฅฅ ๆฏ ้กต ๅทก ็ฉ ๆฒ ็ ้พ ไผฆ ็ฅจ ๅฏป ๆก ้บ ๅฃ ๆ ๆฐ ้ ่ถฃ ๆฌ ่ ่
พ ่ดด ๆ ๆปด ็ ้ ่พ ๅฆป ๅกซ ๆค ๅจ ็ญพ ้น ๆฐ ็ดซ ็ ้ ๆ ๅ ้ถ ไผ ๅ ็ ็ถ ๅฉ ๆ ่ ๆธ ๅฟ ่พ ่ก ้ป ่ธ ๅทฉ ๆค ๅถ ๅผ ๆงฝ ๅฒ ไนณ ้ ๅ ไป ็ ็ ็ง ไน ่ฐ ไผด ็ ๆต
ไธ ๆ ็ฅ ๆฉก ๆณ ่ฟท ๆ ็ ็งง ่ ่ฏฆ ็ฐง ่ธ ็ท ่ฐฑ ๅ ๅฎพ ็ณ ๆด ่พ ๆค ็ซ ้ ๆ ็ฒ ไน ็ปช ่ฉ ็ฑ ๆ ๆถ ็ ็ ไพฆ ๆฌ ๆ ไบซ ็บ ้ ็ ้ ๆท ๆจ ็ฒ ้ธ ็ฌ ่ต ้ ็ฉ ้ต ็ฅ ็ง ๆต ่ฒ ๅฝน ๅฝผ ๆ ้ธญ ่ถ ๅค ๆจ ็ ่พ ็งฉ ๅต ็ฝฒ ๆขฏ ็ ๆปฉ ๆฃ ้ฉฑ ็ญ ๅณก ๅ ๅฅ ๅฏฟ ่ฏ ๆตธ ๆณ ๅธฝ ่ฟ ็ก
็ ่ดท ๆผ ็จฟ ๅ ๅซฉ ่ ่ฏ ็ข ๅ ่ ๅฅฅ ้ธฃ ๅฒญ ็พ ๅญ ไธฒ ๅก ็ป ้
ต ่ ็ ้ก ๅบ ็ญน ๅป ่พ
ๆ ่ขญ ็ญ ๆ ๅ ๆฑ ้พ ้ธ ๆผ ๆฒ ็ ็ ๆทป ๆฃ ็ฉ ็ก ้ฉ ้ผ ๆญ ไพจ ๅ ๆบ ็ข ๆ ฝ ็ ๆฏ ๆฃ ้ฆ ๅ ่ฑช ่พฝ ๅ ้ธฟ ๆฆ ๅ ๆ ็ ๅ ่พ ๆฉ ้ฅฎ ๆฌ ้ช ่พ ๅพ ๆฃ ไผฐ ่ ็ป ้พ ไธ ๆต ๅง ๆ ๅฎ ่พ ้ ้ ๅฟ ่ ๅด ๅช ๅก ๅ
ๅฌ ้ฉถ ่ฏ ๅท ๆฅ ็ช ่ต ๅฅ ไฝ ๆต ๆผซ ๆผ ๆ ้ ๆก ๆถ ไป ่ฟ ไฟ ไบ ่
้ ๆฃฑ ่ฆ ๆก ๆ ๅ ๆ ้ช ๅ ๆบ ๆฒธ ๅญค ๅ ๅญ ๆธ ๅฑ ็พ ๅฆ ๆ ไปฐ ็ ่ ่ฐ ๆ ้ ๆก ๅฒ ๅ ่กฐ ็ ๆธ ่ ่ต ๆถ ็ ๆน ้
่ ๅฉ ๅ ็ ็บฌ ๆฏ
ๆจ ไผช ็ ็
ฎ ๅน ้ ๆญ ่ ็ฌผ ้
ท ๅท ๅผ ้ฅ ๆ ๆฐ ๅ ้ผป ็ฟผ ็บถ ๅ ็ฑ ้ฎ ็ฝ ็ป ๆฃ ๆ ่จ ่ฌ ๅฏบ ้ชค ็ฉ ๅถ ๆฏ ๅ ๅฐธ ๅธ ็ป
ๅฏ ็บ ็ฐ ่ฝฐ ๆฌฃ ๆ ็ฆ ๅพก ้ญ ้ฆ ไธง ๆฌ ้ป ๅ ๆ ๆ ้ ไบญ ้
ฏ ่ฟ ่ ่ ้
ถ ้ฒ ๅฟง ้
้กฝ ็พฝ ๆถจ ๅธ ไป ้ช ่พ ๆฉ ๆญ ๅง ่ ๆ ้ฃ ๆผ ๆ ๆฌบ ๅพ ้ ็ท ๆฑ ๅต ้ฅฐ ่ง ้
้ฎ ่ฟ ็ ๆ ๅงป ่ตด ๅฎด ็ฆ ๅบ ๅธ ๆ ้ ๆจ ้ ่ฃ ้ฅผ ้ ๅงฟ ๆ ๅ
่
น ๅฆฅ ๆ ่ดค ๆ ๆญช ่ก ่บ ไธข ๆตฉ ๅพฝ ๆ ๅซ ๆก ่ง ่ดช ๆ
ฐ ็ผด ๆฑช ๆ
ๅฏ ่ฏบ ๅง ่ฐ ๅถ ๅฃ ่ฏฌ ่ ๆ ่บบ ็ ้ช ไน ๆบช ไธ ๅข ๆน ้ท ๅจ ๅฎ ้ฉพ ็ผ ๆ ๆ ้ ๆท ้ข ๅนป ๆ ๆ ๆจ ไฝณ ไป ่
็ช ๆถค ๅ ็ง ๅ ก ๆณผ ่ฑ ็ฝฉ ้ ๆ ่ ่ ๆปจ ไฟฉ ๆ
ๆน ็ ้ ้ต ่ ็ฏ ๆทฎ ้ ็ ็ฒช ็ ๅฎฟ ๆกฃ ๆ ้ฉณ ๅซ ่ฃ ๅพ ็ฎญ ๆ ่ ๆ ๆ ่พจ ๆฎฟ ่ฒ ๆ ๆ
้
ฑ ๅฑ ็ซ ๅ ่ก ๅ ต ๆฒซ ็ฑ ็
ๅ ้ ่ฑ ๆฒ ่พ ้ฉ ็ ๅ ๅทท ้ฅฟ ็ฅธ ไธ ็ ๆบ ๆฐ ้ป ๅฝญ ๅฐ ๅฟ ๅฆจ ่ ๅ ้ฆ ๆจ ็ฎ ๆญ ;;
zh_TW) echo ็ ไธ ๆฏ ๅจ ไธ ไบ ๆ ๅ ไบบ ้ ไธญ ๅคง ็บ ไธ ๅ ๅ ๆ ไปฅ ่ฆ ไป ๆ ไพ ็จ ๅ ็ ๅฐ ไฝ ๅฐ ๆผ ๅบ ๅฐฑ ๅ ๅฐ ๆ ๆ ๅฏ ไธป ็ผ ๅนด ๅ ๅ ๅทฅ ไน ่ฝ ไธ ้ ๅญ ่ชช ็ข ็จฎ ้ข ่ ๆน ๅพ ๅค ๅฎ ่ก ๅญธ ๆณ ๆ ๆฐ ๅพ ็ถ ๅ ไธ ไน ้ฒ ่ ็ญ ้จ ๅบฆ ๅฎถ ้ป ๅ ่ฃก ๅฆ ๆฐด ๅ ้ซ ่ช ไบ ็ ่ตท ๅฐ ็ฉ ็พ ๅฏฆ ๅ ้ ้ฝ ๅ
ฉ ้ซ ๅถ ๆฉ ็ถ ไฝฟ ้ป ๅพ ๆฅญ ๆฌ ๅป ๆ ๆง ๅฅฝ ๆ ้ ๅฎ ๅ ้ ๅ ็ฑ ๅ
ถ ไบ ็ถ ๅ ๅค ๅคฉ ๆฟ ๅ ๆฅ ้ฃ ็คพ ็พฉ ไบ ๅนณ ๅฝข ็ธ ๅ
จ ่กจ ้ ๆจฃ ่ ้ ๅ ้ ๆฐ ็ท ๅ
ง ๆธ ๆญฃ ๅฟ ๅ ไฝ ๆ ็ ๅ ๅ ้บผ ๅฉ ๆฏ ๆ ไฝ ่ณช ๆฐฃ ็ฌฌ ๅ ้ ๅฝ ๆญค ่ฎ ๆข ๅช ๆฒ ็ต ่งฃ ๅ ๆ ๅปบ ๆ ๅ
ฌ ็ก ็ณป ่ป ๅพ ๆ
่
ๆ ็ซ ไปฃ ๆณ ๅทฒ ้ ไธฆ ๆ ็ด ้ก ้ปจ ็จ ๅฑ ไบ ๆ ๆ ่ฑก ๅก ้ฉ ไฝ ๅ
ฅ ๅธธ ๆ ็ธฝ ๆฌก ๅ ๅผ ๆดป ่จญ ๅ ็ฎก ็น ไปถ ้ท ๆฑ ่ ้ ญ ๅบ ่ณ ้ ๆต ่ทฏ ็ด ๅฐ ๅ ๅฑฑ ็ตฑ ๆฅ ็ฅ ่ผ ๅฐ ็ต ่ฆ ่จ ๅฅ ๅฅน ๆ ่ง ๆ ๆ น ่ซ ้ ่พฒ ๆ ๅนพ ไน ๅ ๅผท ๆพ ๆฑบ ่ฅฟ ่ขซ ๅนน ๅ ๅฟ
ๆฐ ๅ
ๅ ๅ ไปป ๅ ๆ ่ ้ ๅ ็ตฆ ่ฒ ๅ
้ ๅณ ไฟ ๆฒป ๅ ้ ็พ ่ฆ ็ฑ ้ ไธ ๆตท ๅฃ ๆฑ ๅฐ ๅจ ๅฃ ๅฟ ไธ ้ ๅข ็ญ ๆฟ ้ ๆฒน ๆ ่ก ๆฅต ไบค ๅ ่ฏ ไป ่ช ๅ
ญ ๅ
ฑ ๆฌ ๆถ ่ญ ๆน ๆธ
็พ ๅ ๆก ่ฝ ๆด ๅฎ ้ขจ ๅ ๆ ็ฝ ๆ ้ ่ฑ ๅธถ ๅฎ ๅ ด ่บซ ่ป ไพ ็ ๅ ๅ
ท ่ฌ ๆฏ ็ฎ ่ณ ้ ่ตฐ ็ฉ ็คบ ่ญฐ ่ฒ ๅ ฑ ้ฌฅ ๅฎ ้ก ๅ
ซ ้ข ่ฏ ๅ ็ขบ ๆ ็ง ๅผต ไฟก ้ฆฌ ็ฏ ่ฉฑ ็ฑณ ๆด ็ฉบ ๅ
ๆณ ไป ้ ๆบซ ๅณ ๅ ่จฑ ๆญฅ ็พค ๅปฃ ็ณ ่จ ้ ๆฎต ็ ็ ๆ ๆ ๅพ ๅซ ไธ ็ฉถ ่ง ่ถ ็น ่ฃ ๅฝฑ ็ฎ ไฝ ๆ ้ณ ็พ ๆธ ๅธ ๅค ๅฎน ๅ
้ ้ ๅ ้ ้ฉ ้ฃ ๆท ๆทฑ ้ฃ ่ฟ ็คฆ ๅ ้ฑ ๅง ็ด ๆ ๅ ๅ ่พฆ ้ ็ ๅ ็ฟ ้ฟ ็ด ๆฏ ่ฌ ๅฒ ๆ ๅ ไพฟ ๅ ๅพ ้
ธ ๆญท ๅธ ๅ
ไฝ ้ค ๆถ ๆง ๅบ ็จฑ ๅคช ๆบ ็ฒพ ๅผ ่ ็ ๆ ็ถญ ๅ ้ธ ๆจ ๅฏซ ๅญ ๅ ๆฏ ่ฆช ๅฟซ ๆ ๆฏ ้ข ๆฅ ๆฑ ๅ ็ผ ็ ๆ ๆ ผ ้ค ๆ ็ฝฎ ๆดพ ๅฑค ็ ๅง ๅป ๅฐ ็ ่ฒ ๅป ไบฌ ่ญ ้ฉ ๅฑฌ ๅ ๅ
็ซ ไฝ ่ชฟ ๆปฟ ็ธฃ ๅฑ ็
ง ๅ ็ด
็ดฐ ๅผ ่ฝ ่ฉฒ ้ต ๅน ๅด ้ฆ ๅบ ๆถฒ ๅฎ ๅพท ้จ ็
่ ๅคฑ ็พ ๆญป ่ฌ ้
ๅฅณ ้ป ๆจ ้กฏ ่ซ ็ฝช ็ฅ ่ ๅข ๅธญ ๅซ ไผ ๆ ๅฏ ๆน ็ ้
้ฒ ่ ็ ่ฑ ๆฐง ๅข ๅ ๆ ๅฐ ่ฝ ๆจ ๅนซ ่ผช ็ ด ไบ ๅธซ ๅ ๆณจ ้ ๅญ ๆ ๆ ไพ ๆฒณ ๆ
ๅฐ ๅฆ ๆฝ ๆธ ๆจน ๆบถ ๆ ๆญข ๆก ่จ ๅฃซ ๅ ๆญฆ ๅบ ่ ้ญ ๆณข ่ฆ ๅ
่ฒป ็ท ๆ ๅทฆ ็ซ ๆฉ ๆ ๅฎณ ็บ ่ผ ๆ ่ฉฆ ้ฃ ๅ
ๅ
ต ๆบ ๅค ่ญท ๅธ ่ถณ ๆ ็ทด ๅทฎ ่ด ๆฟ ็ฐ ้ ้ป ็ฏ ่ฒ ๆ ่ ็นผ ่ ไผผ ้ค ๅ
ๆฒ ่ผธ ไฟฎ ๆ
ๅ ๅคซ ๅค ้ ็ญ ่น ไฝ ๅณ ่ฒก ๅ ๅฏ ๆฅ ่ท ่ฆบ ๆผข ็ซ ๅ ๅทด ่ท ้ ้ ้ฃ ๆชข ๅธ ๅฉ ๆ ้ฝ ไบ ๅ ๅต ๆ ่ ๆ ๅฃ ็ญ ๅค ๅพ ๆ ๆช ่ท ็ ้ผ ๆพ ็ซฏ ่ฒฌ ็ซ ็ฐก ่ฟฐ ้ข ๅฏ ็ก ๅธ ๅฐ ่ ่ก ๆฟ ็จ ไปค ้ ้ฟ ๅฎฃ ็ฐ ้ ่ซ ่ถ
ๅพฎ ่ฎ ๆง ๅท ่ฏ ่ปธ ๆพ ๅฆ ็ด ็ ไพ ๅช ้ ็ค ่ผ ๅ ๆฟ ็ช ๅ ็ฒ ๆต ็ฅ ๅฎข ่ข ๅท ๅ ็ต ๆ ๅก ๅ ๆธฌ ็ตฒ ๅ ่จด ๅฟต ้ณ ไป ็พ
้นฝ ๅ ๆด ้ฏ ่ฆ ๅค ๅ ็งป ้ ป ้ ้ ๆทท ๆฏ ็ญ ็ฎ ็ต ่ ๆฑฝ ๆ ้ฒ ๅช ๆข ่ท ่ก ๅ ็ ๅคฎ ๅฏ ็ ่ฟ
ๅข ่ฅ ๅฐ ๆดฒ ๅป ๆฌ ๆฟ ๅญ ๆ ็ ๅฎค ๅพ
ๆ ธ ๆ ก ๆฃ ไพต ๅง ็ฒ ้ ไน
่ ๅณ ่ ๆจก ๆน ่ฒจ ๆ ้ ้ป ๆฏซ ๆฎ ็ฉฉ ไน ๅชฝ ๆค ๆฏ ๆด ้ ่ช ๆฎ ้
ๅฎ ๆฟ ๅบ ็ด ้ซ ็ผบ ้จ ๅ ้ ๅ ๅ ๆฅ ๅฑ ่ชค ่จ ้ก ๅฏฉ ้ ็ฒ ่ถ ้ฎฎ ็ณง ๆค ๅญฉ ่ซ ็กซ ่ฅ ๅ ้พ ๆผ ็ถ ๆผธ ่ก ๆญก ๆขฐ ๆ ๆญ ๆฒ ๅ ๆป ่ฌ ็พ ่จ ๆ ็ฒ ไบ ็ ็ ไน ๆฎบ ่ฅ ๅฏง ้ญฏ ่ฒด ้ ็
ค ่ฎ ็ญ ไผฏ ้ฆ ไป ่ฟซ ๅฅ ่ฑ ๅน ๆก ่ญ ๆ ๅผฆ ่ ๆฒ ๅ ็ฉฟ ๅท ็ญ ๆจ ่ชฐ ้ ็
็ธฎ ๅพต ่ ๅ ๆพ ่
ณ ๅฐ ็ฐ ๅ
่ ๆ ็ฆ ่ฒท ๆ ไบ ๆฆ ๆ
ข ๆ ็ฃ ๅ ็ฅ ็ ไฟ ้ ่ฃ ่ฉ ็ฟป ่ ่ธ ๅฐผ ่กฃ ๅฏฌ ๆ ๆฃ ๅธ ๅท ๆ ๅ ็ง ๅฎ ๆฐซ ๅฅ ็ฃ ๆฏ ๆถ ไบฎ ๆซ ๆฒ ๆ
ถ ็ทจ ็ ่งธ ๆ ้ท ้ท ่ฉฉ ๅบง ๅฑ
ๆ ่ฃ ่ ๅผ ๅจ ๆฏ ๅจ ็ถ ๆถ ๅ ็ ่กก ้ ๅญซ ๅปถ ๅฑ ่ ๅฑ ้ ่จ ้ธ ้กง ๆ ๅ ็ ๆญฒ ๆช ๆ ่ ๅ ็ ่ถ ่ทณ ๅฅ ๅญฃ ่ชฒ ๅฑ ่ก ้ก ๆฌพ ็ดน ๅท ้ฝ ๅ ่ธ ๆฎ ๆฐธ ๅฎ ่ ๅท ็ ๅฒฉ ๅผฑ ้ถ ๆฅ ๅฅ ๆฒฟ ้ฒ ๆกฟ ๆข ๆป ้ฎ ้ฃฏ ๆฟ ่ช ๆท ่ถ ๅบซ ๅฅช ไผ ้ ็จ
้ ๆป
่ณฝ ๆญธ ๅฌ ้ผ ๆญ ็ค ่ฃ ้ช ๅบท ๅฏ ้ ่ ็ด ๅ ็ณ ่ ๆฉซ ็ฌฆ ็ง ๅช ๅ ๅ ๆง ๆฝค ๅน
ๅ ็ซ ็ ่ฒ ๆพค ่
ฆ ๅฃค ็ขณ ๆญ ้ ๅด ๅฏจ ๆข ๅพน ๆ
ฎ ๆ ่ ๅบญ ็ด ๅฝ ้ฃผ ไผธ ๆ ้บฅ ๆฟ ๆ ่ท ็ฆ ๅก ๅบ ็ฏ ๆก ๆถ ่จช ๅก ๅฅ ้ ๆข ๅ ๆ ่ทก ๅก ๆฐฏ ้ ไปฝ ๆฏ ๆณฅ ้ ๆด ๆบ ็ฐ ๅฝฉ ่ณฃ ่ ๅค ๆ ๅฟ ้
็ป ็กฌ ไบ ็น ๅ ้ช ๅฝ ไบฆ ๆฝ ็ฏ ้ฃ ้ฐ ไธ ๅฐบ ่ฟฝ ๅ ้ ่ฟ ๆณ ็ธ ๆจ ้ฟ ่ฌ ๅธ ้ ่ฑฌ ๆ ็ดฏ ๅ ๅ
ธ ้คจ ็ดข ็งฆ ่ ๆฝฎ ็บ ่ฑ ๅฟฝ ๆ ้ฉ ๅก ้บ ๆ ๆฑ ๆฟ ็บ ็ฒ ๅพ ๅฐ ็ ๆฅ ่ฌ ๅฅฎ ่ณผ ็ฃจ ๅ ๆฑ ๆ ็ข ้ชจ ็ฃ ๆ ๅผ ๆด ๅฒ ่ฒซ ๆฎ ้ ่ฉ ไบก ๅฃ ้ ๅฏถ ๅ ๅกต ่ ๆญ ็ฎ ๆฎ ๅฌ ๆฉ ๅฉฆ ่ญฆ ็ถ ๆ ๅณ ไป ๆตฎ ้ญ ๅพ ๆจ ๆ ่ฐท ่ด ็ฎฑ ้ ่จ ็ท ๅน ๅ ็ด ๅ ๆ ๅฎ ็ป ๅทจ ่ ๅฆ ๆฆฎ ้ ็ฃ ้ต ๅก ้ง ้ ๆ ๆฉ ๅ ๅ ้นผ ้ฝ ๆช ็
้บป ็ดก ็ฆ ๅปข ็ ็ ็ทฉ ๆทจ ็ ๆ ๅฉ ๆถ ็ญ ๅด ๆ ๅฒธ ๆ ่ ่ก ่ ๅง ่ฒฟ ่
ๅฅด ๅฆ ๆ
ฃ ไน ๅคฅ ๆข ๅป ็ด ๆ ่พฏ ่ณ ๅฝช ่ฃ ๅ ็ ๆต ่ ็ง ่ฉ ไฟ ็ถฒ ่ ๅบ ๅด ็ธฑ ๅฏธ ๆฑ ๆ ๆดช ่ณ ้ ๆฌ ็ ็ฏ ๆดฅ ็จป ็ ่ป ๅ ๅ ๆปพ ๅ ่ ่ณ ่ฏ ๅก ๆฑ ็ช ่
ฟ ๅ ๆ
ๅฐพ ่ป ๅฐ ่ฒข ็ป ้ป ๅ ้ฝ ๅ ้ ้ ๆฐจ ้ญ ๅณฐ ๅนฃ ๆธฏ ไผ ่ป ็ ็ข ๆฆ ่ซ ๅบ ๆตช ็ง ๆด ๆ ช ๅฅ ๅฎ ่ก ๅณถ ็ ๆณก ็ก ็ซฅ ้ ๆนฏ ้ฅ ไผ ๅฏ ่ ็ง ็น ็ธ ๅฒ ็ฃท ็ธพ ๆ ๆทก ๅฐ ๅ ้ท ๆด ๅ ๅพ ้ก ๆท ็จ ๅฟ ๆณต ่ ๆ ๆด ๆ ้ก ่พ ๅฃฏ ้ ่ฒง ่ ๅฝ ๆฉ ๆณฐ ๅนผ ๅปท ๅฐ ็ช ็ถฑ ๅผ ้ธ ็ ๆฐ ๅฎฎ ๅง ้ ็ ๆช ๅฐค ็ด ๅพช ๆ ่ ้ ๅคพ ่
ฐ ็ทฃ ็ ็ชฎ ๆฃฎ ๆ ็ซน ๆบ ๅฌ ็นฉ ๆถ ้ฆ ๅฉ ๅนธ ๆผฟ ๆฌ ๆ ็ ่ฒฏ ็ฆฎ ๆฟพ ้ ็ด ็ฝท ๆ ๅฑ ๅ ่ข ๅ ๅค ็ฝฐ ็ฆ ๆฝ ไผ ๅขจ ๆฌฒ ็ธซ ๅง ๅ ้ฃฝ ไปฟ ็ ้ ้ฌผ ้บ ่ทจ ้ป ๆ ้ ๆ ๅ ่ข ็ญ ๆฑก ๅน ่ซธ ๅผง ๅต ๆข
ๅฅถ ๆฝ ็ฝ ่ ้ ่ฏ ่จ ๆฑ ๆฏ ๆ ๅฏ ๆบ ๅ ๅฏ ๅฑ ่บ ๆธก ๆ ไธน ่ฑ ่ฒ ็ขฐ ๆ ็น ๆด ็ขผ ๅคข ่ฝ ็ ่ตค ๆผ ๅญ ๆฌ ้ก ๅฅ ้ ไปฒ ่ ็จ ๅฆน ไน ็ ็ณ ๆก ้ต ๅ
้ ่บ ๅ ้ญ ้ณ ๆ ๆฐฎ ๅ
ผ ้ฑ ็ค ่ตซ ๆฅ ๅฟ ่
็ผธ ็ฝ ๆถ ๅ ๅทง ๆฎผ ๅ
ๆ ่จ ่ช ็ขง ็ฅฅ ๆฏ ้ ๅทก ็ฉ ๆฒ ็ ้ฝก ๅซ ็ฅจ ๅฐ ๆก ้ช ่ ๆ ๆฐ ้ญ ่ถฃ ๆฌ ่ ้จฐ ่ฒผ ๆ ๆปด ็ ้ ่ผ ๅฆป ๅกซ ๆค ๅฒ ็ฐฝ ้ฌง ๆพ ็ดซ ็ ้ ๆฒ ๅ ้ถ ไผ ้คต ็ ็ถ ๅฉ ๆซ ่ ๆธ ๅฟ ่ฆ ่ ้ฐ ่ธ ้ ๆ ๅถ ๆฃ ๆงฝ ๅ ไนณ ้ง ๅ ไป ็ ็ฃ ็ง ็ ่ฆ ไผด ็ ๆทบ ไธ ๆซ ็ฅ ๆฉก ๆณ ่ฟท ๆ ็ ็งง ่ฝ ่ฉณ ็ฐง ่ธ ็ท ่ญ ๅ ่ณ ็ณ ๆด ่ผ ๆค ็ซถ ้ ๆ ็ฒ ไน ็ท ่ฉ ็ฑ ๆ ๅก ็ ็ ๅต ๆธ ๆ ไบซ ็ณพ ้ ็ ้ ๆท ๆจ ็ฒ ้ธ ็ฌ ่ณ ้ ็ฉ ้ต ็ฅ ็ง ๆต ่ฒ ๅฝน ๅฝผ ๆ ้ดจ ่ถจ ้ณณ ๆจ ็ ่ผฉ ็งฉ ๅต ็ฝฒ ๆขฏ ็ ็ ๆฃ ้ฉ
็ฏฉ ๅณฝ ๅ ๅฅ ๅฃฝ ่ญฏ ๆตธ ๆณ ๅธฝ ้ฒ ็ฝ ็ ่ฒธ ๆผ ็จฟ ๅ ๅซฉ ่
่ฏ ็ข ๅ ่ ๅฅง ้ณด ๅถบ ็พ ๆ ไธฒ ๅก ็นช ้
ต ่ ็ ้ซ ๅป ็ฑ ๅ ่ผ ๆ ่ฅฒ ็ญ ๆ ๅ ๆฑ ้ ้ณฅ ๆผ ๆฒ ็ ็ ๆทป ๆฃ ็ฉ ็ก ้ ้ผ ๆญ ๅ ๆถผ ๆบ ็ข ๆ ฝ ็ ๆฏ ๆฃ ้คพ ๅธ ่ฑช ้ผ ๅ ้ดป ๆฆ ๅ ๆ ็ ๅ ่ผฅ ๆฉ ้ฃฒ ๆฌ ็ฝต ่พญ ๅพ ๆฃ ไผฐ ่ฃ ็ตจ ้ง ไธ ๆต ๅง ๆฌ ๅฎ ่ผฏ ้ ้ ๅ ่ ๅด ๅช ๅก ๅปณ ๅฌ ้ง ่ฏ ๅท ๆฅ ็ช ่ณฆ ๅฅ ไฝ ๆพ ๆผซ ๆผ ๆ ้ฃ ๆก ๆถ ไป ่ฟ ไฟ ่ง ่
้ ๆฃฑ ่ฆ ๆก ๆ ๅ ๆ ้จ ๅ ๆบ ๆฒธ ๅญค ๅ ๅญ ๆธ ๅฑ ็พ ๅฆ ๆ ไปฐ ็ ่น ่ซง ๆ ้ปด ๆก ๅด ๅ ่กฐ ็ ๆปฒ ่ ่ณด ๆนง ็ ๆน ้ฑ ่ ๅฉ ๅฒ ็ด ็ทฏ ๆฏ
ๆจ ๅฝ ็ ็
ฎ ๅ ้ ๆญ ่ ็ฑ ้
ท ๅท ๅผ ้ ๆ ๅ ๅ ้ผป ็ฟผ ็ถธ ๆ ็ ้ฎ ็ฝ ็ตก ๆฃ ๆ ่จ ่ฌ ๅฏบ ้ฉ ็ฉ ๅถ ๆฏ ๅ ๅฑ ๅธ ็ดณ ๅฏ ็ง ็ฐ ่ฝ ๆฌฃ ๆ ็ฆ ็ฆฆ ้ ้ฆ ๅช ๆฌ ้ ๅฃ ๆ ๆฒ ้ ไบญ ้
ฏ ้ ่ ่ ้
ถ ้ ๆ ้
้ ็พฝ ๆผฒ ๅธ ไป ้ช ้ข ๆฒ ๆญ ๅง ่ ๆ ้ฃ ๆผ ๆ ๆฌบ ๅพ ้ ็ท ๆฑ ๅต ้ฃพ ่ญ ้
้ต ้ท ็ ๆ ๅงป ่ตด ๅฎด ็
ฉ ๅต ๅธณ ๆ ้ด ๆจ ้ ่ฃ ้ค
้ ๅงฟ ๆ ๅ
่
น ๅฆฅ ๆ ่ณข ๆ ๆญช ่ก ่บ ไธ ๆตฉ ๅพฝ ๆ ๅข ๆ ่ฆฝ ่ฒช ๆ
ฐ ็นณ ๆฑช ๆ
้ฆฎ ่ซพ ๅง ่ชผ ๅ
ๅฃ ่ชฃ ่ ๆ ่บบ ็ ้จ ๅฌ ๆบช ๅข ็ง ๆน ๆถ ่ซฎ ๅฎ ้ง ็บ ๆ ๆ ้บ ๆฒ ้ ๅนป ๆ ๆ ๆ
ไฝณ ไป ่ ็ชฉ ๆป ๅ ็ง ๅ ก ๆฝ ่ฅ ็ฝฉ ้ ๆ ่ ่ผ ๆฟฑ ๅ ๆ
ๆน ็ ้ ้ต ่ ็ ๆทฎ ้ ็ ็ณ ็ ๅฎฟ ๆช ๆ ้ง ๅซ ่ฃ ๅพ ็ฎญ ๆ ่
ธ ๆ ๆฌ ่พจ ๆฎฟ ่ฎ ๆค ๆช ้ฌ ๅฑ ็ซ ๅ ่ก ๅ ต ๆฒซ ็บ ๆข ็ ้ฃ ่ ๆฒ ่ฝ ้ค ็ ๅฃฉ ๅทท ้ค ็ฆ ไธ ็ ๆบ ๆฐ ้ ๅฝญ ๅ ๅฟ ๅฆจ ่ ๅ ้ ๆจ ็ฎ ๆญ ;;
pt?(_*)) echo a{b{a{cate,ixo,lar,ter},duzir,e{lha,rto},ismo,otoar,r{anger,eviar,igar,upto},s{into,oluto,urdo},utre},c{a{bado,lmar,mpar,nhar,so},e{itar,lerar,nar,rvo,ssar,tona},hatar,i{dez,ma,onado,rrar},l{amar,ive},o{lhida,modar,plar,rdar},u{mular,sador}},d{aptar,e{ga,ntro,pto,quar,rente,sivo,us},i{ante,tivo},j{etivo,unto},mirar,orar,quirir,ubo,v{erso,ogado}},eronave,f{astar,e{rir,tivo},i{nador,velar},l{ito,uente},rontar},g{a{char,rrar,salho},enciar,i{lizar,ota,tado},ora,r{adar,este,upar},u{ardar,lha}},j{oelhar,u{dar,star}},l{a{meda,rme,strar,vanca},b{ergue,ino},catra,deia,e{crim,gria,rtar},f{ace,inete},gum,heio,i{ar,cate,enar,nhar,viar},mofada,ocar,piste,t{erar,itude},u{cinar,gar,no,sivo},vo},m{a{ciar,dor,relo,ssar},b{as,iente},e{ixa,nizar},i{do,stoso,zade},o{lador,ntoar,roso,stra},p{arar,liar,ola}},n{a{grama,lisar,rquia,tomia},daime,e{l,xo},gular,imar,jo,o{malia,tado},sioso,terior,u{idade,nciar},zol},p{a{gador,lpar,nhado},e{go,lido,rtada,sar,tite},ito,l{auso,icada},o{io,ntar,sta},r{endiz,ovar}},quecer,r{a{me,nha,ra},cada,dente,e{ia,jar,nito,sta},g{iloso,ola},ma,quivo,r{aial,ebate,iscar,oba,umar},senal,t{erial,igo},voredo},s{faltar,ilado,pirar,s{ador,inar,oalho,unto},tral},t{a{cado,dura,lho,refar},e{ar,nder,rro,u},i{ngir,rador,vo},oleiro,r{acar,evido,iz},u{al,m}},u{ditor,mentar,r{a,ora},t{ismo,oria,uar}},v{a{liar,nte,ria},e{ntal,sso},i{ador,sar},ulso},xila,z{arar,e{do,ite},ulejo}} b{a{b{ar,osa},c{alhau,harel,ia},gagem,i{ano,lar,oneta,rro,xista},jular,l{eia,iza,sa},n{al,deira,ho,ir,quete},r{ato,bado,onesa,raca,ulho},s{eado,tante},t{ata,edor,ida,om,ucar},unilha},e{ber,i{jo,rada,sebol},l{dade,eza,ga,iscar},n{dito,gala,zer},r{imbau,linda,ro},souro,xiga,zerro},i{c{o,udo},enal,f{ocal,urcar},gorna,lhete,m{estre,otor},o{logia,mbo,sfera},polar,rrento,s{coito,neto,po,sexto},tola,zarro},l{indado,o{co,quear}},o{ato,bagem,c{ado,ejo,hecha},icotar,l{ada,etim,ha,o},mbeiro,n{de,eco,ita},r{bulha,da,eal,racha},vino,xeador},r{a{nco,sa,veza},eu,i{ga,lho,ncar},o{a,chura,nzear,to},uxo},u{cha,dismo,far,le,raco,s{ca,to},zina}} c{a{b{ana,elo,ide,o,rito},c{au,etada,horro,ique},d{astro,eado},fezal,i{aque,pira,xote},j{ado,u},l{afrio,cular,deira,ibrar,mante,ota},m{ada,bista,isa,omila,panha,uflar},n{avial,celar,eta,guru,hoto,ivete,oa,sado,tar,udo},p{acho,ela,inar,otar,richo,tador,uz},r{acol,bono,deal,eca,imbar,neiro,pete,reira,taz,valho},s{aco,ca,ebre,telo,ulo},t{arata,ivar},u{le,sador,telar},v{alo,erna}},e{bola,dilha,gonha,l{ebrar,ular},n{oura,so,teio},r{car,rado,teiro,veja},tim,vada},h{a{cota,leira,mado,pada,rme,tice,ve},e{fe,gada,iro,que},i{cote,fre,nelo},o{calho,ver},u{mbo,tar,va}},i{c{atriz,lone},d{ade,reira},ente,gana,mento,n{to,za},r{anda,cuito,urgia},tar},l{areza,ero,icar,one,ube},o{a{do,gir},b{aia,ertor,rar},cada,e{lho,ntro,so},gumelo,i{bir,fa,ote},l{ar,eira,her,idir,meia,ono,una},m{ando,binar,entar,itiva,over,plexo,um},n{cha,dor,ectar,fuso,gelar,hecer,jugar,sumir,trato,vite},operar,p{eiro,iador,o},quetel,r{agem,dial,neta,onha,poral,reio,tejo,uja,vo},s{seno,tela},tonete,u{ro,ve},vil,zinha},r{a{tera,vo},e{che,dor,me,r,spo},i{ada,minal,oulo,se,ticar},osta,u{a,zeiro}},u{bano,eca,idado,jo,l{atra,minar,par,tura},mprir,nhado,pido,r{ativo,ral,sar,to},s{pir,tear},telo}} d{a{masco,tar},e{b{ater,itar,oche,ulhar},c{alque,imal,live,ote,retar},d{al,icado,uzir},f{esa,umar},g{elo,rau,ustar},i{tado,xar},l{ator,egado,inear,onga},m{anda,itir,olido},ntista,p{enado,ilar,ois,ressa,urar},r{iva,ramar},s{afio,botar,canso,enho,fiado,gaste,igual,lize,mamar,ova,pesa,taque,viar},t{alhar,entor,onar,rito},usa,v{er,ido,otado},zena},i{a{grama,leto},data,fuso,gitar,l{atado,uente},minuir,n{astia,heiro},ocese,reto,s{creta,farce,paro,quete,sipar,tante},tador,urno,v{erso,isor,ulgar},zer},o{brador,lorido,m{ador,inado},n{ativo,zela},r{mente,sal},sagem,u{rado,tor}},r{enagem,ible,ogaria},u{e{lar,nde,to},plo,quesa,rante,vidoso}} e{c{lodir,o{ar,logia}},d{i{ficar,tal},ucado},fe{ito,tivar},jetar,l{aborar,e{ger,itor,nco,vador},iminar,ogiar},m{b{argo,olado,rulho,utido},e{nda,rgir},issor,p{atia,enho,inado,olgar,rego,urrar},ulador},n{c{aixe,enado,hente,ontro},d{eusar,ossar},f{aixar,eite,im},g{ajado,enho,lobar,omado,raxar,uia},joar,latar,quanto,r{aizar,olado,ugar},s{aio,eada,ino,opado},t{anto,eado,idade,ortar,rada,ulho},v{ergar,iado,olver},x{ame,erto,ofre,uto}},piderme,quipar,r{eto,guido,rata,v{a,ilha}},s{b{anjar,elto},c{ama,ola,rita,uta},f{inge,olar,regar,umado},grima,malte,p{anto,elho,iga,onja,reita,umar},querda,t{aca,eira,icar,ofado,rela,udo},vaziar},t{anol,iqueta},u{foria,ropeu},v{a{cuar,porar,sivo},entual,idente,oluir},x{a{gero,lar,minar,to,usto},c{esso,itar,lamar},e{cutar,mplo},i{bir,gente},onerar,p{andir,elir,irar,lanar,osto,resso,ulsar},t{erno,into,rato}}} f{a{b{ricar,uloso},c{eta,ial},d{a,iga},ixa,l{ar,ta},miliar,n{dango,farra,toche},r{dado,elo,inha,ofa,pa,tura},t{ia,or},vorita,xina,zenda},e{chado,i{joada,rante},lino,minino,n{da,o},r{a,iado,rugem,ver},stejar,tal,udal},i{apo,brose,c{ar,heiro},gurado,l{eira,ho,me,trar},rmeza,s{gada,sura},ta,vela,x{ador,o}},l{a{cidez,mingo,nela},echada,ora,u{tuar,xo}},o{c{al,inho},focar,g{o,uete},ice,l{gado,heto},r{jar,miga,no,te},s{co,sa}},r{a{gata,lda,ngo,sco,terno},e{ira,nte,tar},i{eza,so,tura},onha,u{strar,teira}},u{gir,l{ano,igem},n{dar,go,il},r{ador,ioso},tebol}} g{a{b{arito,inete},do,i{ato,ola,vota},l{ega,ho,inha,ocha},nhar,r{agem,fo,galo,impo,oupa,rafa},s{oduto,to},t{a,ilho},veta,zela},e{l{ado,eia,o},m{ada,er,ido},n{eroso,giva,ial,oma,ro},ologia,r{ador,minar},s{so,tor}},i{n{asta,cana,gado},r{afa,ino}},l{acial,icose,o{bal,rioso}},o{ela,iaba,l{fe,pear},r{dura,jeta,ro},stoso,teira,vernar},r{a{cejo,dual,fite,lha,mpo,nada,tuito,veto,xa},e{go,lhar,ve},i{lo,salho,taria},o{sso,tesco},u{dado,nhido,ta}},u{a{che,rani,xinim},errear,i{ar,ncho,sado},l{a,oso},ru}} h{a{bitar,rmonia,ste,ver},e{ctare,r{dar,esia},sitar},i{ato,bernar,dratar,ena,no,p{ismo,nose,oteca}},o{je,lofote,mem,n{esto,rado},rmonal,spedar},umorado} i{ate,d{eia,oso},g{norado,reja,uana},l{eso,ha,u{dido,minar,strar}},m{agem,e{diato,nso,rsivo},i{nente,tador},ortal,p{acto,edir,lante,or,rensa,une},unizar},n{a{lador,pto,tivo},c{enso,har,idir,luir,olor},d{eciso,ireto,utor},e{ficaz,rente},f{antil,estar,inito,lamar,ormal,rator},gerir,i{bido,cial,migo},jetar,o{cente,doro,vador,x},quieto,s{crito,eto,istir,petor,talar,ulto},t{acto,egral,imar,ocado,riga},v{asor,erno,icto,ocar}},ogurte,r{aniano,onizar,r{eal,itado}},s{ca,ento,olado,queiro},taliano} j{a{n{eiro,gada,ta},r{araca,dim,ro},smim,to,vali,zida},ejum,o{aninha,elhada,gador,ia,r{nal,rar},vem},u{ba,d{eu,oca},iz,l{gador,ho},r{ado,ista,o},sta}} l{a{b{areda,oral},c{re,tante},drilho,g{arta,oa},je,m{ber,entar,inar,pejo},nche,p{idar,so},r{anja,eira,gura},s{anha,tro},t{eral,ido},v{anda,oura,rador},xante,zer},e{aldade,bre,g{ado,endar,ista},i{go,loar,tura},m{brete,e},n{hador,tilha},oa,s{ma,te},t{ivo,reiro},v{ar,eza,itar}},i{b{eral,ido},derar,g{ar,eiro},m{itar,oeiro,pador},n{da,ear,hagem},quidez,s{tagem,ura},toral,vro,x{a,eira}},o{c{ador,utor},jista,mbo,n{a,ge,tra},rde,t{ado,eria},u{cura,sa,var}},u{ar,c{idez,ro},neta,stre,tador,va}} m{a{c{aco,ete,hado,io},d{eira,rinha},g{nata,reza},i{or,s},l{andro,ha,ote,uco},m{ilo,oeiro,ute},n{ada,cha,dato,equim,hoso,ivela,obrar,sa,ter,usear},peado,quinar,r{cador,esia,fim,gem,inho,mita,oto,quise,reco,telo,ujo},s{cote,morra,sagem,tigar},t{agal,erno,inal,utar},xilar},e{d{alha,ida,usa},gafone,iga,l{ancia,hor},m{bro,orial},n{ino,os,sagem,tal},r{ecer,gulho},s{ada,clar,mo,quita,tre},t{ade,eoro,ragem},x{er,icano}},i{cro,g{alha,rar},l{agre,enar,har},mado,n{erar,hoca,istro,oria},olo,r{ante,tilo},sturar},o{cidade,d{erno,ular},e{da,r},i{nho,ta},l{dura,eza,ho,inete,usco},ntanha,queca,r{ango,cego,domo,ena},s{aico,quete,tarda},t{el,im,o,riz}},u{da,ito,l{ata,her,tar},n{dial,ido},r{alha,cho},s{cular,eu,ical}}} n{a{cional,dador,ja,moro,r{ina,rado},scer,t{iva,ureza},v{alha,egar,io}},e{b{lina,uloso},g{ativa,ociar,rito},rvoso,ta,ural,v{asca,oeiro}},i{n{ar,ho},tidez,velar},o{breza,i{te,va},m{ear,inal},r{deste,tear},t{ar,iciar,urno},v{elo,ilho,o}},u{blado,dez,meral,pcial,trir,vem}} o{b{cecado,edecer,jetivo,rigado,s{curo,tetra},t{er,urar}},c{i{dente,oso},orrer,u{lista,pado}},f{e{gante,nsiva,renda},icina,uscado},giva,l{aria,eoso,har,iveira},m{bro,elete,i{sso,tir}},n{dulado,eroso,tem},p{cional,erador,o{nente,rtuno,sto}},r{ar,bitar,d{em,inal},fanato,g{asmo,ulho},i{ental,gem,undo},la,todoxo,valho},s{cilar,s{ada,o},tentar},timismo,u{sadia,t{ono,ubro},vido},v{elha,ular},xi{dar,genar}} p{a{c{ato,iente,ote,tuar},d{aria,rinho},g{ar,ode},i{nel,rar,sagem},l{avra,estra,heta,ito,mada,pitar},n{cada,ela,fleto,queca,tanal},p{agaio,elada,iro},r{afina,cial,dal,ede,tida},s{mo,sado,tel},t{amar,ente,inar,rono},u{lada,sar}},e{culiar,d{alar,estre,iatra,ra},gada,i{toral,xe},l{e,icano},n{ca,durar,eira,hasco,sador,te},r{ceber,feito,gunta,ito,mitir,na,plexo,siana,tence,uca},s{cado,quisa,soa},tiscar},i{ada,cado,edade,gmento,l{astra,hado,otar},menta,n{cel,guim,ha,ote,tar},oneiro,poca,quete,r{anha,es,ueta},s{car,tola},tanga,vete},l{a{nta,queta,tina},ebeu,u{magem,vial}},neu,o{da,e{ira,tisa},l{egada,iciar,uente,vilho},m{ar,ba},n{derar,taria},puloso,rta,s{suir,tal},te,u{par,so},voar},r{a{ia,ncha,to,xe},e{ce,dador,feito,miar,nsar,parar,silha,texto,venir,zar},i{mata,ncesa,sma,vado},o{cesso,duto,feta,ibido,jeto,meter,pagar,sa,tetor,vador}},u{blicar,dim,l{ar,monar,seira},n{hal,ir},pilo,reza,xador}} qu{a{dra,ntia,rto,se},e{brar,da,ijo,nte,rido},i{mono,na,osque}} r{a{b{anada,isco},c{har,ionar},dial,i{ar,nha,o,va},jada,lado,mal,n{ger,hura},p{adura,el,idez,osa},quete,ridade,s{ante,cunho,gar,pador,teira,urar},t{azana,oeira}},e{a{leza,nimar,ver},b{aixar,elde,olar},c{ado,ente,heio,ibo,ordar,rutar,uar},d{e,imir,onda,uzida},envio,f{inar,letir,ogar,resco,ugiar},g{alia,ime,ra},i{nado,tor},jeitar,lativo,m{ador,endo,orso},novado,p{aro,elir,leto,olho,resa,udiar},querer,s{enha,friar,gatar,idir,olver,peito,saca,tante,umir},t{alho,er,irar,omada,ratar},v{elar,isor,olta}},i{acho,ca,g{idez,oroso},mar,ngue,s{ada,co,onho}},o{balo,chedo,d{ada,eio,ovia},edor,leta,mano,ncar,s{ado,eira,to},t{a,eiro,ina,ular},u{co,pa},xo},u{bro,g{ido,oso},ivo,mo,pestre,sso}} s{a{bor,c{iar,ola,udir},dio,fira,g{a,rada},ibro,l{ada,eiro,gado,iva,picar,sicha,tar,vador},m{bar,urai},n{ar,fona,gue,idade},pato,r{da,gento,jeta},turar,udade,xofone,zonal},e{c{ar,ular},d{a,ento,iado,oso,utor},g{mento,redo,undo},iva,l{eto,vagem},m{anal,ente},n{ador,hor,sual,tado},parado,r{eia,inga,ra,vo},t{embro,or}},i{gilo,l{hueta,icone},m{etria,patia,ular},n{al,cero,gular,opse,tonia},r{ene,i},tuado},o{b{erano,ra},corro,gro,ja,l{da,etrar,teiro},mbrio,n{ata,dar,egar,hador,o},prano,quete,r{rir,teio},ssego,t{aque,errar},vado,zinho},u{avizar,b{ida,merso,solo,trair},c{ata,esso,o},deste,fixo,g{ador,erir},jeito,lfato,mir,or,p{erior,licar,osto,rimir},r{dina,fista,presa,real,tir},s{piro,tento}}} t{a{b{ela,lete,uada},cho,garela,l{her,o,vez},m{anho,borim,pa},n{gente,to},p{ar,ioca},r{dio,efa,ja,raxa},tuagem,urino,x{ativo,ista}},e{atral,c{er,ido,lado},dioso,i{a,mar},l{efone,hado},mpero,n{ente,sor,tar},r{mal,no,reno},s{e,oura,tado},to,x{tura,ugo}},i{ara,gela,jolo,m{brar,idez},n{gido,teiro},ragem,tular},o{alha,cha,l{erar,ice},m{ada,ilho},n{el,tura},pete,r{a,cido,neio,que,rada,to},star,u{ca,peira},xina},r{a{balho,cejar,dutor,fegar,jeto,ma,ncar,po,seiro,tador,var},e{ino,mer,pidar,vo},i{agem,bo,ciclo,dente,logia,ndade,plo,turar,unfal},o{car,mbeta,va},u{nfo,que}},u{bular,cano,do,lipa,pi,r{bo,ma,quesa},t{elar,orial}}} u{ivar,mbigo,n{ha,i{dade,forme}},r{ologia,so,tiga,ubu},s{ado,ina,ufruir}} v{a{cina,diar,garoso,idoso,l{a,ente,idade,ores},ntagem,queiro,r{anda,eta,rer},s{cular,ilha,soura},z{ar,io}},e{ado,dar,getar,icular,l{eiro,hice,udo},n{cedor,daval,erar,tre},r{bal,dade,eador,gonha,melho,niz,sar,tente},s{pa,tido},torial},i{a{duto,gem,jar,tura},brador,d{eira,raria},ela,g{a,ente,iar,orar},larejo,n{co,heta,il},oleta,r{ada,tude},s{itar,to},tral,veiro,zinho},o{a{dor,r},gal,l{ante,eibol,tagem,umoso},ntade},u{lto,vuzela}} x{a{drez,rope},e{que,r{etar,ife}},ingar} z{a{ngado,rpar},e{bu,lador},o{mbar,ologia},umbido} ;;
it?(_*)) echo a{b{aco,b{aglio,inato},ete,isso,olire,r{asivo,ogato}},c{c{adere,enno,usato},etone,hille,ido,qua,r{e,ilico,obata},uto},d{agio,d{ebito,ome},e{guato,rire},ipe,ottare,ulare},f{f{abile,etto,isso,ranto},o{risma,so},ricano},g{ave,e{nte,vole},gancio,i{re,tare},onismo,r{icolo,umeto},uzzo},l{a{barda,to},b{atro,erato,o,ume},c{e,olico},ettone,fa,gebra,i{ante,bi,mento},l{agato,egro,ievo,odola,usivo},meno,ogeno,p{aca,estre},t{alena,erno,iccio,rove},unno,veolo,zare},m{a{lgama,nita,rena},b{ito,rato},e{ba,rica,tista},ico,m{asso,enda,irare,onito},ore,p{io,liare},uleto},n{a{cardo,grafe,lista,rchia,tra},c{a,ella,ora},d{are,rea},ello,g{elo,olare,usto},ima,n{egare,idato,o,uncio},onimo,ticipo,zi},p{atico,ertura,ode,p{arire,etito,oggio,rodo,unto},rile},r{a{bica,chide,gosta,ldica,ncio,tura,zzo},bitro,chivio,dito,enile,g{ento,ine,uto},ia,monia,nese,r{edato,inga,osto},s{enico,o},tefice,zillo},s{c{iutto,olto},e{psi,ttico},falto,ino,ola,p{irato,ro},s{aggio,e,oluto,urdo},t{a,enuto,ice,ratto}},t{avico,eismo,o{mico,no},t{esa,ivare,orno,rito,uale}},u{s{ilio,tria},t{ista,onomo,unno}},v{anzato,ere,v{enire,iso,olgere}},z{ione,oto,z{imo,urro}}} b{a{bele,c{cano,ino,o},d{essa,ilata},gnato,ita,l{cone,do,ena,lata,zano},mbino,ndire,r{aonda,baro,ca,itono,lume,occo},s{ilico,so},t{osta,tuto},ule,v{a,osa}},e{cco,ffa,l{gio,va},n{da,evole,igno,zina},r{e,lina},ta},i{bita,ci,done,fido,ga,lancia,mbo,nocolo,ologo,p{ede,olare},r{bante,ra},s{cotto,esto,nonno,onte,turi},zzarro},la{ndo,tta},o{llito,nifico,rdo,sco,t{anico,tino},zzolo},r{a{ccio,dipo,ma,nca,vura},e{tella,vetto,zza},i{glia,llante,ndare},o{ccolo,do,nzina},u{llo,no}},u{bbone,ca,dino,ffone,io,lbo,ono,r{lone,rasca},s{sola,ta}}} c{a{d{etto,uco},l{amaro,colo,esse,ibro,mo,oria},m{busa,erata,icia,mino,ola,pale},n{apa,dela,e,ino,otto,tina},p{ace,ello,itolo,ogiro,pero,ra,sula},r{apace,cassa,do,isma,ovana,retto,tolina},s{accio,cata,erma,o,sone,tello,uale},t{asta,ena,rame},uto,villo},e{d{ibile,rata},falo,l{ebre,lulare},n{a,one,tesimo},r{amica,care,to,ume,vello},s{oia,po},to},h{ela,i{aro,cca,edere,mera,na,rurgo,tarra}},i{ao,clismo,frare,gno,lindro,ottolo,r{ca,rosi},t{rico,tadino},uffo,v{etta,ile}},l{assico,inica,oro},o{cco,d{ardo,ice},erente,gnome,l{lare,mato,ore,poso,tivato,za},m{a,eta,mando,odo,puter,une},n{ciso,durre,ferma,gelare,iuge,nesso,oscere,sumo,tinuo,vegno},p{erto,ione,pia,ricapo},r{azza,data,icato,nice,olla,po,redo,sia,tese},s{mico,tante},ttura,vato},r{a{tere,vatta},e{ato,dere,moso,scita,ta},i{ceto,nale,si,tico},o{ce,naca,stata},u{ciale,sca}},u{c{ire,ulo},gino,llato,pola,r{atore,sore,vo},s{cino,tode}}} d{a{do,ino,lmata,merino,n{iela,noso,zare},tato,v{anti,vero}},e{butto,c{ennio,iso,lino,ollo,reto},dicato,f{inito,orme},gno,l{egare,fino,irio,ta},menza,n{otato,tro},posito,r{apata,ivare,oga},s{critto,erto,iderio,umere},tersivo,voto},i{ametro,cembre,edro,f{eso,fuso},g{erire,itale},luvio,n{amico,nanzi},p{into,loma,olo},r{adare,e,otto,upo},s{agio,creto,fare,gelo,posto,tanza,umano},to,v{ano,elto,idere,orato}},o{blone,cente,g{anale,ma},lce,m{ato,enica,inare},n{dolo,o},rmire,t{e,tore},vuto,zzina},r{ago,uido},u{b{bio,itare},cale,na,omo,plice,raturo}} e{bano,c{c{esso,o},lissi,onomia},d{era,i{cola,le,toria},ucare},g{emonia,li,oismo,regio},l{a{borato,rgire},e{gante,ncato,tto,vare},fico,ica,mo,sa,uso},m{anato,blema,esso,iro,o{tivo,zione},pirico,ulo},n{d{emico,uro},ergia,fasi,oteca,trare,zima},p{atite,i{logo,sodio},ocale,pure},quatore,r{ario,b{a,oso},e{de,mita},igere,metico,o{e,sivo},rante},s{a{gono,me,nime,udire},ca,e{mpio,rcito},i{bito,gente,stere,to},o{fago,rtato,so},p{anso,resso},s{enza,o},t{eso,imare,onia,roso},ultare},t{ilico,nico,rusco,to},u{clideo,ropa},v{aso,i{denza,tato},oluto,viva}} f{a{bbrica,c{cenda,hiro},lco,miglia,n{ale,fara,go,tasma},r{e,falla,inoso,maco},s{cia,toso,ullo},t{icare,o},voloso},e{bbre,cola,de,gato,l{pa,tro},mmina,n{dere,omeno},r{mento,ro,tile},s{sura,tivo},tta,udo},i{aba,ducia,fa,gurato,lo,n{anza,estra,ire},ore,s{cale,ico},ume},l{a{cone,menco},e{bo,mma},orido,u{ente,oro}},o{bico,c{accia,oso},derato,glio,l{ata,clore,gore},n{dente,etico,ia,tana},r{bito,chetta,esta,mica,naio,o,tezza,zare},s{fato,so}},r{a{casso,na,ssino,tello},e{ccetta,nata,sco},igo,o{llino,nde},u{gale,tta}},u{c{ilata,sia},ggente,l{mine,vo},m{ante,etto,oso},n{e,zione},oco,r{bo,gone,ore},so,tile}} g{a{bbiano,ffe,l{ateo,lina,oppo},m{bero,ma},r{anzia,bo,ofano,zone},s{dotto,olio,trico},tto,udio,z{ebo,zella}},e{co,l{atina,so},m{ello,mato},n{e,itore,naio,otipo},rgo},h{epardo,i{accio,sa}},i{allo,lda,nepro,o{care,iello,rno,ve},r{ato,one},ttata,u{dizio,rato,sto}},l{obulo,utine},nomo,o{bba,lf,m{ito,mone},n{fio,na},verno},r{a{cile,do,fico,mmo,nde,ttare,voso,zia},e{ca,gge},i{fone,gio,nza},otta,uppo},u{a{dagno,io,nto,rdare},fo,idare}} i{bernato,cona,d{entico,illio,olo,r{a,ico,ogeno}},g{iene,n{aro,orato}},l{are,l{eso,ogico,udere}},m{b{allo,evuto,occo,uto},m{ane,erso,olato},p{acco,eto,iego,orto,ronta}},n{a{lare,rcare,ttivo},c{anto,endio,hino,isivo,luso,ontro,rocio,ubo},d{agine,ia,ole},edito,f{atti,ilare,litto},g{aggio,egno,lese,ordo,rosso},nesco,o{dore,ltrare,ndato},s{ano,etto,ieme,onnia,ulina},t{asato,ero,onaco,uito},umidire,v{alido,ece,ito}},p{erbole,notico,otesi,pica},r{ide,landa,onico,r{igato,orare}},s{o{lato,topo},t{erico,ituto,rice}},t{alia,erare}} l{a{b{bro,irinto},c{ca,erato,rima,una},ddove,go,mpo,n{cetta,terna},r{doso,ga,inge},stra,t{enza,ino,tuga},v{agna,oro}},e{g{ale,gero},mbo,n{tezza,za},one,pre,s{ivo,sato,to},tterale,v{a,igato}},i{bero,do,evito,lla,m{atura,itare,pido},n{eare,gua},quido,r{a,ica},sca,t{e,igio},vrea},o{canda,de,gica,mbare,n{dra,gevo},quace,renzo,t{o,teria}},u{c{e,idato},m{aca,inoso},ngo,p{o,polo},s{inga,so},tto}} m{a{c{abro,china,ero,inato},dama,g{ico,lia,nete,ro},iolica,l{afede,grado,inteso,sano,to,umore},n{a,cia,dorla,giare,ifesto,naro,ovra,sarda,tide,ubrio},ppa,r{atona,cire,etta,mo,supio},s{chera,saia,tino},t{erasso,ricola,tone,uro},zurca},e{andro,c{canico,enate},d{esimo,itare},ga,l{assa,is,odia},n{inge,o,sola},r{curio,enda,lo},s{chino,e,sere,tolo},t{allo,odo,tere}},i{agolare,c{a,elio,hele,robo},dollo,ele,gliore,l{ano,ite},mosa,n{erale,i,ore},r{ino,tillo},s{cela,siva,to,urare},t{ezza,igare,ra,tente}},nemonico,o{d{ello,ifica,ulo},g{ano,io},l{e,osso},n{astero,co,dina,etario,ile,otono,sone,tato,viso},r{a,dere,sicato},stro,t{ivato,osega,to},v{enza,imento},zzo},u{c{ca,osa},ffa,g{hetto,naio},l{atto,inello,tiplo},mmia,nto,overe,rale,s{a,colo,ica},t{evole,o}}} n{a{babbo,fta,nometro,r{ciso,ice,rato},s{cere,trare},turale,utica,viglio},e{bulosa,crosi,g{ativo,ozio},mmeno,ofita,r{etto,vo},ssuno,ttuno,utrale,v{e,rotico}},i{cchia,nfa,tido},o{bile,civo,do,m{e,ina},r{dico,male,vegese},strano,t{are,izia,turno},vella},u{cleo,lla,mero,ovo,trire,vola,ziale}} o{asi,b{b{edire,ligo},elisco,lio,olo,soleto},c{c{asione,hio,idente,orrere,ultare},ra,ulato},d{ierno,orare},ff{erta,rire,uscato},g{g{etto,i},nuno},l{andese,fatto,i{ato,va},ogramma,tre},m{aggio,b{elico,ra},ega,issione},n{doso,ere,ice,nivoro,orevole,ta},p{erato,inione,posto},r{a{colo,fo},dine,e{cchino,fice},fano,ganico,i{gine,zzonte},m{a,eggio},nativo,ologio,r{endo,ibile},t{ensia,ica},z{ata,o}},s{are,curare,mosi,p{edale,ite},s{a,idare},t{acolo,e}},t{ite,re,t{agono,imo,obre}},v{ale,est,i{no,paro},ocito,unque,viare},zio} p{a{c{chetto,e,ifico},d{ella,rone},ese,g{a,ina},l{azzina,esare,lido,o,ude},n{doro,nello},o{lo,nazzo},prica,r{abola,cella,ere,golo,i,lato,ola,tire,venza,ziale},s{sivo,ticca},t{acca,ologia,tume},vone},e{ccato,d{alare,onale},ggio,loso,n{are,dice,isola,nuto,ombra,sare,tola},p{e,ita},r{bene,corso,donato,forare,gamena,iodo,messo,no,plesso,suaso,tugio,vaso},s{atore,ista,o,tifero},t{alo,tine,ulante},zzo},i{a{cere,nta,ttino},c{cino,ozza},e{ga,tra},ffero,g{iama,olio,ro},l{a,ifero,lola,ota},mpante,n{eta,na,olo},o{ggia,mbo},r{amide,etico,ite,olisi},tone,zzico},l{a{cebo,nare,sma,tano},enario},o{chezza,d{eroso,ismo},esia,ggiare,l{enta,igono,lice,monite,petta,so,trona,vere},m{ice,odoro},nte,poloso,r{fido,oso,pora,re,tata},s{a,itivo,sesso,tulato},t{assio,ere}},r{a{nzo,ssi,tica},e{cluso,dica,fisso,giato,lievo,mere,notare,parato,senza,testo,valso},i{ma,ncipe,vato},o{blema,cura,durre,fumo,getto,lunga,messa,nome,posta,roga,teso,va},u{dente,gna,rito}},siche,u{bblico,dica,g{ilato,no},l{ce,ito,sante},ntare,p{azzo,illa},ro}} qu{a{dro,lcosa,si},erela,ota} r{a{ccolto,d{doppio,icale,unato},ffica,g{azzo,ione,no},m{arro,ingo,o},n{dagio,tolare},p{ato,ina,preso},s{atura,chiato,ente,segna,trello},ta,vveduto},e{ale,c{epire,into,luta,ondito,upero},d{dito,imere},g{alato,istro,ola,resso},lazione,m{are,oto},nna,p{lica,rimere,utare},s{a,idente,ponso,tauro},t{e,ina,orica,tifica},vocato},i{assunto,b{adire,elle,rezzo},c{arica,co,evere,iclato,ordo,reduto},d{icolo,urre},f{asare,lesso,orma,ugio},g{are,ettato,hello},l{assato,evato},m{anere,balzo,edio,orchio},n{ascita,caro,forzo,novo,omato,savito,tocco,uncia,venire},p{arato,etuto,ieno,ortare,resa,ulire},s{ata,chio,erva,ibile,o,petto,toro,ultato,volto},t{ardo,egno,mico,rovo},unione,v{a,erso,incita,olto},zoma},o{b{a,otico,usto},c{cia,o},d{aggio,ere,itore},gito,llio,m{antico,pere},nzio,s{olare,po},t{ante,ondo,ula},vescio},u{b{izzo,rica},ga,llino,m{ine,oroso},olo,pe,s{sare,tico}}} s{a{b{ato,biare,otato},goma,l{asso,datura,gemma,ivare,mone,one,tare,uto,vo},p{ere,ido,orito},r{aceno,casmo,to},ssoso,t{ellite,ira,ollo,urno},v{ana,io},ziato},b{a{diglio,lzo,ncato,rra,ttere,vare},endare,irciare,loccato,occiato,r{inare,uffone},uffare},c{a{broso,denza,la,mbiare,ndalo,pola,rso,tenare,vato},e{lto,nico,ttro},h{eda,iena},i{arpa,enza,ndere,ppo,roppo,volo},lerare,o{della,lpito,mparto,nforto,prire,rta,ssone,zzese},r{iba,ollare,utinio},u{deria,ltore,ola,ro,sare}},d{ebitare,oganare},e{c{catura,ondo},dano,g{giola,nalato,regato,uito},l{ciato,ettivo,la,vaggio},m{aforo,brare,e,inato,pre},n{so,tire},polto,quenza,r{ata,bato,eno,io,pente,raglio,vire},stina,t{ola,timana}},f{a{celo,ldare,mato,rzoso,ticato},era,i{da,lato,nge},o{cato,derare,go,ltire,rzato},r{atto,uttato},u{ggito,mare,so}},g{a{bello,rbato},o{nfiare,rbio},rassato,uardo},i{bilo,ccome,erra,g{la,nore},l{enzio,laba},m{bolo,patico,ulato},n{fonia,golo,istro,o,tesi,usoide},pario,s{ma,tole},tuato},l{itta,o{gatura,veno}},m{arrito,e{morato,ntito,raldo},ilzo,o{ntare,ttato},ussato},n{e{llire,rvato},odo},o{b{balzo,rio},c{corso,iale},dale,ffitto,gno,l{dato,enne,ido,lazzo,o,ubile,vente},m{atico,ma},n{da,etto,nifero},p{ire,peso,ra},r{gere,passo,riso,so,teggio,volato},s{piro,ta},ttile},p{a{da,lla,rgere,tola,vento,zzola},e{cie,dire,gnere,latura,ranza,ssore,ttrale,zzato},i{a,goloso,llato,noso,rale},lendido,o{rtivo,so},r{anga,ecare,onato,uzzo},untino},quillo,r{adicare,otolato},t{a{bile,cco,ffa,gnare,mpato,ntio,rnuto,sera,tuto},e{lo,ppa,rzo},i{letto,ma,rpe,vale,zzoso},o{nato,rico},r{appo,egato,idulo,ozzare,utto},u{ccare,fo,pendo}},u{bentro,ccoso,dore,g{gerito,o},ltano,onare,p{erbo,porto},r{gelato,rogato},ssurro,tura},v{agare,e{dese,glio,lare,nuto,zia},i{luppo,sta,zzera},olta,uotare}} t{a{b{acco,ulato},c{ciare,iturno},l{e,ismano},mpone,nnino,r{a,divo,gato,iffa,pare,taruga},sto,ttico,v{erna,olata},zza},e{c{a,nico},lefono,m{erario,po,uto},n{done,ero,sione,tacolo},orema,r{me,razzo,zetto},s{i,serato,tato},t{ro,toia}},i{fare,gella,mbro,nto,p{ico,ografo},r{aggio,o},t{anio,olo,ubante},z{io,zone}},o{ccare,l{lerare,to},m{bola,o},n{fo,silla},p{azio,ologia,pa},r{ba,nare,rone,tora},s{cano,sire,tatura},tano},r{a{bocco,chea,fila,gedia,lcio,monto,nsito,pano,rre,sloco,ttato,ve},e{ccia,molio,spolo},i{buto,checo,foglio,llo,ncea,o,stezza,turato,vella},o{mba,no,ppo,ttola,vare},uccato},u{batura,ffato,lipano,multo,nisia,r{bare,chino},t{a,ela}}} u{bicato,cc{ello,isore},di{re,tivo},ff{a,icio},guale,l{isse,timato},m{ano,ile,orismo},n{cinetto,g{ere,herese},i{corno,ficato,sono,tario},te},ovo,pupa,r{agano,genza,lo},s{a{nza,to},cito,ignolo,uraio},t{ensile,ilizzo,opia}} v{a{c{ante,cinato},g{abondo,liato},l{anga,go,ico,letta,oroso,utare,vola},mpata,n{gare,itoso,o,taggio,vera},pore,r{ano,cato,iante},sca},e{d{etta,ova,uto},getale,icolo,l{cro,ina,luto,oce},n{ato,demmia,to},r{ace,bale,gogna,ifica,o,ruca,ticale},s{cica,sillo,tale},t{erano,rina,usto}},i{andante,brante,c{enda,hingo,inanza},dimare,g{ilia,neto,ore},l{e,lano},mini,ncitore,ola,pera,r{gola,ologo,ulento},s{coso,ione,po,suto,ura},t{a,ello,tima},v{anda,ido},ziare},o{ce,ga,l{atile,ere,pe},ragine},ulcano} z{a{mpogna,nna,ppato,ttera,vorra},e{firo,l{ante,o},nzero,rbino},i{betto,nco,rcone,tto},o{lla,tico},u{cchero,folo,lu,ppa}} ;;
cs?(_*)) echo a{b{dikace,eceda},dresa,grese,k{ce,tovka},l{ej,kohol},mputace,n{anas,dulka,ekdota,keta,tika,ulovat},r{cha,ogance},s{falt,istent,pirace,t{ma,ronom}},t{l{as,etika},ol},utobus,zyl} b{a{bka,c{hor,il,ulka},datel,g{eta,r},hno,kterie,l{ada,etka,kon,onek,van,za},mbus,nkomat,r{bar,et,man,oko,va},t{erka,oh},vlna,z{alka,ilika,uka}},e{dna,ran,s{eda,tie},ton,z{inka,moc,tak}},i{cykl,dlo,ftek,kiny,lance,o{graf,log},tva,zon},l{a{hobyt,touch},e{cha,dule,sk},i{kat,zna},o{kovat,udit},ud},o{b{ek,r},d{lina,nout},hatost,j{kot,ovat},korys,lest,r{ec,ovice},ta,u{bel,chat,da,le,rat},xer},r{a{davka,mbora,nka,tr},epta,iketa,ko,loh,o{nz,skev},u{netka,sinka},z{da,y}},u{b{lina,novat},chta,d{itel,ka,ova},fet,jarost,kvice,l{dok,va},n{da,kr},rza,tik,vol,zola},y{dlet,lina,tovka},zukot} c{a{part,revna},e{d{r,ule},j{ch,n},l{a,er,kem,nice},n{ina,nost,ovka,trum,zor},stopis,tka},h{a{lupa,padlo,rita,ta},e{chtat,mie},i{chot,rurg},l{ad,eba,ubit},m{el,ura},o{bot,chol,dba,lera,mout,pit,roba,v},r{apot,lit,t,up},tivost,u{dina,tnat},v{at,ilka,ost},y{ba,stat,tit}},i{bule,gareta,h{elna,la},nkot,rkus,sterna,t{ace,rus},z{inec,ost}},lona,o{koliv,uvat},t{itel,nost},u{dnost,k{eta,r},pot},v{a{knout,l},ik,rkot},yklista} d{a{leko,reba,t{el,um}},cera,e{bata,c{hovka,ibel},f{icit,lace},k{l,ret},mokrat,prese,rby,ska,tektiv},i{k{obraz,tovat},oda,plom,s{k,plej},v{adlo,och}},l{aha,ouho,uhopis},nes,o{b{ro,ytek},c{ent,hutit},dnes,h{led,oda,ra},j{em,nice},k{lad,ola,tor,ument},l{ar,eva,ina},m{a,inant,luvit,ov},nutit,p{ad,is,lnit,osud,rovod,ustit},r{azit,ost,t},s{ah,lov,tatek,ud,yta},t{az,ek,knout},u{fat,tnat},vozce,z{adu,nat,orce}},r{a{hota,k,matik,vec,ze},dol,o{bnost,gerie,zd},snost,tit,zost},u{ben,chovno,dek,h{a,ovka},s{it,no},tost},vo{jice,rec},ynamit} e{ko{log,nomie},l{ektron,ipsa},m{ail,ise,oce,patie},p{izoda,o{cha,pej,s}},s{e{j,nce},k{orta,ymo}},tiketa,uforie,voluce,x{ekuce,kurze,p{edice,loze,ort},trakt}} f{a{cka,jfka,kulta,n{atik,tazie},rmacie,vorit,zole},e{derace,jeton,nka},i{alka,gurant,l{ozof,tr},n{ance,ta},xace},jord,l{anel,irt,otila},o{nd,sfor,t{bal,ka,on}},r{akce,eska,onta},u{kar,nkce},yzika} g{a{leje,rant},e{netika,olog},ilotina,l{azura,ejt},o{l{em,fista},tika},r{a{f,mofon,nule},ep,il,o{g,teska}},uma} h{a{d{ice,r},l{a,enka},n{ba,opis},r{fa,puna},vran},e{bkost,j{kal,no,tman},ktar,lma,matom,r{ec,na},slo,zky},istorik,l{a{dovka,sivky,va},e{dat,n},o{davec,h,upost},tat,u{bina,chota}},m{at,ota,yz},n{is,o{jivo,ut}},o{b{lina,oj},ch,d{iny,lat,nota,ovat},jnost,kej,l{inka,ka,ub},mole,n{itba,orace},r{al,da,izont,ko,livec,mon,nina,oskop,stvo},s{poda,tina},tovost,u{ba,f,pat,ska},vor},r{a{dba,nice,vost,zda},bolek,d{ina,lo,ost},nek,o{bka,mada,t,uda,zen},stka,ubost,yzat},u{b{enost,nout},dba,kot,mr,s{ita,tota}},vozd,y{bnost,drant,giena,mna,sterik}} i{dylka,hned,kona,luze,munita,n{f{ekce,lace},kaso,ovace,spekce,ternet,v{alida,estor},zerce},ronie} j{a{blko,chta,hoda,k{mile,ost},lovec,ntar,r{mark,o},s{an,no},tka,vor,zyk},e{d{inec,le,natel},hlan,kot,l{en,ito},mnost,nom,pice,seter,vit,z{dec,ero}},i{n{ak,dy,och},s{kra,tota},trnice,zva},menovat,ogurt,urta} k{a{b{aret,el,inet},chna,d{et,idlo},han,j{ak,uta},k{ao,tus},l{amita,hoty,ibr,nost},m{era,koliv,na},n{ibal,oe,tor},p{alina,ela,itola,ka,le,ota,r,usta,ybara},r{amel,otka,ton},sa,t{alog,edra},u{ce,za},valec,z{ajka,eta,ivost}},de{koliv,si},e{dluben,mp,ramika},ino,l{a{cek,divo,m,pot,sika,un},e{c,nba,pat,snout},i{d,ma,sna},o{bouk,kan,pa,ub},u{bovna,sat,zkost}},m{en,itat,otr},n{iha,ot},o{alice,b{erec,ka,liha,yla},cour,hout,jenec,k{os,tejl},l{aps,eda,ize,o},m{ando,eta,ik,nata,ora,pas,unita},n{at,cept,dice,ec,fese,gres,ina,kurs,takt,zerva},p{anec,ie,nout,rovka},r{bel,ektor,midlo,optev,pus,una,yto,zet},s{atec,tka},t{el,leta,oul},u{kat,pelna,sek,zlo},vboj,z{a,oroh}},r{a{bice,ch,jina,lovat,sopis,vata},e{dit,jcar,sba,veta},i{ket,tik,ze},kavec,m{elec,ivo},o{can,k,nika,pit,upa,vka},tek,u{hadlo,pice,tost},vinka,y{chle,pta,stal,t}},u{dlanka,fr,jnost,kla,l{ajda,ich,ka,omet,tura},na,podivu,r{t,zor},til},v{a{lita,sinka},estor},y{nolog,selina,t{ara,ice,ka,ovec},vadlo}} l{a{brador,chtan,dnost,ik,komec,m{ela,pa},novka,s{ice,o,tura},tinka,vina},e{bka,ckdy,d{en,nice,ovka,vina},g{enda,ie,race},h{ce,kost,nout},ktvar,n{ochod,tilka},p{enka,idlo},t{adlo,ec,mo,okruh},v{hart,itace,obok}},i{bra,chotka,d{ojed,skost},hovina,javec,lek,metka,n{ie,ka,oleum},stopad,t{ina,ovat}},o{bista,divod,g{ika,oped},k{alita,et},mcovat,p{ata,uch},rd,sos,tr,u{dal,h,ka,skat},vec},stivost,u{c{erna,ifer},mp,s{k,trace}},vice,y{r{a,ika},sina}} m{a{d{am,lo},gistr,hagon,j{etek,itel,orita},k{ak,ovice,rela},l{ba,ina,ovat,vice},minka,n{dle,ko},rnost,s{akr,kot,opust},t{ice,rika,urita},z{anec,ivo,lit,urka}},dloba,e{chanik,d{itace,ovina},l{asa,oun},ntolka,t{la,oda,r},zera},i{grace,h{nout,ule},k{ina,rofon},l{enec,imetr,ost},mika,n{covna,ibar,omet,ulost},s{ka,tr},xovat},l{adost,h{a,ovina},ok,sat,uvit},n{ich,ohem},o{bil,cnost,d{elka,litba},hyla,kro,lekula,mentka,n{archa,okl,strum,tovat,zun},s{az,kyt,t},t{ivace,orka,yka},u{cha,drost},z{aika,ek,ol}},r{a{mor,venec},kev,tvola,z{et,utost}},stitel,u{drc,flon,lat,mie,nice,set,tace,z{eum,ikant}},yslivec,zda} n{a{bourat,chytat,d{ace,bytek,hoz,obro,pis},h{las,nat,odile,radit},ivita,j{ednou,isto,mout},k{lonit,onec,rmit},levo,m{azat,luvit},nometr,o{ko,pak,stro},p{adat,evno,lnit,nout,osled,rosto},r{odit,uby,ychlo},s{adit,ekat,lepo,tat},tolik,v{enek,rch,zdory},zvat},e{be,c{hat,ky},d{aleko,bat,uh},gace,h{et,oda},j{en,prve},klid,libost,m{ilost,oc},o{chota,nka},pokoj,r{ost,v},s{mysl,oulad},tvor,uron,vina,zvykle},i{cota,jak,k{am,dy,l,terak},tro},o{cleh,havice,minace,r{a,ek},s{itel,nost},uze,v{iny,ota},zdra},u{d{a,le},get,t{it,nost,rie}},ymfa} o{b{a{l,rvit,va},div,e{c,hnat,jmout,zita},hajoba,ilnice,j{asnit,ekt},klopit,l{ast,ek,iba,oha,uda},nos,o{hatit,jek,ut},r{azec,na,uba,ys},s{ah,luha,tarat},uv,v{az,init,od,ykle},yvatel,zor},c{as,e{l,nit},h{ladit,ota,rana},itnout},d{b{oj,yt},c{hod,izit},e{brat,slat,vzdat,zva},h{adce,odit},j{et,inud},k{az,oupit},l{iv,uka},mlka,olnost,p{ad,is,lout,or,ustit,ykat},razka,s{oudit,tup,un},t{ok,ud},v{aha,eta,olat,racet},znak},f{ina,sajd},h{las,nisko,r{ada,ozit,yzek}},k{ap,enice,lika,no,o{uzlit,vy},r{asa,es,sek,uh},u{pant,rka,sit}},l{ejnina,izovat},m{ak,e{leta,zit},l{adina,ouvat,uva},yl},nehdy,p{a{kovat,sek},erace,i{ce,lost,sovat},o{ra,zice},r{avdu,oti}},r{bital,chestr,gie,l{ice,oj},tel},s{ada,chnout,i{ka,vo},l{ava,epit,nit,ovit},nova,o{ba,lit},palec,t{en,raha,uda,ych},vojit},t{eplit,isk,op,r{hat,lost,ok,uby},vor},v{a{nout,r},es,livnit,oce},xid,zdoba} p{a{c{hatel,ient},douch,horek,kt,l{anda,ec,ivo,uba},m{flet,lsek},n{enka,ika,na,ovat,stvo,tofle},prika,r{keta,odie,ta,uka,yba},s{eka,ivita,telka},t{ent,rona},vouk,z{neht,ourek}},e{cka,dagog,jsek,klo,loton,n{alta,drek,ze},r{iskop,o},strost,t{arda,ice,rolej},vnina,xeso},i{anista,ha,javice,k{le,nik},l{ina,nost,ulka},nzeta,peta,s{atel,tole},tevna,v{nice,ovar}},l{a{centa,kat,men,neta,stika,tit,vidlo,z},e{ch,meno,nta,s,tivo,vel},ivat,n{it,o},o{cha,dina,mba,ut},uk,yn},o{b{avit,yt},c{hod,it,tivec},d{at,cenit,epsat,hled,ivit,klad,manit,nik,oba,pora,raz,stata,vod,zim},ezie,h{anka,nutka,ovor,roma,yb},inta,j{istka,mout},k{azit,les,oj,rok,uta,yn},l{edne,ibek,knout,oha,ynom},m{alu,inout,lka,oc,sta,yslet},n{echat,orka,urost},p{adat,el,isek,lach,rosit,sat,ud},r{adce,ce,od,ucha,yv},s{adit,ed,ila,kok,lanec,oudit,polu,tava,udek,yp},t{ah,kan,lesk,omek,rava,upa,vora},u{kaz,to,zdro},v{aha,idla,lak,oz,rch,stat,yk,zdech},z{drav,emek,natek,or,vat}},r{a{covat,hory,ktika,les,otec,porek,se,vda},incip,kno,o{budit,cento,dej,fese,hra,jekt,lomit,mile,nikat,pad,rok,sba,ton,utek,vaz},s{kavka,ten},u{dkost,t},v{ek,ohory}},s{anec,ovod,truh},tactvo,u{berta,ch,dl,k{avec,lina,rle},lt,mpa,nc,pen,s{a,inka,tina},t{ovat,yka}},y{ramida,sk,tel}} r{a{c{ek,hot},d{iace,nice,on},ft,gby,k{eta,ovina},m{eno,pouch},nde,r{ach,ita},s{ovna,tr},tolest,z{ance,idlo}},e{a{govat,kce},cept,daktor,f{erent,lex},jnok,k{lama,ord,rut,tor},putace,v{ize,ma,olver},zerva},i{skovat,ziko},o{botika,dokmen,hovka,k{le,oko},maneto,p{ovod,ucha},rejs,s{ol,tlina},t{mistr,oped,unda},u{benka,cho,p,ra},v{ina,nice},z{bor,chod,dat,eznat,hodce,inka,jezd,kaz,loha,mar,pad,ruch,sah,tok,um,vod}},u{brika,chadlo,k{avice,opis}},y{b{a,olov},chlost,dlo,padlo,tina,zost}} s{a{dista,hat,ko,m{ec,izdat,ota},nitka,rdinka,sanka,telit,z{ba,enice}},bor,chovat,e{branka,cese,d{adlo,iment,lo},hnat,jmout,k{era,ta,unda,voje},meno,no,rvis,s{adit,hora,kok,lat,tra,uv,ypat},t{ba,ina,kat,nout,rvat},ver,znam},h{oda,rnout},i{fon,lnice,r{ka,otek,up},tuace},k{a{fandr,lisko,nzen,ut},eptik,ica,l{adba,enice,o,uz},o{ba,kan,ro},r{ipta,z},upina,v{ost,rna}},l{a{bika,didlo,nina,st,vnost},e{dovat,pec,va,zina},i{b,na,znice},o{n,upek,vo},u{ch,ha,nce,pka},za},m{aragd,etana,ilstvo,louva,og,r{ad,k,tka},utek,ysl},n{a{d,ha},ob},o{bota,cha,dovka,kol,pka,tva,u{boj,cit,dce,hlas,lad,mrak,prava,sed,tok,viset}},p{a{lovna,sitel},is,lav,o{dek,jenec,lu,nzor,rnost,usta},rcha,ustit},r{a{nda,z},dce,n{a,ec},ovnat,pen,st,ub},t{a{nice,rosta,tika,vba},e{hno,zka},o{dola,lek,pa,rno,upat},r{ach,es,hnout,om,una},u{dna,pnice},vol,yk},u{b{jekt,tropy},char,dost,kno,n{dat,out},r{ikata,ovina}},v{a{h,lstvo},etr,a{tba,zek},i{sle,tek},o{boda,didlo,rka},rab},y{k{avka,ot},n{ek,ovec},p{at,kost},rovost,sel,tost}} t{a{b{letka,ule},houn,j{emno,fun,ga,it,nost},ktika,m{hle,pon},n{covat,ec,ker},peta,venina,zatel},e{chnika,hdy,kutina,lefon,mnota,n{dence,ista,or},p{lota,na,rve},r{apie,moska},xtil},i{cho,skopis,tulek},ka{dlec,nina},l{apka,eskat,u{kot,pa}},mel,o{aleta,p{inka,ol},rzo,u{ha,lec}},r{a{dice,ktor,mp,sa,verza},e{fit,st,zor},h{avina,lina},o{chu,jice,ska,uba},p{ce,itel,kost},u{bec,chlit,hlice,s},vat},u{dy,h{nout,ost},ndra,r{ista,naj},zemsko},v{aroh,orba,r{dost,z}},y{gr,kev}} u{b{o{host,ze},r{at,ousek,us},ytovna},c{ho,tivost},divit,hradit,j{ednat,istit,mout},k{azatel,l{idnit,onit},otvit,rojit},l{i{ce,ta},ovit},myvadlo,n{avit,i{forma,knout}},p{adnout,l{atnit,ynout},outat,ravit},ra{n,zit},s{ednout,ilovat,mrtit,n{adnit,out},oudit,t{lat,rnout}},t{ahovat,kat,lumit,o{nout,penec},rousit},v{alit,o{lnit,zovka}},z{dravit,e{l,nina},lina,nat}} v{a{gon,l{cha,oun},n{a,dal,ilka},r{an,hany,ovat}},c{elku,hod},dova,e{dro,getace,jce,l{bloud,etrh,itel,moc,ryba},nkov,r{anda,ze},s{elka,krze,nice,podu,ta},terina,verka},i{brace,chr,d{eohra,ina,le},la,nice,set,talita,z{e,itka}},jezd,k{lad,us},l{a{jka,k,sec},evo,hkost,iv,novka,oupat},nu{covat,k},o{d{a,ivost,oznak,stvo},j{ensky,na,sko},l{ant,ba,it,no},skovka,z{idlo,ovna}},pravo,r{a{bec,cet,h,ta},ba,cholek,hat,stva,tule},s{adit,t{oupit,up}},tip,y{b{avit,rat},chovat,d{at,ra},fotit,h{ledat,nout,odit,radit,ubit},j{asnit,et,mout},k{lopit,onat},lekat,m{azat,ezit,izet,yslet},n{echat,ikat,utit},p{adat,latit,ravit,ustit},r{azit,ovnat,vat},s{lovit,oko,tavit,unout,ypat},t{asit,esat,ratit},v{inout,olat,rhel},z{dobit,nat}},z{adu,budit,chopit,d{or,uch,ychat},estup,hledem,kaz,lykat,nik,orek,poura,t{ah,ek}}} xylofon z{a{b{rat,ydlet},chovat,d{armo,usit},foukat,h{ltit,odit,rada,ynout},j{atec,et,istit},k{lepat,oupit},lepit,m{ezit,otat,yslet},n{echat,ikat},p{latit,ojit,sat},razit,s{tavit,unout},t{ajit,emnit,knout},ujmout,v{alit,elet,init,olat,rtat},zvonit},b{avit,rusu,udovat,ytek},d{a{leka,rma,tnost},ivo,obit,roj,vih,ymadlo},e{lenina,m{an,ina},ptat,z{adu,dola}},h{atit,l{tnout,uboka},otovit,ruba},im{a,nice},jemnit,k{lamat,oumat,ratka,umavka},l{ato,ehka,o{ba,m,st,zvyk}},m{a{povat,r,tek},i{je,zet},o{cnit,drat},rzlina,utovat},n{a{k,lost,menat},ovu},o{brazit,tavit,u{bek,fale}},p{lodit,omalit,r{ava,ostit,udka,vu}},r{a{da,nit},cadlo,n{itost,o},ovna,ychlit,zavost},t{icha,ratit},ub{ovina,r},v{e{dnout,nku,sela},on,rat,ukovod,yk}} ;;
ko?(_*)) echo แแ
กแแ
งแจ แแ
กแแ
ณแท แแ
กแแ
กแซ แแ
กแแ
ณแผ แแ
กแแ
ณแจ แแ
กแ
แ
ณแแ
ตแท แแ
กแแ
ฎแท แแ
กแแ
กแผ แแ
กแแ
กแผ แแ
กแแ
ณแท แแ
กแแ
ฎแซแแ
ฆ แแ
กแแ
ณแฏ แแ
กแแ
ตแแ
ณ แแ
กแแ
ตแธ แแ
กแแ
กแผ แแ
กแแ
ฅแผ แแ
กแแ
ฉแจ แแ
กแแ
ฎแจ แแ
กแจแแ
ฉ แแ
กแจแแ
ก แแ
กแซแแ
งแจ แแ
กแซแแ
ฎ แแ
กแซแแ
ฅแธ แแ
กแซแแ
กแผ แแ
กแซแแ
ฅแธ แแ
กแซแแ
กแซ แแ
กแฏแแ
ณแผ แแ
กแฏแแ
ต แแ
กแฏแแ
ขแจ แแ
กแฏแแ
ณแผ แแ
กแทแแ
กแจ แแ
กแทแแ
ต แแ
กแทแแ
ฉ แแ
กแทแแ
ฎแแ
ฅแผ แแ
กแทแแ
ก แแ
กแทแแ
ฅแผ แแ
กแธแแ
กแแ
ต แแ
กแผแแ
กแท แแ
กแผแแ
กแผ แแ
กแผแแ
ฉ แแ
กแผแ
แ
งแจแแ
ต แแ
กแผแแ
งแซ แแ
กแผแแ
ฎแจ แแ
กแผแแ
ก แแ
กแผแแ
ฎแ
แ
ฃแผ แแ
กแผแแ
กแแ
ต แแ
กแผแแ
ฏแซแแ
ฉ แแ
กแผแแ
ด แแ
กแผแแ
ฆ แแ
กแผแแ
ฉ แแ
กแแแ
ต แแ
ขแแ
ฎแ
แ
ต แแ
ขแแ
กแ
แ
ต แแ
ขแแ
กแผ แแ
ขแแ
งแฏ แแ
ขแแ
ฅแซ แแ
ขแแ
ฅแผ แแ
ขแแ
ตแซ แแ
ขแจแแ
ชแซแแ
ฅแจ แแ
ฅแแ
ตแฏ แแ
ฅแแ
ขแจ แแ
ฅแแ
ฎแฏ แแ
ฅแแ
ตแบ แแ
ฅแแ
ฎแท แแ
ฅแจแแ
ฅแผ แแ
ฅแซแแ
กแผ แแ
ฅแซแแ
ฎแฏ แแ
ฅแซแแ
ฅแฏ แแ
ฅแซแแ
ฉ แแ
ฅแซแแ
ฎแจ แแ
ฅแฏแแ
ณแท แแ
ฅแทแแ
ก แแ
ฅแทแแ
ฉ แแ
ฆแแ
ตแแ
กแซ แแ
ฆแแ
ตแท แแ
งแแ
ฎแฏ แแ
งแซแแ
ข แแ
งแฏแแ
ช แแ
งแฏแแ
ฎแจ แแ
งแฏแ
แ
ฉแซ แแ
งแฏแแ
ฅแจ แแ
งแฏแแ
ณแผ แแ
งแฏแแ
ตแท แแ
งแฏแแ
ฅแผ แแ
งแฏแแ
ฉแซ แแ
งแผแแ
จ แแ
งแผแแ
ฉ แแ
งแผแแ
ต แแ
งแผแ
แ
งแจ แแ
งแผแแ
ฉแจแแ
ฎแผ แแ
งแผแแ
ต แแ
งแผแแ
กแผแแ
ฉ แแ
งแผแแ
งแผ แแ
งแผแแ
ฎ แแ
งแผแแ
ขแผ แแ
งแผแแ
ฆ แแ
งแผแแ
ฎ แแ
งแผแแ
กแฏ แแ
งแผแแ
ต แแ
งแผแแ
ฃแผ แแ
งแผแแ
ฅแท แแ
จแแ
ฉแจ แแ
จแแ
กแซ แแ
จแ
แ
กแซ แแ
จแแ
กแซ แแ
จแแ
ฉแจ แแ
จแแ
ฃแจ แแ
จแแ
ฅแฏ แแ
จแแ
ณแผ แแ
จแแ
ฌแจ แแ
ฉแแ
ขแจ แแ
ฉแแ
ฎแ
แ
ง แแ
ฉแแ
ฎแผ แแ
ฉแแ
ณแธ แแ
ฉแแ
ณแผแแ
กแจแแ
ขแผ แแ
ฉแแ
ฎแแ
ตแซ แแ
ฉแแ
ตแซ แแ
ฉแแ
ฃแผแแ
ต แแ
ฉแแ
กแผ แแ
ฉแแ
ฅแซ แแ
ฉแแ
ตแธ แแ
ฉแแ
ฎแบแแ
กแ
แ
ฎ แแ
ฉแแ
ฉแผ แแ
ฉแแ
ฃแผ แแ
ฉแจแแ
ตแจ แแ
ฉแฏแแ
ฉแจ แแ
ฉแฏแแ
กแแ
ต แแ
ฉแฏแแ
ณ แแ
ฉแผแแ
กแซ แแ
ฉแผแแ
ข แแ
ฉแผแแ
งแจ แแ
ฉแผแแ
ฎแซ แแ
ฉแผแแ
ณแธ แแ
ฉแผแแ
ต แแ
ฉแผแแ
ฉแผ แแ
ฉแผแแ
ฎแแ
ฏแซ แแ
ฉแผแแ
ฎ แแ
ฉแผแแ
ก แแ
ฉแผแแ
ตแจ แแ
ฉแผแแ
ฅแธ แแ
ฉแผแแ
งแซ แแ
ฉแผแแ
ฏแซ แแ
ฉแผแแ
กแผ แแ
ฉแผแแ
ก แแ
ฉแผแแ
ขแจ แแ
ฉแผแแ
ฉแผ แแ
ฉแผแแ
ฉ แแ
ฉแผแแ
กแผ แแ
ฉแผแแ
ฒแแ
ตแฏ แแ
ชแแ
ฉแจ แแ
ชแแ
ตแฏ แแ
ชแแ
กแผ แแ
ชแแ
ฅแผ แแ
ชแแ
กแจ แแ
ชแซแแ
ขแจ แแ
ชแซแแ
จ แแ
ชแซแแ
ชแผ แแ
ชแซแแ
งแท แแ
ชแซแ
แ
กแท แแ
ชแซแ
แ
งแซ แแ
ชแซแ
แ
ต แแ
ชแซแแ
ณแธ แแ
ชแซแแ
ตแท แแ
ชแซแแ
ฅแท แแ
ชแซแแ
กแฏ แแ
ชแผแแ
งแผ แแ
ชแผแแ
ฉ แแ
ชแผแแ
กแผ แแ
ชแผแแ
ฎ แแ
ฌแ
แ
ฉแแ
ฎแท แแ
ฌแผแแ
กแผแแ
ต แแ
ญแแ
ชแแ
ฅ แแ
ญแแ
ฎแซ แแ
ญแแ
ฉแจ แแ
ญแแ
ตแฏ แแ
ญแแ
ฃแผ แแ
ญแแ
ฒแจ แแ
ญแแ
กแผ แแ
ญแแ
ตแจ แแ
ญแแ
ฉแผ แแ
ญแแ
ชแซ แแ
ญแแ
ฎแซ แแ
ฎแแ
งแผ แแ
ฎแ
แ
ณแท แแ
ฎแแ
ฅแผ แแ
ฎแแ
งแฏ แแ
ฎแแ
ฎแซ แแ
ฎแแ
ฅแจ แแ
ฎแแ
ฅแผ แแ
ฎแแ
ฉแจ แแ
ฎแแ
งแจ แแ
ฎแแ
ตแธ แแ
ฎแแ
ฅแผ แแ
ฎแแ
ฆแแ
ฅแจ แแ
ฎแจแแ
ก แแ
ฎแจแแ
ต แแ
ฎแจแแ
ข แแ
ฎแจแ
แ
ตแธ แแ
ฎแจแแ
ฎแฏ แแ
ฎแจแแ
ตแซ แแ
ฎแจแแ
ฎ แแ
ฎแจแแ
ฅ แแ
ฎแจแแ
ชแผ แแ
ฎแจแแ
ฅแจ แแ
ฎแจแแ
ฆ แแ
ฎแจแแ
ฌ แแ
ฎแซแแ
ข แแ
ฎแซแแ
ก แแ
ฎแซแแ
ตแซ แแ
ฎแผแแ
ณแจแแ
ฅแจ แแ
ฏแซแ
แ
ต แแ
ฏแซแแ
ฑ แแ
ฏแซแแ
ฎ แแ
ฑแแ
ฎแจ แแ
ฑแแ
ตแซ แแ
ฒแแ
ฅแผ แแ
ฒแแ
ตแจ แแ
ฒแซแแ
งแผ แแ
ณแแ
กแฏ แแ
ณแแ
ฃแผ แแ
ณแแ
ณแฏ แแ
ณแ
แ
ฅแแ
ก แแ
ณแ
แ
ฎแธ แแ
ณแ
แ
ณแบ แแ
ณแ
แ
ตแท แแ
ณแแ
ฆแแ
ฅแแ
ฃ แแ
ณแแ
ฉแ
แ
ฉแจ แแ
ณแจแแ
ฉแจ แแ
ณแจแแ
ต แแ
ณแซแแ
ฅ แแ
ณแซแแ
ญ แแ
ณแซแ
แ
ข แแ
ณแซแ
แ
ฉ แแ
ณแซแแ
ฎ แแ
ณแซแแ
ฉแซ แแ
ณแซแแ
ฏแซ แแ
ณแซแแ
ฒแจ แแ
ณแซแแ
ฅ แแ
ณแฏแแ
ต แแ
ณแฏแแ
ก แแ
ณแทแแ
กแผแแ
กแซ แแ
ณแทแแ
ฉ แแ
ณแทแแ
งแซ แแ
ณแทแแ
ฆแแ
กแฏ แแ
ณแทแแ
ขแจ แแ
ณแทแแ
งแซ แแ
ณแทแแ
ญแแ
ตแฏ แแ
ณแทแแ
ต แแ
ณแผแแ
ฅแผแแ
ฅแจ แแ
ตแแ
กแซ แแ
ตแแ
ชแซ แแ
ตแแ
งแท แแ
ตแแ
ณแผ แแ
ตแแ
ฉแจแแ
ญ แแ
ตแแ
ฎแผ แแ
ตแ
แ
ฉแจ แแ
ตแ
แ
ณแท แแ
ตแแ
ฅแธ แแ
ตแแ
ฉแซ แแ
ตแแ
ฎแซ แแ
ตแแ
ณแท แแ
ตแแ
ฎแจแแ
ก แแ
ตแแ
ฎแฏ แแ
ตแแ
ฅแจ แแ
ตแแ
ฅแธ แแ
ตแแ
ฉแซ แแ
ตแแ
ฎแซ แแ
ตแแ
ฏแซ แแ
ตแแ
ฅแจ แแ
ตแแ
ฎแซ แแ
ตแแ
ตแท แแ
ตแแ
ฉแซ แแ
ตแแ
ฌแจ แแ
ตแซแแ
ณแธ แแ
ตแซแแ
กแผ แแ
ตแฏแแ
ต แแ
ตแทแแ
กแธ แแ
ตแทแแ
ต แแ
ตแทแแ
ฉแแ
ฉแผแแ
กแผ แแ
กแจแแ
ฎแแ
ต แแ
กแทแแ
กแจ แแ
ขแแ
กแฏแแ
ณแท แแ
ขแแ
ฉแแ
ณแท แแ
ฅแธแแ
ตแฏ แแ
ฉแจแแ
ขแแ
ต แแ
ฉแพแแ
ตแ แแ
กแแ
ณแฏแแ
ต แแ
กแ
แ
กแซแแ
ต แแ
กแแ
ฅแแ
ต แแ
กแแ
ฎแฏ แแ
กแแ
ตแทแแ
กแซ แแ
กแแ
ณแฏ แแ
กแจแแ
งแธ แแ
กแซแแ
กแผ แแ
กแฏแแ
ข แแ
กแฏแแ
ต แแ
กแฏแแ
ก แแ
กแทแแ
ง แแ
กแทแแ
ขแแ
ฎแซ แแ
กแทแแ
ข แแ
กแทแแ
กแซ แแ
กแทแแ
ก แแ
กแทแแ
งแซ แแ
กแทแแ
กแจแแ
ขแผ แแ
กแผแแ
ต แแ
กแแแ
กแฏ แแ
ขแแ
งแซ แแ
ขแแ
ญแผ แแ
ขแแ
ตแฏ แแ
ขแทแแ
ต แแ
ขแทแแ
ข แแ
ขแบแแ
ฎแฏ แแ
ขแผแแ
ฉแผ แแ
ขแผแแ
งแซ แแ
ขแผแแ
กแผ แแ
ขแผแแ
กแผแแ
ฉ แแ
ฆแจแแ
กแแ
ต แแ
ฆแบแแ
ข แแ
ฉแแ
ฉแผ แแ
ฉแ
แ
กแซแแ
ขแจ แแ
ฉแ
แ
งแจ แแ
ฉแแ
ตแซ แแ
ฉแจแแ
ณแท แแ
ฉแจแแ
ก แแ
ฉแจแแ
ช แแ
ฉแซแ
แ
ต แแ
ฉแซแแ
ฎแซ แแ
ฉแซแแ
ขแผ แแ
ฉแฏแแ
ต แแ
ฉแผแแ
ฎ แแ
ฉแผแแ
กแท แแ
ฉแผแแ
ตแซ แแ
ฉแผแแ
ฎ แแ
ฉแผแแ
ฅแธ แแ
ฉแผแแ
กแผ แแ
ฉแผแแ
ฉแซ แแ
ฉแแแ
ต แแ
ฎแซแแ
ฉแผแแ
ก แแ
ฎแซแแ
ฎแฏ แแ
ฎแซแแ
ฅแธ แแ
ฒแแ
ญแจ แแ
ณแแ
ตแท แแ
ณแจแแ
ข แแ
ณแผแแ
ฉแผแแ
ฅแจ แแ
ณแผแ
แ
งแจ แแ
กแแ
กแผ แแ
กแแ
ฃแผแแ
ฅแผ แแ
กแแ
ณแท แแ
กแแ
ตแแ
ฅแแ
ณ แแ
กแแ
ขแผ แแ
กแซแแ
จ แแ
กแซแแ
ฉแฏ แแ
กแซแแ
ฉแจ แแ
กแซแแ
กแบ แแ
กแซแแ
ฎแซ แแ
กแซแแ
ฅ แแ
กแซแแ
ฑ แแ
กแซแแ
ฅแท แแ
กแซแแ
ฆ แแ
กแซแแ
ฎ แแ
กแซแแ
งแซ แแ
กแซแแ
ฎแผ แแ
กแฏแแ
ฃแฏ แแ
กแฏแ
แ
ฅ แแ
กแฏแ
แ
งแจ แแ
กแฏแ
แ
ต แแ
กแฐแแ
ฉแแ
ต แแ
กแทแแ
กแผ แแ
กแทแแ
ข แแ
กแทแแ
ญ แแ
กแทแแ
ตแท แแ
กแธแแ
งแซ แแ
กแธแแ
กแผ แแ
กแผแแ
ณแซ แแ
กแผแแ
ฎแซแแ
กแซ แแ
กแผแแ
งแซแแ
ต แแ
กแผแแ
กแผ แแ
ขแแ
ฒแแ
ฉ แแ
ขแแ
กแฝ แแ
ขแแ
กแซแแ
ต แแ
ขแแ
กแธ แแ
ขแแ
ฉแแ
ต แแ
ขแ
แ
ฃแจ แแ
ขแ
แ
ฃแผ แแ
ขแ
แ
ฒแจ แแ
ขแแ
ฎแซ แแ
ขแแ
ฎแแ
ฎแซ แแ
ขแแ
ตแซ แแ
ขแแ
ณแผ แแ
ขแแ
กแผ แแ
ขแแ
ฅแซ แแ
ขแแ
ฅแธ แแ
ขแแ
ฎแผ แแ
ขแแ
ขแจ แแ
ขแแ
ฎแฏ แแ
ขแแ
ฎแผ แแ
ขแแ
ฉแผแ
แ
งแผ แแ
ขแแ
กแจ แแ
ขแแ
กแซแแ
ตแซแแ
ฎแจ แแ
ขแแ
กแธแแ
ตแฏ แแ
ขแแ
งแผ แแ
ฅแผแแ
ฅแ
แ
ต แแ
ฆแแ
ตแแ
ณ แแ
ฉแแ
ขแแ
ฆ แแ
ฉแแ
ฅแจ แแ
ฉแแ
ฎแจ แแ
ฉแแ
กแผ แแ
ฉแแ
ฅแแ
ชแซ แแ
ฉแแ
ตแท แแ
ฉแแ
ฎแท แแ
ฉแแ
ตแธ แแ
ฉแแ
กแแ
ต แแ
ฉแแ
ฅแแ
ต แแ
ฉแแ
ฅแซ แแ
ฉแแ
ฎแผ แแ
ฉแแ
กแจ แแ
ฉแจแแ
กแท แแ
ฉแจแ
แ
ตแธ แแ
ฉแจแแ
ฅ แแ
ฉแจแแ
ตแฏ แแ
ฉแจแแ
กแผแแ
ฅแจ แแ
ฉแผแแ
ชแแ
ขแจ แแ
ฑแบแแ
ฉแแ
ณแธ แแ
ฑแบแแ
กแซ แแ
กแฏแแ
กแแ
ต แแ
กแแ
ฎแ
แ
ก แแ
กแแ
ณแฏ แแ
กแแ
กแผ แแ
กแ
แ
กแแ
ฉแซ แแ
กแ
แ
งแซ แแ
กแแ
ฎแ
แ
ต แแ
กแแ
กแแ
ต แแ
กแแ
ฃแจ แแ
กแแ
ญแแ
ฆแแ
ณ แแ
กแแ
ณแฏ แแ
กแแ
ณแท แแ
กแแ
ตแแ
ณ แแ
กแแ
ฎแผ แแ
กแแ
ตแแ
กแจ แแ
กแแ
กแซแแ
กแแ
ต แแ
กแแ
กแฏ แแ
กแแ
ณแซ แแ
กแจแแ
ฅแฏแ
แ
ต แแ
กแจแแ
ข แแ
กแจแแ
กแผ แแ
กแซแแ
กแท แแ
กแซแแ
ฎ แแ
กแซแแ
ฆ แแ
กแซแแ
ฃแจ แแ
กแซแแ
ตแฏ แแ
กแซแแ
ฅแท แแ
กแซแแ
ฉแจ แแ
กแซแแ
ช แแ
กแญแแ
ต แแ
กแฏแแ
ต แแ
กแฏแแ
ณแท แแ
กแฏแแ
ฎ แแ
กแทแแ
ขแ
แ
ฉ แแ
กแผแแ
ฏแซแแ
งแผ แแ
ขแแ
งแซ แแ
ขแแ
กแฏ แแ
ขแ
แ
งแจ แแ
ขแแ
ฅแซ แแ
ขแแ
ณแแ
ฅแท แแ
ขแแ
ตแฏ แแ
ขแแ
กแผ แแ
ขแจแแ
ฎ แแ
ฅแจแแ
ต แแ
ฅแซแแ
ฅ แแ
ฅแซแแ
ต แแ
ฅแฏแ
แ
ต แแ
ฆแแ
ตแฏ แแ
งแแ
ณแ
แ
ต แแ
งแแ
ตแฏ แแ
งแซแแ
กแท แแ
งแฏแแ
ต แแ
งแผแแ
กแซ แแ
งแผแ
แ
งแผ แแ
งแผแแ
จ แแ
งแผแแ
ด แแ
งแผแแ
ฅแฏ แแ
งแผแแ
ตแผ แแ
งแผแแ
กแท แแ
ฉแแ
ณแท แแ
ฉแแ
ตแแ
ฅ แแ
ฉแแ
ฆแฏ แแ
ฉแแ
ณแซ แแ
ฉแแ
ฅแท แแ
ฉแแ
ณแธ แแ
ฉแแ
ฃแผ แแ
ฉแแ
ตแท แแ
ฉแแ
ฉแ
แ
ต แแ
ฉแแ
ตแธ แแ
ฉแแ
ฎแผแแ
ต แแ
ฉแจแแ
ฅแฏแแ
ต แแ
ฉแจแ
แ
ฉแจ แแ
ฉแจแแ
ก แแ
ฉแจแแ
ฉแ
แ
ต แแ
ฉแจแแ
ฎแท แแ
ฉแจแแ
ฅแจ แแ
ฉแจแแ
ญ แแ
ฉแฏแ
แ
ข แแ
ฉแทแแ
ข แแ
ฉแทแแ
ฎแแ
ฆ แแ
ฉแทแแ
กแฏ แแ
ฉแทแแ
ฉแจ แแ
ฉแทแแ
ตแบ แแ
ฉแทแแ
ฉแผ แแ
ฉแธแแ
ต แแ
ฎแแ
ชแซแแ
ตแท แแ
ฎแแ
ฎแผแแ
ช แแ
ฎแแ
ฅแแ
ฑ แแ
ฎแแ
ฅแท แแ
ฎแ
แ
ณแ แแ
ฎแแ
ณแซ แแ
ฎแแ
ฅแบ แแ
ฎแแ
งแจ แแ
ฎแแ
ญแผ แแ
ฎแแ
ฉแแ
ฅแซ แแ
ฎแแ
ตแแ
ข แแ
ฎแแ
ฅแจ แแ
ฎแซแแ
ฎ แแ
ฎแซแแ
ณแจ แแ
ฎแซแแ
ฅแธ แแ
ฎแซแแ
ฅ แแ
ฎแซแแ
ฆ แแ
ฎแซแแ
กแจ แแ
ฎแซแแ
ช แแ
ฎแฏแแ
ก แแ
ฎแฏแแ
ฅแซ แแ
ฎแฏแแ
งแฏ แแ
ฎแฏแแ
ฉแแ
ต แแ
ฎแฏแ
แ
ฉแซ แแ
ฎแฏแ
แ
ตแแ
กแจ แแ
ฎแฏแแ
ณแท แแ
ฎแฏแแ
ตแฏ แแ
ฎแฏแแ
ฆ แแ
ตแแ
ฎแจ แแ
ตแแ
ตแแ
ฅ แแ
ตแแ
กแแ
ตแฏ แแ
ตแแ
ฎแฏ แแ
ตแแ
งแจ แแ
ตแแ
ญแผแแ
ตแฏ แแ
ตแแ
ฎแท แแ
ตแแ
ตแซ แแ
ตแแ
ตแผ แแ
ตแแ
ฉแซ แแ
ตแซแแ
กแซ แแ
ตแซแแ
ฉแจ แแ
ตแซแแ
ฎ แแ
ตแฎแแ
ณแท แแ
ตแฏแแ
กแ
แ
ฎ แแ
ตแฏแ
แ
ตแแ
ตแแ
ฅ แแ
ตแแแ
กแแ
กแจ แแ
กแแ
กแแ
ต แแ
กแแ
ฎแแ
ต แแ
กแแ
กแแ
ก แแ
กแแ
ณแฏ แแ
กแแ
กแจ แแ
กแแ
กแบแแ
ก แแ
กแ
แ
กแท แแ
กแแ
ตแ
แ
ฅแแ
ณ แแ
กแแ
กแผ แแ
กแจแแ
ฎแฏแแ
ชแซ แแ
กแจแแ
ก แแ
กแจแแ
ฎ แแ
กแซแแ
ข แแ
กแซแแ
ณแแ
ต แแ
กแซแแ
กแฏ แแ
กแซแแ
กแฏ แแ
กแซแแ
ฅแผ แแ
กแซแแ
ณแผ แแ
กแซแแ
กแผ แแ
กแซแแ
ฎแจ แแ
กแซแแ
ต แแ
กแซแแ
กแซ แแ
กแฎแแ
ตแท แแ
กแฏแแ
กแ
แ
กแจ แแ
กแฏแแ
ฅแฏแแ
ณแท แแ
กแฏแแ
งแซ แแ
กแฏแแ
กแฏ แแ
กแฏแ
แ
ฆ แแ
กแฏแแ
ฉแจ แแ
กแฏแแ
กแแ
กแจ แแ
กแฏแแ
ขแผ แแ
กแฏแแ
ณแท แแ
กแฏแแ
กแแ
ฎแจ แแ
กแฏแแ
ฅแซ แแ
กแฏแแ
ฉแธ แแ
กแฏแแ
ญ แแ
กแทแแ
กแแ
ณแฏ แแ
กแธแแ
ณแ
แ
ณแบ แแ
กแธแแ
กแบ แแ
กแธแแ
กแผ แแ
กแธแแ
ฉแ แแ
กแผแแ
ณแท แแ
กแผแแ
งแซ แแ
กแผแแ
ฎแซ แแ
กแผแแ
กแแ
กแจ แแ
กแผแแ
ฅแธ แแ
กแผแแ
ฉแผ แแ
กแผแแ
ตแจ แแ
กแผแแ
กแซ แแ
กแผแแ
ฎแฏ แแ
กแผแแ
ต แแ
กแผแแ
กแจ แแ
กแผแแ
ข แแ
กแผแแ
ฃแผ แแ
ขแแ
งแผ แแ
ขแแ
ฉแธ แแ
ขแแ
กแฏ แแ
ขแแ
ณแแ
ตแซแแ
ฅแซ แแ
ขแจแแ
ฎแแ
กแซ แแ
ขแจแแ
ขแจ แแ
ขแจแแ
ฅแผ แแ
ขแจแแ
ตแซ แแ
ขแจแแ
ฆ แแ
ขแจแแ
ชแแ
ฅแท แแ
ฅแ
แ
ณแบ แแ
ฅแแ
ฅแบ แแ
ฅแแ
ณแซ แแ
ฅแซแแ
ข แแ
ฅแซแแ
งแจ แแ
ฅแซแแ
ต แแ
ฅแซแแ
ฉ แแ
ฅแฏแแ
ณแท แแ
ฅแฏแ
แ
ฆ แแ
ฅแฏแแ
ฅ แแ
ฅแทแแ
ฑ แแ
ฅแทแแ
ตแซ แแ
ฅแทแแ
ฌ แแ
ฅแธแ
แ
ฒแฏ แแ
ฅแธแแ
ฏแซ แแ
ฅแธแแ
ฅแจ แแ
ฅแธแแ
ตแจ แแ
ฆแแ
ตแแ
ตแผ แแ
ฆแฏแแ
ณ แแ
งแซแแ
งแผ แแ
งแซแแ
ฉแผ แแ
งแซแแ
งแผ แแ
งแซแแ
ตแซ แแ
งแซแแ
ฉแแ
ก แแ
งแซแแ
ช แแ
งแฏแแ
ฉ แแ
งแฏแแ
งแผ แแ
งแฏแแ
ตแฏ แแ
งแผแแ
ตแฏ แแ
งแผแแ
กแ
แ
ต แแ
งแผแแ
ฏแซ แแ
ฉแแ
ชแซ แแ
ฉแแ
ฅแแ
ณ แแ
ฉแ
แ
กแแ
ขแจ แแ
ฉแ
แ
กแท แแ
ฉแ
แ
ณแท แแ
ฉแแ
กแผ แแ
ฉแแ
กแซ แแ
ฉแแ
กแแ
ต แแ
ฉแแ
กแผ แแ
ฉแแ
ฅแซ แแ
ฉแแ
ฉแซ แแ
ฉแแ
ฉแผ แแ
ฉแแ
งแซแแ
ฅแจ แแ
ฉแแ
ฅแท แแ
ฉแจแแ
ฉ แแ
ฉแจแแ
ก แแ
ฉแจแแ
ฎแผแแ
ก แแ
ฉแจแแ
ณแธ แแ
ฉแฉแแ
ณแท แแ
ฉแซแแ
งแจแแ
ฅแจ แแ
ฉแซแ
แ
ข แแ
ฉแซแแ
ฎ แแ
ฉแซแแ
ก แแ
ฉแซแแ
ฅแผ แแ
ฉแซแแ
ตแซ แแ
ฉแซแแ
ตแฏ แแ
ฉแฏแแ
ฆแซ แแ
ฉแผแแ
ก แแ
ฉแผแแ
ต แแ
ฉแผแแ
ฎ แแ
ฎแแ
ณแซ แแ
ฎแแ
ณแ
แ
ฅแแ
ฎแท แแ
ฎแแ
กแท แแ
ฎแแ
ฉแผแแ
กแซ แแ
ฎแแ
ฎแซ แแ
ฎแแ
ฎแซ แแ
ฎแแ
กแซ แแ
ฎแแ
กแผ แแ
ฎแแ
ฅแฟ แแ
ฎแแ
ตแซ แแ
ฎแแ
กแจแแ
ญแผ แแ
ฎแแ
กแผ แแ
ฎแแ
ฅแผ แแ
ฎแแ
ฉแจ แแ
ฎแแ
ตแ
แ
ฅแซแแ
ต แแ
ฎแแ
ตแซ แแ
ฎแแ
กแจ แแ
ฎแแ
ฎแท แแ
ฎแแ
ฌแแ
กแผ แแ
ฎแจแแ
ฎ แแ
ฎแจแแ
กแซ แแ
ฎแซแแ
ฉ แแ
ฎแซแ
แ
ฃแผ แแ
ฎแซแ
แ
ต แแ
ฎแซแแ
งแผ แแ
ฎแซแแ
ฅแจ แแ
ฎแซแแ
ฃ แแ
ฎแซแแ
ฑแแ
ต แแ
ฎแซแแ
ตแฏ แแ
ฎแซแแ
ฉแผแแ
ขแจ แแ
ฎแฏแแ
ฉแแ
ต แแ
ฎแฏแแ
ช แแ
ฎแฏแแ
ญ แแ
ฎแฏแแ
ฉแพ แแ
ฎแฏแแ
กแซ แแ
ฎแฏแแ
ฅแธ แแ
ฎแฏแแ
ตแพ แแ
ฎแฏแแ
กแซ แแ
ฎแฏแแ
ตแแ
ตแจ แแ
ฎแฏแแ
ขแผ แแ
ณแ
แ
ขแซแแ
ณ แแ
ตแแ
ณแจ แแ
ตแแ
กแซ แแ
ตแแ
ตแฏ แแ
ตแแ
ฎแฏแแ
ต แแ
ตแแ
ตแแ
ฉ แแ
ตแ
แ
ฉแแ
ฉ แแ
ตแแ
กแซ แแ
ตแแ
งแผ แแ
ตแแ
ตแฏ แแ
ตแแ
กแ
แ
กแท แแ
ตแแ
ตแทแแ
กแธ แแ
ตแแ
กแผ แแ
ตแแ
ญแผ แแ
ตแแ
ฒแฏ แแ
ตแแ
ฎแผ แแ
ตแแ
กแแ
ตแซ แแ
ตแแ
กแซ แแ
ตแฏแแ
ตแผ แแ
ตแบแแ
ฎแฏ แแ
ตแบแแ
กแผแแ
ฎแฏ แแ
ตแบแแ
ฎแฏแแ
ต แแ
ตแพแแ
กแฏ แแ
กแฏแแ
กแซแแ
ขแจ แแ
กแฏแ
แ
ข แแ
กแฏแ
แ
ต แแ
กแแ
ฅแซ แแ
กแแ
จแแ
ฅแฏ แแ
กแแ
กแแ
ต แแ
กแแ
ฃแผ แแ
กแ
แ
กแท แแ
กแ
แ
กแผ แแ
กแ
แ
ตแธ แแ
กแแ
ฉแแ
ตแท แแ
กแแ
ฎแฏ แแ
กแแ
กแผ แแ
กแแ
กแผ แแ
กแแ
ขแผแแ
ชแฏ แแ
กแแ
ฅแฏ แแ
กแแ
ณแท แแ
กแแ
ตแฏ แแ
กแแ
ฅแธ แแ
กแแ
ญแผ แแ
กแแ
ฏแฏ แแ
กแแ
กแผ แแ
กแแ
ฅแซ แแ
กแแ
ตแซ แแ
กแแ
ฉแซ แแ
กแแ
ฎแซแแ
ต แแ
กแแ
กแผ แแ
กแแ
ฎแ
แ
ต แแ
กแแ
ณแฏ แแ
กแซแแ
ตแฏ แแ
กแซแแ
ฎแแ
ตแซแแ
ช แแ
กแซแแ
ฅแธ แแ
กแซแแ
ขแจ แแ
กแฏแ
แ
ตแท แแ
กแฏแแ
ตแซ แแ
กแฏแแ
กแจ แแ
กแทแแ
จแแ
กแผ แแ
กแทแแ
ฎแจ แแ
กแทแแ
ตแธ แแ
กแทแแ
ฏแฏ แแ
กแทแแ
ฉแซ แแ
กแผแแ
ชแซ แแ
กแผแแ
ณแท แแ
กแผแแ
ข แแ
กแผแ
แ
ฒ แแ
กแผแแ
กแซแแ
ต แแ
กแผแแ
กแผ แแ
กแผแแ
ตแจ แแ
กแผแแ
ฅแธ แแ
กแผแแ
ตแซ แแ
กแผแแ
ก แแ
กแผแแ
ฅแท แแ
กแผแแ
ฅ แแ
กแผแแ
ฎ แแ
กแผแแ
ข แแ
กแผแแ
ญ แแ
กแผแแ
ฎแท แแ
กแผแแ
ชแผ แแ
ขแแ
งแจ แแ
ขแจแแ
กแฏ แแ
ขแจแแ
งแซแแ
ตแฏ แแ
ขแผแแ
กแจ แแ
ขแผแแ
งแผ แแ
ขแผแแ
ฎแฏ แแ
ขแผแแ
กแผแแ
ฉแผ แแ
ขแผแแ
กแซ แแ
ขแผแแ
ฅแซ แแ
ขแผแแ
ตแซ แแ
ขแผแแ
ตแฏ แแ
ขแผแแ
ชแฏ แแ
ฅแ
แ
กแธ แแ
ฅแ
แ
ณแซ แแ
ฅแแ
งแผ แแ
ฅแแ
ตแซ แแ
ฅแแ
ตแแ
ณ แแ
ฅแแ
ฃแผ แแ
ฅแแ
ฎแฏ แแ
ฅแแ
ฅแจ แแ
ฅแแ
ฅแท แแ
ฅแแ
ฉแจ แแ
ฅแแ
ณแฏ แแ
ฅแจแแ
ก แแ
ฅแจแแ
ฒ แแ
ฅแซแแ
ฅ แแ
ฅแซแแ
ฎแฏ แแ
ฅแซแแ
ข แแ
ฅแซแแ
ขแผ แแ
ฅแซแแ
ฎ แแ
ฅแซแแ
ฏแซ แแ
ฅแซแแ
กแผ แแ
ฅแซแแ
ฅแซ แแ
ฅแซแแ
ขแจ แแ
ฅแซแแ
ฎแผแแ
ต แแ
ฅแฏแแ
ฅแแ
ต แแ
ฅแฏแแ
กแฏ แแ
ฅแฏแ
แ
ฅแผแแ
กแผ แแ
ฅแฏแแ
งแผ แแ
ฅแฏแแ
ฎแซ แแ
ฅแฏแแ
ก แแ
ฅแฏแแ
กแจแแ
กแซ แแ
ฅแฏแแ
ต แแ
ฅแฏแแ
กแผ แแ
ฅแธแแ
ต แแ
ฅแผแแ
ฉแผ แแ
ฅแผแแ
กแผ แแ
ฅแผแแ
งแผ แแ
ฅแผแแ
งแฏ แแ
ฅแผแแ
ตแซ แแ
ฅแผแแ
กแผ แแ
ฅแผแแ
ฅแจ แแ
ฅแผแแ
ตแฏ แแ
ฅแผแแ
กแท แแ
ฆแแ
ณแท แแ
ฆแแ
ตแแ
ก แแ
ฆแแ
กแผ แแ
ฆแแ
ฏแฏ แแ
ฆแแ
ฉแผแแ
ขแแ
ชแผ แแ
ฆแแ
กแจ แแ
ฆแซแแ
ฅ แแ
ฆแซแแ
ตแแ
ตแแ
ฅ แแ
ฆแบแแ
ข แแ
ฉแแ
ฒแแ
ฉ แแ
ฉแแ
ณแจแแ
ฅแจ แแ
ฉแแ
ณแท แแ
ฉแแ
กแแ
ต แแ
ฉแแ
งแซ แแ
ฉแแ
ณแจ แแ
ฉแแ
กแผ แแ
ฉแแ
ฎแซ แแ
ฉแแ
ฅแฏ แแ
ฉแแ
ฉแจ แแ
ฉแแ
กแแ
ช แแ
ฉแแ
ญแผ แแ
ฉแแ
ฏแซ แแ
ฉแแ
ณแท แแ
ฉแแ
ฎแผแแ
ต แแ
ฉแแ
ตแแ
ฎแท แแ
ฉแแ
ตแฏ แแ
ฉแแ
ฎแผ แแ
ฉแแ
งแผ แแ
ฉแจแแ
กแท แแ
ฉแจแแ
ฉ แแ
ฉแจแแ
ฉแบ แแ
ฉแซแแ
กแ
แ
กแจ แแ
ฉแซแแ
ตแฏ แแ
ฉแซแแ
ง แแ
ฉแซแแ
ตแท แแ
ฉแซแแ
ณแผ แแ
ฉแซแแ
ฉแจ แแ
ฉแซแแ
งแจ แแ
ฉแซแแ
ตแฏ แแ
ฉแซแแ
ตแฏ แแ
ฉแซแแ
ฉแธ แแ
ฉแซแแ
ข แแ
ฉแฏแแ
ตแจแแ
ต แแ
ฉแทแแ
ต แแ
ฉแผแแ
กแแ
ต แแ
ฉแผแแ
ต แแ
ฉแผแแ
งแซ แแ
ฌแแ
ฉแแ
ต แแ
ญแแ
ตแผ แแ
ฎแแ
ฅแซ แแ
ฎแแ
งแซ แแ
ฎแแ
กแซ แแ
ฎแแ
ฉแบแแ
ฎแฏ แแ
ฎแแ
ฉแผแแ
ฅแจ แแ
ฎแแ
งแซ แแ
ฎแแ
งแผ แแ
ฎแแ
กแจ แแ
ฎแแ
กแผ แแ
ฎแแ
ฅแจ แแ
ฎแแ
ฎแฏ แแ
ฎแแ
ตแ
แ
ฉ แแ
ฎแแ
ฅแธ แแ
ฎแแ
งแท แแ
ฎแแ
งแผ แแ
ฎแแ
ตแธ แแ
ฎแแ
ฎแซ แแ
ฎแแ
ตแธ แแ
ฎแแ
ฎแฏ แแ
ฎแแ
ฅแบ แแ
ฎแแ
ตแฏ แแ
ฎแแ
กแจ แแ
ฎแแ
ฅแทแแ
ขแผ แแ
ฎแแ
ชแแ
ต แแ
ฎแจแแ
ง แแ
ฎแจแแ
ฉ แแ
ฎแจแแ
ฆ แแ
ฎแซแแ
กแซ แแ
ฎแซแแ
ฅ แแ
ฎแซแแ
ฎ แแ
ฎแซแแ
ตแจแแ
กแซ แแ
ฎแซแแ
ฑ แแ
ฎแฎแแ
กแ
แ
กแจ แแ
ฎแฏแแ
งแผ แแ
ฎแฏแแ
ตแธ แแ
ฎแบแแ
ก แแ
ณแแ
ตแท แแ
ณแแ
ฎแฏ แแ
ณแแ
ณแ
แ
ฉ แแ
ณแแ
ณแผ แแ
ณแแ
ฐแแ
ฅ แแ
ณแแ
ฑแแ
ต แแ
ณแแ
ฆแแ
ตแแ
ณ แแ
ณแแ
ฒแแ
ตแแ
ฉ แแ
ณแแ
ณแ
แ
ฆแแ
ณ แแ
ณแแ
ฉแแ
ณ แแ
ณแฏแแ
ฅแจ แแ
ณแฏแแ
ณแท แแ
ณแธแแ
ชแซ แแ
ณแธแแ
ต แแ
ณแผแแ
ขแจ แแ
ณแผแ
แ
ต แแ
ณแผแแ
ฎ แแ
ณแผแแ
ญแผแแ
ก แแ
ณแผแแ
ตแซ แแ
ตแแ
กแจ แแ
ตแแ
กแซ แแ
ตแแ
ฉแฏ แแ
ตแแ
ณแทแแ
ต แแ
ตแแ
กแ
แ
ตแแ
ฉ แแ
ตแแ
ขแจ แแ
ตแ
แ
ตแแ
ณ แแ
ตแแ
ฆแซแแ
ณ แแ
ตแแ
ตแซ แแ
ตแแ
ฎแแ
ฉ แแ
ตแแ
ฅแซ แแ
ตแแ
ฅแฏ แแ
ตแแ
ณแแ
ฆแท แแ
ตแแ
กแแ
ฅแแ
ต แแ
ตแแ
ฅแแ
ฅแแ
ต แแ
ตแแ
ฏแฏ แแ
ตแแ
ตแซ แแ
ตแแ
ตแฏ แแ
ตแแ
กแจ แแ
ตแแ
กแผ แแ
ตแแ
ฅแฏ แแ
ตแแ
ฅแท แแ
ตแแ
ฎแผ แแ
ตแแ
ณแซ แแ
ตแแ
ตแธ แแ
ตแแ
ฅแผ แแ
ตแแ
กแธ แแ
ตแแ
ฅแท แแ
ตแจแแ
ฎ แแ
ตแจแแ
ต แแ
ตแจแแ
กแผ แแ
ตแจแ
แ
ฃแผ แแ
ตแจแ
แ
ญแแ
ฎแท แแ
ตแจแแ
ฎแฏ แแ
ตแจแแ
กแผ แแ
ตแจแแ
ก แแ
ตแจแแ
ขแผแแ
ชแฏ แแ
ตแจแแ
ฉ แแ
ตแจแแ
กแจ แแ
ตแจแแ
ฎแท แแ
ตแซแแ
ฉ แแ
ตแซแแ
ฒ แแ
ตแซแแ
งแท แแ
ตแซแแ
ฎแซ แแ
ตแซแแ
กแฏ แแ
ตแซแแ
ต แแ
ตแซแแ
ก แแ
ตแซแแ
ฆ แแ
ตแซแแ
ญแผ แแ
ตแซแแ
ฆแแ
ฎแท แแ
ตแซแแ
ฅแผ แแ
ตแซแแ
ฆ แแ
ตแซแแ
ช แแ
ตแฏแแ
กแท แแ
ตแฏแแ
ข แแ
ตแฏแ
แ
งแจ แแ
ตแฏแ
แ
จ แแ
ตแฏแแ
กแผ แแ
ตแฏแแ
ฎ แแ
ตแฏแแ
ณแธ แแ
ตแฏแแ
ต แแ
ตแฏแแ
กแผ แแ
ตแฏแแ
ฅแผ แแ
ตแฏแแ
ตแฏแแ
ฅแจ แแ
ตแฏแแ
ฅแซ แแ
ตแฏแแ
ฆ แแ
ตแฏแแ
ฅแบ แแ
ตแฏแแ
ข แแ
ตแฏแแ
ข แแ
ตแฏแแ
ฅแท แแ
ตแฏแแ
งแซ แแ
ตแทแ
แ
ต แแ
ตแทแแ
ฎแ
แ
ณแท แแ
ตแทแแ
ก แแ
ตแทแแ
กแผ แแ
ตแทแแ
ฅแผ แแ
ตแทแแ
กแซ แแ
กแผแแ
ฎแผแแ
ต แแ
ตแ
แ
ณแท แแ
ตแแ
กแบ แแ
กแแ
กแแ
ต แแ
กแแ
กแแ
ฎแซแแ
ฅ แแ
กแแ
ณแแ
ตแท แแ
กแแ
ณแฏ แแ
กแแ
ฑแแ
ฎแท แแ
กแแ
ณแแ
กแฏแแ
ณ แแ
กแแ
ตแแ
ก แแ
กแแ
ฎแฏแ
แ
ฅ แแ
กแแ
ฅแแ
ต แแ
กแแ
ฎแทแแ
ก แแ
กแแ
ตแจ แแ
กแแ
ตแท แแ
กแแ
กแแ
ณ แแ
กแแ
ณแ
แ
ตแแ
ก แแ
กแแ
ณแท แแ
กแแ
ฉแธ แแ
กแแ
ณแซ แแ
กแจแแ
ต แแ
กแจแแ
ฉแผ แแ
กแจแแ
ฎ แแ
กแซแแ
ข แแ
กแซแแ
งแผ แแ
กแซแแ
ช แแ
กแซแแ
ข แแ
กแซแแ
งแผ แแ
กแซแแ
ฉแผ แแ
กแซแแ
กแผ แแ
กแซแแ
ฎ แแ
กแซแแ
ฎ แแ
กแฏแ
แ
ฎแแ
ตแแ
ฒแท แแ
กแฏแแ
ฉแแ
ฉแฏ แแ
กแทแแ
ต แแ
กแทแแ
ฅแบ แแ
กแธแ
แ
งแจ แแ
กแแแ
กแฏ แแ
กแแแ
ฎแซ แแ
ขแแ
ตแซ แแ
ขแแ
ฅแผ แแ
ขแจแแ
ฎ แแ
ขแฏแแ
ฅแท แแ
ฃแแ
กแซ แแ
ฃแแ
กแซ แแ
ฃแแ
ฉแผ แแ
ฃแจแแ
กแซ แแ
ฃแจแแ
ฎแจ แแ
ฃแจแแ
ฉแจ แแ
ฃแจแแ
ฎ แแ
ฃแจแแ
ฅแท แแ
ฃแจแแ
ฎแท แแ
ฃแจแแ
ฉแซแแ
ง แแ
ฃแผแแ
งแท แแ
ฃแผแ
แ
งแจ แแ
ฃแผแแ
กแฏ แแ
ฃแผแแ
ขแแ
ฎ แแ
ฃแผแแ
ฎ แแ
ฃแผแแ
ก แแ
ฅแแ
ฎแท แแ
ฅแ
แ
งแแ
ฎแท แแ
ฅแ
แ
ณแซ แแ
ฅแแ
ฆแบแแ
กแท แแ
ฅแแ
ขแปแแ
ณแซ แแ
ฅแแ
ฅแแ
กแแ
ก แแ
ฅแแ
ฅแซแแ
ต แแ
ฅแซแแ
ต แแ
ฅแซแแ
ฅแจ แแ
ฅแซแ
แ
ฉแซ แแ
ฅแซแแ
ฅ แแ
ฅแฏแแ
ฎแฏ แแ
ฅแฏแ
แ
ณแซ แแ
ฅแฏแแ
ณแท แแ
ฅแฏแแ
ตแบ แแ
ฅแทแแ
ก แแ
ฅแธแแ
ฎ แแ
ฅแธแแ
ฉแผ แแ
ฅแธแแ
ฆ แแ
ฅแผแแ
ฅแผแแ
ต แแ
ฅแผแแ
กแผ แแ
ฅแผแแ
ฅแ
แ
ต แแ
ฅแฝแแ
ณแแ
ฆ แแ
ฆแแ
ฅแแ
ต แแ
ฆแแ
ฅแแ
ฅแซ แแ
ฆแซแแ
ตแซ แแ
งแแ
ฅแซ แแ
งแแ
ฉแแ
ขแผ แแ
งแแ
ชแซ แแ
งแแ
ฎแซ แแ
งแแ
ฏแซ แแ
งแแ
ขแแ
ขแผ แแ
งแแ
ฅแฒ แแ
งแแ
ฉแผแแ
ขแผ แแ
งแแ
ณแซ แแ
งแ
แ
ฉแซ แแ
งแ
แ
ณแท แแ
งแแ
ฅแบ แแ
งแแ
ฅแผ แแ
งแแ
ชแผ แแ
งแแ
ตแซ แแ
งแแ
ฅแซแแ
ต แแ
งแแ
ตแจแแ
ฏแซ แแ
งแแ
กแจแแ
ขแผ แแ
งแแ
ขแผ แแ
งแจแแ
ก แแ
งแจแแ
ต แแ
งแจแแ
กแฏ แแ
งแซแแ
งแฏ แแ
งแซแแ
ฎ แแ
งแซแแ
ณแจ แแ
งแซแแ
ต แแ
งแซแ
แ
กแจ แแ
งแซแแ
ฅแฏ แแ
งแซแแ
ฆ แแ
งแซแแ
ฉแจ แแ
งแซแแ
ณแธ แแ
งแซแแ
ข แแ
งแซแแ
จแแ
ตแซ แแ
งแซแแ
ตแซ แแ
งแซแแ
กแผ แแ
งแซแแ
ฎ แแ
งแซแแ
ฎแฏ แแ
งแซแแ
ตแฏ แแ
งแซแแ
กแธ แแ
งแซแแ
ฒ แแ
งแฏแแ
ต แแ
งแฏแแ
ข แแ
งแฏแแ
ฌ แแ
งแฏแแ
ตแทแแ
ต แแ
งแฏแแ
ฅแผ แแ
งแฏแแ
ก แแ
งแฏแแ
ณแฏ แแ
งแทแ
แ
ง แแ
งแธแแ
ฅ แแ
งแผแแ
ฎแจ แแ
งแผแแ
กแท แแ
งแผแแ
กแผ แแ
งแผแแ
ฃแผ แแ
งแผแแ
งแจ แแ
งแผแแ
ฎแผ แแ
งแผแแ
ฏแซแแ
ต แแ
งแผแแ
ก แแ
งแผแแ
ฃแผ แแ
งแผแแ
ฉแซ แแ
งแผแแ
ช แแ
งแแแ
ฎแ
แ
ต แแ
งแแแ
กแผ แแ
งแแแ
ตแธ แแ
จแแ
กแท แแ
จแแ
ณแท แแ
จแแ
กแผ แแ
จแแ
กแซ แแ
จแแ
กแผ แแ
จแแ
ฅแซ แแ
จแแ
ฎแฏ แแ
จแแ
ณแธ แแ
จแแ
ตแจแแ
กแผ แแ
จแแ
ฃแจ แแ
จแแ
ฅแซ แแ
จแแ
ฅแฏ แแ
จแแ
ฅแผ แแ
จแแ
ฅแซแแ
ข แแ
จแบแแ
กแฏ แแ
ฉแแ
ณแฏ แแ
ฉแ
แ
กแจ แแ
ฉแ
แ
ขแบแแ
ฉแผแแ
กแซ แแ
ฉแ
แ
ฆแซแแ
ต แแ
ฉแ
แ
ฉแแ
ต แแ
ฉแ
แ
ณแซแแ
กแฏ แแ
ฉแแ
ณแซ แแ
ฉแแ
ตแธ แแ
ฉแแ
งแท แแ
ฉแแ
ฏแฏ แแ
ฉแแ
ฅแซ แแ
ฉแแ
ตแจ แแ
ฉแแ
ตแผแแ
ฅ แแ
ฉแแ
ฆแ
แ
ก แแ
ฉแแ
ตแแ
ณแแ
ฆแฏ แแ
ฉแแ
ตแ
แ
ง แแ
ฉแจแแ
กแผ แแ
ฉแจแแ
ฎแแ
ฎ แแ
ฉแซแแ
กแฝ แแ
ฉแซแ
แ
กแแ
ตแซ แแ
ฉแซแแ
ฉแท แแ
ฉแซแแ
ฉแผแแ
ตแฏ แแ
ฉแซแแ
ฉแผ แแ
ฉแฏแแ
กแแ
ณแฏ แแ
ฉแฏแ
แ
ตแทแแ
ตแจ แแ
ฉแฏแแ
ข แแ
ฉแบแแ
กแ
แ
ตแท แแ
ชแแ
ตแแ
งแแ
ณ แแ
ชแแ
ตแซ แแ
ชแซแแ
ฅแผ แแ
ชแซแแ
ฅแซ แแ
ชแผแแ
ต แแ
ชแผแแ
ก แแ
ซแแ
ฃแแ
กแแ
งแซ แแ
ซแซแแ
ต แแ
ฌแแ
กแบแแ
ตแธ แแ
ฌแแ
ฎแจ แแ
ฌแ
แ
ฉแแ
ฎแท แแ
ฌแแ
กแทแแ
ฉแซ แแ
ฌแแ
ฎแฏ แแ
ฌแแ
ตแท แแ
ฌแแ
กแฏแแ
ฅแแ
ต แแ
ฌแซแแ
กแฏ แแ
ฌแซแแ
ฉแซ แแ
ฌแซแแ
ฉแจ แแ
ญแแ
ณแท แแ
ญแแ
ตแฏ แแ
ญแแ
ณแท แแ
ญแแ
ฅแผ แแ
ญแผแแ
ต แแ
ญแผแแ
ฅ แแ
ญแผแแ
ฅ แแ
ฎแแ
กแซ แแ
ฎแแ
ฅแซ แแ
ฎแแ
ณแผ แแ
ฎแแ
งแซแแ
ต แแ
ฎแแ
ฅแผ แแ
ฎแแ
ฆแแ
ฎแจ แแ
ฎแแ
งแซ แแ
ฎแซแแ
ฉแผ แแ
ฎแซแแ
งแผ แแ
ฎแซแแ
กแซ แแ
ฎแซแแ
ฅแซ แแ
ฎแซแแ
ขแผ แแ
ฎแฏแแ
กแซ แแ
ฎแฏแแ
ณแท แแ
ฎแทแแ
ตแจแแ
ตแท แแ
ฎแบแแ
ฅแ
แ
ณแซ แแ
ฎแบแแ
ณแท แแ
ฏแแ
กแจ แแ
ฏแซแแ
ฉ แแ
ฏแซแ
แ
ข แแ
ฏแซแแ
ฅ แแ
ฏแซแแ
ฎแผแแ
ต แแ
ฏแซแแ
ตแซ แแ
ฏแซแแ
กแผ แแ
ฏแซแแ
ตแแ
ณ แแ
ฏแฏแแ
ณแธ แแ
ฏแฏแแ
ณแแ
ฅแธ แแ
ฏแฏแแ
ฆ แแ
ฏแฏแแ
ญแแ
ตแฏ แแ
ฐแแ
ตแแ
ฅ แแ
ฑแแ
กแซ แแ
ฑแแ
ฅแธ แแ
ฑแแ
ฅแผ แแ
ฑแแ
ฏแซ แแ
ฑแแ
ฅแท แแ
ฑแแ
งแธ แแ
ฑแบแแ
กแ
แ
กแท แแ
ฒแแ
กแซแแ
ต แแ
ฒแ
แ
ฅแธ แแ
ฒแแ
งแผ แแ
ฒแแ
ฎแฏ แแ
ฒแแ
กแซ แแ
ฒแแ
ฅแจ แแ
ฒแแ
ตแแ
ฏแซ แแ
ฒแแ
กแจ แแ
ฒแแ
ขแผ แแ
ฒแแ
งแผ แแ
ฒแจแแ
ฎแซ แแ
ฒแจแแ
กแผ แแ
ฒแจแแ
ตแธ แแ
ฒแจแแ
ฆ แแ
ณแซแแ
ขแผ แแ
ณแทแ
แ
งแจ แแ
ณแทแ
แ
ญ แแ
ณแทแแ
กแซ แแ
ณแทแแ
ฅแผ แแ
ณแทแแ
ตแจ แแ
ณแทแแ
กแจ แแ
ณแทแแ
ฎ แแ
ดแแ
งแซ แแ
ดแแ
ฉแซ แแ
ดแแ
ฎแซ แแ
ดแแ
ฉแจ แแ
ดแแ
ตแจ แแ
ดแแ
ตแท แแ
ดแแ
ฌแ
แ
ฉ แแ
ดแแ
ญแจ แแ
ดแแ
ฏแซ แแ
ดแแ
กแจ แแ
ตแแ
ฅแบ แแ
ตแแ
ฉแบ แแ
ตแแ
งแท แแ
ตแแ
ฉแท แแ
ตแแ
กแฏ แแ
ตแแ
ขแ
แ
ฉ แแ
ตแแ
ฉแผ แแ
ตแ
แ
ฅแแแ
ฆ แแ
ตแ
แ
งแจแแ
ฅ แแ
ตแ
แ
ฉแซแแ
ฅแจ แแ
ตแ
แ
ณแท แแ
ตแแ
ตแซ แแ
ตแแ
กแฏแแ
ฉ แแ
ตแแ
งแฏ แแ
ตแแ
ฎแฏ แแ
ตแแ
กแฏ แแ
ตแแ
กแผ แแ
ตแแ
ฅแผ แแ
ตแแ
ณแฏ แแ
ตแแ
ฃแแ
ต แแ
ตแแ
ญแผ แแ
ตแแ
ฎแบ แแ
ตแแ
ฏแฏ แแ
ตแแ
ณแจแแ
ฉ แแ
ตแแ
ตแจ แแ
ตแแ
ฅแซ แแ
ตแแ
ฎแผ แแ
ตแแ
ณแฎแแ
กแฏ แแ
ตแแ
ณแฏ แแ
ตแแ
ฉแซ แแ
ตแซแแ
กแซ แแ
ตแซแแ
งแจ แแ
ตแซแแ
ฉแผ แแ
ตแซแแ
ฎ แแ
ตแซแแ
ณแซ แแ
ตแซแแ
ต แแ
ตแซแแ
ฉ แแ
ตแซแ
แ
ฒ แแ
ตแซแแ
ฎแฏ แแ
ตแซแแ
ขแผ แแ
ตแซแแ
ซ แแ
ตแซแแ
งแซ แแ
ตแซแแ
ฏแซ แแ
ตแซแแ
ข แแ
ตแซแแ
ฉแผ แแ
ตแซแแ
ฅแซ แแ
ตแซแแ
ฆ แแ
ตแซแแ
ฅแแ
ฆแบ แแ
ตแซแแ
ก แแ
ตแซแแ
งแผ แแ
ตแฏแแ
ฉแธ แแ
ตแฏแแ
ต แแ
ตแฏแแ
กแซ แแ
ตแฏแแ
ข แแ
ตแฏแแ
ณแผ แแ
ตแฏแแ
กแซ แแ
ตแฏแแ
ฉแซ แแ
ตแฏแแ
ฎ แแ
ตแฏแแ
กแผ แแ
ตแฏแแ
ขแผ แแ
ตแฏแแ
ฉแซ แแ
ตแฏแแ
ญแแ
ตแฏ แแ
ตแฏแแ
ฏแฏ แแ
ตแฏแแ
ฅแผ แแ
ตแฏแแ
ฉแผ แแ
ตแฏแแ
ฎแแ
ตแฏ แแ
ตแฏแแ
ตแจ แแ
ตแฏแแ
ฆ แแ
ตแฏแแ
ต แแ
ตแฏแแ
ขแผ แแ
ตแฏแแ
ฌแแ
ญแผ แแ
ตแทแแ
ณแท แแ
ตแทแแ
ฎ แแ
ตแธแแ
ข แแ
ตแธแ
แ
งแจ แแ
ตแธแแ
กแบ แแ
ตแธแแ
ก แแ
ตแธแแ
ฎแฏ แแ
ตแธแแ
ต แแ
ตแธแแ
ฏแซ แแ
ตแธแแ
กแผ แแ
ตแธแแ
กแจ แแ
กแแ
กแแ
ญแผ แแ
กแแ
งแจ แแ
กแแ
ณแจ แแ
กแแ
ฉแผ แแ
กแ
แ
กแผ แแ
กแแ
ฎแแ
ตแท แแ
กแแ
ตแจ แแ
กแแ
ตแซ แแ
กแแ
งแซ แแ
กแแ
ฏแซ แแ
กแแ
ฒแฏ แแ
กแแ
ฅแซแแ
ฅ แแ
กแแ
ฅแผ แแ
กแแ
ฉแซแแ
ตแท แแ
กแแ
กแซ แแ
กแจแแ
ก แแ
กแจแแ
งแซ แแ
กแจแแ
ฅแผ แแ
กแจแแ
ฅแธ แแ
กแจแแ
ญแผ แแ
กแจแแ
ณแซแแ
กแฏ แแ
กแจแแ
ฎแท แแ
กแซแแ
ต แแ
กแซแแ
ณแจ แแ
กแซแแ
ต แแ
กแฏแแ
ฉแบ แแ
กแทแแ
กแซ แแ
กแทแแ
ฎแแ
กแท แแ
กแทแแ
ต แแ
กแทแแ
ฉแบ แแ
กแทแแ
กแ
แ
ต แแ
กแธแแ
ต แแ
กแผแแ
ชแซ แแ
กแผแแ
ฎแซ แแ
กแผแแ
ตแแ
กแซ แแ
กแผแ
แ
ข แแ
กแผแ
แ
จ แแ
กแผแ
แ
ณ แแ
กแผแแ
ก แแ
กแผแแ
งแซ แแ
กแผแแ
ฉ แแ
กแผแแ
ต แแ
กแผแแ
ต แแ
กแผแแ
ก แแ
กแผแแ
ฉ แแ
กแผแแ
ตแจ แแ
กแผแแ
ขแแ
ตแซ แแ
กแผแแ
ตแซ แแ
กแผแแ
ฅแท แแ
กแผแแ
ก แแ
กแผแแ
กแจแแ
ณแท แแ
ขแแ
ณแผ แแ
ขแแ
กแฏแ
แ
ต แแ
ขแแ
กแซ แแ
ขแแ
ขแผ แแ
ขแแ
กแจแแ
งแซ แแ
ขแแ
ฅแผ แแ
ขแแ
ขแแ
ต แแ
ขแแ
กแซ แแ
ขแแ
กแจ แแ
ขแแ
ชแฏแแ
ญแผ แแ
ฅแแ
ฅแบ แแ
ฅแแ
ฉแ
แ
ต แแ
ฅแแ
ฉแบ แแ
ฅแแ
งแจ แแ
ฅแ
แ
ฅแซ แแ
ฅแ
แ
ฅแแแ
ฆ แแ
ฅแแ
ฅแซ แแ
ฅแแ
ฎแฏ แแ
ฅแแ
ฅแฏแ
แ
ฉ แแ
ฅแแ
ฎแจ แแ
ฅแจแแ
ณแจ แแ
ฅแจแแ
กแผแแ
ต แแ
ฅแจแแ
ฅแผ แแ
ฅแจแแ
ญแผ แแ
ฅแจแแ
ณแผ แแ
ฅแซแแ
ข แแ
ฅแซแแ
ฉแผ แแ
ฅแซแแ
ต แแ
ฅแซแแ
กแฏ แแ
ฅแซแ
แ
กแแ
ฉ แแ
ฅแซแแ
กแผ แแ
ฅแซแแ
ฎแซ แแ
ฅแซแแ
กแซ แแ
ฅแซแแ
ฎ แแ
ฅแซแแ
ฆ แแ
ฅแซแแ
ต แแ
ฅแซแแ
ญแผ แแ
ฅแซแแ
ก แแ
ฅแซแแ
ขแผ แแ
ฅแซแแ
ฎ แแ
ฅแซแแ
ฅแฏ แแ
ฅแซแแ
ฆ แแ
ฅแซแแ
ฉแผ แแ
ฅแซแแ
ง แแ
ฅแซแแ
ฎ แแ
ฅแฏแแ
ข แแ
ฅแฏแแ
กแผ แแ
ฅแฏแแ
กแซ แแ
ฅแฏแแ
ฃแจ แแ
ฅแฏแแ
ก แแ
ฅแทแแ
ฅแท แแ
ฅแทแแ
ฎ แแ
ฅแทแแ
ตแท แแ
ฅแทแแ
ฏแซ แแ
ฅแทแแ
ฅแท แแ
ฅแทแแ
ก แแ
ฅแธแแ
ณแซ แแ
ฅแธแแ
ต แแ
ฅแธแแ
ฉแจ แแ
ฅแบแแ
กแ
แ
กแจ แแ
ฅแผแแ
ฅแแ
กแผ แแ
ฅแผแแ
ฉ แแ
ฅแผแ
แ
ฒแแ
กแผ แแ
ฅแผแ
แ
ต แแ
ฅแผแแ
กแฏ แแ
ฅแผแแ
งแซ แแ
ฅแผแแ
ฎแซ แแ
ฅแผแแ
กแซแแ
ข แแ
ฅแผแแ
ฉ แแ
ฅแผแแ
ฎ แแ
ฅแผแแ
ต แแ
ฅแผแแ
กแผ แแ
ฅแผแแ
ฅแผ แแ
ฅแผแแ
ฉ แแ
ฅแผแแ
ฏแซ แแ
ฅแผแแ
กแผ แแ
ฅแผแแ
ต แแ
ฅแผแแ
ต แแ
ฅแผแแ
ชแจแแ
ต แแ
ฆแแ
ฉแผ แแ
ฆแแ
ชแแ
ฅแท แแ
ฆแแ
ขแ
แ
ฉ แแ
ฆแแ
ฉแจ แแ
ฆแแ
กแฏ แแ
ฆแแ
ฅแธ แแ
ฆแแ
กแบแแ
กแฏ แแ
ฆแแ
กแซ แแ
ฆแแ
ตแฏ แแ
ฆแแ
กแจ แแ
ฆแแ
ฎแแ
ฉ แแ
ฆแแ
ฎแฏ แแ
ฆแแ
ฎแท แแ
ฆแแ
กแซ แแ
ฉแแ
กแจ แแ
ฉแแ
ฅแซ แแ
ฉแแ
ณแท แแ
ฉแแ
ตแผ แแ
ฉแแ
งแผ แแ
ฉแแ
ตแ
แ
ญ แแ
ฉแแ
กแผ แแ
ฉแแ
ฅแซ แแ
ฉแแ
ญแผแแ
ต แแ
ฉแแ
ฅแฏ แแ
ฉแแ
ฅแผ แแ
ฉแแ
ตแจ แแ
ฉแซแแ
ขแบแแ
กแฏ แแ
ฉแซแแ
ข แแ
ฉแฏแแ
ฅแธ แแ
ฉแฏแแ
ณแท แแ
ฉแผแแ
ญ แแ
ฉแผแ
แ
ฉ แแ
ฉแผแ
แ
ฒ แแ
ฉแผแแ
ฉแ
แ
ต แแ
ฉแผแแ
ฅแธแแ
ฏแซ แแ
ฉแผแแ
ฉแผ แแ
ฉแผแแ
กแธ แแ
ชแแ
ฅแจ แแ
ฌแแ
ตแซ แแ
ฎแแ
ชแซแแ
ฅแจ แแ
ฎแ
แ
ณแท แแ
ฎแแ
กแฏ แแ
ฎแแ
ฅแแ
ต แแ
ฎแแ
ฅแจ แแ
ฎแแ
ฎแซ แแ
ฎแแ
ตแซ แแ
ฎแแ
กแผ แแ
ฎแแ
งแซ แแ
ฎแแ
ตแจ แแ
ฎแแ
ตแซ แแ
ฎแแ
ตแฏ แแ
ฎแแ
กแผ แแ
ฎแแ
ฅแซแแ
ก แแ
ฎแแ
ขแจ แแ
ฎแซแแ
ต แแ
ฎแฏแแ
ฅแ
แ
ต แแ
ฎแฏแแ
ต แแ
ฎแฏแแ
ฎแแ
ด แแ
ฎแผแแ
กแซ แแ
ฎแผแแ
จแแ
กแผแแ
ฉแผ แแ
ฎแผแแ
ฎแจ แแ
ฎแผแแ
งแซ แแ
ฎแผแแ
กแซ แแ
ฎแผแแ
ฉแจ แแ
ฎแผแแ
กแซ แแ
ฎแผแแ
ฎ แแ
ฎแผแแ
ฆ แแ
ฎแผแแ
ฉแแ
ตแแ
ฅแธ แแ
ฎแผแแ
ฎแซ แแ
ฎแผแแ
กแผ แแ
ฎแผแแ
ญ แแ
ฎแผแแ
กแจแแ
ญ แแ
ณแจแแ
ฅแจ แแ
ณแจแแ
ต แแ
ณแฏแแ
ฅแแ
ฎแท แแ
ณแผแแ
ก แแ
ณแผแแ
ฅ แแ
ณแผแแ
ฏแซ แแ
ณแผแแ
กแผ แแ
ณแผแแ
ฆ แแ
ตแแ
กแจ แแ
ตแแ
กแธ แแ
ตแแ
งแผ แแ
ตแแ
ณแจแแ
ต แแ
ตแแ
ณแท แแ
ตแแ
ณแธ แแ
ตแแ
ณแผ แแ
ตแ
แ
ณแทแแ
ตแฏ แแ
ตแ
แ
ตแแ
กแซ แแ
ตแแ
กแผ แแ
ตแแ
ฎแผ แแ
ตแแ
ตแจ แแ
ตแแ
งแจ แแ
ตแแ
ฎแแ
ข แแ
ตแแ
ฏแซ แแ
ตแแ
ฅแจ แแ
ตแแ
ฅแท แแ
ตแแ
ตแซ แแ
ตแแ
ฎแฏ แแ
ตแจแแ
ฅแซ แแ
ตแจแแ
ฅแธ แแ
ตแจแแ
ฏแซ แแ
ตแจแแ
กแผ แแ
ตแซแแ
ณแธ แแ
ตแซแแ
ฉแผ แแ
ตแซแ
แ
ฉ แแ
ตแซแ
แ
ญ แแ
ตแซแ
แ
ต แแ
ตแซแแ
ก แแ
ตแซแแ
กแฏ แแ
ตแซแแ
ฎแฏ แแ
ตแซแแ
ฉแผ แแ
ตแซแแ
ขแผ แแ
ตแฏแแ
ฎแซ แแ
ตแฏแแ
งแผ แแ
ตแฏแแ
ฅ แแ
ตแทแแ
กแจ แแ
ตแธแแ
กแซ แแ
ตแธแแ
กแซ แแ
ตแธแแ
ฎแผ แแ
กแแ
ณแผ แแ
ตแแ
ฅแแ
ต แแ
กแแ
กแท แแ
กแ
แ
กแ
แ
ต แแ
กแ
แ
ฃแผ แแ
กแ
แ
ตแท แแ
กแแ
งแฏ แแ
กแแ
ฅแซ แแ
กแแ
ณแท แแ
กแจแแ
กแจ แแ
กแซแแ
ฎแฏ แแ
กแซแแ
ฅแผ แแ
กแทแแ
ก แแ
กแทแแ
ตแ
แ
ณแท แแ
กแทแแ
ข แแ
กแทแแ
ฅแจ แแ
กแทแแ
ง แแ
กแทแแ
ฌ แแ
กแทแแ
ฉ แแ
กแบแแ
กแซ แแ
กแผแแ
ก แแ
กแผแแ
ฉ แแ
กแผแแ
ฎ แแ
กแผแแ
ฎแซ แแ
กแผแแ
กแฉ แแ
กแผแแ
กแจ แแ
กแผแแ
ฉ แแ
ขแแ
ฅแฏ แแ
ขแแ
ฅแท แแ
ขแจแแ
กแแ
กแผ แแ
ขแจแแ
กแผ แแ
ขแจแแ
กแผ แแ
ขแจแแ
ตแท แแ
ขแทแแ
ตแแ
ฅแซ แแ
ฅแแ
ฅแฏ แแ
ฅแแ
ณแท แแ
ฅแซแแ
ฎแจ แแ
ฅแซแแ
ฎแผ แแ
ฅแซแแ
กแผ แแ
ฅแซแแ
ข แแ
ฅแซแแ
ฅแซแแ
ต แแ
ฅแฏแแ
ฉ แแ
ฅแฏแแ
ฅแแ
ต แแ
ฅแฏแแ
กแจ แแ
ฅแบแแ
กแฏ แแ
ฅแบแแ
ข แแ
ฅแผแแ
งแซ แแ
ฅแผแแ
กแแ
ต แแ
ฅแผแแ
ฉ แแ
ฅแผแแ
ฎแซ แแ
ฆแแ
จ แแ
ฆแ
แ
งแจ แแ
ฆแแ
ฉแซ แแ
ฆแแ
ฒแจ แแ
ฆแแ
ฎแผ แแ
ฆแแ
ฅแท แแ
ฉแแ
ณแผแแ
กแจแแ
ขแผ แแ
ฉแแ
กแซ แแ
ฉแแ
กแธ แแ
ฉแแ
กแผแแ
ช แแ
ฉแแ
ฎแซ แแ
ฉแแ
งแ
แ
ณแท แแ
ฉแแ
ฏแซ แแ
ฉแแ
ฅแแ
งแจ แแ
ฉแแ
ฅแท แแ
ฉแแ
ฅแผ แแ
ฉแแ
ฉแฏแ
แ
ตแบ แแ
ฉแบแแ
ฎแฏ แแ
ฉแผแแ
กแจ แแ
ฉแผแ
แ
ต แแ
ฉแผแแ
กแผ แแ
ชแฏแแ
งแผ แแ
ฌแแ
ณแซ แแ
ฌแแ
กแผ แแ
ฌแแ
ฅแซ แแ
ฌแแ
ตแซ แแ
ฌแแ
กแจ แแ
ฌแแ
ฉแผ แแ
ฎแแ
ฅแจ แแ
ฎแแ
ฅแจ แแ
ฎแแ
ตแซ แแ
ฎแแ
ฅแซ แแ
ฎแแ
ณแจ แแ
ฎแจแแ
ฎ แแ
ฎแจแแ
ฉ แแ
ฎแจแแ
ฆ แแ
ฎแจแแ
ก แแ
ฎแฏแแ
ณแซ แแ
ฎแฏแแ
กแฏ แแ
ฎแฏแแ
กแซ แแ
ฎแฏแแ
ตแซ แแ
ฎแฏแแ
งแซ แแ
ฎแฏแแ
ตแธ แแ
ฎแฏแแ
กแผ แแ
ฎแฏแแ
กแซ แแ
ฎแผแแ
งแจ แแ
ฎแผแแ
ฉ แแ
ฎแผแแ
ฉแฏ แแ
ฎแผแแ
ฎแซแแ
ต แแ
ฎแผแแ
ฅแผแแ
ฉ แแ
ฑแแ
ฅแธ แแ
ฑแแ
ตแจ แแ
ฑแแ
ฃแผ แแ
ตแแ
ฃแจ แแ
ตแซแแ
ฎ แแ
ตแซแแ
ฅแจ แแ
ตแฏแแ
ตแธ แแ
ตแฏแแ
ฏแฏ แแ
ตแฏแแ
กแซ แแ
ตแทแแ
ข แแ
ตแทแแ
ฎแจ แแ
ตแทแแ
ตแฏ แแ
ตแบแแ
ฉแฏ แแ
ตแผแแ
กแซ แแ
กแแ
ฆแ
แ
ก แแ
กแแ
ฎแซแแ
ฅ แแ
กแฏแแ
ฎแจแแ
ฎ แแ
ขแ
แ
ตแจแแ
ฅ แแ
ขแทแแ
ฅแแ
ณ แแ
ขแทแแ
ฆแแ
ตแซ แแ
ฅแแ
ณแซ แแ
ฅแซแแ
ตแแ
งแซ แแ
ฅแฏแ
แ
ฅ แแ
ฅแทแแ
ฒแแ
ฅ แแ
ฉแแ
ตแ
แ
ต แแ
ฉแแ
ตแแ
ต แแ
ฉแซแแ
ฅแแ
ณ แแ
ฉแฏแ
แ
ก แแ
ฉแทแแ
ณแฏแ
แ
ฆแจแแ
ณ แแ
ฉแผแแ
กแแ
ฎแฏ แแ
ซแแ
กแท แแ
ฎแแ
ฆแแ
ก แแ
ณแ
แ
ตแท แแ
ณแซแแ
ตแฏ แแ
ณแซแแ
กแฏ แแ
ณแซแแ
ฉแ
แ
ต แแ
ณแซแแ
กแแ
ณแฏ แแ
ณแซแแ
ฅแแ
ฅแแ
ต แแ
ณแซแแ
ตแฏ แแ
ณแซแแ
ฅแฏ แแ
ณแฏแ
แ
ขแแ
ตแจ แแ
ณแฏแ
แ
ฅแธ แแ
ตแฏแ
แ
ฉ แแ
กแแ
ตแธ แแ
กแแ
กแแ
ต แแ
กแจแแ
ฎ แแ
กแจแแ
ก แแ
กแซแแ
ขแผ แแ
ขแแ
ฏแซแแ
ฉ แแ
ขแแ
ฃแผ แแ
ขแแ
ฎแผ แแ
ขแจแแ
ต แแ
ขแฏแ
แ
ฅแซแแ
ณ แแ
ฅแแ
ฅแฏ แแ
ฅแแ
ตแแ
ฅแฏ แแ
ฆแแ
ตแแ
ณ แแ
ฆแแ
ณแแ
ณ แแ
ฆแแ
ตแแ
ณแฏ แแ
ฆแฏแ
แ
ฆแแ
ตแแ
ฅแซ แแ
ฉแ
แ
ฉแซ แแ
ฉแแ
กแแ
ฉ แแ
ฉแแ
ญแแ
ตแฏ แแ
ฉแผแแ
จ แแ
ฉแผแแ
ช แแ
ฉแผแ
แ
ฉ แแ
ฉแผแแ
ตแซ แแ
ฉแผแแ
งแจ แแ
ฉแผแแ
ตแฏ แแ
ฉแผแแ
กแผ แแ
ฉแผแแ
ฆ แแ
ฉแผแแ
ณแผ แแ
ฉแผแแ
กแธ แแ
ฉแผแแ
ช แแ
ฌแแ
ณแซ แแ
ฌแแ
ฏแซ แแ
ฌแแ
ตแจแแ
ณแท แแ
ฑแแ
ตแท แแ
ณแ
แ
ฅแจ แแ
ณแจแแ
ณแธ แแ
ณแจแแ
งแฏ แแ
ณแจแแ
ฅแผ แแ
ณแจแแ
ฎ แแ
ณแจแแ
ตแผ แแ
ณแจแแ
ต แแ
ณแซแแ
ณแซแแ
ต แแ
ตแแ
งแแ
ณ แแ
กแ
แ
กแซแแ
ขแจ แแ
กแแ
ตแฏ แแ
กแแ
ฎแฏแแ
ฉ แแ
กแซแแ
งแฏ แแ
กแซแแ
กแซ แแ
กแซแแ
ข แแ
กแซแแ
ก แแ
กแฏแแ
ตแธ แแ
กแฏแแ
ฏแฏ แแ
กแธแแ
ฉแผ แแ
ขแแ
งแซ แแ
ขแจแแ
ณ แแ
ขแจแแ
ตแแ
ตแฏแ
แ
ต แแ
ขแซแแ
ต แแ
ฅแแ
ฆแซแแ
ณ แแ
ฆแแ
ตแซแแ
ณ แแ
งแซแแ
งแซ แแ
งแซแแ
ด แแ
งแซแแ
ต แแ
งแซแแ
ต แแ
งแผแแ
ก แแ
งแผแแ
ฒแซ แแ
งแผแแ
ขแผ แแ
งแผแแ
ฉ แแ
งแผแแ
ฃแผ แแ
งแผแแ
ตแฏ แแ
งแผแแ
ช แแ
ฉแแ
ณแแ
ฅ แแ
ฉแแ
ตแซแแ
ณ แแ
ฉแแ
กแผ แแ
ฉแแ
กแท แแ
ญแแ
งแซ แแ
ญแแ
ฅแผ แแ
ญแแ
ฎแซ แแ
ญแแ
งแซ แแ
ฎแทแแ
ฉแจ แแ
ฎแทแแ
ตแฏ แแ
ฎแผแแ
งแผ แแ
ฎแผแแ
ฉแจ แแ
ฎแผแแ
ณแธ แแ
ณแ
แ
กแผแแ
ณ แแ
ณแ
แ
ตแซแแ
ฅ แแ
ณแฏแ
แ
กแแ
ณแแ
ตแจ แแ
ตแแ
ฉแซ แแ
ตแแ
กแผ แแ
ตแแ
กแแ
ฉ แแ
ตแฏแ
แ
ณแท แแ
ตแฏแแ
ฎ แแ
ตแฏแแ
ญ แแ
ตแฏแแ
ก แแ
ตแฏแแ
ฉแผ แแ
ตแผแแ
จ แแ
กแแ
ณแแ
ตแท แแ
กแแ
ณแฏ แแ
กแแ
ณแแ
ฐแแ
ฅ แแ
กแ
แ
ฎแบแแ
กแท แแ
กแแ
กแซแแ
ต แแ
กแแ
ฎแจแแ
ตแธ แแ
กแแ
ฎแซ แแ
กแแ
งแแ
ณแซ แแ
กแแ
ตแแ
กแซ แแ
กแแ
ฅแซ แแ
กแแ
ฎแท แแ
กแแ
ตแฏ แแ
กแจแแ
ช แแ
กแจแแ
ญ แแ
กแจแแ
ณแธ แแ
กแจแแ
ต แแ
กแจแแ
งแซ แแ
กแจแ
แ
งแจ แแ
กแจแแ
ฅแซ แแ
กแจแแ
ฎแแ
ฉ แแ
กแจแแ
ต แแ
กแจแแ
ขแผ แแ
กแจแแ
ฎแฏ แแ
กแจแแ
ณแธ แแ
กแจแแ
ญแผแแ
ฎแท แแ
กแจแแ
ฏแซ แแ
กแจแแ
ฑ แแ
กแจแแ
ก แแ
กแจแแ
ฅแท แแ
กแซแแ
จ แแ
กแซแแ
ณแฏ แแ
กแซแแ
ฅแแ
ฅแซแแ
ฆ แแ
กแซแแ
กแฝ แแ
กแซแแ
ฎแซ แแ
กแซแแ
ฉแผแแ
กแซ แแ
กแซแแ
ข แแ
กแซแ
แ
กแแ
กแซ แแ
กแซแแ
กแแ
ต แแ
กแซแแ
ฎแซ แแ
กแซแแ
ฅแซ แแ
กแซแแ
ฉแจ แแ
กแซแแ
ตแจ แแ
กแซแแ
งแ
แ
ณแท แแ
กแซแแ
ฉแจ แแ
กแฏแแ
ฅแแ
ต แแ
กแฏแแ
กแแ
ฅแแ
ต แแ
กแฏแแ
ตแซ แแ
กแทแแ
ฆ แแ
กแทแแ
ฎแ
แ
ฉ แแ
กแธแแ
งแจ แแ
กแธแ
แ
ตแแ
ฅแจ แแ
กแผแแ
ฉแผ แแ
กแผแแ
ฎ แแ
กแผแแ
กแผ แแ
กแผแแ
ด แแ
ขแแ
งแฏ แแ
ขแแ
ฎแซ แแ
ขแแ
กแธ แแ
ขแแ
กแผ แแ
ขแแ
ฎแฏ แแ
ขแแ
ฅแจ แแ
ขแแ
ฅแฏ แแ
ขแแ
ฎแแ
ญแจแแ
กแผ แแ
ขแแ
กแซ แแ
ขแจแแ
ตแท แแ
ขแซแแ
ณแแ
ขแจ แแ
ขแทแแ
ฅแแ
ฅ แแ
ขแบแแ
งแ แแ
ขแบแแ
กแฏ แแ
ขแผแแ
ฉแผ แแ
ขแผแแ
ฉแจ แแ
ขแผแแ
ก แแ
ขแผแแ
ฎแซ แแ
ขแผแแ
ฑ แแ
ฃแผแแ
ต แแ
ฃแผแแ
กแผ แแ
ฃแผแแ
ฎ แแ
ฅแ
แ
กแจ แแ
ฅแแ
ญแผ แแ
ฆแฏแแ
ต แแ
งแซแแ
ชแซ แแ
งแซแแ
ณแท แแ
งแซแแ
ข แแ
งแซแแ
กแผ แแ
งแซแแ
ตแฏ แแ
งแซแแ
กแผ แแ
งแซแแ
ข แแ
งแซแแ
ต แแ
งแฏแแ
ขแจ แแ
งแธแ
แ
งแจ แแ
งแผแแ
ฎ แแ
งแผแแ
ก แแ
งแผแแ
ฎ แแ
งแผแแ
ตแจ แแ
งแผแแ
ฆ แแ
งแผแแ
ข แแ
งแผแแ
งแซ แแ
จแแ
ขแจ แแ
ฉแแ
ตแแ
ตแท แแ
ฉแแ
กแท แแ
ฉแ
แ
กแผแแ
ต แแ
ฉแแ
กแจ แแ
ฉแแ
ฆแฏ แแ
ฉแแ
ณแธ แแ
ฉแจแแ
ต แแ
ฉแฏแ
แ
ฉ แแ
ฉแทแแ
ฆแแ
ตแแ
ต แแ
ฉแผแแ
ฉ แแ
ฉแผแแ
ฎ แแ
ฉแผแแ
ก แแ
ชแแ
งแซ แแ
ชแแ
ฎแซ แแ
ชแแ
กแฏ แแ
ชแแ
ญแแ
ตแฏ แแ
ชแแ
กแผ แแ
ชแแ
กแจ แแ
ชแจแแ
ฉ แแ
ชแจแแ
ตแซ แแ
ชแจแแ
กแผ แแ
ชแจแแ
ฅแผ แแ
ชแซแแ
กแธ แแ
ชแซแแ
งแผ แแ
ชแซแแ
งแผ แแ
ชแซแแ
ฒแฏ แแ
ชแซแแ
ก แแ
ชแฏแแ
ต แแ
ชแฏแแ
ฉแผ แแ
ชแฏแแ
กแฏแแ
ต แแ
ชแฏแแ
ญแผ แแ
ชแฏแแ
กแจ แแ
ฌแแ
งแซ แแ
ฌแแ
ชแซ แแ
ฌแแ
ฉแจ แแ
ฌแแ
ขแจ แแ
ฌแแ
ฏแซ แแ
ฌแแ
กแผ แแ
ฌแแ
ฅแซ แแ
ฌแบแแ
ฎ แแ
ฌแผแแ
กแซแแ
ฉแแ
ฉ แแ
ญแแ
ฒแฏแแ
ฅแจ แแ
ฎแแ
กแซ แแ
ฎแแ
ฎแบแแ
กแ
แ
ฎ แแ
ฎแซแ
แ
งแซ แแ
ฏแฏแแ
ตแซ แแ
ฒแแ
ตแจ แแ
ฒแแ
ตแฏ แแ
ฒแผแแ
ข แแ
ณแ
แ
ณแท แแ
ณแจแแ
ขแจ แแ
ณแจแแ
ตแซ แแ
ณแซแแ
ฅแจ แแ
ณแซแแ
ต แแ
ณแผแแ
ต แแ
ณแผแแ
ฎแซ แแ
ดแแ
ฉแจ แแ
ดแแ
กแผ แแ
ดแแ
ขแผ แแ
ดแซแแ
ขแจ แแ
ตแทแแ
ฅแบ ;;
ja?(_*)) echo ใใใใใใ ใใใใค ใใใใ ใใใใใ ใใใกใใ ใใใ ใใใใใ ใใใ ใใใใใใ ใใใ ใใใฒ ใใใใจ ใใใใใ ใใใใใ ใใใใ ใใใตใ ใใใใ ใใใใใ ใใใใพใ ใใใ ใใคใ ใใคใใ ใใฃใใ
ใ ใใคใพใ ใใคใใ ใใฆใช ใใฆใฏใพใ ใใฒใ ใใตใใ ใใตใใ ใใตใใ ใใพใ ใใพใจใ ใใพใใใ ใใพใ ใใฟใใฎ ใใใใ ใใใพใ ใใใ ใใใใใใพ ใใใ ใใใใใ ใใใใใ ใใใใ ใใใใ ใใใใใจใ ใใใใ ใใใฆใ ใใใ ใใใใใ ใใใ ใใใใใ ใใใฆใ ใใใชใ ใใใพใ ใใใใใ ใใใ ใใใใ ใใใใ ใใใใ ใใใชใ ใใใใฎ ใใใ ใใใใ ใใใตใใ ใใใฏใใช ใใใ ใใใ ใใใ ใใใค ใใใพใใ ใใใ ใใใ ใใใใ
ใ ใใใใใ ใใใใใ ใใใใฟ ใใใใ ใใใ ใใใใฒใ ใใใใ ใใใ ใใใใ ใใใใใ ใใใใใใ ใใใใ ใใใใ ใใใใใ ใใใฟ ใใใใ ใใกใใ ใใกใใ ใใกใจใ ใใกใฏใ ใใกใตใ ใใกใใ
ใ ใใคใ ใใฃใใ
ใ ใใฃใใ ใใฃใใ ใใฃใใ ใใฃใก ใใฃใฆใ ใใฃใปใใ ใใฆใใ ใใฆใ ใใจใใ ใใจใ ใใชใ ใใชใ ใใญใใ ใใฎใก ใใฎใ ใใฏใค ใใฏใใ ใใฏใ ใใฒใใ ใใฒใ ใใตใ ใใธใ ใใปใ ใใฟใ ใใใใจ ใใใใ ใใใ ใใใใใ ใใใ ใใใใ ใใใ ใใใ ใใใใจ ใใใใใก ใใใใ ใใใ ใใใใฎ ใใใ ใใใใใฒใใค ใใใ ใใใ ใใใใ ใใใฏใ ใใใใ ใใใใใใพใ ใใใใค ใใใใใ ใใใใ ใใใ ใใใ ใใใใ ใใใใ ใใใตใ ใใใธใใ ใใใ ใใใใใช ใใใใ ใใใใพใใ ใใใคใ ใใใจใ ใใใใค ใใใ ใใใใใ ใใใใ ใใใ ใใใใ ใใใชใ ใใใใใใฟ ใใใ ใใใใ ใใใใใใ ใใใใ ใใใค ใใกใใใ ใใกใใใ ใใกใ ใใกใ
ใ ใใฃใใ ใใคใใใ ใใฃใใใ ใใคใ ใใจใใ ใใชใใ ใใชใใ ใใชใใใ ใใชใ ใใญใ ใใฎใ ใใตใใใ ใใตใใใใ ใใพใใ ใใใ ใใใ ใใใพใ ใใใ ใใใใใใ ใใใใใก ใใใชใ ใใใใใ ใใใใ ใใใใ ใใใใ ใใใใ ใใใ ใใใ ใใใ ใใใ ใใใใ ใใใกใ ใใใฆใ ใใใจใใ ใใใใ ใใใใ ใใใใใ ใใใใ ใใใใ ใใใตใใ ใใใใ ใใใ ใใใ ใใใใ ใใใใ ใใใใ ใใใใ ใใใใ ใใใฆ ใใคใใ ใใฎใใ ใใปใใพใ ใใปใ ใใพใ ใใใใ ใใใฎ ใใใ ใใใตใ ใใใ ใใใใ ใใใใ ใใใใ ใใใใใ ใใใใ
ใ ใใใใใค ใใใใ ใใใกใใ ใใใจใค ใใใใใ ใใใใ ใใใใ ใใใคใ ใใใใ ใใใใพ ใใใใ ใใใใค ใใใใ ใใใตใ ใใใธใใ ใใใใ ใใใ ใใใ ใใใ ใใใจใใใ ใใใ ใใใใ ใใใใ ใใใใ ใใใใ ใใใใ ใใใใชใ ใใใ ใใใใพ ใใใใใใ ใใใใใใช ใใใ ใใใใ ใใใ ใใใชใ ใใใ ใใใใ ใใใชใ ใใใใ ใใใใ ใใใใ ใใใใใ ใใใใใ ใใใใ ใใใใ ใใใใ ใใใใใ ใใใ ใใใใใ ใใกใคใ ใใฃใจ ใใคใ ใใฆใใใ ใใจใใใฎ ใใจใชใใ ใใจใใ ใใจใใใใ ใใฏใใใ ใใพใใ ใใใฆใใจใ ใใใใฆใ ใใใ ใใใใ ใใใกใ ใใใค ใใใใฒใ ใใใปใใ ใใใใใ ใใใ ใใใใใ ใใใใ ใใใใ ใใใใ ใใใใใ ใใใกใ
ใ ใใใจใใใ ใใใค ใใใใ ใใใใ ใใใใใ ใใใใใ ใใใใค ใใใใ ใใใใใใ ใใใใใ ใใใใใใจใ ใใใคใ ใใใฆใ ใใใจใ ใใใตใ ใใใใธใ ใใใปใ ใใใใ ใใใใใ ใใใ ใใใ ใใใ ใใใใ ใใใใ ใใใใ ใใใใฟ ใใใใ ใใใจใ ใใใใ ใใใใใ ใใใ ใใใก ใใใกใใ ใใใฃใใ
ใ ใใใฃใใ ใใใฃใใ ใใใฃใใใ ใใชใใใใ ใใฎใ ใใใฏใ ใใตใใ ใใปใ ใใปใใ ใใพใ ใใพใปใใ ใใใใใ ใใใ ใใใใฒใ ใใใ ใใใ ใใใ ใใใ ใใใ ใใใใ ใใใใ ใใใใ ใใใใ ใใใใ ใใใใ ใใใก ใใใใฏใใ ใใใ ใใใค ใใใ ใใใใ ใใใ ใใใ ใใใ ใใใ ใใใ ใใใก ใใใ ใใใ ใใใ ใใใใใ ใใใฆ ใใใฏใใ ใใใใใ ใใใใใ ใใใ ใใใใ ใใใ ใใใ ใใใ ใใใพ ใใใใใ ใใใใใใใใ ใใใใ ใใใใใใใใ ใใใใใซใฃใฆใ ใใใใใ
ใคใใ ใใใ ใใใ ใใใ ใใใค ใใใ ใใใใ ใใใใ ใใใใ ใใกใใ ใใคใใ ใใใฃใกใ ใใคใคใ ใใคใญ ใใฆใ ใใจใใ ใใจใใ ใใชใ ใใชใใ ใใชใ ใใฌใใใ ใใญใ ใใฎใ ใใฎใใ ใใฏใ ใใฒใใใ ใใฒใ ใใตใ ใใตใใ ใใปใใ ใใปใ ใใพใ ใใฟใค ใใใใใใใ ใใใ ใใใใใใ ใใใก ใใใฎ ใใใ ใใใ ใใใ
ใใซใ ใใใ ใใใใใ
ใ ใใใ ใใใ ใใใ ใใใ ใใใค ใใใ ใใใใ ใใใใ ใใใใใ ใใใใใใ ใใใใใ ใใใใใฒใ ใใใใ ใใใใ ใใใใ ใใใ ใใใใใ ใใใใ ใใใใใ ใใใใ ใใใใใ ใใใตใ ใใใปใ ใใใ ใใใใ ใใใใ ใใใใ ใใใ ใใใ ใใใฏใใช ใใใ ใใใใฟ ใใใใ ใใใฎใ ใใใใใฒใ ใใใใ ใใใ ใใใใใฆใ ใใใใใ ใใใฒใใใ ใใกใใฟ ใใกใใ ใใคใใ ใใใฃใใ ใใคใใใ ใใจใใฆใ ใใจใใ ใใชใ ใใญใใญ ใใฎใ ใใตใ ใใฟใใใ ใใฟใใฆใ ใใใ ใใใใใ ใใใ ใใใธใใ ใใใพ ใใใ ใใใ ใใใใ ใใใใใ ใใใใใใ ใใใใใ ใใใใฆ ใใใช ใใใใ ใใใใ ใใใ ใใใใค ใใใใใใ
ใค ใใใใ ใใใใฎใใใใ ใใใใ ใใใ ใใใจใ ใใใใใฎ ใใใใ ใใใใใใ ใใใใใใ ใใใใกใ ใใใใจใค ใใใใฏ ใใใใใ ใใใใ ใใใใใใใใ ใใใใใ ใใใ ใใใใใ ใใใ ใใใใใ ใใใใ ใใใใจ ใใใฏใ ใใกใใฃใตใ ใใกใใ ใใคใใค ใใคใ ใใคใใ ใใฃใใ ใใคใใใ ใใฃใใ ใใฃใฆใ ใใคใพใค ใใใคใใใฒใ ใใใคใใ ใใคใใ ใใใจใใ ใใจใฏใใ ใใจใ ใใชใใ ใใชใ ใใชใฟ ใใฌใ ใใใญใค ใใญใ ใใฏใ ใใใฒใ ใใตใใใ ใใใปใใ ใใพใ ใใฟใใ ใใใ ใใใ ใใใฎ ใใใ ใใใใ ใใใใ ใใใ ใใใใค ใใใ ใใใ ใใใใ ใใใใใ ใใใใ ใใใใ ใใใใ
ใ ใใใใ ใใใใใ ใใใกใ ใใใฆใ ใใใจใ ใใใชใ ใใใซใ ใใใใตใใค ใใใพ ใใใฟใ ใใใใ ใใใใ ใใใ ใใใใพ ใใใฌ ใใใฒใใจ ใใใใ ใใใใ ใใใใ ใใใใ ใใใใใ
ใ ใใใใใ ใใใใ ใใใใ ใใใใ ใใใใ ใใใใใ ใใใใ ใใใใ ใใใกใ ใใใคใ ใใใฆใ ใใใจใใ ใใใชใ ใใใฏใ ใใใใปใ ใใใใพใ ใใใใ ใใใใค ใใใ ใใใ ใใใใ ใใใใใค ใใใใ ใใใใ ใใใใ ใใใจใ ใใใชใ ใใใฏใ ใใใใพ ใใใ ใใใ ใใใฎใ ใใใ ใใใ ใใใค ใใใ ใใใ ใใใ ใใใใ ใใใใใฆ ใใใ ใใใใ ใใใค ใใกใใ ใใฃใ ใใคใใค ใใคใฏใใ ใใคใตใ ใใฆใ ใใฆใ ใใจใใใ ใใจใ ใใจใฏใ ใใจใ ใใชใใใช ใใญใใญ ใใฎใพใพ ใใฎใฟ ใใฎใ ใใใฏใ ใใฒใคใใ ใใตใ ใใตใ ใใปใใใ ใใใพใใตใใ ใใพใใ ใใใพใใ ใใพใคใช ใใพใ ใใใใใ ใใใใ ใใใก ใใใฎ ใใใ ใใใ ใใใพ ใใใ ใใใฒใ ใใใ ใใใ ใใใ ใใใใใใ ใใใฃใ ใใใใฆ ใใใใ ใใใใ ใใใใ ใใใ ใใใใ
ใ ใใใใ ใใใใใฆ ใใใจใ ใใใชใ ใใใฒใใซ ใใใปใใ ใใใพใ ใใใ ใใใใ ใใใใ ใใใใใ ใใใใ ใใใใ ใใใใใใ ใใใใ ใใใใ ใใใใ ใใใใใ ใใใใกใ
ใ ใใใฆใ ใใใใใใ ใใใช ใใใใ ใใใใ ใใใช ใใใฟใก ใใใใ ใใใใใ ใใใ ใใใฒใ ใใใ ใใใ ใใใค ใใใใใ ใใใใ ใใใ ใใคใใ ใใใคใใ ใใใฃใ ใใใคใใใ ใใฃใใใ ใใใฃใ ใใคใใใ ใใใฃใใ ใใคใใฏใ ใใคใพใใ ใใฆใ ใใจใใ ใใจใ ใใจใใ ใใจใ ใใจใ ใใฎใ ใใฏใใ ใใฒใใใ ใใธใใค ใใปใ ใใปใจใ ใใพใ ใใฟใใ ใใฟใใใ ใใใ ใใใ ใใใใใจใใ ใใใ ใใใ ใใใ ใใใใ ใใใใใฏใ ใใใใ ใใใ ใใใใ ใใใ ใใใใใ ใใใใ ใใใใ ใใใใใ ใใใใ ใใใใ ใใใ ใใใก ใใใพ ใใใฟ ใใใใ ใใใ ใใใใ ใใใใฃใฆ ใใใใ ใใใ ใใใ ใใใก ใใใ ใใใ ใใใ ใใใ ใใใใ ใใใใจ ใใใ ใใใใใ ใใใใ ใใใใ ใใใฆ ใใใฟ ใใกใใ ใใกใใ ใใฃใใ ใใคใใ ใใคใใ ใใฆใ ใใฆใ ใใฆใค ใใใฆใ ใใใจใใ ใใชใใใ ใใชใใฎ ใใชใ ใใญใพ ใใญใ ใใฎใใ ใใฎใตใ ใใฏใ ใใฏใใใ ใใฏใค ใใฏใใ ใใฏใ ใใฒใใ ใใตใ ใใใตใใ ใใธใ ใใปใ ใใปใ ใใพใ ใใพใ ใใฟใ ใใใใ ใใใใใ ใใใ ใใใ ใใใ ใใใใ ใใใใ ใใใใ ใใใใใใใ ใใใใใ ใใใใปใ ใใใใ ใใใ ใใใใใ ใใใใ ใใใใ ใใใใ ใใใใ ใใใกใใ ใใใฃใใ ใใใใพ ใใใใ ใใใใ ใใใใ ใใใ
ใใใ ใใ
ใใฏใ ใใใ
ใใ ใใ
ใฃใใ ใใ
ใฟ ใใ
ใใฏใ ใใใ
ใใฏใใ ใใใใใ ใใใใใ ใใใฃใใ ใใใจใใ ใใใใค ใใใใ ใใใธใใ ใใใ ใใใใ ใใใใใใ ใใใใใใ ใใใกใ ใใใใ ใใใใ ใใใ ใใใช ใใใใ ใใใใ ใใใ ใใใจใ ใใใใตใใ ใใใใใฒใ ใใใใใ ใใใใใค ใใใใ ใใใจใใ ใใใพ ใใใ ใใใชใ ใใใ ใใใใ ใใใ ใใใใ ใใใใใ ใใใ ใใใใ ใใฃใใ ใใใฃใใ ใใใฃใจ ใใฆใ ใใฆใ ใใญใ ใใฎใ ใใฏใใ ใใฏใใใใ ใใใฒใใ ใใใตใใฌใ ใใตใใ ใใตใ ใใธใใฆ ใใธใใ ใใใปใ ใใปใใ ใใพใ ใใใ ใใใ ใใใ ใใใใ ใใใ ใใใกใใใ ใใใฃใจ ใใใ ใใใใใ ใใใปใใ ใใใตใใ ใใใใค ใใใใใ ใใใใ ใใใใ ใใใ ใใใใใ ใใใซใ ใใใ ใใใ ใใใใใใ ใใใ ใใใ ใใใใ ใใใ ใใใ ใใฃใใ ใใฃใใใ ใใใฃใ ใใฃใใ ใใฃใใค ใใฃใใใใพ ใใคใใใ ใใคใใใ ใใคใฆใใ ใใฃใฏใใ ใใคใฒใ ใใคใตใใ ใใคใใ ใใคใใค ใใชใ ใใฎใฒใ ใใฏใฏใ ใใฒใใ ใใปใใญ ใใพใ ใใพใ ใใใ ใใใใ ใใใต ใใใใใ ใใใ ใใใใ ใใใ ใใใใ ใใใ ใใใใใ ใใใใใ ใใใใ ใใใใ
ใใใใ ใใใใ ใใใใ ใใใใ ใใใกใใ ใใใฆใ ใใใจใ ใใใฌใ ใใใญใ ใใใฏใใ ใใใใตใ ใใใใปใใ ใใใ ใใใใใใใ ใใใใ ใใใใ ใใใใ ใใใใ ใใใใ ใใใใใใ ใใใใ ใใใ ใใใ ใใใจใใใ ใใใญ ใใใใใใใใ ใใใ ใใใใ ใใใใ ใใใใใ ใใใชใ ใใใฒใ ใใใใ ใใใ ใใใใฎ ใใใ ใใใใ ใใใใ ใใใ ใใใใ ใใใใ ใใใช ใใใ ใใใ ใใใใ ใใใใฆใ ใใคใ ใใคใใ ใใฃใใ ใใคใใใใ ใใฃใใค ใใฃใใ ใใฃใใ ใใฃใจ ใใจใใใ ใใจใคใใ ใใชใใ ใใชใ ใใตใปใ ใใปใใ ใใปใใ ใใพใค ใใพใ ใใใ ใใใใ ใใใ ใใใใ ใใใใใ ใใใพใ ใใใ ใใใใ ใใใใ ใใใใใ ใใใใค ใใใใใ ใใใกใใ ใใใใฒใ ใใใใตใใ ใใใฟใ ใใใ ใใใใ ใใใใ ใใใใ ใใใใ ใใใใใใ ใใใ ใใใใใ ใใใใ ใใใ ใใใใใ ใใใใใใใใตใ ใใใใใ ใใใใค ใใใใ ใใใใใ ใใใกใใ ใใใฆใ ใใใใจใใใ ใใใชใ ใใใญใค ใใใฎใ ใใใฏใ ใใใใฒใใ ใใใตใ ใใใธใ ใใใป ใใใพใคใฏใใช ใใใฟใใใ ใใใ ใใใใ ใใใใ ใใใใ ใใใ ใใใใใ ใใใ ใใใใ ใใใ ใใใ ใใใ ใใใ ใใใใ ใใใ ใใใญ ใใใฒใ ใใใใ ใใใ ใใใใ ใใใ ใใใใใ ใใใใใใ ใใใใ ใใใใใใ ใใใใใ ใใใใ ใใใ ใใใใใ ใใใฟ ใใกใฏใใช ใใใฃใใ ใใใฃใใใ ใใใฃใ ใใใฃใใ
ใค ใใใฃใใ ใใฆใ ใใจใใ ใใชใฏใใ ใใซใ ใใฌใ ใใฎใใฟ ใใฏใค ใใตใใ ใใธใใ ใใปใใ ใใพใใ ใใพใ ใใใใ ใใใใ ใใใ ใใใ ใใใค ใใใใ ใใใ ใใใ ใใใใปใใใใ ใใใใ ใใใ ใใใจ ใใใ ใใใใจ ใใใฃใจ ใใใใใ ใใใใใค ใใใ ใใใใ ใใใ ใใใ ใใใใ ใใใใ ใใใใ ใใใใใใใฒใ ใใใใใ ใใใใ ใใใใ ใใใใก ใใใฆใ ใใใจใ ใใใใช ใใใซใ ใใใใญใค ใใใฎใ ใใใฒใใ ใใใใปใใ ใใใพใค ใใใใ ใใใใใค ใใใใ ใใใใ ใกใใ ใกใใ ใกใใ ใกใใใ ใกใใ ใกใใ ใกใใ ใกใใ
ใ ใกใใ ใกใใใใ ใกใใ ใกใใ ใกใใ ใกใใ ใกใใใใ ใกใใ ใกใใ ใกใใ ใกใใ ใกใกใใ ใกใคใใใ ใกใฆใ ใกใฆใ ใกใฌใ ใกใฌใ ใกใฎใ ใกใฒใใ ใกใธใใใ ใกใปใ ใกใพใ ใกใฟใค ใกใฟใจใใ ใกใใใจใ ใกใใใใชใธใ ใกใ
ใใ ใกใใใใ ใกใใใ ใกใใใใใ ใกใใ ใกใใฟ ใกใใใใฟ ใกใใใ ใกใใจใ ใกใใ ใกใใใ ใกใใใ ใคใใ ใคใใใก ใคใใ ใคใใใใใ ใคใใฏใ ใคใใ ใคใใ ใคใใใ ใคใใญ ใคใใ ใคใใญ ใคใใ ใคใใใ ใคใใใ ใคใคใใ ใคใคใใ ใคใคใ ใคใจใใ ใคใชใใใ ใคใชใฟ ใคใญใคใใญ ใคใฎใ ใคใตใใ ใคใพใใชใ ใคใพใ ใคใฟใ ใคใใใ ใคใใ ใคใใ ใคใใ ใคใใปใ ใคใใฟใ ใคใใใฎ ใคใใ ใฆใใ ใฆใใฆ ใฆใใฟ ใฆใใใ ใฆใใ ใฆใใ ใฆใใใ ใฆใใใ ใฆใใใค ใฆใใ ใฆใใใ ใฆใใใ ใฆใใจใ ใฆใใญใ ใฆใใฒใใ ใฆใใธใ ใฆใใปใใ ใฆใใก ใฆใใใ ใฆใใจใ ใฆใใฒใ ใฆใใใปใใ ใฆใใใใใ ใฆใใใ ใฆใใ ใฆใใ ใฆใกใใใ ใฆใกใใ ใฆใคใใใ ใฆใคใคใใ ใฆใใฃใฏใ ใฆใคใปใใ ใฆใคใ ใฆใใฌใใ ใฆใฌใ ใฆใฌใใใ ใฆใฎใฒใ ใฆใฏใ ใฆใตใใใ ใฆใตใใ ใฆใปใจใใ ใฆใปใ ใฆใพใ ใฆใพใใใใ ใฆใฟใใใ ใฆใฟใใใ ใฆใใ ใฆใใฒใ ใฆใใ ใฆใใใ ใฆใใใใค ใฆใใใ ใฆใใใ ใฆใใ ใฆใใใ ใฆใใใ ใฆใใใใ ใฆใใใ ใฆใใ ใฆใใใ ใฆใใใก ใฆใใฆใ ใฆใใจใ ใฆใใชใ ใฆใใตใใ ใฆใใปใใใใใ ใฆใใใค ใฆใใใใใ ใฆใใใใใ ใฆใใใ ใจใใใ ใจใใ ใจใใใใ ใจใใใ
ใ ใจใใใใ ใจใใ ใจใใใใ ใจใใ ใจใใ ใจใใ ใจใใ ใจใใ ใจใใ ใจใใ ใจใใใ ใจใใจใใ ใจใใ ใจใใใ
ใ ใจใใฆใ ใจใใซ ใจใใธใใค ใจใใ ใจใใ ใจใใ ใจใใ ใจใใใใ ใจใใ ใจใใ ใจใกใ
ใ ใจใฃใใ
ใ ใจใฃใใ ใจใคใใใ ใจใคใซใ
ใ ใจใจใใใ ใจใจใฎใใ ใจใชใ ใจใชใใ ใจใชใ ใจใฎใใพ ใจใฏใใ ใจใใตใใใใ ใจใปใ ใจใพใ ใจใใ ใจใใใใก ใจใใ ใจใใใใฒใ ใจใใใ ใจใใใค ใจใใใตใใ ใชใใใ ใชใใใ ใชใใใ ใชใใ ใชใใใ ใชใใใ ใชใใ ใชใใใ ใชใใ ใชใใใ ใชใใใจใ ใชใใ ใชใใฆใใใ ใชใฃใจใ ใชใคใใใฟ ใชใชใใ ใชใซใใใจ ใชใซใใฎ ใชใซใ ใชใฎใ ใชใตใใ ใชใพใใ ใชใพใ ใชใพใฟ ใชใฟใใ ใชใใใ ใชใใ ใชใใ ใชใใ ใชใใฒใ ใชใใตใ ใชใใ ใชใใจใฒใ ใชใใฏใใ ใซใใ ใซใใใใ ใซใใ ใซใใ ใซใใ ใซใใใฆ ใซใใฒใ ใซใใใฟ ใซใใพใ ใซใใใ ใซใใใใใใ ใซใใ ใซใใใฎ ใซใกใใใใ ใซใกใใใฒใ ใซใฃใ ใซใฃใ ใซใฃใใ ใซใฃใใ ใซใฃใใ ใซใฃใใใ ใซใฃใใ ใซใฃใใ ใซใฃใฆใ ใซใชใ ใซใปใ ใซใพใ ใซใใค ใซใใ ใซใ
ใใใ ใซใใใใ ใซใใจใ ใซใใ ใซใใ ใซใใ ใซใใใใ ใซใใใ ใซใใใใ ใซใใใ ใซใใใ ใซใใก ใซใใฆใ ใซใใซใ ใซใใตใ ใซใใพใ ใซใใ ใซใใใ ใซใใใ ใฌใใใใ ใฌใใ ใฌใใใใจใ ใฌใใใ ใฌใใใ ใฌใใ ใฌใพใใฒใ ใฌใใ ใฌใใ ใฌใใกใใ ใญใใใ ใญใใ ใญใใ ใญใใ ใญใใใ ใญใใใ ใญใใ ใญใใใ ใญใใ ใญใใใ ใญใใใใ ใญใใธใใ ใญใใใ ใญใคใ ใญใฃใใ ใญใคใใใ ใญใฃใใใใใ ใญใตใใใ ใญใตใใ ใญใปใใ ใญใปใใฏใปใ ใญใพใ ใญใพใใ ใญใฟใฟ ใญใใ ใญใใใ ใญใใจ ใญใใ ใญใใใ ใญใใใ ใญใใใ ใญใใใ ใญใใใ ใญใใใ ใญใใใ ใญใใ ใญใใกใใ ใญใใจใ ใญใใฒใ ใญใใตใใค ใญใใพใค ใญใใใใ ใญใใใ ใฎใใใ ใฎใใคใใพ ใฎใใใ ใฎใใชใฟ ใฎใใใใ ใฎใใ ใฎใใ ใฎใใ ใฎใใใ ใฎใใใ ใฎใใพใ ใฎใกใปใจใ ใฎใฃใ ใฎใฏใใ ใฎใฏใ ใฎใธใใ ใฎใปใใ ใฎใฟใใฎ ใฎใใพ ใฎใใใฌ ใฎใใญใ ใฎใใใฎ ใฎใใใ ใฎใใ ใฎใใ ใฏใใใ ใฏใใ ใฏใใใใ ใฏใใใ ใฏใใใ ใฏใใใ ใฏใใใ ใฏใใใ ใฏใใใ ใฏใใใ ใฏใใใ ใฏใใก ใฏใใใฏใใ ใฏใใใค ใฏใใ ใฏใใ ใฏใใ ใฏใใใ ใฏใใ ใฏใใใ
ใฏใใ ใฏใใตใ ใฏใใฟ ใฏใใ ใฏใใใ ใฏใใใ ใฏใใ ใฏใใ ใฏใใใใ ใฏใใ ใฏใใ ใฏใกใฟใค ใฏใคใใ ใฏใฃใใ ใฏใคใใ ใฏใฃใใ ใฏใฃใใค ใฏใฃใใ ใฏใฃใใ ใฏใฃใใ ใฏใฃใใ ใฏใฃใใค ใฏใฃใกใ
ใ ใฏใฃใฆใ ใฏใฃใฒใใใ ใฏใฃใปใใ ใฏใชใ ใฏใชใฒใ ใฏใซใใ ใฏใตใใใ ใฏใฟใใใ ใฏใใใ ใฏใใค ใฏใใ ใฏใใ ใฏใใ ใฏใใใใ ใฏใใ ใฏใใ ใฏใใใ ใฏใใใ ใฏใใใ ใฏใใใใ ใฏใใใใใฟ ใฏใใ ใฏใใใ ใฏใใใ ใฏใใใใ ใฏใใใก ใฏใใใค ใฏใใฆใ ใฏใใจใ ใฏใใฎใ ใฏใใฏใ ใฏใใตใใ ใฏใใธใใ ใฏใใปใใใ ใฏใใใ ใฏใใใ ใฏใใใ ใฒใใ ใฒใใ ใฒใใ ใฒใใ ใฒใใ ใฒใใ ใฒใใ ใฒใใ ใฒใใค ใฒใใใ ใฒใใ ใฒใใ ใฒใใใตใใ ใฒใใ ใฒใใใใ
ใคใใ ใฒใใ ใฒใใ ใฒใใ ใฒใใใ ใฒใใใ ใฒใใ ใฒใคใใ ใฒใฃใใ ใฒใฃใ ใฒใคใใใ
ใฒใ ใฒใฃใ ใฒใคใใใ ใฒใใฃใใ ใฒใใฃใกใ ใฒใคใใ ใฒใฆใ ใฒใจใใใฟ ใฒใชใพใคใ ใฒใชใ ใฒใญใ ใฒใฏใ ใฒใฒใใ ใฒใฒใใ ใฒใปใ ใฒใพใใ ใฒใพใ ใฒใฟใค ใฒใใ ใฒใใใใ ใฒใใ ใฒใใ ใฒใใ ใฒใใใใ ใฒใใใใช ใฒใใ ใฒใใค ใฒใใใ ใฒใใพ ใฒใใใใฟ ใฒใใ ใฒใใ ใฒใใ ใฒใใ ใฒใใใ ใฒใใใ ใฒใใใค ใฒใใใ ใฒใใใ
ใฒใใใ ใฒใใใก ใฒใใฏใใ ใฒใใใปใใ ใตใใ ใตใใใก ใตใใใ ใตใใใ ใตใใใใใ ใตใใจใ ใตใใต ใตใใ ใตใใ ใตใใ ใตใใ ใตใใใใค ใตใใตใใใ ใตใใ ใตใใ ใตใใใ ใตใใใฟ ใตใใพ ใตใใ ใตใใใ ใตใใ ใตใใใซใ ใตใใ ใตใกใใ ใตใคใ ใตใคใ ใตใฃใใค ใตใฃใ ใตใฃใใ ใตใใจใใ ใตใจใ ใตใจใ ใตใฎใ ใตใฏใ ใตใฒใใ ใตใธใ ใตใพใ ใตใฟใ ใตใใค ใตใใ ใตใใ ใตใใ ใตใใ ใตใใ ใตใใใ ใตใใใใใ ใตใใใใ ใตใใใค ใตใใใใ ใตใใใ ใตใใใปใใ ใธใใใ ใธใใใ ใธใใใใ ใธใใ ใธใใใใ ใธใใใ ใธใใ ใธใใใ ใธใใใค ใธใใ ใธใใใ ใธใใฆใ ใธใใญใค ใธใใ ใธใใใ ใธใใ ใธใใซใใ ใธใใซใใใใใ ใธใใ ใธใใใ ใธใใใใใ ใธใใใใใ ใธใใใ ใธใใใ ใธใใใ ใปใใ ใปใใ ใปใใใใใ ใปใใใ ใปใใใ ใปใใปใ ใปใใใ ใปใใใค ใปใใ ใปใใ ใปใใ ใปใใใ ใปใใใ ใปใใ ใปใใค ใปใใ ใปใใ ใปใใ ใปใใ ใปใใค ใปใใ
ใปใใใ ใปใใ ใปใใ ใปใใ ใปใใฆ ใปใใ ใปใใกใตใใใ ใปใฃใใใ ใปใฃใ ใปใฃใใ ใปใจใใจใ ใปใใ ใปใใ ใปใใ ใปใใ ใปใใใค ใปใใใ ใพใใซใก ใพใใ ใพใใใ ใพใใใ ใพใใ ใพใใจ ใพใใค ใพใใใ ใพใใ ใพใใใ ใพใคใ ใพใจใ ใพใชใตใ ใพใฌใ ใพใญใ ใพใปใ ใพใใ ใพใใใ ใพใใ ใพใใใ ใพใใ ใพใใ ใพใใ ใพใใใ ใพใใใค ใพใใใใ ใพใใชใ ใฟใใ ใฟใใก ใฟใใ ใฟใใใ ใฟใใ ใฟใใ ใฟใใ ใฟใใ ใฟใใใใ ใฟใใ ใฟใใใ ใฟใใ ใฟใฃใ ใฟใคใใ ใฟใคใใ ใฟใฆใ ใฟใจใใ ใฟใชใจ ใฟใชใฟใใใ ใฟใญใใ ใฟใฎใ ใฟใฎใใใ ใฟใปใ ใฟใใจ ใฟใใใ ใฟใใ ใฟใใใ ใฟใใ ใฟใใ ใฟใใใใ ใใใ ใใใ ใใใ ใใใ ใใใ ใใใ ใใใ ใใใใกใ ใใใ ใใใใ ใใใปใใ ใใใใคใ ใใใฏใ ใใใใ
ใ ใใใ ใใใ ใใใ ใใใตใ ใใใ ใใใ ใใใ ใใกใ
ใ ใใชใใ ใใฎใ ใใใฟ ใใใ ใใใใ ใใใใ ใใใ ใใใใ ใใใใ ใใใใ ใใใใ ใใใใใ ใใใใ ใใใ ใใใใ ใใใตใใค ใใใใ ใใใใ ใใใใพใใ ใใใใ ใใใ ใใใใใใ ใใใใค ใใพใ ใใใ ใใใใ ใใใใ ใใใจใใ ใใใใใใใ ใใใจใใใใ ใใใ ใใใ ใใใฆใ ใใใใใฒใ ใใกใใ ใใจใใ ใใใ ใใใ ใใใใใ ใใใ ใใใ ใใใ ใใใใ ใใใ ใใใใใ ใใใฟ ใใใ ใใใ ใใใ ใใกใ ใใฃใจ ใใฃใฏใใ ใใตใใ ใใใ ใใใใใ ใใใ ใใใใใ ใใใ ใใใฒใใใใใ ใใใธใ ใใใใ ใใใค ใใใ
ใค ใใใ ใใใ ใใใ ใใกใใ ใใฆใใ ใใซใ
ใ ใใฒใใ ใใใ ใใใ ใใใ ใใใ ใใใใ
ใ ใใใใ ใใใ ใใใกใใ ใใใใ ใใใ ใใใ ใใใใ ใใใปใใ ใใใ ใใใใใ ใใใ ใใใ
ใ ใใใ ใใใ ใใฃใ ใใฆใ ใใจใใใใใ ใใญใค ใใใ ใใใ ใใใใตใ ใใใใ ใใใ ใใใใใ ใใใใ ใใใใค ใใใใ ใใใใฏใใ ใใใ ใใใใ ใใใ ใใฃใ ใใใค ใใใ ใใใ ใใใใ ใใใใค ใใใใใ ใใใค ใใใ ใใใ ใใใ ใใใ ใใใ ใใฆใ ใใญใ ใใใ ใใ
ใใใใ ใใใ ใใใใ ใใใใ ใใใใกใ ใใใใ ใใใ ใใใ ใใใ ใใใใ ใใใใ ใใใใ ใใใใ ใใใใ ใใใฏใใ ใใใใใใ ใใใใ ใใใใ ใใใใ ใใใใใใ ใใใจใ ใใใปใใ ใใใ ใใใใใ ใใใใ ใใใใ ใใใใ ใใใใ ใใใใ
ใ ใใใใใ ใใใใ ใใใ ใใใใ ใใใใใ ใใใใ ใใใใ ใใใค ใใใใใ ใใใ
ใค ใใใ ใใฆใ ใใใ ใใใค ใใใใ ใใใฏใ ใใใตใใ ใใใ ใใใ ใใใ ใใใใพ ใใใใ ใใใค ใใใใพใ ใใใใใฎ ใใใ ใใใ ;;
*) echo a{b{andon,ility,le,o{ut,ve},s{ent,orb,tract,urd},use},c{c{ess,ident,ount,use},hieve,id,oustic,quire,ross,t{,ion,or,ress,ual}},d{apt,d{,ict,ress},just,mit,ult,v{ance,ice}},erobic,f{f{air,ord},raid},g{ain,e{,nt},ree},head,i{m,r{,port},sle},l{arm,bum,cohol,ert,ien,l{,ey,ow},most,one,pha,ready,so,ter,ways},m{a{teur,zing},o{ng,unt},used},n{alyst,c{hor,ient},g{er,le,ry},imal,kle,n{ounce,ual},other,swer,t{enna,ique},xiety,y},p{art,ology,p{ear,le,rove},ril},r{c{h,tic},e{a,na},gue,m{,ed,or,y},ound,r{ange,est,ive,ow},t{,efact,ist,work}},s{k,pect,s{ault,et,ist,ume},thma},t{hlete,om,t{ack,end,itude,ract}},u{ction,dit,gust,nt,t{hor,o,umn}},v{erage,o{cado,id}},w{a{ke,re,y},esome,ful,kward},xis} b{a{by,c{helor,on},dge,g,l{ance,cony,l},mboo,n{ana,ner},r{,ely,gain,rel},s{e,ic,ket},ttle},e{a{ch,n,uty},c{ause,ome},ef,fore,gin,h{ave,ind},l{ieve,ow,t},n{ch,efit},st,t{ray,ter,ween},yond},i{cycle,d,ke,nd,ology,r{d,th},tter},l{a{ck,de,me,nket,st},e{ak,ss},ind,o{od,ssom,use},u{e,r,sh}},o{a{rd,t},dy,il,mb,n{e,us},o{k,st},r{der,ing,row},ss,ttom,unce,x,y},r{a{cket,in,nd,ss,ve},e{ad,eze},i{ck,dge,ef,ght,ng,sk},o{ccoli,ken,nze,om,ther,wn},ush},u{bble,d{dy,get},ffalo,ild,l{b,k,let},n{dle,ker},r{den,ger,st},s{,iness,y},tter,yer,zz}} c{a{b{bage,in,le},ctus,ge,ke,l{l,m},m{era,p},n{,al,cel,dy,non,oe,vas,yon},p{able,ital,tain},r{,bon,d,go,pet,ry,t},s{e,h,ino,tle,ual},t{,alog,ch,egory,tle},u{ght,se,tion},ve},e{iling,lery,ment,n{sus,tury},r{eal,tain}},h{a{ir,lk,mpion,nge,os,pter,rge,se,t},e{ap,ck,ese,f,rry,st},i{cken,ef,ld,mney},o{ice,ose},ronic,u{ckle,nk,rn}},i{gar,nnamon,rcle,t{izen,y},vil},l{a{im,p,rify,w,y},e{an,rk,ver},i{ck,ent,ff,mb,nic,p},o{ck,g,se,th,ud,wn},u{b,mp,ster,tch}},o{a{ch,st},conut,de,ffee,i{l,n},l{lect,or,umn},m{bine,e,fort,ic,mon,pany},n{cert,duct,firm,gress,nect,sider,trol,vince},o{k,l},p{per,y},r{al,e,n,rect},st,tton,u{ch,ntry,ple,rse,sin},ver,yote},r{a{ck,dle,ft,m,ne,sh,ter,wl,zy},e{am,dit,ek,w},i{cket,me,sp,tic},o{p,ss,uch,wd},u{cial,el,ise,mble,nch,sh},y{,stal}},u{be,lture,p{,board},r{ious,rent,tain,ve},s{hion,tom},te},ycle} d{a{d,m{age,p},n{ce,ger},ring,sh,ughter,wn,y},e{al,b{ate,ris},c{ade,ember,ide,line,orate,rease},er,f{ense,ine,y},gree,l{ay,iver},m{and,ise},n{ial,tist,y},p{art,end,osit,th,uty},rive,s{cribe,ert,ign,k,pair,troy},t{ail,ect},v{elop,ice,ote}},i{a{gram,l,mond,ry},ce,e{sel,t},ffer,g{ital,nity},lemma,n{ner,osaur},r{ect,t},s{agree,cover,ease,h,miss,order,play,tance},v{ert,ide,orce},zzy},o{c{tor,ument},g,l{l,phin},main,n{ate,key,or},or,se,uble,ve},r{a{ft,gon,ma,stic,w},e{am,ss},i{ft,ll,nk,p,ve},op,um,y},u{ck,mb,ne,ring,st,t{ch,y}},warf,ynamic} e{a{g{er,le},r{ly,n,th},s{ily,t,y}},c{ho,o{logy,nomy}},d{ge,it,ucate},ffort,gg,i{ght,ther},l{bow,der,e{ctric,gant,ment,phant,vator},ite,se},m{b{ark,ody,race},erge,otion,p{loy,ower,ty}},n{a{ble,ct},d{,less,orse},e{my,rgy},force,g{age,ine},hance,joy,list,ough,r{ich,oll},sure,t{er,ire,ry},velope},pisode,qu{al,ip},r{a{,se},o{de,sion},ror,upt},s{cape,s{ay,ence},tate},t{ernal,hics},v{i{dence,l},o{ke,lve}},x{a{ct,mple},c{ess,hange,ite,lude,use},e{cute,rcise},h{aust,ibit},i{le,st,t},otic,p{and,ect,ire,lain,ose,ress},t{end,ra}},ye{,brow}} f{a{bric,c{e,ulty},de,i{nt,th},l{l,se},m{e,ily,ous},n{,cy,tasy},rm,shion,t{,al,her,igue},ult,vorite},e{ature,bruary,deral,e{,d,l},male,nce,stival,tch,ver,w},i{ber,ction,eld,gure,l{e,m,ter},n{al,d,e,ger,ish},r{e,m,st},s{cal,h},t{,ness},x},l{a{g,me,sh,t,vor},ee,i{ght,p},o{at,ck,or,wer},u{id,sh},y},o{am,cus,g,il,l{d,low},o{d,t},r{ce,est,get,k,tune,um,ward},s{sil,ter},und,x},r{a{gile,me},e{quent,sh},i{end,nge},o{g,nt,st,wn,zen},uit},u{el,n{,ny},r{nace,y},ture}} g{a{dget,in,l{axy,lery},me,p,r{age,bage,den,lic,ment},s{,p},t{e,her},uge,ze},e{n{eral,ius,re,tle,uine},sture},host,i{ant,ft,ggle,nger,r{affe,l},ve},l{a{d,nce,re,ss},i{de,mpse},o{be,om,ry,ve,w},ue},o{at,ddess,ld,o{d,se},rilla,s{pel,sip},vern,wn},r{a{b,ce,in,nt,pe,ss,vity},e{at,en},i{d,ef,t},o{cery,up,w},unt},u{ard,ess,i{de,lt,tar},n},ym} h{a{bit,ir,lf,m{mer,ster},nd,ppy,r{bor,d,sh,vest},t,ve,wk,zard},e{a{d,lth,rt,vy},dgehog,ight,l{lo,met,p},n,ro},i{dden,gh,ll,nt,p,re,story},o{bby,ckey,l{d,e,iday,low},me,ney,od,pe,r{n,ror,se},s{pital,t},tel,ur,ver},u{b,ge,m{an,ble,or},n{dred,gry,t},r{dle,ry,t},sband},ybrid} i{c{e,on},d{e{a,ntify},le},gnore,ll{,egal,ness},m{age,itate,m{ense,une},p{act,ose,rove,ulse}},n{c{h,lude,ome,rease},d{ex,icate,oor,ustry},f{ant,lict,orm},h{ale,erit},itial,j{ect,ury},mate,n{er,ocent},put,quiry,s{ane,ect,ide,pire,tall},t{act,erest,o},v{est,ite,olve}},ron,s{land,olate,sue},tem,vory} j{a{cket,guar,r,zz},e{a{lous,ns},lly,wel},o{b,in,ke,urney,y},u{dge,ice,mp,n{gle,ior,k},st}} k{angaroo,e{e{n,p},tchup,y},i{ck,d{,ney},n{d,gdom},ss,t{,chen,e,ten},wi},n{ee,ife,o{ck,w}}} l{a{b{,el,or},d{der,y},ke,mp,nguage,ptop,rge,t{er,in},u{gh,ndry},va,w{,n,suit},yer,zy},e{a{der,f,rn,ve},cture,ft,g{,al,end},isure,mon,n{d,gth,s},opard,sson,tter,vel},i{ar,b{erty,rary},cense,f{e,t},ght,ke,m{b,it},nk,on,quid,st,ttle,ve,zard},o{a{d,n},bster,c{al,k},gic,n{ely,g},op,ttery,u{d,nge},ve,yal},u{cky,ggage,mber,n{ar,ch},xury},yrics} m{a{chine,d,g{ic,net},i{d,l,n},jor,ke,mmal,n{,age,date,go,sion,ual},ple,r{ble,ch,gin,ine,ket,riage},s{k,s,ter},t{ch,erial,h,rix,ter},ximum,ze},e{a{dow,n,sure,t},chanic,d{al,ia},l{ody,t},m{ber,ory},n{tion,u},r{cy,ge,it,ry},s{h,sage},t{al,hod}},i{d{dle,night},l{k,lion},mic,n{d,imum,or,ute},r{acle,ror},s{ery,s,take},x{,ed,ture}},o{bile,d{el,ify},m{,ent},n{itor,key,ster,th},on,r{al,e,ning},squito,t{her,ion,or},u{ntain,se},v{e,ie}},u{ch,ffin,l{e,tiply},s{cle,eum,hroom,ic,t},tual},y{s{elf,tery},th}} n{a{ive,me,pkin,rrow,sty,t{ion,ure}},e{ar,ck,ed,g{ative,lect},ither,phew,rve,st,t{,work},utral,ver,ws,xt},i{ce,ght},o{ble,ise,minee,odle,r{mal,th},se,t{able,e,hing,ice},vel,w},u{clear,mber,rse,t}} o{ak,b{ey,ject,lige,s{cure,erve},tain,vious},c{cur,ean,tober},dor,f{f{,er,ice},ten},il,kay,l{d,ive,ympic},mit,n{ce,e,ion,l{ine,y}},p{e{n,ra},inion,pose,tion},r{ange,bit,chard,d{er,inary},gan,i{ent,ginal},phan},strich,ther,ut{door,er,put,side},v{al,e{n,r}},wn{,er},xygen,yster,zone} p{a{ct,ddle,ge,ir,l{ace,m},n{da,el,ic,ther},per,r{ade,ent,k,rot,ty},ss,t{ch,h,ient,rol,tern},use,ve,yment},e{a{ce,nut,r,sant},lican,n{,alty,cil},ople,pper,r{fect,mit,son},t},h{o{ne,to},rase,ysical},i{ano,c{nic,ture},ece,g{,eon},l{l,ot},nk,oneer,pe,stol,tch,zza},l{a{ce,net,stic,te,y},e{ase,dge},u{ck,g,nge}},o{e{m,t},int,l{ar,e,ice},n{d,y},ol,pular,rtion,s{ition,sible,t},t{ato,tery},verty,w{der,er}},r{a{ctice,ise},e{dict,fer,pare,sent,tty,vent},i{ce,de,mary,nt,ority,son,vate,ze},o{blem,cess,duce,fit,gram,ject,mote,of,perty,sper,tect,ud,vide}},u{blic,dding,l{l,p,se},mpkin,nch,p{il,py},r{chase,ity,pose,se},sh,t,zzle},yramid} qu{a{lity,ntum,rter},estion,i{ck,t,z},ote} r{a{bbit,c{coon,e,k},d{ar,io},i{l,n,se},lly,mp,n{ch,dom,ge},pid,re,t{e,her},ven,w,zor},e{a{dy,l,son},b{el,uild},c{all,eive,ipe,ord,ycle},duce,f{lect,orm,use},g{ion,ret,ular},ject,l{ax,ease,ief,y},m{ain,ember,ind,ove},n{der,ew,t},open,p{air,eat,lace,ort},quire,s{cue,emble,ist,ource,ponse,ult},t{ire,reat,urn},union,v{eal,iew},ward},hythm,i{b{,bon},c{e,h},d{e,ge},fle,g{ht,id},ng,ot,pple,sk,tual,v{al,er}},o{a{d,st},b{ot,ust},cket,mance,o{f,kie,m},se,tate,u{gh,nd,te},yal},u{bber,de,g,le,n{,way},ral}} s{a{d{,dle,ness},fe,il,l{ad,mon,on,t,ute},m{e,ple},nd,t{isfy,oshi},u{ce,sage},ve,y},c{a{le,n,re,tter},ene,h{eme,ool},i{ence,ssors},o{rpion,ut},r{ap,een,ipt,ub}},e{a{,rch,son,t},c{ond,ret,tion,urity},e{d,k},gment,l{ect,l},minar,n{ior,se,tence},r{ies,vice},ssion,t{tle,up},ven},h{a{dow,ft,llow,re},e{d,ll,riff},i{eld,ft,ne,p,ver},o{ck,e,ot,p,rt,ulder,ve},r{imp,ug},uffle,y},i{bling,ck,de,ege,g{ht,n},l{ent,k,ly,ver},m{ilar,ple},n{ce,g},ren,ster,tuate,x,ze},k{ate,etch,i{,ll,n,rt},ull},l{a{b,m},e{ep,nder},i{ce,de,ght,m},o{gan,t,w},ush},m{a{ll,rt},ile,o{ke,oth}},n{a{ck,ke,p},iff,ow},o{ap,c{cer,ial,k},da,ft,l{ar,dier,id,ution,ve},meone,ng,on,r{ry,t},u{l,nd,p,rce,th}},p{a{ce,re,tial,wn},e{ak,cial,ed,ll,nd},here,i{ce,der,ke,n,rit},lit,o{il,nsor,on,rt,t},r{ay,ead,ing},y},qu{are,eeze,irrel},t{a{ble,dium,ff,ge,irs,mp,nd,rt,te,y},e{ak,el,m,p,reo},i{ck,ll,ng},o{ck,mach,ne,ol,ry,ve},r{ategy,eet,ike,ong,uggle},u{dent,ff,mble},yle},u{b{ject,mit,way},c{cess,h},dden,ffer,g{ar,gest},it,mmer,n{,ny,set},p{er,ply,reme},r{e,face,ge,prise,round,vey},s{pect,tain}},w{a{llow,mp,p,rm},e{ar,et},i{ft,m,ng,tch},ord},y{m{bol,ptom},rup,stem}} t{a{ble,ckle,g,il,l{ent,k},nk,pe,rget,s{k,te},ttoo,xi},e{a{ch,m},ll,n{,ant,nis,t},rm,st,xt},h{a{nk,t},e{me,n,ory,re,y},i{ng,s},ought,r{ee,ive,ow},u{mb,nder}},i{cket,de,ger,lt,m{ber,e},ny,p,red,ssue,tle},o{ast,bacco,d{ay,dler},e,gether,ilet,ken,m{ato,orrow},n{e,gue,ight},o{l,th},p{,ic,ple},r{ch,nado,toise},ss,tal,urist,w{ard,er,n},y},r{a{ck,de,ffic,gic,in,nsfer,p,sh,vel,y},e{at,e,nd},i{al,be,ck,gger,m,p},o{phy,uble},u{ck,e,ly,mpet,st,th},y},u{be,ition,mble,n{a,nel},r{key,n,tle}},w{e{lve,nty},i{ce,n,st},o},yp{e,ical}} u{gly,mbrella,n{a{ble,ware},c{le,over},d{er,o},f{air,old},happy,i{form,que,t,verse},known,lock,til,usual,veil},p{date,grade,hold,on,per,set},r{ban,ge},s{age,e{,d,ful,less},ual},tility} v{a{c{ant,uum},gue,l{id,ley,ve},n{,ish},por,rious,st,ult},e{hicle,lvet,n{dor,ture,ue},r{b,ify,sion,y},ssel,teran},i{able,brant,c{ious,tory},deo,ew,llage,ntage,olin,r{tual,us},s{a,it,ual},tal,vid},o{cal,i{ce,d},l{cano,ume},te,yage}} w{a{g{e,on},it,l{k,l,nut},nt,r{fare,m,rior},s{h,p,te},ter,ve,y},e{a{lth,pon,r,sel,ther},b,dding,ekend,ird,lcome,st,t},h{a{le,t},e{at,el,n,re},i{p,sper}},i{d{e,th},fe,l{d,l},n{,dow,e,g,k,ner,ter},re,s{dom,e,h},tness},o{lf,man,nder,o{d,l},r{d,k,ld,ry,th}},r{ap,e{ck,stle},i{st,te},ong}} y{ard,e{ar,llow},ou{,ng,th}} z{e{bra,ro},o{ne,o}} ;;
esac
check-mnemonic()
if [[ $# =~ ^(12|15|18|21|24)$ ]]
then
local -a wordlist=($(bip39_words))
local -Ai wordlist_reverse
local -i i
local word
for word in "${wordlist[@]}"
do wordlist_reverse[$word]=++i
done
local dc_script='16o0'
for word
do
if ((${wordlist_reverse[$word]}))
then dc_script+=" 2048*${wordlist_reverse[$word]} 1-+"
else return 1
fi
done
dc_script="$dc_script 2 $(($#*11/33))^ 0k/ p"
create-mnemonic $(