forked from kb-dk/traces-of-historical-plagues
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bar_diagram.ps
4032 lines (4032 loc) · 228 KB
/
bar_diagram.ps
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
%!PS-Adobe-3.0
%%Creator: groff version 1.22.4
%%CreationDate: Mon Jul 25 11:14:00 2022
%%DocumentNeededResources: font Times-Bold
%%+ font Times-Italic
%%+ font Times-Roman
%%+ font Courier
%%DocumentSuppliedResources: file words_by_week.eps
%%+ font DejaVuSans
%%+ file articles_by_year.eps
%%+ procset grops 1.22 4
%%LanguageLevel: 2
%%Pages: 18
%%PageOrder: Ascend
%%DocumentMedia: Default 595 842 0 () ()
%%Orientation: Portrait
%%EndComments
%%BeginDefaults
%%PageMedia: Default
%%EndDefaults
%%BeginProlog
%%BeginResource: procset grops 1.22 4
%!PS-Adobe-3.0 Resource-ProcSet
/setpacking where{
pop
currentpacking
true setpacking
}if
/grops 120 dict dup begin
/SC 32 def
/A/show load def
/B{0 SC 3 -1 roll widthshow}bind def
/C{0 exch ashow}bind def
/D{0 exch 0 SC 5 2 roll awidthshow}bind def
/E{0 rmoveto show}bind def
/F{0 rmoveto 0 SC 3 -1 roll widthshow}bind def
/G{0 rmoveto 0 exch ashow}bind def
/H{0 rmoveto 0 exch 0 SC 5 2 roll awidthshow}bind def
/I{0 exch rmoveto show}bind def
/J{0 exch rmoveto 0 SC 3 -1 roll widthshow}bind def
/K{0 exch rmoveto 0 exch ashow}bind def
/L{0 exch rmoveto 0 exch 0 SC 5 2 roll awidthshow}bind def
/M{rmoveto show}bind def
/N{rmoveto 0 SC 3 -1 roll widthshow}bind def
/O{rmoveto 0 exch ashow}bind def
/P{rmoveto 0 exch 0 SC 5 2 roll awidthshow}bind def
/Q{moveto show}bind def
/R{moveto 0 SC 3 -1 roll widthshow}bind def
/S{moveto 0 exch ashow}bind def
/T{moveto 0 exch 0 SC 5 2 roll awidthshow}bind def
/SF{
findfont exch
[exch dup 0 exch 0 exch neg 0 0]makefont
dup setfont
[exch/setfont cvx]cvx bind def
}bind def
/MF{
findfont
[5 2 roll
0 3 1 roll
neg 0 0]makefont
dup setfont
[exch/setfont cvx]cvx bind def
}bind def
/level0 0 def
/RES 0 def
/PL 0 def
/LS 0 def
/MANUAL{
statusdict begin/manualfeed true store end
}bind def
/PLG{
gsave newpath clippath pathbbox grestore
exch pop add exch pop
}bind def
/BP{
/level0 save def
1 setlinecap
1 setlinejoin
DEFS/BPhook known{DEFS begin BPhook end}if
72 RES div dup scale
LS{
90 rotate
}{
0 PL translate
}ifelse
1 -1 scale
}bind def
/EP{
level0 restore
showpage
}def
/DA{
newpath arcn stroke
}bind def
/SN{
transform
.25 sub exch .25 sub exch
round .25 add exch round .25 add exch
itransform
}bind def
/DL{
SN
moveto
SN
lineto stroke
}bind def
/DC{
newpath 0 360 arc closepath
}bind def
/TM matrix def
/DE{
TM currentmatrix pop
translate scale newpath 0 0 .5 0 360 arc closepath
TM setmatrix
}bind def
/RC/rcurveto load def
/RL/rlineto load def
/ST/stroke load def
/MT/moveto load def
/CL/closepath load def
/Fr{
setrgbcolor fill
}bind def
/setcmykcolor where{
pop
/Fk{
setcmykcolor fill
}bind def
}if
/Fg{
setgray fill
}bind def
/FL/fill load def
/LW/setlinewidth load def
/Cr/setrgbcolor load def
/setcmykcolor where{
pop
/Ck/setcmykcolor load def
}if
/Cg/setgray load def
/RE{
findfont
dup maxlength 1 index/FontName known not{1 add}if dict begin
{
1 index/FID ne
2 index/UniqueID ne
and
{def}{pop pop}ifelse
}forall
/Encoding exch def
dup/FontName exch def
currentdict end definefont pop
}bind def
/DEFS 0 def
/EBEGIN{
moveto
DEFS begin
}bind def
/EEND/end load def
/CNT 0 def
/level1 0 def
/PBEGIN{
/level1 save def
translate
div 3 1 roll div exch scale
neg exch neg exch translate
0 setgray
0 setlinecap
1 setlinewidth
0 setlinejoin
10 setmiterlimit
[]0 setdash
/setstrokeadjust where{
pop
false setstrokeadjust
}if
/setoverprint where{
pop
false setoverprint
}if
newpath
/CNT countdictstack def
userdict begin
/showpage{}def
/setpagedevice{}def
mark
}bind def
/PEND{
cleartomark
countdictstack CNT sub{end}repeat
level1 restore
}bind def
end def
/setpacking where{
pop
setpacking
}if
%%EndResource
%%EndProlog
%%BeginSetup
%%BeginFeature: *PageSize Default
<< /PageSize [ 595 842 ] /ImagingBBox null >> setpagedevice
%%EndFeature
%%IncludeResource: font Times-Bold
%%IncludeResource: font Times-Italic
%%IncludeResource: font Times-Roman
%%IncludeResource: font Courier
grops begin/DEFS 1 dict def DEFS begin/u{.001 mul}bind def end/RES 72
def/PL 841.89 def/LS false def/ENC0[/asciicircum/asciitilde/Scaron
/Zcaron/scaron/zcaron/Ydieresis/trademark/quotesingle/Euro/.notdef
/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef
/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef
/.notdef/.notdef/.notdef/space/exclam/quotedbl/numbersign/dollar/percent
/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen
/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon
/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O
/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/circumflex
/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y
/z/braceleft/bar/braceright/tilde/.notdef/quotesinglbase/guillemotleft
/guillemotright/bullet/florin/fraction/perthousand/dagger/daggerdbl
/endash/emdash/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/hungarumlaut
/dotaccent/breve/caron/ring/ogonek/quotedblleft/quotedblright/oe/lslash
/quotedblbase/OE/Lslash/.notdef/exclamdown/cent/sterling/currency/yen
/brokenbar/section/dieresis/copyright/ordfeminine/guilsinglleft
/logicalnot/minus/registered/macron/degree/plusminus/twosuperior
/threesuperior/acute/mu/paragraph/periodcentered/cedilla/onesuperior
/ordmasculine/guilsinglright/onequarter/onehalf/threequarters
/questiondown/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE
/Ccedilla/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex
/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis
/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn
/germandbls/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla
/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis
/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide/oslash
/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis]def
/Courier@0 ENC0/Courier RE/Times-Roman@0 ENC0/Times-Roman RE
/Times-Italic@0 ENC0/Times-Italic RE/Times-Bold@0 ENC0/Times-Bold RE
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
BP
%%EndPageSetup
/F0 14/Times-Bold@0 SF
(The Copenhagen cholera epidemics 1853 in contemporary)124.198 146.866 Q
(Danish newspaper pr)105.032 163.866 Q(ose: Some back-of-an-en)-.252 E
-.14(ve)-.56 G(lope calculations).14 E(made during A)226.055 180.866 Q
(pril 2020)-.35 E/F1 12/Times-Italic@0 SF(Sigfrid Lundber)256.687
222.866 Q(g)-.444 E/F2 12/Times-Roman@0 SF(The Ro)234.541 243.866 Q
(yal Danish Library)-.12 E/F3 12/Times-Bold@0 SF(Intr)70.866 285.866 Q
(oduction)-.216 E F2 .916(Inspired by the f)70.866 304.066 R .916
(act that we are all hiding a)-.12 F -.12(wa)-.18 G 3.915(yf).12 G .915
(rom the Co)-3.915 F .915(vid-19 I w)-.18 F .915(anted to tak)-.12 F
3.915(eac)-.12 G(loser)-3.915 E .248(look at some other epidemic.)70.866
318.066 R .248(My hope w)6.248 F .249
(as to \214nd patterns of change in language use mirror)-.12 F(-)-.24 E
.222(ing sentiments and attitudes e)70.866 332.066 R .221(xpressed in w)
-.18 F .221(ords, bigrams and trigrams and frequenc)-.12 F 3.221(yd)-.18
G(istrib)-3.221 E(u-)-.24 E 4.196(tions. My)70.866 346.066 R 1.196
(\214rst impulse w)4.196 F 1.197
(as to analyze the Spanish \215u 1918, b)-.12 F 1.197(ut since we ha)
-.24 F 1.557 -.18(ve a)-.24 H 4.197(sy).18 G 1.197(et little)-4.197 F
.892(data in our public corpora from that period I turned my attention \
to the Cholera epidemic in)70.866 360.066 R 1.282(Copenhagen 1853.)
70.866 374.066 R 1.282(At the time, Copenhagen had around 130.000)7.282
F/F4 8.4/Times-Roman@0 SF(1)-4.92 I F2 1.283(inhabitants out of which)
4.282 4.92 N .394(7.219 were diagnosed as ha)70.866 388.066 R .394
(ving the disease out of which 4.737 \(56,7%\) died.)-.24 F .393
(Christian Mol-)6.393 F(bech writes in a letter to Christian Knud Frede\
rik Molbech, the July 3, 1853:)70.866 402.066 Q/F5 10/Times-Roman@0 SF
.489(The \214rst cholera case w)100.866 418.266 R .489(as found as earl\
y as the 12th June \(i.e., the day before the opening of the)-.1 F .365
(parliament in June\) \212 a young man from the area close to the na)
100.866 430.266 R -.25(va)-.2 G 2.865(lb).25 G .365
(aracks, who for quite some)-2.865 F .217(time had w)100.866 442.266 R
(ork)-.1 E .217(ed on a dredge. He has reco)-.1 F -.15(ve)-.15 G .217
(red, and w).15 F .218(as released from hospital the 25th. The au-)-.1 F
(thorities were able to conceal the earliest fe)100.866 454.266 Q 2.5
(wc)-.25 G(ases for a fortnight.)-2.5 E/F6 7/Times-Roman@0 SF(2)-4.1 I 0
0 340.157 360 -204.094 216 142.559 676.56 PBEGIN
%%BeginDocument: articles_by_year.eps
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.16.0 (https://cairographics.org)
%%CreationDate: Mon Jul 25 13:14:00 2022
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 0 0 360 216
%%EndComments
%%BeginProlog
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
/cairo_data_source {
CairoDataIndex CairoData length lt
{ CairoData CairoDataIndex get /CairoDataIndex CairoDataIndex 1 add def }
{ () } ifelse
} def
/cairo_flush_ascii85_file { cairo_ascii85_file status { cairo_ascii85_file flushfile } if } def
/cairo_image { image cairo_flush_ascii85_file } def
/cairo_imagemask { imagemask cairo_flush_ascii85_file } def
%%EndProlog
%%BeginSetup
%%BeginResource: font DejaVuSans
11 dict begin
/FontType 42 def
/FontName /DejaVuSans def
/PaintType 0 def
/FontMatrix [ 1 0 0 1 0 0 ] def
/FontBBox [ 0 0 0 0 ] def
/Encoding 256 array def
0 1 255 { Encoding exch /.notdef put } for
Encoding 32 /space put
Encoding 48 /zero put
Encoding 49 /one put
Encoding 50 /two put
Encoding 52 /four put
Encoding 53 /five put
Encoding 54 /six put
Encoding 56 /eight put
Encoding 79 /O put
Encoding 89 /Y put
Encoding 97 /a put
Encoding 99 /c put
Encoding 100 /d put
Encoding 101 /e put
Encoding 104 /h put
Encoding 105 /i put
Encoding 107 /k put
Encoding 108 /l put
Encoding 109 /m put
Encoding 110 /n put
Encoding 111 /o put
Encoding 112 /p put
Encoding 114 /r put
Encoding 115 /s put
Encoding 116 /t put
Encoding 117 /u put
/CharStrings 27 dict dup begin
/.notdef 0 def
/space 1 def
/zero 2 def
/two 3 def
/four 4 def
/six 5 def
/eight 6 def
/one 7 def
/five 8 def
/O 9 def
/c 10 def
/u 11 def
/r 12 def
/e 13 def
/n 14 def
/Y 15 def
/a 16 def
/k 17 def
/o 18 def
/l 19 def
/h 20 def
/p 21 def
/i 22 def
/d 23 def
/m 24 def
/s 25 def
/t 26 def
end readonly def
/sfnts [
<0001000000090080000300106376742000691d39000011c0000001fe6670676d7134766a0000
13c0000000ab676c7966334258a50000009c00001124686561640d1447cc0000146c00000036
686865610d9f0788000014a400000024686d74787e1c0e60000014c80000006c6c6f63610000
e3f000001534000000706d61787004880671000015a400000020707265703b07f100000015c4
0000056800020066fe96046605a400030007001a400c04fb0006fb0108057f0204002fc4d4ec
310010d4ecd4ec301311211125211121660400fc73031bfce5fe96070ef8f272062900020087
ffe3048f05f0000b00170023401306a01200a00c91128c18091c0f1e031c151b1810fcecf4ec
310010e4f4ec10ee30012202111012333212111002273200111000232200111000028b9c9d9d
9c9d9d9d9dfb0109fef7fbfbfef701090550fecdfeccfecdfecd0133013301340133a0fe73fe
86fe87fe73018d0179017a018d00000100960000044a05f0001c009e4027191a1b03181c1105
0400110505044210a111940da014910400a00200100a02010a1c171003061d10fc4bb015544b
b016545b4bb014545b58b90003ffc03859c4d4ecc0c011123931002fec32f4ecf4ec304b5358
071005ed0705ed01b01c1011173959220140325504560556077a047a05761b87190704000419
041a041b051c74007606751a731b741c82008619821a821b821ca800a81b115d005d25211521
353600373e0135342623220607353e01333204151406070600018902c1fc4c73018d33614da7
865fd3787ad458e80114455b19fef4aaaaaa7701913a6d974977964243cc3132e8c25ca5701d
feeb000000020064000004a405d50002000d0081401d010d030d0003030d4200030b07a00501
038109010c0a001c0608040c0e10dc4bb00b544bb00d545b58b9000cffc03859d43cc4ec3211
3931002fe4d43cec321239304b5358071004c9071005c9592201402a0b002a00480059006900
77008a000716012b0026012b0336014e014f0c4f0d5601660175017a0385010d5d005d090121
03331133152311231121350306fe0201fe35fed5d5c9fd5e0525fce303cdfc33a8fea00160c3
00000002008fffe3049605f0000b0024005840241306000d860c00a01606a01c16a510a00c89
22911c8c250c22091c191e131c03211f1b2510fcececf4ece4310010e4f4e4fce410ee10ee10
ee111239304014cb00cb01cd02cd03cd04cb05cb0607a41eb21e025d015d0122061514163332
3635342601152e01232202033e0133320015140023200011100021321602a4889f9f88889f9f
01094c9b4cc8d30f3bb26be10105fef0e2fefdfeee0150011b4c9b033bbaa2a1bbbba1a2ba02
79b82426fef2feef575dfeefebe6feea018d0179016201a51e0000000003008bffe3048b05f0
000b0023002f00434025180c00a02706a01e2da012911e8c27a330180c242a1c15241c0f091c
151b1e031c0f211b3010fcc4ecf4c4ec10ee10ee113939310010ece4f4ec10ee10ee39393001
2206151416333236353426252e01353424333216151406071e01151404232224353436131416
333236353426232206028b90a5a59090a6a5fea5829100ffdedffe918192a3fef7f7f7fef7a4
48918382939382839102c59a87879a9b86879a5620b280b3d0d0b380b22022c68fd9e8e8d98f
c60161748282747482820000000100e10000045a05d5000a004040154203a00402a005810700
a009081f061c03001f010b10d44bb00f5458b9000100403859ecc4fcec31002fec32f4ecd4ec
304b5358592201b40f030f04025d3721110535253311211521fe014afe990165ca014afca4aa
047348b848fad5aa00000001009effe3046405d5001d005e4023041a071186101d1aa00714a0
10890d02a000810d8c07a41e171c010a031c000a10061e10fc014bb016544bb014545b58b900
10ffc038594bb00f5458b9001000403859c4d4ec10c4ee310010e4e4f4ec10e6ee10fec410ee
1112393013211521113e0133320015140021222627351e0133323635342623220607dd0319fd
a02c582cfa0124fed4feef5ec3685ac06badcacaad51a15405d5aafe920f0ffeeeeaf1fef520
20cb3130b69c9cb62426000000020073ffe305d905f0000b00170023401306951200950c9112
8c1809190f33031915101810fcecfcec310010e4f4ec10ee3001220011100033320011100027
20001110002120001110000327dcfefd0103dcdc0101feffdc013a0178fe88fec6fec5fe8701
79054cfeb8fee5fee6feb80148011a011b0148a4fe5bfe9efe9ffe5b01a40162016201a50000
00010071ffe303e7047b0019003f401b00860188040e860d880ab91104b917b8118c1a07120d
004814451a10fce432ec310010e4f4ec10fef4ee10f5ee30400b0f1b101b801b901ba01b0501
5d01152e0123220615141633323637150e0123220011100021321603e74e9d50b3c6c6b3509d
4e4da55dfdfed6012d010655a20435ac2b2be3cdcde32b2baa2424013e010e0112013a230000
000200aeffe30458047b00130014003b401c030900030e0106870e118c0a01bc14b80c0d0908
140b4e020800461510fcecf439ec3231002fe4e432f4c4ec1112173930b46f15c01502015d13
11331114163332363511331123350e0123222601aeb87c7c95adb8b843b175c1c801cf01ba02
a6fd619f9fbea4027bfba0ac6663f003a800000100ba0000034a047b001100304014060b0700
110b03870eb809bc070a06080008461210fcc4ec3231002fe4f4ecc4d4cc11123930b450139f
1302015d012e012322061511231133153e0133321617034a1f492c9ca7b9b93aba85132e1c03
b41211cbbefdb20460ae66630505000000020071ffe3047f047b0014001b0070402400150109
8608880515a90105b90c01bb18b912b80c8c1c1b1502081508004b02120f451c10fcecf4ecc4
111239310010e4f4ece410ee10ee10f4ee1112393040293f1d701da01dd01df01d053f003f01
3f023f153f1b052c072f082f092c0a6f006f016f026f156f1b095d71015d0115211e01333236
37150e01232000111000333200072e0123220607047ffcb20ccdb76ac76263d06bfef4fec701
29fce20107b802a5889ab90e025e5abec73434ae2a2c0138010a01130143feddc497b4ae9e00
000100ba00000464047b001300364019030900030e0106870e11b80cbc0a010208004e0d0908
0b461410fcec32f4ec31002f3ce4f4c4ec1112173930b46015cf1502015d0111231134262322
061511231133153e013332160464b87c7c95acb9b942b375c1c602a4fd5c029e9f9ebea4fd87
0460ae6564ef0001fffc000004e705d500080094402803110405040211010205050402110302
080008011100000842020300af0602070440051c0040070910d4e4fce4123931002fec323930
4b5358071005ed071008ed071008ed071005ed5922b2000a01015d403c050214023502300230
05300846024002400540085102510551086502840293021016011a031f0a2601290337013803
400a670168037803700a9f0a0d5d005d03330901330111231104d9019e019bd9fdf0cb05d5fd
9a0266fcf2fd3902c70000000002007bffe3042d047b000a002500bc4027191f0b17090e00a9
1706b90e1120861fba1cb923b8118c170c001703180d09080b1f030814452610fcecccd4ec32
3211393931002fc4e4f4fcf4ec10c6ee10ee11391139123930406e301d301e301f3020302130
223f27401d401e401f402040214022501d501e501f50205021502250277027851d871e871f87
20872185229027a027f0271e301e301f30203021401e401f40204021501e501f50205021601e
601f60206021701e701f70207021801e801f80208021185d015d0122061514163332363d0137
1123350e01232226353436332135342623220607353e0133321602bedfac816f99b9b8b83fbc
88accbfdfb0102a79760b65465be5af3f00233667b6273d9b4294cfd81aa6661c1a2bdc0127f
8b2e2eaa2727fc00000100ba0000049c0614000a00bc40290811050605071106060503110405
040211050504420805020303bc009709060501040608010800460b10fcec32d4c4113931002f
3cece41739304b5358071004ed071005ed071005ed071004ed5922b2100c01015d405f04020a
081602270229052b0856026602670873027705820289058e08930296059708a3021209050906
020b030a072803270428052b062b07400c6803600c8903850489058d068f079a039707aa03a7
05b607c507d607f703f003f704f0041a5d71005d1333110133090123011123bab90225ebfdae
026bf0fdc7b90614fc6901e3fdf4fdac0223fddd00020071ffe30475047b000b0017004a4013
06b91200b90cb8128c1809120f51031215451810fcecf4ec310010e4f4ec10ee3040233f197b
007b067f077f087f097f0a7f0b7b0c7f0d7f0e7f0f7f107f117b12a019f01911015d01220615
1416333236353426273200111000232200111000027394acab9593acac93f00112feeef0f1fe
ef011103dfe7c9c9e7e8c8c7e99cfec8feecfeedfec701390113011401380000000100c10000
0179061400030022b7009702010800460410fcec31002fec30400d10054005500560057005f0
0506015d13331123c1b8b80614f9ec00000100ba000004640614001300344019030900030e01
06870e11b80c970a010208004e0d09080b461410fcec32f4ec31002f3cecf4c4ec1112173930
b2601501015d0111231134262322061511231133113e013332160464b87c7c95acb9b942b375
c1c602a4fd5c029e9f9ebea4fd870614fd9e6564ef00000200bafe5604a4047b0010001c003e
401b1ab9000e14b90508b80e8c01bd03bc1d11120b471704000802461d10fcec3232f4ec3100
10e4e4e4f4c4ec10c4ee304009601e801ea01ee01e04015d2511231133153e01333200111002
2322260134262322061514163332360173b9b93ab17bcc00ffffcc7bb10238a79292a7a79292
a7a8fdae060aaa6461febcfef8fef8febc6101ebcbe7e7cbcbe7e7000000000200c100000179
061400030007002b400e06be04b100bc020501080400460810fc3cec3231002fe4fcec30400b
1009400950096009700905015d1333112311331523c1b8b8b8b80460fba00614e90000020071
ffe3045a06140010001c003840191ab9000e14b905088c0eb801970317040008024711120b45
1d10fcecf4ec323231002fece4f4c4ec10c4ee30b6601e801ea01e03015d0111331123350e01
23220211100033321601141633323635342623220603a2b8b83ab17ccbff00ffcb7cb1fdc7a7
9292a8a89292a703b6025ef9eca86461014401080108014461fe15cbe7e7cbcbe7e7000100ba
0000071d047b0022005a4026061209180f00061d07150c871d2003b81bbc19100700110f0808
065011080f501c18081a462310fcec32fcfcfcec11123931002f3c3ce4f43cc4ec3211121739
3040133024502470249024a024a024bf24df24ff2409015d013e013332161511231134262322
061511231134262322061511231133153e01333216042945c082afbeb972758fa6b972778da6
b9b93fb0797aab03897c76f5e2fd5c029ea19cbea4fd87029ea29bbfa3fd870460ae67627c00
00000001006fffe303c7047b002700e7403c0d0c020e0b531f1e080902070a531f1f1e420a0b
1e1f041500860189041486158918b91104b925b8118c281e0a0b1f1b0700521b080e07081422
452810fcc4ecd4ece4111239393939310010e4f4ec10fef5ee10f5ee121739304b535807100e
ed111739070eed1117395922b2002701015d406d1c0a1c0b1c0c2e092c0a2c0b2c0c3b093b0a
3b0b3b0c0b200020012402280a280b2a132f142f152a16281e281f292029212427860a860b86
0c860d12000000010202060a060b030c030d030e030f03100319031a031b031c041d09272f29
3f295f297f2980299029a029f029185d005d7101152e012322061514161f011e011514062322
2627351e013332363534262f012e01353436333216038b4ea85a898962943fc4a5f7d85ac36c
66c661828c65ab40ab98e0ce66b4043fae282854544049210e2a99899cb62323be353559514b
50250f2495829eac1e00000000010037000002f2059e0013003840190e05080f03a9001101bc
08870a0b08090204000810120e461410fc3cc4fc3cc432393931002fecf43cc4ec3211393930
b2af1501015d01112115211114163b01152322263511233533110177017bfe854b73bdbdd5a2
8787059efec28ffda0894e9a9fd202608f013e000000013500b800cb00cb00c100aa009c01a6
00b800660000007100cb00a002b20085007500b800c301cb0189022d00cb00a600f000d300aa
008700cb03aa0400014a003300cb000000d9050200f4015400b4009c01390114013907060400
044e04b4045204b804e704cd0037047304cd04600473013303a2055605a60556053903c50212
00c9001f00b801df007300ba03e9033303bc0444040e00df03cd03aa00e503aa0404000000cb
008f00a4007b00b80014016f007f027b0252008f00c705cd009a009a006f00cb00cd019e01d3
00f000ba018300d5009803040248009e01d500c100cb00f600830354027f00000333026600d3
00c700a400cd008f009a0073040005d5010a00fe022b00a400b4009c00000062009c0000001d
032d05d505d505d505f0007f007b005400a406b80614072301d300b800cb00a601c301ec0693
00a000d3035c037103db0185042304a80448008f0139011401390360008f05d5019a06140723
06660179046004600460047b009c00000277046001aa00e904600762007b00c5007f027b0000
00b4025205cd006600bc00660077061000cd013b01850389008f007b0000001d00cd074a042f
009c009c0000077d006f0000006f0335006a006f007b00ae00b2002d0396008f027b00f60083
0354063705f6008f009c04e10266008f018d02f600cd03440029006604ee0073000014000096
0000b707060504030201002c2010b002254964b040515820c859212d2cb002254964b0405158
20c859212d2c20100720b00050b00d7920b8ffff5058041b0559b0051cb0032508b0042523e1
20b00050b00d7920b8ffff5058041b0559b0051cb0032508e12d2c4b505820b0fd454459212d
2cb002254560442d2c4b5358b00225b0022545445921212d2c45442d2cb00225b0022549b005
25b005254960b0206368208a108a233a8a10653a2d000001000000025eb80250d3e45f0f3cf5
001f080000000000d3d94ef700000000d3d94ef7f7d6fc4c0e5909dc00000008000000010000
000000010000076dfe1d00000efef7d6fa510e5900010000000000000000000000000000001b
04cd0066028b00000517008705170096051700640517008f0517008b051700e10517009e064c
007304660071051200ae034a00ba04ec0071051200ba04e3fffc04e7007b04a200ba04e50071
023900c1051200ba051400ba023900c10514007107cb00ba042b006f03230037000000000000
004400000044000000c8000001c8000002840000035c00000430000004a000000560000005ec
0000068400000708000007780000084c000008c40000098800000ab400000ba400000c480000
0c8400000cfc00000d9c00000dec00000e8400000f48000010a80000112400010000001b0354
002b0068000c000200100099000800000415021600080004b8028040fffbfe03fa1403f92503
f83203f79603f60e03f5fe03f4fe03f32503f20e03f19603f02503ef8a4105effe03ee9603ed
9603ecfa03ebfa03eafe03e93a03e84203e7fe03e63203e5e45305e59603e48a4105e45303e3
e22f05e3fa03e22f03e1fe03e0fe03df3203de1403dd9603dcfe03db1203da7d03d9bb03d8fe
03d68a4105d67d03d5d44705d57d03d44703d3d21b05d3fe03d21b03d1fe03d0fe03cffe03ce
fe03cd9603cccb1e05ccfe03cb1e03ca3203c9fe03c6851105c61c03c51603c4fe03c3fe03c2
fe03c1fe03c0fe03bffe03befe03bdfe03bcfe03bbfe03ba1103b9862505b9fe03b8b7bb05b8
fe03b7b65d05b7bb03b78004b6b52505b65d40ff03b64004b52503b4fe03b39603b2fe03b1fe
03b0fe03affe03ae6403ad0e03acab2505ac6403abaa1205ab2503aa1203a98a4105a9fa03a8
fe03a7fe03a6fe03a51203a4fe03a3a20e05a33203a20e03a16403a08a4105a096039ffe039e
9d0c059efe039d0c039c9b19059c64039b9a10059b19039a1003990a0398fe0397960d0597fe
03960d03958a410595960394930e05942803930e0392fa039190bb0591fe03908f5d0590bb03
9080048f8e25058f5d038f40048e25038dfe038c8b2e058cfe038b2e038a8625058a41038988
0b05891403880b03878625058764038685110586250385110384fe038382110583fe03821103
81fe0380fe037ffe0340ff7e7d7d057efe037d7d037c64037b5415057b25037afe0379fe0378
0e03770c03760a0375fe0374fa0373fa0372fa0371fa0370fe036ffe036efe036c21036bfe03
6a1142056a530369fe03687d036711420566fe0365fe0364fe0363fe0362fe03613a0360fa03
5e0c035dfe035bfe035afe0359580a0559fa03580a035716190557320356fe03555415055542
0354150353011005531803521403514a130551fe03500b034ffe034e4d10054efe034d10034c
fe034b4a13054bfe034a4910054a1303491d0d05491003480d0347fe0346960345960344fe03
43022d0543fa0342bb03414b0340fe033ffe033e3d12053e14033d3c0f053d12033c3b0d053c
40ff0f033b0d033afe0339fe033837140538fa033736100537140336350b05361003350b0334
1e03330d0332310b0532fe03310b03302f0b05300d032f0b032e2d09052e10032d09032c3203
2b2a25052b64032a2912052a25032912032827250528410327250326250b05260f03250b0324
fe0323fe03220f03210110052112032064031ffa031e1d0d051e64031d0d031c1142051cfe03
1bfa031a42031911420519fe031864031716190517fe031601100516190315fe0314fe0313fe
031211420512fe0311022d05114203107d030f64030efe030d0c16050dfe030c0110050c1603
0bfe030a100309fe0308022d0508fe030714030664030401100504fe03401503022d0503fe03
02011005022d0301100300fe0301b80164858d012b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b
2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b
2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b
2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b
2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b002b2b2b2b
2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b
2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b
2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b
2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b
2b1d00>
] def
/f-0-0 currentdict end definefont pop
%%EndResource
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 0 0 360 216
%%EndPageSetup
q 6 3 350 207 rectclip
1 0 0 -1 0 216 cm q
0 g
0.25 w
0 J
0 j
[] 0.0 d
3.8 M q 1 0 0 1 0 0 cm
48.051 185.75 m 51.75 185.75 l S Q
q 1 0 0 1 0 0 cm
344.148 185.75 m 340.449 185.75 l S Q
BT
8 0 0 -8 35.3 188.775781 Tm
/f-0-0 1 Tf
( 0)Tj
ET
q 1 0 0 1 0 0 cm
48.051 168.148 m 51.75 168.148 l S Q
q 1 0 0 1 0 0 cm
344.148 168.148 m 340.449 168.148 l S Q
BT
8 0 0 -8 25.1 171.175781 Tm
/f-0-0 1 Tf
[( 20)-3(0)]TJ
ET
q 1 0 0 1 0 0 cm
48.051 150.551 m 51.75 150.551 l S Q
q 1 0 0 1 0 0 cm
344.148 150.551 m 340.449 150.551 l S Q
BT
8 0 0 -8 25.1 153.575781 Tm
/f-0-0 1 Tf
[( 40)-3(0)]TJ
ET
q 1 0 0 1 0 0 cm
48.051 133 m 51.75 133 l S Q
q 1 0 0 1 0 0 cm
344.148 133 m 340.449 133 l S Q
BT
8 0 0 -8 25.1 136.025781 Tm
/f-0-0 1 Tf
[( 60)-3(0)]TJ
ET
q 1 0 0 1 0 0 cm
48.051 115.398 m 51.75 115.398 l S Q
q 1 0 0 1 0 0 cm
344.148 115.398 m 340.449 115.398 l S Q
BT
8 0 0 -8 25.1 118.425781 Tm
/f-0-0 1 Tf
[( 80)-3(0)]TJ
ET
q 1 0 0 1 0 0 cm
48.051 97.801 m 51.75 97.801 l S Q
q 1 0 0 1 0 0 cm
344.148 97.801 m 340.449 97.801 l S Q
BT
8 0 0 -8 20 100.825781 Tm
/f-0-0 1 Tf
[( 10)-3(00)]TJ
ET
q 1 0 0 1 0 0 cm
48.051 80.199 m 51.75 80.199 l S Q
q 1 0 0 1 0 0 cm
344.148 80.199 m 340.449 80.199 l S Q
BT
8 0 0 -8 20 83.225781 Tm
/f-0-0 1 Tf
[( 12)-3(00)]TJ
ET
q 1 0 0 1 0 0 cm
48.051 62.602 m 51.75 62.602 l S Q
q 1 0 0 1 0 0 cm
344.148 62.602 m 340.449 62.602 l S Q
BT
8 0 0 -8 20 65.625781 Tm
/f-0-0 1 Tf
[( 14)-3(00)]TJ
ET
q 1 0 0 1 0 0 cm
48.051 45.051 m 51.75 45.051 l S Q
q 1 0 0 1 0 0 cm
344.148 45.051 m 340.449 45.051 l S Q
BT
8 0 0 -8 20 48.075781 Tm
/f-0-0 1 Tf
[( 16)-3(00)]TJ
ET
q 1 0 0 1 0 0 cm
48.051 27.449 m 51.75 27.449 l S Q
q 1 0 0 1 0 0 cm
344.148 27.449 m 340.449 27.449 l S Q
BT
8 0 0 -8 20 30.475781 Tm
/f-0-0 1 Tf
[( 18)-3(00)]TJ
ET
q 1 0 0 1 0 0 cm
48.051 9.852 m 51.75 9.852 l S Q
q 1 0 0 1 0 0 cm
344.148 9.852 m 340.449 9.852 l S Q
BT
8 0 0 -8 20 12.875781 Tm
/f-0-0 1 Tf
[( 20)-3(00)]TJ
ET
q 1 0 0 1 0 0 cm
48.051 185.75 m 48.051 182.051 l S Q
q 1 0 0 1 0 0 cm
48.051 9.852 m 48.051 13.551 l S Q
BT
8 0 0 -8 36.575 198.075781 Tm
/f-0-0 1 Tf
[( 18)-3(46)]TJ
ET
q 1 0 0 1 0 0 cm
90.352 185.75 m 90.352 182.051 l S Q
q 1 0 0 1 0 0 cm
90.352 9.852 m 90.352 13.551 l S Q
BT
8 0 0 -8 78.875 198.075781 Tm
/f-0-0 1 Tf
[( 18)-3(48)]TJ
ET
q 1 0 0 1 0 0 cm
132.648 185.75 m 132.648 182.051 l S Q
q 1 0 0 1 0 0 cm
132.648 9.852 m 132.648 13.551 l S Q
BT
8 0 0 -8 121.175 198.075781 Tm
/f-0-0 1 Tf
[( 18)-3(50)]TJ
ET
q 1 0 0 1 0 0 cm
174.949 185.75 m 174.949 182.051 l S Q
q 1 0 0 1 0 0 cm
174.949 9.852 m 174.949 13.551 l S Q
BT
8 0 0 -8 163.475 198.075781 Tm
/f-0-0 1 Tf
[( 18)-3(52)]TJ
ET
q 1 0 0 1 0 0 cm
217.25 185.75 m 217.25 182.051 l S Q
q 1 0 0 1 0 0 cm
217.25 9.852 m 217.25 13.551 l S Q
BT
8 0 0 -8 205.775 198.075781 Tm
/f-0-0 1 Tf
[( 18)-3(54)]TJ
ET
q 1 0 0 1 0 0 cm
259.551 185.75 m 259.551 182.051 l S Q
q 1 0 0 1 0 0 cm
259.551 9.852 m 259.551 13.551 l S Q
BT
8 0 0 -8 248.075 198.075781 Tm
/f-0-0 1 Tf
[( 18)-3(56)]TJ
ET
q 1 0 0 1 0 0 cm
301.852 185.75 m 301.852 182.051 l S Q
q 1 0 0 1 0 0 cm
301.852 9.852 m 301.852 13.551 l S Q
BT
8 0 0 -8 290.375 198.075781 Tm
/f-0-0 1 Tf
[( 18)-3(58)]TJ
ET
q 1 0 0 1 0 0 cm
344.148 185.75 m 344.148 182.051 l S Q
q 1 0 0 1 0 0 cm
344.148 9.852 m 344.148 13.551 l S Q
BT
8 0 0 -8 332.675 198.075781 Tm
/f-0-0 1 Tf
[( 18)-3(60)]TJ
ET
q 1 0 0 1 0 0 cm
48.051 9.852 296.098 175.898 re S Q
BT
0 -8 -8 0 11.975781 119.05 Tm
/f-0-0 1 Tf
[(Occur)25(e)3(n)3(ce)]TJ
8 0 0 -8 187.65 212.025781 Tm
[(Y)136(e)3(ar)]TJ
11.56875 23.85 Td
[(k)35(ol)3(era)]TJ
ET
q 1 0 0 1 0 0 cm
309.852 18.199 m 333.949 18.199 l S Q
q 1 0 0 1 0 0 cm
48.051 184 m 69.199 181.449 l 90.352 175.801 l 111.5 179 l 132.648 181.898
l 153.801 182.602 l 174.949 182.648 l 196.102 133.051 l 217.25 175.301
l 238.398 176.102 l 259.551 177.898 l 280.699 173.699 l 301.852 178.551
l 323 178 l 344.148 179.398 l S Q
BT
8 0 0 -8 275.1 30.525781 Tm
/f-0-0 1 Tf
[(chol)4(e)3(ra)]TJ
ET
[ 2.5 4 2.5 4 2.5 4 2.5 4] 0 d
q 1 0 0 1 0 0 cm
309.852 27.5 m 333.949 27.5 l S Q
[ 2.5 4 2.5 4 2.5 4 2.5 4] 0 d
q 1 0 0 1 0 0 cm
48.051 180.898 m 69.199 168.352 l 90.352 156.551 l 111.5 159.551 l 132.648
153.301 l 153.801 174.051 l 174.949 174.25 l 196.102 15.398 l 217.25 122.801
l 238.398 155.648 l 259.551 168.352 l 280.699 148 l 301.852 177.148 l 323
157.852 l 344.148 182.602 l S Q
BT
8 0 0 -8 272.55 39.825781 Tm
/f-0-0 1 Tf
[(e)3(p)-3(i)3(d)-3(e)3(mi)]TJ
ET
[ 0.5 2 0.5 2 0.5 2 0.5 2] 0 d
q 1 0 0 1 0 0 cm
309.852 36.801 m 333.949 36.801 l S Q
[ 0.5 2 0.5 2 0.5 2 0.5 2] 0 d
q 1 0 0 1 0 0 cm
48.051 179.148 m 69.199 178 l 90.352 178.648 l 111.5 179.949 l 132.648
180.75 l 153.801 181.199 l 174.949 177.551 l 196.102 89 l 217.25 153.551
l 238.398 162.898 l 259.551 166.602 l 280.699 139.301 l 301.852 163.301
l 323 151.551 l 344.148 164.199 l S Q
BT
8 0 0 -8 287.45 49.125781 Tm
/f-0-0 1 Tf
[(p)-3(e)3(st)]TJ
ET
[ 4 2 1 2 4 2 1 2] 0 d
q 1 0 0 1 0 0 cm
309.852 46.102 m 333.949 46.102 l S Q
[ 4 2 1 2 4 2 1 2] 0 d
q 1 0 0 1 0 0 cm
48.051 132.352 m 69.199 137.801 l 90.352 135.602 l 111.5 104.5 l 132.648
134.75 l 153.801 139.199 l 174.949 135.801 l 196.102 120.25 l 217.25 117.602
l 238.398 117.051 l 259.551 127.699 l 280.699 114.949 l 301.852 117.398
l 323 116.898 l 344.148 84.352 l S Q
[] 0.0 d
q 1 0 0 1 0 0 cm
48.051 9.852 296.098 175.898 re S Q
Q Q
showpage
%%Trailer
end
%%EOF
%%EndDocument
end PEND F5(Figure 1. Number of ne)100.866 688.56 Q
(wspaper pages mentioning an)-.25 E 2.5(yo)-.15 G 2.5(ft)-2.5 G(he w)
-2.5 E(ords)-.1 E/F7 10/Times-Italic@0 SF -.1(ko)2.5 G(ler).1 E(a, c)
-.15 E(holer)-.15 E(a, epidemi)-.15 E F5(or)2.5 E F7(pest)2.5 E F5(.)A
.4 LW 142.866 696.56 70.866 696.56 DL F6(1)82.866 704.46 Q(2)82.866
718.56 Q F5 -.35(Tr)2.5 4.1 O(anslated by the author).35 E(.)-.55 E 0 Cg
EP
%%Page: 2 2
%%BeginPageSetup
BP
%%EndPageSetup
/F0 12/Times-Roman@0 SF(-2-)290.642 49.433 Q 1.392(The epidemic spread \
from Copenhagen to other areas. Outside the capital 1.951 f)70.866
84.866 R 1.392(atal cases)-.12 F(were reported.)70.866 98.866 Q/F1 8.4
/Times-Roman@0 SF(3)-4.92 I F0 1.09
(The spread of an infectious disease does not occur in a v)100.866
117.066 R 1.091(acuum; the Copenhagen epi-)-.3 F 1.035
(demic is a part of the cholera pandemic \(1846-1860\))70.866 131.066 R
F1(4)-4.92 I F0 1.035(which is the third out of se)4.035 4.92 N -.18(ve)
-.3 G 4.035(ng).18 G(lobal)-4.035 E(outbreaks.)70.866 145.066 Q F1(5)
-4.92 I F0 1.384
(Here I present some data analyses: \(1\) The number of ne)100.866
163.266 R 1.385(wspaper articles mentioning)-.3 F/F2 12/Times-Italic@0
SF .753(epidemi, pest, k)70.866 177.266 R(oler)-.12 E(a)-.18 E F0(and)
3.753 E F2 -.18(ch)3.752 G(oler).18 E(a)-.18 E F0 .752
(through the period 1846 to 1860 \(Figure 1\).)3.752 F .752
(\(2\) I repeated)6.752 F .036(that analysis with the frequencies of w)
70.866 191.266 R .036(ords rather than articles in weekly aggre)-.12 F
-.06(ga)-.18 G .037(tions of te).06 F(xts.)-.18 E
(\(3\) Finally I visualize a set of bigrams e)70.866 205.266 Q
(xtracted from the corpus.)-.18 E/F3 12/Times-Bold@0 SF(The data)70.866
233.266 Q F0 .709(The data w)70.866 251.466 R .709(as retrie)-.12 F -.18
(ve)-.3 G 3.708(df).18 G .708(rom Ro)-3.708 F .708(yal Danish Library')
-.12 F 3.708(sL)-.66 G -.42(OA)-3.708 G 3.708(RR).42 G(epository)-3.708
E(.)-.78 E F1(6)-4.92 I F0 .708(It comes in csv for)3.708 4.92 N(-)-.24
E .536(mat, aggre)70.866 265.466 R -.06(ga)-.18 G .536
(ted to yearly chunks.).06 F .536
(Each line is basically corresponding to one page of te)6.536 F .537
(xt in)-.18 F(the ne)70.866 279.466 Q(wspaper)-.3 E(.)-.66 E F3(Some lo)
70.866 307.466 Q(w-hanging fruits)-.12 E F0 1.728(Using the Unix)70.866
325.666 R/F4 12/Courier@0 SF(grep)4.728 E F0 1.728(command mak)4.728 F
1.727(es it easy to count the number of pages containing a)-.12 F(gi)
70.866 339.666 Q -.18(ve)-.3 G 3.26(nw).18 G 3.26(ord. So)-3.38 F .26
(the graph in Figure 1, is simple plot of what is e)3.26 F .261
(xtracted using the shell script)-.18 F(in Figure 2.)70.866 353.666 Q F4
(#!/bin/sh)106.866 374.666 Q
(echo "#year kolera cholera epidemi pest farsot")106.866 388.666 Q
(for file in artikler*)106.866 402.666 Q(do)106.866 416.666 Q
(year=$\(echo $file| tr -d '[:alpha:][:punct:]'\))135.666 430.666 Q
(kolera=$\(grep -i kolera $file | wc -l\))135.666 444.666 Q
(cholera=$\(grep -i cholera $file | wc -l\))135.666 458.666 Q
(epidemi=$\(grep -i epidemi $file | wc -l\))135.666 472.666 Q
(pest=$\(grep -i pest $file | wc -l\))135.666 486.666 Q
(farsot=$\(grep -i farsot $file | wc -l\))135.666 500.666 Q
(echo "$year $kolera $cholera $epidemi $pest $farsot")135.666 514.666 Q
(done)106.866 528.666 Q/F5 10/Times-Roman@0 SF(Figure 2. Script for e)
100.866 551.866 Q(xtracting the data for plotting Figure 1)-.15 E F0
1.273(Three things spring to my mind: \(1\) The ob)70.866 570.066 R
1.273(vious one. People wrote about this cholera out-)-.18 F 1.09
(break in Copenhagen 1853.)70.866 584.066 R(The)7.09 E 4.09(yw)-.18 G
1.091(rote a lot.)-4.09 F 1.091(\(2\) The ef)7.091 F 1.091
(fect on the public discourse of the)-.3 F .09
(epidemic lasted for years and it did not return to pre-epidemic le)
70.866 598.066 R -.18(ve)-.3 G .089(ls that decade.).18 F -1.32(Yo)6.089
G 3.089(us)1.32 G .089(ee this)-3.089 F 1.079(on the shape of the curv)
70.866 612.066 R 1.079(es; the incidence of w)-.18 F 1.08
(ords related to the epidemic rise rapidly from)-.12 F -.18(ve)70.866
626.066 S .578(ry lo).18 F 3.578(wl)-.3 G -2.58 -.3(ev e)-3.578 H .578
(ls and then f).3 F .578(ade out slo)-.12 F(wly)-.3 E 6.578(.T)-.78 G
.578(he f)-6.578 F .577(act that the article count in Figure 1 ne)-.12 F
-.18(ve)-.3 G 3.577(rr).18 G(e-)-3.577 E .459
(ally decreases to counts before the cholera outbreak.)70.866 640.066 R
.46(Almost certainly the people felt lik)6.46 F 3.46(ew)-.12 G(e)-3.46 E
.061(do in relation to the Co)70.866 654.066 R .06(vid-19 epidemic: W)
-.18 F .06(ill it e)-.48 F -.18(ve)-.3 G 3.06(rb).18 G 3.06(et)-3.06 G
.06(he same ag)-3.06 F 3.06(ain? \(3\))-.06 F .06(People hadn')3.06 F
3.06(ts)-.216 G(et-)-3.06 E .287(tled on ho)70.866 668.066 R 3.287(wt)
-.3 G 3.287(os)-3.287 G .287
(pell the name of the disease yet, cholera and k)-3.287 F 3.288
(olera. \(4\))-.12 F .288(The w)3.288 F(ord)-.12 E F2(pest)3.288 E F0
(seems)3.288 E .4 LW 142.866 676.066 70.866 676.066 DL/F6 7
/Times-Roman@0 SF(3)82.866 683.966 Q(4)82.866 698.066 Q(5)82.866 712.166
Q(6)82.866 726.266 Q F5(Ne)2.5 4.1 M(wspapers from Ro)-.25 E
(yal Danish Library .pdfhref W -D https://loar)-.1 E(.kb)-.55 E
(.dk/handle/1902/157)-.4 E 0 Cg EP
%%Page: 3 3
%%BeginPageSetup
BP
%%EndPageSetup
/F0 12/Times-Roman@0 SF(-3-)290.642 49.433 Q .391
(to be widely used in Danish at the time, possibly as something anno)
70.866 84.866 R .391(ying b)-.12 F .391(ut also as epidemic)-.24 F
(disease in general.)70.866 98.866 Q 3.502(Ia)100.866 117.066 S .502
(lso made another analysis, where I aggre)-3.502 F -.06(ga)-.18 G .503
(ted te).06 F .503(xt by week, and used te)-.18 F .503(xt tok)-.18 F
(enized)-.12 E 3.271(by w)70.866 131.066 R 3.271(ord, see Figure 3.)-.12
F 3.27(The week numbering starts with 1 at 1846-01-01 and ends at)9.271
F .476(1860-12-31 with week 781.)70.866 145.066 R .477
(The huge peak in the graph starts at 1853-06-24 at week 389.)6.476 F
(It)6.477 E 1.336(reaches its highest point at the end of July)70.866
159.066 R 4.336(,1)-.78 G 1.336(853-07-29, week 395.)-4.336 F 1.335
(From what I can tell it)7.336 F .811(continues until the be)70.866
173.066 R .811(ginning of October)-.18 F 3.811(,b)-.48 G .811
(ut the mentions of)-4.051 F/F1 12/Times-Italic@0 SF -.18(ch)3.812 G
(oler).18 E(a)-.18 E F0 .812(in the corpus is higher)3.812 F 1.259
(than the pre-outbreak into March the follo)70.866 187.066 R 1.259
(wing year)-.3 F 4.258(,w)-.48 G 1.258(eek 425.)-4.258 F 1.258
(There is a discrepanc)7.258 F 4.258(yb)-.18 G(e-)-4.258 E .72
(tween the tw)70.866 201.066 R 3.721(oa)-.12 G .721
(nalyses, in that the article le)-3.721 F -.18(ve)-.3 G 3.721(la).18 G
.721(nalyses \(Figure 1\) implies a longer ef)-3.721 F .721(fect of)-.3
F(the outbreak on the discourse than the per w)70.866 215.066 Q
(ord one \(Figure 3.\))-.12 E 0 0 340.157 360 -204.094 216 142.559
437.36 PBEGIN
%%BeginDocument: words_by_week.eps
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.16.0 (https://cairographics.org)
%%CreationDate: Mon Jul 25 13:14:00 2022
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 0 0 360 216
%%EndComments
%%BeginProlog
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def