combine_pdf 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,2212 @@
1
+ module CombinePDF
2
+ class PDFWriter < Hash
3
+ # with thanks to Jan Krutisch, the creator of the afm gem.
4
+ TIMES_ROMAN_METRICS =
5
+ {"space"=>{:charcode=>32,
6
+ :wx=>250,
7
+ :name=>"space",
8
+ :boundingbox=>[0,
9
+ 0,
10
+ 0,
11
+ 0]},
12
+ "exclam"=>{:charcode=>33,
13
+ :wx=>333,
14
+ :name=>"exclam",
15
+ :boundingbox=>[130,
16
+ -9,
17
+ 238,
18
+ 676]},
19
+ "quotedbl"=>{:charcode=>34,
20
+ :wx=>408,
21
+ :name=>"quotedbl",
22
+ :boundingbox=>[77,
23
+ 431,
24
+ 331,
25
+ 676]},
26
+ "numbersign"=>{:charcode=>35,
27
+ :wx=>500,
28
+ :name=>"numbersign",
29
+ :boundingbox=>[5,
30
+ 0,
31
+ 496,
32
+ 662]},
33
+ "dollar"=>{:charcode=>36,
34
+ :wx=>500,
35
+ :name=>"dollar",
36
+ :boundingbox=>[44,
37
+ -87,
38
+ 457,
39
+ 727]},
40
+ "percent"=>{:charcode=>37,
41
+ :wx=>833,
42
+ :name=>"percent",
43
+ :boundingbox=>[61,
44
+ -13,
45
+ 772,
46
+ 676]},
47
+ "ampersand"=>{:charcode=>38,
48
+ :wx=>778,
49
+ :name=>"ampersand",
50
+ :boundingbox=>[42,
51
+ -13,
52
+ 750,
53
+ 676]},
54
+ "quoteright"=>{:charcode=>39,
55
+ :wx=>333,
56
+ :name=>"quoteright",
57
+ :boundingbox=>[79,
58
+ 433,
59
+ 218,
60
+ 676]},
61
+ "parenleft"=>{:charcode=>40,
62
+ :wx=>333,
63
+ :name=>"parenleft",
64
+ :boundingbox=>[48,
65
+ -177,
66
+ 304,
67
+ 676]},
68
+ "parenright"=>{:charcode=>41,
69
+ :wx=>333,
70
+ :name=>"parenright",
71
+ :boundingbox=>[29,
72
+ -177,
73
+ 285,
74
+ 676]},
75
+ "asterisk"=>{:charcode=>42,
76
+ :wx=>500,
77
+ :name=>"asterisk",
78
+ :boundingbox=>[69,
79
+ 265,
80
+ 432,
81
+ 676]},
82
+ "plus"=>{:charcode=>43,
83
+ :wx=>564,
84
+ :name=>"plus",
85
+ :boundingbox=>[30,
86
+ 0,
87
+ 534,
88
+ 506]},
89
+ "comma"=>{:charcode=>44,
90
+ :wx=>250,
91
+ :name=>"comma",
92
+ :boundingbox=>[56,
93
+ -141,
94
+ 195,
95
+ 102]},
96
+ "hyphen"=>{:charcode=>45,
97
+ :wx=>333,
98
+ :name=>"hyphen",
99
+ :boundingbox=>[39,
100
+ 194,
101
+ 285,
102
+ 257]},
103
+ "period"=>{:charcode=>46,
104
+ :wx=>250,
105
+ :name=>"period",
106
+ :boundingbox=>[70,
107
+ -11,
108
+ 181,
109
+ 100]},
110
+ "slash"=>{:charcode=>47,
111
+ :wx=>278,
112
+ :name=>"slash",
113
+ :boundingbox=>[-9,
114
+ -14,
115
+ 287,
116
+ 676]},
117
+ "zero"=>{:charcode=>48,
118
+ :wx=>500,
119
+ :name=>"zero",
120
+ :boundingbox=>[24,
121
+ -14,
122
+ 476,
123
+ 676]},
124
+ "one"=>{:charcode=>49,
125
+ :wx=>500,
126
+ :name=>"one",
127
+ :boundingbox=>[111,
128
+ 0,
129
+ 394,
130
+ 676]},
131
+ "two"=>{:charcode=>50,
132
+ :wx=>500,
133
+ :name=>"two",
134
+ :boundingbox=>[30,
135
+ 0,
136
+ 475,
137
+ 676]},
138
+ "three"=>{:charcode=>51,
139
+ :wx=>500,
140
+ :name=>"three",
141
+ :boundingbox=>[43,
142
+ -14,
143
+ 431,
144
+ 676]},
145
+ "four"=>{:charcode=>52,
146
+ :wx=>500,
147
+ :name=>"four",
148
+ :boundingbox=>[12,
149
+ 0,
150
+ 472,
151
+ 676]},
152
+ "five"=>{:charcode=>53,
153
+ :wx=>500,
154
+ :name=>"five",
155
+ :boundingbox=>[32,
156
+ -14,
157
+ 438,
158
+ 688]},
159
+ "six"=>{:charcode=>54,
160
+ :wx=>500,
161
+ :name=>"six",
162
+ :boundingbox=>[34,
163
+ -14,
164
+ 468,
165
+ 684]},
166
+ "seven"=>{:charcode=>55,
167
+ :wx=>500,
168
+ :name=>"seven",
169
+ :boundingbox=>[20,
170
+ -8,
171
+ 449,
172
+ 662]},
173
+ "eight"=>{:charcode=>56,
174
+ :wx=>500,
175
+ :name=>"eight",
176
+ :boundingbox=>[56,
177
+ -14,
178
+ 445,
179
+ 676]},
180
+ "nine"=>{:charcode=>57,
181
+ :wx=>500,
182
+ :name=>"nine",
183
+ :boundingbox=>[30,
184
+ -22,
185
+ 459,
186
+ 676]},
187
+ "colon"=>{:charcode=>58,
188
+ :wx=>278,
189
+ :name=>"colon",
190
+ :boundingbox=>[81,
191
+ -11,
192
+ 192,
193
+ 459]},
194
+ "semicolon"=>{:charcode=>59,
195
+ :wx=>278,
196
+ :name=>"semicolon",
197
+ :boundingbox=>[80,
198
+ -141,
199
+ 219,
200
+ 459]},
201
+ "less"=>{:charcode=>60,
202
+ :wx=>564,
203
+ :name=>"less",
204
+ :boundingbox=>[28,
205
+ -8,
206
+ 536,
207
+ 514]},
208
+ "equal"=>{:charcode=>61,
209
+ :wx=>564,
210
+ :name=>"equal",
211
+ :boundingbox=>[30,
212
+ 120,
213
+ 534,
214
+ 386]},
215
+ "greater"=>{:charcode=>62,
216
+ :wx=>564,
217
+ :name=>"greater",
218
+ :boundingbox=>[28,
219
+ -8,
220
+ 536,
221
+ 514]},
222
+ "question"=>{:charcode=>63,
223
+ :wx=>444,
224
+ :name=>"question",
225
+ :boundingbox=>[68,
226
+ -8,
227
+ 414,
228
+ 676]},
229
+ "at"=>{:charcode=>64,
230
+ :wx=>921,
231
+ :name=>"at",
232
+ :boundingbox=>[116,
233
+ -14,
234
+ 809,
235
+ 676]},
236
+ "A"=>{:charcode=>65,
237
+ :wx=>722,
238
+ :name=>"A",
239
+ :boundingbox=>[15,
240
+ 0,
241
+ 706,
242
+ 674]},
243
+ "B"=>{:charcode=>66,
244
+ :wx=>667,
245
+ :name=>"B",
246
+ :boundingbox=>[17,
247
+ 0,
248
+ 593,
249
+ 662]},
250
+ "C"=>{:charcode=>67,
251
+ :wx=>667,
252
+ :name=>"C",
253
+ :boundingbox=>[28,
254
+ -14,
255
+ 633,
256
+ 676]},
257
+ "D"=>{:charcode=>68,
258
+ :wx=>722,
259
+ :name=>"D",
260
+ :boundingbox=>[16,
261
+ 0,
262
+ 685,
263
+ 662]},
264
+ "E"=>{:charcode=>69,
265
+ :wx=>611,
266
+ :name=>"E",
267
+ :boundingbox=>[12,
268
+ 0,
269
+ 597,
270
+ 662]},
271
+ "F"=>{:charcode=>70,
272
+ :wx=>556,
273
+ :name=>"F",
274
+ :boundingbox=>[12,
275
+ 0,
276
+ 546,
277
+ 662]},
278
+ "G"=>{:charcode=>71,
279
+ :wx=>722,
280
+ :name=>"G",
281
+ :boundingbox=>[32,
282
+ -14,
283
+ 709,
284
+ 676]},
285
+ "H"=>{:charcode=>72,
286
+ :wx=>722,
287
+ :name=>"H",
288
+ :boundingbox=>[19,
289
+ 0,
290
+ 702,
291
+ 662]},
292
+ "I"=>{:charcode=>73,
293
+ :wx=>333,
294
+ :name=>"I",
295
+ :boundingbox=>[18,
296
+ 0,
297
+ 315,
298
+ 662]},
299
+ "J"=>{:charcode=>74,
300
+ :wx=>389,
301
+ :name=>"J",
302
+ :boundingbox=>[10,
303
+ -14,
304
+ 370,
305
+ 662]},
306
+ "K"=>{:charcode=>75,
307
+ :wx=>722,
308
+ :name=>"K",
309
+ :boundingbox=>[34,
310
+ 0,
311
+ 723,
312
+ 662]},
313
+ "L"=>{:charcode=>76,
314
+ :wx=>611,
315
+ :name=>"L",
316
+ :boundingbox=>[12,
317
+ 0,
318
+ 598,
319
+ 662]},
320
+ "M"=>{:charcode=>77,
321
+ :wx=>889,
322
+ :name=>"M",
323
+ :boundingbox=>[12,
324
+ 0,
325
+ 863,
326
+ 662]},
327
+ "N"=>{:charcode=>78,
328
+ :wx=>722,
329
+ :name=>"N",
330
+ :boundingbox=>[12,
331
+ -11,
332
+ 707,
333
+ 662]},
334
+ "O"=>{:charcode=>79,
335
+ :wx=>722,
336
+ :name=>"O",
337
+ :boundingbox=>[34,
338
+ -14,
339
+ 688,
340
+ 676]},
341
+ "P"=>{:charcode=>80,
342
+ :wx=>556,
343
+ :name=>"P",
344
+ :boundingbox=>[16,
345
+ 0,
346
+ 542,
347
+ 662]},
348
+ "Q"=>{:charcode=>81,
349
+ :wx=>722,
350
+ :name=>"Q",
351
+ :boundingbox=>[34,
352
+ -178,
353
+ 701,
354
+ 676]},
355
+ "R"=>{:charcode=>82,
356
+ :wx=>667,
357
+ :name=>"R",
358
+ :boundingbox=>[17,
359
+ 0,
360
+ 659,
361
+ 662]},
362
+ "S"=>{:charcode=>83,
363
+ :wx=>556,
364
+ :name=>"S",
365
+ :boundingbox=>[42,
366
+ -14,
367
+ 491,
368
+ 676]},
369
+ "T"=>{:charcode=>84,
370
+ :wx=>611,
371
+ :name=>"T",
372
+ :boundingbox=>[17,
373
+ 0,
374
+ 593,
375
+ 662]},
376
+ "U"=>{:charcode=>85,
377
+ :wx=>722,
378
+ :name=>"U",
379
+ :boundingbox=>[14,
380
+ -14,
381
+ 705,
382
+ 662]},
383
+ "V"=>{:charcode=>86,
384
+ :wx=>722,
385
+ :name=>"V",
386
+ :boundingbox=>[16,
387
+ -11,
388
+ 697,
389
+ 662]},
390
+ "W"=>{:charcode=>87,
391
+ :wx=>944,
392
+ :name=>"W",
393
+ :boundingbox=>[5,
394
+ -11,
395
+ 932,
396
+ 662]},
397
+ "X"=>{:charcode=>88,
398
+ :wx=>722,
399
+ :name=>"X",
400
+ :boundingbox=>[10,
401
+ 0,
402
+ 704,
403
+ 662]},
404
+ "Y"=>{:charcode=>89,
405
+ :wx=>722,
406
+ :name=>"Y",
407
+ :boundingbox=>[22,
408
+ 0,
409
+ 703,
410
+ 662]},
411
+ "Z"=>{:charcode=>90,
412
+ :wx=>611,
413
+ :name=>"Z",
414
+ :boundingbox=>[9,
415
+ 0,
416
+ 597,
417
+ 662]},
418
+ "bracketleft"=>{:charcode=>91,
419
+ :wx=>333,
420
+ :name=>"bracketleft",
421
+ :boundingbox=>[88,
422
+ -156,
423
+ 299,
424
+ 662]},
425
+ "backslash"=>{:charcode=>92,
426
+ :wx=>278,
427
+ :name=>"backslash",
428
+ :boundingbox=>[-9,
429
+ -14,
430
+ 287,
431
+ 676]},
432
+ "bracketright"=>{:charcode=>93,
433
+ :wx=>333,
434
+ :name=>"bracketright",
435
+ :boundingbox=>[34,
436
+ -156,
437
+ 245,
438
+ 662]},
439
+ "asciicircum"=>{:charcode=>94,
440
+ :wx=>469,
441
+ :name=>"asciicircum",
442
+ :boundingbox=>[24,
443
+ 297,
444
+ 446,
445
+ 662]},
446
+ "underscore"=>{:charcode=>95,
447
+ :wx=>500,
448
+ :name=>"underscore",
449
+ :boundingbox=>[0,
450
+ -125,
451
+ 500,
452
+ -75]},
453
+ "quoteleft"=>{:charcode=>96,
454
+ :wx=>333,
455
+ :name=>"quoteleft",
456
+ :boundingbox=>[115,
457
+ 433,
458
+ 254,
459
+ 676]},
460
+ "a"=>{:charcode=>97,
461
+ :wx=>444,
462
+ :name=>"a",
463
+ :boundingbox=>[37,
464
+ -10,
465
+ 442,
466
+ 460]},
467
+ "b"=>{:charcode=>98,
468
+ :wx=>500,
469
+ :name=>"b",
470
+ :boundingbox=>[3,
471
+ -10,
472
+ 468,
473
+ 683]},
474
+ "c"=>{:charcode=>99,
475
+ :wx=>444,
476
+ :name=>"c",
477
+ :boundingbox=>[25,
478
+ -10,
479
+ 412,
480
+ 460]},
481
+ "d"=>{:charcode=>100,
482
+ :wx=>500,
483
+ :name=>"d",
484
+ :boundingbox=>[27,
485
+ -10,
486
+ 491,
487
+ 683]},
488
+ "e"=>{:charcode=>101,
489
+ :wx=>444,
490
+ :name=>"e",
491
+ :boundingbox=>[25,
492
+ -10,
493
+ 424,
494
+ 460]},
495
+ "f"=>{:charcode=>102,
496
+ :wx=>333,
497
+ :name=>"f",
498
+ :boundingbox=>[20,
499
+ 0,
500
+ 383,
501
+ 683]},
502
+ "g"=>{:charcode=>103,
503
+ :wx=>500,
504
+ :name=>"g",
505
+ :boundingbox=>[28,
506
+ -218,
507
+ 470,
508
+ 460]},
509
+ "h"=>{:charcode=>104,
510
+ :wx=>500,
511
+ :name=>"h",
512
+ :boundingbox=>[9,
513
+ 0,
514
+ 487,
515
+ 683]},
516
+ "i"=>{:charcode=>105,
517
+ :wx=>278,
518
+ :name=>"i",
519
+ :boundingbox=>[16,
520
+ 0,
521
+ 253,
522
+ 683]},
523
+ "j"=>{:charcode=>106,
524
+ :wx=>278,
525
+ :name=>"j",
526
+ :boundingbox=>[-70,
527
+ -218,
528
+ 194,
529
+ 683]},
530
+ "k"=>{:charcode=>107,
531
+ :wx=>500,
532
+ :name=>"k",
533
+ :boundingbox=>[7,
534
+ 0,
535
+ 505,
536
+ 683]},
537
+ "l"=>{:charcode=>108,
538
+ :wx=>278,
539
+ :name=>"l",
540
+ :boundingbox=>[19,
541
+ 0,
542
+ 257,
543
+ 683]},
544
+ "m"=>{:charcode=>109,
545
+ :wx=>778,
546
+ :name=>"m",
547
+ :boundingbox=>[16,
548
+ 0,
549
+ 775,
550
+ 460]},
551
+ "n"=>{:charcode=>110,
552
+ :wx=>500,
553
+ :name=>"n",
554
+ :boundingbox=>[16,
555
+ 0,
556
+ 485,
557
+ 460]},
558
+ "o"=>{:charcode=>111,
559
+ :wx=>500,
560
+ :name=>"o",
561
+ :boundingbox=>[29,
562
+ -10,
563
+ 470,
564
+ 460]},
565
+ "p"=>{:charcode=>112,
566
+ :wx=>500,
567
+ :name=>"p",
568
+ :boundingbox=>[5,
569
+ -217,
570
+ 470,
571
+ 460]},
572
+ "q"=>{:charcode=>113,
573
+ :wx=>500,
574
+ :name=>"q",
575
+ :boundingbox=>[24,
576
+ -217,
577
+ 488,
578
+ 460]},
579
+ "r"=>{:charcode=>114,
580
+ :wx=>333,
581
+ :name=>"r",
582
+ :boundingbox=>[5,
583
+ 0,
584
+ 335,
585
+ 460]},
586
+ "s"=>{:charcode=>115,
587
+ :wx=>389,
588
+ :name=>"s",
589
+ :boundingbox=>[51,
590
+ -10,
591
+ 348,
592
+ 460]},
593
+ "t"=>{:charcode=>116,
594
+ :wx=>278,
595
+ :name=>"t",
596
+ :boundingbox=>[13,
597
+ -10,
598
+ 279,
599
+ 579]},
600
+ "u"=>{:charcode=>117,
601
+ :wx=>500,
602
+ :name=>"u",
603
+ :boundingbox=>[9,
604
+ -10,
605
+ 479,
606
+ 450]},
607
+ "v"=>{:charcode=>118,
608
+ :wx=>500,
609
+ :name=>"v",
610
+ :boundingbox=>[19,
611
+ -14,
612
+ 477,
613
+ 450]},
614
+ "w"=>{:charcode=>119,
615
+ :wx=>722,
616
+ :name=>"w",
617
+ :boundingbox=>[21,
618
+ -14,
619
+ 694,
620
+ 450]},
621
+ "x"=>{:charcode=>120,
622
+ :wx=>500,
623
+ :name=>"x",
624
+ :boundingbox=>[17,
625
+ 0,
626
+ 479,
627
+ 450]},
628
+ "y"=>{:charcode=>121,
629
+ :wx=>500,
630
+ :name=>"y",
631
+ :boundingbox=>[14,
632
+ -218,
633
+ 475,
634
+ 450]},
635
+ "z"=>{:charcode=>122,
636
+ :wx=>444,
637
+ :name=>"z",
638
+ :boundingbox=>[27,
639
+ 0,
640
+ 418,
641
+ 450]},
642
+ "braceleft"=>{:charcode=>123,
643
+ :wx=>480,
644
+ :name=>"braceleft",
645
+ :boundingbox=>[100,
646
+ -181,
647
+ 350,
648
+ 680]},
649
+ "bar"=>{:charcode=>124,
650
+ :wx=>200,
651
+ :name=>"bar",
652
+ :boundingbox=>[67,
653
+ -218,
654
+ 133,
655
+ 782]},
656
+ "braceright"=>{:charcode=>125,
657
+ :wx=>480,
658
+ :name=>"braceright",
659
+ :boundingbox=>[130,
660
+ -181,
661
+ 380,
662
+ 680]},
663
+ "asciitilde"=>{:charcode=>126,
664
+ :wx=>541,
665
+ :name=>"asciitilde",
666
+ :boundingbox=>[40,
667
+ 183,
668
+ 502,
669
+ 323]},
670
+ "exclamdown"=>{:charcode=>161,
671
+ :wx=>333,
672
+ :name=>"exclamdown",
673
+ :boundingbox=>[97,
674
+ -218,
675
+ 205,
676
+ 467]},
677
+ "cent"=>{:charcode=>162,
678
+ :wx=>500,
679
+ :name=>"cent",
680
+ :boundingbox=>[53,
681
+ -138,
682
+ 448,
683
+ 579]},
684
+ "sterling"=>{:charcode=>163,
685
+ :wx=>500,
686
+ :name=>"sterling",
687
+ :boundingbox=>[12,
688
+ -8,
689
+ 490,
690
+ 676]},
691
+ "fraction"=>{:charcode=>164,
692
+ :wx=>167,
693
+ :name=>"fraction",
694
+ :boundingbox=>[-168,
695
+ -14,
696
+ 331,
697
+ 676]},
698
+ "yen"=>{:charcode=>165,
699
+ :wx=>500,
700
+ :name=>"yen",
701
+ :boundingbox=>[-53,
702
+ 0,
703
+ 512,
704
+ 662]},
705
+ "florin"=>{:charcode=>166,
706
+ :wx=>500,
707
+ :name=>"florin",
708
+ :boundingbox=>[7,
709
+ -189,
710
+ 490,
711
+ 676]},
712
+ "section"=>{:charcode=>167,
713
+ :wx=>500,
714
+ :name=>"section",
715
+ :boundingbox=>[70,
716
+ -148,
717
+ 426,
718
+ 676]},
719
+ "currency"=>{:charcode=>168,
720
+ :wx=>500,
721
+ :name=>"currency",
722
+ :boundingbox=>[-22,
723
+ 58,
724
+ 522,
725
+ 602]},
726
+ "quotesingle"=>{:charcode=>169,
727
+ :wx=>180,
728
+ :name=>"quotesingle",
729
+ :boundingbox=>[48,
730
+ 431,
731
+ 133,
732
+ 676]},
733
+ "quotedblleft"=>{:charcode=>170,
734
+ :wx=>444,
735
+ :name=>"quotedblleft",
736
+ :boundingbox=>[43,
737
+ 433,
738
+ 414,
739
+ 676]},
740
+ "guillemotleft"=>{:charcode=>171,
741
+ :wx=>500,
742
+ :name=>"guillemotleft",
743
+ :boundingbox=>[42,
744
+ 33,
745
+ 456,
746
+ 416]},
747
+ "guilsinglleft"=>{:charcode=>172,
748
+ :wx=>333,
749
+ :name=>"guilsinglleft",
750
+ :boundingbox=>[63,
751
+ 33,
752
+ 285,
753
+ 416]},
754
+ "guilsinglright"=>{:charcode=>173,
755
+ :wx=>333,
756
+ :name=>"guilsinglright",
757
+ :boundingbox=>[48,
758
+ 33,
759
+ 270,
760
+ 416]},
761
+ "fi"=>{:charcode=>174,
762
+ :wx=>556,
763
+ :name=>"fi",
764
+ :boundingbox=>[31,
765
+ 0,
766
+ 521,
767
+ 683]},
768
+ "fl"=>{:charcode=>175,
769
+ :wx=>556,
770
+ :name=>"fl",
771
+ :boundingbox=>[32,
772
+ 0,
773
+ 521,
774
+ 683]},
775
+ "endash"=>{:charcode=>177,
776
+ :wx=>500,
777
+ :name=>"endash",
778
+ :boundingbox=>[0,
779
+ 201,
780
+ 500,
781
+ 250]},
782
+ "dagger"=>{:charcode=>178,
783
+ :wx=>500,
784
+ :name=>"dagger",
785
+ :boundingbox=>[59,
786
+ -149,
787
+ 442,
788
+ 676]},
789
+ "daggerdbl"=>{:charcode=>179,
790
+ :wx=>500,
791
+ :name=>"daggerdbl",
792
+ :boundingbox=>[58,
793
+ -153,
794
+ 442,
795
+ 676]},
796
+ "periodcentered"=>{:charcode=>180,
797
+ :wx=>250,
798
+ :name=>"periodcentered",
799
+ :boundingbox=>[70,
800
+ 199,
801
+ 181,
802
+ 310]},
803
+ "paragraph"=>{:charcode=>182,
804
+ :wx=>453,
805
+ :name=>"paragraph",
806
+ :boundingbox=>[-22,
807
+ -154,
808
+ 450,
809
+ 662]},
810
+ "bullet"=>{:charcode=>183,
811
+ :wx=>350,
812
+ :name=>"bullet",
813
+ :boundingbox=>[40,
814
+ 196,
815
+ 310,
816
+ 466]},
817
+ "quotesinglbase"=>{:charcode=>184,
818
+ :wx=>333,
819
+ :name=>"quotesinglbase",
820
+ :boundingbox=>[79,
821
+ -141,
822
+ 218,
823
+ 102]},
824
+ "quotedblbase"=>{:charcode=>185,
825
+ :wx=>444,
826
+ :name=>"quotedblbase",
827
+ :boundingbox=>[45,
828
+ -141,
829
+ 416,
830
+ 102]},
831
+ "quotedblright"=>{:charcode=>186,
832
+ :wx=>444,
833
+ :name=>"quotedblright",
834
+ :boundingbox=>[30,
835
+ 433,
836
+ 401,
837
+ 676]},
838
+ "guillemotright"=>{:charcode=>187,
839
+ :wx=>500,
840
+ :name=>"guillemotright",
841
+ :boundingbox=>[44,
842
+ 33,
843
+ 458,
844
+ 416]},
845
+ "ellipsis"=>{:charcode=>188,
846
+ :wx=>1000,
847
+ :name=>"ellipsis",
848
+ :boundingbox=>[111,
849
+ -11,
850
+ 888,
851
+ 100]},
852
+ "perthousand"=>{:charcode=>189,
853
+ :wx=>1000,
854
+ :name=>"perthousand",
855
+ :boundingbox=>[7,
856
+ -19,
857
+ 994,
858
+ 706]},
859
+ "questiondown"=>{:charcode=>191,
860
+ :wx=>444,
861
+ :name=>"questiondown",
862
+ :boundingbox=>[30,
863
+ -218,
864
+ 376,
865
+ 466]},
866
+ "grave"=>{:charcode=>193,
867
+ :wx=>333,
868
+ :name=>"grave",
869
+ :boundingbox=>[19,
870
+ 507,
871
+ 242,
872
+ 678]},
873
+ "acute"=>{:charcode=>194,
874
+ :wx=>333,
875
+ :name=>"acute",
876
+ :boundingbox=>[93,
877
+ 507,
878
+ 317,
879
+ 678]},
880
+ "circumflex"=>{:charcode=>195,
881
+ :wx=>333,
882
+ :name=>"circumflex",
883
+ :boundingbox=>[11,
884
+ 507,
885
+ 322,
886
+ 674]},
887
+ "tilde"=>{:charcode=>196,
888
+ :wx=>333,
889
+ :name=>"tilde",
890
+ :boundingbox=>[1,
891
+ 532,
892
+ 331,
893
+ 638]},
894
+ "macron"=>{:charcode=>197,
895
+ :wx=>333,
896
+ :name=>"macron",
897
+ :boundingbox=>[11,
898
+ 547,
899
+ 322,
900
+ 601]},
901
+ "breve"=>{:charcode=>198,
902
+ :wx=>333,
903
+ :name=>"breve",
904
+ :boundingbox=>[26,
905
+ 507,
906
+ 307,
907
+ 664]},
908
+ "dotaccent"=>{:charcode=>199,
909
+ :wx=>333,
910
+ :name=>"dotaccent",
911
+ :boundingbox=>[118,
912
+ 581,
913
+ 216,
914
+ 681]},
915
+ "dieresis"=>{:charcode=>200,
916
+ :wx=>333,
917
+ :name=>"dieresis",
918
+ :boundingbox=>[18,
919
+ 581,
920
+ 315,
921
+ 681]},
922
+ "ring"=>{:charcode=>202,
923
+ :wx=>333,
924
+ :name=>"ring",
925
+ :boundingbox=>[67,
926
+ 512,
927
+ 266,
928
+ 711]},
929
+ "cedilla"=>{:charcode=>203,
930
+ :wx=>333,
931
+ :name=>"cedilla",
932
+ :boundingbox=>[52,
933
+ -215,
934
+ 261,
935
+ 0]},
936
+ "hungarumlaut"=>{:charcode=>205,
937
+ :wx=>333,
938
+ :name=>"hungarumlaut",
939
+ :boundingbox=>[-3,
940
+ 507,
941
+ 377,
942
+ 678]},
943
+ "ogonek"=>{:charcode=>206,
944
+ :wx=>333,
945
+ :name=>"ogonek",
946
+ :boundingbox=>[62,
947
+ -165,
948
+ 243,
949
+ 0]},
950
+ "caron"=>{:charcode=>207,
951
+ :wx=>333,
952
+ :name=>"caron",
953
+ :boundingbox=>[11,
954
+ 507,
955
+ 322,
956
+ 674]},
957
+ "emdash"=>{:charcode=>208,
958
+ :wx=>1000,
959
+ :name=>"emdash",
960
+ :boundingbox=>[0,
961
+ 201,
962
+ 1000,
963
+ 250]},
964
+ "AE"=>{:charcode=>225,
965
+ :wx=>889,
966
+ :name=>"AE",
967
+ :boundingbox=>[0,
968
+ 0,
969
+ 863,
970
+ 662]},
971
+ "ordfeminine"=>{:charcode=>227,
972
+ :wx=>276,
973
+ :name=>"ordfeminine",
974
+ :boundingbox=>[4,
975
+ 394,
976
+ 270,
977
+ 676]},
978
+ "Lslash"=>{:charcode=>232,
979
+ :wx=>611,
980
+ :name=>"Lslash",
981
+ :boundingbox=>[12,
982
+ 0,
983
+ 598,
984
+ 662]},
985
+ "Oslash"=>{:charcode=>233,
986
+ :wx=>722,
987
+ :name=>"Oslash",
988
+ :boundingbox=>[34,
989
+ -80,
990
+ 688,
991
+ 734]},
992
+ "OE"=>{:charcode=>234,
993
+ :wx=>889,
994
+ :name=>"OE",
995
+ :boundingbox=>[30,
996
+ -6,
997
+ 885,
998
+ 668]},
999
+ "ordmasculine"=>{:charcode=>235,
1000
+ :wx=>310,
1001
+ :name=>"ordmasculine",
1002
+ :boundingbox=>[6,
1003
+ 394,
1004
+ 304,
1005
+ 676]},
1006
+ "ae"=>{:charcode=>241,
1007
+ :wx=>667,
1008
+ :name=>"ae",
1009
+ :boundingbox=>[38,
1010
+ -10,
1011
+ 632,
1012
+ 460]},
1013
+ "dotlessi"=>{:charcode=>245,
1014
+ :wx=>278,
1015
+ :name=>"dotlessi",
1016
+ :boundingbox=>[16,
1017
+ 0,
1018
+ 253,
1019
+ 460]},
1020
+ "lslash"=>{:charcode=>248,
1021
+ :wx=>278,
1022
+ :name=>"lslash",
1023
+ :boundingbox=>[19,
1024
+ 0,
1025
+ 259,
1026
+ 683]},
1027
+ "oslash"=>{:charcode=>249,
1028
+ :wx=>500,
1029
+ :name=>"oslash",
1030
+ :boundingbox=>[29,
1031
+ -112,
1032
+ 470,
1033
+ 551]},
1034
+ "oe"=>{:charcode=>250,
1035
+ :wx=>722,
1036
+ :name=>"oe",
1037
+ :boundingbox=>[30,
1038
+ -10,
1039
+ 690,
1040
+ 460]},
1041
+ "germandbls"=>{:charcode=>251,
1042
+ :wx=>500,
1043
+ :name=>"germandbls",
1044
+ :boundingbox=>[12,
1045
+ -9,
1046
+ 468,
1047
+ 683]},
1048
+ "Idieresis"=>{:charcode=>-1,
1049
+ :wx=>333,
1050
+ :name=>"Idieresis",
1051
+ :boundingbox=>[18,
1052
+ 0,
1053
+ 315,
1054
+ 835]},
1055
+ "eacute"=>{:charcode=>-1,
1056
+ :wx=>444,
1057
+ :name=>"eacute",
1058
+ :boundingbox=>[25,
1059
+ -10,
1060
+ 424,
1061
+ 678]},
1062
+ "abreve"=>{:charcode=>-1,
1063
+ :wx=>444,
1064
+ :name=>"abreve",
1065
+ :boundingbox=>[37,
1066
+ -10,
1067
+ 442,
1068
+ 664]},
1069
+ "uhungarumlaut"=>{:charcode=>-1,
1070
+ :wx=>500,
1071
+ :name=>"uhungarumlaut",
1072
+ :boundingbox=>[9,
1073
+ -10,
1074
+ 501,
1075
+ 678]},
1076
+ "ecaron"=>{:charcode=>-1,
1077
+ :wx=>444,
1078
+ :name=>"ecaron",
1079
+ :boundingbox=>[25,
1080
+ -10,
1081
+ 424,
1082
+ 674]},
1083
+ "Ydieresis"=>{:charcode=>-1,
1084
+ :wx=>722,
1085
+ :name=>"Ydieresis",
1086
+ :boundingbox=>[22,
1087
+ 0,
1088
+ 703,
1089
+ 835]},
1090
+ "divide"=>{:charcode=>-1,
1091
+ :wx=>564,
1092
+ :name=>"divide",
1093
+ :boundingbox=>[30,
1094
+ -10,
1095
+ 534,
1096
+ 516]},
1097
+ "Yacute"=>{:charcode=>-1,
1098
+ :wx=>722,
1099
+ :name=>"Yacute",
1100
+ :boundingbox=>[22,
1101
+ 0,
1102
+ 703,
1103
+ 890]},
1104
+ "Acircumflex"=>{:charcode=>-1,
1105
+ :wx=>722,
1106
+ :name=>"Acircumflex",
1107
+ :boundingbox=>[15,
1108
+ 0,
1109
+ 706,
1110
+ 886]},
1111
+ "aacute"=>{:charcode=>-1,
1112
+ :wx=>444,
1113
+ :name=>"aacute",
1114
+ :boundingbox=>[37,
1115
+ -10,
1116
+ 442,
1117
+ 678]},
1118
+ "Ucircumflex"=>{:charcode=>-1,
1119
+ :wx=>722,
1120
+ :name=>"Ucircumflex",
1121
+ :boundingbox=>[14,
1122
+ -14,
1123
+ 705,
1124
+ 886]},
1125
+ "yacute"=>{:charcode=>-1,
1126
+ :wx=>500,
1127
+ :name=>"yacute",
1128
+ :boundingbox=>[14,
1129
+ -218,
1130
+ 475,
1131
+ 678]},
1132
+ "scommaaccent"=>{:charcode=>-1,
1133
+ :wx=>389,
1134
+ :name=>"scommaaccent",
1135
+ :boundingbox=>[51,
1136
+ -218,
1137
+ 348,
1138
+ 460]},
1139
+ "ecircumflex"=>{:charcode=>-1,
1140
+ :wx=>444,
1141
+ :name=>"ecircumflex",
1142
+ :boundingbox=>[25,
1143
+ -10,
1144
+ 424,
1145
+ 674]},
1146
+ "Uring"=>{:charcode=>-1,
1147
+ :wx=>722,
1148
+ :name=>"Uring",
1149
+ :boundingbox=>[14,
1150
+ -14,
1151
+ 705,
1152
+ 898]},
1153
+ "Udieresis"=>{:charcode=>-1,
1154
+ :wx=>722,
1155
+ :name=>"Udieresis",
1156
+ :boundingbox=>[14,
1157
+ -14,
1158
+ 705,
1159
+ 835]},
1160
+ "aogonek"=>{:charcode=>-1,
1161
+ :wx=>444,
1162
+ :name=>"aogonek",
1163
+ :boundingbox=>[37,
1164
+ -165,
1165
+ 469,
1166
+ 460]},
1167
+ "Uacute"=>{:charcode=>-1,
1168
+ :wx=>722,
1169
+ :name=>"Uacute",
1170
+ :boundingbox=>[14,
1171
+ -14,
1172
+ 705,
1173
+ 890]},
1174
+ "uogonek"=>{:charcode=>-1,
1175
+ :wx=>500,
1176
+ :name=>"uogonek",
1177
+ :boundingbox=>[9,
1178
+ -155,
1179
+ 487,
1180
+ 450]},
1181
+ "Edieresis"=>{:charcode=>-1,
1182
+ :wx=>611,
1183
+ :name=>"Edieresis",
1184
+ :boundingbox=>[12,
1185
+ 0,
1186
+ 597,
1187
+ 835]},
1188
+ "Dcroat"=>{:charcode=>-1,
1189
+ :wx=>722,
1190
+ :name=>"Dcroat",
1191
+ :boundingbox=>[16,
1192
+ 0,
1193
+ 685,
1194
+ 662]},
1195
+ "commaaccent"=>{:charcode=>-1,
1196
+ :wx=>250,
1197
+ :name=>"commaaccent",
1198
+ :boundingbox=>[59,
1199
+ -218,
1200
+ 184,
1201
+ -50]},
1202
+ "copyright"=>{:charcode=>-1,
1203
+ :wx=>760,
1204
+ :name=>"copyright",
1205
+ :boundingbox=>[38,
1206
+ -14,
1207
+ 722,
1208
+ 676]},
1209
+ "Emacron"=>{:charcode=>-1,
1210
+ :wx=>611,
1211
+ :name=>"Emacron",
1212
+ :boundingbox=>[12,
1213
+ 0,
1214
+ 597,
1215
+ 813]},
1216
+ "ccaron"=>{:charcode=>-1,
1217
+ :wx=>444,
1218
+ :name=>"ccaron",
1219
+ :boundingbox=>[25,
1220
+ -10,
1221
+ 412,
1222
+ 674]},
1223
+ "aring"=>{:charcode=>-1,
1224
+ :wx=>444,
1225
+ :name=>"aring",
1226
+ :boundingbox=>[37,
1227
+ -10,
1228
+ 442,
1229
+ 711]},
1230
+ "Ncommaaccent"=>{:charcode=>-1,
1231
+ :wx=>722,
1232
+ :name=>"Ncommaaccent",
1233
+ :boundingbox=>[12,
1234
+ -198,
1235
+ 707,
1236
+ 662]},
1237
+ "lacute"=>{:charcode=>-1,
1238
+ :wx=>278,
1239
+ :name=>"lacute",
1240
+ :boundingbox=>[19,
1241
+ 0,
1242
+ 290,
1243
+ 890]},
1244
+ "agrave"=>{:charcode=>-1,
1245
+ :wx=>444,
1246
+ :name=>"agrave",
1247
+ :boundingbox=>[37,
1248
+ -10,
1249
+ 442,
1250
+ 678]},
1251
+ "Tcommaaccent"=>{:charcode=>-1,
1252
+ :wx=>611,
1253
+ :name=>"Tcommaaccent",
1254
+ :boundingbox=>[17,
1255
+ -218,
1256
+ 593,
1257
+ 662]},
1258
+ "Cacute"=>{:charcode=>-1,
1259
+ :wx=>667,
1260
+ :name=>"Cacute",
1261
+ :boundingbox=>[28,
1262
+ -14,
1263
+ 633,
1264
+ 890]},
1265
+ "atilde"=>{:charcode=>-1,
1266
+ :wx=>444,
1267
+ :name=>"atilde",
1268
+ :boundingbox=>[37,
1269
+ -10,
1270
+ 442,
1271
+ 638]},
1272
+ "Edotaccent"=>{:charcode=>-1,
1273
+ :wx=>611,
1274
+ :name=>"Edotaccent",
1275
+ :boundingbox=>[12,
1276
+ 0,
1277
+ 597,
1278
+ 835]},
1279
+ "scaron"=>{:charcode=>-1,
1280
+ :wx=>389,
1281
+ :name=>"scaron",
1282
+ :boundingbox=>[39,
1283
+ -10,
1284
+ 350,
1285
+ 674]},
1286
+ "scedilla"=>{:charcode=>-1,
1287
+ :wx=>389,
1288
+ :name=>"scedilla",
1289
+ :boundingbox=>[51,
1290
+ -215,
1291
+ 348,
1292
+ 460]},
1293
+ "iacute"=>{:charcode=>-1,
1294
+ :wx=>278,
1295
+ :name=>"iacute",
1296
+ :boundingbox=>[16,
1297
+ 0,
1298
+ 290,
1299
+ 678]},
1300
+ "lozenge"=>{:charcode=>-1,
1301
+ :wx=>471,
1302
+ :name=>"lozenge",
1303
+ :boundingbox=>[13,
1304
+ 0,
1305
+ 459,
1306
+ 724]},
1307
+ "Rcaron"=>{:charcode=>-1,
1308
+ :wx=>667,
1309
+ :name=>"Rcaron",
1310
+ :boundingbox=>[17,
1311
+ 0,
1312
+ 659,
1313
+ 886]},
1314
+ "Gcommaaccent"=>{:charcode=>-1,
1315
+ :wx=>722,
1316
+ :name=>"Gcommaaccent",
1317
+ :boundingbox=>[32,
1318
+ -218,
1319
+ 709,
1320
+ 676]},
1321
+ "ucircumflex"=>{:charcode=>-1,
1322
+ :wx=>500,
1323
+ :name=>"ucircumflex",
1324
+ :boundingbox=>[9,
1325
+ -10,
1326
+ 479,
1327
+ 674]},
1328
+ "acircumflex"=>{:charcode=>-1,
1329
+ :wx=>444,
1330
+ :name=>"acircumflex",
1331
+ :boundingbox=>[37,
1332
+ -10,
1333
+ 442,
1334
+ 674]},
1335
+ "Amacron"=>{:charcode=>-1,
1336
+ :wx=>722,
1337
+ :name=>"Amacron",
1338
+ :boundingbox=>[15,
1339
+ 0,
1340
+ 706,
1341
+ 813]},
1342
+ "rcaron"=>{:charcode=>-1,
1343
+ :wx=>333,
1344
+ :name=>"rcaron",
1345
+ :boundingbox=>[5,
1346
+ 0,
1347
+ 335,
1348
+ 674]},
1349
+ "ccedilla"=>{:charcode=>-1,
1350
+ :wx=>444,
1351
+ :name=>"ccedilla",
1352
+ :boundingbox=>[25,
1353
+ -215,
1354
+ 412,
1355
+ 460]},
1356
+ "Zdotaccent"=>{:charcode=>-1,
1357
+ :wx=>611,
1358
+ :name=>"Zdotaccent",
1359
+ :boundingbox=>[9,
1360
+ 0,
1361
+ 597,
1362
+ 835]},
1363
+ "Thorn"=>{:charcode=>-1,
1364
+ :wx=>556,
1365
+ :name=>"Thorn",
1366
+ :boundingbox=>[16,
1367
+ 0,
1368
+ 542,
1369
+ 662]},
1370
+ "Omacron"=>{:charcode=>-1,
1371
+ :wx=>722,
1372
+ :name=>"Omacron",
1373
+ :boundingbox=>[34,
1374
+ -14,
1375
+ 688,
1376
+ 813]},
1377
+ "Racute"=>{:charcode=>-1,
1378
+ :wx=>667,
1379
+ :name=>"Racute",
1380
+ :boundingbox=>[17,
1381
+ 0,
1382
+ 659,
1383
+ 890]},
1384
+ "Sacute"=>{:charcode=>-1,
1385
+ :wx=>556,
1386
+ :name=>"Sacute",
1387
+ :boundingbox=>[42,
1388
+ -14,
1389
+ 491,
1390
+ 890]},
1391
+ "dcaron"=>{:charcode=>-1,
1392
+ :wx=>588,
1393
+ :name=>"dcaron",
1394
+ :boundingbox=>[27,
1395
+ -10,
1396
+ 589,
1397
+ 695]},
1398
+ "Umacron"=>{:charcode=>-1,
1399
+ :wx=>722,
1400
+ :name=>"Umacron",
1401
+ :boundingbox=>[14,
1402
+ -14,
1403
+ 705,
1404
+ 813]},
1405
+ "uring"=>{:charcode=>-1,
1406
+ :wx=>500,
1407
+ :name=>"uring",
1408
+ :boundingbox=>[9,
1409
+ -10,
1410
+ 479,
1411
+ 711]},
1412
+ "threesuperior"=>{:charcode=>-1,
1413
+ :wx=>300,
1414
+ :name=>"threesuperior",
1415
+ :boundingbox=>[15,
1416
+ 262,
1417
+ 291,
1418
+ 676]},
1419
+ "Ograve"=>{:charcode=>-1,
1420
+ :wx=>722,
1421
+ :name=>"Ograve",
1422
+ :boundingbox=>[34,
1423
+ -14,
1424
+ 688,
1425
+ 890]},
1426
+ "Agrave"=>{:charcode=>-1,
1427
+ :wx=>722,
1428
+ :name=>"Agrave",
1429
+ :boundingbox=>[15,
1430
+ 0,
1431
+ 706,
1432
+ 890]},
1433
+ "Abreve"=>{:charcode=>-1,
1434
+ :wx=>722,
1435
+ :name=>"Abreve",
1436
+ :boundingbox=>[15,
1437
+ 0,
1438
+ 706,
1439
+ 876]},
1440
+ "multiply"=>{:charcode=>-1,
1441
+ :wx=>564,
1442
+ :name=>"multiply",
1443
+ :boundingbox=>[38,
1444
+ 8,
1445
+ 527,
1446
+ 497]},
1447
+ "uacute"=>{:charcode=>-1,
1448
+ :wx=>500,
1449
+ :name=>"uacute",
1450
+ :boundingbox=>[9,
1451
+ -10,
1452
+ 479,
1453
+ 678]},
1454
+ "Tcaron"=>{:charcode=>-1,
1455
+ :wx=>611,
1456
+ :name=>"Tcaron",
1457
+ :boundingbox=>[17,
1458
+ 0,
1459
+ 593,
1460
+ 886]},
1461
+ "partialdiff"=>{:charcode=>-1,
1462
+ :wx=>476,
1463
+ :name=>"partialdiff",
1464
+ :boundingbox=>[17,
1465
+ -38,
1466
+ 459,
1467
+ 710]},
1468
+ "ydieresis"=>{:charcode=>-1,
1469
+ :wx=>500,
1470
+ :name=>"ydieresis",
1471
+ :boundingbox=>[14,
1472
+ -218,
1473
+ 475,
1474
+ 623]},
1475
+ "Nacute"=>{:charcode=>-1,
1476
+ :wx=>722,
1477
+ :name=>"Nacute",
1478
+ :boundingbox=>[12,
1479
+ -11,
1480
+ 707,
1481
+ 890]},
1482
+ "icircumflex"=>{:charcode=>-1,
1483
+ :wx=>278,
1484
+ :name=>"icircumflex",
1485
+ :boundingbox=>[-16,
1486
+ 0,
1487
+ 295,
1488
+ 674]},
1489
+ "Ecircumflex"=>{:charcode=>-1,
1490
+ :wx=>611,
1491
+ :name=>"Ecircumflex",
1492
+ :boundingbox=>[12,
1493
+ 0,
1494
+ 597,
1495
+ 886]},
1496
+ "adieresis"=>{:charcode=>-1,
1497
+ :wx=>444,
1498
+ :name=>"adieresis",
1499
+ :boundingbox=>[37,
1500
+ -10,
1501
+ 442,
1502
+ 623]},
1503
+ "edieresis"=>{:charcode=>-1,
1504
+ :wx=>444,
1505
+ :name=>"edieresis",
1506
+ :boundingbox=>[25,
1507
+ -10,
1508
+ 424,
1509
+ 623]},
1510
+ "cacute"=>{:charcode=>-1,
1511
+ :wx=>444,
1512
+ :name=>"cacute",
1513
+ :boundingbox=>[25,
1514
+ -10,
1515
+ 413,
1516
+ 678]},
1517
+ "nacute"=>{:charcode=>-1,
1518
+ :wx=>500,
1519
+ :name=>"nacute",
1520
+ :boundingbox=>[16,
1521
+ 0,
1522
+ 485,
1523
+ 678]},
1524
+ "umacron"=>{:charcode=>-1,
1525
+ :wx=>500,
1526
+ :name=>"umacron",
1527
+ :boundingbox=>[9,
1528
+ -10,
1529
+ 479,
1530
+ 601]},
1531
+ "Ncaron"=>{:charcode=>-1,
1532
+ :wx=>722,
1533
+ :name=>"Ncaron",
1534
+ :boundingbox=>[12,
1535
+ -11,
1536
+ 707,
1537
+ 886]},
1538
+ "Iacute"=>{:charcode=>-1,
1539
+ :wx=>333,
1540
+ :name=>"Iacute",
1541
+ :boundingbox=>[18,
1542
+ 0,
1543
+ 317,
1544
+ 890]},
1545
+ "plusminus"=>{:charcode=>-1,
1546
+ :wx=>564,
1547
+ :name=>"plusminus",
1548
+ :boundingbox=>[30,
1549
+ 0,
1550
+ 534,
1551
+ 506]},
1552
+ "brokenbar"=>{:charcode=>-1,
1553
+ :wx=>200,
1554
+ :name=>"brokenbar",
1555
+ :boundingbox=>[67,
1556
+ -143,
1557
+ 133,
1558
+ 707]},
1559
+ "registered"=>{:charcode=>-1,
1560
+ :wx=>760,
1561
+ :name=>"registered",
1562
+ :boundingbox=>[38,
1563
+ -14,
1564
+ 722,
1565
+ 676]},
1566
+ "Gbreve"=>{:charcode=>-1,
1567
+ :wx=>722,
1568
+ :name=>"Gbreve",
1569
+ :boundingbox=>[32,
1570
+ -14,
1571
+ 709,
1572
+ 876]},
1573
+ "Idotaccent"=>{:charcode=>-1,
1574
+ :wx=>333,
1575
+ :name=>"Idotaccent",
1576
+ :boundingbox=>[18,
1577
+ 0,
1578
+ 315,
1579
+ 835]},
1580
+ "summation"=>{:charcode=>-1,
1581
+ :wx=>600,
1582
+ :name=>"summation",
1583
+ :boundingbox=>[15,
1584
+ -10,
1585
+ 585,
1586
+ 706]},
1587
+ "Egrave"=>{:charcode=>-1,
1588
+ :wx=>611,
1589
+ :name=>"Egrave",
1590
+ :boundingbox=>[12,
1591
+ 0,
1592
+ 597,
1593
+ 890]},
1594
+ "racute"=>{:charcode=>-1,
1595
+ :wx=>333,
1596
+ :name=>"racute",
1597
+ :boundingbox=>[5,
1598
+ 0,
1599
+ 335,
1600
+ 678]},
1601
+ "omacron"=>{:charcode=>-1,
1602
+ :wx=>500,
1603
+ :name=>"omacron",
1604
+ :boundingbox=>[29,
1605
+ -10,
1606
+ 470,
1607
+ 601]},
1608
+ "Zacute"=>{:charcode=>-1,
1609
+ :wx=>611,
1610
+ :name=>"Zacute",
1611
+ :boundingbox=>[9,
1612
+ 0,
1613
+ 597,
1614
+ 890]},
1615
+ "Zcaron"=>{:charcode=>-1,
1616
+ :wx=>611,
1617
+ :name=>"Zcaron",
1618
+ :boundingbox=>[9,
1619
+ 0,
1620
+ 597,
1621
+ 886]},
1622
+ "greaterequal"=>{:charcode=>-1,
1623
+ :wx=>549,
1624
+ :name=>"greaterequal",
1625
+ :boundingbox=>[26,
1626
+ 0,
1627
+ 523,
1628
+ 666]},
1629
+ "Eth"=>{:charcode=>-1,
1630
+ :wx=>722,
1631
+ :name=>"Eth",
1632
+ :boundingbox=>[16,
1633
+ 0,
1634
+ 685,
1635
+ 662]},
1636
+ "Ccedilla"=>{:charcode=>-1,
1637
+ :wx=>667,
1638
+ :name=>"Ccedilla",
1639
+ :boundingbox=>[28,
1640
+ -215,
1641
+ 633,
1642
+ 676]},
1643
+ "lcommaaccent"=>{:charcode=>-1,
1644
+ :wx=>278,
1645
+ :name=>"lcommaaccent",
1646
+ :boundingbox=>[19,
1647
+ -218,
1648
+ 257,
1649
+ 683]},
1650
+ "tcaron"=>{:charcode=>-1,
1651
+ :wx=>326,
1652
+ :name=>"tcaron",
1653
+ :boundingbox=>[13,
1654
+ -10,
1655
+ 318,
1656
+ 722]},
1657
+ "eogonek"=>{:charcode=>-1,
1658
+ :wx=>444,
1659
+ :name=>"eogonek",
1660
+ :boundingbox=>[25,
1661
+ -165,
1662
+ 424,
1663
+ 460]},
1664
+ "Uogonek"=>{:charcode=>-1,
1665
+ :wx=>722,
1666
+ :name=>"Uogonek",
1667
+ :boundingbox=>[14,
1668
+ -165,
1669
+ 705,
1670
+ 662]},
1671
+ "Aacute"=>{:charcode=>-1,
1672
+ :wx=>722,
1673
+ :name=>"Aacute",
1674
+ :boundingbox=>[15,
1675
+ 0,
1676
+ 706,
1677
+ 890]},
1678
+ "Adieresis"=>{:charcode=>-1,
1679
+ :wx=>722,
1680
+ :name=>"Adieresis",
1681
+ :boundingbox=>[15,
1682
+ 0,
1683
+ 706,
1684
+ 835]},
1685
+ "egrave"=>{:charcode=>-1,
1686
+ :wx=>444,
1687
+ :name=>"egrave",
1688
+ :boundingbox=>[25,
1689
+ -10,
1690
+ 424,
1691
+ 678]},
1692
+ "zacute"=>{:charcode=>-1,
1693
+ :wx=>444,
1694
+ :name=>"zacute",
1695
+ :boundingbox=>[27,
1696
+ 0,
1697
+ 418,
1698
+ 678]},
1699
+ "iogonek"=>{:charcode=>-1,
1700
+ :wx=>278,
1701
+ :name=>"iogonek",
1702
+ :boundingbox=>[16,
1703
+ -165,
1704
+ 265,
1705
+ 683]},
1706
+ "Oacute"=>{:charcode=>-1,
1707
+ :wx=>722,
1708
+ :name=>"Oacute",
1709
+ :boundingbox=>[34,
1710
+ -14,
1711
+ 688,
1712
+ 890]},
1713
+ "oacute"=>{:charcode=>-1,
1714
+ :wx=>500,
1715
+ :name=>"oacute",
1716
+ :boundingbox=>[29,
1717
+ -10,
1718
+ 470,
1719
+ 678]},
1720
+ "amacron"=>{:charcode=>-1,
1721
+ :wx=>444,
1722
+ :name=>"amacron",
1723
+ :boundingbox=>[37,
1724
+ -10,
1725
+ 442,
1726
+ 601]},
1727
+ "sacute"=>{:charcode=>-1,
1728
+ :wx=>389,
1729
+ :name=>"sacute",
1730
+ :boundingbox=>[51,
1731
+ -10,
1732
+ 348,
1733
+ 678]},
1734
+ "idieresis"=>{:charcode=>-1,
1735
+ :wx=>278,
1736
+ :name=>"idieresis",
1737
+ :boundingbox=>[-9,
1738
+ 0,
1739
+ 288,
1740
+ 623]},
1741
+ "Ocircumflex"=>{:charcode=>-1,
1742
+ :wx=>722,
1743
+ :name=>"Ocircumflex",
1744
+ :boundingbox=>[34,
1745
+ -14,
1746
+ 688,
1747
+ 886]},
1748
+ "Ugrave"=>{:charcode=>-1,
1749
+ :wx=>722,
1750
+ :name=>"Ugrave",
1751
+ :boundingbox=>[14,
1752
+ -14,
1753
+ 705,
1754
+ 890]},
1755
+ "Delta"=>{:charcode=>-1,
1756
+ :wx=>612,
1757
+ :name=>"Delta",
1758
+ :boundingbox=>[6,
1759
+ 0,
1760
+ 608,
1761
+ 688]},
1762
+ "thorn"=>{:charcode=>-1,
1763
+ :wx=>500,
1764
+ :name=>"thorn",
1765
+ :boundingbox=>[5,
1766
+ -217,
1767
+ 470,
1768
+ 683]},
1769
+ "twosuperior"=>{:charcode=>-1,
1770
+ :wx=>300,
1771
+ :name=>"twosuperior",
1772
+ :boundingbox=>[1,
1773
+ 270,
1774
+ 296,
1775
+ 676]},
1776
+ "Odieresis"=>{:charcode=>-1,
1777
+ :wx=>722,
1778
+ :name=>"Odieresis",
1779
+ :boundingbox=>[34,
1780
+ -14,
1781
+ 688,
1782
+ 835]},
1783
+ "mu"=>{:charcode=>-1,
1784
+ :wx=>500,
1785
+ :name=>"mu",
1786
+ :boundingbox=>[36,
1787
+ -218,
1788
+ 512,
1789
+ 450]},
1790
+ "igrave"=>{:charcode=>-1,
1791
+ :wx=>278,
1792
+ :name=>"igrave",
1793
+ :boundingbox=>[-8,
1794
+ 0,
1795
+ 253,
1796
+ 678]},
1797
+ "ohungarumlaut"=>{:charcode=>-1,
1798
+ :wx=>500,
1799
+ :name=>"ohungarumlaut",
1800
+ :boundingbox=>[29,
1801
+ -10,
1802
+ 491,
1803
+ 678]},
1804
+ "Eogonek"=>{:charcode=>-1,
1805
+ :wx=>611,
1806
+ :name=>"Eogonek",
1807
+ :boundingbox=>[12,
1808
+ -165,
1809
+ 597,
1810
+ 662]},
1811
+ "dcroat"=>{:charcode=>-1,
1812
+ :wx=>500,
1813
+ :name=>"dcroat",
1814
+ :boundingbox=>[27,
1815
+ -10,
1816
+ 500,
1817
+ 683]},
1818
+ "threequarters"=>{:charcode=>-1,
1819
+ :wx=>750,
1820
+ :name=>"threequarters",
1821
+ :boundingbox=>[15,
1822
+ -14,
1823
+ 718,
1824
+ 676]},
1825
+ "Scedilla"=>{:charcode=>-1,
1826
+ :wx=>556,
1827
+ :name=>"Scedilla",
1828
+ :boundingbox=>[42,
1829
+ -215,
1830
+ 491,
1831
+ 676]},
1832
+ "lcaron"=>{:charcode=>-1,
1833
+ :wx=>344,
1834
+ :name=>"lcaron",
1835
+ :boundingbox=>[19,
1836
+ 0,
1837
+ 347,
1838
+ 695]},
1839
+ "Kcommaaccent"=>{:charcode=>-1,
1840
+ :wx=>722,
1841
+ :name=>"Kcommaaccent",
1842
+ :boundingbox=>[34,
1843
+ -198,
1844
+ 723,
1845
+ 662]},
1846
+ "Lacute"=>{:charcode=>-1,
1847
+ :wx=>611,
1848
+ :name=>"Lacute",
1849
+ :boundingbox=>[12,
1850
+ 0,
1851
+ 598,
1852
+ 890]},
1853
+ "trademark"=>{:charcode=>-1,
1854
+ :wx=>980,
1855
+ :name=>"trademark",
1856
+ :boundingbox=>[30,
1857
+ 256,
1858
+ 957,
1859
+ 662]},
1860
+ "edotaccent"=>{:charcode=>-1,
1861
+ :wx=>444,
1862
+ :name=>"edotaccent",
1863
+ :boundingbox=>[25,
1864
+ -10,
1865
+ 424,
1866
+ 623]},
1867
+ "Igrave"=>{:charcode=>-1,
1868
+ :wx=>333,
1869
+ :name=>"Igrave",
1870
+ :boundingbox=>[18,
1871
+ 0,
1872
+ 315,
1873
+ 890]},
1874
+ "Imacron"=>{:charcode=>-1,
1875
+ :wx=>333,
1876
+ :name=>"Imacron",
1877
+ :boundingbox=>[11,
1878
+ 0,
1879
+ 322,
1880
+ 813]},
1881
+ "Lcaron"=>{:charcode=>-1,
1882
+ :wx=>611,
1883
+ :name=>"Lcaron",
1884
+ :boundingbox=>[12,
1885
+ 0,
1886
+ 598,
1887
+ 676]},
1888
+ "onehalf"=>{:charcode=>-1,
1889
+ :wx=>750,
1890
+ :name=>"onehalf",
1891
+ :boundingbox=>[31,
1892
+ -14,
1893
+ 746,
1894
+ 676]},
1895
+ "lessequal"=>{:charcode=>-1,
1896
+ :wx=>549,
1897
+ :name=>"lessequal",
1898
+ :boundingbox=>[26,
1899
+ 0,
1900
+ 523,
1901
+ 666]},
1902
+ "ocircumflex"=>{:charcode=>-1,
1903
+ :wx=>500,
1904
+ :name=>"ocircumflex",
1905
+ :boundingbox=>[29,
1906
+ -10,
1907
+ 470,
1908
+ 674]},
1909
+ "ntilde"=>{:charcode=>-1,
1910
+ :wx=>500,
1911
+ :name=>"ntilde",
1912
+ :boundingbox=>[16,
1913
+ 0,
1914
+ 485,
1915
+ 638]},
1916
+ "Uhungarumlaut"=>{:charcode=>-1,
1917
+ :wx=>722,
1918
+ :name=>"Uhungarumlaut",
1919
+ :boundingbox=>[14,
1920
+ -14,
1921
+ 705,
1922
+ 890]},
1923
+ "Eacute"=>{:charcode=>-1,
1924
+ :wx=>611,
1925
+ :name=>"Eacute",
1926
+ :boundingbox=>[12,
1927
+ 0,
1928
+ 597,
1929
+ 890]},
1930
+ "emacron"=>{:charcode=>-1,
1931
+ :wx=>444,
1932
+ :name=>"emacron",
1933
+ :boundingbox=>[25,
1934
+ -10,
1935
+ 424,
1936
+ 601]},
1937
+ "gbreve"=>{:charcode=>-1,
1938
+ :wx=>500,
1939
+ :name=>"gbreve",
1940
+ :boundingbox=>[28,
1941
+ -218,
1942
+ 470,
1943
+ 664]},
1944
+ "onequarter"=>{:charcode=>-1,
1945
+ :wx=>750,
1946
+ :name=>"onequarter",
1947
+ :boundingbox=>[37,
1948
+ -14,
1949
+ 718,
1950
+ 676]},
1951
+ "Scaron"=>{:charcode=>-1,
1952
+ :wx=>556,
1953
+ :name=>"Scaron",
1954
+ :boundingbox=>[42,
1955
+ -14,
1956
+ 491,
1957
+ 886]},
1958
+ "Scommaaccent"=>{:charcode=>-1,
1959
+ :wx=>556,
1960
+ :name=>"Scommaaccent",
1961
+ :boundingbox=>[42,
1962
+ -218,
1963
+ 491,
1964
+ 676]},
1965
+ "Ohungarumlaut"=>{:charcode=>-1,
1966
+ :wx=>722,
1967
+ :name=>"Ohungarumlaut",
1968
+ :boundingbox=>[34,
1969
+ -14,
1970
+ 688,
1971
+ 890]},
1972
+ "degree"=>{:charcode=>-1,
1973
+ :wx=>400,
1974
+ :name=>"degree",
1975
+ :boundingbox=>[57,
1976
+ 390,
1977
+ 343,
1978
+ 676]},
1979
+ "ograve"=>{:charcode=>-1,
1980
+ :wx=>500,
1981
+ :name=>"ograve",
1982
+ :boundingbox=>[29,
1983
+ -10,
1984
+ 470,
1985
+ 678]},
1986
+ "Ccaron"=>{:charcode=>-1,
1987
+ :wx=>667,
1988
+ :name=>"Ccaron",
1989
+ :boundingbox=>[28,
1990
+ -14,
1991
+ 633,
1992
+ 886]},
1993
+ "ugrave"=>{:charcode=>-1,
1994
+ :wx=>500,
1995
+ :name=>"ugrave",
1996
+ :boundingbox=>[9,
1997
+ -10,
1998
+ 479,
1999
+ 678]},
2000
+ "radical"=>{:charcode=>-1,
2001
+ :wx=>453,
2002
+ :name=>"radical",
2003
+ :boundingbox=>[2,
2004
+ -60,
2005
+ 452,
2006
+ 768]},
2007
+ "Dcaron"=>{:charcode=>-1,
2008
+ :wx=>722,
2009
+ :name=>"Dcaron",
2010
+ :boundingbox=>[16,
2011
+ 0,
2012
+ 685,
2013
+ 886]},
2014
+ "rcommaaccent"=>{:charcode=>-1,
2015
+ :wx=>333,
2016
+ :name=>"rcommaaccent",
2017
+ :boundingbox=>[5,
2018
+ -218,
2019
+ 335,
2020
+ 460]},
2021
+ "Ntilde"=>{:charcode=>-1,
2022
+ :wx=>722,
2023
+ :name=>"Ntilde",
2024
+ :boundingbox=>[12,
2025
+ -11,
2026
+ 707,
2027
+ 850]},
2028
+ "otilde"=>{:charcode=>-1,
2029
+ :wx=>500,
2030
+ :name=>"otilde",
2031
+ :boundingbox=>[29,
2032
+ -10,
2033
+ 470,
2034
+ 638]},
2035
+ "Rcommaaccent"=>{:charcode=>-1,
2036
+ :wx=>667,
2037
+ :name=>"Rcommaaccent",
2038
+ :boundingbox=>[17,
2039
+ -198,
2040
+ 659,
2041
+ 662]},
2042
+ "Lcommaaccent"=>{:charcode=>-1,
2043
+ :wx=>611,
2044
+ :name=>"Lcommaaccent",
2045
+ :boundingbox=>[12,
2046
+ -218,
2047
+ 598,
2048
+ 662]},
2049
+ "Atilde"=>{:charcode=>-1,
2050
+ :wx=>722,
2051
+ :name=>"Atilde",
2052
+ :boundingbox=>[15,
2053
+ 0,
2054
+ 706,
2055
+ 850]},
2056
+ "Aogonek"=>{:charcode=>-1,
2057
+ :wx=>722,
2058
+ :name=>"Aogonek",
2059
+ :boundingbox=>[15,
2060
+ -165,
2061
+ 738,
2062
+ 674]},
2063
+ "Aring"=>{:charcode=>-1,
2064
+ :wx=>722,
2065
+ :name=>"Aring",
2066
+ :boundingbox=>[15,
2067
+ 0,
2068
+ 706,
2069
+ 898]},
2070
+ "Otilde"=>{:charcode=>-1,
2071
+ :wx=>722,
2072
+ :name=>"Otilde",
2073
+ :boundingbox=>[34,
2074
+ -14,
2075
+ 688,
2076
+ 850]},
2077
+ "zdotaccent"=>{:charcode=>-1,
2078
+ :wx=>444,
2079
+ :name=>"zdotaccent",
2080
+ :boundingbox=>[27,
2081
+ 0,
2082
+ 418,
2083
+ 623]},
2084
+ "Ecaron"=>{:charcode=>-1,
2085
+ :wx=>611,
2086
+ :name=>"Ecaron",
2087
+ :boundingbox=>[12,
2088
+ 0,
2089
+ 597,
2090
+ 886]},
2091
+ "Iogonek"=>{:charcode=>-1,
2092
+ :wx=>333,
2093
+ :name=>"Iogonek",
2094
+ :boundingbox=>[18,
2095
+ -165,
2096
+ 315,
2097
+ 662]},
2098
+ "kcommaaccent"=>{:charcode=>-1,
2099
+ :wx=>500,
2100
+ :name=>"kcommaaccent",
2101
+ :boundingbox=>[7,
2102
+ -218,
2103
+ 505,
2104
+ 683]},
2105
+ "minus"=>{:charcode=>-1,
2106
+ :wx=>564,
2107
+ :name=>"minus",
2108
+ :boundingbox=>[30,
2109
+ 220,
2110
+ 534,
2111
+ 286]},
2112
+ "Icircumflex"=>{:charcode=>-1,
2113
+ :wx=>333,
2114
+ :name=>"Icircumflex",
2115
+ :boundingbox=>[11,
2116
+ 0,
2117
+ 322,
2118
+ 886]},
2119
+ "ncaron"=>{:charcode=>-1,
2120
+ :wx=>500,
2121
+ :name=>"ncaron",
2122
+ :boundingbox=>[16,
2123
+ 0,
2124
+ 485,
2125
+ 674]},
2126
+ "tcommaaccent"=>{:charcode=>-1,
2127
+ :wx=>278,
2128
+ :name=>"tcommaaccent",
2129
+ :boundingbox=>[13,
2130
+ -218,
2131
+ 279,
2132
+ 579]},
2133
+ "logicalnot"=>{:charcode=>-1,
2134
+ :wx=>564,
2135
+ :name=>"logicalnot",
2136
+ :boundingbox=>[30,
2137
+ 108,
2138
+ 534,
2139
+ 386]},
2140
+ "odieresis"=>{:charcode=>-1,
2141
+ :wx=>500,
2142
+ :name=>"odieresis",
2143
+ :boundingbox=>[29,
2144
+ -10,
2145
+ 470,
2146
+ 623]},
2147
+ "udieresis"=>{:charcode=>-1,
2148
+ :wx=>500,
2149
+ :name=>"udieresis",
2150
+ :boundingbox=>[9,
2151
+ -10,
2152
+ 479,
2153
+ 623]},
2154
+ "notequal"=>{:charcode=>-1,
2155
+ :wx=>549,
2156
+ :name=>"notequal",
2157
+ :boundingbox=>[12,
2158
+ -31,
2159
+ 537,
2160
+ 547]},
2161
+ "gcommaaccent"=>{:charcode=>-1,
2162
+ :wx=>500,
2163
+ :name=>"gcommaaccent",
2164
+ :boundingbox=>[28,
2165
+ -218,
2166
+ 470,
2167
+ 749]},
2168
+ "eth"=>{:charcode=>-1,
2169
+ :wx=>500,
2170
+ :name=>"eth",
2171
+ :boundingbox=>[29,
2172
+ -10,
2173
+ 471,
2174
+ 686]},
2175
+ "zcaron"=>{:charcode=>-1,
2176
+ :wx=>444,
2177
+ :name=>"zcaron",
2178
+ :boundingbox=>[27,
2179
+ 0,
2180
+ 418,
2181
+ 674]},
2182
+ "ncommaaccent"=>{:charcode=>-1,
2183
+ :wx=>500,
2184
+ :name=>"ncommaaccent",
2185
+ :boundingbox=>[16,
2186
+ -218,
2187
+ 485,
2188
+ 460]},
2189
+ "onesuperior"=>{:charcode=>-1,
2190
+ :wx=>300,
2191
+ :name=>"onesuperior",
2192
+ :boundingbox=>[57,
2193
+ 270,
2194
+ 248,
2195
+ 676]},
2196
+ "imacron"=>{:charcode=>-1,
2197
+ :wx=>278,
2198
+ :name=>"imacron",
2199
+ :boundingbox=>[6,
2200
+ 0,
2201
+ 271,
2202
+ 601]},
2203
+ "Euro"=>{:charcode=>-1,
2204
+ :wx=>500,
2205
+ :name=>"Euro",
2206
+ :boundingbox=>[0,
2207
+ 0,
2208
+ 0,
2209
+ 0]}
2210
+ }
2211
+ end
2212
+ end