hexapdf 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (346) hide show
  1. checksums.yaml +7 -0
  2. data/CONTRIBUTERS +3 -0
  3. data/LICENSE +26 -0
  4. data/README.md +88 -0
  5. data/Rakefile +121 -0
  6. data/VERSION +1 -0
  7. data/agpl-3.0.txt +661 -0
  8. data/bin/hexapdf +6 -0
  9. data/data/hexapdf/afm/Courier-Bold.afm +342 -0
  10. data/data/hexapdf/afm/Courier-BoldOblique.afm +342 -0
  11. data/data/hexapdf/afm/Courier-Oblique.afm +342 -0
  12. data/data/hexapdf/afm/Courier.afm +342 -0
  13. data/data/hexapdf/afm/Helvetica-Bold.afm +2827 -0
  14. data/data/hexapdf/afm/Helvetica-BoldOblique.afm +2827 -0
  15. data/data/hexapdf/afm/Helvetica-Oblique.afm +3051 -0
  16. data/data/hexapdf/afm/Helvetica.afm +3051 -0
  17. data/data/hexapdf/afm/MustRead.html +1 -0
  18. data/data/hexapdf/afm/Symbol.afm +213 -0
  19. data/data/hexapdf/afm/Times-Bold.afm +2588 -0
  20. data/data/hexapdf/afm/Times-BoldItalic.afm +2384 -0
  21. data/data/hexapdf/afm/Times-Italic.afm +2667 -0
  22. data/data/hexapdf/afm/Times-Roman.afm +2419 -0
  23. data/data/hexapdf/afm/ZapfDingbats.afm +225 -0
  24. data/data/hexapdf/encoding/glyphlist.txt +4305 -0
  25. data/data/hexapdf/encoding/zapfdingbats.txt +225 -0
  26. data/examples/arc.rb +50 -0
  27. data/examples/graphics.rb +274 -0
  28. data/examples/hello_world.rb +16 -0
  29. data/examples/machupicchu.jpg +0 -0
  30. data/examples/merging.rb +24 -0
  31. data/examples/optimizing.rb +20 -0
  32. data/examples/show_char_bboxes.rb +55 -0
  33. data/examples/standard_pdf_fonts.rb +72 -0
  34. data/examples/truetype.rb +45 -0
  35. data/lib/hexapdf/cli/extract.rb +128 -0
  36. data/lib/hexapdf/cli/info.rb +121 -0
  37. data/lib/hexapdf/cli/inspect.rb +157 -0
  38. data/lib/hexapdf/cli/modify.rb +218 -0
  39. data/lib/hexapdf/cli.rb +121 -0
  40. data/lib/hexapdf/configuration.rb +392 -0
  41. data/lib/hexapdf/content/canvas.rb +1974 -0
  42. data/lib/hexapdf/content/color_space.rb +364 -0
  43. data/lib/hexapdf/content/graphic_object/arc.rb +267 -0
  44. data/lib/hexapdf/content/graphic_object/endpoint_arc.rb +208 -0
  45. data/lib/hexapdf/content/graphic_object/solid_arc.rb +173 -0
  46. data/lib/hexapdf/content/graphic_object.rb +81 -0
  47. data/lib/hexapdf/content/graphics_state.rb +579 -0
  48. data/lib/hexapdf/content/operator.rb +1072 -0
  49. data/lib/hexapdf/content/parser.rb +204 -0
  50. data/lib/hexapdf/content/processor.rb +451 -0
  51. data/lib/hexapdf/content/transformation_matrix.rb +172 -0
  52. data/lib/hexapdf/content.rb +47 -0
  53. data/lib/hexapdf/data_dir.rb +51 -0
  54. data/lib/hexapdf/dictionary.rb +303 -0
  55. data/lib/hexapdf/dictionary_fields.rb +382 -0
  56. data/lib/hexapdf/document.rb +589 -0
  57. data/lib/hexapdf/document_utils.rb +209 -0
  58. data/lib/hexapdf/encryption/aes.rb +206 -0
  59. data/lib/hexapdf/encryption/arc4.rb +93 -0
  60. data/lib/hexapdf/encryption/fast_aes.rb +79 -0
  61. data/lib/hexapdf/encryption/fast_arc4.rb +67 -0
  62. data/lib/hexapdf/encryption/identity.rb +63 -0
  63. data/lib/hexapdf/encryption/ruby_aes.rb +447 -0
  64. data/lib/hexapdf/encryption/ruby_arc4.rb +96 -0
  65. data/lib/hexapdf/encryption/security_handler.rb +494 -0
  66. data/lib/hexapdf/encryption/standard_security_handler.rb +616 -0
  67. data/lib/hexapdf/encryption.rb +94 -0
  68. data/lib/hexapdf/error.rb +73 -0
  69. data/lib/hexapdf/filter/ascii85_decode.rb +160 -0
  70. data/lib/hexapdf/filter/ascii_hex_decode.rb +87 -0
  71. data/lib/hexapdf/filter/dct_decode.rb +57 -0
  72. data/lib/hexapdf/filter/encryption.rb +59 -0
  73. data/lib/hexapdf/filter/flate_decode.rb +93 -0
  74. data/lib/hexapdf/filter/jpx_decode.rb +56 -0
  75. data/lib/hexapdf/filter/lzw_decode.rb +191 -0
  76. data/lib/hexapdf/filter/predictor.rb +266 -0
  77. data/lib/hexapdf/filter/run_length_decode.rb +108 -0
  78. data/lib/hexapdf/filter.rb +176 -0
  79. data/lib/hexapdf/font/cmap/parser.rb +146 -0
  80. data/lib/hexapdf/font/cmap/writer.rb +176 -0
  81. data/lib/hexapdf/font/cmap.rb +90 -0
  82. data/lib/hexapdf/font/encoding/base.rb +77 -0
  83. data/lib/hexapdf/font/encoding/difference_encoding.rb +64 -0
  84. data/lib/hexapdf/font/encoding/glyph_list.rb +150 -0
  85. data/lib/hexapdf/font/encoding/mac_expert_encoding.rb +221 -0
  86. data/lib/hexapdf/font/encoding/mac_roman_encoding.rb +265 -0
  87. data/lib/hexapdf/font/encoding/standard_encoding.rb +205 -0
  88. data/lib/hexapdf/font/encoding/symbol_encoding.rb +244 -0
  89. data/lib/hexapdf/font/encoding/win_ansi_encoding.rb +280 -0
  90. data/lib/hexapdf/font/encoding/zapf_dingbats_encoding.rb +250 -0
  91. data/lib/hexapdf/font/encoding.rb +68 -0
  92. data/lib/hexapdf/font/true_type/font.rb +179 -0
  93. data/lib/hexapdf/font/true_type/table/cmap.rb +103 -0
  94. data/lib/hexapdf/font/true_type/table/cmap_subtable.rb +384 -0
  95. data/lib/hexapdf/font/true_type/table/directory.rb +92 -0
  96. data/lib/hexapdf/font/true_type/table/glyf.rb +166 -0
  97. data/lib/hexapdf/font/true_type/table/head.rb +143 -0
  98. data/lib/hexapdf/font/true_type/table/hhea.rb +109 -0
  99. data/lib/hexapdf/font/true_type/table/hmtx.rb +79 -0
  100. data/lib/hexapdf/font/true_type/table/loca.rb +79 -0
  101. data/lib/hexapdf/font/true_type/table/maxp.rb +112 -0
  102. data/lib/hexapdf/font/true_type/table/name.rb +218 -0
  103. data/lib/hexapdf/font/true_type/table/os2.rb +200 -0
  104. data/lib/hexapdf/font/true_type/table/post.rb +230 -0
  105. data/lib/hexapdf/font/true_type/table.rb +155 -0
  106. data/lib/hexapdf/font/true_type.rb +48 -0
  107. data/lib/hexapdf/font/true_type_wrapper.rb +240 -0
  108. data/lib/hexapdf/font/type1/afm_parser.rb +230 -0
  109. data/lib/hexapdf/font/type1/character_metrics.rb +67 -0
  110. data/lib/hexapdf/font/type1/font.rb +123 -0
  111. data/lib/hexapdf/font/type1/font_metrics.rb +117 -0
  112. data/lib/hexapdf/font/type1/pfb_parser.rb +71 -0
  113. data/lib/hexapdf/font/type1.rb +52 -0
  114. data/lib/hexapdf/font/type1_wrapper.rb +193 -0
  115. data/lib/hexapdf/font_loader/from_configuration.rb +70 -0
  116. data/lib/hexapdf/font_loader/standard14.rb +98 -0
  117. data/lib/hexapdf/font_loader.rb +85 -0
  118. data/lib/hexapdf/font_utils.rb +89 -0
  119. data/lib/hexapdf/image_loader/jpeg.rb +166 -0
  120. data/lib/hexapdf/image_loader/pdf.rb +89 -0
  121. data/lib/hexapdf/image_loader/png.rb +410 -0
  122. data/lib/hexapdf/image_loader.rb +68 -0
  123. data/lib/hexapdf/importer.rb +139 -0
  124. data/lib/hexapdf/name_tree_node.rb +78 -0
  125. data/lib/hexapdf/number_tree_node.rb +67 -0
  126. data/lib/hexapdf/object.rb +363 -0
  127. data/lib/hexapdf/parser.rb +349 -0
  128. data/lib/hexapdf/rectangle.rb +99 -0
  129. data/lib/hexapdf/reference.rb +98 -0
  130. data/lib/hexapdf/revision.rb +206 -0
  131. data/lib/hexapdf/revisions.rb +194 -0
  132. data/lib/hexapdf/serializer.rb +326 -0
  133. data/lib/hexapdf/stream.rb +279 -0
  134. data/lib/hexapdf/task/dereference.rb +109 -0
  135. data/lib/hexapdf/task/optimize.rb +230 -0
  136. data/lib/hexapdf/task.rb +68 -0
  137. data/lib/hexapdf/tokenizer.rb +406 -0
  138. data/lib/hexapdf/type/catalog.rb +107 -0
  139. data/lib/hexapdf/type/embedded_file.rb +87 -0
  140. data/lib/hexapdf/type/file_specification.rb +232 -0
  141. data/lib/hexapdf/type/font.rb +81 -0
  142. data/lib/hexapdf/type/font_descriptor.rb +109 -0
  143. data/lib/hexapdf/type/font_simple.rb +190 -0
  144. data/lib/hexapdf/type/font_true_type.rb +47 -0
  145. data/lib/hexapdf/type/font_type1.rb +162 -0
  146. data/lib/hexapdf/type/form.rb +103 -0
  147. data/lib/hexapdf/type/graphics_state_parameter.rb +79 -0
  148. data/lib/hexapdf/type/image.rb +73 -0
  149. data/lib/hexapdf/type/info.rb +70 -0
  150. data/lib/hexapdf/type/names.rb +69 -0
  151. data/lib/hexapdf/type/object_stream.rb +224 -0
  152. data/lib/hexapdf/type/page.rb +355 -0
  153. data/lib/hexapdf/type/page_tree_node.rb +269 -0
  154. data/lib/hexapdf/type/resources.rb +212 -0
  155. data/lib/hexapdf/type/trailer.rb +128 -0
  156. data/lib/hexapdf/type/viewer_preferences.rb +73 -0
  157. data/lib/hexapdf/type/xref_stream.rb +204 -0
  158. data/lib/hexapdf/type.rb +67 -0
  159. data/lib/hexapdf/utils/bit_field.rb +87 -0
  160. data/lib/hexapdf/utils/bit_stream.rb +148 -0
  161. data/lib/hexapdf/utils/lru_cache.rb +65 -0
  162. data/lib/hexapdf/utils/math_helpers.rb +55 -0
  163. data/lib/hexapdf/utils/object_hash.rb +130 -0
  164. data/lib/hexapdf/utils/pdf_doc_encoding.rb +93 -0
  165. data/lib/hexapdf/utils/sorted_tree_node.rb +339 -0
  166. data/lib/hexapdf/version.rb +39 -0
  167. data/lib/hexapdf/writer.rb +199 -0
  168. data/lib/hexapdf/xref_section.rb +152 -0
  169. data/lib/hexapdf.rb +34 -0
  170. data/man/man1/hexapdf.1 +249 -0
  171. data/test/data/aes-test-vectors/CBCGFSbox-128-decrypt.data.gz +0 -0
  172. data/test/data/aes-test-vectors/CBCGFSbox-128-encrypt.data.gz +0 -0
  173. data/test/data/aes-test-vectors/CBCGFSbox-192-decrypt.data.gz +0 -0
  174. data/test/data/aes-test-vectors/CBCGFSbox-192-encrypt.data.gz +0 -0
  175. data/test/data/aes-test-vectors/CBCGFSbox-256-decrypt.data.gz +0 -0
  176. data/test/data/aes-test-vectors/CBCGFSbox-256-encrypt.data.gz +0 -0
  177. data/test/data/aes-test-vectors/CBCKeySbox-128-decrypt.data.gz +0 -0
  178. data/test/data/aes-test-vectors/CBCKeySbox-128-encrypt.data.gz +0 -0
  179. data/test/data/aes-test-vectors/CBCKeySbox-192-decrypt.data.gz +0 -0
  180. data/test/data/aes-test-vectors/CBCKeySbox-192-encrypt.data.gz +0 -0
  181. data/test/data/aes-test-vectors/CBCKeySbox-256-decrypt.data.gz +0 -0
  182. data/test/data/aes-test-vectors/CBCKeySbox-256-encrypt.data.gz +0 -0
  183. data/test/data/aes-test-vectors/CBCVarKey-128-decrypt.data.gz +0 -0
  184. data/test/data/aes-test-vectors/CBCVarKey-128-encrypt.data.gz +0 -0
  185. data/test/data/aes-test-vectors/CBCVarKey-192-decrypt.data.gz +0 -0
  186. data/test/data/aes-test-vectors/CBCVarKey-192-encrypt.data.gz +0 -0
  187. data/test/data/aes-test-vectors/CBCVarKey-256-decrypt.data.gz +0 -0
  188. data/test/data/aes-test-vectors/CBCVarKey-256-encrypt.data.gz +0 -0
  189. data/test/data/aes-test-vectors/CBCVarTxt-128-decrypt.data.gz +0 -0
  190. data/test/data/aes-test-vectors/CBCVarTxt-128-encrypt.data.gz +0 -0
  191. data/test/data/aes-test-vectors/CBCVarTxt-192-decrypt.data.gz +0 -0
  192. data/test/data/aes-test-vectors/CBCVarTxt-192-encrypt.data.gz +0 -0
  193. data/test/data/aes-test-vectors/CBCVarTxt-256-decrypt.data.gz +0 -0
  194. data/test/data/aes-test-vectors/CBCVarTxt-256-encrypt.data.gz +0 -0
  195. data/test/data/fonts/Ubuntu-Title.ttf +0 -0
  196. data/test/data/images/cmyk.jpg +0 -0
  197. data/test/data/images/fillbytes.jpg +0 -0
  198. data/test/data/images/gray.jpg +0 -0
  199. data/test/data/images/greyscale-1bit.png +0 -0
  200. data/test/data/images/greyscale-2bit.png +0 -0
  201. data/test/data/images/greyscale-4bit.png +0 -0
  202. data/test/data/images/greyscale-8bit.png +0 -0
  203. data/test/data/images/greyscale-alpha-8bit.png +0 -0
  204. data/test/data/images/greyscale-trns-8bit.png +0 -0
  205. data/test/data/images/greyscale-with-gamma1.0.png +0 -0
  206. data/test/data/images/greyscale-with-gamma1.5.png +0 -0
  207. data/test/data/images/indexed-1bit.png +0 -0
  208. data/test/data/images/indexed-2bit.png +0 -0
  209. data/test/data/images/indexed-4bit.png +0 -0
  210. data/test/data/images/indexed-8bit.png +0 -0
  211. data/test/data/images/indexed-alpha-4bit.png +0 -0
  212. data/test/data/images/indexed-alpha-8bit.png +0 -0
  213. data/test/data/images/rgb.jpg +0 -0
  214. data/test/data/images/truecolour-8bit.png +0 -0
  215. data/test/data/images/truecolour-alpha-8bit.png +0 -0
  216. data/test/data/images/truecolour-gama-chrm-8bit.png +0 -0
  217. data/test/data/images/truecolour-srgb-8bit.png +0 -0
  218. data/test/data/minimal.pdf +44 -0
  219. data/test/data/standard-security-handler/README +9 -0
  220. data/test/data/standard-security-handler/bothpwd-aes-128bit-V4.pdf +44 -0
  221. data/test/data/standard-security-handler/bothpwd-aes-256bit-V5.pdf +0 -0
  222. data/test/data/standard-security-handler/bothpwd-arc4-128bit-V2.pdf +43 -0
  223. data/test/data/standard-security-handler/bothpwd-arc4-128bit-V4.pdf +43 -0
  224. data/test/data/standard-security-handler/bothpwd-arc4-40bit-V1.pdf +0 -0
  225. data/test/data/standard-security-handler/nopwd-aes-128bit-V4.pdf +43 -0
  226. data/test/data/standard-security-handler/nopwd-aes-256bit-V5.pdf +0 -0
  227. data/test/data/standard-security-handler/nopwd-arc4-128bit-V2.pdf +43 -0
  228. data/test/data/standard-security-handler/nopwd-arc4-128bit-V4.pdf +43 -0
  229. data/test/data/standard-security-handler/nopwd-arc4-40bit-V1.pdf +43 -0
  230. data/test/data/standard-security-handler/ownerpwd-aes-128bit-V4.pdf +0 -0
  231. data/test/data/standard-security-handler/ownerpwd-aes-256bit-V5.pdf +43 -0
  232. data/test/data/standard-security-handler/ownerpwd-arc4-128bit-V2.pdf +43 -0
  233. data/test/data/standard-security-handler/ownerpwd-arc4-128bit-V4.pdf +43 -0
  234. data/test/data/standard-security-handler/ownerpwd-arc4-40bit-V1.pdf +43 -0
  235. data/test/data/standard-security-handler/userpwd-aes-128bit-V4.pdf +43 -0
  236. data/test/data/standard-security-handler/userpwd-aes-256bit-V5.pdf +43 -0
  237. data/test/data/standard-security-handler/userpwd-arc4-128bit-V2.pdf +0 -0
  238. data/test/data/standard-security-handler/userpwd-arc4-128bit-V4.pdf +0 -0
  239. data/test/data/standard-security-handler/userpwd-arc4-40bit-V1.pdf +43 -0
  240. data/test/hexapdf/common_tokenizer_tests.rb +204 -0
  241. data/test/hexapdf/content/common.rb +31 -0
  242. data/test/hexapdf/content/graphic_object/test_arc.rb +93 -0
  243. data/test/hexapdf/content/graphic_object/test_endpoint_arc.rb +91 -0
  244. data/test/hexapdf/content/graphic_object/test_solid_arc.rb +86 -0
  245. data/test/hexapdf/content/test_canvas.rb +1113 -0
  246. data/test/hexapdf/content/test_color_space.rb +97 -0
  247. data/test/hexapdf/content/test_graphics_state.rb +138 -0
  248. data/test/hexapdf/content/test_operator.rb +619 -0
  249. data/test/hexapdf/content/test_parser.rb +66 -0
  250. data/test/hexapdf/content/test_processor.rb +156 -0
  251. data/test/hexapdf/content/test_transformation_matrix.rb +64 -0
  252. data/test/hexapdf/encryption/common.rb +87 -0
  253. data/test/hexapdf/encryption/test_aes.rb +121 -0
  254. data/test/hexapdf/encryption/test_arc4.rb +39 -0
  255. data/test/hexapdf/encryption/test_fast_aes.rb +17 -0
  256. data/test/hexapdf/encryption/test_fast_arc4.rb +12 -0
  257. data/test/hexapdf/encryption/test_identity.rb +21 -0
  258. data/test/hexapdf/encryption/test_ruby_aes.rb +23 -0
  259. data/test/hexapdf/encryption/test_ruby_arc4.rb +20 -0
  260. data/test/hexapdf/encryption/test_security_handler.rb +356 -0
  261. data/test/hexapdf/encryption/test_standard_security_handler.rb +274 -0
  262. data/test/hexapdf/filter/common.rb +53 -0
  263. data/test/hexapdf/filter/test_ascii85_decode.rb +60 -0
  264. data/test/hexapdf/filter/test_ascii_hex_decode.rb +33 -0
  265. data/test/hexapdf/filter/test_encryption.rb +24 -0
  266. data/test/hexapdf/filter/test_flate_decode.rb +35 -0
  267. data/test/hexapdf/filter/test_lzw_decode.rb +52 -0
  268. data/test/hexapdf/filter/test_predictor.rb +183 -0
  269. data/test/hexapdf/filter/test_run_length_decode.rb +32 -0
  270. data/test/hexapdf/font/cmap/test_parser.rb +67 -0
  271. data/test/hexapdf/font/cmap/test_writer.rb +58 -0
  272. data/test/hexapdf/font/encoding/test_base.rb +35 -0
  273. data/test/hexapdf/font/encoding/test_difference_encoding.rb +21 -0
  274. data/test/hexapdf/font/encoding/test_glyph_list.rb +59 -0
  275. data/test/hexapdf/font/encoding/test_zapf_dingbats_encoding.rb +16 -0
  276. data/test/hexapdf/font/test_encoding.rb +27 -0
  277. data/test/hexapdf/font/test_true_type_wrapper.rb +110 -0
  278. data/test/hexapdf/font/test_type1_wrapper.rb +66 -0
  279. data/test/hexapdf/font/true_type/common.rb +19 -0
  280. data/test/hexapdf/font/true_type/table/test_cmap.rb +59 -0
  281. data/test/hexapdf/font/true_type/table/test_cmap_subtable.rb +133 -0
  282. data/test/hexapdf/font/true_type/table/test_directory.rb +35 -0
  283. data/test/hexapdf/font/true_type/table/test_glyf.rb +58 -0
  284. data/test/hexapdf/font/true_type/table/test_head.rb +76 -0
  285. data/test/hexapdf/font/true_type/table/test_hhea.rb +40 -0
  286. data/test/hexapdf/font/true_type/table/test_hmtx.rb +38 -0
  287. data/test/hexapdf/font/true_type/table/test_loca.rb +43 -0
  288. data/test/hexapdf/font/true_type/table/test_maxp.rb +62 -0
  289. data/test/hexapdf/font/true_type/table/test_name.rb +95 -0
  290. data/test/hexapdf/font/true_type/table/test_os2.rb +65 -0
  291. data/test/hexapdf/font/true_type/table/test_post.rb +89 -0
  292. data/test/hexapdf/font/true_type/test_font.rb +120 -0
  293. data/test/hexapdf/font/true_type/test_table.rb +41 -0
  294. data/test/hexapdf/font/type1/test_afm_parser.rb +51 -0
  295. data/test/hexapdf/font/type1/test_font.rb +68 -0
  296. data/test/hexapdf/font/type1/test_pfb_parser.rb +37 -0
  297. data/test/hexapdf/font_loader/test_from_configuration.rb +28 -0
  298. data/test/hexapdf/font_loader/test_standard14.rb +22 -0
  299. data/test/hexapdf/image_loader/test_jpeg.rb +83 -0
  300. data/test/hexapdf/image_loader/test_pdf.rb +47 -0
  301. data/test/hexapdf/image_loader/test_png.rb +258 -0
  302. data/test/hexapdf/task/test_dereference.rb +46 -0
  303. data/test/hexapdf/task/test_optimize.rb +137 -0
  304. data/test/hexapdf/test_configuration.rb +82 -0
  305. data/test/hexapdf/test_data_dir.rb +32 -0
  306. data/test/hexapdf/test_dictionary.rb +284 -0
  307. data/test/hexapdf/test_dictionary_fields.rb +185 -0
  308. data/test/hexapdf/test_document.rb +574 -0
  309. data/test/hexapdf/test_document_utils.rb +144 -0
  310. data/test/hexapdf/test_filter.rb +96 -0
  311. data/test/hexapdf/test_font_utils.rb +47 -0
  312. data/test/hexapdf/test_importer.rb +78 -0
  313. data/test/hexapdf/test_object.rb +177 -0
  314. data/test/hexapdf/test_parser.rb +394 -0
  315. data/test/hexapdf/test_rectangle.rb +36 -0
  316. data/test/hexapdf/test_reference.rb +41 -0
  317. data/test/hexapdf/test_revision.rb +139 -0
  318. data/test/hexapdf/test_revisions.rb +93 -0
  319. data/test/hexapdf/test_serializer.rb +169 -0
  320. data/test/hexapdf/test_stream.rb +262 -0
  321. data/test/hexapdf/test_tokenizer.rb +30 -0
  322. data/test/hexapdf/test_writer.rb +120 -0
  323. data/test/hexapdf/test_xref_section.rb +35 -0
  324. data/test/hexapdf/type/test_catalog.rb +30 -0
  325. data/test/hexapdf/type/test_embedded_file.rb +16 -0
  326. data/test/hexapdf/type/test_file_specification.rb +148 -0
  327. data/test/hexapdf/type/test_font.rb +35 -0
  328. data/test/hexapdf/type/test_font_descriptor.rb +51 -0
  329. data/test/hexapdf/type/test_font_simple.rb +190 -0
  330. data/test/hexapdf/type/test_font_type1.rb +128 -0
  331. data/test/hexapdf/type/test_form.rb +60 -0
  332. data/test/hexapdf/type/test_info.rb +14 -0
  333. data/test/hexapdf/type/test_names.rb +9 -0
  334. data/test/hexapdf/type/test_object_stream.rb +84 -0
  335. data/test/hexapdf/type/test_page.rb +260 -0
  336. data/test/hexapdf/type/test_page_tree_node.rb +255 -0
  337. data/test/hexapdf/type/test_resources.rb +167 -0
  338. data/test/hexapdf/type/test_trailer.rb +109 -0
  339. data/test/hexapdf/type/test_xref_stream.rb +131 -0
  340. data/test/hexapdf/utils/test_bit_field.rb +47 -0
  341. data/test/hexapdf/utils/test_lru_cache.rb +22 -0
  342. data/test/hexapdf/utils/test_object_hash.rb +115 -0
  343. data/test/hexapdf/utils/test_pdf_doc_encoding.rb +18 -0
  344. data/test/hexapdf/utils/test_sorted_tree_node.rb +232 -0
  345. data/test/test_helper.rb +56 -0
  346. metadata +427 -0
