Initial commit
netzel

netzel commited on 2024-02-21 23:00:39
Showing 46 changed files, with 7634 additions and 0 deletions.

... ...
@@ -0,0 +1,1920 @@
1
+#!/bin/sh
2
+# This script was generated using Makeself 2.5.0
3
+# The license covering this archive and its contents, if any, is wholly independent of the Makeself license (GPL)
4
+
5
+ORIG_UMASK=`umask`
6
+if test "n" = n; then
7
+    umask 077
8
+fi
9
+
10
+CRCsum="4038893061"
11
+MD5="89d81818d7ae85ebf140c63861285e19"
12
+SHA="0000000000000000000000000000000000000000000000000000000000000000"
13
+SIGNATURE=""
14
+TMPROOT=${TMPDIR:=/tmp}
15
+USER_PWD="$PWD"
16
+export USER_PWD
17
+ARCHIVE_DIR=`dirname "$0"`
18
+export ARCHIVE_DIR
19
+
20
+label="'plTools' installer:"
21
+script="./setup.sh"
22
+scriptargs=""
23
+cleanup_script=""
24
+licensetxt=""
25
+helpheader=""
26
+targetdir="lin"
27
+filesizes="344180"
28
+totalsize="344180"
29
+keep="n"
30
+nooverwrite="n"
31
+quiet="n"
32
+accept="n"
33
+nodiskspace="n"
34
+export_conf="n"
35
+decrypt_cmd=""
36
+skip="714"
37
+
38
+print_cmd_arg=""
39
+if type printf > /dev/null; then
40
+    print_cmd="printf"
41
+elif test -x /usr/ucb/echo; then
42
+    print_cmd="/usr/ucb/echo"
43
+else
44
+    print_cmd="echo"
45
+fi
46
+
47
+if test -d /usr/xpg4/bin; then
48
+    PATH=/usr/xpg4/bin:$PATH
49
+    export PATH
50
+fi
51
+
52
+if test -d /usr/sfw/bin; then
53
+    PATH=$PATH:/usr/sfw/bin
54
+    export PATH
55
+fi
56
+
57
+unset CDPATH
58
+
59
+MS_Printf()
60
+{
61
+    $print_cmd $print_cmd_arg "$1"
62
+}
63
+
64
+MS_PrintLicense()
65
+{
66
+  PAGER=${PAGER:=more}
67
+  if test x"$licensetxt" != x; then
68
+    PAGER_PATH=`exec <&- 2>&-; which $PAGER || command -v $PAGER || type $PAGER`
69
+    if test -x "$PAGER_PATH"; then
70
+      echo "$licensetxt" | $PAGER
71
+    else
72
+      echo "$licensetxt"
73
+    fi
74
+    if test x"$accept" != xy; then
75
+      while true
76
+      do
77
+        MS_Printf "Please type y to accept, n otherwise: "
78
+        read yn
79
+        if test x"$yn" = xn; then
80
+          keep=n
81
+          eval $finish; exit 1
82
+          break;
83
+        elif test x"$yn" = xy; then
84
+          break;
85
+        fi
86
+      done
87
+    fi
88
+  fi
89
+}
90
+
91
+MS_diskspace()
92
+{
93
+	(
94
+	df -k "$1" | tail -1 | awk '{ if ($4 ~ /%/) {print $3} else {print $4} }'
95
+	)
96
+}
97
+
98
+MS_dd()
99
+{
100
+    blocks=`expr $3 / 1024`
101
+    bytes=`expr $3 % 1024`
102
+    # Test for ibs, obs and conv feature
103
+    if dd if=/dev/zero of=/dev/null count=1 ibs=512 obs=512 conv=sync 2> /dev/null; then
104
+        dd if="$1" ibs=$2 skip=1 obs=1024 conv=sync 2> /dev/null | \
105
+        { test $blocks -gt 0 && dd ibs=1024 obs=1024 count=$blocks ; \
106
+          test $bytes  -gt 0 && dd ibs=1 obs=1024 count=$bytes ; } 2> /dev/null
107
+    else
108
+        dd if="$1" bs=$2 skip=1 2> /dev/null
109
+    fi
110
+}
111
+
112
+MS_dd_Progress()
113
+{
114
+    if test x"$noprogress" = xy; then
115
+        MS_dd "$@"
116
+        return $?
117
+    fi
118
+    file="$1"
119
+    offset=$2
120
+    length=$3
121
+    pos=0
122
+    bsize=4194304
123
+    while test $bsize -gt $length; do
124
+        bsize=`expr $bsize / 4`
125
+    done
126
+    blocks=`expr $length / $bsize`
127
+    bytes=`expr $length % $bsize`
128
+    (
129
+        dd ibs=$offset skip=1 count=1 2>/dev/null
130
+        pos=`expr $pos \+ $bsize`
131
+        MS_Printf "     0%% " 1>&2
132
+        if test $blocks -gt 0; then
133
+            while test $pos -le $length; do
134
+                dd bs=$bsize count=1 2>/dev/null
135
+                pcent=`expr $length / 100`
136
+                pcent=`expr $pos / $pcent`
137
+                if test $pcent -lt 100; then
138
+                    MS_Printf "\b\b\b\b\b\b\b" 1>&2
139
+                    if test $pcent -lt 10; then
140
+                        MS_Printf "    $pcent%% " 1>&2
141
+                    else
142
+                        MS_Printf "   $pcent%% " 1>&2
143
+                    fi
144
+                fi
145
+                pos=`expr $pos \+ $bsize`
146
+            done
147
+        fi
148
+        if test $bytes -gt 0; then
149
+            dd bs=$bytes count=1 2>/dev/null
150
+        fi
151
+        MS_Printf "\b\b\b\b\b\b\b" 1>&2
152
+        MS_Printf " 100%%  " 1>&2
153
+    ) < "$file"
154
+}
155
+
156
+MS_Help()
157
+{
158
+    cat << EOH >&2
159
+Makeself version 2.5.0
160
+ 1) Getting help or info about $0 :
161
+  $0 --help   Print this message
162
+  $0 --info   Print embedded info : title, default target directory, embedded script ...
163
+  $0 --lsm    Print embedded lsm entry (or no LSM)
164
+  $0 --list   Print the list of files in the archive
165
+  $0 --check  Checks integrity of the archive
166
+  $0 --verify-sig key Verify signature agains a provided key id
167
+
168
+ 2) Running $0 :
169
+  $0 [options] [--] [additional arguments to embedded script]
170
+  with following options (in that order)
171
+  --confirm             Ask before running embedded script
172
+  --quiet               Do not print anything except error messages
173
+  --accept              Accept the license
174
+  --noexec              Do not run embedded script (implies --noexec-cleanup)
175
+  --noexec-cleanup      Do not run embedded cleanup script
176
+  --keep                Do not erase target directory after running
177
+                        the embedded script
178
+  --noprogress          Do not show the progress during the decompression
179
+  --nox11               Do not spawn an xterm
180
+  --nochown             Do not give the target folder to the current user
181
+  --chown               Give the target folder to the current user recursively
182
+  --nodiskspace         Do not check for available disk space
183
+  --target dir          Extract directly to a target directory (absolute or relative)
184
+                        This directory may undergo recursive chown (see --nochown).
185
+  --tar arg1 [arg2 ...] Access the contents of the archive through the tar command
186
+  --ssl-pass-src src    Use the given src as the source of password to decrypt the data
187
+                        using OpenSSL. See "PASS PHRASE ARGUMENTS" in man openssl.
188
+                        Default is to prompt the user to enter decryption password
189
+                        on the current terminal.
190
+  --cleanup-args args   Arguments to the cleanup script. Wrap in quotes to provide
191
+                        multiple arguments.
192
+  --                    Following arguments will be passed to the embedded script${helpheader}
193
+EOH
194
+}
195
+
196
+MS_Verify_Sig()
197
+{
198
+    GPG_PATH=`exec <&- 2>&-; which gpg || command -v gpg || type gpg`
199
+    MKTEMP_PATH=`exec <&- 2>&-; which mktemp || command -v mktemp || type mktemp`
200
+    test -x "$GPG_PATH" || GPG_PATH=`exec <&- 2>&-; which gpg || command -v gpg || type gpg`
201
+    test -x "$MKTEMP_PATH" || MKTEMP_PATH=`exec <&- 2>&-; which mktemp || command -v mktemp || type mktemp`
202
+	offset=`head -n "$skip" "$1" | wc -c | sed "s/ //g"`
203
+    temp_sig=`mktemp -t XXXXX`
204
+    echo $SIGNATURE | base64 --decode > "$temp_sig"
205
+    gpg_output=`MS_dd "$1" $offset $totalsize | LC_ALL=C "$GPG_PATH" --verify "$temp_sig" - 2>&1`
206
+    gpg_res=$?
207
+    rm -f "$temp_sig"
208
+    if test $gpg_res -eq 0 && test `echo $gpg_output | grep -c Good` -eq 1; then
209
+        if test `echo $gpg_output | grep -c $sig_key` -eq 1; then
210
+            test x"$quiet" = xn && echo "GPG signature is good" >&2
211
+        else
212
+            echo "GPG Signature key does not match" >&2
213
+            exit 2
214
+        fi
215
+    else
216
+        test x"$quiet" = xn && echo "GPG signature failed to verify" >&2
217
+        exit 2
218
+    fi
219
+}
220
+
221
+MS_Check()
222
+{
223
+    OLD_PATH="$PATH"
224
+    PATH=${GUESS_MD5_PATH:-"$OLD_PATH:/bin:/usr/bin:/sbin:/usr/local/ssl/bin:/usr/local/bin:/opt/openssl/bin"}
225
+	MD5_ARG=""
226
+    MD5_PATH=`exec <&- 2>&-; which md5sum || command -v md5sum || type md5sum`
227
+    test -x "$MD5_PATH" || MD5_PATH=`exec <&- 2>&-; which md5 || command -v md5 || type md5`
228
+    test -x "$MD5_PATH" || MD5_PATH=`exec <&- 2>&-; which digest || command -v digest || type digest`
229
+    PATH="$OLD_PATH"
230
+
231
+    SHA_PATH=`exec <&- 2>&-; which shasum || command -v shasum || type shasum`
232
+    test -x "$SHA_PATH" || SHA_PATH=`exec <&- 2>&-; which sha256sum || command -v sha256sum || type sha256sum`
233
+
234
+    if test x"$quiet" = xn; then
235
+		MS_Printf "Verifying archive integrity..."
236
+    fi
237
+    offset=`head -n "$skip" "$1" | wc -c | sed "s/ //g"`
238
+    fsize=`cat "$1" | wc -c | sed "s/ //g"`
239
+    if test $totalsize -ne `expr $fsize - $offset`; then
240
+        echo " Unexpected archive size." >&2
241
+        exit 2
242
+    fi
243
+    verb=$2
244
+    i=1
245
+    for s in $filesizes
246
+    do
247
+		crc=`echo $CRCsum | cut -d" " -f$i`
248
+		if test -x "$SHA_PATH"; then
249
+			if test x"`basename $SHA_PATH`" = xshasum; then
250
+				SHA_ARG="-a 256"
251
+			fi
252
+			sha=`echo $SHA | cut -d" " -f$i`
253
+			if test x"$sha" = x0000000000000000000000000000000000000000000000000000000000000000; then
254
+				test x"$verb" = xy && echo " $1 does not contain an embedded SHA256 checksum." >&2
255
+			else
256
+				shasum=`MS_dd_Progress "$1" $offset $s | eval "$SHA_PATH $SHA_ARG" | cut -b-64`;
257
+				if test x"$shasum" != x"$sha"; then
258
+					echo "Error in SHA256 checksums: $shasum is different from $sha" >&2
259
+					exit 2
260
+				elif test x"$quiet" = xn; then
261
+					MS_Printf " SHA256 checksums are OK." >&2
262
+				fi
263
+				crc="0000000000";
264
+			fi
265
+		fi
266
+		if test -x "$MD5_PATH"; then
267
+			if test x"`basename $MD5_PATH`" = xdigest; then
268
+				MD5_ARG="-a md5"
269
+			fi
270
+			md5=`echo $MD5 | cut -d" " -f$i`
271
+			if test x"$md5" = x00000000000000000000000000000000; then
272
+				test x"$verb" = xy && echo " $1 does not contain an embedded MD5 checksum." >&2
273
+			else
274
+				md5sum=`MS_dd_Progress "$1" $offset $s | eval "$MD5_PATH $MD5_ARG" | cut -b-32`;
275
+				if test x"$md5sum" != x"$md5"; then
276
+					echo "Error in MD5 checksums: $md5sum is different from $md5" >&2
277
+					exit 2
278
+				elif test x"$quiet" = xn; then
279
+					MS_Printf " MD5 checksums are OK." >&2
280
+				fi
281
+				crc="0000000000"; verb=n
282
+			fi
283
+		fi
284
+		if test x"$crc" = x0000000000; then
285
+			test x"$verb" = xy && echo " $1 does not contain a CRC checksum." >&2
286
+		else
287
+			sum1=`MS_dd_Progress "$1" $offset $s | CMD_ENV=xpg4 cksum | awk '{print $1}'`
288
+			if test x"$sum1" != x"$crc"; then
289
+				echo "Error in checksums: $sum1 is different from $crc" >&2
290
+				exit 2
291
+			elif test x"$quiet" = xn; then
292
+				MS_Printf " CRC checksums are OK." >&2
293
+			fi
294
+		fi
295
+		i=`expr $i + 1`
296
+		offset=`expr $offset + $s`
297
+    done
298
+    if test x"$quiet" = xn; then
299
+		echo " All good."
300
+    fi
301
+}
302
+
303
+MS_Decompress()
304
+{
305
+    if test x"$decrypt_cmd" != x""; then
306
+        { eval "$decrypt_cmd" || echo " ... Decryption failed." >&2; } | eval "gzip -cd"
307
+    else
308
+        eval "gzip -cd"
309
+    fi
310
+    
311
+    if test $? -ne 0; then
312
+        echo " ... Decompression failed." >&2
313
+    fi
314
+}
315
+
316
+UnTAR()
317
+{
318
+    if test x"$quiet" = xn; then
319
+		tar $1vf -  2>&1 || { echo " ... Extraction failed." >&2; kill -15 $$; }
320
+    else
321
+		tar $1f -  2>&1 || { echo Extraction failed. >&2; kill -15 $$; }
322
+    fi
323
+}
324
+
325
+MS_exec_cleanup() {
326
+    if test x"$cleanup" = xy && test x"$cleanup_script" != x""; then
327
+        cleanup=n
328
+        cd "$tmpdir"
329
+        eval "\"$cleanup_script\" $scriptargs $cleanupargs"
330
+    fi
331
+}
332
+
333
+MS_cleanup()
334
+{
335
+    echo 'Signal caught, cleaning up' >&2
336
+    MS_exec_cleanup
337
+    cd "$TMPROOT"
338
+    rm -rf "$tmpdir"
339
+    eval $finish; exit 15
340
+}
341
+
342
+finish=true
343
+xterm_loop=
344
+noprogress=n
345
+nox11=n
346
+copy=none
347
+ownership=n
348
+verbose=n
349
+cleanup=y
350
+cleanupargs=
351
+sig_key=
352
+
353
+initargs="$@"
354
+
355
+while true
356
+do
357
+    case "$1" in
358
+    -h | --help)
359
+	MS_Help
360
+	exit 0
361
+	;;
362
+    -q | --quiet)
363
+	quiet=y
364
+	noprogress=y
365
+	shift
366
+	;;
367
+	--accept)
368
+	accept=y
369
+	shift
370
+	;;
371
+    --info)
372
+	echo Identification: "$label"
373
+	echo Target directory: "$targetdir"
374
+	echo Uncompressed size: 900 KB
375
+	echo Compression: gzip
376
+	if test x"n" != x""; then
377
+	    echo Encryption: n
378
+	fi
379
+	echo Date of packaging: Sun Feb 18 21:40:43 CET 2024
380
+	echo Built with Makeself version 2.5.0
381
+	echo Build command was: "/usr/bin/makeself.sh \\
382
+    \"./lin\" \\
383
+    \"pltoolsinstall.run\" \\
384
+    \"'plTools' installer:\" \\
385
+    \"./setup.sh\""
386
+	if test x"$script" != x; then
387
+	    echo Script run after extraction:
388
+	    echo "    " $script $scriptargs
389
+	fi
390
+	if test x"" = xcopy; then
391
+		echo "Archive will copy itself to a temporary location"
392
+	fi
393
+	if test x"n" = xy; then
394
+		echo "Root permissions required for extraction"
395
+	fi
396
+	if test x"n" = xy; then
397
+	    echo "directory $targetdir is permanent"
398
+	else
399
+	    echo "$targetdir will be removed after extraction"
400
+	fi
401
+	exit 0
402
+	;;
403
+    --dumpconf)
404
+	echo LABEL=\"$label\"
405
+	echo SCRIPT=\"$script\"
406
+	echo SCRIPTARGS=\"$scriptargs\"
407
+    echo CLEANUPSCRIPT=\"$cleanup_script\"
408
+	echo archdirname=\"lin\"
409
+	echo KEEP=n
410
+	echo NOOVERWRITE=n
411
+	echo COMPRESS=gzip
412
+	echo filesizes=\"$filesizes\"
413
+    echo totalsize=\"$totalsize\"
414
+	echo CRCsum=\"$CRCsum\"
415
+	echo MD5sum=\"$MD5sum\"
416
+	echo SHAsum=\"$SHAsum\"
417
+	echo SKIP=\"$skip\"
418
+	exit 0
419
+	;;
420
+    --lsm)
421
+cat << EOLSM
422
+No LSM.
423
+EOLSM
424
+	exit 0
425
+	;;
426
+    --list)
427
+	echo Target directory: $targetdir
428
+	offset=`head -n "$skip" "$0" | wc -c | sed "s/ //g"`
429
+	for s in $filesizes
430
+	do
431
+	    MS_dd "$0" $offset $s | MS_Decompress | UnTAR t
432
+	    offset=`expr $offset + $s`
433
+	done
434
+	exit 0
435
+	;;
436
+	--tar)
437
+	offset=`head -n "$skip" "$0" | wc -c | sed "s/ //g"`
438
+	arg1="$2"
439
+    shift 2 || { MS_Help; exit 1; }
440
+	for s in $filesizes
441
+	do
442
+	    MS_dd "$0" $offset $s | MS_Decompress | tar "$arg1" - "$@"
443
+	    offset=`expr $offset + $s`
444
+	done
445
+	exit 0
446
+	;;
447
+    --check)
448
+	MS_Check "$0" y
449
+	exit 0
450
+	;;
451
+    --verify-sig)
452
+    sig_key="$2"
453
+    shift 2 || { MS_Help; exit 1; }
454
+    MS_Verify_Sig "$0"
455
+    ;;
456
+    --confirm)
457
+	verbose=y
458
+	shift
459
+	;;
460
+	--noexec)
461
+	script=""
462
+    cleanup_script=""
463
+	shift
464
+	;;
465
+    --noexec-cleanup)
466
+    cleanup_script=""
467
+    shift
468
+    ;;
469
+    --keep)
470
+	keep=y
471
+	shift
472
+	;;
473
+    --target)
474
+	keep=y
475
+	targetdir="${2:-.}"
476
+    shift 2 || { MS_Help; exit 1; }
477
+	;;
478
+    --noprogress)
479
+	noprogress=y
480
+	shift
481
+	;;
482
+    --nox11)
483
+	nox11=y
484
+	shift
485
+	;;
486
+    --nochown)
487
+	ownership=n
488
+	shift
489
+	;;
490
+    --chown)
491
+        ownership=y
492
+        shift
493
+        ;;
494
+    --nodiskspace)
495
+	nodiskspace=y
496
+	shift
497
+	;;
498
+    --xwin)
499
+	if test "n" = n; then
500
+		finish="echo Press Return to close this window...; read junk"
501
+	fi
502
+	xterm_loop=1
503
+	shift
504
+	;;
505
+    --phase2)
506
+	copy=phase2
507
+	shift
508
+	;;
509
+	--ssl-pass-src)
510
+	if test x"n" != x"openssl"; then
511
+	    echo "Invalid option --ssl-pass-src: $0 was not encrypted with OpenSSL!" >&2
512
+	    exit 1
513
+	fi
514
+	decrypt_cmd="$decrypt_cmd -pass $2"
515
+    shift 2 || { MS_Help; exit 1; }
516
+	;;
517
+    --cleanup-args)
518
+    cleanupargs="$2"
519
+    shift 2 || { MS_Help; exit 1; }
520
+    ;;
521
+    --)
522
+	shift
523
+	break ;;
524
+    -*)
525
+	echo Unrecognized flag : "$1" >&2
526
+	MS_Help
527
+	exit 1
528
+	;;
529
+    *)
530
+	break ;;
531
+    esac
532
+done
533
+
534
+if test x"$quiet" = xy -a x"$verbose" = xy; then
535
+	echo Cannot be verbose and quiet at the same time. >&2
536
+	exit 1
537
+fi
538
+
539
+if test x"n" = xy -a `id -u` -ne 0; then
540
+	echo "Administrative privileges required for this archive (use su or sudo)" >&2
541
+	exit 1	
542
+fi
543
+
544
+if test x"$copy" \!= xphase2; then
545
+    MS_PrintLicense
546
+fi
547
+
548
+case "$copy" in
549
+copy)
550
+    tmpdir="$TMPROOT"/makeself.$RANDOM.`date +"%y%m%d%H%M%S"`.$$
551
+    mkdir "$tmpdir" || {
552
+	echo "Could not create temporary directory $tmpdir" >&2
553
+	exit 1
554
+    }
555
+    SCRIPT_COPY="$tmpdir/makeself"
556
+    echo "Copying to a temporary location..." >&2
557
+    cp "$0" "$SCRIPT_COPY"
558
+    chmod +x "$SCRIPT_COPY"
559
+    cd "$TMPROOT"
560
+    export USER_PWD="$tmpdir"
561
+    exec "$SCRIPT_COPY" --phase2 -- $initargs
562
+    ;;
563
+phase2)
564
+    finish="$finish ; rm -rf `dirname $0`"
565
+    ;;
566
+esac
567
+
568
+if test x"$nox11" = xn; then
569
+    if test -t 1; then  # Do we have a terminal on stdout?
570
+	:
571
+    else
572
+        if test x"$DISPLAY" != x -a x"$xterm_loop" = x; then  # No, but do we have X?
573
+            if xset q > /dev/null 2>&1; then # Check for valid DISPLAY variable
574
+                GUESS_XTERMS="xterm gnome-terminal rxvt dtterm eterm Eterm xfce4-terminal lxterminal kvt konsole aterm terminology"
575
+                for a in $GUESS_XTERMS; do
576
+                    if type $a >/dev/null 2>&1; then
577
+                        XTERM=$a
578
+                        break
579
+                    fi
580
+                done
581
+                chmod a+x $0 || echo Please add execution rights on $0 >&2
582
+                if test `echo "$0" | cut -c1` = "/"; then # Spawn a terminal!
583
+                    exec $XTERM -e "$0 --xwin $initargs"
584
+                else
585
+                    exec $XTERM -e "./$0 --xwin $initargs"
586
+                fi
587
+            fi
588
+        fi
589
+    fi
590
+fi
591
+
592
+if test x"$targetdir" = x.; then
593
+    tmpdir="."
594
+else
595
+    if test x"$keep" = xy; then
596
+	if test x"$nooverwrite" = xy && test -d "$targetdir"; then
597
+            echo "Target directory $targetdir already exists, aborting." >&2
598
+            exit 1
599
+	fi
600
+	if test x"$quiet" = xn; then
601
+	    echo "Creating directory $targetdir" >&2
602
+	fi
603
+	tmpdir="$targetdir"
604
+	dashp="-p"
605
+    else
606
+	tmpdir="$TMPROOT/selfgz$$$RANDOM"
607
+	dashp=""
608
+    fi
609
+    mkdir $dashp "$tmpdir" || {
610
+	echo 'Cannot create target directory' $tmpdir >&2
611
+	echo 'You should try option --target dir' >&2
612
+	eval $finish
613
+	exit 1
614
+    }
615
+fi
616
+
617
+location="`pwd`"
618
+if test x"$SETUP_NOCHECK" != x1; then
619
+    MS_Check "$0"
620
+fi
621
+offset=`head -n "$skip" "$0" | wc -c | sed "s/ //g"`
622
+
623
+if test x"$verbose" = xy; then
624
+	MS_Printf "About to extract 900 KB in $tmpdir ... Proceed ? [Y/n] "
625
+	read yn
626
+	if test x"$yn" = xn; then
627
+		eval $finish; exit 1
628
+	fi
629
+fi
630
+
631
+if test x"$quiet" = xn; then
632
+    # Decrypting with openssl will ask for password,
633
+    # the prompt needs to start on new line
634
+	if test x"n" = x"openssl"; then
635
+	    echo "Decrypting and uncompressing $label..."
636
+	else
637
+        MS_Printf "Uncompressing $label"
638
+	fi
639
+fi
640
+res=3
641
+if test x"$keep" = xn; then
642
+    trap MS_cleanup 1 2 3 15
643
+fi
644
+
645
+if test x"$nodiskspace" = xn; then
646
+    leftspace=`MS_diskspace "$tmpdir"`
647
+    if test -n "$leftspace"; then
648
+        if test "$leftspace" -lt 900; then
649
+            echo
650
+            echo "Not enough space left in "`dirname $tmpdir`" ($leftspace KB) to decompress $0 (900 KB)" >&2
651
+            echo "Use --nodiskspace option to skip this check and proceed anyway" >&2
652
+            if test x"$keep" = xn; then
653
+                echo "Consider setting TMPDIR to a directory with more free space."
654
+            fi
655
+            eval $finish; exit 1
656
+        fi
657
+    fi
658
+fi
659
+
660
+for s in $filesizes
661
+do
662
+    if MS_dd_Progress "$0" $offset $s | MS_Decompress | ( cd "$tmpdir"; umask $ORIG_UMASK ; UnTAR xp ) 1>/dev/null; then
663
+		if test x"$ownership" = xy; then
664
+			(cd "$tmpdir"; chown -R `id -u` .;  chgrp -R `id -g` .)
665
+		fi
666
+    else
667
+		echo >&2
668
+		echo "Unable to decompress $0" >&2
669
+		eval $finish; exit 1
670
+    fi
671
+    offset=`expr $offset + $s`
672
+done
673
+if test x"$quiet" = xn; then
674
+	echo
675
+fi
676
+
677
+cd "$tmpdir"
678
+res=0
679
+if test x"$script" != x; then
680
+    if test x"$export_conf" = x"y"; then
681
+        MS_BUNDLE="$0"
682
+        MS_LABEL="$label"
683
+        MS_SCRIPT="$script"
684
+        MS_SCRIPTARGS="$scriptargs"
685
+        MS_ARCHDIRNAME="$archdirname"
686
+        MS_KEEP="$KEEP"
687
+        MS_NOOVERWRITE="$NOOVERWRITE"
688
+        MS_COMPRESS="$COMPRESS"
689
+        MS_CLEANUP="$cleanup"
690
+        export MS_BUNDLE MS_LABEL MS_SCRIPT MS_SCRIPTARGS
691
+        export MS_ARCHDIRNAME MS_KEEP MS_NOOVERWRITE MS_COMPRESS
692
+    fi
693
+
694
+    if test x"$verbose" = x"y"; then
695
+		MS_Printf "OK to execute: $script $scriptargs $* ? [Y/n] "
696
+		read yn
697
+		if test x"$yn" = x -o x"$yn" = xy -o x"$yn" = xY; then
698
+			eval "\"$script\" $scriptargs \"\$@\""; res=$?;
699
+		fi
700
+    else
701
+		eval "\"$script\" $scriptargs \"\$@\""; res=$?
702
+    fi
703
+    if test "$res" -ne 0; then
704
+		test x"$verbose" = xy && echo "The program '$script' returned an error code ($res)" >&2
705
+    fi
706
+fi
707
+
708
+MS_exec_cleanup
709
+
710
+if test x"$keep" = xn; then
711
+    cd "$TMPROOT"
712
+    rm -rf "$tmpdir"
713
+fi
714
+eval $finish; exit $res
715
+�Kk�e�	xU�ǫ����,*�:@@��D�TX$Bd��I:$�mwna��}��gx�#8�Q?����:���D��nq�s���9u*9U��}o����{���{o�s��{�Ȓ�\���g�-q��u)���q�ɸO�l�{�u��1V��4&9y��G�V�Ic`S���V��=`���[�(q����_��?��=u���UG*��8������S���~�T7��x�q��i;lMɡ'�qp�q/���07�+���]��h:��Ű_���c�n�뼦wu��G8,��#7���L���{���v'��y?P1����/�_�^����Qƽ~���]�#�8���^�q��T{��3�s&��y�-��:)�8iZ��I����ߺ�?�9qs���?6��%���:�)�g�2����ms"�C?��Q��w�=--��¶�ڬ�J��Xk�	PW����U)����#�"�w�{Q�w�%N���NT����"-���%7
716
+�%qʺ�Ȋ��h��������H�����-C���eL�kX_e�G�F�xAIf=���A���S�Ljg\R��m2�)P���P2�L�s��܈��:��P���e!��PlO����Aq�q!�"(�P�B���R\r���
�6((ˡ���
717
+��~����|����:(�(��Yo�R��(�AٹlА���t���N�Du���s}��d֐�W��_�q��5���6]r.��:pۼ��Ș���%/ޘj���s�?fw�umusj����9����?t"0��e��j9;-�MۏWex#ʶu�H�|��U���\b�pсe�'�i�������r��u_��-Xzz�<������I	.��	%�Ϡ��H�]�ró=��v��Q1��}4����=P*�yo�Q��/����]�_:}<�����WW�A�K����^�^���G�Ձm�P�6�ߣ�x��E���M|{^�C>1n��+8:ys�'�<���?�"�џ���_���/iV�퇿Xt�S��_�!��^?���-K6���]|U��8=�{�ʴ1�p������i�Ȃ�EF|u��>��޺#��Y��8_�I?�Is���S߄��֛5�Pķ�c��[:��W��'���q�N��a�.�<�	�1���
718
+ßß��ϫ��8�=;b��!���#����\�f\���:L?���a����7o�|�#�&�_Ӡ\�?&n���%p���Ň�w�n,��f�μj����<'J���m��CE�9���c��G�=�?q?�[4�<��c�K��rܖF��.�s�|����#n/0W~���P�x����5]����r��1��qh�o�?��It��nC��Y��e�G1w3���(�^��x�!n�l����y�}�
�4��|dzf���
dzf�q\��kz*����6���	��e~_7n���ԟw��F~��s�~�Λ5}#���qo���m/Q��v��jZ>�d^�l�SӋ�uF�_��E�]�?ǧ����v�r<�ḽ��	'H��y?�]���~��|n��&n�d���r�����x6,4>��g�ȼ�w�y�/t�~�y�y���ma;ݜ�S�=�/��8Qӯq�s���5=��[_�ߣ�5����_z���z�yc�ѯiz?�r�<.�i~�V���u+�����|/ǹ�i�s��r�e1��lj���=��m����.ׯ�<��(�y�2����mx��	�Z��4_����ן���d�1��z��2�3����q��ü�	�W_���!\�?�~��|<�ϯ�������Q8ϻ�p�<��va������_}}6͗
�������
719
+׏3]w���q������<�k؞,��3���M���G�{�|}|'�ߩ��&�������$���?f;k�������L�/���9m�c��xլ2��l��������u�+��-�>���*ﱝY7���W��?�=��4^����u�8�}Y�\!C_�j�޵q�����i������}g/��q���A�׌y��g��|�����X��X�:S�ϋRc�ܯ��'��z���O�b����6���g�)���Y�|��QX�9<ٳ&����l�Y;�[^��VP촗�r(^�'�ԭ�=�6��g+u嗕8lN{�Ci�H�V^�qP��S�R{I�+O)u�B[��W��Z��x�]�̖]��<��!��W`PB��6�.�y���bg�V���-"�d�X���Ns7z�Lռ�'��=�R�r�	;��k��^\"L0��]�j��^���B��*s^�V+��� 
720
+C�'��vg^{����2��vj�T���^R�^�m\�)�m�{�xk7���e[!dX���m+��Qq{��>�w��g/_)$`a���{V�k5m��������|��Ӧ�~��z��M���+.�i�[�v�rmX]W>W�k��cӻ��qAX�h^@�����:�-q�V� �m�T�Y�S����^'�o��ym��(�����|d���ż`Б��(IA����Ή�P�KYa�8�Q��A3�i���w8���j;���P�\Β�R���Wdw:�R��=�o���Q��R�n��İ���<,ym�C,���U?�"_Ŗ�h��&|+�Y^�.��\
721
+� H##�	�7%z��n��T�sy8
722
+tf����Ji��Cm6y�o�c���,�Q�֖#ӳ֩X��$M�۩
'��n���(w/���驱�'q;3��I]�,3��agYII^�#o���c:�@�����8��r���<�����,�&Gi�O����F�U���f�̼a�mԈ�1���F$���b#����(�?�u��>,���F*�ڞ�6?�5��v3+�[�	�m:ȺGqq7��������f��W3�1q]W���G��F�ü��1�f��W�x=�gL�m�5&��L�}�&���&~�����	����y�Ŀg�h�M̛L��Q������ģ��s��wb���/a�h�	̇�x�V�:�2O3���UOa�e�����T�9&�ɼ��g1w��M�+L|�&��y���1�f�˘W�x�gL�.�5&�^���9M��Pm�i����X���V%��^}��9��w�{	����<Y�]���j �!���|��1�w��S\���$xo�#O�v��.�b<Z��ϖ������|��^\��<�;
723
+^$x��n�;	^.xg����#�(�W��Sd
724
+>T��se
725
+�E��d
726
+>C��]e
727
+�M��I��|��
�_-�w���S�&�ce�wo�q2�/��/��ޭ���{�D�{��������/x�����R�����|,�'�_��2��#�_�{e�^&�_��2����/�x������/x���W�|�����Wj_$�_��d�.�xB�	2��\��W��.������o�y2��'�_�2���QM|�����|����.M�2�O��/���}��e�~�����|���������m?�kV�~�Q��~�3�����E�Q׾�Q��EK�[�[�c���j�Ůjh�m�~�xS
728
+!�5�҅jI��_�B5�w��W�P5���U,TE��� � j�݅ܤ7��W�P�5��U(�Ezj|
729
+�����W����R�*J$��_!Bq���G��Bzj|�5^@=u�O�����PǓ��G��A����'�O�J�	�?龨/%�Iǣ�E��7�O:u�t����@}�O�kԗ���O����'}u?��1����B�H��ޏz�Oz7�+��/����'��@��vԃ�ҏ����'� ��?�M�����נJ��^�z�Oڃz8�Oz)�k�ҹ��%�I/D=��'=�H�4����?�P'���'�E���z4�Oz�1�?�+Q'�����K���G=��'��u�?�����͟��@����D��ר�'�I�F�B��>�z�O��T�W�i�?���һQ�@��~�d��N�S���QO%�I?�z�O�A��?�M�U��ԙ�?�U�����=�g������I���E=��'����?��"�S0"��:�P
���@4���o�%��9�tvji��O��x�ө~��
���պ�Rպ�H�rH=z��:��;���P�J[{\�+R���qʆ�Sצt>������
730
+]?q��
731
+�4�����Y�@[C��
732
+8�:vo/50۲+V�u�|��C��:KݗіFˑؽ7��;Vv�@��
733
+ڎq��{Ep$���͵x��}�V�OϞ7W���V�x��`JsK��,�Q�ȱ���3�_���5�:��W��Xu��X�k��"�K�S~k���O��@�Q��'wƿ	�#��_�+��l��:��=UsZ����|�X��h\�����T�8�T�Q��F�j�*�m��;D��ke�2��Y��(S��l�`dp�X���~`��9`?����F��ɇ�s��ad^���<�{w �9�/��-��C��G��y�7s}|��ρ��_��������`��??��{���)/v�OP-��$��lh�z�<Ia
734
+�B �c��`�`��p���D�����0�k6�W�g��گ� �CY]���B�?�Ϫ��4�?pտ?8
	v�m��j�|�#	?��a�j<(�d�ߘ	�6�A���`�/{�>x��v�_�h���q�t���tt(�-r���k~{+M쬇0����p�{�v��������W��p�[�B�ࢬoD�;��w �����c�W�����Z"�4��3�үh�N�.=v�tͲax�U�t�v�j<}%ZV?z.>�\"�p$�P�9��ОsB3���n6�E���&�������6������	��+���-� v�au�1_A�D�h��u�0��гʄ��c�ZU�^r$����Т&t�J��#t�[�jU��6	��y�u�N�z7k��h<�U�)�$x�6.�Հ���H���5�$7m�փ.�Z	�i��4[l��~�m
֜k��@�A`�'~�-$ן�U���M�p�	�p��ӭ���?���`C�q=��|+4;&����%�]l�-����Ykй�����d8&��xV�b<��67yɊ�q$��w_[�_E���a�Y��o�=���)���f�ES�i��.�Һ����f�"9�lk<{�T}Fߎ��Tf�Q�X-޶�]�|p�:�>�߲��ߜ�?�>o�� ��]�h���uScgBj��Od�UQ�RX*ա��c�O˃���dLS��v�z�XgL;|���g)�?+\��x�-8>��,�X���xSU�(~N������ UQ�-
735
+�*hE�6�'�B�������җmE�gB�』ut��(�8*""�ZPԂ�(������<s��{�$'Mљ߽���?Ѳ�^g?�^{���~��&������J+��JGD+��(J%�F�$�(�"JY��QUkV	U�i3!��,���p��@ف#���HE�M s��h�7%7��|o �
E��a�a�a���;��k�e��
736
+�kxd�/fi��;�V�?B[��d���Ii���o��~����� ��'|�a�f�so�4�x�����Y��9��5B�D=��޹���yva�����t��9�UX�ཱི��t�y�6�C��웳��7J'�
9���U^c~�h�%��]\\,6��F���G�>��T�g`�"��Ӟ���o˪���5BXrg��!�J��@q�֕J�wC��R��X���XzQ������*4ć8µx�X>�	�~M�T�N��H��Z����èO�]&��=�Z�X@ܓ��/'zbr�\�j�!y1�Up�š�1&a�@�����ay����_�����hA����J��	s�Mk���Gp�5��KA�L��� )g#��&�� �d^���c��Y	嘁��+Qp}��8Of��H1�%L�F�1�*@K���A��:�w"��_w��)�4��8�ȿo�����eF�8�#/C9%|��G<��O~��WwD�Q+�O����Ň��A>��y����X���L�|���Ta�hn���FP�Q?P;�j4���i�t2�~\�]?����+��ߠ�.�I��g�Jp}|	�q�R3�� ��J�Okd�+����l(����H���R�WMy3�X��[�띧�5����]��������1������r��)�݇�
��X4��?n���C�D��yg�]I��П�x�v�}��݌����gX��y��a���p��; �a�j�?���w@���V�AVO�םf���tƛO��Z,`p���N�D��)�8��{$y	K���xIХ��w8OC��`��]���ήai�\WhZ
�Iy���-7�b����ըhvw��t�i"Tj�)�y�XKf}c���@���r����m�o�\���o1g��?��ٞĥ����G����FGR�_,��X�
J�?�8tJ��ސ���٤O��@�z���S��z�i*gW���O��&#������!�-�����a8,�
���Sa�V�˟Ux�!�XQ�B�l����$z,z�{��~"87��*k�']�*�!�6����?m�?O$�3%*��.%E��C7Qyw�i�K�B��ǖQ�O�d�dw�M1�i������.�D+x�;��ӿ#Nj��;}N?��G
737
+מ$-<�ϝd���I�&Y���6���m!�}��P�z��B�����Cs���Ikh>)W�1���;C�8�O�
���N*�0�F�i��xt4=-,m�D���G�Ϙ��s��������\�I]�Q�b�oG��	����.%9O�GG��MPZz$�|�y~��?��
���; gc"Z���I������B��:�l���]�~k��	ء
b'�`R�����D=��w�o�g���6�/a�B�fp��N,�8:�"},.>�����M���S	��<�E�A��|�2��
�z�aއ9;qv��7����'~�1�]�ؗ1��MXH�E�	"��O�6�K_C�$������I�^[,��ĥ��Ga0�2�w�>�3����*Bw�E������3�@пa�V N��d��!���f���Wظ|�%�6[	)����%�)>!;q��$p,�%ZsKF�\/�I�֫�7�6�ٯ������M�ɩ��'�J��ZP�
738
+�-z-<�C�&�u��XP=�߀�u�\���\��9��ubI�P9P��楜�`�0�L���F�o2D(ϳ�L`ee0�o��8tKM�#�,�m�<��&m��Э�3��_gF�_7�p܊f�v���!�w��M��9p�4Y<��q�o�(TgUv�k����!��E�#�/pak��%�#x&G����h�R��h/����S.���?���H���U^��W�ɝ	�k��6�}�赃l>D��u���
�_��̄&(�4n�q��z#ᴖr������_O5K'q�ar��	rt�dy����(X��V�L2��;K�٠=�@�YBf�D2z1#�����0��fb-��*��^��-��E�.|�~���8��H%:��H%�п�5��G�a?�'����Ӷ�۠-�a2��}�2�͇���ߓ�Z�ؚ�����z����]�Q��<�7[+J*Qj�ۄ���͆���Z��d���<��g��-�4U��>d�oɸ���y6Fp�9eC`��y�Q��]�q"�ƅ���}4�:ț�!�df�D:�k8�5zH��c4ڤEP�(2_5Q�{r�ׅ�IDo��%W����\�)�����/�0X�Bk��4�D�`r bB,N|�b�ד�Ar�O�Ctv��/���9�����ߙXE�e�<����$P���[�h��0z�GNxK���_�A��6,���IN�/�ؒ���3���L�C�p��t�1��t�_�n��#��c0�%sbҿ�.z�b��1x�`���c�B[ԆBj�������ņGp��;��X�L���1d��Z�'��s����Ǡ��Z��uDH�aI�IˢXIA�z E���on�i��؟C�,?y�|�q��@���9Ɍ6�)���|>F��&"�(�D���&�B�E����,<��F�m�s�c�3{�*a��zd�0�}������~5��x=�}Tp}C�g!F�m�20k-nL��,X|F�M�g=�h��u�f�4�m�H*gƌ�^�P�(�6�|>Ͼ@ ,mfDځ�����H?��h��>��N�5ZRW�#�_��T�I�����A���{b�,fl��`��}���R�S�#��.�7h��9�~�$���
*��bC[2�1�`X|����i��'7��Qe��X��O��CK{iP�A�1I�aYQl�t����S� Ϙ6%�8a��@�}�R�7�
739
+�o"�so�@�	���T_��n�'!/����|@��r]�,W�|LiG�?��M!�
740
++��lq��9ږ4�1��|�o�^4��#1Ĩ����t=��ް���p�	���������v�'��C��g���!+���N�@��G�Xf��/��HD��a�o�{�?���"�o�C��h�#lP�`��w�酴�� ܾ'�_�8��">8�N��\(�
�����1|,�~�_b$kJG���K�N.JX�M�x��F�W=|7��k؇�Dw����d-�S�mǣ�`��8�?�f����	1��,� �%R��!v-��KF]�XO@C�1t�y��t�X�k��B���i�����<ɇA�į!T��gT�`����KEO^���
741
+z�|���ی������<�(�֧�|Mv�b.�n�C��o؂T�ϸG��u��q��w��E��7>�;��={���r�w���|*({�K�_��Y߰'�E.O�X@�;B���x+��ɽ#�Pa�I��gk��DXB�X�O-�x2X�b�V�
742
+�T�'�ij	T
��,�!tH%
߸�G��`O�By+���*�`<"���
n�ϵ�̩���^%♽C�f�
ØլF��	E���F���3�80U`�&|ܼ�lI��y�
��y�be��AXc�䓻��r�/�9���uX,�=�U�T��±��~f�"�7H�4����������s �铉F�;�d���oO�X��+ҊM?��@�`����F���9:$h��GΑ%��P?UR~
743
+���Ag�z3�H0���
�dGKIh��6����["���h��x�#Y$KӘ�WAӉ�a����yމ�i��;�<0��'�Ts��Ejoǡөz�p���.��r--0���ؗ�S2�t��+���c�>�����]�OFCۏ���ȹ�������.���l�?Z�Y+f�v��v<��?
����wA��#��K���C{>�ynw��ww�'��i$�=�;�]���#���6곅�l�>K����M�k����Z� �K�i@�엺-ޡ�O���s��L=%O�Uoc	}��y7:�2a�
744
+ ]�}�]H{#Y>�;�c B�����ţ����ڍ���s�#����r@8�S�o����U*Q�E)S�����k����5fk��t V�xDM�8��z�o���h�Xu`�ug+�#6�l{��n߉s��oPE��(W�&Z����$�K�IP��X��_ȌXl׿��
X���v���$�Q�'�F���;C�6O�W�����Z�i��ńki�`2��C�Nӵ
745
+�#�J_F��B}�1ߘ�I�qz�w�NV�8V���d{t/G�g��y�&F�ȫ����Ԫ	.������l{p|&d�{��ZE����xs1ʃ&@'@�C��4���K?�F�#{KvB���yI2������.�@��]��b[`[!���}b�w �R5{�4P���r܃oSp8c�RE�D�''Y]K�$I��W��2���k�C—��z�k�p�뿘�'��x<��N�i�ʹ�Ɍ�CZNp_Ex&&CDD�����d�8��Vp�A]<Y�9�D�#�k��<�o���'��]�=4@&�3A��F������/ZAQ9�D��	g9pn�,�u��T��j�H���p+�@ߝ;H�12j���#�
��Fv+�w��Q"���`�4Xh�Z��[�H�ş�s�6jB���m��{(U[� yeJ��(��B���d�|D�~�4iZ�f��Сr����HDn�<�q��_(>'L�6�g��
{�8��[��"�������OU�da
�9Tp}��I�F0�μQp���x�>�$08�@x�育c��[R�8��M,���(�}���c�L=��x�E��8`�Ք�����Z����;�U[�
��Ӂ���ǡR�Op��TaV�y���d�>�1�a�Ǧ�;���'�"_2�d(������R�{���1xM�΅�܍kо��;L�&~���w��(�4�2p<<���vu�����kq�7ƌ�i�����	�48�0ܽ�"��I�3��=���l���ySƯ�7
RZR�~Xs�g0���_I���Y�ax��lY�ǽ��W;��ūq'�V���֑�L_M��{+��cW˜�����p����K�L�l�l�DX�%����y�'�(�.�?�&�Ԇ�0
�2v��]��h
P>�[$!O�������٬1e�t�g�Գ5�Y�"�ek����A�n���0�BF��Ȟ1P��p�'����D����� ���,�D�=����!z��-*`\,��'���~�����sl>JX�����AZ�}"R��NZ��[����T��uz=�)�KcЩ��[�A��}�i�1h��)��N��8K���^M^UB����N���ֽ��G��.c�u�tt�qߟ?!�h��ae����t��.(�N�o'Y�����C�:�mk���v=o6@�8b�묌D��-_�4��o�'d+%��J&Y"�$�5��*���(�=�'wz����
D'���,���w�9}w�׫S��a���"�7L�
}��s|w1�Ͻ���T�$�����h�&jh��O*M��, � Gx���7��أ�(�
746
+��$.Q>��`��ɩ	���y�yZ�XB0��_qy�*�x��WQ����l[E�H�^��H�;������_��*q��a�J�|a�#�6=!���7�u��cq�
�:x��8��B�-2����+�
���폅�h,Gi�
x��'~��!̪���1h�LCO�;a������;V��	x���5��dΟ
��ek�kT�ܯ��U#eЖ�_a�ð`��=}��Fj~���~[��O8Yd���1x�D�> �^>��FL~
g�����d����f?��8�5�dE1��!]i�^�����=A�H�[J����?�l�!��vd-�l��%�M�����6�qO�&�M:i��a0��4�x���%m��)i�_�|=�6@��.���dbn������h�>2�j�ɓ~5z��4�)�
747
+��Q:�Η�&�b=>ޛy"�s[�tS�t�1〣���1c�c�qpZ4�i���
748
+Q���<m���>�ʓ������Y��(�<�Eo�?vFV
�0~n�As�Oa��)�'0&��F��<E�$�v�e�u#m�8�Fx%��?��G��/�&�b��u���/�C�rb^�B��O/)�|F��C\�FL6w��R�����s�{�(�p���Kd	K�#�ea�z2��tZ�xǵ�%�
�]�	.�Q�3��c5�Х$J��o�^8��G89f�6���ǴN��ɞ��7w�	�&��/����
��q��أP���g�
`���!�!\��b!eK�0�ba�Wso��C!ϭ��
I�+���6�w�qa�Wqy�qa����X���$����"P��|�x:�#�x+�^��L�p(�Ma���j����f�,ۥ
р�����c1>�V2%�C`6���t���6ic�GIi���R[Ӗ�imi;�Ik89\o&��^h�r��C��D��,M��������t���Mvv]j����9h �<,�&���;J���(}I�|_n�{�5l1��N�[Q��x��-R�ٛ�خ�_
�i;@�=����U	t�ҝ�Ð!Itou��-1�����&*�
749
+�:nn،��~*M�p�o4�����?�>&�/:+J'��ZB���I�͒/��g`����HlO���tq�_�1G�8N�O0�`�w�'G6�Lϯ��	�np*�A55&�>b0@7i,^}��3P��h��l�x��2M9H�O����-�tHJ6Kj��ep�ky����i|5�w�$�U�8?\~���}"�7{�ݝ�9��N�;�7�3�W�0D^�����Y��Vo$뷾W6�
��P��8B�h�nɃ��W�$x=�"� 2c�x�����R�����xh|���ob^���0��)g��7Cow�g"urpBk1RRU28tC�{OAޥ�h���6�]v��I�O���)?���֤<�����Y�҄��z}���ǩ
G����5�5������Q3����HMfo�-��s�Q����H�Q�-J蠼Y�\��H���C6�d�F�g�
750
+}s5�["�_�W� �g*�=^��!��	�46�YV
751
+[�F�"/6a�x�h}_5�S�Ii��c3-k�k%F�b���x�A��C'�xKk!��?G۾���c�N_��%}_`��� ��>�mHk5J]'ї5i�4&�ť�n�R׮}����f�ύi�D�~���<0ؚ<ɡ+�L�֛�j�����8	�aW���
VB{�ln�n���;�*a�Oi���BEY��~��}Qׯ�����˛�U���/,��kY��2�yV%�=t�S_@Wqn$�Mi�]pMkJ�<���c�Bkm��l"��4�E:�]��������e!��i��Lh����ct}��By%��H��d1�?=�/�;bT���M$J����o(��@���Ø|k|�C:3���h:�wⱕw�b�!�n�ŕMQj#oG3o�ߝ9�>��2S���]OνL��
�`�<��3���,���
752
+�+���ͭ���F3߾V>罆�i>��Yed�]��:7@�Q�r��1S���fE�Ď��i�
M�
�ܙdGY3�����r����N��(ӧ��6r�4����k�u
753
+x:b�	�5���m,ϼO_���Yd����`��:j�N���"l��"v���\����ʾϵUp?��&6��;��4����X{���i������ޥx�:5Y���8:�����If�=SpG�A?�(e>�N���0�ӥ���R[�|n)'M=j�xd�>�i�K?jo��1Aq��^sx��"�l��%B�W	�W)_ ��MȤ�RhxrN�_&��~z��u(�}��)��v�'���a���f��Gƺb��ͱ�}o�g�F89�mx���a��k�#�-��ڬe�{�j7�vsr�
754
+��=Z#Ɂ�u.�8�h���.�����L�)å�L��
�9�F�}e��d�]�{�%�!�#� �I��.@�%��/*��'����F2�z� �!^>�7"����+,��j{N�@�p|���,|���;�Z�P�_y�m=D)_F�@)��k��Kd#c�BShQA�C�7���=�����ꮒ���������-9���'�_G�}*����C�����l=;���w���o�{��O��o��n�C�F��v�O��n�FVv��=�av��c�l-�ɸ�.�i��O����	�sr/�}X���,�_��`?tF�N����/{/��`��4}�{�3ؘ�}��
��� ���SȀaJ�v2",��a	�s�'m�,}2Q��7d9du8���4+k����BV���~�z�4-Eq��1���i-f�X놵lh�]�>��FZ.m�߰�����:Ҝ��(�3����p&X�6��9��$�Xc
755
+q	x��t"n��v��t���A~�!�>Qr�&�%�.&�7u�����3z�%-
N�t���Ù���Є���J����통�$$����֬!�|[����֬T�q������ �쓻��dV�(7�Cr�8��H
756
+��WʟF�A�!�}
==�g�8����3�/�V:Jm2����1�"e�Y&Za
ژKH�ۿ�t�j��[Msă��~�n���Y���b���w0�����Lٮ�4���H��]���{���s���w��Oij���z�=ԝ�.q'o���'����#������a����e?����}���߅*�Ggp2z�ҙ��Q�F��TN�J����!�7�2:���祉CDk����R��5W�9�ٚ��Dy��K|�i��b�j��e>�2m��<fpn�$K1�K�։�xV�:�ײX�o�f
qu���+���6��+�y�o�M��7�z;;x|Gҍ�|��|���/�>!<=�W�{U��=��	�>}�9y�/?������q��L�tae�����{>��ԼY�޴���]��ߨn�h�����R�?�v�{��n�(޿�~�q?���9�_��:�CX�bc�6�Q}�|�&��O{���H�d�﮷p�+4���(�b&J�z����ὥ6*n_O��dpk/��Fp� Gx��E�ߟ��Չ��&a�p��sM߁�k��2,���KW�������x&�;M�`8|�?`��ZDyDž�Iz-n�NV�񘢕l���|(�0�1|���-q����B�ƍ��.<ҤF�:=�y&`S��]�ˈ��Ჵ���v�
757
+t���G�u.��ySh���$1�+�3z�e�2�i���q,֊D��\�~��鰚8��7�F�杗�f�����J%aI���D=M��,�?U�-P��y���M�Ԗ[��UM��K��l�-��v0x�}�b'�s �����:�[2f�i亇N����~���!�����WB,��A���n�
`���D=Hev� N�i�W���b,�E�YP����q�_�Hy�;V�#��_�i�?���^��z4mtt�|��av�W���۲*c�;9y��3g��R��n#.��1�M~�dgW��@���Q��S�O�E�F�U������Y��޾B��I�5yW��n�-��ٛ�g��}d��,��h�1�L��H���_�ǵM(c1G�ʘqLx�I��~�(<Ҧ
758
+ʗe������<��+Lb�so��͂����yj��^ �+*(�x5�����]{�ގ�J�R�ງl������GqD�pGV��ޜ��ո���z]�M\|��j�DxiM�U=B�5�a���B'#��#Xp�e:M�t����W�+����|��Q�2��Z)�Ąy$��o:�‹�F3B�k0��M���1�:�;�vߎgD��~:�f#��D���s���?�|PD��K���_��y���Q���/�
}5�x�"p&�Z��l�<�6J��A]���3��hO
759
+�}���acF�FXn�7o�Lև4�T�K���(�d��\�_�q�2�"���~4������Z�;. K��<1��i��z���!������׀��<z���&U!R�
760
+��<CۇX�t�,(�)
�t@�Q%ek��S��=R�٬YT*��1E�W�
�����`C6t쩠u]�m˺�g�F��o�lz�t=�I3/ى�ۉ37R��O�'�+,�l�}<5��5$&�����gq�G]���[$��;<�,���=�$�)@p?)��<Q^���L�/�a���a�C��F����o$�iO�|Y������ΰ?��� �R7�����,�u������T��%Nnۂ"�\�t����p��� ��8�oozM�߾�����iir�O�.�>P�P��T�"��WN�)Xh��GD�����@��l�
d�j���E�n^ק~���Ž�Qd&3*�8���~٠߿Y�5�6�h�xNVQK�Q�Alͦ��&�$���|�2}��{�V�=�����_��u>2=���I�b�2֛nO0��|�|�W}�Ej�r��������,5_�l;]�
˟�?:J�����B龘�=]/�_8,��P�w���\D��P�mQ��;7�ˌ�/�wO�}�MJ~}U�^��X�~�i�%���ɧ_Q���yf�"�ٕ�~�)�E�\O���x�����J�z��S��ݫ����!�ӆE�@�����Y�OD������C�5��a��q.<�_�΄N�Ue�����!�E���A��ݦ&ŨF
761
+����r����T�g*�Hg��)x��I���К!�l<h)g��MH�^8�1Q'oP�.�����\��{?�S��	%_Kh�̓!ϸ!�i"5cM�w)3<�,Z��K+��i[k<�#̘I��r���	���]��	N��L��4��dS�Q�'���邛\+��cm=�@�d�}Xc�u#���o9�g=�U?	�A�m���H�qfc�5|潂˨!�1��"y��a�>�/^���b����f�$���|����k�M�G�=��W[q�c-��J�rOk��u}<n�����xjt�/��f�@x��p�
762
+�t�Dž���
q��V�����:ǣ�}4N����j���vC}`��$�����y�g_�Ó���Nc-vM�xÛw<6N�+Aȧl
�I*U=��w�'7^���MLD�ַEW��d� ��B��ꐭ���"����	�3�t�N��b^$���<����8��Q�:"��ӗ�<� ����c1�m��_=�6�T� �����R�b�ȱԡX��bC��r��P�4V\(V�+.k*��'NJ�J��4�X�r,M(V��+K#���u�(��7�=���z�C���"5A#�b$<�@��;"S��c���>�����������r'����
�c��~/Gӯ�!��s4��S���Q�q0�0P�U��Z��iA=���@�"L��`N�a�;#��ư><�o�G�"��:�]�O��e,�
763
+%�C��J$�!�4��-g�s�?���q��u��\P�ʻ"޼(��d���A���LؽcxPTꌰfQX��8S;�����t�E�z��w����G��|bG�k��(.�'�Y	��)po�Z��3!>Z��a�\��U�E�E;���3���8R���[�H͟�6�Q�KI$���B��ؚE�Q]?�N�t��ra�F�W]�bh�?5Ğ^j��~��ni:�<�����̟��5�u��D�˸��l�E���<�eK�~�l��Z�X9
764
+�n5{��{m�6��CB�4��W�2�Y�m8i�_�&l�
765
+�)\*�H�PvE�2>"¯gI%T†��*����`-\#$B�7Q�S>E嵌Ek1%&���Ŋ�c�C�~:Obņb��X��X[h��P�X9V\(��h��P�89V|(V��	Ŋ�ciB���X�B�4r�^�X�4X�)	
,�}xI�^y�n����8_1gko�jwx-}��G1;�J_�O��Y���c�oi�)�A�Y���Y�m��_������K��~���~i3h��쥸�"	��ҞJbj��\bn3���mY����h��ǂ��ºs��Q�/[2^��
766
+r<�R�}H�&���̲U�-"L�U>�ϓ!X.�ax�
���@ΓR4�+�r��
767
+�n��A��=�3(��`֛��+�S�FzW�"���I�YU���C�oƓ���O��ܳ?��x+�i�;�3<n�h2K��z��xöY��$�����fn�g{�K ����z5x��㯢��64Y�||3/�.*k-RU2��/1J��zzcO����-�|�;��!�6ы7�Mg(g$�)��!��Mt�zN��S]|Ik[���G��<��q��O@��ۑ������)wo����x[���I���j����[O�F��7�
768
+^8�H>���ü=N|R�7Z<s��3�ڳdܩ{����>)�5��h7L�~O����,"�UЙ9���)
769
+Ǝ�F_�Sȸ�,�����U����m~����|�s��x�������#Ý�7���T�pc�{v�R9
770
+���ҥ(���]_?NzD��Ӷ�kZs�-%���Z�ׇq�'�26f+Q��jSO�M�m��a=έ��ܙ���w�M"%�����s1�\1g�aG��}���/�[{>����s��C��9Q��h��n�ʹ�s�n{�<��l��^�+S�g�8r��m�Q@�$K�?��Hq���3&ϼD|/�#����y8Ӹ�Lt{�F����=v����nt|D���1gl�_��j��,m"dz��s"o�aE�w�Wܐ{9,NV�,��,O��ɺ���j�Ǝ��ak�ڃ�[o?	.��<�ql\Aw���e���b��)����yrS�E�ݝ�3�. Z;�'pq,f^�	�2N�R�@~s�L��qa!^}b 7����[�&�%�x/A%��]x��9��ޏ���+�v�F��ϋ��-�T �u�f�k��j
m@�����(����	%�T���Mi;��0��~Dq^&�~�7G��0��߱�!a%��fr�>��[���d�ˆ�/�������(��zG���?�$�}�F�y���"�o���4<�C�`��+XDk3��C��J�c��h펢�K�g��ϲ
J-��i}>"�3����>��5*����J�Cp{�|ɊX��`�^��>�l��,��:���0���u����"ћ�U�3�pW!���D�F�와uނ/Zw�l��`�da*���o��u�6��(�����f�mJ'���{�dw�}8���<��']�-��V2~ʌi1���&�A�&��>��ȟ���)CHp�@�~�	CΟ�(ҵ_�w��e$�*�Y�u�p���N���v�~����|�]D����4~H	 Ќ��n�'��u�O�X�n3���&��e^�	�[��^B�/N碘 �P�y�~��ϳ�ؽ-�CF�ymK�wՉ��$�9c�}�}���7��ޏ΃��hr} o7BK��+�Ǡ ��
(��-NY2��3ƴ���|s�Yʸ�!�o|�ғ�E�/��`�C����_�^uo���d{�qP�6���k��O�ƚS�Y�Ӓ�}���%���η���3~��
771
+����������x�	�E'��ߌ����z.m�f�u�*�͂�2��c?�����6Rz!zorw9Ҍ�^����-ڂ�_<��4D��h�x5fi�|��'Ko��������k�����En��?*:�}`(_�^4\��g�zգ���eX9�q��<O&��|[O�ͅʱcd�P�?-��*z%ޗ�6 OxB���S^�Oj�� S���l��C��~��:��������EpMǕ‰x���V6Pp�=+W|m��ދ3�Oy�N�7�#�NEv7dF>�H�2�!���=4�w�l?<�~�g'=E
772
+V�$��:$l=��&�
773
+r�Im��ܬ	�=1�o���Iʓ~��y�]�;�c4�'�Wc���'�h��ݾxy�}?4��Fo
�g�47}��B~�8�{,^��\8
774
+czs����S�f�I��f�Gj���s��͞I�@l?4����PR�>9�(=f�E�ƶS��n�O�{�=W⢩�c��N7�MF3=x�9�wh���
C8����/k;�������"�:�
775
+��Ď�RK*�ŋ�9�dJ�c�f�O8��ei�SZ�Q*Q�=<0Tp������k�x�3��LtA���v�o�D��P��S*b����EӮ��h	Kk�9��5�Š�q�ğE��j@f-��.�.�J��š^�MjG�6�A���<�ad	��ƴ�	�6�Kf넙f��!fϢ�g^U�va��8<��Y�C[s��M�e��̞��0�PuQ���i@h31 z"��?������h��W�Ϡ�!O\�e�AA#_�0K��_�{�p�ٮ3���"�2�^���[�G��	�0�4�c�Y�V���1{z��o‹�bLP�4v�����_�]ۂ��x�XW�1l ���Ǡ/�58g��FB���2�-fOt����}f�fs�J�>�
776
+��ћŷČ4{2@WS�wk�>�	��G�5�u�Y�C��ܹQ%�ɭ>�I:��Z��	l#/J`kv�=���7[�oSEHfR�L�w9"Jߴ���zG�u�X��7����T��£����/x�Z��k�gd�
777
+�x�w���5��+�cY*ѓ`�b�z�g��یΏ'+[�Qz$�4�S�.�'&\��b���
�_�%�)�5�k��a箒�
��3t�8ޑ�wbY�s5l�gi?���װ�nWr�ݐy�a��$��+raXw��&�ԏz�E��$�gB-9*��N�s0�L/�J�!�SA��A�<�Xw�q50+��ۛF���@��tel\зU�5q��[~	�feI$�6�������03�D��a��ws&��߄�c9J��=�|ҏ%4e��9�I��T�gh9<���qp�6�	�6��S@a�yt#A>m��R��Z���	�� '9��n��^���Q=F�s1����"@W춂�@1��u`<e�~���f�'!Oږ��}�|�����٣�	Y8������F�Z-���s|
�7G��-��ѽu����ʽCjA�8L5h����z8���[�<��aNҰ"�τ�pd&n��
�a�[t�_d�Ex��$lU/&'�@Ƞ)>�-ج�)>�$ �0��H�г����/gq��Nh�.�m홊w�~�-�hY�V�L\H��g��@p@'�:�Rt�j�^��4����!���PC�3�Y���o��ur*�u3�rk�Y̍$jMq-c�5"M���٫�
U�SR�yL>�j���s&�WJy��
778
+{"7������G�p
�moOk�azӷ���cM�
779
+l�V���8�^��' ���᭓(�ʹ������$~�ﷻ95��PNq	 V"���g��v�����=Y���k�ٵ?49C��R�i������΀>�4I?��&�P���)ۯX
780
+�x���q��F�s�<K	~�9��RRs�C(�&�/���v�IG�)�L�9��O�RE�k��}��߁7ߴ~ò�x��л�)�	浳���x_�:z�����ڍ��3�qi#��7��C8�]~|?�з]�,vW=Ί�?U�`�����w���]�z��E�'�^<�>z�wډV��r<�$����iA:?�'��K�i�����Ð]�H?[���$�V_��tm�Cg��I�#�{&sO�#�π�?�~8�t���yf�j��2J�v���->�!��8x�'��U��g�����ѓ���z�D;�˝U�K�
ZQ:Ogж.F^�wx̞x���DK۹��C
781
+ҷ��#}�W���Ў��О��xjSܸ�����\LJ�S�Ť?����n;��MH�,��N��#�<1P�[��o\�>T���N@���oO���5+��,lc��8�����'_^��ྸr�=WY�E�T2�D'����CE�z}'�^f��H���O	�"D��-d�Cp��+HR�[)8��V}������h"kYm�|��Z2񕁧t�38�[p~C�&��c�$��)t� Jz[l(}-�*��X��4~���B擒ȼ�]U�����	>&	Ҳ\���@���5�B�ݹ����i���z6��̱�9d�h�&
��v����z*4�c�Z�'+��VM��
782
+/m�F[�O�~h��8oX65`��'�|��x<�vTĸ̢`�WWe�}_/�q�
783
+�I"�,�O�xWr�|���]!��\#{y���F4g|Y��Y%����ڃ�\���G1�^��utB��#��������	�T�G$�\����� 8ב������v薾!F�	��p��H�\��r{"�jƯ�	��E\���V�?�N��]x?.�_$x�Lq�Xx�)-@��8�f�X����`Lc��E{<�!���=ē���׸֟�߀��|CCy\�����7���!�$x�0i(<���d9i-�T��u�
784
+4����xȕ�;�d���xP��ft���9y�p#᫬?o�3Ek4��PSR�Yr��z(f��N�鑓����<�?�m\O�%3�(Ӈ���
}�
M�����Z^���l��p=�D��J��/³��z�y����[陔�����A�w���s���!w\��E�㵤%-����i�`k'���qp�[�u-�Uz�o@(^b(_��X��|"C� ��P0�����hV�� �{&�
VKJ���Yp/Ɠ
785
+�!��vN��Rp��t�y�?;K�F�2jk#�'��<�_<�/~�����5��yE�A'_�K�У^#����,>�����>[+䒐~�7/�kEz-v�m�ג�}~��~tO˼4��&_6��x��zX
���a�y57���w������w�uc��:d@�H>~���d]��u�&<:�nG��n��7�����顎����t�y�&]��^���)R��P�E���E<DސHU�H6Ib��@�_ ީ/�D�[��O�����A��A�y{n��t��6�*۸D梩�.��>""MD΋�4༇����7�z�����N���͞=
786
+�Ń_4� �^WZc���n�:{r�Ȍ�Ā�g7Zq��dFI�%�_�����Ƽ�_ݾ�b���,&��A
%l~_>W��g��x��B3�7�U�Gpّ���b��3S�����5xM�~Di�8�9�m|��tz�5�+�
787
+K�?�Gl�D�ah0΁�������f��	\3��0��1��^�4};��[�Z��%��$�5I�ؼ<�Ӄ��՟�m�/�5I��_�†��f�s4J獃�w�.,�7�d���ǭ�
8g�
788
+��Ck?�+
��e՟��8��K��	(7d�$���
789
+��7Z�T�g���F���9䐵�|����j�o&�x�q)�h͛���yG<;��4�K�Q��|0H���w�[���8�{L&����w�Ο���_`�h	S�	��jR3{Kae�R&��U͗z�D�x�}��K��?�y����`�~��OK����rhʩ��-x���'�3����1��Ly�,����s�vD����L}
790
+���^CH�|w>��'ѹ?US�e�\��-��X��8��E~�^�bs9�0�>FV�C��)6p7�r�_��O�	�og%�L"�q��>�������~�N��P%҂����}C6;&�$����9c�c?��!�d���q���G���z�t�q�����(��G��'zb��Ӌsɷ�<䎔�j�ao�eЀ�*�y�^������!�vW�q�/Џ�C%z�?7��/<�����h����\&��\�R֌�ō��Pm�(9�� j����'b_�R��\e0e?��p�h�1�c90#<��ٮ1���[��O�i�lR��L��~%�6p�k�h��?J�<V���p�M2~����	�Ec�.���U~h����=u�T������ܓ%��5�h�R'�}�Ԇ��А�<�Jz]c샡��F3�Dk�VI��T�4�Z�8p�X�˔qNxwo�+���M�XϘ�#��{|�^g̀A^�
���'��� �q?��}���8�Vۇ;�]��Ưx��)9Jh��J��
\���(v�@���F�G
791
+Y�,��/a7d�X��0H�L�Y����E�Q��9�b�e�[�Y��q�?�;Y���jNgv���'��ݥ�{�(�˳���|���$��9����=�=���|:<�h��Lh��T�߬[�7t�&ٿ��3 �dp_9��(A�p
792
+h[p�춅|NW�&���K��������������������ߠ�a\a��ky�0+��VW��?�b	"��^U]i
�S����̊�r��ܠ��A5���!�\S8�6�7���[��0����pV�MWYe/������|KMX|����W��*R0��L��܂�<c�xC���b/�/��X�KIf�ь��9w��'�'�'�9.��VXc���W�t��%����u�J�l�]W^Ym�a���1�a�e^��Tڭ%����W�f���m�ܠZΐ���n�4nP�M��n4�$�H3�;r�Dݠ*��Vk���0>�Act$"D��222���<�4�ͷ���s���j�ծ�$�Jkt����77���c���Vs��j�󹱎
793
+�+����D[7�j��W��6+�wV��4��B� ii&�a���Qc��v[�,��Q��Ȍ>L���*+�I7�V�M*qpc�K���v|W�k�!Ī�O��<@��Q�wFR-���w+'�1���Ð���л5�|��/���:������x����� ���?�����,�w:�'�:�YUA�73�bP��߷���gՐ�"WZVf�]X�����j��U�HQy�,�t�~�ΕV�-,+-ҁ�;�m�=�,���J]ya�|������_���A�V�8��K������5�Ѫ�	�Ed,��7t���wa�tն�ն]aE0S��Q} Pu��ކ�L�sT̩��WA)օ�\\�5:�:U��O�h�f�� g�]w�r&�����]Q��-H��A5�j�WЅ�a7�\�+���T\o���U΋$0J|����Y�����h�YQd�5�"X8t�n�U��AO�{(?Z���gl������o~��g�y��c8.>��/©�w&��6r\�z���b�K�8���9�K�R�>�Lxn�.��X���qqs\"<'��q��8^�m���P�qG���V�m�m�:�s�Ť��A�O�~�%�RW��
�͍����l.�NL{yiMMi��i���^]Xa��
�ُga�a-)�.�b�B���{Gvr[B�;l:��%�_�w��/�����o�H[��#�U,�&��~#�������F�\Ġ�*�;_�|WC�A�F~����W����7��lv�Nf2�y3ز��(�����oR�
794
+��l���j[g+����Y�
795
+kj���K+JkJ�%4�l[P�h�㬅�v�|�`�Ҵ�L�4^
W�N5DfP!
796
+��U�ZuVp�셠�Ct`��"��=�y��{D�)e���"T��#�9v��F�Lw�5�.�P�,m�8@
�x05(��)A��:��w8����مa����$�3N�;d/�1���N�'D��ᘈ������#��F�5��auD8!"�	.(���h�^nW�M��>�%�L��6lu�S��<DG�#hP~�����l���d�Iy�iğ'��^@������4��89/:C7����u�WC�njjPs��82t��L�_�q��=��Y�>��ށ.8���4��V�Ѕ��7h�+��8��6���?�0��x��Y���;p �Z�C.�	�9����Θ	�T<��8
�6�e.��^�m�<pH9�����Z���C�v!`"c��U�|�*�\����C�?�#�l&�L�v�u�8|�C�~��y�/���@�`�U�6"���� �=�:��n��^��<�m�?$����p�B(�z�]�LL�xx�����L��x��j�{�p9�"��
��j����D-�@`��_�
 .Y��
��.�S ���+��}���^�O��
797
+��"���@��P�{��N������|�^�o<p:	�@~�-���g�N��>
p������A��}]�P�z�O?�p�� >@�@�%�^���j�4�9�W�>��r�@`�!�A����	������
798
+pƇ�n�������Lx`&��&h���{���6B:�7C|p�����$�۶������7�`	½�~6o �q?��_Xw�p��W߾��<r��&���x���6�w��{��r��hW�x�j�C~y�	��~�_��]_��/O��4�mś�q+G�j��$혤�B�<M=w�e�n�EO�x~È��I�@���ϖ%N.!�����4��%�>�,�&i��I�KbI:�!j6D%q�I:�śG#��$�I���ϳ�m�ʳiÅt#�2���/���&�|�*SR��c�n�ژ��5&����NJ�M�A�٤S�/�05�_�\Ui��2�U�iDڍH{ao���L���>W��I�����]�.6��"p�ن�"p>�=��s2O�э�Uq�
799
+���l�H�:U���I�<Ŝ
800
+��g��^�������τ�oOc���p<�o�'���������
801
+�0�5&�t�
qfBMX]�n��ԏ�L��4�de?��3)��S�Ϋ6%�,�5$�.�3&�;�s��T�'�����˖�&��@�×R���$�e�e�;5�z7��i����	r��X~6��,�@˟���ӍCB
�Q����P�΢@`
802
+/�!*���ؤ*�
2�-3s�jQ�h��M`�>�6���’��Z�;I���g!���$���X�>%��+��p���l���\�}��>��H7F���}��(	�[�ʦt�	э���ف�� =&����+K�|�bI�!�F�G^��wq������c����A����$8��)����EU��f�r�}j��� ����:u�)��1�o,�`*�o&ڍvY�}E��$߃���>�^mT�QVޒ@�ƒ�����
803
+>f+���A��Go�LH���q�z,�G�./�m�����M���[�����,�l��{�1/�ȡC�Q_��W��"�X6�r �[[�cb��v�{6>d�&�=G�#��L���a����r^������q�9E�jw��R6;���t�_��z��ʓR�aɨ��t�J=�"-J=�[�R�����1Q�tB���TQ��@�Xe��2n�v���1Q��x%���M�M�4�l����Ĥ,g����^�#1����<e��x�
����c4|T�hHP�F}aJ���W�"��2U!�Gz��p�Կ�h�c6G'HL�)��#'����C9�0.��7�1&��1>UO=��p_�.��D�-���}���0q)��k:����AO��lTj���5B^�E!{������m��Ϊ��z>�KĻ��R�r:9+��@�r�Ս�Uym��B�`^�m�!d�w�e%�"^�<dq �wA�xoo�����/C��� ��]T�-۽~�tjV��)�K|Xi+2�y��%ɸ|���X��]��=r��lBo���0�?�=i���m)*�e��C[���	~=d���l�17�Dz�61c��D�����G3��3�+�(�xpc��eO�jO�%<@�`Q��c���΃ljg;�l�+8��Ɏ�gqs�X:b�<u�IPww ���63E�kU��Q�F6�U
804
+3N���!��e�2qA?�����O����Z��Bvqz��$e��n ��p��H���1�L����d���0
0��0��Rƅԫ���2�{ePvsQv�6 ��n�Rt)�]������N�>�]f�q@���2[��Չ6��80�}-�K�C �</����4�O��2����������P~V�9�}�?أ�;�p8?�],�d����llpLJ|H�W}_hG��W�p���@|�;{c$�wB���U
a~+�]��HOK��7�<e�{$����f�
8�N�f�fL����Μ|{�J��Q�clA^��7����>�����ࣖ>.��:��ɿ��=�v`�=�ժ�Q�ӶA~�^`�Pė��,��>x�
805
+��{|��1���=&�|8�����Y�d���Lb�T��������	��E�ƹW���~��Y�*��1	y�>ѫ#��������>��b��h��!8����@`t�qH.kOsRʝ���kx9�Ñ�/�Cܵ��_�{�e�������\�+�1�p��{�>��ڷb[Y��P��B�Rp������?�U��P߄�y��~G�ӛ_�v�8���6�֘�0/�%`�^v�)ҶT��T�P	<�4�Z�6�gP�'�|lR�rI����o�9�������!H~M4%%c�ݐ����F�����=6�Q�}�1�؄��1=�P�@�Qq�"�)�V��f�Ϭ��MzN�� YTS�N� m{��'7�{���~`LWC:]p��[�q���ܤz�jOoR�A!GS���F�[��у��������Mx�)�j\�s��@~U-�@f�9���uOw)�'�{K�?4p����*�Cط΀x[ ���*˙#���.�����i�<��,o$������� �U=�y'��n	�Y��D���=�7	�N}�s����t2ߎ�t���R���%���M�'���n�L��5אU��%�<ٓ����X��3q��~�n��}?d���V?f�3?g�K�0�������cv1x>"�
806
+{1��`�b�zS�`p4�M��c���Of�Z�à����w���>�3zY�U��۸T
807
+db�f
808
+/e�|�>����k�i�����T���u'�-�Ʊpc\h�i'F_B�N�e�Z���K�C~��&��Ot�_r���.��(�|�ҟ��XX�k�Y�O�����>��V&c��`1�s\������[���v2��/a�:oep�S,fp.�K|���\�`�����N�nf�3x��28��)38��%>��K�a���]~�`'�q�㽄�����1Na����.a�q_bp
�-�b�{;���g�:oep�S,fp.�K|���\�`�����N�XpɈ��)~w��ş�]���DanN�H]J�Ƀui��yX���ԛoI�9u�.�.[�N,��Co��_�:נ�o)L���e-�l//I�9�lC7�'���@Y���l��ői��4˴n�|a;��Ws?"���l�F.ԯ ^7B�$��p�]�+챎ůb��M����C��,��O.l_�gF�2�s�rBO2�
809
+�G����`?'��c���g��7�oʿ�{���O�G�[�O�׭L����l���I�������_�?�o��?��#�#~uD>w0���8�O�R��$�K*dxm~�?�ϙ�~�Oߑ��_^`�Ʊ��d��~���1�<�������f����>���g�e�ܾ�����M���3���C}O��ύS�7FE��)�{1�72�~���៳0���oVE/wt�\9�IJz���0��pv�T��D��q2�v��^+^��3��r>�h�&֎��Pn���t>��k�?ur�=�?!�GTTn���a�r�^��`��^��K���,����/�a�b�6�9���Pzj#����;����ru�X�r;2|��?��b��|yLt>/`��w)���C�GX}P�ó��R^g�?����Oe��N��.����l��z���Jz:^7_9>0|�|%��������J��=�oa���I`y.8��<N÷1>�ex�H�])��u�z���NI����?cx�\��4|#�g��X�'�@�E����f���\��l��~�2=�ῲr?�?_���g�����>:?&���Q��O�e��e�$6z�z_�
�����W9���!���_�՝��cE�?���'�[ʿ�bi�9�2��u�ى&p�*�YK��ȿ?�%�qw��x��w����ť6��=�b����o{�C,n4
d��z�`�W�����>q�c$s�{xI���.c�2|�+��b��2=g��_���3<�"�;LΫ����=/��Ԇ�}�t����>t�o�C7s���^���f�~���,~�mJ�-)��W%��j$����ܛl���
ï.�Ǥ�b���B{��\,ç>D�ϳv\�+:���Z֎+��xʟ��x���\�5r����p�����Y�~���)���J���̇�J��.����аvyZ�o\��
4<]����Z�Nb��3z������{W3�����!B�fj���z2�{�H��	>sg9��T��V���+=���a�-녜?㧼��{��C�1���鼝S�{� o��br>R9���yJ;�&��� �u߰��g�,�gMavG֋�Y����Y&��O�����N6����z�}�A�g����!�7�g�R/��?����S5�����!~9��
�'�/���G��������=�A���r�Q�կ�r˕v�'9�(%>.�շ��5������d�:�;��L��	TߗG�{��Q���l�_}�ҮNI�^�R�\�F�B��E��cr�U���瘾���/1��E�O?�n~���.�g�*�%�~&���&���)a��29��Or��+�I'��
810
+f����A�52���q����Q�Q��ON�]�|"�1�2�LF�����C>������?�|>`����#����������#�} O�GGz�����۬X&�1|���:9�/g��̞<��E·�{��O�R�x�N��9RY�"����dxmD��0�gE���>��b���C�ρ������g�!W^��韠����sP�u�����_�2��)J�����b�2>ߜD���6,����V�.%E��L?�J���!��B>p�������d�P��R��)�W19��a��{iY�0+WUXQjf�,+�j
811
+H��.�]SYmVVi-,+,+-���Y�٥�UrE6�.�{y�����V�U�.��UXVPd���)(t�r���2��V4,5z��͢����p~���^=�+�.,�9���C��PĴ+���+)�))�c���p@��T*�,r��
812
+�j/*�4��_Y��[Z�xK��
813
+��	�"�y�w�&M��`���9�
814
+��aiQ���֢B�m�5�XPm��ً+Bk��:'Qc-���1����+��e���
815
+/Z
816
+o2�hV�\�2eyV�`�,^:��r�U��yb8<��E�GE\�'� "S��0�f������&�[]c#�v�W�BPUm+.����j��EGxk
D��\p�6+d���̱��B���2������l~�
817
+
���c@���{a��e�׬�B���
818
+���t����۰�c���0�Y��p�`Xfn�,K�|Ơ�R9GxR�aeDE�|���eTm��';��
819
+ۼ��"
����'�N��(��cC�$-Gղ�kmB�P!�P�Vf#�O�Y��'$���ʈ
820
+�0V���%İڙd�F.©���YKr�v��`�]xK�i����#��\M%4yE����
y��掟\`Y�x�&���Is-�
��	c�L4M*�dȶ�
821
+�:�Ŋ�	�+UU`�@ɳr-�윂��݂�k��D�<lD�^T�5�ٺ�"|f�e[�]�6�l2���=;�3(�z8��^Hگ/4,(��-�Nj�B���]RHnyA#]I7�
04WY�SQ�+��U���Iy�.���$b�ˁ���¢��B���!mÂZ�8�g��߭pJ+v'���j
822
+�TV1�T��F��@$��E��b�}4�̦
823
+��4Y��b����s����5���nd��Ese��ȴ`3�����D7�+�2����8f�j��ijV�@|��=RӐ �Y�`��t#mgH�h�$�`C�T+�寍�Fn]+�v���Es+��06��QSSX=_��EحD���J�3�	R�"���eL�C��O���u[�v���2E�U{M�RQ�r[94]�w!����HaO%�6$�a-�\����6J��������эI�#�DrKn������m6�5�o�H�:E~��p�N���5a�̀Ɋ�\c#�����bYo�ȍ�Lz�괈�TZʣ3'��(�f	�U(5�+��8S�e���Upa�O�N�r�QSB���e����~�lX��e�ek�� ����Ȓ����_I%�,2R� E1��PTfe�+�ڜbH�3�M��G7��ad���C�E�$�1N��0A�c(����(r�"g�-�w��vyJ�2U �aD�?�5��WÁ��$���n��_�;���&3�V��#e��#݅�$'�����{wKL�V�+s��C|����xu7�f~9D������_�l�ЏU����(-+ZZđ��
+�_�Q�$od�(<P�me��=U�ٹa����qÈk8�����f+a�ڒ��P����[�B~�T�1d@�),��}��J;���Fs��48���Q�lX��;�v[�|_��lﳼ_��F,��M�߰��UJ��v���Eg P)�n�fp}�2]d����*b��K������>���(U�s���7������rzy�����"`	�K,�
824
+%���/�汼U��e(�_��\���]v�~x���l�adz�+.⼀/���_�^�����IN9/+�?F���+���OD���OȰ�o�K��6%�%Q?r�ň���P_���"�o9��k/����TR���R��F����[���^�;�w����/�����d����A�v1�֞c�+�H!��/c�X���=���^��c�TN*"����V�.�`89��?��^���j��Y��~���n";n����=ɯBw�~]1����ˣ؟^au��_N��M�����C�7И��N���߰��Jg��]TX6���L��m��i��H
��4��[oN�҆��5-���7��.u�m�.��ρ�[ ��f�۲����G�L�1*>�1��
825
+����
�t�ٲ�7����Wr�ʆ��m�.�c`��aJ�Nn�#�6A	��a?��^���\	_a�X�V�S�t[X�-�Jx�WBM��TG��#��T.z�H?<��G�㉇�E�Iy�,��m���x%�˻��r&��w��zj�|��a��1��?�<n)���X8<~?�7`�y#�LX��W>\�w���/���^!��X�ay���Cnꋳ��tרkKx�F�8��fsZm/�n�6]w5�_PkuP�k�J�t*��\�g>]�I��M��il�����'�-�����
826
+�3��?3�r6.����8dO
��p����~G��!�ϰ���a�����n{��kΞ^�^�u;������E�O|�dg�M�-�^����w�|w���yiG�*^?��5^������_6x��W��TÍ�>>�P��W����>5�4�~k����4h��/��=:�*��D�A��  B�ǂ����L6��	��D'A��峉�a�]|��q�{<��8���j�D���"�/�=�&j�q��Vխ�}�u�?�g�X��t����Vխ[���_5���OuGߏ]�l�yW<���s�����_���+|�Ț�e�YyO:8�;�l��{1�%��?���ʄ�ⴜ���^ӱ���g�0��C�>V����8��B�
YY�o�3L�������<���G�q��@����aC��Mq���MiC��{�M(��C��H���픡�)�}���5��{)�=3E����)�z,E�KR�s{
827
+�W���Ia�))�6�}�������p
828
+�ܐB�GS�5:�^sS����ݟRԿ>�^��kM�v�IQv��g����R�p
829
+9�����ܟߑ��I���B����cW0n񅯫x�9z����{��y���/�+Z��T�?��\�J�~�|õ���v����硪�)��7���xs���]��1�c�M����-�+�k���a�^en�;]��5�/��0^�xӍ���ƿ���|�y�b~��џ��c;�9�}߯����=�z�8��
��Qx�dg��{���/��Ώ��?v���^�W2�':>�����ΛXߞY�~��~�����d9�k/w��V��U�@��[#�z��Ld1�a;\�_X�;�o�����s������
830
+���+�qB�<�;�|m����=o\��s��ξ-��_S�9����g�4���#��Nj�>����J�=��s@<�=ξ�X��:�b;'�w1��gE-/O���Lr��HnwI���g�3&��?���q�Ō-�/F�;��`{&؞�	�	�s����@��mg71��d~��m��x=�u��w�v~*��ٯV�_]��^�p�|����_���c�O��w�$������P�|���k���*��SRQYc?�YS������N�]+�+����P��*P��\\�w�����(S��c���Nj̟���ZUYWTy�1�`�¹��sK+o�.^_�?�$�@ĵ�%t���lpIi�Q�t���
K��kˋ+��6��j����+P�Ń��!<�*�#B�I���{K�I�
w����~Tw�������Z#%����S�߫�c�p���ҙ:�$egU��|�o� \���XR�Og�_=Y�]b|�`xqe�`��#G�!]��
��7�.�*����~���:��SYQY�\7	\R�Glii-~�kˈ�S�֖D�f9�Brs���/,�1�?	Nj�Ut�\C�p �/�O�V��U��ӓ�68}�*������]����BY�F���o�5:���E�Beeܪ�n^�~����bY��ݯ�s��e�J���e]��#�/X+T[�$[
831
+L���%5�(.�+�r;�	���������K]0�ý��L�3��[��������$PG�nMCx���t}U�n��}�nێ!xuP�F�Ǯ���ҡ��zuِj�!�eK�݈�nK�bQ1cN`�"W���"���5E5b�HbT;�d;�bū��T�y��H�����`�8����]ٝ�<�(_ŧS/��|{��:7��EhwC�K��9~Ո�U�q�z\����F��`��Ɩ�����6ܽ��U��<+	0M�5��<�?�ڹ)�$�_�O�_eܗ�3	��g�L�Tޓ�� py~�$����'k��r�K��<&�o��������9���yG���f��g��l��s�<���|�_#��W&|����o0>W��.ϐ��ir�G�#�9.�ôN����&�˻[.�x��r���|���W��P����T���>PT�ˤ�
832
+\~�u�����
833
+|��[�˳�����w�H��<[����@���o��/�1�.���
834
+\~UZ���H��e�.��>M����I��y�~����H���?���.��7	�"��w�\�]�)���>Q����|���O��/p�ݧ��"�_������}�=����0#鿇8in�֦
���}��W�	�����;��ۿ�ŝ��S#�F�Bu�e$�D��4N���~�P�����E�Ӆ�W��v�G���&�w�-�D�#�SX��,T�Jf$D߇4NY	��H�T��'z-�8E%r�^UȷL�D߆4NI	����K�Ʃ%����$�����(ҟ諑>��'z:�g��DOF:��'�B�G��D�E�lҟ�3�>��'z�٤?�iH�!��>�豤?�=H�K����H��,�ۦ�L�?\̷5��"�C�C�M�sI��"}�O��/$��~	�H��C�bҟ觑O��8�H�w =��'�a��H�Dz�O�}HO&���F�ҟ�HO!��^��?ѷ!=��'z	��H�~���I�g#}�O��HO'������?ѓ����'�B��$����U�?�g"�7�?�#��A����Lҟ裐������l��n`0�Qosf_�h���~�@�7��`^�?���D=�I��V���
fs�0ӳ�|��,���+�h/��8�1�l��.B���uk1�0�/jGBՋ��/3�Y�A����g%�u�Ol��A(�)״�f�7G.���VK�U��}f��Ϩ=�^ۄ��3�6��xMVc�:�`{��ݨ=#��a�eD���7���몝�ʼ߾�㝼��Ǜ��,xI���f
��xoo��N�Z��H�sa��]�[�O���=���(�_@*�$~�F�@�[�}$���}�C���UZ��n˝	r�f�n3�&-O&��1��p�X��}���ֻ��)�(�V�7��5w��Yt���<m`c�d����Sp�������}���V+�m����(w�a���Y��U�f��5����AP���z�����К(ޛϥ��T��(�Nh�����GOr���{�+���n<��g��f��i��{��Q;s�>8W��W� �}��w[�;�mc(�j�����.�	7쳵�P��ʲ����v�.�����xO���lu��.��ڑ�����a8t��&��x��P�Ĕ���^�i`�p9\p@E�1||1ԋ�S�#I�}�m8�j'N�h��!hD��?h�h��D{��?�
��8�8<9<4����;<i��r��Y��&%C����\��9��0��g;Oj�H:'0ñ	6�o4�pe���L��ԣ����U�Q���S�����Ԑ�K�c)I�F-��^���y�v�t�<�P���e�wc^�G�;��������ѤzEu���4o���]��3��v~�|"
&����l�ELh�7��pb-����}��4�;�&�%<��q?�{���]`�`5z�Ŷ��D4�s`<����>��8:ⷳ?D�X�*���i$^gbj�k���i�q������`;��_ue��%"�]]t��n�S���vuP�\֫��fgIx�
g���vS�3@!�H$�G|Y�ۇ!G�a�UsV ������i��7C�O�G��AS�e����̓S^�9m��19y���W�p��6j_V]w�r�nN-zTh/i3�6�+
�:��jE����@.��~b�Lf=rb�lf�81k.�~yBVCeB]<_<'�W줸�j�������
835
+>n��Xd�	�GB]8mϳ({��GM�����A�s0��<�x���S3����1��|OyY��޷���k�~�s��H�p�9i�pQ?
836
+H	b�k�~�����*�����~3��Wp~��sň/�'�srǜn�E=�
�����&/�V�Y�Z����?Y`-��C-��Na�2+�Ci��x��Ge;��J
837
+J�ʻ	l�ܣ͠�5����؁k��Z��R�g]��?e3�ڱ�fF�Q��pC�'t:���I�x��t��~D	�HE�;�@�z��Ȥw��Ȋ40#�&��pf �e�4�IǗ��bx_&�m�c"�_|�V�zG���*�+���^����(��pR�}�J�~+�n�7jǨ��Ipr݋ŏ�Ύ�������9&sL�3/�����t���m�r��:����
���J�̙���A�>r�3X+�(��)���o�Z�`�	Ƶ!��:DUe�*L�+R���	\k���k=�n��g��`��zg�!g��M�#s��A�.@�[��SR���7�ڍs�q�n\��q�vu?Orڅ�L�g"���hw�r��.����r�KX��Z!J����#�� L�KD_��%�vt_���	�m��rK�\bK�8[�o��D�3i�!�;Wk�2�V����Z(k�S�w>'ƾ�2�T�}gП�ky�,�՚\�e���Z;�U�w��;��A�n��>؍�;e��\�<��t.*Լ�em�&r?��s�=��ʎ�>�>���|"�R䵒�I����d �n��*�yof:��{�Eg�؟���Y�`�cZGm��թ"d���e)��L;�\�d�v�4Fl#��p�Gq���
�I����>23M��ټ��y�Lh�y[�y����2��c�y��Q�>� �
838
+sI4F[7��dk���F��&��^��h@+E&ܾRA@$��
839
+̈�w;�?n�/�<R��T�i��L�֘ECjy5�-���Lтu�&T�@Jn�ب�
840
+��Z4�c��NI#C��ֆ:���2�ɓ��� �p�B|5�5����@^�w��I�y�����A�W5,��#��̒7��� �z�J�̱{�,�5��`��B�a�u]�w��c�x�+��V��q�����fde�Բ�����4��l��y�8�px6ٹP?6#�e�5�ˬy��+ޔ��%�l3O[��I�n�t�"%���M��z=V'�֕�#�!P�~�0J�����X��sp<-o���+Aow	��\��x�u��-�Ss� eԫ-��v�M0������C�vŇ�_g�:�h������h��16ӿ�ދ=��%�(��2_�V'�h�ӎv����NJ1�C/��m�`T�m-><��D` �5P�6+0�P��,�B X�y$6� YP��]�H$�.ɶ}
�F�~U4L��˶�~H�9^v�4P�J1�G�\)�q79��?��������n+S;�m0����s�=M�
841
+�+9��a����?��zW�"gqꉪU�)
842
+<*�ʰfg��Hk�8ޮі�+��I�d(�j��<��O%m�ā��A㵯�{@)ˡ���f���Ƴ��)K�A��������I%8r�v���Z���}����e�ʗ9i��`�vv���W��%�[b
�rl��h�hw����PT��F*je@�5 ���	}�-�3~}$y+(����{�1��~{�s�m��?�WV�1�ZEiz�Ⲗ�0[� Y+f[+��:����w��;���(�w�D���5��(�ѫ+�EG����Z�w)u�;���͟Zh��ru(�����w��zg%y\.��'�8�yX����	Ѵ�������/���6.���Ĭb��Ϊ�jh!ƝjZ��SJK��)C�w[�/���Λ�f5"�9[�j�[��e}��>O(�#=��~�ގag�m���N����߮Ӕ��&�ï����OO����ir\��o�ϫ?�"g��0����N ��j"�� I�g?�(ݟ4u��9�Ȅ|C��[e9�;t�e�F��e���P���
�jס�4��S���T�C�je�6�+���
,�w#)�8q��;��Q��B{z���fc��L����S�ƕg/�j����m��ؚ��}�n;A���.��M���p���w4��1&���_m��*�?ӡ�qL=��H}^i� ���*��φ5-�yA�=�!t{�~e�V�A�߫��6
843
+��v�ޡvPa�&��\�����>�o��5>�*�Wݪ~V��C2!@����@�$!
	�B���Q$!���`b�!���(u~D]t��"�abP�AEč�38YW�=�>����2�}��}�s�޺Uu.���Q�2��H�Œ\
�����b���B�G��-G%}��O��,ZF�@���\�Sl�{b��jN��HDq& �!C#Ħ�-��ir�bӤ�=s�f��ż@��0ہ�X�%Q�b�
844
+m%EWD��x���e7�xc�2�"fF�O'�?c/�/��҃j��"�4|Y��S�W�J�|��ȸi�X9�FJa{9��ң��t^3,���3��K�oq�<����::x:3x�w�#	��vloXI'O�5keڀ���?nM�͓�����ﱚ�
J���״K(mvC�r�4�j)<
+��`�Þ}D��7������+���~�au�a���i���-i��{��Yg�F�:�%z֐.��,�y�����x�tij}���6^��被gߖ6�7b7�=��{���&:��]��9�8�s�v�K��Z}pw13؅�E�t�S=�=va�ܽ�O`��-�(��e e��̤�ڌ��]I���{�>!��]a7���@M�r�7�}F�1�?���FG���)ʰ΂�;�x񘧸�|����׊q?T��ی}�3|����V
845
+�p�oo���ȗӍ���ˑ��t�Z�E=���?R�{D �N��x�5W���M����5�,X�f��pܷm�� &K��C�#��Ɋ�
��|��w6����Á�f��)6w[��?�������~T[�P1h�lƠ�G1h�8ϴ4���ODH&�)��J�d�	�>m�arg{�솊;en�Of��'3��˹vt�@0�X���a���&
֌ܻ��bH��&6Ϛ+�<��8���k��/��@���������#[}#7m��0�v��j��"�?,^Bs�hK�XR�}z{�%x4)Ȟ䶵������s�Z�C�W�@��#-��-e'Xi�o+o�?R��
846
+6�6��,��Dgٿ�a?Y�*~��@��+Qt�bt��s�Ӽ�1���9Z��G�)I��i/�@f��沐x�n6�ȑf��C7��
�C�PC��Xr\�m>��'1��f�v#��z��zpO�O#�/�^���v��c��o���c�:�7,�r�0i������J*+XU��.�d�R%�?ue�R�������:VT�T�	���P�ۘ��5�VV���i�Q|`��$1�7|M�ʪ����~NQr��L�:i^p�4efaqIp��Iy��3rJ�pySJg�LJ5���H�JWT���~zb�R
847
+~7`��~�%XP���U˅��A�`�Ln�R��<��rW&�OfGWH�{�[o�|'N**�1?��4iJpqQͪ��ƍ��U-�_.�Jr
848
+u5���5UU��D7���7�J\��e?V������'�I�-�~�&��M�ګ�,P2��.�o�U�n�q�{�4h�|�vh-���'w �.m@�v	��5�i0����L�5B2Е@��>	��vZ	�6�'�v
-<��uX%�UI�h2P,<��&�������G��M� =�Bz��E�^���M��]�h3�@_��N�T��=�-5^�X�$]:���@w�:�\�w]�W]?�#�x���t�[�ڗ����@���~���f�M�7�4���!=�~�!=���-�ˡ����@_���sy{ =��@C@w=�Ћ�#O�
�|�$���<��}s��N�z;�A�O��O�i�97I��g�LJ?cK�h���u�=i�׿�L���\ȉ��kpw-�g�[𻿳�~[8���ǕS��=&~��|X8���q��
849
+��p�nG��`��ːo(�з��!�+����>�x��x%����X>ܚ�<=�7L�G��"�C>��W
x�_j��%|�������˂W���c�1�~;L������M�+?�#�~�G���(���Q�Q�	_���"��?��eI?�H�B�n[�%�S��]�}����'�������n�o�M�'������
850
+�I�xuX��K��-�D�o�/.�Y׷��ܬ(�!��`���
|8�gނ���1=�����(~�+���2쒍<�8��Ʀ[�H1�ٳ���D�GZ�a����pEכ#�l4�D{�k�ӛ,rn0p��|�������7></o4�
851
+�
懿Y�a��y�O�c��8�?Ga^)��3
������Q�Q����ѽ��+M�a>�]��7�O|,���&^x
852
+��-�7���������wL�/��q�/1�|���f���|�%}�������U~�O�N�����~����	�2�~d���+������Ӝ7|tp��7�U~�� ���b�¿MB~�{�yd�NQ�O�^�O����#�s��o���8���y!a~1�׹���q)����*�8��Q��C�X�5�j���K�Ӛ��럴��?���*��Vs��ӭ���� �/rz��NN�p�5�v~���͜�s:��rN�9]��VNwqz��9=�i'�W8��S;w���͜�s:��rN�9]��VNwqz��9=�i'�W8��S;w���͜�s:��rN�9]��VNwqz��9=�i�k���8��=Y��F�¯ԫŽ���6e���iEe#)i�SG�R�S�RR����TU��q���|<����3TN[�"]��[a��7�#lڵ��e�?��բ�_!��Y�z��Q��sZ�9��v{f�\�F�y����Lo)5,�t�E�^����-�mŪ:�l/�1І+3��Rx���WuԻ0�h{���()���G;Z(�:��;�%�{��7+�n�<� t�))@�vUMsPo�$&5�jMN”��������fP&����N�L�L�ԉ�N�Af5�2�d�je2�� �:�2�o��l��/A$5�2���>�Rf.ك���M9��g0��ؙ���l�T�Zre+�L�B	�k��E�=�)�G_l"�1M��nt�Kdg��_F'wa�Y>��n"+0�yQ?ǹ������*����vY]�o��D�	R���s�F��l�6�b�.v�(Aw��*[;�]�l �Ţ���~S0�9�-�{�s�����7���9�c\��^���70��#nc$z��l���7@e�./^{U�<�j<H��C{�In����O����O��@�8�tr�s���N���@O�o�Ķ��-�ZH�>Pӑ�\��1P��a��#!��&���2�(�R�p`��14�k��i����X�a��6,�,�,Z�+v,����M���<�
�8Q�y��mO@��f��N�K/���m�X��^�2Ӟ�
853
+r�(�(��
854
+�{�B��*�m!d�ޤ�e���������q�1����8�ab�.\r�>�����|֚�P7��8�������T��Zdn��������{cF9ݯ�]�Cꄊ鄝zL�H�ޠ�$�"M�/z�&T����K�ۉ��eW6@���+�����Q�F޳b����˥�$/^:.]�\ꃗ��k�*�8��'�X��i�yOC&��de�I&awC�:���d�d��Iqb��&1е��(�"_r��{�Z��S�
855
+���t��:Y+�3\���03z3�%�9i�4w'�N�(d<d9�7�"~2z�V�Y�@-.`Ƴ) k����mt���}��@7����ڴQvQf>/��/�e>�Mw�2if��i�-�X'�f@�:_��f��=�?�Py#͋)U13*�|.�q�leb�XDR&��G��T�E���$�\�
t2���X���_gՖF�L�t�r#�F��&�4C1I&M!9���5>$�6�8��bj�P�I��+�ʝ�+�p��De����r���r)�@�7�*�5ʣ�5�$��B<�\��� l/�}��$��<�šqh]�%�+�����R�%B��YFAi�E$E�ȍ�_�����N�H����i$���Q�/��Nn�d���!(�;���B����ҟ({��ؒ��q���?���1��X]2�vE��#�
�q�ɘ������z��3S�����D}�����a�W��m�]L�|��ڭZD1�Z�,�v����6�4�J�
GJ�?�up?�6��h+�����G���tU
856
+��S��T���J��4�,�������.C�'��$b�u�����>�0����Q�ۙ���\R��=�s&d�[�J7����� &���U���6������k?��t؇a�'�H�Fi�l���(;�Vl<4�{���r^`�]��~�m��k��0��hVE%P-�:V�C4Q�Wh)*���8�����z|�|�s�ҿ�,h����iF�@�Q{Y�z�=��t���ޡ��O)~��9'�߇��i���I�eyUs���r��ѫ�{����_4��X�Y�<�N��=�T�A��f�Φ<2
�������Wξѐ���+1��c�LWl�<<6��F�M�<�B�
R�ɦM��Pi�y@])������Vr���`�3�~_]�F:�xPҚ'�e��w�|�G]]s���J�F��f%�~�?ܨ��gȑ֕j0�ӵ	j�me�y��� #?��m��)��g]x��J�5�^�|&�7�*�A��mTWHg�\��R]%��x�)t�Q���)� �i�Z)u*t	CZ��e���gSZw7R�����6JR?<��7��0��94��pF����S"��[Q��&I���i���$�sP�O*���ȡy"�'����Oq�ʔ�5��(��ɡ�^��{�d�|ܿS�<�G��bv*��bVJ��n)��
J�12r(���lPưb�*y4�D��R@�<�+8�oP�;C�Nٹ�͇F�(�����6����~��ȃ}��%�a���|*�Q�yT��l�fSI(w��r����@Y�cv��F�B���&��%��EΕC��(������a�9�X��N)�^�o��bF��$��1.g+��cR ��"�'9�C�(Pr7�F(�	
857
+y#��k��J,�hϫm�y�����9NI��A�K���D�$��0@G)��h�!{4�h�2^�<~ޣة%�8�G5b
858
+\Sz�[�Y�����·S6����>�]����1v	4�W��b<*��E�<�K}%
859
+~���i�x�L�=�q"�3r���pl5�
860
+؜E�Nx�K�~���1B;k�)Br(�/�IfE�IM�1����#~�D� &����[�92��6�<1m›2���3���S�ԃBѹj��TXʇ �=$�409�qaM�(ޚ>4�{�x!o>/���8�X&94?����u��&�(F'�ѷ�����`�5��*���@x(�b�p$�z�<�K�V�4�15
861
+�d�12���0ā\�U�G�9rr��iI5�n��+V��#�s��$cF�]%�����$c7;���=.���3��B�@̄��Y����}	tTE��{ݩ��ξBH�%��ta!BB�$h�J�I:IK�;�F��nh ���(��������(.3.(���߽��������9��^�Wu�ֽ�n�Z�+�4C�h*���P!:�v�$2�,�"6����(9�o� �"M�08�ߡӄ#&�aQr�o"G�&�� U�t�bj�h��U���n(���'ql	��[��f���~>-͇>�UYy����@�<V�5�)^�)&�cNV�*����c� V�pn�M��-�rO�^�_	�p�t�	N��'����K�q�^�x�fC5�I�`$/??�_V�/(��'s���\i=E���^ M�c>å`�v�a�S�侭�ny$���|����OT2���侷E�{����yL.`��q��<~L���s�%�]����R�	�T���r�Tv�j�<��fy�?�-~�l8W++���6�c����A�z��n�C�%�����}CqT+en��(����iX��e�yh��d�.�s�F�uN3�D9�(�k��F�B9��6��-����&Ɇ-�����|��߱Z{4�)�0����<�Ty��ǵ8	3M�7�־��H�(�I�*�
�k6�BR�,�8�4�[�p�R*�V,'�f�1Y�
�W�o�h]�t �X�}F���'"p7_���tI)@�Yy��W��y=F�<�k#��L��[��������S���!6O*B�R��`a±J:�جy�:b��4�I�r��B�6��X���9P,���)Ɋ=��7*h��r�$H�CA�6v�Eb�N�D�+Д��"�O�<���?Mr�`�������{E�s�����c)�^yL���H�/�N�&��)ՙZZ�k��^����;z����,�K��}�fL�,71u��Y<��[d$��g���0�,=�Z�0Ky��ܷ[��ox;��9�G�\!������?p/�Uyh#ʇp�{h�@�^?Z���6A���V�!���w��;�h��G��>�?�͝4�<R��,p�)pT�t�ޛW¼U��T�)��*��:֗��p����51؎t�+���k��鿂��L�<@T��c%ݧ� o����`t�p���R�h�I�p<��Y@��SuET{�d���Y�4KW�`&6�2]�^��0�S,J�bJ���X�/l(���Q��WQ�.�߯�����K��K
862
+^�E`6�5Hp� 8�J���R��>TL-�"Mĥdy~���[���x��.�Ht��_��x$�I�'1*�I�6(���RL�R��	d����	���_4��<�U�;
#��9Y�k���
863
+��1r�K���T�<+�%d�l33��ͼț�M��Qy���aٌ�X��H�d#�W�d�6�'\���E��?��(���'���YT�ʃ��>jͲF���.�Y�	�%8��}M���������/O��DžDd��	B4���KZ]���4C qh�<3��g�R�
864
+Re@#�3u�^'��E��|%����2�F����aE��(*}�}���i���WB�GHz}�^-I1DIz��0=#ٿ��L`�*/��	I�'n@�DNa�%�+k�"f��3C�h%2e̖�e�ޟm��ɀ�*��OgQ)�%��h����C�h�#��\������-�=4.�n;�'�̨򄙩H�AQ����|T
865
+m�dJ��hʤD�#|U�L�4Gb��	����8ydt�^�����b���%	:>T
866
+�S�����T���$Y�����S^b4;��"
867
+�	�u2g�1P
868
+^xn�(M��x���b�	�V��Rz�bb`Q�|��T����?�­��ơ]�I��A�埣�0�ٞ�ɠ�����|�wN�mJ����I�u���<��B�GTk�S-.����o��g���I!ߊ	-��r�7��M%x7�41Z�Q2N
869
+���)��C��6yH�!�A�z2!É^҄��$M3	�!��IB/z�����
870
+�!��D���ht�H�!�L��D�%�	�D{Nw�ȇ�zk�ۼB��{��\YtD�D
871
+�I�B^&�h��u$=��h�D���`�
872
+h&a�z���܇H�'$���D2�D'������D�X�Q���\v��$�-�$�M�?%��Iv=�ԑgH�9��LF@�
u�<!�A��TB�&�H�CR �W��A�Cˊ�I!	=D�++8.m�6� �8D�d�����~B(�:9��I��y~g�Jq|.I�"��HA<ڷ!^�q`4�e�#C�ɨ^�t������
873
+R`��TD�$�|�� iI�1E������}�6<��醑�u��H���IҖ�d].I��⩎���Ä�T�2�LT!���� �;�w�Tie�'dL*+�II~F���F���ݧpW��Ⱚ\2h�u/���#Qu�6�wER�!A��t���H*��2B�����U0�n�F��ޞ$���O�����(�$f���ff�vYu�T�!���\1�!u�h�{�F9ZUm�3<N"���k����s`r�NB>%1�Lb���D�=$my���'�;��5�IxJ�e���^G�N���d�֑�^��:y)�b�B�A6�Tfzh�v��z
0�U#�6'�&�c�P���$�=�a�b�OR<$l-	��͈'r!�ZI��\��"k[O�<$v-!����;s+�G���=�
874
+�w��B ��DGBF��c�K"O!��M�%zJh�<��%rɟC�a`(/����1B�Q[q�D�jF'��n�Cw#��?�7��n�u;Ѯ"Y�v5ɪ$�5$kѮ%Iګ492��$Y�K�uw���P�h@�v���Zj
875
+-��ۂt��?����%��$���U�٠n����k#u�[�pM��l�.�Q�P�a�L����S�t�����K�ɐ
876
+b8F"+}���i�[���x0��P��d���d)l%q/!���j��V�p��!�X��
877
+2��dב�cdq7)�#�PP3*U���`��L���$�`��;�tGI"�
878
+�	��'Pk`Š:2��u��ud$�w�ԡ�բ�D\�
879
+��K�EJ
��������j$��ߢI�&�)P<n�[�K��,��d1���4���:������:���=$�M�B�2��h�D׃�ˬ'cA��Hb����$�$�Ѕ$�;���mv��]:c�;m�9�^`�@�����0���ZI�z��n3���Ǣ��z�Ad�_���/�^��~GJ�I�tU��R������(�a$)�N�5Y��)m7�G���g�&��Hp@��a�J���,K�: �	`:@>�QӒC}*�0G�θ�&x��O�Q09(�!����!�`�P�a�D�,O��()��7�ї�(����b�}U�>Z�!�)�B��G⛐�����XƟT���2���A٬+� �=h d���/IC��4V��2��|�'�!�V@�� �Dߍ�H��TT?�*�V��Y�
�V/���V�2F� ��%v	��L��1-�=�ž�� \�~2z 7�Cb
880
+��C&jW�{2���#�D�*�4"�QK�$lP�����P,�N�|�����n"�G3c�h�2�'?����YI�7+KHd�@Hۍ��]y��,Ж=L�͢�+�J	�@gm�	I?��U"3 �}ziP�Oe��)�FA:p����#�$��L���:w�<`]*m��5
881
+n�/C
��$k' ?��Q^���ZG�o&�;�`�T@h�<�
882
+Ђuد�2{�p#��M�>Dfn'���Lv�֐y�� ��H�\��f�v"�A�hcb8����a:ny�d&Sݨ�3������M�ɥ���a��;r�:2Tx�D���8EO@�)��D��dʖ�fA�9�I�lVB�y�����$��NF�+A�K߉Z�a @�x�K �r�#x�=��L�zf�9Q����>���5c}����I~�e\��nK��ARO�����;���b���q��&�
883
+P�i·Hl	�FN�w���KF��b$�Lv`=������=L�B�n����1����$	��fl��ޱ��B���B�q��`8������Fw4�
"g�g���u�Qh���؍
2�5��)%.AVW��m|���#I-��i�	�+�.�y��/�=���.T�R���_O�>'�H��tp?��wc;�����d��0hN���'� �op�7���6Z�0T��|;5~��FpT?�}�m�f��.[�AZ_���X��!�P�q���&�^O8��
TF'��Rg��f�ڂ�9-h��'ᚢ�-���;�8�+C���؃u�i$e�d��O��c�K���S�;P.�V�:̊FO3Y�(�P�}�O��9� '$�F#�2~����.v���۹�~	���6��g�c��m����&~9�b2�l�f�����<�/��+-&7��5��)��f�[d��L

�N�c�T��g[[$�r��)0��	/�̡_1���
884
+a���FG����M���e�2wXL{��'�8�J�ڛ,��BR��d���U[#ҸZ�M@���b1��fZ�B���	��{#T_2�fn��/wZ�7
f#|��Vmi�"'%��Ѹ���X|^�nYnr�Ȧ���K��sM�s�djl5[�^�N���	��y��>Zd ��f����K�5n0>��&��ᓙ�c�Q"���eP9LM������g)C�%PIk�X��<瑧��b2�\'H�l��Tl|��
885
+Z����Vy�2;h�����6�����daT�L�Kjk�MsWז/�2���㝒��-M�(��<��lPu����)���@`҂��rW
U���-��B[���\(׆��,�k��n�$��-�ԉ
886
+���Zs��R&���o��hw�@�m�d&���R�,��6�
887
+�$���Tu\n���W���3c\��cLU��/i�c�ً������̈́D-n��9҇�n�T\ղ�ܕ�L���֮��v��l���Pf������P,��Lݼzcnj��U��%��N� o+!q�Ds��.T�����[,��XP��x}�%ϸ��K�ls8��-BA2jp�vK��cw6�2`�s[I'#�╊V�8��`}��4��@q���S��v^APCbw���{\���M��1~�ĉR�ɽ�W�>�V���<Sy�̼F���39lM&Gs3�� ��`^;�_��jn���%5%���ao1�?��u4��}>~�en�S�/,7U�����=�[���@��:��x~���Ds|	ba=��/C�C����	�gz�!�2Q�	>�EeE��.��0ɿkF�!q�X�v�W
�`Y�ƙ@�&Jה��=��~���v��j��8o��x�ݐ���-3Z,п[!jv6���2){R�!�Őݼ�����<��=�Sۀd�Jޯ�D;�W��Q��u���^FXm��	G�_�WW�kB����A
��AރB�U֨�	?�hrQA��r��F{P��z��a��9O��AF��V�Ê�{��<N����W)�;�rA����Ώ�u�Uj#�in\�igʉz�t#�"��"o����ۄ����MH���,
�M�Kѕ5Y@�`u�f$;�9���:Ldv)Ztю,��B�G�)��ZJ�@���M�l$�媿ݐ��c�.?��ݫ��}q����׀�l�6*�`Gy�8��ÍFGع6sg S�rs�]3?��uELp@M��L��j���6C�5��'�졡0G��)-(�V2\elv�6����(�`��*M�̿N>����pO�M��؈��_��TA=���`����D�BUK�]9A9���B�v��+6�in�y\����pQw���kK�;���Jolu�Y�v�{���n3αtXlF��*�
.�e%�N���rm�cKc��iR~����jvg۬vO�1o��jo�y�5�iy��`1b��cIlмrZ%�B����M�f�5�۠U:�ڊ�)����(ܘ����*����`!T�git�;�y����|��9���8Z���Q��'�M����K}�7��������a�P�B�$�9�5���{��$~�8�^��4}���Q�w�
888
+��4}�$ޅ�e���b��L�t�£%�?]|��/.6���2I�P)��4}�y�@^K��Wc���BR�{�!���߫��2���Rx��{^�7��|��������{�� �8Wq�r�>𷝧W��t@%�Q�^�-�eW���+w
~����^��M�&x�L
K�|wm6�+�`�W�@.�%y�W��W��6�r{8~�X��g�~O���
889
+��T����o�i���'��G���k~�V�J��Kyz�W�W����m�;9\���J�/���]��k���g�����ۇ�C\�ƚ!$�|B��S���/J�UүR�߬�W��I^���W8\���{!�/Q�~�镯�"�|�g�+�C�N��_��+_X���w��r��M���r��Õ��_�p勆���
890
+<*��Q�ei�p��	�|�u1�+���Õ/���p�uw��s7O�|/������ʭ�_���2����dž1��Kfp����0֮ŗQ��_��+߂^��ʷ�6r��5���|w�!W��J��R��G)<Qn�1z�/җ���ŏ���p<�Ws��*������_QI�7���c��ӏT��K�~�kPK9\���Õo�ߤ�_jt�,-V{M�C�!:_1��pn�����aj�9pF��a���N��,nKSNn�0~�[Mt��t�dž������/f��ޡZ�A:��l!!'/(4k
891
+�o����sK��L+�Zl*)�9�%^2�V.�
��s�֔Ԛjgͮ,���Y�\S+��m0̞S_5k~y�D룶ޣ2'|rUm��7�j2`aj����AT��2�t�鴁K��G؜�ʔe������a7��I�ڐ����J+�g���ϙ�P�$غ�o��͗d��_P(9��
\8��|�I�S�A'��M1[�R�0Ŧ2�m*��o��P}�
892
+|����n�&�Zs��lߒr`��5Y,>h��*��&Sc�۲��PЅ&�����T��TV���J^p�l��UoՕ�k��T�R�W�g�/<�tOeGe������2fP��
�L�� l�lࢇ����L��jZ�[��,pz154_��Pl�<Xڀ��g���@�z(��&
��AV���~0,����
893
+D0DAW�,IyW�.��F��|EWm[� T�q�hs� t;Y�*���%����C�{���c�5e[�$k5�Z���v@�B��=��̅��Ϝ��v�[ʡ^M���	��?�q��K+o��MN_��`~�!�1"�s��Hp��+�an��.ZU��j�cv�����&\m�f{�/j�7;�����Y��>0�����o�������S��E��5��sŁ?����Iqp��7�OY�<~��Fq>�����S����^�Fqނ�
894
+��
895
+��K�Y"�8�@��+�Q�����'�P������5��������f+��8/"��(����
896
+U��!´�ZE~�!0<�
L�7)�������vE~��.@�6�߫��X�˿O�_����e���?��aM`�v���?�D�8�d�����q�v�U�o����N��/�s�^ �w���N�8����x��N!�(���?=`ba��?��/֯>������"�X����NE�ʹ��8.�_���5��~�����"�J~Fɾ�b�|!���.����4Q�7��iǫ���$�U�_��(�V��/���Oŝ?�
897
+�S��sO���F��3w��;_���뽟�޷>(����=�_�|�$����Sɟ�]��o�rpC���1��VF.�&��
A�䉹�an^ޤ��y�R^��I�(r~���7a��ɒ!����R��tz���ouI�\���B�T�����p:�6|�"��})�NW`(:*Y�abU���
��2Ex�_R@���������$n�5�4<ߎ�Y:e(�c��� ��8$W
898
+�O9�P�?F(���3����|�W1L�p��"�-�|��=�I5/OM�s�,Bٯ��3�U�.
�|��ix�?}"�Ř��������߲�֘?�<�8=�.�A��7�J><�W�F.K�5\a8�<ꊹS&J�G�Is$�Ę!�V�<A�H�5��R+m�s힐�熷C�[���RT}\�ꊊ�����ۻ�"�h��D<�`³y�!�5�z)1O��97�@���^�萰Ȳw�����zr�a�ݱ�˴�{�ٳ.�_#uK���.�o馢iİ&D���^ڱV#
[�C^�� �U��_�; M<�0���ذx�Cx�S�VߒQY����Ѻ9eЪ�+fgE�Xc�h�伹oM�߆�,�;_!�~C��s�:4\K���:~_����إ~8L|���V�k��7X���[�3tE�$���t��"�t5�]�{"���'v�q�z���2p
��n�㾍|�������a�H�3=�a����h;߷�S�+\˿W�끋�~�g���p_�G��\��}p��0\����XG��y�/��W�w�Vp���o/�[|Lr��9��<<�?}������3p}����~_���|��'�|�{$������G>����������;B�
�>;��	\�2k�����ţqO�_<�d�'O�I�}����ϔ��>�,�|��e��'�gC�#�1,x��$�s8~Ni�_����TN�p���2~�ԗ�����a	����� ,�2�s��x���"k�}������R��2��g�[�j�������?o�����r�V����؞a�<g������j�~��������<@^{e}����>�e���w������ē��=wf����X�ݕm�}]���<<�?���緖g����l���������t�7����1���Ga}��$f�7�2eiE¬�t��ڽ���]�<y�u�K�~��qW�_{}��'��鯟?���K�^͎�j�}�cו7���3��AC�?�8�p�oѻ�N��<8y��c�.���Q/��sO_5f�ԏ�9��c�u���]���=R�J�I3������$5z�z:7�5�~��Ύ�_�f��g���j���]Y�LrO	i[w�ۗ+�~[�s�U��*7\�N�Ꮧtr�㧋#�-��_�}gׯg�4�=���Ī��S*�����>nV�W���Ƚ�޿߱�
�qÄ�u�z��[��՝�����6}�����~�ڻ�n��aǞ�g=�벧�6�;g���>6�-Ém�֪�7��j\���?+�Lܸϴ�om7��v���k~�鬗��`(������w�ٳ�94�
z�松h��L}=+i�ه��n��_r^����7������
W���/Ӓ�So4o��~ �%�W�6��oS����g�>{Y��_�;��O�ko~�2������rϰ��^�벖��ol��؍M�U���H�	��?�O��Ĺ��6�燕/�c��pϫ����XX򟊍���~矞�8U^}�)�u�]zb]���b{�^�]l(8��ӝχ�ZtcCۓ1]�<Ê�h�KC;9�|B�_V�N��k_��w����'��@� ���V������iڴ�ōۿ9��-�ݱ5=/�ƶe��Ao?z�����z����#���qz�ٶe�??�i{Wڵy9�
�~����ޕ�I�v]o�h�:}`�//]ڇq��bItȃk6�
p
�؞��ࣤ�/_��&,�/XX�O]_�Z�qr�_�?{���aƟ�����k�9c�i߹oo���	�[#DŽ�~�ߵ������_�]���������'�V�y��ݯ~uhST<��ugőEom�HȥM���u���ә�z���_�u�Ρ��7�cP�ϻ&d���`��<��Q}#�|�>~�kIR]�ɦ�}��>��؎��n���?;ͥo>�o�ܲ��_�ݥ�w���=��U�v���ݱ�}��e��zm���IJ�ZS��^rd�#�等�z}�y}]҇�7>�s&�yo�͛�|v$�֧K�۹	����M{ܸ�꧍;G����f�9֐�ľ���|�U�uu�4�{�22돷Mۣ}3�
/~z�c3wM�?��%&�>��U��mQ٧�����~.�y���SI?-Ze�J����+V
899
+��W)���y*|�Rn�J�~U��9�}��G��'68�)�����
900
+?'��S���*���P���*�XUʽS���*�_UI��
901
+����S�^g���u*��7��a�
902
+�U�g��CAi3�M�пX��t�}�*�|B.�������XE���Emt�J}�
903
+��*�g��Ri/T�O>'�гO�^/��Rn��6������S�o�������T��X�8�iTI��+ߧ�J���r�z��[׬cJS���g1nX�	<��|t.,5�y(=O�{�֫���'�������1b��e,�<�7���Ę����5V`(g��hN�_�'�����5�Y<�o���cq��\��Y�@�q�o�Qh�<Y\K�w�o/�W���K�b�c����wp<��5�uj�/�'X<I��^�6����p��gx��<#�;���bN�NO������9�\̯p�E7�����_s��r��r�c�k�V����/߰~��c����9?�T��7��������˷};�Ljy�G?��M~5���Q�71�����]��'9��PF�N��o����q�7��?�>���_.�Bc\���mS"_�p������K��2l��s8??�#p�r.�v�0�-�V�>'Hw�ynA//��2V�Z>�9Ϭ���q�Ϸ�yo/n���\�����O�/��:m���=\o���Q.��}��Da�>����6r<�b�ba�x��p�BE �����Mb�Uث���b�/E��v���9�(��!G��e���+���o������I@��N�Z#�1(�h�"A:�Q#�ZPC�ɘ̄�Z#I*CL��Z��6��,�6�)*P�֖H�Rl5�k"ZD����k�|��z�_���������������9g���m��]}���9��|��?��cS�|���g��&�����\��+�a�X]?R~���EN�ި�F��{}z�(�7������ñ��up�i�99��~w��R��+�'�ڿΞ�9��e���9�"�ߜ���>
904
+�[��=?�q�;�
905
+��a|���:���gԯ2K�=-]u��F�x���Zi��^��mg��s���i����ޤ7l���w��:k�;�@�5���+V�j����Ǭ�\�v(�y�t��j�w�z:�F(ߡu��
906
+ܼ�����ܼ��{~�@��s�?%N���O\����u<v��O���>������xU��ߍ��?k|{�ݗ�~2G�����Ϛa�_��:{js~;��k�J�~�����O�8���ӷ��r�?��g��W�~��b�Ǻ���~w=��Z>���gi�h�
907
+z��i�s4N��TNp�wM�=���'C㛻��6}n/�)�GTo���S�ԯr4q����wW���ɜ�m=?�|l��z��_t��m�_�X�v멶�}�O��m���P��j����u���!��._}"-�>kT��c���_�.W��7��m���9C�S��Kn�x��9���<Y��cm�i.�6����Kϸ���j>P��iT?�uj���U��'�q�������;���8\��oڨ���K\~�zj�u�^��Ԡ�h���{���@۞�7�7Mۓ�7���|R�����m�g���xX����ˍ�yZO����TW��׸����7��'~/�u<�&MX��C�}��>�����ḏ��c㾱�M��zmg������ג�8Ot��7�fk|x������[�|S�����3,���o:��qy�ˣԯ�<�G���Ovk��8�������n�o��qݩ��o�s���Gn��;����y����|�����=ߊ��r���z���z�N=����8^�k�7�h�����Y����Tw����nmg��?����8oU��h���9Y�p�U�)���k���R��Z���ϔ�uv(����9ʵ����R�י�����T�7�=��N�om�v���ZO�}���h��kR�j��l{�W�<�������R���i)�Jܡ~�{Oj�;�����[q��o[���&���w���C��jO��7��%�y���&�[*�|����y���c�������i�5���|��O��35���A�E��T���q���/��Wާ���ʳ�rw�����IK����ӍG����[��3��z?�<7_/��\��oW]=+-q������L��#pב�M�g�Y����uq�w���q�Ɨ�K]��q�i��_��GS��z΃�q�����­Wԣ秺,��^g�G�����OTW����vz��/�1�A7^�u�������8t<����O�xuP����	��+�����>v�Ӟ����w(��R��w}��i)��6��9�����S3]>IO9�����u���xl�S��;��8y�^�+p�[�S�{Y����v�I/P��9-�{��=���JR��[��ͻ��ߋ�[~�­���y�%=n�q���>���xYk��./��37��]��];_ۓ��q�q�:�������:������֏5��h�Ѽk�ڹ��b�߲���-߶�J=_����O���n���e�W>-ߥ�mF���:����g��~ -e~�������!�t�x�-8K�G7~�^O���+���~V=n�þ���h�t�N��.�}z�1�ǭQ���z��c_q�'�<ݝw������uE�B㼻�5��bm��N�#�'��嚐]���h���.����:g���#��:{��x1�~���uO~[�q&�?��uT�G�2z;��<�>m~�m�[G�iw�H�����g�;��w�y���յO����<�Oj�O�0�կ�i��Vc�߻~e���@�.��v��'R��Z�O�މy��[� O�G\<���;��m�k�������z]]��5��P�]�}���q�w�ߝw������&2ί&j=�/�%>w]�l[�[G������t��ӭG��K���u^p�Or�i?��ޕI���1�x�ԅ)�*�K��fse}}m�,#_�uDY"[��a��lYa����z�>Z_	��&˥(,7�+��\h���[umg��J`	Z,�������r������<�4_V��C"'��~�b�yY4Y`��*ȇ�J8��d���E��Z<�nJחϫ�,4��k*+eh��8����S�X@�DX�a��jI��B���U*�-b��S[WZVW&
908
+��
909
+�ɯKDS��H_�;
910
+�+���&-��o�B"�Y�K��w,'PV�)�p}e��N��'��"�󽲦��9��n�,J�P
911
+T�V�l��MgRݲF�^��YPfK�$�ڗ0�FZ���.+���
912
+��/^PVW&R��\E��$�ڗD%��ZۻhMEE�.�[*
�K�
��[���F^�� �0�z!f�ٖ��v����)�,dɚ����P8��Z�ՍT��WQ�0�;b�T�՗�/��&&eDB�p��'��:3�-3�v]^g������Ct�k��^Dž�K�.(�M
dY�@���$\�LѤw8�6$A�V*�o�4֚+�U7ԕ�^ ���`�^O*��g:M���C�U��"�]��~�\2��V˛gJ�u%�pU���u��"y�q�095d��*��ƆZ
913
+�vK�2�0A�*�&�JN�m��\�u�5h(B���n��"\I�cb��J���|�+{�ȶ����t�a�9`��p�C������3
6�.!d��%�m�)-���5ٯ�H}�2�:�Z�Y�D�|}-�)R����UW�F���؃)�SS�LI7Ua�5�Z"�R��O�Κp��[�Z�Dyבq+��
914
+�+�T��*ڿ��"���fS(��L:hCyi���86֡1��Mn���$�6֔�4����u���a�,�Ά�M������%�"Q�L��Zg`�Gc�Xu��R��.����a,,5�B^d�~Q]Y�~��c@�+!ͬ=��%5v��y�巖4ڃ�0���dJD�,/�ڗ���䢄�G����W��DA��:��V��Z���jY�	هl7��?�j4����וL���R��PZ[g`�"K�$�Y��WY��I*f�0׮-��h4�M���ұ����ug���I�J"!MJ$�4�y�H���j|nuKZ�$���^�����A���-@�ֿ`�j�RC.,5��ׅà���u&��h;�ȉ�RYU
915
+iL��,z���H*-���՘Js���IYJJC!I'�ݸ�u��F���jU	`�prK5oiX^蛋��N)h�b��&���k,V�acA�&��Z��Ԩ6sCcu[i�l2�V]��V�
�F���}�%j�L�r�)�)$0\^�XbG8�lu�����@�pT��{�O^SY��q\�p��H�#�(�Z��k&TU��D��{Lر�@�>��Q/]z[��@��]rM�ܹu�:���)�5�I
���A�����R�>a"y�I�C
>�I�PT��8��]�r  %4rۓP���Ql��\�2���#��&���򅶅ƭ�+e!*�a�=�����i�m�縀�5qk",��UH����{��iP�\C�K&o?s���;��{�$J�G�8N��q6�����\
916
+$9+�����JLOc�j��P���5ɼbͤk�%
917
+$"a@�‘�4I=�e�\u5&��^6:��,N��8m�ns`����RaFiem�S5vA=N4M�g�D�fY�:,2*�ߘA>1��'^M�؋�E�r_/�e�Bb�ǘL�K�e,��ܮ�Ht�6��E�5D�ld�6Y)��.3�ߜИ=�|BGMNۘ|�N�szg3i4�+��*�k-#�J.��ʇ�F���B�ň��sK�e)/���UiM��)_�Q���Ć�
og�(��~k��7�s��5ԝw�|+O|�>R ��c/L|�����ֲt�o�~��H����7H�9&��^������G��?����}|�9�Ȱ���j�����=|c�O�^����Y)���I�:�t�\Ŷ��D}n�w�7G/��y���}���9޿�^G��Ῥ�2��&�?��O���m�--��ÿ�|��?w�����?��O�l��=�P�Gz�Q�=��t}�=|V���<�x�g�����2��x�:�=|��=�E�^�f��}~���mI��i�߮�<�����ϲ8��?��=�3Z~��_����+��&?�9�wx���|��~�<�6�C��P�����]���B����G�/\[S�Ǵ|��_����v�����ԟ�=�Z~��ߡ|�ÿ����eq�����ÿ�����s����z<�H�^��K���;���'��Sg���C��O��{�/i��=���=|����_W��ß��ß�|���|���nS�{�}o{<�i������L-�C*?Z���Y��]���i�9�Q��<�ʇ<�z�y���7y��_�|��|���_�w}����/�}����/�<|W��R���8���;�|��������+?��?��7y��?��i=]~���<|��>C�C��z܌?��_n�H��~��7z�b�C�Z�e�[�wz��+��ïV���w+��*��<�O�L?�L��4��b��x�<��"�H����}~�9}^���S�j�F�9/#~!�����B|'��0�ۉ�"�}����t�7��m�{����ė�P��@�c�WP�>�yݰC�?��oO��D<���A��T>����"�L�g$�h�!>�x^!5��ۉ����T�F⯠�s����#��������Q�Mħ������O|��I�r��/g�'�6�gۇ������ϥzzد�ua�c�H�!��A����Y�J�H�y���y�<�3��'~�A�y
�b��a?$~�s��u���뿆�/e?$�����������ğL��󺤝lO�C�yM�.�p&����&�������nėS�w?��0�tv�����#~�a�f})������������?����B������!�a���8L<�sRL�W�72�O|�?񳩞�{��?��&�Od�'���������q�����O��]���O���ğG�l#���0�sB������������3�?��G�?�O�?9�����x^�3�x^w$�_�O�@����;���8����GqB����#������?�'�������
918
+�C���s�'�*�0����y���/���װ�2�?�È�%�b�'F<�����e��?���/I�T����?�9�����+-r���O�?�������x^/�F��r�'�a���?�O<����x^k���3��_��O����oc�'�&����;������?�Q�������ݜ�?����O�R��ć�����?�#�_N�e�'��������?��������5�s���������j�����?�~��ďf�'~
�?�/��_�O��9�?��C���O|!��Y�ķ����O�K��Oc�'�\��g�'����O|-�?����w�">�HM�n�A���O�����c�'���G���}���O�X���c�'~��7r�C��������G�"�9������������q�C<�ߡ��1��5�?�O��U��_�O�8���b�'�q���O�����$����?�O���_�?��\���7������'~*��/��s��o�O�w�����������=��?g�'�߹�A�L������9�����?��8����.��dz��K������O�������$��D���A�3�?����0��Od�'�������r=��w������1�?�}���?�o��_��8�������������k8�������O���G����������������c���`�'�?�w���/e�'���I�ݜ������߱����?�����9��_�O�)���g�'���a�'���⧰�*�?�7p�'~5�?�_�������ď�� �?�'r�C�{������og�'������O�g��w�����K��?����?��?�����8�!~�?����s�C<��$~.���������o`�'�m��W�����?������ >�O|-�?�����?�O|/��r�'���!�$���O�m��Wr�C�,��C����u����� �x��������;�w����ѿ�G����;�w��������6�?(�6�������`�s��է�q/�ċ����`����7#6	�3�x�z�rKk�x�`�u4��Z���;�W	�[?��+�-��&��q�^.Xnٌ�^*XnɌ/,�\����-����V�xp�`��2�<K�Wp�x�`��1�wD��3�x���x����+���<Z�	�<\��<L�נx��x��L�N|2����a�|@�סx��S�x��S�x��Ӡx��ӡ�s�/΂~�M�π~��C?��gB?�j����J��^)�,�^!�l�^.x$�/<
919
+���
����ρ~�υ~�2�c�x���x���_��9�<E�X��(8��s_���_�����~�a�/�~ࡂ�C?�`�y��&x�����|@����G�$��-x2��|	��|)�������@?�z�S�x����Z�4�^%x:��|��|9�/�~ू�x��+��^�7�x��"�.|%��|��|5�F�.�~�)���~�g@?p��k�x���x���<L��<T�
�<X���&���|���Y�|@�l��#�&��-�f��%���!��?E������B?�z�e��Fp9��\���WB?�J�U��B�\�^.x�/\
��Kχ~�z��B?�|�5�\&x��\��3�A�!���O|�O\�����x��0��~�a��x���<X�"�N�����%�|@����G���[���K�x�໠���&��$�n�^/x)�������@?�*����R�x��{�x��e��Tp���^����۠x��{��Lp;�����!����/������O���s��G��|��C�*�~�,��N� �����|@�x��x��C?�.�?�~��
920
+��D��~�M�����^��k���W�9����^)����B�x��x��_C?�����^�o�x��G��L�o�x��G�x���A����]�<E�c�<Q����8�������<L�Z�*�I�,x��	�=�.4x=�����4��������w~�?B��~�M�7B?�z���x�����Z�s��J����R��^!x+�/�
���
921
+��/����#���"��	����g��!x;�@��~�)�_�~�w@?p��@?�h�/C?�p��~�a�_�~ࡂ_�~�wB?p��A?�������נx��C?�n���~�]�_�~��߀���{�x��7�x�����F�[��Z����J�;��R���B�{��\p���
922
+�C?��{��^�^��/�}�.������g��}��}�<E��<Q�������1��O�&� ��	�|���
923
+���/7�0�����/��-�s��%���������x/�&���V�x�`��.�
�F�<b�^-XnY�w�,�:�;�W
924
+�[z�M�+ˣ���r���O|�R��hI�x�`y.�\/Xn����,��dz��˭��Y���x�`��6޷�/8���>��'
925
+
926
+�����
927
+�����������
���
928
+>	��΄~�4�'C?�������:��|
929
+��|*��|��|:������������~�5�τ~�Ղ��x����R�Y��B����\�H�^*x�/<����������e��@?�,��A?���C����9�<E�X��(8��s_���_�����~�a�/�~ࡂ�C?�`�y��&x��.��|@����G�$��-x2��|	��|)��E�·~�M��x��)��F�T�^-x�l����\)�O�
<8�^�<��7p��k�6�)ʏ�/���}���.
n<��o	�t$|���Om��{��OK�/�;�&O��GEΙl��Ɣ�����;�/��#���
930
+��-O5�7�}S��/47]:&r���������M��Z$9�=�`�\�tixvKw�E"ڤɑ��j���n�F	���l�b�^�o�gN�l��4�~g���i��Ͷ����ƅ�[vD�	F'�&Ӯ��[���g儵�}��龽��/�]�/l����-�᪢����rD۴����RHɗ���4�"�5<�:�l��l7�
O6��
6�N��b6���qU6��TR�/���E.��Q>3&�6֞�w}0�=���]7�=��W��_�mT�����`f�u3��ϯ
F?���{OI��c���nˎ@�Ldy�X�3����}���48�(z��y��s�\\�;��ѻ�����/��0(�z0�� l���� ���;�8��WON5����t���z)X;���?mll�o�mYZ��fS~|�ysF���A������
931
+��l0����^fw�e#/�u�iѾ�7�Tps�-%�M�2Q�iX�\c��
bԽU�+�n�>��
~w�zZ{m��
932
+�3J������k�%c�iÅc�o�펍;$R���h���I�K�m������^��M���ӧ�����Xb���׮�v����-����K��o2-�+J6����5݃��O]a��
933
+M]�5�0���ؕ��2��6�i�d��՘�3�X�+O���'+ۻ�Wu̼6�^2H|��X�1C��e� V��o�b�>.ݶh��6ƻ1�z�Q�n��N��{���o��������IML�9ƶ�x�gFΉ&�H�abS�8����aoy��@��Oޝo>��0�L&Z�����+2@
934
+��2��i��2����F�ك�m������-�
��ߙ�+�v�^{J��'��u��e ��&�㺯��e�)�������L�nJËX�76�0-0���}��7��M�=mmh�-2噖�6-)j˻��?��4¶�ʶ�2
h�L���I����F�����Ho6�=
935
+�fJ��r��������M�
936
+6o���7�0�LIZ��es���]�U�~�$S��Ya�l�!6j�)���bڮ��h5
937
+�֨7S�yR{���� ���>St��Fm�zE�b���z��,�o��@�\�	�=u���)�x�
�ȩms�NS�_���@����5�n�ʙس�H�7�:�m߿���4�Z	���e�Y�I�&[�:�n�Jln6��uq��m�r��o_4���N_�E�xŎ�3[޻�x��(sl����63�L���o��8�Ѱ?f5�NBpn$"7ߙ�7�"�f��'���#v	�?%�1R��"8�^��y����\�����3�1.�˕V��
938
+1LN�Mi�ˍc�~ /�ek�'�&�9�<�	������9u���
#���Iuo@��F����&l
939
+	��5�e�ǃ����}���'�xY}ل��@��{�uB���`t'bRG0�/�>)�(�;8jK�w�UvS���]n�e@�o��T�+�ƿ38as}���o��
Ӵ���ȇ������7���<H��n�͏�_v�ζq�؍�:�x��؃2w���1���l/6i��`��`�k��m{4ܑ�k�S���c�h�N7=�XB������g�!͛5/�#�¶S��I�km�'�5x���'1p���x2�k�_���9�c|��;Q>�=2�.;'-��+�N��/2߂&g5-�80�({N`�u١�����v�Q?���#ٝ�|"�٨����J�d���:2�G0*���`��쬭Ӳ����sH�nɌ�q�Ƚ���������쳭@k$�Jid�q�=���ϊ����R����^�Pd��o��ٛ�lsKV�/V�ߓ.���s?��(�&ٜ�9Y&�%S���f��Pt;��m�]����P��R��7My���0><�y�tӞ7��[{
940
+fF�j]�R&�ӂm��O�o�9q���T22�U3(
941
+��eԔon�l��s�FoV�����k������}��P�^p��s9���0�Ø�-o�̈,l�|db���|^��{W��C�
!�}/�b���/�����|�ȫ&A�\2�?��0������IS-ra���@��R%9�cϓP���ںLb`R�Ob������jaѨ���$+�����%���헧���6���m���ϐfhF~Aӥ>S�^h��x y�c��ߑ�{G����{�'�E�F7Ŷ��)��~;O}{d:lq�q)>_*l���2f��[|VJ{L�dҬ��T����ɲ�HTg�K�KJtP=c�v�;N�Z����6ʺ�LؼМ��<G����ʼ������f.�0�{Ǹ<7���g9<<��H�]�G�DŴm��������%��M��p�I��&��iش����ۍ��f5����d��w�[o;���Ň��K7Ū�v�����;����<�$?����l{�T�v����k
942
+����W�jc#LE��s,�M_>�T�où�O�i��)�Q;�$�
943
+��=��4��Yf$]�>)'i��7��M{p�{ہ�Ћ�i�c2~����[0����ѿ3���+6lX�L�m�XӺ�d��b�~_�c���x�T�o�E�XQ��&�j��[|7��y]l��[��I�¶�l`�Ss�?s��q��gp�(9E�6s+�ܣ��Qp=&���O�3Č��v'��q��&F��[%��-�7��{1�[4ߑ}B�֦���J��	�����Dkས%m�n~���`�Mك�p�7bo�Î�Q(yg�e;*�I��F,׌ s����	��į���<|J�� ����o�<��	�mH�?�yr7�҂[\I�%^��Vg���'����$Y�U�2�س�/2���Q��b�o�����-���5���0n�m�e��Ն���1��>���k�=���[��!�Ζ��9��ۦf�[�/<'
944
+�������㛨�`<k�Ba�&UA�mek�J+	�0�T�����Պ�	�m��`U����UJhY(���Ž�����sg�������G��;w��{ιg�%f��D�S���'�9D�x>��9ͣ�g�)훱�+#N��,$�Z��x{F9�5���D.�ㅱ�蜰df�rLVW7��<��[��ek`��2�}Y0��U�I���3mL�)fÄ�r�{���^�'�w(�_S<��
��X�2oh�1�}kz�끕��
�UŽ1�N��̝x���7�J��d�wPR-O��@f�I��$�!g��Sҷ<	/��nLR�u�a��Ad��!�����:�0�]�&�.�a*K���S��-�����PqZ��IO��ϐ�b%�}xOZG����V�T�.���)i%N
945
+��������n<���eVH�}��&��rxE]N��z���R��k�#�=�V�%���'i)MR]�����?D�#‹b��R:=��'*�- adVU�M)���&�HQ�`�ӑ��$$;�Z"�N"M�L�a��#�
�9v#6,�,�t��W�I*�6i��)��.�#k�#��	;�{A�qv�A%�
n%�_�t�^XJ�%�
��qIE��~?au�.���	��.@SvQ��Xv8F��t��^v[:�z�;��H�D�F��&���}��	��l���uk]��(�Sx'L_Ɩ�:�|*e��,���|���w�5�[<8!�X�=�6df�����A���QM��^|��:����L�'���Wflq�)&
946
+�*9�(W�?F�����#�4j�R�Z�F6��R���iP����݃T�Z����q�4e0��b��d��#v[^J-k�����K�QwˠK�]�lNp��p!F�zW^�z�]�����r��J^y�h LR`?�9�,�&:��_���7�n��ߗQ�'�ae;H@��>������
~9~�K?U$_Ѐ.�#,y$�]��vߕn�;P�(�sb �^M�"ד���ߦ��V��1�Y�f1$�%.��0�/?m4�@5c�rZ���N���ɾO�H
�����BR�d-_����G��Q�N����/��MuL������������O<ʋ�t��nj�f<B��t�c�
�\:!"z������$]rQ��p�V�VA�{�<h0A�{��S�������P���E�l۠�Z�.���(5D|v���}�Y�V3<����t�~� el}���b[q�� Ϝ%yK�:}��.~����Dj��I�Lf_!�s_g��܏L�~����C��8؝g���F_V�&��F�����Ux��i�@J'�=0���Ϛ�5<�'��oq?�l�Oi7
�>u+v:K����~�ï��y����=RL����[�Z�$�� �7�]r��s{>�Ώ��:Y�N���ц�`���Q�rBEHܱϫHf�E�[��X��x��a�e�q���6��?*Z`/v����j=�?ns��<�.�`G�`�<O:o$�*c7���`9a�Ӣ2p��F����w0{с(<���$dB������u����ba�Nj�u.W>\�z��bh�����L�d�"�F�Z�J�����YM3�]�+�[]�$Jp~�B�+,���W79�moo�Jޓl6�ï�W���@�^ۍ2di?�������;��<����v��6�YD��4����=;Ar�]\4�����;?"�_������<���eF~@��,�r����I���$8H��`O��;d�UX�i�ln���t8���o�<�9X#/��K���[8#ڞTc��d��wr�1�Ex����'�бRnAM��g����\��h}miu��f���$��ÏRl!�p�<y�e�	軬��`�7�]Ã�{�aF�}�J�(���9�������6bo�e��Ks�,6����[��-6���d6	����b�
947
+�9��kf��,';�+�*ӯ�����ۣ�P��f����W��R���b���!��
�4s|�����V,���
���bqV�z�W��!�
^m[��¯#�7\��~j�z���#_�?�
9�^`���Z�K���rO��ܐe�[�L|
948
+�VB�Z_�
949
+2f�e����<\fr��B�3�u��ܲ�V��$���bAU�n��6��\ �7�P؉��V%�/\�l�=z
950
+��o���r2�9+��7r���z��;{��>N1��)VOqx��Dg�Wy�9^~?y�O�*7��o�	�kn3�8�
Fu��\��nt�"9�)�f#B��d��YjN3�r�l���f��������|�]�,C���!x^ܴ�D�1w�-dm�;�њ&;�{��[xu5�k��Q���t	$!�*�u[� �_�h�����M֓Bp8T$T",q'.@��o�j�՝�8��r��d��%Oj�6p�*�p@ IM
Kވ�xA�@;�9o�S�L�du1�ݒ\\)A]��dT��j5�w�ԗa�ݡ���gg!Pׄ�`���CC(�bj��HU��j'��Ax%&.G�P�8
W�!�-�έ|����)����v;��$�ר�\Իu�Q]��@18�''��_��2�-�{7�~�ڼr�gA*���b���U�@��㹡%��ʈ��w�?�qx6�]�#��H�?�H
�Q57E?�G`�7��+[x��r���j�X=l�&��VK@iI��7Hj����ZH8����B�FOڹa!�
{��⹑�����۸�Ȕ�^�6�eqgt5
951
+_m�g
952
+��m�m�1�f�@��/�g`"Ԃh��nk1�"jY�Od4���
|ߡ}O��4+���f䝪C���}Bp>�64�\jH�
F6)���ޱ��~�ۦ�i�«7��؈��m��E�c
{@k��F:7r��-�'�
'O`ޅH$����E���<#i���xr!ZB��X��N��;�����Z���f?�B��z),!�e�e̹��-mqK�fuB#�'�l���]��A{#%���q�d~l��/��E�6!P��CN�Wq:�N	�qV{�	F�x~T,�����ĭ~���d�Q
�ITZ���v�$��+��{�US�@~ؒ��^�^E��/7�%J��L=K����.�80�
 �ծ�U��6�V*!�õ���K��>��X�Ԑ$̿��1��(_yq��æq'����.�2��*w|�`��V���s6a�������(>�t����]4�-��<J���E�ƞZp�AE�22Vi�[`���qt�.�uH�H��9�
݈�>�`�����~�_�:���Y����>c�1x-P'H���^��{��E�{I�5ܬo�Ӏ�&��5=�[���,H���/kx^dTB�r��2B�/#�Zs�zr����۩'w@R���O�
953
+I�hI�s���=_���W�50��D��c̅YIW���x=?���|��c��=�&;ny<f�$�i��W/j����`�:�5�B�?O�-�
��
954
+��;��
�u��O�E_�n��z���
����+��"r�A�~�}f��jk�m���~^�?#|�"l���6Z�ѱO�c�yi�Z��n^�jiI��x-W�Z.��2���
955
+ֲ��R-��?h�2!�G-��?����<�>�Q�����
956
+��h�f�o�fò�i=���@�h:�UH��u��w�EMl���-Z�QJq݀z�(V,�YM�j�G�x��D�益����e�ڎg����c�I�Z����`tJ�W�L}�����F���j�w�λօ�� �!����u��B��9p�D��k䵼B�����6Z��
��e�ʳ�=��j�Bz���~��cZ�,*�@�$-)�'e@�-�2>���":=�Ĺ��u�ԐH�Du���M&r�ze��A�_���q�%c�:�J��@��39��B��+N�?'ػ|�r�-\��p��$�+
957
+�1el9'
958
+ח�Jߖvã̌K?
959
+�S^I'�3(	���+�!Q�� K��KQ\	�TF��J<{E�S��G�<	�U��i�~�[C6Ru�vu�����3�nu�_��O�:�`�
960
+T�>J�UO4=�_�&oF5㊣�
961
+�J�9�c��$�#���B�̳���7<W�ҹ��b��#m�)萵
xq*Jf�T�
962
+��x�8��4'蒓�#4�JB�v�H-����5���P��<N�~t��:Fcn�gj�-���V�Sny�ͭ(�[����4.����ܺ�i!���IXr��0I�G��o�2�������5���Ģ�r���N�|�O(Z�vS�$�N�jx���w��=���ރ�3�e�T�1��+�ǂr%��n͂e�2����u�<��ݢ��!�GpT@u���,jĢ%�h+��RQn����mb�im�"7����u�C�u��Տj�@��b��|;׏�T>�]?)�CmP���l"��P���mb��tQ��;c=����W�lO�2��
&@��3�Ž(��6L����jj���S��T+����bݪ���*V����N\���O�x�^#�oca-s��NQ1��^��K������x��{GP�(5L�K��d���lV��]+5��rl�\�^�H~(v��0��Q�	v�=���і
�Z��T�"�'�]��:�n�I1p�o}+.,��q�.�B�̣������|u��Ca�=-*�b;�(��̵ӎ(�-b(�.f�:}�'�� ���X�у��/�*�I_e�E�n���*�*�IE����m���`�w���Lu�!X`�G�n�S4��#���h3k���Q��Pv�o����l��{��ɏ�[�؉�/�]x.��q��"�H��m!��������my�i�M��nu:��<\�CW𰱎�V�>W^öo$N�3���b)�'�Q1��TJ��x�[V_�<N�|].����������P^�N�g[����+���I�[��qj=5pz�7��٥�)D�eT�c�inW@y9g6�	Vn��H'`����~W��*��&XH��%�pF^Dk`O��P�[p�]_A��@��l�^�Bcg -�`G�!� žC���_�RL��r���Ϧ���5���f��@&
963
+�B�
964
+�|��¶�x�
965
+�B��v�&P"՞��Э�r7�%�b����V�������P���[x8�9u"�(�5�p�t���l�Rh�Qjl�+5N�uAŐˈ0���9�t�h�7螄3|N�D������܌WVm`��:�N�	�uB�fG ��7��r�N��F>lu#&.���]��5|�zlbh�Q���.��=�Xf�(7j�
J�`>��fQ�3��ǎ�G!�	]5N�F˧��/4��X)�1�RTX�{��a�� �/ʛuA��p��6����0�8���;-�~ظ��֏�Bp
966
+-
967
+/������@�^+ց������:`Bپ&Z�[״�x���i�2QJ�-4٘���z<��ggܵT�>/12���=sm���ݙ{�ł��Ο�d�� gå��C#�"Y��&��晃�Z 3�(|T9����_��V����ex.���5���^G���'@z^IMm|��{��%A:�(U�3u%�pL�%V���ԭ+��bhz:o�r%��b�p딨�,�e�g�
�0z2	��3�wUxlaiY;W��V"�ܙ���W�0�a�Y�|2��OG�ڰbM��!�XI�'�2`B��h��p̵�/��Z����ޜ�7�B{��6��)}_2!�-���UR����<:� \7�Lݘ:��9�#%��=�nw��R�V���
M5�֟V�������(��-���P�x�q�/�+�	��]E�G�W�l:�ӿ��B���q��$G@�
968
+��߅�+�im����������In�Z�f���ѵ�&�&��
�0o�C���H6O@����H{���8v�|V>�FV�I���:T�	���
969
+��[�ҁ��mr�=I�*Nw�W��$�I*���(��P(\�s�T��g��Cш��%H��s��4.H�u��
H̱ �rk9���&��x�H���2�����Ǖ���1���-E�@����DB�[���[�]�B#O�O��@����k�F8Ksī�x���=�����"4�l����'����$x͔��r}�~*W�gM�oS&p����e��x��������A�X�߇ͱVj�lmV���͊�G?p����:w�E�g�CN�-,Z��B�`��BO�����^`�%�ǀ9�(8Iz;���>^�B3K�}7s���U��_�w"y���N{�������T$,D�49��B�\K���\gI:��)~I�izno���8�L{��F2����^��th�����+�
�f̕C�(F�w�{%vM�]�_�:=�ɶf@t���ҕm	�T���7�l���M�[ׄ����I3	�jTZ|�[<3=NGnf�φ�l",Q�l�p�p'e�S�G�N�m��͆
970
+����s��t�j�
_���L��y2�͞��R4��@�tp(b����r���ҸW����`�op_8�8�f���{��>_8��=2al�U:�m��BY	�?f?�Z���2�V�
971
+r�to�~y�Bʋ�C�y�y�juP�^��ƙ�v��N7Q�@f�Zzh�>��^a�>��9
#�+���/�#�pa�^��{�0�&Ԇ�k��Da�T!��Mj{����1n�*">�U��z��+x#� ���l�2��.Cݛ�\��%��&88ެ��}�Ё�
MF!x�Psl�Ό-�Q�����B���‘�K:#fn�ʎAe�p����_��ǐ�;|yT_���8d��:c�t���R!�=�uơ��~g>+���3�w�?��2�Si�x]�F� �!;[�\ �w���•W�_�b�$�m)����>�'��nY�xp���E�g�3����/��.�%Ԩ�Hؚ=�.���ԖW�s������v�PL��Y�A�Ý.���l����p`}Ju��y>��r�ڬŽ�uF���\�1s�����G�x$��+��aU��@��%���P�Jr�:Vje�>�4э��l�@�2D�˩l5�H?CgkӲ���]�򉬾����
_��0��)9��&�|�V
972
+�C0�\y�=׌�w|I���̪�;B�+s���llȬ����+s��ݕ�c�w�f�(j���_��1(MY8���`���t��������RS�8����cV-�1R��넅�)+�-\5�x:6�r5�Q*uy�c�]�:1s��P��P�C�Z�jrN�*E8��+8N.E�+XWy2��O#�E-�S��-�]���Ɏ)���󃃐�!B�q����Peu�{�q_� W����ŕZǟ��zN�CR�>�YC]��?�&���J�P5Sx�:�ߢ�4�"Y�a~Or8�e���������O��O0�Z���ag>M�K<�D�9��B����cL�X�봗�������x
973
+��'�|�n����r�
�rlb3yB��5ɭ8b
974
+�����S�w	��,j���*�ӷ���℉*]
$�zM��/Ҿ���M�������l%�;�/�
975
+�c���a.,D��R��pp�����3h��L��)�I�ׯZ}�/��lz/��o���?E�ԟ�aޟ�p��>G�?�,����p���@��79J��BDi��S
976
+��8�%��4������o�72S��G� %M$�Zx�_�`D́���؋_���e%ֿ�jф%����7|*&oYsۘ
+(�}a��$�����s
977
+KDS�N��]Q
978
+\=�d@VF��ƏԹP��4w�2Z�4'�BԄ��s�[ם�3PT;�(T���W(L��@�	�0:�l��]:z�`n-ʮh1�	�+��5��E�s�2pA(���%����
979
+F12dM�5Z_j�"��:P+�w@q��c��Q�y�/�2�R��}[���;A�i�1��k���8{�.!oW�޹�|��y�����]���B���ڧ����@�2�X�׎F]�l���f���x�G`d�G~$�
�2d�]���59p��n%%�rnF�p)���g����u�㆞a	�0ٓ�4�ʉ�k��)�Y��U��-��r�ł9p��gF5���	�9*h���0yL��D�9�q���LX�j�@��yQ|��cm�<��!��N��Kݘ�m����jsK�n9��fBRm%|�Αi�9uF����a.�3��	=a̜b��⑝�=�c�Vf��O	ΣI_�)�%�hJ�7� �[�?m6��L?/̵�jB��>�?JG�2�{�r�C�"*]�X��?fWP��Q�*�����Zp�@�:�W� ��U�kF�&3��L�.j�1|�+�~S��m=~m�X��|��CFv�u�Gv�e���dO���)���Y��>%��S�m��ل�zA�� O�	���H�:N�$�P�>WA� W�i��+����Y3�XK�HA�0��AT\�)J3ʫ.�/B{2��p{2�E���ڰ��[�~M� ��-W�]�0���܂_��$�K��h�Mf�+�ݴ�d���(PM@Tђ�mH(��
980
+���
�_/�E@�Q6~1�d�^�V���?4���"�@�R.QF�~1a�Ǩ�j���~��(m��}�@1�~�����14:V�̒�lzl+����-��З���B\����{	�Lf�#�lW|��-��l�7���nϵ��kh4���M�aJD�:h��W�Q<AK�l����j`�B}�W�#�~�����3�7uv�`��C�G��B�d<aAB�.?���Z8Ȏ\��?�s	�P0�B��'b�*�|2oU�iu~+õ�Rw����{�M����X;��蛙��Z~J�
981
+���R8���Q���{�h������&w5_��b��r�X�ꤰ�#�[!�~4Ei�
!_�EGk����O��OH�E<dB�C$��Y�O��n��w9{��o>q��o���]Dg��xC�LMh��/�l��q��:�8r"�Pp0�J���k<
982
+�|�	��P{C�,��	p���B�<5<}I�J�׼�s������Q>�xK-r�k�mx3+�g�BY��F�Nq�/>��qG�z;���s�+g9I�d�(�k�Q=Q�H�O�l�վQx��#nT;��>V%��ޛ��z}���+]�J�F�7�'G�����>";�!ቌ��4"�X��5���b�'X�7,��+X% �l���|�j��b�>ߍ+q���SE�Y�l���.r����нo�!�6�_�b}@�w|��]�����d�w˿��g*��{Y�{��bC���H���@n�.�ʡQpH�i���|`�Z�[|��o3|M�W�_�T�������A�Av�������zJ��(��2�Bvff�o�Wn�S�R���-�R���E"�AN��6h$�}�aFV���i�Z�2�fG/j���!���S,�������G����\t�.V�m*Zq��a�������e���.E��yN�O�����l<�8�|�Y~�A_���^���_t��R�E�2���M�u��_z�޻�(Bז�쥤#� מ'P�t�Z0p�\[�����^��+�d���!nT�����|�=�.��A��BȐ1'�N�LZgw#tW8��kP���ny�AjH�Y�ƺ���wo�@�%"������LDL�z�<Zf?,N�?�C
=���v
3��Q3�9E",���;�{(����p,Xy�џ(�uA��3��/�?d+���e��xj�᮳$}�X�1�H2��'����'6�-;oC�<g�|�|���Ȅ���D�{�`�3��m�M �ʘ�F�u�l�_������z,j���Q���x���٘�Qp�[jI�j��R��dDJ�|@&����
\6-�QN�9lR�ɶ�t��`׿�0���8�i�\�������E� ��g����؟WQ�؂��pT�������4Bu�D�!iX����vn��>����0^}u�V�}ͭ��|(*�x]��F����W�0_�զ����뀞����ݴ�Xg����z����A=�ø �w�������1�'��@�Yrb0�>�
����3"K݊O�i?Һ�n$��N��V�D��q^�oPAZa�ա�ͤ��+���ں���YI�6��K"��}U�T>�O�f�pI%%n�W�xٵ����1�?H.q+����h�W%�[�Pܞ�T3�9v%��H��O�>�\,Y3��Ph���gK���0*w�֖���xO��Mt�����0љ�s$�3"��J���y����޸U{�fT*�)i;Œ��f���o^g��,���j�v=������%d�\��
��]&����[��䵊��F��wB>���*ٷDO���T"���f���, ?V��#fV��PJz��Qx�cå�܊<Hv;^���i(UZ���BcԸȸT�2Dk,5pX�u�Qf~� �dA���q l^�<���nɎid
983
+���%���dw_I�<�_[Ax.�g�E���o���� C�xJ	u Dm�����Mo<��7.��;��F�a�f
984
+�x�m��3N���9������&WqK�����6��Ј��kgv��K4�k<��w�̤ߜ���F-����E�4,�`X�����M�r�g,��$,*�+ScM���1�����n8��}��@咣�����?G
�QyHI�h�10�8�~���Z9���?�+)s]/006��JH���;yc�9?����O��I��-ۋ 	�N}�7�Q���)ɶ(���oW�/3������зK��鴵�~(G��tKG`K:`�/LԺ��礵�D�?4�z��z�f����Iʘ��e?@%������&c?wG_�,���FJH���a<I�?�1�m�=W�BOSyV��>}�ی��s�JU��=0�u���М���!���:B.~�v��{hG�-��w�pO��vZ�Sb��1eH3K獪�Y���7���+��!�g�..6	A��Θ�aس����,��� *wh���@��Ը��ށ��ׁZ���+um��59��Y��he�W���{8���O�O�t���ʟ��*	�Gx��,eo�K#���C����NU![�b;�/Q��j�#�:����8���3�K�z��	���A���\?����������v�Z.ȓ���OX�ܟ$Ez�G��;R��P
985
+͊�*rMc&뉨��w]�W�;�_���_����
h����z�]��?�~�uz�:9{7b�T!��.Z^��Gv�\�1��u�Ջ}a�����yPX���6�7��V�<@��N�=��n.6�uT���;Sɼ�Y�\�uȝ)~U���ɓQ�ƠX,�^Tn��
b��Em㲭Q6��|���s௺��d�H>͆���^Y�B�X��p�Eم�ݫ����a&������p�׻�vC�d��+�Qw,*��=�t���,-����:�8��y�μ/rV��+���W�(�����
���K��Z�?�쀵�4�v�<e(�i�q!��d�G2��G�E�9l������9�B�Nf�nt���� __Cc;��_6n��>�Z5��Q�Q�y]��ߓ]x%����ёY��D8�ʮ�'xJ�JD_��r�T�;�D�juk�+�J�_����!�X�R�+�G�P��[`9�Q�O�oWr*s�jbכ$��r����׾����{�\?R�l���>�o����=��<+�o���y5*G���V_�4%�O���zKw��z�z��{9��o,^�@���ȟsԟ�/�kt@��m�x*{�IR������toahݾ�L�g�F�H����v�Ad+i�7�В�O�2�G��|;u��@p6,nx7�;����
]���v��o�w�e��$��.^��P���@�g�x����G5B�sY�����%�}�E�xe~H�ح��_��ETg��.�Ơb��>�'��X�zk�	�/���=��15�^k��NGC��$C>#�$��,�L�H)O��52��JC#���"a~����,��(U�Cw�8��xhge�@�]�N������3��4�	
4	K:Ų�w��=�_�ƉB�d�˜�`я�Z���*�n�����JD����m+R��ZO�}��Ey���N�ړ���u0!���ܱ���?̆<tJ��m�G��Z��T�?pW�m�!w��R����]��a=’G�X�-5�0�%�>��*Rl6�F�摁���עC�W��~NtJ\PM?�͐􇴿Y��IG�I�9B�)�άwB�u��K�2�V<8],N������&��Wp�QA�J*�p	�j�̍�wє����O�<E6���,���*�'G>4{�ȩ�D;lE+6���B=t�nz�Q,i���V��������#���9�{_-�Z��!��A�|�-���V�q��{�2Y�~GARWmU{aO�m��8Me�˭��F��2ȹ��V�@����g!�2�ફ1
986
+���xH�{��J��0p����C}6�r7��$m2خ��~�$����[i����jF�Ų8
j�A]w񒮠����x���b�n�Bl.
�"6_R��.6������-B��T�G��T�8�]����5���ֶX��#��u�'���!^�`Q[�ql�'N�����l�B'�t�"`#��
987
+���y�D$����7�Rg]:�����es��4j�"�����z�w-ڴ������f,O�-.-�\�V���g	����7V�s*O�4��.)�B/�'���.�bӨ�~��qx�� �x�k�N즇k��~x({���@��6�nF�3�{ԇ��`˷���H���*�t4�{;!x��[K��[I\l�u�N�%�ϺJ|�x1l�7ѷ�2"]̔8srCۘϮL��%|}ߩ��9�R:X/�5,��6��y@�����+�?c
988
+���M��)ff�/��6�$�h.\2��tH��Oi�o�)����bg5^R����F�V>���s��~����ͦ�����b���._{i��ڵB�I+�b�mc�'Sy
989
+u�����NHEL
990
+K;Q� ����!0��V՛�d��7��^����:�^o{$���m��(l{R�=�Ԝ/>��q�������q��.���T'���A���2�1$���/]�BV)5��#10�'���ijnbщ��V�p����Mz�){I
>�Qf)c�l���ΐ���d�/�jSWir�*�>�ROcz�WmNP�E��8
991
+_|�g��u�(C���9Zgx�2P�ox�����v!�P�K����B�>�3lk��?e��^����S
992
+2�2�"�<�g}�u�C�`֗�x�xO�:C%e���ȋ�Ul���@��x��Zg(��7�N������#-t����NC^�D4��{2�0�S�\�W��4p�/1�濕:qs�*4��wY\�iq���:ߩ��|����:_u\�k*�d-�����Yߊ�Z_�2��u��q�~��7��!��ﳸ|w]�Şq����-��ݦ
�|���U_�ok\��q�����/��%��+ol�O�˷�<���%��oi\���; .ߋ孖��K���e}(��=H��)��k9%r�/"\�^o&cl�N��E��@�=>Eؗ/ ���%�d�D���)>'�?}s=�y�r�Ҁ���v���r��_��[��t5���Q����1�d�#
��+�Ӝͽ{�����Zm��u�)j��)��:ß���N_�5<�:�J�@q�w`X��!��9��`��E�P��Jf�kU�^r/y�&��H*���C�S�ִ�Ե���g?�z��\���M��ԕ�Q3PW�5�2�TC�m�s$�d~R�#���Kz>�zt�N~J
���E���{"���&J�~5��rC3�X�
993
+������wB.�aC��V��Xu�Q���3������5Rv;&�㼅�Ψ�k{�+Ȃ�z[�*tV�w5VE��;���_��S
994
+'~�?�Zg��2|��;�g9WǦܲ*�rhn��8.ߟ?��$��|?��r�P�Z$b�^S�������d-�t��'���/���k��b�'�A�8ۇ�(S�Fɣ_��(�c��<j�hH�6�$*���m��൭��%*K߿>M��eD���f����$��IH�
�۴����֠�����q����W�xqݟ�A�=��@�t2�,F�
�c�%�-�f�3ׄ�E�,�l�Z�
995
+���^\��4�z�^c9�H�ϫt�����%n��s\������r℘��X0}>���EP�RS��6���Kqɔ{P���C�*a�R��Re��ZM�m�z9�J,�f����WlCr���T#8��Lwh�t��7<�ߥ�?����p4!�W黽
996
+�a�H)���n�^����5(X��#i�b�~;�W?���Gu�;��6�O$̌D�R�c�1�������]�o�ο\�7i�5b���Kb�+��[���=��wR��8!B��ڮA�����A��R����0��f;;=�����J`�^���I�₩�ϡ�]�5\��h�)��%30d���"T9f�!���)*cz���0�x4�d}`��9઼���:���ך_��6BP���!O۴yy�
997
+«�s/�-�Іq��2�/��Y��_���G�>�{e���;{Y�,�N-'ԩ^X�zd�?�P�#V;��#^긨G29^@�oN����8�pv]=��٣������q+짾���c��U�r�-W�=���o�)P����Q�Jݏ%�fel�X�;;�ᙴ�خ�`({�6��#��[ŽX��?%����Ml��
998
+v��"���o�n/\�+{�S=��9T�-�S�M�.��6�B(��;	v�m����=���EJ�]\n6�
999
+�i����RC�m'�L��1��X�V ����D?��M8��=|�1��>��o�n�A�n�0�qsu�$�P�~�EK�
1000
+�x�H���ټ���E"%s����PU��Qlb�g}\.�IW\���f;Sزܽh��g��M����~�����/���9Dy�d��%򣳓T�Vq������`�/�QA�j�i�X�g×,��+c7�
1001
+o�^�YH=��l�;���
1002
+�!Dp����_�=�6��.C����
1003
+�2���j
�E�BL@Q/G�r,3
z�,*���6Kuдh���k�E�ҹ|��yp����B�q����5��ph��zMS%�u��W4����KZ�}����G>��І2X��pM�:m�P\�YX��<�?�rC�2Œ+�X�%���w"��芵��o<�ݡW]�<�F�1�H3�c:}�1b4�cP��N�4cMĽ<P���]�o(H���&�h��B�����ě�-\Y3V<,�U�%-5ѝ�TB�'V�&��U���3�e��YTG��H�Ѕܮ#�T����I+��c�]\�3��Q�4���MW����1+�}�h���P5��ǷΏ��
�;�#��ȧXd�S8����Tw�P>�I����~B�s`�5���A]l	TD���Wk�÷�O?#��G�4��N
���'i���V��O3�h)��-��z���(�u�.��g�����"���'��vgkMy�X�%Ѹ!r�boʈش����&|	����F�sw.�)�[s<N�:]Z�-���o��bF�r�e�WPS^�H �dIz4��/��m�,��Y�)��-�<#n�w6�'��q�i}���qh��q]�sIW_��V9�6r1�@���W~�׫���j�Ao�?��kѥ��/�k���c�B��HB����+�7�o(kY���<nIxC����ۈ;�`*�b�I7eFZ
�s9�	<?��`F\R��^u���z���o����TQ6�;f�H���Ae�����i���$mk�
1004
+M�ơ��'.��+����K�(񸻱���8`;��Ѻ?��~��#�rC(م����`ȤMǿ�bt>���;�Vꨄ-����8��Z��	��"�I\S5�h�B�*p�:��*�A,�z��!�����毸�N`E]�q�r�vT݆�b[�s�jC���$+U�>���D��x1˙Q�&O#���%��иY1� ��0/#m4t".�%E6�<��K?�0�zc��#��kE�� �[�?�u����;�S��=6A��4G�Fn �	=�8�_�nu���d`7<	��Ǖ�C�x�3hgq�n�P�o&j�!o�9MG��<R����90�h��&0�87�lQ];�o#=���t"jJrf���[�kO�{�
1005
+bl.��F���r�m:Q�E���N߁V�?
1006
+�f3�^n�a�Er�?��d��0`�&��Z�
1007
+\����j	��M超�E-ی�R�n��8˶�&-� ��Vf[�,�ϭ��
\� ��e�JmZ[>�$X��13#�̭��B7��×���|$���8}�8<(�K��8}�:E�nz��\�Y�>S,No�YN�+����������ɹR%lۃ�m��/Y%,N܃U(�둛�DĦ
1008
+,:�͕� �N
1009
+om�F��q �sy�|��24�a)�5A���̂��M��ѵ�i�H��-Q��c�#�(����V �s*Zc�O��lp–2Җ���A��P۬~��&i@�͘MN�pe�~3'���O�A'U�A�������+:���'�ĩ"Q���6�sk2�	͢� �?�gţ����__r(���/��;�4�s+��Á���:�����n�	����jܡF�
��ϑ���B�kSp��'�"/F���~G<��'����Ab�MܒOX���D�������hA1܅�|L{��q!�+^����qg]�;P��4�v�����S��ùY�A�vͦ���0u
9�w�ZGj��հeԕ�Ȱ�zJA��1_<׹�\{p��j7
1010
+I��!�	
o� s�P�����3M��|���[�cG��>֢��>�;s��K�R�9Ȃ��
1011
+��re�<K��$j�ːع�0=lܠɴ7�6:�w����d�a�N�����|�(>����f.ٲ��"ŒΨ�I��{���C��^���0�.<.�r8Oy�,��'�7r��QT��=
1012
+�l�tN�σ_(�_G$�b}�[4�<
ө�
iF
��D�c�GFn�in��!���r��4��)�#fM弅�L���`/���c� ��2jg�M���G��Ej�|[��]x\��Gt��r�H�g>��0
R�a�y��;�g3�k�jYΜ���Y% �p>lZ����"��T�^+����Ha�2����D���?k��vc��؊UZ��&�0��E�C
�'a����f<��n�Z��^���59h��Q����c�s��륰��P;sڠ�S��S�2����,#�����j����9)�'�c�M�b}PgZ����0�c��1����d��a\�E��%�����/��x�P���u�:f�\�񊶌:��غɴ(|��gK����)W�����:��}��꿩p]VtJ=OY�Z#t��o0'���o#`�I���`r�$r���S˟���Z4��B��xaa�h�f�>3i��}%���nZ���|4�$ ���P@���1�\��-�Z>X��K��hb��%Utޔ����A��Jʋ�ίr�<�6R+�*a�d
�O�i*�=�,�`��w�����ʋj���EC���Q����b7�`��FC��@.�Q5��kr���F�U�#q+w��66�0�>RFP:��˥$c�g�d��E�1����T����f�I�w�4c�S�$�+kSvr*1��x�G��<f��Xrh�e�h����Hk���K�'��n���k��X��l+%�<�Q�W��d��V<�x�~����c��l��i-]j6��b>%�m�}H��B�y�5YT:y�>��0�|�}��:'��G�]��kչ�1���<�Yˡ�_4k����gWp�6�0��u�y�uR�Q� U�q��8��E���ߊMt����Z��V���A��7��?zC�����}?3���.�g6h�A��9�C|����i�F��؁���#@���X!�FΙ�}&���Pzj����7j��6�)��C�9��>���3�=m]���*�]$����9�h�O��7���)� ��?Y_��.�h��?݌��=����)2�%d�H�(��}�>�(�òV|Nw��,��e7e�1zC�\��A����#���T^7�0��]�I�|��
1013
+�!�[[���3�	��I��A�nALZct-�ote�;#���Bc?G�[CcWK���Bck�ƤU�
1014
+z�k��s��N<���!/F���	�a��j$��,�X'�u.+�����h�MWWpѕ1�o��ܕ����u��Is]�Y-,ܛ�[o��F���f@R��̍��s��֟�f�s9�*��"O>��=���ѹb��#�������x!�-��-��	��Ք�I��rt�'��0��
1015
+�Ď�Y���'��z�����!�g��"'�=x<�[�x�k"���(#���!m��k�����=&�qҗ,�
k�\+��rk��j��^g�.�V���S$��.+���]��L����O�1���}�8*�4n`p�v�<��?��>j�;?�qA_�u��[��x�9H�ga��;��3��������P�{�М�R�ax3��-�jd����B`�N֘��`�{h���)Ƽ�`��?��I�4���MC�&3��Qr����x�D���G����z=�:~/����S\���&�h��D�||����O���!o�Mp;`X�B��3��m�·B��	���ܤ��!�zx��.�=B^�\�ף���y�����I*wo=$���$�r�[���@'��`�
1016
+`?"0Р���BmC��B�hB7�>�����|eA�i���nTCޱ�P�I}��q�f�&�Ȼ0�P�9�n��&���Uȿ��W���*�9Hú�F��l����f_8Z,�)J��������j�w�Z
�}�e�Y��.���#bZ\�
1017
+�Ѭ�/�� ~3SX�Ӎ3�q�'��<6"'M�B��++����3�	�B?�tޫg�z�#Ǹn+�ԭ�<I;�r�ܐ���̵uδ�
��&�������j̿ �Vp���̆݃��(Z�� H�]&�=�>t�J�z�c��WY�s�=�5ft/u'�z(}���!�6k�����#?�H�1=#V0�t#OE�9��y��Z4$	˪�|Ӭ����,������ˁ��V��Z;̲�����w�	��B��#��Gܿg鵋ho�/��sC^�Q�b�?�N�s�4g����SMȽ&<�u�Q%��G��mڶ�C���P���g��,#��О0CXѵTQ�A����_��g�Ҍ����[��u�#>%���ߢ��&�M�ETP�fa(��8\�?����A�q3�4[1-	������54�� ��絿9�K��K,�ȷW=E𞫍�Y�E��t[mr�y�6�.o��jW����À�z]t�jFJ�9fCf����xnk�ܿ�E��f�<M��<�����j&q_J��',៻aC�K��/oO���p�ʑ<IƤuM�ݟ��̆�r�28s�?a��x7���7�}����P�����-��1��v@�u��l�F�ERQ�"4�i�I䳏�0�@{��=��j�u������jȥ���a5����|��q��H�b��ۤuV��|�,��FqV�-B�#��X�.��K8�GRʠ�P��tw뫹����仹�4]l��E��sW	K���?�j���^�bR�I�4�9.p|�LU�)�t~.��cr�@ƾG�L�r;��fکyBi��8.�I!kaoGS���Cc2Ns���?�-�CJI$Tų������Ѕ�Jct�0>�6�;ܽܭ�
$$��+/�O{e������Ε���@��8}`���KY�ɠY6�fk�h�����TY�OHyI�c��b>z���.���@��3GZ����8��w�X�<*a�!��z ��j$��p�AJx���;�[b~�4C�n}H���ӵ.���8H�˴�eᚮ���Q����i
~�,	�F+��O��c��T��b2�/9�����lD� �D[����ܙ�
En��V��� 5}�p��R%���;��ƥ��\s�0��0�!o���Ӷ0����o���{�.Y�[/�%s�"�c
1018
+���0�Aq��3x��~v2Z�Jf���Xx4:E�Ln�]�Q�Z�J�<�Vs"N����%�4�>�𷴉��G�k�f�kc��}�k~H�W@u�V���t0�d�7hn�NQx��Z鯰	�Fʽ��h��bh�-���j�_�g�[�Ъ&�PI^Dy%wAY��t�J�G8	rUI���_����D<��X3|k�n���^S�ŜI�#���"� �6#��X���ڿE���Yn����6�$�L�I:ALj��!��z�e��}��3Е2�7�8��u��aߏ�`p7���8`����a�1�
1019
+A�.�v���H_�3�>�_tv�n1�2"k� n��:6.�{x��w7L���i;�ˢB��g�תhB����I�Vޢ��O�����:sX�vo%���B��c���[�
1020
+����-,���h��fտb2��OY�:�t�(Q�<��`���Br���K;�Q�Q`45�
]�:�n��]����?��٭�]�`9�g��m�c�U� j4�n�xڎ�W����m�5�>�Q��}_f

_-5dμ<W�h
�����y�@�pyhx-��:��Z5ڗ5���	'�����}T�I_�G~����W��?����L1�0N�F�#�2���rw8�a|���Ȫ[a0�|v
�p�txå��}M��7�#�YeGV�<�&��?I	�&X�=�ұwZ�;�ء������@�F��<f��vdG`O�u�԰��}np<�'(�=Ϯ���ݛ��	u��c2�e�΀qܵ�+Cxs���Sb��&T3�NM\~3Y�l��C7i-�)#+�)b��/����j�eգu/$���cKb�L�>���SR��h<�&d�ݻ������
1021
+�]n�X	�>��x.+펿��"���}H��tބ��N!9�u���9Z�a��y%��k��E�z�O��	.�h�^7a�N��$vX����m#�\���
1022
+�!�húF�6�
��V
1023
+�z$�[I�����67�l��<��H�1�3�!H����?
1024
+Y��*j��Ʈ���Ȕ�e(���Gw>��޻�D_ Rz�\冒G�f?��vWa��D����`��O��d_=�4��}�[	�E�lU�kZ}�F��Gs�=9���H4sd�Kh�	���l��<=%��$z�O7�S/xJ�''<D�M�EB��Bs�����)��ً0�-�"����1��
1025
+
��"C2<��E�7(_��ʫ6#�E^��~�io�i�Ji7�W�ы&
1026
+�ʇm�*��f��~+�'���/�a�P�ŒR�p;Wx6;��|��b���^��:hg�
1027
+*mr��VR{�w@l���s�*i��u`\t�v��1��!E��E�G�\�,ж�B8!��T��ETs[t��3��E�j},}���9�o�ҡ>�"�����OC}��d-m�L{x�΋�x�Gcx��ʯ��W����+��;�����~fZ�����7�@��	�߿�����q�_��魾/���~Oh�}N��;r�h�E��q�[��Rt!p�'���������A��/5]r�|�.�h�sd��*��J��%�<9��XqĜ�[�x����	 �Y�<$���:s�/�3��_����$r��D�&������O#(o?|^���}����j����{��U��غ<N�����r/��5֗��4��b�J�r��j��z�h�Qʾ	��:k��J��i������hz4D'�}4z��H�h��X4�ӹ��}@Prb1���΋�.WH�]�Vn�O���T=�z�l*~�*�d�&��I[��ǤA�ݽ������:a�	���%�]�B���qؽ��2m����q����U~@D������r��M;#V4��
1028
+�����r��g݇�O4�HvB�l�'��O��D!h3F5��[k��"R���~fJ����5���vR"�{b�X��$*<�w�ѳM���X��B �?���/��2i�s��H_T{�v���Ҷy�Q��>?��Ý�+�>^������}_$�x^�h�\
3���A��	l�;@�K=\�!	�'!��WAβ��a�G\�ۣJ���|͡��Ȇ>G�3�|�Ti,��,���/���%��a�kś��k�
2kI:2.R�{���E����#z)�/�K59=���Y����"ƣ�I��d��8C\����DɅ�P��%q~<�>����7�i���5؃��xڀQz��Г,R�{�*����3N�Z#��=��s�I잴�e��4R�������V�-�f/�z�#$`V"qˮZ4���Oi��Gg��aQ%:�YT�T4	r�]/)��Y�3Ж~Q%������Q���
(P��c�ܿ̇Z�ٜ������t\��h���P9	ˍ���.��W�::���rsy{�b9GK̯R���
1029
+Kn�k�cW�ڸꪯBH��H:��$,�H��������u����b�o����
1030
+�(�7����cf�����F���9�%G�Z G�Ĥ�B�������f�	*�%4IG-Z��Ƥi�|A:`KZI�-ݟ��Z�y��%	�9�g�t��L�ݷ8E{N�
��0�}	�EF���]���O.|r�S�|VRԿx�PL���4�C8ߟ"<�T��k�{�W=ؐ� %�_�tJWQI �&"8���J-N6:Q�S�2"H27Lj=�\N��?�k5�dW���Q�1�(�{>�g:�vx�:��˱�ƞ̖��\�\`/i�^]t�2AI��h3w.?�!�"Fq�V��v$��s�
1031
+h��-���J�?��$���bw�vޞe�n�(U��m'Ő��ꘑ�o/.^3J�����!��<�1xQ�C�^u�U:e�=�!�RC��(���ܽb�Y�W>.�b�G�n�Fe4dw��#t=�z��p���*#lJ�-�eV��#Pq�;2��|K�.��]�_nsq�w���Uk�V��y�{V�e�c�"cw|Q�?�+o�"�_�+���9�bB���
9�_n�ய6���x*xq�K������R�/�Iv����<�$H/�J'
1032
+<�i��]W�o��"�/�`
��1k�#�ގ?��V,�1�(�̎D�֊�*��B���/�5��
&èˇ�?��B]fcP��Un�F�/�S��;�阮���a���z!R���h�V[0t�|4��`8�._�1z�D�aEa���Ի���Xc2�ً� �C5]�o
Z �}�S]��8����qn��cM�]U[O�l|^���
1033
+��\e�
��}��g�U̱QS��]<�p������BmSi�5(�74��P�
1034
+�z,�8�7a[��=���WD��X����[`&����Y�>����ϵ��[������q��O�K��ƩKnAM6�9�����@���E��D˽+���r]��Dv,�-8�m��z��`��J"<����2�Q���Q�b�I�rh���"�!O�i#R�&\����/����ڲL��o�9 ~0ݘ�u�!X�g���~�=c��V�Y&�7�׎�Q�"^�K>慕��e6�^��	v92��!=�U��[�xX�.*��{wԘh�t[�*�<�D���㛠]�v���K��uy����o&�����"����S���P�Mb�۳P�x�#��-מ����:�y�ifWB�����7}�s����:�������!�Mgt�6
A8>�!�'}��ù� g�o�)�Kh�C�}��v����Qq��mש��:���<n�؃��Ώ��X�t�p�]�5ȿ���Z�&��z�?�T�6��I�759�D����E�|8fSu��ӝ�qT���Ⱦ��� �> ���	[آآ�K��x�:�g�g�]R���
1035
+����b�A���V�5HMϺ�E�)�K�5��5 =�q2���&�,�0/xؗ����(;q3J��=掄z|wHMs��cPI���4���)Ux�ڠ��V�x�)�$;�F������RS��2�i��
1036
+���P��=��I����@��C��!s?ŀ��7�x�e`�oF�pY��DߦPV<��6�|l���X�.�@q3��j����'��q��e4�
6�swL�k�
&�5qּ>��1��Ek�G�;���JW�%B}�W��k�뇴QZ�N���t�#D���x�yM.�g���sT%�u}(��kG^�W�ڍĢ��H�\�=�o
���/[
��[�()���y��� �O>��㐄$�H�Nr4�����}�!b%�5jF�	�.Ä�s��Ń
�6q�a�r�RF��x���[o|�g.�C�d���6	�P~��h��K���C�����
1037
+MI:���fd�.,�
��9tぇ�3r
Ɲa��E���OMVDp�/e�6�j���P^�t���
1038
+jx+�z�K��*�s�\G�yX�N�W��X_�d��s�8�ST�M�fa\76kQBc��Ds��:�z4;WOI�(�E�*��G���yC��d�Pr�"W(H�/��}��Z��]<~-u��q&�I
	B�d0�+R�u�4���]r��`�}tu�M�t�����r�
�=�0����z����ӻ'P��:1�ڟ�6�NTm_�9��˖�L���/#��\H���V�n��$p�Ó�%c�劌�u���ҁ�M�f�}����F�/gVn����9�� .G|���9Y1䷓T�aa����B�r�����
�!�QF$�^�}��X�G��O 6! �0��� NiI���n�M�w>�����.�/�c���ix
1039
+�
�N�����GP�6܎~U�1��p�]����8���OAk��9��5��{���к5v!pTQ|�44C �'V4���`���:.\�ZxcT�1��׸K#�<�Ϛ��ysRE��b��rkJ]�����H,=�x�����gP>I0?Vn���@JH�Sxg�?�"i3T�'o˨:6��Z|��{[��1�^|�~ŝ���ɞ���h;�'�gSD�&�- �\��P�X�8��Ł��v|�ﳹ��j�W�^����I�f��f�K>���2��Л�_��{}Ф��%1O��-�uKG��Ǚ'���5F��n���^�C�p1�xNٌ��n��JX�ܲ��k��!c��n�⽔�>V�o�?|�s}��0&��@
1040
+Z��\�2a�0{a���
1041
+��t!��]ˮ��l�	ϑ�noh�
1042
+���C	B���xQb�m��j�{���X�õ�F�Z��X]/��O����:�.9B?�$s�-x�E^m'؀��I�\�ʞ+�����n�w]��e]��Tl"����0>��3��MXJ�?,
1043
+���7Cj���-\NZ
1044
+� �ޞ�s���eP۟T"������hg/U=4���	�����13�W���+��Th'�~Т9�dh2�����H򰰨�`Q���g�59��xN�	��c��}Lϔ��+��^TC5���l1V�;2X�H���Z���W��^�(^
1045
+[
1046
+ow�ە^ ��g\�x�Rx��8�1tԿh��T��[`/���n��R�T���l�芌}z#U����V�>��t���F°�V��4�w�(�-+��R���]�wm�tQ�[�G�b�A�jsI����Q�JX:����Ps�t!]���`9~���Y�Sj�	�4R�I(�w�~���Y�{�Ӿ�?��Y�=����Ǚ�&����RS_�PX����g/(j߹��	;�+Z?9X�
T?:��֤�H����ķ�ҟZx�F�������wCX�y޳~.�ݳ���aEꑁ��;W������k�W�h�ej�@�7j��+YJM��e�c��
1047
+Qz���{��]�Ή���N�Ӂ����=��sNm��sn�����cq��=��*�n�Cm�ʻ��tR��<o��g�?�~P|�
1048
+6F����ܹ����SIv�S��x&q��P^��OqQ�:��]�T��N�S����zR;�ًͣ���?���=�t�o�su0��U��C6!�}M�'�~u1-��8l�~c�(U����I���C�hI����€x�N�������"t�t-��h�#�:�D�
������g�c����W��ttBa}e���IX"Z+�'J�ҁ�I�[3����_Q_a�T�|�\�K�gn�8h��
1049
+�s�-h�fl���^��*��͗������/q�S�Zn��g��Q�f���5nRI`�}���
1050
+�҅_O~@�/�+r2���dBR4mf*G�v�[���k�߂�%�ȯH�v���\<�����N�U���1V`��qe��nY��+��S�Y6�:�����#_��p��K�s,g��p�_k's�m:��m^y��P�����i�}���>�)�J*�w���v��vv(��a0��1P@v?k��0Mn�B7���s�!8���G��?��D&�^��S|����߃~u�jA)ެ/S�t�1-W�Olu�#�5��������&��K�<��-o�`�_����x{�R\�)S��#�c�˨�-��#��ƯT !�/_,��%��_?Opm2�P��+%<@���gi<+^���5x����~F:Z��W��߄A���ax���5�������ש�<iWg<�D��j"?9�h'��NgNK次K��D/u��K�:״��i�w���:�~7����b��"�+E�(KG%1�H��&/,���S�=>�wO^:�_�CC>�Q��K�;�5���Ј������}'�*��N'g(x�i9?����By_�d��.���'���%h�ꊻj����;�MD�2�J\#�ٔ�&��%Ee�1GB�Aʝə�|7�>����B�]�;*�ß��w�@��Z@�TZ�Ϣ~"}�/��.�4U�T�*�
DRv�/8�X�+�>��|�-E�D_Dtt<=ϭ$�@OK�*�9B[����<M�%54�������{�ĝ$,���$�L3꒪�񨜻�*[؎�T�P�1c�|/�3���h����w�[X
1051
+8.�p��}S���[����Jh���N4��Oai�2ݖ
1052
+��
1053
+ꉺ����<O�����4bY�^ʍN8aK|��/�?n5|
1054
+�c�����u��,�+%���4�0D���d����W�$o���םF�O}���|�)_Z��(�6Wx�i�K,��3��K}'Ɨ�'����ۯ[�zA|*o�����>�Ҙ<t֧�O�ȹ�׵�:���]�I�MH�S]���=��o�VAށp���l�H��7<%m��GQ:	�/1���*]��w�by�z�;�R��Xf�^ᣆi�ܡ���q?7#���a⾻-���R����*��^x@�2>���)���[�������e��Z��u5���7��qt�4՞zڮY
1055
+�qv�q��c;?r<�=�ؼ<z%<�x�'i;�^��{2�vw7�z�F��]����u���Zi��J7��[�2ž�����]r5C==�J!���Aߜ?tֹ�.!��tq[�����<�^sS��m�� �rŶd5"%c�tvPO�O�恍�B�U�<@���=%S's�||���Mq�����a]����f��m\;dZ~�]��?+H�VM�?C���7>��m��5���S�]O�
1056
+��Ϋ��O%�,6��)RCg_W�:�I:A�M�6ڣ�؏�;E߯j�15}J�u4Ά��۔nNZ*����r,��Wb�=6�C��<��� ��t��<�sVآMG�,J7�g�D!q��m���{tA���sJ<|p�L�eG7��Y����o�@�`W�DV"6�ͣ�"������k�Ҷ])܏�]�j�ܚ?-�3ql�� o��q}}w�����,KI��wy�P�l�"��<��8�
�g8�'TE��QP��t<�)Ӓ�uH�P��.��ʕ���)	��h��
1057
+��W*)*�����	�H��T�'��3h����q�ѳ	(�}z��v��7�6R���GW#����?��?�R���z����(!���ߛ3���K��a*=I������l
O�V1���f�e�A�^î�vVlf+�@zT[��0W���m�a���?})~�TE���F�4N\5�/Nk"�>��IH�H���9)52]r6��	�]��BA������
13�x
1058
+{[�YV7�{�F	� ����5>&XK����4�f��־
1059
+1����`��]b��4qff�.�����hܿ�E������8���H�b��ٕ���b��
1060
+xָ��!xV��_��j��ۥ�C��_
1061
+��A��K�HQ|�z��ȵ�`������,����,'˾�uF���d`s�v�KQ~`B���)�bH�<m�4�^o�ib><�si����t!m�T�G��$��B�x�lX1���*��Y�b�
;U��S.'�E�E�.��sH4�5r���+p�[:#���3�s�h�KrvT�>����Dw����N����\,q��o�7#�o'�n�s�uU��G�T�J6�-
1062
+k����H�k94�(9�ڎ5h����9�#����L��Q>J��醨�T6�A�O��������hg�0�\-W�*o��->�R��c�Ԓ!�T����+�x��ŋ���bY�?��{�P��OL�2�Rӟ<���Z�n�
d��{�H�E�Lq���q�"��k0��c��6�Rbx'�2̛$o��	���Y����m�$u��ơu�{G;(�5����ޚ��T��w%�_�J�'&��ųz|�[n�*}k'�~	������<�ϑY��8y��ڽՠs?Z
P�(ȿʩ�Q��=���>ɨ�;f�?��
D�E�[���@ۋ]���j%�
O��2ȑ5�ׇ�"���4p��v`m�DÞ�@ ��q�&����h���G�1z��X�A3�rI"��%F�KXT͆�nP�EZ���ұ�R����D�!�.I:1��܏���{���-�,��I'��()��kEN
[���H�[�\+<�5��r$W^���gGOf��{�����<"<��)8����C�G^�)j�z2���	�Mxme���֕V�et���L>���d8�o��4���b�\��J��{>�>���iVrܳ�{�C�T�adm��M�~_X�3ˋ��C�;�ҿ�[��;���Lͬ�6@�+�v}�H�.1s���p��RK,Cj0�d��8|j_��a�F���+n ��ǝ�BI����"��)�0�f)�Nj2μ�J
1063
+KD��t�X�峴�˃
1064
+�5D׵�`y��!&n6'�T��a�j��1*>n�e�P�����/T���E�-��Ҫ�=�y�t���
1065
+�-Us��sd�y�s>�#�k�LW�)���*~P�`���K����G�Z
�@�#$�T��Gߏ"�Ŋc	b�{>4��<1�La!ҚaoL��S�>k���:�y��g���Y��/?���3�xC]"Sq�[�D{��Gզ�;��/�U_j��7Bnp����[1��zoo�i����:0��R�.���+<v�ߵ�T�P=�0�XUq���T���6-��i.����Կ��XP%_p�L.���@� ���t<k�:r�6}�Bc�@��^����h����r�@6c�\n�Ѷ^�3p
1066
+��"5��L(l
�����'�
B��LQ����}Do}_�o���|
?�Ev#A?܃b�t�s�&��
1067
+����0�$tHd]NV[��!Zi= `�\�O��L$��O�dΕ���jR�Jm�+�-�Wr�YC~��Q�]����K�(�ڋT���r�xQj�W��3��Pj�if2������A��޲�s��ͦ��5B�/<i5L�W����Ֆʦ�;cq��?ć��|�t01��Pϗ��ȵC��a�q��M�FC�i�ż��A�y�L)!��`Yv?&�'�n���M����ĭ��J��^�j<��.�Mа�6�֊6�P/_��.�u~Y��/&�!�����It�F�ʇ7��][���O�^D�{�x�EC�)��:Q:�"�v�4Jِ}��.&
1068
+�
1069
+:5NBNw�2�&'�w��<c�.�qܡ���6꿓�Xy8ace���~�ݐ,�5Ǡ�ߍ1yd]���eRl)�#�R1��S�'wEK�#E��8y�S��ϬR��?TH�Z���i�j�÷��rH��g�ͶB���`��p�+��C9Fi��redya��c�3��H�G�Cn��>�b�ұp'eX9�0W�@u���H���F����
1070
+��"P�"�f�X��~ٸ�B=�~Ô,�_)�Ϣq[[���S��0@�귳��\�Wc�b�����H��C}��{�'��mM���k�f������u�.!8��x��'�,`�:�}l��%����i�΋��xw�n��q
1071
+$�sS�ܺ�����\�̆%E��r\ؼ�B �~5���V[�i`�]�=�ρ�-]��@��(A<�a��P�D������8CLFXY:�G8��N��B�a��S.��u���v����hlx{�ڻ��S�
lJ[}!~�bj@Ӷ'�ͬ2.eM��ڻu����J:���~/���|�;0���w\ơ`};
1072
+�B
1073
+ՁC��]��Y<NP�֣b�6v'T���奫P�$�G
1074
+X���D�*b���1�G��9��\� �;����:b�ͅ���^v�:R}��>�*��h%�&XS�q\҅0��}S�L>Vr���W?���i�W]yS��ZX=
1075
+��ߓp���'���K�:�à�Deߦ���+�R�@���2
1076
+��(ئ%h�Vȣʁ����	Ojw�E���9�	��]Ŏ��s�1�ٚ�x��PDrvO��rX-�r-�C;4-��Iܩ9 �8������{9'�i<�"_2@d��9��#�_
1077
+&�&�; ��B�$@P�ϰTh��P�N;)�����$!D^�a:���x�8٪�\��@�]�eHI�z�#o+�*��}t{}�wvҠ��S_�-0��l�U�Z�֯���4O
1078
+mI�>�:��@g�L�r�_O�׆}�
�	����$���<�n?)�=�Y�t�HO�Xe�
�$x��3m���ұ"wݚb�#��hF�����.�ǐ��j#��Ļ��c�al͋�U�1��Mz��Yod��k��)��i����G���Y���XM��S�����\9�U&�&�d�DX��r��I��}0VVz	,:b)��ő[�1,.�u�++����CM4%V4��� ��_'�:�v+�i��G�����
�������(ȉ�P����c`w?V!��(꒷�3��V_ja0��)]���q���2]&�uW��d0��H�9J�$}�c�i�:m�[<����2���F���2���b�+�~R,7���]a����O�5n�8}���T�eI�=.�@i3�۷��#oF��$F�Qw��[ŭ�4s2��Q]_��I�v/x*��ݿ
1079
+�r�\~ֈ��1(�̴���k�xZ�B	��q���8���H'&V>^�ȏ���$��>+�Aj�����0^XD����sH�R{���b!�1��a��R��.���8�"�_
1080
+���y;J�Sشv(�t�6�~����Q)�OrլZ�V�;��Bv�`*0�M�f�M4���X7B��'Lm���)���u�@��Kɗ:���G��)�����r�;r�J�������9���sj�"ڠGy�@�v���i���F ���������9M�O�DQ����{B@k%�����վ��)O6bʕ������|G��AX�J��m���r���z<'��Tdw�Y+�8�����d2��J/)�����(" n椲��e.�p�Ty0��+"��`E�<�nk�f�䖎����IWڐ:T��(w<�B��E�|�My*9t�}B�1�6r���,�f�r��>�����EW;HIJ�E�U
A��xR�b���oVZؓv�y�:�����p���X��#,�Uʳb��]P�e��خ��gd`#�bG��(�K���#�)uk�F��-*7��r%`:��’��thh�\�l�;t�y�Q��^$�%jtP�Fq�:�Bi�}�ȴ���6T�6?�y���K�J�y��PjL�����Vt~p����;�\".�[�P(����M�N^�A�-/��%��5�{�q�
/�Ѡ��{*s�jIJ��� �E��o�#{$�w�"�+�cG/���b,�G��C�YtEa~G:����}U��ٹ���M�W��;K��sU�f3�8KdǬ�(�M��H��WC}b-�C>R=���.s�h�.O�">"�R“4{1��Jy'��[�I���d֏�Ym�荬_O�BB�DH��{1�l5�?�s�H�!�
1081
+_��3���L���+8I���Jɓ�$��Ғ������>�:�E�{X��V���ۆG�1u ]:��ۑ�A�FfX�}�8Wk4N�N�|������Y�I�+1�?�LA�_מO�b��=0�+[�C�O�y�e������m��Q�v7`�����4*T�h�6&��4c�t�$�Z ��#I^)���&u�O�L�:ٕ�z�� W�R��r�o<؀���.�!9O��DB�6��=n�p�$uk�B���� �%ZFJE��p˰<���0�J2n�ɵ�d����c��[����ײ��l�mVyJG�|>�ãtTF�*`|'�t��=&/��;퓙O�Y!�3<������G�$�$�p&�JK��m�_{��^A�~n��P��P��	���e-��\lA79uriĔF�z��t�t���m��ċZ�K(+�7�)° �q2���$��PO3��p�ڶb�nt���b�M�<F_�=��z��쯭�Xq�5�ey#4 �Qݯ�4���+�?E��r�/�����v�����I�>�;��U�ć��h���`����._�W��f2�l4��w�f��zv͕]d �H���x�%W��FA���B�0D�m��A[�7�l���QH���ᲈ�@?]l�ۯ��E�
�2���ahMT��ؼ܆��3��G���-�JW�(�5q����[0�
1082
+�r�usJ��A���2��~��I7+�'���bH[ю����td�0­]H�'�Mt���]!4��"�{�8Ć�D�>Vh���N'�y܉��PK
1083
+�BZO!�1�e:T�,޻���!��hJ���#�Ȇ�d����$'���űb�]ʛ�2?f��1���Bi�}���L��f��.���	�gX�I�S��n#ָ��H'Eozi?�{�T2������<>��9�|�I��
��@�WN�}d!���^T��9��g��Nh1�g�y��ґG��d��Ǔ�p?J�w)0W�aΦ��,�Bu���*]~���pN!�?�sVb!�2��!�%�^Ç#L|vW�G��ܣ\,�}v���k��
e�!Gށt>�M.��.�?�H_=�Čݤ�h���g��t|��!5�>���\�П6��z�L��]Wa�tt&_M'f8'��E��?�r�t���.�K�!�X�ӛt�#,��L�\����$�
1084
+��햷�y�ϸg��?����BYr<M�(��+���q�!�c"�:�nT	�\/,*�+�*4p��E����s�m�6��d�Ta�{|B�B~?�1�N�S$��NQXU�.þ�&��9�����h$Z��9_X*����g�Lc_�s$��Hc����Ҧt8�f�/����Խq�H�fmwn�����=����:O�>k�a�U���[�ſ(�Ͻ‹a$�#�
1085
+�J��C#����)e86�7#���s��f9=��i%V>���H��;9�J�G�{����e�N�(|T-H��������wZ�g9���DK���Յ%G4KZ�M�6�F�mR�~��+
1086
+�u�y�~���U�W'�
X����_��(�.���[�T1�[,@葚"��R�!�
1087
+h�@��+T���8�s���������QJ�%���u� ��O�o<@�o4�:�9���b�2l{�d�h��C�^��J��Ej1�G��˕0cf�����E�_:��G#����>Tgh�/x��rX��NIEmAX�M���n����c3�0NSy��и]�[�|7��k<{������p3V]��-���$Ė�Qkqj�(4��:|�"m��RC��eK"
1088
+M�5��)���B��=M�|��E[WCB���AR����}�5z�v�T��޹*p�I���r��f�l���N�N҅���0�qF�[:`��`�ߊ��$`q��!�cqb�6�g�5��Ȝ3*ČЬKx�&�9$dnt	�ք��ǝ.ᕚ�+�#dXкl���N̬�Ot��|}�����]��s+��ޑ�(|��)G%�=��D��1�=����0&�j!��0ehȾ ��Q�c�(���
��]{�|{[T�����!l�-	�y�ilOF�X�~+*BJ�v�!�Δk(L��,
k��w�{�V/!��;��qy�xy���ű��h04pd >��*!��D�d-B�ߨa-�GI
�}��}����rG��q	P��,;�����ϛi?�?�0�Zӈ?�~~�<	p��c���?��`�(���c�u�˚(�,�<�h��7bZ�o��3��n�㨎��q������4����;��b��z"hM�oZ����p-�����;�����3��D�,C�C-�;��c���f��^bn�s�˒Y?� ���
1089
+�Z"@�ߏ��q�",uE�*r5��e`Cxց��?>�c�M���_��XG��-|$�V��j��7�p�nl�Y� W�Ifq�CN�͇�4�"e8)�	�Fyq0��iA���,��H��Ոi�ؑ-��=q$�Xp2�
1090
+��P����"�Q}�73�I����\o���t�r5l�K퉐�,��ش)��a}~̵�P0[��;�ܣa(���\��s������b���0����6�
�Ϋ�o@�'���D�.3�`��3	�������*��Q�����t�sC��'1\�m$RG�l%5:��-��m���f�G�� ���EAv��1r'1���$�wL��.ɼK����'���/���o�����T;sN�<�%�c�ݲո��Q�T����|L��7i�A����66�p�0�F3U>��?�G���,S4ei�O�L�KW�ϗ��q��G��N��|u���+���w)�?�{3�^�?ПT%6?�/��28��}�O7��}��b�T
�R��|w�֏ʸ�ɪ����У��ԣ�:��(/��QW�B��)bf��P�c����"��������\;�
1091
+$z$Y
1092
+<Rh���<��:�����`����l�d؁	6Tn_�Ӯ�Q^��d(�NK��''%73'Esu�t��yk��z��Wt4^��T���ϒ��Q�zs^�%3�Y�A��D
1093
++�\0wI{T�r�#���u��
1094
+RQ�ur�ə�ms{�fJ�sY����)���b��CY��
���tW�Lt&�*~࠳M�
y{���j�����!������L���`�f �o�?$&Ì°*!�j#P/�h��2|(ۯ���0P�u�@�?�U�j�ӭJ)�$��C�^7�l�*�ժ�X��cG�[��B�JU&*I���+�~n]a<Ο#�N?�^�����߀�x�wb��x�w�o8w���p�Y����+�_	��AC�
1095
+�s���M\ٜ$��U��һ:,�퍝������EU���I#j�n6
ڥ
1096
+ĊC	l
4C�X��ؠ�v��M	�ͳ�PsK�]n�ak�]�ݠ�༌٢r�d|����r�C�q��W�M��М�����O�5��7Y](���F_�����
1097
+�ޠ����??H?)�
�5��3�y�i�A.��Pf'*�m�&RuMꋰo��4{d�|��d�Zc�W�o���.3r=�0l"<G�����)�^q�A���|.�ɨ����mCC8��Z�v��7��c��d~3��Rǰ{G~�i��S-����%ڵװ;9�"�w��[�{�j�}
�]�0��r�j�|D:$HG�9�7����2�-L�U�4��D_�>�q��=��:H
1098
+/�����puL�V�/�f��r#�B7o��Έ~ �@VaQ��+Qbs�&2@�A�c�t�>�Bf�?���3�w�s����ϰ�3���_�e�P��LZK��^f%����z�PR���LY�9Y;�:�R�'ͥ��x�n�S�!��Y����`���#?W����1� �ǡ��m/-�YXf�IkFV�g�U�Ӏ
1099
+��jG��`��EZ�F��p���j���/��C��V�}�`Fg��0�q�Y�D��Ζ��Z:e�����#�q�vq�7��A:πq_[�Pv��&����%B0�{����.,u�F�A�Gk�$v���eh"�揦�Ÿ�O���t����!�����|)z,nL��)���T>�7�z����#j�lH��������4;��V��P�GW��sQrh5 ^91E�C|��q�����t��i�Z�p�mb��%�>��w)�f����ɑ^�;M(T#�u��B����Y���M�SȢ��&�M�܋&<��ޡ6���*�^�,���J�GW����-����*��t�)��.��������X��"U�m���`Wam�ﵞ�o��U�4:�1��c!�Q�E�#�o��埲�/j��|�'������@5�F&��n�w��H��0l�W��:�mW�#1{��]�tXg�c�I��:���<HT�;:>�z9�
1100
+�:/�6�< 5�惵�Amj��s���_!�����o�7O��Pf91\�d'[t��C��Uf9苃=���F�p��WI���8njN�Y
1101
+g��S��K����z����ɣb�3�s�����N��l�q�{���9�P��Y�wz�]���\���E>�n���p����B��V;��GxMT߼J>�q�	��o�r��ۍj����tq�"�t�eH-6a�Dc�r�#G>��|1�`�J^KDɪ��#��S�Mr�Udc��Yq3���u�`?N��-��	,�ecVܝl7|�Q��u0�e���#�0����C>�0�	�ȷ@�sҎ�EGZ4���D��-5C��'�a�A͉��ㅹD���u-P��u���I[����V�h�p���?��¸��T-�U�Q5����v�>�#3o�P�b�%3��R7�#��kn��)0�$��Wj�K/5�.�嵬K�5�ɒ��èɅ]�П6��Q�?��iv'lZofw�`�!�R��ז��R?��i]�����TuIU��C�^;7��&�c�������;)�Φ����n�4)]����X�Xg]��Zv��1؍D3�)��&�7�����#w��6�u��xZ:q;��u�s�Xm�n;�ՠo"�@��FZx�ѫ�r�b'fy+�6���RK�G�4xp�k�F;(�ˈ�
1102
+���-��]a�y����H��2�p��<�[��v8}����d�Y�R�;Q"疫Y�N\��K退�pT
1103
+K���nϑ��_\"؟��@�!1|���c��^D �Kr�i��D4)�IM�U��WK
�a�f�F�|h#ZP��װۢ\�ǻu����F#����-�ADi`�[a�q���M^�:�r�2T��k��u�c���圎��^�����Iɴz�]�!h	���cQ~-ڳ|޳�{ �3�%�pm!qE��e�����#K�~K!9���?/L1i�%׭��O�Mӏ)i@�[#)Zsz�*��*�Ÿ0��Z�G?�~:�����p�#��N�v1~)yv��}�<��r��C:�g��,ѓ~?#E`�Vp�CI�ہ;��ن��tma�Ҷ�q@��vX{�0v9h�' H�p�FvOq�ߡ�F��t@�5(
1104
+��]�]4Nqd��}��S�<P�o�(�T�_0"XKW�]�(�r=^ᣃ�H��<�|�fh�]
�q^�د�����!<^���Ժ/�Is�<��L{��P?P*������s�'O�tЪhT��B�J,蛅�'q.@)�VN�)ؼf�Ń�#�<@]���t�^_a��Bn!��Y�*�QY�ŧ�0�(��5���ľ?�X+FP�~���t\<&H����KO3�J��2�A�d,`>���H�^Kt�Eg!���I*�%˂�;��>����➝;g;�B3櫊7%��n���;��
�Wz�qdD��#��0jF�vѴ��
f>�4�	�j�dž: ���
�2A��X�HT��\��Y��] w�@FNWU=Bg�HFo�8u5w)��.�ܯ��ig������+�|�ߧ��'���Sfi?���:�lb���z�m�ph�~�&��`���IL#��b���b˹�H)�{����M�g*s���F�
�V&q�g��� �����Ez��c<�M�0#�k�?[Ȼ�����Q
��Q���i���D�h�@�3���cv�t��{P�v�&mf��R�x�m$�ʣ�
1105
+ˠ����Q���|����k�:��8�7��锿� �F�8a�����'��I#*x��v�g�,ŭ� �=�a}�)���	��U8P5�I�.�<x\�l)ѩk�G�{�����q��	}��P5�G-��TK=�B�J��]b���h��cy��A�
1106
+��@Յ|ؑ}ڼ��@4����Rw��?.�{�*�E��xjW���
z��s%����~�X>Vcq�m%u�s�'�l'����It)�I��������ؠ^\�`�9-*)��’��’������ya�z�nJfX>�F���S���/븎���O_ <�ptǸ�ի��dh@����8I:�����5���t���s��u��\���>La�Sz�8jb�[�\
r�ٖ[q8��v����Lt˕�B��[�2�8##T:D{�6{)�7�_�U������wX]��$.c�Y�Ӊ���t������%�U>_.�bG�/�?w#�:˂��I��x�P'i�~��V�Q_���U�m����f]*|z3��6��|
1107
+���DK�=�ri��Ϭ��l]2ǀ�..���٣'\<�/�x|Kԛ�c����Y6j[4���E���  �3es�&3ʃ�������D�nE�&��xR�9)"�M��-�1㣩"b�؂��{���x�*r��T��Wlp�4}��0A�܇���?hҕf�i4i�ڢ����?��a��Q�h8�]H3)�ϑ���>�|���LE��Byl�v=����{|+�q�,	�v����'}����⸋t��vW"ŝ唛PVܔ���+��
1108
+�HL/*Y����
%�9��E��nl�{�
1109
+�c���=C�Y�~zC��k��{#]ۼ�q%]����Xn�ƣ!����w�բF���
�),y�~� g�1N`�N�z/��'y�#��}�P�;�F/:Y�غ��c_��(�� �EdpV�\��" �l<,G:�?X���Ԯ�%�5��$��>����<��ݞ���A[�+(	]`+v�q�м�L�d���z.74�a.?(h{>
'�b�B$f�e'd�ߋ
v&��G�U�n��QG�x��kb��2#6�'���^Ĺ���Y�T���X�8�Z���]^�Qݕ�����	�l,���F{�7�s�c��$�6jΒ��Q���=v�H�Vy���˗ V��D�	��`<�'q�B�nxc�����<`���0�OaU�*�/��38������k��'����Z݇��#l~	
�m��fݠ&(���@��Ӱ���)���({�XN��m&"�
��[���<��)���ԟ��r�b�o��M�R��f}$���O5��Qz
�&�t/��?h��C�~��6#�Ds@���̎�A�hdxG�1B2�<d�_��faol���6N�;;�I1K
�����9�۳��hG�A>����c���l^�Hi}? ,�8-�i�ѽs�#G�CNK����+
Iu�"+������)81�xg�\���������6�D��u�~���NO&���)f5���T��#L��u-��D �JB�mBS#�w��JE/;)|8w֠�4k܈�"�xO��7��w���k'^Z��`�`g-��I��Aj���Ӓ�������x��<�����';��V��|YXjqJ�{�$������r�]���������>$�n)���q�.x�2n|�j����/!�n�f���Q��M���i�]�7X���j�h��ykZK�i���9.|����p �����m괘Z�����uxԂ��8�6x�n����q㚻�U�K,w�Y>�$2��VБ?�����8V�6:B�Zṋ��	�K��w�v#j�v�i��%,DYi������{
���k��%�Y�3�S��p�ƻ���-1�&v�Wڦ[G��t?tM���+��&�����l�־ �!�2�Nf-V��}��ە��W�	gr}��l`�+���}l�I7Fl6B~�A�>����h@5ˆT�^�!�׉�#����������<�!	���\�;yw^G���%dy�V<�NA�E�`ݪu�/�J�/�y|��G�P�H`jZ.������h��Ғf�/�C*�a��T�Cj���1/�h�Y���Cf����d/��f���L�f…�{:j�VSHE`*�����
1110
+������4: ��B:�?�]�@��b~��<�t�߆7u��t�3ey�s�%�!B6��$�%P@�T�FM�^(����d�[7�FLu��!���L彡��Ry� Vf�'�g
f�q
{���}���9����֢�,�Yqt�3�B�{3��/�%�
�駔\J���X�nS��z��~�=�.]�g�hPy�Gq��P)Bw���з{��
1111
+2�oGZs����]_C�wux*���\�J�2NB�3B�a�N�<?S|�93��~c$��S������!���w:TZG������ 1���k��
E��^��Ŋ�d
1112
+B/���D����H�|Y���exUo�3�
7I�\2vK֤�P�J�(�Q9�T߿
1113
+ �]r-������=���Nj�x�a!K3
1114
+?��Y��-G\�����-;�N��,�caӡ>a�XT�LP�ZDy�C�Ov�$$"aS7\�0
����f'O����E�_�7��(��2i��MB�����!�Y�%f�)�
����r��`>���t��!O�M
1115
+nd��ل�8��6F��o��Vhxw[�~#ۛ
4,��`�`�I�Zx�E�cI��<١.F�\�.�Ԡ����<ڵ5�=��s��yU9����P���XZ��&~�c�=�<�9D|>�xqK��$MD�2�E����l�B��x���
i�I�r_GJX0�ϯ�#�i������g���»e�=W�|/b��ㅉu�V
���:��u|��P#��/ބ���~��'W*ƴZ��X��G�l$0�w]Qc.!��\i*��>6&]�?ak8��
1116
+�j�8�>f�'�	��HGJ�<�`��!��9Z�B���t×='���T��i��W�>'�|?g���u�g��cH��^�`�v����O0i���hZ���v���5�/ip�~j�ot��Ԟ��z����A�����g�Cd���m����!?{��7pTL5�S��-�x���ؙ���@��E�t�.��P�k9i�����\����Fo��U����׌˕�#��{��`wJ�W��ƬiV�d�����J��gC4����Ǖ9��5x�lq��@�EϙW�"[�E��5d�8�:�w�SR��̽B��h��}?C�5�d��"�C��85����h��Q�����b;[:pћ��[�ެ�qz@������x�3���)���i��~�#@��)3l�R�]���o� x,D��r{�
1117
+�l��>N��d�]Y�+��
1118
+��[g5���J�nZ�%���ȳs��Q�0�kY�%���z�J�D~0�[��$�
F��!,����/)�2��io��{w�tz������|B�8�k�	K�Z��x-�⦞3���-���5����"�o�%%l�BN�=���]�;��/���r"H���l��T#,F~�8���=��𽭉"�-l�%�(��1���
3�_��Q�
1119
+~2����e�P���B�Go%v�#�����
�[4��}��{�G$�?�1�]�h�#0�W�dk�q�;��j��>h9��vauW�|�>R�G��\��Q�ҫ|jdw5P���	�{s݌^�]�rI=�f��0ݎ�'�ec<��^1ԥ_~��n(�'�2��̀OUw�}B�P]��V�1����))����4s
1120
+q�@zE���!tmG��f�.���#���#yӅ=�&�gn�$*B�K�L��‘�Pѩ\��IG˥M7��V�y�Jl�W��^�d�M�P�YN����}M�ÆT�$�$),U�zh6w⃎���~B��$��>%�M��yP�d�3R�`R{Te��LZ��]��C�	��mQ��v��*�vƥ�G��=v!-E�2�_t�
1121
+���SH�ЕQ��CWK)����Fhᅅ���\y�x
1122
+��H[D�(���벾��R�G�U�"�/�S���q�RC;�]jh���~}%���/8�%ڤP^D}���	�IxQ
 ���F�”:��	q���r���JBW?:�MŸ��oWcؒ�OֱТ���-A�BxWh:4�u
1123
+����\�}��H��/��T��^~�<�bҹ�7P\;ɫ8+��L��
��X'�>��gC��G�x�e_e0�-+"1w֠��b�ݛ�5���z�h\��l�Q�Q=�-G���'�Ë����f�!�g�8�<��㏀��'�X$�e?�?��;��,�N�%74�u���@Eh�k�[Q��+��_U�
1124
+�z�B���l�,�`�3q�v�s��W7�d}z�������`��](LI�|�|fZ��b��\)�ێ�frv�'��m��\|�����\Si���pWK�	��]R���OF��7�����ɵ�&3��,�SZ��}�yc�k4�-����Ex�YTλ�,�q��`rPD��R�}I�/�t��p� �mD*��5�W:B�8�gl�"���`��=�A.���A�l�|��د�$34���z�O�Ѥ�:(a���@ۡ��_�՗�[
1125
+�#�(?6�8�ȡtq�<ۙŦ/'Lx�@���y
�*@�j޳w^�ݍ��ݔ��P+�a�[�o�>��rw��kr4�� <W҆��u(��.�
f�-=a0ʕ0=%Q��$�
1126
+�=��w��E�P��Oȏ���	��Q����0{�;�^�����I�����p<葤K0�@Β!�P��7�s�����Sx���p<��F�O��q"�%��s\��~�֫�q����a6h�̻a�"&���8��s���M�A�^H�U�����&1�$���P[���]��bDAQ���ʧ��\�M�K^g�S'�Hk��(�^�[tP��\��}O�lt/��=�z!֎�B�t�:���ͺ#ȬS>`���j�v�]
1127
+����)��W�%a
1128
+Pi~Ry�"�C/qDh��k�
=[��JU���{
2���bMK��W��[�ѱo��-H��z��K�K��w���D�I�T�\�'�A{�_��L�-���}�����	N߆$��Gx����M=_�i����Sc]x��Kq����f���ِ�(@�+�dDH��.��_�!U�\��P��.�
1129
+��A�����״�6C�0��ǭ
����v4�|��<�ƅ2�3P�����|��ig-��l���k��$:�~]���d��(g�wT�י,~����1�¤F����	�w�9	���?����Ҭ�fc��y|WG��E�j�d�8���f���7�o���3i�,NPЪ�A����*h#E34�	�ZY��K5Xy�B"U��H�1������/(�]�TD�EQD���H)K��9��$)����|if�Ν��{�9��=d+"a����0&�!q�����$&�PU��&S^��Cފ�N��f�jײ����Z��� ��tY(�04�z �0_	ˆ�jWG��>F�x��7-B̧c'&j���f��iq���X�/�1x�v�CA˃'��.��-&WС����g�S���g��U�%tOa�#m��0�I��^����M�V�$�./��v'h|�5�q1g�Լ��e�����\��<p�,�U�){g��5	�1�������(ͪc�(���z(��}�%�^㎔�=��7�	�u�8�������Qz�7$���([R�Vs�L�5Trg����z`��Џ9U�[J�&�7IR�e/��CvT�\Xh#�m�/��(!��P���Ek��Cvx��o��q���Q���%�ql�m~��1Ф�@u5>�[�n�u�oxI']���-�"�Άo�_���)�.��ڣ���9wet���ws�C��|�!�s�a+Z�.�CIx
1130
+8��-��R�Q�чB…��Ț9��I�}C�^&"�f �Rwr�?�r��R�R:��z�>j���h���rB"BS���]�����pdc�zI��`�?��Vs<+5έP�Y�Azy��H�B�_)�~�+�֫�6E�=����U-!�m�CC�Y��Q�&��h�!9��K��_HZ���NJ4��p��dm�P�_�W��3��z������C�X��d�op����~�R�3����2���X����}���ڮhIE&����%�H�^�:�H`��\�f<�a�zy|9��	�p��1����/��T\u/[�!
�xĜ�ފ�`� l=�	~�ÖH;�,=�.ir�-�G���(1t H�6�������+�t11�#�d4ḋ�Qdf��bTa�,�$W}F�﯅�^�Q�a.�s�>�[�n��jy�D�r(�Qo����ߥ��ܤ�cU\3�-�.�՜˫�4�a-s�y�z<�BW6�w%���6b��Q��w7�_O���)���OPw��L"=���{�X���a��7����	�<��4��9F�R�,G��\v{��X�c,]�����ɵPK�=P�g����&���9xb`���m��ھ��~��A)
1131
+�D�bAVDs�^��_�l<�8Y�������1�� ѰE�/���J<ҘM��W��M%�;4	�a�|bx�J�;���p��\��0
1132
+�P���>?Qc�"�<W��E��b�v�¹zD(ߞܕ�p��-���꾅fcu���F�Y��(f�U��U�������u;�����u�r�c����	?��V��p�}>��s'��r�9xO^S�Ve��"��t׼s�<6����d��B=�i��+p��{�=�� ��@���1*��2h�20r1\�gc�!JZx��8��ϟ�r`�g��矓=,�u�티^θtY�#ۆs����[ ���
1133
+��V�L�#I��e�Iq%�
2U����YP*���d?D�0l�z��26�cb��l켚\�d���1t�[mc�g���4>G���T���A���U�Ӟ�����E�ajA�A弃��i1���U��i��������r�,��F*��5cb���hb��&$���,��ݸ=�Kb1q ��(f���A-]�����$���*�K�9P)�9����Cr*lϛP*�G�!6�eDIG�r�5�	5�ː�n9�>|t�.b��9����(�K����-�:��ѕǩ`
�qi�fb�[�+7]�n��d��/��aPFћH���P_A?(�L�(?�|t%�ַ�ts
1134
+��j��D�ï")�ω���+��]��KOz��OI���vB���h�Ɂ��ߡ�~��|3y	}V�'��څ�9Ԧ�/���wz6!��P[���"GRM��*�,�ó��+��Wί�}�>)�pÔ����_��aC�^|�8�tW�>�rDPv
1135
+�3rSbҐ��.�o6q��”<��b�{ʬ������%��C6��;��sH�XE�
�w�o�&?C�jYt�>3O����Z�z�<K��6u����)]�ǯf�+���r��/�7qH	�����)Ź�E/�tǧ�U�[}�A�	���0�W��kF�I��T}��ߞ�8��������Fx'H&1�*�m�E�	� l6��*�Z�I`5�S�Nxs�h�)_ ���ўbH��<Çb��#O���������y��V��L��pgۓ;}$�o���>�Z�r�i<݋(e\o�4>����,��B&vLz�=w�\�{aw�}g��L�<���>,CG+4T`�,X�m�%X�w�ͺ�"q�i"V1��=�@sRWP,���S��i�w��`���O8�_{̦h�����|���u�K(���W<�ی.O7�quAGquk�=��{r7�Nm=
�:7�5��х̃�[�
1136
+�֟Bͥ�}=�{ؒ�p���{��"��41�h��+C�N0�m�t�|k	�5cvۻ�du�	1�J���Q�;���a��p(�i�BCQq�eԍ��q-|�����`,\{y����MCih
1137
+��{0-���%"F�X��)����(B�y�2�2n�� B�[xt�M�q1�~
1138
+:k���B�����b�"J�9cE��3�|l�����da�<PM����hTx��ƼwjN�0�kڑBz��f>A��I����N���T���hd���9z�h<�Ѥ2�ï�2�p��s��I\�i�L�gYc���CЎ���h�/[���=	w>�V��?�! 0v߼7?`��h�w��3t0�v��}{�m�,�P0�͜�������D��KȮ�ER��E��%�v34�c�
��k���d+�!�9��K�R��<zxF7�z'�
1139
+�w����u������dd}WQ��Q3
1140
+������-��4eۉ��D��'�8�����-�h���x���r;z��os�(�L�fl
Q��m'�B�_za�.�t�tc�jCC��b���u�%&����Go�en�b��Qh��������r<���e����З���3����uU��V��fq�\���k��|�]j6���;'��ke/�r0�����S�����w�h~7r���V|���:aD�r�.�"�C��Q`��}!�߁CU��z�Ƹw���d���(�K��v��:LQ��1z~�)�8�q��F�o��X���%�*MC_#��&Z�u���݈��8a���NG^>
Q���#Q8aar�+į#>���!ߊٿ�#rpn�Ӂr�Q�qc����<�8�F��ֈ�eh�*׏���:b��ņ������7��4U,}[�z�>���ߎ�m�|��t�v:���{? �5k��{�g<����U�<��~������p���h��2�h��	Ƣk��F�۹N}h;�(���"/"��r��$�e�4t�������^DѠ
f���o@��|33A���z9�_��g
��E�E�/xsL��e�+�/y:wH���t������:q?�.�W)�3�
1141
+v���}	&O�%����iY��D���a�$'�vF��n�"?��w�r�`6S�wT���ϲT������fr��f���-/�������ҿi�J:/@K�������N�v�Ѱ8���n������sO`?���ŭeJ-
.1܏����i&;��V�W��]Z�RG�"I�������g�byШ���"ˬ^��M{vN;�G�����}��z��O���B�~���q����N&��9��t�8��]B�߲U��8Ԋ��R̞y���P�>Z���
1142
+f��9���R`w:����&�������]q�jpd��f8�u��614�J��m4W�l5�1H7֕-4t+ǧ��/�{<Z�C��A�Z�XG�Ux�<��%�ZzK�+��L����l\�mq٪��%DL.;惃�A�^D��o�'�g�8i�90��>K;��N0���!�I7S@��BW?���8�F	Zq
1143
+�N혥��g�cW�0�!��%zԅέf�:��$��W���ӦSo��L�-7�S�lǠ?N2�"�f�6hq�=ŝ�	o)��B6��0���e�8-�x��&t��;2[��:���
tJ7�q([���]���v��h��52�*�-���5R�*9{�׹��X�h6cݎ��-&�: PZ�<�Ӗ���w�l>����֡��s�8+@�*�>�#�����Z
1144
+=�I�q	:�Q}��3Zt�"Z�V��K�6n�6�t</!?�i��S��@cy�t�3���pL�9�3�#�A�qg#Z'��1sZ'���ͺ	�r��F�����\��@��ŭ�?�/�[�������A?����Mʱ1���cW�����1�YZ
1145
+�� �ֳ^���η(x�
�aA���q��7'i���/�}�"�t�<o���"E��Zf%��$z1��`*��+�W~�0�s�L�����ch��%¾��;���T���M6S�M�T�G��X�koK��y�,:��[��V���Ӟ���� �$�$08$�W�&���83�n�Ók���$u��w��wn~��]I˼���\6|e���#�
1146
+��9�0Le�&��}�,K�6�g�S�dj.ؠu��l�J�t�V韁Y^]�gLy&�m^D�(�)�����%pM��
1147
+��
�ι��w�ob(I�݁4�b}�䟿?o��4�Ijm!�}$���.l!c��8�w��߶B��&����ʬ�?X�u�PXP�]+�@%�yP�QE���6�6�*�q���-����
1148
+�o��nx?}�y�S�&2��t�b�s4	�z�!<�����1zMV��TW�������ƀ���$���Z�<H����ЦIJ	o���^a6���~��g"���Ԣӏ��A-��Y����6�������z�yp�����BV��\���W6_��'�s�����q�R�)+ٙ�s��lY��Σ���5��];˘t��`=����G�[��e���Ȱ��P����n3���a�դ��H�::y�,?�y�cU�)
�G&Hb�ۓ��e	J�t�ׯxZ5ޑO��F��_/�1�[�K�vc0�h�
��#�P�$@�������ޅ�Ւv���(���E@��6�j"�<l�;P��5������MC�D׏�o�.1p|���p��6#�E_�
1149
+2g�h�rHK����^����s	����aED�C-{+�Sv�V��*�W���2��d�^_�O':]�c�j�K���
1150
+�ۡ����ol�8�ř��p�������Dl�J��.^�'5�`�!e����g�����	�Ϋ66K�+v�IB߈���Q�]g>������GVwy1���O��sC�&L�}�Vu�j�Ȧn��?h^�K=�*�;x4�����ͯ�a����͂�D��g6�Bp��@���s]�����p��q0��8z3�В�lW�rs��7�ƒd��[����t�&1�Vi�p@9Jb>$T��oD}�˯������)�y'�bha٤v�`>�7�|�<a��ԧE���7���;�X*B�#jj�c�|��^?].~���ߏ�g�B#��M29�vY+f2iM�W ���7��n/1�� R��!P����� 1A_&0�v
-4��jZݴ���^$�6
1151
+uiݿ�e1�j�~ɪ-�Z:X��y����U��5��::'��&MV���8"�k@y���D��|B��U!>�M;�!�:�m�g/w�8���tnr��	f6��<z.��J��㎬C���^)�\ͳEfI��d�J�i�p��
��p�N���RneWc]opew&o���Ѣ.<	�uKLǗPע�!��QW�/[�C�{j���Gh����3}�`A�@e�Cu�Qt���z�O�Q�0���j�
=�\5Sx�ŭ"�<E�z(Bv<i����E�ǰ�0�+�o
1152
+���׆�L��u�����W���D���8a�j�L�@�hoπ/a����$���g�kP>�1'�����^��$�.��vd�s�YQ�Fֳcb�#���*��J�����sd���q�B�1�RL�R'�9�>�ާ��7�O���΂bGRL��4���Th���U�svZLZ�-���%†�� �a6���s�U-�@i�?J3��_�ѩ���i
�	U).��!F>��P�?Ҏ�z@��2s,�q�ص>��\X����;9����@.D��<�/h9�}&T�=j�QT��<�>G�#L�qN��s�bČy!�l�#�<��c,~�Jđ����m�ɐ��^�)�8.�"S�B!z����Նf���;P��3oO�3*��nA����T����,:}�
1153
+z`�a+�C�Fه��o�w��ٞ`�v7�Z���o$��k�u��d�	�jC��TnR�y��	���i�#E6�w��oR�z�@����L�L�ʣ3�/�M���܆
���ѧیxω�ܵC��h��F;0��dM�c��H�~���0H6УO���U��k��ˍ�y϶ǖ��}�}��FN�\0p�kך�<J��5�(l�B,�g_��g���e4r�	|X�[��⪜��l�!
8nL{��&��n�X�3���
|H F��0�|�N�\�=e�Њ.ȌԴ�ܾ��;�u?�0Y��͜�����JL{�^�d�&���a�\�����Q[�
���!XOɍN���c�E��\8�Ʌ��cїy\BƑߣO$�ƹ����ضi�B���l�вa*�Tf#��ʁYn����j(��� �N9%��";��P�:�2K8,��}��k��F�j�5���O���1������.���ﵴ#�s���&{E����U&��^�
1154
+���T���@~��@�x��2��h�{��,7��W���
�n�Ŕ�2w�Vn�L`�Rz���2{�j$eVƃ���v��r�h�_ކ;ݰLY�%�Τ-a>:�I���~�!0��<K�1��}a�U�U<�3��a�����D�<��\��
�٤����j&,��5�/��xBޥ�j<�Â��/��Y>�w�j3�G�[%LG睆5ts`^��(�dD��Ɛ���IU�����vbQr�<͋>=�Y�`Υ|(J%�)6N��G��Q�UO���5'Α�c�9᫰�lF=�l���U�#�n�(�ƈOo�Pab�S`�J��4X"_�!��P��E�@I���3�D��:g��U�D�v�W"�D�9����T�D?Oķ�Ό�t�3uX�T;�
��I�Oډa9}���p�2Mkn�8�f���
1155
+�J{N��U;́��&��\�̢��-B�GH��9FB��2���D����KN+�$�|r��|�2|5EHl�����i k#3UAle#f ^[��h���%;S:�ٚ0�gNE< �n]�2�e�G0�Y�g
X����OcP�YJ��0'P#[6��b��x7\���yl$ec�8\���%�������n�K��V�=�!�5s߷(�Dn����
M��%��X�a�G	`�SW��]:&B�&���S��b�
�$��TA�j��S��m�^l��W���*���!��~Q�q��FLGw�F4�ܮ���(d�!�4�: ��5�ֹ"�4o^��Z��z��/��s[������P�)��S�wfa�b�x��}od��z
1156
+�	�MR�k;a׀*�9�BB�Ħ��o��E���g�WP�/�=
1157
+�0OR��]�.��ȥi\�8�{��r�����;��ǁ�?�nD	�·|ke�D���4Pe���)q�mO��+R��:�b���͚>�R�ub�6L�u���Dw``�(G��%��h/����,�C�q�2�)�����Z�P2=��?���M��e�������+�8Ͼ�)N(�m7�N�D�h�}��Ɇ�;�}!mdU��Z;�1>�ۑ��wp%q��FQ��pi;׻���|��|�\������2�z5��?��`l:�d+���56�
1158
+�6�~�>ބ�n�����A`�WBC�B2��Z�黯�q;��I�Μ���5�͹J���
ۧ�o����do��pkڤ��Ubș�՟L92�&��9��VC���Q�+�Fq^A�p�zCqt��i����%M�i�[��]�VB�G�͆�]U�J�/UO���W�cj�-���j��=���5���na�-�z.w�+�vk�������*��Z��m��*�j=��V����������MR�z��uۺA9��bXiH��
[�Nk���A}��}G1��"kc�gu�~$k�~�ݸ5����c�˜ÆZLPX�ؖ��t\~pPojRK�	��Q9�#{�����ph,*W\t=+�pKCU�&��B���tFb��\Ww�s�3�t���ȨMu[R��ڞř�Q�pD�	�Qp�4�Sq��U�7]n����d�M�ܬʣ�o��
1159
+�8�`JȞ�;��%�N�>�S��:A>��u�i����'���	�o��'���"��U�|�2�NG���+h�J�@�� B�'�N��?R�8��BC[f6�Ǘ�Q���̃@i��^QA��c!-�u��><J�
�S
o���x�hjʲ�Xî£g}H���$>�:���k�����1�*bꉕ�TS�7������4n�u�nZ�8�z�q2�eA�{9�kh��R����/�&�15z�X���v6E�M��@�yeI�� �����s�˞���>�)L�k)�����G&t��Z����=%�O�
1160
+M\3�V.�]�VI�;�Wo���P�N�U��@�s�(���Sgx�:�$L�U[:K�,R�Q��P��쐳���z\�Lt�B��9��W�[����`��-�;�Zi<[=���a��UE��Ն�q�5�1�hXo�e�@O��n	����ajC���m��\�*�N�t��iU�	��7���b�U��,V�i	E2u`b�4~�W�Lr�N?N�S%�ފ6���%գ�h,B��"n
�_ג:E=��L����F��p��>�+M�lK}LI��q�1���P�3���r��Í3cG~��e�i_��q��Hd�>A.GȮ�&��bh������D2�J�VQr��v��ήw�X)���zw�f���N8��ܝv������ݹk]!��Q���u�$����xx
�<�WQ��ܕ�a���c�i�c�c���|�?bqw���J�͸A�T���=�a-#��vX-�G�����Q�M>�1�}��a���B����Jq&�P��h���J�D;�Ǡx4!G�5�{�n@fK��t�.�")�j�'m�4{�Vs�h�9���
1161
+>
1162
+�@UvQ5"m
1163
+P#Z��
PlC��|J��}��l
\,�M�Q���5@ʱ�*>�x��/) ��㈅&UX�\^Y(E,ע���۬]��mrm�1��q(4$G���8N	����$��Fv�gH15�vcD�b��lB���"��7���L�Y�uo2�^�ʉ�,�����&C|_�5���&��9ʸ��b24�un�Q��*ցd*��lh-9�h���x��]�+M��[��_�j%��=�5���Օ���՛*��ē�`Т���%��%7�K��h7��ϟ�:j<�TA7�:J��8l�H�d�6D�/#��0���Dѽ����S�G���b��	�1C>܎��G���1���3>���ި06$��T����1L�����{��Q�7�|��u���ݳ��a��6`u����p� b���#1��+�>7�$�^�ґ������(aMD�<Bqp
1164
+}ʇ]Z��a_�/E��@��U�hp�Q�7��A)�\���zw
W��|m6�]���tu��S!v�]��䦡�àJ�����7�I��8[�[Y�ے�O[s�N+C���v���Ћ�+��T|���
����-�#�{���
�QľG=,U��7, �_P�}�ԩѭ^��pY��N�}JodR���M;!�����x�I��d�6#��������w�.2��]=��,+��Q촞٠��R,k&<Vv<����i����C��zk�&dp�&�R�]Ұ-��-�-̚��/g��EVI9jƌ�G�F;̔+��y8�₲��I‰�a��9Bݐ�-�H���hq�<Z�a4�&����S���Ղ'�۫�	�X�Z��g�7������UP[�g�Z;0�d�h����DL���TE��KG�'�g���s�j">�qAN;�fN���v~\Ym?iP�C�q ��P�����K\�P-�;
���2�2/&Nl����u<�ӴW���Kc����P�e��0��������HF���9���LT!#[�q��'�D֦���,�+|]
1165
+~��2�M;J.���:��R�_�;��TœOnB�,���4��Qm�y�q�Z�!v�n��=�W�(?��Ň�J�أ���9J+�2��z�לs�<VĿ�"�5w��g'O����>����u&�^_A�T�F
]H��-Loƺ�50��l�0Q�p�����������?����
f+������鸨�6�Pr!�BSb?Ԙ��D�e���Ǹ��'�K��z���F�	#E�p��;�����=�3��v.ͩ��<��
޲�Ӛ�,�ں�j�����,��]���I�[f�����������"�D}4;�.��O��9����f��	��6��;D`�|�����ͩ�@E���H�M_n�R�/���ֻU��#�h���n=ʏ���N�������S�ٷ��G�b4���/u$ܳ��A��m��6������m�P���c�u�j�j�\������^��A�[hW��]=��������J;���j	P��/����]ۣw�B/6S�ig��_i�W��W_�x���<��[f݇��#z���!yx.#�N}I���}#.:�>���c���W�CD����5�g D��Ώsp��x�e<?{��us}$��R���w����Rq�*1;����څ���H���C)vQЩ(>�ܙТ҇�cU�ds@	�,��:�n#<�I�ˑ��Z��8�ӧ
:u� ���a�
l�#�ބ��Ę�A��"j�(���*���]p����8�n<O�:���tי_�yHD{�V,�ԡ�B�{eP��65�
}�=V�=���{��J;�-LL�ԎT��ɺ��?����O���xܿO]�^u���	�)EPU�ilv�_���g�#K��P���ȡ�E�IũyX��Й�m�2�?3CD�m�xCCλH�e<��l?r�.*����F����[twﰂ^ޔSe����Z�9�A4�t4h��xއh^�����w�m��G�F���M�+S$�`���:_��3�%�MF����}���ix��4��b�{��=��W�7���H���0(|����Z4�#�9$>R�%v�e�QR$Y��qx�~���Gp��S{��ص ��	D	l*��IՅ���*��ft�>����g��|h�e4�����L1�G'
1166
+}5�]��^���qHbs���
���~={%��9���]z���Wɵ���O�������ze�@P4���w�����vE�vO���o��OM�� ��{�p\[R��S�]�A�-����9{t!��x����t���b'�_:��w�m)��G���
���Z�	<X��ui~-�za�)Ȓ�4���rK0>�� �KJ(
1167
+��O���8-�53b?��VV;��1H��&fO��b��=C�Kr�l	�y/���#�H�g걆y�*�
1168
+���آ�G�h�﹗�>/Q�?���
#�c ,�i���wKA�M_IG]���	�n3̛V`M�>	��h���#kg�#���g\�Uvښ�����(>[�!߁�j��z���x�?�!���
=��?��
1169
+.ވo�Zۼl)F!��p�[%$hC/t&f�Qy�X�1b�� EA���~?A�'D7TsH�l�
�W����w�Wie���$�)�eR�@�>�.�e��On]J�����䏴���3;}hP'�S�Zam
1170
+c�+�����h3�G��Z���d#W��45�@<�^|@�{f��ad�T��¥q�1]���N\��Ι���$��p�=q�^�8�?�,ͣ]/��4DE�����GX��FQ��b�1�!WJw��ïKu��p�G�-�s4��/�gy;��#'��R��m|�4��uN6�~��c��%�dj�RݏP���@%v������|���N�$p�3�G��R�3���D�]2�e� kp�r�<��ͦ�0���
ּ��.�S�Ƞ�c��+�!Jz1�}~��Ni��s���:)�n�%vL��ޅ1�&�
1171
+��F�=ct�9�G�~���s�!7�Tۍ���k܆0�}B�„�z�>!0�-�0�O��'$��}B6�ܳS��;����1{����c�&_7��vgoT��f���v���cޅE�i�ȡ��p��[��WGu:��y���[!���ܪ��tyrdr[�`<�7�
�3�A2��@C�[���5�D�Uvӿt�jA!'��{�vr6�"y7��.�U����[��ځl�z�F�7n�8�\���vNp{I������ѳ� ��
����X�G�z{�QQ`).���*ҟQgR�k<�?��LEre�����7�9(��mm5�as�)��C�SC�(�1��9�y¤f�#�k�R>� f+��f�>J3���u��흇aG܆��܅~�{<�z3�i��=��LJ�x���
1172
+O$O܆N�j(�GӘ��"ukYd�;��Q`�*:�����SC8
]��F�ryJ���J���$OrS�\:�ey�k��1��l��
1173
+�gs�s���R��s��P����l�<9F�`�b�c�t�d>���o��UdC�r���[~����R�x��}#2�s�]ToÆ:W�3\��>{��C���^Siu�
1174
+��W�e���)����l
b���/���\�Z�!hE0�_��`�¼F���~�#z?&3&�6U���v����4\����F�ZhP�o竂ĸ;�%��|���=��UB��7�q;�C�[JxY�N�8@��N"$t;�|7����<ş��@�h��;��#h�;��d��[ӽ����x�����t��a)��%d���E9���NJ�$X.�<�j?R�n�+�w�:���е���_��My�s�� ���f��hC����b��P��vZ1!��g��1��[��	l�]�h>JZ�'�M� �\Ǯ������k0�K�wX����HE��RP�ZN��eU�f~+x �9���6J�nP����ѕ8��v9��h
1175
+��C2+�m2���P�}�7�1����{8p.�.�
���>�(��s;H�}w"�'ڋDPu��oJT�Ds���0��S�c����<�H�x��[/�E5Ѝ9܊Gd����y�8���u��?�}�������]S�K]���y��-ePw��7�=hy���t'YJ��0�pj�t�m������/�]�/��޿��*FN:�?��Oz"�'��r�;����H��Ųv�7	���7�o����r�R�J-��zG�=��@��r� +U�I�%�(YK���M:��_���hu[q�R�9���|��20H�<���z4m�9`��Z�&?Bw^m��7�E�D�M]���@iX
��M��	��'x�w���*0�6�
�@щ�&֯��ǛR�k�pl�Fr��A���M��a";��R�J���d��qv��ti��=��L����؏� ���~�ɔ�!⋾�����;�<�����o8��xd��Gr�����&�ֿ��
1176
+�荨ʢ�[�Z���ꈆ�A��
F�� ���JvV�~@�;|�8���6{��7�_�!4�Mi�Қ�z����㼱U�
1177
+;G�8l�����������u�'�g�Y�e���c?mco߁`�R�|{��Dou�.7�x���T3l@�l�����(rW��P��7����ڎ@�|UbW� k��A�]CI��3Y�?J~ץ��r��3���#n����xf('w��/�������1`͛�MP�~�_���4x�,>9����t���R�H������,K�!DZFA�����.��,y�"�1���t�L(S��1z��a�t@b�>ˑR
�[1$���	df��⾮��zNm�b��z�
1178
+=�ã£���y)�ǫ����h��x�)���}цC���j��CT��k��Q1܀��G��{-��z��
1179
+/C�צ�/�C���;�O�����<�Z��72!��A�?_;C9�78��Q �c�����5����s�>@~\�
1180
+_d�vY�'�/Kc&�
���<>�����1s�B�0.��-��W�2��[0&}t��y#2�m�U�@5G���e�����^�����~+$�,����lZ�K,&�Y�!�.���09����!,[Y������/b^�=Y;�+���h�YtCR^�Ƞ
�~������:A������l�T��OЃ��������Ҥ�m�-8.��pv�˾KR���1�FX]�'�9nu�z&GCR�n�94.)[����0���f5��e��c�&�/]�2���W�cAk9��O5����NX�%���l�Ǜ
��Ǔ��`���Ko�@6͕E)G�L%21Hȁ�Kl�#�,�w�0����ז˭��`~��)�/Z�5	���Y���H(�>J!+75���o���Nw�ص8�<�N�<N���z���,��4`��4��dZ��Z\]�İf�@xJT.��h� �n3W����?��-��e3Q�����{�p��S&N�r.ћ4���N�,y��cO�d=��rϸ�𿂉Ù�Į�٢y�e�EwJI����ќ]�]�b���U9��X�{I&[1���D������ܬ3X��"��?���N�㧑Ku�W4}I�³iX�G�~�cH�a	����~�rOC��x0Kx�:[]��ѳڌ����!���31���zr�F��$~��p���5x�o5���:4ن��8��lzK:����y<,0��6��tG[<%g�P�.4�Ѵ�q�	���[�{���Ž�.�~upͩ�$	�݊/��|�3q��aNX?�����5��:{�)�g�݈k�<�͸�k��r�ؑ��|v�p`��(X}zG~���gd]�,X���u���Uק�CH��f")�������%_��#Hd~�gC��Զ}��
D�?|�I���W�ɯ0�m𴟑A��P�K('�У�����|+|��}+}�Y����x^�S���shU��\ď��a��#|K���]���H6��c��s�5���'�%p��/>u��K�R��ϣ!�˽π$8�K�)Gz���Գ�u�3!VU^���|���a�cz��.m2qm8�
��։�B�Z�[g'��w<�_T��k;�wܩ1���s��F���^*��%7_Ρ���j��_�0<�v
����`c�A9sS�J�7^C�Q��^<~��%%��
1181
+�4
$���H��D�<�F��0�%�_a Y�&��F�ҳ8Y��a� 6��D3�	�� 8�T058�
�K��^��N��=��crk�왆������ݰ9�@VyV��K�^p;��#��}�׆��^g@��I
1182
+�*�&�m,,9�T���Z�Q����fbĮna�^K��+7�L�oC�|�^�����i�W=1ڣ�5�PsW=T��Q��r�d������4l�_��:��߃��s��q׳{�$KJJ�9�E�ܫ~O\��&e��(
�N�(�X��Sua�����M��N�M,����I�-��Ֆ�x�BL%�jn&�o���ŀ����
1183
+;ψyY�hp��˴a犩��6�<R&��\5}�
1184
+�yf�(��z\�i��[^?��h�+g���H��=kT�e�nXj�{0�^\0S�mB��c�ڊ�^
1185
+J��f���fQ�O�7B�����1��g-�Eȃ��O/���?�@�對���W����*G����6$՟);���������$�/ʑ�.�nG
1186
+�~8��l��5�X\�_]��G$?�`<m��\�S?���D�:���[����H��ԹD( H�6������>Ě$�c�jSm0a��Zja�
#g9[b"�~�6�jO��_����2b�)ˬnu����������k�$�y�7�t~D0��a��3Xڏ ^��y����L��hyh8G���;���%Wu‚w���Y��G���n�C�B#�s��Q�(�^1�pF�`�ʊ=�����.�I�*�V��j"���1Xo�0���B3nM.����8#U�R��!i�q2O�+ۚ�ᾡ�
1187
+�Rg�8��������
�_���UOF�5��fbm�j��榴���^{��y�h�wȭV� 7�]:K��D78o]���j"�A&N���e�����1�(��b"����H����i�b_ı��Y�½�������h=#�yL M� ��2ϢJ`�X�9��47J�51�n�c9�8�V�mp	L�[`���:���.�~��m��.T\�ىǯ�<i�0��^����	��́tA��{�&��\z�H��ѳ��k||�p�[�0�L�~�@�㦅(�����T����L��Ly�)`n�_��ڦ�h#4��9F�����7f*��ڢ�9�-�����nG��u�U���U⨨��B�6�2o���+�P��u��,iC�^�U��8C03e�B�WLA�F�R�ez�(]��CR�V�[���yv��
1188
+�
1189
+��|OT�P��--��c�`�L�~��7�Uܐ�}�r`9¢(/a�@.PS\5ZRDyb�[}К���g]�;�Z�Z9�6������-��KZ�����T�Ӛ;��?`{��>.�*T�L)�`b�E�s��A���H��d.�\�ӷ0�GOoY`��!9K�KV9�ÅCL~�M}X��>u��y�q��[؟�o���vu�C�D�%�d�|�i~�㲫}O�OB�/���8�u=n��Y+��)�2�K���B�խ�{ǀ���2�����q� Hks�A��~_�C@���y���ReK�\�']���Aݟ�p_w����K 
1190
+j98
1191
+�(0��us�Sn�A�����ˉ����P��p$����_(�IQ+���w�!Sӽ&I�U�{�}pg���%P����Ao�DE���mF�����O�-����E;i�^����F�?r��Ɩ}4y��X�Ӷ�A=#�O�
1192
+������FXd�*ø$K�3�D�;��Pvg�or&vv%d��U;�*��)JkT�i������^����My�Ʃ�xr{�T`�A[�
1193
+��ƫ��S�ݠ��pq�⵹+�hjE��0,�`z���+�/�}��(`�Ȑ�pH�C����9H
:��8�B���Ղ�,�t$�a(�@�	�T́PC臵#d�Il���:ɮ��+��f6��U�Z9{�/�ߋ�+m@
1194
+�C�c����K��>!�sh
JO\�Y\��k4�:��p�є�L5]*��$��i�Y��A���v ��7�MB�mJ�p��9I�ʭX^8�(
�L���(Z�gS�,�=�I9z)z��[j����ϡ��fq���E��r�E�b1B�F@��q��_�P��}w��g�>7O��1L��ɍ[4�+D��TF}�O���q���'���n_��l�dO�0�XPr��o����q1����$�*���I��.�'w%n��v�Rm!1A��	h�L6?K���:Xs[�Y�AR[1��=����F`�G�e�����ze�+��jr:�3S¡�����|w$�C	�8����;��-fq��)�j��s0�v��ܱw�ԵT]�a���O��O�}&vԅr�n��U��=#�G���.
1195
+J���o�o3+��n���i��;��ըK��G���q��0Y5��h�Y<}�澛=�Bjҿ���>����ێ�h�Lbh��h��)�1��=�z�W��I��?���!<�m�4�?��F���5����b �Um����G;�R�Xj`]�s(��Uo%0�=*� <>�G�\�#�/�4�I��}TBRR�����fx�4w�ɋdV�"k�`�Ez��?��?y��{j��W�A�RJy�"�
1196
+hs/�ȭe�
D:������(���O���-�,#r���H��z�Rc��/e�BW��_�n�:��_����b:��rT:���SP�쁧=5*�Fg�"T�aorŵ�N\����Xz=f�D��*����lY��C�<�42�Z�mףW&�x�#D��+@��$�:�6��{&Z�1�I���F���C#n��jQ��N����o����h�d7\��\�
��F��a�x� �v
1197
+&�"hY>���[�
�?���t`H�O�	���w�me�]����m-uU|l��Hk]��nʖ"��@�6��#���$2@���&׎!tH�ˀ�ב�T�R Sa����۠�Rr—����d�_�n���"����O�|�n�p�����؟B�e3}h������Ib��>�e��OCkg��%��"Jn�7i��Ӑ��|��}�����ch�k�}9�[�R-&(���k���hf�	��@��,�m���9qz��-�
f���^oB���ѽ�������b��tQ�Yn{�:���F$p�#D���5�`/J����dн��6��K���;�J����`��GE���q����:=����PA�	��S����W�& �Z�{N�9�e�3�$j��ROVdS׫?�i�X���tѳJ]�~�s�
�*�ێA��6b�y�\�(�=�q���O�8��s
�Zb�J+p�U��۞ܭ�*�=ϵ��Z��9�A9����K1c��{�x���P�,�cS��F�wP���Y|-��!x5�m~o�%�$�ă@�Gd-�5����@�|�
p։�o�x�<|�Ah'�8aA&	5fy@h�7���pr�'�7}^�eJ���:X푥W�5��i}�~�ϼ��W���x{��������X����'�����S.��$��߲?&��4�57��U�/��r;��F)��;X0�����6�E�n4��
1198
+��'���xc
1199
+�J�/�uRf$F��ǯ%���+'�Г���#k�Y�̚Eh���--���a>�Ft;���>��
�ڽ�1B*�=��{��j�Ѹy����=�IѠ�9��x\��fT���N�?�b��@�k��q=$����3�)�Ҟ�7���c`�#���T�I�Ƣ}񼓾�/�k}_�4�|H;|�[%,�^6���dz��Z.
#
0��3E⢿&f�F,yr�8�n�b/c����F�Z��1�o�1@�5��x�t�ZV;�������	�C�X�I����iF�?Zc�N�$脕B!5�S��K�^d���?�V��#�7�?+�s�F���mUMf����¿y��g�G�sv��p�~m��3�@������>|Lϕ�i�Ev�^��G�H'<�Kʧ�|���k�H�lr;Z6������ݟ��N$�01t܊v�J�z6��i7ȑ.k'��֤Y;�2��X��?�̯��������t<RP��d�^�!��}�Aj�ɊO�k\m}��t��0^ܑF/�
1200
+�^n6^����O��8��7���W�v4�#������Np��9Z�b���:|��yT�0�Jfi~�bW�ǤX$U0z�Mē�zqv�R{&i����vZ�`�
1201
+�9��4�.�Z��3�����9U<�����̧�n�o�����l�~?�/�ԍ����5�a��Է��[~zKg(���$�c4���1:��^���?�a�?���S��k.�R�sܴi����߆����F�Kʨ+��d����3i}��ڒ����؜�"%����<�^�h�&�fI]���S���u�^D�|��[D	6�&����en�\*�v��-�A_����*[ڕ���1���ķkKGVgؗ��!�R�l>��j_V'���>�
�!v'��b�	ڏR���iY��O�bW�Ň���kɧ]��KH1�ޭ#�3���6�a3p��}}C/���o߃��\���wp��+���0'�	�0���G�z����N"Pޱ�~:�ޏ
�l��}���|���ĕ�5��eL��2�A�@��ܖ��mI�8`PMW�#���Ĥ�p%M�FoIJ]rs�uך΋�Xj{o�J~��d�Ǚ�O��O�g�#!J��>�"J��G�N�7��YQ��_�I��^e��X�	�ѐ)b�J��קN��^��3:�]e͛�kZ�nB�S�0}Frj
1202
+�YG��w`e�K��,�+�B�_p­:̆�<wvw�v�]��(
1203
+�jͿ�<d��(��1p���_�΁����cu�ί�y99%���y�޾|bC��הx�/���"��+��+)����UG���&~�i�e���B�h:�űٔ�8����8���$��i��utWEK� 
�E�r\\+N������g�y>�3x�f��>���ߩ���?�b�0.�����}�p��I�9]�%l�����b��cT~��C��D��H�8VZP~�1�6��bo�/<������R���0�9��TMv�]��reKڑ���Q�J�S$���)O�<).� �U�`R�98��JNz�*|��V��'?��g���O~X�V�C�Vu��Y��C���7�Xy����8_ӯ��W�:\�t���pU���n[�����V>J�j	??�BSx�"b�А_�ʔx+�x+<��e�/��/��-�bo��t��^%�!{07�i�4�<���+�q���-A��&�2�'2��Z� ��9h`^�00�':uĒ��R,�ˡw�*��t_C��:Zr��z�UU���s:��Y��у������]�@p�O<�
mJI�
1204
+x��Q2�"�*���v�黎��Y$��GR�V��<Wq��֘���J�I���o�[�ZQf�`�I2
F�5��.!�����CoB>\t�L�D����k�C����Ӽ����X�I���ܠ�y�k+�Eۦ[���s.Y�N4�o��ӏy�j�7�㬕+�^l�gv���.�X;���'��<��euT���K��I7�"��ڭ���oe�命6��Y���*�W��̗@u�N����2s���OXͥ�W�[�=o?��o��1V�q�En�x[g2s]�=:V�}i�b5�u��-~O���Ì���4��I��IM��\�o2(6~Dֱ!���3�����S���N����s.^�P�N�~����x��g8Se�&�r>��GR�}����	�V�Dq
1205
+�b�=k����\3R,����x˯��(,ޟɘ���9Ǎ��R��"w��#y]G�=WF>z�8���[��2L�b����}���|�0-�N�v�����5���������+b�	kÄ����z9���^�&������MmJ8s,�5,��KK�6��"k�!蔟�}�7���暄iƯ�W�pM�CvG��As�+gb�V�,�C�hT�&��vW�ύ�b��މ	*U�'���s���u�: ���MI��^5�0� [�x�y{I�o���86�aA���O�X<��w��.~�	[>�&��r�AjeE� �P/�E�������DF��Fx���j�j�ȰK���*�O��j=�Â]�hO��VV��M��-L�$�
9R�&����ڄrY]�v\�DL��l}���.���ɼ���5оh:�?�\�q�����IS��j��أ��wgO�ڋ�{��/Ց�����I�,�߇���J+n��W����>�q#��d�f�^�1�L%�;4�;{��f���6��Ľ��{�N��;vP���'5�ٖ���?�c���u��|�n��.�%ᕕG-(��Jt\�t,g�:}d
>�O�a�eZO7��$�>1ޔ�=2�8���߇���|�C��=�����/q�|‘8}\����+�8����u��k6%9�%��K."_�]8�.�%��V�	�l��%��o���	[C�M0%ɵ�����Ś7w�@�/��|$�ǃwB���.pK�Ч���MCb���:\�/��4.�&<��-H|�5�5��O�i�X��_�n���R���_U�/G���ᵲ�^�ɭ���e���$@�0@U�/1Ic�;����e=�1�Bo�Wݾ��C�N�F�ʸ0q�p�7.3;��w���Dv��"T����)Kn���~�I77�d`���_�'��k���|�Rv��괡��F�n����rv������u��w��s>tgao��?ʑ�)��AGs�K(�2�Kձs��/�~�KH��4W��󊄪c7��3���]U�UdC��6SNm��t�mw��`��c���K1��mA=SΥ���н
0���`z	�U��ߥ���E'�]��=&vx;�T���9��<��O��Gϕ��9P�“<<G�H��$�α���;{��T\�ȱ��UX��w�JGR���'�%p�^1z\b�-�زL\]���й;�����6�i'�w�29�#�e��yI�o\����e����~ݒ4G.��yZ�
�iZ_�:$Oװ����I����o����͢o�t�����9ݐ�P
L}�.ஷI�H���R�]�����"٠������r�|x��y�������w��툺3�#�uЗ?=q��^l$<s��4��ⶻ�'9\Z��[���Q�瑖��?9�wв����$�D�|V�5f�2~�gBҧNo���$_���]5�h����<Bfg'��[O_f�
1206
+,s�Ӊ�_�Im����ϟŎ�k�S�8��{ݠ���&�����絀
1207
+G�Q�#�����S��S46_�$�}.͂��f��a&�*k�Z��fr�NT41��t���"(J��E�LP5������"Ae%N�O���3����Q��s��wq:X�:! ~xN�7^H�;n�S��4�=r�nk4u1�{�8ꄼ�$���������;�,�XN���Iy�o���	^�W���v���.&D"�:��d�ʊ�Z��}^�����o��R�n���+.�r|�bV�oT�8CV�<$P�k\Y���_I�F]6ᤒ�3�XA�у�^
1208
+��#�6�䇲��Fy��D0�q#d2uc�jN��
1209
+;�4�Nz����c����Ԉ�g�ղD�=B�рȂ�x��F�MU�C�uw��\����ںh�!�C���z`5p+��o�#��t�I�
1210
+��%��6��C~0z-��r��e໺�^!�-Gcx�D�����GO����F(��g�ͽ�_����r�)���It^�D=	W��'�$1���[D�Sz��k\2}�B�v�'B<����:!F'��r�@���q� /Y+`�=�0����#���f��'
J�~��w]R��3�ve�t�2�<),Q��'��oc:
1211
+i`��]I�;��j��E!��v��Dy�v������`ۙ�,���\+g��p/ʀ�'P��wm�ŧA.7
��HQj��������fglB̉���AxO��)]N:W�[��TsOē��v�T�-�=K�s��c��`��G��|��ϸ�
1212
+��`�b�@	u��亶teG�׹'�՝�:���c%���w�0�r���jS�~mvuv0:GNjQ�t�7�r	���u.e/�q/�/�$n��ܖ��k_S<�A����`_��g_��Fh3��^�1������xҞ�0��ܚ�:�l����M���@�M]�7b^\��[�+ʉa��&5�>B�-� �N*�M)�0N��E�b��p#�%QL2)���e�0��������ʈ�D��"K��؈Y���I�A��yܻ7�-:�f��XmmD����/o��a˔�+>�NYlO~I��{��[����J��Jg�ߜ������ͫ;��J^�2�[���	(��ϛ�/���7��
�
1213
+<ߊ���5<�ue��3H�-�:Y+���"�~N$;3�:+��8G��/��G�9|j	�<��+��@�E?���~B"�}o��Kj���������
1214
+��?�צ6�Y2+I��g�A�ѻN�?�cΛ������66Ml7H^���lq��x#�3�=>zsH|$s�lbW�
$K��ՠa�>;�.�Xt8���
��a60��"(�U�	��|����F��)�Z��M����[��&�3kM���3O_�sm�"!B%�j�����C(�U-f'�}#x�z���,��.Y��u�&�pD����,ʖJ�֫�[���2��&���yJ��&��3H�f89ɿ���]��sk�/V�,�-��o��M�&���G<�!����yLV��ؘ�DJGu�}��~j� �����|��^�����?�V�8�wW��|�d���~��XM��$����0��"෈�	~��)j���pQ8��m%��H�9I3𩯿������ӑ�&O����{տ0�r���B��ߤ��iRZ�pS��d6��Mٺ%�V�+e�t4��k6g�*��(�X;%�4�1�>Rde�'Tn��}Ēl<�<qh�����K�[
�5yH�`�Z�8=��Û;��˯�|�~"�܈�׳&��)3�3@�m׷�3�F��K	��D�����4oOs�,x
1215
+-��y����/¨��������'�Mi��L�l�E�^�����?���%�'Q��q�	�E��jxV���l�Ŕ4���G��y�ʭ�:��hgڂy�6)��Y�Q�'��yVt$��n8�v�1�5��+��g�u}���¸��T?u�<b{�NЏ��]��'�63x������^'�=&�q?�fc�Kb�v
aF��X���kqY:)�c�_b0�w&�C����A�g����Ye �Ƈ=��n|؃����9.��w'�����.u�����cs�N6��a/��j�
1216
+��
1217
+k4���vq�I����Hc��ʹS��T���;��U⸨����8ncY��H:�}����\��z�G��]�Y�H��HBV���2�ɤ�˨�%�;1�ӄئc�Ծ�L���;}ZJ�M�ZR)�� �n�'��̘�̓�]ɋ��^{�D�GC#cǎ=���0�0�I�p�ڥ'���
1218
+��pgi�t�l�;�Zq�Ϯ��:�R�W���ƶ���ñ=5���w�ғ�+�6ߎ�D��~������
1219
+�g�-JmJ�z��I�k���w��$v���>���ţ��^��~�~��g2�򚍗�U��~�7��/6/����Eq�8�a|F��\�9|w�N��`ʩ8���1���')��v.�f�D�:%�q��N��n��b��.��pL�+�օC�?��
"
1220
+
1221
+”'(�	�F �Eh�0�C�A�6ƣ��蚶���L3_GB"~���yB�(���b���/�>6��IŻo|r���-|	��0�xi{[����huUR�3�p��o��
Z����O�i��QPz�u��:@4�:'"'�f�NƗq2�ƮG~+{��eA�}���w�$�1�L��E���7A�|l�����ft�6����d^;�!������H_A���Gdj=�.M苗���Ү���P��A�g� �|F�ZNl
�A��Ѓ2�Y��]��"us�C�e�;��Qօg�IgK�{�g�ɨ��_�/w��mI�-U�-qiܧ�N�i�w�90��Pb�H�Q�
1222
+�#7ZE0��$%a���<�[�E_��@@;��9���<3yS*@d��ٓ@�h�ދy�h��q7#�9�J�Dj�/B�ަp��w]���Ï��,�F�u���E)<���|��ߎ��6��(��x���!۲�I���F}��0���K��EL�u��:ǐb��ZD�3 |��� �?�>>mУ(��Py�kq���ذG�����W]~;֠��v�W���R�ىV�,5�y�e@y�q�p��9�Yّ�v��or����M��2���
1223
+�q��:�Y��&��8V�pC
1224
+��Z�VX韸�V�ť&
��~q���Q�1_L��#�h�~Os��?�;8��-Kl&�M��P7f`H�83�S_F#��g�ܪ����	ۦFR����fU׈�V��eĤ�C��E��}�K5�f��M�q;,���
�����t,�*��])���J�sC`�K�G0^�
"�{NJ�)΄�5e���b���F?�YB�����*i��h�:�I�^��3�#��`���r�����&�K(�D��
1225
+-N�����Gg�0�!�5��B�S*c)�O٩A�t�/Z��t���
K�Sw?�2���Ŵj{���J��8@A�ƪ@�n����v2��4����Y6�2t��_5���
1226
+�y���+�@�CLI!�2�C�@	���Go0����|�1�-��tmB�AR��D?<ֆvN�W~�9�Wެq�l���Q�
1227
+^�h"�g�IƳ�k��7k���K�ٵ����c������N�?�n��1v��ϕ���/xՃ^�'qF5�
1228
+�}o��B��Rgu���*�3$v�bUʳ,�->gQI�W�9>����?�[�BfQj3}��B?p�v����\���V{ղ�P\N)�B�	?u�H������[p�"d:T���i�`nbP|���t=�Q�|\:�ߒdf)^�9�a����d���&i�8�V�,G,��v9%ŭ�Q����b�7�w:|=7G|�-; "ϸ�o��<�	`ӫ.O��K�;��G��σk~ɞ9��"�ا,���Lɹ7��B �Y����e��4���d�p�
1229
+�ёY?���b��m1f�C��m��;�����
1230
+���˫�M�,o ]��)Y��RR��9�F�
ZƎ�)�ÙT��ln�a��M�H�8D�P/��έm�Ő�Q(�rd�LI{m&�;<,5=���=�x?q&J��`�+R (�9��@�W��<��c3l�$��iP�үM����اn<	oGҖa.
1231
+D�w�2d�<I������Q
�,UZM�����_�Bu�,�U?�M_�.�
1232
+&e��ǧ)[�P(��=�)X�Y̧�J��c��/{�쬟
1233
+���^�IH��%%�ArE
�_%�\ձ�r�r1��ROnUj��2�}J��k*��/�Y���!2�5A��
���1�{Y�!c8nEUj��!mh�Ee~�CUF_��K�:�o�+*��`\���1���Rl�)o��o;���҅]�_!l�B�)�_е(I��o:��a�H����[@��I� Ⱦ̺�,�Z�	ovnRj�l60^9�tRđ.lÁ�⢦�`/�_��9�*|,���Ȼo�x�B���h90�#R�A�5[#P�+ĐS���*��·L<9�K}hJ|���	lA��'�7�a,a����<���F����v�Ep�ub��C���a(p�N�'�*S�n1��OF�iD�1���(�'�ͪ�����ChO��ݬ�o�u3)�*���oi��=����1ԙ��%�;�h&\G���Q��x,��h��2^#��i�
1234
+x��?2�S5�B6�;0����IeP�~yo�`���v�t|�>j<_����ٿ9;O�;wn=��(o����\�4$���T�ԙ���pm��{�/.��5�Z|�C4Q��p2���i&U�;�7P�"�!��W�A
1235
+n���|?K�]���_������X��z���/E���
�
1236
+�|8��HxW�J`s�9�T�J�]8{L��p$���!���-\
1237
+��p��1�/�>6�!
1238
+�M�be7"A������!�]�$%��.�2_����V�&���On-ʉ�	�)���(��w	�EF�gI�U��eD._cAv�N�g[-8`���ؾ�F��|v[��*�@
��,�zc
�,>�9�{��;��𶠶��6���!�Q�	*�����X�m�A=\�=�Ƕ7).�h�7y�>��s9�"r��w�A�p�'-�+*)��+��9����]1?�/�
�*�hܩ��\S��<WVۀ�$~"GP{3����"�����6�	0$�I9��&U�=�>�&j��w��,��`_���'���jMhL���,���f�9ܘ伮�o�+>������Kv��$����&�hA�W�H~��p}�����JF�&WX:KE}����69�I�e硉$���V�@u3끼Z�j��涠֚}L�X�f��ȝ6=f�X?�-Ծ�p�@t���;�+���\�TfY}GN ���6�\���`��)�
mԟ�c�F�!$���}#��`� K)�v��,yч�5�ħ�X���epU&��x�u�:D��A=$!�U58�c�je$�����r[�j�/��sYnu��, 2�n�Ў�X<#WӰHF��4f�~���R�/�n�#�yp;���
��2K`�[;�P�*���&���m�~�W��zu
���z�nW���6\{d�$z�\�_�����!�񱼠�Ԯn������Vb�Y��un�x�#~�ڼ���E��ģ�"��\�����
1239
+�q2�B7��7���@�����p{��к�y[�)�S9�K-~(�kr�&S
7��*��ק�@~�ou|�λ�\�Lj݃�L�<=^�;���3~6Xle75#�3uJ�Z:��ME�J�8]|�G%�"i�2�ұ��f��q�2��]�}*�>���E����]*;�h�]��nz3�kF1�4vX��{B��4n��U��p��\,�ߺ����M%���\ݱ1��5�2Z/2�ܡے�	��B���q��ho�x@K_n�@�jCăҡ����.į���y<p������'�%�+��##1�wD??CV(
��a�YPc��j���G�z��&�QOSO��X�eI�H����XO]8Q�ѝ��s�3>Q��T�x^J�Ci�z�.���\��1�kkr]_$UU\��ɢ�������'Z���)��vg�L��4`�	ʘ�ټ�����@9y]%�>�с$��+�{Kwv��y��{k'}������w�?}�&^g�?�e�?�yS<`R}��~r���A����ߒ��[�i�����uv1�I��ċ��E�'MztWR}�%#5�d�jT�P�R�Y��;��z[��/�9p��N�{���Ì1 ����DĞ;�@�����-d�����O��^܂��N�"�U�6���f�#sؾYǼ8ҭ�+	;D�4 O����T��|����ǚM^���� I�b.�K��0Q�2�w�X�z�= K��Z�����́.�2�e
1240
+���5���J7�/���v��-�JΏI�
1241
+R0�ꤝ�$��{,�Ľ�|x��F����L�����?�G�)��袪�M��� /0�(Y�
h�[wͿR}��VWͿЙ�4o���r��B���M�Y�t���^��9�����j�X0����'^��<Dj�ħ��W	W����F�v��Z��)Ѯ���� ��@Fz�(�ɐ�j��:�.
1242
+rҏ���#�I6]Nj�6�/�u[̲�*����fb�Я�*�0ˎs�8��#�ñX��q��7/�%�R�6b*�7�C'�usz��������f@ϸn3��W�t�Y�V��F�>�_B����涰c��!��ˇ��oQ*�C��3
1243
+�������`��E�pܺ�;���U[1���&�аO!Һ!%�����xd.���⼳��)�V�IG�q�a>N3�jSݾ��
8�gC|��us�66
JI�$�euG*�>�̊�\&�p�п}�6�*u�׿�<-.I,7��v`�u�[����f%�gZ��2�jah�}r��/V���y~t�%cͤ��J�M��WDn@���>��y�V�ŀ]u��d�X��i�\�[��\S~i����7��=�a�;f+���T�PF�]��/E'��K�U��Xp����v�<x	���_�&oB�QW�x*�}Mj��ã�1���
1244
+�%k=�6|
��X�4�,q��F;Jբ4�zYf�P/�O�n�/L5\;�C�Q���̏Fz�a#:\ �RZUeWSp��>u/��D'�\��靺b�(�Z}�R�f
1245
+�D{�hh����j�dq�y�\V�yv����NaI�w,��}��t��`�p��U9���A'�'X0��&&���'%�n���	�z�do��鏈nF>�cף
j�D1��]�l��ĚX:�l���?�p��s��v�aג���)��Oq+�<�~?y����〔�[����7�3/ƈ��'V�Y���<�Vc�RL=��v\#�u��7DRv�(U�8�+GS�Pk��Z�oO*&�Q3���6���J�c��\�YF;�ͫ�h.��.�ޤ� �?���i0f~��d�Ĵ��(�X*�O��S[)l�j���8�����J��|��o@�TYW��|-g��u�R��B��E=�)O^���{�\B�ܑ��)��?�@Y���c��R��Zl|oX$�+�n)�C��DP/C�� ��z�'�⌣��o�E�Gza�'-��u:��|�E��Z���jf+�f��;��?]�V;�L�Z�|�M6�*��J�EV�2�Ο�
^�	��0�
1246
+}_��R���Y�kO�����N�I<K"�y,�ڽ���c���;j.|�r��8&k`�/k�6��L���r재u�7��|�������
1247
+6��͇��b�`�4�lF٨M�a��3V �ʐ {|m�g(�I@(Ά��^.H�����l�iy'ǧ�5K��,k�B�����Q\���k���~��(�	Qw�%j�.�4] $��V����}~h�׿Qx��x�eI�P��L@��O'4c(ČzrJ�+E���(Õ[(�{t-f���6�����,�)�A�_��X!�២,��r��W*޻JV�s �V�S*��9��n�)�����"�oQ��bY�e�I�j�1��O^qp�f����d�G�-(Pb[���p�~��g��W/[p2�Kφ	ٱ�i�!���Q�8�ө���ݾ�;Ӳ�O��R��0�ށwM��|��R������jw��Y_�n̼���;L�$ll��^�i�q�G���V,��(4F/��>b�#v~�:`�s�%��y�m(t}a�v�3@6SZ����rE8�l.�����������M��_��j�	_����N�[ۜ�'��/P����f�ɲ�kѵ��ܧf����"���r�x��q��,�[�8��W��".d�n��#|�Յ�(��b~=2��Je�E�f����Ѻ=�Vo͡8낿�Y�6�En[�W��M1�Φ��z�C��9V*Umo�t�fy�T��DL
1248
+�sxi�Z���b
1249
+z���*�B���NS��+����?�T��h@���Ֆ�q�À�֘���g�vr[��W��_H����j��Q�ኺ��b?Fag.��QL]��R�&���YAJg��A3؁h�ș��:�amL�`�x�������)���/LtF;�����c����1+�H��B���~Ju"�~�3|-�i(���ōX�(�*���	�8�bkF��OQ���τ[_xmE�S ��n�E�oݎ���c���(#�D�'[`ת:*�iq���_X��Ț�U�����C��;ј��"�t��;�.4u�P�H	CV��.���"�@;43���a�)��;1�#`�Q�,T�����V��Q�Z�ZU���Ƽ(��J"�.�G,�>g��-�/NC�1�<���%��Sn���)�P`�"UR��m����W��Dy�6�;�tՔ�zP��No���z/��`gWU�Ym@�p�¤����jH�nA�:!�OnB“������l��>�D痁w:��C�Ru��(��-6����<��P�#(�����NK�.D�S�W�3T�Ƞ����f����JuYЙƣn)�����Q�v��&����$�����h(Os+kd?6�r[p�"���s��'����"�FW	k�>1\����;���x!�?�v���X�h���o���!�ݝ�yB�EO[�	,Y����\Gx�w ��\@g�C���訣$$�x�1�Г)k����"Y]!�r#����u�^@?%�z?F��H�������y�'䦂q�
�*P=g��ϼ��S1E����A�E���1�x��H�u:+��X}�~�J9
������j�݂iJ�
Y�&��Gm��y+a��`.`���؟3�y�E/�"6�����9�!���oI�)l�����Sd��w��>T��{�*�gY����J���P]�-�	����l��h���ꆑ�:*�E���_ʻ�+U`��z��e(�F+}�{Vw�b�~�������Lm���b�����AI����"I����Z[m��N1G�N=?�0�Y�`,�6�$5aFѾ�+6�=1@���ȅ]�4D���7��"�m[���4��D�:��h���H�ڀ��;+��>|-�|ݟv�	����Yd�U��P�Nvz���Jn)GfP�D�OmZb"3=�T�{c��G�"�þ�,:�����и1�ɧ��H��:4ǫV��>@�+��?�%�t7R�o���x�/9_q�A�{d�v�{Û*X?��8�����)����Qhz�^Pw�rȁ�d�J��|#V��~���>��^�*E�����xzd���5�A�+G�s��8l}���x<-�I��C0.KV�znn���ǁ��N��ʟ�,����1�b��������k<������ׯ�>��3;��tyf<�L}�,"t �<���-�!Ul�T5=Ǡ�aW��*x�W���o��d]^��]����ZE��ŷ/��+O�op�=�85���]#Gnü���,�
1250
+�_W��u�H����8}���{�'�)�x ((%��r+FǼ��q���-���1"+Ɇ7֧�@)���45Z�W���f1�:y(�O&�^-h"���=��G��P�XU}w��-^�yݧ���B��x;��	�O��ϒ�y�uͅ���n��;k��&=)QA�ĐQ��r���aK=�A�R����<7S���y��BG㫑�:.�ӹ�fި��")Y1|#������5>��
1251
+
1252
+�
k҆:@�F�)]�'�K�+�����F�!G���ΟD�^���KH�7���C�x������
���'�ɑ�#0w7�=Rn�*���vOhO�q��F������[QeO*�Ϭ�A�Ŋm��0��o'<I&�e�d-Bb�zcI�����,���ˏ�L�;�J7���?�k�x��<�i�YX#;�'�} �ш��')C@���M�k?���#Μ�s'�!US-&1�����rA=�b5�5��Y}��)�����Ȳ[�����_)g@C����{�״���rW���P�ơS�~(%�h����P��P���د��'�3���paN�=l�dس7�
�Uq�W�4?�t�O��u.��T��N�09�͒"Cڕ-mb��L���4���؂���3%}i���������9S��@E�۳Ϋԙ՛�t.��Mv��&Q���&Y����7[[�ZG�5
��\�d�Gxe`i���[��^-�"}]r�_)�H�˕��&0��i�h�,P	�����@�E���n���0�p;��.Cʜ]��d�~W�=��
1253
+MƄp��I1���JZ\�<w�E�"��!�!���=1<҈�a3��Bk�o�bh�Z#O�>6i:����a�G�í�X(��e��{�gW�B��ȝëQ�>�2
1254
+����(�)�h�-��5�?�0w�A��Yإu�aAS�����J��y�-j#
1255
+�b�%[�Cs�d��9Td�	_d(�+�֣R��t�N�Sj�S>��Ck@n�tsN"ܙC�P�����q%�Xkn|�l��'�uU������N���!�A����y���N
2��}+��Of�<��%}�N��b���Ĕ�1o(S�&��&�-�G���܉!7i8w��E�Ɵ�L(�f2�Pm�"W�ÿ�H|Q�Kk���?#�Q��#/z��o_�K���ʾ[aLE8����Y�S]���&:\��nZ�Cum�!�ս��Q��-�V��'l��~iDn�ס#��j�WX��c�Z	�W�P�R#TK8�Z�r�³����R�\��^�o�ƫ�Fw���*���PfV��3,M��F����(���Օ!ݦ�t;���C	�CsY�g��w�ЬP=�� z#�O��Ƅ�63��B���*�RW��`�C1�
�}�O�`fN�o1���>hy)	("��"8�|��Ǚ^�95t�C-ʁ)��.Ų%�o?��X6����U?k$�u?��7���q�^��V؀g�K�j4�8��0�ף�`��]")K�Y�]G�+Y����<&2��4PG�
�MsQ��{���2��[H���/�gG��.
	��4�'+��'V� �#/���U��
1256
+mE�/�",�PsJ�|$w%{�;:�5��;o�;l�R|��e���z��rZ|^������d���TG���Pci�
;o��F��E��٤N��1o6��K3O~h‡�%��O��V�mBj��˧��b�r22�ź�ЊT�!N�_Jnm�Y��12Rp����F���]�n���t�� ���b|�*I\�C��ȗ�7T�ڧl>�+�����%���p�GD^Zu����(��&�H<n�"7>�?�_?E��FX(�+��PD�>�cN��9�Н^`�.�z1}��Һ��53�z��r�y�h	s�N]ⶲ��b����՗;a6��"F��/q6����8��3Ղ,��9�o�DHQ��I4���F5���w| X^9F,sT�k;�$$�LY��ʳ�S��^_�F�@>��PgsWr�wVR<���яف�z��7�V=�|��'k���@45F�����;�]���n�Ͳ�O `�g�3�j�Bϖ%��m����uI�ܼ��Yvr;��|Y����
1257
+���hL�Z��ɍ�y)w�襃A����J��d�~K��Ʉ�x�k�br#.����-b��֫��6.��9Ky\ˀ�%���ɠ9uҔ���E��d���Ϡ����(1n�:1�K&��]�j-z�L�ć�%/e.�{��wG�V��t���n%���'{�����Urz<�]∎��G>��D/�7�oc��Ҥ1�d�~���G~7M7���o�[fSp�8�i�@)�~[�c�Bg͇>��K�N:wO��%c�圹 �M.���}���m�o�%��7̢�?�
1258
+���qzc�L��j	<	�o�o�U�!� �8}?�詗ɞK��@��5�
����f��/h����E ]��Ĺ��'@��+�͌�������LZ|
1259
+<v6L,��J;�j#�ʼn6z�-��=�Ǹ`?�1�����`/lv.;�W1a1�}0J���B�V1;b˺����7�|���Y�50/ZVxO�v�=ǧ�E��j-tV�&\[�~bJ�z=P��e�W�ܪ�z�wH�uR�=��<^�����s��2�ֻ$��4S�k����{`���
x��{�6`T	,�����u�%�^4wx��|-���Y?q.����z���a#n��
�?��[�r��<��r.����+C��'5��~�K4���s"Y�<���A�QZS���s�T��<��uSx��3�Nq� �t$��b�C�,��ݗr�.����r��h@=E�
1260
+u��Q�/��b���C^�{�실N����+�~3y-�'�`��0���h���#�������Ɨ��N-.��A�'���w�^y�t���0��b��\��jH9�;��r�*�/2V���\/*���8`j>��ˆG3��
�L�*��n��?�6[�}��;)ii�Uq��h˲��7���ŵ�"�K!l��z�ڠ����SfE�I��o�:�g�Q�|����-j��1�nح׷���r9��{U����a��IT�x�\���R�o��"���k+�C�қ"G���]i���i��K�\������+#���<�{@�^]�n�T�S���3�z$�jug/�SEC-j���n�Y�R���G�'ϭ�Y�bk�+#�v��(�j_ad&:��maŞD�n!����^�h`Q¥*�;����+Y{��FE�YC����>t\�ă@������1�f|@�6�fT�ͺű]�b(q��cy-6��K�~���vYYգ��(&X�_�.��7��m�N�~˴pm9l�B8@�}؄:�f[x��=�\�ū4��;����_��F
1261
+�D]6�lLW&�Za9��2�H��J��v��
1262
+��ڃiUS/1�}�%���V��w��ۋ۹�i=r��Yr�U�r���Z�,��e�H�mY���d)�,VψX���Gdg�ď`M4�O8!��X�+���X��4юd����T����P�ߒ�O�B欱h���*���{��A���aP
6C6BK��i W�hv|��i�P��������n#��n?�*O��6qވTe[J�13awܩ(dȈA�֭�G'^�i�s�X�gx2��.���!�\@�[}Hjؘ?݂L��b:;-��0GE��a�䶄k+�����v~�*<�]t��߯��ڽMV1�K�����_Rd���X�J*�M�H�r���Κ�D��Y0^-<o�Ͽ�u��Ѷ�Bt�����zo��G_v��os�g_��t�c��`X�"��i�2��ٛs5A
�-\�����VMM�!{�l}�|�G�Y:w�8GV_!7</�n����Ԉ�>�p�/�i�P�H��6?�nr� ��x�IE�1�?u'qP�^5�S�;�|�_)��?N5R�Gmu�G�i}[��}[ꁚ~B?�5���s�O��z9�	�4Z�H�2�̒�vx�t/V��C5���V�e����K�ȐJkƤ�~��6ƶH��[�!o:���ϡS�u0�p�G+���.t�xg�熛Q��9��}�NԎ�N���3����L�Z"~􆱣->K�ѕ�&���N���`��m��j�q�z�l�B��Jmܴ��z��d�xG�F�UR�K4�J��+Ql����>,bYL9{=7��N�nmT�	�lkE'�	�!b��Ie9�v�܄�)��E�H)tnÈ�Д��G8��-t�J��3�����i�U���>�U^���[�u�d�ޖ��m�l�G]h�wop�Mng}�L�����PF�q����[><P'o���]+���7�5���#�de��[o"���ft��M���Y�'{M��z%fKq�ՂS�oÕ���Q���3�I������sGs�	MdZy��"��a��$/^�̒� )��
1263
+޺?���^P�P؈P-3^:��xG&i��-�"߈~�]W�I��(��@'� �*:��Ph�_�l���{���n��~���"*�΂�������a�V�Y�st@�ӆ��Bma�t���[]�~c�b�y��P�!񑇭�^��&�gK�8~Y�x|��u�]�P�犊�}�n�H�
1264
+��aZ���Mц�wG�A�\+����p��F��.�l�Oy������De�I.��O��2��.kOӌ���ZY{�$OV+\>M�}���X�{��u���8Nֺ��%$�˺�/u^X�\���jꠚr�fT�j*��r��1��ՔA5���r��,�8��jY+�2��,�e�qx���w��kx&�����G�}){��]��HX�j��A*ԥA�ju����9�S��y`~M�]�˫�̫4�pg�%�@�Ev���V�S�6�e!duh�$”Pj���mUmjC�e���X�47}E��.e��oѽ�TJ�����W�+�zy�,^l�<,�x��3a���q迭e	(4�k�����������l �<SG��Ѱ��&;[�pR?�фOc�����^�TM�Ŕ2�^���¼�)�轮�吅�cb˗�b�1����!�:����ɚ4��0	ϼD�<����<1���dy_�n���tC�׹LTf�70-�Պ�^���5��D<�/�wM�Zv�{8��P��ᅬ$��8GX{��c�F���A�� e�u��v�<dV��f��h,6k���om�Ţg�ƒ�oP��j�̧�<p�81�����责T���X��E9�(S�#�Cx��aߍ^�WvkM!V5�`x�b���^���E���`o��a���n�������-�F�)b9Le��p��o�~�DSGDi|ji�w�-� x�I-�AWnu�E:R�����Mi��4�V�O�����!6t_�>I���F�z�
X�uB�c�&�<���9e�i��#t
1265
+�Ť��+F~���p�v�1���<��n�)��&����G�=��{S6J�C�t(���N|�q�n�|�tL�q��C��@��wq\�Ԇ��$χ�:Z:Ex��E�#����(ƽf��S�r��q�Q��J��]�E9��Ⱥ'.�̚�p��s_�b����YXF�gx-��8��h FŀI�p &0���AQ���6_��C��G>.I��ZS��������Mb	*�]}m���Z��Z�T��S����V�8f�XX�
1266
+�'�6pIb��
�~��?S��na�G�72%�q~>����@����SE�&��C^4Z��9��[�y��i��b%�pL�IE��wӉ {�9ʴ�<�Α�M�X�h���웑��:�Q�[�>�Ā)C9��$u:�Β"�*-u��>a
�a�&;�U����Q�ϫ�|w�8cfg�`���zo$�v�8�)�J����?2Kg5��B��5
n��w�Dz�n�8��uxӕ���N��/��2ȔԌ���/f�Y]1�T"et�f���V:rZ�X�(y��R��F�R��	���&�j̑�F����5�a�~oE�Y�O]��WF�-nf�.���A{�R���p���~nJ�اUvCG)@f�		����i�������f�x�hZU�m�O�Դf��j@Ѕ�r��3x��oAEO;��6�0�����8u4$�j�O!���4-g߁d�kfd}��v]�Z�����Ť����:��B�i�z��6_�5�Zo'�O��׊�t|�w��B��Ӻ9���y�x�@�p�q���~�O�#%k|�pؑ	�*-�|*r�vv�;mAR�.G�s���H��~+����1��ȸ��Y�P���j�X�ʏ	�
�S��Ȣ��8^���tI���-)c�;��<����1��D�&��M��K�_y27Z�v�<���q�%�_<�.�2{zY,�������C�غw����@h�� Y|x=�kῺR��z��K�8��������o+�H��C��d��-������qgNt�`��Ac��p�((uq�e��}�8�}v��#-p��q~B�l�"l��Q �L�UYQ��Nq�n���D�4�*��ρ���(i���րr
t��ZG�fh;���"���y�_"Q��M�D�
W��]�#�bB[�j[�����sc�W�>K�p-�RM��h�F�8oڳ�]q$L[�JYד·v섥�:zs��O���c�)���bZ+�sq��W���%��oƈn	x���k~������iXpT��QI��-u&���}_������gQyd��A���e�}��Ki)�@��A�h��(�R����j^�Ќ?R�O�[�5�Y��+���n�gx%V��&K|К�A?Ko@����bd�6б'2��aj�H�~�D7c�C��^P�|���dK{�u��6��/��WH�>�##��8��l�7k�̶�P����Gi�<���[�ۡ;s�FrG��Q�.��z j��T?�f�zX�ы��"íT�>��0~v�����_2�ْk���-j�rD�z=w���er��0ǮZQ��'�a��3�ӿJ]��ݎ�,�~dx
��O���������r���Ƕ�H�8��G��h�6P�fL#+���p=?�=�5��������KOn�������İ�gx����1n��&�G6�Lh)�NB��q��[hn��?��-\[ه�;�5�Lq�K92�!�V���zъ_e�k�LJ�^k�c�ܵ^�Q���
�U�5
1267
+u[-�*!��.��aY����έ��K�K�R��K�+�*��v�'�5���$�#æ��V��М����)�ӒAǍ!��aQ`�da�!�9٬d�k�Wٓ�u.÷���x�=��Û�M:w�:�<@-Ήn؁v{����}�
1268
+ۉ�{F?jF^}r�a����n��D�F��4'��-�(��º�
1269
+؁@/�x��s�P�_-(�0ϋx�U�q�q�U�'-�y��"8'y���iC�]�i|?���9�Q��]��o]���Gn��̷s�����.v�;��t�#�5C��Ŏ�o&�bh��;��x�Ď�WG:ķ�Nqⶂ��:rZ�1�E*E�K�ū�܏�zX�8o��r��u�4@�T���ޜ�Q[R�lx�����<��w��&�Il{2��y��G;s=ht!�=�ʕڲ���qL�	T�H 7��T�Qe��O�W��1\!2��sd�Q)'�lm�����n�C��5��%u�m��Z��o�i��>��|��l8���"��s�b�G��#�M�~}��},�|g��ϐI�]'������@l���s�耐����R��B�lv����
}�"iߖ�㵐Ӈ�U:k4�ω��̻��8LӢ|�t��m�g�bJk~��#�[�/�k�ܙ�	�h���.)�x~��=�IV"J4�!Ic�3���:�v;9���&�{�>\�
l�l�:�-X����hu���Hp�{�l�+�%w�Қ^y&4�W=�VvyA�{&��]�>�L#>W�6B]���/�qqQi
�k�/��B�S�F�����3�#Y�?@&�!��(�=w-��Nj�Q����i���i%X� �|����1
j�^�X��/<a�.�?��ڗt��Vc��Y�ۖƜ38Lr��!^�����"���./Vr|B^[�|�~`� ��Q�<:����3��iE��
1270
+�7��H(�on�p��[=����B��Gݜ0��Qq4�i�W��J~~�2����-zr�5�+t�gL'����\��~�iY&1�G^��qHD�/�H�M��Y�Fp�����zGt�2^Ѧ�EY��"��a
1271
+�����P���ڭPӤL}6�Q�?�4E��
1272
+ژG=��8�4�R<3|�	�|t�ǣL���7?`�n��p���U��8�v�C�H�j���j���Z�gK��}�JZ�g,h����”���'���M.ĖW��"4���<�<D��?��(B�o_s��E�\�0@0�*��P$��F$%q�r	�e(:*��zl�L���=7�G02cq0ƁZP�:
1273
+��"��@�F,
hY�d�n�h��"��@����Kڔ� ��$��^��Tp�ٹbž��,��Qw�8��4�IZY\<����Z7�#�ij	���f
1274
+vk.�\����Y7i�:�*�(y�`<�2n�]�*�jo�n��yUy�>_OScH'�H�u9�|	�ɯ��usx�&��{P�2���S�(����#c�[��*DD�Q\��0C�\��x�{90ή�sj�A08���nI�s�8�7�1�W}ݕ��w��#��
1275
+������"�qFo���H���b���tG)"�J��?��������b"�<�R�c
1276
+Z�MCu�-\VՌ��3�K�T
1277
+-`f"(_��R��ٚ;!��W`R!F���e��3X�eQN�{�������b=����U�D��u�O��^��ŷ�DE�G�?:�sP]űWvc���U���3
1278
+��
͑TO����l�F�ӓ%�!�a�	K";ǝ��f��~�?�_��q��ٹ~"���s��}��TZ`^�\0�=`�A&�L�!�mSZ��0�����k�����N����ݒ	{=�>iUe��X�0C���$ѽ��WEF��F�Gv�QԱ�ez��Wb�����"��,�� 
1279
+Gk#�-��Q���|�^&G��*>Qӓ�,�r�>L�e􀁰c�]�����[O�,�/�H�k���'���(c���5t�Z�r2q�h�Z�#N�O��Z��
1280
+�F=��O��Bv�ڔZ���#;�������h G:��d���mM)��97M�T�~�Y��v����{S�ǘ��)��0�
1281
+M��@r��p�[�B���4�#	������5����n����{�3`�x�Y@���fs�>��y��*f7?�5�3�p������X�g�R��I��6�i���翆�����'���M�ө(/�t*ҫ���	���t-���K�����dm8��E���^%u��+�w�D�I�n4���|�}�"9��Fl)�{�4��kn�H��g��:S:9�ӝ`����Ճ����k��/0C����hSN�
I�s�_�O�`��%�O��=pݣ�wR� =��7�Bš�#Ep�wd��f%4�Nh�q^r�"W���}��n��/�])��j%G��B�mr�V+u;�(;�{P��D.u5	!�h��{F1�z�㉒�)�R�Tr7k� ����R>4�B4/���q�o^��ɝH^V��h3^~�^~��$��=_�
1282
+�}�Ց^�r�4�)�f��D&�Z�
1283
+$�8�c<�g&�#�-;5��R2�ޢ��W"v%'Y���@T�OU��F�VxM�~&���гs؈�%�n��aJ�`k�5q�N���/>gF�3�Tv�#��[(��0�$Brz�S�Hy���FC�B��)ͭz�߿�-ft'�B�˥A��_�q�|=ՠq4��R�Q<܇~�o����ғ��	I��q�0\�~�q�R�t͞�9]�>�5��� TOE�%tޚo@�}Ig�6*[�1�ܾZdͯ��2O��x�|�7�z@�o��	l�HL)��+x��41�)�':#8«�h���$��#[u�صV���m1�gl)'�6$��[JY&�e��k�6�96#���*�x��� �GS�'�����M����o����?2e�UlC���<��-%>n�(v6O/`m��{5ʱ���<�I�ן�E�&���a%�"�Sô�0�pm���
1284
+��
1285
+���d<����c/��J���+�md�K�*��`�
s��É3�nj�A5~l!'%����r��8�k
1286
+����:�#}�U�E]������k +j�8жbj!ΐ[��I��Ѷ"6<�Ht�u���q�`q�%��t�8�Q@RO_/�4�#���}�gQ����Ɍ�(T�4����n��+����m^����/�ck�,1م��wXD�8���k�/?���}�T+%���y�h�ꤒ�$�3�w�@���K�8@-�^Qe�L͢��>�͘G�{�0c~0j���S�F��S�ܴ��]�S���S�6>�)c��]�%������9����حY�I�v�������ό#�;yyD�'�D����}FĠ/�7b���@�AP�>�4�(��m3�7C̟�����&wL��V'�y��ܪ)��{��۔{�#ϓۂp�Ř����@o�� �**T��0U�Nv��hG��-hP�25�اy2ܚ/��_
1287
+�-�����_Q�3�n\��h��E`�Lb���n�u1d#�'܇���G�m�%wO��FV}��l
1288
+ܨ2�JjS��"���W�_(i�����!�l�c�EP`�A�HX'�m���,�Iڭ^aCxmp&eX%�vnJ��2�N�������K��ރE5���k{��i�ѣ����Y����i�d�/�6F�ў��y�`2��ts���SM��F��CG�4:�9�3��r�4b��	�+.9�,�}ôXF��^GՇfўi^�g)
1289
+l������rӈBilٞ�����:��z��H�f�ᇅ)��j�I��?P�Xp^�JC���`mDoN���)C=���!�o��[u�Ig�޴���;/�Y�pHM<�u`�`jJ�̑t�`wu#���q��z8���U�Q>��/Uyw�%Wr�/��L��?}�V��#�[/�j�*��m�&�C5�D�J������Ov�wN�_VvgiW`��v�8#0��ֻx�`��>�����R+Gz45_G�x����0�>�A��lT֏<��4���b���{��� +m�!�>�G, c�1b�]���N�䥧����ulHt�<���/͢|/�56�	,�z�I��0�|���3[�2A݅)*�ܠ��:)��ę���~�CXɲ
1290
+=��5p���Y�Y�o�*�~�2(u�A�Vq���V�w��r ����pb��w�l���b��.f%+Y�A?�&����I0�lŔ$|7�/Bl�f��y
1291
+[e7��������6��$����8����v̎=&GF�̩h��^��ׇi�H���
1292
+lj}�6�d3U3��W�2���� �#�Z:�V�Vǥa&I9a�W�m�}�I�Gb�U��($=_mw�G��x2�Ĕc3A��5r̀�ޭ���k�gfqW�D��7��F�3}aWѰ��\�0���D�#%u��8��"����(�]��(���J:9p�i�o��y�4_d,��v����'�"=�9�(���ɚ+ǵ�&�X�gN�o×�'w��>�=E-�#��j�,�"k���I���U�^���+^_�V��T�A�1�1/�\1�R��_cgT�>n�%i(?UZ1��DC3L���t|�����Iv�?��>�����\' hT�QI�`H0�h����z	�dB�C23$(b�$�t���jm�ն��J�T��[�z�x�Q��($9�w�}��$�O�����}���س����k�Zu��eN�h�76�zZo��'���s]�����L���x5��[����
?�~���o���}/:|�eB���񢚆.�v����v���O����X1}ؠ�Ѓ��uŽ/$�w/�i���M�s�5Q��z�B;�|�
�k�����<�I�!�qf��ie�*>JdbY�Ȭ!��O�ȍ��!7�4�W�h���e�8�`Q��'b_�N�7QC��2=��%Yn���n�_���?El���B_�	ӝ>u��D7�ʩ5�9�ae�@$����t�|�~%�U���
�9�Q傻XQ�ݿK9V�I�#���R�����V�Ǧe9kJ�i}���:��i�n`��[K�Dz)s���	�@�%sPs~�^f�SƯ��w��C��4��<I_Y%&iB�T����O�1���b�>���eU>�=�,O���%���J�p�F_d�4���o��w*����V�
1293
+#���ވ�#���X���%��qM*�A�>��k�քֵ�y��2�����L�N�C֋�ng$�~�����|���Ώ��U�ߊR�P��ND���&q�4��.C���Y:~��s���2鉴�'U5�vpǥ}���=��cD�|�V�Sn$z*de��ދ9�1���.���z]>�">�]}V�ɚ�(�r	�t
1294
+�n�F�L?o�	8g֪�0�-g��/?�q�g���$���i��;b%�Z���H�w�
1295
+ϔ;-��I�E�������%���J��k���c�����8��$Z�f������h~��o�8{���E�76*ܻ������y����r��)ZWW�?��f~I��V�cQ���_n��^�ظ��;}��,���7�����1�1R@�[�/�j~
	{��K_AJ�x��cO���lk�,����)��y�_�����$�E���(
1296
+c��o^�򯐂y�@�o�x��D��)&q�A3��o��guˍ��_�F�"
1297
+r16��s�����7�*�j�)#����D�z���{�O�d�5Qn�+��I�a����`�O�MHY0s���Hѽ9����z
�w�(7�y>a
.�g.��[(W�`�=;�5�z�a7�(S��D��|���n�՚��Pud?Bue����;�wD�'F�ɊT�	T�BiZ��a`R�2�z���3X�V�d�������j$	���1f��k�‘0%�A	�A˪<v&�ِ|��@ߊ�HÑ~n4-mu�Eoby��&6'����iԺݗ��~6�������vC�ھ��:�ξ�W
����r~|3�;�W��|fb���Q|����}�ggòx��R�K*�;��r�a���^N���í�{�������9�fVj�ߡ</*8q-�6�1"��Uں�[y�R�S~_M�x��?Mf��1
/Ѹ�b���F�
�Y�I~��߉��e��v��,:�����5ˍ����X�q�Av	X�N��|<���R
1298
+���yU�{�%�[C۹;�c��t��E�d3$w�W�<�Ǯ���]J[�P>t|+�F�*��P;�|AM��V����IU����N�¶ՠ�2|sI�8��
1299
+��/�)�b}����}_��c�<5'�Ū���\y�N>���F�ː?�o3�
�.��������䰲�u	}$J�[Trf
F�D.6Z��q���D��݃�;�䎦��V��6��mb�_Q������sH�|����Jy���K��۪ԯ��eZ�݊ʄF�ʭȿa�&*����~���2����ڃ^&a�65�l��5���Gg��+8���'t�CW�֊�ͯ�!n1�Q�Jd�Cyy�
=H4Y �u)���,�M�c>u��:V	���O��
1300
+����.|+�#IMʹ�� Q3�qN�#;��_*7���<�L8e�݂A��yzH��W"���/�	�D�,�5���*7�dIcb�Q~Z��#W�T�2�g�v�5�Fa3��=��ZId�8囕����p��T/�B�=+5p��kVkDzħ�����ڤ��9�/Wc}	2s�X�_n2�(�;ڈ
���	���L� �5U�V��
�:F����Ak�W�8�7I���&y�i��VR��M�W�$�熛���|
�Z�T���|��a�Y���k*��6j�*��v��|��c��u�e�S2�Uk�����`�~8l�Dxg���"g�hT�ʍ�$ɍ?�J(�W�3�ഏOaX�V��y$�}�8�Wn�F�ڛO,�{���C
1301
+
1302
+ae�Z�7����Զ�f�E���x�i���� 3!�!��]�S�8�ʼn��%���4k	"�‰4Ig�Tn�|DZ����&��6�d�T[�d}�=fe�L�y?�2C��:��;�*j1���{��[����Э&��c��e�)�A�RcS�*V������	UW���[�(����ήm���g��]~b��Ľ�e�M�#ߪ���5�����X}�oby�S���5F�<�Y�@e�5^y�锩�R���D�5��=��\�s��;N�V��#�J#��b�L�[���B�
n�g����2�LH�(#r:�P�+��%Ʊ��3��<�H������.�H��iO4S� o���ƒ�䵗��tYr��΂�[��쭃�6z��]n�o�3�ŻD�f�˸�l�����/mIy��5��$�ˣ*�S˘��#���R���i.L����s41Bo��`$�!^��_�L��[��.1+���Y�J����XA�5��&_��3�)2C��Ji�bv{��!t&�.�a�m�-�������Jʜ��a�5-��nm��������4hH��#�Ю.�1��O�<�w���<]#�a��Zan��l'��W[���S�=avW�
1303
+�%��aO/��P���y��C�j4���Ŏ�F��ְ×#���*�<g���!�}�_w��a��q�ջ��V�4��<�|���&ߑ_��'���ǩ/l0H��*�9�桍i�*��ش6���tzp�d�����K�N��,:�Q�`@��gȍ$���;|�9r��+m�U��8����>�����N�ї����N���P�A�W�2��/�y�S�	r�F�=T�Q}�V�)���#&k�hS+P���
1304
+F�OP�m3hޮ/����T���*3��C���sJ������IEq�w���h�F�˘!�7��	�g�6*�;@�N�����L�}D��ѝ92�('ћT?�'A���u1y�(��K$���p�~l]�,��A祠�
�4/':y�E0I���H2��Aw4�����w�؎�����Z@2��o�)�ޕ/�H�o��8Y�R�9]�FZ�=�q\e��I�x?��$TfMW,q������;�f��΍�Կ�#���u�Tj'\Jwc�_��VF��uqeB��yRm�+�k�p���
1305
+�g��Q���|'��f�7����i�
�f��[�>���e�˾5���ǜ�I�:��~�?u��fVl���z����w����M��lb,�$�c�r�+����/ӛ�
1306
+2WZ��֬��������͆������P�h��n�ߪ��w�S�1#���n���E�/-���\u4'�v��蘳�C��B/�2����3�h<99�"��f���g��Tò��������C�\F˪-1����vC����*J�ʕ�j�w��Fω�;�2�r��G�
T)RRK��@[Xۨ���=B6WA��=�IFe�φc꼺�Wc�E1?yZ��:M"e_Lf���0d�(��?r����k�tW�~K�&h>TL���Q�o�]��LB.������b��2�YKܣ�pr�s����j>�?�T~~��[X(�P+A�E��Qo�/Mэ����jPJ2;F�Y�-uj��\�:'�i���N}A%m�]�ȯ�2CL\�����SI���,�?5^^7���ɾ^N��H:�m<���>y�2��:��+M�-�.�GӍ�K�g̶��H��S
1307
+��R/�,&}�UK-��S|,K�S�d�DM{��%���\��W������]:+	�ђ��k2=se=�(�9�&t~(6f�,w��mz�F�9��S��%�f��$]�(T�"N�~�o���j�G}��^�P�8/�fm0��.X�A�(
1308
+H?W`v�~R���+�O�����֑��p/-�3<���(<���dM;�#0�l}�8�&�
��g~�k�)�e3YO����_�;���R���B;^$�VV�S{<��H7j�:Y��;�,#��	tГN�VJ+(\V�cx��_d��H��l		
l�[��*ݭ܁]�U|�RϮRf��H���Wg6z�� �z���
1309
+�����$nkY��W�����-qb�7�1q�\Q$���I)�����t=�D]�K�&�G�\b}��9_�ɠ�Ҹ\��&���:q����x�����;7]U�B�
�&�5�iIC�/XeC�{���_+�΋��'8N��L��G-�/n��Q����V��ua��1�ХQ��Ew�����m����B�.d�F�[�2E�?�J̜�--L��t��d���V7?0ˮ)���Z��D`ee�	&�ya������^����D�jZ?������1�-"�����N���|���K���hÊ�YI��5o��[ߌ�d5���,��DǿP������sܳ��:)]N�$�ݱ��	-=�z8/�(�6��	�A�d)�oL� �s�c��(��i��p����6���j�A��%^;W�jNN?Jk�+ў��M���C�	7�}5r� �Ů�.һD�R�Yo���'�52tb��gv0.���S`x�Ns�%�l{�̈ϧG�7�y��G�)RD�fjA Q�G�����f�ہ5�q��щM��>�8��7��ԍt�����gO餕:�_M]����b����Xq�L|���(�I��i����5b.�I&1�������60�3�с���u�<]#_��x�X��'����#��i��B�c��
1310
+��I��)�(������$7]I:�г|~��]~�D~�\�&�H�G~`��%�\u�NԉKv�w��	���G#��������0��ʕ}֧�S�.ִe/�(�~~���&:�@�d�L��R�,Ф_�W�6��,�oK��"c�������3�N��j��^*
1311
+� �N�{�K_S����|�nء�U��&�������x��qt��ҏ�)_)�Kk�m�oQ���u�0����'�FF̿X*p��@�4A�����u�.�E��D��-�/V�L
1312
+�Eg��`b�;���4����w�S�k�{���w�P�Ѽ�L(��<:}T�"̗��s-[�����6�15>?�cЋ�E����kR7�9�l�D�G�4I�1U]&f�S~R���=�<KA`^2�+/�jv��z�fߧ��O�c��`2����=>߰�vY�P�nz��<��˦�/�>c��薕o�Qog��d���R���cjN'�tNNy�I9E��S�A�T��V7&vr}��b�(�(	��.��:5M4�x��h��ޯ�H���F׏O��he�
G�I	٩Z˨Z儿�1���:"��2�����"M�Y��m���щ�-U�rc#��4l�Ƃ�o�?�>?�s��b7����\�uP�}N"^7��S�8���Y��{��<#։�8�ꊋ�|H�@��`7��*�T��Ϫ����Ⱥ���4�Bܸ��w��D5Fd}!�F
�p��86-b���ᜦ�B_xY��tN@%��f�X��3@*/M-����m`%�Y�"�O��A!Ѫ x���ʣc�Ob���e�W��}�h�=r��r�PO�$+�+}��ؘ�o��}�/�E��.ɕ�;�Q]��n�����m���O���]4B��Dx�����ě�0:l�'j�k�+�����'2��.f)�Ŏ�ha��fu����E��Y���u�ԝy�{W��}/Ͽ��wf�bzk������`ܢ#�u{�_d�!p�Yn|�$��b|'ϯ�Y��`���@���x�=侤~�D��b}��X�u��%�~M��Y��e��fW��`���2���*�d����r�G��Z����(�P�ԃ�ʌ�F���x�z���6�}DC�8v�g��n��.��G�]����
^�y����O�=	�D��(�T�N��ϔh���
�fhP�y�BR<l�7�&Y����nC�ZU�����/j�^���)Hw�(�����������5�E(0ڣ)��>~k٬j �6��JL�����h��P�r�T����ϔ��},x�M���g��q���.b�6�z>ڀ�=Ftw͐�YoȾR�a6�+�߂Ҹ���A��Z�-��L��ڑv��|���@�m�34�dd��À�z�3v��B���P�*�N��1�6�Ἧ���U�Kh7Aey�}x
1313
+c�a��z��c��}��VÎЍ4�j��X@6�xc�6nl�N����+04�=!9��y�^�=��)י!M"bn�\�j�#��B9g�hG�ꓘ��"�ho�"'�O�"梕�иj����i
1314
+4��}����d�4+5�l��7�&z��fk��B�p550a/s�^�!��4|m�u�kI\������}!�ن�O�Nѻ�b0�+�8���Q"��npd_I�BCz#����W�v
oҤ�(߇��̪���e;h�w�9ty�k1�e�.7M<�M�5��h�c�2����9�r���<�O;.��Ć���r���r�Dyݟ
1315
+t�t.o�>O��qM[���� ��!mT��o�%d]A'c���7p�w��ͤ���A=?��4BJ�V}9�bi��e���^�.d�
�4a>Pa����t�?N�x�(e��i��iiܷ:�*$L�Ϳ7�^U�2��X/��&5�>*���1���4�~q��A!i�@|���"$��6�G�澉���ߩ��u�������A�I}Tr�U��G'���1����$��(��4��+�BDž%6�B�
1316
+�1��7r��;y��T�l}��"��o�g��x2�2ѿ�K%���rS䍃	7;4u�}Ȼ�'%T�e��v<�}�߉i�����}�-X�W5К)�,��~}!�rGX��.搘)��tև[,�+
�$�=�E�x%��&<�@��㌰�[6��>^����Ʒ���7�6ɍc��d�ɍ�Q�.<���f�y(���~�5z_��l�qy�U~�
Ctɠ��4�9W���q۝����#<����5��_Z�_n�]�=�-�%�<�ď�yt
1317
+�Ƨ�6�"��)�/���ɀ<�Ǵ7,�X���@9�y*�sA	'jU�r��lmf�i�w6�����4��&&�p\�7�ӏ�[Fϖ�'��e9�E\�=.Z��A'�giBf�NX�ݲh��d]��{H����w�)T�-�	�#'y�
��3}�
�݂��}�܏�/T���'�|o�8�(��q'u�e�eF��޶��n^��@5��nY���d��}�%F/�n�Y�P�e'�3�=�n�@}�UELs�>ZU,��u���0 p�������{F�yqM!�0q��N��F��'�(ɁX�_�!�n �&���8x�/4�[� gy�g}/���f�A„#힚ڿ�����5�/�Of+��F�K�7]J�)�л]gҗ���G�7���sWd-k�8��~����>˷�$��g햛~q��Вl:x�^IJ��LG�Ѷ��#`kň�!��p�>/�Xo��/���$~c;~�_S�C�5v��w
1318
+�sҷs�T�.6}�|l��b�5`����ҋ���,{�wj��
1319
+P��w*Fn$�_�S���3y�{h���qA�f���9��[}�J5>y��/��SZ|'��￟��6��j¨�L�N�rӚ��i�ue_�&$v�EƋ�g�4�>
	n��zqbr��H���xB�(Tz���y���JC�tn��oYV�m_S��B�:���<�
����F�ɴ��&Ճ��i�\s�ӡ�
1320
+$�����wA/7n!"�y�I��kѢ�H?���o'=Y�iȓk�I�tN�H��C;�9�=0�$	g��gXs�7vx������7�	�k9���DlF�!MGQ�w�f឴W;aN#�@��ʷ_�,��׫zƳ�_6��񘯨�S�Լ1�z��v�>���fN�c��F�,��J��np���E���`�`��r�-Gi*^��
�z<��
f*/���L�k�<o�(���`�z�Ę�uT��!�f�h�l�NҮ���MR�xU��]h�*���ow7����7\�?�X�7��Z[�\�[��Ԛ��>B���O!#�ev�w
]�4	���
1321
+�����uT���l��x�R�i��Ź6��\!xZ>�C��k/��կ�^�9��ߒH/�� �_�����g�
1322
+����ng�d��G[<�ZtI����-X�h��0�_d�%7C�^�n�w����`[F�.~�Li[SZ9����~t��s�v��n	�(��.�����FQ��N�S�HO�|����IN+���D�<�Y_Y�|�;�wH)t|��
�MϘ~A	�\��h��������`sQʍI4kp�j͹��3�F_Ի�9�l��|�Wt�zN���K�H/[�V^���?��tn�E���A�h
���}$���&��P"��翥$<��{}�?�C��\x3�`|��>���/A�m��58��Q������~u�(���K!����{9I�c����M�?��{#s,?0K�n>qA�R.��KXǁ�8t.�y�����&��ʰ�fM�y�U,7�'O�N�gPX���U~ʑ�A呹��lF!�i^���&q�tM�8�Pr��UC�A�g'b�����u�.�R�Ѫ=,�D��w�=�[S�e�j��m��FM�)�8�Yt�O��z�:�}��׺�S������#��3@������~V~���s\^{�ݐϝ]D��nŽcpm&FG�Q��ޫ��9IL�9[>��ܼUW�_ ���߫����"�r��m|�3D��ٜ�7��x>07���+��8��3ᵕ��F�+x,�:�>Oҽ�U=��:�'	k�Ş���9?��R衃z(�K�$��E�%�?b�<J��!�PK1'��K�JJ�\��!6��g����I�O1��fII�Z�ق�1�r�սL�;�_���E�OWO|d���'�z�WyxV8�H!�4��!@3@�m�����Q=Ev�ޞ�)[G.�Kba���&ӛꔃ���Cy�S�_j�%v�ij�ks�~�%1!�Wfp;�|���3����>�:�k�T�) ���t����h��3b&c�C/�.h�0��"ݹ�x�C�-Th�-�o��	�$�3H�w%�6e��{��tn1�\�{�K� 2�M	H�k^J��B�����7����jrh�������
	���3��cN}®�k�v��N|��vUU��K()�L8k��9S!N=�\� jT'�G&�mB%���|���/����猣Gֿ0j�)��P,�#�zL��M#aJ�������ğT1��!� L[����n���mL���+�	�-0	�B
1323
+k����\7��㏛m���pT�>O�?�.CL3r4h���)�=�ě�� ���]�`��K�H;�_p�]�<ץ��)�j�|�y�=�Sne��xǀ�nd�`ʠ\j˘��k��@O�3}���W�Q�=��P��ɯ��OR���$9�ʭ��A�o�O��j��~kl��.S��+E��&�9U_8
1324
+XYPp��0Q�@�tJ���:LDL�&q|�Af�~�T�+�W��FV�-�X�~~/R��0����o�м^�~��q>�)�1�3����;��D]�#60��3nuycn�=���x�j���tl��Y��Y*tg�H�"1	%�j�k�rA�DF���Ѹ�l�_<�b;A����RW�73EF��I>����;z�}�%���o�/�#ءjNa��`����� ���j�ӏFWC���_["��`_���&��L�<N%jQ�z�dԄ��+�0�{���}�K�������r����#^��g�d4}�Y�O�6x���پ�F�M��o���3��u�=)Q�R�n��!�>ѝ�z��;��M$�Qo#	���x3� 0֋�`����<��4!�����ߠ��|��~�ד�4|Fd�'��H�h3��j�gBMo���0{k3��o����L�c�d��ٚ�~,��\�H�߈�56X8���|����y�C���;G<Y��o򬡖*B�y�aի���iB�/p6�9�[�t��9D~`���,H,��Mߧ���`��x����|��g�Q�GOBc��0)�;g�#�>�F��ߎ��	��O
��}�	���������
R�v�nM�:s�R����'ί���]�هm�e�|Ƿ��������3�h�;�3��+/]�3$o����"��1�~jR=cQ�p}�p�S��#�-ɛ~��_���m�O�"�E'�X;��}ŝ��._{�n�-}�7��}a�4�6
yw�	��ʓ��>�!�h��A�����&7��
1325
+�ڑ"�w�F�>���򐶎?����?�r:V�ђ���G�����d�g��|,l�Z�x��lgov�{s�;��� ����+��B`�/�7Pc�u���Ty�Uy�`ʚ"�p���F�V��t��t�i�}6x[����|�&��@��z����a�H�6�|o�;�c>Y���-Vb�Ұ�=^Qg��8��h^lQ>׿��i��y:Ni�CĽ!���h��~ɶ�;ï�� YO��{4���얦�XgJw`�O17uYe{��
��i�w�����׵�����Y���4$^�h}a�.�V�`M��*a����H��3{��C��8�A�71��>_C���7=�8#����̉���G���Hz�\#�g�7��Z����==�'��u1��ÙK��	i���4O��{��"��}�V�g�LҤ�[�F���:����[d����k��Y�:5uX����S�Π����Y����j�N��aV��`r���i�(Co�2vFd�q��K�D�7b�Sp`�1�'y@��G��F�p4�E�NfD���I>2����\��x���[<����.�H�U~���Wl�ch;mt�1i*���s��!��o*�v3Z�
�R@�=��e�j�^�O���_apGF��E�5G����2�M޴*��<�4U�&�m���g��+���-�M�])K��T��f��d�e���W��/>�N��Dn��ȍ��§�ʍ�H�ٯ����ϧ�Ѭ��FR`l
����[^7�^��J�G���x�)8V�f��e!+!��z��MW¶�9^R
1326
+2�۹�9���-���F�r|�9i�&WnZ����el�a~ yդ^>������q{}��
1327
+�&����mI���*��2�t�}�Q�
�kU��J�����9���ힹ�����
��a+F�;Z�֓��<_�^<a��h��}��<�v�7��Y(�P��,7ҹ��M�����x���y���R��$�(O	n�#>�.�_U�+s7ix|�{��C��N�B/7�V��?%������I�yO]q�0���1�a3��6 �mA~/��`�����4��ih%��s}��󍮤�~����QY�QLէ�Ocٰ�`i�rS*Z��Yl�>�����f���5%�R$�r-�?h9�к�Y�G%��?�_Y�2Wo���Rg`��~�&���Eu�	�q�R{��N�I�\)���]8}����$4:HЉ�(��$�f��NK�w��Z�Ɨ��1�{Aކ��ʱ0�8x���(�;����V^�>�$&O��qX�|u��
p��������D��;���`s����m_{�5�m!�Mv�*��$��4C\V��2Xͫy@�k2��͠�+��,�����|*p��F1�ѫ~��L�t��`+&���Ry���Wx��Dd
>c�^Hu�I��̈���A;`��m��?I��]|�	�0���y+�����Q~;���r��p?�m1�ΚÒ&z
�dM߰�z+�H�©����r�T��r8��0M���"ծвS��ϴH9��2̉����'J'u�=$��}��yQ�LhwT�9�e�/IW;F��nx�xݤ`a/�s!}�CCw]
1328
+�P:۷�Z�'Z�X���y#�i&J�	�����q2Y�=��o>�O?��S�Z�k����n���mm���H���5˛ʧ()t}�6��ET.���c������6LD�C8�jN�bΞ�/�@�O�����	�>�C>Z|m�^_��j+�HI�)R�f��'qf+���-��ul����N���x�[�ޫ���]s�3t>�?N��PI?�����\2������>|q,�IO+x�w���4���%��*�����OS�{=y_&�G��{��^I�bD9�ػ�I�O���OWx�H�7͍�o/k8x����7��眂�\�5�ۓ��P~V�g
1329
+�\�|fVzi�Z�ʋ0��Ay~�kZߢ.������J�XW����Ѱ���:���̩�L(�X)�MO�
���D�t��WВrCh���]��^�������:0�F[��T�6�����2�qr��i��Nk)���B�i�//���w��x5!|`��)�}��Lba�J�~��$h:��5��/�HZp�i�~떈gNr�ü�-oZo�}�Sf��DޫH��n�xt�K�e}*7��c�=$_��{�Y��ui]��v�#�m���H�ޚܲ�B8S�+��k̯%=�B�ۺ��s>y?����+Ox��-BM�>�{�r"���N�s<�=�5qGׄf}�h��F���@cvpK;a��L��́f�16[��1g�d
^H��d�g�yd�Li`K��M���"�c^�B?Q��9DeQ��$�@lE�gK�|�-�\��,>=��뷕I���]�Z	W�"r;YO8Qj�ORy��`h?��B��u3n�7��a"*�R��h�o�e�,�Ř��C���
1330
+k�&��$��>�
�t6��t�Ti����M��=3I�5/Ň3�w�B�`|C<c^��֗闙k�;+NjU8)�$����w	�]t_n�{@z��\~�XS�q�B�n�Q��B�[
�&�]k��P�$Ej�;TV�K�3J�76�E_ 濯հ��P�բ�v�P�T�� ��'�r��xKq�2�n��S�=n��x����fM׻�K#m�H��=/�S{�|�	P���<��k��ֻ`��'���A��쪞D�ݿK繚��E�w���&�F�D�ODV�6'J��#R��uij�����(����*�}��鶦}��Ю����dK,�����ì#���"��n��t�R^���h�on�Zg"�h-�E�"�αmL��i�JBx�a�ߕ�D���b;�D�`���^��dL`�~���yM{���5���h�<��z$��-��P�.m��a�&�%E��P�����*�_����Ma���M���^U9���W��¶C��oRX�B%_����B�/m�e[=<���4��++)֍����w�`3`�HLJV9[��rp��ս0�u^z׉O��F���� �i��͉j�H���$;�˓�#ovЖC�����ƽ�������}rS�ܪ?i�h������)O\�2�Dﻍ����k \��~�Kj�-����O"���&��_�LHx
��K6�t2%Y�+����H�C���b@���z0�U��!����|��"=����Q�ߡf��@�����r���˰�Z��=H���1�M&�ָ�M:I��}�1!��i�a�ѴdE1<�H�^!=��H�7h����\���.�q
����S*�.�֤z�j(���3�HS���{� ��M)TRWb<�<�o#�4�[���x��q/�?AB4�$����^��o��ư����z�W�g�[۹�e��H��PL���4�>��X��r��G�R���~{���z{s\�gvV����BN�ŇY������S�=P�4�ï�,���6!x]�,���닑�=�J��9��yy��7��|i"�������iH(C�}*�/�)�Ӵ�=*����I��쵈�`��ŗ�&��7����c�q��~Ǹ0���N�ቹ�Uև{Ƨ����X(C��љ�r��Q_�[��q�r"%^rS�'����j�LT3bɿ�6�C����w�<�=�)���������m&�����n>#�ĕ�=é���*��u*�(4��Ţľ�.��`�ïS��v���;ƗE����}��#���lw_����k���Q�F]�^��D�n(Y*V�����F�'7���*��k1۷U��&2Q���y��q<܇���	5W޺;k���*�yѩ�;_Hɐ��q�L��2,!S_���ӕX�PB7�m�}���Đ2ɍ4��x@R��$�i��L�g�q�c���q��O���Z�}�Ø����|Hh��uS��!�w��Ыݼ���iz�ߣΧ��4[_\��E�[���v��Y��%7����6�����7q�4-T�X�
,�mx���^#Ԃ����ث(�_��	�Dx�.�/!ﻄ�0�^!��ޓ��!����.�^x�(6������x��"0H9O��y�Jxۄ����}{7����;Ixo%��?߿.��! K1��:�™�#�֘?�d�6=� ���Dp�쁜K4�hO��i`ifdž�?�q�Ŭz��ˏ�xв�d���!E��Unz�W̃%��99��o�!?P� 7��\�z|�b���_f�FӴ�(��D��|�s�lw$�re1�!eo��60�!��b�]��^�H��hk�*��),���$!^y�^u~�Ngv�@����JI �樠��rLY�.n�G���;�;���4�F.43�X@�6|'�`�J��&G�w��_��e+�4�x���F"d��Bc��J�H�TR�Z��Kh�#8;cmYG=3Ū�q�X��'����ӻ�F���%�b)Ud�:��U�路�y�Ѷ+��/�����W��y�YZ0g�Vj��$������Yv�봔ЉUF���������>��3����u�(�2��#꓏������:���֮?yE�0Pc�Q��v]�ǽ�i�~��{_��ܷ'��D.o_�v��$�����Tg"43�53��j�CÛ�J#o���)�"?07>�Z�+�[�Ϲ�����y�ǭ����C��ڑ�sl���	�,6C;�K�dQF;�V!�.O&�Ч��ޕ\?߯(�~DC���&�u��_e��,V++%C�L$h�bm9d�֚�H��	ʁ�xD�Y��4>��v�E��!���o$e�Et��2!I��]�7uF��'�^(e�o���":�Lz�fU����߶�[�$��X冋H�j�.VI��Q�_o��KB�}�i�x���Le
1331
+LD�f��̠{f��lR�������>�۫v<��]�$�t��X|7	>n�1�y�x�{7`���s
1332
+����\q�#]������~���ş8���9���QCA:�z�b�3F�`�va����y8<4�c����0)?���j�¸l��A�xWi�~�xP;��ό���fʘQ�s+湛���N��.�9,��ąܲm�6��7��9]�΅|ߺ4]�:�y�B�� ��,̀�l�b&�k��9��2�R�LJJI��ZOy|��oz���ױʋ�П�,��7�bc��B��{p۶��*Ҙ�!�c=~Q�պx��ʶ-a�UNibB ƌ���:}�0�Z�����ۡ�Uy�j�hƛ�T�m�,6"X g��&I������7���.'�3�����e���=_�L{�F1|�+���x�yT�1?FPVĊ��}��p (�
��AS߽������"vn+\H����EI ��B�-��2���-.Q9u>�dcև�wL��D�D��w���0�����h�=���'\H��Sִ�l��'D�5"u���,2	��O�9F'o=_/b��"��|qF`Q��'Knl���E�n_��v��H�����m�pn���S�|��	qى@Zam��_"���H���^�Oya4�@��|y�`��X���'��$>��m�6�]�A]�Yڠ�6(Mc�+����O�������
1333
+���a�~}����pI�����5����B|�����/p�HV>E"��|�Q�pbBpN��U2����$=��z����;F��7��������9/��)�(z�߉N �'KQ�S
(+��������r������o����j5x&���H��p �QS�����a
t��+k��G�n#&z�\^|6#�6��ў۫�z/�ީ||.7Y-��X A���
�+Ϋ9��"��K
,���Ӷ���/EB�9!��\���ΐ������@�.^"��I
1334
+�L\�q����M�x�g����;m���"6ߩ��Q���L�t�v�7��֭���?���|ē��ih���h�g�ɍV|3���c�9�F�����M�m��x�q��=�Tbt����-�y�,�_���$�&%���w�u�Փ���>p�Ȉd�MK��>%7��VaF��%fQ��ў�'4��cʍp��M[���Mʤ1D$�89���^���@ː=�xCs�v���*O�����/���w��U�l&aS!"խ�
ZG��Ch
[i+ˢ>^V�>�7���ߑ�7���}/��E�n�Wny�n���C�)�F���P)�V^\e�,��fX�:ש����,���Я���x�;�!�]�Z�烃[:�c�=G�'���D��4Q�3L��6R?g6��JhNŋ��\�M��bӚ�,䷿� �+~LM��wXT��%:��^���!'@W5+מ#��_�>�_��l3�(�x:|��	�+�!ƅ�͆"�ﴉ�t��;l�^2�΢<1
1335
+in�'/�"%����o�P��Q|���ST����t��~����s�{��2��FQ��h
�j��א~$�"��D�����$T�U��?V�����A�R|��z���/X掳�We��z�8�{��AP�V_�P��XȄn���x4�(�6 ��v�q��ߣvu�}�讹#
r��$Sټ�j`[`V�GX�ّޕ�X�צ�x{`���U��|��"���}�j�ܘ`&����U9�؛�(O�憎߰�3#��>�i��+V��3Z��ޅ~V�ѫ�_�I]�o���X��v����C������W���x�B�DO�T�F�ɍ�1�,Lc^������ʼ�+�܆7�.dh��X�_:匽��똠I���A���F�(7�2��v�֠�u��
�|��iۮ��?���AT��9�P*l��D_�R�2����X��Lo�N�7���iaɤ�G58��X�^�����#�!�+��QbC��@{�Kާe��)�/�׮R�Fz]!��7�֗,����r�P�m@Nܯ��l�I+7Ƚ,���Q�k'�t;y>�ׇg:$����r��.�N_!7~J|�'�7������N�`b�����i{0&;���!L�P~DN�<���d��}C	���oA���~���l`e:�g����x��5L�o(;4��������i
1336
+=$��J
1337
+n9�xz2廢7��I޴���>��[�8�P
1338
+3\��#�xT=�r���zx�
4������D��kb2�#7�
1339
+@�9m-��ސ�,)O
��1�װ���[7��o�����z/{ak8�#���/����E�_�m��׷�2�8�2Fg����D����q���u^��@�^���aޮWY5�?}b�6Mm�e�_���CK	W��hQV�Nǿs3��؋�*���~I�G��B�e��=�[��8�A�i�BYE��h|��xYU���|�Ƚȶt8<�\_��];c$e:}��{3m�m)����h|�.��6��w7i�[BX�7O���=��e
1340
+w�S�^�e�Q�����i�Ccy�
1341
+����N"���M��H�Mf
/ӺZ�9�Oca�W���7ma��R6'�;K�j
�<�f��W���c{���9�l��fO�6y�]��L�/1R��v}*�C٫�_���m���h�1�!:�1�7�
�\�	�-���,7��ܤ������������Pޤ*�4�X_�o�~��(�~1��n#��B��
e�)�@X~�R���dR��R�W�Sy7���~9_;:��P
1342
+��O:�:��E-t������e$>ē.��q�Y"���w!ċB[":�>�FH^�v��Po�H�X��))k���,�L���9Dg
�a����Hn������<��,�\��r�G�W�	��q�+��y����:F�����"�����=:�o��X�7qK,���N��(#�f��v���-�/ul
�;ɣ%�2�	�4�8�1/�")��Z�@�)���f����Ϟ�L� �cc?�)�'iI��
��0��\f6�_�����L;�T�ʿܥ���Q�'=C'�f���$��^����v�X����~�?��<��k�7{U������BU<Xl@H�G=?���!<����}��x�)�?{{T��������8�F�L�(R�&r���C�����[`�o��X�^�<��k'�Ҫ���	�0���;(���A��#IlJ}�-	T�B�:C��^��V,�,w��ns�4<�|j���лh�tuH�vG�D[>����?�����R�^�´Ц��y{��f�^�}����?�za2wZ~k�i:����ʚ���v㤿�h
}C�9��zNJ
1343
+�۷�s˗L4T�~�'P�/b��?l��Y;��'f�~|����/F<ݛ�����d��{�Yw�?5F�sO�sϒ� -�����,��#�t��H���\�mQF^�b1��b�ɞ(�A4���D���E��lە{�:k�]��*�_��uq�j.�GKlr�a�6R=����cR�����wf���5������f�<0�k��;�Fo��s��:�S�fN��P�tc�C],�7"<�$�oA(��R�l�􉉿��緕Q6o��z����C)�'����S'�N���.���j��p��7Y"!	M{�#�@�5�A����!�W�Ť��w��*|jJ�0�k0���a�Z�~V�bN(l*g};�;�$$�|��[�bf6����_����g��[�D�G�*�%�dzYI��N�W���(O�����$��r���A�{�
��k��n���s����x�_��!���4���N���"]{`��gIQ_l<���D�z���VYPd��u��ȯ�u�e���*o�=�����a�=���i� �.�B{`�2�{��N��HIci9�n�n�js�����Gb��q�zҾ�xN*p��t],"Լ-O�~N�׌@���W��؂�S�76C��M��\<�[a7
1344
+�LO4pul��hOi���lx�_�
�c-D(G�ǿn��������NM�]������3��v��n��Sm��.��R��
�JVn�
1345
+��t���=>J㖘��9t���_#՞���8�hjM���S�Q���_gu�K�J{w�+"
� �m	=&�?O��#�7�ۑyG��<�Ȃ;h�/{МOM�Bʭ)uV�0�M\j��`w찛�0^��Uj�{�.[b��3�b��a�DU�Y;k.K	�g�%������>$!p�d3�}῎*�E�jb��g-"%�d�=�o
�:���q�<�X�=*�Ј
�D��E$*K+Y~`>	����Cug�66l������ 4)�/���(�}#�|)}=o=��f�$7>i��
�� �
�+�,��ss��_zSx,�u��ǡG����^c��#� ��eyg��7�q��jZ�Ʈ�(hc`���Fe��<�M��V4�8_��$��C�po�BO?��_"��K��GQ�~7ӝaE{V^�ܸEә�M��>�g��ݨ���˼����}��}Z�؇�ɍ�B�R ���֪��$�ATkAJ�5݌�,�܇�1�Qhݭ��J�.���6�*����Ӥ�MYD�m.+++�Mj͋�y���yBX�>�?��o��݉g�	�7vg�է��3O����=8:_�ף�����	Ƶ�3P��A���@^��;q�}"�Nl(��k�~'��s�����}���U����ߞc��2���3s�o@eB��n�[U[ŲZk�=�2-���j�.�pIϮ���[���7�O����[}JZpu[n��*�\kl��f�z-�'K<7ԟ��̭?Y�Y�A�k5�ŕf���@�};�S�5m�6_�|g��q����N�V�Q$ �_l%�Z����
�[���$�j��W��903���ރW��;Ś��f����	�s?A���z��=�2;�=��TR��I"e���5����a��V̾�Ӟ
$�����u��e�RI�yP�/���.�K?�?���~}�L���� ����4�$ʍݰ0]� ��s̻��<�$���.㵬��J	���v��y�Xϭe���j��.I�6��oB�2�w����J�V�n��=�"7m�����zT���?��D%h�ķΡ���.�\1�'�M�"��o�O���g4�������8=z��c��~�u��~؆|���gΠP�A��<��h2+X.�W��U�%�;��Q���V�
1346
+�{Et��n�hH�W�2��9f��`�"��l�l�ؖ�&�����'��b9��	��g��+>r$5&?&ށ��w}�+�/���[ۧ$�j���u_�7�P۰<��4ݵޘu���@�cy�5�v���u�f����-�R`Q�]������us��l��@�K��)h{��׫ �xm��a5	�"��qfϠzW/��|٣���ש��ܪ1��7�6�Ưi:�{��M�?k���sc�Fڡ��ޏS����x�e~;t�Q�1�bܨݫQ��n�k�y1}��L�Yz��(7^BH��JBN��e���E�H�-�ޱg�)7u��&j��W��XiAdIB�`οi�4��A�Ob�K{R�T5?ح�s(/���9fI�
�d����R�$7=�������O{H�u(�'���̏'�y�CR����p��#�i���t�c<W�J(�1�C��F~�*Xy�D���
��fzG.�RL���#\��'��#0/>p�=P���=']�"W�ek��!��Xg��o��}��j1�����5�����
1347
+?x�n�	ګ�L~H�=�w�L^�k8o��X;Lb�
1348
+���X�Wbd^:u
��S��e�s�ݷ�B�Y�:~��٣kL��ď{����V����F*]��5̤
1349
+�M?:�.�@9��!a�[��1��e�<ZdE�W#��}��oF����i$��T֠��,�cM�X~�f}YH�z3k���2��e�^����	��2���o��"7�̶B��������R��kPb���c��ftMI��d�f�O��f�m��Rvq?��������M��eֆSP�*z����1|��i�v8��#*���� 7��xV�4g(�|hYS�g��l�K�j�1Wn���&e;=�x��S��(v�Z�/�����
1350
+�VH���w�/�|.���Y��ww�k�"��{�Z
}�c�z6�ɕ{3����ӝD�n�D������a@�z����VOL�����i|V��4ܑ�XQ�Jn��R?�\t���:9"O&k�|�y� 7M(�;L����^}�U�;v�Y5�,h{F򿓲���_�d�/ˑ���(�}���T��w�%�]��j��!>��A�[,HL�ӇH,�h��)ot�3��?F��.	Z���Of�.o$y��}��;���!�d���Ge�k�`�ǭoj��X.�v�u��|_�%?�=�(_��Ӏ��Q|K%�7!/�����2^Yg��z��xM�%���[��5ybm�W|A2X������4�$k<+^�%ҳ����t�4f{�v�q;�}��ޯ��6K��ډQ�^ϥHi�H�wҸj�5��`�<e����i�t;S��P,�$�%�&M��EƗ����=�t-������4��"],��Ş��@�$X}l�r�)Vy���]�5x2����֫���'��}��b�ʓ,V9�����ۅ�:��6��Q���X�:-)y�5Fy�w�=
}��������y�?�Tp����xRVt�T\��A^7��Z����
1351
+��0S��󀃼�m&�R��0\n:�	��w�קV�M����Lj=0l�RG��{��if��Ӛҝ���|�Pi��[�Yl)����et�t�`��!7����+��hgB��%v���5k�|_�du¼N���A���l�V��Zr�|_�0*L(��U�e����i_��Q
�/���1�k�ٳ��h���ֆ��G��[n\��ya����b=,���6���Yݞ���:j�J&o��3-H�����tT�]��
�~7�3�8�x�&jML ��ڷL��㘼]�g6�v��*p179��-_Qɯ1S��6J���fB�}@� QR{�Z���f8�z/�7��)����-}�f�
1352
+���i���Ò\TO�ݱ=\����-����[���:�8#mv�-#�*��^n3�r��[���'��Ʒ�皌i��7�O"�p�:���d!�C�W.���XA�OƐ��>C�Į�l��Ƕ
OѸ
1353
+�l�Z{��hʇC4��N�!���>U���#lٶ��� C��=Ŋ(VZ��T��B�/���-��̮_3)��պv'���~�ק�4V��It�|�	z�b�|��Y-7�$�3/RM��¶��}�E���/��AU�w���3ַ�j��:�щ�}N���?K��J�C���
R�)�
��'I��K������T�*e5��M�y4��O�zp����=�U-���~�()~+iii�Ȗ�)�����h��sC���Pqw�y�s�L�D�\��n���<����:��-g���cR�r4˱����"�~����oN�������
�[��fBi���=�cS�["��.k8�J��?Q��۰�~� va����@k\b��ڙ&7=B�����p���Et\(��������d�
1354
+(�I�i"aT�>���?����/i�I��A�\l�Y>	CdS� {`�=�s�՚y��/����9707T��:�0�do��[Tk�<�j��/��K���r4��˘؎��DG$�DITu.�'�l#zm~����r}E�`ΫqC�:���
}�!˵�p|c:���qo��زtu�����%pl�#}k[���`=���Or�Y��.�O����	�\HL�
>�#~��)-/++��t_JH�{&rh�x�9V�'8��:�z�,hϖ/��B7"�0f�Zd4�0{hi��4���L�����y�y��%�KRDu���j�fn8��Pd��ӑ�n�<ѓ1?�-�qf]�7���	W���S���
'��"�]kJ�i.mv;�	�M���`<t���&����^�V��ɨ��U���y��h���+T���M�\�m��I�k��t�����)�[��kK��H���YH~H���Wz3=d^F˙�-b�A��C��D�o��G�.�}�N��H�B�1���DB,�O���b��覩m���A1�s&��n�2�6��Ń�O�&�u}��m]�����$�1>����M&t™�N���^>��n�g6�l�`n�J�+��|��@�(�Uޚk��om ���٠v�@�X�V�=�鵄Ғ7�Ɛ?+
1355
+$���	�.�i2���Ie��G3�7��o�~�aO�Y;�I�7lD�����(���g��M����-�`��Q�'�K,%��@���Ej��hcv'e��N�4����uw����D=摤��zB�J��|y�孋32�[�b!�#ݬ;�i�A�)��i^{o�A�FoK&ΰ��2��*1+��*N�
1356
+�h=l&]��ML�S�rD�W-;�u�݄}����9H���k̥y���I�������I�I���>V���=���.�Rvũ�!vri��h�s1R��xW�dd*�1i�4�$
1357
+��d�>�Z�ҠUҴv��Gn��e-<̒�3n/_B�f~�
1358
+�'�ٮ������[>�����ݍܨ�xk���K��zߌNe6i��\���#�Qߊu��b㿟]-�zIO���B��XD}p�r(�0�]Eo���z&�^���H�ОoU�a�p��!���~
1359
+k�����z��=�|���c+I�-��/|����[_�2���k�D'0=�F�4�sޠ��c����v#���.زMkc���69oO�_����w�_�.�3+9���,�V�
1360
+����k�+#���'�|�5d�eڳ��;��*}1���AWF�r� ]�y�U,��2)��i�ْ�u ���
��nU�s��r��\�0�X3)Sy�V��(��DX����y0;^Y}P�'��@�H�N�t$��j(��4��#R$�����(�.����]<Ø;d=��Q��S�Qd�%MC�k@��S��;z�ם�O����)'��?�s<�z� r�!v�]Ϥ��YOD�<��G{��I��8:t=#߿i��g�-�@��b�5�M"��":$H�:6��r:��cp�Ћ�V�*�P�)Z2
1361
+��k~�K���v�@\��S�s���m��c1��.�[��9�U~`��[B�X_�f�#7�#�Е�ȼe
1362
+E�G�7��W(���f���ں���ƐJ�,r#��o���LK�.!��v_k���'=��U��!}��;�cQ���|A�$���kN�=2�v,3Y�!E-�������
G6k���,����o��L�q}�}G�Vbh�k�:q��9�~�����r_��+������`�x(�er^+Y�p�]�X��o6�K��
�z������v�!��sj��O�
1363
+�V�6ߩ!�n;��<���ț~/$�L��*�Qŏ�H�D㍬�~�Y��"���v]�6�|H�i��pRT{k���i��Sm��y4=����g���ʗE�R��${Κ��^F�YH 3��y�-P8�0�_1�,l��I�
���PS�w�D�&�Q���*�K//R��G�YݞK����BZ��V��D�u�
1364
+#��C���.��Z�t呑���<��=���AHe�+�?�w����6��w��k�q{�
1365
+��67��t��y�	6�R3�Y��7��/߷�l�z���+���`"�6����I
1366
+��v�$���2��R&s��Hڦ̆q��QX���l���Hևm����,�?;c�=��kꪻ pu�5As��`G��1{R��Lj\|f�H�v	�l�)�����ے%�M��5�P:�~]�Gј��U�M����z�W�����U&}��=>���y���*ml�w�}���D���;"z�h�f�ޙ�=g�'hߒ�?���g�v�M��
1367
+�Ez����z��VS��Z?�͠��'��~f�w��j��$콦kg�wz��8�|[jwz�v�������
�N���V�қ;>�w�q�k������7�~��M��Y@9=�j:M
1368
+��
1369
+ߗ�݅�cLX~;���M�1C���
1370
+�34�\��\3�wrhL���9�rS
1371
+QPZ���?=����Z�^����5b$�@h���ض�7�d��X=�	�i|2��sy�d})��]J��n�����G�a�7�~��y#=�hj���R�/��p�9�Gi����f��62�2Tֿ��.	j�����_єU��f�"JA{����KWN�B�f�눾k���Y�{�ݴ�����to{`�X���[�h�2
�B������!�Y�>�ZFBD���Z�m�w�/��I���x� ���L<(���:�{��}@w�$�n��ێ�<M[�Xk�'��>!�B<�'�S��m��h�d��n����<���������-�PQƜ&�����B	r|��A��2g�1��1�En#��)�k�A��P�3i�i��K���'^�}�q��>�y	�X�J�1��
1372
+�<��q:����
�}��ʮ���Ews!S�x������E�/}�.��΢����ıo��x�f0z�'���]��oo�;
�����d��k���
�k$Gb2N��P$�Wth`���ٓ�u��ɦ} ����XP�wk����(Ц���V�/#Q��X��1��i7�n��1%����{7#�aNY�h��R�����q^ڵ3[n"Nߗ%�Sc�u�D�����gv��=�����O=�
]�&�Zi�}���Z��N
�$�;t�vO��Hk��bԄ��#a�.����ރ�#�򿑞�y�h�A��z�V�����	#�c���
1373
+���P�馸�*���\|r_��_��N���*�;I��t~��BT�+�4���&� ���m�c�i6�
1374
+-�K��~��ߧ#E����(���lfGe�~��g���s�_�..p��ˏ[���=Z�㛺֦��y@`�����o�W��6:�h;Q���m�r���/���ڃ�vt\��%\4�ȼ$��
1375
+;<���TB�S��lA��{�R.�K�;�{�� Uی-���	AW-��SJ�`+��)��\ت��>[b�YN�$*o�A[dux������:#�<����ט�5f�g$1N�O|M�ۗ*~��,��s��ۃ�q:��h�S�ft<��w<�H�CY������فtN{�7]�<7�SZ�������o��aB��qJ/:-pMV�VP*To[�wr���q�)�ͻ����D=ϡf�%5��
�b�Sx-��9�����B�FM� ���^2�� H_i�r�4�Į��7>"Ē/�VO*M)��J�R[n�R�0)�r���[I��`��g�w����U.$��|Ez����_{3���3����^O=KY��P�(��4��p���a����&�*��R"u���[�N�Ha��	) C�[�m��)*?ۍ���UϢ/+_p��Z���w$Aiz�GE���tx
1376
+�7�A(�\!�����\�̆��:7�~�f\�|���&��v�����7�����v��}Js�׈F�D�!�75��M�d0�z�c��ŧ�����H���������w�*�R%gMMUM�T�rI�nOiE�,��LJ�%%�-I�I�RmqMeE��0�=#�0��RV�rZ**.o���RVS��"|�R(��q8�¹��f����rY�W �*GJ���R� �YҸRgYE�Ӓ4y��r��V‰�������Z^YqeL��v��$7����c)�B�
1377
+���
1378
+WE���Q�I�\E�a��쎲K�5�(�$���dJ���"WE����^��I�h�2��*����xnd@Ċ�UŮ�RKU����Ғ�������J��S%bT�-+*�n�^�q��K+�.OE5�K���J㴦�\��l�4۽zEI���D�T�Y�#��*r���˝�%�ng�������s������*��D}�bwj�Ӊ~��u�U5�TtI���;���,^��j��=�9ȭ���D���RO�r��v:���Z���j�#���I9�=H�H|]U[^���5��UN��[�VS&�OWq�r/�.Z�Q\I�Y]\��xp[ʝ5�~����+ܩ%����M�Pgi����Fr9�1—��@�q;��
1379
+B�Y�VU�J�\.d�ZQ�ZQ��W ���q�=���U�I����8S�0uG�]����y+E3�:H�������(�A��yDҩ�NW�T^.�"u*��/-�fK%�JG�T�J�+�u/��m���ܨrm+U{�1�J�o�T�wя]��W�H��n�s��
1X�!U��T��z!���?W�?�m�I�h��R����������Ԡ�J�.�#�Ͼ�
1380
+-�b�U9�]����3"sr�"1�\�Ri�S��TP�YU+�1�j,�ܸ�bUz��]�tPs�jx��@���1��4��Tj�uO"+�8��d5�z(��&O-���W�^A����e����p�L�ДB�I��bO���({�K�nJC�Kq>��G�t�G}���lf�ljX�Q��M��̭0Y_������0��K��0��\s�0�߂�z�-���`\ߊ��`:���7��ؐ�̷���{0O��<���=�����n9ѣ���D;��}�K
1381
+���s-S�q.Fݥ��[	yc����Wi���ZN#��b��B�;@)��VT{V[h��ѥ�*�'�)���J�e��b�,)������
1382
+C&��TzW�8k�6�n�T09�K9`�JSYr�a���؁��I&OI���3�I%!�߿eH)E�ta�Vxʫ�D�סP�*�4��2��vr�(�������B��P�E��rS��i�9ٽ�%�@�L�q�@m+�-�U�E\=���6���q���U�àɀS��`)���][�,��R��:ҋ7�Qg0�1��D�g��4��E#�7^�Q]�6C��E��B]�Ҋ�^����p����bz�ˑ��[VVQ7�Z�S�%�;�M#T������0�j�Y�"I����ג�Ḱ[�F,�Wx���h��V�tV�:T$
�!�}�Pi|�x)YJ*���c��hq�����1�F�h�yEE�E����.�[XT���s����,`��uaђ���-ȳ�˵�����$�>��-X�к`1ܵ�(jA-*�}��EH%o�5��]�@K�u�5�9'�(o����#�^��[Tp-����m�mN�@�p]��E��.�PC�|g[���/@95ē�5cEq����C���.�<�{d�t��=x=	w"�2�
1383
+���hm��G<F�
1384
+PT�f��`���:"��Ӌ-b�x++h�/vEBq�֩ӆ,e����(筕U��'�j���\��\�����(�x��6��,����Q�"P�5"��"�Mtjjf>G󟫸���]�EȨh���/����9FG��Ǎo�h���jP/�b�ʼnr!K����ܨ$PHEY�I���	�Q����qb]r8Ew�Q�eP՗qR�|�"<I1�VS.n�]�/\��6*�D��2���:�Yh�������d9e������T����!"��=x��+�-��lY`��w�m�����:몸�i���6v.��9\xm��ńcx�/Z|}!MP�4g�=4�p�B[�ܹz����3�儼�v��Z�~�#ͷ.�kZݕe�/:�B�����g�Z����'�c����r�BZ� ���|+!��)S3�4;^$D��)�
5���yZ���K5*���4Z�b4E{Q�
�G�d ��ə����>�_�Q��Y_;?΢=��ιv~aA����]l_�g��5.�WQ����:E�0a`	j��wF����(*�D�gm̅y���ys'"������^�Nt'� \�{EQQ�8�u��E��4��	��1u��D�����ة������T�%�)�$�^�X�����˓�{BJZJ�,�,Ia�D�CQ��㭩,*.-�I�K��
��T����C�=��Z�R�n�	_ন@:@�Є�+.��x��;4���"w�*��)��""�oH�i��UU���	)$�+�$�'��"n�p���t�2�,��輤&#�s�)9��#%9���)#���A2�{JFJ�ٳ�b#��gBJrQ��\w�'eՁ�;a�Ue:������QU�:�$�$w��3��}O$�A��%��9��Q�q@�^�"S�3<�y?f9��o�җ�4%<O.+�l)%���[zfNg�шxI~���s�1&�)K;�V8DUo�81{�3��eA����ؿ��Ϟր������-�y���hgd�C%���V�2Z�9L���Q�z����E��ǔ3��z���#T�}�|_p򢲭�������S?�I@�.g����E�IA�
���<{��%��d�����ߗQ�&Ş�&g
�_gP^ӿt(�Y����J��;'2��[���'������]X|3)��ҟV���G��q���ļ��q'�aO�r�<�����:���K�j�٦�@��h�q
�(���<����v����p�r��?�#_Q5�8
1385
+lu&�+�[���A&zS�=�%{�9e��ƍs������z-��3�u6)�Lg��I:-w6o�{�j�%gK���ځ���C���+<��B�
1386
+-��Bi��5]=���ln�=������N��sÉ�,Ϙ�=�'#߯!����cۀ<Nj��_#�o��� ]so��|�0�j0�'�?m2`l?���̓�c�F�`#l#�0o�f'���7k�G5���h�U��ͷ��Q�{�q
����<����q;b�UK��5�=:&��3�W5��U���?�_��Uq���U%��4�uÅ���q��y�4�>.�nJ������#���q�F�I7�E�j�y���ېv)�'0�c��ͭ�\a���W��|a��qR�v޿g�t�"�_ �+D�,��i��?m(�M
1387
+����-��~z��������{���\3OiߝQn�'���&�7m�1k~I�"n�]ѫ^0�<�[��^�q�3�Wu��7҅���O��5g`
0������^�ےi���F�&�U�eZ�m���j���A�,��2�֐٫`���о�r���d�7͚I��ϊ�	�"�ic���B8��{���.���:K���5���p�t���%Y�˥E�j�Z�GZP�J�9g�����\����/_�f��&N�+5�>'����Y�fM�ِ��	9��"繤��/���9���lL����ɿ7�q��e %��%f�� >)�S�-�p9��n��	�TVU#NM��E'Ť�U�*��J��T��)�k+<�r�Q�����*�t�ڪD뭪r!5]J�Ŋ|a\�\^�6-ˢ�,���t����8��A����f3���̯S��.R�<g�ᤢE\��b��Y㑘�A,R��*�S���嬓��ؔH�T�PI;=�`��.�D��8�C�����qF۹`��u̇���R���9���tcG��^!񡘤�Ib�<�`Q%ZC�2I��I�� 	V�^�+<�uAgB����]-�(�_�w�ڥ/,6�baY�?_�Z�`�b����u�"��y��57vU�����bw�^�~_��EEt�!+���ܺ��R���ۜ5U�2�VZ���Q`a�r�cK���x,�IX�RK��������(XڅoK	7�.�O��
��Ҧ�J0�߲b�Gs<��G�rl�V�Hfe�rWz�)a#7�o4�Q��_<��"\������d�-���TX~�/:W������&(u��"�*V���U5�by�p
zP�R���
1388
+wEI��@���A����xq�a�bNUGy:ʫ��N���hW��_�~g�Q�Q�!�=�m�t��z�τѳ�C��(�|9뀅+�G�sEj�g�)s�R9:��%��_��ԝ�T\yFR��ܐ�p����d�����3���@�ʈM1Ig� ~�+��T�pJ˭8ܕ��ZI��X�XUZ1U�Ra񆝼a�bwy����6����1<�\��Wi��:���ÚXWVZ�pG�҇8В��jO�։��
1389
+$X�~�Ӕ3�2�t�<KZg��>=춢�c5�K�j��R��ɋ�pD߲�:*����p3�V,��a���ԝ'S�4�Ї4��1�4X=E�PWOv�Z��n�|���vT�&@�4����Ȳ�%��Ɍ�'�W��:�3�">di2��O&�Qi2�"k���5�UU^�aX���d̰9!�g5bb���&W�u'��b�Ov�M�@&LLf�frg��G��B��$�dT�TZ.��K�u��N*��J@[TK%Ԃ��N�8�償�N�:��
�k�_�����5��p�V�H�I��3&f�t�+�:
1390
+PG!�(H���@u����Q8GML:���0��?
f:̕���{���{��iIL:���00�`���K��K��K��Kx���G�n��-��G���pW�-a�hV �����\I?&b	��ҏ�~VҏTUSS�Y	guPPuPP��.))��Z�q��J������~\�~$`����������L�(�:ʖ��cEu	��ҏ�~V�m%�S�����,�p�O��d~V��ZO	��ҏ�~VҏT�\^B?��㢟��C�c%�SK?.�YI?R{T�O{U���������\I?R{T�O{U��JX�P���_���_�,��Z�u��J��j�P��ҏ�~V�L
�א{
�{
��wPx�wPxY(���;j��ܱ�(Gx��ҏ�~V�L
�א{
�;��{1��{1�s:��F)'Rʩ�s�v�a�v�#,S˿.�]ɿ��ҏ�~V������\B?���䷕�
1391
+�`��[�nn�-B�uǕ�K����YK?.��O�D;\��.LDf"�����"�-U�-�0%�-؊�������m�"W���@7�0H��|")�AT�-h�[�Ⱦ��aYN�L�T�o	�8��`�Jv.�s��l/�b�?��f��%�Z�v���˅;�K�,�!J+J$@�(p�VbK�2��B3��	-��*Ѿ����S|�����W�}�b�J�J(>�/��\���	eU����J��C8��
1392
+�J�9��ۄ�N|�h_�Zd�)���M�j�׾D1\�m��'>�/��\��˥wY-���g%��ԐS
9ՐS�T��W�/z*�࿛����&7E�P$E�P$99��AN�َJO�]\�A�s�2p	�R�%�\��%�\‹���������^����㢟���'?���_���0���
1393
+�F��~����:P&~+��y�)Jg@�\��"T��Հ�Z��B�3-��SͿ��2�[!��[#~E�-\�X��$gZz觚)/Le�B��F��`5Z��F	�:�%ꘘ���cr�~i���f��-.ݲR�ts@7�rs7��09�fz����)� 	ܴ�iApӊ�5��k��7�
1394
+@�U�p��Z�u��J���-��Z�u��J�+�XĂ��bq��<��Lh�y���Ԣ_��0
~k��ſ+�4��p~k��ſ+�D]��o-���w%�"�L���W�/�j`��W����c���2~h]-�U&�2�#a�=�۷�b������ 鋋WH,���R2@h�G-&~(K�Y�'����[
v.�S˿.���^!��<Rmq�Tc?�u;�:W1�m��Nd��8��6��d+�bE�R������[����E5����^�Z�W�y!�RxK��ҽ��H\�ʼ�d�*�CE�\������I���?�OaP��6�lJ6
e�]SꤲjOq%~��R|�8)(R7��2P��Yī��{%���5�[
v����;ٙp!�r�Ӵ���:�-�&,��,Ì·���sΪ��V����sՊ�ۻ�	K]UY��:+�\��_=�u[VUQ�3����v/��ۨ�=�0[+��c;��T%�ڗ�Y���T�_�P���_�P��K�J�I�Q���e��8U���6,��_4F��Rn��r�1p�2�$�[8�o
`Ieı#~�v����s���mN
J�Z������l���V���0n�0n�0�<�k$ziJ?��-�aYBP�����*W�r�f��l�t���(�E�FG0�
1395
+P��V:�o���Y��Q��!V*�(�+��RXjK��Z�yI��R�u'�p�j�^��,�J�p�,�`�K.��h�V�p_A��h�@K1Q5�ᷔ���5ŵ�K.5�[�v�
j5�P鷔���-ܼ�'�[Y��$l�R[�J��
1396
+��¾4)�i��*]Q��r{�~�\ �N�r"I��Wy�+�h�� X4��^\G���
1397
+ō�\����Y������^�k%/m���{�!�C�@np*��� J_����J�t�'-bM�X����e�tKZ!�[���E�<I꬯����;MO����4)N��ǧj��@"�IwR!�A{c��9k*�I��p��r�j�#**-I���Tx*�]��Cm�-%Ǐ��s�n~��������+���;�f ��#�\Q���?��$�ݚP��ԪJ�j`��ڙ�VߊRWWqS���,��n�T�g@<-dT��4���|4�nKD��H#��f��#b�Q>�H�b�Y�����U�@؂E�VKrRi���M�t��|�����b�D{:�*u�R�nC�7���=�#K�ŧ��
1398
+wU�(ڸ��7���
�=i��^ɴ�'�t�b�Th�+��x8k(�Ȑ4�Gd$��A�}-% ՜��p�Sz�a��V��oK��5q�()�:U{����o������p8}�F���/�.�׈��5zׯ��D���),�ò��5��Yw�����%����0#��L"�
K�`yq���Ý����R�U�K���r���R\C���R�5��Q���1���_��Դa"^l�����+*+��D�����X���5�iSTQ�.����w���ڣa//�j�m��0��h�Ekq�
��z
��j��n~w6l5#���S��l��0���Pa����]�����rBny���=��A�YΜ�?8�� {+��� .q,�Nj�Κ�t�����`e�+:�S�n�ý�)G�ĐB�7�����p����h�0_L��s`��`|�����X��/ĺFw�W0�����|�sJ���K%,C��	��
1399
+'N���;��k	�=��-�
�ˋyւ��,!8�Xz��by��ޤ�V�����ښnz�.�)�P�3��pF���2>�;a|� Q
1400
+�P?�}���}"�16��{,�z��!����ku+ub��@�LS�vz�.��:�F	b<�|�%�	�/��`����U}if1n��9|	?�'���dD�7�xVoq{1��^b�	����t�l>�?������~��:;~��(2�Jϐ�2Ղ𱄹c,F'1^¢5f�'�kQ)�FAc�w���*Jv�QY�9h�V�[͢��:�E���Y�,�9�"eWVU�^Q�uϒ&Y����Rr�;冤қ���]�	Q[�J���`EO^�ME��^*�%j�l��=b<hb�$oN��(Dq�5K��� A�Ж��qx�j�K��Y����7Z�h6i��&�I%O�8HC��$òY��1�&0��)��p�Yʊ�����ݞ�hɗ��d��o�]�뤒&�œL��<��w� �"��u"s)�bcnJ���Gd[��ǿ�Pԟɉ�,�.0WD�Yd���s��^�b���R����K�O�\�嵉H��aZ�JQ�0�BLL�pE��knΞ%���0�%\ʨ��}����݀���R,.�Nﷄ�3()vc�k�W7����vFu��NʤJ�`�f
��l�t�PQ�\�2^t�[H��/��"�z�O�Y��m6�9�sV����j��ȝ����Q,�GR�)�^ .��
1401
+���
�����	,V���Vi
�Ĺ�U%����Qg`ڭ�|�du���
1402
+v�]%+VL.��W�gnf����2�
0���+�c���i�j!�bo&&�?���F�eF�%h���Wu�_0����f�f��[z�VW��%̽0h��ɐ��}0]0���7�ѫ�
1403
+|7��f
�^�?̿c�j�Jk���{��|� _jOݜ�?p�����?av��	�	�g���ɳ�c��e0�0{�?��^վ�b��'kP7	�c|o�y�	az&�Ia�<!���dk����v�Y|�yB�R�,֌M3O�=^6�'����xBr���
u�2�Q�����,�2���Z3ҳh˿	�e�Oͮ�����x�Q�F���ܫ�����"�O4@�X-ܵg	���?3/km��M��j�o���v�{!b�v�1�>�֫�i@�]p���y��?Po�#�s��&���O��ϟ�6}^���?��)�[f�?�+`z`��(�ly�г�g�o�S�/��g���n��Qa����D���9իN��������Ӡ��ۓg���m�1����Dę
1404
+��'"���OD}��	��hO$����E���}��W`.�aJ�r�v]����1�W�5��]h�-��k��C�@�\���}즛?���{�}�51}j�+
����6���qF�Qo(%���Q%y'II��Hs��Ҝ$�vϐ&�1�t���D�2觸&}f�L�.�)�&�:K���_�n/.�v{����t�J��O�/�
1405
+%���˿��q8,i��&O��,���A�~A;�3%�f
1406
+
1407
+�>�ʙ��Г>%s�gzN�t���G�3<W��\��jg"�t$�>�S2E��3
1408
+�*��"�i�f�cQ8f�qf\�g�p�FN��uj
1409
+���N%���R�S�ze8�8=���$�#W+=����iO� ��6��bE���2%���L9N�IDs�<�dD��SP�)��(��r�
u�2]w�S�e�L��چ����3]r�%#
�ǟ'I�Di�<k�i�$�2$ӈ�L9����	�d�8�g}
1410
+렘�u�,
��$���`r����$
=7_��%�c�pI�c���
���Ql
1411
+DQG��D9�9\��� �0Y>�I���Q��;�(�ѓ
W��IQ�
���c&�t<w��>$�a��$��jv���rA�?���J���qeF����3�V�aM~p�� 0�y��Ԭ)S�N�rJ����2��rZfZ��3��ѥh��3<4~Ҧ^���O��$4F�ү<�_t�H!1�3��BF��&�2�4�f���)WNϜI�a��i�S{�>m��i3��Lg����R�)h�)�?T�+&�M�I�q㤵Ҽ��.)��#�t�-,�/�Jw'�]�������l�dq�*Mv��g�	'35�9'=�~&\��e&{U��j��뽤��̙@.�+��O��i�T["e��M
1412
+6��N�'/��HE�
1413
+��m-(�v��Ey�����"z��*Ɗp�Az�J�ˋ���jR#��KWW��`׽�*B�U�׊�\�}A�.Ѯf�����G�3�`r���&�� Sauҫ^'����,��dkU���x������j<��bN�y��� �8ʝ�['W�sEO���	;,��尠ϱb�O.&m>�pjC�p����Ժ���3&��&O�
1414
+lE��姐Κj�!�V`�*S&/��rSF5��ׯY8���%����E�"��B��5��J*��KL��unMA�Y���Ž�F0�H�	�K�C�R>�Œ:�G�����fa��K�R���L|TG�k����KK�.YP4�څ󭋥�օ��K�n�SM���m���߉����ȿY&
1415
+�����0�>��f�|�\���3}�֗:;�~	L�eB:�ᦙ�_d���E��A�"dIN��OGrrD8BJ�v��'�I;�0]R,��5��i��L^��������/�>1I�/�"�Ia�"��=�|�S5P�(ag�JO��ND���Z�D�H1��-�M%f6����J�8UU�h؏���N�E�rCҔқ��ȵ$M���4c�)�$%�?��4i�4�r�3J�'c�H�g�w���*EPjT��T׸yBGqG	/)9㺝�t{,ٖ��~B�hf4twt�҅�0��;n%Nږ`�T�:��;k�	���19����/f�,Q�I�I��3�K��f��fH�&K�g2K�sE	�Fi�8+��q�ÔFa�p-��gj��'��u^�4������ZgKU{����GaM��(�A���H�1�XB$!nC�E�ۉYoY1HX����Ϣ#����Y��	ӵD�1��b��?�@>�p^����$=�Шƴu��V7��F0��%x�@�Z�~�z��M6�&�����Y���SE�7��y�L9ܧ��o.A�����p0b�]�3�����Om	��B���هD�>�®�89�5{j4[�eu�ײ�Y\ɕ��,�X�5Ւ�J�g�*骫�"u/i�.W��5'�X�d�'��-\x�B���l�
��,*B�HX�`�!�P�}����ļ�aW�@rj�@г#"B��ĵFT6bʂZ��VΰD����Z���A��JƤcR!yI��qQQ�F�^��NF��0Q"�
:OCR�M,N��U���0Sվ�yh�wр��M�z�AUߖTu!`6̧ڷn���aʇ�j	̍0O��u�3|�'�g��.�����qj�S���i� ������WLݸ p��g�
1416
+ְ�IJb)&$�T1�\�\n�nq�l�n�b�ɡ۵K����)�\D:�G	���:�52#�+���¼y$�׿3I^Tۥ���H�K�Wa#pCj�M�kD�
1417
+���H�:+�����T����n�a�5Ӧ��_���U��qpO�aC���.]��Ca��V��sT5qvĤ�T��<a@�[f�������s�����[0G�]��/���N�1G�$h4�ϬA��h\:Vy��<U��Moq���7~�)�qbɪ([]�M��x^aNb���uI:�9��Bj���Ş���F6�SPL$B=��Z�X�ߊR�
�{�|y
�h;#�.�P`	�/���"��˚5���. �F?�p���&bP<�I^e��cY�R�t�����[�q��.Z�G��eX(�xFX	���	��ߏ'����;iϜ����Ua�݅EKEw,.X4φ�=,���77��XA�*z.���$"�o"�#�n����j�bU�^���-Q�:|�[�"aȾf�"a�Zx�IX$L'�7�l��^�`;�_��D�O�N@˒��7������o4�x�3��Q5џ�W�J��?
1418
+�A0���������N�I�&���9ID����Ó#)	�Z�$˔I�"�3��@��#�����.�Io1+�x��SӼ�#���[�Z��p���%�����=���(��jW�C�(��k��);JK�	�}x1
sRK)%'�TT�HI��II5%�UL͜�
1419
+R�D2�;%���D����*iz���pU�P�[-�ӹ���E#�wWeU.WU-M��:U�a�w"ťz��Sꈚ���O��C��~�}�;�Qn�-�ma�R=�
1420
+���[A;���~_��T�k L��炑�Ճ�y-?���޳$��������r�=�H��]�x7��
1421
+k.��g=�:g0�{���E//0ձ����h��يE��;`*7kE�8�'%�N��\�xbQ�� ���}��}��Y7海�y�,n����}4*]�����՜�=Э�_�7�w%�L���w���t�5��n���3=�jUu�Y̤(�y޳�1O����k�$�#��,Iiaj�"�↏�����_}����z�S� �;�w�o�G�߰9)�J��+�������w���P��eIK�o����W�ץ7�7�`����~-���Oꔎ�o�/V"�^N���)�T9F,��J;��_R�C>?���@ǁ#���@灯|s�o|w���N8u������|z�~�v�������^s��L�@2o�l����μS�}`��d�'[{���%�e'd��lGMOk�߄m'LOj����`��f�
3�E�Ňm^�)v���զ�5��'�v�#��(�����`����@n'�&�s�[��In~�K���ܾ&��i�q���L[4�/M/k���vAF_m�Go<�a�~J��χm�oL8_Z`���o��mWwS����k��J���!d��l��Bed��R�Œ�2���6�m�Rȸ�,�`�7H_�Jd3JG4�R�q���Q�v�t��ml��|�q#��p�q��+�v������^���2�V(��
���@6U�m3��VN�F�
]f��6�l ���jq5��l���G�6X��q=|���m#/�~g�[kg͆v��x#�7R��$؎��葚�0������l�����l���^�?_�ָ��
1422
+m��q�f�2�Ck���5[���Zl?��|��dC��5��t��H���2���[=����46j5�l���)�q��K%��>�K������|�v7٪� �z��'����,�4R���V��4����8#�XAn�ٌb�S�6�+lƇGJ����܄��ll�R�qö�l琭
6
1423
+���I�k���W� �9��fY��iͷ���+l�{�FS��\	6"O
I�)r�'�S�r�X�N��2(��=F���j���n��$�k�>�д^Zj ���m�yQ�#�B�:1v�
�~d~E����B�s�V��a۝�O5[}��`>���2�\؞3�/ֈ�M�m�a�n3E�a5T��i�f{���1ߛ�?1��bh6��}8������}�Ӈ�폦�5���|���5�mM����h�H��m�@��3���=a��|�Sr�'[���H�ް-H)��}d�~���`����n�)v��������l�y���/)\;�=���±�!rk&[�y�Vˇ��Z�G̊f����xq���q�~C6N巰%��mn��8����;�ų������+b<f>���8��e�=�Ƕ'ȍ[�IJ��@q�Grc�?��?2�SI�27"l�*ˣ�/d��l%��lO�mٞ13�74H��>��� �Z�ٰmي����f�|1��#���K����[����/�ecض�l\��a�ff�B*/�[�^"�K
w��6��6�֊-d�p/��q�m��4Ѥm��f�ط9lk!���ij���$��i�f��q�,;̭Z�v����Ǧ\i)�����y��6��l��6ͶǼ_��57 l���h���4۫��5���^7wj�7��'��f��lo�+iM�k�n��6�d�"�F3|גm�]a��w���ۻD�4���8lM1d���3�J�G�Jo��`�����s�f{�ܫ��3�i���#���f{��f��F,�>�9ȶ�h��c�G�}b�j�v�*���T�4;5�g�2�v��f���f���f;l��l���m%F�1n�2����5�ۗ��ۗf����-�:(n�nG(.�5����pVr�ʼOs��±�1�[��1ʃ�:�ݚ��據��)�vܬh�o�!��y�f�"l���r��m��l'ͷh�S�e��X���K4[���f�#�s_%�x��<�b`I���$CL��f�I�܌1�jnƘ�47S�RI�5s��1RLL*���A1�4���p�1E�mH�M�mh��mXL�f���L�
��J+����5��f��y_���Y���P���#�6:�F�6&f���6Ph�
�^J�Iа�dclqٸ�.$��ؘ��E1h��	7]L��]B6�W����|��Y��(����昘A��2t�aqqÇ�!��ܨ�S�2�t�d�)1
�3\h�I,���gaz��	{��u�y=�Вߣ6�_ݣ��?`2�z�l�
�K�]�Q^Уn,|p=�e{���Me��G�0���!
1424
+�p�~�f�#P�rY]أ����.\X���v�
���s�GK��c�m����0q�$-[ڣ6����G}
1425
+0
p�@�
�P��GM8��i����}#�3��0m4qףހ=�m���/C���	�Xq��1�+�Q��7�Ls _н�s�oL+�Q��Pӣ~���G�=�������1���P>���ut�W��o�Q�ގ�!��G�?�������pٝ(7�z�wڥ�G���|
1426
+p��6����G�ס?/Dz� �x?�`'�B�?�8��/`=�b�
�Հ����߇z�n\�I��#}�r�c����	������m�
�
1427
+�0@��=أ>
1428
+h��p�퀣/A��=��X��c��~�ҟ1�,�~�0~�,܊~�p_�Z��;=��i�p���\��Ƹl��q���Gb�X
�4�����xߡ|��]���i�ـ����}�`7�+`n�KB9]tد��[�U�N�@��W�����f�U��V�Iw�aP�z��^�5�	���`'�Ӏ��^2�&6f����j@}˽����߫f��܀v:�����!�z����	��U;��^5{�_Ы�H�B�|�`��^5n"�f�_�r�.\����^u?`!`'`�Ť�^��lA����U��T�0>�%���m�������>��MA�N���^�Q����V��U�+�ݫN|��>�-s{�v�N��4����^G>��v���4�|��МNx�(�Z76!���j���h?�e�{՝���IG!ʱ��Jx�XXܫ��7වi%������U�7>Jߥ�`5`;�z�rw��Ӑ��^��m9ɥ@��^u`��^5v:��E��kQn��:�'���x%��znx����l��D�A?V?׫�f��F���{�{	�[Yz��j��<�\L�^�I��H�P�j���;�`3���#h�
�	�>�p��_!`'�l:�<�A~���{����W=�~��h��8�>�z΢#�>�ƫP�>�i����T0~l�j��7`=��>�y�
�}�2+�S��F���}�y6�;�O�̝ܧ�l��Om�L�Sms~J��pô>u'`g&�m�3���g����mW���y�_n�z`;��e�>u?`=`'�e6�s�T`��>u3}�����p����O}�
p`�|��0ގp���Dg�u��%(���}��#]@;���������x5�}�Z
�{����O��A��>�����٧>	�p3`��>ul�+�T`�-}ꣀ��
1429
+���ڧ�>8i>�]}�b���>�1��}j7`�*���k�n���>�U���}jµ(�m(`5`)`�('`�Z�X'�Y�x�(G!���o�����?B<�6�v@�B��>5�1�R�����;�A:��γW�٧n�߈r�m�S3#�f�hy�.��L[B��`�6��uߌq�X����\�-`3`���u�3�6�?��7���Hp`�>�/`��>��c����Z�ǸL��Om|0�'Hp,`�'�	x�Ohż����O����7�>'�_��ݨ'��$�V�����nD=Au7�H륪棪,4��	��>�	�kT�j�
���DD��>X����v*����7#?�
��#T��"��6`�(�/�y����m���E|��q�ZXx��>
1430
+X���0m��ZJPN���d�0m���:�
8p=`6`�TU=�!CUK�����JU}
1431
+0-SUw>�N�=��Y�:{�j�l�6@����@�ўg��6�7�ۀ�
1432
+��r���9�j�0���U}��m(`��.G>��/``)`�M��f��Y�r�#~��>�y+��\�F�ۮ�J��xÅq�c�c�2IK7O���(Ј��#������KW]0s����f
1433
+�F�GY=�L���P���1�G-!��#��7^;"�>Ӽ��y���{c�#��d��<oD������i�ɳGXf�H@��#b��$,Sғ����3I�u��:"�n�m��g6V�`��y����#�!��#���=�"���)��da)��#bm�D=�P�\��y�h�
1434
+�l�M"����2"V�w6�)�7A�Իn.��o��=������m�z�F,3�Ĉ�[Ϩ�}��(��u��>Hi��mF�-l�Q����]�[�z(�׈x��>���:��������~��/5�w�Pj���1��G�n߫�}Q��y����y����$��A}�F�&��u�R]n�*?�
1435
+a��˯�m1�ڋ�X�[�^�r�����=J�F����G	�=����GtD��C�_����40)n6�:�7-�~�[��)������o
1436
+�y�F[�L���K�ߍZ�y#�6��l��1T3tD2ʪ���ab��Q}���ˣ�7��_^x���+4�b8���ƚ	�����N�5���H�*GZ�9=�o�~�b�Y���̼3�f����AZ���gܮ4��W`�Qn����n;��mGc1�yĻS��}bPYN��*Ca36vn�z}|dg|472p)�2��F�yg���ᄯ�~/�.CؑQs�1���Vs��nğ��p�W�a��~;�^�[�Ag���Pz���ic��F�}� I��N}8�.��=��ҙ�-o n�5.<+N�z��!�����F� �u�1|�捨6�
�f��Nc1���v�6����ة<�g��F���:B�6oD�ݯ���Z����!ݽ�Kc!��hq�(��訪;?��>�Rmj��V��5�l�d&�#`�D0+A"A�5����zP�n�=����E˞ͮi����FMwӕ=em��m܍]�hߛ���}o޼7����$�����{���i;�;���+ڋ�k�,��}5���v��k&ݪE�-�A�FZe
1437
+th��d0f�=&MckU���G�Xޕ�(x;�1}3Kɏ�Y��x���w;�b�#8����rTOr���`+��P4ܮU'S&��h����������+(�y��߽4�1l��u�
����;�>>B�6�V���X�~2,l��1��t^m�6n�i�m�H���!�����l-�|�:<�ij{ޤm�H�4n��Rh���P���z�NMj��z)�yF&��A��j���s����j2�t�Zu~���
^����a���!��]�_�7S��ȕP�{�L�E��\c��{K�����3���X�����Bfι��h
1�p��d[�?���>^��߭�+��N�}H/�6�V���h��̱�y>�Y�s]f�\6������y���c�5ZLj�f:��qN&��n�0�N�:��
1438
+g��I8�
�/ڃ��]��O����xY1���>>GԲ�mE�5,d/�����%-9]m��(�2UR|&Y�Ƙq�y��
���I��m�Of�;�
n��Ð
	.E�\
��GA�c��?
����'�n�3ɜ1�󡐛l2L���R��8�pF��m���9����磰�;���6ؕ�~fm�x�Ÿa�~��:m��F6Q��"1��ߒ�=��S�g�,i�i�>eٷ<B�o�x㟲}�o���Zw�Y�f���1.?���Yq���$ �"�W�jq��,����\�/��,�g�5Wʞ�s�i��$My���#�U��Bߍ3���\�l߾�j����{Ϻ�ϮvТ�``sl�_�<��j��ݡ��g�t�(�˜f��/��	X��q'�Ua�ǶY1h�E-?���m	�<���0��:�.���f�R+�,u?��~l�B�x?��|���	����6h�i>�.�R�i<{�S$ʖ�Ń��:���N���޲C�W0��%h�X>ƚ�?OC��wh����X����;n����d;��
�v{|�m�r�����E�;�q�>#i_^Ց��z����wZq|���S�w���B�Bcz�j6�M�O1�qҽ���YG@��n�/�Y�V����R���o|�Y^Zi��VoW$L���Z���] ~�v��!ҳ�"��<D�����]0�K�cl�y���\���V�Q��u0��mS/��dM���u���\��V�곲d����7�o�z��w��$��h�����$��r�	6,!�ن7��"�N=	�h�oR�'��%�&�Ϯ
1439
+z壐����\��K-͛��P�?b�tr>vV7�t����w
1440
+:��|��h"�����L�sL8]���ء7��A�%|�	�Ѥ�Ņ�Z����VnA�;�Q�Rl�'���gt��mǠ��⼏H%��ު��Q;��?��������#:v�.�z��nl�U8��]�U6�f!�'���������w<�
1441
+I{�ہ�-�'�����D�>7�l� h�����K�-1�?#A�	���(�v�>@�(�J��|�g:o��~܎��t�i����<Z��cܲR��pۀ{НJ�|�_�J�Bu�e93E�j0�_�7��:op��9�&�g�gD�X�;:��#�V��0q�{�m�hO.�K�w��x����i�(ss��4E��1��j']baʍ����\a��[��Ʉxx�L	ى��Fgy4��\�ge��Y��ԇ%b��_yK�c��5��w�8)�Uޝ�>��Bn�`��w�]+%^����un����_w� fuμNcx)�L"�mNlӈ���q�_O�.3�D�����j��P��x��"_u`��X��������,��x�x�K^>{R��v���w
1442
+��$��h/���C-�`���}��-)�<jk�F�M�N��Q/;�WXs�ݙO=f��n�=K�ł��fT��c����K���
�v��st�����?dφ\�+��>��W�O�����=7�_��<���.�!+�@:���n�^��ţۗ�<9mһ@/3	�X���v��.���w|�:B'5�u�sy�Dx��>��|��>��\T�ֈ�'9�@8z��9�z�C�����;
�j�5'�5�rG�"���&1��n���ZG�o��9�׎si�C_�;;�^�Ͻ���;K�럀m�C�>OӋ��\����qo�_�9���?/]8.��
1443
+��s�2t�<��S�2���"1Ðc�*�c3�N�?���Sf�������=C=����\�Um��Fx�wxgm���'^��j��F+�=��zB���M�
�>��xV��s5�\�Aՙx�H��Oځ����(�&
+�
1444
+_�T{����x���Z�7���GQ�&̩+�D��W4�K3ʈWv��d&�t>{@�3l���6Go��?�Q�X���sN�g����1�0�db�R�nX��l�J�9�������r{�C'i��W7u���*��i�o('�|����'���Q�*obE��)Ш���#��z�`��~i3�7I�w��.�4�`��������&Ok1��*��u�t��rˎ��l�	�>�����=�9�����Qx�nOėnԡ4��>�q������Ҭ�mW���˜5΃RFܚUg)���7mM/�h��0�pg�V��0�m�?[ܻ�`�����Ө�`����ۃ�f
Z��k
�Q���b��v�
1445
+'-�S7����?m�
1446
+宎����y���ec�b��O�k>r��!'�B�|�s7�qO�=a�
1447
+��E'�_����`���)�>�PԈ��"�Z5��r|�3I��t�q����q�*�2�I6n8�����,���
�E+�Wn2�{��6��vQ�;eE�:7�����d�QAe���ѽ߶�B��7|���otl��
?��÷9X`��h��xu��\�'�Q%�L\��bI������_��q8Y��[��E)����x宵8&ގ��:�Q~ov:ET�����ie�O/�"Q�����mƔ�����"Qe�V�g��;��OoT�g��֏L��]��:�Q��!�����f��4�����2|���_V:_�|�U?f�_���Xx+�Z}�
�\9�ߤ"�I����g<FN�0t�(�R?��j��;V��**����^O�ܯ>�ȆT�;:�i�LROH�՗I�'���g|�,	������}]J�':�X��V�µw�y}� \f�-�2���!��[�y������>��~�tG��������τ�����<M�94����F�=3D+eۧ�Mk1�
1448
+���{if���
3'\�K�m���D��3�}��T�Q;Q�gJ�N�^������ዢ�3Y�¤7z�/��K����`���Q}�ݿ6�>[Ge�:���ޣ�S��f�c�ѿ�|e�^7`s
;g��
1449
+��Ǔ�"�>��)����P�]�����h�u�k:�>��ZG��x���?����W�I1��$BNQ�k;ƞ~�0��e�t��9�6Ӻ0v�+����v��dnj�����U��=n�[9Q���1.�Z�FK�g�ݫ?���uq�?Է�L��@�hU)�h��Kwq���$�`�/�~�k�_$�=�^�Q�x��M�i��x�^&���E#��
Z=�7x���|�O��T�?
Z�C�sڔ}�Bl�SU�C
1450
+م{�;
1451
+\�j�5�"�yk ��?zٔ�3�Q���!���;6b���E����o:�#tf�`�[�z�Y{�"��4Z�I��
,�V��X�O@�_�OW#AG_0���t�����.��5;�Ļ�����*΂GV�ͥ;ZM�Y1a�(��i�1aW^��'o�N;���W�^��™��<n�
>��G>���O�	m�"w����i��B�#�~m�ZI��͔`
�u)����`&J�Qu;�7s3RZ�3��������FѳC~�y�?������$�2�}�$E[�m
1452
+Y�Tdc"_�<���{s�>r����>�����(�Ym�3�[�ӝ*ҫ�� K>��2�c�ֵX��ZG�ֵD��\���0�	��b�9o�.{��,E�V��S��#�m��v�O��6أj�w��+�%HRkjm\"��s=@��5���o��V��O���u4j]M�u_2��\�I�af˵����,(R�N��v��*.}#�C�k-i��Uk�jٸ$
���o�_mֹZڗa�a�V���F��!��{(z.Q��D�
1453
+��\(澏
����j���<�	��7��0I�`_+�����	:�[6W�`'T�IQ��
1454
+����W��q�nQ�ZD8M�����r��Lj�������
�OJ�{y�v�vY�� ��C�_�J͓�
��Syw�z8�_�SޙZ�MV���5
Y���g9�/�e[3�~Q�����>�����CY�3)j�;�*���*o_p7h��V�SF�w���,2-�S�(�{S��?��a�f���S�r��[&�x����cf�s/���*���ó��NUd��D����� 9�^F��U��D�����<3g�=�z��?��!w�j4���4}���Zi��t���E�Z��¿¸��x;����z}E����4Ƿز�(�Ho>)��iMà�P���J�߻��4VԜ'��+�q%�|��n���	���͠��,Ƿ*��Q�P��x�ʖ����ʂ�yb�Fm��O��7y���qЫ���{+J�;A��&�DP�[ ���
1455
+�����*WYw�:����y�Ņ^��b������#;��t��`�~�º�!���dq�����Y�0����6�����P*��=�e�֖6����CذЍ_�����"���I����~��2n�~�N�m
�F���G��=����ь=�8o��뮬���z��(|��6�M3J_`Ʈ���d��(�.X�~!�����Ѫ��h-�ɞ}g�W��H6�Y��ސ�L�R�3�bPc[�sx�1���������4a��Y<�]f�8��9~��tPa�*AԈ���(�3r�W%uxR�`'��3� hd>�s��2?8IZ����У�O��/�^�=Zu�i��w�ǸO9|�`�a��r�ճL�Ӻ�A+rS��Q��ZU�o{h�ZK\�E�]R�9������^���L�#]+9��RG�l}o���f�<�O��x��p��$����1>� ǧW�⧵σ*ۥ�P�j�*��	�	����o�u6��`��BEC��د�Fc��{ABTS4�/�a
;�;J�������0ֽKr|��Y�Yy���/�BL��8h�-�;�8�k�Zjm�+Z��1���?a��
E�љ�j�ߌq�~�VqU�?�a���)��ds|�%S�acj��Z��E%J�J�G��(��^�㗰R��`ىaE=��3��h����y�I�zTE?�Kw�޻.��:�s>9�F7�4�1����I+��|��o]��+ݾT�×���p�ur�a���	�Nɜ��v�;im��Jg��[�ɅZ՜d 0��G�����.��jn�����iY�j��y���Ԇ�b�Lj�;ͳN�=����9�
���	m��m����1?N`��ʔ�ʵ�y��#i��svO���R��)l����t��#���~�u;o�_m���8�@����v��?�]�gu�H5���{s���펺�>�%5��Q�	����ye��H���<��9�n�왭c��
1456
+�b�1Z/�M���B$thO.��Q<S�������z�,�~�����}�`���>cI��ʮ4�\�)�:ݝ�\�M��;�,��d�3���;s|�Om'o���Z�HG�1��~�o�uW���:�f=;���^�^\�T�_�#���M<��J��Ա�}�)�w������ݑS���/8rj�;ӂe������~�O\\Q����c�|����<��c�S��%��!k���dp��5��?g&cP��Ht(*�P��9��Z7"n!H��a[J���n��t�H�_��3���}��}/������0������w��{oX|�B����Yb�C��ޚ����p���J�إ�@�Ey�tWK{�2Hw�t���?i2?�8i����M�.�k�Dև,��r�����e���:�ZG���ڍwȿ����|��C�=_�Yӣ��>���/�q���}�~R~��J��d�Xs,U����ŸbNO�7w�z��#{ud�m���ZK�{w�X�	������'b�I&��uR�p���J�g[o `��e4~|2��l�Ҫl1\D����뮧b�7�e��a���T�x�ϳ30�¸k�-�����dJ�	��K���gd�~:���ѝ���Sޑ�̄�7q��2�$��:�e8ףQZ�ؔȶ2̯^K�>-��͕b���̦<K�����n�⛚Ƨߌ�;H�5����yP�g���*��v~kS0��P�u]���2��IS��ٖ���!G��z��]N��7�y�k���/Z6���b�_��(�s{�Y�D�j�h�����^es�w>|�Ҡl���4�=e���*#�>0�Y=��*�^��_K�Ma�떎�?)������]d�s�wۙ�����S�5c��J��R��6�æ��V��\�]C��/b��5�uP^�I�������lYҟc�ǽT�_�9=�x�8�B��|-_c;���[M���\����d|�5�����g1.r���7Ӱ����z�'��=���)���{�u���v��>܋V��wz��Q��v��ji�hi�,�%T��{V'YW��9S�k�:�L�@ۘ�/�꒛���6V%�ۃ��{�ـa�ѻx��ۻ�hԟ�q�q�W֛�9v���C|�"����uX�v�T�����gX�
1457
+ny� ��)��R��`��b�����+��h����q�T�$��_��ڡ�T�M��t���L4I[,ĦV�u���ϕG��lf��cC?԰wa3�u�.&��.�N�$����mju¬��v�Yy���J�a�I'����Ƽ�)�N��a�
1458
+v	��$�#�:l��~x{���^��1�����7�F|�!��|ObN���o��
ҒI�|p-��O�ۢ������Xx��@��>D�&ҍ2����޵�d�߿W����Y�k}9;��m��~��J��uX�=�E=���l}XL݃���vҽO���(It���>�G���E�n�S,�f58��2�m�t�%�4�P2~�=��K�q��I��t�Қ7�zH�@�ж�,�z�C���A�<m'�2c����e���ĸk�ul�k,��vV{
1459
+,�l��f��(�z��ױ��qs�<қSM3YV�R�|�R�R���B�Y�x��2�|��D���p�//���T^��j9�6��+���\#��5r�\#��5r�\#��5r}�+��OnS��kߴO�˭�YR��3��^W�/���ֳ�O:�ܧ��-�{f���s`>���K`ݯ�����g�O�I��G��v���C��oM����p/�/A���!_�� <��8��O1)w��&Z5�07C�s���"�ԫ�>����GA�s�_����$�c���ѐ���;`.F�OB>�D|��'(W`���VM�x��s��,+�������,�,�Y<�S���o�|&��<����յ����X���|/QNT�%QNT��y�s*���4�p���~���<�9��͆l��3 �E��!�
1460
+TY�e���Z�.�,�jˀ<�9�!υ9�ʹ�ﱘ˟�#J�j�!G[�Lי_ڣ}�
1461
+t��j��X�U}�����np��ߙ��U�^�N�&�ު�s('�4��&�����8.s��π}�w�H���?���A/��*�p[����]Л�_�?9Ú��͒�t�G��{��A/�Џ�D�Wj��ӿ�ђ�O��t	}9�q�br����C�g
����
�'�'�K9�B?zю�z���!��ӕ�{�_z�kۭ��S4r��"|��
1462
+O[M;Q�����E�E��,Ÿ�x�E��5�ːE)ҹ� Q��1���h�D}/j��o��v�e��$�M�/�Z�=���l���/W�	�q�"ܓ�'��
�#]����i���`l;�N����~p�݉�2h��~0��`'���}`?8�~��A;�]��a�
�;�.����Aж�v��@��`�v�]`/�����
�'�v��@��`�v�]`/�����m��t����6����^��A#��A�=��m`�	v��`����>h��~0��`'���}`?8��A��t�.���0�v��`����� h� |�:@��`l;�N����~p�݋�A;�]��a�
�;�.����A�֎�A;�]��a�
�;�.����Aж�v��@��`�v�]`/�����m��t����6����^��A�}���z@?���{�>�m�#|�:@��`l;�N����~p�mE��t�.���0�v��`����� h{�v��@��`�v�]`/������A��A�=��m`�	v��`����>h��~0��`'���}`?8�0_;	���z@?K.�"kV�����
1463
+r�s��s���s�eͺ�W��`0�1�t�J��M�<�~	��#�m�Z�툱\.�z�؟up�n�Ǝ����Y�u=��k��@ȻF�ih�r�64�4�|��zI�����zNm�¥o�Fɩ^�\_�2PM¾@���A#T�Y�W�eq�TRrjj�7�k�_?	d�X�
y�_M�?�U�T����x׫.�=s�<&xt���U���QC[*9U�������LS�7
1464
+Ԯi���㛱�q�N���:�i:y��Q���:����G���p�؃�Gk����`���o��Kĸ~!�2��#���h�Q�����_�Y���0� d1� ؤ$�oN����۬������ft�#�b>����M7?(�!����:�Y�ZVf��n%x�ν����nI�^\w�܋:Rp��E7��ໆ����t�ֹ?�Ԫ�qÇ������M�ü�?�\�E7�'�f��ʿ!%݋����t���wQ�ʴ�����E7_#��I;ߘ�+ԅ�k���L���{1)�3���'���,�|�y��@��zZ��QR�_�_Js���Z�J��>�4|���._-����w�ʙ�TWU�\�T��w#�����1�͟�+�.���\%�p�#o~~Ann���WP�;O��Gd@s0�
PT|�[}uMuF��d��~���e6%K�Y�g^�����{,�'ҍS)���I��4^gY%{Nũ���&u���L�t����˔��uj��Eiug��uj�>0�`���zQPv��f���ߜnF���;3�턻��/�+�����*��_�QЩ�-���k�}��+�՛�|����Ww%�ĩ�q�;�o9��}�r-����9� E9�[W��Q8��^u�
�-sZ�s�9�Ɯ�D�rQ�hT��[�n�����<:�^�4�V|۳����86��u�G����tCNA�V��;���/��L}�Ք�X2���S�˧Y��(�zFI��e`���J�C��i��k�_g��27����_1��o`��@������������� �q���_0ЛR��ص� ���;�?a`�c��ؿ�~��~��?��7���3��ؚ��Y^�v�QQ�������VB��ֵ�޺��`ECs]��5��T4�|��P|��5�~�/ T�jC>�.��~ykɏچPEp}C��")��5�����
�\�
���Zܐ�z�k�V���>����W�k�
�����@�1��xc����λ>G.T���zCCu��K(�(єB��*��P5�7q'
���CA��t�˖���{��|u	W�)��ԓIc�Bڦ�jzH�lT�!�{k��j?�)��z�Z	���CJS3��� O���W5�gU5���	)U���#�>kz
1465
+
1466
+��&�d&Pޅ�k�|��=wD�eB�T5ONaN�˜G,-[�`aE~N^a� y��3O�^v����K�m�7fN���k�+��15�U�†��?̉�ì�5�oͲ���la�MqA��f�EY�h�-ʕ�d���k�WB�2����͓kG�V�^�C+�ʆ�ޑ���#��QJrM�:�W���Ƃi�^n��%�<�̔�r�6Kҏ��#��P����E�^��pJ�ђ�-��!���w�������#�婟I?^�7Izyn�E��S���^�G������^���.�/���$�NI��Q�g�%I?Y�wKzyn񠤗;n�%�Er�A�O�˳��&飒^n�OJ��%�)I�\��I�t��Kzy�<]�ϐ˿��+#�?��l��������~ˎ���2��7���W����"u|�!��0�IwL��S~�Ţ3^g2�sy�2������Y�7�"��e2����LfU�V.?�dV�
�r�A&��1���{�̪��J.��ɬ
1467
+(��LfU׀��&�*k ��71�UUY\^�dVE
�s�:&��S�\��ɬ�8c�ULN����&����W0y"O?��|O?�/erO?�/a�y��<�ɓx��<�����sy�3y��lf�<�\>����<�\�����s�C&O����L�����`�T�~.a�4��o����x���:�/����n&_���嗘<����╯�\�Tv/��bO��kW�#_�YN�5�;��P��l��ػ��c����Ű�g5�쭤�ő7��������
�^�vr���k���v��z��,���G\w ��y��y�}'��qG����awS=�<��%�i�	�d/{t���K$��3��)���	wd���,�Q�sݑk���[�ewe�5�'�,�.*�Tg;�"u�n��*w���h&��~[���lm�O������'�����7dW*�[Ao�b򿦽(�F����o��Rqo�!��x�c����jM�ص��7��=+z%��V�c���?s?�n�fol!_��[k&ޱ���v��y�����󺣯}MɌ�5ZE�����{�fz"�.)���v�
+ț-c������~;E-����RE�s@���[G�>za�HA�O�
1468
+��H/U?"��3��Nڲȗ�Wf��K�⍒��?9��,j_�A���
�%��i����Ş����Ht��x/�_�eCva����,�ӣ�������;r��c�
�������,���D>�t���=E�pb8�+5��V���c���vw!�FI{E���軪V�E�,2����/�b�(r�,��=�Y�XuݒM�nT��Sz��9�^�2���8��H��>�?��M��sz����V�1�Oځl*l�F��;w����=�����w�,Kҋ�C'�G�w����o��I�PyA[
1`��4���hJҾ@jQ
1469
+2ŕ�&���$H��=��9��9��M����C���B�@t"�`j�S@� ��9�ݗ�!�}�}��i�{�{ι��{��(�8~����Ϲ�i�Vc�q+���p�>�|��eoh��7���p��M������]��hA@d�ku�+����"�+�����ڎL��z�8�fn���(���Br~�|B!�\
��@�~0R��7Dqw��T��?��fL�q��E@�݃I��lU<u��i'��qĮߢ�Jך�-]�9:�VN��hB�i8�.T�E���B��\h��=doӲ7X�7ޡX.T�j޺�8ئ�B�?��%�~��\�Uř��Z��%�G-<Ca�C.�N�#�n�X�C�]w��x��.'�5��q�y�)��ϐ��iI��x�
1470
+s�T��:���1� �cP���4�.3p�L
�2Q�9G�J!�Q>}%�0�Yz�nβ�z���[`o '��;�(A�ԅ��%r��%rNΠZ�$h�
�#̦j�V�a�]����mmҚO��pnc�����8�.�A��)����zk졒�P�4�퀒��	�
��j�0SU
���*rk��	���
1471
+�)��PE{���n*�h+�o|z��҅'�F��~�f�P����dvh*M�fT%hLw�������7��:>
�:V��;��f��3���3��}iD�+m �B������w��q�,�0?���!�"�)
�=3�*�-*�%4`�����s�Ü#µ}��>���ɀ*�96���od�J9�F�(��/��[*�(���	�}�/8����
����}�pXک�%�����`+h���CCu����6���n)J��%�.�dhFa����x��?j�=��y�����:�کxA,{���D��6^�)�Z�2�*"�`��
1472
+�튃ᶓ0�� 2�^P@-5��1�����T��.G��8�
��x�0<�=�"�ѻ��?o� 궃���'ᦒ�
1473
+GsNJT����CW7�>�(}�k
1474
+�x�V!]k����ˀ�1�ʮ<�@�Y��+���S�ϧ
1475
+�LFP=�sw�U�j^	�[�|��=��p�36����n�����w��v&���mZK��ۖJ+���p{�*xSl-0A2�O�m������-�e��>��I���6�$��wZ@G6Gt�?�$`�(`��E����Mo�[�?K$�V�m� �}�m*'�}���-��!%��M
1476
+���mڦ�3v
1477
+����M�S�PD�M��&�=B�ˡ�9�s�p�fU
1478
+���z8*G%{�m>�.��Դ��a��R�p���Pm�'s,�$���_���
1479
++��C;��*B�ڈ��h�z���.a�)�����/��k�~�y�D�DB��q	Z���%ő
1480
+��]!BJ�VXi���.��J'<�FZ3_`�Hw�J��΢�T��WW�g�E�ъ�0�m�#�f勩T�#!3���2�,Ld2��YW!M�g��]�<C��4ՇAO
1481
+;4I{ET{�	�+U_��{��0LwV#)�Ezy"=����m��|=
��M�'��C]�ꏈ�'���z$���ЃN(s�AQ��q*j��*�k��"��]n@w��Y��r��\�꘠i��6��E��P
�4�Vy
N)v�{��~���3V`;n."��(7|���Α��W��^�!��F�b��TmX�6����	ܚ��Z�u����p�h�؇N� \���7�TW,��Y�P�׉e�ܨ�3�վ�����J�$^GL��H��,��PӸ��M+���F�e�س��"�Y�sp��G�P�6��&����	���N�q�t-!`���Eل�#�\O�
1482
+���i�o?N��Q��֑+��r+��q36�v�=��A�ឣ��<U�i�U �9���JgB�n:t��`�.֫n�K��C��qj��1�m_B��U�b#@�p�6�����؁��8���%��/��gCU
1483
+�t��i,����|�æ��ʟ�ݔ4>�%�vv�Cpܨ�J�Z�fȖ�%�eק���jn��(�u-Ť]P�&����Ld��x_�}���UY�Aѭ�$�C��,�APt�õ�;p5�g{��O��ps0�e����CജР�6�
1484
+�n��*�m\�򠊛�&�'q+.�o,L���p�r��왠
1485
+���L�<־S�'�*2����O��^��6XT��2��}�}��	�)����4Ѐz�n�zx��}�u�b]p�j�3H��8ӎ@'<�ow���5PA�%T�L�޳0!�B�n������#t��m�3l���=��{(��U�gUl���Yy�%T�4C�,�6���
}T!�	�g�U��b�;�iV~ P{�T4h� `	
1486
+�f�F�8�̹�f�������	1=��s��y+T�]P0�!����6�ߪ�Qq�NPm2~l����wBW��][JvTl��j���t�V�����"Gu�@=᜶=y�J�0
���r�O�Οr��-�u	�Oϵ��s�Ӆ�0�,�̪���t�4�Y?h�`Ω*C�����1���Mqdd5w.�q�C3�e�8aB.yTrC��1�ܔ��M���p��t"�.|����<��Ú�{k�
�����`ߞ�6h�*������T���� �j3\	%�L%׳M��i�z�k�����~L?��X'd�Un��zȴ�m����:�(�Χ��ml�(;�S���}5�j�Y�о~�G���v�L��m�*AH#�*��e���U`
��1�r�ɂ"쌉@x��R���X�'��%�}u���
��\{��J�̋37�`j�$���j��t�?#\�M���U{cJh��X���0��E�P��w���
1487
+v�.2�t�&2�!ǹ75�ƾH##���*���̀E�{h��sn>��0dg�V9�o���z�0���’[z+�!�X�!�U����6�3�)��a�g�]��cb�g[ՠ
1488
+��F��AM��Y��p��
1489
+_2��jυ�KA�Pp�dS`w�p~{��t�mvEĩ�+*W*:�#��a�@�
1490
+����nf3����ם�6�Yv�]~;P�,*��p�B(Yg5-ѝc��`��>�Ci"}�h�0d��4�@�+���H�]&�j��IzMo>�I+ ����g��"Ma�F���$X9a!L��?Wf*�G�`=
�U��MI���"Nw:�
�i�&���j
\	KC֒٦2
fUXaѳ�Wb��Pk�#�,�#q,t�U�P����2Q�К3��&�T"#h^0��u�Y�߷�zX�ip�d
1491
+����u0��k�[��T���J[�~%ݏqd���Q�H�]㈲u�lq›���U�8d}�9��D�6-U��:�2�'��D+��Tp�$nu@9��e�C	�㤲4��B�ʯ؈�+M��zhD(~ȝ�d�r^(�-�S�9f��Y��4B9��m����v�6*�5H۟{�T�K�i%�5!�IQ������E�����)�I�M>�vQ�-��^L�`X��Gsq^��~OD����z�k@��HtkH5�3�JG��
1492
+���US�%hM��&\_�;��a+7�UǍ[��X9h�pm�v�C8��|��Ƣ�s����6��]��@���p�<+.���N�Y�g�q�i��<7�U�	b�D��`!B¯$<��go��sS��SK�:D�[���ASB%c9�����-i)2VŠ����Ϲ �{m=�j7�+/�Hx�+�%"oMW����U�,�T	��{*�t�bz�m*$��[$��٪c�J��\�f�#ER�)@^Z�v��Ӯ�����eA�B��O�Y%��{P�X�W~}�5Y'2�)�\���H	S`�Fb��%���*xk�w��k�w?�Mx���N���,��}cPW���۠y��s�K�K��?.U�s_'V�dh/Q���G�W�~�=@
�z.vű�;�&��1��<%6������Bl8O�v�MU�P��
�����a;0�J����@=e�X�k!��G7���
1493
+K�{ʄ�_�.�Mp���*�4V����~��&_ɧ��n�G�~�O�e�����j� ��(;�ٟ=m"1��h'%� u� ?����F�����N8���3T�KS?2|�63�HS���S�!+�Ґ�;���Q��|���l��<:v���̰���*܍v<mfb۱��Vɫ0ld����к���?�jq��lS%�i�.*U�f��h_�Żt����
1494
+{�e��R�S��p�2O�Qo"{��o�aAǂ/r½P�oq�Ť�Š��d�g�~�:�%�soL��8�PϮZE�\f�$���(��p����e
�E�	՝���0]���f�zP���,A��H#8=:*Qd4m]�DW��ៜNX/����~@2.tuO\���G`�,\���P?K�b�]G-�G��3N&�]V�~\]8B�4�����������j��$k�hO`z9a@���aç(��+Qj�K���p�㎉�*Y�-N��^��%��,�~#������QEY-�a`fr`��~��(����z���S�멗�QY�d���HSF�nL�`|�lܐ�6�4�N��Ⱥ�	ܹI�6S+�T<x^�6-��<�Н�,��p4<dŃ5�ڐ���A1���iPH�i����s��_%M���э�c{a�a�F�k�!6��f~+و0�Nv"�!�?�a1me�^��E�c��*vXL�V>�2�^D'ًh���P5�E�r�E(��v�a��Y��H�'b�r�v#>��ߌ/Ą�<����9��0���W��]S����FP�/[�qKv�4a��<X+��?!Vb|���F���IW�1�œ��!���NhؑH�O��o��19�P�9��.G�yKA�t@?�����B�P�tjsd,��������XK�V��Z��LmK��Q��t6�vM�+��M�	9�N��]]�=��r�ڶt
��6�Zh���E{a��GMF潷
��b�3���W"��Jo!GyB�E���X���'����;�U�*��F�k\��)�,��z�;��e�� `q�
-��7�V����}nZ-���0��@��mϽ�h7��B��P�´q�B�R�G���<�k�����F�W����*��F���(������d%�I�8�H�0���f�ᬑ$wWQ�~�x�%���{�H��p6�� Pl?x���篨�������!������!!��6����շ�_9W��g\[���-��
1495
+�cp��m�OG�����P>�����|�O�x�*Dx�C��8|3j�W�(n�pJ\K���06����;��u������ ����Ln�q�o5�R�}��bs��tiP��!�@���}�F<�M��~����7��B�V~����Rz���ήz��ח���d���,��j�(��Zg�-��^sp��Ɨ�tb��`6m
1496
+����!�Փ�G(�"�*W�`b�&+pl�3�ȉ7-7)�:q�<Dp���:�g�h��\+~�$IǗ�o�H^$�	�f����]9�h��
zTSHŃZ��28�QM�Y�թ�쒺1}�{��6cL�J���>�֛��8�a��Gئ�/�����;	���ͧ���8Ǒ��=\�PX�����-�KK��S�ф�W�s��qKi)y�h%���S�fl����Ȧ��s���בzW�bW�t4q��&N#��G��P׏ �z���i�����i,�#p�B�v�qv�8N�`�|X���ͺ���"N,�u����͇��$�O�R�5�]�zK?bi�������=�Qǁ�T+��m��ɀS>�x�	���O��
1497
+�*K�7e�� �����}`�'գ����]�|��*�%�C�5,�̠�I�	,�5��/��EHĀ�o��4�E��<��p�.���e(~e6��D�V|��S2X��"�8r�귀p�6����ب��X
�=�{? S�1���>���@62u�iAm��(I�aT��!w�Y���뻺oϳ�/�g@;2W��f�'���h�*�G���N���X��T�(`��M�֗5EH[%z�ٜ��|�
1498
+2^�;�C6h	Vӡ���[:�>�>�F��󻡱�'��`�gp�yS4b�
1499
+�ބ��[C%���=P�J"D%��ą
1500
+�&��ln��L[�qvd�qv`����'���T���x�zp�ژHb��wv�)���y���Oto�;/��u�����Ud��p}��'H�k��!��È"����{h{����������`{燑fqg'��{�.|�x}^�u���j�0�>��Su����1�3�}d`־"� �v��;i{�jhYT�
�?A�ϗ�ܲ-�>��ū�xUd��w�j9^mī���j��4H|Gv�N�]��0�'/p~>���j�NjOg�Ȑ�N���E��ġs�=���﯒��T�}����H���3w
��{��:1��b�#kx]���}#��{�s��p��_���G�N���Z�s����~�O���}�����w6��6��.��k��=������3�~�_��6.�7�_��o����}�F�ߩ�mt���߫x��
8��O�$���au��� ��N��z C�0}�3��/�_��Y�4H���M$�B54zN�/W_28]��?G|�CQ��g#P�E��.o�Q�TW
1501
+��{=��(�\}�E���k=󜐷އ� 
g���~},?uSQ������ހ�!�w;��-I��
1502
+���V^.���5C�ɣ>���Xo$�sA����q1!�:ջ��m��bF�4Pˆ�ba铉��ѯՂ��<�w���h�_O>��_�S�$<���~�\(r�.�(�'~J/ַ>�宝�U����᫝�,�w�p�/��z���xU���Yg"C0�zF��˔x&2E�z��K�<��q3%��pW�P�?����*T?��n M�|�w�pj���^3<ol]���� ,�
1503
+���I����諦2�Q
�(�j�����L����q-��\�6>L�W��H$C�{0����90?*������Ր��n�̆�u��`��x?����>�DAz�H�Hg�D�G��H��DJ�H-�t���D"�@��X$�.�rND"�aȩHd��@�0��ӑ�H߅��K`�)PH�A�>���t��Hd?��!=i�ב��O��A��3�EZ�u�}5��7�X�0��;6K_��Mk:�@���@}i�����Ж�Ma�ߧY�L<~���.�㔮����(�b�^�.��ܟ��kX�ۧ.�}0�澍�w�%��J��Ӵ
1504
+�Э�T�uuY�]�!�r�U�".kQ_�`Όd�{�$�7�l���f�yj4p���;Q�������y��툸����4Xn|��%���ۚ"��e��Q��c��4Pw��6�h�*�e@C�{�C�W�x��@K�e$"}�Q$�ݝ�|s����budIB����V��m���~���X�ϳp)ڄ�b~�)?Kby��#-Ȭ;�U^�컕�TC�C�z�t-�^m���������?�{i��(����3�h�����Jwb�^��_�ǏG"���T�O�i�y/0m�Ȉ~72��l�_Q�!e��1���p�V�򕞈��V�A����|�-�厏�<Y�뜧��H�Z�o0.�Z��-yD.ްE��R�\�hóh��{۱_���*��������6�H����J�mc	����F�l�F��g��H��h���h76і�tEZ�r��+fh�b�f�(��b
1505
+�����_+~�C��I>&�*�Ti��Ve&�O�k�t_B�%���}ԗ��&�pO�%�-�8:k�N��G�5-�_��W���!�G�y�J*_r��$�E�XR��*wNZl��0��)�_���臇��\\��_.���~��Oړ�?.�7��o9Mg��EӅ4}��O��74}���i���iz��}��54Aӱ4-��L��h�����	������t3Mw�� MOѴ�U�?MG�t,M�i:����b��v���3���c���g7<d6��H�˔�,��x�saI��q��y��Ս�+�����[�s6�F/*;�vn�(�"�L�V<��>�x��H�ˋ�.��^�w���b#3�V\�L��1���_�t�E!R�’^��:!��kJǨF���˒w�M�I0�$	������uM�o'��%p$�x�VG��=��q�S#��Ǒ�]
1506
+��q`��T��.Q.�<'��K�D?��"�p
y�b��〴�v�� ����Q]K��R�D�=I�*"� &�6q\��\gD�;鷒ґ�s鷊�_?�����O�N��Q�H�V����n
1507
+_C�c��i
1508
+*�0>/�?a*��e�7)P���}S.��T�F�mt<��Vϼh|�F�����q�@��t<�O�=�����ޢ�R��|-D|%�Q?~��j�i_��r~2e�/Jr����7���$�~[)�KD�o)�c9����JG��+�/�%��}�"��$�����RR=���3:�*O�~>�Y^���JN�<e�߆�ʁ�T�.J�(I�{���"6Q9�L���ߟ�_�t�J�~'I���o���)oD�U�av�O��4��e4�����R��&�km�4
1509
+SH���+
1510
+�,Cg���A�_�X�|!-�~)��G*g+�SrC=D����Eۉ��.��w�q��ړ}�D���!T��ǰ�������!	>Q�N���ʳ�X��W�'��X��_��2�ϫ�~W�ԯ_���J�YC���)�C
1511
+�C嬕�/C�K�w~R?N����32t��E:���\����(���ȍW���K�����]Z?Qx�!�}��2~h�<�$}Γ��_�#��D~w�I\W�*��U�O~��ߐ$Z��}R���>"�EIt�2t,}����§S�Z��>��(}.ُ���o�255������c�M+,>�9.�L����ƿ��z�>�P�E��sk�5u~o���6��qx4��~g]n^j��X����߸�,�,XY��jbQ�(*9���>�{��zo�~a���q8sk���lݵs�n_U#H��u���w��i'���"��=	�D���Ք�n���Xo���05��2�����|�����\f���[͕�ɀ��+G�p�ۉB�3D�o~��oGo��ro��c�'��ިa*b�P
��L�Z�]�����xߵ~���m��9A��������^�WB~�EoB���y�"�c
��ϗʓpM���r{k�j\���8�E׽IN��7�,�����z�������qޓ/�͜�iq���7&�B�L�0'���&���̯�Թ���D
�!8��@��Og�8��V�����|���K�'j.A�D�δ�$�55Օ�i��&�ƹ1F��	"��Mz@b�K�,
j�ņ��>���T��w�.J���;��h���6��p8E�r��4��lQg܍T�'���$�E�Ȫ,N+�BIF%�J��#��.��NUQ7�\���aE�wG�5�^NMC��z�N ��4��Z�W9��tb��h�	��E��	���7�I��&׷x��'E���ɜ�
���e�Q8P�ό�:�H,1���$��"^�$��ŕa�!��5�D�ݱ�&�}i������x*�}�Ľ�ğ-)���ͯ���w0�q���$�}d�e�J�/��ppQ���q�Ꙥ8��<gm���9���$�!��KF��iI�'�!\�$�!��c��
q�>�����8��OO���d�I���P:O*�x�ԇ�9%���%��I8g���g���i~=�?-I��q_H�/�5�Iy`T�����$&�QN�W��o,ޒ��U������Bt��oMʟg-�)ݏP_����$�!���L��G�3&1�����2�w3�q��h~)nTߤ|��bc�I�>�J��d�g��K��a����*���}�m��+�~h�q�} �?����q�������;9��4�#�K��H�߰|�(���S�O�e�q���I���S��l�`R�A�>�o�si���_���K�(���0�c]m�=�{��x|C�DZ��h�ǂ|���X�g�.���O.���	��E�X�����4���^n�����IRz��{�NJ/7�㺤��o�7��:���w)޻I�����_��N���3��E5;�\����������o��x��vq#'sN�A�9��e�C���_+�?V�8���N�e�ge��e���G9A�&�/Sށ2�we������П!#�Q��_0�.�[���M2����2�/��-�q�R:92�&Cg�R�\��K.j`��yƼKE�$[�>c}��F�s�v��]~����s&��$���dBN��4yqIz�$J��;���&Q(ܰ�����	w�K��$`�ƃ[�� PJ��{_m���+/\�B�1.R
1512
+��.�;���F�����L��"�R��>5%ƭTF�Q��ۄ�h�Ju�
1513
+�}`�8�s5��^E�Y"�*j���O��W��'�2�H�?�b��ů|P�m	;��x�L�w�&��3�yS�$.��H_C�#�'�����.���ǻ����Ż�%�p|�R�?�7Ļ��C�H&�r�8���\-�I�8�kd�`����y9�.�㨶���"s�L̏d�`��ǻ�����f����<;���G^�:���������R~r��'�'�O�R~r���Lʏ.����cb�_�kSJK��]�1�O܊Cx�q�Z�+-%^���jD�+{1��b)�[�ÿ�'	J{x'FJ|:�]������&
��ꀛ�����d9�'�W೭��KJ��M��s��|2�,>צ�.|r��.K��
����϶$=�H�����e|e�/��>��*�'%����j�2�Hf^�KI����҄�`(�lF���J�}�@�A�I��;׫����Хά��cf���<��<5��oq�0`[nm�J[��I(8�?z�jOr��>��N�ǝ�2GY�+�fj��Տ��d����,?��GkcVƢ]QE�VdUlX���+���Yi���ޓ�#$�
g��+�L�u�����x��k�]:�9vS	�E���&�>������J~��XrH+1b��Z������ҋ�X�O++�2<�-�W#24���%�
�I�g��Kc�e�e�)l8½�<���6<D�3�ɮܑHy�K�1��B�]��'�dZ��<�\S8�%�"�
G�z$w�!��b�W?�E�`Wb��;�	LX%;d�z$�x;�1��,��NwCk:����-N�)�۹�u[!��H=�&1(�r��]�`��B�#�l4c���?�80�[VTb�F��`4�aK3�ʴ�leF�g��5��+��r�Q���帥r����ӐM�,�7|��x�I��9��?yN�����$Z�݉�~w��U���� I0���0f�E��\Nܝ�D�<��{-����.�M�1�r���<w�;�:�^W�Џ��,��!�^�}��f?�&��"WL��1�k,�r�\=��R�0�ՠG\n�v<-��ep@�0K�y�E�:���#j�8�<G�13��-�Rʤ��x8	2\R�	�F&.W��v!��3<�AE"1�؟��Da�����+^d���,25�33�c�`�(�����&��^(�:m��Lnc)��#IY��D���P����ip���%L%62�����س�b��I�l��5m��
��]ay<=��; c��s��EY�HR�Y�0��YɅ+�*���2��c[�<Ń^�"�6D��&�V�
1514
+BvI�y� 7
oBi��S���K�5;}�u:�uz4:�bȰ3�0*`V!��)d4_����*�C,zi�ا<�!OL1{:���*�tmJ;�-3���QUQ���V��1`����X���͊��6���]�i���e(�Ș������p��6�N�n(�!�
����)LA��F8Fʜ�p��;� ��eB��|��7��X�r����U�M�e�/{�����
1515
+���
1516
+7—����M�e/�1�����lL|�|��cx.Pa,��AD�RL�\�W�.#��r<Va�h�o�[V`��E�-A�+[>�eH� ����� 8�Q�	�Y�
�'{T�m\U�	�B2����A��l͖00�l)���{u$�a&g2�atȿ|C��i���Kt��Y$�X�2���m�ˇ1����k7x�k�J�$B���Z�t�M^܏\�Z�q� H��\*p[z�j1���]]��{gj�t0t�CP}��#���P�E�����˗�s���@<ģ*��O�#�%ȝ�$�.���覵�]��+x�j�;4�ݛ��o�c�C����?�S��F�+f�ڌ��hw�q{��_�į�N�������^w� ��S8�+8���Dz��+�
�I;/�1���8�գ�ģ������m0݂���ܾnuG)7���#��N���V�姠.��w�t�<�zN�"�έ�����bT޽H+!B�����E3�>�v�}B7@2-�zZ�@/ *��I4آ�р���L�����,����9�a�ˢ6����5n�%alO����� Ņ�`qh�ׁ��>��?�wԶ��*�!t@p���(P@���x(�!\h7��@� 
1517
+į��"8�`Q*)� ��r(��-1�=��G�+W�(�S���ʜe��6�16I���&T�+��z	��v�lģv^��6��7���񇯺R�����`m�`��o�2C���p�^\@z�+��蕜�t�]t�j�/��T���?��U9�o$N(���{9�P����|��T+��U�7=�&��X|TS�Y�p��a��}�r/���gz\���
1518
+�����΋`�^�̉�k���Q^��Z��AȎK�;��_�Q��1���1�i��TP#\b�+C �yq�����3V���Lu��8*��Η#�x�#�$B}�eA��{�#=�&N^٠r���E��4_��M�8c�z9R���q��\o1P3�&���GV���.��(}@���|�TgO)P�_f�SI�c�%�{�*����'V����`
T�g�����QxKQV!g��C �t�tf�X�2P������鎌��G�^����\�HUF��O)&H��Fv�\c�D#�5<'�&�#����Ԣ��*�gG����l%�����QL�d<7Fx-'%�K�ő+���TX)�)��	�Ʉ�>��@���[aLo����▖#\�Tl��r��c}������qa��5?7��]x��U�M_�n�#�w����4v\����^��.J\:�v�$�#K��!�i_��@~35��-�M/Zm<)[ȄY���9��̈�m��<&o��ȇ�0Zc���&՛�����.u6��O�cT�r�ô.Y���N��Fd�x�3��p�#1!ꕀ��L}?�d%�0�81X,C���kC�1Ri/c���a���3Fj��L9i2��:�����0`$�a#��2t�xɦ��,�˱>]�(.�{�k���|�_h:k(�^�0�w�Ts� 瘸D���\���%�	�f3���d�^|=��3z���k3��5B�(�����Q�o7�Nm��P��ݣƁlg?��
�<~5z�`�U:V�<g<����?����;B�	�)�֪�>���3X�VcKz 4���fO*����r�2Ǿ�؎Y;y����c��s�\��u�=�<��|߹p��Yi�b	�7�p��s	���F�~�*���s�M�`�$*�Lo_9�?���H	��޺L}F�a�!A��0h�M�8�
1519
+⹏U�U2�`�9Nמ������z}Cڐ�l>G��[1i;R���=����!G3'�w�=�f�J�Ĉ&�f�$�'
��O���P4�7)q.y�
1520
+[}���F�����!x�`�����{��Wu��j��M�������ϻT���8��?����<�r��;������d�	����K��'jv���ޢ��˸y��r��B�-/8H_����:��ńi.y��O��Ú��F(�5DZR�4��ӺDVb�~ķ_�L̛f�!����(��K�9��u=�u�B]�����c*���{
̋���z�:AIBa�vtң R&p;zM�<����A0O�����$��{���j/�qB��U���TT�rP=Z!'���$c=vdǪ��:Q	K&5��t,���Y4���n�އ%�Y�SʮV���
���+�j�h�����E���	*�~�go0�
�W�
1521
+�8v�x],�>M}�e�+�Kl"�J��眰O��u�t���>��i��*�,`��b����V:��Pg��_��F�>
!(R���M;�ڼr��a ��l~�Tdh��}�j͜La0u�o�D��:ZB�?���<E'C�gq�Ɋێ��<4O�͖�!���#MB)��1�.��tuzAu�'�*�ϐ�C�T��p��ے?�nG/��=Y��`d��V����B�L�J�	�v�۰{�[�
1522
+�H,U���N��T����s��l��^24�`(��c��d�
��O��`��v���֖�*�]�̦4J�ca��K���Ty�(r�&�|��gŲ�ji�_����?�`��J�ng�A,b��1/*�$.�;ɷ�+��D Fr��Z{n_H����h��~T�(������.��B��fQC���']�'l��aPk
�Vq�fA�з_A���b�1��%�9��nɈ�^�U���A���Kάs0td�ȸm���2"y�8v\58E�Ə��O�R®������J��j�p�.!����0��tQ����I���/�c��a�z4���o�Xf���1�0���k���<T�d�!�__j���/m޹4+L���9U�ɫ�%&���$�#�N#�˅����)]�7��Q����	�~��\�y!�r`�ϰ�/�u��4i%_��Y+���ۀ�H��j�F/�-M�����e��iFu�v���R@d+W{��b��!�����ui�U��'Я�x����<4Ù�Ȇ}�������x�?�Wm��0�
�<b��̈́��n1�+g3O���f�(�jlm�cq�XJ(��u��=b/(��a�PNw���
1523
+��Q�B���[��QZ�8k��6D\b$81����<3��ݬ&�n���+vE��X���h�M �e�ӭ��-j./�zů�������6e[7s�%���5.��.�z��'��]��P�eܥp���+��'���
1524
+A`Ѧ�8^<^�U��:E֮���)A���A�Z8r'b��:��%����A)��둒,ܜ �
1525
+�*���a�6���?݉�0X��,��'Hϫh��\ʍ���i��;�]�x��>x�7����:���+`u�(tA�,���\�!�ܮ�'=�>YpɕzwJ�-ޢNO��I8���7l����8�#۝҇�|�8l�wܪ��!�տ�RrE">��L�&=��M����K��_��*v�h�ݠ�<q�/
��/u(���}�8u���w��}-�c�L<��3�L<��3�L<��3�z��4�m3g��̜_��J�a^�ny��f�
1526
+�li�ic@��yYB��!���DYu��Hu�{嵵�K6��E2�3�W�x�C���5���M�W�����j]6F�۰��?C��n�v�`�����}o�gK�T`�)��3��袳a=Z�y�����r#F�3�l�dU���fFL=�����0Zdm9Cף2���a*+�����Lɭ(�yA&��o8v���!�f	��8��5go��(��J����]m�\Q\R��x���S�n�M�-Ls,����ڛ�����_t��qڕݴ]zZ��E���i��ƛo 2+f,����X��6U��M*1�nD���梊���[�s�显#�_U��
*��+c���W�ٴ��Yp���\��YF�\}j�7=c~�
1527
+��RR]��'{b��b�b��%3�KS�kX��%e,ل�&/�}-��2eJAE��l��\UeU�Φ�9{l�1|��f���Dž_���S�`?��B��Ij�Y������m������N���~u�g7$�Xz췕K����W_�烥W�p����s�V�e]]He�.-5j��Zy ��ok鯵�LK;��Z<�pލ0xa�g�
1528
+,C���o���*�0`X�#�*�2�L�(�Ǻ���R�õ혪>�X����QHwC���j2���TɵR��o�VU#L�}H1���bܐίTu���a\{��ü 5czNU�!�
�vH�!Um�_R�¼�u~�����j&�W3�CUo������a7����ƿtMm�O*������d4=q���p%��k��w�������a_��t��_n���
1529
+c#"�@�F�K�yůp���|�z�.��;Zߊ�]�I�`}������ـ7U�	�&m!���8�1`��iEf)���	���UQZۄvm�IQmA�����<�<��㪻��>�:�(��*��P~R
1530
+����}��4Is��ό��<Os�}�;�?��s��b����~
1531
+K'1�+<��D�|�í��7�~��闋}
��?��`�q>h�6�ָ�ڬ�:�fT#hvc�gF�}ƈD��<B�i��P
1532
+�lE'�/�R�^�i	eDƤB�!dȩױ��6����V�#���J�P+�B�U�׎c��_�^�r�vu�s���1p�@�T�(��	�0�=b�_��`g�1�6]c��~?�A[�we�Uq���1k�8v��0��K=�o���BsB還BSB�
?Kg$�%f$�N��,Ț9�ВPJ�
1533
+sJ�@~r��C�`2�'����Fήs��	�6Img�s�s���˯���b@)�!�v�c�;�|p�Y��,ˌP�fG_�R�=a��S!q�hC&1��W�9��s��ܘ��SQ�u8w�a2L=�0O�BǁcL�`�'A}���C� {H�:��s����0��0ye��B�q_7�G�x&_�G���"���ߒ�X�
�19��o����h�*�Q͇�<�?���\į+��_���(�o���}Y;�c����~����	R�Om��6
<��C�6�_W6&��i����	R-��^��>�wÇ�I�\Gε+�4�ǟ�~�Afs=��
1534
+]���p��B�//p�ğ�s�;\�N��'�|~�����y��3�K�^�+����CB�����a|��0��XMd��<��a��i"�-�x�
1535
+�I^�ѹ/D�I���oO�=ΓT�U��]���r���T9f�>ճz�
1536
+��;�y�氾ܨ���y~7j{w^����*�7���fs�aC2ӿ�;胂x���y<�7�x�A��H��ƹ����?�s
1537
+����?�iI��:^����}���q��
%8���D.�]{�@�:�@���A����Nu?[��\*��y�r>���z���.8��8�[���K�������i6Ͽ��~���%�ϋe�HkX=
1538
+���v�QL�Ў�Hs��O�\�qL�����
1539
+����}|�a�x�~r+Wx�3�s9/1��G�G���y~�?>�r���Y.�4����@�6�%�
}�*��T�?'��	x��D�ϣ8�PR�F\?A�l��x�?�ް;q��
1540
+���%���<ףA@<|4�霿��U����(�_���X�wZ7�c�K�]�t�B*�Be5�ip�"��;�)F<��A�KJ�AǞN�풫�,��Zb~�=�Q[Q�=����P{h#~>���K�I9�����R���H��yo1��������})�
M�$�(:��{O�x;3�"�k��Q�^�i�O8��0
1541
+�xQ{�Y�4|#�b�D:ͺS��3�E�D޷(7�E�gN�QA�����tHݙ�:�%�ѳ�X
1542
+�Q��_s�J�/�P��~�'�C���N��BT��C���1��#',��q�F�bd]���{Ρ�����=���M��C߳��8�k{�9T����E��������«�>��R�2Q�����u������t�~8���KS��颜�.��s��KΡ�/`���Cu��<��N�94K�a�7��pΡ4'r��r�rΡ�����S�၇���7����_$�C�9J��.7���
1543
+�;w��&L�]�|���ۥԴ	��G�	'�Ս0����;����|�K����}]o��?Q�=�Y�<�^{�{�����)�oy&���4�\���K�o�����}���}^�Mg��e���2����Q�kQ�!y�u��A�_z�G������&���^r�2�����%�_'�?(���Kn�4����/P���>]��D�`��QA<�A<C����z��E��C�;.���7Q��bA<e�x.�]`R`?L��G����ύa�����n�=e�9K�.�~UƩsΒ���%�U����(>�9�;��u���&]�g.Y<�݅{���tt���e%`�Nԋ���!5X�#�`$�O&�N{�}���W��δu�ޘ�A-o/++)sI�r�@S
1544
+Ɂ��@��"�Y�p��7�v�	�x=�A
1545
+cN����ؘ?���<�>n ���
0ca�lb�|����/���-�X��c�=��C!�1A���cA|@����$�`_�%�7�%����V��̋�s،A��`�Xn�+�ֿ\���������\�W0���
1546
+F]�E]�E]�E]�E]�E]�E]�Eݏ��.����ЦZ]�I�	�@��g
1547
+��G�\�^�
~⿣�[w�u$o��ߦ6V��ʸU׸��7�����ב�;�qk�q-ɯ��[r��I~e܎h,%��Q�-��\��A���I^�2n�5I.C��SI�%ʸ�֨'��qk�1��P�-�F:Ll�=(�VZc��(OG9��Or���$OB�*?ɷ��*?ɣP@�'y8�7R�I��@*?�7�<��Or?����$kQ�)���+w�<��Or+�C��$�Fy(���c(�D�'�s�F�'�囩��Pޅ���Or
�è�$oDy8���wP���O�(��$��T~�_A�V*�5�7mx5�(m��T��\ش
$"�,!"�n}Z���	l?q�G�>�����6�x<���_#�m���T6�����[�fc�5��������q��s?�+[|/���6��31�Z_"2�������=�����;iU���D�%�!�Q6ʼn�("��CJ��GNC�/#���b'q��5���y
�R�T�,W�W�G�������;��oF�'s%�`�9���/�Pu+T�Jk�+��h���yR}��!����v"VUN"����R~�O���>����5$dl#t�Dftp2��ѯ�3N.�Εf�{m�w��5��~5���d*zm�f�!�Du{��l7F#�<R������D_};�ؤ���_jyn���(G-J�M�d��
wd�W�}���g���$�iZ �� �gdgN�M9��P�Y0M`1���}S���ŵb��H+`�؎��}�o�&�^��[���bB0�9������ �ƩЙ6'e�IZ���U22����A��iǶ��T�����n8򲏧w��6/���6�x�F��6v��6v��b����=�g�l�@�8�zJ'�K��^ե�A�B�׈{;Ǫ�'��+Pu��q�X��r�U����ߞ�oU���I�W/��(�K2�B�u�z�)���B���U�`�e�=��(�C��������Lt�ck6P�^��-ՕU�A�O~�F��K���w�m�r��ҾTV�9�o����uK�ƚ_�tJ��{�)G��C`V���kl��~4�p|�_!����j��5��@�� -v���Ť\P@?��6IA���l�9BR���Jf�Oz��a��w"ۢ�¨��Yݬ�����fy�n�\܄�^:`���GD�MmP�#!��a�K����C�6jq�8َ��ψ��Eh�ү$��8�1���p��Qd�+���1�_?o0�ˎ���t�$��4J�Y+���Bv�ԝ7�'k�~c�K�ϝ��'���$_��z��8�-ZPϮU�GZ�\[�F�)|�s�Gj!�M5��P�V�Vd�X�M)��x�ՖߐU}B�a6[f���ș��*�������m��(�1�&P�E�)HkE�v��kN?�ld��cVvt27ə5�y��;M�UQ�K���-ū[��g��t�V�8FeV�i�eE�c�!'˦���駵t3�6���v��-J̚&��5S5��_�S�Iۉ�	��l�Kz��g��繚�,��+�k���Y�M�i�ձ��כ���v�9}�\�dѤ�kz-x�w�}~ց�AN)���y�b�DZ��M�.��Ω^B3�{��a\��1��P-��P�Z*�E0��M9=��JJ���|�q
�`q�6�\w�QF�̻�Ä������p#GS�A���!T<���Z���u�0d�B�zk~5ԏC~��ꍅ��'���֊�5���L&���}��4�Lo�-i���~��Dւ�.�Wڄ�s��`�
I�&���Ah2nϢL�Vt��Ư8�.ɑ%_d8"\�1�B�k�e��C�``&oa�L�(ɷ�E1���N��c8bb���MD�������5�C��+�}L"H��'XAZ�č��mů�ǹ���<����Z(�͠Âfęe^�����;�$���R���X	��65�&����>qp���Z�����%�|�ճXg�,Άh�ڼ��
�y+9�4�)��YzZ��D��)�Uyװ�y��/��av����������AJL�S�K	��l%��=��WºM�=+���M�j"��OLϬ���?���!���Q�_$Ʋ���8�5ʱU�
�0{�$[��H7��-����б6�Y��d��f65lLE���ݖU���ɹ���\�&Z=����㓖j�{l��)a��'�f΀S��8�y���l^s�d#$���K,RW���
1548
+.��kH��c��X]IH�^BQ�`����f�@Ș/�<. ͆6d�G�$��T�ؔ�1k��C$�����N��I��۞������eՉ<�y��i��?����'+��Sv�4���w��y���M)��Ί��������h�X����Z���-/�����,��0,�~I�/�7����؟�4;����dy�fjʻ�g;�No�����e0���i� h$3uF���嚱����6�S�,��kK���&�Y�}z/�K=w^�*�j@��F�룮�S\�\˦��tS��Y+jA���"���������D.���r�^�T*`���aͅ��@��Vk_֗<�ݱ�׫���eƦ˦*�y�H�?n�öl[w�L3d1���f�c<F9E=�Kā²�jƼ�	�ié�*�
�5�g#�46���؜��ʇ�o�a�l�Ё�`�(�{b�>�g���~P��hX3ԳxlUmjI=O�QR�Y9'�
�>��zx���t/.�f)���H��J�Y�1'B$Ӡ��äqw2̵mHm_���q�y�2=ݬ�Y:[x�AN�. ���fS�x�{{����#{�'6C*�Ӹً_~3���i��E�=|�y�n��mY�Mi�)
��cqӽ��+���`��64!��{ �7�
����Ж�����c`�2��0�9��g0v���.�f����1)�p�֥��Cf�.�J�Q��~!<ZBMޡcM���,,��b��4�O ���ldgZ�wϢ���({
��qQX�X�|*���HN�
�OH-��l�My�z9Nl�{@d��	���sl�!�s�ȴ)�V^1�ی=��|
�;6�z�7�,V�)��+�.��kMY^�6���88q�i0��Fi¾֞Qy�i��#�c�������������������J�S�8���8����ҳ�"��IyxN������D�H��^��Ǔ��;�݅vn
1549
+���]O賱zn��t﫠<�����r����:'�x����{r�������Ap}Y����k��/FQZ�+I&}������B>Y�s���?��"�*�w�\xFʢ<g9iU�`B]jJD���"waWu�<}Μ� �!:FUK��R:(u�R����]h)&NBġ�o.s1r�kd=N��I��~F���@QJ���C���B2t-,r����B���
!G��2UbI��H�T]Q�x� %�B*�,HV�c�e$G)��
Y&f<J���X��B�$�1fb��+�5�Oe9�TW�6t
Sصe
1550
+r���AʺC~?>G���m�>��&�r��yW��~?n���ρ�N��x�{6\�p�=�;��/õ���?��i��G�a�g��hg�ڡ��9k��~��.8k˕yW��q'�y�s������i��0��p������Xs�X��x[�����m�#Òy���?A�:���jF��] ������"�'i
1551
+U����BY_��i���	k)�@BYL�R*���*-�%T���^�}>ݷ�򽧂.��v�B[�o�C� R�y�BA��ir�)����k���=3��ܙ9sg�߯�}
1552
+�fZk��	#�Q��?�qmI�5PdVA<����
1553
+C�T��]L�]��l�!�Y#�k����[���ό�EM�狊��Ґ�č1�֏"���nX�~Θ�ݪOd�v���k�z'H;hz����O���|k����B��P���\�ϯZs��K���5��� `�h*���z�}�]��u��6_��o����̮�z�0��+������.���IL�b���&gr��2�
1554
+�
L�e�(�g��3��뙼��[����,&�L.a�q&70�,��0��^&�2y��>�X�L��LNbr�~&�0�8��u�c/��?yyvxG�k�$��X�	y�ؘ���ϣΣ��󈬌W�(�n�Q�ړ���3���R��p��|�����1~��4��8�9�%�_��3���5��L�R�_��|z�>���|z�2?[5~^�%��k������9&un�D�]b>�˺�|z}���۩~2>�g�<9�=�0���(Na�=�L�=�fg�x��cg
1555
+'�]�B}�p)^V��L�s%s�o�������*9�~Co���o��99�E��9�e�*��_8�-��7%Q��<M;��ڽ��L�3dq��}��%G��.��S7���IR���G_���(��_n]�<~0_���g�x|����$����Or�F�㧍������'Ə������7����s&'�|濉�7�y�!N�*���8�猌��_�X�a6n�}�8~9���I#�������fp�Y�d�ޛ�x�/d�~�#�>WM��_�6������!i��k]�i����� �v�5?���ఝ9��ƀ��v�G�"�&��K�����	��rR�(*k���b�F�m�@�։ύ�=cz�-ˇ�� �r��!���-��-/���@��X�EJ�3ǽ�O���L�w�G����{�t������y�T����횤��_�릞��؁uOy����2f�5�ܺ;�n�95�����n�y�����n�EyVtq�	x�߉׍ٛ������0�ݜ����o�}�Y�.�=��W�u[��u�Z^�~�^�B�Z^�S������^^��yݦ���M�/�}M^7u??��k9���)��m�7�u��k�1^������+��&��F���t��u{���%�]�?���ڹT�Pxݺ�A�����z�޲��Mʸ�[NN���ܱ�鲲sn����|x�oY��q�E����g��'�*;�E�q2�������o)l�S�����㶜�.��vf���W������V��:��d��^BS�7����~�o����Ծ'�O8���w�n��ϕ���Qי��F�W��ۻ��f���}&��aN�"���?��{<��~=G�G���O��gG?���('�S}_�~=G����'�p�g8�����9�=����������G�����~�O='�>��C���-ZJ�غK����0�qxή�.!�Y"j��h?_�Ǿ���Y�Eb�s�.Z��FDgxzO�&h�b���S.-IZ�5$������,�_G�FN��^�r1˗�?-�8�[�JCR�\i����4�hzx�_ۙ��˕f��2Ds�w8��Y2᱌�5s�𠍉�5��iF��h�X޲X��X޲X��X޲X��X޲X��^�2�n�����#�����y�z?��'�ݓ��C��=Q�w��ݣ��h��=�w��ݣ��h��=�w��ݣ��h��=�w��ݣ��h��=�w��ݣ��h��=�w��ݣ��h��=�w��ݣ�������������������������������n���wb��_a��v�,
1556
+��i���fDaW11�߈ d9�+�0_�^Ef��&��fW�ٓ�}3��0�L
�){!�"��8Q�S�U�N��{P=�����P�G���Q��	�{&�3KHWl*�;�}�P�A��粈aƥ`�LG��\��+��"_��/��',+us��Zn"l��kJ�-�5�.�zOXW�B��o�N-)��-�ݛ��pK)�����4�O��fs2f,(�y!�?Glg)8�gn���*�/<]�܁0�LKh���hIU{�}���'�#�jN�rK�ء�l�*�8�J����@�W�M�o�q���|<e���S��\�@��h�u�$v)���T{,	+�l�D�Mg..�:[)�*��;}V�� �Z*GvT��K�� Nb�hE¬"���I.�R�؝"P���.X��V�UGZ��@��
1557
+���O`ۡ��}�^̨=h'��E���{�y���OT�_�
1558
+p�	������H���`�y3^�+�(�x�TV �ZU���-�����T�s�Q�t����ry�i���	���A	��2{���s��тvVa��dD�\�5�I�]����Y>���jjp������V8�S�����I%.[�n�T+}jL�X�W����")$��D'��3����)��:���S�=�-�cQQ��"P�E.��$7�R�⦇!0Ȑyn� {7�Γ#qE�=�ۃw�`��x��tmAv�\���t�P$��3��	�b�K��v2+�a^%��j�h�aվ
���&ˑ�;-	#����P�<x4H�����Sε�I��:{O!�):}K��W1f+�!˃��j$�'3�/D<P�tɔP�:������q�Ы����1��S�.�&��g��F2Nqھ�؋��Y,��� �Оpa�E���$,�ܒ��9��[�ׁw��;)��<�3�MY!���M=T�y��|	e`��D�4&Qa-v�L�H!;�����ŷT1d�%�
��c#��3vaQ�1׍!�Q�[ր�a��]�5U�g�.)�zq��r/���Bez)�Z�uGO�*)d"C�2�u��L�H�96`��FL�"�vT��y�hS�bhN���m�U�O*���9�4 �Y�(N�r�p`>R枋6X�
1559
+i"����Yx(O�.��s�A��9�����p��_�?��^o�%C��>7��V��������w�5�*ϲ���
Z&su��B�Z�'����@C��v���O���s�<2�N8?��6��8� r�l��&LyCM�NR�w�Z)��Yū$��N��K��z�uf�T4�@��|'ƺ˒�#n� �GR����`mv����� "�j
1560
+��œ�����n��ے�T�!�ps�/FV܄�y�g�nѷUy�Kx؎b�X��J�
1561
+�؀�b8-5�߇�F>x:�~�tY\�]0�qB���B�N�P�CH��&��*�����3�Rr���X?D	��A�ujk�s�'��ۑ5�P!�ljf��_��"� ��/it=}�6-�A �"�H�¦�Ȫ1��؃�����B4$#^$8�;Ii��o/��I)x�Ҁf��	.��kƮ�0����I��	�|!~����/��5����X��"V����X��/b�_�1|��/���=~X��o�g��=`��]�TER��)�P�>89U
1562
+�a������*D˭�?�ڎ�'yb*��u� �"�����Db�뜾p��!}]�{�M���/��X�&��R�!�2����ː�|6��7��1��	���߉�����Kri�C6;�R���a:�p���Ƒ>,���P���h�9Q=̱'j�ZԿ���Kq
+O
1563
+�4W�+ط T�|�=�<)�ౚ6	����EG�)��@���Mw'�N9������j��-���T���cf�>m!��Q`vg����6�J��X���ΐ�	`
1564
+6@�b���B)�|E�34f�1��%}B��s��ohd��n���!��!�����^F���;'^��W�#:\XU'�҂p:V~�K	Y�z��������d�p�;�����ˆ��%��W����qg�[np��V�	s�P��$2�~�Ld?&s�O%�5c�
1565
+3�F��~���9R�?�W��^�S�i`�l�.��V��;�N�.�vڹU;��7Y�󢝓^��G�x�j&R����f��'��<�'� :��`��b!��(��T�>��V�` ���Ӈ�t��.���=	߷�;+�U(�9\�^A�6��o�HD�^��7�[�p�ֽ4��a�M�n�?p9����֗T`�Rd���
�2��k��!I�SI/i��$��Ɍ3ԅ���N��Yc�ݧSV��z�o�}�9�p�H��y��C:eN�`���v�B7t�@VO�iL�� 6`�dq%Z��F,"���
����`�ޗ��G�р��tH��Lۤ"�o${Z��U񀗉��N)������"�N�N��- N�é,&r�$�YAۈ���u�&��Tǭd��3�������S�;�?��ʕ�N�M�~D��["՗p�G�N��%]t��oW&
U&�39�J����v��L<8ns�e�����b&��ћU{�~���a��nR�0t��j��;�z5���ό
ݍ����!3�,d	�J�j�n�!��>�#�nD�}J��~RX�Al��8H���+Ddq�'Qj���-"q��1|?"Q�q������-��$q��Xg��W�|��>6f�՘M����G%�Y�3d~)�$�ޝ8� ۼh��j9�ݑ$sч�cw'���M����5��i��
��� ����!q;� ���B��ũu ����t���c�^=���K'�gNj�t	��8�澙A����Z
��0�^ȠA��<�h��L�X�g�I��b"�$�-� ���d['���$z�J��:�Uʟ��H��J�H��kz���0|q,��^�~����=�)�M�{���bg}��"	�p!����h�Tk�;!�3�X��fk�'�:��h�>�5h�,��H�,X�1���'�~:-�>v�f�3[-_�;J�p^-_Ԕ�<�JmU���j�y�M-_]o��d�EY)� ]�(�f�$_��\�\�#X�ϴ�H�G��*��--H�'�:�"ܴ��D�/J~�����lIB��ι&��ʲT�,�IV�7���S,�q�j���$=���_��l��W�f���B|�ܸ�"��?,i����o��!*�e
1566
+�ު��9/��)5�T������$���e;C�&�=�M!{F'=p+QnR��Tɀ��OEBQ)Qe^����y��V�Rg��o>o��.�O
�Q�ko��W���ʎc��ܒC���I����'P>��'^"l$�u����|����{�a�[����9�˓|��ɡf��dU���/�H��G�ȁ����͘P4mV��F:d��]?�H/�F�#8�@���(��TB��{	��ag'7f����0�~�}��XX���e��/\o�#�=�j�8�ƛ��@�e�Ig�Ԉ��pm�|���<	{y%�sW�D����;���A��oV$�Zt��~��ώ����Nc'����{�����w��V�J"�@����������m tB�"E����P�~�
1567
+U�.E<�2:m�9��O��ĠX��mM��8��IOd� _��沤V6��Xɷ-ST�x������I��+����/�����̂U
1568
+�#��%���R9u
4���Z�V��� �
�/^�ޤm$i����t;ZDͺ7ɻ�M�1
1569
+-��,9B�RJ���W�2���S�G���2�e��H
1570
+a`�]��9�#�|(��f����	�c�<-��Dz��~FdX���2��>�#�#��t.�
/��ϝ���띡̾~x����
1571
+���?#���af��t�_(|�/KxD���t�vT�a��b��P/}�U�&A�f6�#.:D�x��NJJ¸��
1572
+k���s7<vߢ��o��^��?w,M-f�`�����;���|���)�m�ࢋ1`�Ii��l-m�@i]nW�6mڒ&�IZ
1573
+��<��"�{]���Aw���-�E�׵�.���P���.�ȝ���f���z�䠝�~�83s&'�L2ߋ�A*CP�t��cv�������X�a�Fm(����d�u��A���fG�c�Y��	6��V�7�$��u��6�f�V�(�࿧8��'\V?�IV��⦐��6k�ۂ�U<�B��}+<�i����)�:�.��0`n?�*B1?�E����\�o�qvm8��e�,	�G�<kwc�� 	�(���|���
1574
+�����&�7��	]}H0=��B�	-/�\#��w�fW�(�-	��O�p$\)�Ji��|}u��
1575
+�g�9/g����`��n����Z���-�9ۮ��ǁ؝�$p�<�vE�Q�aB18���&��a������eŁ��]�w_�Mv*n�f>Bg���y9�|R�jG:̨?Ӊ���&E��f�,�ѝ*r���V�8���1�����8/*~ď�?�G���#~ď�?������m��m������W�X<-��޷���-���C'���3%�h����;�/罚���U�����������Y7XW��ῑ��a���a{�Bcύh8��H���_y ����浶�=:��y�Nl.
,�8�ލ_d
�zy���k,�b&γ�����eY*�z�ʿ��&�Nh5��	�CMC�d�c=4�f��&��չ����&��e�=n�{�"%Wq���6g�b��RJlՊS0�u�����&�t	��p�i6:�KJ�2��	�l�A)v���۝�א,;�A�C�;�臶Ul�n"�A)����~�~*q
�{��2}�i����<͞$��6����H��F�g���Iy5n�~R���4�������S��`��Y|�z
1576
+p���e��v��y����v�f�;��p*�V��]xvr'���c���Ιrk�a�o��^�
1577
+�u��.�{�W��'�����X�}!Ǩ��+&��:[����ֻ�|��_�⸑����v�獬ڬrngS$�2�������#�d;��uC���w�3�y�l�+p��7����p&*��'�d��}����X����0a���pX�!�ÚW�{�0��hÇ�;�E
��ϓkWt�7׮�@o�]:�[�Y�v�
1578
+߃+���^O�L[<�5����U����֤�TK�oSgU�k��.0u���o��A�m;����0@��rF\�.��Ę��B�L��#ᰩ���|R�Ʉ�
1579
+}LF��.ͅE����J��
1580
+"�M��V���zV2�2�šZU
1581
+K�����5}��R���V�����d�aK�?f�f�쏓�'�v�*N]V�P�X���{pu�޴�`��?�G����;z�_�?�t�}���7�:E������GF�s��]��^b4u��ku/�
��m�#���?�2�[�����U����+��U��)M��D(㿵��*�-���F��>��o�N�:D�,�U"|H�O��y��"<*��"�w/�(��t��C��"\%‡D�����!£"<-�~�"%�q"�.�9"td��W��⼩{[���܎Ncq���Q��Ө��Afy�8�%����D~���Ҩu��Y��"��U�$�-�oT�m��.���X�?A��Q�,%6��v�s�6E���r��]��W��h�3��o��;�g����X�_Sb���W8�-��~�_�Ⱦ���%8l���7��t�{�}o�x�*٧�@��璺w�h�g�G��-W�ϖ�(���疪�uL~e�m���l_�]�O����J���LRN��W6T�_)�M�*8l����I8l%�r��m���ۈ+ᛮ�:� )�+�W%��=(I����+��H�78o-3�ޗ�?-�S$<�+$�8��'�l�׫D�ٌQ~���z�ߒ{����>�.���_/�}ޟK��(�wI�7?-][�ے�'D==W��
�vF�>EpҪ�k?���p�r$~�ė�;��2uƟW����uY�S���Z`�@�z�����䫓���7�m�[��}��J5p1_x�yܞ��������*nwz��0G���e;�^��F6�=��ǽP��n����A&�{�j���8�ޛ�z�W��N[u,X�_���c��i�8����wL왷;~�:���_;(�h~�:_g�eQ�?�K�lI���}|.~�:�x0*�����܁����wE8�f�Wv�{�D~��_�G~��y�#�D�E��s8ͯ~՛�<�����w���~�h~W߂��84�k�ȿO������+�K���5�]~��o�'�r���R?O.��e�@~���]e���7��������RQx_�]-��p���/�w����u��m��~k�8+�++g��,�_�sƎ���c�ǎ������9֢y��<�'�w��U!2�a/��zÍpIy���&���~�E�&+����r^�
7X5�f��b�6_��%�m������溣ۢ	���7��\��
1582
+��o#�?>�5p�'�G߱�����/9��9ƒ���(��AW��-��YV����/ێ��3��5�S�=�1�`�_sO��׊��ϝ�h	�����k�v���P����8�q��}B�=��N2�9Y�$��J�eKd�߲u�y7K�$�I���DR���)��l��˄����C{TR�dI}$�H��*I�'$��$)g���I��"I�#I/��͔�ϗ��`I�S���M��c$�s��������H�c��O�$}���dI���s�y_���#W��Ɨ{P��	������J�/��w��������J��$�˒~�)�%�"o�%�%�̖�_R�KR�_RΟ%�%�qI�)���F�~���
�r�r�C$�TJ��������̵j�����V������
1583
+_}?ס���s���>(gYT9���K����뽥Z4�~o	�J��H���[�ʹN/֍�ҷ����][����Y3J+�n����v������bѪ'��U�.��ϕ�k'���[ﯯ�����"����ymN��ɕ��5�i�9�m^o��˅��[��W'�ZRh��F����eVy�L��r��_os2�j�`�DJ{-��F{��=Z9�|���u/�����l��]<Kq7z*}v����~	h�����zm.���mT=�o�~�8~-�����:���H�n��é(��n�����Z0�k������Īb������h����X���`�هv�uh�jk+�]5ΦZ��d���&1!+��e������K�ec-u����5V��(]��X=��]%�e���o�j���6�k�<�~�ӽ��D����b�CXS�e��ƳHd:|v���y\������Q��V��5&T:|56�#&N�ɏ��a���t{��?���
1584
+�%��6��Eq��=�f5��Pw-�*��%�y��:cx{��%��J�%ii��i)�<~���i���f���<�N^+����W�v9���X��\�ieu
�e���v���B���갻Z(�b�
1585
+���g��`BŚ8]bWW��ٔ�>�cj��p7�c����j��9�8�?/'"cT��D�M��D�c�E���g�a�=����
��)�E�zRj"�7����R�'D��A�Gڳ�4���I�=�\kw�[���PN�����0�����+�IZ.��$��~�V}�|G�գ���KE���@TFm	:Y�Z�F����c�~�uj�L�	J�8�����k��p'�s���Hk�걌��i&��������k����pU���_�U%���J|
W���*�5\U�k����pU���_�U%���J|
W���*�5\U�k��ħ�ݟ��V#>����S��&�S���S�j;�)ou�)o���tm� ��w6:�Oy�!��%�ħ�.�k>g�{|�aM&>尦�rX��~��@|�a�$>尚�O�ȹħ\d�G��O���'��t��:��O�B�#�ħ�I-�7��O�,:��?���g��O�qt�<��ϥ��'�D:��?���O��S�'�Mt�?���[�'>���E��t�g����'~>��/����'~!��/���t��f:����/��3�'�L:��?�����O��t�������O�[�'����?������t1����|���o�H�M�ߠ)�4����oД�
��AS�7h�M�ߠ)�4����oД�
��AS�7h�M�ߠ)�4����oД�
��AS�7h�M�ߩ:-�4����oД�
��AS�7h���M�ߠ)�t��ͮ?h#���Gb�Q?z��:��`�Q�:ۏz9���~ԋA_��G�}�u����A߀�G}�1�~�e�o����	ۏz*h3��D�Y�~�Y��b�Q_:ۏz�l?��@����=ۏ:t.�u�	�~�݃����G}
1586
+�$l?�@O��>z
1587
+��_@߄�G�:�<l��x�A[���w��b�Qo=ۏ�Y�Ӱ������G��l?�AO��^�ۏ��E�~��Ac�Q/}3���-�~�
�K����A����
�Ll?�2г���x�A�b�QO=ۏz"�2l7���8dQ��Aw�;^;������"Tv��l��(m�؟��^�74����Mﳈ!�U�HH�	�e��w�G�����QeɋB�W+��L&�M�dA�Q]*�>���7�z3�[`�e+�ͷ���)G����;���G!%�ے��d��̏5~!4�%�j:���ħ,����c��Zq���]�ɋ��x�����bן�Rw�~��m����
X�Báe���=
Y^��+D��B.(�9�}b`��!Vo=~t���d�B�3��=�Q��Ԝ)GxTfh�5숚k��2��+9���Q�����O ���ms��l���)�x=(�	
^���v�jl)	lG�GI`#����r,y��a)��5�.�}�LBPH��,-
1588
+<b��AaV^I�q�0�J��a&�ʛ=N��Ä�a�"S�\&!, 8&g��M6����f=�pV�b��u)P���8���+��im]��W�&2�nGg���0����yL��=���:
C�h%��S����@�f���=�!�':w2r�C/�>��(���X�8*��F�
�P�QBDR(1���L�-T�
1589
+{���&D^	��u쥪�C��>�uY>��D�m������މDu@TW��#`����M����s���H��`o�W�%�C����+`�8�����ƂP��4��)똥,R�8{Զz���J۪��X�z�R��,X�Q�}�ٛ7Ε�ϴ:�F���tK(5?��,L[aNh��<���)� �C��|�[y���R��	7�@�ir��������޳}�q6x�V�	�R\n���3B�r��BZ����6�
}�jx������?�$���Aemi���:m�S��&�s�e���e��ub��U6�|���Cj>
�`Q�x~�`�X\p�P��8���@��L�2Yǹ7�)	,ze�i& �[�v�Siw�<�v}Ǥ����)�,�ÿb9ڶ�[��=0�]�F�A
1590
+�:��w��=̮M[qs�'��bIϱ������K��>��ɵ�����k~�z��cz+�.�O�j�%�Aa��7謥aOf��p��ݦ֮�����%I�b��[w�u{�'���)#i{�uִ�
1591
+
KL���Цs���C3䭻n5�;�i�������LW�����#͹s�M��/^?eM���Si?��Dlu��y�u�'
}+�u�$h�HǤ��Cw��Р��9M,2d�:�)f���zcڊO1����vt��۶
1592
+��S��B��c�]࣪����MK���DE]m�A&����d�܅
D
1593
+jp����J�Wpw��e%��Z�jѪ��ږ�5$�$���<�Kx)�+�?3��}�>��}>�Oi��=�9s�̙���z��1�9��o���o�2z�	� )��(x������1���6��Ꮚ�cE�sX>{��P��ܧ���Ym���uXd�i��{cEm��2�	����[����/{��E]Pȷ�Tt��_02�r���@=qeP��ݪ��:��`$@���}�Q�>��=�X!�8��~Qa�#6�c��!���}��sQUJ�6y��0>z�DU4��/��]�2ć���‡w���@0�=�������������RaQ0@DɽO8��:.N���KHv�~)�ʝ�(���͂��b��7zf���18��6�Ԋ�/o��eC��Rף�js\��p�EHX�D>\T�/L7f��d�/�o{�p�X�wU��3�7Ȏ� ���䳒�}��%gQ6)�1֗ى��2 c��Nq/K�]��I���=�����O��]@�@<=j�5I��f�e=
1594
+5�����J��WX޻��<�U��y�_u�{ ��y�[Y�]K�.Z�c>��72C~�'�_�@��
0�ȇ��+q>���;������[~��$����g���IF9�;
1595
+��RDwS�<G
���끨���ﰡ0A��_�O0�ϔz���Z����W�������ޯ���Y��m1*�J��V�?��`脓�_�c8V�,�g����T�z����z��9rTp;��i,T���ۦ�dQ�ְ�4��:hQ�;���n 1|��KA�K3����I�c9�&Ǧ��DM¹|�THV����N�1���,5#�x3����'Q{�1�sL��& ��"��p��]��s9��~���/?���'�S��1@�c��
1596
+0��큆�,ㄖ�k
1597
+�71�	а��1�K��#��YJ"a��Xʣ���3�v��g�ib0l�CڈV}Y=*xS��|n�=��ݝT�-�w��I�����$=�5��)�{��<��ۈ^��z������a�VL�AVy^Òl�$oc����5L�>���C�^�Q���Q�/��9�_<��Ylm-��Q�r^�9ʄ�B�ukp_��W���o���zP���5��W6�_r��tBl<v���#j[ĭ]ξ�z���c�����u]9I�ȏ1[�vC������ҷ�,f����W��6�+hw��H��$��"Et�������F�G�B_n23r��]�}�F�	�LW��-QO�k���=��E����^��	f�e��R;���9�i��l�Y:.:���b��1X|IV�n�G0Uޤ�DY���{�ކE���a6�	Qzd�)��G/Q��A_	%��C�e�>���,��=�-�Rg_��ޠ�)^4�sm�����+�,,�GV�OA�>��H�|#��BMs�U��z�/��ԑ�౐9���|�
8C[|WXa���DFs�1��&pR�t��o�(̻yXJqb�7�џ�.�}hhB<�8nH�����s�����P#h�6��:l.�՗��p�렵
���٥Ba�Eljzh�'��OabƢ�p60j�u�-:�?wPݶ���tQM�(6�I���4�|*��E4mr�W�{�6�V"iz�(��ظ?��2J;�i|�~���dIt�Ʉ��4���S�M1�&��9/	��T5�o�ha�1}�#�%	�� J�����|�QҢ2����aH�p���7�`�U�-��ɜՓD�m�+V�V&�Ű�<=2���=߈��lʛӷ!�c,R,0AꙢ�y��k�2��k���u�?[����P#����&M^Ҏ�c�H��F��5�ZN���]@ټhb�Qf4�m��
4V�y
�'��j�7��B3aC���nh'�MC�Ro�߬^e�4_����I?ZZ�˷_���L*�����V�ϣ��! �WR��|�n�zB����6b�s���C��$����K4��B�=�5{�t�r�#~
aL���0%��9����S��`�V�_��q�|�)¨�~�ʤ�L�}��uV�U��ȗ�p�O!|Z�p(�^����E���[�a���Cуw�ATt/j���&FoJc6���5+H|R���5B��!2��e�긷�,����w	���tqQ�����`Vw@��u����O��7/��ݕ��!,���ש����D��T|}q��^�6����{� �_T`~�)2��|�!(����%,��N
S���?��̟�����	s�Nț��7!h�-��s7j/5ۯ���ּ8Z��V•_��:C��G�ܑ�����ԡK��ҷ���@��Pt�˔N�h?t	�3�����>��O�{ݯ#���y3����}X�r�o�&"��,�M��+F��}��DL���Z�_�'J4�pzC�� �#�˧�'��o��Lָ�D��էc�o<
JP�&�Wظ�Q�&���@�<��ȷ B^�5���)���كj��r��|TcH�@�4�߁�8y=Q���7\>%��/���q�#�+����F��0ה���v�Bni״��:tJ<����f���iм"0������+ȿ��1������ر�d����_�G�����8��쿭QX�W�W�����̛O�
1598
+�
1599
+��Ph����	j��`��BS(tj0�'������Eu�]D,��)�/��x���GԄ)���x�M�ăJ|q=�fH'���!�n�OҥonJ9�l�֎�8oȸ�u���E�B�M���0Ntl�h�>��-��v�J�H�=PL���6/ǗX����Gq^�(m݇�h�)QJ�-z�tƵyk�M��i���q4�约���~6���UG�}_�������r������P�a���]:hM��Kg�Aq�#5̇��)�>,��̵5g
1600
+�ůb%�?J��F�2�t�OM;��엏�c�8�.��sGS$~6颹��T�-�G��vO8���U4�q��c&��S�6���v�ՎҸ��UQ�5X�A�Ź��8n���0O�(��#`����v#����/LւR��:�h�+�/�5p�A>�U8
1601
+���@
Y��P�����E�7��6`����!_��=Ξy�_����^���{��s?��3��1�����at<uKn}Y��6CS�F��)��z�i/U�9��4un��M���	�����n��_�3��}����zϿ�!���`A�������"9�C����=Lu0��y'��,�_B����
_ω�C��|�+Dh��
<G5�p>X��^�x�����_�d�����9
a��wu���;*,�ڗP?���@HֽSt�Y ����i��B�F������p�M�"�f���4;�e����s5zλq�wk\7!e��/CS�!H��u� ?��;'��3���
H	�
�ͥ��H
1602
+L��ѵ!,�Z�N�h�;d��E^N�9��alO�O�"�3ٕ�1e��
x�-���`뇏AZ9o7sf�8k���j�OcL<-���-&��������� ����_#A�H�J~\�r�[�ۗ�l�ק�f��$� h	���{�V�'�Ԉ��q����ѓ��x�L:�Ac}�F9���5���FQ:#JÓe��|D�bg���Óm�)Zޛ7}֛:Yo�b����)xk��H�y]�
[c��:X��AX�"rN�$���y&�T�?&E�u���7��7"�|�;����k�s|��R����*���3����f8-�f�zD����f��޺/��}��7	���V�Nf8a��7�����'�(M�
1603
+������.�A��5p]�74�U���猣o�L���u���g�,�eA�f��V�O��:\��(���=z����]��ϡy��?�g�q?=Š3Z��'~J��υ����ױ���FSl2s�g}�J����iȮv0�7�|���
��	�`�B�"x�Ă�B����J���mΚ�{�1q�ױ�x��,<����E<���cYxZ�>��DZ�<�/��;�kp��{�2�����p}$�m}�*)�zԨ���wڤ3\Āj��'�#�,��-��Y��'�&����5��OT���攧>E���Ȋ믓h�ș��'��ΰK��@�V�C��y��}�![w��`�a�iP���:��3�|�-�ɏh���la���iv�C��3���a�8���!qF���q��<�]I��UǍFy�.�&@BZ;�
=Xߙ����$+��$S�k�jւJB?�|�3*����~��� �
7id`X���K
C��C�4��E�ӷC��+����IDˏ�T�a��7Y��41C>:�4m�����c8�.��s��4oG���}ƶ�虰kBa7�S�8B®�$�z6�k\�9��3�
*_��|ʤ�U��uC�5�ך$k#j�d�5	k��+��ww��=�bZr��kj\
1604
+X�qA�0���w��L�_ߩV��&?�u5��tF��Ԑ7h�0�P���}���\6{'z��\$.�0ʻ[�>��R�S�r���}}6b�'��_�{8�5���;�8���ҋ��.R��l����A��f#s:T)�&���Yv�G̓��l|*B7���z��d/�82�.�0�#��'��eg�f�A
�\�.�!?i�����S�#\~~���3��s�n�g�WY4����D����d@/j�<,���ɭ���"�{�{ҷ�wpOu���!����hjw5S�`Q�:�(���?6v;���T
1605
+�w��3�_��ҁ��#QB����T7��x�sƁ �?=p����O��oU�,��xW���	ik�v���ޡ�KA�sm��	������S#x�.-�#����n��9Mu�IyR3��~@u�ҩ�V:��P���Sx�H***�m���4W����?�>lkDi����f�u���h�g!
��2��2��m�nD��u:�τF|���->V�!r���-[q0_���S��yJK�*��)�Z�4���m�1�R�k�h�Cm�4�ǘ�FE�=z�׸�Fw���ߙd�@DI�ͶK�k��ۤ�����<�~o��^�6sa���$�Ԍ��+hcN�~��'��E�=9Ex�*���T ��:�oOMщ��7��c�?I��#�I�����{�@��K3PQ
l���
1606
+�DLjtc��Ы	Ę�0/%a!�K�����#�|sp�.�œ�$|&
1607
+M��`�M���5@:��z�ޱ�F���� D�����Ca!�[~
1608
+�Qzgvf
~S>�&�2�n�W�;`=��i_�t��CؤSr�4�j���|�i3(NC��}���C�1h����;3 � [��%����y�Vf���|��޹57�999�c4rk�@p����M	�t�ׯ�.���m�M�i��4� �W�埻G��q_a��{1���'3m�n�7�|��?����"���i�_#�o'�=��a����I눭� X7��'�t���������8�^\y"+O�,�a��{tѸ��V0����=��%�� :�i��,_�jm��:��u7m�=Dө��� -fEQ�6
�8'f~�_���R1���E@�/�A���=LyM:OKoP�J�1��w8�D�$i�I��#F�G@�e:�'��;�'�J�yYz6�@Y;�d����k�耜�#�䅛�3Lڃzk�F��T��=,N���PB���_�"	���0��?�@�I��{xr�!��*g�@d���-����ˆ�PS�`����0{�}��ߪ�vS�~��\:��_RL�e‹�!��������8����Q����m�6)�Hj����V�Z���?_+z;�׈�	eҔ"Q���
Bۏ���D��?}q+�@�0ď��R����<h\@�p~УɈ���B�7r�/#kIh�n�ґ\�
>F��/#��m�.��w��
1609
+�W�sA�Ŧ����A�j���wv���~�Uף���&��M-���7�/�Q���;X��&�ٽQU�P�Oa)P���~0������ͼ-x�fk�+������CN�X�E��V6i�x	�����.A�vrk'���9�f�gЮ�R�8(}
���5��d�*Ǘ�:lj�]_z
1610
+��o\yh�<�q
"��L$�Km�H�{�p�o�����#c�>�h(�n�a
��
1611
+�_œ�^�yhT��K���d�\�"'�"����/'��\��Z�!�B'�j�g��OZ�I�}�>��~�sԊaB���y����c}�)2�7�%�DD"'%:���$�0b�"�-��^�����#]h�]>JE�ʁ{���C8���n�Y�ћ>C�����T��ՅΦ՟�q���s ����A
�+�p��rH▵����w�Jq.��W|�{��j����H
1612
+܇��$���v��;��u�Ħ$_�=��	��I�˷7Cs��ݠ�
1613
+o�N��ؙ�ޫm���
1614
+/m���'�G��o���*����/��;<�;�����}i|��,���}���w���N~�pcǣ��r�˹}ct��Y��·vbpp}C>���7+���$�WD�;���"�}I|����a�-S���`��Ӛ���͎!�<��W+���A�O�<�5�A�<oh�DЌ6�<��
�&�f\��q	C��f
q��?�CBګ$7g�/TQ���/��Ӑ���C=Ч��3���k�m�[i<�۷�����%��`��O���zڟe������c�%0_�E���7�?��b��O��`�<��>LV��-��
1615
+m�v6�L)��W��f��63D�o���y��ry*�e ���\�`9"�����\d��]���C�Cr�\dK��I����-������C��8Nc3q��\	�K��\� Y�a��6�DyR	�Iu*����'Z���.�;@�kj����[�(�6޹Ƥg
1616
+z�Pؾ	r#7�z�MRP�މD2�ES@���5�~���wX��������/B}���g��b]G3ouޛ9�9��qf��yc�m�P��^�m��i�K5�4+ڕ���6+
1617
+S���p��p
1618
+xE�O�bz?3��g�d�5��a�6��͗���v�S�5�ȧ�M�`2X,�c��w
�O��cCw
���GR쎡���l�{�D��3AXZ��b�30|*a�����.�B��Ņ{��/uY�Qt<k��Jr���'�c�y��O8xN��xR�>|�֩�Jt���gH�%gc�R�

tк�3�d'��2������������'��o���O�qzՌ1
��n�Ba<MKp�W�}��#GN�B��K.������\GH�f���h��{�h&b�a"�W�=��~߼,�i�^�$C�,��Q�����v[�X;��q��K���u�/�yxF�#���Hk��EL,x� ��]�sR�㠭�X{LI��C4�.�;Ì��af��X�Ӊڣ�
���ۤ��i
1619
+ >��Ύ��]̎�=������`7}-xzC�M%�m3�Pp�[���7!�xv� ���2Ɣ/�+Ś�ٽ8��<��}��ߔ�Q}\��%_��,�Lf���EܘD���Y��A�=LHh�MW
1620
+�E�F�\25������?0Yj��c�	�cLB�q��I�Q�Ͷ�Y��l���`�p�K�
��;3q1*�7i����I�| ��8�c�(m�l��;n�
1621
+{h�f�����$'�z������a��S�+���R�~��
1622
+J(<ݦ�}�K#��͓N_ag�ژ�B�i���X��~@�3�ȅviz����J�	m���TR�s��m�⎅W����(��rϏ�8�܈�8��"�@�%
1623
+��l�(���&�nG8��1<��!<9z�p�����5��d��E^p>t�v�6����v"��фׄ�y������C�6>/�,��*��w0���vȞ��p�\|Q�K�Kf�۷`9Ȣ���a�-���a"f��5�+��~	^�o(ǤJ�u���͏^>}���g.���q`5����G�w�w��	�qu�Z/,�b���t�ׇc1/A޼����\��,��.U�	b9=ϣ8��IP��|W��k�8��V&x�BV�<��P6����`��<pV��q��y��B\�O���<��fl�>03P�K{�[uR�*��,�G���m�,��q����Z��9�;z�������*�[>
��v�6u�ަ�������(��x��V&A��&wX��F�u�Q%�x&UiH"�"^P�/�W`C'kw�Ź�b��?F+�f6�U���P��i�پ������_A�龒�́#�����uJ��+J?( �	�
>�-�w�%�ڴf�����%Y�K�WёS&r�_�J��\Ɔ�m�oGj������)
1624
+���a���z�g�'�]
1625
+��Hv7^o���>���f��Y�̺4����Ń���
1626
+��[��(x�v#0P����z��|#x^С9^�2��tHl���;
_����P܌�-$7�{ �N��qk�<-0�^x��Nm�=iC���=��<!����39��Xw��!�}�QJM�+��>-x���U:`��u����y�H�1�V��{�N��H'��\߁E3x~[���6,���$�c�E�i��>v���ɱ6�`�u�=ȏԜ�~�Yj��e6m��3��pϺ�;�?����C���IZ�&�'>��nԻ[�S��o�"]l�+�L�w*�_X�An&mF?K��B���K:nw�d���F��g�x��f	߇���<��ə#ADz�����<q
��@C�J#�5��|DQ�fd�q�ȧ�X_�K�B�l�5ob%���:��
1627
+�|�m>}|B��Aau�֙�8�ի��(��՞�f�\U�n���G�dm`��'��[����cP��Fٕ/j'��W�i��8�[
1628
+��q����wi��5����Z�Z���}ǿ[�V���_DOK�OZ�۶�R)[ZO�y�"`Ag�Os+��`Q/�_�qc�m3[�T�8 n�qj��N��X���j��}X���{t�<��j�/��I��B�ՠ�� ��i#
1629
+,_�{����H��*m��[u����jE��	�;3�c��-���
Z���CJ�+7��@	P�*�E�F�]2��)iֶ��3C��l��w�.��:��,R�#X�<���V��Y"�0
1630
+��p����.��0��qz��=��]M�!j�!��h�H�#3��N�S��>�R�$�7����.���&�`P�4�h�Ai5s՛�V�?��{��7�{�P�Fڹz��އ@��Ϧf�G�@�:Tפ!+!�=��*�c33�U�9`�5��M:n&��}�@��	��7�Ź�	S3�Dٍ.���!���Fd�{�����f���б	ͬc��}��.("�#}k����5>a�������i��g�J����������̈/:vJg����>��n��Y�w���~t�?U�:x�	��Y�*7�P=<�?�=�7Ԇ"���ɵ��
1631
+�ߠ7}�z�:�C@�э@�7/���w�y� �'�w��_�B�HD��|0OJq���Թ`��������ld-�ns^����o=^�~�^�7�g��5ߡ.́.{��ީ(�A-Mx���^����,[��9�?�+v=��@�j��W��{�P�Zi7��{���ob�6]�q��8G?��r�3&�]+:6�";C��^�!�e�8�q㚨�i�$<�li"�Ǜ��W�_Sҷ�����@y��R�����f�+�e����Z��e�d7�q\'ާ�g-^0�n*ʠ����J)�M0�<��sԵ���'�E{7͊�
֫��/,�w݇̚��}�5��;�~%?Y�����O�#�^o�o����̾�e9��7��=��5l�IO�rG�������;,��90t~O���~�f�]G�*�T�$^t
�V�8ZQ���/�c������1E6�d����"i�(�"��A����+RnQ��g�{B����
�X��N�e����q[ C�e@:Qm��
6:�������k���A5��
1632
+�bO
1633
+�׬���T�;=��8��#�杀ܬ�CfX�M�5ۣ�����2���$�����n��γ�5������w�3o����-�S4�����ϒT�u�_��-眷E󐢦e�����������H��D��z��#<٣���'w���?��ר~�n�w.'��Ք��Ln���P?AKȊt��Ak�
\�'m�1
\抷z\_�a {6���q���6�D�J@.XQj�c
1634
++:�E�r ��q]!��
s�N����<�BƁ��L��Xt��n�W�EZ�Md��'�j�$_7hu=����A�U|߉���W|&xbP3�q�x�}���Y�_�ږ��ܯ�@�{�@M'�=��蔀M��%Fc��6���A��'6�.T��O
1635
+0���|�����a3�qށu1թhۥ����Dmc�U������U�:2�+Ҡ��x�(��=��/���W�ڥck�Q�A�����u�i�c���O�Dy�q�R.�#�c��K0��N�ƅ1myڃr��a�J���0����ǰ )��k��٨��!��y]j��V1���^a~���������ɺ(P�E��8�;b�W��>6i���'.!@ �?�x��/�_� 
1636
+�"��ќ�ήYG�L\Ҹ�zn
1637
+�'�%xF���������Q�������E^S���	�/��}�y2��R�8x���C|��Gv�q�2�j�h�޳�/�\Ҋ�}�l���*x�ҢP}�m���{p�^x%���.��(�.���V��j�.4?F��i
1638
+�x�ҡ�$�ɷ4|<	�'5�z��]�Htk�>��ts:p��29Ї���Q�"x�D�L��$NЭ�]��Y?��7��|~��6p/|0
1639
+�}��)��`1��M������)z~��}��{!���(N�K��;(+�v�L��"�}N+x�A�9��*q��]���A
��8M�����]
1640
+إ��sq��-�toy�k&����,�����O�0�îoX��
1641
+�n�VݯI�ã����ɯ�N?�s�҅0׆�{/�����
��ka�6�⫆�X������l�r;�gRh�[�@�F�f;��<�v�}���Y��7��?<h+���]�ק���O�a��uF"�gH
F����C;���re'�yH��[������wQ���&�N�}?�=8�7��3�i��_폁���q8�k��{^���ގ`X_
돤7��?T&���&L��%`:�6䵰�Q���o�3�v��W�o�o��t�g?�8��~iC#+��K_e-
1642
+T�"Z�o�<����t�'����uד꾓�ྗGa:�[�
_�}�?—�!����+jM���=D}��?™��*=�^믗_�|�c�&b}�L�X��ӥ�����v�I��n�OV�o�|�7�1��U���C��<W�"�Ϣ���o�����o��}�Ka������Ђq�����A��E�^VU(�l��RU��b��"�_���!r��]H=֐�L�ܗCz�t�ˑ= G���|��T�>�ͽ�/��~�~}��%s�����/��l�P�Q�]���,������
1643
+R�ʑfD�|��m�-�|�T�*:��J]��f�57��Mr�i�6	�;��=�TK�Q�Z������iYvi�AX�Pk���j��E����=�0�PX�YI�h�S����E�	��tŢ�vi�m]�ڍ��ݻ�Ul�5\��x$
<K�+��uآ,����M�a��k7H���٬Q�Ԩ�O��]�?Awi�V��2жV��c���c�N-�-*�Vi4�2�l�!����WإV)hz�h�yFS��td��:�����M�����O�k~��|W�}�a�ҿ�M��Ũ�)�vO�&=�v^�F1����GpI�1��B_�Y��)��X�4����ې\!��W�:����toE�;}�t�"�]�\���t[/^&]f~�K�/2�߻.m��⎧q��d�����4;6��N�/"�gL}S`�2�
1644
+���-�U��d��{��L��CG�A�j��-x��G��c!���w]�*�⛙*JS�)P�b�ٴ]�?�O5W�m���xA�gb��T���)��@�Q���'jG��X��a�C�eȄ�B�L�Ҳ�o\�ƅT��T��_��$�Z(/���[-��X��akO\[��J��c��l�4�������gꄥ�Ԓ�)�u�
1645
+ڧ��o--�Ti���\�`�l���ͦ���~()�q�~�����X��nʤll=z��<�z�����N�d��ô�W��s�1���@��J�9�����2���/���
\)�v
1646
+��؋C\kX9�Sύ��3��I��1f#!�@D�׶[���30�m�f��(���W�fS��|:d���b�Ͷ�fB��k��͵]�χ1l9�v���� �x�i��R�sO��#�Y��'��s�X�9�A[�������#_O�F�6����E<_�Z|#2I�-�տC����
��O�9_����P�p�_�V�IZїA>�)Z��YAh�tn9
1���[y����ex[u~K~��	�Z�RņRŨ�bC�~�RŅRŪ��B��T=B���T=B�rY���T=�T=C�nd��T=�T�P��4�\�B��j�^�T;X�x�{oL`��#��]j�>��D+�n����$҃�Bz�tO 9$PWT�a�2�}6���\z���c@ N�K^&���s���Y~��"
�#�K�i8��ȟ����8��ǡ/�
1647
+��E���	,���U��6gO�����B��ա�$u���Gǐ���$2���!Z\ i�·�����::h��CB�Ha�����t�b�'��N�J��a�d��8��V�i����Lü>��<^r����fm������K�_�h�M����K�_�p^"��'�b/�g��0��Ct�PX�	�50�<mցlߞ
��߉�P�6�^�Uə�@O��M>1�5�Mbl�H�/@��|����`;����
�ڳ�Όڳ﫸��ƽ�?Y�O��e7,���wl��lc�Q�O�}���ki�;�[1��6U�x_��<�]K�D���6�=�^��� ��=W/g=A=�{k�ŨD��V��:إ����~�XM��tF��q�:��}�	:w -�
1648
+,�1�	`��>���P�~,Ul(U��*6��X����USŅRmb�z�Rũ�z�R��R��ꡦ�J���҇R�TS�C�&�T�B��j�^�Ti,H�ɽ1H�@���+O��A��.��go��u��޷-�3PP?��#���ْ�?n�r�N���܂��:��?�����(b��_�
1649
+[�Λ�ӧi'�/�8g�u�ۿ� QJ��$NM;=���
1650
+Jqs�T��E�t3ݷ�o�\U�o��eK��xE�_a��M�Q���p�M�z����*`�h�IO����ޓ=�8x7�ϖ
1651
+S�Q�G��=�vn��.b<��x.O��o¢�U���G�_#�6	|�K�;��%5;�=
�;��nG�����������;{<J�.{@��a��I]�o��7B��N
K�ϯ�6�p�n��K�/zW�J���}��o?a�M�~�	����ԩ7�=Y�n[SՁ��н
1652
+�vb�n�>A���4;�Q���X�?�[�?-�&�b`�rodo�Kez᪸G1L*	��"��k��Y�b�*� ��blEP;�_ٚUƜ(S� i�u������ÎK�mq|?�r��N�J���V�%
1653
+c�
1654
+����h��<D��T���������5�Z�g
*ýh��
�
1655
+$Xک%뱅�9gB���Mi�A��W�d�*���I�L�B�ѐ�s��(�Jv���d�l�Nk�"��)�
1656
+��zџ��ʸ�mo�&��:5�2�c�V��.s�Ŋ�_�=P��6�7@��d��O�]{�p�SX�MIޱ	�	�ދ�a�(����s��ݷv]:��Gk7H[�����RM[�Y�f������n�����Y�������
���,o^[VmW�G׹;GO��.�I�8��pl=��op�t6�{�v
�mp�F�zzXݗм�;�����1���#��N$2�{�l�O
1657
+>�����~��_Yܯ������=�\H�D�k}v��d���)�U�]l�K��Z��U�ǂ
�ո�i�>Pݧ�G���Bg���?�J쟾>��5&�{P�
���H���2�eX�^@����@O�����������F�3�'�0�#t�a}N�ړ����J�O^�p�q}��6�g���,ݲNF���%t�{\B��=��v_��[O���#�jO�t��
��x����M�����;b�
|p�G���x��Җ��K��^�^Xzw�Kc�1|�ӎ
1658
+���3��/�k��ݧ��/�m�a6��H�7���y��MR�?���Q7`�Kj�}�!,}������U�F�cL?Qj�rn��#m��
�
|bvC��F�fir?��C���[rpW��]�|��Xγ;1�~�݁�\���|�9�{F��,��m�c퓾�B�X#["[آ�0����>;`���p��N��ף��
��/@\��.G��>Ɵ�:�F?��֟P�%%˳���j��_E��^	~K�6< 
6�v��$� V�qwj�npw���q���RxL�������E

�_���Ө���(a�s�L��γ���#0�c!~���n�o�0XKi��gs���<ہGƇLj�9�𿘆�u~�
1659
+Ǘ������^��c��A��..ez�@6]�:}6�g���qw��~�Z���
1660
+��	���{ֳvz���_�9=��������A��X*���?4�����n��l�bX/�E��|�w=?�G~6֫C�p6��u��p3G'��p~-���!�щH��ta!����K�a����9����sr��g86Ot��paG��ung�>�k˵L����?��=���v���:���������g}
���X��6j�.Բ�p�B�46_`��;X�8l�o�����6�c��3�/T�2L�ϵ��s�	�gtw�u��TC���p[������H��E����t}�.p>�l��Al�Jt��˧��N|�6R�cߠ�r\�!0�o��	,�!%V�k4��v������lC�+�5�m
1661
+�)g��U��hW���s�����?��⮈�
1662
+I"��m���lTE��ak�gh{4�v�}�E�:�����O� J��Y\؍M�_���1h�߅����4�j��O��+]ÌW;��m��`RL����B߁��]�l���~�I6��9��V�M�}hc���
1663
+Y� sXX-�-}j�6��\��]��f�M����M
1664
+ۑ@�\�B;�8Io�ӵ�0P�}%J����'��]M��E�D/^��ـw'�;�`(�6%��M	?n�a�m����tl��Q�/HΗϵ�{���)�Ւ%��f���@������r��?��b>�3M�R>ޑ�E{Z�i�IET)^zg�Ǎ�����E��w;��?.����~}�bԾ���}.�!�`���#��w}-{�j�ʆ��8��n;j]��k+����`qj4��.B���k'��Vv��
(���H���]֚E�Eڦa�W|~����]������V�����+�y�!/�ٴ�"ؿ���Lf�]��.�m���&�@g2�p�Y��`��_���8s{/�<^��t}�?6�KHd#Gl��À���h��Gg���w�5�F*cյfe�!I[�hh9�ϺIM$��I�ٔ��m�j;�A6�or�wۢ\�l�����ɠ/�&���E_t�2_�pRT�`��>_t��˫}���[�\a��������o�I]��u��C�>�oс�]m��=n�=������Պ���b��CY*\�gԯ�4��2�cu8J�yC��H����K��}
1665
+�!~�\d�n�}X�P�V� �+�B��ڰ-W���˶g���<����z~T{�������3�&}������,=��$L��3����z�A�Al<#�=�OUo��l�WY�
��1�`9��X���0lvM�m�1&��b���5�?�CT,��B�L��]cӡ�mv�&		A
+�RVM؀��^��/�F'<�1�ZL�?K(4��Igm���o���ֺF�}��1`�4��Ehk�5�7�5j�����5�_r&����af�+D}�V��ͨe������|܂�WD�P�h��uP�ܽ����
1666
+����V�C�!���m[�~Ȑ|vF��U>Ù�!�ٌ�#�s>|׷E���h�w��v�����ﹼH�V��~��7x+QL?6O�?�A[�?*��q��q�n�8d�'��澸���>���{i�X�i��/�q�`�[k�B�B\j�4a���f n�2�(��B�{w��?+���㺯_�=��#�l�J���8
1667
+j�5H����.�M�:Ħ��l�]��8MTo��(��He
1668
+�n0�Z� R1R�$���#pPb�XF	���P�����&v�<k�S-������Xא�R��q�/-X��^��ś"::�#����t�Sc2؍kcp�M�ť���T�n���|8=Y�k�=!�5'UK��Ig�Zs����ȗ��Ҥ�SE)G�K�!�쩢���M¾#=�%/�R߫�Ո,�ᰠ4������"�>a�1���u:{���i]ґ����=5�BJ�V8�
^��}ѥ2����kw���f�Z��[�w6���8���a��W�9x^<��kMx1��x%���<�t��*�7٤-V���hD�=a�,��FO4�F��M�g9^Y��@)���,��R�9W˰ei~
1669
+���1[�r�&
~I�qZ���eO��!�k*�RO���rU��"���J)�F�
1670
+�Zs8_�ޣ�f�C��D��#@v��+Cڅof�t�~�{���ʅ�㦶�Z��9�'�L��#pt%>�}D��{����x�9��6Д�]	�.B+-	�M��4���H����nf_�{��d�����n=H�G�O߬QP@�
1671
+*�ߌ�Px;@B����[�u�,��}�z
|�{`$���_���Ko�1�b�G7@0�K��L�@��_x%�&��:vK�T��
1672
+_�e�W]�/����5�ܹ����*�a��9q���Us7OJM��V��,�wm35�E���,k�Qv]�(�nVr���#��#N�/�''�r��FK9��`	�O��	��pT�-��V����[��n�ߊwӒ���)���z��V�9O�"�TɟIR�D2
�oDR��[�0��
b�+� ��Z�����)Q����V��ev�%�C�'C�*$Gb�[��p��3�9��T��pN]87�S+�2N�9�{N����*ħ���u�O�P�tH�髥�:�_-��#�����ߙ������{�	������?>������~���!��=W���F�+E�N�b��,�i>�p������1[f������\ey2:�|�,ڮ�����t�qkN*�.�D��J<-��OL���*3�{��!�|_"�_�,�yI�������6*k>Ϧ4Q@�����g�A�o� y`��K`{���n���ȡd�Cs����%��v��}�Tc�
J�f�O<��7�\�r\/R�"<��h�y�9�dS;�<l��t���'ݳ+p���f��on��E^�q��dnɣj'ˆR�d���3�6����8M��t�d�4������}%@���N��A��1W��j�IAw��3�#%v��D>p�g:�z�$�T~/%oqJ���m�Ɨ��<�ϼ5M��
�3�\8f^�I����W�q#S�k��`#W>�4݊u#�0C(kJ���pw�~#��ͯ����%��-&+bK�j��^�$A������~�2��G��Ï�N��<����;�KE�\*��	�C2/���g�V� �k'P�To
1673
+50���]���r�#!��/VBܚ�ؖ$;4E�A���H�I����p=��
�Z髭�T���}���a`�ݧ�l�}�+E�P��� �u<���-:��ތ(+6}[����d��+¹%�w&�|Vh�Qї�As���Sj�`��m"�vh����k�>�EX��H͠t
1674
+�_œ>���;tZ�IT��Ɍ�{������M��+�xo�1�q��x �޷�ɔu͌xap��t�]gd���
#mͣ�� *Dl�Ce˖^FXv��Y�k�B9�����
iON�jI�d��]���Uc�k�|e�&��g��KMZ�>���T�s�I+/.QgL�!$��}P��Ei��0 ��yW���[�I�R�/��x0NX
���/�Ӏ�f Ry^);e�6�ۀ�2lR���I�wj��X|&1�&} ���k��e�|��Q�{+P���+0��dطt�p��Z�j/��|�ָ/�ީ�j�G�q6h�ꁛ�)�363����f�ڑ�x���L���m�۵�?�tut��I�dVߞ����g��N���_�3Ӧ�F��ϒ.��<�7}��m����f�n��.�>�l1V��Z�֚E�?B�@j2�ҡ��PO��#��c�k��8f�]:���� A6ײb�D-���	���_����~A2uJ�|����H!-N��%f����2{�=Ν��ѽ�7V�B�y6���D��.���J4� �%K���j��m�l���-�)<_��+?7U�53���Z��S?�bV�v�pݿE�n��d;k�Q+ћ�J���Бle��Ѱ_w��i�-shv���y��~-�O�"M�nv��5i@Z�I��,���oĖ�]	�MjD	;���Q�Ò�j��	d�l�z�i��9� %��R�a�S��l@�`Б��%�����$ψV1��Z�\KV�HN����.��lu����v{���9���%�*2>����x�����N�P������R�2���.T\4��%޾�B��O#}js�y���(�W���˩�v)9��(��%��j��3z7�
��)��^�u�����Af2T�t�6,���,�]�^�]�����@����X�i��EG�/�z	qU�`BiT!�%��v���e�5�i8RЀ��
�2y�-���|�����,�pq#��{8�nKBn5�x����r\~�A�~��_�W0kì"x��rQ���w�k˅�����`&�-����@��!�k*�OO�ۀ7h\��5��v�Ĭ<�۰�v��ixw��V;h�6b]����*����ω�JB���9&�5Px����bs�ݡ��o��5�.��
�A��ol
n��2}q]���0����pl*>z�Ԋ�I#�ă��*\l����L[�o��)ީc�YQ�{@�N���7���rG�M����v|������Njث��"J��4�ao�A
�Ӹ"�Q���+M[�X��!���g�V��a)�7�t�`Xa�>$j�*�AG�I]v_�Q:��;4:��'��=.P�2��1b��g	2"�'J��[c�3f�3ny�ɹ��B�b+0ʕ2��i#F]�9|�o�%C�G�y��8�
��8Ǯ �f&�zy�t�4�����a�K;��|	��Z�t�}f�)�½�{�6�y���B/��fQL�=0p��˫�F����)Y��l�k>kt���_]`]+�Q�������P�1�P��l:&+K��(�
�x2��Mx�-������.�6"�����K��0
1675
+i���w�hbEUAQci���|�94�C4�!�{c#;+����^�x?0���;�N��d�.��'�"��4��뙚���g���UP�Rr����X�*q�y���ȑ�G	G.�����0�/c�.��”0���ԑ�oE��)�ˢ��]׉<�r1�}�I�f+#�RߺÎ�豮C�;�����?/�yh���<eJ�-Q�t�=��yz2iz���q��E���恝W�{��m7�sc5)^e�Yd���ޯs]#ԃB��.Jo�{߫(�9�g��H�B3�E�бA�|W��P=3���H����{b�w��Aj���P>+�OSe=޹X?��ufjix���]ⷒ;�֛ɧ�J��Q�Jߥ��6��J��y��������玢���2#��Uǜ���2	��NrZ�%y��s��X��%��@�
�KQM��~L��x�;:���ux���t��@O|�(�>�
���v�?�y�Ŷ�Y~��ܧ@qXG�g����Ql0_%��1�16l���-ڧ�Y�1��*����WYG�d^�=^ɡ�)1"
��E4�A;HOZd.X!	�ωa7�'��i�>v�ϤB~l\�UIL2�����χ0=R��w͓��oڷ槦(�褎,�z'����nx�<eO@�8�P��YSh�/Z�!��MD!�M�+�!��p�!�<ә�~���Px�߂LJF���Q�t/�O����~�:�e��ӂ�~��YQeGM�r��P�~��=c"�#N�9��?,}#��e�A�i=
���7�-��W�.��ώ�O�Tϭ�{[W��S�
�n��+�^��z{x�yQ�J3
1676
+�,���{|So�=���=O����������Q�?	��t?
�n��d��E�Cl�"褎���*A���d˰,O��k5;�>o�/��i z�8��i������7Bb6��<���K��C���E���e�rm�������-��������/R~���4M���'�Q���F�cX�K�c]<���@�`z�)��98��F���n.=\?1�F��(�Yj����C����}s|Y��\$����d���f{φ2@���Ų�2�����	>����A�[f{�dr*��'��u|���~7��RH���G���[ڏ�aC����a���W�t`\@RӮ�{�a�������
1677
+�J�(�U�'Z�{��}�i�N��q~���c���|E��(�0*�߻1��Ȼn#迦�_��$?���E�@޷ȧuQ�?�������߃=Qu���!�
1678
+���Wdd����{��U�I�V���t	���9���,T�/�U׳bUJ�vi���K�trn�g��d�
��S�Ѥ��2�D�On���:��}�/ˌ�������o���q�؂�)D�ѯ����&;��}���~-;)o�_rF�x����J�K�
1679
+wX�cq(�A�hC>=�*�l=��Y�NQ�/��tX&k�Ϋ��عZj�Z)�u�p��+�K�[�s�n��<gx��c��gdsq�֎�nI��t�:�vc�Y��K���+��	8��r�oJ��z�/�lj����$�J	�zz��k�I������k�݁��R�Â	x`��u�U�*<�wK=_LG(�BAp?�)����D��m��z�$� ���j#�G�*�~����U+�D�����?NKx����
��F�n
1680
+<��5�oC���cw��trϵK�/�C]{�{��;��&���3jA�8���>*(��Ӌ�v��C�ٚ ��p�9���4���������������������{�C��]�3f����T�I:|�w�0�K6<mXz��ai�րmP9'oF�c���ђ��Y�#�����593��+�FGU�g��:�b,�)q��3�S��VUUTg��g8g!I��7Fϫ��tRxdY9V�=�0=�t{�A�Š
1681
+���+*��I�����X:kNɍ�u��\h���7e��u;~��6�����7ި����%�FD��fV�S��3�1(Pu������bM*�z���9���ǜ%�I�rg�n�3�b���Y���	.gdI��*K��P��bneUI�JS�
1682
+H-�@�QU���x�Q2g��P��Y��gIy�f�fP�q���9���aeU�̪s��ɚ��9��G\�J�ƹ�%������1[SZQ�(Ѹ�K���(ה��>�V��e�K�&��.ͬER�SrK*
1683
+mc�� �C��J��D"��j*�ݚ
1684
+M&ѷ|�ܒ�4sK�VT=6��YQU�~`

1685
+�xIt�&Ms3����x3�m�7�Y���-JX�w
��P��Ja���K���UN
�(dz��dDʪ��	gϪ*qҏ+g8����_M��
1686
+�J��Bo������9f{N��P��Κ[B<C�X��B��j=~�&ۖ��}��@�3!/���`4��~Yl9�&��=�P"�8�a욡��+�fT#.�%���K�CJ�0�T�Atc|<���0ۚk>
1687
+5�U���,)N0���G�0�VU̍J�E��ZAg��SG�ˆ�8:xf�1}�K7�G��wŴ�Q��ϝ2��i�|$"�Y��}� �U�d#�D�ھ���NK�,��xxD��"�gUW�x�*q��5"=i�"�Ϊ����A�h�(�~�A���$��a�Nl�q�y��b���s\�n��9Α��Di�ڎ�0C�18�S�(Ҍ)(
1688
+S�$
1689
+S��8$��>r٘j�9���(l�iC��$�1e����T#���a�_��a�Пa�CÄy>��6R������&yG����8�Y2���j�AVn(6"OJ��� =�t�<���1gNd�r�N�F��ՌD��B��VXF��N���L��œ�YQK��D.�j�=BLXc�c�h�P�j�7���93fbQ�+�q���N�kNqhTD!5TcJ�M���2�P6���,�D���H������8Kʝj�*�BE�
�y����J�QcuL��2����(sæ�yS|�e�Gk ��O�Qܽ��	�c&TT6��PH��xVAN�:*\�{�1}B�)��j�1mT�����0��'�6��v뭣"2��>j!c+�N4�&��U%NWUyx}<UH�I�Ϝ	��Tl�q�)�W�5o��<�.�ͷ���q�1�:�p�y|�o�u#�#�~�G�ek��`�a�Ox��	�
1690
+������t?������	�E�eO(������ެ_?�o���G�o�&�qѤqX�a]T����Lx��;�a��Q��������ȿ�2�mQ�'��
�s����0����ⰓC���ߕkK�4#n-�rX�P��	
���֨�Ik8<�4�;:�aidx]�Ԩo^]Ǡ�����䏋�?�-�{��o���'�������f��E��}��<��K�_�����ˤ_�2�0��ረt�Ox��������
1691
+��:F�6��o/o�	W���#�ǿE�����*|���ơ��?���ΰ�9����_��U�����ÿr���un���F��)�_p��C���8<�aL'�	8��a�94r��I��}�wpx�"��p85*��|vyżrn��A���;��y8*��7��?cv	Z�3�f�����*r�܇f�tU���KO����*y�5T�Kʮ����whU�4j��3���̱�,eͬ�jWi�,�`�5���P����4��&H�&(���nÆrܤɟP`�j����	'Zs
1692
+5�5yٚ�l͐!�њi�TBk�,��6�Y5(����%a4Ԕ�8АU?�N�Ơ���k@�/�9c������d&�`ڗΩ��)�"RU���t�m,��S�tBj�� 
*gT��k�pu�Y9gFu5 P:�|VuD�3K�D`_��D`V��J�f9�b+E�ܩIE���P�A5�㠩�AsoT|۠�4�đ��4�l�w��J�9O�!c���t��4$}ؐ�Ӎ�n9���pG�����N�L����5�@���;�Q6�j���@�*����3Ҙ=#�-(lhX�`-��*�ܻ4Ӏ	�ӆ�_�3mP���:t�T�!�Ҫ�.K5���S��;�\3��!Mތ*���
1693
+�c���r�o��용)(��Lp85�+�XJ���7橢��Q�Yg��%��1��vbng	��Q��aP�Q��U�k
1694
+]%�)@��2�fL�,M�'�B�RT#�T�������qU��q���v0��TF�����9���U]�MƼ%�a�
1695
+�E3�Ys�p�[�r�İ��N�8a�q�Q�QU2�C��Э�@+R�O��ߤ�|?�@��!�����������;:^���3�;.�[����;껖�)u<^��ؚ�ϯr}��Y5���x�b��}�j!�E�p��	��L�������n/M��x=�ƌ�z�
R���E1&�mR|S1�2<T8RQ6l�T��q?ZQ�Wܥ(�6<��nE1���(���x�2��fEy`��0�'�ي2`%��W���E�Xp�Z�+0�,@G=� ��`U<3\4FQL˅tW<�(*J0V�B�'l����c�#_��`D#n����	�5'*�����3B<�UW<p/��I@`�|��k'C=ۦ(�����F�i��,���Md�i�`-�U�h�+�F�+�JD���F@���`�����d��Ӂ�
����L@����[�ր/�Z�_lx�k�|E�2`�C@��K_���
a	�3��2¹пW@��C��=
1696
+���qh�Ŋb��X�(�]��
�\���O~
OA{������?
���9Ei��y�������\��*�5�~
�hx��`���w��"�+����^QR���?@~��7!`�o���j�(\�'�`����/��@��,���<��7(`@�����
1697
+��O|`�j��5?�_�0���~ʿNC/Ff,8`e��|0k=�=�`�Z���
P���m�v��[�>���/v�y
1698
+3J�2`�.�f7�{�Y�7B<�4�B�O]7|�F[c�^��S_�EO�(߆+�Oi�qO��;QoBXϗ�Q��J#���1�Ic�����u���8�h��9�����%��D�r�=1��k������,Μ��dsb��gnbm]A|b�S��ىI�%;Qo�[��T��ĺ����W�+�[WAXm�&ܴ�SQ&�Y���z��x��]_�Uq�F���A;�[l�u��f'��+���X'F��@{7�`OA�6d�,#G~������W)`�s��V�t��H��-��
1699
+2�6�F��݆,�Ϡ
�n���"�
�*1�a�K8<*��H8�'3�*�<(�N�N��I̲%l�z3+��/����-���S���۞�t�g�?*2���"V��)<pq�l���{�i�O/A|*��/MI�qB\���a� �`_M��p/��/ �*�q��e:Kbғ1�D�;v��'�F1f�X�Dc��5���C��5���T�u��v�:�����1�����T���t��ր.�,痧�_��/�b-�)O"��{�jS,a��d������ȼV�+��.���,����+��s@�x��o?0�nV�Ѭ��U�߅�w�^���RC�zu�e~���Z�.��0.���h���x�"ko.�R@��~��e�1=>�!���y� ϵ1?(k,�E1źn�����m�`�WԱ�9�\�jǴ��O� >��
L;�d�ϡ�&�1=�yŠ�%q����aA����oA��&6hu�'n��'�i4C@�m:��!�/�D�e�d��<B磢�2%H\L���韣���VL_b�51͞������(�$����2�P�d�2��=�5(k�e˚p���D���(��:������*۠���Y��l��H���}z1<=��[�>�����z�%C؍����WːvO���q��i.�fb��L���[sh܎�Ju�K:�ժc-�Z^p�Yp��&��龉OL�P!���9��8�]�c���7�c�4��h3@��8]
1700
+�Ǹ5��e�C��M�����k8��c��脰�A9bŶ�Ŷ��m�G�8{�GSr…�hP�2���U�6���E���x\b��$�*�P�z��<>HƏC��F��D�2����B�Du��^^����׭F`���&>�V�+�U�ߚ�����
�]&v\"ݠ�V@�����4Ї��A�F;��a �!*]����5[�v~+*�C[�w/�������J��x-*�@[a�D��{����Zz����N�內���OWa/B؈��gz3��yq���ތ~�?f.����k���cz�Nǣz���-�h8AQnE=�t�x���c�;���B~(�D�;���D}~��h�ߣ(]�9֎�N��_��P���?��`�Ey2!H�1A�X"��u�pKo]V�d�G[�����O)P����y�Y���:KW�m� \q޶v���5P���3�PFٱ�ڰޞ����z��v�z3�p�噦(eA�ȨˎO4� 
1701
+v�����	�N�ު��yl�
6�&�e}��U����[��1N���w2SQ.�F�e�F����a�e�E�e(�p�����#�DZ���Qr�W��D"Ym�j�U������\{���ژ�T���������@Yr����/�����1��c���P��RQ��#���bY`蕏�x|/Wʹ:(k`��,�}_Y���,�2m׭�I�]�	�X\�C�v���u�Կ)}aN~LQ���~������v�6=�(w^��� KQ�0�	�7��,����[��In�^��Y�4�A\�'r:a��W�����@�z���H/���H]��
1702
+y_�'�/�ț�U����wlp܏���(�_�p}��J(gg���3b���Z�e�%����:�)�g�9kL����U�v��n����B�w!�ݺ��K[���W��^��!�p���?!�8\��p�ҹ"e���y��X>�,ȷ���zi_y�C竧��o��%���h��hȎE\߂��3�i.c렆<1W�I�E�>���e����?�����ϋ|XyWB��i/C��y,_w�rn�ٽ�&���S���
1703
+��_���6��_�Z('�9E���ؘ�;�}�
1704
+~DZ�]�v;�}2�_�A��Wu��B�����yE�G��r�5�g��n&�ˇt/h�Oːg��g���������l��G�����1boԍw
��d`�h#|cbЦ%~E���K���y��4ק��3�%E���p��q�����_/�M����C���#M*������؍l��i�D=ׇ����3� N��-�Ҙ�Ԣ�,��q��|�\��G/3'9����6(?�E�
�ۿ�0=�����d�Mp܏
�np�/�T^�]|��þ.�|� ���%/_�O�:�[P֦Wex�ehh�XÉ��u��t��UC|3�Z�F�۠�C9��xB�{"(	�}.B��?+ʠ����W��٠떙���9�r3<�q�s�����ӿV�C%%7�Ƣ�*�O.@YƷ%1XVnp
��,%��D�,�AY3u?8n�&���4k/���<���NQn[g|�R���3��s�����҉�B��I������6������
����4��W����W�����6껅_ǿG���b#�O��������C�k4��o�W���W�Q񧻔
1705
+jW�箞��þ{����}����[O����W��X��)w���O��eE���o�"{E�ߥ��]���{����~����'����C�;x���p2��>��>���氅Ý䰃�72x�?���p8��R��I���
Ws���Nr�a��x����;8��dK9|��'9|��78\�a�;9<�a�=~������'sX��>�����j[8���A;8�������'s���w-�qT�yd��/�Gb^�X�-�h�+��W�dIT�K2PLG��Yi���fgVD	��04�H
1706
+n�4�Q^q��S�y$���ą�C�C�q�Q�<zR�>��;��lBI�S��hv���������������u�?�.\��	\�z��s\�B����u�[qݱ꽵1���S��?�듸>�橥��}�=�}����觬�;!�x��7׳���Q�����"=V����h]}�.�V�p����Mj�]�5�hl����7h�w4��6]�%*��eG#��;���]�_�\]��N�Dj�	7ie���
�j�t��xV$���4�k�͍5�Y���6n�������,�ۚcZOGc�����ҽ䟤]�N{T�nX�������z��N�䬌��y��`L�2�
1707
+�Q0��U Phk�*�7c�t=�rC�OTi�Ƴ�g�1�G�pg�=N�#�C��u�hnG�y4"?�͒/������f߿��ڏO��B�l���8F��,VY����B�����}#�i���������A��9~5�!��K�R��i�.�oo�:=�_8����
1708
+~�~���H��'�ke��+#Q�:_��t�dg�_4K�A.��{�R�{����{����&)����g�n��T�1�?�Nj�#!�?%��!��/�!��	xV���B��"�
1709
+��9ߧ��߯ȩ~P����B�
��B-p��0�x���W�rnU��+���|�g��Q�|[�x
1710
+�7��َz"��Z��x�߀<��U����B�>�R�#6��:�5�'��c=��~���$�
1711
+}��c�o8օL��{��@���'à��9�݀v��An�_W�/W��r��S���i��
}�:�����<�����>�^��8p�.���<�^���I���r��"�b�����X�s+ʷCȹ�ۡ�'�8��@'��p|=�g�>?�K�n����
1712
+���=�q��uJ����B�[ڌ|�\�?Z=��'���=C���qw���G�+��~v�}��u�v�]ٟ�G�x�'�Ql���?�yZ0^�X��Xp����4��9��J������e�8O|~�4.fǿ(����O�!�o��{e9w��?��_��M�{r��~"~���o\z����I���Y����B�KB���]<��B
賛���*�q*�%v�0"�3"�G�@�����9��H����C�C�C�s�t�<,דJ�c}?�],g�_���[���4�KE5�o����v�%�(��C�'�o����ؗA��������(�_ g�؇�;!�:�I��O�q�B�&��|����<z�����B�������]���x����߀�{��'ܰ���:ٞ7�S�s�г��x/<�����>�B�0na��B�	����5���yP�csO�r4��X�}��r.�d7���C跅�!����z�_���!��.
����
����	��[�����R��x����t��B�W'�I��Mr�wq9�W��pZ���`}�C�?�u.���*�a�A���rt�畐sG��E��w��������!�.��~9�'(���o3z2N���ƻ!��]<��Ǡ�ً��A_qD�'�!�C�3s�m�֢�z>�8���8�f�=��qН�����|��_*����s��.X��à߿�?��׷�:��b��D���r����ÊBW�����h��=�ǀW�KFC䴄���+.�������fN1���ѯ�9&7��{���L��^��c�c�i�V��VاI���<�۩�5A��'������c!�,_��.A�+�Ɇ%E��ȹr�Oq9/�v|�X���%�]�S��m!�_����>3���e���~�u���,�嫖��@��H�>>)�n��;{i���B�h�������P�B�Z�A�=@�����Y�`��R�|!��MaO�w�=�@Τw-X,��<�7S|���o'�ӱ��ۙk�x�'D�H>��Y����o�-����!r���9[�������k���x�'!�T�r9���gUP{�����b��%!�x�2����r|n���o��=q��.�B��5�;}=_>�
1713
+LJ�^�{>��+P��/��"8>9-�<w9����h���o���r<ֶ���U��}ϝ��弞P�I���tB��1~�'$r^,�h�a�
��F������#�3�5Rv�N��ɷQ��^�m��ag��\z^C$k�<�0zv�Ү�]�.Y��H�m�6p�]��v󩔕 �z��"���%2��Us�b���&i��7׳r�7b$2�m��`I��8�f�HzN�5��FwY�X��$)�!�a�r�ɔ���Rt|#�� ,�;��b.��M��I��tgw��Y���"����`F& ���Ԯ��t��R�ϑ�=����g��sz�&L�w�'�Y�9��?w������[AN
1714
+εR:CNPѲ3a��j��i�C�I
J� �&=bz���<P؇�^�7�'|���^�9�O�MO"&�mDj2+g�-���̄�
I���R���qCw�����U��g���!���u!ݣ���g��$s~���/��W����%g�XƹI2���dH�����
�
1715
+�է=�WS�s� �%��ں�i[����b���ٽ����޺�����k���JЖ����u4ⶮ~��<�-ۙk�ں��tSKZ���q�Ĉ�R����uvli6�"u�����'$�f�ﻚ�H�v�	����6�}N����)Q�$�	Jl~��� �:�K/5R���tB� ��\7V'�7�u�n�p{iR���Ő�Y���/���2?H|M��-������$=ԆdU����5���Ag�xr�������ԉv9-�g
1716
+�Yc�Xv�lZ%m��S8a���R����!lJ�%=�A�,�V�q�iX�:�c�Fr����jAR'�;�\:s��^�R��;\�f�9�x��IϤi�a'��C�:&/*�H�zIR���D�FI��r1�J,
1717
+�?-98dd���R������J�vI�%%b����R����B����,;�L��D=�'G�j�I�/���b��g��Zٖ��Źcf�@�bvܐ��k��|�3m�n�	my;ti}��/������RRs�
$@zK.=j�Lt��$�atYc����f�TF �	=��&�����#N��M��GUQ"���ݓ=�c���8X7 ��-����7}W�7�y���T	�Ռ��g���h1H���Ä��n��c^�]^�ZƸ]간�Rr���“
��n�Ew��[��X�W�5��E1�q�PIl. �5��۠G��F�%�,�Z֮ }I���J}u�T"Uԝt2�(���X���A�r[i�(yg�N�є
1718
+"|=�+�
1719
+11Z��k�e���Ģ��N�X�ę(���b%�(��s4���֌.���Dv��y����e�M�Y��RgN[�FK]m��0��;V�	R�W"�Bѻ�f�V��f��"Q�����0�5��b��Vڢ���5�mg�L�z�b��fK�hFɆ��G���{�%5}5W��l�
��3�6PF9�S�m&K�M2JF3I:Ԡ�aq�YR);�	q(��̄2j*�}5�2��ىb�+���Y�4R�U_k٢�<�侗D���1S{���hx��
1720
+�"��ݬ���X���	��4�҂-�(�Ly��]O-b٣Jw�K�Y�
P�d��Q��8�
1721
+�C
1722
+Y%��"��L�ؔ!m�0M�[ߥ%J#Pp�̚�N�}ͩJl��O-4�g�gL�~�ϊ��&3�i��F6m���D���5*�9���
BOy�d����)Jj6��"k�d�6�[���{��3��Fʚn
�;�WE�5�
1723
+�z��+�E�S�xѣ�`�q3hX8TN���x� �^�D�EH�B�"WBʮ��7f���O2��o��
�әdM:	�iKG
}�Þ
��!)I�_���O��<#�������xTR�#	g��Dr,x�"�0^_'s�;��cp��1I���?�F<�FF�#l�B	�)W+�4bz$��{��`8��y��,ֻ����s5i^�޺�C[����
��o��)���U�<�ӡ�y�{�����J�n��	G�u���S����w��_�{ԑP�%�v�_�wOk|ͣ��({�BT����������b��]x)�����z���@�{�r���|{�gc5�����_���b��@��D���-�w���X�I�?���d~a�F\*��NR�{~��^��T(�~1s`��}=���{��/�Uށ旜D�o(�W̟ЦQ~���j{xF��~���鿨�GO���L�fo��йZqݯX��e����?c���'��"�۰���u�_�S��~>Q�?E���������[M��
1724
+��G|�����?�L���Ur�o��^��\��>~1ocgg�W=;��U�ɀ?��+��:7����Z6;���b��	j��:�^�>s���9�8����P���>�?���|v��<���>NyY��~�~"��L�Nӳ�23iD�g�ڵ�[�6��O�n]L�5�]�а��~]��54��z�7a�<kUl˻��d3at'{���;+k��v�q�˭İ�WV�Z���9Nƭ��dg0��S�J�sV���R�N���U=�}�ݝ��8�J}#y�_[�
[v��sR]�r�a�����欬�O�Ӟ+O���I.�&��Z^���Ŏ�N�Fc�P�H5-J͍��v��ڤ5ZK��&�j�^c[z���uH*jؔ`DZ����¹�Vn$���+9=�[׉�VƵ�72��o��P{����9�K�^Ymj�O��
��Zo$[K-빴�;�>2�rS�(�Z��f��7��M���	׳Ft2dO����񼞳F�Q+�|���wjV��Vvnw�
1725
+J�뗫�8��X�>t��ߵ�|����c
���.J�}]����o�����>�O_��hݾq��J�I8v*=����^�iul�����o�㩢߉{�YY�&�WRG�r�v�r}	'��>���ku��	
1726
+��N�[�_y�s�Y�>a��)d���[8���{p=F���U�51z�[SU�
�P]��d<�>�>Z_���̯Z��Ba,҃d,�%�������'5K�;�ۺ����^9�8��g����.}c���D_�z4��FVU�c"�c��J��/�TqFv%�9�&�W�'��ҋ��R�I�J,�7l�:G:Z�>ݬ�V�sr��"��w}���#NR7��.1׌K�v�-A:�J�ud���cKSo{ok_��قB�����TW�'k&v�C��k���53��'_�$���̜�˲5�ur������������A��HTꛪ
1727
+z�(�Y�� �0z�l�Sa~]ݙ�ĸ�^�{̓?�Z*��Ц�H�|T8)��x��@���#�ELwqH-��\���V�b̥�ēL8�4O��E!"�U�+�J���=\+�0�-��HӨd3�"����.8�#c����� �a=�I���>�a����|��s뜲2�{�M���7X|���β�}�ϾC_O�O�p�}w�񎩿k�����>u�}7����<�9���4{3^�(�g7/>A�4��i��?��	��qm�le�Z�vL}�\f:���Er�&�9�Z1��䈰��֣Dt��mGg�ʦZgJ(!zz�7�N��nr�~@����f?[4�xE&��4T�$��)�ej!��:���9�NM�<�>��}���OӟJz�Bb�2j��S��O�� �עu�ˡ0�hP	����_���)�l�����dS/��Es�7{�Uq�wCyI��P��R�������6( ���7D�&f7 �*A�Ũ�Z��mk����¨�&���TR��k}'�#��F�͜{�Ι�{w7E[�����9s�̜3s��Lf#�ٝ�yw���=:�QE�u���9ʒ(K�%
Y%��ZR�)�0R$�5s�q��`p�•d�,ë%�g�W�w�<c2�ASՍŰ�X�Jܭ%
�L��9���-sCk|��e���s���v��'ܰ
V�Րڴ/��|0��̝�¼ r�m爯��t�/�+��9��&i��w�׿��_��_�l��pͿ���}��w>�|���^w��^|����8���^����^|��x�w܋Sx�/>���q/x��x�/��{q�/����x�a���J��	�}��҃��<�=����נ��w�Ej�k�]�RY��*�m�u�0sYkaY|m,[+2s�|����6ڒ��8k��z��+�6��F�yi<uAIӶm�f[Z�N?��˝�-�r�$�ܜ�]��
�mQ���M�S�dM.˺�VK��oPh��]��,lzd���`����YD��!fR����2�%�T}\���H��B�}��jg�*6�T�s��~g����͝#,1�j��sM�A���b�|��M��[Y������f1M��ٯ�\fu�ݒ�Z}��$�N-9Wp���VlR��:[q���V�D��h
n�w�{�&�g]�;s��^��-,i����G6�����VO�	�}�i����.6��ظ��B��[Ҕ�P���ϲ��E���!c���bߩS�{�D��ẖ��ŏ���3��]�n[1�Ms�O��i�kH3g�M
L��ٜƶ4	�6����qz�B��q���ws��l�=|�Vܚy�4���8�^��[�Piu05"�ۣcu{T�n�x�U��[�cu�h��t7)jn{��2��s�.SN������k'���f���ֶ~��$:�ƮPc?�#@����+;�Q�[�]w�[��	�$h�<,�-�돴��t%�R�Vp�H��V�uZ�ib�=��'�a75�H�Ǻ�Tr�!CY;f1�%!��q�K�	�JӃR!�YZ"�%-|�o�w'��p���Y zzM�'�;a��LͲ35�u�f�L�$[#r�����������0���,^��`����'�'�_�47s�чs;H̲f4B�ex�l�+����[����`ݫZO9�}7��1h��X����'�[�'�[ԉ���:7ܬ�
7Ǟns�-��,���2���]Ò�1�W���f�(3�ڑQ�V�o(��_7L�f��tf����*�?���F��ƻ�T�S������D�x{fݝZ�Σ�}լ�f݈3�5�3�5Q3�5J����Y]�?wMgj�:q�G��WU!��L�F�������&��\1M�����3�4h2���N�vS8gkm�
1728
+�s#V͎D���>?Yf�u��Ԝ� �s��n=PZ�s�=m����`|���yz:��5���K
lVt��L��=j����"�o��֌��/ɦ�4�{�U�;̅����?{��Ƈ	��n�Z�-5ܫ��5�C"��O���\�P��֖��/;?��[�F��5�̅�wvbhi�K-��1<15�b��k�7�/�K��v#�����uf�1kc�s5��y�oG�u~֪�&��߁���+6�'�����&h)_��.��Q�h]wRf�T����I�f�=TMX7H�d�ËS;�D�����!
��ͷ:�p�2!d�)L��<Y�)�����][*ÖH-���x%/�!��L/N�})5ɦ�ߝR��j23g�����ߴ�����Iil�J]�3��WtQ����~W�*F7��;�by���;��"�|���T��v�&���aҭ���=��\}8���%��j0���S̍�͗ItipqR�P��}�4���v�@�x�z�@�;�-��,ug����Z"��}3`;�q�_ܦ�[�.�嫹�&�P���s�
˅�aA�dn73w���q��Mw��^ۺ�|�f�ڂ�G-h�}���Ϝ��AP�q6��&W��v�]�$Il��U(�z_s�!�V�R��M^?w߻y�߼����'���t����:���}�-m�T��c�7�﻾C
�y�֏��n1�^��1J���xJE=���NL��
1729
+\�I�O?_y��K�d#d��	sC��aD[0���Q)ң)V1d��(����k]wyf�/d�݅1v�η���%_~k��,���f�����7YU���6μ�u��U���F�%-o��ސ��E�7���W�{ch���zM�!в�-�*Z6nx�5q3������9�Kqp�>�}���w��b}��ƺ�'Ý�a	k:�'���Ky�bo2i���/]�ZZPf.�x�/�8m�_Sv���r�C>�5%�K�B�i�Os�i��p��X��6��>�銚Kk��w=9���k�l���C�����@~L�6I�5N�Z��q�����; �㥳����V�+ht�q�j#u����6�Y�J4�^�ڇ�\�����wa�
�t�
�g1nN��U"w��&�.�������!"��&�Ձk-=�q��U��mnkK��5�(�0l����m��7�[�_sS�Jg�#抃�m��5��U�|�󅙧1b>�;��:��Dz��x�ς9/�ʆ����|�����ၡ��1w[I����q��Qs��V�(1K&֒~�N�fx�Q�%�
�w�
1730
+Wq;�ʅ���X�B�q��)��yh\��8\,F6޷��P+(�!/r��ty3?�֐���d͝U���c�(X�uIpm�
��U���	�1����t���Q߮h?�=�8=��>$�U/G��m���,Y鲖S�����a��8K����}�\�e��3g>n+��Ky_�
1731
+Tp�{�����;�n��p�Feʜ"V���;���u�!��� 5Y?�m�����C��6X>ݘ��Id�[�N�3�H�@��7�q�{��D�����Q�B$ƻ�x}�ö/$'�:��j���zL����wz���ց>N�=�҇?\��$�t��qoz�~_i{�k����}�������Q�3��	P�}���؆��������xn7*��~��6�{�ߟ���z�n��6�ew"k �O���ߎ,�h;e;�Z��8!����S���s%��Z�ۮei���]4dw}!��އlѿ��3������Nxj���ԶÚ�v��Զo��)Hn�����l�[ߔS���O�o���o���GI����mn�a֜S?���<w�++�L�yKYȉ>M��+�~�]O��O��܇C�Je[{�Ljg�����m�C�?]ߊ9�r׾�9�c��q��J�X�������
1732
+���g�{2��*����<K�?��ˣDZf�q#�z�Y�����Z��~�2�M��n�F�O���"������&��� ���]�@nm��O������M1��ia��]��^������g���:Y����v���ᛗ��C,�r�����>|8oǝm�?V�yUs,���C晁s�ۼ�gn����.ޞ�~��v����Dh;�d���m�ZYu:����*���
1733
+�����q�Q�k.�5�)�M��ٻ�W~��	u�XU��sM͚$X\L�0��ճ�2�l�|���o[�*i���p��<�?��q�eSU��QU�HW���qv����ތ�4����]`}���+\R�E�qŰ�8���1|D1|�O8����O��k���,b�_u�O���F���քmR�h���nn�J�,z �ZM�^���(\��#�&n\�Q����n�y���5|{:u��E�͠c���m�	G�=�ns@r��cX�4�-{De�QA��:�����S&��^=$�L8N��/g�٪mr�hS���?"�߮4�m�D7w{_i�nn���e�keis7���n�L"��M��}���k��}�m3���Ƣ��o^�u��`m4�6܋(Jp��R,9�k��g!ٙ;�V/�:d�O�bee�Xm�ҭ%<�%쵙�-�{��6H�8|Cs������Z����vuU���^��a����KJ�ۏ���Z�~mg{/�|�nm$~:I�r��xp�5��j^]+n�57�̤[����#�F@��Yq[�Zy�q���(�\`�oW�}w4����>$��*�i��W��u��ĭ{�h2CZ}+���m��"߭�^<�a���nC��^��5�n]�i���}U�4f�}�#�o��W�P��Xu��7�,�O�~+�oV���)U��n���L��&�l�@x���i9{+�L��ޛ~oߵ{�z�_��nw�݋~����}b��x>�k?Yb�x�}�!�v+h0�\i�Ӵ7��8�s���>E ��[���z���]���t�yp�۲��a6Ws�&�1r��{
1734
+�p�;�V��G�G*�a�r��[u�< 5L�,��aRQ�T��d�4��W����-�]�g��u�9��t^��99����z[:O�u=j��	�o�e$‚[��;:���7x��K��9����� ��څz��p��:����f��s_m�}MC��_����D��ڌ�ڌwF��r6���:�i*e�`1�ޞk��%��1%��'��j�\�хi��<�M�Q뢊���_קu�w��E3�LϝJwMMŨ����Ϋ
1735
+�.��
��N�Nw�+C���*+����8�:w��*/Nw��_�_8��*-=�K*�ה�����)�pb���S SE(��6�(�V-�
/���VT���M��򊚼��%�F�)a��>S»�J��E��'��=�A�
1736
+�N�{5��e�T�;*;�-�,
V&��d�����p�d�	,�Z�YeSWT���E�P |���^�[M��иG9�f�)���u-I^�rm2��O CBfKXg�hZ����\;Kي��BᲚ0JQ�+�aWe��U�`U
�^nm(�ZRU�;��V1ҢO,=����f-,=c�i�J�:{�"�i�3g͢i�Ocp�3��Y
��fΏF.��h��E�O�I�|�3�0�����t�=mќY��|'�\<g�S�0��ZR�j���X���!�������2�v,�9��q��X�)��a��T�qux+����>Uz]�&�u�`Y%�t�Z,�a_e�����7BQ���&d?{-
dL��a*�L�W-_�qM�����X��w��,PV}���
1737
+�X���
<�`yz�TV�4���e�Rƣ�X��L(O�?\��X����`�B����Q�
1738
+הג�hS~�b'�O�$>T�����Z���̺��~�s�߄JȤM-,�d#v�7vrQ��<K�}r�]�5M�U�N6-��f�U�d�dD�
1739
+!��U���*Y�d浱r�u�l���d�1Gm��1ͫ��s�d�,��5bg�9k��c%��W�Jj�z��Cng���e�ع�t=���X��t-����l�(5Å֙D@q��啕6SɄ�+��S��xF�kCy�Y�VLm�7ӣXp�T�k�~WU�*����27\U�⥐�>�ǁ��b/���q"�d�V�-�A�sT��Z�`B�s�Z�4#����'R{/�e��,*�E.���M(LW]Uj@� �%�rbK`�SSYV]��l��2�O:J�(KU=��,�V�r�_�-t�Əd/űg6�+7�gQF��`��oK+3���-3�<�(6$��+�2.�����c~�j"͵����C��-�A"1h'�A5��oA�UȔ�b�r�(3�R�b�0PY�����M�� ��Y�ڲ~%�A�п��x�pf��,��]�LDF�lܹ������<��u	7�>���7)=�c����.�����C�d뷠�#.�����x��OC|���x���F|�V�"ħ�
1740
+�ew�r�/��:ď��k/��[���D�L���?�\��<��d�S�y��$��[�o���F����Ɋy\{�Ió�&�s
?�5|"���"���' �+
?��ɪ�Nw��I��|��_��ğ�Z�xV�j��Gj����j��O��6ħi���ix��k��$�o>�~�gj�Y���ᕈ/��5�Wk�O�X�oC|��ߏ�F
���h�k�ߨ�]�o���~ؾ��ߪ�G"ޤ��!ެ�o��r��4|%��z�B<��B�C��F�K�G�[�_F\��+��x��sV�>�>��I$����|��g��=�_~/A~�w~_��b�‘��	�'h����)&~��OG�$�=�g ����߳��o1^�N1��t���C������=Mr�	a�)���E+�"���[���Z��B�q�^�!��&�F���߿D�_���">έ��G�U9� >í�8�'�U=��s5�E|�&�%�W�U=_C|�&�m�����B�1MϤ�&�C�3�5���P�?�Mσ�����E� I�S���$U��/JR��!�L�
1741
+�i� �>I�����䜃�C����?��c�_��\��G��z�?��F<�����S�܌��~���_�O��!���[k�D���3��D��y��伌x�&�S�_��7��#>�݈���`�p�3Dăf�:q��ۏ�����U}F#>9Y�?�M����$������dU�و_��?��9�/F�o�`���~v>�xnX��M~�4�ağ@|4�K��񝚜
��RT{^���Uε�����F�jϻ?V���4�#~v�꿏"LQ��Wirv ~�&�����!>X��T��9�O#�)�-�f�?}���ߦ���h�F�=�ܱ��S+w"�S�v�����*��U�MG���x�O鯶�I����W!^�_�lD|U�7#~e��݂�fM����A��m��9\� �P�� ��&�9�wh����j�w���v">h�\_�8��8�q���r2�0�#�_����U�1�_<@���_>@��dį��{�^Ë����3�e�:�!~���)�߭�a��h�g ����9����(�����T ���ʩB|H�j�Zħ��r.A�P�s9�?�+/��4"~�&�:�Wj�܄�u�j�ل���r݊��-�k��g�r�B����/S��0��4�E|t�Z�S�OHS�݁�������&��W_�������EZ��#�Z+�#įHS��>�9M��_ ~[���zD+7%�KZ�������l�?HS��ĿD\��"�K�OA|�&g��U�s�JW�7���t�ݟD��t��<��q��G���^F|Q�o�@�4]�]ī4�;�X���a�u����L����A�6ijE�E��t5��A�M����ə����>�{49ň�f�rf >*C�>č-�"~�&�\��g�um�����P�9��<C���o��K�:C�W�#~����o��4"����\��ݚ��(C���x�&�)ğ�P�Ļ4�/ ��&��@�?P��4�'hx&�4<q����Z
��-~��>�74܃�
/F��A*>�c4܇��~
1742
+�5|�7i��7i�9����~�?��
1743
+�s�x�^
�E|��_�x��_��O4�
1744
+ķjx#�;4�:�?�����?J���)��/�����ߢ�#���?��{��)Y*A||�:�����,��>D�0K�c�@����F<��ك�JMN� �y��y����o� �oY�<�X���"��ʝ���,u�����7�����L�o_&ֽq ����������#Y�x�sĻ4=7#�E��oC���ʿ�T��&(GX<��!>4[-�E�Gg���@��lu��1Ⳳո�O��4�_"~A�Z/��
��lu>��
����_����ϲ��e�h�@|�&2�h��VM�q�?����B�MM�Ɉ���o�#��&�tĿD|�x����!j�.@�h�Zn5�3���������EC�v�G�f���W�v�ʽ����u3�4�oA�^M��X��G���oF|�&�	����?��GC�y�K���O���
U�w���Ɵ=�CU���_?�ۼ�A|T&��!!�!��e��?'#X��A���j|+A�y�:�����Z�!��V� �)�E\E|����S�����a�>�8L��*����㇩��爟��[_���
��Z�B|�05�oG|�0�_�"~�0�>�"�I+w'�MZ��"ޢ�߈�i����aj����������?�ݚ|��9�:1��sT�3?,G��C|J�j�S�������rT}����Q�F<���`�ڎk�4Gm�
�7hz^��
9j���M�}�D�.M��P��C�?����ğ��M��k����6�=�:�������l|���7���j�Y�?\��p�O��y4�gk�E|�p�?!�|�j��ߠ�3񫇫v8�M��0�;4=OG�i��΃x�f�U�?��s�h��C���7#��&�����Y��P�G�G�P����ފ�Q#T}�E�3B7��x����_0B�o��F����P���B���[�������dI�3��
���*���>��p\np��0�م���{��"��$��v��/�	��	��F<���M������GO ��禫x'��
R�����*�G�&G�oA�h�����\�a=&0��X�׻���y�u��T��5��sR��3��TS~.��!�o���|�}5�_w�w;�9i��!�8�H|�~�>�?��;��5�U���6��t�������?)ÞA��?�Di_Xwr����r�w4˝1�ƛC��Od�o?�[��#��u����ո�!������7�&�W������&~�Y8���b��l\?A�"�ڹ�|��?B��2|.B�{��
�b_�s�����^���bw�=q��_{��+�C���#�f��-��1�:�y�q�P��_B<�8_7��aS��;#�^�������Z��#���?�?��ӸQ��!~V-�'�'f������fۗ[��CV�<R�׈{W���~�����>D��+p~)^�X7� F�4T]tћ���W(���\��?��X�+�K��ew����<��.
p�����PK"@eE(�
1745
+�?B
1746
+`x�h~^�b��U]S��,�	Z�*��si~�p�3��Y�	^x(���Ԕ.)�U�Tq��ҥV��v�N�;�.w8U�p������q�s���m���;u
1747
+��w�io���6g�m�q۝ݶ9�msH��`��il��6���NZ���;Rms����́i�C�6'����԰�����ל)E�+.g�\K�3���=
1748
+VV�,�,�ǵ$�/+-㲘��9��t�¡ꀿb	s3��k%�Ԅ|묙�_L�%;�d&�W��DL�<$�Y�z�^�?
1749
+�G�(v��+�V���� �)��
1750
+����/ה�����Mj��/�����b^D1/�����9S�M��<�4|z�3>�,�	��Y��3�偸<�类j�'��<(!�>A\��
1751
+�i�7��(�0i��y�3@�Qh{�O�2(�*{@��y@��ksQǡ��ƞ"l��`(PD{A�7�*,��y�</���GY�	��BQ^P���Az>(���AP���,��烸|���A\�+��/�� H/��fSsU��g�j��j1R�@!PH!R:��B�Z�u����[��oΘow�O(Po��_�B�EP|ς��`6���xh�"%��
1752
+������c����(��ryeh�rNCi�y�PYp�<��<p�<��<p�<�Լb��~i�_���~i�_�
1753
+�>����x��y���8���3���8À��]x��e�w�]x�a@^�$<�O2���IK��Aq�|	7�8E��=�X�eU(���k	�@�F�U���KC���Z��X�?��:Pz>�,�W���j%�*V[]mal�a+�a�7����5�P�P<��z�o-�C�<l�j���8��j���8��u�4��{��A��� <��5�c��	.j���F��ʊ�0?�	�A�_*�6\�
1754
+�-��Y
�
1755
+?@^S�Jq+@��8�Nm�S��G!ԭ�i�G�x�iA^p?����w���Qy���/���2���/���2���/������找W��^�̇��,��"�,��>��0��LX�tyY�B���%�wz� .�`��0�.+Е��r��,ă�26)��� �	�[{�[���T��")�	����yu��(	a�a�a�a�a�a��€u�
1756
+�	ad����a~שp$�`����a�(�Fa��!=�pHsH�L���<��?��������So1��g�0g��|���ppD8��9"&+�D�ļ�R��0�B��_+�A�\�SU�1�n�an���
"<
*N�'�z
1757
+=Q7�pJ��Sz�)=�E���R�E��z�W=E�~��p]OQ�~	�@�dx�<���)6č �}<J���{��=����W�߃'��^�{/������ǃ�^�̇��,��"���hv�0�z������<o���0{�_��^����vO�"`t��[z
o��"�M��^pS�Q�߳�@���^pV/8�e�GLK�y-lz����)t��KD�ށ�����*]I�����_:�-�)��$�o��;�?I���O�B�z�}+������z7��������'�ZB�O�G�V�A"��dI/%4����D�[�$�� �BS9�H�(Şlj^�_M�z��(�	��F/u��W$ofi�Q�O詄>��%���bq{�B���#�w8�B��Eh~>V�#��F�	��$B�'t
�L�M���<�������E���1?U�u���lB/%t��k	}
�7�B?H�'	��;���Yi��@�"B�!t)�C���Ѝ���пO��a��6�1�� tr��3	=��	�O��	=��g�G��'��}+���AB?A�	�>��$�W	=����z!��������w�����	��?$t7���A��4��ߏ&�I�>��g:@�*B_B�
����7�VB������O�9B�B�	�1�� t� I$�� {��$<��s��/	�#<�
����'����I�eޱ�%>��ń�5�^�S	�CB_@蕄^O�k�[���1�-���͔<�d��A�ՄޔI梙�6y�ǡ�AY�8?�b���rB_�e_�
�
���τ~����s�%}tv|;�Ix�d��<���m��N���<B���!�������$�=p��n�	>�����з���%�ۄ�}4�_#�2 �{8�O�lBW���=�n%�nB)����?&�#��w������}�"s��ńg���H�_�"�n���
1758
+��C��I���� {9��Ձ�Ń���ϴ��?X����¿Ɂ�v³Á�u�3x4_=�Е���Їb/:�O:$~('<��7;��%B�":;���:�r��&eyX�C�#��]� ����ԁ���r%}~�����R΍���r���!�{L|��:�c�3���,��+~C:ܟϋ��SBg���wb<����	^�s/��ۻ��Y�Y��y&�B/p���q	�=��:�<����cِ�R����˝N����܁�'	�}؁��O�_Δ	乌�M��I��R桇;��>��:\���П�uy�&�I�����w�,�τn'�g�8Qғ'�!�9��5��g�~ }^�<���ʚ$y���e. �
1759
+"�n���M�ӏ��Ʉ�@�w��=�	}�[=�(��@�A����3&Ƿ�R��?2o$<;�;�;v
1760
+Y?!�S��7�^f�T�=B�L����]�or��!�<������x�d��	�y���Пzr���0ȸO�;	���z��c_�;��N|������{������W�NB?M��_��'�|B��'k8��B�"�Yd���?"��WH�C��#	��P��ZJ���#t3�_"����E�I��I}N �bB	]G�M�~����#B�Kz��!�z=�o&�~�Я�SB�.�C�%�Ʉ>��+	�H�_�B��=B�&�УI?!��>���	�����|���]�Y~�R��ݙ�7�t�~�]�ۑ�����{z��H4��qG�1n����u	��
�:�Lʥ���#,�7?��:����.F'c���G�r����9���:)��o��Z�n~����r��)w()k"���V��/R��M�{K9;NY��1f<�0�0�]�?��O%��.�����j�'��t�G:���UP�=����qgX�+�{�\Z�͆��gd���~IR&����������O#2)��$�+#��e�j�%�'4��@YYD>���d��t�EK���]#���Q�OޝG�X�}�}
�B��GR���Sq�p�s�IQ�I"��"!Sr� C�c�hB��$��`
1761
+�K	�x����}s���y�z׻V����ng�w�������)��JpI�.|�w/\�k��o�����po|��
.���y����^I��W
���W�{�;<��\ɻ����w{���^:\�k�x���D��7�����v��J�/�|K�J=��~�ƕ]Ll��V�r��ë�1tM^y9�����^�F���ܽ^�܉�gw}^������>�^������X���|>��bۓ�R���ۮ���ɷ��v��E����d���`l�Sl�{!����Dq�!���Ʊ=�m��y__Gb{s�𱍮#q�U'|l�}c[�������D��!�)n9b;�o���v�؞��Mb���v4BlO��c���v�؞w���;놏m������c۠��7�-���G�e���O��7��,�eOc,:Ļ�Հ�y��po8������1<�[�x����_�#���u	����b���^I�>�rcj��s�Y�o/��:W��&g�5o�����)g֐�5(:G�˥���Be�~��w*��4*��T�3�|gR�΢�M��
~��8s�x�����6��w>�6��C��x�wr�co0��/�r����ro?��w���17YI�/���j���K��y-�
^W8��;�]�f����W���V/�֫
o��۽���+���F�{�"&���΍P_vQ�H��4��q���S_^���{-	�W��?��͡z�6y��5��R=��.O���kN��B�O��S�\�\���k4��iy=:�k���ɣ��v.A�)��w}5�s��j+��hm�7	��
>��9L
1762
+�^%��^M���	��5��z��Zu����j\P�/W7��^���B�\D=_��E�G�5j|��
1763
+�^�S�P��b�?T9����oP�>ܨ�K�'�Uo����Q?�9���q��9!ox��yqR�WŅ�S���:X����a겻�7z��÷��9=�7R}9�
1764
+z��TO���}DΥ:[���}T�z��G#�}���w9_NI���+�+oS�WVT���Q�ur�������J��ݪ!\E=Ǩ.pU5������4����R��:*������~8^��U�y�rϫ��o�%���K.%Ƈ���o����DrMj����BO�,������r����_�+P�F���ǃy�F���R����dm���	߫��)iKP�4TҖޯ�PҖ6R���h�!�&�X́��O�fj�\��[�FȓG�c��J�?�^�ۨ�p[��~��T���*�a���j?���ϨApw5�^�{�9�j=�����RoU��ϫ�p�~Q
��q� �<TEc6\%�#UKx���	�
1765
+�AWw���>ݫ��/��POg��iA�k^/}��0u���6�����u��Ƀ��99�7��K�P$A�T�򏩆Q��G>Cu�K��R}�)��5.ߢB��7�^�CpR�#�3�J�v�5�O�Mc�rYk�F�&ǒ[�Ǔ�o66Lpm�XjO�R2N��Wk�I�<�p��d��}��;�ދ=��wr�}��N�_���N��bϤ��M��[�#x���S���\R�����'j1�Xm��(��.U7ʼRՂW��Z�^�^�7���\u
1766
+ިd�I��f���[��}���ߪ#�6� sF5F��0�K]��g�*�U5��px��T������y�QU�V��1��U�W+��ԗ���(|Z%��_�FpA�8\X?у�+�X�*��Z���b1G�1�:.���uK��7\B�o����F}���(��Ά��&p9��Uw�o��U�8FO���p5�����cK]�G��5��p-=���±���^'�p��)��t�
1767
+g��,=	�W�7�
1768
+cl������Q��v�
��ڥU��.9D�kO�$�Ӗ��)����k[�$��sP��6�Ye�q�|<�o??}�ܕ��o^�(�f�D黣B^p�D��/��yu��W^>�ׇ���r�]E�G��Uw}z��0v��{�lL!{�\3�~O˽�{pH�O>J�U����S]_�RK��~T����n�3�6��p[=n��ɾ������n?�[�Oj�w�w�_�'�=�b��^	?����'��:
}A_�~^O���p�~Q	�{�A���ouw�}2�f�2^�(�n`�_�+*�=tM]�O�������]sթ�xTb���b��'�i췚���iW����9´`|c��r�j�n$c-�Z�u7Y�׽d����z��q�L-k�:N��u'�m�O��Y��S��{���W�����y�wY��rNi�n(k������x��X��������Z�+tG�S��L��}=E��۲�������R��>.c0m��[tY��-�p��H��!�;]�m:ޮ��w�7�:ޥ���J��M�=z�Wσ�{�}�Z�y��x���ԯ���j��>��1��Q?����G�\�g��E�8䘮�������>����t�L�+�|.q^���&T��P�/��	��9�~mO̿�Ջ�O�#��x(1�l4�W���#1�8a
1769
+]��ںM���%�������ˡ�]��*)��pj�fSh�Mˋ���~�!*ɵ{�H[�6F�`}�.h�—���+�X��Y_e6�טD�Eי��b橀�%]�R���
T։T^��]#��DR�<�0��Y0V�)>�(�UY#c�[MeY�6��
1770
+ϊ���i�ߩdV����.s��D+�"��ߓd��'K�ߐ�L��Ia��;s{G��C5�wvm#뫱�V����5}�83�7����h��I��l�ƽ��8��Y�4�D�u�e�~����'˸hpr����φ������5s�e<�<��¬��P�o��I���O?�"mc���fg�Ô{�͍p�?b�O��M������Ϡ�~�V��6Fւښ�2�6o���,�ۛ-r��"g��cv4��Φ2�Ÿ1|n��ݡ�u<%�^[��/�2����nO�H���3vw*�T.=�\z˥T�_.e���7�/��E}MY�y�0�B����J��L�ضH���Px^��u�H��=�>��j�é}aޅ_1��#)�F��p���񱦼�_2��8#��㍜��`��,x�YO1[�7�x�9
�i���y���nd�|���6Oܕ�b �Ÿe15Uڐ_ȝ�Bk���{�i��|Z���	�K�X��3M�ݨ.��׷��G���S�;]p�jp�˟��3���>0�M]Ys6�>����?2�ȷ�x�L�<.u�m�{�ミs9}6����2��/�<���>��^k^�יxՋ\���X��7��ߙ��6S���ȳ*;M���>��Mx��3]{�nx��0/�o��;i�su^��CV�]�y�����-�goJ˿8�ro]_�r�0�����5�����Y�{_��9��;���l-X�Q2����l��5�V��Zi�.���v3\����֢����>�&�{`1\�'s����C���??E�~�1��<?
1771
+Ӷ�}�`�)�W\Pv�빘�gvq+��+}MI[��V�K�t��m%�y+ϝ����ն�����
1772
+v|���h�l��V�UF��(�;��]V����V�GU�?�1�\Ֆ@}�n��/'��׊����N5�hS/|��X/���a/�3R��Sd�?�p.�P�&�Fcrsr�ٸ0痂c��{�*�r��d�.��(8�V�s&���-���y�n`��<�m%gH��r����V�F�rv�����&V��6����6�[���'��90���.>����u��E��a]����J�x�oR�s���*�&�ڝQ�,��Tv�vT��-2�1pG�
w��/?i��h���?e��Oۢ(�n�N��������po�.��.��Z��>�2}��m?;�o��/ڢ���-��`��}O�!ʍcr��_�C��e�7����w�%¼����,��Fa�!��F�'��N!�=�[�]��<a�Jy2�>+s
+s��6e4�ʾ�X�]� v��;����`�����1wk�!�8ܛ.���e��2]ʫ]z��z6]�Y��_Wt�5!=�^�*ǝʱ6�K*��I�gs��w���yŖ��ͩ���-�XM���[Y�n��>��(�MXy&b�u����U��k�C>|A�N���������B>A��`�(�/��ﵞ
1773
+��=��}�|h伍ugeHΔΐ{��qis|焿�����
1774
+�/�k�U�p������^l��6^fw��z(�OmY�3��ܮ�W��iR�ΐ�֊�֕��#B�eH=�!umZF�3�>��_�b)�S�> /�k��������ɛ�_�<X.k�,��(��۞2?�Cd~jg�������\u���ۛ��>��=����u݋���3ݽl������ʷomyx���a�.+���Vֱ����>�p���~Z�>D��V��8b��>1SbrS��$:3����jS��L�Oe^�L���L�U�|%��7٭?<��Q�9���1ʥ_)��S.��\:iݺ���(>c3/=g���T�~���s���g����Y�2|��3}��n��3����sn�>�J��}���Y×�ƾǗ�pm_>s��N�h|9�Pח��8�̃�����s�˼�^�vrp��>s}Nv�/c�z��+��O����e��e�/�l���|�k�חgC���9�^�峤\�g��ߴ,�GdEǖT�3�M����/��у��EM|i����N�̟ �At��]�����_��i�7���Y�V�{��,��g)&C"��,igffEng\����y�`LZS�m(�R>��eL��1��0����<Η���:��Q|��1�S��.�{ύp�;�~ʺ�����֐S
1775
+�9g�c�Łݝ��IOʓ�|�z��g����z��>��/}�_���|���A��[��o��[�h��O�l�a���1�ɖ>+6[r)3���H��U���9���.��(���{#(�^��E��C�7ڗ��/�Vc��e>��:�8�u����4�w��QD�����싷K<Gs��8L�{gO�|�B��:�ۛ�o�(�M�6�_*��|9�0��0�o#�5_��{�F�����rl#���9�-��S�c���۫��S_[?�?E�a�K9��̇����e�3ߗq�j�R۵�_&s"��̉��yt}��*���{|���1a���Q�ޗ�K���8,�{g/�8��8��8|NqXEq�—������t1�G-<p�!�����7�=����%�>�{�����ލowf=?w�YH�<@�&O �b"�#�-d��� ��@B(�!Y���vo��>��g�TUWWWWWWU��&�3�%���7j{�Ҟ�7��=��4�N�Gt�N>~�N��]�r��v�I���-=��/[��֞zs�&�{�� {�ne�L>�g~G�w{����{A���g�a�u���}�?�ź�����?�}L��e�g���#:|����
ǁ_}�bMe���j����E����1��q�����F�I̺���!�n�K��������F�|Z����
�C^6﵈�aFL����%�7�Y��s�F="淥3b~�<'��|/�cݎ�y|�_������	�1u��#�w��$��!�y�~�n?J�� ��1��}@�X�`�޾�@��ob�{`~���b<z`�*?|p���i����}��WU�W,;��վ���sV�������w��j�'�������n?a��Z6�X6|h�pF�@���*9�+���|X��11��/�Gt�I��1u�51>��l�"�o�l�k�
1��&_3�:yR�OK~L�;�S�}J�5�� ϛ�q�/���%�q�n���n��w%�l~�A��^��=�mˆ���OX6��
��e�/Z6��҆��jx����ݾf�����y��Eˆ_��o��߲�wYw.��?6�Ӗ���%�||������l��S&�&�5�71��ϓ?��OS+�e�u������ܯ����]���#��?�:y��G��yb�_ _g�}�o���"���O�ϐ��o�f�s��r�L���׈�}�����ڟ�b�����O,�ߌ��c��5�w�_�l���}��������	��Z���vm�-{��d�ϗ�c���&�%ϙX����/�Wu��&�%�n�Ub�0�F��/sg�k��Y��9���yy��~�Z��ƫ��-}��)LG�x�CB�_��i�����ļ������n�-1y�Wȷj��E�=���O=������S�k��G��u_��7�~f���q��˼}:_mV��j�-��Y6}�<0=\�ϼ�Uq�?9̎���lR��qM�SF�
��s���8�g-�k6w�dU�Gw��<��|1�y�^��0�ؕMqT��ٍkX:<����鼸���C��'Id���֏k(��5�Y�u�c�(fa\�w0
�{[�(���m��������,�~8�k�6O�kC���y����BaU(��P�����a}(��̃��U�"GW5?YT��*���AbZ�#��N'�C؝3����.C�Bł��"�s0&g��wJ-��X�+�13^�7Lz����͎>̓yJ�U�̑�
1776
+fl��,A�whۋ�@),��$N�,�E1�&�f�z����VE��7���4���4�a�Βj�l�v��pnp6��>�y:�,�<���w�s���
s�6;]��3��8�>حΏ�&=�{�n�=d	��L��+V�V��4Y
�?�A��h�Μ;������2[u�|�i�p�9ކm��(���"��M���.�2OۮΛ1��-ֹ�2?��ES<�"��(r�'�$�n�|�//�n7���;�f*��.���`��EL���ǖQ���%�;'�j���l�ɦ��r)�`��-۝����r������m7���5�P��P��\�y���_½P�D7�S]�Ψ�u������S��I������rO!-�7
1777
+�wE��h����XQ��E�ioo�a��c�_�;I�D��C�@x�/yJ�&j-B���!����_N��?�Dr&�O��+Q�+�O��W?Z���fgL�m����&ܖņ�6ٶ\6�{�K��z���ݷ���VV�]L�ϓd����b��=2͢���t]-rES��r����if��<)�6�-���_�\��w�pĪ�&I�M/*4[UىbT������j�q�ZUM�U�Q��p`�]��E���$���B59� s���c-��lub���`����@���=��Lj�,�����)p��؃�/���*ip��;D&+k�25{׏��%�O{t`jX�ViC[��Lj������~cﶵ[�o�Җ�mV��1F��=k��ҕ��f�a�F8}m#;m�7P�R��^J�"(r%�Xi�@m�2�Z��C׉=*ls�X��Jt�:��tq��)��#�rܶ����击���]b��.��w�X��G��z@?y�(��JT�7Þ��v�7g�f�j)��"/ۢ�=�5�*��Η����:��Dl4E4��1�X�H={�r���OJ&}��e���Qaں�Z�߀�eR�f�g'���"Y��	~��^/�����c/0�s#8tĔ�����c˽��uەn�͋�o�c�G�J?m����8��h����W��<�J��+���G✄�L%ZIr\�,S2/��N�@��,�Gh�p֋̡:0h'��Y��^^��Jfb�|���Og>�}��;j�2?og>�}W@Udj�!\������,%3?���=#���hfޠcv���|x�I���}�F�0D�8ϻ����Q����� �(�T�(�\�gO����3�3�n�
1778
+�x�P1��<Y}��f��q�^��:�*`�^����9���n^�y�܏�1=O���%�a���jb~I���]�9;Q�'��9���J0IQ:�%8���ȗ���\���e3��3|��줨J|	���(<�}��A��B��ș�s�8ԋ��w��.����7.�=�0w0�&j�j��D)$�����Y�ơ��bWUK/���0��01ų���ʽ��^og�-�^qHr��
1779
+�0�x�DU�'D[{�8k�JG�GJGn u$�RGᮎ�6�4�,����D�@Sh����4���E+�T���q��D��\m2=��+�٤>s���߾2Ů�}E�(����}�-�	����En�E���` ��K48b��D�1��Un<br�	UG\o6�j?��d+�Z�2C�򈐬��:N�K���^�Im��x>�xj��C�b89
1780
+��0�J�8�0����Ӻ.�@ϑ]���?�ڮ���^�G�?U��T��-�7i�,K�9���n�D�Gū�p**N5���v�rH�mXZL�J)ubJ�],��]vYb��ZP>ZO�
1781
+0����"]bA.�PJ=�Lgٱ�[����>���\trř/ݿ>
D��<�X��D�~���}pR5ʞ�DP�
1782
+G�� �b�w�<��p��Ƒ��d��>��8�M�A�%�2��E�{_M؇<�hjòq鲪:)���Y~N�C�Kad�G�%Wh�@w���7y~��渧z4d��nw�(��d�;�9C��#��1 ��èr��L���@q�_5�gF9l��S����y���@ �I;��C�q��	�{s}�U�Ey��c���n�_��-"�!��[+��>{��-�&d�%b1<��<es�2�FX�<iq��ˁrJ#��D�$=x��}�#��|���lxg�3��*/I�BXqϱe�]
1783
+I���bA:M=a����$x`�����O�7#u�Q�VY���n����9�����a=\A�`�B�	Q�Σ�p��'gi#��0(p&!@����a�-sx#6d��Gu
1784
+��X���`���ߚ�Z����vW¹�N֫�8O�M;R:-�\�e{��`-m��lWL���B�%��Gy'B����f ��@~=X����]TڬGi0��M�K
����z�a�t�n�"���5�8�(��q��G�C�Nh�G���כ���bW2H,�t=H�m�)��n��|��
1785
+����Q����c_,��e,�]�*���ר/���)DŻ�B�aNg5m
1786
+Һ(��۰!Gl���rZf�jǹ�ppl9���Lt+�f�MA.3�ή���0,2���p���i�ㅀpԘ��u��<+ QS�e�qË�2��V�C�d��T�Oʺ��뢿	���t�U%�/�B�@�ߢ�a��Y��F�!���BPKȭ�&��;�������t���\V� )@1B#�ŪIz~k��%E�Sy���E�כ�=�L����42��L�L�dW��{�&����ڕ�4�	��.���A���(��c�r�I0ť�dQ%o��օ�Y�v���֗=�hu^��[L��e�R�n�#���*̵�jT�ιE� 6��$K�`#0E�0`],W��Vʪ4���CS��l]2@|�;0����R�wP?��T!�9��?>�x_���ʾ═�#���{_����{ �{�o0'���&2�`ԉ��������Ň��xx�.M6'�mU�����p?�qa ��#�Us��k���ê�x���(��y�°\�X.�$��r\
1787
+�Rk\����6t�T;N�2y�D���wM,o6 7�''r�_q���H��U_����
1788
+U�K�Z��
1789
+ɸ�T�fl���{��Q5҈�ʲ�lͪEn�1���Uu�X�
1790
+t�:ǹ�G�r����.�Y�7#��6�5�ѶO�պC~���Վ�ɋ=U��1Fc� QgX��Ɓ��ks �a`8�g���Fa�P}� _��g$B�D����k��G�p���k�S6�@��j�#���by�^H��oe�?t�aD����$(�R
1791
+�z;m%Ԍ��|�e&Mv�Q̰�İ�$���1�:�`
(S� c2�2���T�z�ƹ��z�@63�av<�\��r��u$�_�#�$��Y_g�>��x$Z}r�8�W���<�$X�J��s���8*af����o� ����盪D;�Ty��H0�s� �����U�0þ�s�E3�㞯���Ɯ�r,
1792
+@?XY]R�sW[�W����/�ܳ��Lb4�Mŝ�=��I�Qm��
�.63�����(y}�5��UwS�Yˬ�՗S
����hN�R���5clu������d��K���8tP����d���'ˍ�����[���g+|��6�Ȟ�Ȩ7����C֧��@�j�%�K�s=7��=��i>Y�6&�&����|7n"?�ޒ���0�}��W�|@	��� WԎ@5L'zBiH]��젰Wx"疬sP<L�sX=��2ip�A��P[Tt#pðO�:{J�;���c�iO�������F��1��:K�|ˈ����t"�y�����=� Qf��}&�,���Z�M�,0~��@{A(�u�*�"�Pz`�p�$�L$�!zbHY(2�ɦ�0�^��DZ�W�������:��9�XXqiX�//p�H
Er"���Q!�g��|��ZB��-
���E�Au�=9���껹�W,_r*��S��(1�>PH�H˪>1�(����!�\��,1N��1���-�AzN�Dޞ��=�"�S�.7jomfbM�ǚ�u�֩!^�p8�9E����#�1�\�w��:�&/O�L�9��Z?��J��+�I�H��p���𗾪^o�*3�ܘ�W��s�8S3�����WDÜ��3��T����u��UU�	!$!�	����{�{�XE���SqĐ�!�����iն(Z}���<>�h��p�S�	�g߳�}�J�<?V[��O孽�9w��e-�P����:k����s'!t�j
1793
+۶t�ҡ)�>ӱu�z����sR���
]Ã�~Q���լZǫz�Rp��1r�߭���x�h`�.sə>C�����k�9M��+����Y��-$��ލ��*d�k��}h�`��$`�v��%���g�LBnGv�n�2O�E�{7�'z�z��>�_�fi�^YX�l��e�5]��� C�!�E��T^��JS��M�fm���C��Q���(���&��B���k�5fq��a�
1794
+��S6�{��}�OE�B�,�cZ�;R6��TP�7ԩ��SG���9[?�e;�Z��f�^���������$J��E+���W�������ޑ�U˻T<�'�Qp�����]+{
1795
+B}8������.t�o"aP?�u�*j[=�
�q�VP�m�W�ӎ���	;�/.2όpuJ���Ô��d����?lL�Oʦ����X)<W��7W\���]�v��L%��ٜg��%#�T�ڞ�陊X�sY�q�LՓ�[�g_}N�G����}7�3�[�o���B�g���`]y���Nؙ����9A���>��&;��:l��줕噂J$�<�tP]e'�.t�lrb�.���Nfu!UbvR�B��ӡzˉٜ����Сzˉe��C������f�"7T9V�a�_�N�J*G�T�%�hS��Xց������WQb�5�x2�M兣ʋ}�����G���,'�!]T�8T89q; �	��JU��&tMAɓ�Y�a��ƒD�SW�T��T��8�L�L9��8�'G}4�`s��+�ňԗKNPUW����l�{*�J'��P>�&����t��꧃T�fʡ����&�g�,'�,��o����z��7�peJ�h��t	��Qj�/�bj����N�Zb�^1��r��
1796
+b�9�sXW�*��o"���\&�2�ӑ)#r�dpZg���Dt�~�(��6"=s<SO2�xag�Cj�k]��(���D޴��f�е�Ԗ �W%��T_�+Lʡ)�)����0�n��8�y��|�Cz��%u}��CWLY�R@�
V�`�9$X�,��C
1797
+,�1��t��O�QDQ�$C.�I���$�ήW�!��x�i����=K�ꣴ�:���n�:��
˩.ɏ��X���Гk���YE�@.	�k�]��
1798
+�qH<"Y���^�3���H/\���HI�4;N0n��FGT�]�W�n�j��%�p��PB��%�p�>�=
�W��L�BD��up��k���� Ez|�~�-��v$�.i�k�����WQvB�ԿpIN\%'���{��NK�9%�r�*3t��)sI��\R/�	� Ԟ�:O]��k�ݜp��Xr�KB��\�D�
âKS2��
1799
+c��W�~��w������U�庎�W��ƂS;z.iX�Ez�l�I��.IJ�y���Qw����>˥2�%rӯ���h�}Edc��cl���+	w<�<	�tt�$B���s=zNd�rI�\_�>�No���Q?�z���Ub��>�$B����T+4@B��뉨oݔ�$]���
�*�!���6�\?��#7�	�����.�c�.�j]pILM�ua��ĺ$�d�b�r�6�]�>���n�7N���v��t$=+�b��&��{׍
��(Jz݄~r2Dz�p�gH]������ѫv�Tz� �y�.&�u�g�P=�$��7�)&zZ,��&Uv�����]G�GB�)!N��)z��^̋z��^,:�H�=��f�}�@��H9=ˋ�Hi=+�Zɬgq��,���S{pV�]I���zV"��s�K/�vW����I��zq'�:��k�ݑk�V/��z�R�"j�#���RCώ�'�����fy[�E�G���^FiL�c����P����H0�V��4�9�KB�5��X��
1800
+{$��O����DFz?C
�<�/7)����<�K"��ƙ7��z,�7�HF=7�d�r�#
�� t�+�b���Y͏շ��c�x�`\�4� 5�)�4�� ��#��`D�{鐮��Ǣc�e���I��f\��zIm��!I�����#9���=4S�@}'�
`�Fe7��
1801
+���K�֩�Iv�D�(=WG�����w�sF-:��Q���/����I����"	�nч!��x�Dv�jđ�+	���'{����g�(�SңFP;I]vQ"I]<�.h$�$��[�A|>	��$�'U�cN�(I�\SM��nP��Ia���3� �V����V<p�
1802
+�Z�tv��#�ķ�H-uH>�.���t�W:t�O��[^FDŽ;c���Z|��$�V��^�I�|-J�s$?�d;���IO|��<�r�_�Ht�4�};����ȷu����ٝ4�%
�XVVi���&=�H$�@R�;Q��
1803
+��a�j� a񵰤��OR�k) %P7d��j�n<��C'4_}����_/���t�NԶ|�O
1804
+�{�,��iB�zB�e����Z��
I��%@P�^���E��l]j�kSG���?V2��S�_��~">�P떚[C4:��M>�r_�ru�¥Y�Y���MĂ��;Կu+��=U�O��O@K4Q������0-��	��~?ɴ�?�����>�浟�����G���*�ɰ��W��B���X�W��}"�d��#A����у~�2Uz�Կw�0lJݧ�����w�X��ax.�~%���~7�	�>��_^��
1805
+��>���6��2�S��/�^��7�
1806
+�z�e�o^�!���^	��U��>
�{�����_�ƿ/������k�W���x�L���H�
�O���M����x3�ˀ��x+�m�ۀ�������S�\���]��<�s�K���Xk��:�A�����_<|	�$�3�w_|�*�PW�/D]~0�*�?u��������|�c�_����Q����U��?������x�,ß~H��|�lßG�͆���V�w�����1|�Us
	���
�Ŷ���k	�o���,4�
������6�-�-6�C�9G���ц���c���ǁ��s���|�w����z�����?���/����D���d�?��y��__�}���e��x��	��3
�
1807
+��r��������^+_	������78/����4|?���`m\e��#�P�߼�U��΅z��5P�/�zxb�R��.~�Z�K��6�8��QÏ�ud���:{�ᛱ���^h7v!�.D�D5�:w��?�'��T���ã�W�3<�0�O����3�:��?�6!�_
1808
+��Ԃ�����>�G�
�E|!�#�>�Y��1|��`�+hw�`�>�;�8�~$�B��������> �Ӂ��5�ف�G��)�9�<~���G���Mc��m,��c�<��Q�?��yL.�n~.��x.?_�?����h��<�,��G[r���9�ﯻr�~��1��^|���(�q<�g�<x�`?[���
1809
+���v��Q��H�[�����?��7�7������
1810
+��1���>��o�����?��
�=B�#B��u�x^gv?�����'B<_����8��_�,�Y|^�y|<�y|<�x}�(���{�x]�5��������v?��u�t��1��~2��O�uj��=x]=w���'�t?/���`���M�u��Q�|�^W��yy^'�E_:���e��r�o�uJ�oN���|�~<��_���L���Ic��?�|^?�|�G���.���?5��ϫ�y��*�ۄx�yB�g'�/�7����ϸ>��>����^����~��i��.��>�݇x�|���Ͽ?x�F�3�?שI�~�M�Ӛ���I|���$�`?����I�|_'�+��������N��5����B�W�Y+�7	�`��&�~c!߿����_�	~v
1811
+~v��d/؟�_��n�d�݊�|�Փy�<i2��g�w2ϨυB<[�~9���~�d^?%����B<�E��M*��*��8��?����5B��E�~�Z�����Xw_�u�.\��x�����ϯ���G���O��ϋ
1812
+�o��o�����O���/������Z�?(����^??�W�㊅zX���b����)�����-���q���e1��/�#�����y��V��d���K�x���V�dz�������ϋ�x���*��r	�co��u	��SK
_��?��~ڥ|�Jy��)��૱�ޏu�U�N��x)��O���]��7���x���O�����^5��~�T^?�
1813
+���V������~> �B�|��'��|V߿�2�;��u��g���2~���sq_����+�v&�{���e�~�O��{��Ϙr>��r>�J�_����s�y��,��9U��l!���y����ϧ�y��-�A��,���B�c*x�l���H�k���º��S�~^P���|�����s?/��&�����|�)��	|L%ϋ+y���k��t��W��7��?(��q%߿�*���^R͞_�x?�U���*~��ø/T�����s�vW	�V�yO����	!�]B<o��#Xo_�/U�~N�㩞���8���i���5���K��y�Q�����B����4^?����.����ש�~.����Q���6���t~^��ٸ�)����}����.���t^?��?������3x����?U�k~������|��8��_�?�~������jc�	���y����۝]ͷ;���ߩ���j^'��B!���xn����z�y�����m!�?��⩬�u������kx��~�5�~�@h��^?�����>��z��Xo��]
���k�������E��=������1�S��U�����y���]g����K��0?u|�^��u�x����O�����a?ο����u�|��1�#������	����󶱞'��qrM=?���K������?�����L����3y�W���Q��e&߿�߂y~�~9����뙂��2~�O�,!?��Pg����4��C~��?��a�W���xs���
|�i��j������5���^?�h��P���N�����_��6�9���Ͻ���mo��F^??~-��F^?���v��x�����-~�!���y7��5�y�a��;��<<�ď�g��񳫉���>���������<om���y�[$د���|�r�`���������W�|��m��ii?���b���X�7�}_?�Z�qu^�W�Z��rw?O_i������O?O�Z�v�Z�y����s�m����O�3��h��9���s}+?N~�ʏ����������k�ח�m|�8m��"�����Ĺ�M�h��y�I��_��㭲��.��8��vR;���x�������8|
1814
+��X��
�v~�}�Ώ���|������~���1�q|R�3���dD�����%�;��|op.��ڹ|~N��dzr.�{W
1815
+����ב�y�zq�<�z_~7>�~>ߜ�_�W�����9x>���8o~/��{�|>����q��|�|��T�/���f���1^����_~���_��-��`?�g	���~�o��
����C��x7��=C���,�߯��~���c]a����ױ��X��~������/?�_6��^�Ņz&ίkN�_���3��Z�88$�ɼj�Fei��2�"(l� 80�<������([��Ӡ�����ji��p$ˡs��
�i���ʲ�h�9߄����s���<������{�Z�z����0�e0�
1816
+�tg�\
1817
+�o����݃�9�?�d=u�����킞� ���o���� 7�K=M�6֣'��ۓ����
z>=� ��KA��/��e|�'���ہo��G��p��������	��ˋ���/W'���:���ȷ�xK�;p=Y�3‹��6�;�GzA��'߅�.A�����x����<�/��|7��{q8���3!��;�|/�o���|�m�:�O��|Л��Qo��a޼C���~�����\�Y&�s���'����~�F���(��9H��!!�ǽ������#�7|����ǔ�+�_��v���c<���� ?�`��c��7���,��,��!�����8^v��pP��>A�0�O�	����;	vk����ޗ�'�O�|����1G|�q�;���r���?���?ø��1�ߗ��i�nk��l���`�] �%�7�	�wB?�vQ���W�.�$�K�����~�n������?�����
�1��׸z�C~�y|?� ���� ^���y�!\�u��
�g���|�q��O�~�����	�p;/~�O�s����ߔ����)������/ĝ��i��,��3ߟ?�W�����4��U�O�H��A�wA�:ȟ��\��P��� �1��
1818
+����|!ȟ��A�YA�zA�A�A�KA�A���ϕ���0���0���z	�a|<Z%�π_@;?��:��C��ǣ�|<z ��k�ޮ���z���V���w`�u�0�0���} ��_�y�z�'������pn�H�Gp�?��ˢ�^��m=��~�5��y�@��#=т|b /oA /��@�偼~�
1819
+�j �O� S�G�w����u� �c��?D�|>�g��������8B~���!��Kc���Fp?���l��!e��lA~���
1820
+zv
1821
+�{G��~2�����<�^��Gr�9��g"���y�+x.`$��%#y�?/���
��*�_����6�<?]�y~	���
1822
+�C�;�<F�O����`�U�)�z΁�U�|�Z����|�xk����:���>����Bx�"�w�������$��~���%��2A����� �)����Q��ҽ(�?`5�+ƽ|�Ux��r�M��
1823
+����(�y������	����|�P�'��o�����9��B�x�P��l����zY(����*C��By=~ �*��
1824
+���q� ��_�yl(��Z�2� �qﷻ���}���92���}�����(�@�?3��g
1825
+�K�@�_n)��1~C���#�/m~ȿ/�?&�?	z�$瀷���6��?��x|��q���~6~�u$� ?NП$�ϴ��_��;ᾡ��V�����y���!��!��<��]q�P���_=��:�;q�h4��m4��{���?�?�㈠�*�z�8p�w�|������������2A�zA���q&��
�w
1826
+�	������+��
1827
+�����Gt�
仏�������Àw�PA��?y���~7������O�?�qe�����������߃q&��o�A�7�7���s���;�r��ǚz|��{a��X�?P�
1828
+z|q�
xo<�*����?�?�� _-�_-���y)p7|O������0���}��YA�UA#����`ޅ��	qGㄸ#�3����O�ǁ�|��C��ՠg8Ɵ���7	����@|���_���=A�o�/�7�ۇq���{$z���q�C��a|�,x|�7�Gp���'/��)!?������s�a|=��0���K^�M�o���Y�c��C~&�q����s���v{:���pn����D8_?�
1829
+����a����|�p<�z�?z��4��Kl����n��y�����#`�|�#x���;���S#��fF�z\�䟍�x��J�'���c�祑0��}:A~U$��m��q�
1830
+����y�H^/#y�t��+�'�Q��A>k��c�����'���
1831
+�.����'r=ł��y}�<σ���p]h"������~���{L��&��
1832
+��P�+&q����$^����΃>o2׳Y�?&�k�yx{G���o�(�8B�3:�����!�ɏ��Zu�߈�E����G�oǸA��_x�h�g�~h4�{E����8.��v�p.>����ܞ�|�
1833
+z�?
1834
+<ׇ�|�,��Z4_�w��������;�(|Ί�X$�[��?�cx{Y��ˆ�~7��u�~5F�����b�}7�����r;��r;��~cc,?�3�����|4����sb,��Nq�o��q?��sd��D�cq!���<!��q�?���zy#����q�?w��u�}o=��I�)�?��P�G	<{
1835
+���)��p��,��?��G'Zr��������M��À�|·�?��<2��Ñ���b㹟Ϗ�~��x|�f<��B�{㹟�����x��
�|�u�w$p�;�ԏ�u�
1836
+|��cxysxy�'p�-��,O�v{�#p}��=������+�`?��5���%���J��nM��V��M�q8��	�|� _,p{"��D���� �1����D^/�y�|���nK2��-���
I�d*��-�p}x$�c$	��x?�&��K/%��$��>	�'I�?�-Yx�E2��$�z�J�8,����d��.�d�WE��K�m?���������oO�n�)ܞ�)�]���H������R�s��)|�Y�?$�cw���}R��6���5��1��
x4������;&����Tޟפr;�J�ӀO��4�q��<ׅ��������+����~il/o�x\gH�DH��4�/������4ގv��~�4GtH�i�]wK�I�t.���})�tn���s�y�z:�σ��p�x"�O����B|N�p�:��W�}_�O�g��2�><�)2��%��n��C�^���r>���<���?
1837
+Ȟ#2��	�}3y�}3y�3�_%er�*���H�S�?<�O2�_�����L^�gr����ǒe�t�W������fq�	��O���������f	|^����]O
1838
+��.�K��}���ٲM����������6�3q�?�?�f��g��Vd���U�9�T6��s�ܟ;�p�<�K��ٖ�Ӎ��/���x�ϩ^/.��|�_��z�?��;8�����%(��KT.��xA��\�n��_�T</<��\�����Ϲ<�����j�|�7N5�g��#��+�����i ����·�r;_^���L>��b?���< O8/���]�~����q�9���{�s��|!~�,�>�W�Kp�6_���Y���u_�f��H(�Q�/E{
1839
+�.&o�sd�nc���}p�sp^�xN��n��<�)��^�q��G
1840
+�s�O�\��|�C��'�y9��a�4n��i<^:\��/�x�i�Ǧ��^^��5�+𽗅&_��2���}yy�y�����¿[Q���/��nA�
�_��8
1841
+y���V�`l:��x�K1���ǀWc<�tn���9��<�}���^���ӹ�����".� ��b�G��<�m�ίq;��O�c��e��q;�^���z���$�l�O`��n�� ��ۂ|�n���M����#��	���>Q��>)�<B��]JL�4蹯�����c+��/�Y�Y�{�
1842
+�Ӂ��8�n�#%�>�����
1843
+�:���n&/o1ȯ�� ��sf�vz�,������v�|��<�o�����v~q�p.x?W�f�|=�o��vK����[@�E\����ܡ��C�S��<	�+�'�_�}�/�{�J���K��/��k��E�b�Z��S��;�k��	��8����xy_+��}�����)�����9���sL�7�=��9�|��_���os��s�:�й�^����~|���/���e�\^/o���<���SB���.p9__�Q�ӽ���/��<���V��b��Or9_w�Y��9/���O�k�Q�~B(W�P�+�|]��y|�dV%�;�Z���R�y�{Vq?|3�?����w�y>�.�|���]�����Ƌ�jS~�W�[���~��6�s=�=�<�Nr�ӷ�N��*���ho~x�߀'�x6�?�o>x�B�g�.vrOO)N�u/���:c������T峸�l�W!N�Ey)�~���'���A�r��˛����6���8��ւ�wٛs�r�[����}�n}G�B�
�n}W����m����
�-��1ڋ�p��~n3�N�����$m-ݣF~;�lo��O�����U޼�m���u����]���[��:���-���H��Q�-�o�_���u�����٠�eJiE��u���t�g[��o�,���b��B�H�I�K%��/��[��W
1844
+���ӭ�ӏ��ⴴ���2fg�O��I�C����R?�z{���5����i���������� '�A�>>���<�7P��HEJV
1845
+2��2�
1846
+�$����?��B[9;C[��Cp�q0H�;�8M�ٿ�-��v�����䲭�zy��}�C��g�i���5���ُ�/�v�[/5���^:��Ч�zw�����qIu�q�k�qj�=���'{BC��x��U����r]r@�>l^�oW������7�넕�:�zr�r�ܼ���>��Z`��lh��6Y�PU����6B�xʦ}l
�>v���Gm�[���/k��Vi���4	�(��.jԣ��
�x���/h����f�q�U�u���N���F���6䈥B����N�ѭ��/A��c�U�6��3{���Ɋ�V��Z�(��a��3osQt^6t.�Ԝ+�u��w5�6g�.ۆ�T��R	E�N���ȣ�J�d���~���=͒ۛ\�t�EWʪIUW%7�æW�v݈!��wM�fP�SkH=��|��xC,HSs���R�ݛ�V>�R7���袕�J�{�;�_�f��j�c�������k5G���8��Z5T48Y*ն�P���k\*�9Y�����-��駤�+t�ST/���/j5����I�J�9`Yt��L�dݓU���Zd5�I��k},�E���Ke��K��r��IpM}��T�Wvjf�6��V��K��k���JFPr�M��2DתsݦP�;��N���.�٫��)h����6�����g����ث\�DTeZ��%;��o��W��ts�p�D�*�6�;.�Z?-)�u's�kX:�hp�ԪG����B�v�Vw�����Q�.��vG>��lYvg������PNb@�W���hfhb;����5���g�XFF��,��+Z*���U����:�;��U��ǼԳSwZI�VO��F����U��0\uB��gUW]��ja��+4~A�}e��Ž���ĭ{��Ո>^�ZM�!�n:�z��NFs�����nS{{��뵦����Z{A��yi5��T�+5�i�{�o������e��/�z��ۧV��6kαAK��F[��Ԗ�a_+�f2�@�4u9(b~o٭���ձ�t��~7l�Ԋ]�RVF1Y����1��.`][���nU�I�t��XQ�棣>^�
�z���1�i�jE��1�^��Sv��zrZS�h�y���v�aE���贈�l���]}pŕ��%,����qA0��dK��]�!䵥�]YH����jwVڰ�U��H�$�lV��rp)��S!)����Y�"&�]H��� WZ���&t��{fzfzV��B�R�������^�����W�q�d�v�SmwMP�Ol(��1��a(�j�2�|�Z�7?���B�C������	�ɑ����}͜�����G����*#��Z�ۡ	��!�=q��P�T�0t�`:��~#p�1�U��1���q%��'Q��C��ruZ���L�
1847
+���~ݏm?���P�f*���gP�g�T1�j�q?S�K��L��L������M�8��uw�&<��r�f!���.��s��|�V�䩂�SŜ��
��#_
>a*����*��J��$�i��c��BQ!����JT�9nV�B�1�J�}|��9<Z��!
)��!�B.S�j�J/�*|���%�����?��H��b�Ap4�S�v�Z]��	�^��`����ǃ�<<1�h�z��X�Q�&}$������9��d��/ef��F��d(LM�0����E�O
1848
+
�ףt�n
1849
+=��x��د��P~���N4��n�Jq��MWik�8,h���%��2Z
1850
+�Q=d0:�	
X��;
�*ݦK1�9��w���`w���{��t�}�A|��>z�\l��7v���Z��7�s�\�]+��nC�2dԐ!�!�Y4?
yqљhs9���.�����]�aq�> �CŭD�:��Z�:�s@�O<y�$T]���
1851
+�Ta��J��嶅X|�(	�?���0���%f�[	�rim�j)D�R�1�!5��`N������+ �8���%gk
1852
+����r��߂��lB��,0�v<S����R��ԠW��!涳ʺUg`�;�V|�T����
1853
+.��w�������1C���pp?	<���t���X��=�F�r(��h1|��S�Ï��8ѯ
1854
+�J=<�m���h��e���o�=_�sP)2g�@�A�z49��mGɐ��
1855
++��׉��J}��"ܪ�=zҦ@z��<�A�S�ħ�/���6e���MQ�C�.�lЊe��?J_���g����ų���DI	6�`64f��`�ѵ�f�}�n��=�!��}
1856
+�+xud��e~�Haڸ����c�X��GQ8
1857
+�Q��mX���ǣn�|��-�⏖��{nM'�Q�%�9�+�$0V�T̡_`u����&/V*�D�<@z[���W�A��� _g��٨�,=b�D'>3���m��c"�����4sFBV���S�}.=="_SN��&��ߩ�8T��8K-Oي���I���3�x�S�'~Y�J�k�C��ڰ��
��J�����>�����>�>���W��45���N�5	j���ʯ�P��?ڼ~����[8N�'E%�����X�����Fd��DX�"��4�U
1858
+J�k2�Y�aj��g2Z��*��͟"„9�|+��-���>�o�G��lY [t]�J�����-��甩l��h/#����<����n}�M]�N�֩1����
�G�jVY�M�g����6I�oS(�2�B']�T�S'Qc��X�I�bu\m�/���A����Yl'.�Y��}A0]��?#���De���1d)K�|'fOֿf��i��oT�L�pJ�9���X�Dp�X�BF^$ق��
1859
+�)Ʃ��O�xW��ě;�YJ�c>R���6EZ�N!�%�vy.�"L�L/�q&>#��Q۞�+c�U�P�
1860
+MLP�pS:��ڣ�î���m�jz
1861
+�a��ot���E���6ƒ��>�͆�CJݏ��E�-��#0Vz�m�=92��J�In�8
1862
+*�,�4�'ҭ��n�a3�tX�m�k/j*�N��G&;I�� ��W4�k�?�JT]rY4k뀫��yy�/�
=�"@��	\��*�=VV=��i�K��g�2k�2k34K}�˕�8d�10˳���B�
�L�k��U�֥��+�Hkr�'I�E���v8d��#�x~d��Gv���r� j5؊��Z�>�pM�Y:ݞ��V�!�l!,F�(��P۷�J�O�G9�2Kr�]7�\M�ӧUX����T�a��n⫇�ʆ��j�X������Y�׀��-���I\�[��)+;Z��i�v|:�5R�a�j�����(nU�x
a��4�u:W7�"M��va���Kӗ�J���NK��`���З��3��ϴv�q���c�u8ri�G�G?507���>y���(gW�y��m0�@�3M���flf*:Nc\l�8Dev����Ͷ��@0�6�S�&_��?U��?�O�T8j��W��*��x�
S*4*��^j:�����,k��.���� &�m�벛��6��:G ��.+��
1863
+۶mS�C�P�kOGO{8(��vw� �wX���u3���D6�N����r&-ē�H.��ӉTN����`��H2�tfX�D�r6+$�I�/��l.��b�Ho:������|_N�&�R�P9�s�w�*�wL����0��6��}9~�I�N?��D\y���l�x�>+��S<A_����D���.2�33L�j&x_>ŕW��w��(~��ݧ"M�G��4�������f���Q|�&8������5�g�Yp�?(n��q�����k��3
����ӆ��k
�l����P�w(�3��Mw`�KE�2�fû=�)~��7�F3�V�V�7��~�T����0�N��d���1�[(��J��1�8�vEqz�~�n���u�y+-�>�\O�����E�K7�g��M|v�x�������;�={pz܌p��k��wz�	�ȝ��=��>������!���|>TK�������M�=Y�{-�1nv�v~�e��߬��Z���Y�/[�?��|*U{��㴍�k���4�-����D���-�
1864
+����vZЫ�U���'er��PN�����ąl.&g2�8}�Ǔ�l?PP���xvx@Œ����e��a~��1)��^\5:=|��_�B�H&.e�HL�'�^�+�BY
1865
+��H8\�p�+)����8}�87���W'��	2�ɤqn�n|��'�좰>9'��2#
Fq(Ϋ������b�>���T�p3��	�t���~ ���~U��Z�qΚ]���ӌeԌ�m�	Y8Ҿ_ꏤb(s�C�
�P����^Ҋ'I�9	^��t>�?D���mȹ����m�@$�2�S8s��P(�A�%u��)��A�}�߰ߑ���~C�~_��6
ם�Q�������/Ui�����5���3��|ů��I��ETk�
1866
+�]�V��=Gb/C�~w jA�e���^�w��³|~y����O�{����[y���ﶴ�5��N�����R~~�^���2>�r>������\�����+���|>�|?ݿ[��o���?m�����~˧���W����|��O��?��S��X�+�����~��+����7��ӻE�}xD�ہ�"�<������լ�ӯ[�ѯ`�N_��I>E�����|%�������|;�uw��\��W2��k4�W1��k�����yJo0����.^��_����={�Z��]'y-�ܧ����Z~������5>�^����}k=��г�c/ޠ��y��
|>_c�W���Яe��z�����_���a�׳�o-���Z�~�_eA����e��=�}қ,��g�U�$���E���_öz�N���7X�x����z~;�q�FϞ7�
1867
+���~XϷ�l�C���
�t���г�'�6j�������y����/׋={�����ں��?���>��B
�~���5�/[�9��9uꜝ5�YQ�hX�YQ�
���{V�����Ί:�H�Am��[��ğ����6
1868
+�?+�q������(�YAX�`
���g-��Ί�Q_��Գ����龏������p��������?�O�n�"�8:@a�@5����y�k)Z�k�Zݽ*�F׈�ū[f_%;[Jo�}NW�pw��Ml�	
1869
+��N±����Zx�C%����TN��N\NXo�+�=�y��"���p��uh=�5�t��c^�;���͆u�
1870
+��2��P��+�<���U��S�y�z�u��V|�.P�e'I�ɖz#��r�HT��6�}�}�a\y#����x�������fzv|yi�F��#~������0|���-�w2��<���?�X�x����Cz}8S���
1871
+>�|�C%�If�w����(��\�O�L����O�H��D*����&�w���<�>��󺜾���[���br\�v�v��HmR��H��B;C=RWˎ�}�����^l�"n3b}��*���#�h�%�<: ����=;�E�vv��vw�NXbt4��r�ÿS�D{���)�68]�:cDEͩ���
�9��Ac����-�p��0⢻��p\n�_�hb��Q��&�X:ߛ�Y��1������9�:H�����rx<>����u��n�����j"q��u�0������q9�$G��C���o��T,
@"�7�}�(k����vzAJF���DL��L&2B���a��Z".��1Q��O��;�d�!�<�NC:�<�,���#�q!�]��׋��8@��!wM�>w����ڊ��r���NԈ�^���<�n��*snb�H%�1AS4�QB�^�׏�y.y#/%M��UM��=�Bd�r"I�I��#�c�����$���k�zqOV�G�y9+�3�̀�E�bC,,6ņ�����7��ɤx�ؗ�q��}1k����&Ijj�[]ê��2�N��6�n��D���G3��j�n����7{\�R$�ۅT�s�*���N����q��:�{QJ>�+�p��T��1[�n�����2��H�ʊ���X�c�Bs2�*Й������u�,di�Bs�3k��;F�N?6Kĕ_	X�`A���!#�D_�ܺ�s���e�N����=;ZB�:�6�d0�K��J{�]��;Pgp�����~�XK��ZI�ձ�U����=��頨���-����A'��!G ��%���(��C��)����Ҕ��F{5}@:��ҢP�����JJO�4�u��ZkRŮ�x׿Y�3}�z8��#e7��Ḡ��]��v�#5��AI��D2�HI�#R2�͉�z5@�9=-�X���`ã�a= ,�7=��O��7��7�,� ��TtXL��]��h�!&��tc?(�R0�8�ԗ�G%S���-R���:����&}9}��9�\z =�&���;}>�����A���j�=�	4dK�<�4&�؏�4‰�d$շ!+2�wiM�[�li@���;I�$&���H��3"	AӲ"
1872
+Ӄr&۾�"�h@��xF��`7P���G�uhoX�̤� Gs��|
1873
+��2�Bp"*�`��jt��'r�$BP�p�m�ݲ,��r���MM���t��)����6�r8�I�*�BO8g$r�}
4��vdDr�xB�l�Yh��?��ӆSnP����P���?"�&�i��gw���h��}o@��(���D*g�z��$���C9vC-��;D�9�uwG��pP� Ѡ�֛��wE�a��;(��� X��7I��=���0y�0����c�����Q#�?򮡄�$X�Bm{��h���QԈ�h��TXq$��|"�#����͆�ʆl�@��!��3D�g�/JQԍm1	mS͗t��c�h���ee(��Z�F�,�K�F�7�D�#��$Y�ʋ:�,�4���-���39�#<�ᨧ�[�#�Pi�}~,e�K
1874
+��*	<�ᦣ���䨞�<�Y[DA%��i�>)��P�Ep�0G��J�̭�8 ��B�e���/�_b:o9��������sDS�}^Z��KK+?G4�s�*^��⼊����8����k)έ�x�:��(^����
1875
+����8�z��k'έ�x���e�i`��_O��&�&�J�h&C�� )�P�7�����5��$���ϩ<�!5g�|�L�"E{���EQ6�TQ�ھ�+"A�k��Dz�{�/�S~L~R~B���@J��vSRmr�������3�Ә�K�WZ`�U�]d���6�]�1`�k Mi�ܢs$/D�F�	���|�tz�!�eɔ�8�'x���8�r�X�sc��k���O�!���d"�uN�d۶Y�����kۂ�ZV&Y���,�
��;�Y.#0 ��1˅�,�c7C��7��GCA�^{��#��*�壑T%*c/q�A�z!N�����)Vr�l��Q(�Ɖ�Ԃ�7ZI*C��k����ZE{4��
Dl���HIH�A�AKn$A�S!��^��ZK��b�v����OJ��p��;�����.l���y��h]�����K�f�r
��-��
�o2*o�?���xH�
1876
+�!&���PKnC7w7�H�H)nd*F�l�R{é�����A��DS��fe���;��g����h�HC�v3E�ɔe���Fa�ȲX��y_�'��S��n������\y�;��:S�:�AIn�1�tF�b��C�[!G��Jqc-��x���q������`l�{!����Z�����/�6���1o�[�<+�-�6d-�1gaT�X�ܘ��Wp�,amY�԰��_�kA���!��L�( ta.��4���F��;�vC���e_2,wv��E�>�:,�b�k%	6ǢBH�.�S�iLS;9���6��*�7j�s�+H�����%N`��P6���f^��a*d�ѭ�w*r(z�?�������1��Ԟ������m���]�L��������!�;��Xv���EI���e��׏�{�2�8��gz:��t���e���-����j�_�������w��Q�X��D��;��?��a�;�q`Er�9>N��[o��<��S0�0�S*�M���ꥈbN),�h�KvxX��P�&A	,:�<v�1�XC����{�ͮ��t��=)ZyAa���p�‹ق����ߵ���#�> Hk�{z�:���G�� ���e7��
1877
+��}��:��g#y,��%Wx��p�,ڈXW^@�����袟a@g�yc��T�rI�\x��4���%�8�cB��+`7	WL*��m�w��&X�&�|#����I<{4Z,��.)��L�n��!��*�>�Ļ�)�W�/1���1%��qH���^A�����%�H�U��i8�X�0�4N���wzCg�d�4�m����(����E�ǁ�+��`�]ļ� 3ڀ]$3l�8��%ϔ�1�ݠ��.���2��C�Wi�J�v�%\�����;��a�x�"��W����C��}�w�{���?h�
�+@R�XT�D�|�9=�Mw�3Zw�op��w���i>����;����I���V*�U��L��m8�&\��7X�;ѝ{	��#����cv�p�ɻ"�dL0;�n	i�<7���22�c~�yDc�-{�q��R�ԻJ]4p��E�Lٍ�i���d�^���-���c�ډ��V�x��w(��B�~���W�9���<e�'��xGd�$^?g0;��:h�����Y��Js��;@F!0b�<(��W�gF��C��}\�
1878
+�:���������AN{�^t
1879
+'����|Rq���+��ñ�&,��	�(Y���D^aH��h�������a�~������}~߁����I��|ϗP��ݯ����`�1�vk��9x��O�>t�����6��5�-��i�M
1880
+�n�o@Z]N����u�'�5���!,�$fR�dyu��ך���QX�+&�
屡PL`��	M�y#�Xq�I�8�Z��o׋��ՇDYB��/��Z^�@C����I�]!�ry~�ZN�Rʤ
1881
+�Oq��T��[~7a���uAj2>ё�F�6�N$�b�)*g�D��vWC�;H����Zp6���m��;�4q�Zۯ���P�������m�QW�[`��_Ө([^�URZbk�z>�R*U�M��>3@��-Ɇ1(�.��l��LM��燳���ȃ��oah}(���G�
1882
+2�S�hh��N�Y!U|�m����V_����Ͻ���%9Xڶ<B�|������z�%Z ߛ��v`��MO��֛n��vG�	�6���vzm�GIwOsŃw�6�
1883
+:]��]aO�3��0�ǝo�xB�T�8	zy���@�"������4��D�<F��b6[�X}�gY��3KX�g6F
~1�-6�̌h��R(H�K ��'TO��B��E���|WD�KJ��^�$��*�I��\�`
��=NǞ!�
1884
+���6*�������9n|#J<�]�4�S�ac������As��[�)��n���)l&�����O�=������<���Ft�FW�Z{�i�+7
1885
+�
1886
+ȿ��K-$PEt��}1�n�zr�w�s��)P}~�����J9�2tp���'hǦ����1O�0ڑ$b��1^�i�$?|��{ݏy����a�s�7h�A��}�;�;z��C�_:`���a��i�u�}�k����O��T=t���s�����ɑ~h�_��H3�\�0��fZ!�����vq�f��4��@\��$x�xٝ^��u�\�՞�����ֱ��(�i��)��]�D|s��8�s(��.s�픰r��%MoӨ�4N� v�$N7r
1887
+K��Z�;�*xz��L���6�2V����>d�
1888
+�8��뒂p6����}�γ�$���,A�N;mE�'tW�M�ʖHkRt��{�A�rh��-1et��Y���P��ZG��:t���gnr��B�k�X�{Υ�[6�zO��րM8�d
\Jo����dS�'����N�7v�tow�	�c���Mc6䦳���p�GJ\�11te�4�4xn��I�P&>t��0�f�U:��ÎB	�ᛖ�y��-�c[��87kۚ��Y�dc�hKS�m>P.Ygz�\2�qn���	MJ��Ԇ���.�E�X-|ܕ��'^#6�pw	�g����႞�>�O2UwG���J(���|·�;�!��%�:E
/a&�ë���t;�	c���K���F޹����%/��n��a�O�d�{�E�5ƺ�e�_,̒��l7
1889
+4F�s������eJ��߆R��$�jm�f�ض���y�fȋck�&;�V��⊱=X-��*ך�PG��hK1�\:<�@�.�3P�u(P�8�X+�b����tx��?����3'��F
���o�`P�T�H��C���
1890
+���m*#�#�a�P�8k��؅��͸y�^�pW���0�Z�4`���5hX˲񅇶�k�����S�Ҝ6�ǦQ0݌xD�j���6,P�/	S{h�#��Zڗ�����=o*#�/��; I�=�@�i4�^AE`�DX���o���.I��y&.���X��F�
1891
+�[Cv�7�U�o瑓�s���~�l+:\�i4��k9|2TE�!�`�C15� iΡt�����+�M�gy^��˖�ʿc��7W�mEq�VY�m��6�#�l���@v���Ġ�8��UE�"�֩�+�T��$l[��"���nQh%����Na�����wj2F�P#�b������Q�w-�vŤK�\e+V���S��t��i���!s՛�N�}*-�/��ً�aÂ����{ͷm�-���Qy�\�!|ȳ�2��sZoڭ��^;��N���e�ҭB�spsg�
1892
+�I`�+}�1�@��}.|;�d�L�:M��Zޯű,d!_Ӧ�a�F�1~�M[�H'߮�F�s�����LV7�,
?�w�F�U%�ׄ	�Ÿ�����"@W)>Lȥx�9�M�g�]�n�Q=�jSjܪ*t�B!�����#(B�^�P�Pj(ǒ~�q�r��z���	绬N����w�L�ʠ����&���[��<�p_U�P�N`�=�l���Ke�+j��4߂H��P9�j*8�y)*��k<&M7��	|�@�<!o�?���f��o�=Z�:�m~<l�'��4h
TCv^��e�W"*�2��yE��QG�ʮA����7%Q!x7����7H�V��&1�.�ln[�#u��8ga$&��V�R�gjy�L��R�����C6�,�����|o,�
1893
+3�#+�TJ�nR����$�B8�xώ76�w�'e�;ւZ��:��}�K��zP�*xą�m~4�?W�-�"�d?�ϊ*������Z*�pM����;�V�cҀx��7p���ӳ[���t��~�����ۊ�>��Z�_N܎�h̃�����Wd�F�he.ȕ�,��1d��Uc��i�xa$��C�LiFq��C�	=�ƣ��"�ԯ.B�Ra��"o9�`�DxV7���x"���ohK�s(�kIK�'K�oDy�މ���@�l�gӷ�=�d|V!�]J8S�G4k��݂}�>E�D�KOj�p�,^F�ZZz��DI��@*��6#�a����)���P���4�{�
!>��|#D�m��d�=�c|�W�)��l� �F�,\$�B/��ٯI8��s7�P�q�p��s�1�&�����6�$��+)w�3ލ��ƞ�=�ݍ
1894
+�� ��U���LW��hPϽd�����b�ƍ�DQ�7'�t9�"�����'}ѵ�
1895
+�$�CF����؊Z��@T��� ʡd�j��qbA��O�J9B��P�H�-W�)��U:�(���uЗ%�ʎ��"�LlJ;J�7�q3Ajr��Q�
1896
+tS�7���,朾�]q�ZO�`�3m��MxC������6YT�l�*0��5u�)��p�#���,�������4���܏�x�~��@���d0ً�i0�9��>����Z�i���HOk����a�˟V���
1897
+l���\��O��仸���>SnA�x5�B�p�36�����>�~d@-M�p��n���{��nu����g��������WU��>i���zN�w��!Cp�w�y�{��Bh�+�T��4�[^a�i5%p����<6�H��X%���%�y,j�9���L�Ef>'�N*rbZ�czՉ����[
1898
+F�Nͩb
�oR	�)�������ִ���[V�
1899
+k\_�c��M����o;dҧ����k�k�I}oI����^�Q#r�[YӀ������`
<@�YD�u�a+�\�F~.T��  �����t	�	�ʃ+��W䣋��̅��xU:�p��H��r��}����|
8@d����\�|��&p��|�UPj�_�dM�–1��Q2��G���0{�3�ڠUQC�ئ`Rg�AC���BH���_�2�W���2f�J�I�M�z��>*�!����~V�L�����L�#���aTZ���.`eU�l�ti�Hm�	s&#M���d�3��㍐±��/V��{����j&�˰�`�J�N!$3ސ=
1900
+(᝻3zw��"!a���Q�A!��PL���^i�)��0_����5�
!����r�hR2�kR҄dBP�����VR59�BFZ&�$�"�,f}L�T�$��UG-�d`j��\����L���"��I���`%\���Q{@������|�
:�aʖ�S��֎�D�Iswi�(D�</9��T�L�Q1���J��n� ��LB���s�G�"!�<y?oR�IH�(�y��L�b~�Z,���Y�w��%����m���?�n��r�����?����������_�1	B�G��<W����(��ӵ]x���?
1901
+ш瘝Xz��ճ:��jG�j���O�G�z!�D�� Y!���`�'x>L���i���m�O��(%%����4�O�m��(n���i�j��ո)�y��Eߘ�H�ī�)��Ĝ�<��
�4Eo.����l����RG����:��P~7�o��/��ޫ�O�+`{��{Jym�~���;*���ֽ���nm���mm��?�}���Ϗ�m>����_������8t���i<ْ~��_K�k�\q<O��m���`��%�q�L�7�%.
�?��V��7�ʿs�B�����}a�MR!��+W����Q�li*���;�r��C20@Bu����0�Й0k�0k%¬�Y3	�ff�$̚A�5�0kFa�L¬��Y3	�ff�$̚Q�5]�uM��a�
¬��Y7	�nf� ̺I�u�0�&a�M¬��Y7�nf�(̺.�M�%�<0�$��0L�<0�$��0L�<0	�$��0L�<0
1902
+�ػ�8��<�ڕV/�ʒm�����!K~Jl��f�ԅ�ĸ�u�X2ux��
�|j�*��'� R�ל�kS���$M�;�*k+'Y��!V��ǝ�#��n{<����������{לMӏ�	�_����&p�L`�L0����Ć-aS���A6�h���dC���l�]Mw[ÍI3�M��@�<����I@c2#�`{��]Г��mF�.�i�q'�V#h#�K�gU�!�׻|��e�8�Q_�:�(�c7QX#��1��#G-����Y�y�%/d呄���⋫�ˁ� =1	�/��,-�VCh��/�o�φ�$z���%X�ۢ���-zv�ǒ����{�T�)}4�Ρ�>EJٱ%�H,9��W�D������2��*a�A��n��
1903
+L�Bׁ����VzT���Ha�R%�(��`D�)DD�䡐�<����/�8Rl�v;&=������Ed�? +��FQ��/ߢ�"��(N��2�!!H���%��vBZ�̐�&$u��%"ߎS
1904
+r�����7�1��c+ુ�.��I�T�Zq�V�	>�����K�8�/�s��(B���}W2��V"�I�C��$"���<����%��ٸ��]Q���+
1905
+�B��w]"�B/qW/uWt�RwEq���Bf!�Gg?2����S��/t�n���6����v��<�������p�/�s��rۣ�mk��j5�i���4h�K������$���(,��&�s����Q{_6��f��2���¹^j�$>���%Y9a�r��)�;ػ�vT�Ꮍ6�́�$����N�e�a��������9��Uv�G��Z���M=�}p�
�}|)࿄p=�o|5�ʀ���q�p�7��H�����𧁜&�c`������h�����(�x����[��'����WY^ԕ���:�+��{}PW^=�+���ʊ��# V���:8;����4�&|�h�N�u���L�#�g���&�i��\��CN�	_�4�x��:
9�L�N�!'˜/��/0�����{���{�j���-ߵC(���I(o����F��]���M�p���3-�V�b.w[xY?��8���5~��Xp�%<dZ�L1���3�&~�_&����y>'m�7�r�m>��&�٠/DpA\k��l��~�K����mF|���^��M����$+	�E���8������MY��zj�2��
1906
+��,�C�
G3�mګΝ˙ۓmڪ�+uw�0���E_�M5�]�M5�]��b9gB������Xw��tF[w��R��K�n��;Rݭ�^6�{d����%�<��{��d0�q�pUٶ.ς��8e�W��r�c�f������l��x��{wl�D�b��
1907
+��I��
K��6�g۰s�m��q�
Z�=cl�p^6ƶ��cl���6�I
��p�mC�UUU�l��S{g��F���k���号��_b
1908
+}
H�^I]�;�Z���S|�u���E���m�3;$��#�I�K�9m�w(�N��3��`����/JޢR��Ik�"�����x��b;�f%�PP$�S�ś��r��ߐQ��W��e$�������C�~lU12Q��jtq����F%i�Qv�iT��^ć&J�&H�	�n�iW�Ӯ���]u�O��֟���^)2(8�7()�
1909
+��bTp�ݠ���a�q4,8��7H��4(�3��?��F�t�=�����ه����m�w��O��7��^��;���6}غbd�t�1թ�:���N%i�Sv�T���C�ք���D�5�U�/
�^_V��4�z}iX��ҳ�
;fP��Fj�խ�#���P}�8+(�n��w+n�׭�#c&�)qd;;S��>j��Ȗ���u�H�ZDU�:M�*/U�ơJY��R�>�d��*��� ��L�6?�6\���S���S���S���S��iU���v�dfa
1910
+��l�׏�k˪A!�D�v�L�U}����nF(u�]��!9��H�|Hb�6y��rx^!5]oj�x��U�%�#��Q�Qt����F%i�Qv�iT��^C
Մi���h5�7��[o�շ޴�o�iW�zӲ��2�VI@\�-����M�o�1���h�b��V
1911
+�@%̴�	Qjy+H8��W�Sj9N��R���*v��x��ӧF;w)�2G}�i>Ƶ�m!�7A�8
�Ms��q�e�;�o��,�4࿷��h��xLl9�o���?����"�߶�3ߜ��K����Y�>���f���-�C�pm'���_?����sti��h���rX�?�rY�
1912
+�?���{�x�g�X����g���Ă��'��ÀϑX���Lb�y�aB�<�����֋�<F��G�<�ڇ��_A��]�l���6��W^X�����xY[�x�W��?��-�k�o�������|�4V�ˀ>�-�.'Ž�,>���J�_*f�^5����ۂ�|�o���3Y�%�'����Gg��^�kf���������S�[�E�?6�������y��M�������`;����W�߸����7�����6�5�U,
ܼ�^��ц�_6|�������
z�o���
�O6��|�A'���
��Ͽ���j�Ć�.��o���{m�3�������c6�!��n/4�9��L���|��6��>k���
�S���|~{.���
�$�ϯ���6��l�u�|��|>?jß7��o���w�����5���y�r�_\`��M��L���
��_6��o���jÿb�_[��+�|��6��">C���
���)|��)|~І��
��S����|��4�Ͽ}���
��
�l��/7ף����O��_��b�_7��o�����g��������n�_3��r��K���|~�l>�ˆ����s������Ϛ��7���j�wx��t_�����LO��f��nmf����fj�dk3�X�y�z�ƶ6��bC�c[�]��m����f�ú�bκm7*9����S�!�g�s,�6t�����-�-G��„U��d��K��z�T����T������FS'�}}���^:c��V��wL}��UU�ޣ1w���gL؜,QAJ���Β^��c3�v�2�"��T�����R�G|[�I���[9���ඪ���:d$V�j��2�d՗���V�4�`BN&�fBS�Ĺco����(o�T�������I���(:@�dș��!O2�B'��{����;Y*�5�k���.��_�%�t'�v��k<E�>*�E��\��\��\��\b�#��_���0zT4��M$�7���D��M�׿���n@v3�b_t9:�9�]��xF�Q��:�r":��ѵ�%��8�
1913
+R(Lz/�C��R�_7�w��"�B��4Ipࢥ�#TɁ��1^\#��ijѰ����=�8c��"iz��=wf��)���y�3s]9�s�Ι29g���@��Μ%N+���L�*�s����Þ�X���j��Ke�y�+f�q]S�x�����VUN���vE��/�,�~ɢ)�j
1914
+r�O_཮�ڳln�4gR~�ZϚ,i�����Θ��:G�kVn�������r��k�w�s�̊��y���e+'��r��U�,[�zyUuͨ�l�����4f0�ը�Kv�E��|�eL(k߉�›���g!��t�x$�<���?�u�5���ˢ1�/��o��~�=���Mc�̓y*����yW?�t|	��8Y9kw�X�_��`�^@��ƭwV޹|\.3.+�\�BGW�����(�g��6{G����6�yi�>�Sn��_�˯p��t�����O��%ώq�ʸk|�fZ����:ǹG���a<�e�f/+ ֋c{_��Y�^V���ޗ4��x�x[��^V��**F�l�Y4쳝6���>iP|=d��.�3���$Zs(
1915
+�m�]"�7{2�f�m��yY��5�u�k�]��, �
1916
+@Lk|}�kR݁O�R+�y:�_��S����+q�9�[��!m�Eq%���8~�l�҇�4֢c�@x�9���Nڏ���'�qȁ��l��U�*V����l��RJ&��d�� n��h�W^�H4����kܠ�5p�U��"�:�jX���6/����H��BNm��7��.��9����hŁ.|�S�}xmUy�k��标.��l\|ѥ��#���h�@�����|M�))�^]E=Y#�օ������$f�����]�	��K�p�n����c����t���쥪�9�q:ѹS�"�(���w��o��C�PP4�%�S���S����:�Q�
�
��SU�B�G����E9�E�S=��J��y,��Z8�뱈H�g5� �\Z_p�2*�-+:н��|����[l�+�E�M,�A-z�Q\��{��p����&��_c�	��l�4���@�
�|2KQ�ar!�D�6�l�y8h����C�:��ؙ�+�i�Vp�JOन%p2j6u$5��?BKF1��LA���X,���l�"���2�I}���Ƴ���D��}C8���J�E�3*Q���7�T}�a�q��M�CWR�"��'㛽\'(�{�B����N.�1����>�j�P�K򻗴�:gA�M��$��7�w09�	��X���)L�����I��7lC�%�RT��1�����K|�J�ZOW����l�˴�Q�F�242�͍�eK#sx'�l+97��K�SV=�){�z����X�#ᯆ���'D�6������mt�<�P���Fz�@�.4���c����֊��>�8�5�I���(�O�R+��P�}����s,�!C�Mhlb�WJk'AR�M[�l��J��c#[�����W?�t;�r�Q�;֔��$�]�b��v�U�q�!�!^�Y��ZAn��^�J�,��-�.D��)B*��M.{��I��r݁0~ȸ<h\>G3�y��kNO�qQO�9#U|9�s#J1�Bv�	�Q������|&��:"�R.��M�0��0�6��R.�*�B��ɓKkr
1917
+]�IgV�Y~�������t�$:��v�;���wQ?)�A�
1918
+$�����P�����D�χ��f$����>���a<:'�U�H�b.S��X,v�V�uiA�|��6��8�pfPk2MO	o���Qi|S��m#eh�/��[z�s�&�
�qٸH$_�����d:��:�N~DZ�(j�����ꎒ��S��
�q �Ϫ�>�A�b����H����8H���bX�G_�m�]�y�˥;�o���5$_�Eɯ�},}�|��H�=�x�H�#� ���@�����2]d�c�\�E�(�b�'��q?K��az_(x����~nM���$���OXYD�~	3��_����M���q��8�E"^;�M�e�F\��!�H�!*b7��v��׮�HB� �CJ{3m�[h{��Zos~���!�KK*)_�Om�yt,�ޑI^L��Ct��̓�PZw�D���Ĝ��9�J�c(����;I�H�x��6�"��:I]�8���HA�)�+�t�ձ�a�'ˤO�.��.$y���j;�1޽g�$L
�M��ɹ'�Q��,Aި�?�`�F(�:*�ø��<�L`��R�-���<1e-.P{m���u-|�RR�qb�͚�j�BBD�)H%%q׎/�ɬ��0m'���>��b��&�7��2m�ǎ�$�FA��ld��[���]@������_�"rn�AC� 9PJ�&:̉�,�Mv-��gt�[w�ڱ���r�p�ֱ�,�-TԬ��qk��QJw���_�k����][�j��դx0�[ڔ#hߋ�Ԑ�E5����TS�;��
��5�M^�&x���^�|����W,k(-�����]I�nX�0o�5b��܍��b :eM�.�||h@i��B=T�B�i��7X��7�6i|Q;/s.�sN��u��x��y�����/��*���fm���v�]׭�V�vv3M���0�������&m1Mb��[���)���8�����"�S��2,���ٲ�)�s���͹��\���dJ����s�{zȹ���<�]�m�o�|M����g���F�jWoO��"�<T�m�s
1919
+p���Os��p-���gn��麮s~����C�g�J�GL���7q>ij����&�>�O��GϙB\ߗ�I_J�|��R9���Ӝ3�h�;8�(Fn�������g��^%?W���l%8����s>a�3��&>�{��<����(����L~��O �	o��v	T��%�	?%�g�Z���؟��O$�{	_��~C��1���6���c4��QC��2(�g$�]	�3Y,����Os��Ce�`Vw�N��Šh`O�u{YxH3Q�G��B,K��au�ȞEF���M�,�JD�z��X��i�.y��"jC,O�FSa����C/{�ܱ�Pb8drV��$���H��i���d,���O&��(�0��"���;��&�~�/��>iջ<t�>�9�S��f�d(��Rߺz�Ч<.�>������E���ҡ�T�C�<Tϫ�FbI�R� �G �'�B3qL�L�)�]k��ګE��c&!��~��!����o>�.�)�i��
�,�y�d��?���\ށ�yF6���gk��?�%1�/[��~`5ڵ�h�;m�[f����k6���b�c�a��ROK�@�^��?����_�-�w��.��ߒ�[Ui��}�[ ����q_���`���Jq?/wc�+��}�?����x�����j�?�����%��c5�m8jB'j�����v�����;�8�~
�c��?�����{�i�7���=8ޝb?_�}#�+`ߍ�ٵ�}�:�o�d��݅:�c�d�ق9/6��|�[Q�[o�f�?S/��� �O���
c��~�������l���h�o���طJr���Fq?�
?;0f~�؏x�π��I����&���]�]�T��H���z����خ�i�����{�Zb׹��"��.�d�8-���´�G�w�d��8��"�l�l(H��{d�/�g��UM����/���]!_��Te6}��8�f96����rZ�a���A�y�g���oV>&1�E��g�2�����H�ʐ�g��G�2�>u��k��t���<?%t���kB�V���,f�%�9ߴ-O"5�]�^��>ߦ�V��G��l��B�ޤ3�1�ڶ��/���!+>eΗ^V4M��F�<�ܑ���4n�]�8�ғ{�mh�۲�
�e�]�C�qrX;�8N!���H�Q�Zf�)����z��C3��w}}�P�N�<�V�G���X�y�Rm*���o7$y����R�\��o.(��t�y����D�9~��ٮu.h�N��c�І�悡dl$��
1920
+�c��۳�<&��x.X�=*��^k�H��pq4z�W��K���ֱ�5�����m���'����3�96��-E��S;��9�Xac�TJ�TJ�TJ�TJ�T�?�od��[
0 1921
\ No newline at end of file
... ...
@@ -0,0 +1,244 @@
1
+#/***************************************************************************
2
+# plTools
3
+#
4
+# The plugin adds a set of algorithms from plTools
5
+#							 -------------------
6
+#		begin				: 2024-01-10
7
+#		git sha				: $Format:%H$
8
+#		copyright			: (C) 2024 by Pawel Netzel
9
+#		email				: pawel@netzel.pl
10
+# ***************************************************************************/
11
+#
12
+#/***************************************************************************
13
+# *																		 *
14
+# *   This program is free software; you can redistribute it and/or modify  *
15
+# *   it under the terms of the GNU General Public License as published by  *
16
+# *   the Free Software Foundation; either version 2 of the License, or	 *
17
+# *   (at your option) any later version.								   *
18
+# *																		 *
19
+# ***************************************************************************/
20
+
21
+#################################################
22
+# Edit the following to match your sources lists
23
+#################################################
24
+
25
+
26
+#Add iso code for any locales you want to support here (space separated)
27
+# default is no locales
28
+# LOCALES = af
29
+LOCALES =
30
+
31
+# If locales are enabled, set the name of the lrelease binary on your system. If
32
+# you have trouble compiling the translations, you may have to specify the full path to
33
+# lrelease
34
+#LRELEASE = lrelease
35
+#LRELEASE = lrelease-qt4
36
+
37
+
38
+# translation
39
+SOURCES = \
40
+	__init__.py \
41
+	pltools.py 
42
+
43
+PLUGINNAME = pltools
44
+
45
+PY_FILES = \
46
+	__init__.py \
47
+	pltools.py 
48
+
49
+UI_FILES = 
50
+
51
+EXTRAS = metadata.txt 
52
+
53
+EXTRA_DIRS =
54
+
55
+COMPILED_RESOURCE_FILES = 
56
+
57
+PEP8EXCLUDE=pydev,resources.py,conf.py,third_party,ui
58
+
59
+# QGISDIR points to the location where your plugin should be installed.
60
+# This varies by platform, relative to your HOME directory:
61
+#	* Linux:
62
+#	  .local/share/QGIS/QGIS3/profiles/default/python/plugins/
63
+#	* Mac OS X:
64
+#	  Library/Application Support/QGIS/QGIS3/profiles/default/python/plugins
65
+#	* Windows:
66
+#	  AppData\Roaming\QGIS\QGIS3\profiles\default\python\plugins'
67
+
68
+QGISDIR=/home/pawel/.local/share/QGIS/QGIS3/profiles/default/python/plugins/
69
+
70
+#################################################
71
+# Normally you would not need to edit below here
72
+#################################################
73
+
74
+HELP = help/build/html
75
+
76
+PLUGIN_UPLOAD = $(c)/plugin_upload.py
77
+
78
+RESOURCE_SRC=$(shell grep '^ *<file'  | sed 's@</file>@@g;s/.*>//g' | tr '\n' ' ')
79
+
80
+.PHONY: default
81
+default:
82
+	@echo While you can use make to build and deploy your plugin, pb_tool
83
+	@echo is a much better solution.
84
+	@echo A Python script, pb_tool provides platform independent management of
85
+	@echo your plugins and runs anywhere.
86
+	@echo You can install pb_tool using: pip install pb_tool
87
+	@echo See https://g-sherman.github.io/plugin_build_tool/ for info. 
88
+
89
+compile: $(COMPILED_RESOURCE_FILES)
90
+
91
+%.py : %.qrc $(RESOURCES_SRC)
92
+	pyrcc5 -o $*.py  $<
93
+
94
+%.qm : %.ts
95
+	$(LRELEASE) $<
96
+
97
+test: compile transcompile
98
+	@echo
99
+	@echo "----------------------"
100
+	@echo "Regression Test Suite"
101
+	@echo "----------------------"
102
+
103
+	@# Preceding dash means that make will continue in case of errors
104
+	@-export PYTHONPATH=`pwd`:$(PYTHONPATH); \
105
+		export QGIS_DEBUG=0; \
106
+		export QGIS_LOG_FILE=/dev/null; \
107
+		nosetests -v --with-id --with-coverage --cover-package=. \
108
+		3>&1 1>&2 2>&3 3>&- || true
109
+	@echo "----------------------"
110
+	@echo "If you get a 'no module named qgis.core error, try sourcing"
111
+	@echo "the helper script we have provided first then run make test."
112
+	@echo "e.g. source run-env-linux.sh <path to qgis install>; make test"
113
+	@echo "----------------------"
114
+
115
+deploy: compile doc transcompile
116
+	@echo
117
+	@echo "------------------------------------------"
118
+	@echo "Deploying plugin to your .qgis2 directory."
119
+	@echo "------------------------------------------"
120
+	# The deploy  target only works on unix like operating system where
121
+	# the Python plugin directory is located at:
122
+	# $HOME/$(QGISDIR)/python/plugins
123
+	mkdir -p $(HOME)/$(QGISDIR)/python/plugins/$(PLUGINNAME)
124
+	cp -vf $(PY_FILES) $(HOME)/$(QGISDIR)/python/plugins/$(PLUGINNAME)
125
+	cp -vf $(UI_FILES) $(HOME)/$(QGISDIR)/python/plugins/$(PLUGINNAME)
126
+	cp -vf $(COMPILED_RESOURCE_FILES) $(HOME)/$(QGISDIR)/python/plugins/$(PLUGINNAME)
127
+	cp -vf $(EXTRAS) $(HOME)/$(QGISDIR)/python/plugins/$(PLUGINNAME)
128
+	cp -vfr i18n $(HOME)/$(QGISDIR)/python/plugins/$(PLUGINNAME)
129
+	cp -vfr $(HELP) $(HOME)/$(QGISDIR)/python/plugins/$(PLUGINNAME)/help
130
+	# Copy extra directories if any
131
+	(foreach EXTRA_DIR,(EXTRA_DIRS), cp -R (EXTRA_DIR) (HOME)/(QGISDIR)/python/plugins/(PLUGINNAME)/;)
132
+
133
+
134
+# The dclean target removes compiled python files from plugin directory
135
+# also deletes any .git entry
136
+dclean:
137
+	@echo
138
+	@echo "-----------------------------------"
139
+	@echo "Removing any compiled python files."
140
+	@echo "-----------------------------------"
141
+	find $(HOME)/$(QGISDIR)/python/plugins/$(PLUGINNAME) -iname "*.pyc" -delete
142
+	find $(HOME)/$(QGISDIR)/python/plugins/$(PLUGINNAME) -iname ".git" -prune -exec rm -Rf {} \;
143
+
144
+
145
+derase:
146
+	@echo
147
+	@echo "-------------------------"
148
+	@echo "Removing deployed plugin."
149
+	@echo "-------------------------"
150
+	rm -Rf $(HOME)/$(QGISDIR)/python/plugins/$(PLUGINNAME)
151
+
152
+zip: deploy dclean
153
+	@echo
154
+	@echo "---------------------------"
155
+	@echo "Creating plugin zip bundle."
156
+	@echo "---------------------------"
157
+	# The zip target deploys the plugin and creates a zip file with the deployed
158
+	# content. You can then upload the zip file on http://plugins.qgis.org
159
+	rm -f $(PLUGINNAME).zip
160
+	cd $(HOME)/$(QGISDIR)/python/plugins; zip -9r $(CURDIR)/$(PLUGINNAME).zip $(PLUGINNAME)
161
+
162
+package: compile
163
+	# Create a zip package of the plugin named $(PLUGINNAME).zip.
164
+	# This requires use of git (your plugin development directory must be a
165
+	# git repository).
166
+	# To use, pass a valid commit or tag as follows:
167
+	#   make package VERSION=Version_0.3.2
168
+	@echo
169
+	@echo "------------------------------------"
170
+	@echo "Exporting plugin to zip package.	"
171
+	@echo "------------------------------------"
172
+	rm -f $(PLUGINNAME).zip
173
+	git archive --prefix=$(PLUGINNAME)/ -o $(PLUGINNAME).zip $(VERSION)
174
+	echo "Created package: $(PLUGINNAME).zip"
175
+
176
+upload: zip
177
+	@echo
178
+	@echo "-------------------------------------"
179
+	@echo "Uploading plugin to QGIS Plugin repo."
180
+	@echo "-------------------------------------"
181
+	$(PLUGIN_UPLOAD) $(PLUGINNAME).zip
182
+
183
+transup:
184
+	@echo
185
+	@echo "------------------------------------------------"
186
+	@echo "Updating translation files with any new strings."
187
+	@echo "------------------------------------------------"
188
+	@chmod +x scripts/update-strings.sh
189
+	@scripts/update-strings.sh $(LOCALES)
190
+
191
+transcompile:
192
+	@echo
193
+	@echo "----------------------------------------"
194
+	@echo "Compiled translation files to .qm files."
195
+	@echo "----------------------------------------"
196
+	@chmod +x scripts/compile-strings.sh
197
+	@scripts/compile-strings.sh $(LRELEASE) $(LOCALES)
198
+
199
+transclean:
200
+	@echo
201
+	@echo "------------------------------------"
202
+	@echo "Removing compiled translation files."
203
+	@echo "------------------------------------"
204
+	rm -f i18n/*.qm
205
+
206
+clean:
207
+	@echo
208
+	@echo "------------------------------------"
209
+	@echo "Removing uic and rcc generated files"
210
+	@echo "------------------------------------"
211
+	rm $(COMPILED_UI_FILES) $(COMPILED_RESOURCE_FILES)
212
+
213
+doc:
214
+	@echo
215
+	@echo "------------------------------------"
216
+	@echo "Building documentation using sphinx."
217
+	@echo "------------------------------------"
218
+	cd help; make html
219
+
220
+pylint:
221
+	@echo
222
+	@echo "-----------------"
223
+	@echo "Pylint violations"
224
+	@echo "-----------------"
225
+	@pylint --reports=n --rcfile=pylintrc . || true
226
+	@echo
227
+	@echo "----------------------"
228
+	@echo "If you get a 'no module named qgis.core' error, try sourcing"
229
+	@echo "the helper script we have provided first then run make pylint."
230
+	@echo "e.g. source run-env-linux.sh <path to qgis install>; make pylint"
231
+	@echo "----------------------"
232
+
233
+
234
+# Run pep8 style checking
235
+#http://pypi.python.org/pypi/pep8
236
+pep8:
237
+	@echo
238
+	@echo "-----------"
239
+	@echo "PEP8 issues"
240
+	@echo "-----------"
241
+	@pep8 --repeat --ignore=E203,E121,E122,E123,E124,E125,E126,E127,E128 --exclude $(PEP8EXCLUDE) . || true
242
+	@echo "-----------"
243
+	@echo "Ignored in PEP8 check:"
244
+	@echo $(PEP8EXCLUDE)
... ...
@@ -0,0 +1,39 @@
1
+# -*- coding: utf-8 -*-
2
+"""
3
+/***************************************************************************
4
+ plTools
5
+                                 A QGIS plugin
6
+ The plugin adds a set of algorithms from plTools
7
+ Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/
8
+                              -------------------
9
+        begin                : 2024-01-10
10
+        copyright            : (C) 2024 by Pawel Netzel
11
+        email                : pawel@netzel.pl
12
+ ***************************************************************************/
13
+
14
+/***************************************************************************
15
+ *                                                                         *
16
+ *   This program is free software; you can redistribute it and/or modify  *
17
+ *   it under the terms of the GNU General Public License as published by  *
18
+ *   the Free Software Foundation; either version 2 of the License, or     *
19
+ *   (at your option) any later version.                                   *
20
+ *                                                                         *
21
+ ***************************************************************************/
22
+ This script initializes the plugin, making it known to QGIS.
23
+"""
24
+
25
+__author__ = 'Pawel Netzel'
26
+__date__ = '2024-01-10'
27
+__copyright__ = '(C) 2024 by Pawel Netzel'
28
+
29
+
30
+# noinspection PyPep8Naming
31
+def classFactory(iface):  # pylint: disable=invalid-name
32
+    """Load plTools class from file plTools.
33
+
34
+    :param iface: A QGIS interface instance.
35
+    :type iface: QgsInterface
36
+    """
37
+    #
38
+    from .pltools import plToolsPlugin
39
+    return plToolsPlugin()
... ...
@@ -0,0 +1,167 @@
1
+# -*- coding: utf-8 -*-
2
+
3
+"""
4
+/***************************************************************************
5
+ plTools
6
+                                 A QGIS plugin
7
+ The plugin adds a set of algorithms from plTools
8
+ Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/
9
+                              -------------------
10
+        begin                : 2024-01-10
11
+        copyright            : (C) 2024 by Pawel Netzel
12
+        email                : pawel@netzel.pl
13
+ ***************************************************************************/
14
+
15
+/***************************************************************************
16
+ *                                                                         *
17
+ *   This program is free software; you can redistribute it and/or modify  *
18
+ *   it under the terms of the GNU General Public License as published by  *
19
+ *   the Free Software Foundation; either version 2 of the License, or     *
20
+ *   (at your option) any later version.                                   *
21
+ *                                                                         *
22
+ ***************************************************************************/
23
+"""
24
+
25
+__author__ = 'Pawel Netzel'
26
+__date__ = '2024-01-10'
27
+__copyright__ = '(C) 2024 by Pawel Netzel'
28
+
29
+# This will get replaced with a git SHA1 when you do a git archive
30
+
31
+__revision__ = '$Format:%H$'
32
+
33
+import os
34
+import subprocess
35
+import platform
36
+import sys
37
+import stat
38
+import glob
39
+
40
+
41
+from qgis.PyQt.QtCore import QCoreApplication
42
+from qgis.core import (Qgis,
43
+                       QgsProcessing,
44
+                       QgsProcessingAlgorithm,
45
+                       QgsProcessingException,
46
+                       QgsProcessingFeedback,
47
+                       QgsSettings,
48
+                       QgsMessageLog)
49
+from osgeo import gdal
50
+
51
+class plToolsBaseAlgorithm(QgsProcessingAlgorithm):
52
+
53
+
54
+    def initAlgorithm(self, config):
55
+        """
56
+        Check the system. In the case of Linux, check x attribute
57
+        """
58
+        if not hasattr(self,'libSubPath'):
59
+          self.isX64 = platform.architecture()[0] == '64bit'
60
+          self.gdalVersion = gdal.__version__
61
+          self.isOSX = platform.system() == 'Darwin'
62
+          self.isLinux = platform.system() == 'Linux'
63
+          self.isWindows = platform.system() == 'Windows'
64
+          self.plToolsPath = os.getenv("PLTOOLSPATH")
65
+          self.cmdRunner = ""
66
+          if not self.plToolsPath:
67
+            raise QgsProcessingException("The plTools package is not installed!")
68
+          if not self.isX64 or (self.isWindows and self.gdalVersion<'3.0.0'):
69
+            raise QgsProcessingException("This system is not supported by plTools")
70
+          if self.isWindows:
71
+            self.cmdRunner = os.path.join(self.plToolsPath,'pltoolsrun')
72
+
73
+
74
+    def displayName(self):
75
+        """
76
+        Returns the translated algorithm name, which should be used for any
77
+        user-visible display of the algorithm name.
78
+        """
79
+        return self.tr(self.name())
80
+
81
+    def group(self):
82
+        """
83
+        Returns the name of the group this algorithm belongs to. This string
84
+        should be localised.
85
+        """
86
+        return self.tr(self.groupId())
87
+
88
+    def tr(self, string):
89
+        return QCoreApplication.translate('Processing', string)
90
+
91
+    def runplTools(self, commands, feedback=None):
92
+        if feedback is None:
93
+            feedback = QgsProcessingFeedback()
94
+        envval = os.getenv('PATH')
95
+        if self.isOSX and os.path.isfile(os.path.join(QgsApplication.prefixPath(), "bin", "gdalinfo")):
96
+            # Looks like there's a bundled gdal. Let's use it.
97
+            os.environ['PATH'] = "{}{}{}".format(os.path.join(QgsApplication.prefixPath(), "bin"), os.pathsep, envval)
98
+            os.environ['DYLD_LIBRARY_PATH'] = os.path.join(QgsApplication.prefixPath(), "lib")
99
+        else:
100
+            # Other platforms should use default gdal finder codepath
101
+            settings = QgsSettings()
102
+            path = settings.value('/GdalTools/gdalPath', '')
103
+            if not path.lower() in envval.lower().split(os.pathsep):
104
+                envval += '{}{}'.format(os.pathsep, path)
105
+                os.putenv('PATH', envval)
106
+        if self.isWindows:
107
+            commands.insert(0, self.cmdRunner)
108
+        fused_command = self.escapeAndJoin(commands)
109
+        QgsMessageLog.logMessage(fused_command, 'Processing', Qgis.Info)
110
+        feedback.pushInfo('plTools command:')
111
+        feedback.pushCommandInfo(fused_command)
112
+        feedback.pushInfo('plTools command output:')
113
+        success = False
114
+        retry_count = 0
115
+        while not success:
116
+            loglines = []
117
+            loglines.append('plTools execution console output')
118
+            try:
119
+                with subprocess.Popen(
120
+                    fused_command,
121
+                    shell=True,
122
+                    stdout=subprocess.PIPE,
123
+                    stdin=subprocess.DEVNULL,
124
+                    stderr=subprocess.STDOUT,
125
+                    universal_newlines=True,
126
+                ) as proc:
127
+                    for line in proc.stdout:
128
+                        while line.find("\b") > -1:
129
+                            pos = line.find("\b")
130
+                            if pos<1:
131
+                                line = line[pos+1:]
132
+                            else:
133
+                                line = line[:pos-1] + line[pos+1:]
134
+                        feedback.pushConsoleInfo(line)
135
+                        loglines.append(line)
136
+                    success = True
137
+            except IOError as e:
138
+                if retry_count < 5:
139
+                    retry_count += 1
140
+                else:
141
+                    raise IOError(
142
+                        str(e) + u'\nTried 5 times without success. Last iteration stopped after reading {} line(s).\nLast line(s):\n{}'.format(
143
+                            len(loglines), u'\n'.join(loglines[-10:])))
144
+            QgsMessageLog.logMessage('\n'.join(loglines), 'Processing', Qgis.Info)
145
+
146
+    def quoteString(self, param):
147
+        if self.isWindows:
148
+            param = '"'+param+'"'
149
+        return param
150
+
151
+    def getEnv(self, name):
152
+        return os.getenv(name)
153
+
154
+    def escapeAndJoin(self, strList):
155
+        joined = ''
156
+        for s in strList:
157
+            if not isinstance(s, str):
158
+                s = str(s)
159
+            if s and s[0] != '-' and ' ' in s:
160
+                escaped = '"' + s.replace('\\', '\\\\').replace('"', '\\"') + '"'
161
+                #escaped = '"' + s.replace('"', '\\"') + '"'
162
+            else:
163
+                escaped = s
164
+            if escaped is not None:
165
+                joined += escaped + ' '
166
+        return joined.strip()
167
+
... ...
@@ -0,0 +1,102 @@
1
+# -*- coding: utf-8 -*-
2
+
3
+"""
4
+/***************************************************************************
5
+ plTools
6
+                                 A QGIS plugin
7
+ The plugin adds a set of algorithms from plTools
8
+ Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/
9
+                              -------------------
10
+        begin                : 2024-01-10
11
+        copyright            : (C) 2024 by Pawel Netzel
12
+        email                : pawel@netzel.pl
13
+ ***************************************************************************/
14
+
15
+/***************************************************************************
16
+ *                                                                         *
17
+ *   This program is free software; you can redistribute it and/or modify  *
18
+ *   it under the terms of the GNU General Public License as published by  *
19
+ *   the Free Software Foundation; either version 2 of the License, or     *
20
+ *   (at your option) any later version.                                   *
21
+ *                                                                         *
22
+ ***************************************************************************/
23
+"""
24
+
25
+__author__ = 'Pawel Netzel'
26
+__date__ = '2024-01-10'
27
+__copyright__ = '(C) 2024 by Pawel Netzel'
28
+
29
+# This will get replaced with a git SHA1 when you do a git archive
30
+
31
+__revision__ = '$Format:%H$'
32
+
33
+from qgis.PyQt.QtCore import QCoreApplication
34
+from qgis.core import (QgsProcessing,
35
+                       QgsProcessingAlgorithm,
36
+                       QgsProcessingException,
37
+                       QgsProcessingParameterNumber,
38
+                       QgsProcessingParameterBoolean,
39
+                       QgsProcessingParameterRasterDestination,
40
+                       QgsProcessingParameterRasterLayer)
41
+from .algo_base import plToolsBaseAlgorithm
42
+
43
+class clump4p_Algorithm(plToolsBaseAlgorithm):
44
+
45
+    COMMAND = 'plclump4p'
46
+
47
+    OUTPUT   = 'OUTPUT'
48
+    INPUT    = 'INPUT'
49
+    QUEEN    = 'QUEEN'
50
+    THREADS  = 'THREADS'
51
+    TEMP     = 'TEMP'
52
+
53
+    def initAlgorithm(self, config):
54
+        super().initAlgorithm(config)
55
+        self.addParameter(QgsProcessingParameterRasterLayer(self.INPUT,self.tr('Input raster layer')))
56
+        if self.isLinux:
57
+            self.addParameter(QgsProcessingParameterBoolean(self.QUEEN,self.tr('Eight directional merging'),defaultValue=False))
58
+        self.addParameter(QgsProcessingParameterBoolean(self.TEMP,self.tr('Current directory will be used for temporary files'),defaultValue=False))
59
+        self.addParameter(QgsProcessingParameterNumber(self.THREADS,self.tr('Number of threads'),defaultValue=1,optional=True))
60
+        self.addParameter(QgsProcessingParameterRasterDestination(self.OUTPUT,self.tr('Clumped layer')))
61
+
62
+
63
+    def processAlgorithm(self, parameters, context, feedback):
64
+        arguments = [self.COMMAND]
65
+        inp = self.parameterAsRasterLayer(parameters, self.INPUT, context)
66
+        if inp:
67
+            arguments.append('-i')
68
+            arguments.append(inp.source())
69
+        queen = self.parameterAsBoolean(parameters, self.QUEEN, context)
70
+        if queen:
71
+            arguments.append('-8')
72
+        if self.isLinux:
73
+            temp = self.parameterAsBoolean(parameters, self.TEMP, context)
74
+            if temp:
75
+                arguments.append('-l')
76
+        else:
77
+            arguments.append('-l')
78
+        thr = self.parameterAsInt(parameters, self.THREADS, context)
79
+        if thr:
80
+            arguments.append('-t')
81
+            arguments.append(str(thr))
82
+        output = self.parameterAsOutputLayer(parameters,self.OUTPUT,context)
83
+        arguments.append('-o')
84
+        arguments.append(output)
85
+        self.runplTools(arguments, feedback)
86
+        return {self.OUTPUT: output}
87
+
88
+    def name(self):
89
+        return 'Clumping categorical raster'
90
+
91
+    def groupId(self):
92
+        return ''
93
+
94
+    def createInstance(self):
95
+        return clump4p_Algorithm()
96
+
97
+    def shortHelpString(self):
98
+        return '''
99
+        plClump4p applies a divide-and-conquer technique and parallel processing to a standard two-scan algorithm of labelled connected components.
100
+        Initially, the solution was a variant of a standard CCL algorithm implemented as r.clump in GRASS GIS, which was available as r.clump3p. The algorithm was described in the <a href="https://doi.org/10.1016/j.cageo.2013.05.014">paper</a>.
101
+        plClump4p is a new, standalone, improved algorithm implementation from r.clump3p based on GDAL and OpenMP libraries.
102
+        '''
0 103
\ No newline at end of file
... ...
@@ -0,0 +1,144 @@
1
+# -*- coding: utf-8 -*-
2
+
3
+"""
4
+/***************************************************************************
5
+ plTools
6
+                                 A QGIS plugin
7
+ The plugin adds a set of algorithms from plTools
8
+ Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/
9
+                              -------------------
10
+        begin                : 2024-01-10
11
+        copyright            : (C) 2024 by Pawel Netzel
12
+        email                : pawel@netzel.pl
13
+ ***************************************************************************/
14
+
15
+/***************************************************************************
16
+ *                                                                         *
17
+ *   This program is free software; you can redistribute it and/or modify  *
18
+ *   it under the terms of the GNU General Public License as published by  *
19
+ *   the Free Software Foundation; either version 2 of the License, or     *
20
+ *   (at your option) any later version.                                   *
21
+ *                                                                         *
22
+ ***************************************************************************/
23
+"""
24
+
25
+__author__ = 'Pawel Netzel'
26
+__date__ = '2024-01-10'
27
+__copyright__ = '(C) 2024 by Pawel Netzel'
28
+
29
+# This will get replaced with a git SHA1 when you do a git archive
30
+
31
+__revision__ = '$Format:%H$'
32
+
33
+from qgis.PyQt.QtCore import QCoreApplication
34
+from qgis.core import (QgsProcessing,
35
+                       QgsProcessingAlgorithm,
36
+                       QgsProcessingException,
37
+                       QgsProcessingParameterNumber,
38
+                       QgsProcessingParameterRasterDestination,
39
+                       QgsProcessingParameterRasterLayer)
40
+from .algo_base import plToolsBaseAlgorithm
41
+
42
+class darksky_Algorithm(plToolsBaseAlgorithm):
43
+
44
+    COMMAND = 'pldarksky'
45
+
46
+    OUTPUT    = 'OUTPUT'
47
+    INPUTGHSL = 'INPUTGHSL'
48
+    INPUTDEM  = 'INPUTDEM'
49
+    PARA   = 'PARA'
50
+    PARU   = 'PARU'
51
+    PARV   = 'PARV'
52
+    PARH   = 'PARH'
53
+    PARK   = 'PARK'
54
+    RESX   = 'RESX'
55
+    RESY   = 'RESY'
56
+    RESH   = 'RESH'
57
+    RADIUS   = 'RADIUS'
58
+    THREADS  = 'THREADS'
59
+
60
+    def initAlgorithm(self, config):
61
+        super().initAlgorithm(config)
62
+        self.addParameter(QgsProcessingParameterRasterLayer(self.INPUTGHSL,self.tr('GHSL raster layer')))
63
+        self.addParameter(QgsProcessingParameterRasterLayer(self.INPUTDEM,self.tr('DEM raster layer'),optional=True))
64
+        self.addParameter(QgsProcessingParameterNumber(self.PARA,self.tr('Model parameter [a]'),defaultValue=2.37583,type=QgsProcessingParameterNumber.Double,optional=True))
65
+        self.addParameter(QgsProcessingParameterNumber(self.PARU,self.tr('Model parameter [U]'),defaultValue=5.96033,type=QgsProcessingParameterNumber.Double,optional=True))
66
+        self.addParameter(QgsProcessingParameterNumber(self.PARV,self.tr('Model parameter [V]'),defaultValue=0.02625,type=QgsProcessingParameterNumber.Double,optional=True))
67
+        self.addParameter(QgsProcessingParameterNumber(self.PARH,self.tr('Model parameter [h]'),defaultValue=1.13661,type=QgsProcessingParameterNumber.Double,optional=True))
68
+        self.addParameter(QgsProcessingParameterNumber(self.PARK,self.tr('Model parameter [k]'),defaultValue=0.03875,type=QgsProcessingParameterNumber.Double,optional=True))
69
+        self.addParameter(QgsProcessingParameterNumber(self.RADIUS,self.tr('Radius in cells'),defaultValue=300,optional=False))
70
+        self.addParameter(QgsProcessingParameterNumber(self.RESX,self.tr('Scale factor X [km]'),defaultValue=0.1,type=QgsProcessingParameterNumber.Double,optional=True))
71
+        self.addParameter(QgsProcessingParameterNumber(self.RESY,self.tr('Scale factor Y [km]'),defaultValue=0.1,type=QgsProcessingParameterNumber.Double,optional=True))
72
+        self.addParameter(QgsProcessingParameterNumber(self.RESH,self.tr('Scale factor h [km]'),defaultValue=0.001,type=QgsProcessingParameterNumber.Double,optional=True))
73
+        self.addParameter(QgsProcessingParameterNumber(self.THREADS,self.tr('Number of threads'),defaultValue=1,optional=True))
74
+        self.addParameter(QgsProcessingParameterRasterDestination(self.OUTPUT,self.tr('Night sky brightness [mag] output raster layer')))
75
+
76
+
77
+    def processAlgorithm(self, parameters, context, feedback):
78
+        arguments = [self.COMMAND]
79
+        inpghsl = self.parameterAsRasterLayer(parameters, self.INPUTGHSL, context)
80
+        if inpghsl:
81
+            arguments.append('-g')
82
+            arguments.append(inpghsl.source())
83
+        inpdem = self.parameterAsRasterLayer(parameters, self.INPUTDEM, context)
84
+        if inpdem:
85
+            arguments.append('-d')
86
+            arguments.append(inpdem.source())
87
+        para = self.parameterAsDouble(parameters, self.PARA, context)
88
+        if para:
89
+            arguments.append('-a')
90
+            arguments.append(str(para))
91
+        paru = self.parameterAsDouble(parameters, self.PARU, context)
92
+        if paru:
93
+            arguments.append('-U')
94
+            arguments.append(str(paru))
95
+        parv = self.parameterAsDouble(parameters, self.PARV, context)
96
+        if parv:
97
+            arguments.append('-V')
98
+            arguments.append(str(parv))
99
+        parh = self.parameterAsDouble(parameters, self.PARH, context)
100
+        if parh:
101
+            arguments.append('-h')
102
+            arguments.append(str(parh))
103
+        park = self.parameterAsDouble(parameters, self.PARK, context)
104
+        if park:
105
+            arguments.append('-k')
106
+            arguments.append(str(park))
107
+        rad = self.parameterAsInt(parameters, self.RADIUS, context)
108
+        if rad:
109
+            arguments.append('-N')
110
+            arguments.append(str(rad))
111
+        resx = self.parameterAsDouble(parameters, self.RESX, context)
112
+        if resx:
113
+            arguments.append('--res_x='+str(resx))
114
+        resy = self.parameterAsDouble(parameters, self.RESY, context)
115
+        if resy:
116
+            arguments.append('--res_y='+str(resy))
117
+        resh = self.parameterAsDouble(parameters, self.RESH, context)
118
+        if resh:
119
+            arguments.append('--res_h='+str(resh))
120
+        thr = self.parameterAsInt(parameters, self.THREADS, context)
121
+        if thr:
122
+            arguments.append('-t')
123
+            arguments.append(str(thr))
124
+        output = self.parameterAsOutputLayer(parameters,self.OUTPUT,context)
125
+        arguments.append('-o')
126
+        arguments.append(output)
127
+        self.runplTools(arguments, feedback)
128
+        return {self.OUTPUT: output}
129
+
130
+    def name(self):
131
+        return 'darksky - night sky brightness model'
132
+
133
+    def groupId(self):
134
+        return ''
135
+
136
+    def createInstance(self):
137
+        return darksky_Algorithm()
138
+
139
+    def shortHelpString(self):
140
+        return '''
141
+        Darksky is a program to calculate night sky light pollution. It is based on Berry's model [<i>Berry R. L., 1976: Light Pollution in Southern Ontario, Journal of the Royal Astronomical Society of Canada, 70, 97</i>]. The program was desribed in the papers [<a href="https://doi.org/10.1016/j.jqsrt.2016.03.014">1</a>, <a href="https://doi.org/10.1016/j.jqsrt.2018.05.038">2</a>]. The program uses GHSL (Global Human Settelment Layer) data to calculate night sky brightness. The program can use data other then GHSL but it needs recalibration.
142
+        
143
+        Improved version of darksky can calculate sky brightness taking into account DEM and shadowing effect.
144
+        '''
0 145
\ No newline at end of file
... ...
@@ -0,0 +1,125 @@
1
+# -*- coding: utf-8 -*-
2
+
3
+"""
4
+/***************************************************************************
5
+ plTools
6
+                                 A QGIS plugin
7
+ The plugin adds a set of algorithms from plTools
8
+ Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/
9
+                              -------------------
10
+        begin                : 2024-01-10
11
+        copyright            : (C) 2024 by Pawel Netzel
12
+        email                : pawel@netzel.pl
13
+ ***************************************************************************/
14
+
15
+/***************************************************************************
16
+ *                                                                         *
17
+ *   This program is free software; you can redistribute it and/or modify  *
18
+ *   it under the terms of the GNU General Public License as published by  *
19
+ *   the Free Software Foundation; either version 2 of the License, or     *
20
+ *   (at your option) any later version.                                   *
21
+ *                                                                         *
22
+ ***************************************************************************/
23
+"""
24
+
25
+__author__ = 'Pawel Netzel'
26
+__date__ = '2024-01-10'
27
+__copyright__ = '(C) 2024 by Pawel Netzel'
28
+
29
+# This will get replaced with a git SHA1 when you do a git archive
30
+
31
+__revision__ = '$Format:%H$'
32
+
33
+from qgis.PyQt.QtCore import QCoreApplication
34
+from qgis.core import (QgsProcessing,
35
+                       QgsProcessingAlgorithm,
36
+                       QgsProcessingException,
37
+                       QgsProcessingParameterNumber,
38
+                       QgsProcessingParameterRasterDestination,
39
+                       QgsProcessingParameterRasterLayer)
40
+from .algo_base import plToolsBaseAlgorithm
41
+
42
+class forestfragment_Algorithm(plToolsBaseAlgorithm):
43
+
44
+    COMMAND = 'plforestfragment'
45
+
46
+    OUTPUT   = 'OUTPUT'
47
+    INPUT    = 'INPUT'
48
+    RADIUS1   = 'RADIUS1'
49
+    RADIUS2   = 'RADIUS2'
50
+    RADIUS3   = 'RADIUS3'
51
+    RADIUS4   = 'RADIUS4'
52
+    RADIUS5   = 'RADIUS5'
53
+    THREADS  = 'THREADS'
54
+    FOREST   = 'FOREST'
55
+
56
+    def initAlgorithm(self, config):
57
+        super().initAlgorithm(config)
58
+        self.addParameter(QgsProcessingParameterRasterLayer(self.INPUT,self.tr('Input raster layer')))
59
+        self.addParameter(QgsProcessingParameterNumber(self.FOREST,self.tr('Value of forest category'),defaultValue=1,optional=True))
60
+        self.addParameter(QgsProcessingParameterNumber(self.RADIUS1,self.tr('Diameter for scale 1'),defaultValue=7,optional=False))
61
+        self.addParameter(QgsProcessingParameterNumber(self.RADIUS2,self.tr('Diameter for scale 2'),optional=True))
62
+        self.addParameter(QgsProcessingParameterNumber(self.RADIUS3,self.tr('Diameter for scale 3'),optional=True))
63
+        self.addParameter(QgsProcessingParameterNumber(self.RADIUS4,self.tr('Diameter for scale 4'),optional=True))
64
+        self.addParameter(QgsProcessingParameterNumber(self.RADIUS5,self.tr('Diameter for scale 5'),optional=True))
65
+        self.addParameter(QgsProcessingParameterNumber(self.THREADS,self.tr('Number of threads'),defaultValue=1,optional=True))
66
+        self.addParameter(QgsProcessingParameterRasterDestination(self.OUTPUT,self.tr('Forest fragmentation index')))
67
+
68
+
69
+    def processAlgorithm(self, parameters, context, feedback):
70
+        arguments = [self.COMMAND]
71
+        inp = self.parameterAsRasterLayer(parameters, self.INPUT, context)
72
+        if inp:
73
+            arguments.append('-i')
74
+            arguments.append(inp.source())
75
+        rad1 = self.parameterAsInt(parameters, self.RADIUS1, context)
76
+        if rad1:
77
+            arguments.append('-r')
78
+            arguments.append(str(rad1))
79
+        rad2 = self.parameterAsInt(parameters, self.RADIUS2, context)
80
+        if rad2:
81
+            arguments.append('-r')
82
+            arguments.append(str(rad2))
83
+        rad3 = self.parameterAsInt(parameters, self.RADIUS3, context)
84
+        if rad3:
85
+            arguments.append('-r')
86
+            arguments.append(str(rad3))
87
+        rad4 = self.parameterAsInt(parameters, self.RADIUS4, context)
88
+        if rad4:
89
+            arguments.append('-r')
90
+            arguments.append(str(rad4))
91
+        rad5 = self.parameterAsInt(parameters, self.RADIUS5, context)
92
+        if rad5:
93
+            arguments.append('-r')
94
+            arguments.append(str(rad5))
95
+        forest = self.parameterAsInt(parameters, self.FOREST, context)
96
+        if forest:
97
+            arguments.append('-f')
98
+            arguments.append(str(forest))
99
+        thr = self.parameterAsInt(parameters, self.THREADS, context)
100
+        if thr:
101
+            arguments.append('-t')
102
+            arguments.append(str(thr))
103
+        output = self.parameterAsOutputLayer(parameters,self.OUTPUT,context)
104
+        arguments.append('-o')
105
+        arguments.append(output)
106
+        self.runplTools(arguments, feedback)
107
+        return {self.OUTPUT: output}
108
+
109
+    def name(self):
110
+        return 'Forest fragmentation index'
111
+
112
+    def groupId(self):
113
+        return ''
114
+
115
+    def createInstance(self):
116
+        return forestfragment_Algorithm()
117
+
118
+    def shortHelpString(self):
119
+        return '''
120
+        plForestFragment is a new approach to assessing the fragmentation of forests in a given area based on the similarity of a forested area's pattern to a pattern of a fully forested area. Jensen-Shannon similarity is used to create a measure of forest fragmentation. The proposed approach allows both the calculation of forest fragmentation at a given scale and the calculation of a multiscale fragmentation assessment as a single index. 
121
+        The module uses a categorical raster layer as an input. It identifies forests by selecting one category. By default, it is a category of value 1 (the user can choose a different value). 
122
+        The implemented approach was described in the <a href="https://doi.org/10.1016/j.ecolind.2023.111530">paper</a>.
123
+        The web page of the software is <a href="https://landtax.urk.edu.pl/software/forestfragment/">HERE</a>. 
124
+        '''
125
+
... ...
@@ -0,0 +1,103 @@
1
+# -*- coding: utf-8 -*-
2
+
3
+"""
4
+/***************************************************************************
5
+ plTools
6
+                                 A QGIS plugin
7
+ The plugin adds a set of algorithms from plTools
8
+ Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/
9
+                              -------------------
10
+        begin                : 2024-01-10
11
+        copyright            : (C) 2024 by Pawel Netzel
12
+        email                : pawel@netzel.pl
13
+ ***************************************************************************/
14
+
15
+/***************************************************************************
16
+ *                                                                         *
17
+ *   This program is free software; you can redistribute it and/or modify  *
18
+ *   it under the terms of the GNU General Public License as published by  *
19
+ *   the Free Software Foundation; either version 2 of the License, or     *
20
+ *   (at your option) any later version.                                   *
21
+ *                                                                         *
22
+ ***************************************************************************/
23
+"""
24
+
25
+__author__ = 'Pawel Netzel'
26
+__date__ = '2024-01-10'
27
+__copyright__ = '(C) 2024 by Pawel Netzel'
28
+
29
+# This will get replaced with a git SHA1 when you do a git archive
30
+
31
+__revision__ = '$Format:%H$'
32
+
33
+from qgis.PyQt.QtCore import QCoreApplication
34
+from qgis.core import (QgsProcessing,
35
+                       QgsProcessingAlgorithm,
36
+                       QgsProcessingException,
37
+                       QgsProcessingParameterNumber,
38
+                       QgsProcessingParameterBoolean,
39
+                       QgsProcessingParameterRasterDestination,
40
+                       QgsProcessingParameterMultipleLayers)
41
+from .algo_base import plToolsBaseAlgorithm
42
+
43
+class adaptels_Algorithm(plToolsBaseAlgorithm):
44
+
45
+    COMMAND = 'plgeoadaptels'
46
+
47
+    OUTPUT    = 'OUTPUT'
48
+    INPUTS    = 'INPUTS'
49
+    THRESHOLD = 'THRESHOLD'
50
+    NORMALIZE = 'NORMALIZE'
51
+    QUEENTOPO = 'QUEENTOPO'
52
+    LABCONV   = 'LABCONV'
53
+
54
+    def initAlgorithm(self, config):
55
+        super().initAlgorithm(config)
56
+        self.addParameter(QgsProcessingParameterMultipleLayers(self.INPUTS,self.tr('Input raster layers'),QgsProcessing.TypeRaster))
57
+        self.addParameter(QgsProcessingParameterBoolean(self.NORMALIZE,self.tr('Normalize input layers to [0, 1]'),defaultValue=False))
58
+        self.addParameter(QgsProcessingParameterBoolean(self.LABCONV,self.tr('Conversion to Lab color space'),defaultValue=False))
59
+        self.addParameter(QgsProcessingParameterNumber(self.THRESHOLD,self.tr('Energy threshold'),type=QgsProcessingParameterNumber.Double,defaultValue=60.0, optional=True))
60
+        self.addParameter(QgsProcessingParameterBoolean(self.QUEENTOPO,self.tr('Eight directional merging'),defaultValue=False))
61
+        self.addParameter(QgsProcessingParameterRasterDestination(self.OUTPUT,self.tr('GeoAdaptels layer')))
62
+
63
+
64
+    def processAlgorithm(self, parameters, context, feedback):
65
+        arguments = [self.COMMAND]
66
+        inputs = self.parameterAsLayerList(parameters, self.INPUTS, context)
67
+        if inputs is not None:
68
+            for layer in inputs:
69
+                arguments.append('-i')
70
+                arguments.append(layer.source())
71
+        normalize = self.parameterAsBoolean(parameters, self.NORMALIZE, context)
72
+        if normalize:
73
+            arguments.append('-n')
74
+        lab = self.parameterAsBoolean(parameters, self.LABCONV, context)
75
+        if lab:
76
+            arguments.append('-l')
77
+        queen = self.parameterAsBoolean(parameters, self.QUEENTOPO, context)
78
+        if queen:
79
+            arguments.append('-8')
80
+        thresh = self.parameterAsDouble(parameters, self.THRESHOLD, context)
81
+        if thresh:
82
+            arguments.append('-t')
83
+            arguments.append(str(thresh))
84
+        output = self.parameterAsOutputLayer(parameters,self.OUTPUT,context)
85
+        arguments.append('-o')
86
+        arguments.append(output)
87
+        self.runplTools(arguments, feedback)
88
+        return {self.OUTPUT: output}
89
+
90
+    def name(self):
91
+        return 'GeoAdaptels - spatial superpixels'
92
+
93
+    def groupId(self):
94
+        return ''
95
+
96
+    def createInstance(self):
97
+        return adaptels_Algorithm()
98
+
99
+    def shortHelpString(self):
100
+        return '''
101
+        plGeoAdaptels is an implementation of an algorithm for creating multi-scale superpixels. This algorithm is described in the <a href="https://doi.org/10.2352/ISSN.2169-2629.2018.26.1">paper</a>. The module uses the authors' code implementation modified to operate on geospatial layers, use four- and eight-way topology, and perform data normalization.
102
+        For layers representing an image's R, G and B components, the program can optionally perform transformations to CIELAB color space.
103
+        '''
0 104
\ No newline at end of file
... ...
@@ -0,0 +1,204 @@
1
+# -*- coding: utf-8 -*-
2
+
3
+"""
4
+/***************************************************************************
5
+ plTools
6
+                                 A QGIS plugin
7
+ The plugin adds a set of algorithms from plTools
8
+ Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/
9
+                              -------------------
10
+        begin                : 2024-01-10
11
+        copyright            : (C) 2024 by Pawel Netzel
12
+        email                : pawel@netzel.pl
13
+ ***************************************************************************/
14
+
15
+/***************************************************************************
16
+ *                                                                         *
17
+ *   This program is free software; you can redistribute it and/or modify  *
18
+ *   it under the terms of the GNU General Public License as published by  *
19
+ *   the Free Software Foundation; either version 2 of the License, or     *
20
+ *   (at your option) any later version.                                   *
21
+ *                                                                         *
22
+ ***************************************************************************/
23
+"""
24
+
25
+__author__ = 'Pawel Netzel'
26
+__date__ = '2024-01-10'
27
+__copyright__ = '(C) 2024 by Pawel Netzel'
28
+
29
+# This will get replaced with a git SHA1 when you do a git archive
30
+
31
+__revision__ = '$Format:%H$'
32
+
33
+from qgis.PyQt.QtCore import QCoreApplication
34
+from qgis.core import (QgsProcessing,
35
+                       QgsProcessingAlgorithm,
36
+                       QgsProcessingException,
37
+                       QgsProcessingParameterNumber,
38
+                       QgsProcessingParameterBoolean,
39
+                       QgsProcessingParameterEnum,
40
+                       QgsProcessingParameterString,
41
+                       QgsProcessingParameterFile,
42
+                       QgsProcessingParameterRasterDestination,
43
+                       QgsProcessingParameterMultipleLayers)
44
+from .algo_base import plToolsBaseAlgorithm
45
+
46
+class mapcalc_Algorithm(plToolsBaseAlgorithm):
47
+
48
+    COMMAND = 'plmapcalc'
49
+
50
+    OUTPUT1   = 'OUTPUT1'
51
+    OUTPUT2   = 'OUTPUT2'
52
+    OUTPUT3   = 'OUTPUT3'
53
+    OUTPUT4   = 'OUTPUT4'
54
+    OUTPUT5   = 'OUTPUT5'
55
+    OUTTYP1   = 'OUTTYP1'
56
+    OUTTYP2   = 'OUTTYP2'
57
+    OUTTYP3   = 'OUTTYP3'
58
+    OUTTYP4   = 'OUTTYP4'
59
+    OUTTYP5   = 'OUTTYP5'
60
+    ENUMTYPES = ['Byte','Int16','Int32','Float32','Float64']
61
+    OUTNULL1  = 'OUTNULL1'
62
+    OUTNULL2  = 'OUTNULL2'
63
+    OUTNULL3  = 'OUTNULL3'
64
+    OUTNULL4  = 'OUTNULL4'
65
+    OUTNULL5  = 'OUTNULL5'
66
+    OUTCOMP1  = 'OUTCOMP1'
67
+    OUTCOMP2  = 'OUTCOMP2'
68
+    OUTCOMP3  = 'OUTCOMP3'
69
+    OUTCOMP4  = 'OUTCOMP4'
70
+    OUTCOMP5  = 'OUTCOMP5'
71
+    ENUMCOMP  = ['NONE','DEFLATE','LZW']
72
+    INPUTS    = 'INPUTS'
73
+    CODEBEGIN = 'CODEBEGIN'
74
+    CODERUN   = 'CODERUN'
75
+    CODEEND   = 'CODEEND'
76
+    MEMCOUNT  = 'MEMCOUNT'
77
+    MEMZERO   = 'MEMZERO'
78
+    MEMREAD   = 'MEMREAD'
79
+    MEMSAVE   = 'MEMSAVE'
80
+
81
+    def initAlgorithm(self, config):
82
+        super().initAlgorithm(config)
83
+        self.addParameter(QgsProcessingParameterMultipleLayers(self.INPUTS,self.tr('Input raster layers'),QgsProcessing.TypeRaster,optional=False))
84
+
85
+        self.addParameter(QgsProcessingParameterString(self.CODEBEGIN,self.tr('Code BEGIN'),optional=True))
86
+        self.addParameter(QgsProcessingParameterString(self.CODERUN,self.tr('Code EXECUTE'),optional=False))
87
+        self.addParameter(QgsProcessingParameterString(self.CODEEND,self.tr('Code END'),optional=True))
88
+
89
+        self.addParameter(QgsProcessingParameterNumber(self.MEMCOUNT,self.tr('Memory buffer size'),optional=True))
90
+        self.addParameter(QgsProcessingParameterBoolean(self.MEMZERO,self.tr('Save with zeros'),defaultValue=False))
91
+        self.addParameter(QgsProcessingParameterFile(self.MEMREAD,self.tr('File to read into memory buffer'),optional=True))
92
+        self.addParameter(QgsProcessingParameterFile(self.MEMSAVE,self.tr('File to store memory buffer'),optional=True))
93
+
94
+        self.addParameter(QgsProcessingParameterRasterDestination(self.OUTPUT1,self.tr('Output layer 1'),optional=True,createByDefault=False))
95
+        self.addParameter(QgsProcessingParameterEnum(self.OUTTYP1,self.tr('Data type 1'),self.ENUMTYPES,defaultValue=4,allowMultiple=False,optional=True))
96
+        self.addParameter(QgsProcessingParameterNumber(self.OUTNULL1,self.tr('No-data value 1'),defaultValue=-9999,optional=True))
97
+        self.addParameter(QgsProcessingParameterEnum(self.OUTCOMP1,self.tr('Compression 1'),self.ENUMCOMP,defaultValue=0,allowMultiple=False,optional=True))
98
+
99
+        self.addParameter(QgsProcessingParameterRasterDestination(self.OUTPUT2,self.tr('Output layer 2'),optional=True,createByDefault=False))
100
+        self.addParameter(QgsProcessingParameterEnum(self.OUTTYP2,self.tr('Data type 2'),self.ENUMTYPES,defaultValue=4,allowMultiple=False,optional=True))
101
+        self.addParameter(QgsProcessingParameterNumber(self.OUTNULL2,self.tr('No-data value 2'),defaultValue=-9999,optional=True))
102
+        self.addParameter(QgsProcessingParameterEnum(self.OUTCOMP2,self.tr('Compression 2'),self.ENUMCOMP,defaultValue=0,allowMultiple=False,optional=True))
103
+
104
+        self.addParameter(QgsProcessingParameterRasterDestination(self.OUTPUT3,self.tr('Output layer 3'),optional=True,createByDefault=False))
105
+        self.addParameter(QgsProcessingParameterEnum(self.OUTTYP3,self.tr('Data type 3'),self.ENUMTYPES,defaultValue=4,allowMultiple=False,optional=True))
106
+        self.addParameter(QgsProcessingParameterNumber(self.OUTNULL3,self.tr('No-data value 3'),defaultValue=-9999,optional=True))
107
+        self.addParameter(QgsProcessingParameterEnum(self.OUTCOMP3,self.tr('Compression 3'),self.ENUMCOMP,defaultValue=0,allowMultiple=False,optional=True))
108
+
109
+        self.addParameter(QgsProcessingParameterRasterDestination(self.OUTPUT4,self.tr('Output layer 4'),optional=True,createByDefault=False))
110
+        self.addParameter(QgsProcessingParameterEnum(self.OUTTYP4,self.tr('Data type 4'),self.ENUMTYPES,defaultValue=4,allowMultiple=False,optional=True))
111
+        self.addParameter(QgsProcessingParameterNumber(self.OUTNULL4,self.tr('No-data value 4'),defaultValue=-9999,optional=True))
112
+        self.addParameter(QgsProcessingParameterEnum(self.OUTCOMP4,self.tr('Compression 4'),self.ENUMCOMP,defaultValue=0,allowMultiple=False,optional=True))
113
+
114
+        self.addParameter(QgsProcessingParameterRasterDestination(self.OUTPUT5,self.tr('Output layer 5'),optional=True,createByDefault=False))
115
+        self.addParameter(QgsProcessingParameterEnum(self.OUTTYP5,self.tr('Data type 5'),self.ENUMTYPES,defaultValue=4,allowMultiple=False,optional=True))
116
+        self.addParameter(QgsProcessingParameterNumber(self.OUTNULL5,self.tr('No-data value 5'),defaultValue=-9999,optional=True))
117
+        self.addParameter(QgsProcessingParameterEnum(self.OUTCOMP5,self.tr('Compression 5'),self.ENUMCOMP,defaultValue=0,allowMultiple=False,optional=True))
118
+
119
+
120
+    def processAlgorithm(self, parameters, context, feedback):
121
+        arguments = [self.COMMAND,'-f']
122
+        inputs = self.parameterAsLayerList(parameters, self.INPUTS, context)
123
+        if inputs is not None:
124
+            for layer in inputs:
125
+                arguments.append('-i')
126
+                arguments.append(layer.source())
127
+
128
+        memcount = self.parameterAsInt(parameters, self.MEMCOUNT, context)
129
+        if memcount:
130
+            arguments.append('-m')
131
+            arguments.append(str(memcount))
132
+        memzero = self.parameterAsBoolean(parameters, self.MEMZERO, context)
133
+        if memzero:
134
+            arguments.append('-0')
135
+        memread = self.parameterAsFile(parameters, self.MEMREAD, context)
136
+        if memread:
137
+            arguments.append('-r')
138
+            arguments.append(memread)
139
+        memsave = self.parameterAsFileOutput(parameters, self.MEMSAVE, context)
140
+        if memsave:
141
+            arguments.append('-s')
142
+            arguments.append(memsave)
143
+
144
+        codebegin = self.parameterAsString(parameters, self.CODEBEGIN, context)
145
+        if codebegin:
146
+            arguments.append('--execute-begin="{}"'.format(codebegin))
147
+        coderun = self.parameterAsString(parameters, self.CODERUN, context)
148
+        if coderun:
149
+            arguments.append('--execute="{}"'.format(coderun))
150
+        codeend = self.parameterAsString(parameters, self.CODEEND, context)
151
+        if codeend:
152
+            arguments.append('--execute-end="{}"'.format(codeend))
153
+
154
+        output1 = self.parameterAsOutputLayer(parameters, self.OUTPUT1, context)
155
+        if output1:
156
+            outtyp1 = self.parameterAsEnum(parameters, self.OUTTYP1, context)
157
+            outnull1 = self.parameterAsInt(parameters, self.OUTNULL1, context)
158
+            outcomp1 = self.parameterAsEnum(parameters, self.OUTCOMP1, context)
159
+            arguments.append('-o {}:{}:{}:{}'.format(output1,self.ENUMTYPES[outtyp1],outnull1,self.ENUMCOMP[outcomp1]))
160
+        output2 = self.parameterAsOutputLayer(parameters, self.OUTPUT2, context)
161
+        if output2:
162
+            outtyp2 = self.parameterAsEnum(parameters, self.OUTTYP2, context)
163
+            outnull2 = self.parameterAsInt(parameters, self.OUTNULL2, context)
164
+            outcomp2 = self.parameterAsEnum(parameters, self.OUTCOMP2, context)
165
+            arguments.append('-o {}:{}:{}:{}'.format(output2,self.ENUMTYPES[outtyp2],outnull2,self.ENUMCOMP[outcomp2]))
166
+        output3 = self.parameterAsOutputLayer(parameters, self.OUTPUT3, context)
167
+        if output3:
168
+            outtyp3 = self.parameterAsEnum(parameters, self.OUTTYP3, context)
169
+            outnull3 = self.parameterAsInt(parameters, self.OUTNULL3, context)
170
+            outcomp3 = self.parameterAsEnum(parameters, self.OUTCOMP3, context)
171
+            arguments.append('-o {}:{}:{}:{}'.format(output3,self.ENUMTYPES[outtyp3],outnull3,self.ENUMCOMP[outcomp3]))
172
+        output4 = self.parameterAsOutputLayer(parameters, self.OUTPUT4, context)
173
+        if output4:
174
+            outtyp4 = self.parameterAsEnum(parameters, self.OUTTYP4, context)
175
+            outnull4 = self.parameterAsInt(parameters, self.OUTNULL4, context)
176
+            outcomp4 = self.parameterAsEnum(parameters, self.OUTCOMP4, context)
177
+            arguments.append('-o {}:{}:{}:{}'.format(output4,self.ENUMTYPES[outtyp4],outnull4,self.ENUMCOMP[outcomp4]))
178
+        output5 = self.parameterAsOutputLayer(parameters, self.OUTPUT5, context)
179
+        if output5:
180
+            outtyp5 = self.parameterAsEnum(parameters, self.OUTTYP5, context)
181
+            outnull5 = self.parameterAsInt(parameters, self.OUTNULL5, context)
182
+            outcomp5 = self.parameterAsEnum(parameters, self.OUTCOMP5, context)
183
+            arguments.append('-o {}:{}:{}:{}'.format(output5,self.ENUMTYPES[outtyp5],outnull5,self.ENUMCOMP[outcomp5]))
184
+        if not self.getEnv('PLMAPCALCPATH'):
185
+            arguments.append('--path='+self.quoteString(self.getEnv('PLTOOLSPATH')+'/tcc'))
186
+        self.runplTools(arguments, feedback)
187
+        return {self.OUTPUT1: output1}
188
+
189
+    def name(self):
190
+        return 'plMapcalc - raster map calculator'
191
+
192
+    def groupId(self):
193
+        return ''
194
+
195
+    def createInstance(self):
196
+        return mapcalc_Algorithm()
197
+
198
+    def shortHelpString(self):
199
+        return '''
200
+        plMapcalc is another raster map calculator. It uses a TCC compiler to compile calculation rules. The program uses GDAL to access raster data. plMapcalc produces GeoTIFF files as an output.
201
+        Analysis of plMapcalc was published in the <a href="https://doi.org/10.1016/j.cageo.2021.104824">paper</a>.
202
+        The web page of the software containing help, manual, and examples is <a href="http://plmapcalc.netzel.pl">HERE</a>.
203
+        The GUI exposes only part of the possible options. These options cover most of the needs. To use the full potential of the program, run it from the plTools Console.
204
+        '''
0 205
\ No newline at end of file
... ...
@@ -0,0 +1,674 @@
1
+                    GNU GENERAL PUBLIC LICENSE
2
+                       Version 3, 29 June 2007
3
+
4
+ Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
5
+ Everyone is permitted to copy and distribute verbatim copies
6
+ of this license document, but changing it is not allowed.
7
+
8
+                            Preamble
9
+
10
+  The GNU General Public License is a free, copyleft license for
11
+software and other kinds of works.
12
+
13
+  The licenses for most software and other practical works are designed
14
+to take away your freedom to share and change the works.  By contrast,
15
+the GNU General Public License is intended to guarantee your freedom to
16
+share and change all versions of a program--to make sure it remains free
17
+software for all its users.  We, the Free Software Foundation, use the
18
+GNU General Public License for most of our software; it applies also to
19
+any other work released this way by its authors.  You can apply it to
20
+your programs, too.
21
+
22
+  When we speak of free software, we are referring to freedom, not
23
+price.  Our General Public Licenses are designed to make sure that you
24
+have the freedom to distribute copies of free software (and charge for
25
+them if you wish), that you receive source code or can get it if you
26
+want it, that you can change the software or use pieces of it in new
27
+free programs, and that you know you can do these things.
28
+
29
+  To protect your rights, we need to prevent others from denying you
30
+these rights or asking you to surrender the rights.  Therefore, you have
31
+certain responsibilities if you distribute copies of the software, or if
32
+you modify it: responsibilities to respect the freedom of others.
33
+
34
+  For example, if you distribute copies of such a program, whether
35
+gratis or for a fee, you must pass on to the recipients the same
36
+freedoms that you received.  You must make sure that they, too, receive
37
+or can get the source code.  And you must show them these terms so they
38
+know their rights.
39
+
40
+  Developers that use the GNU GPL protect your rights with two steps:
41
+(1) assert copyright on the software, and (2) offer you this License
42
+giving you legal permission to copy, distribute and/or modify it.
43
+
44
+  For the developers' and authors' protection, the GPL clearly explains
45
+that there is no warranty for this free software.  For both users' and
46
+authors' sake, the GPL requires that modified versions be marked as
47
+changed, so that their problems will not be attributed erroneously to
48
+authors of previous versions.
49
+
50
+  Some devices are designed to deny users access to install or run
51
+modified versions of the software inside them, although the manufacturer
52
+can do so.  This is fundamentally incompatible with the aim of
53
+protecting users' freedom to change the software.  The systematic
54
+pattern of such abuse occurs in the area of products for individuals to
55
+use, which is precisely where it is most unacceptable.  Therefore, we
56
+have designed this version of the GPL to prohibit the practice for those
57
+products.  If such problems arise substantially in other domains, we
58
+stand ready to extend this provision to those domains in future versions
59
+of the GPL, as needed to protect the freedom of users.
60
+
61
+  Finally, every program is threatened constantly by software patents.
62
+States should not allow patents to restrict development and use of
63
+software on general-purpose computers, but in those that do, we wish to
64
+avoid the special danger that patents applied to a free program could
65
+make it effectively proprietary.  To prevent this, the GPL assures that
66
+patents cannot be used to render the program non-free.
67
+
68
+  The precise terms and conditions for copying, distribution and
69
+modification follow.
70
+
71
+                       TERMS AND CONDITIONS
72
+
73
+  0. Definitions.
74
+
75
+  "This License" refers to version 3 of the GNU General Public License.
76
+
77
+  "Copyright" also means copyright-like laws that apply to other kinds of
78
+works, such as semiconductor masks.
79
+
80
+  "The Program" refers to any copyrightable work licensed under this
81
+License.  Each licensee is addressed as "you".  "Licensees" and
82
+"recipients" may be individuals or organizations.
83
+
84
+  To "modify" a work means to copy from or adapt all or part of the work
85
+in a fashion requiring copyright permission, other than the making of an
86
+exact copy.  The resulting work is called a "modified version" of the
87
+earlier work or a work "based on" the earlier work.
88
+
89
+  A "covered work" means either the unmodified Program or a work based
90
+on the Program.
91
+
92
+  To "propagate" a work means to do anything with it that, without
93
+permission, would make you directly or secondarily liable for
94
+infringement under applicable copyright law, except executing it on a
95
+computer or modifying a private copy.  Propagation includes copying,
96
+distribution (with or without modification), making available to the
97
+public, and in some countries other activities as well.
98
+
99
+  To "convey" a work means any kind of propagation that enables other
100
+parties to make or receive copies.  Mere interaction with a user through
101
+a computer network, with no transfer of a copy, is not conveying.
102
+
103
+  An interactive user interface displays "Appropriate Legal Notices"
104
+to the extent that it includes a convenient and prominently visible
105
+feature that (1) displays an appropriate copyright notice, and (2)
106
+tells the user that there is no warranty for the work (except to the
107
+extent that warranties are provided), that licensees may convey the
108
+work under this License, and how to view a copy of this License.  If
109
+the interface presents a list of user commands or options, such as a
110
+menu, a prominent item in the list meets this criterion.
111
+
112
+  1. Source Code.
113
+
114
+  The "source code" for a work means the preferred form of the work
115
+for making modifications to it.  "Object code" means any non-source
116
+form of a work.
117
+
118
+  A "Standard Interface" means an interface that either is an official
119
+standard defined by a recognized standards body, or, in the case of
120
+interfaces specified for a particular programming language, one that
121
+is widely used among developers working in that language.
122
+
123
+  The "System Libraries" of an executable work include anything, other
124
+than the work as a whole, that (a) is included in the normal form of
125
+packaging a Major Component, but which is not part of that Major
126
+Component, and (b) serves only to enable use of the work with that
127
+Major Component, or to implement a Standard Interface for which an
128
+implementation is available to the public in source code form.  A
129
+"Major Component", in this context, means a major essential component
130
+(kernel, window system, and so on) of the specific operating system
131
+(if any) on which the executable work runs, or a compiler used to
132
+produce the work, or an object code interpreter used to run it.
133
+
134
+  The "Corresponding Source" for a work in object code form means all
135
+the source code needed to generate, install, and (for an executable
136
+work) run the object code and to modify the work, including scripts to
137
+control those activities.  However, it does not include the work's
138
+System Libraries, or general-purpose tools or generally available free
139
+programs which are used unmodified in performing those activities but
140
+which are not part of the work.  For example, Corresponding Source
141
+includes interface definition files associated with source files for
142
+the work, and the source code for shared libraries and dynamically
143
+linked subprograms that the work is specifically designed to require,
144
+such as by intimate data communication or control flow between those
145
+subprograms and other parts of the work.
146
+
147
+  The Corresponding Source need not include anything that users
148
+can regenerate automatically from other parts of the Corresponding
149
+Source.
150
+
151
+  The Corresponding Source for a work in source code form is that
152
+same work.
153
+
154
+  2. Basic Permissions.
155
+
156
+  All rights granted under this License are granted for the term of
157
+copyright on the Program, and are irrevocable provided the stated
158
+conditions are met.  This License explicitly affirms your unlimited
159
+permission to run the unmodified Program.  The output from running a
160
+covered work is covered by this License only if the output, given its
161
+content, constitutes a covered work.  This License acknowledges your
162
+rights of fair use or other equivalent, as provided by copyright law.
163
+
164
+  You may make, run and propagate covered works that you do not
165
+convey, without conditions so long as your license otherwise remains
166
+in force.  You may convey covered works to others for the sole purpose
167
+of having them make modifications exclusively for you, or provide you
168
+with facilities for running those works, provided that you comply with
169
+the terms of this License in conveying all material for which you do
170
+not control copyright.  Those thus making or running the covered works
171
+for you must do so exclusively on your behalf, under your direction
172
+and control, on terms that prohibit them from making any copies of
173
+your copyrighted material outside their relationship with you.
174
+
175
+  Conveying under any other circumstances is permitted solely under
176
+the conditions stated below.  Sublicensing is not allowed; section 10
177
+makes it unnecessary.
178
+
179
+  3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180
+
181
+  No covered work shall be deemed part of an effective technological
182
+measure under any applicable law fulfilling obligations under article
183
+11 of the WIPO copyright treaty adopted on 20 December 1996, or
184
+similar laws prohibiting or restricting circumvention of such
185
+measures.
186
+
187
+  When you convey a covered work, you waive any legal power to forbid
188
+circumvention of technological measures to the extent such circumvention
189
+is effected by exercising rights under this License with respect to
190
+the covered work, and you disclaim any intention to limit operation or
191
+modification of the work as a means of enforcing, against the work's
192
+users, your or third parties' legal rights to forbid circumvention of
193
+technological measures.
194
+
195
+  4. Conveying Verbatim Copies.
196
+
197
+  You may convey verbatim copies of the Program's source code as you
198
+receive it, in any medium, provided that you conspicuously and
199
+appropriately publish on each copy an appropriate copyright notice;
200
+keep intact all notices stating that this License and any
201
+non-permissive terms added in accord with section 7 apply to the code;
202
+keep intact all notices of the absence of any warranty; and give all
203
+recipients a copy of this License along with the Program.
204
+
205
+  You may charge any price or no price for each copy that you convey,
206
+and you may offer support or warranty protection for a fee.
207
+
208
+  5. Conveying Modified Source Versions.
209
+
210
+  You may convey a work based on the Program, or the modifications to
211
+produce it from the Program, in the form of source code under the
212
+terms of section 4, provided that you also meet all of these conditions:
213
+
214
+    a) The work must carry prominent notices stating that you modified
215
+    it, and giving a relevant date.
216
+
217
+    b) The work must carry prominent notices stating that it is
218
+    released under this License and any conditions added under section
219
+    7.  This requirement modifies the requirement in section 4 to
220
+    "keep intact all notices".
221
+
222
+    c) You must license the entire work, as a whole, under this
223
+    License to anyone who comes into possession of a copy.  This
224
+    License will therefore apply, along with any applicable section 7
225
+    additional terms, to the whole of the work, and all its parts,
226
+    regardless of how they are packaged.  This License gives no
227
+    permission to license the work in any other way, but it does not
228
+    invalidate such permission if you have separately received it.
229
+
230
+    d) If the work has interactive user interfaces, each must display
231
+    Appropriate Legal Notices; however, if the Program has interactive
232
+    interfaces that do not display Appropriate Legal Notices, your
233
+    work need not make them do so.
234
+
235
+  A compilation of a covered work with other separate and independent
236
+works, which are not by their nature extensions of the covered work,
237
+and which are not combined with it such as to form a larger program,
238
+in or on a volume of a storage or distribution medium, is called an
239
+"aggregate" if the compilation and its resulting copyright are not
240
+used to limit the access or legal rights of the compilation's users
241
+beyond what the individual works permit.  Inclusion of a covered work
242
+in an aggregate does not cause this License to apply to the other
243
+parts of the aggregate.
244
+
245
+  6. Conveying Non-Source Forms.
246
+
247
+  You may convey a covered work in object code form under the terms
248
+of sections 4 and 5, provided that you also convey the
249
+machine-readable Corresponding Source under the terms of this License,
250
+in one of these ways:
251
+
252
+    a) Convey the object code in, or embodied in, a physical product
253
+    (including a physical distribution medium), accompanied by the
254
+    Corresponding Source fixed on a durable physical medium
255
+    customarily used for software interchange.
256
+
257
+    b) Convey the object code in, or embodied in, a physical product
258
+    (including a physical distribution medium), accompanied by a
259
+    written offer, valid for at least three years and valid for as
260
+    long as you offer spare parts or customer support for that product
261
+    model, to give anyone who possesses the object code either (1) a
262
+    copy of the Corresponding Source for all the software in the
263
+    product that is covered by this License, on a durable physical
264
+    medium customarily used for software interchange, for a price no
265
+    more than your reasonable cost of physically performing this
266
+    conveying of source, or (2) access to copy the
267
+    Corresponding Source from a network server at no charge.
268
+
269
+    c) Convey individual copies of the object code with a copy of the
270
+    written offer to provide the Corresponding Source.  This
271
+    alternative is allowed only occasionally and noncommercially, and
272
+    only if you received the object code with such an offer, in accord
273
+    with subsection 6b.
274
+
275
+    d) Convey the object code by offering access from a designated
276
+    place (gratis or for a charge), and offer equivalent access to the
277
+    Corresponding Source in the same way through the same place at no
278
+    further charge.  You need not require recipients to copy the
279
+    Corresponding Source along with the object code.  If the place to
280
+    copy the object code is a network server, the Corresponding Source
281
+    may be on a different server (operated by you or a third party)
282
+    that supports equivalent copying facilities, provided you maintain
283
+    clear directions next to the object code saying where to find the
284
+    Corresponding Source.  Regardless of what server hosts the
285
+    Corresponding Source, you remain obligated to ensure that it is
286
+    available for as long as needed to satisfy these requirements.
287
+
288
+    e) Convey the object code using peer-to-peer transmission, provided
289
+    you inform other peers where the object code and Corresponding
290
+    Source of the work are being offered to the general public at no
291
+    charge under subsection 6d.
292
+
293
+  A separable portion of the object code, whose source code is excluded
294
+from the Corresponding Source as a System Library, need not be
295
+included in conveying the object code work.
296
+
297
+  A "User Product" is either (1) a "consumer product", which means any
298
+tangible personal property which is normally used for personal, family,
299
+or household purposes, or (2) anything designed or sold for incorporation
300
+into a dwelling.  In determining whether a product is a consumer product,
301
+doubtful cases shall be resolved in favor of coverage.  For a particular
302
+product received by a particular user, "normally used" refers to a
303
+typical or common use of that class of product, regardless of the status
304
+of the particular user or of the way in which the particular user
305
+actually uses, or expects or is expected to use, the product.  A product
306
+is a consumer product regardless of whether the product has substantial
307
+commercial, industrial or non-consumer uses, unless such uses represent
308
+the only significant mode of use of the product.
309
+
310
+  "Installation Information" for a User Product means any methods,
311
+procedures, authorization keys, or other information required to install
312
+and execute modified versions of a covered work in that User Product from
313
+a modified version of its Corresponding Source.  The information must
314
+suffice to ensure that the continued functioning of the modified object
315
+code is in no case prevented or interfered with solely because
316
+modification has been made.
317
+
318
+  If you convey an object code work under this section in, or with, or
319
+specifically for use in, a User Product, and the conveying occurs as
320
+part of a transaction in which the right of possession and use of the
321
+User Product is transferred to the recipient in perpetuity or for a
322
+fixed term (regardless of how the transaction is characterized), the
323
+Corresponding Source conveyed under this section must be accompanied
324
+by the Installation Information.  But this requirement does not apply
325
+if neither you nor any third party retains the ability to install
326
+modified object code on the User Product (for example, the work has
327
+been installed in ROM).
328
+
329
+  The requirement to provide Installation Information does not include a
330
+requirement to continue to provide support service, warranty, or updates
331
+for a work that has been modified or installed by the recipient, or for
332
+the User Product in which it has been modified or installed.  Access to a
333
+network may be denied when the modification itself materially and
334
+adversely affects the operation of the network or violates the rules and
335
+protocols for communication across the network.
336
+
337
+  Corresponding Source conveyed, and Installation Information provided,
338
+in accord with this section must be in a format that is publicly
339
+documented (and with an implementation available to the public in
340
+source code form), and must require no special password or key for
341
+unpacking, reading or copying.
342
+
343
+  7. Additional Terms.
344
+
345
+  "Additional permissions" are terms that supplement the terms of this
346
+License by making exceptions from one or more of its conditions.
347
+Additional permissions that are applicable to the entire Program shall
348
+be treated as though they were included in this License, to the extent
349
+that they are valid under applicable law.  If additional permissions
350
+apply only to part of the Program, that part may be used separately
351
+under those permissions, but the entire Program remains governed by
352
+this License without regard to the additional permissions.
353
+
354
+  When you convey a copy of a covered work, you may at your option
355
+remove any additional permissions from that copy, or from any part of
356
+it.  (Additional permissions may be written to require their own
357
+removal in certain cases when you modify the work.)  You may place
358
+additional permissions on material, added by you to a covered work,
359
+for which you have or can give appropriate copyright permission.
360
+
361
+  Notwithstanding any other provision of this License, for material you
362
+add to a covered work, you may (if authorized by the copyright holders of
363
+that material) supplement the terms of this License with terms:
364
+
365
+    a) Disclaiming warranty or limiting liability differently from the
366
+    terms of sections 15 and 16 of this License; or
367
+
368
+    b) Requiring preservation of specified reasonable legal notices or
369
+    author attributions in that material or in the Appropriate Legal
370
+    Notices displayed by works containing it; or
371
+
372
+    c) Prohibiting misrepresentation of the origin of that material, or
373
+    requiring that modified versions of such material be marked in
374
+    reasonable ways as different from the original version; or
375
+
376
+    d) Limiting the use for publicity purposes of names of licensors or
377
+    authors of the material; or
378
+
379
+    e) Declining to grant rights under trademark law for use of some
380
+    trade names, trademarks, or service marks; or
381
+
382
+    f) Requiring indemnification of licensors and authors of that
383
+    material by anyone who conveys the material (or modified versions of
384
+    it) with contractual assumptions of liability to the recipient, for
385
+    any liability that these contractual assumptions directly impose on
386
+    those licensors and authors.
387
+
388
+  All other non-permissive additional terms are considered "further
389
+restrictions" within the meaning of section 10.  If the Program as you
390
+received it, or any part of it, contains a notice stating that it is
391
+governed by this License along with a term that is a further
392
+restriction, you may remove that term.  If a license document contains
393
+a further restriction but permits relicensing or conveying under this
394
+License, you may add to a covered work material governed by the terms
395
+of that license document, provided that the further restriction does
396
+not survive such relicensing or conveying.
397
+
398
+  If you add terms to a covered work in accord with this section, you
399
+must place, in the relevant source files, a statement of the
400
+additional terms that apply to those files, or a notice indicating
401
+where to find the applicable terms.
402
+
403
+  Additional terms, permissive or non-permissive, may be stated in the
404
+form of a separately written license, or stated as exceptions;
405
+the above requirements apply either way.
406
+
407
+  8. Termination.
408
+
409
+  You may not propagate or modify a covered work except as expressly
410
+provided under this License.  Any attempt otherwise to propagate or
411
+modify it is void, and will automatically terminate your rights under
412
+this License (including any patent licenses granted under the third
413
+paragraph of section 11).
414
+
415
+  However, if you cease all violation of this License, then your
416
+license from a particular copyright holder is reinstated (a)
417
+provisionally, unless and until the copyright holder explicitly and
418
+finally terminates your license, and (b) permanently, if the copyright
419
+holder fails to notify you of the violation by some reasonable means
420
+prior to 60 days after the cessation.
421
+
422
+  Moreover, your license from a particular copyright holder is
423
+reinstated permanently if the copyright holder notifies you of the
424
+violation by some reasonable means, this is the first time you have
425
+received notice of violation of this License (for any work) from that
426
+copyright holder, and you cure the violation prior to 30 days after
427
+your receipt of the notice.
428
+
429
+  Termination of your rights under this section does not terminate the
430
+licenses of parties who have received copies or rights from you under
431
+this License.  If your rights have been terminated and not permanently
432
+reinstated, you do not qualify to receive new licenses for the same
433
+material under section 10.
434
+
435
+  9. Acceptance Not Required for Having Copies.
436
+
437
+  You are not required to accept this License in order to receive or
438
+run a copy of the Program.  Ancillary propagation of a covered work
439
+occurring solely as a consequence of using peer-to-peer transmission
440
+to receive a copy likewise does not require acceptance.  However,
441
+nothing other than this License grants you permission to propagate or
442
+modify any covered work.  These actions infringe copyright if you do
443
+not accept this License.  Therefore, by modifying or propagating a
444
+covered work, you indicate your acceptance of this License to do so.
445
+
446
+  10. Automatic Licensing of Downstream Recipients.
447
+
448
+  Each time you convey a covered work, the recipient automatically
449
+receives a license from the original licensors, to run, modify and
450
+propagate that work, subject to this License.  You are not responsible
451
+for enforcing compliance by third parties with this License.
452
+
453
+  An "entity transaction" is a transaction transferring control of an
454
+organization, or substantially all assets of one, or subdividing an
455
+organization, or merging organizations.  If propagation of a covered
456
+work results from an entity transaction, each party to that
457
+transaction who receives a copy of the work also receives whatever
458
+licenses to the work the party's predecessor in interest had or could
459
+give under the previous paragraph, plus a right to possession of the
460
+Corresponding Source of the work from the predecessor in interest, if
461
+the predecessor has it or can get it with reasonable efforts.
462
+
463
+  You may not impose any further restrictions on the exercise of the
464
+rights granted or affirmed under this License.  For example, you may
465
+not impose a license fee, royalty, or other charge for exercise of
466
+rights granted under this License, and you may not initiate litigation
467
+(including a cross-claim or counterclaim in a lawsuit) alleging that
468
+any patent claim is infringed by making, using, selling, offering for
469
+sale, or importing the Program or any portion of it.
470
+
471
+  11. Patents.
472
+
473
+  A "contributor" is a copyright holder who authorizes use under this
474
+License of the Program or a work on which the Program is based.  The
475
+work thus licensed is called the contributor's "contributor version".
476
+
477
+  A contributor's "essential patent claims" are all patent claims
478
+owned or controlled by the contributor, whether already acquired or
479
+hereafter acquired, that would be infringed by some manner, permitted
480
+by this License, of making, using, or selling its contributor version,
481
+but do not include claims that would be infringed only as a
482
+consequence of further modification of the contributor version.  For
483
+purposes of this definition, "control" includes the right to grant
484
+patent sublicenses in a manner consistent with the requirements of
485
+this License.
486
+
487
+  Each contributor grants you a non-exclusive, worldwide, royalty-free
488
+patent license under the contributor's essential patent claims, to
489
+make, use, sell, offer for sale, import and otherwise run, modify and
490
+propagate the contents of its contributor version.
491
+
492
+  In the following three paragraphs, a "patent license" is any express
493
+agreement or commitment, however denominated, not to enforce a patent
494
+(such as an express permission to practice a patent or covenant not to
495
+sue for patent infringement).  To "grant" such a patent license to a
496
+party means to make such an agreement or commitment not to enforce a
497
+patent against the party.
498
+
499
+  If you convey a covered work, knowingly relying on a patent license,
500
+and the Corresponding Source of the work is not available for anyone
501
+to copy, free of charge and under the terms of this License, through a
502
+publicly available network server or other readily accessible means,
503
+then you must either (1) cause the Corresponding Source to be so
504
+available, or (2) arrange to deprive yourself of the benefit of the
505
+patent license for this particular work, or (3) arrange, in a manner
506
+consistent with the requirements of this License, to extend the patent
507
+license to downstream recipients.  "Knowingly relying" means you have
508
+actual knowledge that, but for the patent license, your conveying the
509
+covered work in a country, or your recipient's use of the covered work
510
+in a country, would infringe one or more identifiable patents in that
511
+country that you have reason to believe are valid.
512
+
513
+  If, pursuant to or in connection with a single transaction or
514
+arrangement, you convey, or propagate by procuring conveyance of, a
515
+covered work, and grant a patent license to some of the parties
516
+receiving the covered work authorizing them to use, propagate, modify
517
+or convey a specific copy of the covered work, then the patent license
518
+you grant is automatically extended to all recipients of the covered
519
+work and works based on it.
520
+
521
+  A patent license is "discriminatory" if it does not include within
522
+the scope of its coverage, prohibits the exercise of, or is
523
+conditioned on the non-exercise of one or more of the rights that are
524
+specifically granted under this License.  You may not convey a covered
525
+work if you are a party to an arrangement with a third party that is
526
+in the business of distributing software, under which you make payment
527
+to the third party based on the extent of your activity of conveying
528
+the work, and under which the third party grants, to any of the
529
+parties who would receive the covered work from you, a discriminatory
530
+patent license (a) in connection with copies of the covered work
531
+conveyed by you (or copies made from those copies), or (b) primarily
532
+for and in connection with specific products or compilations that
533
+contain the covered work, unless you entered into that arrangement,
534
+or that patent license was granted, prior to 28 March 2007.
535
+
536
+  Nothing in this License shall be construed as excluding or limiting
537
+any implied license or other defenses to infringement that may
538
+otherwise be available to you under applicable patent law.
539
+
540
+  12. No Surrender of Others' Freedom.
541
+
542
+  If conditions are imposed on you (whether by court order, agreement or
543
+otherwise) that contradict the conditions of this License, they do not
544
+excuse you from the conditions of this License.  If you cannot convey a
545
+covered work so as to satisfy simultaneously your obligations under this
546
+License and any other pertinent obligations, then as a consequence you may
547
+not convey it at all.  For example, if you agree to terms that obligate you
548
+to collect a royalty for further conveying from those to whom you convey
549
+the Program, the only way you could satisfy both those terms and this
550
+License would be to refrain entirely from conveying the Program.
551
+
552
+  13. Use with the GNU Affero General Public License.
553
+
554
+  Notwithstanding any other provision of this License, you have
555
+permission to link or combine any covered work with a work licensed
556
+under version 3 of the GNU Affero General Public License into a single
557
+combined work, and to convey the resulting work.  The terms of this
558
+License will continue to apply to the part which is the covered work,
559
+but the special requirements of the GNU Affero General Public License,
560
+section 13, concerning interaction through a network will apply to the
561
+combination as such.
562
+
563
+  14. Revised Versions of this License.
564
+
565
+  The Free Software Foundation may publish revised and/or new versions of
566
+the GNU General Public License from time to time.  Such new versions will
567
+be similar in spirit to the present version, but may differ in detail to
568
+address new problems or concerns.
569
+
570
+  Each version is given a distinguishing version number.  If the
571
+Program specifies that a certain numbered version of the GNU General
572
+Public License "or any later version" applies to it, you have the
573
+option of following the terms and conditions either of that numbered
574
+version or of any later version published by the Free Software
575
+Foundation.  If the Program does not specify a version number of the
576
+GNU General Public License, you may choose any version ever published
577
+by the Free Software Foundation.
578
+
579
+  If the Program specifies that a proxy can decide which future
580
+versions of the GNU General Public License can be used, that proxy's
581
+public statement of acceptance of a version permanently authorizes you
582
+to choose that version for the Program.
583
+
584
+  Later license versions may give you additional or different
585
+permissions.  However, no additional obligations are imposed on any
586
+author or copyright holder as a result of your choosing to follow a
587
+later version.
588
+
589
+  15. Disclaimer of Warranty.
590
+
591
+  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592
+APPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593
+HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594
+OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595
+THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596
+PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597
+IS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598
+ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599
+
600
+  16. Limitation of Liability.
601
+
602
+  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604
+THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605
+GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606
+USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607
+DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608
+PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609
+EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610
+SUCH DAMAGES.
611
+
612
+  17. Interpretation of Sections 15 and 16.
613
+
614
+  If the disclaimer of warranty and limitation of liability provided
615
+above cannot be given local legal effect according to their terms,
616
+reviewing courts shall apply local law that most closely approximates
617
+an absolute waiver of all civil liability in connection with the
618
+Program, unless a warranty or assumption of liability accompanies a
619
+copy of the Program in return for a fee.
620
+
621
+                     END OF TERMS AND CONDITIONS
622
+
623
+            How to Apply These Terms to Your New Programs
624
+
625
+  If you develop a new program, and you want it to be of the greatest
626
+possible use to the public, the best way to achieve this is to make it
627
+free software which everyone can redistribute and change under these terms.
628
+
629
+  To do so, attach the following notices to the program.  It is safest
630
+to attach them to the start of each source file to most effectively
631
+state the exclusion of warranty; and each file should have at least
632
+the "copyright" line and a pointer to where the full notice is found.
633
+
634
+    <one line to give the program's name and a brief idea of what it does.>
635
+    Copyright (C) <year>  <name of author>
636
+
637
+    This program is free software: you can redistribute it and/or modify
638
+    it under the terms of the GNU General Public License as published by
639
+    the Free Software Foundation, either version 3 of the License, or
640
+    (at your option) any later version.
641
+
642
+    This program is distributed in the hope that it will be useful,
643
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
644
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
645
+    GNU General Public License for more details.
646
+
647
+    You should have received a copy of the GNU General Public License
648
+    along with this program.  If not, see <http://www.gnu.org/licenses/>.
649
+
650
+Also add information on how to contact you by electronic and paper mail.
651
+
652
+  If the program does terminal interaction, make it output a short
653
+notice like this when it starts in an interactive mode:
654
+
655
+    <program>  Copyright (C) <year>  <name of author>
656
+    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657
+    This is free software, and you are welcome to redistribute it
658
+    under certain conditions; type `show c' for details.
659
+
660
+The hypothetical commands `show w' and `show c' should show the appropriate
661
+parts of the General Public License.  Of course, your program's commands
662
+might be different; for a GUI interface, you would use an "about box".
663
+
664
+  You should also get your employer (if you work as a programmer) or school,
665
+if any, to sign a "copyright disclaimer" for the program, if necessary.
666
+For more information on this, and how to apply and follow the GNU GPL, see
667
+<http://www.gnu.org/licenses/>.
668
+
669
+  The GNU General Public License does not permit incorporating your program
670
+into proprietary programs.  If your program is a subroutine library, you
671
+may consider it more useful to permit linking proprietary applications with
672
+the library.  If this is what you want to do, use the GNU Lesser General
673
+Public License instead of this License.  But first, please read
674
+<http://www.gnu.org/philosophy/why-not-lgpl.html>.
... ...
@@ -0,0 +1,130 @@
1
+# Makefile for Sphinx documentation
2
+#
3
+
4
+# You can set these variables from the command line.
5
+SPHINXOPTS    =
6
+SPHINXBUILD   = sphinx-build
7
+PAPER         =
8
+BUILDDIR      = build
9
+
10
+# Internal variables.
11
+PAPEROPT_a4     = -D latex_paper_size=a4
12
+PAPEROPT_letter = -D latex_paper_size=letter
13
+ALLSPHINXOPTS   = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) source
14
+
15
+.PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest
16
+
17
+help:
18
+	@echo "Please use \`make <target>' where <target> is one of"
19
+	@echo "  html       to make standalone HTML files"
20
+	@echo "  dirhtml    to make HTML files named index.html in directories"
21
+	@echo "  singlehtml to make a single large HTML file"
22
+	@echo "  pickle     to make pickle files"
23
+	@echo "  json       to make JSON files"
24
+	@echo "  htmlhelp   to make HTML files and a HTML help project"
25
+	@echo "  qthelp     to make HTML files and a qthelp project"
26
+	@echo "  devhelp    to make HTML files and a Devhelp project"
27
+	@echo "  epub       to make an epub"
28
+	@echo "  latex      to make LaTeX files, you can set PAPER=a4 or PAPER=letter"
29
+	@echo "  latexpdf   to make LaTeX files and run them through pdflatex"
30
+	@echo "  text       to make text files"
31
+	@echo "  man        to make manual pages"
32
+	@echo "  changes    to make an overview of all changed/added/deprecated items"
33
+	@echo "  linkcheck  to check all external links for integrity"
34
+	@echo "  doctest    to run all doctests embedded in the documentation (if enabled)"
35
+
36
+clean:
37
+	-rm -rf $(BUILDDIR)/*
38
+
39
+html:
40
+	$(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
41
+	@echo
42
+	@echo "Build finished. The HTML pages are in $(BUILDDIR)/html."
43
+
44
+dirhtml:
45
+	$(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml
46
+	@echo
47
+	@echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml."
48
+
49
+singlehtml:
50
+	$(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml
51
+	@echo
52
+	@echo "Build finished. The HTML page is in $(BUILDDIR)/singlehtml."
53
+
54
+pickle:
55
+	$(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle
56
+	@echo
57
+	@echo "Build finished; now you can process the pickle files."
58
+
59
+json:
60
+	$(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json
61
+	@echo
62
+	@echo "Build finished; now you can process the JSON files."
63
+
64
+htmlhelp:
65
+	$(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp
66
+	@echo
67
+	@echo "Build finished; now you can run HTML Help Workshop with the" \
68
+	      ".hhp project file in $(BUILDDIR)/htmlhelp."
69
+
70
+qthelp:
71
+	$(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp
72
+	@echo
73
+	@echo "Build finished; now you can run "qcollectiongenerator" with the" \
74
+	      ".qhcp project file in $(BUILDDIR)/qthelp, like this:"
75
+	@echo "# qcollectiongenerator $(BUILDDIR)/qthelp/template_class.qhcp"
76
+	@echo "To view the help file:"
77
+	@echo "# assistant -collectionFile $(BUILDDIR)/qthelp/template_class.qhc"
78
+
79
+devhelp:
80
+	$(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp
81
+	@echo
82
+	@echo "Build finished."
83
+	@echo "To view the help file:"
84
+	@echo "# mkdir -p $$HOME/.local/share/devhelp/template_class"
85
+	@echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/template_class"
86
+	@echo "# devhelp"
87
+
88
+epub:
89
+	$(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub
90
+	@echo
91
+	@echo "Build finished. The epub file is in $(BUILDDIR)/epub."
92
+
93
+latex:
94
+	$(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
95
+	@echo
96
+	@echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex."
97
+	@echo "Run \`make' in that directory to run these through (pdf)latex" \
98
+	      "(use \`make latexpdf' here to do that automatically)."
99
+
100
+latexpdf:
101
+	$(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
102
+	@echo "Running LaTeX files through pdflatex..."
103
+	make -C $(BUILDDIR)/latex all-pdf
104
+	@echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."
105
+
106
+text:
107
+	$(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text
108
+	@echo
109
+	@echo "Build finished. The text files are in $(BUILDDIR)/text."
110
+
111
+man:
112
+	$(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man
113
+	@echo
114
+	@echo "Build finished. The manual pages are in $(BUILDDIR)/man."
115
+
116
+changes:
117
+	$(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes
118
+	@echo
119
+	@echo "The overview file is in $(BUILDDIR)/changes."
120
+
121
+linkcheck:
122
+	$(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck
123
+	@echo
124
+	@echo "Link check complete; look for any errors in the above output " \
125
+	      "or in $(BUILDDIR)/linkcheck/output.txt."
126
+
127
+doctest:
128
+	$(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest
129
+	@echo "Testing of doctests in the sources finished, look at the " \
130
+	      "results in $(BUILDDIR)/doctest/output.txt."
... ...
@@ -0,0 +1,4 @@
1
+# Sphinx build info version 1
2
+# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3
+config: 83e1c4902b099a776f40dc02ee011837
4
+tags: 645f666f9bcd5a90fca523b33c5a78b7
... ...
@@ -0,0 +1,20 @@
1
+.. plTools documentation master file, created by
2
+   sphinx-quickstart on Sun Feb 12 17:11:03 2012.
3
+   You can adapt this file completely to your liking, but it should at least
4
+   contain the root `toctree` directive.
5
+
6
+Welcome to plTools' documentation!
7
+============================================
8
+
9
+Contents:
10
+
11
+.. toctree::
12
+   :maxdepth: 2
13
+
14
+Indices and tables
15
+==================
16
+
17
+* :ref:`genindex`
18
+* :ref:`modindex`
19
+* :ref:`search`
20
+
... ...
@@ -0,0 +1,925 @@
1
+/*
2
+ * basic.css
3
+ * ~~~~~~~~~
4
+ *
5
+ * Sphinx stylesheet -- basic theme.
6
+ *
7
+ * :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS.
8
+ * :license: BSD, see LICENSE for details.
9
+ *
10
+ */
11
+
12
+/* -- main layout ----------------------------------------------------------- */
13
+
14
+div.clearer {
15
+    clear: both;
16
+}
17
+
18
+div.section::after {
19
+    display: block;
20
+    content: '';
21
+    clear: left;
22
+}
23
+
24
+/* -- relbar ---------------------------------------------------------------- */
25
+
26
+div.related {
27
+    width: 100%;
28
+    font-size: 90%;
29
+}
30
+
31
+div.related h3 {
32
+    display: none;
33
+}
34
+
35
+div.related ul {
36
+    margin: 0;
37
+    padding: 0 0 0 10px;
38
+    list-style: none;
39
+}
40
+
41
+div.related li {
42
+    display: inline;
43
+}
44
+
45
+div.related li.right {
46
+    float: right;
47
+    margin-right: 5px;
48
+}
49
+
50
+/* -- sidebar --------------------------------------------------------------- */
51
+
52
+div.sphinxsidebarwrapper {
53
+    padding: 10px 5px 0 10px;
54
+}
55
+
56
+div.sphinxsidebar {
57
+    float: left;
58
+    width: 230px;
59
+    margin-left: -100%;
60
+    font-size: 90%;
61
+    word-wrap: break-word;
62
+    overflow-wrap : break-word;
63
+}
64
+
65
+div.sphinxsidebar ul {
66
+    list-style: none;
67
+}
68
+
69
+div.sphinxsidebar ul ul,
70
+div.sphinxsidebar ul.want-points {
71
+    margin-left: 20px;
72
+    list-style: square;
73
+}
74
+
75
+div.sphinxsidebar ul ul {
76
+    margin-top: 0;
77
+    margin-bottom: 0;
78
+}
79
+
80
+div.sphinxsidebar form {
81
+    margin-top: 10px;
82
+}
83
+
84
+div.sphinxsidebar input {
85
+    border: 1px solid #98dbcc;
86
+    font-family: sans-serif;
87
+    font-size: 1em;
88
+}
89
+
90
+div.sphinxsidebar #searchbox form.search {
91
+    overflow: hidden;
92
+}
93
+
94
+div.sphinxsidebar #searchbox input[type="text"] {
95
+    float: left;
96
+    width: 80%;
97
+    padding: 0.25em;
98
+    box-sizing: border-box;
99
+}
100
+
101
+div.sphinxsidebar #searchbox input[type="submit"] {
102
+    float: left;
103
+    width: 20%;
104
+    border-left: none;
105
+    padding: 0.25em;
106
+    box-sizing: border-box;
107
+}
108
+
109
+
110
+img {
111
+    border: 0;
112
+    max-width: 100%;
113
+}
114
+
115
+/* -- search page ----------------------------------------------------------- */
116
+
117
+ul.search {
118
+    margin: 10px 0 0 20px;
119
+    padding: 0;
120
+}
121
+
122
+ul.search li {
123
+    padding: 5px 0 5px 20px;
124
+    background-image: url(file.png);
125
+    background-repeat: no-repeat;
126
+    background-position: 0 7px;
127
+}
128
+
129
+ul.search li a {
130
+    font-weight: bold;
131
+}
132
+
133
+ul.search li p.context {
134
+    color: #888;
135
+    margin: 2px 0 0 30px;
136
+    text-align: left;
137
+}
138
+
139
+ul.keywordmatches li.goodmatch a {
140
+    font-weight: bold;
141
+}
142
+
143
+/* -- index page ------------------------------------------------------------ */
144
+
145
+table.contentstable {
146
+    width: 90%;
147
+    margin-left: auto;
148
+    margin-right: auto;
149
+}
150
+
151
+table.contentstable p.biglink {
152
+    line-height: 150%;
153
+}
154
+
155
+a.biglink {
156
+    font-size: 1.3em;
157
+}
158
+
159
+span.linkdescr {
160
+    font-style: italic;
161
+    padding-top: 5px;
162
+    font-size: 90%;
163
+}
164
+
165
+/* -- general index --------------------------------------------------------- */
166
+
167
+table.indextable {
168
+    width: 100%;
169
+}
170
+
171
+table.indextable td {
172
+    text-align: left;
173
+    vertical-align: top;
174
+}
175
+
176
+table.indextable ul {
177
+    margin-top: 0;
178
+    margin-bottom: 0;
179
+    list-style-type: none;
180
+}
181
+
182
+table.indextable > tbody > tr > td > ul {
183
+    padding-left: 0em;
184
+}
185
+
186
+table.indextable tr.pcap {
187
+    height: 10px;
188
+}
189
+
190
+table.indextable tr.cap {
191
+    margin-top: 10px;
192
+    background-color: #f2f2f2;
193
+}
194
+
195
+img.toggler {
196
+    margin-right: 3px;
197
+    margin-top: 3px;
198
+    cursor: pointer;
199
+}
200
+
201
+div.modindex-jumpbox {
202
+    border-top: 1px solid #ddd;
203
+    border-bottom: 1px solid #ddd;
204
+    margin: 1em 0 1em 0;
205
+    padding: 0.4em;
206
+}
207
+
208
+div.genindex-jumpbox {
209
+    border-top: 1px solid #ddd;
210
+    border-bottom: 1px solid #ddd;
211
+    margin: 1em 0 1em 0;
212
+    padding: 0.4em;
213
+}
214
+
215
+/* -- domain module index --------------------------------------------------- */
216
+
217
+table.modindextable td {
218
+    padding: 2px;
219
+    border-collapse: collapse;
220
+}
221
+
222
+/* -- general body styles --------------------------------------------------- */
223
+
224
+div.body {
225
+    min-width: 360px;
226
+    max-width: 800px;
227
+}
228
+
229
+div.body p, div.body dd, div.body li, div.body blockquote {
230
+    -moz-hyphens: auto;
231
+    -ms-hyphens: auto;
232
+    -webkit-hyphens: auto;
233
+    hyphens: auto;
234
+}
235
+
236
+a.headerlink {
237
+    visibility: hidden;
238
+}
239
+
240
+a:visited {
241
+    color: #551A8B;
242
+}
243
+
244
+h1:hover > a.headerlink,
245
+h2:hover > a.headerlink,
246
+h3:hover > a.headerlink,
247
+h4:hover > a.headerlink,
248
+h5:hover > a.headerlink,
249
+h6:hover > a.headerlink,
250
+dt:hover > a.headerlink,
251
+caption:hover > a.headerlink,
252
+p.caption:hover > a.headerlink,
253
+div.code-block-caption:hover > a.headerlink {
254
+    visibility: visible;
255
+}
256
+
257
+div.body p.caption {
258
+    text-align: inherit;
259
+}
260
+
261
+div.body td {
262
+    text-align: left;
263
+}
264
+
265
+.first {
266
+    margin-top: 0 !important;
267
+}
268
+
269
+p.rubric {
270
+    margin-top: 30px;
271
+    font-weight: bold;
272
+}
273
+
274
+img.align-left, figure.align-left, .figure.align-left, object.align-left {
275
+    clear: left;
276
+    float: left;
277
+    margin-right: 1em;
278
+}
279
+
280
+img.align-right, figure.align-right, .figure.align-right, object.align-right {
281
+    clear: right;
282
+    float: right;
283
+    margin-left: 1em;
284
+}
285
+
286
+img.align-center, figure.align-center, .figure.align-center, object.align-center {
287
+  display: block;
288
+  margin-left: auto;
289
+  margin-right: auto;
290
+}
291
+
292
+img.align-default, figure.align-default, .figure.align-default {
293
+  display: block;
294
+  margin-left: auto;
295
+  margin-right: auto;
296
+}
297
+
298
+.align-left {
299
+    text-align: left;
300
+}
301
+
302
+.align-center {
303
+    text-align: center;
304
+}
305
+
306
+.align-default {
307
+    text-align: center;
308
+}
309
+
310
+.align-right {
311
+    text-align: right;
312
+}
313
+
314
+/* -- sidebars -------------------------------------------------------------- */
315
+
316
+div.sidebar,
317
+aside.sidebar {
318
+    margin: 0 0 0.5em 1em;
319
+    border: 1px solid #ddb;
320
+    padding: 7px;
321
+    background-color: #ffe;
322
+    width: 40%;
323
+    float: right;
324
+    clear: right;
325
+    overflow-x: auto;
326
+}
327
+
328
+p.sidebar-title {
329
+    font-weight: bold;
330
+}
331
+
332
+nav.contents,
333
+aside.topic,
334
+div.admonition, div.topic, blockquote {
335
+    clear: left;
336
+}
337
+
338
+/* -- topics ---------------------------------------------------------------- */
339
+
340
+nav.contents,
341
+aside.topic,
342
+div.topic {
343
+    border: 1px solid #ccc;
344
+    padding: 7px;
345
+    margin: 10px 0 10px 0;
346
+}
347
+
348
+p.topic-title {
349
+    font-size: 1.1em;
350
+    font-weight: bold;
351
+    margin-top: 10px;
352
+}
353
+
354
+/* -- admonitions ----------------------------------------------------------- */
355
+
356
+div.admonition {
357
+    margin-top: 10px;
358
+    margin-bottom: 10px;
359
+    padding: 7px;
360
+}
361
+
362
+div.admonition dt {
363
+    font-weight: bold;
364
+}
365
+
366
+p.admonition-title {
367
+    margin: 0px 10px 5px 0px;
368
+    font-weight: bold;
369
+}
370
+
371
+div.body p.centered {
372
+    text-align: center;
373
+    margin-top: 25px;
374
+}
375
+
376
+/* -- content of sidebars/topics/admonitions -------------------------------- */
377
+
378
+div.sidebar > :last-child,
379
+aside.sidebar > :last-child,
380
+nav.contents > :last-child,
381
+aside.topic > :last-child,
382
+div.topic > :last-child,
383
+div.admonition > :last-child {
384
+    margin-bottom: 0;
385
+}
386
+
387
+div.sidebar::after,
388
+aside.sidebar::after,
389
+nav.contents::after,
390
+aside.topic::after,
391
+div.topic::after,
392
+div.admonition::after,
393
+blockquote::after {
394
+    display: block;
395
+    content: '';
396
+    clear: both;
397
+}
398
+
399
+/* -- tables ---------------------------------------------------------------- */
400
+
401
+table.docutils {
402
+    margin-top: 10px;
403
+    margin-bottom: 10px;
404
+    border: 0;
405
+    border-collapse: collapse;
406
+}
407
+
408
+table.align-center {
409
+    margin-left: auto;
410
+    margin-right: auto;
411
+}
412
+
413
+table.align-default {
414
+    margin-left: auto;
415
+    margin-right: auto;
416
+}
417
+
418
+table caption span.caption-number {
419
+    font-style: italic;
420
+}
421
+
422
+table caption span.caption-text {
423
+}
424
+
425
+table.docutils td, table.docutils th {
426
+    padding: 1px 8px 1px 5px;
427
+    border-top: 0;
428
+    border-left: 0;
429
+    border-right: 0;
430
+    border-bottom: 1px solid #aaa;
431
+}
432
+
433
+th {
434
+    text-align: left;
435
+    padding-right: 5px;
436
+}
437
+
438
+table.citation {
439
+    border-left: solid 1px gray;
440
+    margin-left: 1px;
441
+}
442
+
443
+table.citation td {
444
+    border-bottom: none;
445
+}
446
+
447
+th > :first-child,
448
+td > :first-child {
449
+    margin-top: 0px;
450
+}
451
+
452
+th > :last-child,
453
+td > :last-child {
454
+    margin-bottom: 0px;
455
+}
456
+
457
+/* -- figures --------------------------------------------------------------- */
458
+
459
+div.figure, figure {
460
+    margin: 0.5em;
461
+    padding: 0.5em;
462
+}
463
+
464
+div.figure p.caption, figcaption {
465
+    padding: 0.3em;
466
+}
467
+
468
+div.figure p.caption span.caption-number,
469
+figcaption span.caption-number {
470
+    font-style: italic;
471
+}
472
+
473
+div.figure p.caption span.caption-text,
474
+figcaption span.caption-text {
475
+}
476
+
477
+/* -- field list styles ----------------------------------------------------- */
478
+
479
+table.field-list td, table.field-list th {
480
+    border: 0 !important;
481
+}
482
+
483
+.field-list ul {
484
+    margin: 0;
485
+    padding-left: 1em;
486
+}
487
+
488
+.field-list p {
489
+    margin: 0;
490
+}
491
+
492
+.field-name {
493
+    -moz-hyphens: manual;
494
+    -ms-hyphens: manual;
495
+    -webkit-hyphens: manual;
496
+    hyphens: manual;
497
+}
498
+
499
+/* -- hlist styles ---------------------------------------------------------- */
500
+
501
+table.hlist {
502
+    margin: 1em 0;
503
+}
504
+
505
+table.hlist td {
506
+    vertical-align: top;
507
+}
508
+
509
+/* -- object description styles --------------------------------------------- */
510
+
511
+.sig {
512
+	font-family: 'Consolas', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', monospace;
513
+}
514
+
515
+.sig-name, code.descname {
516
+    background-color: transparent;
517
+    font-weight: bold;
518
+}
519
+
520
+.sig-name {
521
+	font-size: 1.1em;
522
+}
523
+
524
+code.descname {
525
+    font-size: 1.2em;
526
+}
527
+
528
+.sig-prename, code.descclassname {
529
+    background-color: transparent;
530
+}
531
+
532
+.optional {
533
+    font-size: 1.3em;
534
+}
535
+
536
+.sig-paren {
537
+    font-size: larger;
538
+}
539
+
540
+.sig-param.n {
541
+	font-style: italic;
542
+}
543
+
544
+/* C++ specific styling */
545
+
546
+.sig-inline.c-texpr,
547
+.sig-inline.cpp-texpr {
548
+	font-family: unset;
549
+}
550
+
551
+.sig.c   .k, .sig.c   .kt,
552
+.sig.cpp .k, .sig.cpp .kt {
553
+	color: #0033B3;
554
+}
555
+
556
+.sig.c   .m,
557
+.sig.cpp .m {
558
+	color: #1750EB;
559
+}
560
+
561
+.sig.c   .s, .sig.c   .sc,
562
+.sig.cpp .s, .sig.cpp .sc {
563
+	color: #067D17;
564
+}
565
+
566
+
567
+/* -- other body styles ----------------------------------------------------- */
568
+
569
+ol.arabic {
570
+    list-style: decimal;
571
+}
572
+
573
+ol.loweralpha {
574
+    list-style: lower-alpha;
575
+}
576
+
577
+ol.upperalpha {
578
+    list-style: upper-alpha;
579
+}
580
+
581
+ol.lowerroman {
582
+    list-style: lower-roman;
583
+}
584
+
585
+ol.upperroman {
586
+    list-style: upper-roman;
587
+}
588
+
589
+:not(li) > ol > li:first-child > :first-child,
590
+:not(li) > ul > li:first-child > :first-child {
591
+    margin-top: 0px;
592
+}
593
+
594
+:not(li) > ol > li:last-child > :last-child,
595
+:not(li) > ul > li:last-child > :last-child {
596
+    margin-bottom: 0px;
597
+}
598
+
599
+ol.simple ol p,
600
+ol.simple ul p,
601
+ul.simple ol p,
602
+ul.simple ul p {
603
+    margin-top: 0;
604
+}
605
+
606
+ol.simple > li:not(:first-child) > p,
607
+ul.simple > li:not(:first-child) > p {
608
+    margin-top: 0;
609
+}
610
+
611
+ol.simple p,
612
+ul.simple p {
613
+    margin-bottom: 0;
614
+}
615
+
616
+aside.footnote > span,
617
+div.citation > span {
618
+    float: left;
619
+}
620
+aside.footnote > span:last-of-type,
621
+div.citation > span:last-of-type {
622
+  padding-right: 0.5em;
623
+}
624
+aside.footnote > p {
625
+  margin-left: 2em;
626
+}
627
+div.citation > p {
628
+  margin-left: 4em;
629
+}
630
+aside.footnote > p:last-of-type,
631
+div.citation > p:last-of-type {
632
+    margin-bottom: 0em;
633
+}
634
+aside.footnote > p:last-of-type:after,
635
+div.citation > p:last-of-type:after {
636
+    content: "";
637
+    clear: both;
638
+}
639
+
640
+dl.field-list {
641
+    display: grid;
642
+    grid-template-columns: fit-content(30%) auto;
643
+}
644
+
645
+dl.field-list > dt {
646
+    font-weight: bold;
647
+    word-break: break-word;
648
+    padding-left: 0.5em;
649
+    padding-right: 5px;
650
+}
651
+
652
+dl.field-list > dd {
653
+    padding-left: 0.5em;
654
+    margin-top: 0em;
655
+    margin-left: 0em;
656
+    margin-bottom: 0em;
657
+}
658
+
659
+dl {
660
+    margin-bottom: 15px;
661
+}
662
+
663
+dd > :first-child {
664
+    margin-top: 0px;
665
+}
666
+
667
+dd ul, dd table {
668
+    margin-bottom: 10px;
669
+}
670
+
671
+dd {
672
+    margin-top: 3px;
673
+    margin-bottom: 10px;
674
+    margin-left: 30px;
675
+}
676
+
677
+.sig dd {
678
+    margin-top: 0px;
679
+    margin-bottom: 0px;
680
+}
681
+
682
+.sig dl {
683
+    margin-top: 0px;
684
+    margin-bottom: 0px;
685
+}
686
+
687
+dl > dd:last-child,
688
+dl > dd:last-child > :last-child {
689
+    margin-bottom: 0;
690
+}
691
+
692
+dt:target, span.highlighted {
693
+    background-color: #fbe54e;
694
+}
695
+
696
+rect.highlighted {
697
+    fill: #fbe54e;
698
+}
699
+
700
+dl.glossary dt {
701
+    font-weight: bold;
702
+    font-size: 1.1em;
703
+}
704
+
705
+.versionmodified {
706
+    font-style: italic;
707
+}
708
+
709
+.system-message {
710
+    background-color: #fda;
711
+    padding: 5px;
712
+    border: 3px solid red;
713
+}
714
+
715
+.footnote:target  {
716
+    background-color: #ffa;
717
+}
718
+
719
+.line-block {
720
+    display: block;
721
+    margin-top: 1em;
722
+    margin-bottom: 1em;
723
+}
724
+
725
+.line-block .line-block {
726
+    margin-top: 0;
727
+    margin-bottom: 0;
728
+    margin-left: 1.5em;
729
+}
730
+
731
+.guilabel, .menuselection {
732
+    font-family: sans-serif;
733
+}
734
+
735
+.accelerator {
736
+    text-decoration: underline;
737
+}
738
+
739
+.classifier {
740
+    font-style: oblique;
741
+}
742
+
743
+.classifier:before {
744
+    font-style: normal;
745
+    margin: 0 0.5em;
746
+    content: ":";
747
+    display: inline-block;
748
+}
749
+
750
+abbr, acronym {
751
+    border-bottom: dotted 1px;
752
+    cursor: help;
753
+}
754
+
755
+.translated {
756
+    background-color: rgba(207, 255, 207, 0.2)
757
+}
758
+
759
+.untranslated {
760
+    background-color: rgba(255, 207, 207, 0.2)
761
+}
762
+
763
+/* -- code displays --------------------------------------------------------- */
764
+
765
+pre {
766
+    overflow: auto;
767
+    overflow-y: hidden;  /* fixes display issues on Chrome browsers */
768
+}
769
+
770
+pre, div[class*="highlight-"] {
771
+    clear: both;
772
+}
773
+
774
+span.pre {
775
+    -moz-hyphens: none;
776
+    -ms-hyphens: none;
777
+    -webkit-hyphens: none;
778
+    hyphens: none;
779
+    white-space: nowrap;
780
+}
781
+
782
+div[class*="highlight-"] {
783
+    margin: 1em 0;
784
+}
785
+
786
+td.linenos pre {
787
+    border: 0;
788
+    background-color: transparent;
789
+    color: #aaa;
790
+}
791
+
792
+table.highlighttable {
793
+    display: block;
794
+}
795
+
796
+table.highlighttable tbody {
797
+    display: block;
798
+}
799
+
800
+table.highlighttable tr {
801
+    display: flex;
802
+}
803
+
804
+table.highlighttable td {
805
+    margin: 0;
806
+    padding: 0;
807
+}
808
+
809
+table.highlighttable td.linenos {
810
+    padding-right: 0.5em;
811
+}
812
+
813
+table.highlighttable td.code {
814
+    flex: 1;
815
+    overflow: hidden;
816
+}
817
+
818
+.highlight .hll {
819
+    display: block;
820
+}
821
+
822
+div.highlight pre,
823
+table.highlighttable pre {
824
+    margin: 0;
825
+}
826
+
827
+div.code-block-caption + div {
828
+    margin-top: 0;
829
+}
830
+
831
+div.code-block-caption {
832
+    margin-top: 1em;
833
+    padding: 2px 5px;
834
+    font-size: small;
835
+}
836
+
837
+div.code-block-caption code {
838
+    background-color: transparent;
839
+}
840
+
841
+table.highlighttable td.linenos,
842
+span.linenos,
843
+div.highlight span.gp {  /* gp: Generic.Prompt */
844
+  user-select: none;
845
+  -webkit-user-select: text; /* Safari fallback only */
846
+  -webkit-user-select: none; /* Chrome/Safari */
847
+  -moz-user-select: none; /* Firefox */
848
+  -ms-user-select: none; /* IE10+ */
849
+}
850
+
851
+div.code-block-caption span.caption-number {
852
+    padding: 0.1em 0.3em;
853
+    font-style: italic;
854
+}
855
+
856
+div.code-block-caption span.caption-text {
857
+}
858
+
859
+div.literal-block-wrapper {
860
+    margin: 1em 0;
861
+}
862
+
863
+code.xref, a code {
864
+    background-color: transparent;
865
+    font-weight: bold;
866
+}
867
+
868
+h1 code, h2 code, h3 code, h4 code, h5 code, h6 code {
869
+    background-color: transparent;
870
+}
871
+
872
+.viewcode-link {
873
+    float: right;
874
+}
875
+
876
+.viewcode-back {
877
+    float: right;
878
+    font-family: sans-serif;
879
+}
880
+
881
+div.viewcode-block:target {
882
+    margin: -1px -10px;
883
+    padding: 0 10px;
884
+}
885
+
886
+/* -- math display ---------------------------------------------------------- */
887
+
888
+img.math {
889
+    vertical-align: middle;
890
+}
891
+
892
+div.body div.math p {
893
+    text-align: center;
894
+}
895
+
896
+span.eqno {
897
+    float: right;
898
+}
899
+
900
+span.eqno a.headerlink {
901
+    position: absolute;
902
+    z-index: 1;
903
+}
904
+
905
+div.math:hover a.headerlink {
906
+    visibility: visible;
907
+}
908
+
909
+/* -- printout stylesheet --------------------------------------------------- */
910
+
911
+@media print {
912
+    div.document,
913
+    div.documentwrapper,
914
+    div.bodywrapper {
915
+        margin: 0 !important;
916
+        width: 100%;
917
+    }
918
+
919
+    div.sphinxsidebar,
920
+    div.related,
921
+    div.footer,
922
+    #top-link {
923
+        display: none;
924
+    }
925
+}
0 926
\ No newline at end of file
... ...
@@ -0,0 +1,269 @@
1
+/*
2
+ * classic.css_t
3
+ * ~~~~~~~~~~~~~
4
+ *
5
+ * Sphinx stylesheet -- classic theme.
6
+ *
7
+ * :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS.
8
+ * :license: BSD, see LICENSE for details.
9
+ *
10
+ */
11
+
12
+@import url("basic.css");
13
+
14
+/* -- page layout ----------------------------------------------------------- */
15
+
16
+html {
17
+    /* CSS hack for macOS's scrollbar (see #1125) */
18
+    background-color: #FFFFFF;
19
+}
20
+
21
+body {
22
+    font-family: sans-serif;
23
+    font-size: 100%;
24
+    background-color: #11303d;
25
+    color: #000;
26
+    margin: 0;
27
+    padding: 0;
28
+}
29
+
30
+div.document {
31
+    display: flex;
32
+    background-color: #1c4e63;
33
+}
34
+
35
+div.documentwrapper {
36
+    float: left;
37
+    width: 100%;
38
+}
39
+
40
+div.bodywrapper {
41
+    margin: 0 0 0 230px;
42
+}
43
+
44
+div.body {
45
+    background-color: #ffffff;
46
+    color: #000000;
47
+    padding: 0 20px 30px 20px;
48
+}
49
+
50
+div.footer {
51
+    color: #ffffff;
52
+    width: 100%;
53
+    padding: 9px 0 9px 0;
54
+    text-align: center;
55
+    font-size: 75%;
56
+}
57
+
58
+div.footer a {
59
+    color: #ffffff;
60
+    text-decoration: underline;
61
+}
62
+
63
+div.related {
64
+    background-color: #133f52;
65
+    line-height: 30px;
66
+    color: #ffffff;
67
+}
68
+
69
+div.related a {
70
+    color: #ffffff;
71
+}
72
+
73
+div.sphinxsidebar {
74
+}
75
+
76
+div.sphinxsidebar h3 {
77
+    font-family: 'Trebuchet MS', sans-serif;
78
+    color: #ffffff;
79
+    font-size: 1.4em;
80
+    font-weight: normal;
81
+    margin: 0;
82
+    padding: 0;
83
+}
84
+
85
+div.sphinxsidebar h3 a {
86
+    color: #ffffff;
87
+}
88
+
89
+div.sphinxsidebar h4 {
90
+    font-family: 'Trebuchet MS', sans-serif;
91
+    color: #ffffff;
92
+    font-size: 1.3em;
93
+    font-weight: normal;
94
+    margin: 5px 0 0 0;
95
+    padding: 0;
96
+}
97
+
98
+div.sphinxsidebar p {
99
+    color: #ffffff;
100
+}
101
+
102
+div.sphinxsidebar p.topless {
103
+    margin: 5px 10px 10px 10px;
104
+}
105
+
106
+div.sphinxsidebar ul {
107
+    margin: 10px;
108
+    padding: 0;
109
+    color: #ffffff;
110
+}
111
+
112
+div.sphinxsidebar a {
113
+    color: #98dbcc;
114
+}
115
+
116
+div.sphinxsidebar input {
117
+    border: 1px solid #98dbcc;
118
+    font-family: sans-serif;
119
+    font-size: 1em;
120
+}
121
+
122
+
123
+
124
+/* -- hyperlink styles ------------------------------------------------------ */
125
+
126
+a {
127
+    color: #355f7c;
128
+    text-decoration: none;
129
+}
130
+
131
+a:visited {
132
+    color: #551a8b;
133
+    text-decoration: none;
134
+}
135
+
136
+a:hover {
137
+    text-decoration: underline;
138
+}
139
+
140
+
141
+
142
+/* -- body styles ----------------------------------------------------------- */
143
+
144
+div.body h1,
145
+div.body h2,
146
+div.body h3,
147
+div.body h4,
148
+div.body h5,
149
+div.body h6 {
150
+    font-family: 'Trebuchet MS', sans-serif;
151
+    background-color: #f2f2f2;
152
+    font-weight: normal;
153
+    color: #20435c;
154
+    border-bottom: 1px solid #ccc;
155
+    margin: 20px -20px 10px -20px;
156
+    padding: 3px 0 3px 10px;
157
+}
158
+
159
+div.body h1 { margin-top: 0; font-size: 200%; }
160
+div.body h2 { font-size: 160%; }
161
+div.body h3 { font-size: 140%; }
162
+div.body h4 { font-size: 120%; }
163
+div.body h5 { font-size: 110%; }
164
+div.body h6 { font-size: 100%; }
165
+
166
+a.headerlink {
167
+    color: #c60f0f;
168
+    font-size: 0.8em;
169
+    padding: 0 4px 0 4px;
170
+    text-decoration: none;
171
+}
172
+
173
+a.headerlink:hover {
174
+    background-color: #c60f0f;
175
+    color: white;
176
+}
177
+
178
+div.body p, div.body dd, div.body li, div.body blockquote {
179
+    text-align: justify;
180
+    line-height: 130%;
181
+}
182
+
183
+div.admonition p.admonition-title + p {
184
+    display: inline;
185
+}
186
+
187
+div.admonition p {
188
+    margin-bottom: 5px;
189
+}
190
+
191
+div.admonition pre {
192
+    margin-bottom: 5px;
193
+}
194
+
195
+div.admonition ul, div.admonition ol {
196
+    margin-bottom: 5px;
197
+}
198
+
199
+div.note {
200
+    background-color: #eee;
201
+    border: 1px solid #ccc;
202
+}
203
+
204
+div.seealso {
205
+    background-color: #ffc;
206
+    border: 1px solid #ff6;
207
+}
208
+
209
+nav.contents,
210
+aside.topic,
211
+div.topic {
212
+    background-color: #eee;
213
+}
214
+
215
+div.warning {
216
+    background-color: #ffe4e4;
217
+    border: 1px solid #f66;
218
+}
219
+
220
+p.admonition-title {
221
+    display: inline;
222
+}
223
+
224
+p.admonition-title:after {
225
+    content: ":";
226
+}
227
+
228
+pre {
229
+    padding: 5px;
230
+    background-color: unset;
231
+    color: unset;
232
+    line-height: 120%;
233
+    border: 1px solid #ac9;
234
+    border-left: none;
235
+    border-right: none;
236
+}
237
+
238
+code {
239
+    background-color: #ecf0f3;
240
+    padding: 0 1px 0 1px;
241
+    font-size: 0.95em;
242
+}
243
+
244
+th, dl.field-list > dt {
245
+    background-color: #ede;
246
+}
247
+
248
+.warning code {
249
+    background: #efc2c2;
250
+}
251
+
252
+.note code {
253
+    background: #d6d6d6;
254
+}
255
+
256
+.viewcode-back {
257
+    font-family: sans-serif;
258
+}
259
+
260
+div.viewcode-block:target {
261
+    background-color: #f4debf;
262
+    border-top: 1px solid #ac9;
263
+    border-bottom: 1px solid #ac9;
264
+}
265
+
266
+div.code-block-caption {
267
+    color: #efefef;
268
+    background-color: #1c4e63;
269
+}
0 270
\ No newline at end of file
... ...
@@ -0,0 +1 @@
1
+@import url("classic.css");
... ...
@@ -0,0 +1,156 @@
1
+/*
2
+ * doctools.js
3
+ * ~~~~~~~~~~~
4
+ *
5
+ * Base JavaScript utilities for all Sphinx HTML documentation.
6
+ *
7
+ * :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS.
8
+ * :license: BSD, see LICENSE for details.
9
+ *
10
+ */
11
+"use strict";
12
+
13
+const BLACKLISTED_KEY_CONTROL_ELEMENTS = new Set([
14
+  "TEXTAREA",
15
+  "INPUT",
16
+  "SELECT",
17
+  "BUTTON",
18
+]);
19
+
20
+const _ready = (callback) => {
21
+  if (document.readyState !== "loading") {
22
+    callback();
23
+  } else {
24
+    document.addEventListener("DOMContentLoaded", callback);
25
+  }
26
+};
27
+
28
+/**
29
+ * Small JavaScript module for the documentation.
30
+ */
31
+const Documentation = {
32
+  init: () => {
33
+    Documentation.initDomainIndexTable();
34
+    Documentation.initOnKeyListeners();
35
+  },
36
+
37
+  /**
38
+   * i18n support
39
+   */
40
+  TRANSLATIONS: {},
41
+  PLURAL_EXPR: (n) => (n === 1 ? 0 : 1),
42
+  LOCALE: "unknown",
43
+
44
+  // gettext and ngettext don't access this so that the functions
45
+  // can safely bound to a different name (_ = Documentation.gettext)
46
+  gettext: (string) => {
47
+    const translated = Documentation.TRANSLATIONS[string];
48
+    switch (typeof translated) {
49
+      case "undefined":
50
+        return string; // no translation
51
+      case "string":
52
+        return translated; // translation exists
53
+      default:
54
+        return translated[0]; // (singular, plural) translation tuple exists
55
+    }
56
+  },
57
+
58
+  ngettext: (singular, plural, n) => {
59
+    const translated = Documentation.TRANSLATIONS[singular];
60
+    if (typeof translated !== "undefined")
61
+      return translated[Documentation.PLURAL_EXPR(n)];
62
+    return n === 1 ? singular : plural;
63
+  },
64
+
65
+  addTranslations: (catalog) => {
66
+    Object.assign(Documentation.TRANSLATIONS, catalog.messages);
67
+    Documentation.PLURAL_EXPR = new Function(
68
+      "n",
69
+      `return (${catalog.plural_expr})`
70
+    );
71
+    Documentation.LOCALE = catalog.locale;
72
+  },
73
+
74
+  /**
75
+   * helper function to focus on search bar
76
+   */
77
+  focusSearchBar: () => {
78
+    document.querySelectorAll("input[name=q]")[0]?.focus();
79
+  },
80
+
81
+  /**
82
+   * Initialise the domain index toggle buttons
83
+   */
84
+  initDomainIndexTable: () => {
85
+    const toggler = (el) => {
86
+      const idNumber = el.id.substr(7);
87
+      const toggledRows = document.querySelectorAll(`tr.cg-${idNumber}`);
88
+      if (el.src.substr(-9) === "minus.png") {
89
+        el.src = `${el.src.substr(0, el.src.length - 9)}plus.png`;
90
+        toggledRows.forEach((el) => (el.style.display = "none"));
91
+      } else {
92
+        el.src = `${el.src.substr(0, el.src.length - 8)}minus.png`;
93
+        toggledRows.forEach((el) => (el.style.display = ""));
94
+      }
95
+    };
96
+
97
+    const togglerElements = document.querySelectorAll("img.toggler");
98
+    togglerElements.forEach((el) =>
99
+      el.addEventListener("click", (event) => toggler(event.currentTarget))
100
+    );
101
+    togglerElements.forEach((el) => (el.style.display = ""));
102
+    if (DOCUMENTATION_OPTIONS.COLLAPSE_INDEX) togglerElements.forEach(toggler);
103
+  },
104
+
105
+  initOnKeyListeners: () => {
106
+    // only install a listener if it is really needed
107
+    if (
108
+      !DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS &&
109
+      !DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS
110
+    )
111
+      return;
112
+
113
+    document.addEventListener("keydown", (event) => {
114
+      // bail for input elements
115
+      if (BLACKLISTED_KEY_CONTROL_ELEMENTS.has(document.activeElement.tagName)) return;
116
+      // bail with special keys
117
+      if (event.altKey || event.ctrlKey || event.metaKey) return;
118
+
119
+      if (!event.shiftKey) {
120
+        switch (event.key) {
121
+          case "ArrowLeft":
122
+            if (!DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS) break;
123
+
124
+            const prevLink = document.querySelector('link[rel="prev"]');
125
+            if (prevLink && prevLink.href) {
126
+              window.location.href = prevLink.href;
127
+              event.preventDefault();
128
+            }
129
+            break;
130
+          case "ArrowRight":
131
+            if (!DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS) break;
132
+
133
+            const nextLink = document.querySelector('link[rel="next"]');
134
+            if (nextLink && nextLink.href) {
135
+              window.location.href = nextLink.href;
136
+              event.preventDefault();
137
+            }
138
+            break;
139
+        }
140
+      }
141
+
142
+      // some keyboard layouts may need Shift to get /
143
+      switch (event.key) {
144
+        case "/":
145
+          if (!DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS) break;
146
+          Documentation.focusSearchBar();
147
+          event.preventDefault();
148
+      }
149
+    });
150
+  },
151
+};
152
+
153
+// quick alias for translations
154
+const _ = Documentation.gettext;
155
+
156
+_ready(Documentation.init);
... ...
@@ -0,0 +1,13 @@
1
+const DOCUMENTATION_OPTIONS = {
2
+    VERSION: '0.1',
3
+    LANGUAGE: 'en',
4
+    COLLAPSE_INDEX: false,
5
+    BUILDER: 'html',
6
+    FILE_SUFFIX: '.html',
7
+    LINK_SUFFIX: '.html',
8
+    HAS_SOURCE: true,
9
+    SOURCELINK_SUFFIX: '.txt',
10
+    NAVIGATION_WITH_KEYS: false,
11
+    SHOW_SEARCH_SUMMARY: true,
12
+    ENABLE_SEARCH_SHORTCUTS: true,
13
+};
0 14
\ No newline at end of file
... ...
@@ -0,0 +1,199 @@
1
+/*
2
+ * language_data.js
3
+ * ~~~~~~~~~~~~~~~~
4
+ *
5
+ * This script contains the language-specific data used by searchtools.js,
6
+ * namely the list of stopwords, stemmer, scorer and splitter.
7
+ *
8
+ * :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS.
9
+ * :license: BSD, see LICENSE for details.
10
+ *
11
+ */
12
+
13
+var stopwords = ["a", "and", "are", "as", "at", "be", "but", "by", "for", "if", "in", "into", "is", "it", "near", "no", "not", "of", "on", "or", "such", "that", "the", "their", "then", "there", "these", "they", "this", "to", "was", "will", "with"];
14
+
15
+
16
+/* Non-minified version is copied as a separate JS file, is available */
17
+
18
+/**
19
+ * Porter Stemmer
20
+ */
21
+var Stemmer = function() {
22
+
23
+  var step2list = {
24
+    ational: 'ate',
25
+    tional: 'tion',
26
+    enci: 'ence',
27
+    anci: 'ance',
28
+    izer: 'ize',
29
+    bli: 'ble',
30
+    alli: 'al',
31
+    entli: 'ent',
32
+    eli: 'e',
33
+    ousli: 'ous',
34
+    ization: 'ize',
35
+    ation: 'ate',
36
+    ator: 'ate',
37
+    alism: 'al',
38
+    iveness: 'ive',
39
+    fulness: 'ful',
40
+    ousness: 'ous',
41
+    aliti: 'al',
42
+    iviti: 'ive',
43
+    biliti: 'ble',
44
+    logi: 'log'
45
+  };
46
+
47
+  var step3list = {
48
+    icate: 'ic',
49
+    ative: '',
50
+    alize: 'al',
51
+    iciti: 'ic',
52
+    ical: 'ic',
53
+    ful: '',
54
+    ness: ''
55
+  };
56
+
57
+  var c = "[^aeiou]";          // consonant
58
+  var v = "[aeiouy]";          // vowel
59
+  var C = c + "[^aeiouy]*";    // consonant sequence
60
+  var V = v + "[aeiou]*";      // vowel sequence
61
+
62
+  var mgr0 = "^(" + C + ")?" + V + C;                      // [C]VC... is m>0
63
+  var meq1 = "^(" + C + ")?" + V + C + "(" + V + ")?$";    // [C]VC[V] is m=1
64
+  var mgr1 = "^(" + C + ")?" + V + C + V + C;              // [C]VCVC... is m>1
65
+  var s_v   = "^(" + C + ")?" + v;                         // vowel in stem
66
+
67
+  this.stemWord = function (w) {
68
+    var stem;
69
+    var suffix;
70
+    var firstch;
71
+    var origword = w;
72
+
73
+    if (w.length < 3)
74
+      return w;
75
+
76
+    var re;
77
+    var re2;
78
+    var re3;
79
+    var re4;
80
+
81
+    firstch = w.substr(0,1);
82
+    if (firstch == "y")
83
+      w = firstch.toUpperCase() + w.substr(1);
84
+
85
+    // Step 1a
86
+    re = /^(.+?)(ss|i)es$/;
87
+    re2 = /^(.+?)([^s])s$/;
88
+
89
+    if (re.test(w))
90
+      w = w.replace(re,"$1$2");
91
+    else if (re2.test(w))
92
+      w = w.replace(re2,"$1$2");
93
+
94
+    // Step 1b
95
+    re = /^(.+?)eed$/;
96
+    re2 = /^(.+?)(ed|ing)$/;
97
+    if (re.test(w)) {
98
+      var fp = re.exec(w);
99
+      re = new RegExp(mgr0);
100
+      if (re.test(fp[1])) {
101
+        re = /.$/;
102
+        w = w.replace(re,"");
103
+      }
104
+    }
105
+    else if (re2.test(w)) {
106
+      var fp = re2.exec(w);
107
+      stem = fp[1];
108
+      re2 = new RegExp(s_v);
109
+      if (re2.test(stem)) {
110
+        w = stem;
111
+        re2 = /(at|bl|iz)$/;
112
+        re3 = new RegExp("([^aeiouylsz])\\1$");
113
+        re4 = new RegExp("^" + C + v + "[^aeiouwxy]$");
114
+        if (re2.test(w))
115
+          w = w + "e";
116
+        else if (re3.test(w)) {
117
+          re = /.$/;
118
+          w = w.replace(re,"");
119
+        }
120
+        else if (re4.test(w))
121
+          w = w + "e";
122
+      }
123
+    }
124
+
125
+    // Step 1c
126
+    re = /^(.+?)y$/;
127
+    if (re.test(w)) {
128
+      var fp = re.exec(w);
129
+      stem = fp[1];
130
+      re = new RegExp(s_v);
131
+      if (re.test(stem))
132
+        w = stem + "i";
133
+    }
134
+
135
+    // Step 2
136
+    re = /^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/;
137
+    if (re.test(w)) {
138
+      var fp = re.exec(w);
139
+      stem = fp[1];
140
+      suffix = fp[2];
141
+      re = new RegExp(mgr0);
142
+      if (re.test(stem))
143
+        w = stem + step2list[suffix];
144
+    }
145
+
146
+    // Step 3
147
+    re = /^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/;
148
+    if (re.test(w)) {
149
+      var fp = re.exec(w);
150
+      stem = fp[1];
151
+      suffix = fp[2];
152
+      re = new RegExp(mgr0);
153
+      if (re.test(stem))
154
+        w = stem + step3list[suffix];
155
+    }
156
+
157
+    // Step 4
158
+    re = /^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/;
159
+    re2 = /^(.+?)(s|t)(ion)$/;
160
+    if (re.test(w)) {
161
+      var fp = re.exec(w);
162
+      stem = fp[1];
163
+      re = new RegExp(mgr1);
164
+      if (re.test(stem))
165
+        w = stem;
166
+    }
167
+    else if (re2.test(w)) {
168
+      var fp = re2.exec(w);
169
+      stem = fp[1] + fp[2];
170
+      re2 = new RegExp(mgr1);
171
+      if (re2.test(stem))
172
+        w = stem;
173
+    }
174
+
175
+    // Step 5
176
+    re = /^(.+?)e$/;
177
+    if (re.test(w)) {
178
+      var fp = re.exec(w);
179
+      stem = fp[1];
180
+      re = new RegExp(mgr1);
181
+      re2 = new RegExp(meq1);
182
+      re3 = new RegExp("^" + C + v + "[^aeiouwxy]$");
183
+      if (re.test(stem) || (re2.test(stem) && !(re3.test(stem))))
184
+        w = stem;
185
+    }
186
+    re = /ll$/;
187
+    re2 = new RegExp(mgr1);
188
+    if (re.test(w) && re2.test(w)) {
189
+      re = /.$/;
190
+      w = w.replace(re,"");
191
+    }
192
+
193
+    // and turn initial Y back to y
194
+    if (firstch == "y")
195
+      w = firstch.toLowerCase() + w.substr(1);
196
+    return w;
197
+  }
198
+}
199
+
... ...
@@ -0,0 +1,74 @@
1
+pre { line-height: 125%; }
2
+td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
3
+span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
4
+td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
5
+span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
6
+.highlight .hll { background-color: #ffffcc }
7
+.highlight { background: #eeffcc; }
8
+.highlight .c { color: #408090; font-style: italic } /* Comment */
9
+.highlight .err { border: 1px solid #FF0000 } /* Error */
10
+.highlight .k { color: #007020; font-weight: bold } /* Keyword */
11
+.highlight .o { color: #666666 } /* Operator */
12
+.highlight .ch { color: #408090; font-style: italic } /* Comment.Hashbang */
13
+.highlight .cm { color: #408090; font-style: italic } /* Comment.Multiline */
14
+.highlight .cp { color: #007020 } /* Comment.Preproc */
15
+.highlight .cpf { color: #408090; font-style: italic } /* Comment.PreprocFile */
16
+.highlight .c1 { color: #408090; font-style: italic } /* Comment.Single */
17
+.highlight .cs { color: #408090; background-color: #fff0f0 } /* Comment.Special */
18
+.highlight .gd { color: #A00000 } /* Generic.Deleted */
19
+.highlight .ge { font-style: italic } /* Generic.Emph */
20
+.highlight .gr { color: #FF0000 } /* Generic.Error */
21
+.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
22
+.highlight .gi { color: #00A000 } /* Generic.Inserted */
23
+.highlight .go { color: #333333 } /* Generic.Output */
24
+.highlight .gp { color: #c65d09; font-weight: bold } /* Generic.Prompt */
25
+.highlight .gs { font-weight: bold } /* Generic.Strong */
26
+.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
27
+.highlight .gt { color: #0044DD } /* Generic.Traceback */
28
+.highlight .kc { color: #007020; font-weight: bold } /* Keyword.Constant */
29
+.highlight .kd { color: #007020; font-weight: bold } /* Keyword.Declaration */
30
+.highlight .kn { color: #007020; font-weight: bold } /* Keyword.Namespace */
31
+.highlight .kp { color: #007020 } /* Keyword.Pseudo */
32
+.highlight .kr { color: #007020; font-weight: bold } /* Keyword.Reserved */
33
+.highlight .kt { color: #902000 } /* Keyword.Type */
34
+.highlight .m { color: #208050 } /* Literal.Number */
35
+.highlight .s { color: #4070a0 } /* Literal.String */
36
+.highlight .na { color: #4070a0 } /* Name.Attribute */
37
+.highlight .nb { color: #007020 } /* Name.Builtin */
38
+.highlight .nc { color: #0e84b5; font-weight: bold } /* Name.Class */
39
+.highlight .no { color: #60add5 } /* Name.Constant */
40
+.highlight .nd { color: #555555; font-weight: bold } /* Name.Decorator */
41
+.highlight .ni { color: #d55537; font-weight: bold } /* Name.Entity */
42
+.highlight .ne { color: #007020 } /* Name.Exception */
43
+.highlight .nf { color: #06287e } /* Name.Function */
44
+.highlight .nl { color: #002070; font-weight: bold } /* Name.Label */
45
+.highlight .nn { color: #0e84b5; font-weight: bold } /* Name.Namespace */
46
+.highlight .nt { color: #062873; font-weight: bold } /* Name.Tag */
47
+.highlight .nv { color: #bb60d5 } /* Name.Variable */
48
+.highlight .ow { color: #007020; font-weight: bold } /* Operator.Word */
49
+.highlight .w { color: #bbbbbb } /* Text.Whitespace */
50
+.highlight .mb { color: #208050 } /* Literal.Number.Bin */
51
+.highlight .mf { color: #208050 } /* Literal.Number.Float */
52
+.highlight .mh { color: #208050 } /* Literal.Number.Hex */
53
+.highlight .mi { color: #208050 } /* Literal.Number.Integer */
54
+.highlight .mo { color: #208050 } /* Literal.Number.Oct */
55
+.highlight .sa { color: #4070a0 } /* Literal.String.Affix */
56
+.highlight .sb { color: #4070a0 } /* Literal.String.Backtick */
57
+.highlight .sc { color: #4070a0 } /* Literal.String.Char */
58
+.highlight .dl { color: #4070a0 } /* Literal.String.Delimiter */
59
+.highlight .sd { color: #4070a0; font-style: italic } /* Literal.String.Doc */
60
+.highlight .s2 { color: #4070a0 } /* Literal.String.Double */
61
+.highlight .se { color: #4070a0; font-weight: bold } /* Literal.String.Escape */
62
+.highlight .sh { color: #4070a0 } /* Literal.String.Heredoc */
63
+.highlight .si { color: #70a0d0; font-style: italic } /* Literal.String.Interpol */
64
+.highlight .sx { color: #c65d09 } /* Literal.String.Other */
65
+.highlight .sr { color: #235388 } /* Literal.String.Regex */
66
+.highlight .s1 { color: #4070a0 } /* Literal.String.Single */
67
+.highlight .ss { color: #517918 } /* Literal.String.Symbol */
68
+.highlight .bp { color: #007020 } /* Name.Builtin.Pseudo */
69
+.highlight .fm { color: #06287e } /* Name.Function.Magic */
70
+.highlight .vc { color: #bb60d5 } /* Name.Variable.Class */
71
+.highlight .vg { color: #bb60d5 } /* Name.Variable.Global */
72
+.highlight .vi { color: #bb60d5 } /* Name.Variable.Instance */
73
+.highlight .vm { color: #bb60d5 } /* Name.Variable.Magic */
74
+.highlight .il { color: #208050 } /* Literal.Number.Integer.Long */
0 75
\ No newline at end of file
... ...
@@ -0,0 +1,574 @@
1
+/*
2
+ * searchtools.js
3
+ * ~~~~~~~~~~~~~~~~
4
+ *
5
+ * Sphinx JavaScript utilities for the full-text search.
6
+ *
7
+ * :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS.
8
+ * :license: BSD, see LICENSE for details.
9
+ *
10
+ */
11
+"use strict";
12
+
13
+/**
14
+ * Simple result scoring code.
15
+ */
16
+if (typeof Scorer === "undefined") {
17
+  var Scorer = {
18
+    // Implement the following function to further tweak the score for each result
19
+    // The function takes a result array [docname, title, anchor, descr, score, filename]
20
+    // and returns the new score.
21
+    /*
22
+    score: result => {
23
+      const [docname, title, anchor, descr, score, filename] = result
24
+      return score
25
+    },
26
+    */
27
+
28
+    // query matches the full name of an object
29
+    objNameMatch: 11,
30
+    // or matches in the last dotted part of the object name
31
+    objPartialMatch: 6,
32
+    // Additive scores depending on the priority of the object
33
+    objPrio: {
34
+      0: 15, // used to be importantResults
35
+      1: 5, // used to be objectResults
36
+      2: -5, // used to be unimportantResults
37
+    },
38
+    //  Used when the priority is not in the mapping.
39
+    objPrioDefault: 0,
40
+
41
+    // query found in title
42
+    title: 15,
43
+    partialTitle: 7,
44
+    // query found in terms
45
+    term: 5,
46
+    partialTerm: 2,
47
+  };
48
+}
49
+
50
+const _removeChildren = (element) => {
51
+  while (element && element.lastChild) element.removeChild(element.lastChild);
52
+};
53
+
54
+/**
55
+ * See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions#escaping
56
+ */
57
+const _escapeRegExp = (string) =>
58
+  string.replace(/[.*+\-?^${}()|[\]\\]/g, "\\$&"); // $& means the whole matched string
59
+
60
+const _displayItem = (item, searchTerms, highlightTerms) => {
61
+  const docBuilder = DOCUMENTATION_OPTIONS.BUILDER;
62
+  const docFileSuffix = DOCUMENTATION_OPTIONS.FILE_SUFFIX;
63
+  const docLinkSuffix = DOCUMENTATION_OPTIONS.LINK_SUFFIX;
64
+  const showSearchSummary = DOCUMENTATION_OPTIONS.SHOW_SEARCH_SUMMARY;
65
+  const contentRoot = document.documentElement.dataset.content_root;
66
+
67
+  const [docName, title, anchor, descr, score, _filename] = item;
68
+
69
+  let listItem = document.createElement("li");
70
+  let requestUrl;
71
+  let linkUrl;
72
+  if (docBuilder === "dirhtml") {
73
+    // dirhtml builder
74
+    let dirname = docName + "/";
75
+    if (dirname.match(/\/index\/$/))
76
+      dirname = dirname.substring(0, dirname.length - 6);
77
+    else if (dirname === "index/") dirname = "";
78
+    requestUrl = contentRoot + dirname;
79
+    linkUrl = requestUrl;
80
+  } else {
81
+    // normal html builders
82
+    requestUrl = contentRoot + docName + docFileSuffix;
83
+    linkUrl = docName + docLinkSuffix;
84
+  }
85
+  let linkEl = listItem.appendChild(document.createElement("a"));
86
+  linkEl.href = linkUrl + anchor;
87
+  linkEl.dataset.score = score;
88
+  linkEl.innerHTML = title;
89
+  if (descr) {
90
+    listItem.appendChild(document.createElement("span")).innerHTML =
91
+      " (" + descr + ")";
92
+    // highlight search terms in the description
93
+    if (SPHINX_HIGHLIGHT_ENABLED)  // set in sphinx_highlight.js
94
+      highlightTerms.forEach((term) => _highlightText(listItem, term, "highlighted"));
95
+  }
96
+  else if (showSearchSummary)
97
+    fetch(requestUrl)
98
+      .then((responseData) => responseData.text())
99
+      .then((data) => {
100
+        if (data)
101
+          listItem.appendChild(
102
+            Search.makeSearchSummary(data, searchTerms)
103
+          );
104
+        // highlight search terms in the summary
105
+        if (SPHINX_HIGHLIGHT_ENABLED)  // set in sphinx_highlight.js
106
+          highlightTerms.forEach((term) => _highlightText(listItem, term, "highlighted"));
107
+      });
108
+  Search.output.appendChild(listItem);
109
+};
110
+const _finishSearch = (resultCount) => {
111
+  Search.stopPulse();
112
+  Search.title.innerText = _("Search Results");
113
+  if (!resultCount)
114
+    Search.status.innerText = Documentation.gettext(
115
+      "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories."
116
+    );
117
+  else
118
+    Search.status.innerText = _(
119
+      `Search finished, found ${resultCount} page(s) matching the search query.`
120
+    );
121
+};
122
+const _displayNextItem = (
123
+  results,
124
+  resultCount,
125
+  searchTerms,
126
+  highlightTerms,
127
+) => {
128
+  // results left, load the summary and display it
129
+  // this is intended to be dynamic (don't sub resultsCount)
130
+  if (results.length) {
131
+    _displayItem(results.pop(), searchTerms, highlightTerms);
132
+    setTimeout(
133
+      () => _displayNextItem(results, resultCount, searchTerms, highlightTerms),
134
+      5
135
+    );
136
+  }
137
+  // search finished, update title and status message
138
+  else _finishSearch(resultCount);
139
+};
140
+
141
+/**
142
+ * Default splitQuery function. Can be overridden in ``sphinx.search`` with a
143
+ * custom function per language.
144
+ *
145
+ * The regular expression works by splitting the string on consecutive characters
146
+ * that are not Unicode letters, numbers, underscores, or emoji characters.
147
+ * This is the same as ``\W+`` in Python, preserving the surrogate pair area.
148
+ */
149
+if (typeof splitQuery === "undefined") {
150
+  var splitQuery = (query) => query
151
+      .split(/[^\p{Letter}\p{Number}_\p{Emoji_Presentation}]+/gu)
152
+      .filter(term => term)  // remove remaining empty strings
153
+}
154
+
155
+/**
156
+ * Search Module
157
+ */
158
+const Search = {
159
+  _index: null,
160
+  _queued_query: null,
161
+  _pulse_status: -1,
162
+
163
+  htmlToText: (htmlString) => {
164
+    const htmlElement = new DOMParser().parseFromString(htmlString, 'text/html');
165
+    htmlElement.querySelectorAll(".headerlink").forEach((el) => { el.remove() });
166
+    const docContent = htmlElement.querySelector('[role="main"]');
167
+    if (docContent !== undefined) return docContent.textContent;
168
+    console.warn(
169
+      "Content block not found. Sphinx search tries to obtain it via '[role=main]'. Could you check your theme or template."
170
+    );
171
+    return "";
172
+  },
173
+
174
+  init: () => {
175
+    const query = new URLSearchParams(window.location.search).get("q");
176
+    document
177
+      .querySelectorAll('input[name="q"]')
178
+      .forEach((el) => (el.value = query));
179
+    if (query) Search.performSearch(query);
180
+  },
181
+
182
+  loadIndex: (url) =>
183
+    (document.body.appendChild(document.createElement("script")).src = url),
184
+
185
+  setIndex: (index) => {
186
+    Search._index = index;
187
+    if (Search._queued_query !== null) {
188
+      const query = Search._queued_query;
189
+      Search._queued_query = null;
190
+      Search.query(query);
191
+    }
192
+  },
193
+
194
+  hasIndex: () => Search._index !== null,
195
+
196
+  deferQuery: (query) => (Search._queued_query = query),
197
+
198
+  stopPulse: () => (Search._pulse_status = -1),
199
+
200
+  startPulse: () => {
201
+    if (Search._pulse_status >= 0) return;
202
+
203
+    const pulse = () => {
204
+      Search._pulse_status = (Search._pulse_status + 1) % 4;
205
+      Search.dots.innerText = ".".repeat(Search._pulse_status);
206
+      if (Search._pulse_status >= 0) window.setTimeout(pulse, 500);
207
+    };
208
+    pulse();
209
+  },
210
+
211
+  /**
212
+   * perform a search for something (or wait until index is loaded)
213
+   */
214
+  performSearch: (query) => {
215
+    // create the required interface elements
216
+    const searchText = document.createElement("h2");
217
+    searchText.textContent = _("Searching");
218
+    const searchSummary = document.createElement("p");
219
+    searchSummary.classList.add("search-summary");
220
+    searchSummary.innerText = "";
221
+    const searchList = document.createElement("ul");
222
+    searchList.classList.add("search");
223
+
224
+    const out = document.getElementById("search-results");
225
+    Search.title = out.appendChild(searchText);
226
+    Search.dots = Search.title.appendChild(document.createElement("span"));
227
+    Search.status = out.appendChild(searchSummary);
228
+    Search.output = out.appendChild(searchList);
229
+
230
+    const searchProgress = document.getElementById("search-progress");
231
+    // Some themes don't use the search progress node
232
+    if (searchProgress) {
233
+      searchProgress.innerText = _("Preparing search...");
234
+    }
235
+    Search.startPulse();
236
+
237
+    // index already loaded, the browser was quick!
238
+    if (Search.hasIndex()) Search.query(query);
239
+    else Search.deferQuery(query);
240
+  },
241
+
242
+  /**
243
+   * execute search (requires search index to be loaded)
244
+   */
245
+  query: (query) => {
246
+    const filenames = Search._index.filenames;
247
+    const docNames = Search._index.docnames;
248
+    const titles = Search._index.titles;
249
+    const allTitles = Search._index.alltitles;
250
+    const indexEntries = Search._index.indexentries;
251
+
252
+    // stem the search terms and add them to the correct list
253
+    const stemmer = new Stemmer();
254
+    const searchTerms = new Set();
255
+    const excludedTerms = new Set();
256
+    const highlightTerms = new Set();
257
+    const objectTerms = new Set(splitQuery(query.toLowerCase().trim()));
258
+    splitQuery(query.trim()).forEach((queryTerm) => {
259
+      const queryTermLower = queryTerm.toLowerCase();
260
+
261
+      // maybe skip this "word"
262
+      // stopwords array is from language_data.js
263
+      if (
264
+        stopwords.indexOf(queryTermLower) !== -1 ||
265
+        queryTerm.match(/^\d+$/)
266
+      )
267
+        return;
268
+
269
+      // stem the word
270
+      let word = stemmer.stemWord(queryTermLower);
271
+      // select the correct list
272
+      if (word[0] === "-") excludedTerms.add(word.substr(1));
273
+      else {
274
+        searchTerms.add(word);
275
+        highlightTerms.add(queryTermLower);
276
+      }
277
+    });
278
+
279
+    if (SPHINX_HIGHLIGHT_ENABLED) {  // set in sphinx_highlight.js
280
+      localStorage.setItem("sphinx_highlight_terms", [...highlightTerms].join(" "))
281
+    }
282
+
283
+    // console.debug("SEARCH: searching for:");
284
+    // console.info("required: ", [...searchTerms]);
285
+    // console.info("excluded: ", [...excludedTerms]);
286
+
287
+    // array of [docname, title, anchor, descr, score, filename]
288
+    let results = [];
289
+    _removeChildren(document.getElementById("search-progress"));
290
+
291
+    const queryLower = query.toLowerCase();
292
+    for (const [title, foundTitles] of Object.entries(allTitles)) {
293
+      if (title.toLowerCase().includes(queryLower) && (queryLower.length >= title.length/2)) {
294
+        for (const [file, id] of foundTitles) {
295
+          let score = Math.round(100 * queryLower.length / title.length)
296
+          results.push([
297
+            docNames[file],
298
+            titles[file] !== title ? `${titles[file]} > ${title}` : title,
299
+            id !== null ? "#" + id : "",
300
+            null,
301
+            score,
302
+            filenames[file],
303
+          ]);
304
+        }
305
+      }
306
+    }
307
+
308
+    // search for explicit entries in index directives
309
+    for (const [entry, foundEntries] of Object.entries(indexEntries)) {
310
+      if (entry.includes(queryLower) && (queryLower.length >= entry.length/2)) {
311
+        for (const [file, id] of foundEntries) {
312
+          let score = Math.round(100 * queryLower.length / entry.length)
313
+          results.push([
314
+            docNames[file],
315
+            titles[file],
316
+            id ? "#" + id : "",
317
+            null,
318
+            score,
319
+            filenames[file],
320
+          ]);
321
+        }
322
+      }
323
+    }
324
+
325
+    // lookup as object
326
+    objectTerms.forEach((term) =>
327
+      results.push(...Search.performObjectSearch(term, objectTerms))
328
+    );
329
+
330
+    // lookup as search terms in fulltext
331
+    results.push(...Search.performTermsSearch(searchTerms, excludedTerms));
332
+
333
+    // let the scorer override scores with a custom scoring function
334
+    if (Scorer.score) results.forEach((item) => (item[4] = Scorer.score(item)));
335
+
336
+    // now sort the results by score (in opposite order of appearance, since the
337
+    // display function below uses pop() to retrieve items) and then
338
+    // alphabetically
339
+    results.sort((a, b) => {
340
+      const leftScore = a[4];
341
+      const rightScore = b[4];
342
+      if (leftScore === rightScore) {
343
+        // same score: sort alphabetically
344
+        const leftTitle = a[1].toLowerCase();
345
+        const rightTitle = b[1].toLowerCase();
346
+        if (leftTitle === rightTitle) return 0;
347
+        return leftTitle > rightTitle ? -1 : 1; // inverted is intentional
348
+      }
349
+      return leftScore > rightScore ? 1 : -1;
350
+    });
351
+
352
+    // remove duplicate search results
353
+    // note the reversing of results, so that in the case of duplicates, the highest-scoring entry is kept
354
+    let seen = new Set();
355
+    results = results.reverse().reduce((acc, result) => {
356
+      let resultStr = result.slice(0, 4).concat([result[5]]).map(v => String(v)).join(',');
357
+      if (!seen.has(resultStr)) {
358
+        acc.push(result);
359
+        seen.add(resultStr);
360
+      }
361
+      return acc;
362
+    }, []);
363
+
364
+    results = results.reverse();
365
+
366
+    // for debugging
367
+    //Search.lastresults = results.slice();  // a copy
368
+    // console.info("search results:", Search.lastresults);
369
+
370
+    // print the results
371
+    _displayNextItem(results, results.length, searchTerms, highlightTerms);
372
+  },
373
+
374
+  /**
375
+   * search for object names
376
+   */
377
+  performObjectSearch: (object, objectTerms) => {
378
+    const filenames = Search._index.filenames;
379
+    const docNames = Search._index.docnames;
380
+    const objects = Search._index.objects;
381
+    const objNames = Search._index.objnames;
382
+    const titles = Search._index.titles;
383
+
384
+    const results = [];
385
+
386
+    const objectSearchCallback = (prefix, match) => {
387
+      const name = match[4]
388
+      const fullname = (prefix ? prefix + "." : "") + name;
389
+      const fullnameLower = fullname.toLowerCase();
390
+      if (fullnameLower.indexOf(object) < 0) return;
391
+
392
+      let score = 0;
393
+      const parts = fullnameLower.split(".");
394
+
395
+      // check for different match types: exact matches of full name or
396
+      // "last name" (i.e. last dotted part)
397
+      if (fullnameLower === object || parts.slice(-1)[0] === object)
398
+        score += Scorer.objNameMatch;
399
+      else if (parts.slice(-1)[0].indexOf(object) > -1)
400
+        score += Scorer.objPartialMatch; // matches in last name
401
+
402
+      const objName = objNames[match[1]][2];
403
+      const title = titles[match[0]];
404
+
405
+      // If more than one term searched for, we require other words to be
406
+      // found in the name/title/description
407
+      const otherTerms = new Set(objectTerms);
408
+      otherTerms.delete(object);
409
+      if (otherTerms.size > 0) {
410
+        const haystack = `${prefix} ${name} ${objName} ${title}`.toLowerCase();
411
+        if (
412
+          [...otherTerms].some((otherTerm) => haystack.indexOf(otherTerm) < 0)
413
+        )
414
+          return;
415
+      }
416
+
417
+      let anchor = match[3];
418
+      if (anchor === "") anchor = fullname;
419
+      else if (anchor === "-") anchor = objNames[match[1]][1] + "-" + fullname;
420
+
421
+      const descr = objName + _(", in ") + title;
422
+
423
+      // add custom score for some objects according to scorer
424
+      if (Scorer.objPrio.hasOwnProperty(match[2]))
425
+        score += Scorer.objPrio[match[2]];
426
+      else score += Scorer.objPrioDefault;
427
+
428
+      results.push([
429
+        docNames[match[0]],
430
+        fullname,
431
+        "#" + anchor,
432
+        descr,
433
+        score,
434
+        filenames[match[0]],
435
+      ]);
436
+    };
437
+    Object.keys(objects).forEach((prefix) =>
438
+      objects[prefix].forEach((array) =>
439
+        objectSearchCallback(prefix, array)
440
+      )
441
+    );
442
+    return results;
443
+  },
444
+
445
+  /**
446
+   * search for full-text terms in the index
447
+   */
448
+  performTermsSearch: (searchTerms, excludedTerms) => {
449
+    // prepare search
450
+    const terms = Search._index.terms;
451
+    const titleTerms = Search._index.titleterms;
452
+    const filenames = Search._index.filenames;
453
+    const docNames = Search._index.docnames;
454
+    const titles = Search._index.titles;
455
+
456
+    const scoreMap = new Map();
457
+    const fileMap = new Map();
458
+
459
+    // perform the search on the required terms
460
+    searchTerms.forEach((word) => {
461
+      const files = [];
462
+      const arr = [
463
+        { files: terms[word], score: Scorer.term },
464
+        { files: titleTerms[word], score: Scorer.title },
465
+      ];
466
+      // add support for partial matches
467
+      if (word.length > 2) {
468
+        const escapedWord = _escapeRegExp(word);
469
+        Object.keys(terms).forEach((term) => {
470
+          if (term.match(escapedWord) && !terms[word])
471
+            arr.push({ files: terms[term], score: Scorer.partialTerm });
472
+        });
473
+        Object.keys(titleTerms).forEach((term) => {
474
+          if (term.match(escapedWord) && !titleTerms[word])
475
+            arr.push({ files: titleTerms[word], score: Scorer.partialTitle });
476
+        });
477
+      }
478
+
479
+      // no match but word was a required one
480
+      if (arr.every((record) => record.files === undefined)) return;
481
+
482
+      // found search word in contents
483
+      arr.forEach((record) => {
484
+        if (record.files === undefined) return;
485
+
486
+        let recordFiles = record.files;
487
+        if (recordFiles.length === undefined) recordFiles = [recordFiles];
488
+        files.push(...recordFiles);
489
+
490
+        // set score for the word in each file
491
+        recordFiles.forEach((file) => {
492
+          if (!scoreMap.has(file)) scoreMap.set(file, {});
493
+          scoreMap.get(file)[word] = record.score;
494
+        });
495
+      });
496
+
497
+      // create the mapping
498
+      files.forEach((file) => {
499
+        if (fileMap.has(file) && fileMap.get(file).indexOf(word) === -1)
500
+          fileMap.get(file).push(word);
501
+        else fileMap.set(file, [word]);
502
+      });
503
+    });
504
+
505
+    // now check if the files don't contain excluded terms
506
+    const results = [];
507
+    for (const [file, wordList] of fileMap) {
508
+      // check if all requirements are matched
509
+
510
+      // as search terms with length < 3 are discarded
511
+      const filteredTermCount = [...searchTerms].filter(
512
+        (term) => term.length > 2
513
+      ).length;
514
+      if (
515
+        wordList.length !== searchTerms.size &&
516
+        wordList.length !== filteredTermCount
517
+      )
518
+        continue;
519
+
520
+      // ensure that none of the excluded terms is in the search result
521
+      if (
522
+        [...excludedTerms].some(
523
+          (term) =>
524
+            terms[term] === file ||
525
+            titleTerms[term] === file ||
526
+            (terms[term] || []).includes(file) ||
527
+            (titleTerms[term] || []).includes(file)
528
+        )
529
+      )
530
+        break;
531
+
532
+      // select one (max) score for the file.
533
+      const score = Math.max(...wordList.map((w) => scoreMap.get(file)[w]));
534
+      // add result to the result list
535
+      results.push([
536
+        docNames[file],
537
+        titles[file],
538
+        "",
539
+        null,
540
+        score,
541
+        filenames[file],
542
+      ]);
543
+    }
544
+    return results;
545
+  },
546
+
547
+  /**
548
+   * helper function to return a node containing the
549
+   * search summary for a given text. keywords is a list
550
+   * of stemmed words.
551
+   */
552
+  makeSearchSummary: (htmlText, keywords) => {
553
+    const text = Search.htmlToText(htmlText);
554
+    if (text === "") return null;
555
+
556
+    const textLower = text.toLowerCase();
557
+    const actualStartPosition = [...keywords]
558
+      .map((k) => textLower.indexOf(k.toLowerCase()))
559
+      .filter((i) => i > -1)
560
+      .slice(-1)[0];
561
+    const startWithContext = Math.max(actualStartPosition - 120, 0);
562
+
563
+    const top = startWithContext === 0 ? "" : "...";
564
+    const tail = startWithContext + 240 < text.length ? "..." : "";
565
+
566
+    let summary = document.createElement("p");
567
+    summary.classList.add("context");
568
+    summary.textContent = top + text.substr(startWithContext, 240).trim() + tail;
569
+
570
+    return summary;
571
+  },
572
+};
573
+
574
+_ready(Search.init);
... ...
@@ -0,0 +1,70 @@
1
+/*
2
+ * sidebar.js
3
+ * ~~~~~~~~~~
4
+ *
5
+ * This script makes the Sphinx sidebar collapsible.
6
+ *
7
+ * .sphinxsidebar contains .sphinxsidebarwrapper.  This script adds
8
+ * in .sphixsidebar, after .sphinxsidebarwrapper, the #sidebarbutton
9
+ * used to collapse and expand the sidebar.
10
+ *
11
+ * When the sidebar is collapsed the .sphinxsidebarwrapper is hidden
12
+ * and the width of the sidebar and the margin-left of the document
13
+ * are decreased. When the sidebar is expanded the opposite happens.
14
+ * This script saves a per-browser/per-session cookie used to
15
+ * remember the position of the sidebar among the pages.
16
+ * Once the browser is closed the cookie is deleted and the position
17
+ * reset to the default (expanded).
18
+ *
19
+ * :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS.
20
+ * :license: BSD, see LICENSE for details.
21
+ *
22
+ */
23
+
24
+const initialiseSidebar = () => {
25
+  
26
+    
27
+  
28
+
29
+  // global elements used by the functions.
30
+  const bodyWrapper = document.getElementsByClassName("bodywrapper")[0]
31
+  const sidebar = document.getElementsByClassName("sphinxsidebar")[0]
32
+  const sidebarWrapper = document.getElementsByClassName('sphinxsidebarwrapper')[0]
33
+  const sidebarButton = document.getElementById("sidebarbutton")
34
+  const sidebarArrow = sidebarButton.querySelector('span')
35
+
36
+  // for some reason, the document has no sidebar; do not run into errors
37
+  if (typeof sidebar === "undefined") return;
38
+
39
+  const flipArrow = element => element.innerText = (element.innerText === "»") ? "«" : "»"
40
+
41
+  const collapse_sidebar = () => {
42
+    bodyWrapper.style.marginLeft = ".8em";
43
+    sidebar.style.width = ".8em"
44
+    sidebarWrapper.style.display = "none"
45
+    flipArrow(sidebarArrow)
46
+    sidebarButton.title = _('Expand sidebar')
47
+    window.localStorage.setItem("sidebar", "collapsed")
48
+  }
49
+
50
+  const expand_sidebar = () => {
51
+    bodyWrapper.style.marginLeft = ""
52
+    sidebar.style.removeProperty("width")
53
+    sidebarWrapper.style.display = ""
54
+    flipArrow(sidebarArrow)
55
+    sidebarButton.title = _('Collapse sidebar')
56
+    window.localStorage.setItem("sidebar", "expanded")
57
+  }
58
+
59
+  sidebarButton.addEventListener("click", () => {
60
+    (sidebarWrapper.style.display === "none") ? expand_sidebar() : collapse_sidebar()
61
+  })
62
+
63
+  if (!window.localStorage.getItem("sidebar")) return
64
+  const value = window.localStorage.getItem("sidebar")
65
+  if (value === "collapsed") collapse_sidebar();
66
+  else if (value === "expanded") expand_sidebar();
67
+}
68
+
69
+if (document.readyState !== "loading") initialiseSidebar()
70
+else document.addEventListener("DOMContentLoaded", initialiseSidebar)
0 71
\ No newline at end of file
... ...
@@ -0,0 +1,154 @@
1
+/* Highlighting utilities for Sphinx HTML documentation. */
2
+"use strict";
3
+
4
+const SPHINX_HIGHLIGHT_ENABLED = true
5
+
6
+/**
7
+ * highlight a given string on a node by wrapping it in
8
+ * span elements with the given class name.
9
+ */
10
+const _highlight = (node, addItems, text, className) => {
11
+  if (node.nodeType === Node.TEXT_NODE) {
12
+    const val = node.nodeValue;
13
+    const parent = node.parentNode;
14
+    const pos = val.toLowerCase().indexOf(text);
15
+    if (
16
+      pos >= 0 &&
17
+      !parent.classList.contains(className) &&
18
+      !parent.classList.contains("nohighlight")
19
+    ) {
20
+      let span;
21
+
22
+      const closestNode = parent.closest("body, svg, foreignObject");
23
+      const isInSVG = closestNode && closestNode.matches("svg");
24
+      if (isInSVG) {
25
+        span = document.createElementNS("http://www.w3.org/2000/svg", "tspan");
26
+      } else {
27
+        span = document.createElement("span");
28
+        span.classList.add(className);
29
+      }
30
+
31
+      span.appendChild(document.createTextNode(val.substr(pos, text.length)));
32
+      const rest = document.createTextNode(val.substr(pos + text.length));
33
+      parent.insertBefore(
34
+        span,
35
+        parent.insertBefore(
36
+          rest,
37
+          node.nextSibling
38
+        )
39
+      );
40
+      node.nodeValue = val.substr(0, pos);
41
+      /* There may be more occurrences of search term in this node. So call this
42
+       * function recursively on the remaining fragment.
43
+       */
44
+      _highlight(rest, addItems, text, className);
45
+
46
+      if (isInSVG) {
47
+        const rect = document.createElementNS(
48
+          "http://www.w3.org/2000/svg",
49
+          "rect"
50
+        );
51
+        const bbox = parent.getBBox();
52
+        rect.x.baseVal.value = bbox.x;
53
+        rect.y.baseVal.value = bbox.y;
54
+        rect.width.baseVal.value = bbox.width;
55
+        rect.height.baseVal.value = bbox.height;
56
+        rect.setAttribute("class", className);
57
+        addItems.push({ parent: parent, target: rect });
58
+      }
59
+    }
60
+  } else if (node.matches && !node.matches("button, select, textarea")) {
61
+    node.childNodes.forEach((el) => _highlight(el, addItems, text, className));
62
+  }
63
+};
64
+const _highlightText = (thisNode, text, className) => {
65
+  let addItems = [];
66
+  _highlight(thisNode, addItems, text, className);
67
+  addItems.forEach((obj) =>
68
+    obj.parent.insertAdjacentElement("beforebegin", obj.target)
69
+  );
70
+};
71
+
72
+/**
73
+ * Small JavaScript module for the documentation.
74
+ */
75
+const SphinxHighlight = {
76
+
77
+  /**
78
+   * highlight the search words provided in localstorage in the text
79
+   */
80
+  highlightSearchWords: () => {
81
+    if (!SPHINX_HIGHLIGHT_ENABLED) return;  // bail if no highlight
82
+
83
+    // get and clear terms from localstorage
84
+    const url = new URL(window.location);
85
+    const highlight =
86
+        localStorage.getItem("sphinx_highlight_terms")
87
+        || url.searchParams.get("highlight")
88
+        || "";
89
+    localStorage.removeItem("sphinx_highlight_terms")
90
+    url.searchParams.delete("highlight");
91
+    window.history.replaceState({}, "", url);
92
+
93
+    // get individual terms from highlight string
94
+    const terms = highlight.toLowerCase().split(/\s+/).filter(x => x);
95
+    if (terms.length === 0) return; // nothing to do
96
+
97
+    // There should never be more than one element matching "div.body"
98
+    const divBody = document.querySelectorAll("div.body");
99
+    const body = divBody.length ? divBody[0] : document.querySelector("body");
100
+    window.setTimeout(() => {
101
+      terms.forEach((term) => _highlightText(body, term, "highlighted"));
102
+    }, 10);
103
+
104
+    const searchBox = document.getElementById("searchbox");
105
+    if (searchBox === null) return;
106
+    searchBox.appendChild(
107
+      document
108
+        .createRange()
109
+        .createContextualFragment(
110
+          '<p class="highlight-link">' +
111
+            '<a href="javascript:SphinxHighlight.hideSearchWords()">' +
112
+            _("Hide Search Matches") +
113
+            "</a></p>"
114
+        )
115
+    );
116
+  },
117
+
118
+  /**
119
+   * helper function to hide the search marks again
120
+   */
121
+  hideSearchWords: () => {
122
+    document
123
+      .querySelectorAll("#searchbox .highlight-link")
124
+      .forEach((el) => el.remove());
125
+    document
126
+      .querySelectorAll("span.highlighted")
127
+      .forEach((el) => el.classList.remove("highlighted"));
128
+    localStorage.removeItem("sphinx_highlight_terms")
129
+  },
130
+
131
+  initEscapeListener: () => {
132
+    // only install a listener if it is really needed
133
+    if (!DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS) return;
134
+
135
+    document.addEventListener("keydown", (event) => {
136
+      // bail for input elements
137
+      if (BLACKLISTED_KEY_CONTROL_ELEMENTS.has(document.activeElement.tagName)) return;
138
+      // bail with special keys
139
+      if (event.shiftKey || event.altKey || event.ctrlKey || event.metaKey) return;
140
+      if (DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS && (event.key === "Escape")) {
141
+        SphinxHighlight.hideSearchWords();
142
+        event.preventDefault();
143
+      }
144
+    });
145
+  },
146
+};
147
+
148
+_ready(() => {
149
+  /* Do not call highlightSearchWords() when we are on the search page.
150
+   * It will highlight words from the *previous* search query.
151
+   */
152
+  if (typeof Search === "undefined") SphinxHighlight.highlightSearchWords();
153
+  SphinxHighlight.initEscapeListener();
154
+});
... ...
@@ -0,0 +1,77 @@
1
+<!DOCTYPE html>
2
+
3
+<html lang="en" data-content_root="./">
4
+  <head>
5
+    <meta charset="utf-8" />
6
+    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
+    <title>Index &#8212; plTools 0.1 documentation</title>
8
+    <link rel="stylesheet" type="text/css" href="_static/pygments.css?v=b76e3c8a" />
9
+    <link rel="stylesheet" type="text/css" href="_static/classic.css?v=514cf933" />
10
+    
11
+    <script src="_static/documentation_options.js?v=2709fde1"></script>
12
+    <script src="_static/doctools.js?v=888ff710"></script>
13
+    <script src="_static/sphinx_highlight.js?v=dc90522c"></script>
14
+    
15
+    <link rel="index" title="Index" href="#" />
16
+    <link rel="search" title="Search" href="search.html" /> 
17
+  </head><body>
18
+    <div class="related" role="navigation" aria-label="related navigation">
19
+      <h3>Navigation</h3>
20
+      <ul>
21
+        <li class="right" style="margin-right: 10px">
22
+          <a href="#" title="General Index"
23
+             accesskey="I">index</a></li>
24
+        <li class="nav-item nav-item-0"><a href="index.html">plTools 0.1 documentation</a> &#187;</li>
25
+        <li class="nav-item nav-item-this"><a href="">Index</a></li> 
26
+      </ul>
27
+    </div>  
28
+
29
+    <div class="document">
30
+      <div class="documentwrapper">
31
+        <div class="bodywrapper">
32
+          <div class="body" role="main">
33
+            
34
+
35
+<h1 id="index">Index</h1>
36
+
37
+<div class="genindex-jumpbox">
38
+ 
39
+</div>
40
+
41
+
42
+            <div class="clearer"></div>
43
+          </div>
44
+        </div>
45
+      </div>
46
+      <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
47
+        <div class="sphinxsidebarwrapper">
48
+<div id="searchbox" style="display: none" role="search">
49
+  <h3 id="searchlabel">Quick search</h3>
50
+    <div class="searchformwrapper">
51
+    <form class="search" action="search.html" method="get">
52
+      <input type="text" name="q" aria-labelledby="searchlabel" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false"/>
53
+      <input type="submit" value="Go" />
54
+    </form>
55
+    </div>
56
+</div>
57
+<script>document.getElementById('searchbox').style.display = "block"</script>
58
+        </div>
59
+      </div>
60
+      <div class="clearer"></div>
61
+    </div>
62
+    <div class="related" role="navigation" aria-label="related navigation">
63
+      <h3>Navigation</h3>
64
+      <ul>
65
+        <li class="right" style="margin-right: 10px">
66
+          <a href="#" title="General Index"
67
+             >index</a></li>
68
+        <li class="nav-item nav-item-0"><a href="index.html">plTools 0.1 documentation</a> &#187;</li>
69
+        <li class="nav-item nav-item-this"><a href="">Index</a></li> 
70
+      </ul>
71
+    </div>
72
+    <div class="footer" role="contentinfo">
73
+    &#169; Copyright 2023, Pawel Netzel.
74
+      Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.2.6.
75
+    </div>
76
+  </body>
77
+</html>
0 78
\ No newline at end of file
... ...
@@ -0,0 +1,101 @@
1
+<!DOCTYPE html>
2
+
3
+<html lang="en" data-content_root="./">
4
+  <head>
5
+    <meta charset="utf-8" />
6
+    <meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="viewport" content="width=device-width, initial-scale=1" />
7
+
8
+    <title>Welcome to plTools’ documentation! &#8212; plTools 0.1 documentation</title>
9
+    <link rel="stylesheet" type="text/css" href="_static/pygments.css?v=b76e3c8a" />
10
+    <link rel="stylesheet" type="text/css" href="_static/classic.css?v=514cf933" />
11
+    
12
+    <script src="_static/documentation_options.js?v=2709fde1"></script>
13
+    <script src="_static/doctools.js?v=888ff710"></script>
14
+    <script src="_static/sphinx_highlight.js?v=dc90522c"></script>
15
+    
16
+    <link rel="index" title="Index" href="genindex.html" />
17
+    <link rel="search" title="Search" href="search.html" /> 
18
+  </head><body>
19
+    <div class="related" role="navigation" aria-label="related navigation">
20
+      <h3>Navigation</h3>
21
+      <ul>
22
+        <li class="right" style="margin-right: 10px">
23
+          <a href="genindex.html" title="General Index"
24
+             accesskey="I">index</a></li>
25
+        <li class="nav-item nav-item-0"><a href="#">plTools 0.1 documentation</a> &#187;</li>
26
+        <li class="nav-item nav-item-this"><a href="">Welcome to plTools’ documentation!</a></li> 
27
+      </ul>
28
+    </div>  
29
+
30
+    <div class="document">
31
+      <div class="documentwrapper">
32
+        <div class="bodywrapper">
33
+          <div class="body" role="main">
34
+            
35
+  <section id="welcome-to-pltools-documentation">
36
+<h1>Welcome to plTools’ documentation!<a class="headerlink" href="#welcome-to-pltools-documentation" title="Link to this heading">¶</a></h1>
37
+<p>Contents:</p>
38
+<div class="toctree-wrapper compound">
39
+</div>
40
+</section>
41
+<section id="indices-and-tables">
42
+<h1>Indices and tables<a class="headerlink" href="#indices-and-tables" title="Link to this heading">¶</a></h1>
43
+<ul class="simple">
44
+<li><p><a class="reference internal" href="genindex.html"><span class="std std-ref">Index</span></a></p></li>
45
+<li><p><a class="reference internal" href="py-modindex.html"><span class="std std-ref">Module Index</span></a></p></li>
46
+<li><p><a class="reference internal" href="search.html"><span class="std std-ref">Search Page</span></a></p></li>
47
+</ul>
48
+</section>
49
+
50
+
51
+            <div class="clearer"></div>
52
+          </div>
53
+        </div>
54
+      </div>
55
+      <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
56
+        <div class="sphinxsidebarwrapper">
57
+  <div>
58
+    <h3><a href="#">Table of Contents</a></h3>
59
+    <ul>
60
+<li><a class="reference internal" href="#">Welcome to plTools’ documentation!</a></li>
61
+<li><a class="reference internal" href="#indices-and-tables">Indices and tables</a></li>
62
+</ul>
63
+
64
+  </div>
65
+  <div role="note" aria-label="source link">
66
+    <h3>This Page</h3>
67
+    <ul class="this-page-menu">
68
+      <li><a href="_sources/index.rst.txt"
69
+            rel="nofollow">Show Source</a></li>
70
+    </ul>
71
+   </div>
72
+<div id="searchbox" style="display: none" role="search">
73
+  <h3 id="searchlabel">Quick search</h3>
74
+    <div class="searchformwrapper">
75
+    <form class="search" action="search.html" method="get">
76
+      <input type="text" name="q" aria-labelledby="searchlabel" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false"/>
77
+      <input type="submit" value="Go" />
78
+    </form>
79
+    </div>
80
+</div>
81
+<script>document.getElementById('searchbox').style.display = "block"</script>
82
+        </div>
83
+      </div>
84
+      <div class="clearer"></div>
85
+    </div>
86
+    <div class="related" role="navigation" aria-label="related navigation">
87
+      <h3>Navigation</h3>
88
+      <ul>
89
+        <li class="right" style="margin-right: 10px">
90
+          <a href="genindex.html" title="General Index"
91
+             >index</a></li>
92
+        <li class="nav-item nav-item-0"><a href="#">plTools 0.1 documentation</a> &#187;</li>
93
+        <li class="nav-item nav-item-this"><a href="">Welcome to plTools’ documentation!</a></li> 
94
+      </ul>
95
+    </div>
96
+    <div class="footer" role="contentinfo">
97
+    &#169; Copyright 2023, Pawel Netzel.
98
+      Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.2.6.
99
+    </div>
100
+  </body>
101
+</html>
0 102
\ No newline at end of file
... ...
@@ -0,0 +1,96 @@
1
+<!DOCTYPE html>
2
+
3
+<html lang="en" data-content_root="./">
4
+  <head>
5
+    <meta charset="utf-8" />
6
+    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
+    <title>Search &#8212; plTools 0.1 documentation</title>
8
+    <link rel="stylesheet" type="text/css" href="_static/pygments.css?v=b76e3c8a" />
9
+    <link rel="stylesheet" type="text/css" href="_static/classic.css?v=514cf933" />
10
+    
11
+    
12
+    <script src="_static/documentation_options.js?v=2709fde1"></script>
13
+    <script src="_static/doctools.js?v=888ff710"></script>
14
+    <script src="_static/sphinx_highlight.js?v=dc90522c"></script>
15
+    
16
+    <script src="_static/searchtools.js"></script>
17
+    <script src="_static/language_data.js"></script>
18
+    <link rel="index" title="Index" href="genindex.html" />
19
+    <link rel="search" title="Search" href="#" />
20
+  <script src="searchindex.js" defer></script>
21
+   
22
+
23
+  </head><body>
24
+    <div class="related" role="navigation" aria-label="related navigation">
25
+      <h3>Navigation</h3>
26
+      <ul>
27
+        <li class="right" style="margin-right: 10px">
28
+          <a href="genindex.html" title="General Index"
29
+             accesskey="I">index</a></li>
30
+        <li class="nav-item nav-item-0"><a href="index.html">plTools 0.1 documentation</a> &#187;</li>
31
+        <li class="nav-item nav-item-this"><a href="">Search</a></li> 
32
+      </ul>
33
+    </div>  
34
+
35
+    <div class="document">
36
+      <div class="documentwrapper">
37
+        <div class="bodywrapper">
38
+          <div class="body" role="main">
39
+            
40
+  <h1 id="search-documentation">Search</h1>
41
+  
42
+  <noscript>
43
+  <div class="admonition warning">
44
+  <p>
45
+    Please activate JavaScript to enable the search
46
+    functionality.
47
+  </p>
48
+  </div>
49
+  </noscript>
50
+  
51
+  
52
+  <p>
53
+    Searching for multiple words only shows matches that contain
54
+    all words.
55
+  </p>
56
+  
57
+  
58
+  <form action="" method="get">
59
+    <input type="text" name="q" aria-labelledby="search-documentation" value="" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false"/>
60
+    <input type="submit" value="search" />
61
+    <span id="search-progress" style="padding-left: 10px"></span>
62
+  </form>
63
+  
64
+  
65
+  
66
+  <div id="search-results">
67
+  
68
+  </div>
69
+  
70
+
71
+            <div class="clearer"></div>
72
+          </div>
73
+        </div>
74
+      </div>
75
+      <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
76
+        <div class="sphinxsidebarwrapper">
77
+        </div>
78
+      </div>
79
+      <div class="clearer"></div>
80
+    </div>
81
+    <div class="related" role="navigation" aria-label="related navigation">
82
+      <h3>Navigation</h3>
83
+      <ul>
84
+        <li class="right" style="margin-right: 10px">
85
+          <a href="genindex.html" title="General Index"
86
+             >index</a></li>
87
+        <li class="nav-item nav-item-0"><a href="index.html">plTools 0.1 documentation</a> &#187;</li>
88
+        <li class="nav-item nav-item-this"><a href="">Search</a></li> 
89
+      </ul>
90
+    </div>
91
+    <div class="footer" role="contentinfo">
92
+    &#169; Copyright 2023, Pawel Netzel.
93
+      Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.2.6.
94
+    </div>
95
+  </body>
96
+</html>
0 97
\ No newline at end of file
... ...
@@ -0,0 +1 @@
1
+Search.setIndex({"docnames": ["index"], "filenames": ["index.rst"], "titles": ["Welcome to plTools\u2019 documentation!"], "terms": {"content": 0, "index": 0, "modul": 0, "search": 0, "page": 0}, "objects": {}, "objtypes": {}, "objnames": {}, "titleterms": {"welcom": 0, "pltool": 0, "document": 0, "indic": 0, "tabl": 0}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.todo": 2, "sphinx.ext.viewcode": 1, "sphinx": 60}, "alltitles": {"Welcome to plTools\u2019 documentation!": [[0, "welcome-to-pltools-documentation"]], "Indices and tables": [[0, "indices-and-tables"]]}, "indexentries": {}})
0 2
\ No newline at end of file
... ...
@@ -0,0 +1,155 @@
1
+@ECHO OFF
2
+
3
+REM Command file for Sphinx documentation
4
+
5
+if "%SPHINXBUILD%" == "" (
6
+	set SPHINXBUILD=sphinx-build
7
+)
8
+set BUILDDIR=build
9
+set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% source
10
+if NOT "%PAPER%" == "" (
11
+	set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
12
+)
13
+
14
+if "%1" == "" goto help
15
+
16
+if "%1" == "help" (
17
+	:help
18
+	echo.Please use `make ^<target^>` where ^<target^> is one of
19
+	echo.  html       to make standalone HTML files
20
+	echo.  dirhtml    to make HTML files named index.html in directories
21
+	echo.  singlehtml to make a single large HTML file
22
+	echo.  pickle     to make pickle files
23
+	echo.  json       to make JSON files
24
+	echo.  htmlhelp   to make HTML files and a HTML help project
25
+	echo.  qthelp     to make HTML files and a qthelp project
26
+	echo.  devhelp    to make HTML files and a Devhelp project
27
+	echo.  epub       to make an epub
28
+	echo.  latex      to make LaTeX files, you can set PAPER=a4 or PAPER=letter
29
+	echo.  text       to make text files
30
+	echo.  man        to make manual pages
31
+	echo.  changes    to make an overview over all changed/added/deprecated items
32
+	echo.  linkcheck  to check all external links for integrity
33
+	echo.  doctest    to run all doctests embedded in the documentation if enabled
34
+	goto end
35
+)
36
+
37
+if "%1" == "clean" (
38
+	for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
39
+	del /q /s %BUILDDIR%\*
40
+	goto end
41
+)
42
+
43
+if "%1" == "html" (
44
+	%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
45
+	echo.
46
+	echo.Build finished. The HTML pages are in %BUILDDIR%/html.
47
+	goto end
48
+)
49
+
50
+if "%1" == "dirhtml" (
51
+	%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
52
+	echo.
53
+	echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
54
+	goto end
55
+)
56
+
57
+if "%1" == "singlehtml" (
58
+	%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
59
+	echo.
60
+	echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
61
+	goto end
62
+)
63
+
64
+if "%1" == "pickle" (
65
+	%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
66
+	echo.
67
+	echo.Build finished; now you can process the pickle files.
68
+	goto end
69
+)
70
+
71
+if "%1" == "json" (
72
+	%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
73
+	echo.
74
+	echo.Build finished; now you can process the JSON files.
75
+	goto end
76
+)
77
+
78
+if "%1" == "htmlhelp" (
79
+	%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
80
+	echo.
81
+	echo.Build finished; now you can run HTML Help Workshop with the ^
82
+.hhp project file in %BUILDDIR%/htmlhelp.
83
+	goto end
84
+)
85
+
86
+if "%1" == "qthelp" (
87
+	%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
88
+	echo.
89
+	echo.Build finished; now you can run "qcollectiongenerator" with the ^
90
+.qhcp project file in %BUILDDIR%/qthelp, like this:
91
+	echo.^> qcollectiongenerator %BUILDDIR%\qthelp\template_class.qhcp
92
+	echo.To view the help file:
93
+	echo.^> assistant -collectionFile %BUILDDIR%\qthelp\template_class.ghc
94
+	goto end
95
+)
96
+
97
+if "%1" == "devhelp" (
98
+	%SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp
99
+	echo.
100
+	echo.Build finished.
101
+	goto end
102
+)
103
+
104
+if "%1" == "epub" (
105
+	%SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub
106
+	echo.
107
+	echo.Build finished. The epub file is in %BUILDDIR%/epub.
108
+	goto end
109
+)
110
+
111
+if "%1" == "latex" (
112
+	%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
113
+	echo.
114
+	echo.Build finished; the LaTeX files are in %BUILDDIR%/latex.
115
+	goto end
116
+)
117
+
118
+if "%1" == "text" (
119
+	%SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text
120
+	echo.
121
+	echo.Build finished. The text files are in %BUILDDIR%/text.
122
+	goto end
123
+)
124
+
125
+if "%1" == "man" (
126
+	%SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man
127
+	echo.
128
+	echo.Build finished. The manual pages are in %BUILDDIR%/man.
129
+	goto end
130
+)
131
+
132
+if "%1" == "changes" (
133
+	%SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes
134
+	echo.
135
+	echo.The overview file is in %BUILDDIR%/changes.
136
+	goto end
137
+)
138
+
139
+if "%1" == "linkcheck" (
140
+	%SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck
141
+	echo.
142
+	echo.Link check complete; look for any errors in the above output ^
143
+or in %BUILDDIR%/linkcheck/output.txt.
144
+	goto end
145
+)
146
+
147
+if "%1" == "doctest" (
148
+	%SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest
149
+	echo.
150
+	echo.Testing of doctests in the sources finished, look at the ^
151
+results in %BUILDDIR%/doctest/output.txt.
152
+	goto end
153
+)
154
+
155
+:end
... ...
@@ -0,0 +1,216 @@
1
+# -*- coding: utf-8 -*-
2
+#
3
+# plTools documentation build configuration file, created by
4
+# sphinx-quickstart on Sun Feb 12 17:11:03 2012.
5
+#
6
+# This file is execfile()d with the current directory set to its containing dir.
7
+#
8
+# Note that not all possible configuration values are present in this
9
+# autogenerated file.
10
+#
11
+# All configuration values have a default; values that are commented out
12
+# serve to show the default.
13
+
14
+import sys, os
15
+
16
+# If extensions (or modules to document with autodoc) are in another directory,
17
+# add these directories to sys.path here. If the directory is relative to the
18
+# documentation root, use os.path.abspath to make it absolute, like shown here.
19
+#sys.path.insert(0, os.path.abspath('.'))
20
+
21
+# -- General configuration -----------------------------------------------------
22
+
23
+# If your documentation needs a minimal Sphinx version, state it here.
24
+#needs_sphinx = '1.0'
25
+
26
+# Add any Sphinx extension module names here, as strings. They can be extensions
27
+# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
28
+extensions = ['sphinx.ext.todo', 'sphinx.ext.imgmath', 'sphinx.ext.viewcode']
29
+
30
+# Add any paths that contain templates here, relative to this directory.
31
+templates_path = ['_templates']
32
+
33
+# The suffix of source filenames.
34
+source_suffix = '.rst'
35
+
36
+# The encoding of source files.
37
+#source_encoding = 'utf-8-sig'
38
+
39
+# The master toctree document.
40
+master_doc = 'index'
41
+
42
+# General information about the project.
43
+project = u'plTools'
44
+copyright = u'2023, Pawel Netzel'
45
+
46
+# The version info for the project you're documenting, acts as replacement for
47
+# |version| and |release|, also used in various other places throughout the
48
+# built documents.
49
+#
50
+# The short X.Y version.
51
+version = '0.1'
52
+# The full version, including alpha/beta/rc tags.
53
+release = '0.1'
54
+
55
+# The language for content autogenerated by Sphinx. Refer to documentation
56
+# for a list of supported languages.
57
+#language = None
58
+
59
+# There are two options for replacing |today|: either, you set today to some
60
+# non-false value, then it is used:
61
+#today = ''
62
+# Else, today_fmt is used as the format for a strftime call.
63
+#today_fmt = '%B %d, %Y'
64
+
65
+# List of patterns, relative to source directory, that match files and
66
+# directories to ignore when looking for source files.
67
+exclude_patterns = []
68
+
69
+# The reST default role (used for this markup: `text`) to use for all documents.
70
+#default_role = None
71
+
72
+# If true, '()' will be appended to :func: etc. cross-reference text.
73
+#add_function_parentheses = True
74
+
75
+# If true, the current module name will be prepended to all description
76
+# unit titles (such as .. function::).
77
+#add_TemplateModuleNames = True
78
+
79
+# If true, sectionauthor and moduleauthor directives will be shown in the
80
+# output. They are ignored by default.
81
+#show_authors = False
82
+
83
+# The name of the Pygments (syntax highlighting) style to use.
84
+pygments_style = 'sphinx'
85
+
86
+# A list of ignored prefixes for module index sorting.
87
+#modindex_common_prefix = []
88
+
89
+
90
+# -- Options for HTML output ---------------------------------------------------
91
+
92
+# The theme to use for HTML and HTML Help pages.  See the documentation for
93
+# a list of builtin themes.
94
+html_theme = 'default'
95
+
96
+# Theme options are theme-specific and customize the look and feel of a theme
97
+# further.  For a list of options available for each theme, see the
98
+# documentation.
99
+#html_theme_options = {}
100
+
101
+# Add any paths that contain custom themes here, relative to this directory.
102
+#html_theme_path = []
103
+
104
+# The name for this set of Sphinx documents.  If None, it defaults to
105
+# "<project> v<release> documentation".
106
+#html_title = None
107
+
108
+# A shorter title for the navigation bar.  Default is the same as html_title.
109
+#html_short_title = None
110
+
111
+# The name of an image file (relative to this directory) to place at the top
112
+# of the sidebar.
113
+#html_logo = None
114
+
115
+# The name of an image file (within the static path) to use as favicon of the
116
+# docs.  This file should be a Windows icon file (.ico) being 16x16 or 32x32
117
+# pixels large.
118
+#html_favicon = None
119
+
120
+# Add any paths that contain custom static files (such as style sheets) here,
121
+# relative to this directory. They are copied after the builtin static files,
122
+# so a file named "default.css" will overwrite the builtin "default.css".
123
+html_static_path = ['_static']
124
+
125
+# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
126
+# using the given strftime format.
127
+#html_last_updated_fmt = '%b %d, %Y'
128
+
129
+# If true, SmartyPants will be used to convert quotes and dashes to
130
+# typographically correct entities.
131
+#html_use_smartypants = True
132
+
133
+# Custom sidebar templates, maps document names to template names.
134
+#html_sidebars = {}
135
+
136
+# Additional templates that should be rendered to pages, maps page names to
137
+# template names.
138
+#html_additional_pages = {}
139
+
140
+# If false, no module index is generated.
141
+#html_domain_indices = True
142
+
143
+# If false, no index is generated.
144
+#html_use_index = True
145
+
146
+# If true, the index is split into individual pages for each letter.
147
+#html_split_index = False
148
+
149
+# If true, links to the reST sources are added to the pages.
150
+#html_show_sourcelink = True
151
+
152
+# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
153
+#html_show_sphinx = True
154
+
155
+# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
156
+#html_show_copyright = True
157
+
158
+# If true, an OpenSearch description file will be output, and all pages will
159
+# contain a <link> tag referring to it.  The value of this option must be the
160
+# base URL from which the finished HTML is served.
161
+#html_use_opensearch = ''
162
+
163
+# This is the file name suffix for HTML files (e.g. ".xhtml").
164
+#html_file_suffix = None
165
+
166
+# Output file base name for HTML help builder.
167
+htmlhelp_basename = 'TemplateClassdoc'
168
+
169
+
170
+# -- Options for LaTeX output --------------------------------------------------
171
+
172
+# The paper size ('letter' or 'a4').
173
+#latex_paper_size = 'letter'
174
+
175
+# The font size ('10pt', '11pt' or '12pt').
176
+#latex_font_size = '10pt'
177
+
178
+# Grouping the document tree into LaTeX files. List of tuples
179
+# (source start file, target name, title, author, documentclass [howto/manual]).
180
+latex_documents = [
181
+  ('index', 'plTools.tex', u'plTools Documentation',
182
+   u'Pawel Netzel', 'manual'),
183
+]
184
+
185
+# The name of an image file (relative to this directory) to place at the top of
186
+# the title page.
187
+#latex_logo = None
188
+
189
+# For "manual" documents, if this is true, then toplevel headings are parts,
190
+# not chapters.
191
+#latex_use_parts = False
192
+
193
+# If true, show page references after internal links.
194
+#latex_show_pagerefs = False
195
+
196
+# If true, show URL addresses after external links.
197
+#latex_show_urls = False
198
+
199
+# Additional stuff for the LaTeX preamble.
200
+#latex_preamble = ''
201
+
202
+# Documents to append as an appendix to all manuals.
203
+#latex_appendices = []
204
+
205
+# If false, no module index is generated.
206
+#latex_domain_indices = True
207
+
208
+
209
+# -- Options for manual page output --------------------------------------------
210
+
211
+# One entry per manual page. List of tuples
212
+# (source start file, name, description, authors, manual section).
213
+man_pages = [
214
+    ('index', 'TemplateClass', u'plTools Documentation',
215
+     [u'Pawel Netzel'], 1)
216
+]
... ...
@@ -0,0 +1,20 @@
1
+.. plTools documentation master file, created by
2
+   sphinx-quickstart on Sun Feb 12 17:11:03 2012.
3
+   You can adapt this file completely to your liking, but it should at least
4
+   contain the root `toctree` directive.
5
+
6
+Welcome to plTools' documentation!
7
+============================================
8
+
9
+Contents:
10
+
11
+.. toctree::
12
+   :maxdepth: 2
13
+
14
+Indices and tables
15
+==================
16
+
17
+* :ref:`genindex`
18
+* :ref:`modindex`
19
+* :ref:`search`
20
+
... ...
@@ -0,0 +1,11 @@
1
+<?xml version="1.0" encoding="utf-8"?>
2
+<!DOCTYPE TS><TS version="2.0" language="af" sourcelanguage="en">
3
+<context>
4
+    <name>@default</name>
5
+    <message>
6
+        <location filename="test_translations.py" line="48"/>
7
+        <source>Good morning</source>
8
+        <translation>Goeie more</translation>
9
+    </message>
10
+</context>
11
+</TS>
... ...
@@ -0,0 +1,4 @@
1
+#!/bin/sh
2
+
3
+pb_tool deploy -y
4
+pb_tool zip
0 5
\ No newline at end of file
... ...
@@ -0,0 +1,47 @@
1
+# This file contains metadata for your plugin.
2
+
3
+# This file should be included when you package your plugin.# Mandatory items:
4
+
5
+[general]
6
+name=plTools - a set of geospatial utilities
7
+qgisMinimumVersion=3.32
8
+description=The plugin adds a set of algorithms from plTools
9
+version=0.1
10
+author=Pawel Netzel
11
+email=pawel@netzel.pl
12
+
13
+about=The plugin adds a set of algorithms from plTools
14
+
15
+tracker=http://bugs
16
+repository=http://repo
17
+# End of mandatory metadata
18
+
19
+# Recommended items:
20
+
21
+hasProcessingProvider=yes
22
+# Uncomment the following line and add your changelog:
23
+# changelog=
24
+
25
+# Tags are comma separated with spaces allowed
26
+tags=spatial utilities
27
+
28
+homepage=http://pawel.netzel.pl
29
+category=Analysis
30
+icon=icon.png
31
+# experimental flag
32
+experimental=True
33
+
34
+# deprecated flag (applies to the whole plugin, not just a single version)
35
+deprecated=False
36
+
37
+# Since QGIS 3.8, a comma separated list of plugins to be installed
38
+# (or upgraded) can be specified.
39
+# Check the documentation for more information.
40
+# plugin_dependencies=
41
+
42
+Category of the plugin: Raster, Vector, Database or Web
43
+# category=
44
+
45
+# If the plugin can run on QGIS Server.
46
+server=False
47
+
... ...
@@ -0,0 +1,47 @@
1
+# Configuration file for plugin builder tool
2
+# Sane defaults for your plugin generated by the Plugin Builder are
3
+# already set below.
4
+#
5
+# As you add Python source files and UI files to your plugin, add
6
+# them to the appropriate [files] section below.
7
+
8
+[plugin]
9
+# Name of the plugin. This is the name of the directory that will
10
+# be created when deployed
11
+name: pltools
12
+
13
+# Full path to where you want your plugin directory copied. If empty,
14
+# the QGIS default path will be used. Don't include the plugin name in
15
+# the path.
16
+plugin_path:
17
+
18
+[files]
19
+# Python  files that should be deployed with the plugin
20
+python_files: plugin_upload.py algo_base.py algo_plgeoadaptels.py algo_plclump4p.py algo_plforestfragment.py algo_plmapcalc.py algo_pldarksky.py __init__.py pltools.py pltools_provider.py
21
+
22
+# The main dialog file that is loaded (not compiled)
23
+main_dialog: 
24
+
25
+# Other ui files for your dialogs (these will be compiled)
26
+compiled_ui_files: 
27
+
28
+# Resource file(s) that will be compiled
29
+resource_files: 
30
+
31
+# Other files required for the plugin
32
+extras: metadata.txt
33
+
34
+# Other directories to be deployed with the plugin.
35
+# These must be subdirectories under the plugin directory
36
+extra_dirs: i18n help
37
+
38
+# ISO code(s) for any locales (translations), separated by spaces.
39
+# Corresponding .ts files must exist in the i18n directory
40
+locales: af.ts
41
+
42
+# Uncomment the following to include help in the deployment
43
+# [help]
44
+# # the built help directory that should be deployed with the plugin
45
+# dir: help/build/html
46
+# # the name of the directory to target in the deployed plugin
47
+# target: help
... ...
@@ -0,0 +1,60 @@
1
+# -*- coding: utf-8 -*-
2
+
3
+"""
4
+/***************************************************************************
5
+ plTools
6
+                                 A QGIS plugin
7
+ The plugin adds a set of algorithms from plTools
8
+ Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/
9
+                              -------------------
10
+        begin                : 2024-01-10
11
+        copyright            : (C) 2024 by Pawel Netzel
12
+        email                : pawel@netzel.pl
13
+ ***************************************************************************/
14
+
15
+/***************************************************************************
16
+ *                                                                         *
17
+ *   This program is free software; you can redistribute it and/or modify  *
18
+ *   it under the terms of the GNU General Public License as published by  *
19
+ *   the Free Software Foundation; either version 2 of the License, or     *
20
+ *   (at your option) any later version.                                   *
21
+ *                                                                         *
22
+ ***************************************************************************/
23
+"""
24
+
25
+__author__ = 'Pawel Netzel'
26
+__date__ = '2024-01-10'
27
+__copyright__ = '(C) 2024 by Pawel Netzel'
28
+
29
+# This will get replaced with a git SHA1 when you do a git archive
30
+
31
+__revision__ = '$Format:%H$'
32
+
33
+import os
34
+import sys
35
+import inspect
36
+
37
+from qgis.core import QgsProcessingAlgorithm, QgsApplication
38
+from .pltools_provider import plToolsProvider
39
+
40
+cmd_folder = os.path.split(inspect.getfile(inspect.currentframe()))[0]
41
+
42
+if cmd_folder not in sys.path:
43
+    sys.path.insert(0, cmd_folder)
44
+
45
+
46
+class plToolsPlugin(object):
47
+
48
+    def __init__(self):
49
+        self.provider = None
50
+
51
+    def initProcessing(self):
52
+        """Init Processing provider for QGIS >= 3.8."""
53
+        self.provider = plToolsProvider()
54
+        QgsApplication.processingRegistry().addProvider(self.provider)
55
+
56
+    def initGui(self):
57
+        self.initProcessing()
58
+
59
+    def unload(self):
60
+        QgsApplication.processingRegistry().removeProvider(self.provider)
... ...
@@ -0,0 +1,96 @@
1
+# -*- coding: utf-8 -*-
2
+
3
+"""
4
+/***************************************************************************
5
+ plTools
6
+                                 A QGIS plugin
7
+ The plugin adds a set of algorithms from plTools
8
+ Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/
9
+                              -------------------
10
+        begin                : 2024-01-10
11
+        copyright            : (C) 2024 by Pawel Netzel
12
+        email                : pawel@netzel.pl
13
+ ***************************************************************************/
14
+
15
+/***************************************************************************
16
+ *                                                                         *
17
+ *   This program is free software; you can redistribute it and/or modify  *
18
+ *   it under the terms of the GNU General Public License as published by  *
19
+ *   the Free Software Foundation; either version 2 of the License, or     *
20
+ *   (at your option) any later version.                                   *
21
+ *                                                                         *
22
+ ***************************************************************************/
23
+"""
24
+
25
+__author__ = 'Pawel Netzel'
26
+__date__ = '2024-01-10'
27
+__copyright__ = '(C) 2024 by Pawel Netzel'
28
+
29
+# This will get replaced with a git SHA1 when you do a git archive
30
+
31
+__revision__ = '$Format:%H$'
32
+
33
+from qgis.core import QgsProcessingProvider
34
+from .algo_plgeoadaptels import adaptels_Algorithm
35
+from .algo_plclump4p import clump4p_Algorithm
36
+from .algo_plforestfragment import forestfragment_Algorithm
37
+from .algo_plmapcalc import mapcalc_Algorithm
38
+from .algo_pldarksky import darksky_Algorithm
39
+
40
+class plToolsProvider(QgsProcessingProvider):
41
+
42
+    def __init__(self):
43
+        """
44
+        Default constructor.
45
+        """
46
+        QgsProcessingProvider.__init__(self)
47
+
48
+    def unload(self):
49
+        """
50
+        Unloads the provider. Any tear-down steps required by the provider
51
+        should be implemented here.
52
+        """
53
+        pass
54
+
55
+    def loadAlgorithms(self):
56
+        """
57
+        Loads all algorithms belonging to this provider.
58
+        """
59
+        self.addAlgorithm(adaptels_Algorithm())
60
+        self.addAlgorithm(clump4p_Algorithm())
61
+        self.addAlgorithm(forestfragment_Algorithm())
62
+        self.addAlgorithm(mapcalc_Algorithm())
63
+        self.addAlgorithm(darksky_Algorithm())
64
+
65
+    def id(self):
66
+        """
67
+        Returns the unique provider id, used for identifying the provider. This
68
+        string should be a unique, short, character only string, eg "qgis" or
69
+        "gdal". This string should not be localised.
70
+        """
71
+        return 'plTools'
72
+
73
+    def name(self):
74
+        """
75
+        Returns the provider name, which is used to describe the provider
76
+        within the GUI.
77
+
78
+        This string should be short (e.g. "Lastools") and localised.
79
+        """
80
+        return self.tr('plTools')
81
+
82
+    def icon(self):
83
+        """
84
+        Should return a QIcon which is used for your provider inside
85
+        the Processing toolbox.
86
+        """
87
+        return QgsProcessingProvider.icon(self)
88
+
89
+    def longName(self):
90
+        """
91
+        Returns the a longer version of the provider name, which can include
92
+        extra details such as version numbers. E.g. "Lastools LIDAR tools
93
+        (version 2.2.1)". This string should be localised. The default
94
+        implementation returns the same string as name().
95
+        """
96
+        return self.tr('plTools - pack of geospatial software tools')
... ...
@@ -0,0 +1,111 @@
1
+#!/usr/bin/env python
2
+# coding=utf-8
3
+"""This script uploads a plugin package to the plugin repository.
4
+        Authors: A. Pasotti, V. Picavet
5
+        git sha              : $TemplateVCSFormat
6
+"""
7
+
8
+import sys
9
+import getpass
10
+import xmlrpc.client
11
+from optparse import OptionParser
12
+
13
+standard_library.install_aliases()
14
+
15
+# Configuration
16
+PROTOCOL = 'https'
17
+SERVER = 'plugins.qgis.org'
18
+PORT = '443'
19
+ENDPOINT = '/plugins/RPC2/'
20
+VERBOSE = False
21
+
22
+
23
+def main(parameters, arguments):
24
+    """Main entry point.
25
+
26
+    :param parameters: Command line parameters.
27
+    :param arguments: Command line arguments.
28
+    """
29
+    address = "{protocol}://{username}:{password}@{server}:{port}{endpoint}".format(
30
+        protocol=PROTOCOL,
31
+        username=parameters.username,
32
+        password=parameters.password,
33
+        server=parameters.server,
34
+        port=parameters.port,
35
+        endpoint=ENDPOINT)
36
+    print("Connecting to: %s" % hide_password(address))
37
+
38
+    server = xmlrpc.client.ServerProxy(address, verbose=VERBOSE)
39
+
40
+    try:
41
+        with open(arguments[0], 'rb') as handle:
42
+            plugin_id, version_id = server.plugin.upload(
43
+                xmlrpc.client.Binary(handle.read()))
44
+        print("Plugin ID: %s" % plugin_id)
45
+        print("Version ID: %s" % version_id)
46
+    except xmlrpc.client.ProtocolError as err:
47
+        print("A protocol error occurred")
48
+        print("URL: %s" % hide_password(err.url, 0))
49
+        print("HTTP/HTTPS headers: %s" % err.headers)
50
+        print("Error code: %d" % err.errcode)
51
+        print("Error message: %s" % err.errmsg)
52
+    except xmlrpc.client.Fault as err:
53
+        print("A fault occurred")
54
+        print("Fault code: %d" % err.faultCode)
55
+        print("Fault string: %s" % err.faultString)
56
+
57
+
58
+def hide_password(url, start=6):
59
+    """Returns the http url with password part replaced with '*'.
60
+
61
+    :param url: URL to upload the plugin to.
62
+    :type url: str
63
+
64
+    :param start: Position of start of password.
65
+    :type start: int
66
+    """
67
+    start_position = url.find(':', start) + 1
68
+    end_position = url.find('@')
69
+    return "%s%s%s" % (
70
+        url[:start_position],
71
+        '*' * (end_position - start_position),
72
+        url[end_position:])
73
+
74
+
75
+if __name__ == "__main__":
76
+    parser = OptionParser(usage="%prog [options] plugin.zip")
77
+    parser.add_option(
78
+        "-w", "--password", dest="password",
79
+        help="Password for plugin site", metavar="******")
80
+    parser.add_option(
81
+        "-u", "--username", dest="username",
82
+        help="Username of plugin site", metavar="user")
83
+    parser.add_option(
84
+        "-p", "--port", dest="port",
85
+        help="Server port to connect to", metavar="80")
86
+    parser.add_option(
87
+        "-s", "--server", dest="server",
88
+        help="Specify server name", metavar="plugins.qgis.org")
89
+    options, args = parser.parse_args()
90
+    if len(args) != 1:
91
+        print("Please specify zip file.\n")
92
+        parser.print_help()
93
+        sys.exit(1)
94
+    if not options.server:
95
+        options.server = SERVER
96
+    if not options.port:
97
+        options.port = PORT
98
+    if not options.username:
99
+        # interactive mode
100
+        username = getpass.getuser()
101
+        print("Please enter user name [%s] :" % username, end=' ')
102
+
103
+        res = input()
104
+        if res != "":
105
+            options.username = res
106
+        else:
107
+            options.username = username
108
+    if not options.password:
109
+        # interactive mode
110
+        options.password = getpass.getpass()
111
+    main(options, args)
... ...
@@ -0,0 +1,281 @@
1
+[MASTER]
2
+
3
+# Specify a configuration file.
4
+#rcfile=
5
+
6
+# Python code to execute, usually for sys.path manipulation such as
7
+# pygtk.require().
8
+#init-hook=
9
+
10
+# Profiled execution.
11
+profile=no
12
+
13
+# Add files or directories to the blacklist. They should be base names, not
14
+# paths.
15
+ignore=CVS
16
+
17
+# Pickle collected data for later comparisons.
18
+persistent=yes
19
+
20
+# List of plugins (as comma separated values of python modules names) to load,
21
+# usually to register additional checkers.
22
+load-plugins=
23
+
24
+
25
+[MESSAGES CONTROL]
26
+
27
+# Enable the message, report, category or checker with the given id(s). You can
28
+# either give multiple identifier separated by comma (,) or put this option
29
+# multiple time. See also the "--disable" option for examples.
30
+#enable=
31
+
32
+# Disable the message, report, category or checker with the given id(s). You
33
+# can either give multiple identifiers separated by comma (,) or put this
34
+# option multiple times (only on the command line, not in the configuration
35
+# file where it should appear only once).You can also use "--disable=all" to
36
+# disable everything first and then reenable specific checks. For example, if
37
+# you want to run only the similarities checker, you can use "--disable=all
38
+# --enable=similarities". If you want to run only the classes checker, but have
39
+# no Warning level messages displayed, use"--disable=all --enable=classes
40
+# --disable=W"
41
+# see http://stackoverflow.com/questions/21487025/pylint-locally-defined-disables-still-give-warnings-how-to-suppress-them
42
+disable=locally-disabled,C0103
43
+
44
+
45
+[REPORTS]
46
+
47
+# Set the output format. Available formats are text, parseable, colorized, msvs
48
+# (visual studio) and html. You can also give a reporter class, eg
49
+# mypackage.mymodule.MyReporterClass.
50
+output-format=text
51
+
52
+# Put messages in a separate file for each module / package specified on the
53
+# command line instead of printing them on stdout. Reports (if any) will be
54
+# written in a file name "pylint_global.[txt|html]".
55
+files-output=no
56
+
57
+# Tells whether to display a full report or only the messages
58
+reports=yes
59
+
60
+# Python expression which should return a note less than 10 (10 is the highest
61
+# note). You have access to the variables errors warning, statement which
62
+# respectively contain the number of errors / warnings messages and the total
63
+# number of statements analyzed. This is used by the global evaluation report
64
+# (RP0004).
65
+evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10)
66
+
67
+# Add a comment according to your evaluation note. This is used by the global
68
+# evaluation report (RP0004).
69
+comment=no
70
+
71
+# Template used to display messages. This is a python new-style format string
72
+# used to format the message information. See doc for all details
73
+#msg-template=
74
+
75
+
76
+[BASIC]
77
+
78
+# Required attributes for module, separated by a comma
79
+required-attributes=
80
+
81
+# List of builtins function names that should not be used, separated by a comma
82
+bad-functions=map,filter,apply,input
83
+
84
+# Regular expression which should only match correct module names
85
+module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$
86
+
87
+# Regular expression which should only match correct module level names
88
+const-rgx=(([A-Z_][A-Z0-9_]*)|(__.*__))$
89
+
90
+# Regular expression which should only match correct class names
91
+class-rgx=[A-Z_][a-zA-Z0-9]+$
92
+
93
+# Regular expression which should only match correct function names
94
+function-rgx=[a-z_][a-z0-9_]{2,30}$
95
+
96
+# Regular expression which should only match correct method names
97
+method-rgx=[a-z_][a-z0-9_]{2,30}$
98
+
99
+# Regular expression which should only match correct instance attribute names
100
+attr-rgx=[a-z_][a-z0-9_]{2,30}$
101
+
102
+# Regular expression which should only match correct argument names
103
+argument-rgx=[a-z_][a-z0-9_]{2,30}$
104
+
105
+# Regular expression which should only match correct variable names
106
+variable-rgx=[a-z_][a-z0-9_]{2,30}$
107
+
108
+# Regular expression which should only match correct attribute names in class
109
+# bodies
110
+class-attribute-rgx=([A-Za-z_][A-Za-z0-9_]{2,30}|(__.*__))$
111
+
112
+# Regular expression which should only match correct list comprehension /
113
+# generator expression variable names
114
+inlinevar-rgx=[A-Za-z_][A-Za-z0-9_]*$
115
+
116
+# Good variable names which should always be accepted, separated by a comma
117
+good-names=i,j,k,ex,Run,_
118
+
119
+# Bad variable names which should always be refused, separated by a comma
120
+bad-names=foo,bar,baz,toto,tutu,tata
121
+
122
+# Regular expression which should only match function or class names that do
123
+# not require a docstring.
124
+no-docstring-rgx=__.*__
125
+
126
+# Minimum line length for functions/classes that require docstrings, shorter
127
+# ones are exempt.
128
+docstring-min-length=-1
129
+
130
+
131
+[MISCELLANEOUS]
132
+
133
+# List of note tags to take in consideration, separated by a comma.
134
+notes=FIXME,XXX,TODO
135
+
136
+
137
+[TYPECHECK]
138
+
139
+# Tells whether missing members accessed in mixin class should be ignored. A
140
+# mixin class is detected if its name ends with "mixin" (case insensitive).
141
+ignore-mixin-members=yes
142
+
143
+# List of classes names for which member attributes should not be checked
144
+# (useful for classes with attributes dynamically set).
145
+ignored-classes=SQLObject
146
+
147
+# When zope mode is activated, add a predefined set of Zope acquired attributes
148
+# to generated-members.
149
+zope=no
150
+
151
+# List of members which are set dynamically and missed by pylint inference
152
+# system, and so shouldn't trigger E0201 when accessed. Python regular
153
+# expressions are accepted.
154
+generated-members=REQUEST,acl_users,aq_parent
155
+
156
+
157
+[VARIABLES]
158
+
159
+# Tells whether we should check for unused import in __init__ files.
160
+init-import=no
161
+
162
+# A regular expression matching the beginning of the name of dummy variables
163
+# (i.e. not used).
164
+dummy-variables-rgx=_$|dummy
165
+
166
+# List of additional names supposed to be defined in builtins. Remember that
167
+# you should avoid to define new builtins when possible.
168
+additional-builtins=
169
+
170
+
171
+[FORMAT]
172
+
173
+# Maximum number of characters on a single line.
174
+max-line-length=80
175
+
176
+# Regexp for a line that is allowed to be longer than the limit.
177
+ignore-long-lines=^\s*(# )?<?https?://\S+>?$
178
+
179
+# Allow the body of an if to be on the same line as the test if there is no
180
+# else.
181
+single-line-if-stmt=no
182
+
183
+# List of optional constructs for which whitespace checking is disabled
184
+no-space-check=trailing-comma,dict-separator
185
+
186
+# Maximum number of lines in a module
187
+max-module-lines=1000
188
+
189
+# String used as indentation unit. This is usually " " (4 spaces) or "\t" (1
190
+# tab).
191
+indent-string='    '
192
+
193
+
194
+[SIMILARITIES]
195
+
196
+# Minimum lines number of a similarity.
197
+min-similarity-lines=4
198
+
199
+# Ignore comments when computing similarities.
200
+ignore-comments=yes
201
+
202
+# Ignore docstrings when computing similarities.
203
+ignore-docstrings=yes
204
+
205
+# Ignore imports when computing similarities.
206
+ignore-imports=no
207
+
208
+
209
+[IMPORTS]
210
+
211
+# Deprecated modules which should not be used, separated by a comma
212
+deprecated-modules=regsub,TERMIOS,Bastion,rexec
213
+
214
+# Create a graph of every (i.e. internal and external) dependencies in the
215
+# given file (report RP0402 must not be disabled)
216
+import-graph=
217
+
218
+# Create a graph of external dependencies in the given file (report RP0402 must
219
+# not be disabled)
220
+ext-import-graph=
221
+
222
+# Create a graph of internal dependencies in the given file (report RP0402 must
223
+# not be disabled)
224
+int-import-graph=
225
+
226
+
227
+[DESIGN]
228
+
229
+# Maximum number of arguments for function / method
230
+max-args=5
231
+
232
+# Argument names that match this expression will be ignored. Default to name
233
+# with leading underscore
234
+ignored-argument-names=_.*
235
+
236
+# Maximum number of locals for function / method body
237
+max-locals=15
238
+
239
+# Maximum number of return / yield for function / method body
240
+max-returns=6
241
+
242
+# Maximum number of branch for function / method body
243
+max-branches=12
244
+
245
+# Maximum number of statements in function / method body
246
+max-statements=50
247
+
248
+# Maximum number of parents for a class (see R0901).
249
+max-parents=7
250
+
251
+# Maximum number of attributes for a class (see R0902).
252
+max-attributes=7
253
+
254
+# Minimum number of public methods for a class (see R0903).
255
+min-public-methods=2
256
+
257
+# Maximum number of public methods for a class (see R0904).
258
+max-public-methods=20
259
+
260
+
261
+[CLASSES]
262
+
263
+# List of interface methods to ignore, separated by a comma. This is used for
264
+# instance to not check methods defines in Zope's Interface base class.
265
+ignore-iface-methods=isImplementedBy,deferred,extends,names,namesAndDescriptions,queryDescriptionFor,getBases,getDescriptionFor,getDoc,getName,getTaggedValue,getTaggedValueTags,isEqualOrExtendedBy,setTaggedValue,isImplementedByInstancesOf,adaptWith,is_implemented_by
266
+
267
+# List of method names used to declare (i.e. assign) instance attributes.
268
+defining-attr-methods=__init__,__new__,setUp
269
+
270
+# List of valid names for the first argument in a class method.
271
+valid-classmethod-first-arg=cls
272
+
273
+# List of valid names for the first argument in a metaclass class method.
274
+valid-metaclass-classmethod-first-arg=mcs
275
+
276
+
277
+[EXCEPTIONS]
278
+
279
+# Exceptions that will emit a warning when being caught. Defaults to
280
+# "Exception"
281
+overgeneral-exceptions=Exception
0 282