curses 1.6.0 → 1.7.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 (935) hide show
  1. checksums.yaml +4 -4
  2. data/.devcontainer/Dockerfile +132 -0
  3. data/.devcontainer/devcontainer.json +58 -0
  4. data/.devcontainer/init-firewall.sh +139 -0
  5. data/.github/workflows/gh-pages.yml +4 -4
  6. data/.github/workflows/macos.yml +5 -2
  7. data/.github/workflows/push_gem.yml +7 -2
  8. data/.github/workflows/ubuntu.yml +5 -2
  9. data/.github/workflows/windows.yml +5 -2
  10. data/.gitmodules +3 -3
  11. data/README.md +2 -2
  12. data/curses.gemspec +1 -1
  13. data/ext/curses/extconf.rb +5 -2
  14. data/lib/curses.rb +1 -1
  15. data/vendor/PDCursesMod/.github/workflows/github_actions_build.yml +42 -0
  16. data/vendor/PDCursesMod/.gitignore +47 -0
  17. data/vendor/PDCursesMod/.travis.yml +308 -0
  18. data/vendor/PDCursesMod/CMakeLists.txt +77 -0
  19. data/vendor/PDCursesMod/README.md +60 -0
  20. data/vendor/PDCursesMod/appveyor.yml +300 -0
  21. data/vendor/PDCursesMod/cmake/README.md +71 -0
  22. data/vendor/PDCursesMod/cmake/build_dependencies.cmake +186 -0
  23. data/vendor/PDCursesMod/cmake/build_options.cmake +29 -0
  24. data/vendor/PDCursesMod/cmake/dll_version.cmake +24 -0
  25. data/vendor/PDCursesMod/cmake/gen_config_header.cmake +40 -0
  26. data/vendor/PDCursesMod/cmake/get_version.cmake +17 -0
  27. data/vendor/PDCursesMod/cmake/project_common.cmake +131 -0
  28. data/vendor/PDCursesMod/cmake/sdl2_ttf/CMakeLists.txt +95 -0
  29. data/vendor/PDCursesMod/cmake/version.in.cmake +61 -0
  30. data/vendor/PDCursesMod/cmake/watcom_open_dos16_toolchain.cmake +90 -0
  31. data/vendor/PDCursesMod/cmake/watcom_open_dos32_toolchain.cmake +89 -0
  32. data/vendor/PDCursesMod/cmake/watcom_open_os2v2_toolchain.cmake +88 -0
  33. data/vendor/PDCursesMod/cmake/watcom_open_win32_toolchain.cmake +12 -0
  34. data/vendor/PDCursesMod/common/acs_defs.h +288 -0
  35. data/vendor/PDCursesMod/common/approx.c +163 -0
  36. data/vendor/PDCursesMod/common/beep.c +70 -0
  37. data/vendor/PDCursesMod/common/blink.c +90 -0
  38. data/vendor/PDCursesMod/common/config_curses.c +134 -0
  39. data/vendor/PDCursesMod/common/dos_key.h +59 -0
  40. data/vendor/PDCursesMod/common/dosutil.c +136 -0
  41. data/vendor/PDCursesMod/common/font437.h +386 -0
  42. data/vendor/PDCursesMod/common/icon32.xpm +42 -0
  43. data/vendor/PDCursesMod/common/icon64.xpm +74 -0
  44. data/vendor/PDCursesMod/common/iconbmp.h +24 -0
  45. data/vendor/PDCursesMod/common/libobjs.mif +32 -0
  46. data/vendor/PDCursesMod/common/mouse.c +293 -0
  47. data/vendor/PDCursesMod/common/pdcclip.c +135 -0
  48. data/vendor/PDCursesMod/common/pdccolor.c +223 -0
  49. data/vendor/PDCursesMod/common/pdccolor.h +17 -0
  50. data/vendor/PDCursesMod/common/pdccolor.txt +81 -0
  51. data/vendor/PDCursesMod/common/pdcurses.rc +35 -0
  52. data/vendor/PDCursesMod/common/psf.c +250 -0
  53. data/vendor/PDCursesMod/common/psf.h +13 -0
  54. data/vendor/PDCursesMod/common/psf_wide.h +584 -0
  55. data/vendor/PDCursesMod/common/watcom.mif +224 -0
  56. data/vendor/PDCursesMod/common/winclip.c +151 -0
  57. data/vendor/PDCursesMod/common/xlates.h +142 -0
  58. data/vendor/PDCursesMod/curses.h +1972 -0
  59. data/vendor/PDCursesMod/curspriv.h +295 -0
  60. data/vendor/PDCursesMod/demos/UTF-8-demo.txt +225 -0
  61. data/vendor/PDCursesMod/demos/calendar.c +278 -0
  62. data/vendor/PDCursesMod/demos/curses.priv.h +37 -0
  63. data/vendor/PDCursesMod/demos/dates.txt +2576 -0
  64. data/vendor/PDCursesMod/demos/firework.c +149 -0
  65. data/vendor/PDCursesMod/demos/init_col.c +152 -0
  66. data/vendor/PDCursesMod/demos/mbrot.c +366 -0
  67. data/vendor/PDCursesMod/demos/nctests.mif +299 -0
  68. data/vendor/PDCursesMod/demos/ncurses_cfg.h +100 -0
  69. data/vendor/PDCursesMod/demos/newtest.c +608 -0
  70. data/vendor/PDCursesMod/demos/ozdemo.c +444 -0
  71. data/vendor/PDCursesMod/demos/picsview.c +516 -0
  72. data/vendor/PDCursesMod/demos/ptest.c +315 -0
  73. data/vendor/PDCursesMod/demos/rain.c +161 -0
  74. data/vendor/PDCursesMod/demos/snprintf.c +30 -0
  75. data/vendor/PDCursesMod/demos/speed.c +124 -0
  76. data/vendor/PDCursesMod/demos/test_pan.c +372 -0
  77. data/vendor/PDCursesMod/demos/testcurs.c +1978 -0
  78. data/vendor/PDCursesMod/demos/tui.c +816 -0
  79. data/vendor/PDCursesMod/demos/tui.h +65 -0
  80. data/vendor/PDCursesMod/demos/tuidemo.c +231 -0
  81. data/vendor/PDCursesMod/demos/version.c +66 -0
  82. data/vendor/PDCursesMod/demos/widetest.c +130 -0
  83. data/vendor/PDCursesMod/demos/worm.c +450 -0
  84. data/vendor/PDCursesMod/demos/xmas.c +955 -0
  85. data/vendor/PDCursesMod/docs/HISTORY.md +3850 -0
  86. data/vendor/PDCursesMod/docs/IMPLEMNT.md +321 -0
  87. data/vendor/PDCursesMod/docs/MANUAL.md +3304 -0
  88. data/vendor/PDCursesMod/docs/README.md +51 -0
  89. data/vendor/PDCursesMod/docs/USERS.md +451 -0
  90. data/vendor/PDCursesMod/docs/manext.awk +15 -0
  91. data/vendor/PDCursesMod/docs/mkman.sh +7 -0
  92. data/vendor/PDCursesMod/dos/CMakeLists.txt +54 -0
  93. data/vendor/PDCursesMod/dos/Makefile +85 -0
  94. data/vendor/PDCursesMod/dos/Makefile.bcc +81 -0
  95. data/vendor/PDCursesMod/dos/Makefile.dmc +315 -0
  96. data/vendor/PDCursesMod/dos/Makefile.wcc +44 -0
  97. data/vendor/PDCursesMod/dos/README.md +49 -0
  98. data/vendor/PDCursesMod/dos/pdcclip.c +1 -0
  99. data/vendor/PDCursesMod/dos/pdcdisp.c +164 -0
  100. data/vendor/PDCursesMod/dos/pdcdos.h +173 -0
  101. data/vendor/PDCursesMod/dos/pdcgetsc.c +81 -0
  102. data/vendor/PDCursesMod/dos/pdckbd.c +428 -0
  103. data/vendor/PDCursesMod/dos/pdcscrn.c +707 -0
  104. data/vendor/PDCursesMod/dos/pdcsetsc.c +120 -0
  105. data/vendor/PDCursesMod/dos/pdcutil.c +11 -0
  106. data/vendor/PDCursesMod/dosvga/CMakeLists.txt +54 -0
  107. data/vendor/PDCursesMod/dosvga/Makefile +109 -0
  108. data/vendor/PDCursesMod/dosvga/Makefile.bcc +82 -0
  109. data/vendor/PDCursesMod/dosvga/Makefile.dmc +318 -0
  110. data/vendor/PDCursesMod/dosvga/Makefile.wcc +40 -0
  111. data/vendor/PDCursesMod/dosvga/README.md +58 -0
  112. data/vendor/PDCursesMod/dosvga/cp437.h +184 -0
  113. data/vendor/PDCursesMod/dosvga/font.h +454 -0
  114. data/vendor/PDCursesMod/dosvga/hexize.c +45 -0
  115. data/vendor/PDCursesMod/dosvga/mk_font.c +35 -0
  116. data/vendor/PDCursesMod/dosvga/pdcclip.c +1 -0
  117. data/vendor/PDCursesMod/dosvga/pdcdisp.c +684 -0
  118. data/vendor/PDCursesMod/dosvga/pdcdos.h +201 -0
  119. data/vendor/PDCursesMod/dosvga/pdcgetsc.c +47 -0
  120. data/vendor/PDCursesMod/dosvga/pdckbd.c +484 -0
  121. data/vendor/PDCursesMod/dosvga/pdcscrn.c +1693 -0
  122. data/vendor/PDCursesMod/dosvga/pdcsetsc.c +79 -0
  123. data/vendor/PDCursesMod/dosvga/pdcutil.c +13 -0
  124. data/vendor/PDCursesMod/dosvga/pdcvesa.h +88 -0
  125. data/vendor/PDCursesMod/fb/Makefile +150 -0
  126. data/vendor/PDCursesMod/fb/README.md +52 -0
  127. data/vendor/PDCursesMod/fb/cursor.c +111 -0
  128. data/vendor/PDCursesMod/fb/drm.c +264 -0
  129. data/vendor/PDCursesMod/fb/pdcclip.c +1 -0
  130. data/vendor/PDCursesMod/fb/pdcdisp.c +521 -0
  131. data/vendor/PDCursesMod/fb/pdcfb.h +11 -0
  132. data/vendor/PDCursesMod/fb/pdcgetsc.c +1 -0
  133. data/vendor/PDCursesMod/fb/pdckbd.c +114 -0
  134. data/vendor/PDCursesMod/fb/pdcmouse.c +185 -0
  135. data/vendor/PDCursesMod/fb/pdcscrn.c +539 -0
  136. data/vendor/PDCursesMod/fb/pdcsetsc.c +3 -0
  137. data/vendor/PDCursesMod/fb/pdcutil.c +5 -0
  138. data/vendor/PDCursesMod/gl/CMakeLists.txt +66 -0
  139. data/vendor/PDCursesMod/gl/Makefile +188 -0
  140. data/vendor/PDCursesMod/gl/Makefile.vc +129 -0
  141. data/vendor/PDCursesMod/gl/README.md +134 -0
  142. data/vendor/PDCursesMod/gl/glfuncs.h +159 -0
  143. data/vendor/PDCursesMod/gl/pdcclip.c +93 -0
  144. data/vendor/PDCursesMod/gl/pdcdisp.c +867 -0
  145. data/vendor/PDCursesMod/gl/pdcgetsc.c +30 -0
  146. data/vendor/PDCursesMod/gl/pdcgl.h +51 -0
  147. data/vendor/PDCursesMod/gl/pdckbd.c +548 -0
  148. data/vendor/PDCursesMod/gl/pdcscrn.c +700 -0
  149. data/vendor/PDCursesMod/gl/pdcsetsc.c +99 -0
  150. data/vendor/PDCursesMod/gl/pdcutil.c +35 -0
  151. data/vendor/PDCursesMod/ncurses/CMakeLists.txt +76 -0
  152. data/vendor/PDCursesMod/ncurses/Makefile +38 -0
  153. data/vendor/PDCursesMod/os2/Makefile +150 -0
  154. data/vendor/PDCursesMod/os2/Makefile.bcc +85 -0
  155. data/vendor/PDCursesMod/os2/Makefile.wcc +26 -0
  156. data/vendor/PDCursesMod/os2/iccos2.lrf +49 -0
  157. data/vendor/PDCursesMod/os2/iccos2.mak +260 -0
  158. data/vendor/PDCursesMod/os2/pdcclip.c +172 -0
  159. data/vendor/PDCursesMod/os2/pdcdisp.c +130 -0
  160. data/vendor/PDCursesMod/os2/pdcgetsc.c +52 -0
  161. data/vendor/PDCursesMod/os2/pdckbd.c +435 -0
  162. data/vendor/PDCursesMod/os2/pdcos2.h +21 -0
  163. data/vendor/PDCursesMod/os2/pdcscrn.c +231 -0
  164. data/vendor/PDCursesMod/os2/pdcsetsc.c +110 -0
  165. data/vendor/PDCursesMod/os2/pdcutil.c +51 -0
  166. data/vendor/PDCursesMod/os2gui/.gitignore +1 -0
  167. data/vendor/PDCursesMod/os2gui/CMakeLists.txt +30 -0
  168. data/vendor/PDCursesMod/os2gui/Makefile +139 -0
  169. data/vendor/PDCursesMod/os2gui/Makefile.wcc +32 -0
  170. data/vendor/PDCursesMod/os2gui/README.md +69 -0
  171. data/vendor/PDCursesMod/os2gui/pdcclip.c +165 -0
  172. data/vendor/PDCursesMod/os2gui/pdcdisp.c +2021 -0
  173. data/vendor/PDCursesMod/os2gui/pdcgetsc.c +26 -0
  174. data/vendor/PDCursesMod/os2gui/pdckbd.c +79 -0
  175. data/vendor/PDCursesMod/os2gui/pdcscrn.c +2433 -0
  176. data/vendor/PDCursesMod/os2gui/pdcsetsc.c +115 -0
  177. data/vendor/PDCursesMod/os2gui/pdcutil.c +42 -0
  178. data/vendor/PDCursesMod/os2gui/pdcwin.h +106 -0
  179. data/vendor/PDCursesMod/os2gui/table.py +112 -0
  180. data/vendor/PDCursesMod/os2gui/unitable.h +3933 -0
  181. data/vendor/PDCursesMod/panel.h +41 -0
  182. data/vendor/PDCursesMod/pdcurses/addch.c +838 -0
  183. data/vendor/PDCursesMod/pdcurses/addchstr.c +232 -0
  184. data/vendor/PDCursesMod/pdcurses/addstr.c +245 -0
  185. data/vendor/PDCursesMod/pdcurses/attr.c +430 -0
  186. data/vendor/PDCursesMod/pdcurses/beep.c +78 -0
  187. data/vendor/PDCursesMod/pdcurses/bkgd.c +233 -0
  188. data/vendor/PDCursesMod/pdcurses/border.c +413 -0
  189. data/vendor/PDCursesMod/pdcurses/clear.c +161 -0
  190. data/vendor/PDCursesMod/pdcurses/color.c +761 -0
  191. data/vendor/PDCursesMod/pdcurses/debug.c +157 -0
  192. data/vendor/PDCursesMod/pdcurses/delch.c +96 -0
  193. data/vendor/PDCursesMod/pdcurses/deleteln.c +149 -0
  194. data/vendor/PDCursesMod/pdcurses/getch.c +871 -0
  195. data/vendor/PDCursesMod/pdcurses/getstr.c +487 -0
  196. data/vendor/PDCursesMod/pdcurses/getyx.c +152 -0
  197. data/vendor/PDCursesMod/pdcurses/inch.c +133 -0
  198. data/vendor/PDCursesMod/pdcurses/inchstr.c +217 -0
  199. data/vendor/PDCursesMod/pdcurses/initscr.c +524 -0
  200. data/vendor/PDCursesMod/pdcurses/inopts.c +490 -0
  201. data/vendor/PDCursesMod/pdcurses/insch.c +273 -0
  202. data/vendor/PDCursesMod/pdcurses/insstr.c +268 -0
  203. data/vendor/PDCursesMod/pdcurses/instr.c +253 -0
  204. data/vendor/PDCursesMod/pdcurses/kernel.c +338 -0
  205. data/vendor/PDCursesMod/pdcurses/keyname.c +149 -0
  206. data/vendor/PDCursesMod/pdcurses/mouse.c +469 -0
  207. data/vendor/PDCursesMod/pdcurses/move.c +84 -0
  208. data/vendor/PDCursesMod/pdcurses/outopts.c +283 -0
  209. data/vendor/PDCursesMod/pdcurses/overlay.c +204 -0
  210. data/vendor/PDCursesMod/pdcurses/pad.c +303 -0
  211. data/vendor/PDCursesMod/pdcurses/pairs.txt +94 -0
  212. data/vendor/PDCursesMod/pdcurses/panel.c +551 -0
  213. data/vendor/PDCursesMod/pdcurses/printw.c +180 -0
  214. data/vendor/PDCursesMod/pdcurses/refresh.c +372 -0
  215. data/vendor/PDCursesMod/pdcurses/scanw.c +582 -0
  216. data/vendor/PDCursesMod/pdcurses/scr_dump.c +311 -0
  217. data/vendor/PDCursesMod/pdcurses/scroll.c +115 -0
  218. data/vendor/PDCursesMod/pdcurses/slk.c +660 -0
  219. data/vendor/PDCursesMod/pdcurses/termattr.c +177 -0
  220. data/vendor/PDCursesMod/pdcurses/terminfo.c +243 -0
  221. data/vendor/PDCursesMod/pdcurses/touch.c +255 -0
  222. data/vendor/PDCursesMod/pdcurses/util.c +502 -0
  223. data/vendor/PDCursesMod/pdcurses/window.c +708 -0
  224. data/vendor/PDCursesMod/plan9/README.md +57 -0
  225. data/vendor/PDCursesMod/plan9/header.patch +11 -0
  226. data/vendor/PDCursesMod/plan9/mkfile +103 -0
  227. data/vendor/PDCursesMod/plan9/mkfile_demo +42 -0
  228. data/vendor/PDCursesMod/plan9/pdcclip.c +1 -0
  229. data/vendor/PDCursesMod/plan9/pdcdisp.c +62 -0
  230. data/vendor/PDCursesMod/plan9/pdcgetsc.c +28 -0
  231. data/vendor/PDCursesMod/plan9/pdckbd.c +53 -0
  232. data/vendor/PDCursesMod/plan9/pdcplan9.h +10 -0
  233. data/vendor/PDCursesMod/plan9/pdcscrn.c +103 -0
  234. data/vendor/PDCursesMod/plan9/pdcsetsc.c +51 -0
  235. data/vendor/PDCursesMod/plan9/pdcutil.c +370 -0
  236. data/vendor/PDCursesMod/psffonts/10x20.psf +0 -0
  237. data/vendor/PDCursesMod/psffonts/18x18.psf +0 -0
  238. data/vendor/PDCursesMod/psffonts/4x6.psf +0 -0
  239. data/vendor/PDCursesMod/psffonts/6x12.psf +0 -0
  240. data/vendor/PDCursesMod/psffonts/8x13.psf +0 -0
  241. data/vendor/PDCursesMod/psffonts/9x15.psf +0 -0
  242. data/vendor/PDCursesMod/psffonts/9x18.psf +0 -0
  243. data/vendor/PDCursesMod/psffonts/README +38 -0
  244. data/vendor/PDCursesMod/psffonts/README.md +14 -0
  245. data/vendor/PDCursesMod/psffonts/bmp2psf2.c +130 -0
  246. data/vendor/PDCursesMod/psffonts/cour11x17.psf +0 -0
  247. data/vendor/PDCursesMod/psffonts/cour20x29.psf +0 -0
  248. data/vendor/PDCursesMod/psffonts/default.psf +0 -0
  249. data/vendor/PDCursesMod/psffonts/dosemu.psf +0 -0
  250. data/vendor/PDCursesMod/psffonts/fntcol16/2_hebrew-14.psf +0 -0
  251. data/vendor/PDCursesMod/psffonts/fntcol16/README +285 -0
  252. data/vendor/PDCursesMod/psffonts/fntcol16/antique-14.psf +0 -0
  253. data/vendor/PDCursesMod/psffonts/fntcol16/apeaus-08.psf +0 -0
  254. data/vendor/PDCursesMod/psffonts/fntcol16/apeaus-14.psf +0 -0
  255. data/vendor/PDCursesMod/psffonts/fntcol16/apeaus-16.psf +0 -0
  256. data/vendor/PDCursesMod/psffonts/fntcol16/apls-08.psf +0 -0
  257. data/vendor/PDCursesMod/psffonts/fntcol16/arabdrft-14.psf +0 -0
  258. data/vendor/PDCursesMod/psffonts/fntcol16/arabic-14.psf +0 -0
  259. data/vendor/PDCursesMod/psffonts/fntcol16/arabkufi-14.psf +0 -0
  260. data/vendor/PDCursesMod/psffonts/fntcol16/arabnaf-14.psf +0 -0
  261. data/vendor/PDCursesMod/psffonts/fntcol16/arbnaskh-14.psf +0 -0
  262. data/vendor/PDCursesMod/psffonts/fntcol16/armenian-08.psf +0 -0
  263. data/vendor/PDCursesMod/psffonts/fntcol16/armenian-14.psf +0 -0
  264. data/vendor/PDCursesMod/psffonts/fntcol16/armenian-16.psf +0 -0
  265. data/vendor/PDCursesMod/psffonts/fntcol16/art-16.psf +0 -0
  266. data/vendor/PDCursesMod/psffonts/fntcol16/ascii-14.psf +0 -0
  267. data/vendor/PDCursesMod/psffonts/fntcol16/backward-14.psf +0 -0
  268. data/vendor/PDCursesMod/psffonts/fntcol16/bdeclo-14.psf +0 -0
  269. data/vendor/PDCursesMod/psffonts/fntcol16/bhexall-14.psf +0 -0
  270. data/vendor/PDCursesMod/psffonts/fntcol16/bhexbox-14.psf +0 -0
  271. data/vendor/PDCursesMod/psffonts/fntcol16/bhexhi-14.psf +0 -0
  272. data/vendor/PDCursesMod/psffonts/fntcol16/bhexlo-14.psf +0 -0
  273. data/vendor/PDCursesMod/psffonts/fntcol16/bigserif-14.psf +0 -0
  274. data/vendor/PDCursesMod/psffonts/fntcol16/bigserif-16.psf +0 -0
  275. data/vendor/PDCursesMod/psffonts/fntcol16/bigsf-14.psf +0 -0
  276. data/vendor/PDCursesMod/psffonts/fntcol16/binaryed-14.psf +0 -0
  277. data/vendor/PDCursesMod/psffonts/fntcol16/blcksnsf-10.psf +0 -0
  278. data/vendor/PDCursesMod/psffonts/fntcol16/block-14.psf +0 -0
  279. data/vendor/PDCursesMod/psffonts/fntcol16/bold-14.psf +0 -0
  280. data/vendor/PDCursesMod/psffonts/fntcol16/boxround-14.psf +0 -0
  281. data/vendor/PDCursesMod/psffonts/fntcol16/boxround-16.psf +0 -0
  282. data/vendor/PDCursesMod/psffonts/fntcol16/broadway-14.psf +0 -0
  283. data/vendor/PDCursesMod/psffonts/fntcol16/bthin-14.psf +0 -0
  284. data/vendor/PDCursesMod/psffonts/fntcol16/bway2-14.psf +0 -0
  285. data/vendor/PDCursesMod/psffonts/fntcol16/cafe-10.psf +0 -0
  286. data/vendor/PDCursesMod/psffonts/fntcol16/cafe-12.psf +0 -0
  287. data/vendor/PDCursesMod/psffonts/fntcol16/cntdown-14.psf +0 -0
  288. data/vendor/PDCursesMod/psffonts/fntcol16/cntdown-16.psf +0 -0
  289. data/vendor/PDCursesMod/psffonts/fntcol16/computer-14.psf +0 -0
  290. data/vendor/PDCursesMod/psffonts/fntcol16/copyleft.txt +209 -0
  291. data/vendor/PDCursesMod/psffonts/fntcol16/courier-14.psf +0 -0
  292. data/vendor/PDCursesMod/psffonts/fntcol16/cp111-08.psf +0 -0
  293. data/vendor/PDCursesMod/psffonts/fntcol16/cp111-14.psf +0 -0
  294. data/vendor/PDCursesMod/psffonts/fntcol16/cp111-16.psf +0 -0
  295. data/vendor/PDCursesMod/psffonts/fntcol16/cp111-19.psf +0 -0
  296. data/vendor/PDCursesMod/psffonts/fntcol16/cp112-08.psf +0 -0
  297. data/vendor/PDCursesMod/psffonts/fntcol16/cp112-14.psf +0 -0
  298. data/vendor/PDCursesMod/psffonts/fntcol16/cp112-16.psf +0 -0
  299. data/vendor/PDCursesMod/psffonts/fntcol16/cp112-19.psf +0 -0
  300. data/vendor/PDCursesMod/psffonts/fntcol16/cp113-08.psf +0 -0
  301. data/vendor/PDCursesMod/psffonts/fntcol16/cp113-14.psf +0 -0
  302. data/vendor/PDCursesMod/psffonts/fntcol16/cp113-16.psf +0 -0
  303. data/vendor/PDCursesMod/psffonts/fntcol16/cp113-19.psf +0 -0
  304. data/vendor/PDCursesMod/psffonts/fntcol16/cp437-08.psf +0 -0
  305. data/vendor/PDCursesMod/psffonts/fntcol16/cp437-14.psf +0 -0
  306. data/vendor/PDCursesMod/psffonts/fntcol16/cp437-16.psf +0 -0
  307. data/vendor/PDCursesMod/psffonts/fntcol16/cp437-19.psf +0 -0
  308. data/vendor/PDCursesMod/psffonts/fntcol16/cp437alt-08.psf +0 -0
  309. data/vendor/PDCursesMod/psffonts/fntcol16/cp437bgr-08.psf +0 -0
  310. data/vendor/PDCursesMod/psffonts/fntcol16/cp850-08.psf +0 -0
  311. data/vendor/PDCursesMod/psffonts/fntcol16/cp850-14.psf +0 -0
  312. data/vendor/PDCursesMod/psffonts/fntcol16/cp850-16.psf +0 -0
  313. data/vendor/PDCursesMod/psffonts/fntcol16/cp850-19.psf +0 -0
  314. data/vendor/PDCursesMod/psffonts/fntcol16/cp851-08.psf +0 -0
  315. data/vendor/PDCursesMod/psffonts/fntcol16/cp851-14.psf +0 -0
  316. data/vendor/PDCursesMod/psffonts/fntcol16/cp851-16.psf +0 -0
  317. data/vendor/PDCursesMod/psffonts/fntcol16/cp851-19.psf +0 -0
  318. data/vendor/PDCursesMod/psffonts/fntcol16/cp852-08.psf +0 -0
  319. data/vendor/PDCursesMod/psffonts/fntcol16/cp852-14.psf +0 -0
  320. data/vendor/PDCursesMod/psffonts/fntcol16/cp852-16.psf +0 -0
  321. data/vendor/PDCursesMod/psffonts/fntcol16/cp852-19.psf +0 -0
  322. data/vendor/PDCursesMod/psffonts/fntcol16/cp853-08.psf +0 -0
  323. data/vendor/PDCursesMod/psffonts/fntcol16/cp853-14.psf +0 -0
  324. data/vendor/PDCursesMod/psffonts/fntcol16/cp853-16.psf +0 -0
  325. data/vendor/PDCursesMod/psffonts/fntcol16/cp853-19.psf +0 -0
  326. data/vendor/PDCursesMod/psffonts/fntcol16/cp860-08.psf +0 -0
  327. data/vendor/PDCursesMod/psffonts/fntcol16/cp860-14.psf +0 -0
  328. data/vendor/PDCursesMod/psffonts/fntcol16/cp860-16.psf +0 -0
  329. data/vendor/PDCursesMod/psffonts/fntcol16/cp860-19.psf +0 -0
  330. data/vendor/PDCursesMod/psffonts/fntcol16/cp861-08.psf +0 -0
  331. data/vendor/PDCursesMod/psffonts/fntcol16/cp861-14.psf +0 -0
  332. data/vendor/PDCursesMod/psffonts/fntcol16/cp861-16.psf +0 -0
  333. data/vendor/PDCursesMod/psffonts/fntcol16/cp861-19.psf +0 -0
  334. data/vendor/PDCursesMod/psffonts/fntcol16/cp862-08.psf +0 -0
  335. data/vendor/PDCursesMod/psffonts/fntcol16/cp862-14.psf +0 -0
  336. data/vendor/PDCursesMod/psffonts/fntcol16/cp862-16.psf +0 -0
  337. data/vendor/PDCursesMod/psffonts/fntcol16/cp863-08.psf +0 -0
  338. data/vendor/PDCursesMod/psffonts/fntcol16/cp863-14.psf +0 -0
  339. data/vendor/PDCursesMod/psffonts/fntcol16/cp863-16.psf +0 -0
  340. data/vendor/PDCursesMod/psffonts/fntcol16/cp863-19.psf +0 -0
  341. data/vendor/PDCursesMod/psffonts/fntcol16/cp864-08.psf +0 -0
  342. data/vendor/PDCursesMod/psffonts/fntcol16/cp864-14.psf +0 -0
  343. data/vendor/PDCursesMod/psffonts/fntcol16/cp864-16.psf +0 -0
  344. data/vendor/PDCursesMod/psffonts/fntcol16/cp865-08.psf +0 -0
  345. data/vendor/PDCursesMod/psffonts/fntcol16/cp865-14.psf +0 -0
  346. data/vendor/PDCursesMod/psffonts/fntcol16/cp865-16.psf +0 -0
  347. data/vendor/PDCursesMod/psffonts/fntcol16/cp865-19.psf +0 -0
  348. data/vendor/PDCursesMod/psffonts/fntcol16/cp866-08.psf +0 -0
  349. data/vendor/PDCursesMod/psffonts/fntcol16/cp866-14.psf +0 -0
  350. data/vendor/PDCursesMod/psffonts/fntcol16/cp866-16.psf +0 -0
  351. data/vendor/PDCursesMod/psffonts/fntcol16/cp880-08.psf +0 -0
  352. data/vendor/PDCursesMod/psffonts/fntcol16/cp880-14.psf +0 -0
  353. data/vendor/PDCursesMod/psffonts/fntcol16/cp880-16.psf +0 -0
  354. data/vendor/PDCursesMod/psffonts/fntcol16/cp881-08.psf +0 -0
  355. data/vendor/PDCursesMod/psffonts/fntcol16/cp881-14.psf +0 -0
  356. data/vendor/PDCursesMod/psffonts/fntcol16/cp881-16.psf +0 -0
  357. data/vendor/PDCursesMod/psffonts/fntcol16/cp882-08.psf +0 -0
  358. data/vendor/PDCursesMod/psffonts/fntcol16/cp882-14.psf +0 -0
  359. data/vendor/PDCursesMod/psffonts/fntcol16/cp882-16.psf +0 -0
  360. data/vendor/PDCursesMod/psffonts/fntcol16/cp883-08.psf +0 -0
  361. data/vendor/PDCursesMod/psffonts/fntcol16/cp883-14.psf +0 -0
  362. data/vendor/PDCursesMod/psffonts/fntcol16/cp883-16.psf +0 -0
  363. data/vendor/PDCursesMod/psffonts/fntcol16/cp884-08.psf +0 -0
  364. data/vendor/PDCursesMod/psffonts/fntcol16/cp884-14.psf +0 -0
  365. data/vendor/PDCursesMod/psffonts/fntcol16/cp884-16.psf +0 -0
  366. data/vendor/PDCursesMod/psffonts/fntcol16/cp885-08.psf +0 -0
  367. data/vendor/PDCursesMod/psffonts/fntcol16/cp885-14.psf +0 -0
  368. data/vendor/PDCursesMod/psffonts/fntcol16/cp885-16.psf +0 -0
  369. data/vendor/PDCursesMod/psffonts/fntcol16/cyril2-14.psf +0 -0
  370. data/vendor/PDCursesMod/psffonts/fntcol16/cyril_b-08.psf +0 -0
  371. data/vendor/PDCursesMod/psffonts/fntcol16/cyrill1-08.psf +0 -0
  372. data/vendor/PDCursesMod/psffonts/fntcol16/cyrill1-14.psf +0 -0
  373. data/vendor/PDCursesMod/psffonts/fntcol16/cyrill1-16.psf +0 -0
  374. data/vendor/PDCursesMod/psffonts/fntcol16/cyrill2-08.psf +0 -0
  375. data/vendor/PDCursesMod/psffonts/fntcol16/cyrill2-14.psf +0 -0
  376. data/vendor/PDCursesMod/psffonts/fntcol16/cyrill2-16.psf +0 -0
  377. data/vendor/PDCursesMod/psffonts/fntcol16/cyrill3-08.psf +0 -0
  378. data/vendor/PDCursesMod/psffonts/fntcol16/cyrill3-14.psf +0 -0
  379. data/vendor/PDCursesMod/psffonts/fntcol16/cyrill3-16.psf +0 -0
  380. data/vendor/PDCursesMod/psffonts/fntcol16/cyrillic-14.psf +0 -0
  381. data/vendor/PDCursesMod/psffonts/fntcol16/decorate-16.psf +0 -0
  382. data/vendor/PDCursesMod/psffonts/fntcol16/draw-14.psf +0 -0
  383. data/vendor/PDCursesMod/psffonts/fntcol16/drawhi-14.psf +0 -0
  384. data/vendor/PDCursesMod/psffonts/fntcol16/europe-14.psf +0 -0
  385. data/vendor/PDCursesMod/psffonts/fntcol16/evga-alt-08.psf +0 -0
  386. data/vendor/PDCursesMod/psffonts/fntcol16/evga-alt-09.psf +0 -0
  387. data/vendor/PDCursesMod/psffonts/fntcol16/evga-alt-10.psf +0 -0
  388. data/vendor/PDCursesMod/psffonts/fntcol16/evga-alt-11.psf +0 -0
  389. data/vendor/PDCursesMod/psffonts/fntcol16/evga-alt-12.psf +0 -0
  390. data/vendor/PDCursesMod/psffonts/fntcol16/evga-alt-13.psf +0 -0
  391. data/vendor/PDCursesMod/psffonts/fntcol16/farsi-14.psf +0 -0
  392. data/vendor/PDCursesMod/psffonts/fntcol16/finnish-14.psf +0 -0
  393. data/vendor/PDCursesMod/psffonts/fntcol16/fontorig.txt +308 -0
  394. data/vendor/PDCursesMod/psffonts/fntcol16/fractur-14.psf +0 -0
  395. data/vendor/PDCursesMod/psffonts/fntcol16/future-14.psf +0 -0
  396. data/vendor/PDCursesMod/psffonts/fntcol16/gaelic-14.psf +0 -0
  397. data/vendor/PDCursesMod/psffonts/fntcol16/gaelic1-14.psf +0 -0
  398. data/vendor/PDCursesMod/psffonts/fntcol16/georgian-14.psf +0 -0
  399. data/vendor/PDCursesMod/psffonts/fntcol16/grckssrf-08.psf +0 -0
  400. data/vendor/PDCursesMod/psffonts/fntcol16/grckssrf-14.psf +0 -0
  401. data/vendor/PDCursesMod/psffonts/fntcol16/grckssrf-16.psf +0 -0
  402. data/vendor/PDCursesMod/psffonts/fntcol16/greek-06.psf +0 -0
  403. data/vendor/PDCursesMod/psffonts/fntcol16/greek-07.psf +0 -0
  404. data/vendor/PDCursesMod/psffonts/fntcol16/greek-08.psf +0 -0
  405. data/vendor/PDCursesMod/psffonts/fntcol16/greek-14.psf +0 -0
  406. data/vendor/PDCursesMod/psffonts/fntcol16/greek-16.psf +0 -0
  407. data/vendor/PDCursesMod/psffonts/fntcol16/greek1-14.psf +0 -0
  408. data/vendor/PDCursesMod/psffonts/fntcol16/greek2-14.psf +0 -0
  409. data/vendor/PDCursesMod/psffonts/fntcol16/hack4th-16.psf +0 -0
  410. data/vendor/PDCursesMod/psffonts/fntcol16/handugly-16.psf +0 -0
  411. data/vendor/PDCursesMod/psffonts/fntcol16/handwrit-14.psf +0 -0
  412. data/vendor/PDCursesMod/psffonts/fntcol16/handwrit-16.psf +0 -0
  413. data/vendor/PDCursesMod/psffonts/fntcol16/heb-7bit-16.psf +0 -0
  414. data/vendor/PDCursesMod/psffonts/fntcol16/heb-big-14.psf +0 -0
  415. data/vendor/PDCursesMod/psffonts/fntcol16/heb-bold-16.psf +0 -0
  416. data/vendor/PDCursesMod/psffonts/fntcol16/heb-ktab-14.psf +0 -0
  417. data/vendor/PDCursesMod/psffonts/fntcol16/heb-med-14.psf +0 -0
  418. data/vendor/PDCursesMod/psffonts/fntcol16/heb-snsf-14.psf +0 -0
  419. data/vendor/PDCursesMod/psffonts/fntcol16/hebboldk-16.psf +0 -0
  420. data/vendor/PDCursesMod/psffonts/fntcol16/hebclrgf-14.psf +0 -0
  421. data/vendor/PDCursesMod/psffonts/fntcol16/hebktav1-16.psf +0 -0
  422. data/vendor/PDCursesMod/psffonts/fntcol16/hebktav2-16.psf +0 -0
  423. data/vendor/PDCursesMod/psffonts/fntcol16/heblarge-14.psf +0 -0
  424. data/vendor/PDCursesMod/psffonts/fntcol16/heblarge-16.psf +0 -0
  425. data/vendor/PDCursesMod/psffonts/fntcol16/hebrew-14.psf +0 -0
  426. data/vendor/PDCursesMod/psffonts/fntcol16/hebugly-16.psf +0 -0
  427. data/vendor/PDCursesMod/psffonts/fntcol16/hebyogi-16.psf +0 -0
  428. data/vendor/PDCursesMod/psffonts/fntcol16/hercital-08.psf +0 -0
  429. data/vendor/PDCursesMod/psffonts/fntcol16/hercules-08.psf +0 -0
  430. data/vendor/PDCursesMod/psffonts/fntcol16/hercules-10.psf +0 -0
  431. data/vendor/PDCursesMod/psffonts/fntcol16/hercules-14.psf +0 -0
  432. data/vendor/PDCursesMod/psffonts/fntcol16/history.txt +45 -0
  433. data/vendor/PDCursesMod/psffonts/fntcol16/hollow-14.psf +0 -0
  434. data/vendor/PDCursesMod/psffonts/fntcol16/hrkgreek-14.psf +0 -0
  435. data/vendor/PDCursesMod/psffonts/fntcol16/hylas-14.psf +0 -0
  436. data/vendor/PDCursesMod/psffonts/fntcol16/icons-14.psf +0 -0
  437. data/vendor/PDCursesMod/psffonts/fntcol16/inverted-14.psf +0 -0
  438. data/vendor/PDCursesMod/psffonts/fntcol16/iso-14.psf +0 -0
  439. data/vendor/PDCursesMod/psffonts/fntcol16/iso2-14.psf +0 -0
  440. data/vendor/PDCursesMod/psffonts/fntcol16/iso3-14.psf +0 -0
  441. data/vendor/PDCursesMod/psffonts/fntcol16/iso4-14.psf +0 -0
  442. data/vendor/PDCursesMod/psffonts/fntcol16/italics-14.psf +0 -0
  443. data/vendor/PDCursesMod/psffonts/fntcol16/kana-14.psf +0 -0
  444. data/vendor/PDCursesMod/psffonts/fntcol16/kana-16.psf +0 -0
  445. data/vendor/PDCursesMod/psffonts/fntcol16/lb_large-16.psf +0 -0
  446. data/vendor/PDCursesMod/psffonts/fntcol16/lb_misc-14.psf +0 -0
  447. data/vendor/PDCursesMod/psffonts/fntcol16/lb_ocr-14.psf +0 -0
  448. data/vendor/PDCursesMod/psffonts/fntcol16/lb_ocr-16.psf +0 -0
  449. data/vendor/PDCursesMod/psffonts/fntcol16/lbarabic-14.psf +0 -0
  450. data/vendor/PDCursesMod/psffonts/fntcol16/lbitalic-14.psf +0 -0
  451. data/vendor/PDCursesMod/psffonts/fntcol16/lbitalic-16.psf +0 -0
  452. data/vendor/PDCursesMod/psffonts/fntcol16/lbscript-14.psf +0 -0
  453. data/vendor/PDCursesMod/psffonts/fntcol16/lcd-14.psf +0 -0
  454. data/vendor/PDCursesMod/psffonts/fntcol16/mac-08.psf +0 -0
  455. data/vendor/PDCursesMod/psffonts/fntcol16/macntosh-14.psf +0 -0
  456. data/vendor/PDCursesMod/psffonts/fntcol16/macntosh-16.psf +0 -0
  457. data/vendor/PDCursesMod/psffonts/fntcol16/madrid-10.psf +0 -0
  458. data/vendor/PDCursesMod/psffonts/fntcol16/medieval-14.psf +0 -0
  459. data/vendor/PDCursesMod/psffonts/fntcol16/modern-16.psf +0 -0
  460. data/vendor/PDCursesMod/psffonts/fntcol16/norway-14.psf +0 -0
  461. data/vendor/PDCursesMod/psffonts/fntcol16/norway2-14.psf +0 -0
  462. data/vendor/PDCursesMod/psffonts/fntcol16/old-engl-14.psf +0 -0
  463. data/vendor/PDCursesMod/psffonts/fntcol16/old-engl-16.psf +0 -0
  464. data/vendor/PDCursesMod/psffonts/fntcol16/oldeng-14.psf +0 -0
  465. data/vendor/PDCursesMod/psffonts/fntcol16/oldeng-f-16.psf +0 -0
  466. data/vendor/PDCursesMod/psffonts/fntcol16/pc_6-14.psf +0 -0
  467. data/vendor/PDCursesMod/psffonts/fntcol16/pc_7-14.psf +0 -0
  468. data/vendor/PDCursesMod/psffonts/fntcol16/persian-14.psf +0 -0
  469. data/vendor/PDCursesMod/psffonts/fntcol16/persian-16.psf +0 -0
  470. data/vendor/PDCursesMod/psffonts/fntcol16/police-16.psf +0 -0
  471. data/vendor/PDCursesMod/psffonts/fntcol16/polish-14.psf +0 -0
  472. data/vendor/PDCursesMod/psffonts/fntcol16/polish1-14.psf +0 -0
  473. data/vendor/PDCursesMod/psffonts/fntcol16/pp_roman-16.psf +0 -0
  474. data/vendor/PDCursesMod/psffonts/fntcol16/pp_sser-16.psf +0 -0
  475. data/vendor/PDCursesMod/psffonts/fntcol16/readabl7-16.psf +0 -0
  476. data/vendor/PDCursesMod/psffonts/fntcol16/readabl8-16.psf +0 -0
  477. data/vendor/PDCursesMod/psffonts/fntcol16/readable-08.psf +0 -0
  478. data/vendor/PDCursesMod/psffonts/fntcol16/readable-10.psf +0 -0
  479. data/vendor/PDCursesMod/psffonts/fntcol16/reverse-14.psf +0 -0
  480. data/vendor/PDCursesMod/psffonts/fntcol16/rimrock-10.psf +0 -0
  481. data/vendor/PDCursesMod/psffonts/fntcol16/rmrkbold-14.psf +0 -0
  482. data/vendor/PDCursesMod/psffonts/fntcol16/rom8pix-08.psf +0 -0
  483. data/vendor/PDCursesMod/psffonts/fntcol16/roman-14.psf +0 -0
  484. data/vendor/PDCursesMod/psffonts/fntcol16/roman-16.psf +0 -0
  485. data/vendor/PDCursesMod/psffonts/fntcol16/runic-14.psf +0 -0
  486. data/vendor/PDCursesMod/psffonts/fntcol16/russian-08.psf +0 -0
  487. data/vendor/PDCursesMod/psffonts/fntcol16/russian-14.psf +0 -0
  488. data/vendor/PDCursesMod/psffonts/fntcol16/russian-16.psf +0 -0
  489. data/vendor/PDCursesMod/psffonts/fntcol16/russian1-14.psf +0 -0
  490. data/vendor/PDCursesMod/psffonts/fntcol16/sanserif-14.psf +0 -0
  491. data/vendor/PDCursesMod/psffonts/fntcol16/sanserif-16.psf +0 -0
  492. data/vendor/PDCursesMod/psffonts/fntcol16/script-14.psf +0 -0
  493. data/vendor/PDCursesMod/psffonts/fntcol16/scrwl----16.psf +0 -0
  494. data/vendor/PDCursesMod/psffonts/fntcol16/scrwl~~~-16.psf +0 -0
  495. data/vendor/PDCursesMod/psffonts/fntcol16/security-14.psf +0 -0
  496. data/vendor/PDCursesMod/psffonts/fntcol16/side-10.psf +0 -0
  497. data/vendor/PDCursesMod/psffonts/fntcol16/slant-14.psf +0 -0
  498. data/vendor/PDCursesMod/psffonts/fntcol16/smalcaps-14.psf +0 -0
  499. data/vendor/PDCursesMod/psffonts/fntcol16/smcapnum-14.psf +0 -0
  500. data/vendor/PDCursesMod/psffonts/fntcol16/spranto-14.psf +0 -0
  501. data/vendor/PDCursesMod/psffonts/fntcol16/spranto1-16.psf +0 -0
  502. data/vendor/PDCursesMod/psffonts/fntcol16/spranto2-16.psf +0 -0
  503. data/vendor/PDCursesMod/psffonts/fntcol16/square-12.psf +0 -0
  504. data/vendor/PDCursesMod/psffonts/fntcol16/standard-14.psf +0 -0
  505. data/vendor/PDCursesMod/psffonts/fntcol16/standard-16.psf +0 -0
  506. data/vendor/PDCursesMod/psffonts/fntcol16/stretch-14.psf +0 -0
  507. data/vendor/PDCursesMod/psffonts/fntcol16/subsup-16.psf +0 -0
  508. data/vendor/PDCursesMod/psffonts/fntcol16/super-16.psf +0 -0
  509. data/vendor/PDCursesMod/psffonts/fntcol16/swiss-16.psf +0 -0
  510. data/vendor/PDCursesMod/psffonts/fntcol16/swiss-av-16.psf +0 -0
  511. data/vendor/PDCursesMod/psffonts/fntcol16/swissav2-16.psf +0 -0
  512. data/vendor/PDCursesMod/psffonts/fntcol16/swissbox-16.psf +0 -0
  513. data/vendor/PDCursesMod/psffonts/fntcol16/swissbx2-16.psf +0 -0
  514. data/vendor/PDCursesMod/psffonts/fntcol16/tex-math-14.psf +0 -0
  515. data/vendor/PDCursesMod/psffonts/fntcol16/tex-math-16.psf +0 -0
  516. data/vendor/PDCursesMod/psffonts/fntcol16/thai-14.psf +0 -0
  517. data/vendor/PDCursesMod/psffonts/fntcol16/thin_ss-08.psf +0 -0
  518. data/vendor/PDCursesMod/psffonts/fntcol16/thin_ss-14.psf +0 -0
  519. data/vendor/PDCursesMod/psffonts/fntcol16/thin_ss-16.psf +0 -0
  520. data/vendor/PDCursesMod/psffonts/fntcol16/thinasci-07.psf +0 -0
  521. data/vendor/PDCursesMod/psffonts/fntcol16/thincaps-14.psf +0 -0
  522. data/vendor/PDCursesMod/psffonts/fntcol16/thindemo-14.psf +0 -0
  523. data/vendor/PDCursesMod/psffonts/fntcol16/thinscrp-14.psf +0 -0
  524. data/vendor/PDCursesMod/psffonts/fntcol16/turkish-14.psf +0 -0
  525. data/vendor/PDCursesMod/psffonts/fntcol16/urdu-14.psf +0 -0
  526. data/vendor/PDCursesMod/psffonts/fntcol16/vga-rom-08.psf +0 -0
  527. data/vendor/PDCursesMod/psffonts/fntcol16/vga-rom-14.psf +0 -0
  528. data/vendor/PDCursesMod/psffonts/fntcol16/vga-rom-16.psf +0 -0
  529. data/vendor/PDCursesMod/psffonts/fntcol16/voynich-16.psf +0 -0
  530. data/vendor/PDCursesMod/psffonts/fntcol16/wiggly-16.psf +0 -0
  531. data/vendor/PDCursesMod/psffonts/fntcol16/yugosla-14.psf +0 -0
  532. data/vendor/PDCursesMod/psffonts/lc12x20.psf +0 -0
  533. data/vendor/PDCursesMod/psffonts/makefile +2 -0
  534. data/vendor/PDCursesMod/psffonts/mappings/8859-3.TXT +285 -0
  535. data/vendor/PDCursesMod/psffonts/mappings/APL-ISO-IR-68.TXT +273 -0
  536. data/vendor/PDCursesMod/psffonts/mappings/ATARIST.TXT +320 -0
  537. data/vendor/PDCursesMod/psffonts/mappings/CP1006.TXT +302 -0
  538. data/vendor/PDCursesMod/psffonts/mappings/CP1250.TXT +274 -0
  539. data/vendor/PDCursesMod/psffonts/mappings/CP1251.TXT +274 -0
  540. data/vendor/PDCursesMod/psffonts/mappings/CP1252.TXT +274 -0
  541. data/vendor/PDCursesMod/psffonts/mappings/CP1253.TXT +274 -0
  542. data/vendor/PDCursesMod/psffonts/mappings/CP1254.TXT +274 -0
  543. data/vendor/PDCursesMod/psffonts/mappings/CP1255.TXT +274 -0
  544. data/vendor/PDCursesMod/psffonts/mappings/CP1256.TXT +274 -0
  545. data/vendor/PDCursesMod/psffonts/mappings/CP1257.TXT +274 -0
  546. data/vendor/PDCursesMod/psffonts/mappings/CP1258.TXT +274 -0
  547. data/vendor/PDCursesMod/psffonts/mappings/CP424.TXT +304 -0
  548. data/vendor/PDCursesMod/psffonts/mappings/CP437.TXT +274 -0
  549. data/vendor/PDCursesMod/psffonts/mappings/CP737.TXT +274 -0
  550. data/vendor/PDCursesMod/psffonts/mappings/CP775.TXT +275 -0
  551. data/vendor/PDCursesMod/psffonts/mappings/CP850.TXT +274 -0
  552. data/vendor/PDCursesMod/psffonts/mappings/CP851.TXT +276 -0
  553. data/vendor/PDCursesMod/psffonts/mappings/CP852.TXT +274 -0
  554. data/vendor/PDCursesMod/psffonts/mappings/CP855.TXT +275 -0
  555. data/vendor/PDCursesMod/psffonts/mappings/CP856.TXT +303 -0
  556. data/vendor/PDCursesMod/psffonts/mappings/CP857.TXT +275 -0
  557. data/vendor/PDCursesMod/psffonts/mappings/CP860.TXT +275 -0
  558. data/vendor/PDCursesMod/psffonts/mappings/CP861.TXT +275 -0
  559. data/vendor/PDCursesMod/psffonts/mappings/CP862.TXT +275 -0
  560. data/vendor/PDCursesMod/psffonts/mappings/CP863.TXT +275 -0
  561. data/vendor/PDCursesMod/psffonts/mappings/CP864.TXT +275 -0
  562. data/vendor/PDCursesMod/psffonts/mappings/CP865.TXT +275 -0
  563. data/vendor/PDCursesMod/psffonts/mappings/CP866.TXT +275 -0
  564. data/vendor/PDCursesMod/psffonts/mappings/CP869.TXT +275 -0
  565. data/vendor/PDCursesMod/psffonts/mappings/CP874.TXT +274 -0
  566. data/vendor/PDCursesMod/psffonts/mappings/CP932.TXT +7998 -0
  567. data/vendor/PDCursesMod/psffonts/mappings/CP936.TXT +22065 -0
  568. data/vendor/PDCursesMod/psffonts/mappings/CP949.TXT +17322 -0
  569. data/vendor/PDCursesMod/psffonts/mappings/CP950.TXT +13777 -0
  570. data/vendor/PDCursesMod/psffonts/mappings/IBMGRAPH.TXT +99 -0
  571. data/vendor/PDCursesMod/psffonts/mappings/KOI8-R.TXT +294 -0
  572. data/vendor/PDCursesMod/psffonts/mappings/KOI8-U.TXT +301 -0
  573. data/vendor/PDCursesMod/psffonts/mappings/KPS9566.TXT +17166 -0
  574. data/vendor/PDCursesMod/psffonts/mappings/KZ1048.TXT +294 -0
  575. data/vendor/PDCursesMod/psffonts/mappings/ReadMe.txt +20 -0
  576. data/vendor/PDCursesMod/psffonts/mappings/SGML.TXT +1041 -0
  577. data/vendor/PDCursesMod/psffonts/medieval2.psf +0 -0
  578. data/vendor/PDCursesMod/psffonts/vga11x19.psf +0 -0
  579. data/vendor/PDCursesMod/sdl1/Makefile +140 -0
  580. data/vendor/PDCursesMod/sdl1/README.md +200 -0
  581. data/vendor/PDCursesMod/sdl1/pdcclip.c +1 -0
  582. data/vendor/PDCursesMod/sdl1/pdcdisp.c +462 -0
  583. data/vendor/PDCursesMod/sdl1/pdcgetsc.c +30 -0
  584. data/vendor/PDCursesMod/sdl1/pdckbd.c +417 -0
  585. data/vendor/PDCursesMod/sdl1/pdcscrn.c +396 -0
  586. data/vendor/PDCursesMod/sdl1/pdcsdl.h +34 -0
  587. data/vendor/PDCursesMod/sdl1/pdcsetsc.c +99 -0
  588. data/vendor/PDCursesMod/sdl1/pdcutil.c +34 -0
  589. data/vendor/PDCursesMod/sdl1/sdltest.c +79 -0
  590. data/vendor/PDCursesMod/sdl2/CMakeLists.txt +76 -0
  591. data/vendor/PDCursesMod/sdl2/Makefile +207 -0
  592. data/vendor/PDCursesMod/sdl2/Makefile.vc +132 -0
  593. data/vendor/PDCursesMod/sdl2/README.md +215 -0
  594. data/vendor/PDCursesMod/sdl2/pdcclip.c +93 -0
  595. data/vendor/PDCursesMod/sdl2/pdcdisp.c +536 -0
  596. data/vendor/PDCursesMod/sdl2/pdcgetsc.c +30 -0
  597. data/vendor/PDCursesMod/sdl2/pdckbd.c +540 -0
  598. data/vendor/PDCursesMod/sdl2/pdcscrn.c +529 -0
  599. data/vendor/PDCursesMod/sdl2/pdcsdl.h +46 -0
  600. data/vendor/PDCursesMod/sdl2/pdcsetsc.c +99 -0
  601. data/vendor/PDCursesMod/sdl2/pdcutil.c +35 -0
  602. data/vendor/PDCursesMod/sdl2/sdltest.c +91 -0
  603. data/vendor/PDCursesMod/sdl2/versions.mif +2 -0
  604. data/vendor/PDCursesMod/term.h +48 -0
  605. data/vendor/PDCursesMod/tests/README.md +16 -0
  606. data/vendor/PDCursesMod/tests/brk_test.c +42 -0
  607. data/vendor/PDCursesMod/tests/del_test.c +95 -0
  608. data/vendor/PDCursesMod/tests/focus.c +53 -0
  609. data/vendor/PDCursesMod/tests/ins_del.c +108 -0
  610. data/vendor/PDCursesMod/tests/keytest.c +87 -0
  611. data/vendor/PDCursesMod/tests/naptest.c +43 -0
  612. data/vendor/PDCursesMod/tests/opaque.c +42 -0
  613. data/vendor/PDCursesMod/tests/restart.c +60 -0
  614. data/vendor/PDCursesMod/tests/ripoff.c +141 -0
  615. data/vendor/PDCursesMod/tests/show_col.c +55 -0
  616. data/vendor/PDCursesMod/tests/show_uni.c +163 -0
  617. data/vendor/PDCursesMod/tests/vt0.c +472 -0
  618. data/vendor/PDCursesMod/vt/CMakeLists.txt +35 -0
  619. data/vendor/PDCursesMod/vt/Makefile +204 -0
  620. data/vendor/PDCursesMod/vt/Makefile.bcc +101 -0
  621. data/vendor/PDCursesMod/vt/Makefile.dmc +313 -0
  622. data/vendor/PDCursesMod/vt/Makefile.vc +145 -0
  623. data/vendor/PDCursesMod/vt/Makefile.wcc +48 -0
  624. data/vendor/PDCursesMod/vt/README.md +82 -0
  625. data/vendor/PDCursesMod/vt/pdcclip.c +8 -0
  626. data/vendor/PDCursesMod/vt/pdcdisp.c +424 -0
  627. data/vendor/PDCursesMod/vt/pdckbd.c +603 -0
  628. data/vendor/PDCursesMod/vt/pdcscrn.c +492 -0
  629. data/vendor/PDCursesMod/vt/pdcsetsc.c +158 -0
  630. data/vendor/PDCursesMod/vt/pdcutil.c +85 -0
  631. data/vendor/PDCursesMod/vt/pdcvt.h +25 -0
  632. data/vendor/PDCursesMod/wincon/CMakeLists.txt +29 -0
  633. data/vendor/PDCursesMod/wincon/Makefile +190 -0
  634. data/vendor/PDCursesMod/wincon/Makefile.bcc +87 -0
  635. data/vendor/PDCursesMod/wincon/Makefile.dmc +275 -0
  636. data/vendor/PDCursesMod/wincon/Makefile.vc +132 -0
  637. data/vendor/PDCursesMod/wincon/Makefile.wcc +33 -0
  638. data/vendor/PDCursesMod/wincon/README.md +76 -0
  639. data/vendor/PDCursesMod/wincon/pdcclip.c +6 -0
  640. data/vendor/PDCursesMod/wincon/pdcdisp.c +408 -0
  641. data/vendor/PDCursesMod/wincon/pdcgetsc.c +42 -0
  642. data/vendor/PDCursesMod/wincon/pdckbd.c +778 -0
  643. data/vendor/PDCursesMod/wincon/pdcscrn.c +733 -0
  644. data/vendor/PDCursesMod/wincon/pdcsetsc.c +130 -0
  645. data/vendor/PDCursesMod/wincon/pdcutil.c +38 -0
  646. data/vendor/PDCursesMod/wincon/pdcwin.h +35 -0
  647. data/vendor/PDCursesMod/wingui/CMakeLists.txt +30 -0
  648. data/vendor/PDCursesMod/wingui/Makefile +186 -0
  649. data/vendor/PDCursesMod/wingui/Makefile.bcc +80 -0
  650. data/vendor/PDCursesMod/wingui/Makefile.dmc +314 -0
  651. data/vendor/PDCursesMod/wingui/Makefile.vc +144 -0
  652. data/vendor/PDCursesMod/wingui/Makefile.wcc +32 -0
  653. data/vendor/PDCursesMod/wingui/README.md +92 -0
  654. data/vendor/PDCursesMod/wingui/pdcclip.c +6 -0
  655. data/vendor/PDCursesMod/wingui/pdcdisp.c +576 -0
  656. data/vendor/PDCursesMod/wingui/pdckbd.c +89 -0
  657. data/vendor/PDCursesMod/wingui/pdcscrn.c +2235 -0
  658. data/vendor/PDCursesMod/wingui/pdcsetsc.c +124 -0
  659. data/vendor/PDCursesMod/wingui/pdcutil.c +44 -0
  660. data/vendor/PDCursesMod/wingui/pdcwin.h +85 -0
  661. data/vendor/PDCursesMod/x11/Makefile.in +1047 -0
  662. data/vendor/PDCursesMod/x11/README.md +227 -0
  663. data/vendor/PDCursesMod/x11/aclocal.m4 +553 -0
  664. data/vendor/PDCursesMod/x11/config.guess +1774 -0
  665. data/vendor/PDCursesMod/x11/config.h.in +37 -0
  666. data/vendor/PDCursesMod/x11/config.sub +1907 -0
  667. data/vendor/PDCursesMod/x11/configure +5944 -0
  668. data/vendor/PDCursesMod/x11/configure.ac +175 -0
  669. data/vendor/PDCursesMod/x11/pdcclip.c +254 -0
  670. data/vendor/PDCursesMod/x11/pdcdisp.c +418 -0
  671. data/vendor/PDCursesMod/x11/pdcgetsc.c +28 -0
  672. data/vendor/PDCursesMod/x11/pdckbd.c +743 -0
  673. data/vendor/PDCursesMod/x11/pdcscrn.c +848 -0
  674. data/vendor/PDCursesMod/x11/pdcsetsc.c +108 -0
  675. data/vendor/PDCursesMod/x11/pdcutil.c +41 -0
  676. data/vendor/PDCursesMod/x11/pdcx11.h +82 -0
  677. data/vendor/PDCursesMod/x11/sb.c +331 -0
  678. data/vendor/PDCursesMod/x11/scrlbox.c +348 -0
  679. data/vendor/PDCursesMod/x11/scrlbox.h +47 -0
  680. data/vendor/PDCursesMod/x11/xcurses-config.in +81 -0
  681. data/vendor/PDCursesMod/x11new/Makefile +151 -0
  682. data/vendor/PDCursesMod/x11new/README.md +63 -0
  683. data/vendor/PDCursesMod/x11new/pdcclip.c +221 -0
  684. data/vendor/PDCursesMod/x11new/pdcdisp.c +195 -0
  685. data/vendor/PDCursesMod/x11new/pdcgetsc.c +27 -0
  686. data/vendor/PDCursesMod/x11new/pdckbd.c +722 -0
  687. data/vendor/PDCursesMod/x11new/pdcscrn.c +277 -0
  688. data/vendor/PDCursesMod/x11new/pdcsetsc.c +90 -0
  689. data/vendor/PDCursesMod/x11new/pdcutil.c +38 -0
  690. data/vendor/PDCursesMod/x11new/pdcx11.h +16 -0
  691. metadata +692 -246
  692. data/vendor/PDCurses/.gitignore +0 -47
  693. data/vendor/PDCurses/.travis.yml +0 -49
  694. data/vendor/PDCurses/CMakeLists.txt +0 -68
  695. data/vendor/PDCurses/HISTORY.md +0 -2036
  696. data/vendor/PDCurses/IMPLEMNT.md +0 -327
  697. data/vendor/PDCurses/Makefile +0 -27
  698. data/vendor/PDCurses/README.md +0 -77
  699. data/vendor/PDCurses/acs_defs.h +0 -265
  700. data/vendor/PDCurses/appveyor.yml +0 -218
  701. data/vendor/PDCurses/cmake/README.md +0 -71
  702. data/vendor/PDCurses/cmake/build_dependencies.cmake +0 -178
  703. data/vendor/PDCurses/cmake/build_options.cmake +0 -25
  704. data/vendor/PDCurses/cmake/dll_version.cmake +0 -26
  705. data/vendor/PDCurses/cmake/gen_config_header.cmake +0 -43
  706. data/vendor/PDCurses/cmake/get_version.cmake +0 -17
  707. data/vendor/PDCurses/cmake/project_common.cmake +0 -121
  708. data/vendor/PDCurses/cmake/sdl2_ttf/CMakeLists.txt +0 -83
  709. data/vendor/PDCurses/cmake/version.in.cmake +0 -73
  710. data/vendor/PDCurses/cmake/watcom_open_dos16_toolchain.cmake +0 -96
  711. data/vendor/PDCurses/cmake/watcom_open_dos32_toolchain.cmake +0 -106
  712. data/vendor/PDCurses/cmake/watcom_open_os2v2_toolchain.cmake +0 -105
  713. data/vendor/PDCurses/curses.h +0 -1846
  714. data/vendor/PDCurses/curspriv.h +0 -134
  715. data/vendor/PDCurses/demos/firework.c +0 -144
  716. data/vendor/PDCurses/demos/newtest.c +0 -581
  717. data/vendor/PDCurses/demos/ozdemo.c +0 -447
  718. data/vendor/PDCurses/demos/ptest.c +0 -283
  719. data/vendor/PDCurses/demos/rain.c +0 -157
  720. data/vendor/PDCurses/demos/testcurs.c +0 -1607
  721. data/vendor/PDCurses/demos/tui.c +0 -1048
  722. data/vendor/PDCurses/demos/tui.h +0 -65
  723. data/vendor/PDCurses/demos/tuidemo.c +0 -233
  724. data/vendor/PDCurses/demos/version.c +0 -61
  725. data/vendor/PDCurses/demos/worm.c +0 -432
  726. data/vendor/PDCurses/demos/xmas.c +0 -955
  727. data/vendor/PDCurses/dos/CMakeLists.txt +0 -47
  728. data/vendor/PDCurses/dos/Makefile +0 -105
  729. data/vendor/PDCurses/dos/Makefile.bcc +0 -83
  730. data/vendor/PDCurses/dos/Makefile.dmc +0 -257
  731. data/vendor/PDCurses/dos/Makefile.msc +0 -113
  732. data/vendor/PDCurses/dos/Makefile.wcc +0 -107
  733. data/vendor/PDCurses/dos/README.md +0 -51
  734. data/vendor/PDCurses/dos/bccdos.lrf +0 -9
  735. data/vendor/PDCurses/dos/mscdos.lrf +0 -50
  736. data/vendor/PDCurses/dos/pdcclip.c +0 -132
  737. data/vendor/PDCurses/dos/pdcdisp.c +0 -135
  738. data/vendor/PDCurses/dos/pdcdos.h +0 -194
  739. data/vendor/PDCurses/dos/pdcgetsc.c +0 -98
  740. data/vendor/PDCurses/dos/pdckbd.c +0 -513
  741. data/vendor/PDCurses/dos/pdcscrn.c +0 -785
  742. data/vendor/PDCurses/dos/pdcsetsc.c +0 -101
  743. data/vendor/PDCurses/dos/pdcutil.c +0 -212
  744. data/vendor/PDCurses/libobjs.mif +0 -26
  745. data/vendor/PDCurses/makedist.mif +0 -20
  746. data/vendor/PDCurses/man/Makefile +0 -37
  747. data/vendor/PDCurses/man/README.md +0 -21
  748. data/vendor/PDCurses/man/intro.md +0 -361
  749. data/vendor/PDCurses/man/manext.c +0 -119
  750. data/vendor/PDCurses/man/sdl.md +0 -152
  751. data/vendor/PDCurses/man/sdl2.md +0 -58
  752. data/vendor/PDCurses/man/x11.md +0 -407
  753. data/vendor/PDCurses/ncurses/CMakeLists.txt +0 -66
  754. data/vendor/PDCurses/ncurses/makefile +0 -29
  755. data/vendor/PDCurses/os2/Makefile +0 -132
  756. data/vendor/PDCurses/os2/Makefile.bcc +0 -90
  757. data/vendor/PDCurses/os2/Makefile.wcc +0 -43
  758. data/vendor/PDCurses/os2/iccos2.lrf +0 -50
  759. data/vendor/PDCurses/os2/iccos2.mak +0 -256
  760. data/vendor/PDCurses/os2/pdcclip.c +0 -188
  761. data/vendor/PDCurses/os2/pdcdisp.c +0 -93
  762. data/vendor/PDCurses/os2/pdcgetsc.c +0 -89
  763. data/vendor/PDCurses/os2/pdckbd.c +0 -521
  764. data/vendor/PDCurses/os2/pdcos2.h +0 -55
  765. data/vendor/PDCurses/os2/pdcscrn.c +0 -449
  766. data/vendor/PDCurses/os2/pdcsetsc.c +0 -112
  767. data/vendor/PDCurses/os2/pdcutil.c +0 -52
  768. data/vendor/PDCurses/panel.h +0 -56
  769. data/vendor/PDCurses/pdcurses/addch.c +0 -693
  770. data/vendor/PDCurses/pdcurses/addchstr.c +0 -245
  771. data/vendor/PDCurses/pdcurses/addstr.c +0 -240
  772. data/vendor/PDCurses/pdcurses/attr.c +0 -359
  773. data/vendor/PDCurses/pdcurses/beep.c +0 -68
  774. data/vendor/PDCurses/pdcurses/bkgd.c +0 -223
  775. data/vendor/PDCurses/pdcurses/border.c +0 -411
  776. data/vendor/PDCurses/pdcurses/clear.c +0 -159
  777. data/vendor/PDCurses/pdcurses/color.c +0 -298
  778. data/vendor/PDCurses/pdcurses/debug.c +0 -109
  779. data/vendor/PDCurses/pdcurses/delch.c +0 -96
  780. data/vendor/PDCurses/pdcurses/deleteln.c +0 -211
  781. data/vendor/PDCurses/pdcurses/deprec.c +0 -27
  782. data/vendor/PDCurses/pdcurses/getch.c +0 -417
  783. data/vendor/PDCurses/pdcurses/getstr.c +0 -474
  784. data/vendor/PDCurses/pdcurses/getyx.c +0 -139
  785. data/vendor/PDCurses/pdcurses/inch.c +0 -127
  786. data/vendor/PDCurses/pdcurses/inchstr.c +0 -214
  787. data/vendor/PDCurses/pdcurses/initscr.c +0 -367
  788. data/vendor/PDCurses/pdcurses/inopts.c +0 -324
  789. data/vendor/PDCurses/pdcurses/insch.c +0 -271
  790. data/vendor/PDCurses/pdcurses/insstr.c +0 -264
  791. data/vendor/PDCurses/pdcurses/instr.c +0 -246
  792. data/vendor/PDCurses/pdcurses/kernel.c +0 -259
  793. data/vendor/PDCurses/pdcurses/keyname.c +0 -157
  794. data/vendor/PDCurses/pdcurses/mouse.c +0 -438
  795. data/vendor/PDCurses/pdcurses/move.c +0 -57
  796. data/vendor/PDCurses/pdcurses/outopts.c +0 -159
  797. data/vendor/PDCurses/pdcurses/overlay.c +0 -214
  798. data/vendor/PDCurses/pdcurses/pad.c +0 -260
  799. data/vendor/PDCurses/pdcurses/panel.c +0 -633
  800. data/vendor/PDCurses/pdcurses/printw.c +0 -126
  801. data/vendor/PDCurses/pdcurses/refresh.c +0 -279
  802. data/vendor/PDCurses/pdcurses/scanw.c +0 -578
  803. data/vendor/PDCurses/pdcurses/scr_dump.c +0 -213
  804. data/vendor/PDCurses/pdcurses/scroll.c +0 -101
  805. data/vendor/PDCurses/pdcurses/slk.c +0 -591
  806. data/vendor/PDCurses/pdcurses/termattr.c +0 -182
  807. data/vendor/PDCurses/pdcurses/terminfo.c +0 -217
  808. data/vendor/PDCurses/pdcurses/touch.c +0 -163
  809. data/vendor/PDCurses/pdcurses/util.c +0 -312
  810. data/vendor/PDCurses/pdcurses/window.c +0 -569
  811. data/vendor/PDCurses/sdl1/Makefile +0 -129
  812. data/vendor/PDCurses/sdl1/Makefile.mng +0 -110
  813. data/vendor/PDCurses/sdl1/README.md +0 -31
  814. data/vendor/PDCurses/sdl1/deffont.h +0 -385
  815. data/vendor/PDCurses/sdl1/deficon.h +0 -23
  816. data/vendor/PDCurses/sdl1/pdcclip.c +0 -131
  817. data/vendor/PDCurses/sdl1/pdcdisp.c +0 -373
  818. data/vendor/PDCurses/sdl1/pdcgetsc.c +0 -30
  819. data/vendor/PDCurses/sdl1/pdckbd.c +0 -405
  820. data/vendor/PDCurses/sdl1/pdcscrn.c +0 -414
  821. data/vendor/PDCurses/sdl1/pdcsdl.h +0 -31
  822. data/vendor/PDCurses/sdl1/pdcsetsc.c +0 -64
  823. data/vendor/PDCurses/sdl1/pdcutil.c +0 -40
  824. data/vendor/PDCurses/sdl1/sdltest.c +0 -79
  825. data/vendor/PDCurses/sdl2/CMakeLists.txt +0 -76
  826. data/vendor/PDCurses/sdl2/Makefile +0 -135
  827. data/vendor/PDCurses/sdl2/Makefile.vc +0 -164
  828. data/vendor/PDCurses/sdl2/README.md +0 -34
  829. data/vendor/PDCurses/sdl2/deffont.h +0 -385
  830. data/vendor/PDCurses/sdl2/deficon.h +0 -23
  831. data/vendor/PDCurses/sdl2/pdcclip.c +0 -93
  832. data/vendor/PDCurses/sdl2/pdcdisp.c +0 -534
  833. data/vendor/PDCurses/sdl2/pdcgetsc.c +0 -30
  834. data/vendor/PDCurses/sdl2/pdckbd.c +0 -480
  835. data/vendor/PDCurses/sdl2/pdcscrn.c +0 -443
  836. data/vendor/PDCurses/sdl2/pdcsdl.h +0 -33
  837. data/vendor/PDCurses/sdl2/pdcsetsc.c +0 -67
  838. data/vendor/PDCurses/sdl2/pdcutil.c +0 -39
  839. data/vendor/PDCurses/sdl2/sdltest.c +0 -81
  840. data/vendor/PDCurses/term.h +0 -48
  841. data/vendor/PDCurses/version.mif +0 -7
  842. data/vendor/PDCurses/vt/CMakeLists.txt +0 -28
  843. data/vendor/PDCurses/vt/Makefile +0 -135
  844. data/vendor/PDCurses/vt/Makefile.bcc +0 -111
  845. data/vendor/PDCurses/vt/Makefile.dmc +0 -258
  846. data/vendor/PDCurses/vt/Makefile.vc +0 -144
  847. data/vendor/PDCurses/vt/Makefile.wcc +0 -107
  848. data/vendor/PDCurses/vt/README.md +0 -64
  849. data/vendor/PDCurses/vt/pdcclip.c +0 -20
  850. data/vendor/PDCurses/vt/pdcdisp.c +0 -284
  851. data/vendor/PDCurses/vt/pdckbd.c +0 -394
  852. data/vendor/PDCurses/vt/pdcscrn.c +0 -434
  853. data/vendor/PDCurses/vt/pdcsetsc.c +0 -45
  854. data/vendor/PDCurses/vt/pdcutil.c +0 -43
  855. data/vendor/PDCurses/vt/pdcvt.h +0 -16
  856. data/vendor/PDCurses/watcom.mif +0 -68
  857. data/vendor/PDCurses/wincon/CMakeLists.txt +0 -27
  858. data/vendor/PDCurses/wincon/Makefile.bcc +0 -88
  859. data/vendor/PDCurses/wincon/Makefile.dmc +0 -256
  860. data/vendor/PDCurses/wincon/Makefile.lcc +0 -273
  861. data/vendor/PDCurses/wincon/Makefile.mng +0 -176
  862. data/vendor/PDCurses/wincon/Makefile.vc +0 -144
  863. data/vendor/PDCurses/wincon/Makefile.wcc +0 -51
  864. data/vendor/PDCurses/wincon/README.md +0 -85
  865. data/vendor/PDCurses/wincon/pdcclip.c +0 -174
  866. data/vendor/PDCurses/wincon/pdcdisp.c +0 -143
  867. data/vendor/PDCurses/wincon/pdcgetsc.c +0 -55
  868. data/vendor/PDCurses/wincon/pdckbd.c +0 -786
  869. data/vendor/PDCurses/wincon/pdcscrn.c +0 -717
  870. data/vendor/PDCurses/wincon/pdcsetsc.c +0 -91
  871. data/vendor/PDCurses/wincon/pdcurses.ico +0 -0
  872. data/vendor/PDCurses/wincon/pdcurses.rc +0 -28
  873. data/vendor/PDCurses/wincon/pdcutil.c +0 -41
  874. data/vendor/PDCurses/wincon/pdcwin.h +0 -31
  875. data/vendor/PDCurses/wingui/CMakeLists.txt +0 -27
  876. data/vendor/PDCurses/wingui/Makefile.bcc +0 -85
  877. data/vendor/PDCurses/wingui/Makefile.dmc +0 -259
  878. data/vendor/PDCurses/wingui/Makefile.lcc +0 -273
  879. data/vendor/PDCurses/wingui/Makefile.mng +0 -171
  880. data/vendor/PDCurses/wingui/Makefile.vc +0 -144
  881. data/vendor/PDCurses/wingui/Makefile.wcc +0 -51
  882. data/vendor/PDCurses/wingui/README.md +0 -93
  883. data/vendor/PDCurses/wingui/pdcclip.c +0 -174
  884. data/vendor/PDCurses/wingui/pdcdisp.c +0 -718
  885. data/vendor/PDCurses/wingui/pdckbd.c +0 -143
  886. data/vendor/PDCurses/wingui/pdcscrn.c +0 -2797
  887. data/vendor/PDCurses/wingui/pdcsetsc.c +0 -89
  888. data/vendor/PDCurses/wingui/pdcurses.ico +0 -0
  889. data/vendor/PDCurses/wingui/pdcurses.rc +0 -28
  890. data/vendor/PDCurses/wingui/pdcutil.c +0 -61
  891. data/vendor/PDCurses/wingui/pdcwin.h +0 -122
  892. data/vendor/PDCurses/x11/Makefile.in +0 -754
  893. data/vendor/PDCurses/x11/PDCurses.spec +0 -82
  894. data/vendor/PDCurses/x11/README.md +0 -62
  895. data/vendor/PDCurses/x11/ScrollBox.c +0 -319
  896. data/vendor/PDCurses/x11/ScrollBox.h +0 -51
  897. data/vendor/PDCurses/x11/ScrollBoxP.h +0 -70
  898. data/vendor/PDCurses/x11/aclocal.m4 +0 -994
  899. data/vendor/PDCurses/x11/big_icon.xbm +0 -46
  900. data/vendor/PDCurses/x11/compose.h +0 -201
  901. data/vendor/PDCurses/x11/config.guess +0 -1500
  902. data/vendor/PDCurses/x11/config.h.in +0 -100
  903. data/vendor/PDCurses/x11/config.sub +0 -1616
  904. data/vendor/PDCurses/x11/configure +0 -6700
  905. data/vendor/PDCurses/x11/configure.ac +0 -295
  906. data/vendor/PDCurses/x11/debian/changelog +0 -6
  907. data/vendor/PDCurses/x11/debian/compat +0 -1
  908. data/vendor/PDCurses/x11/debian/control +0 -11
  909. data/vendor/PDCurses/x11/debian/copyright +0 -27
  910. data/vendor/PDCurses/x11/debian/rules +0 -98
  911. data/vendor/PDCurses/x11/little_icon.xbm +0 -14
  912. data/vendor/PDCurses/x11/ncurses_cfg.h +0 -45
  913. data/vendor/PDCurses/x11/pdcclip.c +0 -173
  914. data/vendor/PDCurses/x11/pdcdisp.c +0 -85
  915. data/vendor/PDCurses/x11/pdcgetsc.c +0 -28
  916. data/vendor/PDCurses/x11/pdckbd.c +0 -104
  917. data/vendor/PDCurses/x11/pdcscrn.c +0 -258
  918. data/vendor/PDCurses/x11/pdcsetsc.c +0 -95
  919. data/vendor/PDCurses/x11/pdcutil.c +0 -52
  920. data/vendor/PDCurses/x11/pdcx11.c +0 -316
  921. data/vendor/PDCurses/x11/pdcx11.h +0 -191
  922. data/vendor/PDCurses/x11/sb.c +0 -155
  923. data/vendor/PDCurses/x11/x11.c +0 -3686
  924. data/vendor/PDCurses/x11/xcurses-config.in +0 -81
  925. /data/vendor/{PDCurses → PDCursesMod}/cmake/make_uninstall.cmake +0 -0
  926. /data/vendor/{PDCurses → PDCursesMod}/cmake/resource.in.cmake +0 -0
  927. /data/vendor/{PDCurses → PDCursesMod}/cmake/target_arch.cmake +0 -0
  928. /data/vendor/{PDCurses → PDCursesMod}/demos/README.md +0 -0
  929. /data/vendor/{PDCurses → PDCursesMod}/ncurses/README.md +0 -0
  930. /data/vendor/{PDCurses → PDCursesMod}/os2/CMakeLists.txt +0 -0
  931. /data/vendor/{PDCurses → PDCursesMod}/os2/README.md +0 -0
  932. /data/vendor/{PDCurses → PDCursesMod}/pdcurses/README.md +0 -0
  933. /data/vendor/{PDCurses → PDCursesMod}/vt/pdcgetsc.c +0 -0
  934. /data/vendor/{PDCurses → PDCursesMod}/wingui/pdcgetsc.c +0 -0
  935. /data/vendor/{PDCurses → PDCursesMod}/x11/install-sh +0 -0
