-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
1513 lines (1484 loc) · 292 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Active Textbook Demo Version</title>
<meta name="description" content="">
<meta name="author" content="Evident Point Software Corp.">
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=false;">
<!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Le style libraries -->
<link href="assets/atb-manifest.css" media="screen" rel="stylesheet" type="text/css" />
<script src="assets/atb-manifest.js" type="text/javascript"></script>
<script src="assets/pan_and_zoom.js" type="text/javascript"></script>
</head>
<body>
<div class="navbar navbar-fixed-top topBar">
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<div class="nav-collapse">
<ul class="nav">
<li class="active selectTool">
<a href="#" id="select"><img alt="Select" id="select_icon" src="assets/select.gif" /> Select</a>
</li>
<li class="penTool">
<a href="#" id="pen"><img alt="Pen" id="pen_icon" src="assets/pen.gif" /> Pen</a>
</li>
<li class="toggelTwoUp">
<a href="#" id="upToggle"><img alt="1page_view_toggle" id="one_up_icon" src="assets/1page_view_toggle.png" />
<img alt="2page_view_toggle" id="two_up_icon" src="assets/2page_view_toggle.png" /> Toggle</a>
</li>
</ul>
<ul class="nav pull-right">
<li>
<img alt="Activetextbook-sm" height="34" id="logo" src="assets/activetextbook-sm.png" width="252" />
</li>
</li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
</div>
<div class="container" id="main-container">
<div id="hotspot-popovers-container">
</div>
<!-- Pagination buttons -->
<button class="page-nav-btn" id="prevButton">last</button>
<button class="page-nav-btn" id="nextButton">next</button>
<div data-hotspots="[{"x_coord":100,"y_coord":100,"width":100,"height":100,"resource_type":"image","page":1,"uri":"assets/Alice.jpg","document":{"created_at":"2012-02-16T16:10:01-08:00","deleted":false,"guid":"348c617f-dba9-4d08-9807-668345d71218","id":4,"name":"Animal Diversity","path":"/348c617f-dba9-4d08-9807-668345d71218","published_date":null,"publisher_id":2,"publishing_location_id":4,"revision_count":1,"revision_date":null,"status":"published","updated_at":"2012-02-17T15:28:24-08:00","xap_name":"348c617f-dba9-4d08-9807-668345d71218"},"id":1},{"x_coord":250,"y_coord":55,"width":300,"height":200,"resource_type":"youtube","page":1,"uri":"http://www.youtube.com/embed/LjMkNrX60mA","document":{"created_at":"2012-02-16T16:10:01-08:00","deleted":false,"guid":"348c617f-dba9-4d08-9807-668345d71218","id":4,"name":"Animal Diversity","path":"/348c617f-dba9-4d08-9807-668345d71218","published_date":null,"publisher_id":2,"publishing_location_id":4,"revision_count":1,"revision_date":null,"status":"published","updated_at":"2012-02-17T15:28:24-08:00","xap_name":"348c617f-dba9-4d08-9807-668345d71218"},"id":2},{"x_coord":250,"y_coord":505,"width":300,"height":200,"resource_type":"weblink","page":2,"uri":"http://www.imdb.com/title/tt1014759/","document":{"created_at":"2012-02-16T16:10:01-08:00","deleted":false,"guid":"348c617f-dba9-4d08-9807-668345d71218","id":4,"name":"Animal Diversity","path":"/348c617f-dba9-4d08-9807-668345d71218","published_date":null,"publisher_id":2,"publishing_location_id":4,"revision_count":1,"revision_date":null,"status":"published","updated_at":"2012-02-17T15:28:24-08:00","xap_name":"348c617f-dba9-4d08-9807-668345d71218"},"id":3}]" id="book-container">
<div id="divider">
</div>
<div id="page1" class="page odd">
<canvas class="imageView"></canvas>
<!-- Generator: PDFTron PDF2SVG Converter (DEMO VERSION) -->
<svg id="svgRoot" version="1.0" baseProfile="Full" viewBox="0 0 396 540" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:cs="http://www.pdftron.com/pdf2svg" xml:space="preserve" buffered-rendering="dynamic">
<defs>
<font horiz-adv-x="0"><font-face
font-family="fnt0"
units-per-em="1000"
ascent="672"
descent="-227"
/>
<missing-glyph horiz-adv-x="0"/>
<glyph unicode=" " horiz-adv-x="333" d="M0 0 Z"/>
<glyph unicode="A" horiz-adv-x="740" d="M443,231L490,115C510,66,501,39,440,39L405,39L405,-0L730,-0L730,39C678,43,656,63,630,129L430,637L282,637L293,608L122,131C97,61,72,39,24,39L9,39L9,-0L274,-0L274,39L261,39C165,39,164,63,182,114L224,231 ZM420,286L244,286L328,520 Z"/>
<glyph unicode="W" horiz-adv-x="1000" d="M352,-14L419,-14L523,206L630,-14L695,-14L897,493C923,559,946,580,994,583L994,622L792,622L792,583C852,582,862,554,840,499L702,149L597,362L670,510C696,563,708,575,746,583L746,622L308,622L308,583C337,582,350,569,376,515L494,267L430,136L245,522C226,561,230,579,271,583L271,622L6,622L6,583L14,583C67,583,78,563,108,499 ZM567,424L510,539C495,569,499,583,539,583L593,583C638,583,640,568,624,537 Z"/>
<glyph unicode="a" horiz-adv-x="479" d="M446,74C432,64,427,62,419,62C404,62,397,73,397,108L397,297C397,391,283,419,234,419C185,419,103,393,69,359C43,333,39,304,48,263L160,302C152,354,177,379,212,379C248,379,275,351,275,312L275,275C197,211,116,221,69,174C52,157,38,126,38,94C38,30,83,-11,154,-11C210,-11,237,13,277,52C283,14,310,-10,347,-10C380,-10,430,16,461,50 ZM275,87C246,59,225,45,208,45C178,45,158,72,158,114C158,195,227,188,275,230 Z"/>
<glyph unicode="c" horiz-adv-x="490" d="M429,112C388,64,346,41,301,41C227,41,176,114,176,222C176,312,210,373,260,373C318,373,333,284,403,284C434,284,454,304,454,334C454,383,389,419,303,419C157,419,44,318,44,187C44,72,132,-11,254,-11C342,-11,412,26,458,96 Z"/>
<glyph unicode="d" horiz-adv-x="573" d="M366,-11L392,-11L558,32L558,63C548,60,537,58,528,58C496,58,488,73,488,132L488,669L454,669L299,619L299,595C349,584,366,571,366,534L366,406C336,415,308,419,276,419C112,419,43,290,43,178C43,68,111,-11,205,-11C254,-11,304,14,366,69 ZM366,114C342,85,304,64,276,64C209,64,164,131,164,231C164,324,204,379,270,379C306,379,329,369,366,336 Z"/>
<glyph unicode="e" horiz-adv-x="479" d="M416,135C367,84,331,63,294,63C235,63,179,126,171,209L448,209L448,238C413,256,441,312,382,371C351,402,309,419,256,419C131,419,42,326,42,194C42,73,116,-11,225,-11C302,-11,383,37,439,116 ZM168,248C161,319,198,372,239,372C282,372,309,325,310,248 Z"/>
<glyph unicode="i" horiz-adv-x="292" d="M265,32C221,32,204,54,204,95L204,430L186,430L15,373L15,349L48,337C76,327,82,320,82,294L82,102C82,50,67,32,26,32L15,32L15,-0L265,-0 ZM139,657C97,657,59,625,59,589C59,550,93,521,139,521C180,521,218,549,218,589C218,627,185,657,139,657 Z"/>
<glyph unicode="l" horiz-adv-x="271" d="M195,669L177,669L4,619L4,590L47,574C70,566,73,558,73,514L73,102C73,51,59,32,17,32L7,32L7,-0L255,-0L255,32C209,32,195,55,195,102 Z"/>
<glyph unicode="n" horiz-adv-x="573" d="M495,247C495,367,463,419,390,419C342,419,278,389,205,341L205,430L186,430L15,372L15,348L36,342C71,332,83,319,83,297L83,102C83,50,68,32,26,32L20,32L20,-0L273,-0L273,32L264,32C224,32,205,51,205,96L205,299C247,328,280,343,311,343C351,343,373,312,373,232L373,145C373,63,357,35,316,32L316,-0L552,-0L552,32C513,32,495,42,495,91 Z"/>
<glyph unicode="o" horiz-adv-x="573" d="M43,198C43,76,141,-11,279,-11C422,-11,530,84,530,211C530,332,431,419,294,419C151,419,43,324,43,198 ZM175,257C175,332,209,376,268,376C344,376,398,284,398,156C398,77,365,32,307,32C211,32,175,173,175,257 Z"/>
<glyph unicode="r" horiz-adv-x="396" d="M300,32L274,32C222,32,207,51,207,99L207,261C229,292,246,306,266,306C279,306,316,293,347,281C367,309,383,345,395,387L316,416C311,418,303,419,296,419C262,419,246,390,209,318L207,318L207,430L186,430L22,368L22,343L49,332C79,320,85,310,85,265L85,102C85,50,70,32,29,32L22,32L22,-0L300,-0 Z"/>
<glyph unicode="s" horiz-adv-x="375" d="M53,-9L82,-9C90,-0,96,4,102,4C116,4,139,-10,208,-10C285,-10,338,42,338,116C338,253,141,256,141,338C141,360,161,376,187,376C230,376,263,346,281,291L313,291L311,398C269,413,237,419,199,419C105,419,42,368,42,292C42,171,230,147,230,78C230,53,206,32,178,32C135,32,91,62,74,118L42,118 Z"/>
<glyph unicode="t" horiz-adv-x="344" d="M199,353L315,353L330,408L199,408L199,533L170,533C152,477,84,404,24,379L24,353L77,353L77,113C77,27,122,-11,190,-11C245,-11,305,26,335,80L321,108C292,73,269,58,245,58C216,58,199,74,199,111 Z"/>
<glyph unicode="u" horiz-adv-x="573" d="M363,-11L382,-11L544,28L544,59C531,54,523,53,514,53C490,53,485,63,485,113L485,419L465,419L281,382L281,359L327,345C357,336,363,326,363,287L363,106C321,79,286,65,262,65C217,65,197,104,197,164L197,419L177,419L33,382L33,359L54,349C71,341,75,332,75,293L75,126C75,54,111,-11,184,-11C222,-11,272,11,363,69 Z"/>
<glyph unicode="v" horiz-adv-x="521" d="M4,376C48,371,62,355,81,314L230,-7L290,-7L433,316C452,358,465,371,517,376L517,408L318,408L318,376C388,369,400,349,377,297L299,121L210,320C193,357,202,376,223,376L258,376L258,408L4,408 Z"/>
<glyph unicode="’" horiz-adv-x="313" d="M85,371C180,369,249,435,249,526C249,596,207,641,141,641C95,641,64,614,64,574C64,534,91,508,139,508C164,508,187,520,187,496C187,452,141,418,77,413 Z"/>
</font>
<font horiz-adv-x="0"><font-face
font-family="fnt1"
units-per-em="1000"
ascent="673"
descent="-233"
/>
<missing-glyph horiz-adv-x="0"/>
<glyph unicode=" " horiz-adv-x="278" d="M0 0 Z"/>
<glyph unicode="." horiz-adv-x="260" d="M130,82C101,82,79,63,79,35C79,7,101,-12,130,-12C158,-12,181,5,181,35C181,64,158,82,130,82 Z"/>
<glyph unicode="/" horiz-adv-x="458" d="M369,637L46,-14L89,-14L412,637 Z"/>
<glyph unicode=":" horiz-adv-x="260" d="M130,406C101,406,79,387,79,359C79,331,101,312,130,312C158,312,181,329,181,359C181,388,158,406,130,406 ZM130,82C101,82,79,63,79,35C79,7,101,-12,130,-12C158,-12,181,5,181,35C181,64,158,82,130,82 Z"/>
<glyph unicode="B" horiz-adv-x="635" d="M121,101C121,38,105,19,23,19L0,19L0,-0L366,-0C527,-0,582,111,582,190C582,268,527,329,433,357L433,359C500,371,547,424,547,481C547,529,527,563,486,592C450,618,373,631,285,631C266,631,190,630,135,628C106,627,37,623,9,622L9,603L44,603C114,603,121,573,121,516 ZM204,609C229,610,270,612,292,612C415,612,457,548,457,478C457,400,409,362,313,362L204,362 ZM204,343L312,343C429,343,488,264,488,187C488,109,450,27,318,27C234,27,204,54,204,130 Z"/>
<glyph unicode="C" horiz-adv-x="729" d="M664,458L655,603L640,603C638,600,633,597,622,597C591,597,537,637,411,637C202,637,52,497,52,303C52,118,198,-16,401,-16C519,-16,563,20,627,11C651,50,678,112,691,157L672,157C604,36,507,9,428,9C276,9,146,142,146,323C146,491,250,612,417,612C526,612,612,551,645,458 Z"/>
<glyph unicode="D" horiz-adv-x="760" d="M111,92C111,34,86,19,32,19L15,19L15,-0L335,-0C588,-0,705,181,705,332C705,497,588,631,324,631C272,631,211,630,156,628C101,626,52,624,15,622L15,603L35,603C94,603,111,587,111,522 ZM194,608C206,609,233,612,274,612C414,612,485,577,531,531C590,472,611,390,611,316C611,213,565,136,528,100C466,38,410,19,276,19C197,19,194,33,194,74 Z"/>
<glyph unicode="F" horiz-adv-x="531" d="M474,415L457,415C454,372,436,351,399,351L201,351L201,586L391,586C453,586,473,562,474,504L491,504L491,622L43,622L43,603C113,602,118,573,118,509L118,117C118,36,107,23,45,19L45,-0L288,-0L288,19C213,19,201,40,201,96L201,315L386,315C434,315,455,297,457,239L474,239 Z"/>
<glyph unicode="L" horiz-adv-x="552" d="M544,146L526,146C463,59,445,36,386,36L239,36C210,36,199,46,199,73L199,534C199,596,216,603,281,603L318,603L318,622L23,622L23,603L37,603C100,603,116,581,116,528L116,85C116,34,99,19,53,19L20,19L20,-0L467,-0 Z"/>
<glyph unicode="N" horiz-adv-x="813" d="M705,-7L705,551C705,590,721,603,796,603L796,622L562,622L562,603C642,601,660,590,660,529L660,131L189,622L32,622L32,603C67,602,93,594,116,578L116,86C116,40,96,19,34,19L30,19L30,-0L262,-0L262,19C177,19,161,34,161,106L161,535L679,-7 Z"/>
<glyph unicode="P" horiz-adv-x="563" d="M200,271C230,265,255,263,285,263C433,263,527,337,527,454C527,531,479,631,270,631C243,631,195,630,146,628C97,626,48,623,20,622L20,603L70,603C105,603,117,587,117,550L117,77C117,30,102,19,50,19L36,19L36,-0L313,-0L313,19L280,19C217,19,200,40,200,96 ZM200,608C224,612,246,612,269,612C402,612,433,535,433,457C433,356,363,282,254,282C235,282,213,287,200,290 Z"/>
<glyph unicode="T" horiz-adv-x="677" d="M380,586L554,586C594,586,612,563,627,475L645,475L629,637L610,637C608,625,593,622,579,622L98,622C91,622,84,623,78,625C72,627,68,631,67,637L48,637L32,475L50,475C65,563,83,586,123,586L297,586L297,92C297,38,279,19,218,19L181,19L181,-0L496,-0L496,19L459,19C398,19,380,38,380,92 Z"/>
<glyph unicode="W" horiz-adv-x="1000" d="M687,-16L888,512C918,591,932,603,993,603L993,622L786,622L786,603C859,601,872,587,856,546L679,82L548,394L612,550C628,588,649,603,711,603L711,622L301,622L301,603C354,603,384,595,404,546L485,349L377,82L195,540C178,582,196,603,243,603L260,603L260,622L1,622L1,603L7,603C71,603,95,592,125,516L333,-16L382,-16L508,293L639,-16 ZM525,450L475,566C463,593,477,603,503,603L545,603C574,603,581,587,570,560 Z"/>
<glyph unicode="a" horiz-adv-x="396" d="M113,310C109,319,108,323,108,329C108,350,137,378,170,378C192,378,213,365,226,349C243,329,243,313,243,285L243,206C208,185,175,173,154,168C90,152,36,131,36,70C36,21,71,-12,129,-12C156,-12,176,-8,245,49C246,33,250,-12,291,-12C308,-12,336,-1,390,43L385,58C360,37,347,36,336,36C310,36,310,54,310,134L310,268C310,320,310,333,295,354C267,393,220,407,190,407C125,407,42,326,42,291C42,286,43,283,45,277 ZM243,67C187,28,175,23,159,23C129,23,100,46,100,82C100,123,123,133,184,158C208,168,224,175,243,186 Z"/>
<glyph unicode="b" horiz-adv-x="500" d="M142,672L126,672L6,631L6,614L34,610C72,605,75,601,75,549L75,7C139,-5,178,-12,223,-12C356,-12,457,86,457,214C457,319,382,407,293,407C256,407,213,388,142,337 ZM142,314C187,346,223,361,254,361C331,361,390,286,390,186C390,86,333,17,251,17C175,17,142,72,142,122 Z"/>
<glyph unicode="c" horiz-adv-x="427" d="M376,101C340,51,302,29,254,29C173,29,113,103,113,203C113,299,173,381,242,381C298,381,310,320,359,320C375,320,388,333,388,350C388,382,339,407,276,407C149,407,46,306,46,181C46,102,94,-12,214,-12C294,-12,349,25,391,92 Z"/>
<glyph unicode="d" horiz-adv-x="500" d="M358,388C331,399,290,407,260,407C138,407,43,306,43,181C43,74,114,-12,203,-12C241,-12,293,12,358,59L358,-12L370,-12L498,38L498,59L474,52C446,44,425,51,425,85L425,672L286,631L286,614L319,610C351,606,358,601,358,582 ZM358,81C314,50,271,31,240,31C168,31,110,115,110,215C110,309,161,380,239,380C286,380,322,358,358,305 Z"/>
<glyph unicode="e" horiz-adv-x="438" d="M406,254L406,277C373,310,376,407,241,407C119,407,48,299,48,193C48,77,124,-12,222,-12C295,-12,358,38,400,91L389,103C351,58,312,38,262,38C183,38,110,108,110,212C110,225,112,239,114,254 ZM117,280C140,373,190,388,223,388C271,388,311,345,322,280 Z"/>
<glyph unicode="f" horiz-adv-x="271" d="M258,396L157,396L157,472C157,569,196,626,268,626C334,626,371,577,385,577C393,577,412,617,412,625C412,640,365,672,309,672C263,672,216,650,167,601C108,542,90,479,90,396C68,384,44,375,16,369L16,352L90,352L90,88C90,32,80,19,22,19L22,-0L269,-0L269,19L231,19C175,19,157,32,157,78L157,352L265,352 Z"/>
<glyph unicode="g" horiz-adv-x="469" d="M472,377C428,372,386,367,341,367C314,393,275,407,229,407C130,407,53,340,53,254C53,197,88,154,149,130C114,104,47,102,47,56C47,24,88,-10,142,-15C96,-71,35,-80,35,-138C35,-187,85,-233,189,-233C374,-233,462,-133,462,-68C462,-47,456,-22,432,2C402,32,363,37,250,38C150,39,107,49,107,74C107,97,152,108,168,125C186,119,195,117,214,117C325,117,389,188,389,262C389,294,378,315,372,326C410,319,457,315,472,314 ZM322,253C322,184,284,136,226,136C150,136,120,215,120,274C120,367,179,388,217,388C278,388,322,339,322,253 ZM97,-105C97,-66,134,-52,162,-19C191,-23,317,-24,343,-27C379,-30,410,-49,410,-86C410,-149,330,-205,245,-205C163,-205,97,-152,97,-105 Z"/>
<glyph unicode="h" horiz-adv-x="521" d="M160,319C209,350,245,366,278,366C311,366,369,352,369,245C369,96,365,53,347,35C336,24,317,19,291,19L291,-0L507,-0L507,19C448,19,433,30,431,57C434,111,436,167,436,258C436,359,402,407,325,407C274,407,226,383,160,344L160,672L144,672L25,631L25,614L68,608C89,605,93,597,93,575L93,96C93,41,80,22,25,19L25,-0L225,-0L225,19C173,19,160,32,160,79 Z"/>
<glyph unicode="i" horiz-adv-x="260" d="M168,412L153,412L23,367L23,351L70,342C96,337,101,332,101,293L101,92C101,39,79,19,18,19L18,-0L240,-0L240,19C187,19,168,41,168,76 ZM84,599C84,578,103,561,127,561C151,561,171,578,171,599C171,620,151,637,127,637C103,637,84,620,84,599 Z"/>
<glyph unicode="k" horiz-adv-x="500" d="M265,396L265,377L282,377C319,377,329,360,303,341L159,238L159,672L144,672L22,631L22,614L63,608C87,605,92,597,92,569L92,86C92,43,75,19,22,19L22,-0L227,-0L227,19L217,19C171,19,159,33,159,68L159,221L311,63C337,35,330,19,281,19L281,-0L496,-0L496,19C450,20,427,34,377,85L217,248L309,314C360,351,392,374,463,377L463,396 Z"/>
<glyph unicode="l" horiz-adv-x="240" d="M156,672L141,672L13,631L13,614L58,609C86,606,89,597,89,569L89,86C89,38,70,19,6,19L6,-0L231,-0L231,19L214,19C175,19,156,38,156,79 Z"/>
<glyph unicode="m" horiz-adv-x="792" d="M159,309C227,354,265,367,293,367C328,367,367,344,367,281L367,96C367,39,347,19,291,19L291,-0L496,-0L496,19C446,19,434,31,434,81L434,311C496,352,536,367,567,367C616,367,642,330,642,253L642,175C642,106,641,48,626,33C617,24,604,19,575,19L566,19L566,-0L791,-0L791,19L759,19C718,19,706,43,706,64C709,125,709,192,709,256C709,352,681,407,609,407C560,407,499,369,432,327C422,376,386,407,337,407C297,407,231,378,159,327L159,407L144,407L24,365L24,348L63,343C86,340,92,331,92,292L92,96C92,45,79,19,21,19L21,-0L229,-0L229,19C173,19,159,29,159,81 Z"/>
<glyph unicode="n" horiz-adv-x="521" d="M160,304C212,340,261,368,293,368C333,368,372,343,372,263C372,130,370,57,351,38C340,27,323,20,294,19L294,-0L509,-0L509,19L487,19C446,19,430,32,431,59C432,98,439,124,439,257C439,357,400,407,332,407C283,407,227,370,160,328L160,406L144,406L29,364L29,348L63,341C89,336,93,329,93,292L93,82C93,43,70,19,26,19L26,-0L227,-0L227,19C173,19,160,32,160,87 Z"/>
<glyph unicode="o" horiz-adv-x="521" d="M45,195C45,78,140,-12,264,-12C383,-12,476,79,476,197C476,316,383,407,261,407C157,407,45,333,45,195 ZM120,229C120,315,181,383,247,383C331,383,401,286,401,172C401,72,334,12,275,12C189,12,120,108,120,229 Z"/>
<glyph unicode="p" horiz-adv-x="500" d="M150,13C188,-1,214,-7,241,-7C355,-7,453,97,453,218C453,316,383,404,305,404C265,404,212,378,150,331L150,427L130,427L23,361L23,342L55,334C79,328,83,320,83,301L83,-140C83,-197,67,-214,16,-214L6,-214L6,-233L242,-233L242,-214L217,-214C175,-214,150,-199,150,-149 ZM150,306C186,337,224,355,255,355C308,355,386,305,386,173C386,91,336,24,268,24C231,24,186,46,150,78 Z"/>
<glyph unicode="r" horiz-adv-x="333" d="M160,267C168,282,179,299,192,317C202,331,213,343,231,343C243,343,255,338,266,333C285,324,304,319,319,317L343,377C319,384,301,388,291,392C272,400,269,401,257,401C224,401,212,382,162,300L160,300L160,406L140,406L26,366L26,349L93,325L93,94C93,41,77,20,26,19L26,-0L263,-0L263,19L225,19C175,19,160,32,160,73 Z"/>
<glyph unicode="s" horiz-adv-x="302" d="M32,101L43,-11L58,-11C63,-3,69,1,75,1C83,1,91,-2,102,-5C113,-9,127,-12,146,-12C216,-12,270,37,270,102C270,224,84,239,84,327C84,360,112,383,145,383C185,383,218,351,225,300L242,300L240,391C215,401,187,407,160,407C84,407,32,361,32,295C32,212,111,205,182,134C209,107,214,94,214,73C214,37,183,7,143,7C98,7,60,41,48,101 Z"/>
<glyph unicode="t" horiz-adv-x="292" d="M142,396L142,495L125,495C102,433,68,387,29,368L29,352L75,352L75,104C75,37,117,-12,176,-12C222,-12,261,18,285,70L269,85C250,52,230,35,208,35C187,35,142,56,142,119L142,352L269,352L285,396 Z"/>
<glyph unicode="u" horiz-adv-x="521" d="M497,47L476,43C440,36,430,41,430,69L430,406L276,382L276,368L326,359C358,353,363,345,363,306L363,91C322,57,278,36,244,36C199,36,154,64,154,126L154,406L25,378L25,363L60,353C81,347,87,336,87,312L87,90C87,22,143,-12,193,-12C233,-12,288,14,363,68L363,-12L497,29 Z"/>
<glyph unicode="v" horiz-adv-x="479" d="M256,-9L394,305C413,349,435,371,473,378L473,396L299,396L299,378C372,373,381,344,363,303L261,72L155,321C131,368,150,376,211,378L211,396L7,396L7,378L38,373C54,370,67,358,82,323L227,-9 Z"/>
<glyph unicode="w" horiz-adv-x="740" d="M525,-9L654,306C674,355,698,374,736,378L736,396L568,396L568,378C631,378,648,361,626,308L530,74L432,312C411,362,426,377,475,378L475,396L268,396L268,378L292,375C327,371,344,353,366,302L268,70L160,311C139,358,143,375,202,378L202,396L8,396L8,378C54,373,68,358,82,327L231,-9L259,-9L379,273L498,-9 Z"/>
<glyph unicode="y" horiz-adv-x="469" d="M261,73L148,317C128,359,135,377,196,378L196,396L-5,396L-5,378C37,377,55,360,74,319L229,-10L199,-85C191,-105,176,-131,165,-142C140,-167,82,-157,82,-198C82,-218,99,-233,123,-233C158,-233,181,-200,211,-126L381,298C400,345,423,373,464,378L464,396L298,396L298,378C357,376,376,361,346,285 Z"/>
</font>
<font horiz-adv-x="0"><font-face
font-family="fnt2"
units-per-em="2048"
ascent="927"
descent="-218"
/>
<missing-glyph horiz-adv-x="0"/>
<glyph unicode="." horiz-adv-x="569" d="M178,217L392,217L392,-0L178,-0 Z"/>
<glyph unicode="c" horiz-adv-x="1024" d="M977,385L977,385Q949,183,834,77Q719,-29,528,-29Q315,-29,188,124Q61,277,61,536Q61,795,192,948Q324,1102,546,1102Q739,1102,854,996Q969,891,977,706L977,706L804,706L804,706Q793,821,724,884Q655,947,540,947Q404,947,326,837Q249,728,249,536Q249,332,321,229Q393,126,535,126Q640,126,710,193Q781,261,804,385L804,385 Z"/>
<glyph unicode="d" horiz-adv-x="1138" d="M541,-29Q326,-29,199,131Q72,292,72,565Q72,806,195,954Q318,1102,516,1102Q713,1102,828,935L842,915L842,915L842,1470L842,1470L932,1470L1022,1470L1022,1470L1022,-0L1022,-0L939,-0L855,-0L855,-0L855,146L855,146L832,113Q721,-29,541,-29 ZM551,940Q400,940,330,843Q260,747,260,537Q260,339,335,232Q411,125,551,125Q682,125,762,223Q842,322,842,484Q842,703,766,821Q691,940,551,940 Z"/>
<glyph unicode="f" horiz-adv-x="569" d="M357,921L357,921L357,-0L357,-0L267,-0L177,-0L177,-0L177,921L177,921L29,921L29,1070L177,1070L177,1070L177,1252Q177,1371,247,1431Q317,1491,457,1491L536,1488L536,1326L465,1329Q413,1329,385,1295Q357,1262,357,1200L357,1070L357,1070L536,1070L536,921 Z"/>
<glyph unicode="m" horiz-adv-x="1705" d="M133,-0L133,1070L133,1070L218,1070L304,1070L304,1070L304,911L304,911L304,911L341,959Q462,1102,630,1102Q774,1102,859,1017Q897,979,918,930L918,930L947,967Q1063,1102,1224,1102Q1392,1102,1483,1010Q1575,919,1575,751L1575,-0L1575,-0L1485,-0L1395,-0L1395,-0L1395,690Q1395,812,1345,875Q1295,938,1199,938Q1082,938,1013,847Q944,756,944,601L944,601L944,-0L944,-0L854,-0L764,-0L764,-0L764,733Q764,833,718,885Q673,938,586,938Q466,938,389,836Q313,734,313,573L313,573L313,-0L313,-0L223,-0L133,-0 Z"/>
<glyph unicode="n" horiz-adv-x="1138" d="M133,-0L133,1070L133,1070L218,1070L304,1070L304,1070L304,912L304,912L304,912L344,965Q461,1102,637,1102Q814,1102,910,1006Q1006,910,1006,733L1006,-0L1006,-0L916,-0L826,-0L826,-0L826,672Q826,813,771,875Q717,938,595,938Q465,938,389,839Q313,741,313,573L313,573L313,-0L313,-0L223,-0L133,-0 Z"/>
<glyph unicode="o" horiz-adv-x="1138" d="M569,-29Q347,-29,209,127Q72,283,72,536Q72,790,209,946Q347,1102,569,1102Q793,1102,930,946Q1067,790,1067,536Q1067,283,930,127Q793,-29,569,-29 ZM569,126Q711,126,795,237Q879,348,879,536Q879,724,795,835Q711,947,569,947Q427,947,343,835Q260,724,260,536Q260,348,343,237Q427,126,569,126 Z"/>
<glyph unicode="p" horiz-adv-x="1138" d="M119,1070L119,1070L204,1070L290,1070L290,1070L290,918L290,918L299,931Q415,1102,604,1102Q814,1102,936,957Q1059,813,1059,567Q1059,288,935,129Q812,-29,593,-29Q412,-29,305,110L299,118L299,118L299,-423L299,-423L209,-423L119,-423L119,-423 ZM584,127Q725,127,798,233Q871,340,871,544Q871,745,801,841Q731,938,585,938Q436,938,367,829Q299,720,299,484L299,484L299,484L299,484Q299,313,373,220Q447,127,584,127 Z"/>
<glyph unicode="r" horiz-adv-x="681" d="M158,-0L158,1070L158,1070L243,1070L329,1070L329,1070L329,887L329,887L329,887Q352,930,378,965Q480,1102,629,1102Q654,1102,680,1093L680,909L643,910Q497,910,417,822Q338,735,338,573L338,573L338,-0L338,-0L248,-0L158,-0 Z"/>
<glyph unicode="t" horiz-adv-x="569" d="M526,1Q434,-13,392,-13Q274,-13,225,39Q177,91,177,218L177,923L177,923L29,923L29,1070L177,1070L177,1070L177,1370L357,1370L357,1070L357,1070L526,1070L526,923L357,923L357,923L357,218Q357,182,385,161Q414,140,462,140L526,140 Z"/>
<glyph unicode="w" horiz-adv-x="1478" d="M333,-0L29,1070L29,1070L128,1070L227,1070L227,1070L432,218L432,218L432,218L641,1070L741,1070L841,1070L1056,212L1056,212L1056,212L1273,1070L1273,1070L1362,1070L1452,1070L1452,1070L1149,-0L1053,-0L956,-0L735,836L735,836L735,836L526,-0L430,-0 Z"/>
</font>
</defs>
<style type="text/css">
<![CDATA[
#page1 { z-index:5; }
#page1 .ps06 { stroke:#97B3FC;fill:none; }
#page1 .ps00 { stroke:none;fill:#000000; }
#page1 .ps03 { stroke:none;fill:#000000;fill-rule:nonzero; }
#page1 .ps01 { stroke:none;fill:#0000FF; }
#page1 .ps02 { stroke:none;fill:#0000FF;fill-rule:nonzero; }
#page1 .ps05 { stroke:none;fill:#1B0C66;fill-rule:nonzero; }
#page1 .ps04 { stroke:none;fill:#EE6413;fill-rule:nonzero; }
#page1 .ps10 { stroke-width:0.000001; }
#page1 .ps210 {
letter-spacing:-0.0011022px;word-spacing:-0.02505;font-family:fnt1;font-size:10.02px; }
#page1 .ps27 {
letter-spacing:-0.002004px;word-spacing:0;font-family:fnt1;font-size:10.02px; }
#page1 .ps26 {
letter-spacing:-0.004008px;word-spacing:-0.022044;font-family:fnt1;font-size:10.02px; }
#page1 .ps21 {
letter-spacing:-0.00744px;word-spacing:0;font-family:fnt0;font-size:24px; }
#page1 .ps29 {
letter-spacing:-0.0079158px;word-spacing:-0.016934;font-family:fnt1;font-size:10.02px; }
#page1 .ps28 {
letter-spacing:-0.0079158px;word-spacing:0.042084;font-family:fnt1;font-size:10.02px; }
#page1 .ps20 {
letter-spacing:0.00264px;word-spacing:-1.9344;font-family:fnt0;font-size:24px; }
#page1 .ps22 {
letter-spacing:0.0048px;word-spacing:0.0192;font-family:fnt1;font-size:12px; }
#page1 .ps25 {
letter-spacing:0.007014px;word-spacing:-0.032064;font-family:fnt1;font-size:10.02px; }
#page1 .ps24 {
letter-spacing:0px;word-spacing:0;font-family:fnt1;font-size:10.02px; }
#page1 .ps23 {
letter-spacing:0px;word-spacing:0;font-family:fnt1;font-size:12px; }
#page1 .ps211 {
letter-spacing:0px;word-spacing:0;font-family:fnt2;font-size:12.947px; }
]]>
</style>
<g transform="matrix(1 0 0 -1 -0 540)">
<g id="q1" class="">
<text transform="matrix(1 0 0 -1 86.34 447.12)"><tspan x="0,17.763,24.269,31.28,43.043,54.541" y="-0" class="ps00 ps20">Alice’</tspan></text>
<text transform="matrix(1 0 0 -1 145.98097 447.12)"><tspan x="0,9.0026,15.063,32.826,46.58" y="-0" class="ps00 ps20">s Adv</tspan></text>
<text transform="matrix(1 0 0 -1 204.14107 447.12)"><tspan x="0" y="-0" class="ps00 ps20">e</tspan></text>
<text transform="matrix(1 0 0 -1 215.66122 447.12)"><tspan x="0,13.755,22.013,35.768" y="-0" class="ps00 ps20">ntur</tspan></text>
<text transform="matrix(1 0 0 -1 260.42909 447.12)"><tspan xml:space="preserve" x="0,11.499,20.501" y="-0" class="ps00 ps20">es </tspan></text>
<text transform="matrix(1 0 0 -1 288.91045 447.12)"><tspan xml:space="preserve" x="0,7.0106,20.765" y="-0" class="ps00 ps20">in </tspan></text>
<text transform="matrix(1 0 0 -1 133.62003 420.6001)"><tspan x="0" y="-0" class="ps00 ps21">W</tspan></text>
<text transform="matrix(1 0 0 -1 154.6199 420.6001)"><tspan xml:space="preserve" x="0,13.745,27.489,41.234,52.722,62.219,68.715,80.204,93.948,107.69" y="-0" class="ps00 ps21">onderland </tspan></text>
<text transform="matrix(1 0 0 -1 173.03999 390.30002)"><tspan x="0,6.6288,11.89,20.774,23.899,27.528,30.888,39.641,44.398,48.398,52.399" y="-0" class="ps00 ps22">Lewis Carro</tspan></text>
<text transform="matrix(1 0 0 -1 231.61879 390.30002)"><tspan xml:space="preserve" x="0,2.8848,5.7696" y="-0" class="ps00 ps22">ll </tspan></text>
<text transform="matrix(1 0 0 -1 57.60005 374.09995)"><tspan xml:space="preserve" x="0" y="-0" class="ps00 ps23"> </tspan></text>
<text transform="matrix(1 0 0 -1 57.60005 354.53989)"><tspan xml:space="preserve" x="0" y="-0" class="ps00 ps23"> </tspan></text>
<text transform="matrix(1 0 0 -1 57.60005 334.97983)"><tspan xml:space="preserve" x="0" y="-0" class="ps00 ps23"> </tspan></text>
<text transform="matrix(1 0 0 -1 57.60005 315.41977)"><tspan xml:space="preserve" x="0" y="-0" class="ps00 ps23"> </tspan></text>
<text transform="matrix(1 0 0 -1 57.60005 295.85971)"><tspan xml:space="preserve" x="0" y="-0" class="ps00 ps23"> </tspan></text>
<text transform="matrix(1 0 0 -1 57.60005 276.35971)"><tspan xml:space="preserve" x="0" y="-0" class="ps00 ps23"> </tspan></text>
<text transform="matrix(1 0 0 -1 57.60005 256.79965)"><tspan xml:space="preserve" x="0" y="-0" class="ps00 ps23"> </tspan></text>
<text transform="matrix(1 0 0 -1 57.60005 237.23959)"><tspan xml:space="preserve" x="0" y="-0" class="ps00 ps23"> </tspan></text>
<text transform="matrix(1 0 0 -1 57.60005 217.67953)"><tspan xml:space="preserve" x="0" y="-0" class="ps00 ps23"> </tspan></text>
<text transform="matrix(1 0 0 -1 57.60005 198.11948)"><tspan xml:space="preserve" x="0" y="-0" class="ps00 ps23"> </tspan></text>
<text transform="matrix(1 0 0 -1 57.60005 178.61948)"><tspan xml:space="preserve" x="0" y="-0" class="ps00 ps23"> </tspan></text>
<text transform="matrix(1 0 0 -1 57.60005 159.05942)"><tspan xml:space="preserve" x="0" y="-0" class="ps00 ps23"> </tspan></text>
<text transform="matrix(1 0 0 -1 57.60005 139.49936)"><tspan xml:space="preserve" x="0" y="-0" class="ps00 ps23"> </tspan></text>
<text transform="matrix(1 0 0 -1 57.60001 121.68001)"><tspan xml:space="preserve" x="0" y="-0" class="ps00 ps24"> </tspan></text>
<text transform="matrix(1 0 0 -1 57.60001 104.39957)"><tspan x="0,6.7906,12.018" y="-0" class="ps00 ps25">Thi</tspan></text>
<text transform="matrix(1 0 0 -1 72.19821 104.39957)"><tspan x="0" y="-0" class="ps00 ps25">s</tspan></text>
<text transform="matrix(1 0 0 -1 75.19821 104.39957)"><tspan xml:space="preserve" x="0,2.7605,7.1563,13.526,18.753,23.981,28.998,31.758,39.18" y="-0" class="ps00 ps25"> eBook wa</tspan></text>
<text transform="matrix(1 0 0 -1 118.27831 104.39957)"><tspan x="0" y="-0" class="ps00 ps25">s</tspan></text>
<text transform="matrix(1 0 0 -1 121.27832 104.39957)"><tspan xml:space="preserve" x="0,2.7605,7.7775,12.173" y="-0" class="ps00 ps25"> des</tspan></text>
<text transform="matrix(1 0 0 -1 136.45164 104.39957)"><tspan x="0" y="-0" class="ps00 ps25">i</tspan></text>
<text transform="matrix(1 0 0 -1 139.03181 104.39957)"><tspan x="0,4.7064,9.9338,14.33,19.347,22.107,26.082,31.309,36.327,39.087,44.104" y="-0" class="ps00 ps25">gned and pu</tspan></text>
<text transform="matrix(1 0 0 -1 188.29628 104.39957)"><tspan x="0,5.017,7.4288" y="-0" class="ps00 ps25">bli</tspan></text>
<text transform="matrix(1 0 0 -1 198.30533 104.39957)"><tspan x="0" y="-0" class="ps00 ps25">s</tspan></text>
<text transform="matrix(1 0 0 -1 201.30533 104.39957)"><tspan x="0,5.2274,9.6232,14.64,17.401,22.418,27.124,29.885,35.533" y="-0" class="ps00 ps25">hed by Pl</tspan></text>
<text transform="matrix(1 0 0 -1 239.17802 104.39957)"><tspan x="0,3.9749,9.2024,13.598,16.531,19.292,24.94,32.562,37.89" y="-0" class="ps00 ps25">anet PDF.</tspan></text>
<text transform="matrix(1 0 0 -1 279.64795 104.39957)"><tspan xml:space="preserve" x="0,2.7605,8.0881" y="-0" class="ps00 ps25"> Fo</tspan></text>
<text transform="matrix(1 0 0 -1 292.89642 104.39957)"><tspan xml:space="preserve" x="0,3.3437,6.1042,14.047,19.274,22.618,27.014,29.774,32.497,35.841,40.236,44.632" y="-0" class="ps00 ps25">r more free </tspan></text>
<text transform="matrix(1 0 0 -1 57.60001 93.12003)"><tspan xml:space="preserve" x="0,4.3848,10.743,15.96,21.176,26.182,29.204,31.964,36.759,39.361,42.383,44.984,47.906,50.665,55.882,61.098,64.431,67.19,77.206,81.591,86.597,89.356,92.378,94.98,97.901,102.29,105.05,109.01,111.93" y="-0" class="ps00 ps26">eBooks visit our Web site at </tspan></text>
<text transform="matrix(1 0 0 -1 172.31999 93.12)"><tspan x="0,5.2184,8.1423,11.066,16.074,18.677,23.264,27.852,35.264,42.677,50.09" y="-0" class="ps01 ps27">http://www.</tspan></text>
<text transform="matrix(1 0 0 -1 224.93021 93.12)"><tspan x="0,5.008,7.4108" y="-0" class="ps01 ps27">pla</tspan></text>
<text transform="matrix(1 0 0 -1 236.24083 93.12)"><tspan x="0" y="-0" class="ps01 ps27">n</tspan></text>
<text transform="matrix(1 0 0 -1 241.46127 93.12)"><tspan x="0,4.3868,7.3106,12.319,17.327,20.04,22.643,26.92,32.138,40.072" y="-0" class="ps01 ps27">etpdf.com/</tspan></text>
<path d="M172.32 91.86 L286.08 91.86 L286.08 92.34 L172.32 92.34 Z" class="ps02 ps27"/>
<text transform="matrix(1 0 0 -1 286.07999 93.12)"><tspan xml:space="preserve" x="0,2.5973,5.417,12.193,17.405" y="-0" class="ps03 ps28">. To </tspan></text>
<text transform="matrix(1 0 0 -1 306.24449 93.12)"><tspan xml:space="preserve" x="0,5.2125,9.5933,13.553,16.882" y="-0" class="ps03 ps28">hear </tspan></text>
<text transform="matrix(1 0 0 -1 57.59985 81.84045)"><tspan x="0,3.96" y="-0" class="ps03 ps29">ab</tspan></text>
<text transform="matrix(1 0 0 -1 66.59996 81.84045)"><tspan x="0,5.2125,10.425,13.343,16.104,21.316,26.529,29.857,32.618,35.015,38.975,41.893,46.274,49.292,52.21,54.971,58.299,62.68,65.077,69.458,73.418,76.436,80.817,83.835,86.596,89.614,94.826" y="-0" class="ps03 ps29">out our latest releases sub</tspan></text>
<text transform="matrix(1 0 0 -1 166.46535 81.84045)"><tspan x="0" y="-0" class="ps03 ps29">s</tspan></text>
<text transform="matrix(1 0 0 -1 169.46539 81.84045)"><tspan x="0,4.2706,7.5994" y="-0" class="ps03 ps29">cri</tspan></text>
<text transform="matrix(1 0 0 -1 179.70503 81.84045)"><tspan x="0" y="-0" class="ps03 ps29">b</tspan></text>
<text transform="matrix(1 0 0 -1 184.74516 81.84045)"><tspan xml:space="preserve" x="0,4.3808,7.1416,10.059,15.272,18.033,20.951,26.163,30.544" y="-0" class="ps03 ps29">e to the </tspan></text>
<text transform="matrix(1 0 0 -1 218.03999 81.84)"><tspan x="0,5.6402,8.0439,12.011,17.23,21.618,24.542,27.302,32.942,40.556,45.876,48.635,56.78" y="-0" class="ps02 ps210">Planet PDF Ne</tspan></text>
<text transform="matrix(1 0 0 -1 279.14005 81.84)"><tspan x="0,7.4137,10.439,12.842,17.23,20.155,23.079,27.467" y="-0" class="ps02 ps210">wsletter</tspan></text>
<path d="M218.04 80.58 L309.9 80.58 L309.9 81.06 L218.04 81.06 Z" class="ps02 ps210"/>
<text transform="matrix(1 0 0 -1 309.89999 81.84)"><tspan x="0" y="-0" class="ps03 ps24">.</tspan></text>
<text transform="matrix(1 0 0 -1 198 44.88)"><tspan xml:space="preserve" x="0" y="-0" class="ps03 ps23"> </tspan></text>
<g id="q2" class="ps03 ps23">
<g id="frm3" transform="matrix(1 0 0 1 52.2002 36)">
<path d="M18.359 150.26 C18.359 160.63 39.812 169.13 67.153 170.01 C65.669 170.05 64.177 170.08 62.668 170.08 C31.099 170.08 5.5029 159.43 5.5029 146.3 C5.5029 133.15 31.099 122.5 62.668 122.5 C89.229 122.5 111.56 130.05 117.97 140.26 C108.7 134.39 91.504 130.43 71.816 130.43 C42.288 130.43 18.359 139.31 18.359 150.26 L18.359 150.26 Z" class="ps04"/>
<path d="M221.78 163.76 C221.57 163.14 221.17 162.54 220.57 161.96 C220.29 161.69 219.89 161.44 219.36 161.22 C218.83 161 218.33 160.84 217.86 160.76 C217.32 160.67 216.67 160.62 215.93 160.6 C215.2 160.58 214.42 160.57 213.58 160.57 L212.97 160.57 L212.97 170.93 L214.22 170.93 C215.52 170.93 216.55 170.91 217.31 170.85 C218.07 170.8 218.86 170.59 219.7 170.24 C220.36 169.97 220.92 169.49 221.39 168.79 C221.86 168.08 222.1 167.24 222.1 166.27 C222.1 165.21 221.99 164.38 221.78 163.76 L221.78 163.76M230.13 171.68 C229.41 173.13 228.39 174.3 227.07 175.17 C225.87 175.96 224.53 176.54 223.06 176.91 C221.59 177.27 219.84 177.46 217.8 177.46 L204.15 177.46 L204.15 142.69 L212.97 142.69 L212.97 154.05 L217.6 154.05 C218.86 154.05 220.01 154.15 221.02 154.36 C222.05 154.56 222.99 154.84 223.84 155.2 C224.71 155.55 225.5 155.99 226.22 156.5 C226.95 157.02 227.59 157.57 228.19 158.18 C229.18 159.17 229.92 160.38 230.44 161.85 C230.96 163.32 231.22 164.85 231.22 166.48 C231.22 168.49 230.86 170.22 230.13 171.68 L230.13 171.68 Z" class="ps05"/>
<path d="M47.942 163.76 C47.727 163.14 47.324 162.54 46.729 161.96 C46.448 161.69 46.047 161.44 45.52 161.22 C44.993 161 44.492 160.84 44.019 160.76 C43.474 160.67 42.832 160.62 42.087 160.6 C41.362 160.58 40.571 160.57 39.741 160.57 L39.133 160.57 L39.133 170.93 L40.374 170.93 C41.68 170.93 42.708 170.91 43.472 170.85 C44.226 170.8 45.022 170.59 45.859 170.24 C46.514 169.97 47.083 169.49 47.551 168.79 C48.025 168.08 48.259 167.24 48.259 166.27 C48.259 165.21 48.149 164.38 47.942 163.76 L47.942 163.76M56.292 171.68 C55.566 173.13 54.548 174.3 53.23 175.17 C52.026 175.96 50.686 176.54 49.216 176.91 C47.747 177.27 45.994 177.46 43.96 177.46 L30.31 177.46 L30.31 142.69 L39.133 142.69 L39.133 154.05 L43.76 154.05 C45.022 154.05 46.169 154.15 47.178 154.36 C48.201 154.56 49.138 154.84 50.005 155.2 C50.869 155.55 51.667 155.99 52.375 156.5 C53.098 157.02 53.755 157.57 54.351 158.18 C55.332 159.17 56.082 160.38 56.597 161.85 C57.119 163.32 57.38 164.85 57.38 166.48 C57.38 168.49 57.019 170.22 56.292 171.68 L56.292 171.68 Z" class="ps05"/>
<path d="M256.31 154.34 C255.55 152.76 254.45 151.51 253 150.62 C251.77 149.85 250.48 149.43 249.11 149.37 C247.75 149.31 246.08 149.27 244.1 149.27 L243.93 149.27 L243.93 170.93 L244.1 170.93 C245.92 170.93 247.49 170.9 248.81 170.84 C250.12 170.77 251.37 170.42 252.58 169.77 C254.24 168.86 255.47 167.59 256.25 165.97 C257.04 164.36 257.44 162.4 257.44 160.13 C257.44 157.85 257.06 155.92 256.31 154.34 L256.31 154.34M264.55 168.8 C263.21 171.29 261.39 173.26 259.07 174.72 C257.17 175.92 255.15 176.69 252.99 176.99 C250.84 177.3 248.51 177.46 246.03 177.46 L235.11 177.46 L235.11 142.69 L246.13 142.69 C248.56 142.69 250.85 142.86 253 143.2 C255.15 143.54 257.15 144.28 258.98 145.45 C261.17 146.82 262.98 148.79 264.41 151.34 C265.85 153.9 266.56 156.81 266.56 160.04 C266.56 163.4 265.9 166.32 264.55 168.8 L264.55 168.8 Z" class="ps05"/>
<path d="M294.88 170.78 L280.1 170.78 L280.1 164.26 L293.72 164.26 L293.72 157.59 L280.1 157.59 L280.1 142.69 L271.29 142.69 L271.29 177.46 L294.88 177.46 L294.88 170.78 L294.88 170.78 Z" class="ps05"/>
<path d="M88.064 148.21 C87.307 147.89 86.57 147.73 85.85 147.73 C84.543 147.73 83.56 147.95 82.893 148.41 C82.222 148.86 81.897 149.7 81.897 150.93 C81.897 151.75 82.092 152.42 82.49 152.92 C82.893 153.43 83.457 153.79 84.172 154.04 C85.005 154.34 85.859 154.54 86.716 154.63 C87.583 154.73 88.711 154.85 90.107 155 L90.107 149.58 C89.5 148.99 88.816 148.54 88.064 148.21 L88.064 148.21M90.107 142.69 L98.379 142.69 L98.379 160.56 C98.379 163.63 97.336 165.93 95.244 167.43 C93.154 168.94 89.827 169.69 85.247 169.69 C83.391 169.69 81.543 169.53 79.717 169.21 C77.891 168.89 76.56 168.62 75.745 168.39 L75.745 162.07 L76.448 162.07 C77.69 162.61 78.962 163.05 80.271 163.39 C81.58 163.74 82.717 163.92 83.694 163.92 C85.847 163.92 87.463 163.63 88.542 163.08 C89.619 162.53 90.156 161.52 90.156 160.07 L90.156 159.93 C87.769 159.77 85.537 159.56 83.457 159.27 C81.377 158.99 79.595 158.5 78.098 157.78 C76.624 157.09 75.491 156.13 74.705 154.93 C73.916 153.74 73.523 152.16 73.523 150.21 C73.523 147.85 74.299 145.89 75.85 144.33 C77.395 142.78 79.343 142 81.687 142 C82.944 142 83.923 142.09 84.622 142.28 C85.322 142.46 86.045 142.74 86.785 143.09 C87.534 143.47 88.14 143.83 88.589 144.21 C89.038 144.59 89.539 145.01 90.107 145.48 L90.107 142.69 L90.107 142.69 Z" class="ps05"/>
<path d="M141.79 159.18 C141.89 160.81 142.39 162.09 143.3 163.04 C144.2 163.99 145.46 164.46 147.07 164.46 C148.65 164.46 149.81 164.01 150.58 163.11 C151.35 162.21 151.76 160.9 151.8 159.18 L141.79 159.18 L141.79 159.18M152.57 142.19 C153.53 142.33 154.45 142.51 155.35 142.75 C156.33 142.98 157.1 143.21 157.66 143.43 C158.22 143.66 158.84 143.91 159.52 144.17 L159.52 150.9 L158.63 150.9 C158.27 150.65 157.81 150.34 157.23 149.99 C156.65 149.65 156.02 149.32 155.34 149.03 C154.57 148.68 153.72 148.4 152.79 148.19 C151.85 147.97 150.91 147.89 149.94 147.89 C148.82 147.89 147.79 147.97 146.84 148.19 C145.89 148.39 145.07 148.76 144.35 149.24 C143.63 149.72 143.04 150.37 142.6 151.19 C142.16 152.01 141.9 153.04 141.82 154.25 L159.97 154.25 L159.97 157.19 C159.97 161.2 158.94 164.29 156.9 166.46 C154.84 168.61 151.79 169.69 147.73 169.69 C143.25 169.69 139.77 168.41 137.29 165.87 C134.8 163.32 133.55 159.91 133.55 155.64 C133.55 151.27 134.89 147.9 137.56 145.54 C140.23 143.17 144.07 142 149.08 142 C150.46 142 151.62 142.07 152.57 142.19 L152.57 142.19 Z" class="ps05"/>
<path d="M175.83 142.19 C172.47 142.19 170.02 142.88 168.48 144.24 C166.94 145.61 166.17 147.84 166.17 150.95 L166.17 163.17 L163 163.17 L163 168.89 L166.17 168.89 L166.17 176.36 L174.44 176.36 L174.44 168.89 L182.41 168.89 L182.41 163.17 L174.44 163.17 L174.44 153.91 C174.44 153.01 174.46 152.2 174.46 151.52 C174.48 150.85 174.61 150.24 174.84 149.69 C175.06 149.15 175.46 148.72 176.01 148.39 C176.57 148.08 177.39 147.93 178.45 147.93 C178.9 147.93 179.49 148.01 180.2 148.2 C180.92 148.39 181.42 148.57 181.7 148.72 L182.41 148.72 L182.41 142.95 C181.51 142.72 180.56 142.53 179.55 142.4 C178.54 142.27 177.31 142.19 175.83 142.19 L175.83 142.19 Z" class="ps05"/>
<path d="M129.42 142.43 L121.11 142.43 L121.11 155.42 C121.11 156.48 121.07 157.52 120.98 158.58 C120.89 159.62 120.73 160.4 120.48 160.89 C120.2 161.48 119.78 161.91 119.24 162.16 C118.69 162.42 117.97 162.55 117.06 162.55 C116.36 162.55 115.67 162.43 114.96 162.17 C114.26 161.93 113.5 161.53 112.71 160.99 L112.71 142.43 L104.4 142.43 L104.4 168.63 L112.71 168.63 L112.71 165.74 C114.07 166.87 115.4 167.75 116.7 168.39 C117.99 169.03 119.42 169.35 120.99 169.35 C123.72 169.35 125.81 168.51 127.25 166.82 C128.7 165.13 129.42 162.69 129.42 159.49 L129.42 142.43 L129.42 142.43 Z" class="ps05"/>
<path d="M68.745 142.69 L60.476 142.69 L60.476 179 L68.745 179 L68.745 142.69 L68.745 142.69 Z" class="ps05"/>
</g>
</g>
</g>
<g id="xfrm4" transform="matrix(396 0 0 540 0 0)">
<g id="frm5" transform="matrix(0.01 0 0 0.01 0 0)">
<text transform="matrix(1 0 0 -1 0 43.5267)"><tspan x="0,9.3475,18.695,28.043,31.642,38.84,46.038,49.638,53.237,57.548,64.746,71.945,75.544,82.017,89.216" y="-0" class="ps06 ps10 ps211">www.pdftron.com</tspan></text>
</g>
</g>
<a xlink:href="http://www.planetpdf.com/"><rect x="172.3" y="90.79" width="113.8" height="11.31" opacity="0" fill="red" stroke="none"/></a>
<a xlink:href="http://www.planetpdf.com/mainpage.asp?webpageid=409&eb"><rect x="218" y="79.51" width="91.9" height="11.31" opacity="0" fill="red" stroke="none"/></a>
<a xlink:href="http://www.planetpdf.com/?eb"><rect x="56.2" y="157.4" width="291.6" height="57.6" opacity="0" fill="red" stroke="none"/></a>
</g>
</svg>
</div>
<div id="page2" class="page even">
<canvas class="imageView"></canvas>
<!-- Generator: PDFTron PDF2SVG Converter (DEMO VERSION) -->
<svg id="svgRoot" version="1.0" baseProfile="Full" viewBox="0 0 396 540" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:cs="http://www.pdftron.com/pdf2svg" xml:space="preserve" buffered-rendering="dynamic">
<defs>
<font horiz-adv-x="0"><font-face
font-family="fnt1"
units-per-em="1000"
ascent="672"
descent="-227"
/>
<missing-glyph horiz-adv-x="0"/>
<glyph unicode=" " horiz-adv-x="333" d="M0 0 Z"/>
<glyph unicode="-" horiz-adv-x="417" d="M35,153L381,153L381,251L35,251 Z"/>
<glyph unicode=":" horiz-adv-x="313" d="M156,419C113,419,76,391,76,352C76,315,108,284,156,284C204,284,237,315,237,352C237,390,202,419,156,419 ZM156,124C113,124,76,96,76,57C76,20,108,-11,156,-11C204,-11,237,20,237,57C237,95,202,124,156,124 Z"/>
<glyph unicode="A" horiz-adv-x="740" d="M443,231L490,115C510,66,501,39,440,39L405,39L405,-0L730,-0L730,39C678,43,656,63,630,129L430,637L282,637L293,608L122,131C97,61,72,39,24,39L9,39L9,-0L274,-0L274,39L261,39C165,39,164,63,182,114L224,231 ZM420,286L244,286L328,520 Z"/>
<glyph unicode="C" horiz-adv-x="740" d="M662,179C621,88,545,35,453,35C310,35,200,159,200,320C200,478,299,586,442,586C538,586,609,530,641,431L680,431L671,606L646,606C640,599,634,596,626,596C606,596,538,637,434,637C220,637,51,493,51,309C51,128,210,-14,415,-14C490,-14,540,4,587,4C610,4,630,2,646,-3C670,49,694,126,702,179 Z"/>
<glyph unicode="D" horiz-adv-x="823" d="M21,583C98,583,114,566,114,495L114,109C114,52,87,39,21,39L21,-0L339,-0C544,-0,627,51,678,102C731,155,771,235,771,326C771,411,740,483,687,536C613,610,519,635,319,635C270,635,232,633,182,630C137,627,75,625,21,622 ZM252,583C281,587,303,588,330,588C432,588,499,565,548,516C593,471,622,396,622,313C622,194,564,40,339,40C262,40,252,49,252,116 Z"/>
<glyph unicode="E" horiz-adv-x="646" d="M543,477L581,477L571,622L20,622L20,583L30,583C99,583,117,564,117,510L117,111C117,62,97,39,39,39L-2,39L-2,-0L600,-0L612,157L574,157C555,73,524,55,459,55L292,55C263,55,255,64,255,107L255,287L402,287C479,287,492,269,492,215L532,215L532,414L492,414C492,361,472,342,417,342L255,342L255,567L474,567C520,567,533,545,543,477 Z"/>
<glyph unicode="H" horiz-adv-x="833" d="M492,39L492,-0L812,-0L812,39L796,39C738,39,719,62,719,114L719,510C719,564,743,583,794,583L812,583L812,622L492,622L492,583L501,583C559,583,581,563,581,507L581,353L251,353L251,510C251,566,277,583,329,583L343,583L343,622L22,622L22,583L38,583C91,583,113,560,113,510L113,112C113,62,90,39,39,39L22,39L22,-0L343,-0L343,39L328,39C272,39,251,61,251,114L251,294L581,294L581,116C581,62,559,39,506,39 Z"/>
<glyph unicode="I" horiz-adv-x="365" d="M23,583L36,583C92,583,110,560,110,508L110,108C110,64,90,39,37,39L23,39L23,-0L341,-0L341,39L326,39C265,39,248,63,248,112L248,508C248,560,270,583,324,583L341,583L341,622L23,622 Z"/>
<glyph unicode="P" horiz-adv-x="646" d="M252,262C294,255,330,252,366,252C520,252,618,326,618,442C618,545,536,638,343,638C315,638,250,636,184,633C115,630,61,624,22,622L22,583L44,583C99,583,114,571,114,525L114,96C114,51,99,39,44,39L29,39L29,-0L369,-0L369,39L339,39C274,39,252,56,252,114 ZM252,587C276,592,299,594,323,594C415,594,469,540,469,448C469,350,417,296,324,296C295,296,273,298,252,303 Z"/>
<glyph unicode="R" horiz-adv-x="771" d="M251,264L330,264C394,209,452,104,502,54C549,7,600,-11,724,-11C754,-11,764,-11,786,-10L786,29C723,35,695,47,654,88C583,159,548,238,482,293C575,318,630,378,630,454C630,497,615,535,582,568C532,618,452,637,305,637C269,637,197,634,141,630C100,627,62,625,12,622L12,583L33,583C100,583,113,555,113,507L113,112C113,54,87,39,26,39L10,39L10,-0L360,-0L360,39L330,39C273,39,251,61,251,112 ZM251,594L303,594C400,594,481,556,481,450C481,343,411,306,290,306L251,306 Z"/>
<glyph unicode="T" horiz-adv-x="729" d="M433,570L551,570C628,570,640,557,659,452L700,452L682,639L650,639C634,624,629,622,602,622L126,622C112,622,104,623,97,625C91,627,86,632,78,639L46,639L28,452L69,452C88,558,100,570,177,570L295,570L295,114C295,61,273,39,218,39L184,39L184,-0L544,-0L544,39L520,39C449,39,433,62,433,114 Z"/>
<glyph unicode="a" horiz-adv-x="479" d="M446,74C432,64,427,62,419,62C404,62,397,73,397,108L397,297C397,391,283,419,234,419C185,419,103,393,69,359C43,333,39,304,48,263L160,302C152,354,177,379,212,379C248,379,275,351,275,312L275,275C197,211,116,221,69,174C52,157,38,126,38,94C38,30,83,-11,154,-11C210,-11,237,13,277,52C283,14,310,-10,347,-10C380,-10,430,16,461,50 ZM275,87C246,59,225,45,208,45C178,45,158,72,158,114C158,195,227,188,275,230 Z"/>
<glyph unicode="b" horiz-adv-x="573" d="M78,21C132,7,214,-11,277,-11C420,-11,528,91,528,227C528,334,457,419,367,419C314,419,258,389,200,335L200,669L168,669L16,620L16,596L42,585C74,572,78,566,78,523 ZM200,288C223,319,258,340,288,340C356,340,403,276,403,183C403,88,361,32,290,32C227,32,200,73,200,168 Z"/>
<glyph unicode="e" horiz-adv-x="479" d="M416,135C367,84,331,63,294,63C235,63,179,126,171,209L448,209L448,238C413,256,441,312,382,371C351,402,309,419,256,419C131,419,42,326,42,194C42,73,116,-11,225,-11C302,-11,383,37,439,116 ZM168,248C161,319,198,372,239,372C282,372,309,325,310,248 Z"/>
<glyph unicode="h" horiz-adv-x="563" d="M200,306C235,329,275,344,302,344C342,344,367,310,367,256L367,105C367,48,358,32,316,32L308,32L308,-0L544,-0L544,32L534,32C496,32,489,51,489,110L489,242C489,360,453,419,380,419C328,419,256,382,200,343L200,669L176,669L17,620L17,597L46,587C73,578,78,571,78,542L78,105C78,52,74,32,23,32L9,32L9,-0L262,-0L262,32L252,32C217,32,200,38,200,101 Z"/>
<glyph unicode="i" horiz-adv-x="292" d="M265,32C221,32,204,54,204,95L204,430L186,430L15,373L15,349L48,337C76,327,82,320,82,294L82,102C82,50,67,32,26,32L15,32L15,-0L265,-0 ZM139,657C97,657,59,625,59,589C59,550,93,521,139,521C180,521,218,549,218,589C218,627,185,657,139,657 Z"/>
<glyph unicode="l" horiz-adv-x="271" d="M195,669L177,669L4,619L4,590L47,574C70,566,73,558,73,514L73,102C73,51,59,32,17,32L7,32L7,-0L255,-0L255,32C209,32,195,55,195,102 Z"/>
<glyph unicode="n" horiz-adv-x="573" d="M495,247C495,367,463,419,390,419C342,419,278,389,205,341L205,430L186,430L15,372L15,348L36,342C71,332,83,319,83,297L83,102C83,50,68,32,26,32L20,32L20,-0L273,-0L273,32L264,32C224,32,205,51,205,96L205,299C247,328,280,343,311,343C351,343,373,312,373,232L373,145C373,63,357,35,316,32L316,-0L552,-0L552,32C513,32,495,42,495,91 Z"/>
<glyph unicode="o" horiz-adv-x="573" d="M43,198C43,76,141,-11,279,-11C422,-11,530,84,530,211C530,332,431,419,294,419C151,419,43,324,43,198 ZM175,257C175,332,209,376,268,376C344,376,398,284,398,156C398,77,365,32,307,32C211,32,175,173,175,257 Z"/>
<glyph unicode="t" horiz-adv-x="344" d="M199,353L315,353L330,408L199,408L199,533L170,533C152,477,84,404,24,379L24,353L77,353L77,113C77,27,122,-11,190,-11C245,-11,305,26,335,80L321,108C292,73,269,58,245,58C216,58,199,74,199,111 Z"/>
<glyph unicode="w" horiz-adv-x="781" d="M220,-7L273,-7L393,254L505,-7L560,-7L686,291C711,350,726,371,776,376L776,408L592,408L592,376C642,374,660,348,642,303L572,132L496,316C479,358,493,376,533,376L533,408L306,408L306,376C335,376,352,359,369,314L289,132L209,323C197,351,208,374,243,376L243,408L4,408L4,376C41,376,65,354,82,315 Z"/>
</font>
<font horiz-adv-x="0"><font-face
font-family="fnt2"
units-per-em="1000"
ascent="673"
descent="-233"
/>
<missing-glyph horiz-adv-x="0"/>
<glyph unicode=" " horiz-adv-x="278" d="M0 0 Z"/>
<glyph unicode="!" horiz-adv-x="260" d="M140,178L177,626C179,645,176,650,153,650L108,650C86,650,82,646,83,628L120,178 ZM79,35C79,7,101,-12,130,-12C158,-12,181,5,181,35C181,64,158,82,130,82C101,82,79,63,79,35 Z"/>
<glyph unicode="(" horiz-adv-x="302" d="M140,222C140,395,190,502,291,635L263,660C153,525,85,398,85,222C85,46,153,-81,263,-216L291,-191C190,-58,140,49,140,222 Z"/>
<glyph unicode=")" horiz-adv-x="302" d="M162,222C162,49,112,-58,11,-191L39,-216C149,-81,217,46,217,222C217,398,149,525,39,660L11,635C112,502,162,395,162,222 Z"/>
<glyph unicode="," horiz-adv-x="260" d="M81,-148C147,-123,192,-63,192,-1C192,47,162,82,122,82C92,82,68,60,68,33C68,7,87,-12,113,-12C124,-12,128,-9,137,-9C147,-9,151,-18,151,-30C151,-66,124,-101,74,-130 Z"/>
<glyph unicode="-" horiz-adv-x="396" d="M35,221L35,171L361,171L361,221 Z"/>
<glyph unicode="." horiz-adv-x="260" d="M130,82C101,82,79,63,79,35C79,7,101,-12,130,-12C158,-12,181,5,181,35C181,64,158,82,130,82 Z"/>
<glyph unicode="0" horiz-adv-x="490" d="M453,311C453,485,362,637,245,637C135,637,37,499,37,311C37,115,141,-14,245,-14C358,-14,453,126,453,311 ZM378,311C378,125,353,5,245,5C144,5,112,116,112,311C112,493,141,618,245,618C355,618,378,488,378,311 Z"/>
<glyph unicode="1" horiz-adv-x="490" d="M254,637C230,603,147,528,89,489L97,475C134,492,190,529,222,557L222,58C222,28,216,19,184,19L130,19L130,-0L382,-0L382,19L326,19C295,19,289,27,289,57L289,637 Z"/>
<glyph unicode="2" horiz-adv-x="490" d="M30,-0L430,-0L449,140L433,140C419,77,411,62,357,62L94,62C239,211,329,272,357,300C405,348,429,401,429,460C429,561,350,637,245,637C137,637,55,559,43,445L59,445C82,526,145,580,216,580C291,580,348,521,348,446C348,288,148,168,30,16 Z"/>
<glyph unicode="3" horiz-adv-x="490" d="M184,306C207,324,230,333,254,333C316,333,363,272,363,194C363,96,297,13,219,13C147,13,110,91,65,91C49,91,34,75,34,57C34,19,104,-14,185,-14C319,-14,438,96,438,220C438,312,369,392,277,383L275,385C341,424,378,475,378,526C378,589,322,637,248,637C169,637,97,582,63,495L81,488C109,547,163,586,214,586C268,586,311,545,311,494C311,439,258,389,175,320 Z"/>
<glyph unicode=":" horiz-adv-x="260" d="M130,406C101,406,79,387,79,359C79,331,101,312,130,312C158,312,181,329,181,359C181,388,158,406,130,406 ZM130,82C101,82,79,63,79,35C79,7,101,-12,130,-12C158,-12,181,5,181,35C181,64,158,82,130,82 Z"/>
<glyph unicode=";" horiz-adv-x="260" d="M81,-148C147,-123,192,-63,192,-1C192,47,162,82,122,82C92,82,68,60,68,33C68,7,87,-12,113,-12C124,-12,128,-9,137,-9C147,-9,151,-18,151,-30C151,-66,124,-101,74,-130 ZM133,406C104,406,82,387,82,359C82,331,104,312,133,312C161,312,184,329,184,359C184,388,161,406,133,406 Z"/>
<glyph unicode="?" horiz-adv-x="354" d="M138,633C74,633,51,612,51,586C51,558,80,550,108,550C126,550,153,557,185,557C244,557,287,527,287,468C287,335,98,388,98,271C98,237,120,197,147,168L169,168C146,191,131,215,131,240C131,310,311,267,311,456C311,564,234,633,138,633 ZM155,82C126,82,104,63,104,35C104,7,126,-12,155,-12C183,-12,206,5,206,35C206,64,183,82,155,82 Z"/>
<glyph unicode="A" horiz-adv-x="677" d="M423,276L490,94C494,84,501,69,501,53C501,25,480,19,423,19L397,19L397,-0L672,-0L672,19C622,19,601,29,581,82L372,637L285,637L294,615L112,118C80,31,69,20,4,19L4,-0L235,-0L235,19L219,19C164,19,138,29,138,56C138,70,151,100,158,119L216,276 ZM406,320L233,320L318,553 Z"/>
<glyph unicode="I" horiz-adv-x="333" d="M288,19C219,19,203,39,203,98L203,522C203,589,225,603,288,603L288,622L45,622L45,603C101,600,120,585,120,531L120,105C120,38,107,22,45,19L45,-0L288,-0 Z"/>
<glyph unicode="O" horiz-adv-x="823" d="M770,328C770,508,608,637,419,637C206,637,53,496,53,297C53,110,218,-16,414,-16C608,-16,770,126,770,328 ZM676,295C676,153,598,9,435,9C274,9,147,141,147,328C147,448,217,612,393,612C558,612,676,481,676,295 Z"/>
<glyph unicode="R" horiz-adv-x="802" d="M199,263C215,262,228,261,250,261C277,261,293,262,318,263C342,247,377,218,421,174L487,108C576,19,621,-19,796,-11L796,7C719,12,658,49,599,108L520,187C473,234,443,262,406,291C488,315,539,378,539,453C539,555,456,631,271,631C206,631,186,630,145,628C104,626,43,622,19,622L19,603L41,603C99,603,116,585,116,523L116,102C116,35,95,19,36,19L19,19L19,-0L302,-0L302,19L279,19C223,19,199,34,199,94 ZM199,610C217,612,230,612,249,612C403,612,445,540,445,447C445,327,372,280,261,280C238,280,223,279,199,282 Z"/>
<glyph unicode="S" horiz-adv-x="490" d="M44,152L65,-0L82,-0C86,6,93,11,102,11C116,11,186,-16,241,-16C358,-16,445,57,445,155C445,339,124,377,124,519C124,575,170,613,236,613C305,613,369,567,397,495L414,495L397,622L381,622C375,614,371,612,363,612C328,612,311,637,227,637C125,637,49,575,49,492C49,317,370,273,370,129C370,50,299,11,232,11C154,11,84,63,63,152 Z"/>
<glyph unicode="T" horiz-adv-x="677" d="M380,586L554,586C594,586,612,563,627,475L645,475L629,637L610,637C608,625,593,622,579,622L98,622C91,622,84,623,78,625C72,627,68,631,67,637L48,637L32,475L50,475C65,563,83,586,123,586L297,586L297,92C297,38,279,19,218,19L181,19L181,-0L496,-0L496,19L459,19C398,19,380,38,380,92 Z"/>
<glyph unicode="W" horiz-adv-x="1000" d="M687,-16L888,512C918,591,932,603,993,603L993,622L786,622L786,603C859,601,872,587,856,546L679,82L548,394L612,550C628,588,649,603,711,603L711,622L301,622L301,603C354,603,384,595,404,546L485,349L377,82L195,540C178,582,196,603,243,603L260,603L260,622L1,622L1,603L7,603C71,603,95,592,125,516L333,-16L382,-16L508,293L639,-16 ZM525,450L475,566C463,593,477,603,503,603L545,603C574,603,581,587,570,560 Z"/>
<glyph unicode="a" horiz-adv-x="396" d="M113,310C109,319,108,323,108,329C108,350,137,378,170,378C192,378,213,365,226,349C243,329,243,313,243,285L243,206C208,185,175,173,154,168C90,152,36,131,36,70C36,21,71,-12,129,-12C156,-12,176,-8,245,49C246,33,250,-12,291,-12C308,-12,336,-1,390,43L385,58C360,37,347,36,336,36C310,36,310,54,310,134L310,268C310,320,310,333,295,354C267,393,220,407,190,407C125,407,42,326,42,291C42,286,43,283,45,277 ZM243,67C187,28,175,23,159,23C129,23,100,46,100,82C100,123,123,133,184,158C208,168,224,175,243,186 Z"/>
<glyph unicode="b" horiz-adv-x="500" d="M142,672L126,672L6,631L6,614L34,610C72,605,75,601,75,549L75,7C139,-5,178,-12,223,-12C356,-12,457,86,457,214C457,319,382,407,293,407C256,407,213,388,142,337 ZM142,314C187,346,223,361,254,361C331,361,390,286,390,186C390,86,333,17,251,17C175,17,142,72,142,122 Z"/>
<glyph unicode="c" horiz-adv-x="427" d="M376,101C340,51,302,29,254,29C173,29,113,103,113,203C113,299,173,381,242,381C298,381,310,320,359,320C375,320,388,333,388,350C388,382,339,407,276,407C149,407,46,306,46,181C46,102,94,-12,214,-12C294,-12,349,25,391,92 Z"/>
<glyph unicode="d" horiz-adv-x="500" d="M358,388C331,399,290,407,260,407C138,407,43,306,43,181C43,74,114,-12,203,-12C241,-12,293,12,358,59L358,-12L370,-12L498,38L498,59L474,52C446,44,425,51,425,85L425,672L286,631L286,614L319,610C351,606,358,601,358,582 ZM358,81C314,50,271,31,240,31C168,31,110,115,110,215C110,309,161,380,239,380C286,380,322,358,358,305 Z"/>
<glyph unicode="e" horiz-adv-x="438" d="M406,254L406,277C373,310,376,407,241,407C119,407,48,299,48,193C48,77,124,-12,222,-12C295,-12,358,38,400,91L389,103C351,58,312,38,262,38C183,38,110,108,110,212C110,225,112,239,114,254 ZM117,280C140,373,190,388,223,388C271,388,311,345,322,280 Z"/>
<glyph unicode="f" horiz-adv-x="271" d="M258,396L157,396L157,472C157,569,196,626,268,626C334,626,371,577,385,577C393,577,412,617,412,625C412,640,365,672,309,672C263,672,216,650,167,601C108,542,90,479,90,396C68,384,44,375,16,369L16,352L90,352L90,88C90,32,80,19,22,19L22,-0L269,-0L269,19L231,19C175,19,157,32,157,78L157,352L265,352 Z"/>
<glyph unicode="g" horiz-adv-x="469" d="M472,377C428,372,386,367,341,367C314,393,275,407,229,407C130,407,53,340,53,254C53,197,88,154,149,130C114,104,47,102,47,56C47,24,88,-10,142,-15C96,-71,35,-80,35,-138C35,-187,85,-233,189,-233C374,-233,462,-133,462,-68C462,-47,456,-22,432,2C402,32,363,37,250,38C150,39,107,49,107,74C107,97,152,108,168,125C186,119,195,117,214,117C325,117,389,188,389,262C389,294,378,315,372,326C410,319,457,315,472,314 ZM322,253C322,184,284,136,226,136C150,136,120,215,120,274C120,367,179,388,217,388C278,388,322,339,322,253 ZM97,-105C97,-66,134,-52,162,-19C191,-23,317,-24,343,-27C379,-30,410,-49,410,-86C410,-149,330,-205,245,-205C163,-205,97,-152,97,-105 Z"/>
<glyph unicode="h" horiz-adv-x="521" d="M160,319C209,350,245,366,278,366C311,366,369,352,369,245C369,96,365,53,347,35C336,24,317,19,291,19L291,-0L507,-0L507,19C448,19,433,30,431,57C434,111,436,167,436,258C436,359,402,407,325,407C274,407,226,383,160,344L160,672L144,672L25,631L25,614L68,608C89,605,93,597,93,575L93,96C93,41,80,22,25,19L25,-0L225,-0L225,19C173,19,160,32,160,79 Z"/>
<glyph unicode="i" horiz-adv-x="260" d="M168,412L153,412L23,367L23,351L70,342C96,337,101,332,101,293L101,92C101,39,79,19,18,19L18,-0L240,-0L240,19C187,19,168,41,168,76 ZM84,599C84,578,103,561,127,561C151,561,171,578,171,599C171,620,151,637,127,637C103,637,84,620,84,599 Z"/>
<glyph unicode="k" horiz-adv-x="500" d="M265,396L265,377L282,377C319,377,329,360,303,341L159,238L159,672L144,672L22,631L22,614L63,608C87,605,92,597,92,569L92,86C92,43,75,19,22,19L22,-0L227,-0L227,19L217,19C171,19,159,33,159,68L159,221L311,63C337,35,330,19,281,19L281,-0L496,-0L496,19C450,20,427,34,377,85L217,248L309,314C360,351,392,374,463,377L463,396 Z"/>
<glyph unicode="l" horiz-adv-x="240" d="M156,672L141,672L13,631L13,614L58,609C86,606,89,597,89,569L89,86C89,38,70,19,6,19L6,-0L231,-0L231,19L214,19C175,19,156,38,156,79 Z"/>
<glyph unicode="m" horiz-adv-x="792" d="M159,309C227,354,265,367,293,367C328,367,367,344,367,281L367,96C367,39,347,19,291,19L291,-0L496,-0L496,19C446,19,434,31,434,81L434,311C496,352,536,367,567,367C616,367,642,330,642,253L642,175C642,106,641,48,626,33C617,24,604,19,575,19L566,19L566,-0L791,-0L791,19L759,19C718,19,706,43,706,64C709,125,709,192,709,256C709,352,681,407,609,407C560,407,499,369,432,327C422,376,386,407,337,407C297,407,231,378,159,327L159,407L144,407L24,365L24,348L63,343C86,340,92,331,92,292L92,96C92,45,79,19,21,19L21,-0L229,-0L229,19C173,19,159,29,159,81 Z"/>
<glyph unicode="n" horiz-adv-x="521" d="M160,304C212,340,261,368,293,368C333,368,372,343,372,263C372,130,370,57,351,38C340,27,323,20,294,19L294,-0L509,-0L509,19L487,19C446,19,430,32,431,59C432,98,439,124,439,257C439,357,400,407,332,407C283,407,227,370,160,328L160,406L144,406L29,364L29,348L63,341C89,336,93,329,93,292L93,82C93,43,70,19,26,19L26,-0L227,-0L227,19C173,19,160,32,160,87 Z"/>
<glyph unicode="o" horiz-adv-x="521" d="M45,195C45,78,140,-12,264,-12C383,-12,476,79,476,197C476,316,383,407,261,407C157,407,45,333,45,195 ZM120,229C120,315,181,383,247,383C331,383,401,286,401,172C401,72,334,12,275,12C189,12,120,108,120,229 Z"/>
<glyph unicode="p" horiz-adv-x="500" d="M150,13C188,-1,214,-7,241,-7C355,-7,453,97,453,218C453,316,383,404,305,404C265,404,212,378,150,331L150,427L130,427L23,361L23,342L55,334C79,328,83,320,83,301L83,-140C83,-197,67,-214,16,-214L6,-214L6,-233L242,-233L242,-214L217,-214C175,-214,150,-199,150,-149 ZM150,306C186,337,224,355,255,355C308,355,386,305,386,173C386,91,336,24,268,24C231,24,186,46,150,78 Z"/>
<glyph unicode="q" horiz-adv-x="500" d="M427,354C427,374,429,387,433,405L416,405C405,398,391,384,383,373C338,396,299,407,257,407C139,407,46,310,46,188C46,75,115,-8,209,-8C258,-8,305,14,360,62L360,-137C360,-194,345,-214,293,-214L254,-214L254,-233L496,-233L496,-214L485,-214C454,-214,427,-196,427,-153 ZM360,85C328,53,284,34,251,34C173,34,113,112,113,214C113,317,166,382,247,382C311,382,360,334,360,263 Z"/>
<glyph unicode="r" horiz-adv-x="333" d="M160,267C168,282,179,299,192,317C202,331,213,343,231,343C243,343,255,338,266,333C285,324,304,319,319,317L343,377C319,384,301,388,291,392C272,400,269,401,257,401C224,401,212,382,162,300L160,300L160,406L140,406L26,366L26,349L93,325L93,94C93,41,77,20,26,19L26,-0L263,-0L263,19L225,19C175,19,160,32,160,73 Z"/>
<glyph unicode="s" horiz-adv-x="302" d="M32,101L43,-11L58,-11C63,-3,69,1,75,1C83,1,91,-2,102,-5C113,-9,127,-12,146,-12C216,-12,270,37,270,102C270,224,84,239,84,327C84,360,112,383,145,383C185,383,218,351,225,300L242,300L240,391C215,401,187,407,160,407C84,407,32,361,32,295C32,212,111,205,182,134C209,107,214,94,214,73C214,37,183,7,143,7C98,7,60,41,48,101 Z"/>
<glyph unicode="t" horiz-adv-x="292" d="M142,396L142,495L125,495C102,433,68,387,29,368L29,352L75,352L75,104C75,37,117,-12,176,-12C222,-12,261,18,285,70L269,85C250,52,230,35,208,35C187,35,142,56,142,119L142,352L269,352L285,396 Z"/>
<glyph unicode="u" horiz-adv-x="521" d="M497,47L476,43C440,36,430,41,430,69L430,406L276,382L276,368L326,359C358,353,363,345,363,306L363,91C322,57,278,36,244,36C199,36,154,64,154,126L154,406L25,378L25,363L60,353C81,347,87,336,87,312L87,90C87,22,143,-12,193,-12C233,-12,288,14,363,68L363,-12L497,29 Z"/>
<glyph unicode="v" horiz-adv-x="479" d="M256,-9L394,305C413,349,435,371,473,378L473,396L299,396L299,378C372,373,381,344,363,303L261,72L155,321C131,368,150,376,211,378L211,396L7,396L7,378L38,373C54,370,67,358,82,323L227,-9 Z"/>
<glyph unicode="w" horiz-adv-x="740" d="M525,-9L654,306C674,355,698,374,736,378L736,396L568,396L568,378C631,378,648,361,626,308L530,74L432,312C411,362,426,377,475,378L475,396L268,396L268,378L292,375C327,371,344,353,366,302L268,70L160,311C139,358,143,375,202,378L202,396L8,396L8,378C54,373,68,358,82,327L231,-9L259,-9L379,273L498,-9 Z"/>
<glyph unicode="y" horiz-adv-x="469" d="M261,73L148,317C128,359,135,377,196,378L196,396L-5,396L-5,378C37,377,55,360,74,319L229,-10L199,-85C191,-105,176,-131,165,-142C140,-167,82,-157,82,-198C82,-218,99,-233,123,-233C158,-233,181,-200,211,-126L381,298C400,345,423,373,464,378L464,396L298,396L298,378C357,376,376,361,346,285 Z"/>
<glyph unicode="‘" horiz-adv-x="260" d="M179,660C113,635,68,575,68,513C68,465,98,430,138,430C168,430,192,452,192,479C192,505,173,524,147,524C136,524,132,521,123,521C113,521,109,530,109,542C109,578,136,613,186,642 Z"/>
<glyph unicode="’" horiz-adv-x="260" d="M81,430C147,455,192,515,192,577C192,625,162,660,122,660C92,660,68,638,68,611C68,585,87,566,113,566C124,566,128,569,137,569C147,569,151,560,151,548C151,512,124,477,74,448 Z"/>
</font>
<font horiz-adv-x="0"><font-face
font-family="fnt0"
units-per-em="1000"
ascent="673"
descent="-233"
/>
<missing-glyph horiz-adv-x="0"/>
<glyph unicode=" " horiz-adv-x="278" d="M0 0 Z"/>
<glyph unicode="," horiz-adv-x="292" d="M43,-156L51,-173C149,-117,194,-56,194,20C194,60,172,91,144,91C120,91,102,71,102,45C102,7,133,-5,133,-45C133,-80,108,-112,43,-156 Z"/>
<glyph unicode="-" horiz-adv-x="333" d="M62,167L287,167L300,229L75,229 Z"/>
<glyph unicode="A" horiz-adv-x="698" d="M525,637L120,110C81,59,48,23,-4,19L-8,-0L209,-0L213,19L194,19C139,19,106,49,147,102L278,271L503,271L503,93C503,41,477,19,399,19L395,-0L661,-0L665,19C600,19,581,37,581,77L581,637 ZM501,567L503,567L503,307L306,307 Z"/>
<glyph unicode="W" horiz-adv-x="958" d="M192,-16L225,-16L580,463L582,461L571,-16L607,-16L986,519C1024,573,1045,592,1080,603L1084,622L903,622L899,603C974,603,981,557,939,498L652,89L650,91L661,519C663,578,678,597,741,603L745,622L509,622L505,603C556,602,582,583,582,543L582,507L273,89L271,91L292,507C295,576,308,595,373,603L377,622L151,622L147,603C206,601,219,580,217,542 Z"/>
<glyph unicode="a" horiz-adv-x="406" d="M393,408C220,414,48,246,48,91C48,39,76,-12,105,-12C142,-12,250,101,273,129L275,127C260,67,246,-12,289,-12C311,-12,356,30,393,74L393,97C375,77,347,46,334,46C325,46,323,58,329,89 ZM281,157C198,74,158,38,143,38C126,38,109,67,109,111C109,178,141,262,180,301C213,334,257,353,321,357 Z"/>
<glyph unicode="c" horiz-adv-x="271" d="M257,89C225,49,186,25,156,25C120,25,98,54,98,100C98,169,142,367,207,367C235,367,249,341,282,341C297,341,307,354,307,372C307,394,288,408,256,408C129,408,36,206,36,91C36,29,70,-12,121,-12C164,-12,222,23,270,79 Z"/>
<glyph unicode="d" horiz-adv-x="438" d="M399,106C376,71,351,45,343,45C339,45,334,49,338,71L455,647C457,658,460,673,450,673C444,673,424,665,413,659L304,599L313,585L354,607C367,614,373,616,377,616C383,616,385,610,383,599L338,374C322,396,301,408,276,408C208,408,63,270,63,107C63,38,87,-12,120,-12C150,-12,222,51,289,144L291,142L272,50C264,9,271,-12,289,-12C317,-12,375,39,412,97 ZM299,185C245,103,183,36,160,36C139,36,125,66,125,113C125,233,204,379,262,379C290,379,312,359,327,321 Z"/>
<glyph unicode="e" horiz-adv-x="344" d="M305,78C257,42,219,25,190,25C122,25,100,97,122,182C238,216,350,267,350,343C350,385,321,408,269,408C145,408,49,250,49,124C49,47,92,-12,148,-12C190,-12,254,17,314,64 ZM292,344C292,316,282,285,257,260C241,244,195,219,126,201C154,321,196,387,255,387C280,387,292,373,292,344 Z"/>
<glyph unicode="f" horiz-adv-x="229" d="M125,363L74,73C70,49,51,-122,1,-172C-17,-190,-37,-201,-60,-201C-98,-201,-118,-157,-155,-157C-172,-157,-188,-171,-188,-187C-188,-212,-153,-233,-111,-233C-17,-233,97,-153,136,71L187,363L269,363L279,396L193,396L220,527C234,593,266,637,305,637C334,637,361,596,394,596C410,596,422,609,422,625C422,651,390,673,351,673C312,673,268,654,233,619C177,563,147,477,132,395C107,389,83,385,59,382L56,363 Z"/>
<glyph unicode="h" horiz-adv-x="458" d="M118,594L145,608C157,614,162,615,166,615C171,615,175,612,173,604L52,10C49,-7,50,-12,67,-12L95,-12C105,-12,111,-6,114,8L145,160C197,236,303,363,339,363C349,363,354,355,354,342C354,330,351,305,346,287L294,86C290,69,286,41,286,27C286,2,296,-12,312,-12C340,-12,397,35,445,97L434,107C394,62,369,40,356,40C349,40,346,46,351,67L408,287C413,307,418,334,418,350C418,385,403,408,380,408C323,408,219,285,155,199L153,201L244,650C247,665,244,673,233,673C228,673,227,673,218,668L109,609 Z"/>
<glyph unicode="i" horiz-adv-x="240" d="M66,299L102,336C110,345,118,349,123,349C128,349,129,345,127,335L71,61C69,50,67,33,67,23C67,1,77,-12,94,-12C123,-12,175,39,218,90L205,101C178,69,152,40,142,40C131,40,132,52,136,73L192,347C202,397,192,408,176,408C150,408,96,358,56,311 ZM173,546C173,526,183,515,198,515C230,515,246,558,246,590C246,609,235,622,220,622C196,622,173,585,173,546 Z"/>
<glyph unicode="k" horiz-adv-x="458" d="M450,72L439,83L393,39C302,58,295,134,222,193C361,197,449,242,449,329C449,370,422,408,392,408C355,408,237,314,168,247L166,249L248,652C251,665,247,673,239,673C233,673,224,669,215,664L117,610L125,596L141,604C148,608,167,616,171,616C179,616,178,613,176,603L54,1C52,-9,55,-12,67,-12L95,-12C109,-12,113,-9,115,1L155,192C212,139,237,75,282,30C312,-0,333,-12,365,-12 ZM158,208L160,218C228,286,324,364,357,364C376,364,390,347,390,325C390,280,355,208,201,208 Z"/>
<glyph unicode="l" horiz-adv-x="229" d="M205,88C178,57,147,27,136,27C124,27,124,41,127,56L247,643C251,663,249,673,239,673C225,673,216,667,198,657L102,603L110,588C144,606,164,616,169,616C176,616,178,611,175,596L68,68C66,58,64,43,64,33C64,5,76,-12,97,-12C125,-12,169,21,217,77 Z"/>
<glyph unicode="n" horiz-adv-x="469" d="M162,194L198,373C203,399,191,408,182,408C157,408,92,341,55,285L68,275C94,313,114,335,121,335C126,335,128,327,125,312L62,7C59,-8,64,-12,76,-12L107,-12C117,-12,122,-6,124,5L155,158C209,227,265,293,296,324C324,352,340,362,351,362C363,362,372,351,366,318L300,61C288,15,301,-12,324,-12C360,-12,432,57,462,104L451,113C423,80,380,30,367,30C356,30,357,43,361,59L423,292C429,316,430,331,431,349C431,381,419,408,392,408C344,408,251,309,164,194L162,196 Z"/>
<glyph unicode="o" horiz-adv-x="396" d="M52,146C52,63,94,-12,141,-12C188,-12,377,71,377,261C377,368,315,408,286,408C226,408,52,308,52,146 ZM313,247C313,155,266,25,186,25C152,25,116,66,116,150C116,250,172,371,235,371C279,371,313,317,313,247 Z"/>
<glyph unicode="p" horiz-adv-x="438" d="M53,272C88,316,113,342,125,342C133,342,131,328,125,299L41,-115C24,-199,11,-211,-61,-215L-65,-233L170,-233L174,-215C89,-215,87,-191,98,-137L126,-3C143,-9,161,-12,181,-12C303,-12,421,123,421,263C421,335,387,408,354,408C319,408,236,331,179,248L177,250L192,321C196,339,199,367,199,380C199,399,193,408,182,408C156,408,94,353,40,284 ZM169,210C222,284,291,358,313,358C339,358,358,314,358,258C358,131,281,12,198,12C173,12,155,19,134,37 Z"/>
<glyph unicode="r" horiz-adv-x="271" d="M61,288C87,319,101,341,113,341C126,341,123,325,120,306L66,3C64,-6,65,-12,76,-12L107,-12C116,-12,123,-8,125,1L143,76C150,102,180,183,201,235C221,283,246,333,271,333C281,333,289,330,294,330C315,330,325,358,325,377C325,395,316,408,300,408C257,408,214,318,193,263L143,130C134,107,129,118,134,132C160,210,187,341,187,376C187,396,179,408,165,408C143,408,103,363,50,300 Z"/>
<glyph unicode="s" horiz-adv-x="302" d="M210,71C210,42,185,19,154,19C108,19,82,63,46,63C28,63,15,51,15,33C15,5,43,-12,91,-12C188,-12,249,36,249,113C249,200,139,248,139,311C139,342,171,378,199,378C238,378,235,321,266,321C282,321,293,335,293,353C293,383,265,408,233,408C170,408,93,335,93,276C93,203,210,141,210,71 Z"/>
<glyph unicode="t" horiz-adv-x="260" d="M284,396L206,396C215,437,232,486,252,525L236,525C186,446,143,404,89,380L85,363L136,363L81,90C77,70,73,43,73,28C73,3,86,-12,106,-12C135,-12,196,31,249,88L239,101C190,51,156,25,144,25C133,25,132,35,137,61L198,363L276,363 Z"/>
<glyph unicode="u" horiz-adv-x="469" d="M437,386C441,404,438,408,422,408L400,408C385,408,378,403,375,389L359,307C349,255,270,154,213,97C185,69,162,49,151,49C142,49,139,57,139,71C139,78,140,86,142,95L191,337C200,382,200,408,177,408C151,408,97,356,57,296L69,289C96,323,112,339,121,339C127,339,128,333,123,307L82,105C77,79,74,61,74,43C74,8,84,-12,102,-12C124,-12,173,35,221,83C240,102,285,147,336,219L339,219L314,92C309,65,305,39,305,25C305,-1,311,-12,324,-12C345,-12,407,46,453,104L441,115C410,76,389,56,379,56C372,56,370,60,372,68 Z"/>
<glyph unicode="v" horiz-adv-x="406" d="M52,285C80,317,100,340,111,340C117,340,122,331,119,313L88,124C85,105,81,61,81,35C81,3,88,-12,105,-12C172,-12,417,232,417,346C417,381,398,408,373,408C348,408,324,377,324,364C324,338,351,337,351,325C351,190,172,35,148,35C135,35,137,60,141,84L179,315C183,339,186,366,186,376C186,396,178,408,164,408C142,408,81,352,40,297 Z"/>
<glyph unicode="w" horiz-adv-x="604" d="M49,278C82,323,98,337,107,337C121,337,114,313,110,284L84,106C81,84,78,47,78,30C78,4,89,-12,108,-12C159,-12,242,75,325,193L327,191L311,90C308,72,305,40,305,26C305,4,316,-12,331,-12C355,-12,395,10,475,90C575,190,633,281,633,354C633,384,615,408,591,408C570,408,547,386,547,366C547,347,570,349,570,323C570,199,408,30,376,30C364,30,363,45,369,84L414,372C418,400,413,408,398,408L379,408C368,408,360,402,357,383L335,233C292,166,181,32,148,32C133,32,135,48,141,90L176,324C179,346,181,364,181,378C181,397,174,408,162,408C136,408,74,344,36,289 Z"/>
<glyph unicode="y" horiz-adv-x="438" d="M59,293C98,343,113,360,129,360C144,360,188,170,188,65C188,-35,104,-185,91,-198C84,-205,66,-211,27,-211L20,-227L227,-227L234,-211C187,-210,170,-207,170,-191C170,-181,190,-142,205,-104L246,-1C294,119,438,266,438,359C438,388,422,408,398,408C377,408,359,390,359,370C359,347,375,351,375,332C375,291,297,125,243,33L241,33C240,241,193,408,162,408C138,408,97,372,47,301 Z"/>
<glyph unicode="’" horiz-adv-x="292" d="M130,373C228,429,273,490,273,566C273,606,251,637,223,637C199,637,181,617,181,591C181,553,212,541,212,501C212,466,187,434,122,390 Z"/>
</font>
<font horiz-adv-x="0"><font-face
font-family="fnt3"
units-per-em="2048"
ascent="927"
descent="-218"
/>
<missing-glyph horiz-adv-x="0"/>
<glyph unicode="." horiz-adv-x="569" d="M178,217L392,217L392,-0L178,-0 Z"/>
<glyph unicode="c" horiz-adv-x="1024" d="M977,385L977,385Q949,183,834,77Q719,-29,528,-29Q315,-29,188,124Q61,277,61,536Q61,795,192,948Q324,1102,546,1102Q739,1102,854,996Q969,891,977,706L977,706L804,706L804,706Q793,821,724,884Q655,947,540,947Q404,947,326,837Q249,728,249,536Q249,332,321,229Q393,126,535,126Q640,126,710,193Q781,261,804,385L804,385 Z"/>
<glyph unicode="d" horiz-adv-x="1138" d="M541,-29Q326,-29,199,131Q72,292,72,565Q72,806,195,954Q318,1102,516,1102Q713,1102,828,935L842,915L842,915L842,1470L842,1470L932,1470L1022,1470L1022,1470L1022,-0L1022,-0L939,-0L855,-0L855,-0L855,146L855,146L832,113Q721,-29,541,-29 ZM551,940Q400,940,330,843Q260,747,260,537Q260,339,335,232Q411,125,551,125Q682,125,762,223Q842,322,842,484Q842,703,766,821Q691,940,551,940 Z"/>
<glyph unicode="f" horiz-adv-x="569" d="M357,921L357,921L357,-0L357,-0L267,-0L177,-0L177,-0L177,921L177,921L29,921L29,1070L177,1070L177,1070L177,1252Q177,1371,247,1431Q317,1491,457,1491L536,1488L536,1326L465,1329Q413,1329,385,1295Q357,1262,357,1200L357,1070L357,1070L536,1070L536,921 Z"/>
<glyph unicode="m" horiz-adv-x="1705" d="M133,-0L133,1070L133,1070L218,1070L304,1070L304,1070L304,911L304,911L304,911L341,959Q462,1102,630,1102Q774,1102,859,1017Q897,979,918,930L918,930L947,967Q1063,1102,1224,1102Q1392,1102,1483,1010Q1575,919,1575,751L1575,-0L1575,-0L1485,-0L1395,-0L1395,-0L1395,690Q1395,812,1345,875Q1295,938,1199,938Q1082,938,1013,847Q944,756,944,601L944,601L944,-0L944,-0L854,-0L764,-0L764,-0L764,733Q764,833,718,885Q673,938,586,938Q466,938,389,836Q313,734,313,573L313,573L313,-0L313,-0L223,-0L133,-0 Z"/>
<glyph unicode="n" horiz-adv-x="1138" d="M133,-0L133,1070L133,1070L218,1070L304,1070L304,1070L304,912L304,912L304,912L344,965Q461,1102,637,1102Q814,1102,910,1006Q1006,910,1006,733L1006,-0L1006,-0L916,-0L826,-0L826,-0L826,672Q826,813,771,875Q717,938,595,938Q465,938,389,839Q313,741,313,573L313,573L313,-0L313,-0L223,-0L133,-0 Z"/>
<glyph unicode="o" horiz-adv-x="1138" d="M569,-29Q347,-29,209,127Q72,283,72,536Q72,790,209,946Q347,1102,569,1102Q793,1102,930,946Q1067,790,1067,536Q1067,283,930,127Q793,-29,569,-29 ZM569,126Q711,126,795,237Q879,348,879,536Q879,724,795,835Q711,947,569,947Q427,947,343,835Q260,724,260,536Q260,348,343,237Q427,126,569,126 Z"/>
<glyph unicode="p" horiz-adv-x="1138" d="M119,1070L119,1070L204,1070L290,1070L290,1070L290,918L290,918L299,931Q415,1102,604,1102Q814,1102,936,957Q1059,813,1059,567Q1059,288,935,129Q812,-29,593,-29Q412,-29,305,110L299,118L299,118L299,-423L299,-423L209,-423L119,-423L119,-423 ZM584,127Q725,127,798,233Q871,340,871,544Q871,745,801,841Q731,938,585,938Q436,938,367,829Q299,720,299,484L299,484L299,484L299,484Q299,313,373,220Q447,127,584,127 Z"/>
<glyph unicode="r" horiz-adv-x="681" d="M158,-0L158,1070L158,1070L243,1070L329,1070L329,1070L329,887L329,887L329,887Q352,930,378,965Q480,1102,629,1102Q654,1102,680,1093L680,909L643,910Q497,910,417,822Q338,735,338,573L338,573L338,-0L338,-0L248,-0L158,-0 Z"/>
<glyph unicode="t" horiz-adv-x="569" d="M526,1Q434,-13,392,-13Q274,-13,225,39Q177,91,177,218L177,923L177,923L29,923L29,1070L177,1070L177,1070L177,1370L357,1370L357,1070L357,1070L526,1070L526,923L357,923L357,923L357,218Q357,182,385,161Q414,140,462,140L526,140 Z"/>
<glyph unicode="w" horiz-adv-x="1478" d="M333,-0L29,1070L29,1070L128,1070L227,1070L227,1070L432,218L432,218L432,218L641,1070L741,1070L841,1070L1056,212L1056,212L1056,212L1273,1070L1273,1070L1362,1070L1452,1070L1452,1070L1149,-0L1053,-0L956,-0L735,836L735,836L735,836L526,-0L430,-0 Z"/>
</font>
</defs>
<style type="text/css">
<![CDATA[
#page2 { z-index:4; }
#page2 .ps03 { stroke:#97B3FC;fill:none; }
#page2 .ps00 { stroke:none;fill:#000000; }
#page2 .ps02 { stroke:none;fill:#1B0C66;fill-rule:nonzero; }
#page2 .ps01 { stroke:none;fill:#EE6413;fill-rule:nonzero; }
#page2 .ps10 { stroke-width:0.000001; }
#page2 .ps214 {
letter-spacing:-0.00132px;word-spacing:0.438;font-family:fnt2;font-size:12px; }
#page2 .ps23 {
letter-spacing:-0.00132px;word-spacing:1.2299;font-family:fnt2;font-size:12px; }
#page2 .ps232 {
letter-spacing:-0.00132px;word-spacing:2.0652;font-family:fnt2;font-size:12px; }
#page2 .ps225 {
letter-spacing:-0.0024px;word-spacing:0.4464;font-family:fnt2;font-size:12px; }
#page2 .ps228 {
letter-spacing:-0.0024px;word-spacing:0.9756;font-family:fnt0;font-size:12px; }
#page2 .ps216 {
letter-spacing:-0.0024px;word-spacing:1.2264;font-family:fnt2;font-size:12px; }
#page2 .ps231 {
letter-spacing:-0.0024px;word-spacing:2.0664;font-family:fnt2;font-size:12px; }
#page2 .ps227 {
letter-spacing:-0.0024px;word-spacing:2.4263;font-family:fnt2;font-size:12px; }
#page2 .ps211 {
letter-spacing:-0.0024px;word-spacing:3.8664;font-family:fnt2;font-size:12px; }
#page2 .ps21 {
letter-spacing:-0.0027px;word-spacing:0.00675;font-family:fnt1;font-size:13.5px; }
#page2 .ps28 {
letter-spacing:-0.00372px;word-spacing:0.3816;font-family:fnt2;font-size:12px; }
#page2 .ps25 {
letter-spacing:-0.00372px;word-spacing:1.1076;font-family:fnt2;font-size:12px; }
#page2 .ps26 {
letter-spacing:-0.00372px;word-spacing:2.8488;font-family:fnt2;font-size:12px; }
#page2 .ps210 {
letter-spacing:-0.00372px;word-spacing:3.3131;font-family:fnt2;font-size:12px; }
#page2 .ps29 {
letter-spacing:-0.00372px;word-spacing:3.3276;font-family:fnt2;font-size:12px; }
#page2 .ps22 {
letter-spacing:-0.0048px;word-spacing:1.1808;font-family:fnt2;font-size:12px; }
#page2 .ps230 {
letter-spacing:-0.0048px;word-spacing:2.3088;font-family:fnt2;font-size:12px; }
#page2 .ps220 {
letter-spacing:-0.006px;word-spacing:0;font-family:fnt0;font-size:12px; }
#page2 .ps213 {
letter-spacing:-0.0072px;word-spacing:0.6312;font-family:fnt2;font-size:12px; }
#page2 .ps229 {
letter-spacing:-0.0072px;word-spacing:0.9912;font-family:fnt2;font-size:12px; }
#page2 .ps219 {
letter-spacing:-0.0072px;word-spacing:2.1312;font-family:fnt2;font-size:12px; }
#page2 .ps221 {
letter-spacing:-0.00948px;word-spacing:2.1409;font-family:fnt2;font-size:12px; }
#page2 .ps234 {
letter-spacing:-0.0108px;word-spacing:1.1843;font-family:fnt2;font-size:12px; }
#page2 .ps235 {
letter-spacing:-0.028438px;word-spacing:0;font-family:fnt0;font-size:10.98px; }
#page2 .ps24 {
letter-spacing:0.00132px;word-spacing:0.3228;font-family:fnt2;font-size:12px; }
#page2 .ps218 {
letter-spacing:0.00132px;word-spacing:1.2349;font-family:fnt2;font-size:12px; }
#page2 .ps224 {
letter-spacing:0.0024px;word-spacing:1.6416;font-family:fnt2;font-size:12px; }
#page2 .ps212 {
letter-spacing:0.0024px;word-spacing:3.846;font-family:fnt2;font-size:12px; }
#page2 .ps20 {
letter-spacing:0.004392px;word-spacing:0.0034038;font-family:fnt0;font-size:10.98px; }
#page2 .ps236 {
letter-spacing:0.0048px;word-spacing:0.0192;font-family:fnt2;font-size:12px; }
#page2 .ps222 {
letter-spacing:0.0048px;word-spacing:2.0592;font-family:fnt2;font-size:12px; }
#page2 .ps215 {
letter-spacing:0.006px;word-spacing:0.018;font-family:fnt2;font-size:12px; }
#page2 .ps217 {
letter-spacing:0.00948px;word-spacing:0;font-family:fnt0;font-size:12px; }
#page2 .ps27 {
letter-spacing:0px;word-spacing:0;font-family:fnt2;font-size:12px; }
#page2 .ps237 {
letter-spacing:0px;word-spacing:0;font-family:fnt3;font-size:12.947px; }
#page2 .ps233 {
letter-spacing:0px;word-spacing:1.164;font-family:fnt2;font-size:12px; }
#page2 .ps223 {
letter-spacing:0px;word-spacing:2.0521;font-family:fnt2;font-size:12px; }
#page2 .ps226 {
letter-spacing:0px;word-spacing:2.4084;font-family:fnt2;font-size:12px; }
]]>
</style>
<g transform="matrix(1 0 0 -1 -0 540)">
<g id="q1" class="">
<text transform="matrix(1 0 0 -1 57.60001 494.16)"><tspan x="0,7.6684,10.187,12.827,15.807,19.588,22.799,26.119,29.179,36.848,41.662,46.124,49.905,55.059" y="-0" class="ps00 ps20">Alice’s Advent</tspan></text>
<text transform="matrix(1 0 0 -1 115.5992 494.16)"><tspan xml:space="preserve" x="0,5.154,8.134,11.915,15.236,18.296,20.936,26.09,29.15,39.673,44.026,49.18,53.993,57.775,60.755,63.274,67.736,72.89,77.703" y="-0" class="ps00 ps20">ures in Wonderland </tspan></text>
<text transform="matrix(1 0 0 -1 273.58215 494.16)"><tspan xml:space="preserve" x="0" y="-0" class="ps00 ps20"> </tspan></text>
<text transform="matrix(1 0 0 -1 84.18001 448.20001)"><tspan x="0,9.9873,21.23,31.217,39.936,49.775,58.493,68.899,73.398,78.323,82.546,87.045,98.153,105.89" y="-0" class="ps00 ps21">CHAPTER I: Dow</tspan></text>
<text transform="matrix(1 0 0 -1 200.68677 448.20001)"><tspan x="0" y="-0" class="ps00 ps21">n</tspan></text>
<text transform="matrix(1 0 0 -1 208.42633 448.20001)"><tspan xml:space="preserve" x="0,4.4996,9.1409,16.739,23.202,27.702,38.108,44.572,52.304,60.037,63.977,68.618,74.245,85.487,93.22,96.876,103.34" y="-0" class="ps00 ps21"> the Rabbit-Hole </tspan></text>
<text transform="matrix(1 0 0 -1 72 420.41998)"><tspan x="0,8.1192,10.994,14.11,19.229,24.48,28.992,37.867,42.614,46.234,50.746" y="-0" class="ps00 ps22">Alice was b</tspan></text>
<text transform="matrix(1 0 0 -1 128.80612 420.41998)"><tspan x="0" y="-0" class="ps00 ps22">e</tspan></text>
<text transform="matrix(1 0 0 -1 134.08617 420.41998)"><tspan x="0,5.6232,8.7384,14.986,21.233,24.348,30.595,36.218,40.73,44.23,50.477,54.989,60.612,65.863,69.362,73.874,79.618,84.869,88.86,94.483,98.995,102.49,105.61,109.6,114.85,120.85,125.36,131.61,134.85,139.37,142.98" y="-0" class="ps00 ps22">ginning to get very tired of si</tspan></text>
<text transform="matrix(1 0 0 -1 280.25247 420.41998)"><tspan xml:space="preserve" x="0,3.4992,6.9984,10.114,16.361,21.984,26.496,32.491,38.114,42.626,48.874,54.125,58.116" y="-0" class="ps00 ps22">tting by her </tspan></text>
<text transform="matrix(1 0 0 -1 57.60004 404.16003)"><tspan x="0,3.6227,6.7414,10.364,13.867,19.121,23.116,27.681,33.931,40.182,44.747,48.249,54.5,59.755,64.319,70.318,75.069,81.319,87.318,90.437,95.001,99.752,106,112,116.57,122.82,126.07,130.63,136.88,141.63,147.38,150.5,156.75,162.38,166.94,173.19,179.44,182.94,189.19,192.31,198.56,204.19,208.76,212.26,218.51,223.07" y="-0" class="ps00 ps23">sister on the bank, and of having nothing to d</tspan></text>
<text transform="matrix(1 0 0 -1 286.73555 404.16003)"><tspan x="0" y="-0" class="ps00 ps23">o</tspan></text>
<text transform="matrix(1 0 0 -1 292.97546 404.16003)"><tspan x="0,3.1187,7.6832,13.934,20.185,25.307,30.562,35.127,41.377" y="-0" class="ps00 ps23">: once or</tspan></text>
<text transform="matrix(1 0 0 -1 338.43297 404.16003)"><tspan xml:space="preserve" x="0" y="-0" class="ps00 ps23"> </tspan></text>
<text transform="matrix(1 0 0 -1 57.60004 387.90009)"><tspan x="0,3.5053,12.387,15.508,20.633,25.891,29.551,33.176,39.429,44.687,48.347,54.6,59.353,65.355,69.015,75.016,80.274,85.531" y="-0" class="ps00 ps24">twice she had peep</tspan></text>
<text transform="matrix(1 0 0 -1 149.07036 387.90009)"><tspan x="0,5.2573,11.259,14.919,18.04,24.293,27.799,34.052,37.712,41.217,47.471,52.728,56.388,62.39,68.643,74.896,80.898,84.558,90.811,96.068,100.07,103.73,107.35,110.47,114.1,117.6,122.86,126.86,130.52,139.4" y="-0" class="ps00 ps24">ed into the book her sister wa</tspan></text>
<text transform="matrix(1 0 0 -1 293.1485 387.90009)"><tspan x="0,3.6253,7.2854,11.283,16.54,21.293,27.295,30.416,36.669,42.299" y="-0" class="ps00 ps24">s reading,</tspan></text>
<text transform="matrix(1 0 0 -1 338.50693 387.90009)"><tspan xml:space="preserve" x="0" y="-0" class="ps00 ps24"> </tspan></text>
<text transform="matrix(1 0 0 -1 57.60004 371.64014)"><tspan xml:space="preserve" x="0,5.9963,12.245,15.745,20.185,23.301,26.801,31.241,37.489,42.238,48.234,52.674,58.922,65.17,69.61,75.607,78.723,83.843,87.343,93.592,97.584,102.84,106.46,110.9,117.14,121.14,125.58,130.7,136.95,143.19,148.94,154.19,158.18,161.8,166.55,170.05,173.17,179.42,185.66,189.28,193.72,196.84,203.09,207.53,210.65,214.15,217.26,221.7,224.82,229.57,235.81,241.81,246.25,255.13,261.38,266.12,269.62,274.06,277.18,280.8" y="-0" class="ps00 ps25">but it had no pictures or conversations in it, ‘and what is </tspan></text>
<text transform="matrix(1 0 0 -1 57.60004 355.38019)"><tspan x="0,3.5003,9.7486,15.001,21.182,27.43,31.05,36.303,42.484,48.732,51.98,58.161,62.91,69.091,75.087,81.335,87.584,93.58,96.696,99.813,105.99,109.49,115.74,121.99,128.24,133.86,140.11,143.61,149.79,157.91,160.79,163.91,169.03" y="-0" class="ps00 ps26">the use of a book,’ thought Alice</tspan></text>
<text transform="matrix(1 0 0 -1 231.96852 355.38019)"><tspan xml:space="preserve" x="0,6.1811,9.2974,18.174,21.29,24.79,31.038,37.287,43.535,47.035,53.216" y="-0" class="ps00 ps26"> ‘without p</tspan></text>
<text transform="matrix(1 0 0 -1 291.24654 355.38019)"><tspan x="0" y="-0" class="ps00 ps26">i</tspan></text>
<text transform="matrix(1 0 0 -1 294.36768 355.38019)"><tspan xml:space="preserve" x="0,5.1203,8.6206,14.869,18.861,24.113,27.734,33.915,40.163,44.155" y="-0" class="ps00 ps26">ctures or </tspan></text>
<text transform="matrix(1 0 0 -1 57.60004 339.12024)"><tspan xml:space="preserve" x="0,5.124,11.376,17.628,23.376,28.632,32.628,36.252,41.004,44.508,47.628,53.88,60.132,64.38,67.5" y="-0" class="ps00 ps27">conversation?’ </tspan></text>
<text transform="matrix(1 0 0 -1 72 322.86029)"><tspan x="0,5.8763,12.125,15.838,19.459,25.707,30.959,34.673,43.549,48.298,51.918,55.632,60.752,67,73.249,76.869,79.985,85.982,91.234,95.226,98.342,104.59,110.21,113.93,117.05,123.29,127.01,133.26,138.51,142.5,146.21,152.46,161.34,167.59,171.3,180.8,183.92,190.17,196.16,199.88,203.5,208.24,211.86,215.58,224.45,229.71" y="-0" class="ps00 ps28">So she was considering in her own mind (as wel</tspan></text>
<text transform="matrix(1 0 0 -1 304.64948 322.86029)"><tspan x="0" y="-0" class="ps00 ps28">l</tspan></text>
<text transform="matrix(1 0 0 -1 307.5294 322.86029)"><tspan xml:space="preserve" x="0,3.7139,8.4622,12.082,15.796,19.417,25.665,30.917" y="-0" class="ps00 ps28"> as she </tspan></text>
<text transform="matrix(1 0 0 -1 57.60004 306.60034)"><tspan xml:space="preserve" x="0,5.1203,11.369,17.617,20.493,26.489,29.606,36.266,39.514,45.762,49.754,56.414,59.915,66.163,71.415,78.075,84.323,90.572,94.072,100.73,106.73,111.48,117.1,123.76,133.26,138.01,144.01,149.26" y="-0" class="ps00 ps29">could, for the hot day made </tspan></text>
<text transform="matrix(1 0 0 -1 213.4801 306.60034)"><tspan xml:space="preserve" x="0,6.2483,11.501,15.493,22.138,25.386,30.639,35.891,38.767,45.413,51.157,56.409,60.402,66.026,72.671,76.291,79.168,84.42,89.672,95.669,101.29,107.94,112.69,118.93,124.93" y="-0" class="ps00 ps210">her feel very sleepy and </tspan></text>
<text transform="matrix(1 0 0 -1 57.60004 290.34039)"><tspan x="0,3.6216,7.1232,13.373,19.37,22.488,28.486,32.107,35.225,42.425,51.302,57.552,62.806,66.307,72.557,77.81,81.804,89.004,92.506,98.755,104.01,111.21,117.21,120.08,125.34,130.09,133.71" y="-0" class="ps00 ps211">stupid), whether the pleasu</tspan></text>
<text transform="matrix(1 0 0 -1 197.52008 290.34039)"><tspan xml:space="preserve" x="0,3.9984,9.2568,16.441,22.696,25.95,33.134,42.641,47.395,53.398,56.52,62.774,68.405,75.589,80.344,87.528,93.53,98.285,101.41,105.03,110.66,115.42,120.54,126.8,131.55,134.68,140.93" y="-0" class="ps00 ps212">re of making a daisy-chain </tspan></text>
<text transform="matrix(1 0 0 -1 57.60004 274.08044)"><tspan x="0,8.8728,15.118,21.362,24.235,30.228,34.188,40.181,45.43,49.39,58.262,64.507,68.496,71.993,78.238,82.198,85.694,91.939,97.188,101.15,104.64,108.63,114.88,121.12,127.12,129.99,135.24,139.2,145.44,148.69,152.65,158.27,163.52,167.01,170.51,173.62,179.87,185.49,189.45,195.69,201.69,205.65,210.39,216.64,222.63,226.59,232.58,235.69,240.81,246.8,249.92,256.16,261.78,265.74,269.24,275.48" y="-0" class="ps00 ps213">would be worth the trouble of getting up and picking the</tspan></text>
<text transform="matrix(1 0 0 -1 338.42699 274.08044)"><tspan xml:space="preserve" x="0" y="-0" class="ps00 ps213"> </tspan></text>
<text transform="matrix(1 0 0 -1 57.60004 257.8205)"><tspan xml:space="preserve" x="0,5.9987,10.749,13.868,17.491,20.609,25.864,29.487,32.605,36.378,45.257,51.507,56.762,63.013,66.786,70.408,76.659,82.658,88.656,93.911,100.16,103.04,108.67,112.44,117.19,120.96,132.96,139.21,142.33,145.83,151.09,154.86,164.48,169.23,175.23,181.23,184.35,187.85,191.63,200.5,203.62,207.13,213.38,217.15,223.15,226.27,232.52,238.52,242.29,247.54,253.17,258.42,262.05,265.82,269.81,274.57,280.82" y="-0" class="ps00 ps214">daisies, when suddenly a White Rabbit with pink eyes ran </tspan></text>
<text transform="matrix(1 0 0 -1 57.60004 241.56055)"><tspan x="0,5.13,8.016,14.274,17.904,23.166,26.526,32.532,38.166,41.526,47.784,53.046,57.048" y="-0" class="ps00 ps215">close by her.</tspan></text>
<text transform="matrix(1 0 0 -1 117.70848 241.56055)"><tspan xml:space="preserve" x="0" y="-0" class="ps00 ps215"> </tspan></text>
<text transform="matrix(1 0 0 -1 72 225.24054)"><tspan xml:space="preserve" x="0,8.1216,14.371,19.625,23.618,28.872,33.432,42.31,47.059,50.681,55.241,61.49,67.74,71.242,77.491,80.609,86.858,92.484,97.044,100.67,106.92" y="-0" class="ps00 ps216">There was nothing so </tspan></text>
<text transform="matrix(1 0 0 -1 183.48 225.23999)"><tspan x="0,4.8815,9.019,12.28" y="-0" class="ps00 ps217">very</tspan></text>
<text transform="matrix(1 0 0 -1 201.06 225.23999)"><tspan xml:space="preserve" x="0,4.5722,8.5696,13.827,23.332,28.086,32.083,38.084" y="-0" class="ps00 ps218"> remarka</tspan></text>
<text transform="matrix(1 0 0 -1 243.82391 225.23999)"><tspan xml:space="preserve" x="0,6.0013,8.8826,14.14,18.712,21.834,28.087,32.659,36.164,42.418,47.171,50.676,53.798,58.37,64.623,70.877,74.874,79.446,85.447,88.569,94.57" y="-0" class="ps00 ps218">ble in that; nor did </tspan></text>
<text transform="matrix(1 0 0 -1 57.59998 208.98004)"><tspan xml:space="preserve" x="0,8.1168,10.99,14.102,19.219,24.468,29.928,33.425,39.67,42.782,49.027,55.02,60.48,63.593,67.09,72.55,76.166,82.411" y="-0" class="ps00 ps219">Alice think it so </tspan></text>
<text transform="matrix(1 0 0 -1 145.44 208.98)"><tspan x="0,4.866,8.988,12.234" y="-0" class="ps00 ps220">very</tspan></text>
<text transform="matrix(1 0 0 -1 162.95999 208.98)"><tspan xml:space="preserve" x="0,5.4674,14.962,21.204,26.319,32.562,38.029,44.271,50.514,54.009,59.476,65.718,68.961,74.428,77.923,84.165,89.412,94.879,103.75,108.49,114.11,119.58,123.07,129.32,134.78,141.03,146.27,151.01,155,160.47,163.96,170.21,175.45" y="-0" class="ps00 ps221"> much out of the way to hear the </tspan></text>
<text transform="matrix(1 0 0 -1 57.60001 192.72005)"><tspan xml:space="preserve" x="0,9.6288,14.386,20.39,26.395,29.52,33.029,38.429,42.058,46.814,52.447,57.847,61.356,67.613,73.013,76.138,79.646,83.275,88.536,91.421,94.678,97.802,103.2,106.33,116.21,122.46,127.86,133.87,139.13,143.89,147.89,151.01" y="-0" class="ps00 ps222">Rabbit say to itself, ‘Oh dear! </tspan></text>
<text transform="matrix(1 0 0 -1 213.95999 192.72005)"><tspan xml:space="preserve" x="0,9.876,16.128,21.516,27.516,32.772,37.524,41.52,44.64,50.028,54.024,59.412,63.036,69.288,74.04,76.92,79.8,85.188,91.188,96.444,101.83,104.71,109.46,112.97,118.22,121.34,124.46" y="-0" class="ps00 ps223">Oh dear! I shall be late!’ </tspan></text>
<text transform="matrix(1 0 0 -1 57.60001 176.4601)"><tspan xml:space="preserve" x="0,3.6264,12.509,18.763,24.022,30.276,35.256,38.882,45.137,50.395,55.375,58.882,65.136,71.39,77.645,83.275,89.53,93.036,98.016,101.14,104.64,109.62,115.88,121.63,126.89,130.89,135.87,140.62,143.88,147.38,152.64,156.64,165.52,170.28,174.27,180.28,183.9,187.02,192,195.13,198.63,203.61,209.87,214.99,220.12,226.38,230.37,234.37,239.63,245.63,250.61,254.12,260.37,265.35,271.61,276.87,280.86" y="-0" class="ps00 ps224">(when she thought it over afterwards, it occurred to her </tspan></text>
<text transform="matrix(1 0 0 -1 57.60001 160.20015)"><tspan xml:space="preserve" x="0,3.5016,9.7512,14.501,18.002,21.782,25.404,31.654,36.907,40.687,46.937,53.186,58.812,65.062,68.563,72.343,75.845,82.094,85.874,92.124,96.874,102.62,107.87,111.65,120.53,126.78,133.03,139.03,144.28,148.27,153.53,159.53,163.31,168.06,171.56,175.34,178.84,185.09,188.21,191.83,194.94,198.72,204.72,210.97,214.47,218.25,223,226.5,230.28,233.79,240.04,245.29,249.07,252.57,255.69,265.19,270.44,274.22,277.34,280.84" y="-0" class="ps00 ps225">that she ought to have wondered at this, but at the time it </tspan></text>
<text transform="matrix(1 0 0 -1 57.60001 143.9402)"><tspan x="0,4.752,7.632,10.512,16.256,19.88,25.136,30.392,39.896,45.152,51.152,56.897,62.897,69.149,72.269,75.773,81.029,86.773,93.025,97.777,101.28,107.53,111.53,116.28,119.16,122.79,125.91,131.65,137.65" y="-0" class="ps00 ps226">all seemed quite natural); bu</tspan></text>
<text transform="matrix(1 0 0 -1 201.48007 143.9402)"><tspan x="0,3.5016,9.2615,18.139,24.389,29.642,35.892,41.652,45.153,51.403,56.657,62.416,72.038,76.788,82.785,88.783,91.9,95.402,101.16,105.91,111.03,114.53,120.78,125.53,128.41,131.29" y="-0" class="ps00 ps227">t when the Rabbit actually</tspan></text>
<text transform="matrix(1 0 0 -1 338.46991 143.9402)"><tspan xml:space="preserve" x="0" y="-0" class="ps00 ps227"> </tspan></text>
<text transform="matrix(1 0 0 -1 57.60001 127.62)"><tspan x="0,3.1176,7.8672,12.617,18.11,22.42,27.289,31.598,38.844,43.714,46.831,50.081,55.574,59.884,64.633,70.259,73.376,77.686,82.435,85.181,89.49,92.368,95.485,99.107,103.42,110.66,115.53,118.41,122.03,125.15,128.4,133.15,138.02,141.13,145.13,150.38,155.13,158.38,163.87,168,171.12" y="-0" class="ps00 ps228">took a watch out of its waistcoat-pocket,</tspan></text>
<text transform="matrix(1 0 0 -1 232.2 127.62)"><tspan xml:space="preserve" x="0,4.32,9.0648,15.31,21.302,25.622,28.495,34.74,40.985,46.978,52.226,58.219,62.539,67.284,70.781,75.101,78.214,81.71,84.823,89.143,93.888,100.13" y="-0" class="ps00 ps229"> and looked at it, and</tspan></text>
<text transform="matrix(1 0 0 -1 338.39384 127.62)"><tspan xml:space="preserve" x="0" y="-0" class="ps00 ps229"> </tspan></text>
<text transform="matrix(1 0 0 -1 57.59996 111.36005)"><tspan xml:space="preserve" x="0,3.4992,9.7464,14.998,21.245,26.885,33.132,39.379,43.37,47.362,50.477,55.728,61.723,67.363,73.61,79.858,82.973,88.613,96.732,99.607,102.72,107.84,113.09,118.73,122.35,125.85,130.6,134.59,138.09,143.34,149.34,154.98,158.47,164.72,170.36,176.61,181.86,185.85,191.49,194.74,199.99,205.24,208.74,211.86,217.5,220.74,226.99,230.98,236.62,239.74,243.24,248.88,252.12,255,259.74,263.36,269.61,274.86,280.86" y="-0" class="ps00 ps230">then hurried on, Alice started to her feet, for it flashed </tspan></text>
<text transform="matrix(1 0 0 -1 57.59996 95.1001)"><tspan x="0,4.7496,9.8712,13.865,20.114,23.736,27.358,32.758,39.007,44.261,48.254,53.654,63.156,66.274,72.523,78.521,83.921,87.422,93.672,98.422,101.92,107.32,110.94,117.19,122.45,127.85,134.1,138.85" y="-0" class="ps00 ps231">across her mind that she had</tspan></text>
<text transform="matrix(1 0 0 -1 202.44005 95.1001)"><tspan xml:space="preserve" x="0,5.3999,11.651,16.905,22.652,27.907,31.901,37.301,43.3,48.555,51.805,58.056,62.051,67.305,72.705,76.328,81.582,86.837,93.088,98.488,103.24,108.64,112.63,117.38,123.38,129.38,132.5,136" y="-0" class="ps00 ps232"> never before seen a rabbit </tspan></text>
<text transform="matrix(1 0 0 -1 57.59996 78.84015)"><tspan xml:space="preserve" x="0,8.88,12,15.504,21.756,26.256,31.512,34.632,38.136,44.388,49.644,53.64,58.14,62.892,67.392,76.272,81.024,84.144,87.768,91.272,96.396,102.65,107.4,110.9,115.66,121.66,127.91,133.03,139.03,144.29,147.79,150.91" y="-0" class="ps00 ps233">with either a waistcoat-pocket, </tspan></text>
<text transform="matrix(1 0 0 -1 212.99992 78.84015)"><tspan x="0,6.2412,10.226,14.736" y="-0" class="ps00 ps234">or a</tspan></text>
<text transform="matrix(1 0 0 -1 232.53584 78.84015)"><tspan xml:space="preserve" x="0,4.5095,13.379,18.12,21.613,26.726" y="-0" class="ps00 ps234"> watch</tspan></text>
<text transform="matrix(1 0 0 -1 265.56215 78.84015)"><tspan xml:space="preserve" x="0,4.5095,8.0027,14.244,18.753,22.247" y="-0" class="ps00 ps234"> to ta</tspan></text>
<text transform="matrix(1 0 0 -1 292.60878 78.84015)"><tspan x="0,5.9892,11.234,15.744,21.985,28.226,31.719,36.229,42.47" y="-0" class="ps00 ps234">ke out of</tspan></text>
<text transform="matrix(1 0 0 -1 338.379 78.84015)"><tspan xml:space="preserve" x="0" y="-0" class="ps00 ps234"> </tspan></text>
<text transform="matrix(1 0 0 -1 179.45999 44.88)"><tspan xml:space="preserve" x="0,5.88" y="-0" class="ps00 ps27">2 </tspan></text>
<text transform="matrix(1 0 0 -1 188.7 44.88)"><tspan x="0,4.3196" y="-0" class="ps00 ps235">of</tspan></text>
<text transform="matrix(1 0 0 -1 195.53999 44.88)"><tspan xml:space="preserve" x="0,3.36,9.2448,15.13,21.014" y="-0" class="ps00 ps236"> 130 </tspan></text>
<g id="q2" class="ps00 ps236">
<g id="frm3" transform="matrix(1 0 0 1 159.12 347.04)">
<path d="M123.74 148.59 C123.74 150.67 128.03 152.37 133.49 152.54 C133.2 152.55 132.9 152.56 132.6 152.56 C126.28 152.56 121.16 150.43 121.16 147.8 C121.16 145.17 126.28 143.04 132.6 143.04 C137.91 143.04 142.38 144.55 143.66 146.59 C141.8 145.42 138.36 144.63 134.43 144.63 C128.52 144.63 123.74 146.4 123.74 148.59 L123.74 148.59 Z" class="ps01"/>
<path d="M164.42 151.29 C164.38 151.17 164.3 151.05 164.18 150.93 C164.12 150.88 164.04 150.83 163.94 150.78 C163.83 150.74 163.73 150.71 163.64 150.69 C163.53 150.67 163.4 150.66 163.25 150.66 C163.1 150.66 162.95 150.66 162.78 150.66 L162.66 150.66 L162.66 152.73 L162.91 152.73 C163.17 152.73 163.37 152.72 163.53 152.71 C163.68 152.7 163.83 152.66 164 152.59 C164.13 152.53 164.25 152.44 164.34 152.3 C164.44 152.16 164.48 151.99 164.48 151.79 C164.48 151.58 164.46 151.42 164.42 151.29 L164.42 151.29M166.09 152.88 C165.95 153.17 165.74 153.4 165.48 153.57 C165.24 153.73 164.97 153.85 164.67 153.92 C164.38 154 164.03 154.03 163.62 154.03 L160.89 154.03 L160.89 147.08 L162.66 147.08 L162.66 149.35 L163.58 149.35 C163.83 149.35 164.07 149.37 164.27 149.41 C164.47 149.45 164.66 149.51 164.83 149.58 C165.01 149.65 165.17 149.74 165.31 149.84 C165.45 149.94 165.58 150.06 165.7 150.18 C165.9 150.38 166.05 150.62 166.15 150.91 C166.26 151.21 166.31 151.51 166.31 151.84 C166.31 152.24 166.24 152.58 166.09 152.88 L166.09 152.88 Z" class="ps02"/>
<path d="M129.65 151.29 C129.61 151.17 129.53 151.05 129.41 150.93 C129.35 150.88 129.27 150.83 129.17 150.78 C129.06 150.74 128.96 150.71 128.87 150.69 C128.76 150.67 128.63 150.66 128.48 150.66 C128.34 150.66 128.18 150.66 128.01 150.66 L127.89 150.66 L127.89 152.73 L128.14 152.73 C128.4 152.73 128.6 152.72 128.76 152.71 C128.91 152.7 129.07 152.66 129.24 152.59 C129.37 152.53 129.48 152.44 129.57 152.3 C129.67 152.16 129.72 151.99 129.72 151.79 C129.72 151.58 129.69 151.42 129.65 151.29 L129.65 151.29M131.32 152.88 C131.18 153.17 130.97 153.4 130.71 153.57 C130.47 153.73 130.2 153.85 129.91 153.92 C129.61 154 129.26 154.03 128.86 154.03 L126.13 154.03 L126.13 147.08 L127.89 147.08 L127.89 149.35 L128.82 149.35 C129.07 149.35 129.3 149.37 129.5 149.41 C129.7 149.45 129.89 149.51 130.06 149.58 C130.24 149.65 130.4 149.74 130.54 149.84 C130.68 149.94 130.81 150.06 130.93 150.18 C131.13 150.38 131.28 150.62 131.38 150.91 C131.49 151.21 131.54 151.51 131.54 151.84 C131.54 152.24 131.47 152.58 131.32 152.88 L131.32 152.88 Z" class="ps02"/>
<path d="M171.33 149.41 C171.17 149.09 170.95 148.84 170.66 148.67 C170.42 148.51 170.16 148.43 169.89 148.42 C169.61 148.4 169.28 148.4 168.88 148.4 L168.85 148.4 L168.85 152.73 L168.88 152.73 C169.25 152.73 169.56 152.72 169.83 152.71 C170.09 152.7 170.34 152.63 170.58 152.49 C170.91 152.31 171.16 152.06 171.31 151.74 C171.47 151.41 171.55 151.02 171.55 150.57 C171.55 150.11 171.48 149.73 171.33 149.41 L171.33 149.41M172.97 152.3 C172.71 152.8 172.34 153.19 171.88 153.49 C171.5 153.73 171.09 153.88 170.66 153.94 C170.23 154 169.76 154.03 169.27 154.03 L167.09 154.03 L167.09 147.08 L169.29 147.08 C169.78 147.08 170.23 147.11 170.66 147.18 C171.09 147.25 171.49 147.4 171.86 147.63 C172.3 147.9 172.66 148.3 172.95 148.81 C173.23 149.32 173.38 149.9 173.38 150.55 C173.38 151.22 173.24 151.81 172.97 152.3 L172.97 152.3 Z" class="ps02"/>
<path d="M179.04 152.7 L176.08 152.7 L176.08 151.39 L178.81 151.39 L178.81 150.06 L176.08 150.06 L176.08 147.08 L174.32 147.08 L174.32 154.03 L179.04 154.03 L179.04 152.7 L179.04 152.7 Z" class="ps02"/>
<path d="M137.68 148.18 C137.52 148.12 137.38 148.09 137.23 148.09 C136.97 148.09 136.78 148.13 136.64 148.22 C136.51 148.31 136.44 148.48 136.44 148.73 C136.44 148.89 136.48 149.03 136.56 149.13 C136.64 149.23 136.75 149.3 136.9 149.35 C137.06 149.41 137.24 149.45 137.41 149.47 C137.58 149.49 137.81 149.51 138.08 149.54 L138.08 148.46 C137.96 148.34 137.83 148.25 137.68 148.18 L137.68 148.18M138.08 147.08 L139.74 147.08 L139.74 150.65 C139.74 151.27 139.53 151.73 139.11 152.03 C138.69 152.33 138.03 152.48 137.11 152.48 C136.74 152.48 136.37 152.45 136.01 152.38 C135.64 152.32 135.38 152.26 135.21 152.22 L135.21 150.96 L135.35 150.96 C135.6 151.06 135.86 151.15 136.12 151.22 C136.38 151.29 136.61 151.32 136.8 151.32 C137.23 151.32 137.56 151.27 137.77 151.16 C137.99 151.05 138.09 150.85 138.09 150.55 L138.09 150.53 C137.62 150.5 137.17 150.45 136.75 150.4 C136.34 150.34 135.98 150.24 135.68 150.1 C135.39 149.96 135.16 149.77 135 149.53 C134.85 149.29 134.77 148.97 134.77 148.58 C134.77 148.11 134.92 147.72 135.23 147.41 C135.54 147.1 135.93 146.94 136.4 146.94 C136.65 146.94 136.85 146.96 136.99 147 C137.13 147.03 137.27 147.09 137.42 147.16 C137.57 147.23 137.69 147.31 137.78 147.38 C137.87 147.46 137.97 147.54 138.08 147.64 L138.08 147.08 L138.08 147.08 Z" class="ps02"/>
<path d="M148.42 150.38 C148.44 150.7 148.54 150.96 148.72 151.15 C148.9 151.34 149.16 151.43 149.48 151.43 C149.79 151.43 150.03 151.34 150.18 151.16 C150.33 150.98 150.42 150.72 150.42 150.38 L148.42 150.38 L148.42 150.38M150.58 146.98 C150.77 147.01 150.95 147.04 151.13 147.09 C151.33 147.14 151.48 147.18 151.59 147.23 C151.71 147.27 151.83 147.32 151.97 147.38 L151.97 148.72 L151.79 148.72 C151.72 148.67 151.62 148.61 151.51 148.54 C151.39 148.47 151.27 148.41 151.13 148.35 C150.98 148.28 150.81 148.22 150.62 148.18 C150.43 148.14 150.24 148.12 150.05 148.12 C149.83 148.12 149.62 148.14 149.43 148.18 C149.24 148.22 149.08 148.29 148.93 148.39 C148.79 148.48 148.67 148.62 148.58 148.78 C148.5 148.94 148.44 149.15 148.43 149.39 L152.06 149.39 L152.06 149.98 C152.06 150.78 151.85 151.4 151.44 151.83 C151.03 152.26 150.42 152.48 149.61 152.48 C148.71 152.48 148.02 152.22 147.52 151.71 C147.02 151.21 146.77 150.52 146.77 149.67 C146.77 148.79 147.04 148.12 147.58 147.65 C148.11 147.17 148.88 146.94 149.88 146.94 C150.16 146.94 150.39 146.96 150.58 146.98 L150.58 146.98 Z" class="ps02"/>
<path d="M155.23 146.98 C154.56 146.98 154.07 147.12 153.76 147.39 C153.45 147.66 153.3 148.11 153.3 148.73 L153.3 151.17 L152.66 151.17 L152.66 152.32 L153.3 152.32 L153.3 153.81 L154.95 153.81 L154.95 152.32 L156.55 152.32 L156.55 151.17 L154.95 151.17 L154.95 149.32 C154.95 149.14 154.95 148.98 154.96 148.84 C154.96 148.71 154.99 148.59 155.03 148.48 C155.08 148.37 155.16 148.28 155.27 148.22 C155.38 148.16 155.54 148.13 155.75 148.13 C155.84 148.13 155.96 148.14 156.1 148.18 C156.25 148.22 156.35 148.25 156.4 148.29 L156.55 148.29 L156.55 147.13 C156.37 147.08 156.17 147.05 155.97 147.02 C155.77 146.99 155.52 146.98 155.23 146.98 L155.23 146.98 Z" class="ps02"/>
<path d="M145.95 147.03 L144.29 147.03 L144.29 149.62 C144.29 149.84 144.28 150.04 144.26 150.26 C144.24 150.46 144.21 150.62 144.16 150.72 C144.1 150.84 144.02 150.92 143.91 150.97 C143.8 151.03 143.66 151.05 143.47 151.05 C143.34 151.05 143.2 151.03 143.06 150.98 C142.92 150.93 142.76 150.85 142.6 150.74 L142.6 147.03 L140.94 147.03 L140.94 152.27 L142.6 152.27 L142.6 151.69 C142.88 151.91 143.14 152.09 143.4 152.22 C143.66 152.35 143.95 152.41 144.26 152.41 C144.81 152.41 145.22 152.24 145.51 151.9 C145.8 151.57 145.95 151.08 145.95 150.44 L145.95 147.03 L145.95 147.03 Z" class="ps02"/>
<path d="M133.81 147.08 L132.16 147.08 L132.16 154.34 L133.81 154.34 L133.81 147.08 L133.81 147.08 Z" class="ps02"/>
</g>
</g>
</g>
<g id="xfrm4" transform="matrix(396 0 0 540 0 0)">
<g id="frm5" transform="matrix(0.01 0 0 0.01 0 0)">
<text transform="matrix(1 0 0 -1 0 43.5267)"><tspan x="0,9.3475,18.695,28.043,31.642,38.84,46.038,49.638,53.237,57.548,64.746,71.945,75.544,82.017,89.216" y="-0" class="ps03 ps10 ps237">www.pdftron.com</tspan></text>
</g>
</g>
<a xlink:href="http://www.planetpdf.com/mainpage.asp?eb"><rect x="279.1" y="490.1" width="59.04" height="12.96" opacity="0" fill="red" stroke="none"/></a>
</g>
</svg>
</div>
<div id="page3" class="page odd">
<canvas class="imageView"></canvas>
<svg id="svgRoot" version="1.0" baseProfile="Full" viewBox="0 0 396 540" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:cs="http://www.pdftron.com/pdf2svg" xml:space="preserve" buffered-rendering="dynamic">
<defs>
<font horiz-adv-x="0"><font-face
font-family="fnt1"
units-per-em="1000"
ascent="673"
descent="-233"
/>
<missing-glyph horiz-adv-x="0"/>
<glyph unicode=" " horiz-adv-x="278" d="M0 0 Z"/>
<glyph unicode="," horiz-adv-x="260" d="M81,-148C147,-123,192,-63,192,-1C192,47,162,82,122,82C92,82,68,60,68,33C68,7,87,-12,113,-12C124,-12,128,-9,137,-9C147,-9,151,-18,151,-30C151,-66,124,-101,74,-130 Z"/>
<glyph unicode="-" horiz-adv-x="396" d="M35,221L35,171L361,171L361,221 Z"/>
<glyph unicode="." horiz-adv-x="260" d="M130,82C101,82,79,63,79,35C79,7,101,-12,130,-12C158,-12,181,5,181,35C181,64,158,82,130,82 Z"/>
<glyph unicode="0" horiz-adv-x="490" d="M453,311C453,485,362,637,245,637C135,637,37,499,37,311C37,115,141,-14,245,-14C358,-14,453,126,453,311 ZM378,311C378,125,353,5,245,5C144,5,112,116,112,311C112,493,141,618,245,618C355,618,378,488,378,311 Z"/>
<glyph unicode="1" horiz-adv-x="490" d="M254,637C230,603,147,528,89,489L97,475C134,492,190,529,222,557L222,58C222,28,216,19,184,19L130,19L130,-0L382,-0L382,19L326,19C295,19,289,27,289,57L289,637 Z"/>
<glyph unicode="3" horiz-adv-x="490" d="M184,306C207,324,230,333,254,333C316,333,363,272,363,194C363,96,297,13,219,13C147,13,110,91,65,91C49,91,34,75,34,57C34,19,104,-14,185,-14C319,-14,438,96,438,220C438,312,369,392,277,383L275,385C341,424,378,475,378,526C378,589,322,637,248,637C169,637,97,582,63,495L81,488C109,547,163,586,214,586C268,586,311,545,311,494C311,439,258,389,175,320 Z"/>
<glyph unicode=":" horiz-adv-x="260" d="M130,406C101,406,79,387,79,359C79,331,101,312,130,312C158,312,181,329,181,359C181,388,158,406,130,406 ZM130,82C101,82,79,63,79,35C79,7,101,-12,130,-12C158,-12,181,5,181,35C181,64,158,82,130,82 Z"/>
<glyph unicode=";" horiz-adv-x="260" d="M81,-148C147,-123,192,-63,192,-1C192,47,162,82,122,82C92,82,68,60,68,33C68,7,87,-12,113,-12C124,-12,128,-9,137,-9C147,-9,151,-18,151,-30C151,-66,124,-101,74,-130 ZM133,406C104,406,82,387,82,359C82,331,104,312,133,312C161,312,184,329,184,359C184,388,161,406,133,406 Z"/>
<glyph unicode="A" horiz-adv-x="677" d="M423,276L490,94C494,84,501,69,501,53C501,25,480,19,423,19L397,19L397,-0L672,-0L672,19C622,19,601,29,581,82L372,637L285,637L294,615L112,118C80,31,69,20,4,19L4,-0L235,-0L235,19L219,19C164,19,138,29,138,56C138,70,151,100,158,119L216,276 ZM406,320L233,320L318,553 Z"/>
<glyph unicode="D" horiz-adv-x="760" d="M111,92C111,34,86,19,32,19L15,19L15,-0L335,-0C588,-0,705,181,705,332C705,497,588,631,324,631C272,631,211,630,156,628C101,626,52,624,15,622L15,603L35,603C94,603,111,587,111,522 ZM194,608C206,609,233,612,274,612C414,612,485,577,531,531C590,472,611,390,611,316C611,213,565,136,528,100C466,38,410,19,276,19C197,19,194,33,194,74 Z"/>
<glyph unicode="E" horiz-adv-x="594" d="M464,415L445,415C440,357,423,340,387,340L208,340L208,586L419,586C455,586,480,568,493,483L511,483L503,622L23,622L23,603L45,603C112,603,125,579,125,523L125,101C125,41,111,19,31,19L3,19L3,-0L534,-0L550,149L532,149C507,63,486,36,416,36L262,36C225,36,208,45,208,91L208,304L377,304C418,304,437,296,445,225L464,225 Z"/>
<glyph unicode="F" horiz-adv-x="531" d="M474,415L457,415C454,372,436,351,399,351L201,351L201,586L391,586C453,586,473,562,474,504L491,504L491,622L43,622L43,603C113,602,118,573,118,509L118,117C118,36,107,23,45,19L45,-0L288,-0L288,19C213,19,201,40,201,96L201,315L386,315C434,315,455,297,457,239L474,239 Z"/>
<glyph unicode="G" horiz-adv-x="740" d="M646,186C646,229,666,246,716,249L716,267L446,267L446,249L483,249C543,249,563,230,563,173L563,47C507,19,456,9,410,9C295,9,151,100,151,305C151,466,241,612,417,612C510,612,595,573,622,448L642,448L642,610L628,610C622,605,614,603,605,603C584,603,513,637,406,637C162,637,57,449,57,299C57,153,159,-16,378,-16C420,-16,547,-4,646,47 Z"/>
<glyph unicode="I" horiz-adv-x="333" d="M288,19C219,19,203,39,203,98L203,522C203,589,225,603,288,603L288,622L45,622L45,603C101,600,120,585,120,531L120,105C120,38,107,22,45,19L45,-0L288,-0 Z"/>
<glyph unicode="L" horiz-adv-x="552" d="M544,146L526,146C463,59,445,36,386,36L239,36C210,36,199,46,199,73L199,534C199,596,216,603,281,603L318,603L318,622L23,622L23,603L37,603C100,603,116,581,116,528L116,85C116,34,99,19,53,19L20,19L20,-0L467,-0 Z"/>
<glyph unicode="M" horiz-adv-x="917" d="M448,-0L697,533L699,533L728,85C732,32,686,19,639,19L639,-0L896,-0L896,19C823,19,815,19,809,111L777,564C775,598,794,599,843,603L843,621L696,621L456,117L215,621L64,621L64,603C126,599,128,581,124,515L100,126C95,35,86,19,13,19L13,-0L221,-0L221,19C176,21,138,32,141,83L168,533L170,533L425,-0 Z"/>
<glyph unicode="N" horiz-adv-x="813" d="M705,-7L705,551C705,590,721,603,796,603L796,622L562,622L562,603C642,601,660,590,660,529L660,131L189,622L32,622L32,603C67,602,93,594,116,578L116,86C116,40,96,19,34,19L30,19L30,-0L262,-0L262,19C177,19,161,34,161,106L161,535L679,-7 Z"/>
<glyph unicode="O" horiz-adv-x="823" d="M770,328C770,508,608,637,419,637C206,637,53,496,53,297C53,110,218,-16,414,-16C608,-16,770,126,770,328 ZM676,295C676,153,598,9,435,9C274,9,147,141,147,328C147,448,217,612,393,612C558,612,676,481,676,295 Z"/>
<glyph unicode="R" horiz-adv-x="802" d="M199,263C215,262,228,261,250,261C277,261,293,262,318,263C342,247,377,218,421,174L487,108C576,19,621,-19,796,-11L796,7C719,12,658,49,599,108L520,187C473,234,443,262,406,291C488,315,539,378,539,453C539,555,456,631,271,631C206,631,186,630,145,628C104,626,43,622,19,622L19,603L41,603C99,603,116,585,116,523L116,102C116,35,95,19,36,19L19,19L19,-0L302,-0L302,19L279,19C223,19,199,34,199,94 ZM199,610C217,612,230,612,249,612C403,612,445,540,445,447C445,327,372,280,261,280C238,280,223,279,199,282 Z"/>
<glyph unicode="S" horiz-adv-x="490" d="M44,152L65,-0L82,-0C86,6,93,11,102,11C116,11,186,-16,241,-16C358,-16,445,57,445,155C445,339,124,377,124,519C124,575,170,613,236,613C305,613,369,567,397,495L414,495L397,622L381,622C375,614,371,612,363,612C328,612,311,637,227,637C125,637,49,575,49,492C49,317,370,273,370,129C370,50,299,11,232,11C154,11,84,63,63,152 Z"/>
<glyph unicode="T" horiz-adv-x="677" d="M380,586L554,586C594,586,612,563,627,475L645,475L629,637L610,637C608,625,593,622,579,622L98,622C91,622,84,623,78,625C72,627,68,631,67,637L48,637L32,475L50,475C65,563,83,586,123,586L297,586L297,92C297,38,279,19,218,19L181,19L181,-0L496,-0L496,19L459,19C398,19,380,38,380,92 Z"/>
<glyph unicode="a" horiz-adv-x="396" d="M113,310C109,319,108,323,108,329C108,350,137,378,170,378C192,378,213,365,226,349C243,329,243,313,243,285L243,206C208,185,175,173,154,168C90,152,36,131,36,70C36,21,71,-12,129,-12C156,-12,176,-8,245,49C246,33,250,-12,291,-12C308,-12,336,-1,390,43L385,58C360,37,347,36,336,36C310,36,310,54,310,134L310,268C310,320,310,333,295,354C267,393,220,407,190,407C125,407,42,326,42,291C42,286,43,283,45,277 ZM243,67C187,28,175,23,159,23C129,23,100,46,100,82C100,123,123,133,184,158C208,168,224,175,243,186 Z"/>
<glyph unicode="b" horiz-adv-x="500" d="M142,672L126,672L6,631L6,614L34,610C72,605,75,601,75,549L75,7C139,-5,178,-12,223,-12C356,-12,457,86,457,214C457,319,382,407,293,407C256,407,213,388,142,337 ZM142,314C187,346,223,361,254,361C331,361,390,286,390,186C390,86,333,17,251,17C175,17,142,72,142,122 Z"/>
<glyph unicode="c" horiz-adv-x="427" d="M376,101C340,51,302,29,254,29C173,29,113,103,113,203C113,299,173,381,242,381C298,381,310,320,359,320C375,320,388,333,388,350C388,382,339,407,276,407C149,407,46,306,46,181C46,102,94,-12,214,-12C294,-12,349,25,391,92 Z"/>
<glyph unicode="d" horiz-adv-x="500" d="M358,388C331,399,290,407,260,407C138,407,43,306,43,181C43,74,114,-12,203,-12C241,-12,293,12,358,59L358,-12L370,-12L498,38L498,59L474,52C446,44,425,51,425,85L425,672L286,631L286,614L319,610C351,606,358,601,358,582 ZM358,81C314,50,271,31,240,31C168,31,110,115,110,215C110,309,161,380,239,380C286,380,322,358,358,305 Z"/>
<glyph unicode="e" horiz-adv-x="438" d="M406,254L406,277C373,310,376,407,241,407C119,407,48,299,48,193C48,77,124,-12,222,-12C295,-12,358,38,400,91L389,103C351,58,312,38,262,38C183,38,110,108,110,212C110,225,112,239,114,254 ZM117,280C140,373,190,388,223,388C271,388,311,345,322,280 Z"/>
<glyph unicode="f" horiz-adv-x="271" d="M258,396L157,396L157,472C157,569,196,626,268,626C334,626,371,577,385,577C393,577,412,617,412,625C412,640,365,672,309,672C263,672,216,650,167,601C108,542,90,479,90,396C68,384,44,375,16,369L16,352L90,352L90,88C90,32,80,19,22,19L22,-0L269,-0L269,19L231,19C175,19,157,32,157,78L157,352L265,352 Z"/>
<glyph unicode="g" horiz-adv-x="469" d="M472,377C428,372,386,367,341,367C314,393,275,407,229,407C130,407,53,340,53,254C53,197,88,154,149,130C114,104,47,102,47,56C47,24,88,-10,142,-15C96,-71,35,-80,35,-138C35,-187,85,-233,189,-233C374,-233,462,-133,462,-68C462,-47,456,-22,432,2C402,32,363,37,250,38C150,39,107,49,107,74C107,97,152,108,168,125C186,119,195,117,214,117C325,117,389,188,389,262C389,294,378,315,372,326C410,319,457,315,472,314 ZM322,253C322,184,284,136,226,136C150,136,120,215,120,274C120,367,179,388,217,388C278,388,322,339,322,253 ZM97,-105C97,-66,134,-52,162,-19C191,-23,317,-24,343,-27C379,-30,410,-49,410,-86C410,-149,330,-205,245,-205C163,-205,97,-152,97,-105 Z"/>
<glyph unicode="h" horiz-adv-x="521" d="M160,319C209,350,245,366,278,366C311,366,369,352,369,245C369,96,365,53,347,35C336,24,317,19,291,19L291,-0L507,-0L507,19C448,19,433,30,431,57C434,111,436,167,436,258C436,359,402,407,325,407C274,407,226,383,160,344L160,672L144,672L25,631L25,614L68,608C89,605,93,597,93,575L93,96C93,41,80,22,25,19L25,-0L225,-0L225,19C173,19,160,32,160,79 Z"/>
<glyph unicode="i" horiz-adv-x="260" d="M168,412L153,412L23,367L23,351L70,342C96,337,101,332,101,293L101,92C101,39,79,19,18,19L18,-0L240,-0L240,19C187,19,168,41,168,76 ZM84,599C84,578,103,561,127,561C151,561,171,578,171,599C171,620,151,637,127,637C103,637,84,620,84,599 Z"/>
<glyph unicode="j" horiz-adv-x="250" d="M168,412L154,412L23,367L23,351L68,343C95,338,101,332,101,302L101,-86C101,-166,74,-195,34,-195C-12,-195,-45,-135,-75,-135C-90,-135,-105,-156,-105,-181C-105,-210,-58,-233,2,-233C94,-233,168,-155,168,-18 ZM82,599C82,578,101,561,125,561C149,561,169,578,169,599C169,620,149,637,125,637C101,637,82,620,82,599 Z"/>
<glyph unicode="k" horiz-adv-x="500" d="M265,396L265,377L282,377C319,377,329,360,303,341L159,238L159,672L144,672L22,631L22,614L63,608C87,605,92,597,92,569L92,86C92,43,75,19,22,19L22,-0L227,-0L227,19L217,19C171,19,159,33,159,68L159,221L311,63C337,35,330,19,281,19L281,-0L496,-0L496,19C450,20,427,34,377,85L217,248L309,314C360,351,392,374,463,377L463,396 Z"/>
<glyph unicode="l" horiz-adv-x="240" d="M156,672L141,672L13,631L13,614L58,609C86,606,89,597,89,569L89,86C89,38,70,19,6,19L6,-0L231,-0L231,19L214,19C175,19,156,38,156,79 Z"/>
<glyph unicode="m" horiz-adv-x="792" d="M159,309C227,354,265,367,293,367C328,367,367,344,367,281L367,96C367,39,347,19,291,19L291,-0L496,-0L496,19C446,19,434,31,434,81L434,311C496,352,536,367,567,367C616,367,642,330,642,253L642,175C642,106,641,48,626,33C617,24,604,19,575,19L566,19L566,-0L791,-0L791,19L759,19C718,19,706,43,706,64C709,125,709,192,709,256C709,352,681,407,609,407C560,407,499,369,432,327C422,376,386,407,337,407C297,407,231,378,159,327L159,407L144,407L24,365L24,348L63,343C86,340,92,331,92,292L92,96C92,45,79,19,21,19L21,-0L229,-0L229,19C173,19,159,29,159,81 Z"/>
<glyph unicode="n" horiz-adv-x="521" d="M160,304C212,340,261,368,293,368C333,368,372,343,372,263C372,130,370,57,351,38C340,27,323,20,294,19L294,-0L509,-0L509,19L487,19C446,19,430,32,431,59C432,98,439,124,439,257C439,357,400,407,332,407C283,407,227,370,160,328L160,406L144,406L29,364L29,348L63,341C89,336,93,329,93,292L93,82C93,43,70,19,26,19L26,-0L227,-0L227,19C173,19,160,32,160,87 Z"/>
<glyph unicode="o" horiz-adv-x="521" d="M45,195C45,78,140,-12,264,-12C383,-12,476,79,476,197C476,316,383,407,261,407C157,407,45,333,45,195 ZM120,229C120,315,181,383,247,383C331,383,401,286,401,172C401,72,334,12,275,12C189,12,120,108,120,229 Z"/>
<glyph unicode="p" horiz-adv-x="500" d="M150,13C188,-1,214,-7,241,-7C355,-7,453,97,453,218C453,316,383,404,305,404C265,404,212,378,150,331L150,427L130,427L23,361L23,342L55,334C79,328,83,320,83,301L83,-140C83,-197,67,-214,16,-214L6,-214L6,-233L242,-233L242,-214L217,-214C175,-214,150,-199,150,-149 ZM150,306C186,337,224,355,255,355C308,355,386,305,386,173C386,91,336,24,268,24C231,24,186,46,150,78 Z"/>
<glyph unicode="r" horiz-adv-x="333" d="M160,267C168,282,179,299,192,317C202,331,213,343,231,343C243,343,255,338,266,333C285,324,304,319,319,317L343,377C319,384,301,388,291,392C272,400,269,401,257,401C224,401,212,382,162,300L160,300L160,406L140,406L26,366L26,349L93,325L93,94C93,41,77,20,26,19L26,-0L263,-0L263,19L225,19C175,19,160,32,160,73 Z"/>
<glyph unicode="s" horiz-adv-x="302" d="M32,101L43,-11L58,-11C63,-3,69,1,75,1C83,1,91,-2,102,-5C113,-9,127,-12,146,-12C216,-12,270,37,270,102C270,224,84,239,84,327C84,360,112,383,145,383C185,383,218,351,225,300L242,300L240,391C215,401,187,407,160,407C84,407,32,361,32,295C32,212,111,205,182,134C209,107,214,94,214,73C214,37,183,7,143,7C98,7,60,41,48,101 Z"/>
<glyph unicode="t" horiz-adv-x="292" d="M142,396L142,495L125,495C102,433,68,387,29,368L29,352L75,352L75,104C75,37,117,-12,176,-12C222,-12,261,18,285,70L269,85C250,52,230,35,208,35C187,35,142,56,142,119L142,352L269,352L285,396 Z"/>
<glyph unicode="u" horiz-adv-x="521" d="M497,47L476,43C440,36,430,41,430,69L430,406L276,382L276,368L326,359C358,353,363,345,363,306L363,91C322,57,278,36,244,36C199,36,154,64,154,126L154,406L25,378L25,363L60,353C81,347,87,336,87,312L87,90C87,22,143,-12,193,-12C233,-12,288,14,363,68L363,-12L497,29 Z"/>
<glyph unicode="v" horiz-adv-x="479" d="M256,-9L394,305C413,349,435,371,473,378L473,396L299,396L299,378C372,373,381,344,363,303L261,72L155,321C131,368,150,376,211,378L211,396L7,396L7,378L38,373C54,370,67,358,82,323L227,-9 Z"/>
<glyph unicode="w" horiz-adv-x="740" d="M525,-9L654,306C674,355,698,374,736,378L736,396L568,396L568,378C631,378,648,361,626,308L530,74L432,312C411,362,426,377,475,378L475,396L268,396L268,378L292,375C327,371,344,353,366,302L268,70L160,311C139,358,143,375,202,378L202,396L8,396L8,378C54,373,68,358,82,327L231,-9L259,-9L379,273L498,-9 Z"/>
<glyph unicode="x" horiz-adv-x="490" d="M15,378C69,376,96,351,120,319L217,192L110,72C75,32,56,20,8,20L8,-0L194,-0L194,20C136,20,114,44,143,77L231,176L320,62C345,30,333,20,284,20L284,-0L484,-0L484,20C438,20,418,40,392,72L272,222L357,316C386,348,411,370,455,375L484,378L484,396L291,396L291,378C342,378,359,350,324,311L259,238L184,337C165,365,171,378,217,378L217,396L15,396 Z"/>
<glyph unicode="y" horiz-adv-x="469" d="M261,73L148,317C128,359,135,377,196,378L196,396L-5,396L-5,378C37,377,55,360,74,319L229,-10L199,-85C191,-105,176,-131,165,-142C140,-167,82,-157,82,-198C82,-218,99,-233,123,-233C158,-233,181,-200,211,-126L381,298C400,345,423,373,464,378L464,396L298,396L298,378C357,376,376,361,346,285 Z"/>
<glyph unicode="‘" horiz-adv-x="260" d="M179,660C113,635,68,575,68,513C68,465,98,430,138,430C168,430,192,452,192,479C192,505,173,524,147,524C136,524,132,521,123,521C113,521,109,530,109,542C109,578,136,613,186,642 Z"/>
<glyph unicode="’" horiz-adv-x="260" d="M81,430C147,455,192,515,192,577C192,625,162,660,122,660C92,660,68,638,68,611C68,585,87,566,113,566C124,566,128,569,137,569C147,569,151,560,151,548C151,512,124,477,74,448 Z"/>
</font>
<font horiz-adv-x="0"><font-face
font-family="fnt0"
units-per-em="1000"
ascent="673"
descent="-233"
/>
<missing-glyph horiz-adv-x="0"/>
<glyph unicode=" " horiz-adv-x="278" d="M0 0 Z"/>
<glyph unicode="A" horiz-adv-x="698" d="M525,637L120,110C81,59,48,23,-4,19L-8,-0L209,-0L213,19L194,19C139,19,106,49,147,102L278,271L503,271L503,93C503,41,477,19,399,19L395,-0L661,-0L665,19C600,19,581,37,581,77L581,637 ZM501,567L503,567L503,307L306,307 Z"/>
<glyph unicode="W" horiz-adv-x="958" d="M192,-16L225,-16L580,463L582,461L571,-16L607,-16L986,519C1024,573,1045,592,1080,603L1084,622L903,622L899,603C974,603,981,557,939,498L652,89L650,91L661,519C663,578,678,597,741,603L745,622L509,622L505,603C556,602,582,583,582,543L582,507L273,89L271,91L292,507C295,576,308,595,373,603L377,622L151,622L147,603C206,601,219,580,217,542 Z"/>
<glyph unicode="a" horiz-adv-x="406" d="M393,408C220,414,48,246,48,91C48,39,76,-12,105,-12C142,-12,250,101,273,129L275,127C260,67,246,-12,289,-12C311,-12,356,30,393,74L393,97C375,77,347,46,334,46C325,46,323,58,329,89 ZM281,157C198,74,158,38,143,38C126,38,109,67,109,111C109,178,141,262,180,301C213,334,257,353,321,357 Z"/>
<glyph unicode="c" horiz-adv-x="271" d="M257,89C225,49,186,25,156,25C120,25,98,54,98,100C98,169,142,367,207,367C235,367,249,341,282,341C297,341,307,354,307,372C307,394,288,408,256,408C129,408,36,206,36,91C36,29,70,-12,121,-12C164,-12,222,23,270,79 Z"/>
<glyph unicode="d" horiz-adv-x="438" d="M399,106C376,71,351,45,343,45C339,45,334,49,338,71L455,647C457,658,460,673,450,673C444,673,424,665,413,659L304,599L313,585L354,607C367,614,373,616,377,616C383,616,385,610,383,599L338,374C322,396,301,408,276,408C208,408,63,270,63,107C63,38,87,-12,120,-12C150,-12,222,51,289,144L291,142L272,50C264,9,271,-12,289,-12C317,-12,375,39,412,97 ZM299,185C245,103,183,36,160,36C139,36,125,66,125,113C125,233,204,379,262,379C290,379,312,359,327,321 Z"/>
<glyph unicode="e" horiz-adv-x="344" d="M305,78C257,42,219,25,190,25C122,25,100,97,122,182C238,216,350,267,350,343C350,385,321,408,269,408C145,408,49,250,49,124C49,47,92,-12,148,-12C190,-12,254,17,314,64 ZM292,344C292,316,282,285,257,260C241,244,195,219,126,201C154,321,196,387,255,387C280,387,292,373,292,344 Z"/>
<glyph unicode="f" horiz-adv-x="229" d="M125,363L74,73C70,49,51,-122,1,-172C-17,-190,-37,-201,-60,-201C-98,-201,-118,-157,-155,-157C-172,-157,-188,-171,-188,-187C-188,-212,-153,-233,-111,-233C-17,-233,97,-153,136,71L187,363L269,363L279,396L193,396L220,527C234,593,266,637,305,637C334,637,361,596,394,596C410,596,422,609,422,625C422,651,390,673,351,673C312,673,268,654,233,619C177,563,147,477,132,395C107,389,83,385,59,382L56,363 Z"/>
<glyph unicode="i" horiz-adv-x="240" d="M66,299L102,336C110,345,118,349,123,349C128,349,129,345,127,335L71,61C69,50,67,33,67,23C67,1,77,-12,94,-12C123,-12,175,39,218,90L205,101C178,69,152,40,142,40C131,40,132,52,136,73L192,347C202,397,192,408,176,408C150,408,96,358,56,311 ZM173,546C173,526,183,515,198,515C230,515,246,558,246,590C246,609,235,622,220,622C196,622,173,585,173,546 Z"/>
<glyph unicode="l" horiz-adv-x="229" d="M205,88C178,57,147,27,136,27C124,27,124,41,127,56L247,643C251,663,249,673,239,673C225,673,216,667,198,657L102,603L110,588C144,606,164,616,169,616C176,616,178,611,175,596L68,68C66,58,64,43,64,33C64,5,76,-12,97,-12C125,-12,169,21,217,77 Z"/>
<glyph unicode="n" horiz-adv-x="469" d="M162,194L198,373C203,399,191,408,182,408C157,408,92,341,55,285L68,275C94,313,114,335,121,335C126,335,128,327,125,312L62,7C59,-8,64,-12,76,-12L107,-12C117,-12,122,-6,124,5L155,158C209,227,265,293,296,324C324,352,340,362,351,362C363,362,372,351,366,318L300,61C288,15,301,-12,324,-12C360,-12,432,57,462,104L451,113C423,80,380,30,367,30C356,30,357,43,361,59L423,292C429,316,430,331,431,349C431,381,419,408,392,408C344,408,251,309,164,194L162,196 Z"/>
<glyph unicode="o" horiz-adv-x="396" d="M52,146C52,63,94,-12,141,-12C188,-12,377,71,377,261C377,368,315,408,286,408C226,408,52,308,52,146 ZM313,247C313,155,266,25,186,25C152,25,116,66,116,150C116,250,172,371,235,371C279,371,313,317,313,247 Z"/>
<glyph unicode="r" horiz-adv-x="271" d="M61,288C87,319,101,341,113,341C126,341,123,325,120,306L66,3C64,-6,65,-12,76,-12L107,-12C116,-12,123,-8,125,1L143,76C150,102,180,183,201,235C221,283,246,333,271,333C281,333,289,330,294,330C315,330,325,358,325,377C325,395,316,408,300,408C257,408,214,318,193,263L143,130C134,107,129,118,134,132C160,210,187,341,187,376C187,396,179,408,165,408C143,408,103,363,50,300 Z"/>
<glyph unicode="s" horiz-adv-x="302" d="M210,71C210,42,185,19,154,19C108,19,82,63,46,63C28,63,15,51,15,33C15,5,43,-12,91,-12C188,-12,249,36,249,113C249,200,139,248,139,311C139,342,171,378,199,378C238,378,235,321,266,321C282,321,293,335,293,353C293,383,265,408,233,408C170,408,93,335,93,276C93,203,210,141,210,71 Z"/>
<glyph unicode="t" horiz-adv-x="260" d="M284,396L206,396C215,437,232,486,252,525L236,525C186,446,143,404,89,380L85,363L136,363L81,90C77,70,73,43,73,28C73,3,86,-12,106,-12C135,-12,196,31,249,88L239,101C190,51,156,25,144,25C133,25,132,35,137,61L198,363L276,363 Z"/>
<glyph unicode="u" horiz-adv-x="469" d="M437,386C441,404,438,408,422,408L400,408C385,408,378,403,375,389L359,307C349,255,270,154,213,97C185,69,162,49,151,49C142,49,139,57,139,71C139,78,140,86,142,95L191,337C200,382,200,408,177,408C151,408,97,356,57,296L69,289C96,323,112,339,121,339C127,339,128,333,123,307L82,105C77,79,74,61,74,43C74,8,84,-12,102,-12C124,-12,173,35,221,83C240,102,285,147,336,219L339,219L314,92C309,65,305,39,305,25C305,-1,311,-12,324,-12C345,-12,407,46,453,104L441,115C410,76,389,56,379,56C372,56,370,60,372,68 Z"/>
<glyph unicode="v" horiz-adv-x="406" d="M52,285C80,317,100,340,111,340C117,340,122,331,119,313L88,124C85,105,81,61,81,35C81,3,88,-12,105,-12C172,-12,417,232,417,346C417,381,398,408,373,408C348,408,324,377,324,364C324,338,351,337,351,325C351,190,172,35,148,35C135,35,137,60,141,84L179,315C183,339,186,366,186,376C186,396,178,408,164,408C142,408,81,352,40,297 Z"/>
<glyph unicode="’" horiz-adv-x="292" d="M130,373C228,429,273,490,273,566C273,606,251,637,223,637C199,637,181,617,181,591C181,553,212,541,212,501C212,466,187,434,122,390 Z"/>
</font>
<font horiz-adv-x="1000"><font-face
font-family="fnt2"
units-per-em="1000"
ascent="831"
descent="-250"
/>
<missing-glyph horiz-adv-x="1000"/>
<glyph unicode=" " horiz-adv-x="212" d="M0 0 Z"/>
<glyph unicode="," horiz-adv-x="207" d="M78,-117C106,-70,150,41,174,126L76,116C65,43,38,-64,16,-124 Z"/>
<glyph unicode="." horiz-adv-x="207" d="M111,-11C147,-11,171,16,171,52C171,89,147,115,112,115C77,115,52,88,52,52C52,16,76,-11,110,-11 Z"/>
<glyph unicode="B" horiz-adv-x="542" d="M76,2C105,-2,151,-6,211,-6C321,-6,397,14,443,57C478,90,501,134,501,192C501,292,426,345,362,360L362,363C432,388,476,445,476,511C476,564,454,604,419,630C378,664,322,679,235,679C175,679,114,673,76,664 ZM163,606C177,609,200,612,240,612C328,612,387,580,387,502C387,437,333,388,242,388L163,388 ZM163,323L235,323C330,323,409,284,409,193C409,95,326,62,236,62C205,62,181,63,163,66 Z"/>
<glyph unicode="C" horiz-adv-x="580" d="M529,91C494,74,440,63,386,63C223,63,128,168,128,334C128,511,233,612,391,612C447,612,494,600,526,584L548,655C525,667,471,685,388,685C179,685,36,543,36,331C36,109,178,-11,368,-11C450,-11,515,5,546,21 Z"/>
<glyph unicode="D" horiz-adv-x="666" d="M75,2C120,-4,171,-6,234,-6C365,-6,469,28,533,91C595,153,630,243,630,353C630,462,595,541,534,596C475,651,386,679,261,679C192,679,129,673,75,665 ZM163,601C186,606,220,610,265,610C449,610,539,511,538,350C538,168,437,63,251,64C217,64,185,64,163,68 Z"/>
<glyph unicode="F" horiz-adv-x="487" d="M75,-0L163,-0L163,305L417,305L417,377L163,377L163,601L438,601L438,674L75,674 Z"/>
<glyph unicode="P" horiz-adv-x="532" d="M76,-0L163,-0L163,270C183,265,207,264,233,264C318,264,393,289,439,338C474,373,492,421,492,482C492,542,469,591,432,623C392,659,329,679,243,679C173,679,118,673,76,665 ZM163,603C178,606,207,610,245,610C341,610,404,567,404,477C404,386,341,334,235,334C207,334,182,336,163,341 Z"/>
<glyph unicode="a" horiz-adv-x="482" d="M414,297C414,394,378,495,229,495C168,495,109,478,69,453L89,394C123,417,170,430,216,430C315,431,326,358,326,318L326,308C139,309,35,245,35,128C35,58,85,-11,183,-11C252,-11,305,23,331,61L334,61L342,-0L421,-0C416,33,414,74,414,116 ZM328,163C328,154,327,144,324,135C310,94,269,54,205,54C161,54,123,80,123,138C123,232,232,249,328,247 Z"/>
<glyph unicode="b" horiz-adv-x="569" d="M73,125C73,82,72,33,69,-0L145,-0L150,80L152,80C189,16,244,-11,314,-11C422,-11,532,75,532,249C532,395,448,495,328,495C250,495,194,461,163,407L161,407L161,710L73,710 ZM161,281C161,295,163,307,166,318C183,384,239,426,299,426C393,426,443,343,443,245C443,134,389,59,296,59C233,59,181,101,164,162C162,172,161,183,161,194 Z"/>
<glyph unicode="d" horiz-adv-x="564" d="M403,710L403,422L401,422C380,460,330,495,255,495C138,495,37,397,38,235C38,88,129,-11,246,-11C325,-11,383,30,410,84L412,84L416,-0L495,-0C492,33,491,82,491,125L491,710 ZM403,203C403,189,402,177,399,165C383,100,329,60,270,60C176,60,127,141,127,240C127,346,181,426,272,426C338,426,386,380,399,325C402,313,403,299,403,287 Z"/>
<glyph unicode="e" horiz-adv-x="501" d="M462,226C464,236,465,250,465,268C465,357,424,496,266,496C125,496,38,381,38,234C38,89,128,-10,276,-10C353,-10,407,7,438,21L422,83C390,70,351,59,288,59C200,59,125,108,123,227 ZM124,290C131,351,169,433,259,433C357,433,381,345,380,290 Z"/>
<glyph unicode="f" horiz-adv-x="292" d="M169,-0L169,417L285,417L285,484L168,484L168,510C168,584,188,650,262,650C288,650,305,645,319,639L330,707C313,714,287,721,255,721C215,721,171,708,138,676C97,637,81,575,81,507L81,484L14,484L14,417L81,417L81,-0 Z"/>
<glyph unicode="g" horiz-adv-x="559" d="M487,352C487,411,488,450,491,484L413,484L410,412L408,412C386,452,341,495,257,495C145,495,38,403,38,239C38,104,124,2,244,2C319,2,372,38,398,83L400,83L400,30C400,-93,334,-140,244,-140C184,-140,134,-122,102,-101L80,-169C119,-195,183,-209,241,-209C302,-209,370,-194,418,-151C464,-108,487,-41,487,71 ZM399,207C399,191,397,174,392,160C374,103,325,69,270,69C176,69,127,149,127,243C127,356,187,427,271,427C336,427,378,385,394,333C398,321,399,308,399,294 Z"/>
<glyph unicode="h" horiz-adv-x="555" d="M73,-0L161,-0L161,292C161,309,162,322,167,334C184,382,228,422,285,422C368,422,397,357,397,278L397,-0L485,-0L485,288C485,455,381,495,316,495C283,495,252,486,226,470C199,456,177,433,163,408L161,408L161,710L73,710 Z"/>
<glyph unicode="i" horiz-adv-x="234" d="M161,-0L161,484L73,484L73,-0 ZM116,573C151,573,173,599,173,630C173,661,151,686,117,686C83,686,60,661,60,630C60,599,82,573,115,573 Z"/>
<glyph unicode="k" horiz-adv-x="469" d="M161,710L73,710L73,-0L161,-0L161,182L206,233L372,-0L479,-0L266,285L453,484L348,484L205,317C191,301,175,279,163,262L161,262 Z"/>
<glyph unicode="l" horiz-adv-x="234" d="M73,-0L161,-0L161,710L73,710 Z"/>
<glyph unicode="n" horiz-adv-x="555" d="M73,-0L161,-0L161,292C161,306,163,322,167,333C183,382,228,423,285,423C368,423,397,357,397,279L397,-0L485,-0L485,289C485,455,381,495,314,495C234,495,178,450,154,405L152,405L147,484L69,484C72,444,73,404,73,353 Z"/>
<glyph unicode="o" horiz-adv-x="549" d="M271,-11C386,-11,511,67,511,247C511,394,417,495,278,495C145,495,38,400,38,238C38,85,140,-11,270,-11 ZM272,55C187,55,127,135,127,241C127,333,172,429,275,429C379,429,420,326,420,244C420,134,357,55,273,55 Z"/>
<glyph unicode="r" horiz-adv-x="327" d="M73,-0L161,-0L161,258C161,273,162,287,164,300C176,365,220,412,282,412C294,412,303,411,313,410L313,492C305,494,298,495,289,495C230,495,176,454,154,389L151,389L147,484L70,484C73,439,74,390,74,333 Z"/>
<glyph unicode="s" horiz-adv-x="396" d="M40,23C74,3,123,-11,176,-11C289,-11,356,49,356,135C356,208,312,250,229,281C166,305,138,323,138,364C138,400,166,430,218,430C263,430,298,413,317,402L338,465C312,482,269,495,220,495C117,495,53,431,53,353C53,295,94,248,182,216C246,192,271,169,271,127C271,86,241,55,178,55C134,55,88,73,61,89 Z"/>
<glyph unicode="t" horiz-adv-x="331" d="M93,573L93,484L18,484L18,417L93,417L93,153C93,96,103,53,127,26C148,3,181,-11,222,-11C256,-11,283,-5,300,1L296,68C283,64,269,62,245,62C196,62,179,96,179,156L179,417L305,417L305,484L179,484L179,600 Z"/>
<glyph unicode="u" horiz-adv-x="551" d="M478,484L390,484L390,188C390,171,387,155,382,143C366,103,325,62,266,62C187,62,158,125,158,217L158,484L70,484L70,201C70,32,161,-11,237,-11C323,-11,375,40,397,79L399,79L404,-0L482,-0C479,38,478,82,478,132 Z"/>
<glyph unicode="v" horiz-adv-x="481" d="M13,484L197,-0L281,-0L471,484L379,484L285,213C269,168,255,128,244,88L241,88C231,128,218,168,202,213L107,484 Z"/>
<glyph unicode="w" horiz-adv-x="736" d="M18,484L164,-0L244,-0L322,230C339,282,354,333,366,391L368,391C380,334,394,286,411,231L485,-0L565,-0L721,484L634,484L565,241C549,184,536,133,528,84L525,84C514,133,500,185,482,242L407,484L333,484L254,238C238,185,222,133,211,84L208,84C199,134,186,185,173,239L108,484 Z"/>
<glyph unicode="y" horiz-adv-x="471" d="M9,484L187,37C192,27,194,20,194,15C194,9,191,3,187,-6C166,-51,137,-85,113,-104C87,-127,58,-141,36,-147L58,-221C80,-217,122,-202,166,-165C226,-112,269,-27,332,139L464,484L371,484L275,200C263,165,253,128,244,99L242,99C234,128,222,166,210,198L105,484 Z"/>
</font>
<font horiz-adv-x="0"><font-face
font-family="fnt3"
units-per-em="2048"
ascent="927"
descent="-218"
/>
<missing-glyph horiz-adv-x="0"/>
<glyph unicode="." horiz-adv-x="569" d="M178,217L392,217L392,-0L178,-0 Z"/>
<glyph unicode="c" horiz-adv-x="1024" d="M977,385L977,385Q949,183,834,77Q719,-29,528,-29Q315,-29,188,124Q61,277,61,536Q61,795,192,948Q324,1102,546,1102Q739,1102,854,996Q969,891,977,706L977,706L804,706L804,706Q793,821,724,884Q655,947,540,947Q404,947,326,837Q249,728,249,536Q249,332,321,229Q393,126,535,126Q640,126,710,193Q781,261,804,385L804,385 Z"/>
<glyph unicode="d" horiz-adv-x="1138" d="M541,-29Q326,-29,199,131Q72,292,72,565Q72,806,195,954Q318,1102,516,1102Q713,1102,828,935L842,915L842,915L842,1470L842,1470L932,1470L1022,1470L1022,1470L1022,-0L1022,-0L939,-0L855,-0L855,-0L855,146L855,146L832,113Q721,-29,541,-29 ZM551,940Q400,940,330,843Q260,747,260,537Q260,339,335,232Q411,125,551,125Q682,125,762,223Q842,322,842,484Q842,703,766,821Q691,940,551,940 Z"/>
<glyph unicode="f" horiz-adv-x="569" d="M357,921L357,921L357,-0L357,-0L267,-0L177,-0L177,-0L177,921L177,921L29,921L29,1070L177,1070L177,1070L177,1252Q177,1371,247,1431Q317,1491,457,1491L536,1488L536,1326L465,1329Q413,1329,385,1295Q357,1262,357,1200L357,1070L357,1070L536,1070L536,921 Z"/>
<glyph unicode="m" horiz-adv-x="1705" d="M133,-0L133,1070L133,1070L218,1070L304,1070L304,1070L304,911L304,911L304,911L341,959Q462,1102,630,1102Q774,1102,859,1017Q897,979,918,930L918,930L947,967Q1063,1102,1224,1102Q1392,1102,1483,1010Q1575,919,1575,751L1575,-0L1575,-0L1485,-0L1395,-0L1395,-0L1395,690Q1395,812,1345,875Q1295,938,1199,938Q1082,938,1013,847Q944,756,944,601L944,601L944,-0L944,-0L854,-0L764,-0L764,-0L764,733Q764,833,718,885Q673,938,586,938Q466,938,389,836Q313,734,313,573L313,573L313,-0L313,-0L223,-0L133,-0 Z"/>
<glyph unicode="n" horiz-adv-x="1138" d="M133,-0L133,1070L133,1070L218,1070L304,1070L304,1070L304,912L304,912L304,912L344,965Q461,1102,637,1102Q814,1102,910,1006Q1006,910,1006,733L1006,-0L1006,-0L916,-0L826,-0L826,-0L826,672Q826,813,771,875Q717,938,595,938Q465,938,389,839Q313,741,313,573L313,573L313,-0L313,-0L223,-0L133,-0 Z"/>
<glyph unicode="o" horiz-adv-x="1138" d="M569,-29Q347,-29,209,127Q72,283,72,536Q72,790,209,946Q347,1102,569,1102Q793,1102,930,946Q1067,790,1067,536Q1067,283,930,127Q793,-29,569,-29 ZM569,126Q711,126,795,237Q879,348,879,536Q879,724,795,835Q711,947,569,947Q427,947,343,835Q260,724,260,536Q260,348,343,237Q427,126,569,126 Z"/>
<glyph unicode="p" horiz-adv-x="1138" d="M119,1070L119,1070L204,1070L290,1070L290,1070L290,918L290,918L299,931Q415,1102,604,1102Q814,1102,936,957Q1059,813,1059,567Q1059,288,935,129Q812,-29,593,-29Q412,-29,305,110L299,118L299,118L299,-423L299,-423L209,-423L119,-423L119,-423 ZM584,127Q725,127,798,233Q871,340,871,544Q871,745,801,841Q731,938,585,938Q436,938,367,829Q299,720,299,484L299,484L299,484L299,484Q299,313,373,220Q447,127,584,127 Z"/>
<glyph unicode="r" horiz-adv-x="681" d="M158,-0L158,1070L158,1070L243,1070L329,1070L329,1070L329,887L329,887L329,887Q352,930,378,965Q480,1102,629,1102Q654,1102,680,1093L680,909L643,910Q497,910,417,822Q338,735,338,573L338,573L338,-0L338,-0L248,-0L158,-0 Z"/>
<glyph unicode="t" horiz-adv-x="569" d="M526,1Q434,-13,392,-13Q274,-13,225,39Q177,91,177,218L177,923L177,923L29,923L29,1070L177,1070L177,1070L177,1370L357,1370L357,1070L357,1070L526,1070L526,923L357,923L357,923L357,218Q357,182,385,161Q414,140,462,140L526,140 Z"/>
<glyph unicode="w" horiz-adv-x="1478" d="M333,-0L29,1070L29,1070L128,1070L227,1070L227,1070L432,218L432,218L432,218L641,1070L741,1070L841,1070L1056,212L1056,212L1056,212L1273,1070L1273,1070L1362,1070L1452,1070L1452,1070L1149,-0L1053,-0L956,-0L735,836L735,836L735,836L526,-0L430,-0 Z"/>
</font>
</defs>
<style type="text/css">
<![CDATA[
#page3 { z-index:3; }
#page3 .ps04 { stroke:#97B3FC;fill:none; }
#page3 .ps00 { stroke:none;fill:#000000; }
#page3 .ps03 { stroke:none;fill:#000000;fill-rule:evenodd; }
#page3 .ps02 { stroke:none;fill:#FF981F;fill-rule:evenodd; }
#page3 .ps01 { stroke:none;fill:#FFC178;fill-rule:evenodd; }
#page3 .ps10 { stroke-width:0.000001; }
#page3 .ps217 {
letter-spacing:-0.00132px;word-spacing:0.15732;font-family:fnt1;font-size:12px; }
#page3 .ps21 {
letter-spacing:-0.00132px;word-spacing:0.3852;font-family:fnt1;font-size:12px; }
#page3 .ps26 {
letter-spacing:-0.00132px;word-spacing:2.5296;font-family:fnt1;font-size:12px; }
#page3 .ps222 {
letter-spacing:-0.0024px;word-spacing:0.4224;font-family:fnt1;font-size:12px; }
#page3 .ps23 {
letter-spacing:-0.0024px;word-spacing:1.4064;font-family:fnt1;font-size:12px; }
#page3 .ps218 {
letter-spacing:-0.00372px;word-spacing:0.9216;font-family:fnt1;font-size:12px; }
#page3 .ps220 {
letter-spacing:-0.00372px;word-spacing:1.2924;font-family:fnt1;font-size:12px; }
#page3 .ps226 {
letter-spacing:-0.00372px;word-spacing:11.692;font-family:fnt1;font-size:12px; }
#page3 .ps229 {
letter-spacing:-0.0048px;word-spacing:0.0276;font-family:fnt1;font-size:12px; }
#page3 .ps210 {
letter-spacing:-0.0048px;word-spacing:0.3276;font-family:fnt1;font-size:12px; }
#page3 .ps228 {
letter-spacing:-0.0048px;word-spacing:0.6888;font-family:fnt1;font-size:12px; }
#page3 .ps29 {
letter-spacing:-0.0048px;word-spacing:0;font-family:fnt1;font-size:12px; }
#page3 .ps28 {
letter-spacing:-0.0048px;word-spacing:2.3676;font-family:fnt1;font-size:12px; }
#page3 .ps27 {
letter-spacing:-0.0048px;word-spacing:2.5488;font-family:fnt1;font-size:12px; }
#page3 .ps216 {
letter-spacing:-0.006px;word-spacing:0.1752;font-family:fnt1;font-size:12px; }
#page3 .ps212 {
letter-spacing:-0.00948px;word-spacing:1.7796;font-family:fnt1;font-size:12px; }
#page3 .ps231 {
letter-spacing:-0.028438px;word-spacing:0;font-family:fnt0;font-size:10.98px; }
#page3 .ps213 {
letter-spacing:0.0024px;word-spacing:0.0216;font-family:fnt1;font-size:12px; }
#page3 .ps223 {
letter-spacing:0.0024px;word-spacing:0.2016;font-family:fnt1;font-size:12px; }
#page3 .ps224 {
letter-spacing:0.0024px;word-spacing:0.8016;font-family:fnt1;font-size:12px; }
#page3 .ps22 {
letter-spacing:0.00372px;word-spacing:0.3924;font-family:fnt1;font-size:12px; }
#page3 .ps221 {
letter-spacing:0.00372px;word-spacing:0.39;font-family:fnt1;font-size:12px; }
#page3 .ps20 {
letter-spacing:0.004392px;word-spacing:0.0034038;font-family:fnt0;font-size:10.98px; }
#page3 .ps232 {
letter-spacing:0.0048px;word-spacing:0.0192;font-family:fnt1;font-size:12px; }
#page3 .ps219 {
letter-spacing:0.0048px;word-spacing:3.7452;font-family:fnt1;font-size:12px; }
#page3 .ps215 {
letter-spacing:0.006px;word-spacing:1.1519;font-family:fnt1;font-size:12px; }
#page3 .ps24 {
letter-spacing:0.006px;word-spacing:1.4172;font-family:fnt1;font-size:12px; }
#page3 .ps25 {
letter-spacing:0.0072px;word-spacing:0.00132;font-family:fnt1;font-size:12px; }
#page3 .ps214 {
letter-spacing:0px;word-spacing:0.01212;font-family:fnt1;font-size:12px; }
#page3 .ps227 {
letter-spacing:0px;word-spacing:0.68412;font-family:fnt1;font-size:12px; }
#page3 .ps230 {
letter-spacing:0px;word-spacing:0;font-family:fnt1;font-size:12px; }
#page3 .ps234 {
letter-spacing:0px;word-spacing:0;font-family:fnt2;font-size:18px; }
#page3 .ps233 {
letter-spacing:0px;word-spacing:0;font-family:fnt2;font-size:21px; }
#page3 .ps235 {
letter-spacing:0px;word-spacing:0;font-family:fnt3;font-size:12.947px; }
#page3 .ps225 {
letter-spacing:0px;word-spacing:1.7088;font-family:fnt1;font-size:12px; }
#page3 .ps211 {
letter-spacing:0px;word-spacing:2.3641;font-family:fnt1;font-size:12px; }
]]>
</style>
<g transform="matrix(1 0 0 -1 -0 540)">
<g id="q1" class="">
<text transform="matrix(1 0 0 -1 57.60001 494.16)"><tspan x="0,7.6684,10.187,12.827,15.807,19.588,22.799,26.119,29.179,36.848,41.662,46.124,49.905,55.059" y="-0" class="ps00 ps20">Alice’s Advent</tspan></text>
<text transform="matrix(1 0 0 -1 115.5992 494.16)"><tspan xml:space="preserve" x="0,5.154,8.134,11.915,15.236,18.296,20.936,26.09,29.15,39.673,44.026,49.18,53.993,57.775,60.755,63.274,67.736,72.89,77.703" y="-0" class="ps00 ps20">ures in Wonderland </tspan></text>
<text transform="matrix(1 0 0 -1 273.58215 494.16)"><tspan xml:space="preserve" x="0" y="-0" class="ps00 ps20"> </tspan></text>
<text transform="matrix(1 0 0 -1 57.60005 457.31995)"><tspan xml:space="preserve" x="0,3.1187,6.6214,9.74,13.46,18.211,24.461,30.46,34.18,40.179,46.429,50.424,56.675,59.793,66.044,71.671,75.39,84.269,87.388,90.891,97.141,100.86,105.98,112.23,116.23,119.35,125.6,129.22,132.34,135.84,141.47,144.59" y="-0" class="ps00 ps21">it, and burning with curiosity, </tspan></text>
<text transform="matrix(1 0 0 -1 205.92006 457.31995)"><tspan xml:space="preserve" x="0,3.6277,9.8834,15.143,18.875,22.875,27.631,33.886,37.619,42.374,47.502,51.502,57.757,61.385,65.013,68.745,72.253,78.508,83.768,87.5,90.756,93.88,99.139,102.02,108.03,111.76,116.51,119.77,123.28,128.54,132.54" y="-0" class="ps00 ps22">she ran across the field after </tspan></text>
<text transform="matrix(1 0 0 -1 57.60005 441.06)"><tspan x="0,3.1176,6.6192,9.7368,14.477,19.226,25.476" y="-0" class="ps00 ps23">it, and</tspan></text>
<text transform="matrix(1 0 0 -1 89.13622 441.06)"><tspan xml:space="preserve" x="0,4.74,7.9896,14.239,18.233,21.734,27.984,34.234,38.983,42.485,47.738,50.616,56.242,60.982,69.859,74.609,78.23,82.97" y="-0" class="ps00 ps23"> fortunately was j</tspan></text>
<text transform="matrix(1 0 0 -1 175.16707 441.06)"><tspan x="0" y="-0" class="ps00 ps23">u</tspan></text>
<text transform="matrix(1 0 0 -1 181.40709 441.06)"><tspan x="0,3.6216,7.1232,11.863" y="-0" class="ps00 ps23">st i</tspan></text>
<text transform="matrix(1 0 0 -1 196.45041 441.06)"><tspan x="0" y="-0" class="ps00 ps23">n</tspan></text>
<text transform="matrix(1 0 0 -1 202.69043 441.06)"><tspan xml:space="preserve" x="0" y="-0" class="ps00 ps23"> </tspan></text>
<text transform="matrix(1 0 0 -1 207.48012 441.06)"><tspan xml:space="preserve" x="0,3.51,6.636,16.146,21.408,26.167,29.677,35.935,40.694,44.324,49.586,54.848,59.608,62.734,66.244,71.003,77.009,83.267,89.273,94.032,100.04,106.3,115.18,121.44,126.2,130.96" y="-0" class="ps00 ps24">time to see it pop down a </tspan></text>
<text transform="matrix(1 0 0 -1 57.60005 424.80005)"><tspan x="0,2.8872,7.6464,11.65,17.285,22.548,25.893,29.896,34.655,40.662,46.669,49.797,53.308,58.067,64.326,70.585,73.473,78.736,82.08,88.339,94.599,100.61,105.87,109.87,113.22" y="-0" class="ps00 ps25">large rabbit-hole under t</tspan></text>
<text transform="matrix(1 0 0 -1 174.23523 424.80005)"><tspan x="0" y="-0" class="ps00 ps25">h</tspan></text>
<text transform="matrix(1 0 0 -1 180.47516 424.80005)"><tspan xml:space="preserve" x="0,5.2632,8.6077,14.867,20.13,26.137,31.773,37.036,40.163" y="-0" class="ps00 ps25">e hedge. </tspan></text>
<text transform="matrix(1 0 0 -1 72.00002 408.5401)"><tspan x="0,3.9947,10.245,16.11,20.86,27.111,33.362,36.864,43.115,48.37,52.364,58.229,67.731,73.982,83.485,88.739,94.99,98.493,104.36,110.36,116.61,125.49,131.74,137.6,146.48" y="-0" class="ps00 ps26">In another moment down we</tspan></text>
<text transform="matrix(1 0 0 -1 223.74007 408.5401)"><tspan xml:space="preserve" x="0,6.2472,9.7464,15.626,23.746,26.621,29.736,34.855,40.106,45.986,50.734,53.981,57.48,62.731,66.722,72.602,75.718,79.217,82.332,88.212,94.459,99.71,105.45,110.7,114.7" y="-0" class="ps00 ps27">nt Alice after it, never </tspan></text>
<text transform="matrix(1 0 0 -1 57.60005 392.28015)"><tspan x="0,6.2472,12.494,17.614,22.865,28.564,33.683,39.93" y="-0" class="ps00 ps28">once con</tspan></text>
<text transform="matrix(1 0 0 -1 103.82912 392.28015)"><tspan x="0" y="-0" class="ps00 ps28">s</tspan></text>
<text transform="matrix(1 0 0 -1 107.42796 392.28015)"><tspan x="0,3.1152" y="-0" class="ps00 ps28">id</tspan></text>
<text transform="matrix(1 0 0 -1 116.60204 392.28015)"><tspan x="0,5.2512,9.2424,12.358,18.605,24.228,29.927,36.174,42.421,51.296,56.995,60.11,66.358,72.056,75.556,81.803,87.054,92.753,101.63,107.88,111.87,114.74,120.74,126.44,130.05,136.3,141.55,147.25,156.13,160.87,164.49,170.19,173.69" y="-0" class="ps00 ps28">ering how in the world she was to</tspan></text>
<text transform="matrix(1 0 0 -1 296.59341 392.28015)"><tspan xml:space="preserve" x="0,5.6988,11.322,16.573,20.072,25.771,32.018,38.266,41.765" y="-0" class="ps00 ps28"> get out </tspan></text>
<text transform="matrix(1 0 0 -1 57.60005 376.0202)"><tspan xml:space="preserve" x="0,4.7472,10.37,15.118,18.233,24.48,27.595" y="-0" class="ps00 ps29">again. </tspan></text>
<text transform="matrix(1 0 0 -1 72.00002 359.76025)"><tspan x="0,8.1192,14.366,19.618,23.276,27.268,32.015,38.01,44.005,47.12,50.62,55.367,61.614,67.861,70.736,75.988,79.646,88.522,93.773,100.02,103.52,107.18,110.8,114.3,118.29,123.03,126.15,131.77,138.02,141.52,145.18,151.43,157.67,161.33,164.21,167.32,173.32,178.57,182.23,186.97,190.63,194.13,200.38,206.63,212.87,218.13,221,224.66,227.91" y="-0" class="ps00 ps210">The rabbit-hole went straight on like a tunnel fo</tspan></text>
<text transform="matrix(1 0 0 -1 306.08694 359.76025)"><tspan xml:space="preserve" x="0,3.9912,7.65,11.269,17.516,27.016,32.267" y="-0" class="ps00 ps210">r some </tspan></text>
<text transform="matrix(1 0 0 -1 57.60005 343.50031)"><tspan xml:space="preserve" x="0,8.88,13.632,19.26,22.38,28.08,32.832,39.084,45.084,50.784,54.288,60.54,65.796,72.048,77.748,83.748,86.868,92.868,98.868,104.12,110.12,115.82,119.45,125.7,131.7,137.7,142.96,149.21,152.09,157.72,163.42,169.42,175.67,184.55,190.8,193.92,199.62,203.24,209.5,215.2,218.82,225.07,231.07,237.07,242.33,248.58,251.46,257.09,262.79,266.29,272.54,277.3,280.8" y="-0" class="ps00 ps211">way, and then dipped suddenly down, so suddenly that </tspan></text>
<text transform="matrix(1 0 0 -1 57.60005 327.24036)"><tspan x="0,8.1145,10.985,14.096,19.21,24.457,29.563,35.805,40.548,46.538,51.644,57.887,64.129,67.624,72.73,77.473,82.579,92.073,98.316,107.81" y="-0" class="ps00 ps212">Alice had not a mome</tspan></text>
<text transform="matrix(1 0 0 -1 170.74963 327.24036)"><tspan x="0,6.2425,9.737,14.843,18.338,24.58,29.686,33.181,39.423,42.534,48.776,54.767,59.873,64.616,70.606,76.849,83.091,86.586,91.692,95.306,98.801,105.04,111.03,117.02" y="-0" class="ps00 ps212">nt to think about stoppi</tspan></text>
<text transform="matrix(1 0 0 -1 290.95313 327.24036)"><tspan xml:space="preserve" x="0,6.2425,11.861,16.967,23.21,28.456,32.443,36.057,41.304,44.174,47.417" y="-0" class="ps00 ps212">ng herself </tspan></text>
<text transform="matrix(1 0 0 -1 57.60005 310.98041)"><tspan x="0,6.0024,11.261,14.515,20.77,24.768,30.026,33.386,37.013,43.267,48.526,51.886,55.14" y="-0" class="ps00 ps213">before she fo</tspan></text>
<text transform="matrix(1 0 0 -1 118.91982 310.98041)"><tspan x="0,6.2544,12.509,18.511,21.871,28.126,33.384,37.382,41.009,46.267,49.15,52.404,55.764" y="-0" class="ps00 ps213">und herself f</tspan></text>
<text transform="matrix(1 0 0 -1 177.86357 310.98041)"><tspan x="0" y="-0" class="ps00 ps213">a</tspan></text>
<text transform="matrix(1 0 0 -1 182.60355 310.98041)"><tspan x="0,2.8824,5.7648,8.8872" y="-0" class="ps00 ps213">llin</tspan></text>
<text transform="matrix(1 0 0 -1 197.70009 310.98041)"><tspan xml:space="preserve" x="0,5.628,8.9761,14.976,21.228,30.108,36.36,39.708,44.46,47.808,53.556,58.812,62.808,68.436,71.784,77.784,83.04,88.296,94.296,97.645,106.52,111.78,114.66,117.54,120.66" y="-0" class="ps00 ps214">g down a very deep well. </tspan></text>
<text transform="matrix(1 0 0 -1 72.00002 294.72046)"><tspan xml:space="preserve" x="0,7.134,10.26,13.77,20.028,25.29,29.292,33.786,37.296,43.554,48.816,53.31,62.196,67.458,70.344,73.23,77.724,86.61,91.368,94.998,99.492,105.25,110.51,114.51,120.14,124.64,130.64,135.91,141.17,147.17,150.3,154.79,161.05,165.05,169.55,173.18,179.44,184.7,189.19,192.45,197.71,200.6,203.48,207.98,213.73,218.99,222.99,228.63,233.12,236.75,239.64,245.9,254.78,257.67,263.3,266.43" y="-0" class="ps00 ps215">Either the well was very deep, or she fell very slowly, </tspan></text>
<text transform="matrix(1 0 0 -1 57.60005 278.46051)"><tspan x="0,3.246,9.492,13.482,16.987,20.605,26.851,32.101,35.606,41.852,46.598" y="-0" class="ps00 ps216">for she had</tspan></text>
<text transform="matrix(1 0 0 -1 110.25804 278.46051)"><tspan xml:space="preserve" x="0,3.5052,9.4992,12.373,17.623,23.869,27.367,32.989,36.494,42.74,45.986,49.492,52.99" y="-0" class="ps00 ps216"> plenty of ti</tspan></text>
<text transform="matrix(1 0 0 -1 166.42719 278.46051)"><tspan x="0,9.498,14.748,18.253,22.999,26.617,30.122,33.74" y="-0" class="ps00 ps216">me as sh</tspan></text>
<text transform="matrix(1 0 0 -1 206.39998 278.46051)"><tspan x="0,5.2547,8.7467" y="-0" class="ps00 ps217">e w</tspan></text>
<text transform="matrix(1 0 0 -1 224.08662 278.46051)"><tspan x="0" y="-0" class="ps00 ps217">e</tspan></text>
<text transform="matrix(1 0 0 -1 229.36655 278.46051)"><tspan x="0,6.2507,9.7534,13.245,19.244,25.495,34.373,40.624,44.116,47.619,53.869,57.361,60.24,66.491,72.741,78.74,82.232,86.983" y="-0" class="ps00 ps217">nt down to look ab</tspan></text>
<text transform="matrix(1 0 0 -1 322.40982 278.46051)"><tspan xml:space="preserve" x="0,6.2507,12.501,16.004" y="-0" class="ps00 ps217">out </tspan></text>
<text transform="matrix(1 0 0 -1 57.60005 262.26044)"><tspan xml:space="preserve" x="0,6.2483,11.501,15.493,19.747,24.495,30.743,36.74,40.993,44.494,50.742,54.996,63.872,70.12,76.369,82.365,87.617,91.61,95.863,104.74,110.99,115.74,119.24,123.49,132.37,137.12,140.74,144.99,150.61,156.86,159.98,166.23,171.85,176.1,179.6,185.85,190.11,196.36,201.1,207.1,213.1,218.35,224.6,228.85,235.1,240.35,246.23,249.73,252.84,257.1,263.47,266.58,270.57,274.19,277.7,280.81" y="-0" class="ps00 ps218">her and to wonder what was going to happen next. First, </tspan></text>
<text transform="matrix(1 0 0 -1 57.60005 246.00049)"><tspan xml:space="preserve" x="0,3.6288,9.8856,15.146,22.232,25.741,29.742,32.867,38.128,44.132,51.218,54.727,60.984,68.07,70.955,77.212,83.468,89.473,96.559,102.56,108.82,117.71,123.96,131.05,135.81,142.06,148.07,155.15,164.66,169.42,175.42,180.68,187.77,194.03,200.28,203.79,210.88,219.76,226.02,230.78,234.29,241.37,245,251.26,256.52,263.6,272.49,277.25,280.87" y="-0" class="ps00 ps219">she tried to look down and make out what she was </tspan></text>
<text transform="matrix(1 0 0 -1 57.60005 229.74054)"><tspan x="0,5.1203,11.369,20.869,23.985,30.233,35.858,40.482,43.983,50.231,53.347,57.972,63.968,70.216,73.717,78.341,81.458,84.958,89.583,98.459" y="-0" class="ps00 ps220">coming to, but it wa</tspan></text>
<text transform="matrix(1 0 0 -1 160.85985 229.74054)"><tspan x="0,3.6203,8.245,11.745,17.994,24.242,28.866,34.863,39.611,43.603,49.6,54.224,57.725,63.973,68.598,72.218,77.47,82.722,87.347,92.095,98.344,103.97,107.47,113.72,116.83,123.08,128.71,131.82,136.45,139.95,146.19,151.45,157.7,162.32,165.94,172.19" y="-0" class="ps00 ps220">s too dark to see anything; then she</tspan></text>
<text transform="matrix(1 0 0 -1 338.39012 229.74054)"><tspan xml:space="preserve" x="0" y="-0" class="ps00 ps220"> </tspan></text>
<text transform="matrix(1 0 0 -1 57.60005 213.48059)"><tspan x="0,2.8837,9.1394,15.395,21.399,26.659,32.662,36.392,41.148,44.655,48.385,51.893,58.149,63.408,67.138,70.766,73.89,79.893,85.153,88.781,92.51,98.766,102.02,105.75,109.26,115.51,120.77,124.5,133.39" y="-0" class="ps00 ps221">looked at the sides of the we</tspan></text>
<text transform="matrix(1 0 0 -1 196.26015 213.48059)"><tspan xml:space="preserve" x="0,2.8776,5.7552,8.8728,12.629,17.378,23.628,29.626,33.382,39.631,45.881,49.382,52.5,57.622,62.875,68.873,72.629,76.13,82.38,87.13,90.631,94.387,97.889,104.14,109.39,115.02,118.77,127.65,132.9,136.9,142.15" y="-0" class="ps00 ps222">ll, and noticed that they were </tspan></text>
<text transform="matrix(1 0 0 -1 57.60005 197.22064)"><tspan x="0,3.2544,6.3768,9.2592,12.142,17.4,23.402,26.942,35.825,38.947,42.454,48.708,52.248,57.374,63.629,69.631,75.634,81.888,86.642,90.641,96.643,100.27,103.81,108.56,114.82,120.82,124.36,130.36,136.62,142.87,148.87,153.63,157.26,163.51,168.77,171.65,177.4,182.66,186.29,189.41,192.95,199.2,204.46,208.46,213.72,217.26,222.01,228.27,234.27,237.81,241.32,247.57,252.83,256.83,262.08,265.62,269.25,275.51" y="-0" class="ps00 ps223">filled with cupboards and book-shelves; here and there she</tspan></text>
<text transform="matrix(1 0 0 -1 338.4445 197.22064)"><tspan xml:space="preserve" x="0" y="-0" class="ps00 ps223"> </tspan></text>
<text transform="matrix(1 0 0 -1 57.60005 180.96069)"><tspan xml:space="preserve" x="0,3.6264,8.3808,17.263,21.403,30.91,35.664,41.666,45.293,49.433,54.187,60.442,66.444,70.584,76.586,79.709,84.835,88.342,94.596,98.594,103.85,107.48,111.62,117.87,124.13,130.38,136.01,140.15,146.41,152.41,158.66,164.92,169.06,175.06,180.32,185.95,189.58,192.7,196.84,202.72,208.98,214.23,218.37,221.88,228.13,234.39,240.39,244.53,250.53,256.79,265.67,271.92,276.06,280.82" y="-0" class="ps00 ps224">saw maps and pictures hung upon pegs. She took down a </tspan></text>
<text transform="matrix(1 0 0 -1 57.60005 164.70074)"><tspan xml:space="preserve" x="0,3,7.752,11.748,16.793,20.045,24.041,30.293,39.797,44.842,51.094,57.346,62.602,67.646,73.898,77.15,82.195,85.699,91.951,97.207,102.25,105.88,112.13,117.38,120.26,126.01,131.27,134.89,139.94,144.69,148.31,153.36,156.98,163.23,168.49,173.53,179.53,184.29,187.91,191.53,196.79,202.79,205.91,210.96,214.08,217.58,222.62,231.5,236.26,239.88,244.92,247.8,252.56,258.56,263.81,266.69,269.57,274.83,280.83" y="-0" class="ps00 ps225">jar from one of the shelves as she passed; it was labelled </tspan></text>
<text transform="matrix(1 0 0 -1 57.60005 148.4408)"><tspan xml:space="preserve" x="0,3.1163,12.989,22.609,30.729,40.481,49.358,56.482,71.506,82.506,90.626,100.25,111.25,119.37,125.99,134.11,143.22,150.35,153.46,156.58,171.6,177.6,183.85,187.35,202.37,205.87,212.12,227.15,233.39,238.65,242.64,257.66,263.29,267.28,272.53,277.28,280.78" y="-0" class="ps00 ps226">‘ORANGE MARMALADE’, but to her great </tspan></text>
<text transform="matrix(1 0 0 -1 57.60005 132.18085)"><tspan x="0,6,9.12,12.744,17.496,23.496,29.496,35.748,38.868,45.12,48.624,58.128,63.384,69.636,73.14,77.16,80.28,83.784,87.804,96.684,101.44,105.06,109.08" y="-0" class="ps00 ps227">disappointment it was e</tspan></text>
<text transform="matrix(1 0 0 -1 172.02029 132.18085)"><tspan x="0" y="-0" class="ps00 ps227">m</tspan></text>
<text transform="matrix(1 0 0 -1 181.50031 132.18085)"><tspan xml:space="preserve" x="0,6,9.504,15.132,18.252,22.272,25.896,32.148,37.404,41.424,47.424,50.544,56.544,60.564,66.816,73.068,76.572,80.592,83.472,86.592,92.592,97.848,101.87,105.37,111.62,115.64,121.64,125.64,131.89,137.89,141.91,145.42,151.67,156.92" y="-0" class="ps00 ps227">pty: she did not like to drop the </tspan></text>
<text transform="matrix(1 0 0 -1 57.60005 115.9209)"><tspan xml:space="preserve" x="0,2.9952,7.7424,11.734,15.754,19.001,25.248,29.239,33.259,36.506,41.758,46.505,50.496,54.516,60.763,64.01,68.03,74.026,77.141,80.016,82.891,86.006,92.254,97.877,101.9,105.52,111.76,121.26,126.51,132.51,138.76,144.75,150.37,153.49,157.51,161.13,167.38,171.4,180.9,185.64,191.89,196.64,202.26,207.51,213.51,217.53,221.03,227.27,231.29,237.29,243.54,247.03,251.05,254.17,257.67,261.69,264.8,271.05,274.55,280.8" y="-0" class="ps00 ps228">jar for fear of killing somebody, so managed to put it into </tspan></text>
<text transform="matrix(1 0 0 -1 57.60005 99.66095)"><tspan xml:space="preserve" x="0,6.2472,12.494,17.746,21.104,27.352,30.599,33.958,37.457,43.704,48.955,52.314,57.433,63.68,69.676,75.671,81.918,86.665,90.656,96.652,100.27,103.63,108.38,112,115.35,118.97,125.22,130.47,133.83,137.08,142.33,145.2,148.08,151.44,157.43,162.18,165.8,169.3,172.66,175.77,179.27,182.39" y="-0" class="ps00 ps229">one of the cupboards as she fell past it. </tspan></text>
<text transform="matrix(1 0 0 -1 179.45999 44.88)"><tspan xml:space="preserve" x="0,5.88" y="-0" class="ps00 ps230">3 </tspan></text>
<text transform="matrix(1 0 0 -1 188.7 44.88)"><tspan x="0,4.3196" y="-0" class="ps00 ps231">of</tspan></text>
<text transform="matrix(1 0 0 -1 195.53999 44.88)"><tspan xml:space="preserve" x="0,3.36,9.2448,15.13,21.014" y="-0" class="ps00 ps232"> 130 </tspan></text>
</g>
<g id="q2" class="">
<g id="frm3" transform="matrix(0.149994 0 0 0.149994 250.204 499.681)">
<g id="xfrm4" transform="matrix(1 0 0 -1 0 0)">
<path d="M14.984 -67.936 C12.968 -55.191 21.752 -43.239 34.424 -41.224 C47.097 -39.207 59.12 -47.992 61.136 -60.664 C63.08 -73.408 54.369 -85.359 41.624 -87.375 C28.952 -89.392 16.928 -80.607 14.984 -67.936 ZM18.369 -44.607 C12.248 -50.728 9.0806 -59.584 10.52 -68.728 C11.312 -73.408 13.112 -77.656 16.208 -81.688 C25.928 -94.359 52.424 -101.78 56.168 -102.57 C56.168 -101.49 55.592 -97.023 55.232 -95.728 C59.192 -97.023 69.776 -98.968 72.8 -99.111 C72.729 -96.016 70.784 -85.432 69.416 -81.472 C70.784 -81.831 75.249 -82.408 76.256 -82.408 C75.464 -78.664 68.12 -52.168 55.448 -42.52 C51.416 -39.352 47.168 -37.552 42.488 -36.831 C33.344 -35.319 24.488 -38.488 18.369 -44.607 C18.369 -44.607 18.369 -44.607 18.369 -44.607 Z" class="ps01"/>
<path d="M574.57 -50.439 C574.57 -50.439 569.96 -50.439 569.96 -50.439 C569.96 -50.439 569.96 -88.312 569.96 -88.312 C569.96 -88.312 574.57 -88.312 574.57 -88.312 C574.57 -88.312 574.57 -50.439 574.57 -50.439 ZM558.44 -57.136 C558.44 -57.136 558.44 -64.695 558.44 -64.695 C557 -64.623 555.42 -64.479 553.47 -64.335 C551.6 -64.191 550.09 -63.976 549.01 -63.615 C547.71 -63.256 546.63 -62.68 545.84 -61.888 C545.05 -61.096 544.62 -60.016 544.62 -58.647 C544.62 -57.136 545.12 -55.912 546.06 -55.119 C546.99 -54.328 548.43 -53.968 550.3 -53.968 C551.96 -53.968 553.4 -54.256 554.77 -54.904 C556.06 -55.552 557.29 -56.271 558.44 -57.136 C558.44 -57.136 558.44 -57.136 558.44 -57.136 ZM562.98 -50.439 C562.98 -50.439 558.44 -50.439 558.44 -50.439 C558.44 -50.439 558.44 -53.319 558.44 -53.319 C558.01 -53.104 557.5 -52.672 556.78 -52.168 C556.06 -51.735 555.42 -51.304 554.77 -51.016 C554.05 -50.656 553.11 -50.368 552.18 -50.08 C551.17 -49.791 550.02 -49.72 548.65 -49.72 C546.2 -49.72 544.18 -50.512 542.46 -52.168 C540.73 -53.752 539.94 -55.84 539.94 -58.359 C539.94 -60.375 540.37 -62.031 541.23 -63.328 C542.1 -64.623 543.39 -65.632 544.98 -66.352 C546.63 -67.072 548.65 -67.576 550.95 -67.791 C553.26 -68.08 555.78 -68.295 558.44 -68.439 C558.44 -68.439 558.44 -69.088 558.44 -69.088 C558.44 -70.168 558.22 -71.031 557.86 -71.68 C557.5 -72.399 557 -72.904 556.28 -73.335 C555.63 -73.695 554.91 -73.912 553.98 -74.056 C553.04 -74.199 552.1 -74.271 551.17 -74.271 C549.94 -74.271 548.58 -74.127 547.14 -73.768 C545.62 -73.479 544.11 -72.976 542.53 -72.399 C542.53 -72.399 542.31 -72.399 542.31 -72.399 C542.31 -72.399 542.31 -77.08 542.31 -77.08 C543.18 -77.295 544.47 -77.584 546.2 -77.872 C547.86 -78.16 549.51 -78.304 551.17 -78.304 C553.04 -78.304 554.77 -78.16 556.14 -77.8 C557.58 -77.512 558.8 -76.936 559.81 -76.216 C560.89 -75.424 561.61 -74.488 562.18 -73.264 C562.69 -72.111 562.98 -70.672 562.98 -68.872 C562.98 -68.872 562.98 -50.439 562.98 -50.439 C562.98 -50.439 562.98 -50.439 562.98 -50.439 ZM533.53 -50.439 C533.53 -50.439 528.99 -50.439 528.99 -50.439 C528.99 -50.439 528.99 -65.919 528.99 -65.919 C528.99 -67.216 528.92 -68.368 528.78 -69.447 C528.63 -70.527 528.34 -71.392 527.98 -72.039 C527.55 -72.688 526.98 -73.191 526.18 -73.552 C525.46 -73.84 524.46 -74.056 523.23 -74.056 C522.01 -74.056 520.71 -73.695 519.34 -73.119 C517.98 -72.472 516.68 -71.68 515.46 -70.743 C515.46 -70.743 515.46 -50.439 515.46 -50.439 C515.46 -50.439 510.85 -50.439 510.85 -50.439 C510.85 -50.439 510.85 -77.656 510.85 -77.656 C510.85 -77.656 515.46 -77.656 515.46 -77.656 C515.46 -77.656 515.46 -74.632 515.46 -74.632 C516.82 -75.783 518.34 -76.72 519.85 -77.368 C521.36 -78.016 522.94 -78.375 524.53 -78.375 C527.48 -78.375 529.71 -77.512 531.22 -75.711 C532.81 -73.983 533.53 -71.392 533.53 -68.08 C533.53 -68.08 533.53 -50.439 533.53 -50.439 C533.53 -50.439 533.53 -50.439 533.53 -50.439 ZM500.48 -64.048 C500.48 -67.576 499.83 -70.168 498.39 -71.896 C497.02 -73.552 495.15 -74.415 492.7 -74.415 C490.18 -74.415 488.31 -73.552 486.94 -71.896 C485.58 -70.168 484.86 -67.576 484.86 -64.048 C484.86 -60.664 485.58 -58.072 486.94 -56.271 C488.31 -54.543 490.26 -53.68 492.7 -53.68 C495.08 -53.68 497.02 -54.543 498.39 -56.271 C499.83 -58 500.48 -60.592 500.48 -64.048 C500.48 -64.048 500.48 -64.048 500.48 -64.048 ZM505.23 -64.048 C505.23 -59.584 504.08 -56.127 501.78 -53.535 C499.54 -51.016 496.52 -49.72 492.7 -49.72 C488.82 -49.72 485.79 -51.016 483.56 -53.535 C481.26 -56.127 480.18 -59.584 480.18 -64.048 C480.18 -68.439 481.26 -71.968 483.56 -74.56 C485.79 -77.08 488.82 -78.375 492.7 -78.375 C496.52 -78.375 499.54 -77.08 501.78 -74.56 C504.08 -71.968 505.23 -68.439 505.23 -64.048 C505.23 -64.048 505.23 -64.048 505.23 -64.048 ZM474.2 -50.439 C474.2 -50.439 469.59 -50.439 469.59 -50.439 C469.59 -50.439 469.59 -77.656 469.59 -77.656 C469.59 -77.656 474.2 -77.656 474.2 -77.656 C474.2 -77.656 474.2 -50.439 474.2 -50.439 C474.2 -50.439 474.2 -50.439 474.2 -50.439 ZM474.49 -82.191 C474.49 -82.191 469.3 -82.191 469.3 -82.191 C469.3 -82.191 469.3 -86.943 469.3 -86.943 C469.3 -86.943 474.49 -86.943 474.49 -86.943 C474.49 -86.943 474.49 -82.191 474.49 -82.191 C474.49 -82.191 474.49 -82.191 474.49 -82.191 ZM463.04 -58.288 C463.04 -55.84 461.96 -53.752 459.94 -52.168 C457.86 -50.584 455.05 -49.791 451.52 -49.791 C449.5 -49.791 447.7 -50.008 445.98 -50.512 C444.32 -51.016 442.88 -51.52 441.8 -52.096 C441.8 -52.096 441.8 -57.207 441.8 -57.207 C441.8 -57.207 442.02 -57.207 442.02 -57.207 C443.46 -56.127 445.04 -55.264 446.84 -54.615 C448.57 -53.968 450.3 -53.68 451.95 -53.68 C453.9 -53.68 455.48 -53.968 456.63 -54.615 C457.78 -55.264 458.36 -56.344 458.36 -57.711 C458.36 -58.791 458 -59.584 457.42 -60.16 C456.78 -60.664 455.63 -61.168 453.9 -61.527 C453.25 -61.672 452.38 -61.888 451.3 -62.031 C450.3 -62.247 449.29 -62.464 448.5 -62.68 C446.05 -63.328 444.39 -64.264 443.38 -65.488 C442.38 -66.711 441.87 -68.224 441.87 -70.023 C441.87 -71.104 442.16 -72.184 442.59 -73.191 C443.02 -74.127 443.74 -74.992 444.68 -75.783 C445.62 -76.576 446.77 -77.151 448.14 -77.584 C449.58 -78.088 451.16 -78.304 452.89 -78.304 C454.47 -78.304 456.13 -78.088 457.78 -77.656 C459.44 -77.295 460.81 -76.791 461.96 -76.216 C461.96 -76.216 461.96 -71.319 461.96 -71.319 C461.96 -71.319 461.67 -71.319 461.67 -71.319 C460.52 -72.184 459.08 -72.976 457.42 -73.552 C455.77 -74.127 454.11 -74.415 452.53 -74.415 C450.87 -74.415 449.43 -74.127 448.28 -73.479 C447.13 -72.831 446.55 -71.896 446.55 -70.6 C446.55 -69.447 446.91 -68.656 447.63 -68.08 C448.28 -67.503 449.43 -67 450.94 -66.711 C451.74 -66.496 452.74 -66.28 453.75 -66.136 C454.83 -65.919 455.7 -65.703 456.34 -65.56 C458.5 -65.056 460.16 -64.264 461.31 -63.039 C462.46 -61.888 463.04 -60.304 463.04 -58.288 C463.04 -58.288 463.04 -58.288 463.04 -58.288 ZM437.05 -58.288 C437.05 -55.84 436.04 -53.752 433.95 -52.168 C431.94 -50.584 429.13 -49.791 425.6 -49.791 C423.58 -49.791 421.71 -50.008 420.06 -50.512 C418.4 -51.016 416.96 -51.52 415.81 -52.096 C415.81 -52.096 415.81 -57.207 415.81 -57.207 C415.81 -57.207 416.1 -57.207 416.1 -57.207 C417.54 -56.127 419.12 -55.264 420.85 -54.615 C422.65 -53.968 424.38 -53.68 425.96 -53.68 C427.98 -53.68 429.56 -53.968 430.71 -54.615 C431.79 -55.264 432.37 -56.344 432.37 -57.711 C432.37 -58.791 432.08 -59.584 431.43 -60.16 C430.86 -60.664 429.63 -61.168 427.9 -61.527 C427.26 -61.672 426.39 -61.888 425.38 -62.031 C424.3 -62.247 423.37 -62.464 422.5 -62.68 C420.13 -63.328 418.47 -64.264 417.46 -65.488 C416.46 -66.711 415.95 -68.224 415.95 -70.023 C415.95 -71.104 416.17 -72.184 416.67 -73.191 C417.1 -74.127 417.82 -74.992 418.76 -75.783 C419.63 -76.576 420.78 -77.151 422.22 -77.584 C423.58 -78.088 425.17 -78.304 426.9 -78.304 C428.55 -78.304 430.21 -78.088 431.86 -77.656 C433.52 -77.295 434.89 -76.791 435.97 -76.216 C435.97 -76.216 435.97 -71.319 435.97 -71.319 C435.97 -71.319 435.75 -71.319 435.75 -71.319 C434.6 -72.184 433.16 -72.976 431.5 -73.552 C429.85 -74.127 428.19 -74.415 426.61 -74.415 C424.88 -74.415 423.51 -74.127 422.36 -73.479 C421.21 -72.831 420.63 -71.896 420.63 -70.6 C420.63 -69.447 420.99 -68.656 421.64 -68.08 C422.36 -67.503 423.44 -67 424.95 -66.711 C425.82 -66.496 426.75 -66.28 427.83 -66.136 C428.84 -65.919 429.7 -65.703 430.42 -65.56 C432.51 -65.056 434.17 -64.264 435.32 -63.039 C436.47 -61.888 437.05 -60.304 437.05 -58.288 C437.05 -58.288 437.05 -58.288 437.05 -58.288 ZM406.3 -67.072 C406.23 -69.447 405.66 -71.319 404.43 -72.615 C403.28 -73.983 401.48 -74.632 399.03 -74.632 C396.58 -74.632 394.64 -73.912 393.2 -72.472 C391.76 -71.031 390.9 -69.231 390.75 -67.072 C390.75 -67.072 406.3 -67.072 406.3 -67.072 C406.3 -67.072 406.3 -67.072 406.3 -67.072 ZM410.7 -63.543 C410.7 -63.543 390.75 -63.543 390.75 -63.543 C390.75 -61.888 390.97 -60.447 391.47 -59.224 C391.98 -58 392.7 -56.919 393.56 -56.127 C394.35 -55.408 395.36 -54.76 396.51 -54.399 C397.67 -54.039 398.96 -53.823 400.4 -53.823 C402.2 -53.823 404.07 -54.184 405.94 -54.904 C407.82 -55.623 409.18 -56.415 409.98 -57.136 C409.98 -57.136 410.19 -57.136 410.19 -57.136 C410.19 -57.136 410.19 -52.096 410.19 -52.096 C408.68 -51.447 407.1 -50.943 405.44 -50.512 C403.86 -50.08 402.2 -49.864 400.4 -49.864 C395.94 -49.864 392.41 -51.016 389.89 -53.464 C387.37 -55.912 386.07 -59.368 386.07 -63.904 C386.07 -68.295 387.3 -71.823 389.67 -74.488 C392.12 -77.08 395.29 -78.375 399.25 -78.375 C402.92 -78.375 405.73 -77.295 407.74 -75.136 C409.69 -73.048 410.7 -69.952 410.7 -66.063 C410.7 -66.063 410.7 -63.543 410.7 -63.543 C410.7 -63.543 410.7 -63.543 410.7 -63.543 ZM385.06 -83.848 C385.06 -83.848 384.85 -83.848 384.85 -83.848 C384.34 -84.063 383.7 -84.207 382.9 -84.352 C382.04 -84.496 381.32 -84.567 380.74 -84.567 C378.8 -84.567 377.36 -84.136 376.5 -83.271 C375.56 -82.408 375.13 -80.823 375.13 -78.52 C375.13 -78.52 375.13 -77.656 375.13 -77.656 C375.13 -77.656 383.41 -77.656 383.41 -77.656 C383.41 -77.656 383.41 -73.768 383.41 -73.768 C383.41 -73.768 375.27 -73.768 375.27 -73.768 C375.27 -73.768 375.27 -50.439 375.27 -50.439 C375.27 -50.439 370.74 -50.439 370.74 -50.439 C370.74 -50.439 370.74 -73.768 370.74 -73.768 C370.74 -73.768 367.64 -73.768 367.64 -73.768 C367.64 -73.768 367.64 -77.656 367.64 -77.656 C367.64 -77.656 370.74 -77.656 370.74 -77.656 C370.74 -77.656 370.74 -78.52 370.74 -78.52 C370.74 -81.76 371.53 -84.207 373.11 -85.936 C374.7 -87.664 377.07 -88.527 380.1 -88.527 C381.1 -88.527 382.04 -88.456 382.83 -88.384 C383.7 -88.312 384.42 -88.168 385.06 -88.023 C385.06 -88.023 385.06 -83.848 385.06 -83.848 C385.06 -83.848 385.06 -83.848 385.06 -83.848 ZM359.22 -64.048 C359.22 -67.576 358.57 -70.168 357.13 -71.896 C355.76 -73.552 353.89 -74.415 351.44 -74.415 C348.92 -74.415 347.05 -73.552 345.68 -71.896 C344.31 -70.168 343.59 -67.576 343.59 -64.048 C343.59 -60.664 344.31 -58.072 345.68 -56.271 C347.05 -54.543 348.99 -53.68 351.44 -53.68 C353.89 -53.68 355.76 -54.543 357.13 -56.271 C358.57 -58 359.22 -60.592 359.22 -64.048 C359.22 -64.048 359.22 -64.048 359.22 -64.048 ZM363.97 -64.048 C363.97 -59.584 362.82 -56.127 360.51 -53.535 C358.28 -51.016 355.26 -49.72 351.44 -49.72 C347.55 -49.72 344.53 -51.016 342.3 -53.535 C339.99 -56.127 338.91 -59.584 338.91 -64.048 C338.91 -68.439 339.99 -71.968 342.3 -74.56 C344.53 -77.08 347.55 -78.375 351.44 -78.375 C355.26 -78.375 358.28 -77.08 360.51 -74.56 C362.82 -71.968 363.97 -68.439 363.97 -64.048 C363.97 -64.048 363.97 -64.048 363.97 -64.048 ZM336.46 -72.615 C336.46 -72.615 336.25 -72.615 336.25 -72.615 C335.53 -72.615 334.88 -72.904 334.23 -72.976 C333.66 -73.048 332.86 -73.119 332 -73.119 C330.56 -73.119 329.19 -72.76 327.9 -72.184 C326.6 -71.535 325.3 -70.743 324.08 -69.735 C324.08 -69.735 324.08 -50.439 324.08 -50.439 C324.08 -50.439 319.54 -50.439 319.54 -50.439 C319.54 -50.439 319.54 -77.656 319.54 -77.656 C319.54 -77.656 324.08 -77.656 324.08 -77.656 C324.08 -77.656 324.08 -73.623 324.08 -73.623 C325.95 -75.063 327.54 -76.072 328.9 -76.72 C330.27 -77.295 331.71 -77.656 333.15 -77.656 C333.94 -77.656 334.52 -77.584 334.88 -77.584 C335.24 -77.512 335.74 -77.439 336.46 -77.368 C336.46 -77.368 336.46 -72.615 336.46 -72.615 C336.46 -72.615 336.46 -72.615 336.46 -72.615 ZM309.1 -64.264 C309.1 -67.503 308.53 -69.952 307.45 -71.607 C306.3 -73.191 304.57 -74.056 302.26 -74.056 C300.97 -74.056 299.6 -73.768 298.3 -73.191 C296.94 -72.615 295.78 -71.896 294.56 -70.96 C294.56 -70.96 294.56 -55.552 294.56 -55.552 C295.86 -54.976 296.86 -54.543 297.8 -54.328 C298.74 -54.111 299.82 -54.039 300.97 -54.039 C303.56 -54.039 305.5 -54.904 306.94 -56.632 C308.38 -58.359 309.1 -60.879 309.1 -64.264 C309.1 -64.264 309.1 -64.264 309.1 -64.264 ZM313.78 -64.408 C313.78 -62.176 313.5 -60.16 312.85 -58.359 C312.2 -56.488 311.34 -54.976 310.18 -53.68 C309.1 -52.527 307.88 -51.592 306.44 -50.943 C304.93 -50.295 303.42 -49.936 301.83 -49.936 C300.39 -49.936 299.1 -50.08 297.94 -50.368 C296.79 -50.728 295.71 -51.16 294.56 -51.808 C294.56 -51.808 294.56 -40.432 294.56 -40.432 C294.56 -40.432 289.95 -40.432 289.95 -40.432 C289.95 -40.432 289.95 -77.656 289.95 -77.656 C289.95 -77.656 294.56 -77.656 294.56 -77.656 C294.56 -77.656 294.56 -74.775 294.56 -74.775 C295.78 -75.783 297.08 -76.647 298.59 -77.368 C300.1 -78.016 301.69 -78.375 303.42 -78.375 C306.73 -78.375 309.25 -77.151 311.05 -74.632 C312.92 -72.184 313.78 -68.8 313.78 -64.408 C313.78 -64.408 313.78 -64.408 313.78 -64.408 ZM25.497 -75.855 C25.497 -75.855 25.497 -52.168 25.497 -52.168 C25.497 -52.168 34.568 -52.168 34.568 -52.168 C34.568 -52.168 34.568 -63.543 34.568 -63.543 C34.568 -65.703 34.928 -67.216 35.648 -68.008 C36.296 -68.872 37.232 -69.304 38.312 -69.304 C39.32 -69.304 40.04 -69.016 40.616 -68.368 C41.192 -67.72 41.409 -66.711 41.409 -65.199 C41.409 -65.199 41.409 -52.168 41.409 -52.168 C41.409 -52.168 50.552 -52.168 50.552 -52.168 C50.552 -52.168 50.552 -67.216 50.552 -67.216 C50.552 -70.384 49.832 -72.688 48.464 -74.127 C47.024 -75.64 45.081 -76.432 42.561 -76.432 C40.688 -76.432 39.104 -76.072 37.809 -75.352 C36.513 -74.703 35.216 -73.623 33.993 -72.039 C33.993 -72.039 33.993 -75.855 33.993 -75.855 C33.993 -75.855 25.497 -75.855 25.497 -75.855 C25.497 -75.855 25.497 -75.855 25.497 -75.855 ZM15.993 -67.72 C14.12 -55.623 22.473 -44.176 34.568 -42.304 C46.736 -40.359 58.185 -48.711 60.056 -60.879 C61.929 -72.976 53.577 -84.424 41.48 -86.295 C29.384 -88.239 17.936 -79.888 15.993 -67.72 C15.993 -67.72 15.993 -67.72 15.993 -67.72 ZM18.369 -44.607 C12.248 -50.728 9.0806 -59.584 10.52 -68.728 C11.312 -73.408 13.112 -77.656 16.208 -81.688 C25.928 -94.359 47.601 -96.088 51.344 -96.016 C51.488 -95.368 51.848 -92.56 51.92 -91.623 C54.584 -91.84 61.856 -91.623 64.88 -91.191 C65.384 -88.096 65.601 -80.896 65.384 -78.16 C66.32 -78.16 69.057 -77.728 69.776 -77.584 C69.849 -73.912 68.12 -52.168 55.448 -42.52 C51.416 -39.352 47.168 -37.552 42.488 -36.831 C33.344 -35.319 24.488 -38.488 18.369 -44.607 C18.369 -44.607 18.369 -44.607 18.369 -44.607 ZM180.58 -64.191 C180.58 -68.728 181.95 -72.472 184.69 -75.352 C187.5 -78.231 191.02 -79.6 195.49 -79.6 C199.88 -79.6 203.48 -78.16 206.29 -75.352 C209.02 -72.472 210.46 -68.728 210.46 -64.191 C210.46 -59.656 209.02 -55.983 206.29 -53.104 C203.48 -50.295 199.88 -48.855 195.49 -48.855 C191.02 -48.855 187.5 -50.295 184.69 -53.104 C181.95 -55.983 180.58 -59.656 180.58 -64.191 C180.58 -64.191 180.58 -64.191 180.58 -64.191 ZM189.37 -64.191 C189.37 -61.672 189.94 -59.656 191.02 -58.144 C192.18 -56.632 193.62 -55.912 195.49 -55.912 C197.29 -55.912 198.8 -56.632 199.88 -58.144 C201.03 -59.656 201.54 -61.672 201.54 -64.191 C201.54 -66.711 201.03 -68.728 199.88 -70.312 C198.73 -71.823 197.29 -72.543 195.49 -72.543 C193.62 -72.543 192.18 -71.823 191.02 -70.312 C189.94 -68.728 189.37 -66.711 189.37 -64.191 C189.37 -64.191 189.37 -64.191 189.37 -64.191 ZM157.11 -49.432 C157.11 -49.432 157.11 -79.023 157.11 -79.023 C157.11 -79.023 165.68 -79.023 165.68 -79.023 C165.68 -79.023 165.68 -71.104 165.68 -71.104 C167.12 -74.127 168.56 -76.216 169.86 -77.584 C171.22 -78.879 172.66 -79.527 174.25 -79.527 C175.04 -79.527 175.83 -79.312 176.7 -78.952 C177.56 -78.592 178.57 -78.088 179.65 -77.295 C179.65 -77.295 177.34 -68.8 177.34 -68.8 C176.48 -69.52 175.69 -70.096 174.97 -70.384 C174.25 -70.743 173.53 -70.888 172.81 -70.888 C171.22 -70.888 169.71 -70.096 168.42 -68.584 C167.19 -67 166.26 -64.84 165.68 -62.176 C165.68 -62.176 165.68 -49.432 165.68 -49.432 C165.68 -49.432 157.11 -49.432 157.11 -49.432 C157.11 -49.432 157.11 -49.432 157.11 -49.432 ZM135.01 -72.543 C135.01 -72.543 131.12 -72.543 131.12 -72.543 C131.12 -72.543 131.12 -74.56 131.12 -74.56 C131.12 -74.56 142.21 -87.664 142.21 -87.664 C142.21 -87.664 143.5 -87.664 143.5 -87.664 C143.5 -87.664 143.5 -79.023 143.5 -79.023 C143.5 -79.023 152.79 -79.023 152.79 -79.023 C152.79 -79.023 152.79 -72.543 152.79 -72.543 C152.79 -72.543 143.5 -72.543 143.5 -72.543 C143.5 -72.543 143.5 -61.672 143.5 -61.672 C143.5 -59.368 143.79 -57.855 144.37 -57.063 C144.94 -56.344 146.02 -55.983 147.61 -55.983 C148.4 -55.983 149.19 -56.056 150.06 -56.344 C150.85 -56.56 151.78 -56.919 152.79 -57.424 C152.79 -57.424 152.79 -50.439 152.79 -50.439 C151.42 -49.864 150.06 -49.503 148.69 -49.216 C147.32 -48.928 145.95 -48.783 144.58 -48.783 C141.13 -48.783 138.68 -49.791 137.24 -51.735 C135.73 -53.607 135.01 -56.992 135.01 -61.672 C135.01 -61.672 135.01 -72.543 135.01 -72.543 C135.01 -72.543 135.01 -72.543 135.01 -72.543 ZM118.74 -88.6 C118.74 -90.039 119.17 -91.191 120.1 -92.199 C120.97 -93.136 122.05 -93.64 123.34 -93.64 C124.64 -93.64 125.72 -93.136 126.58 -92.199 C127.45 -91.264 127.88 -90.039 127.88 -88.6 C127.88 -87.231 127.45 -86.08 126.58 -85.072 C125.72 -84.136 124.64 -83.632 123.34 -83.632 C122.05 -83.632 120.97 -84.136 120.1 -85.144 C119.17 -86.08 118.74 -87.231 118.74 -88.6 C118.74 -88.6 118.74 -88.6 118.74 -88.6 ZM119.1 -49.432 C119.1 -49.432 119.1 -79.023 119.1 -79.023 C119.1 -79.023 127.66 -79.023 127.66 -79.023 C127.66 -79.023 127.66 -49.432 127.66 -49.432 C127.66 -49.432 119.1 -49.432 119.1 -49.432 C119.1 -49.432 119.1 -49.432 119.1 -49.432 ZM85.977 -49.432 C85.977 -49.432 85.977 -79.023 85.977 -79.023 C85.977 -79.023 94.472 -79.023 94.472 -79.023 C94.472 -79.023 94.472 -75.352 94.472 -75.352 C95.84 -76.791 97.209 -77.943 98.72 -78.592 C100.16 -79.312 101.89 -79.6 103.76 -79.6 C106.71 -79.6 109.02 -78.664 110.6 -76.647 C112.18 -74.703 112.98 -71.896 112.98 -68.151 C112.98 -68.151 112.98 -49.432 112.98 -49.432 C112.98 -49.432 104.41 -49.432 104.41 -49.432 C104.41 -49.432 104.41 -66.855 104.41 -66.855 C104.41 -69.016 104.12 -70.527 103.47 -71.535 C102.82 -72.472 101.89 -72.976 100.59 -72.976 C99.368 -72.976 98.289 -72.615 97.28 -71.823 C96.272 -70.96 95.336 -69.808 94.472 -68.295 C94.472 -68.295 94.472 -49.432 94.472 -49.432 C94.472 -49.432 85.977 -49.432 85.977 -49.432 C85.977 -49.432 85.977 -49.432 85.977 -49.432 ZM257.41 -73.983 C257.41 -73.983 257.41 -97.815 257.41 -97.815 C257.41 -97.815 271.59 -97.815 271.59 -97.815 C271.59 -97.815 271.59 -93.424 271.59 -93.424 C271.59 -93.424 262.88 -93.424 262.88 -93.424 C262.88 -93.424 262.88 -88.239 262.88 -88.239 C262.88 -88.239 271.02 -88.239 271.02 -88.239 C271.02 -88.239 271.02 -83.775 271.02 -83.775 C271.02 -83.775 262.88 -83.775 262.88 -83.775 C262.88 -83.775 262.88 -73.983 262.88 -73.983 C262.88 -73.983 257.41 -73.983 257.41 -73.983 C257.41 -73.983 257.41 -73.983 257.41 -73.983 ZM232.71 -73.983 C232.71 -73.983 232.71 -97.815 232.71 -97.815 C232.71 -97.815 240.92 -97.815 240.92 -97.815 C243.3 -97.815 245.1 -97.6 246.39 -97.239 C247.69 -96.88 248.84 -96.231 249.92 -95.295 C251.36 -94.216 252.37 -92.775 253.09 -91.191 C253.81 -89.607 254.17 -87.879 254.17 -85.936 C254.17 -83.775 253.74 -81.831 252.87 -80.104 C252.01 -78.375 250.71 -76.936 249.06 -75.783 C248.12 -75.136 247.11 -74.703 245.96 -74.415 C244.88 -74.127 243.15 -73.983 240.92 -73.983 C240.92 -73.983 232.71 -73.983 232.71 -73.983 C232.71 -73.983 232.71 -73.983 232.71 -73.983 ZM238.18 -92.992 C238.18 -92.992 238.18 -78.808 238.18 -78.808 C238.18 -78.808 242.29 -78.808 242.29 -78.808 C244.16 -78.808 245.67 -79.456 246.82 -80.752 C247.98 -82.119 248.55 -83.848 248.55 -85.936 C248.55 -88.023 247.98 -89.68 246.82 -91.048 C245.67 -92.344 244.16 -92.992 242.29 -92.992 C242.29 -92.992 238.18 -92.992 238.18 -92.992 C238.18 -92.992 238.18 -92.992 238.18 -92.992 ZM212.91 -73.983 C212.91 -73.983 212.91 -97.815 212.91 -97.815 C212.91 -97.815 220.98 -97.815 220.98 -97.815 C223.93 -97.815 226.09 -97.239 227.53 -96.088 C228.97 -94.864 229.69 -93.136 229.69 -90.688 C229.69 -88.239 228.9 -86.368 227.38 -85.144 C225.87 -83.919 223.57 -83.271 220.54 -83.271 C220.54 -83.271 218.38 -83.271 218.38 -83.271 C218.38 -83.271 218.38 -73.983 218.38 -73.983 C218.38 -73.983 212.91 -73.983 212.91 -73.983 C212.91 -73.983 212.91 -73.983 212.91 -73.983 ZM220.98 -87.952 C222.06 -87.952 222.78 -88.168 223.28 -88.6 C223.78 -89.031 224.07 -89.752 224.07 -90.688 C224.07 -91.552 223.78 -92.199 223.28 -92.703 C222.7 -93.136 221.98 -93.352 221.05 -93.352 C221.05 -93.352 218.38 -93.352 218.38 -93.352 C218.38 -93.352 218.38 -87.952 218.38 -87.952 C218.38 -87.952 220.98 -87.952 220.98 -87.952 C220.98 -87.952 220.98 -87.952 220.98 -87.952 Z" class="ps02"/>
<g id="xfrm5" transform="matrix(1 0 0 -1 0 0)">
<text transform="matrix(1 0 0 -1 85.36035 107.68994)"><tspan x="0,10.521" y="-0" class="ps03 ps233">eB</tspan><tspan x="22.008" y="-0" class="ps03 ps233">o</tspan><tspan x="33.558,45.087,54.936,59.388,71.337" y="-0" class="ps03 ps233">ok br</tspan><tspan x="78.078,89.607,101.18,112.92" y="-0" class="ps03 ps233">ough</tspan><tspan x="124.49,131.44,135.89" y="-0" class="ps03 ps233">t t</tspan><tspan x="142.72,154.25,158.7" y="-0" class="ps03 ps233">o y</tspan><tspan x="168.38,179.91,191.48,195.93" y="-0" class="ps03 ps233">ou b</tspan><tspan x="207.71" y="-0" class="ps03 ps233">y</tspan></text>
<text transform="matrix(1 0 0 -1 302.95898 107.68994)"><tspan xml:space="preserve" x="0" y="-0" class="ps03 ps234"> </tspan></text>
<text transform="matrix(1 0 0 -1 85.36035 12.68994)"><tspan x="0" y="-0" class="ps03 ps233">C</tspan><tspan x="12.159" y="-0" class="ps03 ps233">r</tspan><tspan x="18.9,29.421" y="-0" class="ps03 ps233">ea</tspan><tspan x="39.459" y="-0" class="ps03 ps233">t</tspan><tspan x="46.284" y="-0" class="ps03 ps233">e</tspan><tspan x="56.406" y="-0" class="ps03 ps233">,</tspan><tspan xml:space="preserve" x="59.304,63.756,73.857,78.771,89.292" y="-0" class="ps03 ps233"> view</tspan><tspan x="103.78" y="-0" class="ps03 ps233">,</tspan><tspan xml:space="preserve" x="106.68,111.13,121.25,132.91,144.75,149.2,159.73,171.57,176.48,183.43,187.89,199.06,213.04" y="-0" class="ps03 ps233"> and edit PDF</tspan><tspan x="221.19" y="-0" class="ps03 ps233">.</tspan><tspan xml:space="preserve" x="223.99,228.44" y="-0" class="ps03 ps233"> D</tspan><tspan x="242.55" y="-0" class="ps03 ps233">o</tspan><tspan x="253.93,269.39,281.04,285.96,297.49,307.61,319.45,323.9,330.85,342.51,353.03,357.48,363.62" y="-0" class="ps03 ps233">wnload the fr</tspan><tspan x="370.36,380.88,391.4,395.85,402.8" y="-0" class="ps03 ps233">ee tr</tspan><tspan x="409.75,414.67,424.79,429.7,434.15" y="-0" class="ps03 ps233">ial v</tspan><tspan x="444.02,454.55,461.41,469.73,474.64,486.17,497.83" y="-0" class="ps03 ps233">ersion.</tspan></text>
</g>
</g>
</g>
</g>
<g id="xfrm6" transform="matrix(396 0 0 540 0 0)">
<g id="frm7" transform="matrix(0.01 0 0 0.01 0 0)">
<text transform="matrix(1 0 0 -1 0 43.5267)"><tspan x="0,9.3475,18.695,28.043,31.642,38.84,46.038,49.638,53.237,57.548,64.746,71.945,75.544,82.017,89.216" y="-0" class="ps04 ps10 ps235">www.pdftron.com</tspan></text>
</g>
</g>
<a xlink:href="http://www.nitropdf.com/professional/trial.asp?gad=CKjitfIEEggfNAr_0EIHwhj0-4P-AyDkl4k2"><rect x="250.2" y="499.7" width="91.8" height="19.44" opacity="0" fill="red" stroke="none"/></a>
</g>
</svg>
</div>
<div id="page4" class="page even">
<canvas class="imageView"></canvas>
<!-- Generator: PDFTron PDF2SVG Converter (DEMO VERSION) -->
<svg id="svgRoot" version="1.0" baseProfile="Full" viewBox="0 0 396 540" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:cs="http://www.pdftron.com/pdf2svg" xml:space="preserve" buffered-rendering="dynamic">
<defs>
<font horiz-adv-x="0"><font-face
font-family="fnt1"
units-per-em="1000"
ascent="673"
descent="-233"
/>
<missing-glyph horiz-adv-x="0"/>
<glyph unicode=" " horiz-adv-x="278" d="M0 0 Z"/>
<glyph unicode="!" horiz-adv-x="260" d="M140,178L177,626C179,645,176,650,153,650L108,650C86,650,82,646,83,628L120,178 ZM79,35C79,7,101,-12,130,-12C158,-12,181,5,181,35C181,64,158,82,130,82C101,82,79,63,79,35 Z"/>
<glyph unicode="(" horiz-adv-x="302" d="M140,222C140,395,190,502,291,635L263,660C153,525,85,398,85,222C85,46,153,-81,263,-216L291,-191C190,-58,140,49,140,222 Z"/>
<glyph unicode=")" horiz-adv-x="302" d="M162,222C162,49,112,-58,11,-191L39,-216C149,-81,217,46,217,222C217,398,149,525,39,660L11,635C112,502,162,395,162,222 Z"/>
<glyph unicode="," horiz-adv-x="260" d="M81,-148C147,-123,192,-63,192,-1C192,47,162,82,122,82C92,82,68,60,68,33C68,7,87,-12,113,-12C124,-12,128,-9,137,-9C147,-9,151,-18,151,-30C151,-66,124,-101,74,-130 Z"/>
<glyph unicode="." horiz-adv-x="260" d="M130,82C101,82,79,63,79,35C79,7,101,-12,130,-12C158,-12,181,5,181,35C181,64,158,82,130,82 Z"/>
<glyph unicode="0" horiz-adv-x="490" d="M453,311C453,485,362,637,245,637C135,637,37,499,37,311C37,115,141,-14,245,-14C358,-14,453,126,453,311 ZM378,311C378,125,353,5,245,5C144,5,112,116,112,311C112,493,141,618,245,618C355,618,378,488,378,311 Z"/>
<glyph unicode="1" horiz-adv-x="490" d="M254,637C230,603,147,528,89,489L97,475C134,492,190,529,222,557L222,58C222,28,216,19,184,19L130,19L130,-0L382,-0L382,19L326,19C295,19,289,27,289,57L289,637 Z"/>
<glyph unicode="3" horiz-adv-x="490" d="M184,306C207,324,230,333,254,333C316,333,363,272,363,194C363,96,297,13,219,13C147,13,110,91,65,91C49,91,34,75,34,57C34,19,104,-14,185,-14C319,-14,438,96,438,220C438,312,369,392,277,383L275,385C341,424,378,475,378,526C378,589,322,637,248,637C169,637,97,582,63,495L81,488C109,547,163,586,214,586C268,586,311,545,311,494C311,439,258,389,175,320 Z"/>
<glyph unicode="4" horiz-adv-x="490" d="M291,182L291,-14L358,-14L358,182L458,182L458,232L358,232L358,637L330,637L35,205L35,182 ZM291,232L82,232L289,542L291,542 Z"/>
<glyph unicode=":" horiz-adv-x="260" d="M130,406C101,406,79,387,79,359C79,331,101,312,130,312C158,312,181,329,181,359C181,388,158,406,130,406 ZM130,82C101,82,79,63,79,35C79,7,101,-12,130,-12C158,-12,181,5,181,35C181,64,158,82,130,82 Z"/>
<glyph unicode="?" horiz-adv-x="354" d="M138,633C74,633,51,612,51,586C51,558,80,550,108,550C126,550,153,557,185,557C244,557,287,527,287,468C287,335,98,388,98,271C98,237,120,197,147,168L169,168C146,191,131,215,131,240C131,310,311,267,311,456C311,564,234,633,138,633 ZM155,82C126,82,104,63,104,35C104,7,126,-12,155,-12C183,-12,206,5,206,35C206,64,183,82,155,82 Z"/>
<glyph unicode="A" horiz-adv-x="677" d="M423,276L490,94C494,84,501,69,501,53C501,25,480,19,423,19L397,19L397,-0L672,-0L672,19C622,19,601,29,581,82L372,637L285,637L294,615L112,118C80,31,69,20,4,19L4,-0L235,-0L235,19L219,19C164,19,138,29,138,56C138,70,151,100,158,119L216,276 ZM406,320L233,320L318,553 Z"/>
<glyph unicode="D" horiz-adv-x="760" d="M111,92C111,34,86,19,32,19L15,19L15,-0L335,-0C588,-0,705,181,705,332C705,497,588,631,324,631C272,631,211,630,156,628C101,626,52,624,15,622L15,603L35,603C94,603,111,587,111,522 ZM194,608C206,609,233,612,274,612C414,612,485,577,531,531C590,472,611,390,611,316C611,213,565,136,528,100C466,38,410,19,276,19C197,19,194,33,194,74 Z"/>
<glyph unicode="E" horiz-adv-x="594" d="M464,415L445,415C440,357,423,340,387,340L208,340L208,586L419,586C455,586,480,568,493,483L511,483L503,622L23,622L23,603L45,603C112,603,125,579,125,523L125,101C125,41,111,19,31,19L3,19L3,-0L534,-0L550,149L532,149C507,63,486,36,416,36L262,36C225,36,208,45,208,91L208,304L377,304C418,304,437,296,445,225L464,225 Z"/>
<glyph unicode="H" horiz-adv-x="792" d="M590,297L590,94C590,42,576,19,511,19L480,19L480,-0L763,-0L763,19L753,19C693,19,673,35,673,106L673,521C673,583,689,601,749,603L749,622L492,622L492,603L511,603C573,603,590,583,590,530L590,333L198,333L198,507C198,584,210,603,281,603L281,622L43,622L43,603C98,599,115,584,115,532L115,92C115,35,95,19,36,19L30,19L30,-0L281,-0L281,19L278,19C211,19,198,42,198,107L198,297 Z"/>
<glyph unicode="I" horiz-adv-x="333" d="M288,19C219,19,203,39,203,98L203,522C203,589,225,603,288,603L288,622L45,622L45,603C101,600,120,585,120,531L120,105C120,38,107,22,45,19L45,-0L288,-0 Z"/>
<glyph unicode="L" horiz-adv-x="552" d="M544,146L526,146C463,59,445,36,386,36L239,36C210,36,199,46,199,73L199,534C199,596,216,603,281,603L318,603L318,622L23,622L23,603L37,603C100,603,116,581,116,528L116,85C116,34,99,19,53,19L20,19L20,-0L467,-0 Z"/>
<glyph unicode="P" horiz-adv-x="563" d="M200,271C230,265,255,263,285,263C433,263,527,337,527,454C527,531,479,631,270,631C243,631,195,630,146,628C97,626,48,623,20,622L20,603L70,603C105,603,117,587,117,550L117,77C117,30,102,19,50,19L36,19L36,-0L313,-0L313,19L280,19C217,19,200,40,200,96 ZM200,608C224,612,246,612,269,612C402,612,433,535,433,457C433,356,363,282,254,282C235,282,213,287,200,290 Z"/>
<glyph unicode="R" horiz-adv-x="802" d="M199,263C215,262,228,261,250,261C277,261,293,262,318,263C342,247,377,218,421,174L487,108C576,19,621,-19,796,-11L796,7C719,12,658,49,599,108L520,187C473,234,443,262,406,291C488,315,539,378,539,453C539,555,456,631,271,631C206,631,186,630,145,628C104,626,43,622,19,622L19,603L41,603C99,603,116,585,116,523L116,102C116,35,95,19,36,19L19,19L19,-0L302,-0L302,19L279,19C223,19,199,34,199,94 ZM199,610C217,612,230,612,249,612C403,612,445,540,445,447C445,327,372,280,261,280C238,280,223,279,199,282 Z"/>
<glyph unicode="S" horiz-adv-x="490" d="M44,152L65,-0L82,-0C86,6,93,11,102,11C116,11,186,-16,241,-16C358,-16,445,57,445,155C445,339,124,377,124,519C124,575,170,613,236,613C305,613,369,567,397,495L414,495L397,622L381,622C375,614,371,612,363,612C328,612,311,637,227,637C125,637,49,575,49,492C49,317,370,273,370,129C370,50,299,11,232,11C154,11,84,63,63,152 Z"/>
<glyph unicode="T" horiz-adv-x="677" d="M380,586L554,586C594,586,612,563,627,475L645,475L629,637L610,637C608,625,593,622,579,622L98,622C91,622,84,623,78,625C72,627,68,631,67,637L48,637L32,475L50,475C65,563,83,586,123,586L297,586L297,92C297,38,279,19,218,19L181,19L181,-0L496,-0L496,19L459,19C398,19,380,38,380,92 Z"/>
<glyph unicode="V" horiz-adv-x="688" d="M369,-16L575,517C599,579,626,603,678,603L678,622L446,622L446,603C514,603,539,591,539,561C539,547,533,527,522,499L364,86L184,534C165,580,187,601,279,603L279,622L4,622L4,603C65,603,77,588,102,525L319,-16 Z"/>
<glyph unicode="W" horiz-adv-x="1000" d="M687,-16L888,512C918,591,932,603,993,603L993,622L786,622L786,603C859,601,872,587,856,546L679,82L548,394L612,550C628,588,649,603,711,603L711,622L301,622L301,603C354,603,384,595,404,546L485,349L377,82L195,540C178,582,196,603,243,603L260,603L260,622L1,622L1,603L7,603C71,603,95,592,125,516L333,-16L382,-16L508,293L639,-16 ZM525,450L475,566C463,593,477,603,503,603L545,603C574,603,581,587,570,560 Z"/>
<glyph unicode="Y" horiz-adv-x="708" d="M371,291L211,538C181,584,186,603,264,603L264,622L-2,622L-2,603C63,601,86,587,135,510L313,232L313,91C313,42,295,19,233,19L214,19L214,-0L489,-0L489,19L476,19C415,19,396,40,396,93L396,243L562,524C590,571,619,598,687,603L687,622L461,622L461,603C525,603,544,586,512,531 Z"/>
<glyph unicode="a" horiz-adv-x="396" d="M113,310C109,319,108,323,108,329C108,350,137,378,170,378C192,378,213,365,226,349C243,329,243,313,243,285L243,206C208,185,175,173,154,168C90,152,36,131,36,70C36,21,71,-12,129,-12C156,-12,176,-8,245,49C246,33,250,-12,291,-12C308,-12,336,-1,390,43L385,58C360,37,347,36,336,36C310,36,310,54,310,134L310,268C310,320,310,333,295,354C267,393,220,407,190,407C125,407,42,326,42,291C42,286,43,283,45,277 ZM243,67C187,28,175,23,159,23C129,23,100,46,100,82C100,123,123,133,184,158C208,168,224,175,243,186 Z"/>
<glyph unicode="b" horiz-adv-x="500" d="M142,672L126,672L6,631L6,614L34,610C72,605,75,601,75,549L75,7C139,-5,178,-12,223,-12C356,-12,457,86,457,214C457,319,382,407,293,407C256,407,213,388,142,337 ZM142,314C187,346,223,361,254,361C331,361,390,286,390,186C390,86,333,17,251,17C175,17,142,72,142,122 Z"/>
<glyph unicode="c" horiz-adv-x="427" d="M376,101C340,51,302,29,254,29C173,29,113,103,113,203C113,299,173,381,242,381C298,381,310,320,359,320C375,320,388,333,388,350C388,382,339,407,276,407C149,407,46,306,46,181C46,102,94,-12,214,-12C294,-12,349,25,391,92 Z"/>
<glyph unicode="d" horiz-adv-x="500" d="M358,388C331,399,290,407,260,407C138,407,43,306,43,181C43,74,114,-12,203,-12C241,-12,293,12,358,59L358,-12L370,-12L498,38L498,59L474,52C446,44,425,51,425,85L425,672L286,631L286,614L319,610C351,606,358,601,358,582 ZM358,81C314,50,271,31,240,31C168,31,110,115,110,215C110,309,161,380,239,380C286,380,322,358,358,305 Z"/>
<glyph unicode="e" horiz-adv-x="438" d="M406,254L406,277C373,310,376,407,241,407C119,407,48,299,48,193C48,77,124,-12,222,-12C295,-12,358,38,400,91L389,103C351,58,312,38,262,38C183,38,110,108,110,212C110,225,112,239,114,254 ZM117,280C140,373,190,388,223,388C271,388,311,345,322,280 Z"/>
<glyph unicode="f" horiz-adv-x="271" d="M258,396L157,396L157,472C157,569,196,626,268,626C334,626,371,577,385,577C393,577,412,617,412,625C412,640,365,672,309,672C263,672,216,650,167,601C108,542,90,479,90,396C68,384,44,375,16,369L16,352L90,352L90,88C90,32,80,19,22,19L22,-0L269,-0L269,19L231,19C175,19,157,32,157,78L157,352L265,352 Z"/>
<glyph unicode="g" horiz-adv-x="469" d="M472,377C428,372,386,367,341,367C314,393,275,407,229,407C130,407,53,340,53,254C53,197,88,154,149,130C114,104,47,102,47,56C47,24,88,-10,142,-15C96,-71,35,-80,35,-138C35,-187,85,-233,189,-233C374,-233,462,-133,462,-68C462,-47,456,-22,432,2C402,32,363,37,250,38C150,39,107,49,107,74C107,97,152,108,168,125C186,119,195,117,214,117C325,117,389,188,389,262C389,294,378,315,372,326C410,319,457,315,472,314 ZM322,253C322,184,284,136,226,136C150,136,120,215,120,274C120,367,179,388,217,388C278,388,322,339,322,253 ZM97,-105C97,-66,134,-52,162,-19C191,-23,317,-24,343,-27C379,-30,410,-49,410,-86C410,-149,330,-205,245,-205C163,-205,97,-152,97,-105 Z"/>
<glyph unicode="h" horiz-adv-x="521" d="M160,319C209,350,245,366,278,366C311,366,369,352,369,245C369,96,365,53,347,35C336,24,317,19,291,19L291,-0L507,-0L507,19C448,19,433,30,431,57C434,111,436,167,436,258C436,359,402,407,325,407C274,407,226,383,160,344L160,672L144,672L25,631L25,614L68,608C89,605,93,597,93,575L93,96C93,41,80,22,25,19L25,-0L225,-0L225,19C173,19,160,32,160,79 Z"/>
<glyph unicode="i" horiz-adv-x="260" d="M168,412L153,412L23,367L23,351L70,342C96,337,101,332,101,293L101,92C101,39,79,19,18,19L18,-0L240,-0L240,19C187,19,168,41,168,76 ZM84,599C84,578,103,561,127,561C151,561,171,578,171,599C171,620,151,637,127,637C103,637,84,620,84,599 Z"/>
<glyph unicode="k" horiz-adv-x="500" d="M265,396L265,377L282,377C319,377,329,360,303,341L159,238L159,672L144,672L22,631L22,614L63,608C87,605,92,597,92,569L92,86C92,43,75,19,22,19L22,-0L227,-0L227,19L217,19C171,19,159,33,159,68L159,221L311,63C337,35,330,19,281,19L281,-0L496,-0L496,19C450,20,427,34,377,85L217,248L309,314C360,351,392,374,463,377L463,396 Z"/>
<glyph unicode="l" horiz-adv-x="240" d="M156,672L141,672L13,631L13,614L58,609C86,606,89,597,89,569L89,86C89,38,70,19,6,19L6,-0L231,-0L231,19L214,19C175,19,156,38,156,79 Z"/>
<glyph unicode="m" horiz-adv-x="792" d="M159,309C227,354,265,367,293,367C328,367,367,344,367,281L367,96C367,39,347,19,291,19L291,-0L496,-0L496,19C446,19,434,31,434,81L434,311C496,352,536,367,567,367C616,367,642,330,642,253L642,175C642,106,641,48,626,33C617,24,604,19,575,19L566,19L566,-0L791,-0L791,19L759,19C718,19,706,43,706,64C709,125,709,192,709,256C709,352,681,407,609,407C560,407,499,369,432,327C422,376,386,407,337,407C297,407,231,378,159,327L159,407L144,407L24,365L24,348L63,343C86,340,92,331,92,292L92,96C92,45,79,19,21,19L21,-0L229,-0L229,19C173,19,159,29,159,81 Z"/>
<glyph unicode="n" horiz-adv-x="521" d="M160,304C212,340,261,368,293,368C333,368,372,343,372,263C372,130,370,57,351,38C340,27,323,20,294,19L294,-0L509,-0L509,19L487,19C446,19,430,32,431,59C432,98,439,124,439,257C439,357,400,407,332,407C283,407,227,370,160,328L160,406L144,406L29,364L29,348L63,341C89,336,93,329,93,292L93,82C93,43,70,19,26,19L26,-0L227,-0L227,19C173,19,160,32,160,87 Z"/>
<glyph unicode="o" horiz-adv-x="521" d="M45,195C45,78,140,-12,264,-12C383,-12,476,79,476,197C476,316,383,407,261,407C157,407,45,333,45,195 ZM120,229C120,315,181,383,247,383C331,383,401,286,401,172C401,72,334,12,275,12C189,12,120,108,120,229 Z"/>
<glyph unicode="p" horiz-adv-x="500" d="M150,13C188,-1,214,-7,241,-7C355,-7,453,97,453,218C453,316,383,404,305,404C265,404,212,378,150,331L150,427L130,427L23,361L23,342L55,334C79,328,83,320,83,301L83,-140C83,-197,67,-214,16,-214L6,-214L6,-233L242,-233L242,-214L217,-214C175,-214,150,-199,150,-149 ZM150,306C186,337,224,355,255,355C308,355,386,305,386,173C386,91,336,24,268,24C231,24,186,46,150,78 Z"/>
<glyph unicode="r" horiz-adv-x="333" d="M160,267C168,282,179,299,192,317C202,331,213,343,231,343C243,343,255,338,266,333C285,324,304,319,319,317L343,377C319,384,301,388,291,392C272,400,269,401,257,401C224,401,212,382,162,300L160,300L160,406L140,406L26,366L26,349L93,325L93,94C93,41,77,20,26,19L26,-0L263,-0L263,19L225,19C175,19,160,32,160,73 Z"/>
<glyph unicode="s" horiz-adv-x="302" d="M32,101L43,-11L58,-11C63,-3,69,1,75,1C83,1,91,-2,102,-5C113,-9,127,-12,146,-12C216,-12,270,37,270,102C270,224,84,239,84,327C84,360,112,383,145,383C185,383,218,351,225,300L242,300L240,391C215,401,187,407,160,407C84,407,32,361,32,295C32,212,111,205,182,134C209,107,214,94,214,73C214,37,183,7,143,7C98,7,60,41,48,101 Z"/>
<glyph unicode="t" horiz-adv-x="292" d="M142,396L142,495L125,495C102,433,68,387,29,368L29,352L75,352L75,104C75,37,117,-12,176,-12C222,-12,261,18,285,70L269,85C250,52,230,35,208,35C187,35,142,56,142,119L142,352L269,352L285,396 Z"/>
<glyph unicode="u" horiz-adv-x="521" d="M497,47L476,43C440,36,430,41,430,69L430,406L276,382L276,368L326,359C358,353,363,345,363,306L363,91C322,57,278,36,244,36C199,36,154,64,154,126L154,406L25,378L25,363L60,353C81,347,87,336,87,312L87,90C87,22,143,-12,193,-12C233,-12,288,14,363,68L363,-12L497,29 Z"/>
<glyph unicode="v" horiz-adv-x="479" d="M256,-9L394,305C413,349,435,371,473,378L473,396L299,396L299,378C372,373,381,344,363,303L261,72L155,321C131,368,150,376,211,378L211,396L7,396L7,378L38,373C54,370,67,358,82,323L227,-9 Z"/>
<glyph unicode="w" horiz-adv-x="740" d="M525,-9L654,306C674,355,698,374,736,378L736,396L568,396L568,378C631,378,648,361,626,308L530,74L432,312C411,362,426,377,475,378L475,396L268,396L268,378L292,375C327,371,344,353,366,302L268,70L160,311C139,358,143,375,202,378L202,396L8,396L8,378C54,373,68,358,82,327L231,-9L259,-9L379,273L498,-9 Z"/>
<glyph unicode="y" horiz-adv-x="469" d="M261,73L148,317C128,359,135,377,196,378L196,396L-5,396L-5,378C37,377,55,360,74,319L229,-10L199,-85C191,-105,176,-131,165,-142C140,-167,82,-157,82,-198C82,-218,99,-233,123,-233C158,-233,181,-200,211,-126L381,298C400,345,423,373,464,378L464,396L298,396L298,378C357,376,376,361,346,285 Z"/>
<glyph unicode="—" horiz-adv-x="1000" d="M-6,271L-6,227L1006,227L1006,271 Z"/>
<glyph unicode="‘" horiz-adv-x="260" d="M179,660C113,635,68,575,68,513C68,465,98,430,138,430C168,430,192,452,192,479C192,505,173,524,147,524C136,524,132,521,123,521C113,521,109,530,109,542C109,578,136,613,186,642 Z"/>
<glyph unicode="’" horiz-adv-x="260" d="M81,430C147,455,192,515,192,577C192,625,162,660,122,660C92,660,68,638,68,611C68,585,87,566,113,566C124,566,128,569,137,569C147,569,151,560,151,548C151,512,124,477,74,448 Z"/>
</font>
<font horiz-adv-x="0"><font-face
font-family="fnt0"
units-per-em="1000"
ascent="673"
descent="-233"
/>
<missing-glyph horiz-adv-x="0"/>
<glyph unicode=" " horiz-adv-x="278" d="M0 0 Z"/>
<glyph unicode="A" horiz-adv-x="698" d="M525,637L120,110C81,59,48,23,-4,19L-8,-0L209,-0L213,19L194,19C139,19,106,49,147,102L278,271L503,271L503,93C503,41,477,19,399,19L395,-0L661,-0L665,19C600,19,581,37,581,77L581,637 ZM501,567L503,567L503,307L306,307 Z"/>
<glyph unicode="W" horiz-adv-x="958" d="M192,-16L225,-16L580,463L582,461L571,-16L607,-16L986,519C1024,573,1045,592,1080,603L1084,622L903,622L899,603C974,603,981,557,939,498L652,89L650,91L661,519C663,578,678,597,741,603L745,622L509,622L505,603C556,602,582,583,582,543L582,507L273,89L271,91L292,507C295,576,308,595,373,603L377,622L151,622L147,603C206,601,219,580,217,542 Z"/>
<glyph unicode="a" horiz-adv-x="406" d="M393,408C220,414,48,246,48,91C48,39,76,-12,105,-12C142,-12,250,101,273,129L275,127C260,67,246,-12,289,-12C311,-12,356,30,393,74L393,97C375,77,347,46,334,46C325,46,323,58,329,89 ZM281,157C198,74,158,38,143,38C126,38,109,67,109,111C109,178,141,262,180,301C213,334,257,353,321,357 Z"/>
<glyph unicode="c" horiz-adv-x="271" d="M257,89C225,49,186,25,156,25C120,25,98,54,98,100C98,169,142,367,207,367C235,367,249,341,282,341C297,341,307,354,307,372C307,394,288,408,256,408C129,408,36,206,36,91C36,29,70,-12,121,-12C164,-12,222,23,270,79 Z"/>