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