@@ -0,0 +1,99 @@
1
+ #
2
+ # Name: IBM PC memory-mapped video graphics to Unicode
3
+ # Unicode version: 3.0
4
+ # Table version: 1.0
5
+ # Table format: Format A
6
+ # Date: 1999 July 27
7
+ # Authors: Ken Whistler <kenw@sybase.com>
8
+ #
9
+ # Copyright (c) 1996 - 1999 Unicode, Inc. All Rights reserved.
10
+ #
11
+ # This file is provided as-is by Unicode, Inc. (The Unicode Consortium).
12
+ # No claims are made as to fitness for any particular purpose. No
13
+ # warranties of any kind are expressed or implied. The recipient
14
+ # agrees to determine applicability of information provided. If this
15
+ # file has been provided on optical media by Unicode, Inc.,
16
+ # the sole remedy for any claim will be exchange of defective media
17
+ # within 90 days of receipt.
18
+ #
19
+ # Unicode, Inc. hereby grants the right to freely use the information
20
+ # supplied in this file in the creation of products supporting the
21
+ # Unicode Standard, and to make copies of this file in any form for
22
+ # internal or external distribution as long as this notice remains
23
+ # attached.
24
+ #
25
+ # General notes:
26
+ #
27
+ # This table contains the data the Unicode Consortium has on how
28
+ # IBM PC memory-mapped video graphics map into Unicode. These are
29
+ # the characters commonly seen in positions 0x01..0x1F and 0x7F in
30
+ # IBM PC code pages (e.g. code page 437, 850, etc.)
31
+ #
32
+ # Format: Four tab-separated columns
33
+ # Column #1 is the Unicode value (in hex as XXXX)
34
+ # Column #2 is the general IBM PC code page values
35
+ # for 0x01..0x1F, 0x7F (in hex as XX). For completeness,
36
+ # Unicode values which only appear as memory-mapped
37
+ # video graphics in code page 864 are shown with their
38
+ # standard PC code page values here as well.
39
+ # Column #3 is specific to IBM PC code page 864 (Arabic)
40
+ # Column #4 the Unicode name (follows a comment sign, '#')
41
+ #
42
+ # The entries are in Unicode order.
43
+ #
44
+ # Version history
45
+ # 1.0 version new.
46
+ #
47
+ # Updated versions of this file may be found in:
48
+ # <ftp://ftp.unicode.org/Public/MAPPINGS/>
49
+ #
50
+ # Any comments or problems, contact <errata@unicode.org>
51
+ # Please note that <errata@unicode.org> is an archival address;
52
+ # notices will be checked, but do not expect an immediate response.
53
+ #
54
+ # This table is provided by The Unicode Consortium and is
55
+ # not an IBM-supplied mapping.
56
+ #
57
+ 00A7 15 15 # SECTION SIGN
58
+ 00B6 14 14 # PILCROW SIGN
59
+ 2022 07 -- # BULLET
60
+ 203C 13 13 # DOUBLE EXCLAMATION MARK
61
+ 2190 1B 1B # LEFTWARDS ARROW
62
+ 2191 18 18 # UPWARDS ARROW
63
+ 2192 1A 1A # RIGHTWARDS ARROW
64
+ 2193 19 19 # DOWNWARDS ARROW
65
+ 2194 1D 1D # LEFT RIGHT ARROW
66
+ 2195 12 12 # UP DOWN ARROW
67
+ 21A8 17 17 # UP DOWN ARROW WITH BASE
68
+ 221F 1C 1C # RIGHT ANGLE
69
+ 2302 7F 7F # HOUSE
70
+ 2550 CD 05 # BOX DRAWINGS DOUBLE HORIZONTAL
71
+ 2551 BA 06 # BOX DRAWINGS DOUBLE VERTICAL
72
+ 2554 C9 0D # BOX DRAWINGS DOUBLE DOWN AND RIGHT
73
+ 2557 BB 0C # BOW DRAWINGS DOUBLE DOWN AND LEFT
74
+ 255A C8 0E # BOX DRAWINGS DOUBLE UP AND RIGHT
75
+ 255D BC 0F # BOX DRAWINGS DOUBLE UP AND LEFT
76
+ 2560 CC 0A # BOX DRAWINGS DOUBLE VERTICAL AND RIGHT
77
+ 2563 B9 08 # BOX DRAWINGS DOUBLE VERTICAL AND LEFT
78
+ 2566 CB 09 # BOX DRAWINGS DOUBLE DOWN AND HORIZONTAL
79
+ 2569 CA 0B # BOX DRAWINGS DOUBLE UP AND HORIZONTAL
80
+ 256C CE 07 # BOX DRAWINGS DOUBLE VERTICAL AND HORIZONTAL
81
+ 25AC 16 16 # BLACK RECTANGLE
82
+ 25B2 1E 1E # BLACK UP-POINTING TRIANGLE
83
+ 25BA 10 10 # BLACK RIGHT-POINTING POINTER
84
+ 25BC 1F 1F # BLACK DOWN-POINTING TRIANGLE
85
+ 25C4 11 11 # BLACK LEFT-POINTING POINTER
86
+ 25CB 09 -- # WHITE CIRCLE
87
+ 25D8 08 -- # INVERSE BULLET
88
+ 25D9 0A -- # INVERSE WHITE CIRCLE
89
+ 263A 01 01 # WHITE SMILING FACE
90
+ 263B 02 -- # BLACK SMILING FACE
91
+ 263C 0F 04 # WHITE SUN WITH RAYS
92
+ 2640 0C -- # FEMALE SIGN
93
+ 2642 0B -- # MALE SIGN
94
+ 2660 06 -- # BLACK SPADE SUIT
95
+ 2663 05 -- # BLACK CLUB SUIT
96
+ 2665 03 -- # BLACK HEART SUIT
97
+ 2666 04 -- # BLACK DIAMOND SUIT
98
+ 266A 0D 02 # EIGHTH NOTE
99
+ 266B 0E 03 # BEAMED EIGHTH NOTES
@@ -0,0 +1,294 @@
1
+ # KOI8-R.TXT
2
+ # Date: 2016-01-04 23:05:00 GMT [KW]
3
+ # © 2016 Unicode®, Inc.
4
+ # For terms of use, see http://www.unicode.org/terms_of_use.html
5
+ #
6
+ # Name: KOI8-R (RFC1489) to Unicode
7
+ # Unicode version: 3.0
8
+ # Table version: 2.0
9
+ # Table format: Format A
10
+ # Date: 18 August 1999 (header updated: 2016-January-04)
11
+ # Authors: Helmut Richter <richter@lrz.de>
12
+ #
13
+ # General notes:
14
+ #
15
+ # This table contains the data the Unicode Consortium has on how
16
+ # KOI8-R characters map into Unicode. The underlying document is the
17
+ # mapping described in RFC 1489. No statements are made as to whether
18
+ # this mapping is the same as the mapping defined as "Code Page 878"
19
+ # with some vendors.
20
+ #
21
+ # Format: Three tab-separated columns
22
+ # Column #1 is the KOI8-R code (in hex as 0xXX)
23
+ # Column #2 is the Unicode (in hex as 0xXXXX)
24
+ # Column #3 the Unicode name (follows a comment sign, '#')
25
+ #
26
+ # The entries are in KOI8-R order.
27
+ #
28
+ # Version history
29
+ # 1.0 version: created.
30
+ # 2.0 version: updates to copyright notice and terms of use; no
31
+ # changes to character mappings
32
+ #
33
+ # Updated versions of this file may be found in:
34
+ # http://www.unicode.org/Public/MAPPINGS/
35
+ #
36
+ # Any comments or problems, contact us at:
37
+ # http://www.unicode.org/reporting.html
38
+ #
39
+ 0x00 0x0000 # NULL
40
+ 0x01 0x0001 # START OF HEADING
41
+ 0x02 0x0002 # START OF TEXT
42
+ 0x03 0x0003 # END OF TEXT
43
+ 0x04 0x0004 # END OF TRANSMISSION
44
+ 0x05 0x0005 # ENQUIRY
45
+ 0x06 0x0006 # ACKNOWLEDGE
46
+ 0x07 0x0007 # BELL
47
+ 0x08 0x0008 # BACKSPACE
48
+ 0x09 0x0009 # HORIZONTAL TABULATION
49
+ 0x0A 0x000A # LINE FEED
50
+ 0x0B 0x000B # VERTICAL TABULATION
51
+ 0x0C 0x000C # FORM FEED
52
+ 0x0D 0x000D # CARRIAGE RETURN
53
+ 0x0E 0x000E # SHIFT OUT
54
+ 0x0F 0x000F # SHIFT IN
55
+ 0x10 0x0010 # DATA LINK ESCAPE
56
+ 0x11 0x0011 # DEVICE CONTROL ONE
57
+ 0x12 0x0012 # DEVICE CONTROL TWO
58
+ 0x13 0x0013 # DEVICE CONTROL THREE
59
+ 0x14 0x0014 # DEVICE CONTROL FOUR
60
+ 0x15 0x0015 # NEGATIVE ACKNOWLEDGE
61
+ 0x16 0x0016 # SYNCHRONOUS IDLE
62
+ 0x17 0x0017 # END OF TRANSMISSION BLOCK
63
+ 0x18 0x0018 # CANCEL
64
+ 0x19 0x0019 # END OF MEDIUM
65
+ 0x1A 0x001A # SUBSTITUTE
66
+ 0x1B 0x001B # ESCAPE
67
+ 0x1C 0x001C # FILE SEPARATOR
68
+ 0x1D 0x001D # GROUP SEPARATOR
69
+ 0x1E 0x001E # RECORD SEPARATOR
70
+ 0x1F 0x001F # UNIT SEPARATOR
71
+ 0x20 0x0020 # SPACE
72
+ 0x21 0x0021 # EXCLAMATION MARK
73
+ 0x22 0x0022 # QUOTATION MARK
74
+ 0x23 0x0023 # NUMBER SIGN
75
+ 0x24 0x0024 # DOLLAR SIGN
76
+ 0x25 0x0025 # PERCENT SIGN
77
+ 0x26 0x0026 # AMPERSAND
78
+ 0x27 0x0027 # APOSTROPHE
79
+ 0x28 0x0028 # LEFT PARENTHESIS
80
+ 0x29 0x0029 # RIGHT PARENTHESIS
81
+ 0x2A 0x002A # ASTERISK
82
+ 0x2B 0x002B # PLUS SIGN
83
+ 0x2C 0x002C # COMMA
84
+ 0x2D 0x002D # HYPHEN-MINUS
85
+ 0x2E 0x002E # FULL STOP
86
+ 0x2F 0x002F # SOLIDUS
87
+ 0x30 0x0030 # DIGIT ZERO
88
+ 0x31 0x0031 # DIGIT ONE
89
+ 0x32 0x0032 # DIGIT TWO
90
+ 0x33 0x0033 # DIGIT THREE
91
+ 0x34 0x0034 # DIGIT FOUR
92
+ 0x35 0x0035 # DIGIT FIVE
93
+ 0x36 0x0036 # DIGIT SIX
94
+ 0x37 0x0037 # DIGIT SEVEN
95
+ 0x38 0x0038 # DIGIT EIGHT
96
+ 0x39 0x0039 # DIGIT NINE
97
+ 0x3A 0x003A # COLON
98
+ 0x3B 0x003B # SEMICOLON
99
+ 0x3C 0x003C # LESS-THAN SIGN
100
+ 0x3D 0x003D # EQUALS SIGN
101
+ 0x3E 0x003E # GREATER-THAN SIGN
102
+ 0x3F 0x003F # QUESTION MARK
103
+ 0x40 0x0040 # COMMERCIAL AT
104
+ 0x41 0x0041 # LATIN CAPITAL LETTER A
105
+ 0x42 0x0042 # LATIN CAPITAL LETTER B
106
+ 0x43 0x0043 # LATIN CAPITAL LETTER C
107
+ 0x44 0x0044 # LATIN CAPITAL LETTER D
108
+ 0x45 0x0045 # LATIN CAPITAL LETTER E
109
+ 0x46 0x0046 # LATIN CAPITAL LETTER F
110
+ 0x47 0x0047 # LATIN CAPITAL LETTER G
111
+ 0x48 0x0048 # LATIN CAPITAL LETTER H
112
+ 0x49 0x0049 # LATIN CAPITAL LETTER I
113
+ 0x4A 0x004A # LATIN CAPITAL LETTER J
114
+ 0x4B 0x004B # LATIN CAPITAL LETTER K
115
+ 0x4C 0x004C # LATIN CAPITAL LETTER L
116
+ 0x4D 0x004D # LATIN CAPITAL LETTER M
117
+ 0x4E 0x004E # LATIN CAPITAL LETTER N
118
+ 0x4F 0x004F # LATIN CAPITAL LETTER O
119
+ 0x50 0x0050 # LATIN CAPITAL LETTER P
120
+ 0x51 0x0051 # LATIN CAPITAL LETTER Q
121
+ 0x52 0x0052 # LATIN CAPITAL LETTER R
122
+ 0x53 0x0053 # LATIN CAPITAL LETTER S
123
+ 0x54 0x0054 # LATIN CAPITAL LETTER T
124
+ 0x55 0x0055 # LATIN CAPITAL LETTER U
125
+ 0x56 0x0056 # LATIN CAPITAL LETTER V
126
+ 0x57 0x0057 # LATIN CAPITAL LETTER W
127
+ 0x58 0x0058 # LATIN CAPITAL LETTER X
128
+ 0x59 0x0059 # LATIN CAPITAL LETTER Y
129
+ 0x5A 0x005A # LATIN CAPITAL LETTER Z
130
+ 0x5B 0x005B # LEFT SQUARE BRACKET
131
+ 0x5C 0x005C # REVERSE SOLIDUS
132
+ 0x5D 0x005D # RIGHT SQUARE BRACKET
133
+ 0x5E 0x005E # CIRCUMFLEX ACCENT
134
+ 0x5F 0x005F # LOW LINE
135
+ 0x60 0x0060 # GRAVE ACCENT
136
+ 0x61 0x0061 # LATIN SMALL LETTER A
137
+ 0x62 0x0062 # LATIN SMALL LETTER B
138
+ 0x63 0x0063 # LATIN SMALL LETTER C
139
+ 0x64 0x0064 # LATIN SMALL LETTER D
140
+ 0x65 0x0065 # LATIN SMALL LETTER E
141
+ 0x66 0x0066 # LATIN SMALL LETTER F
142
+ 0x67 0x0067 # LATIN SMALL LETTER G
143
+ 0x68 0x0068 # LATIN SMALL LETTER H
144
+ 0x69 0x0069 # LATIN SMALL LETTER I
145
+ 0x6A 0x006A # LATIN SMALL LETTER J
146
+ 0x6B 0x006B # LATIN SMALL LETTER K
147
+ 0x6C 0x006C # LATIN SMALL LETTER L
148
+ 0x6D 0x006D # LATIN SMALL LETTER M
149
+ 0x6E 0x006E # LATIN SMALL LETTER N
150
+ 0x6F 0x006F # LATIN SMALL LETTER O
151
+ 0x70 0x0070 # LATIN SMALL LETTER P
152
+ 0x71 0x0071 # LATIN SMALL LETTER Q
153
+ 0x72 0x0072 # LATIN SMALL LETTER R
154
+ 0x73 0x0073 # LATIN SMALL LETTER S
155
+ 0x74 0x0074 # LATIN SMALL LETTER T
156
+ 0x75 0x0075 # LATIN SMALL LETTER U
157
+ 0x76 0x0076 # LATIN SMALL LETTER V
158
+ 0x77 0x0077 # LATIN SMALL LETTER W
159
+ 0x78 0x0078 # LATIN SMALL LETTER X
160
+ 0x79 0x0079 # LATIN SMALL LETTER Y
161
+ 0x7A 0x007A # LATIN SMALL LETTER Z
162
+ 0x7B 0x007B # LEFT CURLY BRACKET
163
+ 0x7C 0x007C # VERTICAL LINE
164
+ 0x7D 0x007D # RIGHT CURLY BRACKET
165
+ 0x7E 0x007E # TILDE
166
+ 0x7F 0x007F # DELETE
167
+ 0x80 0x2500 # BOX DRAWINGS LIGHT HORIZONTAL
168
+ 0x81 0x2502 # BOX DRAWINGS LIGHT VERTICAL
169
+ 0x82 0x250C # BOX DRAWINGS LIGHT DOWN AND RIGHT
170
+ 0x83 0x2510 # BOX DRAWINGS LIGHT DOWN AND LEFT
171
+ 0x84 0x2514 # BOX DRAWINGS LIGHT UP AND RIGHT
172
+ 0x85 0x2518 # BOX DRAWINGS LIGHT UP AND LEFT
173
+ 0x86 0x251C # BOX DRAWINGS LIGHT VERTICAL AND RIGHT
174
+ 0x87 0x2524 # BOX DRAWINGS LIGHT VERTICAL AND LEFT
175
+ 0x88 0x252C # BOX DRAWINGS LIGHT DOWN AND HORIZONTAL
176
+ 0x89 0x2534 # BOX DRAWINGS LIGHT UP AND HORIZONTAL
177
+ 0x8A 0x253C # BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL
178
+ 0x8B 0x2580 # UPPER HALF BLOCK
179
+ 0x8C 0x2584 # LOWER HALF BLOCK
180
+ 0x8D 0x2588 # FULL BLOCK
181
+ 0x8E 0x258C # LEFT HALF BLOCK
182
+ 0x8F 0x2590 # RIGHT HALF BLOCK
183
+ 0x90 0x2591 # LIGHT SHADE
184
+ 0x91 0x2592 # MEDIUM SHADE
185
+ 0x92 0x2593 # DARK SHADE
186
+ 0x93 0x2320 # TOP HALF INTEGRAL
187
+ 0x94 0x25A0 # BLACK SQUARE
188
+ 0x95 0x2219 # BULLET OPERATOR
189
+ 0x96 0x221A # SQUARE ROOT
190
+ 0x97 0x2248 # ALMOST EQUAL TO
191
+ 0x98 0x2264 # LESS-THAN OR EQUAL TO
192
+ 0x99 0x2265 # GREATER-THAN OR EQUAL TO
193
+ 0x9A 0x00A0 # NO-BREAK SPACE
194
+ 0x9B 0x2321 # BOTTOM HALF INTEGRAL
195
+ 0x9C 0x00B0 # DEGREE SIGN
196
+ 0x9D 0x00B2 # SUPERSCRIPT TWO
197
+ 0x9E 0x00B7 # MIDDLE DOT
198
+ 0x9F 0x00F7 # DIVISION SIGN
199
+ 0xA0 0x2550 # BOX DRAWINGS DOUBLE HORIZONTAL
200
+ 0xA1 0x2551 # BOX DRAWINGS DOUBLE VERTICAL
201
+ 0xA2 0x2552 # BOX DRAWINGS DOWN SINGLE AND RIGHT DOUBLE
202
+ 0xA3 0x0451 # CYRILLIC SMALL LETTER IO
203
+ 0xA4 0x2553 # BOX DRAWINGS DOWN DOUBLE AND RIGHT SINGLE
204
+ 0xA5 0x2554 # BOX DRAWINGS DOUBLE DOWN AND RIGHT
205
+ 0xA6 0x2555 # BOX DRAWINGS DOWN SINGLE AND LEFT DOUBLE
206
+ 0xA7 0x2556 # BOX DRAWINGS DOWN DOUBLE AND LEFT SINGLE
207
+ 0xA8 0x2557 # BOX DRAWINGS DOUBLE DOWN AND LEFT
208
+ 0xA9 0x2558 # BOX DRAWINGS UP SINGLE AND RIGHT DOUBLE
209
+ 0xAA 0x2559 # BOX DRAWINGS UP DOUBLE AND RIGHT SINGLE
210
+ 0xAB 0x255A # BOX DRAWINGS DOUBLE UP AND RIGHT
211
+ 0xAC 0x255B # BOX DRAWINGS UP SINGLE AND LEFT DOUBLE
212
+ 0xAD 0x255C # BOX DRAWINGS UP DOUBLE AND LEFT SINGLE
213
+ 0xAE 0x255D # BOX DRAWINGS DOUBLE UP AND LEFT
214
+ 0xAF 0x255E # BOX DRAWINGS VERTICAL SINGLE AND RIGHT DOUBLE
215
+ 0xB0 0x255F # BOX DRAWINGS VERTICAL DOUBLE AND RIGHT SINGLE
216
+ 0xB1 0x2560 # BOX DRAWINGS DOUBLE VERTICAL AND RIGHT
217
+ 0xB2 0x2561 # BOX DRAWINGS VERTICAL SINGLE AND LEFT DOUBLE
218
+ 0xB3 0x0401 # CYRILLIC CAPITAL LETTER IO
219
+ 0xB4 0x2562 # BOX DRAWINGS VERTICAL DOUBLE AND LEFT SINGLE
220
+ 0xB5 0x2563 # BOX DRAWINGS DOUBLE VERTICAL AND LEFT
221
+ 0xB6 0x2564 # BOX DRAWINGS DOWN SINGLE AND HORIZONTAL DOUBLE
222
+ 0xB7 0x2565 # BOX DRAWINGS DOWN DOUBLE AND HORIZONTAL SINGLE
223
+ 0xB8 0x2566 # BOX DRAWINGS DOUBLE DOWN AND HORIZONTAL
224
+ 0xB9 0x2567 # BOX DRAWINGS UP SINGLE AND HORIZONTAL DOUBLE
225
+ 0xBA 0x2568 # BOX DRAWINGS UP DOUBLE AND HORIZONTAL SINGLE
226
+ 0xBB 0x2569 # BOX DRAWINGS DOUBLE UP AND HORIZONTAL
227
+ 0xBC 0x256A # BOX DRAWINGS VERTICAL SINGLE AND HORIZONTAL DOUBLE
228
+ 0xBD 0x256B # BOX DRAWINGS VERTICAL DOUBLE AND HORIZONTAL SINGLE
229
+ 0xBE 0x256C # BOX DRAWINGS DOUBLE VERTICAL AND HORIZONTAL
230
+ 0xBF 0x00A9 # COPYRIGHT SIGN
231
+ 0xC0 0x044E # CYRILLIC SMALL LETTER YU
232
+ 0xC1 0x0430 # CYRILLIC SMALL LETTER A
233
+ 0xC2 0x0431 # CYRILLIC SMALL LETTER BE
234
+ 0xC3 0x0446 # CYRILLIC SMALL LETTER TSE
235
+ 0xC4 0x0434 # CYRILLIC SMALL LETTER DE
236
+ 0xC5 0x0435 # CYRILLIC SMALL LETTER IE
237
+ 0xC6 0x0444 # CYRILLIC SMALL LETTER EF
238
+ 0xC7 0x0433 # CYRILLIC SMALL LETTER GHE
239
+ 0xC8 0x0445 # CYRILLIC SMALL LETTER HA
240
+ 0xC9 0x0438 # CYRILLIC SMALL LETTER I
241
+ 0xCA 0x0439 # CYRILLIC SMALL LETTER SHORT I
242
+ 0xCB 0x043A # CYRILLIC SMALL LETTER KA
243
+ 0xCC 0x043B # CYRILLIC SMALL LETTER EL
244
+ 0xCD 0x043C # CYRILLIC SMALL LETTER EM
245
+ 0xCE 0x043D # CYRILLIC SMALL LETTER EN
246
+ 0xCF 0x043E # CYRILLIC SMALL LETTER O
247
+ 0xD0 0x043F # CYRILLIC SMALL LETTER PE
248
+ 0xD1 0x044F # CYRILLIC SMALL LETTER YA
249
+ 0xD2 0x0440 # CYRILLIC SMALL LETTER ER
250
+ 0xD3 0x0441 # CYRILLIC SMALL LETTER ES
251
+ 0xD4 0x0442 # CYRILLIC SMALL LETTER TE
252
+ 0xD5 0x0443 # CYRILLIC SMALL LETTER U
253
+ 0xD6 0x0436 # CYRILLIC SMALL LETTER ZHE
254
+ 0xD7 0x0432 # CYRILLIC SMALL LETTER VE
255
+ 0xD8 0x044C # CYRILLIC SMALL LETTER SOFT SIGN
256
+ 0xD9 0x044B # CYRILLIC SMALL LETTER YERU
257
+ 0xDA 0x0437 # CYRILLIC SMALL LETTER ZE
258
+ 0xDB 0x0448 # CYRILLIC SMALL LETTER SHA
259
+ 0xDC 0x044D # CYRILLIC SMALL LETTER E
260
+ 0xDD 0x0449 # CYRILLIC SMALL LETTER SHCHA
261
+ 0xDE 0x0447 # CYRILLIC SMALL LETTER CHE
262
+ 0xDF 0x044A # CYRILLIC SMALL LETTER HARD SIGN
263
+ 0xE0 0x042E # CYRILLIC CAPITAL LETTER YU
264
+ 0xE1 0x0410 # CYRILLIC CAPITAL LETTER A
265
+ 0xE2 0x0411 # CYRILLIC CAPITAL LETTER BE
266
+ 0xE3 0x0426 # CYRILLIC CAPITAL LETTER TSE
267
+ 0xE4 0x0414 # CYRILLIC CAPITAL LETTER DE
268
+ 0xE5 0x0415 # CYRILLIC CAPITAL LETTER IE
269
+ 0xE6 0x0424 # CYRILLIC CAPITAL LETTER EF
270
+ 0xE7 0x0413 # CYRILLIC CAPITAL LETTER GHE
271
+ 0xE8 0x0425 # CYRILLIC CAPITAL LETTER HA
272
+ 0xE9 0x0418 # CYRILLIC CAPITAL LETTER I
273
+ 0xEA 0x0419 # CYRILLIC CAPITAL LETTER SHORT I
274
+ 0xEB 0x041A # CYRILLIC CAPITAL LETTER KA
275
+ 0xEC 0x041B # CYRILLIC CAPITAL LETTER EL
276
+ 0xED 0x041C # CYRILLIC CAPITAL LETTER EM
277
+ 0xEE 0x041D # CYRILLIC CAPITAL LETTER EN
278
+ 0xEF 0x041E # CYRILLIC CAPITAL LETTER O
279
+ 0xF0 0x041F # CYRILLIC CAPITAL LETTER PE
280
+ 0xF1 0x042F # CYRILLIC CAPITAL LETTER YA
281
+ 0xF2 0x0420 # CYRILLIC CAPITAL LETTER ER
282
+ 0xF3 0x0421 # CYRILLIC CAPITAL LETTER ES
283
+ 0xF4 0x0422 # CYRILLIC CAPITAL LETTER TE
284
+ 0xF5 0x0423 # CYRILLIC CAPITAL LETTER U
285
+ 0xF6 0x0416 # CYRILLIC CAPITAL LETTER ZHE
286
+ 0xF7 0x0412 # CYRILLIC CAPITAL LETTER VE
287
+ 0xF8 0x042C # CYRILLIC CAPITAL LETTER SOFT SIGN
288
+ 0xF9 0x042B # CYRILLIC CAPITAL LETTER YERU
289
+ 0xFA 0x0417 # CYRILLIC CAPITAL LETTER ZE
290
+ 0xFB 0x0428 # CYRILLIC CAPITAL LETTER SHA
291
+ 0xFC 0x042D # CYRILLIC CAPITAL LETTER E
292
+ 0xFD 0x0429 # CYRILLIC CAPITAL LETTER SHCHA
293
+ 0xFE 0x0427 # CYRILLIC CAPITAL LETTER CHE
294
+ 0xFF 0x042A # CYRILLIC CAPITAL LETTER HARD SIGN
@@ -0,0 +1,301 @@
1
+ # KOI8-U.TXT
2
+ # Date: 2016-01-04 23:09:00 GMT [KW]
3
+ # © 2016 Unicode®, Inc.
4
+ # For terms of use, see http://www.unicode.org/terms_of_use.html
5
+ #
6
+ #
7
+ # Name: KOI8-U (RFC2319) to Unicode
8
+ # Unicode version: 5.1
9
+ # Table version: 2.0
10
+ # Table format: Format A
11
+ # Date: 13 October 2008 (header updated: 2016-January-04)
12
+ # Authors: Philippe Verdy <verdy_p AT wanadoo.fr>,
13
+ # Helmut Richter <richter@lrz.de>
14
+ #
15
+ # General notes:
16
+ #
17
+ # This table contains the data the Unicode Consortium has on how
18
+ # KOI8-U characters map into Unicode. The underlying document is the
19
+ # mapping described in RFC 2319. No statements are made as to whether
20
+ # this mapping is the same as the mapping defined as "Code Page 878"
21
+ # with some vendors.
22
+ #
23
+ # The KOI8-U (RFC2319) encoding is a variant based on KOI8-R (RFC1489),
24
+ # where the support for four additional Cyrillic letters was added (both small
25
+ # and capital letters), replacing 8 box-drawing characters. It is still widely
26
+ # used to encode texts in Ukrainian, Byelorussian and Bulgarian.
27
+ #
28
+ # Format: Three tab-separated columns
29
+ # Column #1 is the KOI8-U code (in hex as 0xXX)
30
+ # Column #2 is the Unicode (in hex as 0xXXXX)
31
+ # Column #3 the Unicode name (follows a comment sign, '#')
32
+ #
33
+ # The entries are in KOI8-U order.
34
+ #
35
+ # Version history
36
+ # 1.0 version: created.
37
+ # 2.0 version: updates to copyright notice and terms of use; no
38
+ # changes to character mappings
39
+ #
40
+ # Updated versions of this file may be found in:
41
+ # <http://www.unicode.org/Public/MAPPINGS/>
42
+ #
43
+ # Any comments or problems, contact the Unicode Consortium at:
44
+ # <http://www.unicode.org/reporting.html>
45
+ #
46
+ 0x00 0x0000 # NULL
47
+ 0x01 0x0001 # START OF HEADING
48
+ 0x02 0x0002 # START OF TEXT
49
+ 0x03 0x0003 # END OF TEXT
50
+ 0x04 0x0004 # END OF TRANSMISSION
51
+ 0x05 0x0005 # ENQUIRY
52
+ 0x06 0x0006 # ACKNOWLEDGE
53
+ 0x07 0x0007 # BELL
54
+ 0x08 0x0008 # BACKSPACE
55
+ 0x09 0x0009 # HORIZONTAL TABULATION
56
+ 0x0A 0x000A # LINE FEED
57
+ 0x0B 0x000B # VERTICAL TABULATION
58
+ 0x0C 0x000C # FORM FEED
59
+ 0x0D 0x000D # CARRIAGE RETURN
60
+ 0x0E 0x000E # SHIFT OUT
61
+ 0x0F 0x000F # SHIFT IN
62
+ 0x10 0x0010 # DATA LINK ESCAPE
63
+ 0x11 0x0011 # DEVICE CONTROL ONE
64
+ 0x12 0x0012 # DEVICE CONTROL TWO
65
+ 0x13 0x0013 # DEVICE CONTROL THREE
66
+ 0x14 0x0014 # DEVICE CONTROL FOUR
67
+ 0x15 0x0015 # NEGATIVE ACKNOWLEDGE
68
+ 0x16 0x0016 # SYNCHRONOUS IDLE
69
+ 0x17 0x0017 # END OF TRANSMISSION BLOCK
70
+ 0x18 0x0018 # CANCEL
71
+ 0x19 0x0019 # END OF MEDIUM
72
+ 0x1A 0x001A # SUBSTITUTE
73
+ 0x1B 0x001B # ESCAPE
74
+ 0x1C 0x001C # FILE SEPARATOR
75
+ 0x1D 0x001D # GROUP SEPARATOR
76
+ 0x1E 0x001E # RECORD SEPARATOR
77
+ 0x1F 0x001F # UNIT SEPARATOR
78
+ 0x20 0x0020 # SPACE
79
+ 0x21 0x0021 # EXCLAMATION MARK
80
+ 0x22 0x0022 # QUOTATION MARK
81
+ 0x23 0x0023 # NUMBER SIGN
82
+ 0x24 0x0024 # DOLLAR SIGN
83
+ 0x25 0x0025 # PERCENT SIGN
84
+ 0x26 0x0026 # AMPERSAND
85
+ 0x27 0x0027 # APOSTROPHE
86
+ 0x28 0x0028 # LEFT PARENTHESIS
87
+ 0x29 0x0029 # RIGHT PARENTHESIS
88
+ 0x2A 0x002A # ASTERISK
89
+ 0x2B 0x002B # PLUS SIGN
90
+ 0x2C 0x002C # COMMA
91
+ 0x2D 0x002D # HYPHEN-MINUS
92
+ 0x2E 0x002E # FULL STOP
93
+ 0x2F 0x002F # SOLIDUS
94
+ 0x30 0x0030 # DIGIT ZERO
95
+ 0x31 0x0031 # DIGIT ONE
96
+ 0x32 0x0032 # DIGIT TWO
97
+ 0x33 0x0033 # DIGIT THREE
98
+ 0x34 0x0034 # DIGIT FOUR
99
+ 0x35 0x0035 # DIGIT FIVE
100
+ 0x36 0x0036 # DIGIT SIX
101
+ 0x37 0x0037 # DIGIT SEVEN
102
+ 0x38 0x0038 # DIGIT EIGHT
103
+ 0x39 0x0039 # DIGIT NINE
104
+ 0x3A 0x003A # COLON
105
+ 0x3B 0x003B # SEMICOLON
106
+ 0x3C 0x003C # LESS-THAN SIGN
107
+ 0x3D 0x003D # EQUALS SIGN
108
+ 0x3E 0x003E # GREATER-THAN SIGN
109
+ 0x3F 0x003F # QUESTION MARK
110
+ 0x40 0x0040 # COMMERCIAL AT
111
+ 0x41 0x0041 # LATIN CAPITAL LETTER A
112
+ 0x42 0x0042 # LATIN CAPITAL LETTER B
113
+ 0x43 0x0043 # LATIN CAPITAL LETTER C
114
+ 0x44 0x0044 # LATIN CAPITAL LETTER D
115
+ 0x45 0x0045 # LATIN CAPITAL LETTER E
116
+ 0x46 0x0046 # LATIN CAPITAL LETTER F
117
+ 0x47 0x0047 # LATIN CAPITAL LETTER G
118
+ 0x48 0x0048 # LATIN CAPITAL LETTER H
119
+ 0x49 0x0049 # LATIN CAPITAL LETTER I
120
+ 0x4A 0x004A # LATIN CAPITAL LETTER J
121
+ 0x4B 0x004B # LATIN CAPITAL LETTER K
122
+ 0x4C 0x004C # LATIN CAPITAL LETTER L
123
+ 0x4D 0x004D # LATIN CAPITAL LETTER M
124
+ 0x4E 0x004E # LATIN CAPITAL LETTER N
125
+ 0x4F 0x004F # LATIN CAPITAL LETTER O
126
+ 0x50 0x0050 # LATIN CAPITAL LETTER P
127
+ 0x51 0x0051 # LATIN CAPITAL LETTER Q
128
+ 0x52 0x0052 # LATIN CAPITAL LETTER R
129
+ 0x53 0x0053 # LATIN CAPITAL LETTER S
130
+ 0x54 0x0054 # LATIN CAPITAL LETTER T
131
+ 0x55 0x0055 # LATIN CAPITAL LETTER U
132
+ 0x56 0x0056 # LATIN CAPITAL LETTER V
133
+ 0x57 0x0057 # LATIN CAPITAL LETTER W
134
+ 0x58 0x0058 # LATIN CAPITAL LETTER X
135
+ 0x59 0x0059 # LATIN CAPITAL LETTER Y
136
+ 0x5A 0x005A # LATIN CAPITAL LETTER Z
137
+ 0x5B 0x005B # LEFT SQUARE BRACKET
138
+ 0x5C 0x005C # REVERSE SOLIDUS
139
+ 0x5D 0x005D # RIGHT SQUARE BRACKET
140
+ 0x5E 0x005E # CIRCUMFLEX ACCENT
141
+ 0x5F 0x005F # LOW LINE
142
+ 0x60 0x0060 # GRAVE ACCENT
143
+ 0x61 0x0061 # LATIN SMALL LETTER A
144
+ 0x62 0x0062 # LATIN SMALL LETTER B
145
+ 0x63 0x0063 # LATIN SMALL LETTER C
146
+ 0x64 0x0064 # LATIN SMALL LETTER D
147
+ 0x65 0x0065 # LATIN SMALL LETTER E
148
+ 0x66 0x0066 # LATIN SMALL LETTER F
149
+ 0x67 0x0067 # LATIN SMALL LETTER G
150
+ 0x68 0x0068 # LATIN SMALL LETTER H
151
+ 0x69 0x0069 # LATIN SMALL LETTER I
152
+ 0x6A 0x006A # LATIN SMALL LETTER J
153
+ 0x6B 0x006B # LATIN SMALL LETTER K
154
+ 0x6C 0x006C # LATIN SMALL LETTER L
155
+ 0x6D 0x006D # LATIN SMALL LETTER M
156
+ 0x6E 0x006E # LATIN SMALL LETTER N
157
+ 0x6F 0x006F # LATIN SMALL LETTER O
158
+ 0x70 0x0070 # LATIN SMALL LETTER P
159
+ 0x71 0x0071 # LATIN SMALL LETTER Q
160
+ 0x72 0x0072 # LATIN SMALL LETTER R
161
+ 0x73 0x0073 # LATIN SMALL LETTER S
162
+ 0x74 0x0074 # LATIN SMALL LETTER T
163
+ 0x75 0x0075 # LATIN SMALL LETTER U
164
+ 0x76 0x0076 # LATIN SMALL LETTER V
165
+ 0x77 0x0077 # LATIN SMALL LETTER W
166
+ 0x78 0x0078 # LATIN SMALL LETTER X
167
+ 0x79 0x0079 # LATIN SMALL LETTER Y
168
+ 0x7A 0x007A # LATIN SMALL LETTER Z
169
+ 0x7B 0x007B # LEFT CURLY BRACKET
170
+ 0x7C 0x007C # VERTICAL LINE
171
+ 0x7D 0x007D # RIGHT CURLY BRACKET
172
+ 0x7E 0x007E # TILDE
173
+ 0x7F 0x007F # DELETE
174
+ 0x80 0x2500 # BOX DRAWINGS LIGHT HORIZONTAL
175
+ 0x81 0x2502 # BOX DRAWINGS LIGHT VERTICAL
176
+ 0x82 0x250C # BOX DRAWINGS LIGHT DOWN AND RIGHT
177
+ 0x83 0x2510 # BOX DRAWINGS LIGHT DOWN AND LEFT
178
+ 0x84 0x2514 # BOX DRAWINGS LIGHT UP AND RIGHT
179
+ 0x85 0x2518 # BOX DRAWINGS LIGHT UP AND LEFT
180
+ 0x86 0x251C # BOX DRAWINGS LIGHT VERTICAL AND RIGHT
181
+ 0x87 0x2524 # BOX DRAWINGS LIGHT VERTICAL AND LEFT
182
+ 0x88 0x252C # BOX DRAWINGS LIGHT DOWN AND HORIZONTAL
183
+ 0x89 0x2534 # BOX DRAWINGS LIGHT UP AND HORIZONTAL
184
+ 0x8A 0x253C # BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL
185
+ 0x8B 0x2580 # UPPER HALF BLOCK
186
+ 0x8C 0x2584 # LOWER HALF BLOCK
187
+ 0x8D 0x2588 # FULL BLOCK
188
+ 0x8E 0x258C # LEFT HALF BLOCK
189
+ 0x8F 0x2590 # RIGHT HALF BLOCK
190
+ 0x90 0x2591 # LIGHT SHADE
191
+ 0x91 0x2592 # MEDIUM SHADE
192
+ 0x92 0x2593 # DARK SHADE
193
+ 0x93 0x2320 # TOP HALF INTEGRAL
194
+ 0x94 0x25A0 # BLACK SQUARE
195
+ 0x95 0x2219 # BULLET OPERATOR
196
+ 0x96 0x221A # SQUARE ROOT
197
+ 0x97 0x2248 # ALMOST EQUAL TO
198
+ 0x98 0x2264 # LESS-THAN OR EQUAL TO
199
+ 0x99 0x2265 # GREATER-THAN OR EQUAL TO
200
+ 0x9A 0x00A0 # NO-BREAK SPACE
201
+ 0x9B 0x2321 # BOTTOM HALF INTEGRAL
202
+ 0x9C 0x00B0 # DEGREE SIGN
203
+ 0x9D 0x00B2 # SUPERSCRIPT TWO
204
+ 0x9E 0x00B7 # MIDDLE DOT
205
+ 0x9F 0x00F7 # DIVISION SIGN
206
+ 0xA0 0x2550 # BOX DRAWINGS DOUBLE HORIZONTAL
207
+ 0xA1 0x2551 # BOX DRAWINGS DOUBLE VERTICAL
208
+ 0xA2 0x2552 # BOX DRAWINGS DOWN SINGLE AND RIGHT DOUBLE
209
+ 0xA3 0x0451 # CYRILLIC SMALL LETTER IO
210
+ 0xA4 0x0454 # CYRILLIC SMALL LETTER UKRAINIAN IE
211
+ 0xA5 0x2554 # BOX DRAWINGS DOUBLE DOWN AND RIGHT
212
+ 0xA6 0x0456 # CYRILLIC SMALL LETTER BYELORUSSIAN-UKRAINIAN I
213
+ 0xA7 0x0457 # CYRILLIC SMALL LETTER YI (UKRAINIAN)
214
+ 0xA8 0x2557 # BOX DRAWINGS DOUBLE DOWN AND LEFT
215
+ 0xA9 0x2558 # BOX DRAWINGS UP SINGLE AND RIGHT DOUBLE
216
+ 0xAA 0x2559 # BOX DRAWINGS UP DOUBLE AND RIGHT SINGLE
217
+ 0xAB 0x255A # BOX DRAWINGS DOUBLE UP AND RIGHT
218
+ 0xAC 0x255B # BOX DRAWINGS UP SINGLE AND LEFT DOUBLE
219
+ 0xAD 0x0491 # CYRILLIC SMALL LETTER GHE WITH UPTURN
220
+ 0xAE 0x255D # BOX DRAWINGS DOUBLE UP AND LEFT
221
+ 0xAF 0x255E # BOX DRAWINGS VERTICAL SINGLE AND RIGHT DOUBLE
222
+ 0xB0 0x255F # BOX DRAWINGS VERTICAL DOUBLE AND RIGHT SINGLE
223
+ 0xB1 0x2560 # BOX DRAWINGS DOUBLE VERTICAL AND RIGHT
224
+ 0xB2 0x2561 # BOX DRAWINGS VERTICAL SINGLE AND LEFT DOUBLE
225
+ 0xB3 0x0401 # CYRILLIC CAPITAL LETTER IO
226
+ 0xB4 0x0404 # CYRILLIC CAPITAL LETTER UKRAINIAN IE
227
+ 0xB5 0x2563 # BOX DRAWINGS DOUBLE VERTICAL AND LEFT
228
+ 0xB6 0x0406 # CYRILLIC CAPITAL LETTER BYELORUSSIAN-UKRAINIAN I
229
+ 0xB7 0x0407 # CYRILLIC CAPITAL LETTER YI (UKRAINIAN)
230
+ 0xB8 0x2566 # BOX DRAWINGS DOUBLE DOWN AND HORIZONTAL
231
+ 0xB9 0x2567 # BOX DRAWINGS UP SINGLE AND HORIZONTAL DOUBLE
232
+ 0xBA 0x2568 # BOX DRAWINGS UP DOUBLE AND HORIZONTAL SINGLE
233
+ 0xBB 0x2569 # BOX DRAWINGS DOUBLE UP AND HORIZONTAL
234
+ 0xBC 0x256A # BOX DRAWINGS VERTICAL SINGLE AND HORIZONTAL DOUBLE
235
+ 0xBD 0x0490 # CYRILLIC CAPITAL LETTER GHE WITH UPTURN
236
+ 0xBE 0x256C # BOX DRAWINGS DOUBLE VERTICAL AND HORIZONTAL
237
+ 0xBF 0x00A9 # COPYRIGHT SIGN
238
+ 0xC0 0x044E # CYRILLIC SMALL LETTER YU
239
+ 0xC1 0x0430 # CYRILLIC SMALL LETTER A
240
+ 0xC2 0x0431 # CYRILLIC SMALL LETTER BE
241
+ 0xC3 0x0446 # CYRILLIC SMALL LETTER TSE
242
+ 0xC4 0x0434 # CYRILLIC SMALL LETTER DE
243
+ 0xC5 0x0435 # CYRILLIC SMALL LETTER IE
244
+ 0xC6 0x0444 # CYRILLIC SMALL LETTER EF
245
+ 0xC7 0x0433 # CYRILLIC SMALL LETTER GHE
246
+ 0xC8 0x0445 # CYRILLIC SMALL LETTER HA
247
+ 0xC9 0x0438 # CYRILLIC SMALL LETTER I
248
+ 0xCA 0x0439 # CYRILLIC SMALL LETTER SHORT I
249
+ 0xCB 0x043A # CYRILLIC SMALL LETTER KA
250
+ 0xCC 0x043B # CYRILLIC SMALL LETTER EL
251
+ 0xCD 0x043C # CYRILLIC SMALL LETTER EM
252
+ 0xCE 0x043D # CYRILLIC SMALL LETTER EN
253
+ 0xCF 0x043E # CYRILLIC SMALL LETTER O
254
+ 0xD0 0x043F # CYRILLIC SMALL LETTER PE
255
+ 0xD1 0x044F # CYRILLIC SMALL LETTER YA
256
+ 0xD2 0x0440 # CYRILLIC SMALL LETTER ER
257
+ 0xD3 0x0441 # CYRILLIC SMALL LETTER ES
258
+ 0xD4 0x0442 # CYRILLIC SMALL LETTER TE
259
+ 0xD5 0x0443 # CYRILLIC SMALL LETTER U
260
+ 0xD6 0x0436 # CYRILLIC SMALL LETTER ZHE
261
+ 0xD7 0x0432 # CYRILLIC SMALL LETTER VE
262
+ 0xD8 0x044C # CYRILLIC SMALL LETTER SOFT SIGN
263
+ 0xD9 0x044B # CYRILLIC SMALL LETTER YERU
264
+ 0xDA 0x0437 # CYRILLIC SMALL LETTER ZE
265
+ 0xDB 0x0448 # CYRILLIC SMALL LETTER SHA
266
+ 0xDC 0x044D # CYRILLIC SMALL LETTER E
267
+ 0xDD 0x0449 # CYRILLIC SMALL LETTER SHCHA
268
+ 0xDE 0x0447 # CYRILLIC SMALL LETTER CHE
269
+ 0xDF 0x044A # CYRILLIC SMALL LETTER HARD SIGN
270
+ 0xE0 0x042E # CYRILLIC CAPITAL LETTER YU
271
+ 0xE1 0x0410 # CYRILLIC CAPITAL LETTER A
272
+ 0xE2 0x0411 # CYRILLIC CAPITAL LETTER BE
273
+ 0xE3 0x0426 # CYRILLIC CAPITAL LETTER TSE
274
+ 0xE4 0x0414 # CYRILLIC CAPITAL LETTER DE
275
+ 0xE5 0x0415 # CYRILLIC CAPITAL LETTER IE
276
+ 0xE6 0x0424 # CYRILLIC CAPITAL LETTER EF
277
+ 0xE7 0x0413 # CYRILLIC CAPITAL LETTER GHE
278
+ 0xE8 0x0425 # CYRILLIC CAPITAL LETTER HA
279
+ 0xE9 0x0418 # CYRILLIC CAPITAL LETTER I
280
+ 0xEA 0x0419 # CYRILLIC CAPITAL LETTER SHORT I
281
+ 0xEB 0x041A # CYRILLIC CAPITAL LETTER KA
282
+ 0xEC 0x041B # CYRILLIC CAPITAL LETTER EL
283
+ 0xED 0x041C # CYRILLIC CAPITAL LETTER EM
284
+ 0xEE 0x041D # CYRILLIC CAPITAL LETTER EN
285
+ 0xEF 0x041E # CYRILLIC CAPITAL LETTER O
286
+ 0xF0 0x041F # CYRILLIC CAPITAL LETTER PE
287
+ 0xF1 0x042F # CYRILLIC CAPITAL LETTER YA
288
+ 0xF2 0x0420 # CYRILLIC CAPITAL LETTER ER
289
+ 0xF3 0x0421 # CYRILLIC CAPITAL LETTER ES
290
+ 0xF4 0x0422 # CYRILLIC CAPITAL LETTER TE
291
+ 0xF5 0x0423 # CYRILLIC CAPITAL LETTER U
292
+ 0xF6 0x0416 # CYRILLIC CAPITAL LETTER ZHE
293
+ 0xF7 0x0412 # CYRILLIC CAPITAL LETTER VE
294
+ 0xF8 0x042C # CYRILLIC CAPITAL LETTER SOFT SIGN
295
+ 0xF9 0x042B # CYRILLIC CAPITAL LETTER YERU
296
+ 0xFA 0x0417 # CYRILLIC CAPITAL LETTER ZE
297
+ 0xFB 0x0428 # CYRILLIC CAPITAL LETTER SHA
298
+ 0xFC 0x042D # CYRILLIC CAPITAL LETTER E
299
+ 0xFD 0x0429 # CYRILLIC CAPITAL LETTER SHCHA
300
+ 0xFE 0x0427 # CYRILLIC CAPITAL LETTER CHE
301
+ 0xFF 0x042A # CYRILLIC CAPITAL LETTER HARD SIGN