@@ -0,0 +1,3051 @@
1
+ StartFontMetrics 4.1
2
+ Comment Copyright (c) 1985, 1987, 1989, 1990, 1997 Adobe Systems Incorporated. All Rights Reserved.
3
+ Comment Creation Date: Thu May 1 12:44:31 1997
4
+ Comment UniqueID 43055
5
+ Comment VMusage 14960 69346
6
+ FontName Helvetica-Oblique
7
+ FullName Helvetica Oblique
8
+ FamilyName Helvetica
9
+ Weight Medium
10
+ ItalicAngle -12
11
+ IsFixedPitch false
12
+ CharacterSet ExtendedRoman
13
+ FontBBox -170 -225 1116 931
14
+ UnderlinePosition -100
15
+ UnderlineThickness 50
16
+ Version 002.000
17
+ Notice Copyright (c) 1985, 1987, 1989, 1990, 1997 Adobe Systems Incorporated. All Rights Reserved.Helvetica is a trademark of Linotype-Hell AG and/or its subsidiaries.
18
+ EncodingScheme AdobeStandardEncoding
19
+ CapHeight 718
20
+ XHeight 523
21
+ Ascender 718
22
+ Descender -207
23
+ StdHW 76
24
+ StdVW 88
25
+ StartCharMetrics 315
26
+ C 32 ; WX 278 ; N space ; B 0 0 0 0 ;
27
+ C 33 ; WX 278 ; N exclam ; B 90 0 340 718 ;
28
+ C 34 ; WX 355 ; N quotedbl ; B 168 463 438 718 ;
29
+ C 35 ; WX 556 ; N numbersign ; B 73 0 631 688 ;
30
+ C 36 ; WX 556 ; N dollar ; B 69 -115 617 775 ;
31
+ C 37 ; WX 889 ; N percent ; B 147 -19 889 703 ;
32
+ C 38 ; WX 667 ; N ampersand ; B 77 -15 647 718 ;
33
+ C 39 ; WX 222 ; N quoteright ; B 151 463 310 718 ;
34
+ C 40 ; WX 333 ; N parenleft ; B 108 -207 454 733 ;
35
+ C 41 ; WX 333 ; N parenright ; B -9 -207 337 733 ;
36
+ C 42 ; WX 389 ; N asterisk ; B 165 431 475 718 ;
37
+ C 43 ; WX 584 ; N plus ; B 85 0 606 505 ;
38
+ C 44 ; WX 278 ; N comma ; B 56 -147 214 106 ;
39
+ C 45 ; WX 333 ; N hyphen ; B 93 232 357 322 ;
40
+ C 46 ; WX 278 ; N period ; B 87 0 214 106 ;
41
+ C 47 ; WX 278 ; N slash ; B -21 -19 452 737 ;
42
+ C 48 ; WX 556 ; N zero ; B 93 -19 608 703 ;
43
+ C 49 ; WX 556 ; N one ; B 207 0 508 703 ;
44
+ C 50 ; WX 556 ; N two ; B 26 0 617 703 ;
45
+ C 51 ; WX 556 ; N three ; B 75 -19 610 703 ;
46
+ C 52 ; WX 556 ; N four ; B 61 0 576 703 ;
47
+ C 53 ; WX 556 ; N five ; B 68 -19 621 688 ;
48
+ C 54 ; WX 556 ; N six ; B 91 -19 615 703 ;
49
+ C 55 ; WX 556 ; N seven ; B 137 0 669 688 ;
50
+ C 56 ; WX 556 ; N eight ; B 74 -19 607 703 ;
51
+ C 57 ; WX 556 ; N nine ; B 82 -19 609 703 ;
52
+ C 58 ; WX 278 ; N colon ; B 87 0 301 516 ;
53
+ C 59 ; WX 278 ; N semicolon ; B 56 -147 301 516 ;
54
+ C 60 ; WX 584 ; N less ; B 94 11 641 495 ;
55
+ C 61 ; WX 584 ; N equal ; B 63 115 628 390 ;
56
+ C 62 ; WX 584 ; N greater ; B 50 11 597 495 ;
57
+ C 63 ; WX 556 ; N question ; B 161 0 610 727 ;
58
+ C 64 ; WX 1015 ; N at ; B 215 -19 965 737 ;
59
+ C 65 ; WX 667 ; N A ; B 14 0 654 718 ;
60
+ C 66 ; WX 667 ; N B ; B 74 0 712 718 ;
61
+ C 67 ; WX 722 ; N C ; B 108 -19 782 737 ;
62
+ C 68 ; WX 722 ; N D ; B 81 0 764 718 ;
63
+ C 69 ; WX 667 ; N E ; B 86 0 762 718 ;
64
+ C 70 ; WX 611 ; N F ; B 86 0 736 718 ;
65
+ C 71 ; WX 778 ; N G ; B 111 -19 799 737 ;
66
+ C 72 ; WX 722 ; N H ; B 77 0 799 718 ;
67
+ C 73 ; WX 278 ; N I ; B 91 0 341 718 ;
68
+ C 74 ; WX 500 ; N J ; B 47 -19 581 718 ;
69
+ C 75 ; WX 667 ; N K ; B 76 0 808 718 ;
70
+ C 76 ; WX 556 ; N L ; B 76 0 555 718 ;
71
+ C 77 ; WX 833 ; N M ; B 73 0 914 718 ;
72
+ C 78 ; WX 722 ; N N ; B 76 0 799 718 ;
73
+ C 79 ; WX 778 ; N O ; B 105 -19 826 737 ;
74
+ C 80 ; WX 667 ; N P ; B 86 0 737 718 ;
75
+ C 81 ; WX 778 ; N Q ; B 105 -56 826 737 ;
76
+ C 82 ; WX 722 ; N R ; B 88 0 773 718 ;
77
+ C 83 ; WX 667 ; N S ; B 90 -19 713 737 ;
78
+ C 84 ; WX 611 ; N T ; B 148 0 750 718 ;
79
+ C 85 ; WX 722 ; N U ; B 123 -19 797 718 ;
80
+ C 86 ; WX 667 ; N V ; B 173 0 800 718 ;
81
+ C 87 ; WX 944 ; N W ; B 169 0 1081 718 ;
82
+ C 88 ; WX 667 ; N X ; B 19 0 790 718 ;
83
+ C 89 ; WX 667 ; N Y ; B 167 0 806 718 ;
84
+ C 90 ; WX 611 ; N Z ; B 23 0 741 718 ;
85
+ C 91 ; WX 278 ; N bracketleft ; B 21 -196 403 722 ;
86
+ C 92 ; WX 278 ; N backslash ; B 140 -19 291 737 ;
87
+ C 93 ; WX 278 ; N bracketright ; B -14 -196 368 722 ;
88
+ C 94 ; WX 469 ; N asciicircum ; B 42 264 539 688 ;
89
+ C 95 ; WX 556 ; N underscore ; B -27 -125 540 -75 ;
90
+ C 96 ; WX 222 ; N quoteleft ; B 165 470 323 725 ;
91
+ C 97 ; WX 556 ; N a ; B 61 -15 559 538 ;
92
+ C 98 ; WX 556 ; N b ; B 58 -15 584 718 ;
93
+ C 99 ; WX 500 ; N c ; B 74 -15 553 538 ;
94
+ C 100 ; WX 556 ; N d ; B 84 -15 652 718 ;
95
+ C 101 ; WX 556 ; N e ; B 84 -15 578 538 ;
96
+ C 102 ; WX 278 ; N f ; B 86 0 416 728 ; L i fi ; L l fl ;
97
+ C 103 ; WX 556 ; N g ; B 42 -220 610 538 ;
98
+ C 104 ; WX 556 ; N h ; B 65 0 573 718 ;
99
+ C 105 ; WX 222 ; N i ; B 67 0 308 718 ;
100
+ C 106 ; WX 222 ; N j ; B -60 -210 308 718 ;
101
+ C 107 ; WX 500 ; N k ; B 67 0 600 718 ;
102
+ C 108 ; WX 222 ; N l ; B 67 0 308 718 ;
103
+ C 109 ; WX 833 ; N m ; B 65 0 852 538 ;
104
+ C 110 ; WX 556 ; N n ; B 65 0 573 538 ;
105
+ C 111 ; WX 556 ; N o ; B 83 -14 585 538 ;
106
+ C 112 ; WX 556 ; N p ; B 14 -207 584 538 ;
107
+ C 113 ; WX 556 ; N q ; B 84 -207 605 538 ;
108
+ C 114 ; WX 333 ; N r ; B 77 0 446 538 ;
109
+ C 115 ; WX 500 ; N s ; B 63 -15 529 538 ;
110
+ C 116 ; WX 278 ; N t ; B 102 -7 368 669 ;
111
+ C 117 ; WX 556 ; N u ; B 94 -15 600 523 ;
112
+ C 118 ; WX 500 ; N v ; B 119 0 603 523 ;
113
+ C 119 ; WX 722 ; N w ; B 125 0 820 523 ;
114
+ C 120 ; WX 500 ; N x ; B 11 0 594 523 ;
115
+ C 121 ; WX 500 ; N y ; B 15 -214 600 523 ;
116
+ C 122 ; WX 500 ; N z ; B 31 0 571 523 ;
117
+ C 123 ; WX 334 ; N braceleft ; B 92 -196 445 722 ;
118
+ C 124 ; WX 260 ; N bar ; B 46 -225 332 775 ;
119
+ C 125 ; WX 334 ; N braceright ; B 0 -196 354 722 ;
120
+ C 126 ; WX 584 ; N asciitilde ; B 111 180 580 326 ;
121
+ C 161 ; WX 333 ; N exclamdown ; B 77 -195 326 523 ;
122
+ C 162 ; WX 556 ; N cent ; B 95 -115 584 623 ;
123
+ C 163 ; WX 556 ; N sterling ; B 49 -16 634 718 ;
124
+ C 164 ; WX 167 ; N fraction ; B -170 -19 482 703 ;
125
+ C 165 ; WX 556 ; N yen ; B 81 0 699 688 ;
126
+ C 166 ; WX 556 ; N florin ; B -52 -207 654 737 ;
127
+ C 167 ; WX 556 ; N section ; B 76 -191 584 737 ;
128
+ C 168 ; WX 556 ; N currency ; B 60 99 646 603 ;
129
+ C 169 ; WX 191 ; N quotesingle ; B 157 463 285 718 ;
130
+ C 170 ; WX 333 ; N quotedblleft ; B 138 470 461 725 ;
131
+ C 171 ; WX 556 ; N guillemotleft ; B 146 108 554 446 ;
132
+ C 172 ; WX 333 ; N guilsinglleft ; B 137 108 340 446 ;
133
+ C 173 ; WX 333 ; N guilsinglright ; B 111 108 314 446 ;
134
+ C 174 ; WX 500 ; N fi ; B 86 0 587 728 ;
135
+ C 175 ; WX 500 ; N fl ; B 86 0 585 728 ;
136
+ C 177 ; WX 556 ; N endash ; B 51 240 623 313 ;
137
+ C 178 ; WX 556 ; N dagger ; B 135 -159 622 718 ;
138
+ C 179 ; WX 556 ; N daggerdbl ; B 52 -159 623 718 ;
139
+ C 180 ; WX 278 ; N periodcentered ; B 129 190 257 315 ;
140
+ C 182 ; WX 537 ; N paragraph ; B 126 -173 650 718 ;
141
+ C 183 ; WX 350 ; N bullet ; B 91 202 413 517 ;
142
+ C 184 ; WX 222 ; N quotesinglbase ; B 21 -149 180 106 ;
143
+ C 185 ; WX 333 ; N quotedblbase ; B -6 -149 318 106 ;
144
+ C 186 ; WX 333 ; N quotedblright ; B 124 463 448 718 ;
145
+ C 187 ; WX 556 ; N guillemotright ; B 120 108 528 446 ;
146
+ C 188 ; WX 1000 ; N ellipsis ; B 115 0 908 106 ;
147
+ C 189 ; WX 1000 ; N perthousand ; B 88 -19 1029 703 ;
148
+ C 191 ; WX 611 ; N questiondown ; B 85 -201 534 525 ;
149
+ C 193 ; WX 333 ; N grave ; B 170 593 337 734 ;
150
+ C 194 ; WX 333 ; N acute ; B 248 593 475 734 ;
151
+ C 195 ; WX 333 ; N circumflex ; B 147 593 438 734 ;
152
+ C 196 ; WX 333 ; N tilde ; B 125 606 490 722 ;
153
+ C 197 ; WX 333 ; N macron ; B 143 627 468 684 ;
154
+ C 198 ; WX 333 ; N breve ; B 167 595 476 731 ;
155
+ C 199 ; WX 333 ; N dotaccent ; B 249 604 362 706 ;
156
+ C 200 ; WX 333 ; N dieresis ; B 168 604 443 706 ;
157
+ C 202 ; WX 333 ; N ring ; B 214 572 402 756 ;
158
+ C 203 ; WX 333 ; N cedilla ; B 2 -225 232 0 ;
159
+ C 205 ; WX 333 ; N hungarumlaut ; B 157 593 565 734 ;
160
+ C 206 ; WX 333 ; N ogonek ; B 43 -225 249 0 ;
161
+ C 207 ; WX 333 ; N caron ; B 177 593 468 734 ;
162
+ C 208 ; WX 1000 ; N emdash ; B 51 240 1067 313 ;
163
+ C 225 ; WX 1000 ; N AE ; B 8 0 1097 718 ;
164
+ C 227 ; WX 370 ; N ordfeminine ; B 127 405 449 737 ;
165
+ C 232 ; WX 556 ; N Lslash ; B 41 0 555 718 ;
166
+ C 233 ; WX 778 ; N Oslash ; B 43 -19 890 737 ;
167
+ C 234 ; WX 1000 ; N OE ; B 98 -19 1116 737 ;
168
+ C 235 ; WX 365 ; N ordmasculine ; B 141 405 468 737 ;
169
+ C 241 ; WX 889 ; N ae ; B 61 -15 909 538 ;
170
+ C 245 ; WX 278 ; N dotlessi ; B 95 0 294 523 ;
171
+ C 248 ; WX 222 ; N lslash ; B 41 0 347 718 ;
172
+ C 249 ; WX 611 ; N oslash ; B 29 -22 647 545 ;
173
+ C 250 ; WX 944 ; N oe ; B 83 -15 964 538 ;
174
+ C 251 ; WX 611 ; N germandbls ; B 67 -15 658 728 ;
175
+ C -1 ; WX 278 ; N Idieresis ; B 91 0 458 901 ;
176
+ C -1 ; WX 556 ; N eacute ; B 84 -15 587 734 ;
177
+ C -1 ; WX 556 ; N abreve ; B 61 -15 578 731 ;
178
+ C -1 ; WX 556 ; N uhungarumlaut ; B 94 -15 677 734 ;
179
+ C -1 ; WX 556 ; N ecaron ; B 84 -15 580 734 ;
180
+ C -1 ; WX 667 ; N Ydieresis ; B 167 0 806 901 ;
181
+ C -1 ; WX 584 ; N divide ; B 85 -19 606 524 ;
182
+ C -1 ; WX 667 ; N Yacute ; B 167 0 806 929 ;
183
+ C -1 ; WX 667 ; N Acircumflex ; B 14 0 654 929 ;
184
+ C -1 ; WX 556 ; N aacute ; B 61 -15 587 734 ;
185
+ C -1 ; WX 722 ; N Ucircumflex ; B 123 -19 797 929 ;
186
+ C -1 ; WX 500 ; N yacute ; B 15 -214 600 734 ;
187
+ C -1 ; WX 500 ; N scommaaccent ; B 63 -225 529 538 ;
188
+ C -1 ; WX 556 ; N ecircumflex ; B 84 -15 578 734 ;
189
+ C -1 ; WX 722 ; N Uring ; B 123 -19 797 931 ;
190
+ C -1 ; WX 722 ; N Udieresis ; B 123 -19 797 901 ;
191
+ C -1 ; WX 556 ; N aogonek ; B 61 -220 559 538 ;
192
+ C -1 ; WX 722 ; N Uacute ; B 123 -19 797 929 ;
193
+ C -1 ; WX 556 ; N uogonek ; B 94 -225 600 523 ;
194
+ C -1 ; WX 667 ; N Edieresis ; B 86 0 762 901 ;
195
+ C -1 ; WX 722 ; N Dcroat ; B 69 0 764 718 ;
196
+ C -1 ; WX 250 ; N commaaccent ; B 39 -225 172 -40 ;
197
+ C -1 ; WX 737 ; N copyright ; B 54 -19 837 737 ;
198
+ C -1 ; WX 667 ; N Emacron ; B 86 0 762 879 ;
199
+ C -1 ; WX 500 ; N ccaron ; B 74 -15 553 734 ;
200
+ C -1 ; WX 556 ; N aring ; B 61 -15 559 756 ;
201
+ C -1 ; WX 722 ; N Ncommaaccent ; B 76 -225 799 718 ;
202
+ C -1 ; WX 222 ; N lacute ; B 67 0 461 929 ;
203
+ C -1 ; WX 556 ; N agrave ; B 61 -15 559 734 ;
204
+ C -1 ; WX 611 ; N Tcommaaccent ; B 148 -225 750 718 ;
205
+ C -1 ; WX 722 ; N Cacute ; B 108 -19 782 929 ;
206
+ C -1 ; WX 556 ; N atilde ; B 61 -15 592 722 ;
207
+ C -1 ; WX 667 ; N Edotaccent ; B 86 0 762 901 ;
208
+ C -1 ; WX 500 ; N scaron ; B 63 -15 552 734 ;
209
+ C -1 ; WX 500 ; N scedilla ; B 63 -225 529 538 ;
210
+ C -1 ; WX 278 ; N iacute ; B 95 0 448 734 ;
211
+ C -1 ; WX 471 ; N lozenge ; B 88 0 540 728 ;
212
+ C -1 ; WX 722 ; N Rcaron ; B 88 0 773 929 ;
213
+ C -1 ; WX 778 ; N Gcommaaccent ; B 111 -225 799 737 ;
214
+ C -1 ; WX 556 ; N ucircumflex ; B 94 -15 600 734 ;
215
+ C -1 ; WX 556 ; N acircumflex ; B 61 -15 559 734 ;
216
+ C -1 ; WX 667 ; N Amacron ; B 14 0 677 879 ;
217
+ C -1 ; WX 333 ; N rcaron ; B 77 0 508 734 ;
218
+ C -1 ; WX 500 ; N ccedilla ; B 74 -225 553 538 ;
219
+ C -1 ; WX 611 ; N Zdotaccent ; B 23 0 741 901 ;
220
+ C -1 ; WX 667 ; N Thorn ; B 86 0 712 718 ;
221
+ C -1 ; WX 778 ; N Omacron ; B 105 -19 826 879 ;
222
+ C -1 ; WX 722 ; N Racute ; B 88 0 773 929 ;
223
+ C -1 ; WX 667 ; N Sacute ; B 90 -19 713 929 ;
224
+ C -1 ; WX 643 ; N dcaron ; B 84 -15 808 718 ;
225
+ C -1 ; WX 722 ; N Umacron ; B 123 -19 797 879 ;
226
+ C -1 ; WX 556 ; N uring ; B 94 -15 600 756 ;
227
+ C -1 ; WX 333 ; N threesuperior ; B 90 270 436 703 ;
228
+ C -1 ; WX 778 ; N Ograve ; B 105 -19 826 929 ;
229
+ C -1 ; WX 667 ; N Agrave ; B 14 0 654 929 ;
230
+ C -1 ; WX 667 ; N Abreve ; B 14 0 685 926 ;
231
+ C -1 ; WX 584 ; N multiply ; B 50 0 642 506 ;
232
+ C -1 ; WX 556 ; N uacute ; B 94 -15 600 734 ;
233
+ C -1 ; WX 611 ; N Tcaron ; B 148 0 750 929 ;
234
+ C -1 ; WX 476 ; N partialdiff ; B 41 -38 550 714 ;
235
+ C -1 ; WX 500 ; N ydieresis ; B 15 -214 600 706 ;
236
+ C -1 ; WX 722 ; N Nacute ; B 76 0 799 929 ;
237
+ C -1 ; WX 278 ; N icircumflex ; B 95 0 411 734 ;
238
+ C -1 ; WX 667 ; N Ecircumflex ; B 86 0 762 929 ;
239
+ C -1 ; WX 556 ; N adieresis ; B 61 -15 559 706 ;
240
+ C -1 ; WX 556 ; N edieresis ; B 84 -15 578 706 ;
241
+ C -1 ; WX 500 ; N cacute ; B 74 -15 559 734 ;
242
+ C -1 ; WX 556 ; N nacute ; B 65 0 587 734 ;
243
+ C -1 ; WX 556 ; N umacron ; B 94 -15 600 684 ;
244
+ C -1 ; WX 722 ; N Ncaron ; B 76 0 799 929 ;
245
+ C -1 ; WX 278 ; N Iacute ; B 91 0 489 929 ;
246
+ C -1 ; WX 584 ; N plusminus ; B 39 0 618 506 ;
247
+ C -1 ; WX 260 ; N brokenbar ; B 62 -150 316 700 ;
248
+ C -1 ; WX 737 ; N registered ; B 54 -19 837 737 ;
249
+ C -1 ; WX 778 ; N Gbreve ; B 111 -19 799 926 ;
250
+ C -1 ; WX 278 ; N Idotaccent ; B 91 0 377 901 ;
251
+ C -1 ; WX 600 ; N summation ; B 15 -10 671 706 ;
252
+ C -1 ; WX 667 ; N Egrave ; B 86 0 762 929 ;
253
+ C -1 ; WX 333 ; N racute ; B 77 0 475 734 ;
254
+ C -1 ; WX 556 ; N omacron ; B 83 -14 585 684 ;
255
+ C -1 ; WX 611 ; N Zacute ; B 23 0 741 929 ;
256
+ C -1 ; WX 611 ; N Zcaron ; B 23 0 741 929 ;
257
+ C -1 ; WX 549 ; N greaterequal ; B 26 0 620 674 ;
258
+ C -1 ; WX 722 ; N Eth ; B 69 0 764 718 ;
259
+ C -1 ; WX 722 ; N Ccedilla ; B 108 -225 782 737 ;
260
+ C -1 ; WX 222 ; N lcommaaccent ; B 25 -225 308 718 ;
261
+ C -1 ; WX 317 ; N tcaron ; B 102 -7 501 808 ;
262
+ C -1 ; WX 556 ; N eogonek ; B 84 -225 578 538 ;
263
+ C -1 ; WX 722 ; N Uogonek ; B 123 -225 797 718 ;
264
+ C -1 ; WX 667 ; N Aacute ; B 14 0 683 929 ;
265
+ C -1 ; WX 667 ; N Adieresis ; B 14 0 654 901 ;
266
+ C -1 ; WX 556 ; N egrave ; B 84 -15 578 734 ;
267
+ C -1 ; WX 500 ; N zacute ; B 31 0 571 734 ;
268
+ C -1 ; WX 222 ; N iogonek ; B -61 -225 308 718 ;
269
+ C -1 ; WX 778 ; N Oacute ; B 105 -19 826 929 ;
270
+ C -1 ; WX 556 ; N oacute ; B 83 -14 587 734 ;
271
+ C -1 ; WX 556 ; N amacron ; B 61 -15 580 684 ;
272
+ C -1 ; WX 500 ; N sacute ; B 63 -15 559 734 ;
273
+ C -1 ; WX 278 ; N idieresis ; B 95 0 416 706 ;
274
+ C -1 ; WX 778 ; N Ocircumflex ; B 105 -19 826 929 ;
275
+ C -1 ; WX 722 ; N Ugrave ; B 123 -19 797 929 ;
276
+ C -1 ; WX 612 ; N Delta ; B 6 0 608 688 ;
277
+ C -1 ; WX 556 ; N thorn ; B 14 -207 584 718 ;
278
+ C -1 ; WX 333 ; N twosuperior ; B 64 281 449 703 ;
279
+ C -1 ; WX 778 ; N Odieresis ; B 105 -19 826 901 ;
280
+ C -1 ; WX 556 ; N mu ; B 24 -207 600 523 ;
281
+ C -1 ; WX 278 ; N igrave ; B 95 0 310 734 ;
282
+ C -1 ; WX 556 ; N ohungarumlaut ; B 83 -14 677 734 ;
283
+ C -1 ; WX 667 ; N Eogonek ; B 86 -220 762 718 ;
284
+ C -1 ; WX 556 ; N dcroat ; B 84 -15 689 718 ;
285
+ C -1 ; WX 834 ; N threequarters ; B 130 -19 861 703 ;
286
+ C -1 ; WX 667 ; N Scedilla ; B 90 -225 713 737 ;
287
+ C -1 ; WX 299 ; N lcaron ; B 67 0 464 718 ;
288
+ C -1 ; WX 667 ; N Kcommaaccent ; B 76 -225 808 718 ;
289
+ C -1 ; WX 556 ; N Lacute ; B 76 0 555 929 ;
290
+ C -1 ; WX 1000 ; N trademark ; B 186 306 1056 718 ;
291
+ C -1 ; WX 556 ; N edotaccent ; B 84 -15 578 706 ;
292
+ C -1 ; WX 278 ; N Igrave ; B 91 0 351 929 ;
293
+ C -1 ; WX 278 ; N Imacron ; B 91 0 483 879 ;
294
+ C -1 ; WX 556 ; N Lcaron ; B 76 0 570 718 ;
295
+ C -1 ; WX 834 ; N onehalf ; B 114 -19 839 703 ;
296
+ C -1 ; WX 549 ; N lessequal ; B 26 0 666 674 ;
297
+ C -1 ; WX 556 ; N ocircumflex ; B 83 -14 585 734 ;
298
+ C -1 ; WX 556 ; N ntilde ; B 65 0 592 722 ;
299
+ C -1 ; WX 722 ; N Uhungarumlaut ; B 123 -19 801 929 ;
300
+ C -1 ; WX 667 ; N Eacute ; B 86 0 762 929 ;
301
+ C -1 ; WX 556 ; N emacron ; B 84 -15 580 684 ;
302
+ C -1 ; WX 556 ; N gbreve ; B 42 -220 610 731 ;
303
+ C -1 ; WX 834 ; N onequarter ; B 150 -19 802 703 ;
304
+ C -1 ; WX 667 ; N Scaron ; B 90 -19 713 929 ;
305
+ C -1 ; WX 667 ; N Scommaaccent ; B 90 -225 713 737 ;
306
+ C -1 ; WX 778 ; N Ohungarumlaut ; B 105 -19 829 929 ;
307
+ C -1 ; WX 400 ; N degree ; B 169 411 468 703 ;
308
+ C -1 ; WX 556 ; N ograve ; B 83 -14 585 734 ;
309
+ C -1 ; WX 722 ; N Ccaron ; B 108 -19 782 929 ;
310
+ C -1 ; WX 556 ; N ugrave ; B 94 -15 600 734 ;
311
+ C -1 ; WX 453 ; N radical ; B 79 -80 617 762 ;
312
+ C -1 ; WX 722 ; N Dcaron ; B 81 0 764 929 ;
313
+ C -1 ; WX 333 ; N rcommaaccent ; B 30 -225 446 538 ;
314
+ C -1 ; WX 722 ; N Ntilde ; B 76 0 799 917 ;
315
+ C -1 ; WX 556 ; N otilde ; B 83 -14 602 722 ;
316
+ C -1 ; WX 722 ; N Rcommaaccent ; B 88 -225 773 718 ;
317
+ C -1 ; WX 556 ; N Lcommaaccent ; B 76 -225 555 718 ;
318
+ C -1 ; WX 667 ; N Atilde ; B 14 0 699 917 ;
319
+ C -1 ; WX 667 ; N Aogonek ; B 14 -225 654 718 ;
320
+ C -1 ; WX 667 ; N Aring ; B 14 0 654 931 ;
321
+ C -1 ; WX 778 ; N Otilde ; B 105 -19 826 917 ;
322
+ C -1 ; WX 500 ; N zdotaccent ; B 31 0 571 706 ;
323
+ C -1 ; WX 667 ; N Ecaron ; B 86 0 762 929 ;
324
+ C -1 ; WX 278 ; N Iogonek ; B -33 -225 341 718 ;
325
+ C -1 ; WX 500 ; N kcommaaccent ; B 67 -225 600 718 ;
326
+ C -1 ; WX 584 ; N minus ; B 85 216 606 289 ;
327
+ C -1 ; WX 278 ; N Icircumflex ; B 91 0 452 929 ;
328
+ C -1 ; WX 556 ; N ncaron ; B 65 0 580 734 ;
329
+ C -1 ; WX 278 ; N tcommaaccent ; B 63 -225 368 669 ;
330
+ C -1 ; WX 584 ; N logicalnot ; B 106 108 628 390 ;
331
+ C -1 ; WX 556 ; N odieresis ; B 83 -14 585 706 ;
332
+ C -1 ; WX 556 ; N udieresis ; B 94 -15 600 706 ;
333
+ C -1 ; WX 549 ; N notequal ; B 34 -35 623 551 ;
334
+ C -1 ; WX 556 ; N gcommaaccent ; B 42 -220 610 822 ;
335
+ C -1 ; WX 556 ; N eth ; B 81 -15 617 737 ;
336
+ C -1 ; WX 500 ; N zcaron ; B 31 0 571 734 ;
337
+ C -1 ; WX 556 ; N ncommaaccent ; B 65 -225 573 538 ;
338
+ C -1 ; WX 333 ; N onesuperior ; B 166 281 371 703 ;
339
+ C -1 ; WX 278 ; N imacron ; B 95 0 417 684 ;
340
+ C -1 ; WX 556 ; N Euro ; B 0 0 0 0 ;
341
+ EndCharMetrics
342
+ StartKernData
343
+ StartKernPairs 2705
344
+ KPX A C -30
345
+ KPX A Cacute -30
346
+ KPX A Ccaron -30
347
+ KPX A Ccedilla -30
348
+ KPX A G -30
349
+ KPX A Gbreve -30
350
+ KPX A Gcommaaccent -30
351
+ KPX A O -30
352
+ KPX A Oacute -30
353
+ KPX A Ocircumflex -30
354
+ KPX A Odieresis -30
355
+ KPX A Ograve -30
356
+ KPX A Ohungarumlaut -30
357
+ KPX A Omacron -30
358
+ KPX A Oslash -30
359
+ KPX A Otilde -30
360
+ KPX A Q -30
361
+ KPX A T -120
362
+ KPX A Tcaron -120
363
+ KPX A Tcommaaccent -120
364
+ KPX A U -50
365
+ KPX A Uacute -50
366
+ KPX A Ucircumflex -50
367
+ KPX A Udieresis -50
368
+ KPX A Ugrave -50
369
+ KPX A Uhungarumlaut -50
370
+ KPX A Umacron -50
371
+ KPX A Uogonek -50
372
+ KPX A Uring -50
373
+ KPX A V -70
374
+ KPX A W -50
375
+ KPX A Y -100
376
+ KPX A Yacute -100
377
+ KPX A Ydieresis -100
378
+ KPX A u -30
379
+ KPX A uacute -30
380
+ KPX A ucircumflex -30
381
+ KPX A udieresis -30
382
+ KPX A ugrave -30
383
+ KPX A uhungarumlaut -30
384
+ KPX A umacron -30
385
+ KPX A uogonek -30
386
+ KPX A uring -30
387
+ KPX A v -40
388
+ KPX A w -40
389
+ KPX A y -40
390
+ KPX A yacute -40
391
+ KPX A ydieresis -40
392
+ KPX Aacute C -30
393
+ KPX Aacute Cacute -30
394
+ KPX Aacute Ccaron -30
395
+ KPX Aacute Ccedilla -30
396
+ KPX Aacute G -30
397
+ KPX Aacute Gbreve -30
398
+ KPX Aacute Gcommaaccent -30
399
+ KPX Aacute O -30
400
+ KPX Aacute Oacute -30
401
+ KPX Aacute Ocircumflex -30
402
+ KPX Aacute Odieresis -30
403
+ KPX Aacute Ograve -30
404
+ KPX Aacute Ohungarumlaut -30
405
+ KPX Aacute Omacron -30
406
+ KPX Aacute Oslash -30
407
+ KPX Aacute Otilde -30
408
+ KPX Aacute Q -30
409
+ KPX Aacute T -120
410
+ KPX Aacute Tcaron -120
411
+ KPX Aacute Tcommaaccent -120
412
+ KPX Aacute U -50
413
+ KPX Aacute Uacute -50
414
+ KPX Aacute Ucircumflex -50
415
+ KPX Aacute Udieresis -50
416
+ KPX Aacute Ugrave -50
417
+ KPX Aacute Uhungarumlaut -50
418
+ KPX Aacute Umacron -50
419
+ KPX Aacute Uogonek -50
420
+ KPX Aacute Uring -50
421
+ KPX Aacute V -70
422
+ KPX Aacute W -50
423
+ KPX Aacute Y -100
424
+ KPX Aacute Yacute -100
425
+ KPX Aacute Ydieresis -100
426
+ KPX Aacute u -30
427
+ KPX Aacute uacute -30
428
+ KPX Aacute ucircumflex -30
429
+ KPX Aacute udieresis -30
430
+ KPX Aacute ugrave -30
431
+ KPX Aacute uhungarumlaut -30
432
+ KPX Aacute umacron -30
433
+ KPX Aacute uogonek -30
434
+ KPX Aacute uring -30
435
+ KPX Aacute v -40
436
+ KPX Aacute w -40
437
+ KPX Aacute y -40
438
+ KPX Aacute yacute -40
439
+ KPX Aacute ydieresis -40
440
+ KPX Abreve C -30
441
+ KPX Abreve Cacute -30
442
+ KPX Abreve Ccaron -30
443
+ KPX Abreve Ccedilla -30
444
+ KPX Abreve G -30
445
+ KPX Abreve Gbreve -30
446
+ KPX Abreve Gcommaaccent -30
447
+ KPX Abreve O -30
448
+ KPX Abreve Oacute -30
449
+ KPX Abreve Ocircumflex -30
450
+ KPX Abreve Odieresis -30
451
+ KPX Abreve Ograve -30
452
+ KPX Abreve Ohungarumlaut -30
453
+ KPX Abreve Omacron -30
454
+ KPX Abreve Oslash -30
455
+ KPX Abreve Otilde -30
456
+ KPX Abreve Q -30
457
+ KPX Abreve T -120
458
+ KPX Abreve Tcaron -120
459
+ KPX Abreve Tcommaaccent -120
460
+ KPX Abreve U -50
461
+ KPX Abreve Uacute -50
462
+ KPX Abreve Ucircumflex -50
463
+ KPX Abreve Udieresis -50
464
+ KPX Abreve Ugrave -50
465
+ KPX Abreve Uhungarumlaut -50
466
+ KPX Abreve Umacron -50
467
+ KPX Abreve Uogonek -50
468
+ KPX Abreve Uring -50
469
+ KPX Abreve V -70
470
+ KPX Abreve W -50
471
+ KPX Abreve Y -100
472
+ KPX Abreve Yacute -100
473
+ KPX Abreve Ydieresis -100
474
+ KPX Abreve u -30
475
+ KPX Abreve uacute -30
476
+ KPX Abreve ucircumflex -30
477
+ KPX Abreve udieresis -30
478
+ KPX Abreve ugrave -30
479
+ KPX Abreve uhungarumlaut -30
480
+ KPX Abreve umacron -30
481
+ KPX Abreve uogonek -30
482
+ KPX Abreve uring -30
483
+ KPX Abreve v -40
484
+ KPX Abreve w -40
485
+ KPX Abreve y -40
486
+ KPX Abreve yacute -40
487
+ KPX Abreve ydieresis -40
488
+ KPX Acircumflex C -30
489
+ KPX Acircumflex Cacute -30
490
+ KPX Acircumflex Ccaron -30
491
+ KPX Acircumflex Ccedilla -30
492
+ KPX Acircumflex G -30
493
+ KPX Acircumflex Gbreve -30
494
+ KPX Acircumflex Gcommaaccent -30
495
+ KPX Acircumflex O -30
496
+ KPX Acircumflex Oacute -30
497
+ KPX Acircumflex Ocircumflex -30
498
+ KPX Acircumflex Odieresis -30
499
+ KPX Acircumflex Ograve -30
500
+ KPX Acircumflex Ohungarumlaut -30
501
+ KPX Acircumflex Omacron -30
502
+ KPX Acircumflex Oslash -30
503
+ KPX Acircumflex Otilde -30
504
+ KPX Acircumflex Q -30
505
+ KPX Acircumflex T -120
506
+ KPX Acircumflex Tcaron -120
507
+ KPX Acircumflex Tcommaaccent -120
508
+ KPX Acircumflex U -50
509
+ KPX Acircumflex Uacute -50
510
+ KPX Acircumflex Ucircumflex -50
511
+ KPX Acircumflex Udieresis -50
512
+ KPX Acircumflex Ugrave -50
513
+ KPX Acircumflex Uhungarumlaut -50
514
+ KPX Acircumflex Umacron -50
515
+ KPX Acircumflex Uogonek -50
516
+ KPX Acircumflex Uring -50
517
+ KPX Acircumflex V -70
518
+ KPX Acircumflex W -50
519
+ KPX Acircumflex Y -100
520
+ KPX Acircumflex Yacute -100
521
+ KPX Acircumflex Ydieresis -100
522
+ KPX Acircumflex u -30
523
+ KPX Acircumflex uacute -30
524
+ KPX Acircumflex ucircumflex -30
525
+ KPX Acircumflex udieresis -30
526
+ KPX Acircumflex ugrave -30
527
+ KPX Acircumflex uhungarumlaut -30
528
+ KPX Acircumflex umacron -30
529
+ KPX Acircumflex uogonek -30
530
+ KPX Acircumflex uring -30
531
+ KPX Acircumflex v -40
532
+ KPX Acircumflex w -40
533
+ KPX Acircumflex y -40
534
+ KPX Acircumflex yacute -40
535
+ KPX Acircumflex ydieresis -40
536
+ KPX Adieresis C -30
537
+ KPX Adieresis Cacute -30
538
+ KPX Adieresis Ccaron -30
539
+ KPX Adieresis Ccedilla -30
540
+ KPX Adieresis G -30
541
+ KPX Adieresis Gbreve -30
542
+ KPX Adieresis Gcommaaccent -30
543
+ KPX Adieresis O -30
544
+ KPX Adieresis Oacute -30
545
+ KPX Adieresis Ocircumflex -30
546
+ KPX Adieresis Odieresis -30
547
+ KPX Adieresis Ograve -30
548
+ KPX Adieresis Ohungarumlaut -30
549
+ KPX Adieresis Omacron -30
550
+ KPX Adieresis Oslash -30
551
+ KPX Adieresis Otilde -30
552
+ KPX Adieresis Q -30
553
+ KPX Adieresis T -120
554
+ KPX Adieresis Tcaron -120
555
+ KPX Adieresis Tcommaaccent -120
556
+ KPX Adieresis U -50
557
+ KPX Adieresis Uacute -50
558
+ KPX Adieresis Ucircumflex -50
559
+ KPX Adieresis Udieresis -50
560
+ KPX Adieresis Ugrave -50
561
+ KPX Adieresis Uhungarumlaut -50
562
+ KPX Adieresis Umacron -50
563
+ KPX Adieresis Uogonek -50
564
+ KPX Adieresis Uring -50
565
+ KPX Adieresis V -70
566
+ KPX Adieresis W -50
567
+ KPX Adieresis Y -100
568
+ KPX Adieresis Yacute -100
569
+ KPX Adieresis Ydieresis -100
570
+ KPX Adieresis u -30
571
+ KPX Adieresis uacute -30
572
+ KPX Adieresis ucircumflex -30
573
+ KPX Adieresis udieresis -30
574
+ KPX Adieresis ugrave -30
575
+ KPX Adieresis uhungarumlaut -30
576
+ KPX Adieresis umacron -30
577
+ KPX Adieresis uogonek -30
578
+ KPX Adieresis uring -30
579
+ KPX Adieresis v -40
580
+ KPX Adieresis w -40
581
+ KPX Adieresis y -40
582
+ KPX Adieresis yacute -40
583
+ KPX Adieresis ydieresis -40
584
+ KPX Agrave C -30
585
+ KPX Agrave Cacute -30
586
+ KPX Agrave Ccaron -30
587
+ KPX Agrave Ccedilla -30
588
+ KPX Agrave G -30
589
+ KPX Agrave Gbreve -30
590
+ KPX Agrave Gcommaaccent -30
591
+ KPX Agrave O -30
592
+ KPX Agrave Oacute -30
593
+ KPX Agrave Ocircumflex -30
594
+ KPX Agrave Odieresis -30
595
+ KPX Agrave Ograve -30
596
+ KPX Agrave Ohungarumlaut -30
597
+ KPX Agrave Omacron -30
598
+ KPX Agrave Oslash -30
599
+ KPX Agrave Otilde -30
600
+ KPX Agrave Q -30
601
+ KPX Agrave T -120
602
+ KPX Agrave Tcaron -120
603
+ KPX Agrave Tcommaaccent -120
604
+ KPX Agrave U -50
605
+ KPX Agrave Uacute -50
606
+ KPX Agrave Ucircumflex -50
607
+ KPX Agrave Udieresis -50
608
+ KPX Agrave Ugrave -50
609
+ KPX Agrave Uhungarumlaut -50
610
+ KPX Agrave Umacron -50
611
+ KPX Agrave Uogonek -50
612
+ KPX Agrave Uring -50
613
+ KPX Agrave V -70
614
+ KPX Agrave W -50
615
+ KPX Agrave Y -100
616
+ KPX Agrave Yacute -100
617
+ KPX Agrave Ydieresis -100
618
+ KPX Agrave u -30
619
+ KPX Agrave uacute -30
620
+ KPX Agrave ucircumflex -30
621
+ KPX Agrave udieresis -30
622
+ KPX Agrave ugrave -30
623
+ KPX Agrave uhungarumlaut -30
624
+ KPX Agrave umacron -30
625
+ KPX Agrave uogonek -30
626
+ KPX Agrave uring -30
627
+ KPX Agrave v -40
628
+ KPX Agrave w -40
629
+ KPX Agrave y -40
630
+ KPX Agrave yacute -40
631
+ KPX Agrave ydieresis -40
632
+ KPX Amacron C -30
633
+ KPX Amacron Cacute -30
634
+ KPX Amacron Ccaron -30
635
+ KPX Amacron Ccedilla -30
636
+ KPX Amacron G -30
637
+ KPX Amacron Gbreve -30
638
+ KPX Amacron Gcommaaccent -30
639
+ KPX Amacron O -30
640
+ KPX Amacron Oacute -30
641
+ KPX Amacron Ocircumflex -30
642
+ KPX Amacron Odieresis -30
643
+ KPX Amacron Ograve -30
644
+ KPX Amacron Ohungarumlaut -30
645
+ KPX Amacron Omacron -30
646
+ KPX Amacron Oslash -30
647
+ KPX Amacron Otilde -30
648
+ KPX Amacron Q -30
649
+ KPX Amacron T -120
650
+ KPX Amacron Tcaron -120
651
+ KPX Amacron Tcommaaccent -120
652
+ KPX Amacron U -50
653
+ KPX Amacron Uacute -50
654
+ KPX Amacron Ucircumflex -50
655
+ KPX Amacron Udieresis -50
656
+ KPX Amacron Ugrave -50
657
+ KPX Amacron Uhungarumlaut -50
658
+ KPX Amacron Umacron -50
659
+ KPX Amacron Uogonek -50
660
+ KPX Amacron Uring -50
661
+ KPX Amacron V -70
662
+ KPX Amacron W -50
663
+ KPX Amacron Y -100
664
+ KPX Amacron Yacute -100
665
+ KPX Amacron Ydieresis -100
666
+ KPX Amacron u -30
667
+ KPX Amacron uacute -30
668
+ KPX Amacron ucircumflex -30
669
+ KPX Amacron udieresis -30
670
+ KPX Amacron ugrave -30
671
+ KPX Amacron uhungarumlaut -30
672
+ KPX Amacron umacron -30
673
+ KPX Amacron uogonek -30
674
+ KPX Amacron uring -30
675
+ KPX Amacron v -40
676
+ KPX Amacron w -40
677
+ KPX Amacron y -40
678
+ KPX Amacron yacute -40
679
+ KPX Amacron ydieresis -40
680
+ KPX Aogonek C -30
681
+ KPX Aogonek Cacute -30
682
+ KPX Aogonek Ccaron -30
683
+ KPX Aogonek Ccedilla -30
684
+ KPX Aogonek G -30
685
+ KPX Aogonek Gbreve -30
686
+ KPX Aogonek Gcommaaccent -30
687
+ KPX Aogonek O -30
688
+ KPX Aogonek Oacute -30
689
+ KPX Aogonek Ocircumflex -30
690
+ KPX Aogonek Odieresis -30
691
+ KPX Aogonek Ograve -30
692
+ KPX Aogonek Ohungarumlaut -30
693
+ KPX Aogonek Omacron -30
694
+ KPX Aogonek Oslash -30
695
+ KPX Aogonek Otilde -30
696
+ KPX Aogonek Q -30
697
+ KPX Aogonek T -120
698
+ KPX Aogonek Tcaron -120
699
+ KPX Aogonek Tcommaaccent -120
700
+ KPX Aogonek U -50
701
+ KPX Aogonek Uacute -50
702
+ KPX Aogonek Ucircumflex -50
703
+ KPX Aogonek Udieresis -50
704
+ KPX Aogonek Ugrave -50
705
+ KPX Aogonek Uhungarumlaut -50
706
+ KPX Aogonek Umacron -50
707
+ KPX Aogonek Uogonek -50
708
+ KPX Aogonek Uring -50
709
+ KPX Aogonek V -70
710
+ KPX Aogonek W -50
711
+ KPX Aogonek Y -100
712
+ KPX Aogonek Yacute -100
713
+ KPX Aogonek Ydieresis -100
714
+ KPX Aogonek u -30
715
+ KPX Aogonek uacute -30
716
+ KPX Aogonek ucircumflex -30
717
+ KPX Aogonek udieresis -30
718
+ KPX Aogonek ugrave -30
719
+ KPX Aogonek uhungarumlaut -30
720
+ KPX Aogonek umacron -30
721
+ KPX Aogonek uogonek -30
722
+ KPX Aogonek uring -30
723
+ KPX Aogonek v -40
724
+ KPX Aogonek w -40
725
+ KPX Aogonek y -40
726
+ KPX Aogonek yacute -40
727
+ KPX Aogonek ydieresis -40
728
+ KPX Aring C -30
729
+ KPX Aring Cacute -30
730
+ KPX Aring Ccaron -30
731
+ KPX Aring Ccedilla -30
732
+ KPX Aring G -30
733
+ KPX Aring Gbreve -30
734
+ KPX Aring Gcommaaccent -30
735
+ KPX Aring O -30
736
+ KPX Aring Oacute -30
737
+ KPX Aring Ocircumflex -30
738
+ KPX Aring Odieresis -30
739
+ KPX Aring Ograve -30
740
+ KPX Aring Ohungarumlaut -30
741
+ KPX Aring Omacron -30
742
+ KPX Aring Oslash -30
743
+ KPX Aring Otilde -30
744
+ KPX Aring Q -30
745
+ KPX Aring T -120
746
+ KPX Aring Tcaron -120
747
+ KPX Aring Tcommaaccent -120
748
+ KPX Aring U -50
749
+ KPX Aring Uacute -50
750
+ KPX Aring Ucircumflex -50
751
+ KPX Aring Udieresis -50
752
+ KPX Aring Ugrave -50
753
+ KPX Aring Uhungarumlaut -50
754
+ KPX Aring Umacron -50
755
+ KPX Aring Uogonek -50
756
+ KPX Aring Uring -50
757
+ KPX Aring V -70
758
+ KPX Aring W -50
759
+ KPX Aring Y -100
760
+ KPX Aring Yacute -100
761
+ KPX Aring Ydieresis -100
762
+ KPX Aring u -30
763
+ KPX Aring uacute -30
764
+ KPX Aring ucircumflex -30
765
+ KPX Aring udieresis -30
766
+ KPX Aring ugrave -30
767
+ KPX Aring uhungarumlaut -30
768
+ KPX Aring umacron -30
769
+ KPX Aring uogonek -30
770
+ KPX Aring uring -30
771
+ KPX Aring v -40
772
+ KPX Aring w -40
773
+ KPX Aring y -40
774
+ KPX Aring yacute -40
775
+ KPX Aring ydieresis -40
776
+ KPX Atilde C -30
777
+ KPX Atilde Cacute -30
778
+ KPX Atilde Ccaron -30
779
+ KPX Atilde Ccedilla -30
780
+ KPX Atilde G -30
781
+ KPX Atilde Gbreve -30
782
+ KPX Atilde Gcommaaccent -30
783
+ KPX Atilde O -30
784
+ KPX Atilde Oacute -30
785
+ KPX Atilde Ocircumflex -30
786
+ KPX Atilde Odieresis -30
787
+ KPX Atilde Ograve -30
788
+ KPX Atilde Ohungarumlaut -30
789
+ KPX Atilde Omacron -30
790
+ KPX Atilde Oslash -30
791
+ KPX Atilde Otilde -30
792
+ KPX Atilde Q -30
793
+ KPX Atilde T -120
794
+ KPX Atilde Tcaron -120
795
+ KPX Atilde Tcommaaccent -120
796
+ KPX Atilde U -50
797
+ KPX Atilde Uacute -50
798
+ KPX Atilde Ucircumflex -50
799
+ KPX Atilde Udieresis -50
800
+ KPX Atilde Ugrave -50
801
+ KPX Atilde Uhungarumlaut -50
802
+ KPX Atilde Umacron -50
803
+ KPX Atilde Uogonek -50
804
+ KPX Atilde Uring -50
805
+ KPX Atilde V -70
806
+ KPX Atilde W -50
807
+ KPX Atilde Y -100
808
+ KPX Atilde Yacute -100
809
+ KPX Atilde Ydieresis -100
810
+ KPX Atilde u -30
811
+ KPX Atilde uacute -30
812
+ KPX Atilde ucircumflex -30
813
+ KPX Atilde udieresis -30
814
+ KPX Atilde ugrave -30
815
+ KPX Atilde uhungarumlaut -30
816
+ KPX Atilde umacron -30
817
+ KPX Atilde uogonek -30
818
+ KPX Atilde uring -30
819
+ KPX Atilde v -40
820
+ KPX Atilde w -40
821
+ KPX Atilde y -40
822
+ KPX Atilde yacute -40
823
+ KPX Atilde ydieresis -40
824
+ KPX B U -10
825
+ KPX B Uacute -10
826
+ KPX B Ucircumflex -10
827
+ KPX B Udieresis -10
828
+ KPX B Ugrave -10
829
+ KPX B Uhungarumlaut -10
830
+ KPX B Umacron -10
831
+ KPX B Uogonek -10
832
+ KPX B Uring -10
833
+ KPX B comma -20
834
+ KPX B period -20
835
+ KPX C comma -30
836
+ KPX C period -30
837
+ KPX Cacute comma -30
838
+ KPX Cacute period -30
839
+ KPX Ccaron comma -30
840
+ KPX Ccaron period -30
841
+ KPX Ccedilla comma -30
842
+ KPX Ccedilla period -30
843
+ KPX D A -40
844
+ KPX D Aacute -40
845
+ KPX D Abreve -40
846
+ KPX D Acircumflex -40
847
+ KPX D Adieresis -40
848
+ KPX D Agrave -40
849
+ KPX D Amacron -40
850
+ KPX D Aogonek -40
851
+ KPX D Aring -40
852
+ KPX D Atilde -40
853
+ KPX D V -70
854
+ KPX D W -40
855
+ KPX D Y -90
856
+ KPX D Yacute -90
857
+ KPX D Ydieresis -90
858
+ KPX D comma -70
859
+ KPX D period -70
860
+ KPX Dcaron A -40
861
+ KPX Dcaron Aacute -40
862
+ KPX Dcaron Abreve -40
863
+ KPX Dcaron Acircumflex -40
864
+ KPX Dcaron Adieresis -40
865
+ KPX Dcaron Agrave -40
866
+ KPX Dcaron Amacron -40
867
+ KPX Dcaron Aogonek -40
868
+ KPX Dcaron Aring -40
869
+ KPX Dcaron Atilde -40
870
+ KPX Dcaron V -70
871
+ KPX Dcaron W -40
872
+ KPX Dcaron Y -90
873
+ KPX Dcaron Yacute -90
874
+ KPX Dcaron Ydieresis -90
875
+ KPX Dcaron comma -70
876
+ KPX Dcaron period -70
877
+ KPX Dcroat A -40
878
+ KPX Dcroat Aacute -40
879
+ KPX Dcroat Abreve -40
880
+ KPX Dcroat Acircumflex -40
881
+ KPX Dcroat Adieresis -40
882
+ KPX Dcroat Agrave -40
883
+ KPX Dcroat Amacron -40
884
+ KPX Dcroat Aogonek -40
885
+ KPX Dcroat Aring -40
886
+ KPX Dcroat Atilde -40
887
+ KPX Dcroat V -70
888
+ KPX Dcroat W -40
889
+ KPX Dcroat Y -90
890
+ KPX Dcroat Yacute -90
891
+ KPX Dcroat Ydieresis -90
892
+ KPX Dcroat comma -70
893
+ KPX Dcroat period -70
894
+ KPX F A -80
895
+ KPX F Aacute -80
896
+ KPX F Abreve -80
897
+ KPX F Acircumflex -80
898
+ KPX F Adieresis -80
899
+ KPX F Agrave -80
900
+ KPX F Amacron -80
901
+ KPX F Aogonek -80
902
+ KPX F Aring -80
903
+ KPX F Atilde -80
904
+ KPX F a -50
905
+ KPX F aacute -50
906
+ KPX F abreve -50
907
+ KPX F acircumflex -50
908
+ KPX F adieresis -50
909
+ KPX F agrave -50
910
+ KPX F amacron -50
911
+ KPX F aogonek -50
912
+ KPX F aring -50
913
+ KPX F atilde -50
914
+ KPX F comma -150
915
+ KPX F e -30
916
+ KPX F eacute -30
917
+ KPX F ecaron -30
918
+ KPX F ecircumflex -30
919
+ KPX F edieresis -30
920
+ KPX F edotaccent -30
921
+ KPX F egrave -30
922
+ KPX F emacron -30
923
+ KPX F eogonek -30
924
+ KPX F o -30
925
+ KPX F oacute -30
926
+ KPX F ocircumflex -30
927
+ KPX F odieresis -30
928
+ KPX F ograve -30
929
+ KPX F ohungarumlaut -30
930
+ KPX F omacron -30
931
+ KPX F oslash -30
932
+ KPX F otilde -30
933
+ KPX F period -150
934
+ KPX F r -45
935
+ KPX F racute -45
936
+ KPX F rcaron -45
937
+ KPX F rcommaaccent -45
938
+ KPX J A -20
939
+ KPX J Aacute -20
940
+ KPX J Abreve -20
941
+ KPX J Acircumflex -20
942
+ KPX J Adieresis -20
943
+ KPX J Agrave -20
944
+ KPX J Amacron -20
945
+ KPX J Aogonek -20
946
+ KPX J Aring -20
947
+ KPX J Atilde -20
948
+ KPX J a -20
949
+ KPX J aacute -20
950
+ KPX J abreve -20
951
+ KPX J acircumflex -20
952
+ KPX J adieresis -20
953
+ KPX J agrave -20
954
+ KPX J amacron -20
955
+ KPX J aogonek -20
956
+ KPX J aring -20
957
+ KPX J atilde -20
958
+ KPX J comma -30
959
+ KPX J period -30
960
+ KPX J u -20
961
+ KPX J uacute -20
962
+ KPX J ucircumflex -20
963
+ KPX J udieresis -20
964
+ KPX J ugrave -20
965
+ KPX J uhungarumlaut -20
966
+ KPX J umacron -20
967
+ KPX J uogonek -20
968
+ KPX J uring -20
969
+ KPX K O -50
970
+ KPX K Oacute -50
971
+ KPX K Ocircumflex -50
972
+ KPX K Odieresis -50
973
+ KPX K Ograve -50
974
+ KPX K Ohungarumlaut -50
975
+ KPX K Omacron -50
976
+ KPX K Oslash -50
977
+ KPX K Otilde -50
978
+ KPX K e -40
979
+ KPX K eacute -40
980
+ KPX K ecaron -40
981
+ KPX K ecircumflex -40
982
+ KPX K edieresis -40
983
+ KPX K edotaccent -40
984
+ KPX K egrave -40
985
+ KPX K emacron -40
986
+ KPX K eogonek -40
987
+ KPX K o -40
988
+ KPX K oacute -40
989
+ KPX K ocircumflex -40
990
+ KPX K odieresis -40
991
+ KPX K ograve -40
992
+ KPX K ohungarumlaut -40
993
+ KPX K omacron -40
994
+ KPX K oslash -40
995
+ KPX K otilde -40
996
+ KPX K u -30
997
+ KPX K uacute -30
998
+ KPX K ucircumflex -30
999
+ KPX K udieresis -30
1000
+ KPX K ugrave -30
1001
+ KPX K uhungarumlaut -30
1002
+ KPX K umacron -30
1003
+ KPX K uogonek -30
1004
+ KPX K uring -30
1005
+ KPX K y -50
1006
+ KPX K yacute -50
1007
+ KPX K ydieresis -50
1008
+ KPX Kcommaaccent O -50
1009
+ KPX Kcommaaccent Oacute -50
1010
+ KPX Kcommaaccent Ocircumflex -50
1011
+ KPX Kcommaaccent Odieresis -50
1012
+ KPX Kcommaaccent Ograve -50
1013
+ KPX Kcommaaccent Ohungarumlaut -50
1014
+ KPX Kcommaaccent Omacron -50
1015
+ KPX Kcommaaccent Oslash -50
1016
+ KPX Kcommaaccent Otilde -50
1017
+ KPX Kcommaaccent e -40
1018
+ KPX Kcommaaccent eacute -40
1019
+ KPX Kcommaaccent ecaron -40
1020
+ KPX Kcommaaccent ecircumflex -40
1021
+ KPX Kcommaaccent edieresis -40
1022
+ KPX Kcommaaccent edotaccent -40
1023
+ KPX Kcommaaccent egrave -40
1024
+ KPX Kcommaaccent emacron -40
1025
+ KPX Kcommaaccent eogonek -40
1026
+ KPX Kcommaaccent o -40
1027
+ KPX Kcommaaccent oacute -40
1028
+ KPX Kcommaaccent ocircumflex -40
1029
+ KPX Kcommaaccent odieresis -40
1030
+ KPX Kcommaaccent ograve -40
1031
+ KPX Kcommaaccent ohungarumlaut -40
1032
+ KPX Kcommaaccent omacron -40
1033
+ KPX Kcommaaccent oslash -40
1034
+ KPX Kcommaaccent otilde -40
1035
+ KPX Kcommaaccent u -30
1036
+ KPX Kcommaaccent uacute -30
1037
+ KPX Kcommaaccent ucircumflex -30
1038
+ KPX Kcommaaccent udieresis -30
1039
+ KPX Kcommaaccent ugrave -30
1040
+ KPX Kcommaaccent uhungarumlaut -30
1041
+ KPX Kcommaaccent umacron -30
1042
+ KPX Kcommaaccent uogonek -30
1043
+ KPX Kcommaaccent uring -30
1044
+ KPX Kcommaaccent y -50
1045
+ KPX Kcommaaccent yacute -50
1046
+ KPX Kcommaaccent ydieresis -50
1047
+ KPX L T -110
1048
+ KPX L Tcaron -110
1049
+ KPX L Tcommaaccent -110
1050
+ KPX L V -110
1051
+ KPX L W -70
1052
+ KPX L Y -140
1053
+ KPX L Yacute -140
1054
+ KPX L Ydieresis -140
1055
+ KPX L quotedblright -140
1056
+ KPX L quoteright -160
1057
+ KPX L y -30
1058
+ KPX L yacute -30
1059
+ KPX L ydieresis -30
1060
+ KPX Lacute T -110
1061
+ KPX Lacute Tcaron -110
1062
+ KPX Lacute Tcommaaccent -110
1063
+ KPX Lacute V -110
1064
+ KPX Lacute W -70
1065
+ KPX Lacute Y -140
1066
+ KPX Lacute Yacute -140
1067
+ KPX Lacute Ydieresis -140
1068
+ KPX Lacute quotedblright -140
1069
+ KPX Lacute quoteright -160
1070
+ KPX Lacute y -30
1071
+ KPX Lacute yacute -30
1072
+ KPX Lacute ydieresis -30
1073
+ KPX Lcaron T -110
1074
+ KPX Lcaron Tcaron -110
1075
+ KPX Lcaron Tcommaaccent -110
1076
+ KPX Lcaron V -110
1077
+ KPX Lcaron W -70
1078
+ KPX Lcaron Y -140
1079
+ KPX Lcaron Yacute -140
1080
+ KPX Lcaron Ydieresis -140
1081
+ KPX Lcaron quotedblright -140
1082
+ KPX Lcaron quoteright -160
1083
+ KPX Lcaron y -30
1084
+ KPX Lcaron yacute -30
1085
+ KPX Lcaron ydieresis -30
1086
+ KPX Lcommaaccent T -110
1087
+ KPX Lcommaaccent Tcaron -110
1088
+ KPX Lcommaaccent Tcommaaccent -110
1089
+ KPX Lcommaaccent V -110
1090
+ KPX Lcommaaccent W -70
1091
+ KPX Lcommaaccent Y -140
1092
+ KPX Lcommaaccent Yacute -140
1093
+ KPX Lcommaaccent Ydieresis -140
1094
+ KPX Lcommaaccent quotedblright -140
1095
+ KPX Lcommaaccent quoteright -160
1096
+ KPX Lcommaaccent y -30
1097
+ KPX Lcommaaccent yacute -30
1098
+ KPX Lcommaaccent ydieresis -30
1099
+ KPX Lslash T -110
1100
+ KPX Lslash Tcaron -110
1101
+ KPX Lslash Tcommaaccent -110
1102
+ KPX Lslash V -110
1103
+ KPX Lslash W -70
1104
+ KPX Lslash Y -140
1105
+ KPX Lslash Yacute -140
1106
+ KPX Lslash Ydieresis -140
1107
+ KPX Lslash quotedblright -140
1108
+ KPX Lslash quoteright -160
1109
+ KPX Lslash y -30
1110
+ KPX Lslash yacute -30
1111
+ KPX Lslash ydieresis -30
1112
+ KPX O A -20
1113
+ KPX O Aacute -20
1114
+ KPX O Abreve -20
1115
+ KPX O Acircumflex -20
1116
+ KPX O Adieresis -20
1117
+ KPX O Agrave -20
1118
+ KPX O Amacron -20
1119
+ KPX O Aogonek -20
1120
+ KPX O Aring -20
1121
+ KPX O Atilde -20
1122
+ KPX O T -40
1123
+ KPX O Tcaron -40
1124
+ KPX O Tcommaaccent -40
1125
+ KPX O V -50
1126
+ KPX O W -30
1127
+ KPX O X -60
1128
+ KPX O Y -70
1129
+ KPX O Yacute -70
1130
+ KPX O Ydieresis -70
1131
+ KPX O comma -40
1132
+ KPX O period -40
1133
+ KPX Oacute A -20
1134
+ KPX Oacute Aacute -20
1135
+ KPX Oacute Abreve -20
1136
+ KPX Oacute Acircumflex -20
1137
+ KPX Oacute Adieresis -20
1138
+ KPX Oacute Agrave -20
1139
+ KPX Oacute Amacron -20
1140
+ KPX Oacute Aogonek -20
1141
+ KPX Oacute Aring -20
1142
+ KPX Oacute Atilde -20
1143
+ KPX Oacute T -40
1144
+ KPX Oacute Tcaron -40
1145
+ KPX Oacute Tcommaaccent -40
1146
+ KPX Oacute V -50
1147
+ KPX Oacute W -30
1148
+ KPX Oacute X -60
1149
+ KPX Oacute Y -70
1150
+ KPX Oacute Yacute -70
1151
+ KPX Oacute Ydieresis -70
1152
+ KPX Oacute comma -40
1153
+ KPX Oacute period -40
1154
+ KPX Ocircumflex A -20
1155
+ KPX Ocircumflex Aacute -20
1156
+ KPX Ocircumflex Abreve -20
1157
+ KPX Ocircumflex Acircumflex -20
1158
+ KPX Ocircumflex Adieresis -20
1159
+ KPX Ocircumflex Agrave -20
1160
+ KPX Ocircumflex Amacron -20
1161
+ KPX Ocircumflex Aogonek -20
1162
+ KPX Ocircumflex Aring -20
1163
+ KPX Ocircumflex Atilde -20
1164
+ KPX Ocircumflex T -40
1165
+ KPX Ocircumflex Tcaron -40
1166
+ KPX Ocircumflex Tcommaaccent -40
1167
+ KPX Ocircumflex V -50
1168
+ KPX Ocircumflex W -30
1169
+ KPX Ocircumflex X -60
1170
+ KPX Ocircumflex Y -70
1171
+ KPX Ocircumflex Yacute -70
1172
+ KPX Ocircumflex Ydieresis -70
1173
+ KPX Ocircumflex comma -40
1174
+ KPX Ocircumflex period -40
1175
+ KPX Odieresis A -20
1176
+ KPX Odieresis Aacute -20
1177
+ KPX Odieresis Abreve -20
1178
+ KPX Odieresis Acircumflex -20
1179
+ KPX Odieresis Adieresis -20
1180
+ KPX Odieresis Agrave -20
1181
+ KPX Odieresis Amacron -20
1182
+ KPX Odieresis Aogonek -20
1183
+ KPX Odieresis Aring -20
1184
+ KPX Odieresis Atilde -20
1185
+ KPX Odieresis T -40
1186
+ KPX Odieresis Tcaron -40
1187
+ KPX Odieresis Tcommaaccent -40
1188
+ KPX Odieresis V -50
1189
+ KPX Odieresis W -30
1190
+ KPX Odieresis X -60
1191
+ KPX Odieresis Y -70
1192
+ KPX Odieresis Yacute -70
1193
+ KPX Odieresis Ydieresis -70
1194
+ KPX Odieresis comma -40
1195
+ KPX Odieresis period -40
1196
+ KPX Ograve A -20
1197
+ KPX Ograve Aacute -20
1198
+ KPX Ograve Abreve -20
1199
+ KPX Ograve Acircumflex -20
1200
+ KPX Ograve Adieresis -20
1201
+ KPX Ograve Agrave -20
1202
+ KPX Ograve Amacron -20
1203
+ KPX Ograve Aogonek -20
1204
+ KPX Ograve Aring -20
1205
+ KPX Ograve Atilde -20
1206
+ KPX Ograve T -40
1207
+ KPX Ograve Tcaron -40
1208
+ KPX Ograve Tcommaaccent -40
1209
+ KPX Ograve V -50
1210
+ KPX Ograve W -30
1211
+ KPX Ograve X -60
1212
+ KPX Ograve Y -70
1213
+ KPX Ograve Yacute -70
1214
+ KPX Ograve Ydieresis -70
1215
+ KPX Ograve comma -40
1216
+ KPX Ograve period -40
1217
+ KPX Ohungarumlaut A -20
1218
+ KPX Ohungarumlaut Aacute -20
1219
+ KPX Ohungarumlaut Abreve -20
1220
+ KPX Ohungarumlaut Acircumflex -20
1221
+ KPX Ohungarumlaut Adieresis -20
1222
+ KPX Ohungarumlaut Agrave -20
1223
+ KPX Ohungarumlaut Amacron -20
1224
+ KPX Ohungarumlaut Aogonek -20
1225
+ KPX Ohungarumlaut Aring -20
1226
+ KPX Ohungarumlaut Atilde -20
1227
+ KPX Ohungarumlaut T -40
1228
+ KPX Ohungarumlaut Tcaron -40
1229
+ KPX Ohungarumlaut Tcommaaccent -40
1230
+ KPX Ohungarumlaut V -50
1231
+ KPX Ohungarumlaut W -30
1232
+ KPX Ohungarumlaut X -60
1233
+ KPX Ohungarumlaut Y -70
1234
+ KPX Ohungarumlaut Yacute -70
1235
+ KPX Ohungarumlaut Ydieresis -70
1236
+ KPX Ohungarumlaut comma -40
1237
+ KPX Ohungarumlaut period -40
1238
+ KPX Omacron A -20
1239
+ KPX Omacron Aacute -20
1240
+ KPX Omacron Abreve -20
1241
+ KPX Omacron Acircumflex -20
1242
+ KPX Omacron Adieresis -20
1243
+ KPX Omacron Agrave -20
1244
+ KPX Omacron Amacron -20
1245
+ KPX Omacron Aogonek -20
1246
+ KPX Omacron Aring -20
1247
+ KPX Omacron Atilde -20
1248
+ KPX Omacron T -40
1249
+ KPX Omacron Tcaron -40
1250
+ KPX Omacron Tcommaaccent -40
1251
+ KPX Omacron V -50
1252
+ KPX Omacron W -30
1253
+ KPX Omacron X -60
1254
+ KPX Omacron Y -70
1255
+ KPX Omacron Yacute -70
1256
+ KPX Omacron Ydieresis -70
1257
+ KPX Omacron comma -40
1258
+ KPX Omacron period -40
1259
+ KPX Oslash A -20
1260
+ KPX Oslash Aacute -20
1261
+ KPX Oslash Abreve -20
1262
+ KPX Oslash Acircumflex -20
1263
+ KPX Oslash Adieresis -20
1264
+ KPX Oslash Agrave -20
1265
+ KPX Oslash Amacron -20
1266
+ KPX Oslash Aogonek -20
1267
+ KPX Oslash Aring -20
1268
+ KPX Oslash Atilde -20
1269
+ KPX Oslash T -40
1270
+ KPX Oslash Tcaron -40
1271
+ KPX Oslash Tcommaaccent -40
1272
+ KPX Oslash V -50
1273
+ KPX Oslash W -30
1274
+ KPX Oslash X -60
1275
+ KPX Oslash Y -70
1276
+ KPX Oslash Yacute -70
1277
+ KPX Oslash Ydieresis -70
1278
+ KPX Oslash comma -40
1279
+ KPX Oslash period -40
1280
+ KPX Otilde A -20
1281
+ KPX Otilde Aacute -20
1282
+ KPX Otilde Abreve -20
1283
+ KPX Otilde Acircumflex -20
1284
+ KPX Otilde Adieresis -20
1285
+ KPX Otilde Agrave -20
1286
+ KPX Otilde Amacron -20
1287
+ KPX Otilde Aogonek -20
1288
+ KPX Otilde Aring -20
1289
+ KPX Otilde Atilde -20
1290
+ KPX Otilde T -40
1291
+ KPX Otilde Tcaron -40
1292
+ KPX Otilde Tcommaaccent -40
1293
+ KPX Otilde V -50
1294
+ KPX Otilde W -30
1295
+ KPX Otilde X -60
1296
+ KPX Otilde Y -70
1297
+ KPX Otilde Yacute -70
1298
+ KPX Otilde Ydieresis -70
1299
+ KPX Otilde comma -40
1300
+ KPX Otilde period -40
1301
+ KPX P A -120
1302
+ KPX P Aacute -120
1303
+ KPX P Abreve -120
1304
+ KPX P Acircumflex -120
1305
+ KPX P Adieresis -120
1306
+ KPX P Agrave -120
1307
+ KPX P Amacron -120
1308
+ KPX P Aogonek -120
1309
+ KPX P Aring -120
1310
+ KPX P Atilde -120
1311
+ KPX P a -40
1312
+ KPX P aacute -40
1313
+ KPX P abreve -40
1314
+ KPX P acircumflex -40
1315
+ KPX P adieresis -40
1316
+ KPX P agrave -40
1317
+ KPX P amacron -40
1318
+ KPX P aogonek -40
1319
+ KPX P aring -40
1320
+ KPX P atilde -40
1321
+ KPX P comma -180
1322
+ KPX P e -50
1323
+ KPX P eacute -50
1324
+ KPX P ecaron -50
1325
+ KPX P ecircumflex -50
1326
+ KPX P edieresis -50
1327
+ KPX P edotaccent -50
1328
+ KPX P egrave -50
1329
+ KPX P emacron -50
1330
+ KPX P eogonek -50
1331
+ KPX P o -50
1332
+ KPX P oacute -50
1333
+ KPX P ocircumflex -50
1334
+ KPX P odieresis -50
1335
+ KPX P ograve -50
1336
+ KPX P ohungarumlaut -50
1337
+ KPX P omacron -50
1338
+ KPX P oslash -50
1339
+ KPX P otilde -50
1340
+ KPX P period -180
1341
+ KPX Q U -10
1342
+ KPX Q Uacute -10
1343
+ KPX Q Ucircumflex -10
1344
+ KPX Q Udieresis -10
1345
+ KPX Q Ugrave -10
1346
+ KPX Q Uhungarumlaut -10
1347
+ KPX Q Umacron -10
1348
+ KPX Q Uogonek -10
1349
+ KPX Q Uring -10
1350
+ KPX R O -20
1351
+ KPX R Oacute -20
1352
+ KPX R Ocircumflex -20
1353
+ KPX R Odieresis -20
1354
+ KPX R Ograve -20
1355
+ KPX R Ohungarumlaut -20
1356
+ KPX R Omacron -20
1357
+ KPX R Oslash -20
1358
+ KPX R Otilde -20
1359
+ KPX R T -30
1360
+ KPX R Tcaron -30
1361
+ KPX R Tcommaaccent -30
1362
+ KPX R U -40
1363
+ KPX R Uacute -40
1364
+ KPX R Ucircumflex -40
1365
+ KPX R Udieresis -40
1366
+ KPX R Ugrave -40
1367
+ KPX R Uhungarumlaut -40
1368
+ KPX R Umacron -40
1369
+ KPX R Uogonek -40
1370
+ KPX R Uring -40
1371
+ KPX R V -50
1372
+ KPX R W -30
1373
+ KPX R Y -50
1374
+ KPX R Yacute -50
1375
+ KPX R Ydieresis -50
1376
+ KPX Racute O -20
1377
+ KPX Racute Oacute -20
1378
+ KPX Racute Ocircumflex -20
1379
+ KPX Racute Odieresis -20
1380
+ KPX Racute Ograve -20
1381
+ KPX Racute Ohungarumlaut -20
1382
+ KPX Racute Omacron -20
1383
+ KPX Racute Oslash -20
1384
+ KPX Racute Otilde -20
1385
+ KPX Racute T -30
1386
+ KPX Racute Tcaron -30
1387
+ KPX Racute Tcommaaccent -30
1388
+ KPX Racute U -40
1389
+ KPX Racute Uacute -40
1390
+ KPX Racute Ucircumflex -40
1391
+ KPX Racute Udieresis -40
1392
+ KPX Racute Ugrave -40
1393
+ KPX Racute Uhungarumlaut -40
1394
+ KPX Racute Umacron -40
1395
+ KPX Racute Uogonek -40
1396
+ KPX Racute Uring -40
1397
+ KPX Racute V -50
1398
+ KPX Racute W -30
1399
+ KPX Racute Y -50
1400
+ KPX Racute Yacute -50
1401
+ KPX Racute Ydieresis -50
1402
+ KPX Rcaron O -20
1403
+ KPX Rcaron Oacute -20
1404
+ KPX Rcaron Ocircumflex -20
1405
+ KPX Rcaron Odieresis -20
1406
+ KPX Rcaron Ograve -20
1407
+ KPX Rcaron Ohungarumlaut -20
1408
+ KPX Rcaron Omacron -20
1409
+ KPX Rcaron Oslash -20
1410
+ KPX Rcaron Otilde -20
1411
+ KPX Rcaron T -30
1412
+ KPX Rcaron Tcaron -30
1413
+ KPX Rcaron Tcommaaccent -30
1414
+ KPX Rcaron U -40
1415
+ KPX Rcaron Uacute -40
1416
+ KPX Rcaron Ucircumflex -40
1417
+ KPX Rcaron Udieresis -40
1418
+ KPX Rcaron Ugrave -40
1419
+ KPX Rcaron Uhungarumlaut -40
1420
+ KPX Rcaron Umacron -40
1421
+ KPX Rcaron Uogonek -40
1422
+ KPX Rcaron Uring -40
1423
+ KPX Rcaron V -50
1424
+ KPX Rcaron W -30
1425
+ KPX Rcaron Y -50
1426
+ KPX Rcaron Yacute -50
1427
+ KPX Rcaron Ydieresis -50
1428
+ KPX Rcommaaccent O -20
1429
+ KPX Rcommaaccent Oacute -20
1430
+ KPX Rcommaaccent Ocircumflex -20
1431
+ KPX Rcommaaccent Odieresis -20
1432
+ KPX Rcommaaccent Ograve -20
1433
+ KPX Rcommaaccent Ohungarumlaut -20
1434
+ KPX Rcommaaccent Omacron -20
1435
+ KPX Rcommaaccent Oslash -20
1436
+ KPX Rcommaaccent Otilde -20
1437
+ KPX Rcommaaccent T -30
1438
+ KPX Rcommaaccent Tcaron -30
1439
+ KPX Rcommaaccent Tcommaaccent -30
1440
+ KPX Rcommaaccent U -40
1441
+ KPX Rcommaaccent Uacute -40
1442
+ KPX Rcommaaccent Ucircumflex -40
1443
+ KPX Rcommaaccent Udieresis -40
1444
+ KPX Rcommaaccent Ugrave -40
1445
+ KPX Rcommaaccent Uhungarumlaut -40
1446
+ KPX Rcommaaccent Umacron -40
1447
+ KPX Rcommaaccent Uogonek -40
1448
+ KPX Rcommaaccent Uring -40
1449
+ KPX Rcommaaccent V -50
1450
+ KPX Rcommaaccent W -30
1451
+ KPX Rcommaaccent Y -50
1452
+ KPX Rcommaaccent Yacute -50
1453
+ KPX Rcommaaccent Ydieresis -50
1454
+ KPX S comma -20
1455
+ KPX S period -20
1456
+ KPX Sacute comma -20
1457
+ KPX Sacute period -20
1458
+ KPX Scaron comma -20
1459
+ KPX Scaron period -20
1460
+ KPX Scedilla comma -20
1461
+ KPX Scedilla period -20
1462
+ KPX Scommaaccent comma -20
1463
+ KPX Scommaaccent period -20
1464
+ KPX T A -120
1465
+ KPX T Aacute -120
1466
+ KPX T Abreve -120
1467
+ KPX T Acircumflex -120
1468
+ KPX T Adieresis -120
1469
+ KPX T Agrave -120
1470
+ KPX T Amacron -120
1471
+ KPX T Aogonek -120
1472
+ KPX T Aring -120
1473
+ KPX T Atilde -120
1474
+ KPX T O -40
1475
+ KPX T Oacute -40
1476
+ KPX T Ocircumflex -40
1477
+ KPX T Odieresis -40
1478
+ KPX T Ograve -40
1479
+ KPX T Ohungarumlaut -40
1480
+ KPX T Omacron -40
1481
+ KPX T Oslash -40
1482
+ KPX T Otilde -40
1483
+ KPX T a -120
1484
+ KPX T aacute -120
1485
+ KPX T abreve -60
1486
+ KPX T acircumflex -120
1487
+ KPX T adieresis -120
1488
+ KPX T agrave -120
1489
+ KPX T amacron -60
1490
+ KPX T aogonek -120
1491
+ KPX T aring -120
1492
+ KPX T atilde -60
1493
+ KPX T colon -20
1494
+ KPX T comma -120
1495
+ KPX T e -120
1496
+ KPX T eacute -120
1497
+ KPX T ecaron -120
1498
+ KPX T ecircumflex -120
1499
+ KPX T edieresis -120
1500
+ KPX T edotaccent -120
1501
+ KPX T egrave -60
1502
+ KPX T emacron -60
1503
+ KPX T eogonek -120
1504
+ KPX T hyphen -140
1505
+ KPX T o -120
1506
+ KPX T oacute -120
1507
+ KPX T ocircumflex -120
1508
+ KPX T odieresis -120
1509
+ KPX T ograve -120
1510
+ KPX T ohungarumlaut -120
1511
+ KPX T omacron -60
1512
+ KPX T oslash -120
1513
+ KPX T otilde -60
1514
+ KPX T period -120
1515
+ KPX T r -120
1516
+ KPX T racute -120
1517
+ KPX T rcaron -120
1518
+ KPX T rcommaaccent -120
1519
+ KPX T semicolon -20
1520
+ KPX T u -120
1521
+ KPX T uacute -120
1522
+ KPX T ucircumflex -120
1523
+ KPX T udieresis -120
1524
+ KPX T ugrave -120
1525
+ KPX T uhungarumlaut -120
1526
+ KPX T umacron -60
1527
+ KPX T uogonek -120
1528
+ KPX T uring -120
1529
+ KPX T w -120
1530
+ KPX T y -120
1531
+ KPX T yacute -120
1532
+ KPX T ydieresis -60
1533
+ KPX Tcaron A -120
1534
+ KPX Tcaron Aacute -120
1535
+ KPX Tcaron Abreve -120
1536
+ KPX Tcaron Acircumflex -120
1537
+ KPX Tcaron Adieresis -120
1538
+ KPX Tcaron Agrave -120
1539
+ KPX Tcaron Amacron -120
1540
+ KPX Tcaron Aogonek -120
1541
+ KPX Tcaron Aring -120
1542
+ KPX Tcaron Atilde -120
1543
+ KPX Tcaron O -40
1544
+ KPX Tcaron Oacute -40
1545
+ KPX Tcaron Ocircumflex -40
1546
+ KPX Tcaron Odieresis -40
1547
+ KPX Tcaron Ograve -40
1548
+ KPX Tcaron Ohungarumlaut -40
1549
+ KPX Tcaron Omacron -40
1550
+ KPX Tcaron Oslash -40
1551
+ KPX Tcaron Otilde -40
1552
+ KPX Tcaron a -120
1553
+ KPX Tcaron aacute -120
1554
+ KPX Tcaron abreve -60
1555
+ KPX Tcaron acircumflex -120
1556
+ KPX Tcaron adieresis -120
1557
+ KPX Tcaron agrave -120
1558
+ KPX Tcaron amacron -60
1559
+ KPX Tcaron aogonek -120
1560
+ KPX Tcaron aring -120
1561
+ KPX Tcaron atilde -60
1562
+ KPX Tcaron colon -20
1563
+ KPX Tcaron comma -120
1564
+ KPX Tcaron e -120
1565
+ KPX Tcaron eacute -120
1566
+ KPX Tcaron ecaron -120
1567
+ KPX Tcaron ecircumflex -120
1568
+ KPX Tcaron edieresis -120
1569
+ KPX Tcaron edotaccent -120
1570
+ KPX Tcaron egrave -60
1571
+ KPX Tcaron emacron -60
1572
+ KPX Tcaron eogonek -120
1573
+ KPX Tcaron hyphen -140
1574
+ KPX Tcaron o -120
1575
+ KPX Tcaron oacute -120
1576
+ KPX Tcaron ocircumflex -120
1577
+ KPX Tcaron odieresis -120
1578
+ KPX Tcaron ograve -120
1579
+ KPX Tcaron ohungarumlaut -120
1580
+ KPX Tcaron omacron -60
1581
+ KPX Tcaron oslash -120
1582
+ KPX Tcaron otilde -60
1583
+ KPX Tcaron period -120
1584
+ KPX Tcaron r -120
1585
+ KPX Tcaron racute -120
1586
+ KPX Tcaron rcaron -120
1587
+ KPX Tcaron rcommaaccent -120
1588
+ KPX Tcaron semicolon -20
1589
+ KPX Tcaron u -120
1590
+ KPX Tcaron uacute -120
1591
+ KPX Tcaron ucircumflex -120
1592
+ KPX Tcaron udieresis -120
1593
+ KPX Tcaron ugrave -120
1594
+ KPX Tcaron uhungarumlaut -120
1595
+ KPX Tcaron umacron -60
1596
+ KPX Tcaron uogonek -120
1597
+ KPX Tcaron uring -120
1598
+ KPX Tcaron w -120
1599
+ KPX Tcaron y -120
1600
+ KPX Tcaron yacute -120
1601
+ KPX Tcaron ydieresis -60
1602
+ KPX Tcommaaccent A -120
1603
+ KPX Tcommaaccent Aacute -120
1604
+ KPX Tcommaaccent Abreve -120
1605
+ KPX Tcommaaccent Acircumflex -120
1606
+ KPX Tcommaaccent Adieresis -120
1607
+ KPX Tcommaaccent Agrave -120
1608
+ KPX Tcommaaccent Amacron -120
1609
+ KPX Tcommaaccent Aogonek -120
1610
+ KPX Tcommaaccent Aring -120
1611
+ KPX Tcommaaccent Atilde -120
1612
+ KPX Tcommaaccent O -40
1613
+ KPX Tcommaaccent Oacute -40
1614
+ KPX Tcommaaccent Ocircumflex -40
1615
+ KPX Tcommaaccent Odieresis -40
1616
+ KPX Tcommaaccent Ograve -40
1617
+ KPX Tcommaaccent Ohungarumlaut -40
1618
+ KPX Tcommaaccent Omacron -40
1619
+ KPX Tcommaaccent Oslash -40
1620
+ KPX Tcommaaccent Otilde -40
1621
+ KPX Tcommaaccent a -120
1622
+ KPX Tcommaaccent aacute -120
1623
+ KPX Tcommaaccent abreve -60
1624
+ KPX Tcommaaccent acircumflex -120
1625
+ KPX Tcommaaccent adieresis -120
1626
+ KPX Tcommaaccent agrave -120
1627
+ KPX Tcommaaccent amacron -60
1628
+ KPX Tcommaaccent aogonek -120
1629
+ KPX Tcommaaccent aring -120
1630
+ KPX Tcommaaccent atilde -60
1631
+ KPX Tcommaaccent colon -20
1632
+ KPX Tcommaaccent comma -120
1633
+ KPX Tcommaaccent e -120
1634
+ KPX Tcommaaccent eacute -120
1635
+ KPX Tcommaaccent ecaron -120
1636
+ KPX Tcommaaccent ecircumflex -120
1637
+ KPX Tcommaaccent edieresis -120
1638
+ KPX Tcommaaccent edotaccent -120
1639
+ KPX Tcommaaccent egrave -60
1640
+ KPX Tcommaaccent emacron -60
1641
+ KPX Tcommaaccent eogonek -120
1642
+ KPX Tcommaaccent hyphen -140
1643
+ KPX Tcommaaccent o -120
1644
+ KPX Tcommaaccent oacute -120
1645
+ KPX Tcommaaccent ocircumflex -120
1646
+ KPX Tcommaaccent odieresis -120
1647
+ KPX Tcommaaccent ograve -120
1648
+ KPX Tcommaaccent ohungarumlaut -120
1649
+ KPX Tcommaaccent omacron -60
1650
+ KPX Tcommaaccent oslash -120
1651
+ KPX Tcommaaccent otilde -60
1652
+ KPX Tcommaaccent period -120
1653
+ KPX Tcommaaccent r -120
1654
+ KPX Tcommaaccent racute -120
1655
+ KPX Tcommaaccent rcaron -120
1656
+ KPX Tcommaaccent rcommaaccent -120
1657
+ KPX Tcommaaccent semicolon -20
1658
+ KPX Tcommaaccent u -120
1659
+ KPX Tcommaaccent uacute -120
1660
+ KPX Tcommaaccent ucircumflex -120
1661
+ KPX Tcommaaccent udieresis -120
1662
+ KPX Tcommaaccent ugrave -120
1663
+ KPX Tcommaaccent uhungarumlaut -120
1664
+ KPX Tcommaaccent umacron -60
1665
+ KPX Tcommaaccent uogonek -120
1666
+ KPX Tcommaaccent uring -120
1667
+ KPX Tcommaaccent w -120
1668
+ KPX Tcommaaccent y -120
1669
+ KPX Tcommaaccent yacute -120
1670
+ KPX Tcommaaccent ydieresis -60
1671
+ KPX U A -40
1672
+ KPX U Aacute -40
1673
+ KPX U Abreve -40
1674
+ KPX U Acircumflex -40
1675
+ KPX U Adieresis -40
1676
+ KPX U Agrave -40
1677
+ KPX U Amacron -40
1678
+ KPX U Aogonek -40
1679
+ KPX U Aring -40
1680
+ KPX U Atilde -40
1681
+ KPX U comma -40
1682
+ KPX U period -40
1683
+ KPX Uacute A -40
1684
+ KPX Uacute Aacute -40
1685
+ KPX Uacute Abreve -40
1686
+ KPX Uacute Acircumflex -40
1687
+ KPX Uacute Adieresis -40
1688
+ KPX Uacute Agrave -40
1689
+ KPX Uacute Amacron -40
1690
+ KPX Uacute Aogonek -40
1691
+ KPX Uacute Aring -40
1692
+ KPX Uacute Atilde -40
1693
+ KPX Uacute comma -40
1694
+ KPX Uacute period -40
1695
+ KPX Ucircumflex A -40
1696
+ KPX Ucircumflex Aacute -40
1697
+ KPX Ucircumflex Abreve -40
1698
+ KPX Ucircumflex Acircumflex -40
1699
+ KPX Ucircumflex Adieresis -40
1700
+ KPX Ucircumflex Agrave -40
1701
+ KPX Ucircumflex Amacron -40
1702
+ KPX Ucircumflex Aogonek -40
1703
+ KPX Ucircumflex Aring -40
1704
+ KPX Ucircumflex Atilde -40
1705
+ KPX Ucircumflex comma -40
1706
+ KPX Ucircumflex period -40
1707
+ KPX Udieresis A -40
1708
+ KPX Udieresis Aacute -40
1709
+ KPX Udieresis Abreve -40
1710
+ KPX Udieresis Acircumflex -40
1711
+ KPX Udieresis Adieresis -40
1712
+ KPX Udieresis Agrave -40
1713
+ KPX Udieresis Amacron -40
1714
+ KPX Udieresis Aogonek -40
1715
+ KPX Udieresis Aring -40
1716
+ KPX Udieresis Atilde -40
1717
+ KPX Udieresis comma -40
1718
+ KPX Udieresis period -40
1719
+ KPX Ugrave A -40
1720
+ KPX Ugrave Aacute -40
1721
+ KPX Ugrave Abreve -40
1722
+ KPX Ugrave Acircumflex -40
1723
+ KPX Ugrave Adieresis -40
1724
+ KPX Ugrave Agrave -40
1725
+ KPX Ugrave Amacron -40
1726
+ KPX Ugrave Aogonek -40
1727
+ KPX Ugrave Aring -40
1728
+ KPX Ugrave Atilde -40
1729
+ KPX Ugrave comma -40
1730
+ KPX Ugrave period -40
1731
+ KPX Uhungarumlaut A -40
1732
+ KPX Uhungarumlaut Aacute -40
1733
+ KPX Uhungarumlaut Abreve -40
1734
+ KPX Uhungarumlaut Acircumflex -40
1735
+ KPX Uhungarumlaut Adieresis -40
1736
+ KPX Uhungarumlaut Agrave -40
1737
+ KPX Uhungarumlaut Amacron -40
1738
+ KPX Uhungarumlaut Aogonek -40
1739
+ KPX Uhungarumlaut Aring -40
1740
+ KPX Uhungarumlaut Atilde -40
1741
+ KPX Uhungarumlaut comma -40
1742
+ KPX Uhungarumlaut period -40
1743
+ KPX Umacron A -40
1744
+ KPX Umacron Aacute -40
1745
+ KPX Umacron Abreve -40
1746
+ KPX Umacron Acircumflex -40
1747
+ KPX Umacron Adieresis -40
1748
+ KPX Umacron Agrave -40
1749
+ KPX Umacron Amacron -40
1750
+ KPX Umacron Aogonek -40
1751
+ KPX Umacron Aring -40
1752
+ KPX Umacron Atilde -40
1753
+ KPX Umacron comma -40
1754
+ KPX Umacron period -40
1755
+ KPX Uogonek A -40
1756
+ KPX Uogonek Aacute -40
1757
+ KPX Uogonek Abreve -40
1758
+ KPX Uogonek Acircumflex -40
1759
+ KPX Uogonek Adieresis -40
1760
+ KPX Uogonek Agrave -40
1761
+ KPX Uogonek Amacron -40
1762
+ KPX Uogonek Aogonek -40
1763
+ KPX Uogonek Aring -40
1764
+ KPX Uogonek Atilde -40
1765
+ KPX Uogonek comma -40
1766
+ KPX Uogonek period -40
1767
+ KPX Uring A -40
1768
+ KPX Uring Aacute -40
1769
+ KPX Uring Abreve -40
1770
+ KPX Uring Acircumflex -40
1771
+ KPX Uring Adieresis -40
1772
+ KPX Uring Agrave -40
1773
+ KPX Uring Amacron -40
1774
+ KPX Uring Aogonek -40
1775
+ KPX Uring Aring -40
1776
+ KPX Uring Atilde -40
1777
+ KPX Uring comma -40
1778
+ KPX Uring period -40
1779
+ KPX V A -80
1780
+ KPX V Aacute -80
1781
+ KPX V Abreve -80
1782
+ KPX V Acircumflex -80
1783
+ KPX V Adieresis -80
1784
+ KPX V Agrave -80
1785
+ KPX V Amacron -80
1786
+ KPX V Aogonek -80
1787
+ KPX V Aring -80
1788
+ KPX V Atilde -80
1789
+ KPX V G -40
1790
+ KPX V Gbreve -40
1791
+ KPX V Gcommaaccent -40
1792
+ KPX V O -40
1793
+ KPX V Oacute -40
1794
+ KPX V Ocircumflex -40
1795
+ KPX V Odieresis -40
1796
+ KPX V Ograve -40
1797
+ KPX V Ohungarumlaut -40
1798
+ KPX V Omacron -40
1799
+ KPX V Oslash -40
1800
+ KPX V Otilde -40
1801
+ KPX V a -70
1802
+ KPX V aacute -70
1803
+ KPX V abreve -70
1804
+ KPX V acircumflex -70
1805
+ KPX V adieresis -70
1806
+ KPX V agrave -70
1807
+ KPX V amacron -70
1808
+ KPX V aogonek -70
1809
+ KPX V aring -70
1810
+ KPX V atilde -70
1811
+ KPX V colon -40
1812
+ KPX V comma -125
1813
+ KPX V e -80
1814
+ KPX V eacute -80
1815
+ KPX V ecaron -80
1816
+ KPX V ecircumflex -80
1817
+ KPX V edieresis -80
1818
+ KPX V edotaccent -80
1819
+ KPX V egrave -80
1820
+ KPX V emacron -80
1821
+ KPX V eogonek -80
1822
+ KPX V hyphen -80
1823
+ KPX V o -80
1824
+ KPX V oacute -80
1825
+ KPX V ocircumflex -80
1826
+ KPX V odieresis -80
1827
+ KPX V ograve -80
1828
+ KPX V ohungarumlaut -80
1829
+ KPX V omacron -80
1830
+ KPX V oslash -80
1831
+ KPX V otilde -80
1832
+ KPX V period -125
1833
+ KPX V semicolon -40
1834
+ KPX V u -70
1835
+ KPX V uacute -70
1836
+ KPX V ucircumflex -70
1837
+ KPX V udieresis -70
1838
+ KPX V ugrave -70
1839
+ KPX V uhungarumlaut -70
1840
+ KPX V umacron -70
1841
+ KPX V uogonek -70
1842
+ KPX V uring -70
1843
+ KPX W A -50
1844
+ KPX W Aacute -50
1845
+ KPX W Abreve -50
1846
+ KPX W Acircumflex -50
1847
+ KPX W Adieresis -50
1848
+ KPX W Agrave -50
1849
+ KPX W Amacron -50
1850
+ KPX W Aogonek -50
1851
+ KPX W Aring -50
1852
+ KPX W Atilde -50
1853
+ KPX W O -20
1854
+ KPX W Oacute -20
1855
+ KPX W Ocircumflex -20
1856
+ KPX W Odieresis -20
1857
+ KPX W Ograve -20
1858
+ KPX W Ohungarumlaut -20
1859
+ KPX W Omacron -20
1860
+ KPX W Oslash -20
1861
+ KPX W Otilde -20
1862
+ KPX W a -40
1863
+ KPX W aacute -40
1864
+ KPX W abreve -40
1865
+ KPX W acircumflex -40
1866
+ KPX W adieresis -40
1867
+ KPX W agrave -40
1868
+ KPX W amacron -40
1869
+ KPX W aogonek -40
1870
+ KPX W aring -40
1871
+ KPX W atilde -40
1872
+ KPX W comma -80
1873
+ KPX W e -30
1874
+ KPX W eacute -30
1875
+ KPX W ecaron -30
1876
+ KPX W ecircumflex -30
1877
+ KPX W edieresis -30
1878
+ KPX W edotaccent -30
1879
+ KPX W egrave -30
1880
+ KPX W emacron -30
1881
+ KPX W eogonek -30
1882
+ KPX W hyphen -40
1883
+ KPX W o -30
1884
+ KPX W oacute -30
1885
+ KPX W ocircumflex -30
1886
+ KPX W odieresis -30
1887
+ KPX W ograve -30
1888
+ KPX W ohungarumlaut -30
1889
+ KPX W omacron -30
1890
+ KPX W oslash -30
1891
+ KPX W otilde -30
1892
+ KPX W period -80
1893
+ KPX W u -30
1894
+ KPX W uacute -30
1895
+ KPX W ucircumflex -30
1896
+ KPX W udieresis -30
1897
+ KPX W ugrave -30
1898
+ KPX W uhungarumlaut -30
1899
+ KPX W umacron -30
1900
+ KPX W uogonek -30
1901
+ KPX W uring -30
1902
+ KPX W y -20
1903
+ KPX W yacute -20
1904
+ KPX W ydieresis -20
1905
+ KPX Y A -110
1906
+ KPX Y Aacute -110
1907
+ KPX Y Abreve -110
1908
+ KPX Y Acircumflex -110
1909
+ KPX Y Adieresis -110
1910
+ KPX Y Agrave -110
1911
+ KPX Y Amacron -110
1912
+ KPX Y Aogonek -110
1913
+ KPX Y Aring -110
1914
+ KPX Y Atilde -110
1915
+ KPX Y O -85
1916
+ KPX Y Oacute -85
1917
+ KPX Y Ocircumflex -85
1918
+ KPX Y Odieresis -85
1919
+ KPX Y Ograve -85
1920
+ KPX Y Ohungarumlaut -85
1921
+ KPX Y Omacron -85
1922
+ KPX Y Oslash -85
1923
+ KPX Y Otilde -85
1924
+ KPX Y a -140
1925
+ KPX Y aacute -140
1926
+ KPX Y abreve -70
1927
+ KPX Y acircumflex -140
1928
+ KPX Y adieresis -140
1929
+ KPX Y agrave -140
1930
+ KPX Y amacron -70
1931
+ KPX Y aogonek -140
1932
+ KPX Y aring -140
1933
+ KPX Y atilde -140
1934
+ KPX Y colon -60
1935
+ KPX Y comma -140
1936
+ KPX Y e -140
1937
+ KPX Y eacute -140
1938
+ KPX Y ecaron -140
1939
+ KPX Y ecircumflex -140
1940
+ KPX Y edieresis -140
1941
+ KPX Y edotaccent -140
1942
+ KPX Y egrave -140
1943
+ KPX Y emacron -70
1944
+ KPX Y eogonek -140
1945
+ KPX Y hyphen -140
1946
+ KPX Y i -20
1947
+ KPX Y iacute -20
1948
+ KPX Y iogonek -20
1949
+ KPX Y o -140
1950
+ KPX Y oacute -140
1951
+ KPX Y ocircumflex -140
1952
+ KPX Y odieresis -140
1953
+ KPX Y ograve -140
1954
+ KPX Y ohungarumlaut -140
1955
+ KPX Y omacron -140
1956
+ KPX Y oslash -140
1957
+ KPX Y otilde -140
1958
+ KPX Y period -140
1959
+ KPX Y semicolon -60
1960
+ KPX Y u -110
1961
+ KPX Y uacute -110
1962
+ KPX Y ucircumflex -110
1963
+ KPX Y udieresis -110
1964
+ KPX Y ugrave -110
1965
+ KPX Y uhungarumlaut -110
1966
+ KPX Y umacron -110
1967
+ KPX Y uogonek -110
1968
+ KPX Y uring -110
1969
+ KPX Yacute A -110
1970
+ KPX Yacute Aacute -110
1971
+ KPX Yacute Abreve -110
1972
+ KPX Yacute Acircumflex -110
1973
+ KPX Yacute Adieresis -110
1974
+ KPX Yacute Agrave -110
1975
+ KPX Yacute Amacron -110
1976
+ KPX Yacute Aogonek -110
1977
+ KPX Yacute Aring -110
1978
+ KPX Yacute Atilde -110
1979
+ KPX Yacute O -85
1980
+ KPX Yacute Oacute -85
1981
+ KPX Yacute Ocircumflex -85
1982
+ KPX Yacute Odieresis -85
1983
+ KPX Yacute Ograve -85
1984
+ KPX Yacute Ohungarumlaut -85
1985
+ KPX Yacute Omacron -85
1986
+ KPX Yacute Oslash -85
1987
+ KPX Yacute Otilde -85
1988
+ KPX Yacute a -140
1989
+ KPX Yacute aacute -140
1990
+ KPX Yacute abreve -70
1991
+ KPX Yacute acircumflex -140
1992
+ KPX Yacute adieresis -140
1993
+ KPX Yacute agrave -140
1994
+ KPX Yacute amacron -70
1995
+ KPX Yacute aogonek -140
1996
+ KPX Yacute aring -140
1997
+ KPX Yacute atilde -70
1998
+ KPX Yacute colon -60
1999
+ KPX Yacute comma -140
2000
+ KPX Yacute e -140
2001
+ KPX Yacute eacute -140
2002
+ KPX Yacute ecaron -140
2003
+ KPX Yacute ecircumflex -140
2004
+ KPX Yacute edieresis -140
2005
+ KPX Yacute edotaccent -140
2006
+ KPX Yacute egrave -140
2007
+ KPX Yacute emacron -70
2008
+ KPX Yacute eogonek -140
2009
+ KPX Yacute hyphen -140
2010
+ KPX Yacute i -20
2011
+ KPX Yacute iacute -20
2012
+ KPX Yacute iogonek -20
2013
+ KPX Yacute o -140
2014
+ KPX Yacute oacute -140
2015
+ KPX Yacute ocircumflex -140
2016
+ KPX Yacute odieresis -140
2017
+ KPX Yacute ograve -140
2018
+ KPX Yacute ohungarumlaut -140
2019
+ KPX Yacute omacron -70
2020
+ KPX Yacute oslash -140
2021
+ KPX Yacute otilde -140
2022
+ KPX Yacute period -140
2023
+ KPX Yacute semicolon -60
2024
+ KPX Yacute u -110
2025
+ KPX Yacute uacute -110
2026
+ KPX Yacute ucircumflex -110
2027
+ KPX Yacute udieresis -110
2028
+ KPX Yacute ugrave -110
2029
+ KPX Yacute uhungarumlaut -110
2030
+ KPX Yacute umacron -110
2031
+ KPX Yacute uogonek -110
2032
+ KPX Yacute uring -110
2033
+ KPX Ydieresis A -110
2034
+ KPX Ydieresis Aacute -110
2035
+ KPX Ydieresis Abreve -110
2036
+ KPX Ydieresis Acircumflex -110
2037
+ KPX Ydieresis Adieresis -110
2038
+ KPX Ydieresis Agrave -110
2039
+ KPX Ydieresis Amacron -110
2040
+ KPX Ydieresis Aogonek -110
2041
+ KPX Ydieresis Aring -110
2042
+ KPX Ydieresis Atilde -110
2043
+ KPX Ydieresis O -85
2044
+ KPX Ydieresis Oacute -85
2045
+ KPX Ydieresis Ocircumflex -85
2046
+ KPX Ydieresis Odieresis -85
2047
+ KPX Ydieresis Ograve -85
2048
+ KPX Ydieresis Ohungarumlaut -85
2049
+ KPX Ydieresis Omacron -85
2050
+ KPX Ydieresis Oslash -85
2051
+ KPX Ydieresis Otilde -85
2052
+ KPX Ydieresis a -140
2053
+ KPX Ydieresis aacute -140
2054
+ KPX Ydieresis abreve -70
2055
+ KPX Ydieresis acircumflex -140
2056
+ KPX Ydieresis adieresis -140
2057
+ KPX Ydieresis agrave -140
2058
+ KPX Ydieresis amacron -70
2059
+ KPX Ydieresis aogonek -140
2060
+ KPX Ydieresis aring -140
2061
+ KPX Ydieresis atilde -70
2062
+ KPX Ydieresis colon -60
2063
+ KPX Ydieresis comma -140
2064
+ KPX Ydieresis e -140
2065
+ KPX Ydieresis eacute -140
2066
+ KPX Ydieresis ecaron -140
2067
+ KPX Ydieresis ecircumflex -140
2068
+ KPX Ydieresis edieresis -140
2069
+ KPX Ydieresis edotaccent -140
2070
+ KPX Ydieresis egrave -140
2071
+ KPX Ydieresis emacron -70
2072
+ KPX Ydieresis eogonek -140
2073
+ KPX Ydieresis hyphen -140
2074
+ KPX Ydieresis i -20
2075
+ KPX Ydieresis iacute -20
2076
+ KPX Ydieresis iogonek -20
2077
+ KPX Ydieresis o -140
2078
+ KPX Ydieresis oacute -140
2079
+ KPX Ydieresis ocircumflex -140
2080
+ KPX Ydieresis odieresis -140
2081
+ KPX Ydieresis ograve -140
2082
+ KPX Ydieresis ohungarumlaut -140
2083
+ KPX Ydieresis omacron -140
2084
+ KPX Ydieresis oslash -140
2085
+ KPX Ydieresis otilde -140
2086
+ KPX Ydieresis period -140
2087
+ KPX Ydieresis semicolon -60
2088
+ KPX Ydieresis u -110
2089
+ KPX Ydieresis uacute -110
2090
+ KPX Ydieresis ucircumflex -110
2091
+ KPX Ydieresis udieresis -110
2092
+ KPX Ydieresis ugrave -110
2093
+ KPX Ydieresis uhungarumlaut -110
2094
+ KPX Ydieresis umacron -110
2095
+ KPX Ydieresis uogonek -110
2096
+ KPX Ydieresis uring -110
2097
+ KPX a v -20
2098
+ KPX a w -20
2099
+ KPX a y -30
2100
+ KPX a yacute -30
2101
+ KPX a ydieresis -30
2102
+ KPX aacute v -20
2103
+ KPX aacute w -20
2104
+ KPX aacute y -30
2105
+ KPX aacute yacute -30
2106
+ KPX aacute ydieresis -30
2107
+ KPX abreve v -20
2108
+ KPX abreve w -20
2109
+ KPX abreve y -30
2110
+ KPX abreve yacute -30
2111
+ KPX abreve ydieresis -30
2112
+ KPX acircumflex v -20
2113
+ KPX acircumflex w -20
2114
+ KPX acircumflex y -30
2115
+ KPX acircumflex yacute -30
2116
+ KPX acircumflex ydieresis -30
2117
+ KPX adieresis v -20
2118
+ KPX adieresis w -20
2119
+ KPX adieresis y -30
2120
+ KPX adieresis yacute -30
2121
+ KPX adieresis ydieresis -30
2122
+ KPX agrave v -20
2123
+ KPX agrave w -20
2124
+ KPX agrave y -30
2125
+ KPX agrave yacute -30
2126
+ KPX agrave ydieresis -30
2127
+ KPX amacron v -20
2128
+ KPX amacron w -20
2129
+ KPX amacron y -30
2130
+ KPX amacron yacute -30
2131
+ KPX amacron ydieresis -30
2132
+ KPX aogonek v -20
2133
+ KPX aogonek w -20
2134
+ KPX aogonek y -30
2135
+ KPX aogonek yacute -30
2136
+ KPX aogonek ydieresis -30
2137
+ KPX aring v -20
2138
+ KPX aring w -20
2139
+ KPX aring y -30
2140
+ KPX aring yacute -30
2141
+ KPX aring ydieresis -30
2142
+ KPX atilde v -20
2143
+ KPX atilde w -20
2144
+ KPX atilde y -30
2145
+ KPX atilde yacute -30
2146
+ KPX atilde ydieresis -30
2147
+ KPX b b -10
2148
+ KPX b comma -40
2149
+ KPX b l -20
2150
+ KPX b lacute -20
2151
+ KPX b lcommaaccent -20
2152
+ KPX b lslash -20
2153
+ KPX b period -40
2154
+ KPX b u -20
2155
+ KPX b uacute -20
2156
+ KPX b ucircumflex -20
2157
+ KPX b udieresis -20
2158
+ KPX b ugrave -20
2159
+ KPX b uhungarumlaut -20
2160
+ KPX b umacron -20
2161
+ KPX b uogonek -20
2162
+ KPX b uring -20
2163
+ KPX b v -20
2164
+ KPX b y -20
2165
+ KPX b yacute -20
2166
+ KPX b ydieresis -20
2167
+ KPX c comma -15
2168
+ KPX c k -20
2169
+ KPX c kcommaaccent -20
2170
+ KPX cacute comma -15
2171
+ KPX cacute k -20
2172
+ KPX cacute kcommaaccent -20
2173
+ KPX ccaron comma -15
2174
+ KPX ccaron k -20
2175
+ KPX ccaron kcommaaccent -20
2176
+ KPX ccedilla comma -15
2177
+ KPX ccedilla k -20
2178
+ KPX ccedilla kcommaaccent -20
2179
+ KPX colon space -50
2180
+ KPX comma quotedblright -100
2181
+ KPX comma quoteright -100
2182
+ KPX e comma -15
2183
+ KPX e period -15
2184
+ KPX e v -30
2185
+ KPX e w -20
2186
+ KPX e x -30
2187
+ KPX e y -20
2188
+ KPX e yacute -20
2189
+ KPX e ydieresis -20
2190
+ KPX eacute comma -15
2191
+ KPX eacute period -15
2192
+ KPX eacute v -30
2193
+ KPX eacute w -20
2194
+ KPX eacute x -30
2195
+ KPX eacute y -20
2196
+ KPX eacute yacute -20
2197
+ KPX eacute ydieresis -20
2198
+ KPX ecaron comma -15
2199
+ KPX ecaron period -15
2200
+ KPX ecaron v -30
2201
+ KPX ecaron w -20
2202
+ KPX ecaron x -30
2203
+ KPX ecaron y -20
2204
+ KPX ecaron yacute -20
2205
+ KPX ecaron ydieresis -20
2206
+ KPX ecircumflex comma -15
2207
+ KPX ecircumflex period -15
2208
+ KPX ecircumflex v -30
2209
+ KPX ecircumflex w -20
2210
+ KPX ecircumflex x -30
2211
+ KPX ecircumflex y -20
2212
+ KPX ecircumflex yacute -20
2213
+ KPX ecircumflex ydieresis -20
2214
+ KPX edieresis comma -15
2215
+ KPX edieresis period -15
2216
+ KPX edieresis v -30
2217
+ KPX edieresis w -20
2218
+ KPX edieresis x -30
2219
+ KPX edieresis y -20
2220
+ KPX edieresis yacute -20
2221
+ KPX edieresis ydieresis -20
2222
+ KPX edotaccent comma -15
2223
+ KPX edotaccent period -15
2224
+ KPX edotaccent v -30
2225
+ KPX edotaccent w -20
2226
+ KPX edotaccent x -30
2227
+ KPX edotaccent y -20
2228
+ KPX edotaccent yacute -20
2229
+ KPX edotaccent ydieresis -20
2230
+ KPX egrave comma -15
2231
+ KPX egrave period -15
2232
+ KPX egrave v -30
2233
+ KPX egrave w -20
2234
+ KPX egrave x -30
2235
+ KPX egrave y -20
2236
+ KPX egrave yacute -20
2237
+ KPX egrave ydieresis -20
2238
+ KPX emacron comma -15
2239
+ KPX emacron period -15
2240
+ KPX emacron v -30
2241
+ KPX emacron w -20
2242
+ KPX emacron x -30
2243
+ KPX emacron y -20
2244
+ KPX emacron yacute -20
2245
+ KPX emacron ydieresis -20
2246
+ KPX eogonek comma -15
2247
+ KPX eogonek period -15
2248
+ KPX eogonek v -30
2249
+ KPX eogonek w -20
2250
+ KPX eogonek x -30
2251
+ KPX eogonek y -20
2252
+ KPX eogonek yacute -20
2253
+ KPX eogonek ydieresis -20
2254
+ KPX f a -30
2255
+ KPX f aacute -30
2256
+ KPX f abreve -30
2257
+ KPX f acircumflex -30
2258
+ KPX f adieresis -30
2259
+ KPX f agrave -30
2260
+ KPX f amacron -30
2261
+ KPX f aogonek -30
2262
+ KPX f aring -30
2263
+ KPX f atilde -30
2264
+ KPX f comma -30
2265
+ KPX f dotlessi -28
2266
+ KPX f e -30
2267
+ KPX f eacute -30
2268
+ KPX f ecaron -30
2269
+ KPX f ecircumflex -30
2270
+ KPX f edieresis -30
2271
+ KPX f edotaccent -30
2272
+ KPX f egrave -30
2273
+ KPX f emacron -30
2274
+ KPX f eogonek -30
2275
+ KPX f o -30
2276
+ KPX f oacute -30
2277
+ KPX f ocircumflex -30
2278
+ KPX f odieresis -30
2279
+ KPX f ograve -30
2280
+ KPX f ohungarumlaut -30
2281
+ KPX f omacron -30
2282
+ KPX f oslash -30
2283
+ KPX f otilde -30
2284
+ KPX f period -30
2285
+ KPX f quotedblright 60
2286
+ KPX f quoteright 50
2287
+ KPX g r -10
2288
+ KPX g racute -10
2289
+ KPX g rcaron -10
2290
+ KPX g rcommaaccent -10
2291
+ KPX gbreve r -10
2292
+ KPX gbreve racute -10
2293
+ KPX gbreve rcaron -10
2294
+ KPX gbreve rcommaaccent -10
2295
+ KPX gcommaaccent r -10
2296
+ KPX gcommaaccent racute -10
2297
+ KPX gcommaaccent rcaron -10
2298
+ KPX gcommaaccent rcommaaccent -10
2299
+ KPX h y -30
2300
+ KPX h yacute -30
2301
+ KPX h ydieresis -30
2302
+ KPX k e -20
2303
+ KPX k eacute -20
2304
+ KPX k ecaron -20
2305
+ KPX k ecircumflex -20
2306
+ KPX k edieresis -20
2307
+ KPX k edotaccent -20
2308
+ KPX k egrave -20
2309
+ KPX k emacron -20
2310
+ KPX k eogonek -20
2311
+ KPX k o -20
2312
+ KPX k oacute -20
2313
+ KPX k ocircumflex -20
2314
+ KPX k odieresis -20
2315
+ KPX k ograve -20
2316
+ KPX k ohungarumlaut -20
2317
+ KPX k omacron -20
2318
+ KPX k oslash -20
2319
+ KPX k otilde -20
2320
+ KPX kcommaaccent e -20
2321
+ KPX kcommaaccent eacute -20
2322
+ KPX kcommaaccent ecaron -20
2323
+ KPX kcommaaccent ecircumflex -20
2324
+ KPX kcommaaccent edieresis -20
2325
+ KPX kcommaaccent edotaccent -20
2326
+ KPX kcommaaccent egrave -20
2327
+ KPX kcommaaccent emacron -20
2328
+ KPX kcommaaccent eogonek -20
2329
+ KPX kcommaaccent o -20
2330
+ KPX kcommaaccent oacute -20
2331
+ KPX kcommaaccent ocircumflex -20
2332
+ KPX kcommaaccent odieresis -20
2333
+ KPX kcommaaccent ograve -20
2334
+ KPX kcommaaccent ohungarumlaut -20
2335
+ KPX kcommaaccent omacron -20
2336
+ KPX kcommaaccent oslash -20
2337
+ KPX kcommaaccent otilde -20
2338
+ KPX m u -10
2339
+ KPX m uacute -10
2340
+ KPX m ucircumflex -10
2341
+ KPX m udieresis -10
2342
+ KPX m ugrave -10
2343
+ KPX m uhungarumlaut -10
2344
+ KPX m umacron -10
2345
+ KPX m uogonek -10
2346
+ KPX m uring -10
2347
+ KPX m y -15
2348
+ KPX m yacute -15
2349
+ KPX m ydieresis -15
2350
+ KPX n u -10
2351
+ KPX n uacute -10
2352
+ KPX n ucircumflex -10
2353
+ KPX n udieresis -10
2354
+ KPX n ugrave -10
2355
+ KPX n uhungarumlaut -10
2356
+ KPX n umacron -10
2357
+ KPX n uogonek -10
2358
+ KPX n uring -10
2359
+ KPX n v -20
2360
+ KPX n y -15
2361
+ KPX n yacute -15
2362
+ KPX n ydieresis -15
2363
+ KPX nacute u -10
2364
+ KPX nacute uacute -10
2365
+ KPX nacute ucircumflex -10
2366
+ KPX nacute udieresis -10
2367
+ KPX nacute ugrave -10
2368
+ KPX nacute uhungarumlaut -10
2369
+ KPX nacute umacron -10
2370
+ KPX nacute uogonek -10
2371
+ KPX nacute uring -10
2372
+ KPX nacute v -20
2373
+ KPX nacute y -15
2374
+ KPX nacute yacute -15
2375
+ KPX nacute ydieresis -15
2376
+ KPX ncaron u -10
2377
+ KPX ncaron uacute -10
2378
+ KPX ncaron ucircumflex -10
2379
+ KPX ncaron udieresis -10
2380
+ KPX ncaron ugrave -10
2381
+ KPX ncaron uhungarumlaut -10
2382
+ KPX ncaron umacron -10
2383
+ KPX ncaron uogonek -10
2384
+ KPX ncaron uring -10
2385
+ KPX ncaron v -20
2386
+ KPX ncaron y -15
2387
+ KPX ncaron yacute -15
2388
+ KPX ncaron ydieresis -15
2389
+ KPX ncommaaccent u -10
2390
+ KPX ncommaaccent uacute -10
2391
+ KPX ncommaaccent ucircumflex -10
2392
+ KPX ncommaaccent udieresis -10
2393
+ KPX ncommaaccent ugrave -10
2394
+ KPX ncommaaccent uhungarumlaut -10
2395
+ KPX ncommaaccent umacron -10
2396
+ KPX ncommaaccent uogonek -10
2397
+ KPX ncommaaccent uring -10
2398
+ KPX ncommaaccent v -20
2399
+ KPX ncommaaccent y -15
2400
+ KPX ncommaaccent yacute -15
2401
+ KPX ncommaaccent ydieresis -15
2402
+ KPX ntilde u -10
2403
+ KPX ntilde uacute -10
2404
+ KPX ntilde ucircumflex -10
2405
+ KPX ntilde udieresis -10
2406
+ KPX ntilde ugrave -10
2407
+ KPX ntilde uhungarumlaut -10
2408
+ KPX ntilde umacron -10
2409
+ KPX ntilde uogonek -10
2410
+ KPX ntilde uring -10
2411
+ KPX ntilde v -20
2412
+ KPX ntilde y -15
2413
+ KPX ntilde yacute -15
2414
+ KPX ntilde ydieresis -15
2415
+ KPX o comma -40
2416
+ KPX o period -40
2417
+ KPX o v -15
2418
+ KPX o w -15
2419
+ KPX o x -30
2420
+ KPX o y -30
2421
+ KPX o yacute -30
2422
+ KPX o ydieresis -30
2423
+ KPX oacute comma -40
2424
+ KPX oacute period -40
2425
+ KPX oacute v -15
2426
+ KPX oacute w -15
2427
+ KPX oacute x -30
2428
+ KPX oacute y -30
2429
+ KPX oacute yacute -30
2430
+ KPX oacute ydieresis -30
2431
+ KPX ocircumflex comma -40
2432
+ KPX ocircumflex period -40
2433
+ KPX ocircumflex v -15
2434
+ KPX ocircumflex w -15
2435
+ KPX ocircumflex x -30
2436
+ KPX ocircumflex y -30
2437
+ KPX ocircumflex yacute -30
2438
+ KPX ocircumflex ydieresis -30
2439
+ KPX odieresis comma -40
2440
+ KPX odieresis period -40
2441
+ KPX odieresis v -15
2442
+ KPX odieresis w -15
2443
+ KPX odieresis x -30
2444
+ KPX odieresis y -30
2445
+ KPX odieresis yacute -30
2446
+ KPX odieresis ydieresis -30
2447
+ KPX ograve comma -40
2448
+ KPX ograve period -40
2449
+ KPX ograve v -15
2450
+ KPX ograve w -15
2451
+ KPX ograve x -30
2452
+ KPX ograve y -30
2453
+ KPX ograve yacute -30
2454
+ KPX ograve ydieresis -30
2455
+ KPX ohungarumlaut comma -40
2456
+ KPX ohungarumlaut period -40
2457
+ KPX ohungarumlaut v -15
2458
+ KPX ohungarumlaut w -15
2459
+ KPX ohungarumlaut x -30
2460
+ KPX ohungarumlaut y -30
2461
+ KPX ohungarumlaut yacute -30
2462
+ KPX ohungarumlaut ydieresis -30
2463
+ KPX omacron comma -40
2464
+ KPX omacron period -40
2465
+ KPX omacron v -15
2466
+ KPX omacron w -15
2467
+ KPX omacron x -30
2468
+ KPX omacron y -30
2469
+ KPX omacron yacute -30
2470
+ KPX omacron ydieresis -30
2471
+ KPX oslash a -55
2472
+ KPX oslash aacute -55
2473
+ KPX oslash abreve -55
2474
+ KPX oslash acircumflex -55
2475
+ KPX oslash adieresis -55
2476
+ KPX oslash agrave -55
2477
+ KPX oslash amacron -55
2478
+ KPX oslash aogonek -55
2479
+ KPX oslash aring -55
2480
+ KPX oslash atilde -55
2481
+ KPX oslash b -55
2482
+ KPX oslash c -55
2483
+ KPX oslash cacute -55
2484
+ KPX oslash ccaron -55
2485
+ KPX oslash ccedilla -55
2486
+ KPX oslash comma -95
2487
+ KPX oslash d -55
2488
+ KPX oslash dcroat -55
2489
+ KPX oslash e -55
2490
+ KPX oslash eacute -55
2491
+ KPX oslash ecaron -55
2492
+ KPX oslash ecircumflex -55
2493
+ KPX oslash edieresis -55
2494
+ KPX oslash edotaccent -55
2495
+ KPX oslash egrave -55
2496
+ KPX oslash emacron -55
2497
+ KPX oslash eogonek -55
2498
+ KPX oslash f -55
2499
+ KPX oslash g -55
2500
+ KPX oslash gbreve -55
2501
+ KPX oslash gcommaaccent -55
2502
+ KPX oslash h -55
2503
+ KPX oslash i -55
2504
+ KPX oslash iacute -55
2505
+ KPX oslash icircumflex -55
2506
+ KPX oslash idieresis -55
2507
+ KPX oslash igrave -55
2508
+ KPX oslash imacron -55
2509
+ KPX oslash iogonek -55
2510
+ KPX oslash j -55
2511
+ KPX oslash k -55
2512
+ KPX oslash kcommaaccent -55
2513
+ KPX oslash l -55
2514
+ KPX oslash lacute -55
2515
+ KPX oslash lcommaaccent -55
2516
+ KPX oslash lslash -55
2517
+ KPX oslash m -55
2518
+ KPX oslash n -55
2519
+ KPX oslash nacute -55
2520
+ KPX oslash ncaron -55
2521
+ KPX oslash ncommaaccent -55
2522
+ KPX oslash ntilde -55
2523
+ KPX oslash o -55
2524
+ KPX oslash oacute -55
2525
+ KPX oslash ocircumflex -55
2526
+ KPX oslash odieresis -55
2527
+ KPX oslash ograve -55
2528
+ KPX oslash ohungarumlaut -55
2529
+ KPX oslash omacron -55
2530
+ KPX oslash oslash -55
2531
+ KPX oslash otilde -55
2532
+ KPX oslash p -55
2533
+ KPX oslash period -95
2534
+ KPX oslash q -55
2535
+ KPX oslash r -55
2536
+ KPX oslash racute -55
2537
+ KPX oslash rcaron -55
2538
+ KPX oslash rcommaaccent -55
2539
+ KPX oslash s -55
2540
+ KPX oslash sacute -55
2541
+ KPX oslash scaron -55
2542
+ KPX oslash scedilla -55
2543
+ KPX oslash scommaaccent -55
2544
+ KPX oslash t -55
2545
+ KPX oslash tcommaaccent -55
2546
+ KPX oslash u -55
2547
+ KPX oslash uacute -55
2548
+ KPX oslash ucircumflex -55
2549
+ KPX oslash udieresis -55
2550
+ KPX oslash ugrave -55
2551
+ KPX oslash uhungarumlaut -55
2552
+ KPX oslash umacron -55
2553
+ KPX oslash uogonek -55
2554
+ KPX oslash uring -55
2555
+ KPX oslash v -70
2556
+ KPX oslash w -70
2557
+ KPX oslash x -85
2558
+ KPX oslash y -70
2559
+ KPX oslash yacute -70
2560
+ KPX oslash ydieresis -70
2561
+ KPX oslash z -55
2562
+ KPX oslash zacute -55
2563
+ KPX oslash zcaron -55
2564
+ KPX oslash zdotaccent -55
2565
+ KPX otilde comma -40
2566
+ KPX otilde period -40
2567
+ KPX otilde v -15
2568
+ KPX otilde w -15
2569
+ KPX otilde x -30
2570
+ KPX otilde y -30
2571
+ KPX otilde yacute -30
2572
+ KPX otilde ydieresis -30
2573
+ KPX p comma -35
2574
+ KPX p period -35
2575
+ KPX p y -30
2576
+ KPX p yacute -30
2577
+ KPX p ydieresis -30
2578
+ KPX period quotedblright -100
2579
+ KPX period quoteright -100
2580
+ KPX period space -60
2581
+ KPX quotedblright space -40
2582
+ KPX quoteleft quoteleft -57
2583
+ KPX quoteright d -50
2584
+ KPX quoteright dcroat -50
2585
+ KPX quoteright quoteright -57
2586
+ KPX quoteright r -50
2587
+ KPX quoteright racute -50
2588
+ KPX quoteright rcaron -50
2589
+ KPX quoteright rcommaaccent -50
2590
+ KPX quoteright s -50
2591
+ KPX quoteright sacute -50
2592
+ KPX quoteright scaron -50
2593
+ KPX quoteright scedilla -50
2594
+ KPX quoteright scommaaccent -50
2595
+ KPX quoteright space -70
2596
+ KPX r a -10
2597
+ KPX r aacute -10
2598
+ KPX r abreve -10
2599
+ KPX r acircumflex -10
2600
+ KPX r adieresis -10
2601
+ KPX r agrave -10
2602
+ KPX r amacron -10
2603
+ KPX r aogonek -10
2604
+ KPX r aring -10
2605
+ KPX r atilde -10
2606
+ KPX r colon 30
2607
+ KPX r comma -50
2608
+ KPX r i 15
2609
+ KPX r iacute 15
2610
+ KPX r icircumflex 15
2611
+ KPX r idieresis 15
2612
+ KPX r igrave 15
2613
+ KPX r imacron 15
2614
+ KPX r iogonek 15
2615
+ KPX r k 15
2616
+ KPX r kcommaaccent 15
2617
+ KPX r l 15
2618
+ KPX r lacute 15
2619
+ KPX r lcommaaccent 15
2620
+ KPX r lslash 15
2621
+ KPX r m 25
2622
+ KPX r n 25
2623
+ KPX r nacute 25
2624
+ KPX r ncaron 25
2625
+ KPX r ncommaaccent 25
2626
+ KPX r ntilde 25
2627
+ KPX r p 30
2628
+ KPX r period -50
2629
+ KPX r semicolon 30
2630
+ KPX r t 40
2631
+ KPX r tcommaaccent 40
2632
+ KPX r u 15
2633
+ KPX r uacute 15
2634
+ KPX r ucircumflex 15
2635
+ KPX r udieresis 15
2636
+ KPX r ugrave 15
2637
+ KPX r uhungarumlaut 15
2638
+ KPX r umacron 15
2639
+ KPX r uogonek 15
2640
+ KPX r uring 15
2641
+ KPX r v 30
2642
+ KPX r y 30
2643
+ KPX r yacute 30
2644
+ KPX r ydieresis 30
2645
+ KPX racute a -10
2646
+ KPX racute aacute -10
2647
+ KPX racute abreve -10
2648
+ KPX racute acircumflex -10
2649
+ KPX racute adieresis -10
2650
+ KPX racute agrave -10
2651
+ KPX racute amacron -10
2652
+ KPX racute aogonek -10
2653
+ KPX racute aring -10
2654
+ KPX racute atilde -10
2655
+ KPX racute colon 30
2656
+ KPX racute comma -50
2657
+ KPX racute i 15
2658
+ KPX racute iacute 15
2659
+ KPX racute icircumflex 15
2660
+ KPX racute idieresis 15
2661
+ KPX racute igrave 15
2662
+ KPX racute imacron 15
2663
+ KPX racute iogonek 15
2664
+ KPX racute k 15
2665
+ KPX racute kcommaaccent 15
2666
+ KPX racute l 15
2667
+ KPX racute lacute 15
2668
+ KPX racute lcommaaccent 15
2669
+ KPX racute lslash 15
2670
+ KPX racute m 25
2671
+ KPX racute n 25
2672
+ KPX racute nacute 25
2673
+ KPX racute ncaron 25
2674
+ KPX racute ncommaaccent 25
2675
+ KPX racute ntilde 25
2676
+ KPX racute p 30
2677
+ KPX racute period -50
2678
+ KPX racute semicolon 30
2679
+ KPX racute t 40
2680
+ KPX racute tcommaaccent 40
2681
+ KPX racute u 15
2682
+ KPX racute uacute 15
2683
+ KPX racute ucircumflex 15
2684
+ KPX racute udieresis 15
2685
+ KPX racute ugrave 15
2686
+ KPX racute uhungarumlaut 15
2687
+ KPX racute umacron 15
2688
+ KPX racute uogonek 15
2689
+ KPX racute uring 15
2690
+ KPX racute v 30
2691
+ KPX racute y 30
2692
+ KPX racute yacute 30
2693
+ KPX racute ydieresis 30
2694
+ KPX rcaron a -10
2695
+ KPX rcaron aacute -10
2696
+ KPX rcaron abreve -10
2697
+ KPX rcaron acircumflex -10
2698
+ KPX rcaron adieresis -10
2699
+ KPX rcaron agrave -10
2700
+ KPX rcaron amacron -10
2701
+ KPX rcaron aogonek -10
2702
+ KPX rcaron aring -10
2703
+ KPX rcaron atilde -10
2704
+ KPX rcaron colon 30
2705
+ KPX rcaron comma -50
2706
+ KPX rcaron i 15
2707
+ KPX rcaron iacute 15
2708
+ KPX rcaron icircumflex 15
2709
+ KPX rcaron idieresis 15
2710
+ KPX rcaron igrave 15
2711
+ KPX rcaron imacron 15
2712
+ KPX rcaron iogonek 15
2713
+ KPX rcaron k 15
2714
+ KPX rcaron kcommaaccent 15
2715
+ KPX rcaron l 15
2716
+ KPX rcaron lacute 15
2717
+ KPX rcaron lcommaaccent 15
2718
+ KPX rcaron lslash 15
2719
+ KPX rcaron m 25
2720
+ KPX rcaron n 25
2721
+ KPX rcaron nacute 25
2722
+ KPX rcaron ncaron 25
2723
+ KPX rcaron ncommaaccent 25
2724
+ KPX rcaron ntilde 25
2725
+ KPX rcaron p 30
2726
+ KPX rcaron period -50
2727
+ KPX rcaron semicolon 30
2728
+ KPX rcaron t 40
2729
+ KPX rcaron tcommaaccent 40
2730
+ KPX rcaron u 15
2731
+ KPX rcaron uacute 15
2732
+ KPX rcaron ucircumflex 15
2733
+ KPX rcaron udieresis 15
2734
+ KPX rcaron ugrave 15
2735
+ KPX rcaron uhungarumlaut 15
2736
+ KPX rcaron umacron 15
2737
+ KPX rcaron uogonek 15
2738
+ KPX rcaron uring 15
2739
+ KPX rcaron v 30
2740
+ KPX rcaron y 30
2741
+ KPX rcaron yacute 30
2742
+ KPX rcaron ydieresis 30
2743
+ KPX rcommaaccent a -10
2744
+ KPX rcommaaccent aacute -10
2745
+ KPX rcommaaccent abreve -10
2746
+ KPX rcommaaccent acircumflex -10
2747
+ KPX rcommaaccent adieresis -10
2748
+ KPX rcommaaccent agrave -10
2749
+ KPX rcommaaccent amacron -10
2750
+ KPX rcommaaccent aogonek -10
2751
+ KPX rcommaaccent aring -10
2752
+ KPX rcommaaccent atilde -10
2753
+ KPX rcommaaccent colon 30
2754
+ KPX rcommaaccent comma -50
2755
+ KPX rcommaaccent i 15
2756
+ KPX rcommaaccent iacute 15
2757
+ KPX rcommaaccent icircumflex 15
2758
+ KPX rcommaaccent idieresis 15
2759
+ KPX rcommaaccent igrave 15
2760
+ KPX rcommaaccent imacron 15
2761
+ KPX rcommaaccent iogonek 15
2762
+ KPX rcommaaccent k 15
2763
+ KPX rcommaaccent kcommaaccent 15
2764
+ KPX rcommaaccent l 15
2765
+ KPX rcommaaccent lacute 15
2766
+ KPX rcommaaccent lcommaaccent 15
2767
+ KPX rcommaaccent lslash 15
2768
+ KPX rcommaaccent m 25
2769
+ KPX rcommaaccent n 25
2770
+ KPX rcommaaccent nacute 25
2771
+ KPX rcommaaccent ncaron 25
2772
+ KPX rcommaaccent ncommaaccent 25
2773
+ KPX rcommaaccent ntilde 25
2774
+ KPX rcommaaccent p 30
2775
+ KPX rcommaaccent period -50
2776
+ KPX rcommaaccent semicolon 30
2777
+ KPX rcommaaccent t 40
2778
+ KPX rcommaaccent tcommaaccent 40
2779
+ KPX rcommaaccent u 15
2780
+ KPX rcommaaccent uacute 15
2781
+ KPX rcommaaccent ucircumflex 15
2782
+ KPX rcommaaccent udieresis 15
2783
+ KPX rcommaaccent ugrave 15
2784
+ KPX rcommaaccent uhungarumlaut 15
2785
+ KPX rcommaaccent umacron 15
2786
+ KPX rcommaaccent uogonek 15
2787
+ KPX rcommaaccent uring 15
2788
+ KPX rcommaaccent v 30
2789
+ KPX rcommaaccent y 30
2790
+ KPX rcommaaccent yacute 30
2791
+ KPX rcommaaccent ydieresis 30
2792
+ KPX s comma -15
2793
+ KPX s period -15
2794
+ KPX s w -30
2795
+ KPX sacute comma -15
2796
+ KPX sacute period -15
2797
+ KPX sacute w -30
2798
+ KPX scaron comma -15
2799
+ KPX scaron period -15
2800
+ KPX scaron w -30
2801
+ KPX scedilla comma -15
2802
+ KPX scedilla period -15
2803
+ KPX scedilla w -30
2804
+ KPX scommaaccent comma -15
2805
+ KPX scommaaccent period -15
2806
+ KPX scommaaccent w -30
2807
+ KPX semicolon space -50
2808
+ KPX space T -50
2809
+ KPX space Tcaron -50
2810
+ KPX space Tcommaaccent -50
2811
+ KPX space V -50
2812
+ KPX space W -40
2813
+ KPX space Y -90
2814
+ KPX space Yacute -90
2815
+ KPX space Ydieresis -90
2816
+ KPX space quotedblleft -30
2817
+ KPX space quoteleft -60
2818
+ KPX v a -25
2819
+ KPX v aacute -25
2820
+ KPX v abreve -25
2821
+ KPX v acircumflex -25
2822
+ KPX v adieresis -25
2823
+ KPX v agrave -25
2824
+ KPX v amacron -25
2825
+ KPX v aogonek -25
2826
+ KPX v aring -25
2827
+ KPX v atilde -25
2828
+ KPX v comma -80
2829
+ KPX v e -25
2830
+ KPX v eacute -25
2831
+ KPX v ecaron -25
2832
+ KPX v ecircumflex -25
2833
+ KPX v edieresis -25
2834
+ KPX v edotaccent -25
2835
+ KPX v egrave -25
2836
+ KPX v emacron -25
2837
+ KPX v eogonek -25
2838
+ KPX v o -25
2839
+ KPX v oacute -25
2840
+ KPX v ocircumflex -25
2841
+ KPX v odieresis -25
2842
+ KPX v ograve -25
2843
+ KPX v ohungarumlaut -25
2844
+ KPX v omacron -25
2845
+ KPX v oslash -25
2846
+ KPX v otilde -25
2847
+ KPX v period -80
2848
+ KPX w a -15
2849
+ KPX w aacute -15
2850
+ KPX w abreve -15
2851
+ KPX w acircumflex -15
2852
+ KPX w adieresis -15
2853
+ KPX w agrave -15
2854
+ KPX w amacron -15
2855
+ KPX w aogonek -15
2856
+ KPX w aring -15
2857
+ KPX w atilde -15
2858
+ KPX w comma -60
2859
+ KPX w e -10
2860
+ KPX w eacute -10
2861
+ KPX w ecaron -10
2862
+ KPX w ecircumflex -10
2863
+ KPX w edieresis -10
2864
+ KPX w edotaccent -10
2865
+ KPX w egrave -10
2866
+ KPX w emacron -10
2867
+ KPX w eogonek -10
2868
+ KPX w o -10
2869
+ KPX w oacute -10
2870
+ KPX w ocircumflex -10
2871
+ KPX w odieresis -10
2872
+ KPX w ograve -10
2873
+ KPX w ohungarumlaut -10
2874
+ KPX w omacron -10
2875
+ KPX w oslash -10
2876
+ KPX w otilde -10
2877
+ KPX w period -60
2878
+ KPX x e -30
2879
+ KPX x eacute -30
2880
+ KPX x ecaron -30
2881
+ KPX x ecircumflex -30
2882
+ KPX x edieresis -30
2883
+ KPX x edotaccent -30
2884
+ KPX x egrave -30
2885
+ KPX x emacron -30
2886
+ KPX x eogonek -30
2887
+ KPX y a -20
2888
+ KPX y aacute -20
2889
+ KPX y abreve -20
2890
+ KPX y acircumflex -20
2891
+ KPX y adieresis -20
2892
+ KPX y agrave -20
2893
+ KPX y amacron -20
2894
+ KPX y aogonek -20
2895
+ KPX y aring -20
2896
+ KPX y atilde -20
2897
+ KPX y comma -100
2898
+ KPX y e -20
2899
+ KPX y eacute -20
2900
+ KPX y ecaron -20
2901
+ KPX y ecircumflex -20
2902
+ KPX y edieresis -20
2903
+ KPX y edotaccent -20
2904
+ KPX y egrave -20
2905
+ KPX y emacron -20
2906
+ KPX y eogonek -20
2907
+ KPX y o -20
2908
+ KPX y oacute -20
2909
+ KPX y ocircumflex -20
2910
+ KPX y odieresis -20
2911
+ KPX y ograve -20
2912
+ KPX y ohungarumlaut -20
2913
+ KPX y omacron -20
2914
+ KPX y oslash -20
2915
+ KPX y otilde -20
2916
+ KPX y period -100
2917
+ KPX yacute a -20
2918
+ KPX yacute aacute -20
2919
+ KPX yacute abreve -20
2920
+ KPX yacute acircumflex -20
2921
+ KPX yacute adieresis -20
2922
+ KPX yacute agrave -20
2923
+ KPX yacute amacron -20
2924
+ KPX yacute aogonek -20
2925
+ KPX yacute aring -20
2926
+ KPX yacute atilde -20
2927
+ KPX yacute comma -100
2928
+ KPX yacute e -20
2929
+ KPX yacute eacute -20
2930
+ KPX yacute ecaron -20
2931
+ KPX yacute ecircumflex -20
2932
+ KPX yacute edieresis -20
2933
+ KPX yacute edotaccent -20
2934
+ KPX yacute egrave -20
2935
+ KPX yacute emacron -20
2936
+ KPX yacute eogonek -20
2937
+ KPX yacute o -20
2938
+ KPX yacute oacute -20
2939
+ KPX yacute ocircumflex -20
2940
+ KPX yacute odieresis -20
2941
+ KPX yacute ograve -20
2942
+ KPX yacute ohungarumlaut -20
2943
+ KPX yacute omacron -20
2944
+ KPX yacute oslash -20
2945
+ KPX yacute otilde -20
2946
+ KPX yacute period -100
2947
+ KPX ydieresis a -20
2948
+ KPX ydieresis aacute -20
2949
+ KPX ydieresis abreve -20
2950
+ KPX ydieresis acircumflex -20
2951
+ KPX ydieresis adieresis -20
2952
+ KPX ydieresis agrave -20
2953
+ KPX ydieresis amacron -20
2954
+ KPX ydieresis aogonek -20
2955
+ KPX ydieresis aring -20
2956
+ KPX ydieresis atilde -20
2957
+ KPX ydieresis comma -100
2958
+ KPX ydieresis e -20
2959
+ KPX ydieresis eacute -20
2960
+ KPX ydieresis ecaron -20
2961
+ KPX ydieresis ecircumflex -20
2962
+ KPX ydieresis edieresis -20
2963
+ KPX ydieresis edotaccent -20
2964
+ KPX ydieresis egrave -20
2965
+ KPX ydieresis emacron -20
2966
+ KPX ydieresis eogonek -20
2967
+ KPX ydieresis o -20
2968
+ KPX ydieresis oacute -20
2969
+ KPX ydieresis ocircumflex -20
2970
+ KPX ydieresis odieresis -20
2971
+ KPX ydieresis ograve -20
2972
+ KPX ydieresis ohungarumlaut -20
2973
+ KPX ydieresis omacron -20
2974
+ KPX ydieresis oslash -20
2975
+ KPX ydieresis otilde -20
2976
+ KPX ydieresis period -100
2977
+ KPX z e -15
2978
+ KPX z eacute -15
2979
+ KPX z ecaron -15
2980
+ KPX z ecircumflex -15
2981
+ KPX z edieresis -15
2982
+ KPX z edotaccent -15
2983
+ KPX z egrave -15
2984
+ KPX z emacron -15
2985
+ KPX z eogonek -15
2986
+ KPX z o -15
2987
+ KPX z oacute -15
2988
+ KPX z ocircumflex -15
2989
+ KPX z odieresis -15
2990
+ KPX z ograve -15
2991
+ KPX z ohungarumlaut -15
2992
+ KPX z omacron -15
2993
+ KPX z oslash -15
2994
+ KPX z otilde -15
2995
+ KPX zacute e -15
2996
+ KPX zacute eacute -15
2997
+ KPX zacute ecaron -15
2998
+ KPX zacute ecircumflex -15
2999
+ KPX zacute edieresis -15
3000
+ KPX zacute edotaccent -15
3001
+ KPX zacute egrave -15
3002
+ KPX zacute emacron -15
3003
+ KPX zacute eogonek -15
3004
+ KPX zacute o -15
3005
+ KPX zacute oacute -15
3006
+ KPX zacute ocircumflex -15
3007
+ KPX zacute odieresis -15
3008
+ KPX zacute ograve -15
3009
+ KPX zacute ohungarumlaut -15
3010
+ KPX zacute omacron -15
3011
+ KPX zacute oslash -15
3012
+ KPX zacute otilde -15
3013
+ KPX zcaron e -15
3014
+ KPX zcaron eacute -15
3015
+ KPX zcaron ecaron -15
3016
+ KPX zcaron ecircumflex -15
3017
+ KPX zcaron edieresis -15
3018
+ KPX zcaron edotaccent -15
3019
+ KPX zcaron egrave -15
3020
+ KPX zcaron emacron -15
3021
+ KPX zcaron eogonek -15
3022
+ KPX zcaron o -15
3023
+ KPX zcaron oacute -15
3024
+ KPX zcaron ocircumflex -15
3025
+ KPX zcaron odieresis -15
3026
+ KPX zcaron ograve -15
3027
+ KPX zcaron ohungarumlaut -15
3028
+ KPX zcaron omacron -15
3029
+ KPX zcaron oslash -15
3030
+ KPX zcaron otilde -15
3031
+ KPX zdotaccent e -15
3032
+ KPX zdotaccent eacute -15
3033
+ KPX zdotaccent ecaron -15
3034
+ KPX zdotaccent ecircumflex -15
3035
+ KPX zdotaccent edieresis -15
3036
+ KPX zdotaccent edotaccent -15
3037
+ KPX zdotaccent egrave -15
3038
+ KPX zdotaccent emacron -15
3039
+ KPX zdotaccent eogonek -15
3040
+ KPX zdotaccent o -15
3041
+ KPX zdotaccent oacute -15
3042
+ KPX zdotaccent ocircumflex -15
3043
+ KPX zdotaccent odieresis -15
3044
+ KPX zdotaccent ograve -15
3045
+ KPX zdotaccent ohungarumlaut -15
3046
+ KPX zdotaccent omacron -15
3047
+ KPX zdotaccent oslash -15
3048
+ KPX zdotaccent otilde -15
3049
+ EndKernPairs
3050
+ EndKernData
3051
+ EndFontMetrics