Mercurial > emacs
annotate lisp/play/handwrite.el @ 62372:4560134d21fa
(open-network-stream-nowait): Remove.
(open-network-stream-server): Remove.
author | Kim F. Storm <storm@cua.dk> |
---|---|
date | Sun, 15 May 2005 20:42:43 +0000 |
parents | eaa9acd9122c |
children | 18a818a2ee7c 62afea0771d8 |
rev | line source |
---|---|
24380
6ef51f9beabc
(handwrite): Require ps-print, and use ps-printer-name and
Eli Zaretskii <eliz@gnu.org>
parents:
21363
diff
changeset
|
1 ;;; handwrite.el --- turns your emacs buffer into a handwritten document -*- coding: iso-latin-1; -*- |
17449 | 2 |
62249
eaa9acd9122c
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
53417
diff
changeset
|
3 ;; (C) Copyright 1996, 2005 Free Software Foundation, Inc. |
17449 | 4 |
38455 | 5 ;; Author: Danny Roozendaal (was: <danny@tvs.kun.nl>) |
16502 | 6 ;; Created: October 21 1996 |
29250 | 7 ;; Keywords: wp, print, postscript, cursive writing |
17449 | 8 |
16502 | 9 ;; This file is part of GNU Emacs. |
17449 | 10 |
16502 | 11 ;; GNU Emacs is free software; you can redistribute it and/or modify |
12 ;; it under the terms of the GNU General Public License as published by | |
13 ;; the Free Software Foundation; either version 2, or (at your option) | |
14 ;; any later version. | |
17449 | 15 |
16502 | 16 ;; GNU Emacs is distributed in the hope that it will be useful, |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
17449 | 20 |
16502 | 21 ;; You should have received a copy of the GNU General Public License |
17449 | 22 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
24 ;; Boston, MA 02111-1307, USA. | |
25 | |
16502 | 26 ;;; Commentary: |
27 ;; | |
28 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
29 ;; The function handwrite creates PostScript output containing a | |
30 ;; handwritten version of the current buffer.. | |
31 ;; Other functions that may be useful are | |
32 ;; | |
33 ;; handwrite-10pt: sets the font size to 10 and finds corresponding | |
34 ;; values for the line spacing and the number of lines | |
35 ;; on a page. | |
36 ;; handwrite-11pt: which is similar | |
37 ;; handwrite-12pt: which is also similar | |
38 ;; handwrite-13pt: which is similar, too | |
39 ;; | |
40 ;; handwrite-set-pagenumber: set and unset page numbering | |
41 ;; | |
42 ;; | |
43 ;; If you are not satisfied with the type page there are a number of | |
44 ;; variables you may want to set. | |
45 ;; | |
46 ;; | |
47 ;; Installation | |
48 ;; | |
49 ;; type at your prompt "emacs -l handwrite.el" or put this file on your | |
50 ;; Emacs-Lisp load path, add the following into your ~/.emacs startup file | |
51 ;; | |
52 ;; (require 'handwrite) | |
53 ;; | |
54 ;; "M-x handwrite" or "Write by hand" in the edit menu should work now. | |
55 ;; | |
56 ;; | |
57 ;; I tried to make it `iso_8859_1'-friendly, but there are some exotic | |
58 ;; characters missing. | |
59 ;; | |
60 ;; | |
61 ;; Known bugs: -Page feeds do not do their work, but are ignored instead. | |
62 ;; -Tabs are not always properly displayed. | |
63 ;; -Handwrite may create corrupt PostScript if it encounters | |
64 ;; unknown characters. | |
65 ;; | |
66 ;; Thanks to anyone who emailed me suggestions! | |
67 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
68 | |
69 | |
70 ;;; Code: | |
71 | |
72 | |
73 ;; Variables | |
74 | |
21363 | 75 (defgroup handwrite nil |
76 "Turns your emacs buffer into a handwritten document." | |
77 :prefix "handwrite-" | |
78 :group 'games) | |
79 | |
16502 | 80 (defvar handwrite-psindex 0 |
18949 | 81 "The index of the PostScript buffer.") |
16502 | 82 (defvar menu-bar-handwrite-map (make-sparse-keymap "Handwrite functions.")) |
83 (fset 'menu-bar-handwrite-map (symbol-value 'menu-bar-handwrite-map)) | |
84 | |
85 | |
86 ;; User definable variables | |
87 | |
21363 | 88 (defcustom handwrite-numlines 60 |
89 "*The number of lines on a page of the PostScript output from `handwrite'." | |
90 :type 'integer | |
91 :group 'handwrite) | |
92 (defcustom handwrite-fontsize 11 | |
93 "*The size of the font for the PostScript output from `handwrite'." | |
94 :type 'integer | |
95 :group 'handwrite) | |
96 (defcustom handwrite-linespace 12 | |
97 "*The spacing for the PostScript output from `handwrite'." | |
98 :type 'integer | |
99 :group 'handwrite) | |
100 (defcustom handwrite-xstart 30 | |
101 "*X-axis translation in the PostScript output from `handwrite'." | |
102 :type 'integer | |
103 :group 'handwrite) | |
104 (defcustom handwrite-ystart 810 | |
105 "*Y-axis translation in the PostScript output from `handwrite'." | |
106 :type 'integer | |
107 :group 'handwrite) | |
108 (defcustom handwrite-pagenumbering nil | |
109 "*If non-nil, number each page of the PostScript output from `handwrite'." | |
110 :type 'boolean | |
111 :group 'handwrite) | |
112 (defcustom handwrite-10pt-numlines 65 | |
113 "*The number of lines on a page for the function `handwrite-10pt'." | |
114 :type 'integer | |
115 :group 'handwrite) | |
116 (defcustom handwrite-11pt-numlines 60 | |
117 "*The number of lines on a page for the function `handwrite-11pt'." | |
118 :type 'integer | |
119 :group 'handwrite) | |
120 (defcustom handwrite-12pt-numlines 55 | |
121 "*The number of lines on a page for the function `handwrite-12pt'." | |
122 :type 'integer | |
123 :group 'handwrite) | |
124 (defcustom handwrite-13pt-numlines 50 | |
125 "*The number of lines on a page for the function `handwrite-13pt'." | |
126 :type 'integer | |
127 :group 'handwrite) | |
16502 | 128 |
129 ;; Interactive functions | |
130 | |
18949 | 131 ;;;###autoload |
132 (defun handwrite () | |
133 "Turns the buffer into a \"handwritten\" document. | |
134 The functions `handwrite-10pt', `handwrite-11pt', `handwrite-12pt' | |
135 and `handwrite-13pt' set up for various sizes of output. | |
136 | |
16502 | 137 Variables: handwrite-linespace (default 12) |
138 handwrite-fontsize (default 11) | |
139 handwrite-numlines (default 60) | |
140 handwrite-pagenumbering (default nil)" | |
141 (interactive) | |
142 (let | |
143 ((pmin) ; thanks, Havard | |
144 (lastp) | |
145 (cur-buf (current-buffer)) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
45321
diff
changeset
|
146 (tpoint (point)) |
16502 | 147 (ps-ypos 63) |
148 (lcount 0) | |
149 (ipage 1) | |
150 (nlan next-line-add-newlines) ;remember the old value | |
151 (buf-name (buffer-name) ) | |
152 (textp) | |
153 (ps-buf-name) ;name of the PostScript buffer | |
154 ) | |
155 (goto-char (point-min)) ;start at beginning | |
156 (setq handwrite-psindex (1+ handwrite-psindex)) | |
157 (setq ps-buf-name | |
158 (format "*handwritten%d.ps*" handwrite-psindex)) | |
159 (setq next-line-add-newlines t) | |
160 (switch-to-buffer ps-buf-name) | |
161 (handwrite-insert-header buf-name) | |
53417
4748e0ab5cf9
(handwrite): Make the handwrite credit message
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
162 (insert "%%Creator: GNU Emacs' handwrite version " emacs-version "\n") |
16502 | 163 (handwrite-insert-preamble) |
164 (handwrite-insert-info) | |
165 (handwrite-insert-font) | |
166 (setq textp (point)) | |
167 (insert "%%Page: 1 1\n") | |
168 (insert "Hwjst\n") | |
169 (insert "/Hwsave save def\n") | |
170 (if handwrite-pagenumbering (insert "20 30 m\nxym(page 1)a\n")) | |
171 (insert "44 63 m\n") | |
172 (insert "xym( )a") | |
173 (backward-char 3) | |
174 (switch-to-buffer cur-buf) | |
175 (goto-char (point-min)) ;start at beginning | |
176 (save-excursion | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
45321
diff
changeset
|
177 ;;as long as we see a newline the document is not ended. |
16502 | 178 (while (re-search-forward "\n" nil t) |
179 (previous-line 1) | |
180 (beginning-of-line) | |
181 (setq pmin (point)) | |
182 (search-forward "\n" nil t) | |
183 (backward-char 1) | |
184 (copy-region-as-kill (point) pmin) | |
185 (forward-char 1) | |
186 (switch-to-buffer ps-buf-name) | |
187 (yank) | |
188 (message "write write write...") | |
189 (search-forward ")a" nil t) | |
190 (backward-char 2) | |
191 (setq lastp (point)) | |
192 (beginning-of-line) | |
193 (search-forward "(" nil t) | |
194 (while (re-search-forward "[()\\]" lastp t) | |
195 (save-excursion | |
196 (setq lastp (+ lastp 1)) | |
197 (forward-char -1) | |
198 (insert "\\"))) | |
199 (setq ps-ypos (+ ps-ypos handwrite-linespace)) | |
200 (end-of-line) | |
201 (insert "\n") | |
202 (setq lcount (+ lcount 1)) | |
203 (cond ( (eq lcount handwrite-numlines) | |
204 (setq ipage (+ ipage 1)) | |
205 (insert "0 0 m\n") | |
206 (insert "showpage exec Hwsave restore\n") | |
207 (insert "%%Page: " (number-to-string ipage) " " | |
208 (number-to-string ipage) "\n") | |
209 (insert "Hwjst\n") | |
210 (insert "/Hwsave save def\n") | |
211 (if handwrite-pagenumbering | |
212 (insert "20 30 m\nxym(page " | |
213 (number-to-string ipage) ")a\n")) | |
214 (setq ps-ypos 63) | |
215 (setq lcount 0) | |
216 )) | |
217 (insert "44 "(number-to-string ps-ypos) " m\n") | |
218 (insert "xym( )a") | |
219 (backward-char 3) | |
220 (switch-to-buffer cur-buf) | |
221 )) | |
222 (switch-to-buffer ps-buf-name) | |
223 (next-line 1) | |
224 (insert "showpage exec Hwsave restore\n\n") | |
225 (insert "%%Pages " (number-to-string ipage) " 0\n") | |
226 (insert "%%EOF\n") | |
227 (goto-char textp) ;start where the inserted text begins | |
228 (while (search-forward "ÿ" nil t) | |
229 (replace-match "\\" nil t) (insert "264")) | |
230 (goto-char textp) | |
231 (while (search-forward "á" nil t) | |
232 (replace-match "\\" nil t) (insert "207")) | |
233 (goto-char textp) | |
234 (while (search-forward "à" nil t) | |
235 (replace-match "\\" nil t) (insert "210")) | |
236 (goto-char textp) | |
237 (while (search-forward "â" nil t) | |
238 (replace-match "\\" nil t) (insert "211")) | |
239 (goto-char textp) | |
240 (while (search-forward "ä" nil t) | |
241 (replace-match "\\" nil t) (insert "212")) | |
242 (goto-char textp) | |
243 (while (search-forward "ã" nil t) | |
244 (replace-match "\\" nil t) (insert "213")) | |
245 (goto-char textp) | |
246 (while (search-forward "å" nil t) | |
247 (replace-match "\\" nil t) (insert "214")) | |
248 (goto-char textp) | |
249 (while (search-forward "é" nil t) | |
250 (replace-match "\\" nil t) (insert "216")) | |
251 (goto-char textp) | |
252 (while (search-forward "è" nil t) | |
253 (replace-match "\\" nil t) (insert "217")) | |
254 (goto-char textp) | |
255 (while (search-forward "ê" nil t) | |
256 (replace-match "\\" nil t) (insert "220")) | |
257 (goto-char textp) | |
258 (while (search-forward "ë" nil t) | |
259 (replace-match "\\" nil t) (insert "221")) | |
260 (goto-char textp) | |
261 (while (search-forward "í" nil t) | |
262 (replace-match "\\" nil t) (insert "222")) | |
263 (goto-char textp) | |
264 (while (search-forward "ì" nil t) | |
265 (replace-match "\\" nil t) (insert "223")) | |
266 (goto-char textp) | |
267 (while (search-forward "î" nil t) | |
268 (replace-match "\\" nil t) (insert "224")) | |
269 (goto-char textp) | |
270 (while (search-forward "ï" nil t) | |
271 (replace-match "\\" nil t) (insert "225")) | |
272 (goto-char textp) | |
273 (while (search-forward "ó" nil t) | |
274 (replace-match "\\" nil t) (insert "227")) | |
275 (goto-char textp) | |
276 (while (search-forward "ò" nil t) | |
277 (replace-match "\\" nil t) (insert "230")) | |
278 (goto-char textp) | |
279 (while (search-forward "ô" nil t) | |
280 (replace-match "\\" nil t) (insert "231")) | |
281 (goto-char textp) | |
282 (while (search-forward "ö" nil t) | |
283 (replace-match "\\" nil t) (insert "232")) | |
284 (goto-char textp) | |
285 (while (search-forward "õ" nil t) | |
286 (replace-match "\\" nil t) (insert "233")) | |
287 (goto-char textp) | |
288 (while (search-forward "ú" nil t) | |
289 (replace-match "\\" nil t) (insert "234")) | |
290 (goto-char textp) | |
291 (while (search-forward "ù" nil t) | |
292 (replace-match "\\" nil t) (insert "235")) | |
293 (goto-char textp) | |
294 (while (search-forward "û" nil t) | |
295 (replace-match "\\" nil t) (insert "236")) | |
296 (goto-char textp) | |
297 (while (search-forward "ü" nil t) | |
298 (replace-match "\\" nil t) (insert "237")) | |
299 (goto-char textp) | |
300 (while (search-forward "ß" nil t) | |
301 (replace-match "\\" nil t) (insert "247")) | |
302 (goto-char textp) | |
303 (while (search-forward "°" nil t) | |
304 (replace-match "\\" nil t) (insert "241")) | |
305 (goto-char textp) | |
306 (while (search-forward "®" nil t) | |
307 (replace-match "\\" nil t) (insert "250")) | |
308 (goto-char textp) | |
309 (while (search-forward "©" nil t) | |
310 (replace-match "\\" nil t) (insert "251")) | |
311 (goto-char textp) | |
312 (while (search-forward "ij" nil t) | |
313 (replace-match "\\" nil t) (insert "264")) | |
314 (goto-char textp) | |
315 (while (search-forward "ç" nil t) | |
316 (replace-match "\\" nil t) (insert "215")) | |
317 (goto-char textp) | |
318 (while (search-forward "§" nil t) | |
319 (replace-match "\\" nil t) (insert "244")) | |
320 (goto-char textp) | |
321 (while (search-forward "ñ" nil t) | |
322 (replace-match "\\" nil t) (insert "226")) | |
323 (goto-char textp) | |
324 (while (search-forward "£" nil t) | |
325 (replace-match "\\" nil t) (insert "243")) | |
326 ;;To avoid cumbersome code we simply ignore pagefeeds | |
327 (goto-char textp) | |
328 (while (search-forward "\f" nil t) | |
329 (replace-match "" nil t) ) | |
330 (untabify textp (point-max)) ; this may result in strange tabs | |
331 (if (y-or-n-p "Send this to the printer? ") | |
24380
6ef51f9beabc
(handwrite): Require ps-print, and use ps-printer-name and
Eli Zaretskii <eliz@gnu.org>
parents:
21363
diff
changeset
|
332 (progn |
6ef51f9beabc
(handwrite): Require ps-print, and use ps-printer-name and
Eli Zaretskii <eliz@gnu.org>
parents:
21363
diff
changeset
|
333 (require 'ps-print) |
6ef51f9beabc
(handwrite): Require ps-print, and use ps-printer-name and
Eli Zaretskii <eliz@gnu.org>
parents:
21363
diff
changeset
|
334 (let* ((coding-system-for-write 'raw-text-unix) |
6ef51f9beabc
(handwrite): Require ps-print, and use ps-printer-name and
Eli Zaretskii <eliz@gnu.org>
parents:
21363
diff
changeset
|
335 (ps-printer-name (or ps-printer-name |
6ef51f9beabc
(handwrite): Require ps-print, and use ps-printer-name and
Eli Zaretskii <eliz@gnu.org>
parents:
21363
diff
changeset
|
336 (and (boundp 'printer-name) |
6ef51f9beabc
(handwrite): Require ps-print, and use ps-printer-name and
Eli Zaretskii <eliz@gnu.org>
parents:
21363
diff
changeset
|
337 printer-name))) |
6ef51f9beabc
(handwrite): Require ps-print, and use ps-printer-name and
Eli Zaretskii <eliz@gnu.org>
parents:
21363
diff
changeset
|
338 (ps-lpr-switches |
6ef51f9beabc
(handwrite): Require ps-print, and use ps-printer-name and
Eli Zaretskii <eliz@gnu.org>
parents:
21363
diff
changeset
|
339 (if (stringp ps-printer-name) |
6ef51f9beabc
(handwrite): Require ps-print, and use ps-printer-name and
Eli Zaretskii <eliz@gnu.org>
parents:
21363
diff
changeset
|
340 (list (concat "-P" ps-printer-name))))) |
6ef51f9beabc
(handwrite): Require ps-print, and use ps-printer-name and
Eli Zaretskii <eliz@gnu.org>
parents:
21363
diff
changeset
|
341 (apply (or ps-print-region-function 'call-process-region) |
6ef51f9beabc
(handwrite): Require ps-print, and use ps-printer-name and
Eli Zaretskii <eliz@gnu.org>
parents:
21363
diff
changeset
|
342 (point-min) (point-max) ps-lpr-command nil nil nil)))) |
16502 | 343 (message "") |
344 (bury-buffer ()) | |
345 (switch-to-buffer cur-buf) | |
346 (goto-char tpoint) | |
347 (setq next-line-add-newlines nlan) | |
348 )) | |
349 | |
350 | |
351 (defun handwrite-set-pagenumber () | |
18949 | 352 "Toggle the value of `handwrite-pagenumbering'." |
16502 | 353 (interactive) |
354 (if handwrite-pagenumbering | |
355 (handwrite-set-pagenumber-off)(handwrite-set-pagenumber-on))) | |
356 | |
357 (defun handwrite-10pt () | |
18949 | 358 "Specify 10-point output for `handwrite. |
359 This sets `handwrite-fontsize' to 10 and finds correct | |
360 values for `handwrite-linespace' and `handwrite-numlines'." | |
16502 | 361 (interactive) |
362 (setq handwrite-fontsize 10) | |
363 (setq handwrite-linespace 11) | |
364 (setq handwrite-numlines handwrite-10pt-numlines) | |
365 (define-key menu-bar-handwrite-map [10pt] | |
366 '("10 pt *" . handwrite-10pt)) | |
367 (define-key menu-bar-handwrite-map [11pt] | |
368 '("11 pt" . handwrite-11pt)) | |
369 (define-key menu-bar-handwrite-map [12pt] | |
370 '("12 pt" . handwrite-12pt)) | |
371 (define-key menu-bar-handwrite-map [13pt] | |
372 '("13 pt" . handwrite-13pt)) | |
18949 | 373 (message "Handwrite output size set to 10 points")) |
16502 | 374 |
375 | |
376 (defun handwrite-11pt () | |
18949 | 377 "Specify 11-point output for `handwrite. |
378 This sets `handwrite-fontsize' to 11 and finds correct | |
379 values for `handwrite-linespace' and `handwrite-numlines'." | |
16502 | 380 (interactive) |
381 (setq handwrite-fontsize 11) | |
382 (setq handwrite-linespace 12) | |
18949 | 383 (setq handwrite-numlines handwrite-11pt-numlines) |
16502 | 384 (define-key menu-bar-handwrite-map [10pt] |
385 '("10 pt" . handwrite-10pt)) | |
386 (define-key menu-bar-handwrite-map [11pt] | |
387 '("11 pt *" . handwrite-11pt)) | |
388 (define-key menu-bar-handwrite-map [12pt] | |
389 '("12 pt" . handwrite-12pt)) | |
390 (define-key menu-bar-handwrite-map [13pt] | |
391 '("13 pt" . handwrite-13pt)) | |
18949 | 392 (message "Handwrite output size set to 11 points")) |
16502 | 393 |
394 (defun handwrite-12pt () | |
18949 | 395 "Specify 12-point output for `handwrite. |
396 This sets `handwrite-fontsize' to 12 and finds correct | |
397 values for `handwrite-linespace' and `handwrite-numlines'." | |
16502 | 398 (interactive) |
399 (setq handwrite-fontsize 12) | |
400 (setq handwrite-linespace 13) | |
401 (setq handwrite-numlines handwrite-12pt-numlines) | |
402 (define-key menu-bar-handwrite-map [10pt] | |
403 '("10 pt" . handwrite-10pt)) | |
404 (define-key menu-bar-handwrite-map [11pt] | |
405 '("11 pt" . handwrite-11pt)) | |
406 (define-key menu-bar-handwrite-map [12pt] | |
407 '("12 pt *" . handwrite-12pt)) | |
408 (define-key menu-bar-handwrite-map [13pt] | |
409 '("13 pt" . handwrite-13pt)) | |
18949 | 410 (message "Handwrite output size set to 12 points")) |
16502 | 411 |
412 (defun handwrite-13pt () | |
18949 | 413 "Specify 13-point output for `handwrite. |
414 This sets `handwrite-fontsize' to 13 and finds correct | |
415 values for `handwrite-linespace' and `handwrite-numlines'." | |
16502 | 416 (interactive) |
417 (setq handwrite-fontsize 13) | |
418 (setq handwrite-linespace 14) | |
419 (setq handwrite-numlines handwrite-13pt-numlines) | |
420 (define-key menu-bar-handwrite-map [10pt] | |
421 '("10 pt" . handwrite-10pt)) | |
422 (define-key menu-bar-handwrite-map [11pt] | |
423 '("11 pt" . handwrite-11pt)) | |
424 (define-key menu-bar-handwrite-map [12pt] | |
425 '("12 pt" . handwrite-12pt)) | |
426 (define-key menu-bar-handwrite-map [13pt] | |
427 '("13 pt *" . handwrite-13pt)) | |
18949 | 428 (message "Handwrite output size set to 13 points")) |
16502 | 429 |
430 | |
431 ;; Internal Functions | |
432 | |
433 ;;The header for the PostScript output. The argument is the name of | |
434 ;;the original buffer | |
435 (defun handwrite-insert-header (buf-name) | |
436 (insert "%!PS-Adobe-2.0\n") | |
437 (insert "%%Title: " buf-name "\n") | |
438 (insert "%%CreationDate: " (current-time-string) "\n" ) | |
439 (insert "%%Pages: (atend)\n") | |
440 (insert "%%For: " user-mail-address "\n") | |
441 (insert "%%EndComments\n")) | |
442 | |
443 ;;Some PostScript definitions for using our font. | |
444 (defun handwrite-insert-preamble () | |
445 (insert "\n%%BeginPreamble | |
446 /m {moveto} def | |
447 /r {roll} def | |
448 /e {exch} def | |
449 /a {awidthshow} def | |
450 /xym {0.52490 0. 32 0.05249 0.} def | |
451 /HwJdict 80 dict def | |
452 /Hwfdict 80 dict def | |
453 /getsymb {Hwfdict /Jsymb get 3 1 r put} def | |
454 /Chread{ | |
455 { e begin | |
456 HwJdict begin %read in character specifications | |
457 /jnum e def | |
458 /jnum1 jnum 6 mul def | |
459 save symbstr jnum1 6 getinterval{ | |
460 }forall | |
461 /pixvol e def | |
462 /pixwid e def | |
463 /charwidth e def | |
464 /trx e def | |
465 /try e def | |
466 /pixf e def | |
467 .02666667 .02666667 scale | |
468 /pixwid pixwid 1.042 mul def | |
469 /pixwidn pixwid trx add def | |
470 /pixvoln pixvol try add def | |
471 charwidth 0 trx try pixwidn pixvoln setcachedevice | |
472 newpath 0 0 m | |
473 pixf 0 gt{ | |
474 pixf 3 bitshift | |
475 trx try translate | |
476 pixwid pixvol scale | |
477 /pixvol1 {pixvol 4 add true} def | |
478 /pixvol2 pixvol neg def | |
479 /pixvol3 pixvol 2 add def | |
480 pixvol1 pixwid 0 0 pixvol2 0 pixvol3 6 array astore | |
481 Jsymb jnum get | |
482 imagemask | |
483 }if | |
484 restore | |
485 end | |
486 end | |
487 }def | |
488 }def | |
489 /Hwjst{ | |
490 /Joepie findfont [Hws 0 Hws pop 0 Hws neg 0 0] makefont setfont | |
491 }def | |
492 %%EndPreamble\n")) | |
493 | |
45321
f767f3bf5f86
*** empty log message ***
Juanma Barranquero <lekktu@gmail.com>
parents:
38455
diff
changeset
|
494 ;;The font size for the PostScript output. |
16502 | 495 ;;Also the x-y-translations of the PostScript stuff. |
496 (defun handwrite-insert-info () | |
497 (insert "\n%%BeginSizeTranslate\n") | |
498 (insert "/Hws " (number-to-string handwrite-fontsize) " def") | |
499 (insert " %The size of the font\n") | |
500 (insert (number-to-string handwrite-xstart)" " | |
501 (number-to-string handwrite-ystart)) | |
502 (insert " translate %Translate the origin to the current location\n") | |
503 (insert "1 -1 scale %Flip the y coordinate\n") | |
504 (insert "%%EndSizeTranslate\n\n")) | |
505 | |
506 | |
507 ;;Bitmap PostScript font for pseudo handwritten documents. | |
508 ;;Two years ago, I created the 36 points font for my | |
509 ;;Apple Macintosh Classic II resulting in unusual ascii numbers. | |
510 (defun handwrite-insert-font () | |
511 (insert "\n%%BeginFont Joepie | |
512 Hwfdict begin | |
513 /Jsymb 256 array def | |
514 /FontType 3 def | |
515 /FontBBox [0 0 1 1] def | |
516 /FontMatrix [1 0 0 1 0 0] def | |
517 /Encoding 256 array def | |
518 end | |
519 <002809000000 FF28FFFF0000 FF28FFFF0000 FF28FFFF0000 FF28FFFF0000 | |
520 FF28FFFF0000 FF28FFFF0000 FF28FFFF0000 FF28FFFF0000 002809080000 | |
521 FF28FFFF0000 FF28FFFF0000 FF28FFFF0000 002809000000 FF28FFFF0000 | |
522 FF28FFFF0000 FF28FFFF0000 FF28FFFF0000 FF28FFFF0000 FF28FFFF0000 | |
523 FF28FFFF0000 FF28FFFF0000 FF28FFFF0000 FF28FFFF0000 FF28FFFF0000 | |
524 FF28FFFF0000 FF28FFFF0000 FF28FFFF0000 FF28FFFF0000 FF28FFFF0000 | |
525 FF28FFFF0000 FF28FFFF0000 002809080000 020A0E08031E 021C0B0E0A0A | |
526 040C09161418 04050A121323 040D0F1C141B 040C141C0F19 021B0B08060D | |
527 02080B0C091E 0208080C0B20 041A0B100F0C 040E09141314 02060B08060B | |
528 0219090C0C03 020C0B080304 04090C120F1F 04080A121017 020C10120514 | |
529 040A09121216 040C09121216 02090B120D15 040C0B121015 040A0A12121B | |
530 020209120D1D 040A09121018 04040A12101C 020C0D080412 020408080717 | |
531 040B0B141116 040C0B16140B 040B0B141018 020A0D120C1C 04090B1C191F | |
532 040A091A1C1C 0408071A1E20 040A0B1A1A1E 040E0D201E1A 040C0916181C | |
533 040E0916171A 04010B1C1C27 060A0C20201E 040E060E141A 0401070E1327 | |
534 040E0A1C1D1A 040C0916181C 060C07262B1C 060C0520261C 04080D1E1C20 | |
535 040A05161C1C 040A0B1E1E1E 040A091A1D1E 040C0914171C 040E07161A1A | |
536 060E091E1F1A 040E071A1D1A 060A0B2C2C1E 040808181B20 040409161722 | |
537 040C08181A1C 020A080A0A1D 040A0610121E 0208090A0A1F 041C0714160A | |
538 040505161903 021B0C0C060D 040C08141713 040C0916181C 040C08121412 | |
539 040D0916181B 040C09141615 0202090C0D26 04040814171B 040A0916181E | |
540 020C090A0D1B 0202090A0C23 040A0814171E 020C080A0D1C 060C09222412 | |
541 040C08161910 040C08141611 04000816191C 04020914171B 040A090E1014 | |
542 040A09101213 040C090C0F1B 040C09161812 040A09121412 040C09181A10 | |
543 040C08121511 04020812151C 040C08101312 040A050A0F1E 020A1114031C | |
544 0208070A0E20 04140A141409 FF28FFFF0000 040A071A1B1C 040A091A181C | |
545 040A0B1A171E 020F0F160E16 040A0F201A1E 04080D1E1A20 040E0B1E1D1A | |
546 040C0814171B 040D0714171B 040D0714171A 040D0814171A 040D0814171B | |
547 040D0814171B 04000912141C 040C0914151C 040C0914161C 040C0914151C | |
548 040C0914151B 020B070A0D1C 020B070A0D1C 020B080A0D1C 020B070A0D1A | |
549 040C0616191A 040B0714171D 040B08141719 040B0814171A 040B08141718 | |
550 040B08141718 040B0716191B 040B0716191B 040B0716191C 040B08161919 | |
551 040A0912111C 02180C0E090C 04050712141F 040A0816151C 04080A121220 | |
552 020F0A120E10 040408181522 04040816191D 040A0D201A1E 040A09201C1C | |
553 06190B24210E 021C0B0C0708 0221090E0D03 040809141415 040C121E1619 | |
554 04080F1E1920 04130F1A1309 040C0B141216 04090914141E 040A0914131B | |
555 040209161823 04030A161519 020B0B120E19 0407091A1921 040A0B1E141E | |
556 040C0914140F 0401090C0F25 FF28FFFF0000 FF28FFFF0000 FF28FFFF0000 | |
557 FF28FFFF0000 040A0B14121A 04010910101B FF28FFFF0000 040A0614181C | |
558 040A09141618 0407090E1221 040D0A141510 002800160000 04080A141119 | |
559 04080614151A 040A0B1E1804 FF28FFFF0000 040A071A1B1D 040A071A191D | |
560 FF28FFFF0000 FF28FFFF0000 FF28FFFF0000 041408141303 061409262404 | |
561 041A0B120F0B 021D0B120D0A 021E0E0A050A 021E0B0A060A FF28FFFF0000 | |
562 FF28FFFF0000 FF28FFFF0000 FF28FFFF0000 040600060F1C FF28FFFF0000 | |
563 020C0A0C0B16 020D080C0C17 FF28FFFF0000 FF28FFFF0000 FF28FFFF0000 | |
564 02140B0A0506 02040908060E FF28FFFF0000 0608092A291E FF28FFFF0000 | |
565 FF28FFFF0000 FF28FFFF0000 FF28FFFF0000 FF28FFFF0000 FF28FFFF0000 | |
566 FF28FFFF0000 FF28FFFF0000 FF28FFFF0000 FF28FFFF0000 FF28FFFF0000 | |
567 040A0B1C181B 060C071E221C FF28FFFF0000 FF28FFFF0000 FF28FFFF0000 | |
568 FF28FFFF0000 021D0C0E0C08 021E090E0C06 0421060E1105 FF28FFFF0000 | |
569 021F0A0A0506 FF28FFFF0000 FF28FFFF0000 FF28FFFF0000 FF28FFFF0000 | |
570 041E09101107> | |
571 Hwfdict begin /symbstr e def end | |
572 255< 00000000 00000000 80018000 60030000 38060000 0E1C0000 03F00000 | |
573 01C00000 01800000 00000000 00000000>getsymb | |
574 250< 0000 0000 6000 7800 7800 F800 F800 7000 0000 0000>getsymb | |
575 248< 00000000 00000000 F8000000 3F800000 03F80000 007E0000 00038000 | |
576 00000000 00000000 >getsymb | |
577 247< 0000 0000 0030 0060 38E0 7FC0 C300 8000 0000 0000 >getsymb | |
578 246< 0000 0000 0C00 1E00 3F00 3380 60C0 4040 C020 0010 0000 0000 | |
579 >getsymb | |
580 241< 000000000000 000000000000 008000000000 00C000000000 03C000000000 | |
581 038000000000 000000000000 000000000000 000000000000 000000000000 | |
582 010000000000 010000000000 010007C00000 03001FE00000 070038700000 | |
583 070030300000 0F0060300000 1B00C0700000 3300C0600000 6300C0C0C000 | |
584 C300C3818000 030046030000 03007C020000 0300F0060000 0180F00C0000 | |
585 018198180000 01C30C300000 00CE06300000 00FC03E00000 007801C00000 | |
586 000000000000 000000000000 >getsymb | |
587 240< 00000000 00000000 00004000 0003C000 00038000 000E0000 000C0000 | |
588 00080000 00180000 0E187C00 1F98FC00 3FDCFF00 3FFFFF00 7FFFFE00 | |
589 7FFFFC00 FFFFF800 FFFFF000 FFFFF000 FFFFF000 FFFFF000 FFFFF000 | |
590 FFFFFC00 7FFFFC00 7FFFFF00 3FFFFF00 1FFFFE00 0FFFFE00 07FFF800 | |
591 03F3F000 00000000 00000000 >getsymb | |
592 228< 000000000000 000000000000 03C010000000 07C0F0000000 1C7330000000 | |
593 383F20000000 303040000000 2030C0000000 6030C0000000 C01080000000 | |
594 C01180000000 C03100000000 406300000000 604200000000 60C40E000080 | |
595 71843F01E080 3F0CE183B180 1E0880CE1F00 001180FA0600 003100460600 | |
596 0023004C0200 0047004C0300 004B004C0300 00B300CC0300 00E300CC0200 | |
597 01C1818C0200 03C1830C0600 0380830C0C00 0600FE061800 1C007C03F000 | |
598 180000000000 300000000000 000000000000 000000000000 >getsymb | |
599 226< 0000 0000 2000 1800 1800 0C00 0C00 0C00 0C00 0C00 0C00 1800 1000 | |
600 3000 6000 8000 0000 0000 >getsymb | |
601 225< 0000 0000 7000 E800 F800 F800 F000 F000 0000 0000 >getsymb | |
602 221< 0000 0000 8000 E000 3000 1C00 0E00 0700 0380 01C0 01C0 00E0 0030 | |
603 0030 0030 0060 00C0 0180 0300 0200 0600 0C00 1800 3000 4000 0000 0000 | |
604 >getsymb | |
605 220< 0000 0000 0060 0040 00C0 0180 0300 0600 0C00 1C00 3000 7000 6000 | |
606 C000 4000 6000 3000 3000 1800 1C00 0E00 0600 0300 0100 0000 0000 | |
607 >getsymb | |
608 218< 00000000 00000000 00020000 00060000 000E0000 000C0000 000C0000 | |
609 00180000 00180000 00100000 00300000 00200000 00200000 00400000 | |
610 00C00000 00C00000 01800000 01800000 03000000 03000000 06000000 | |
611 06000000 0C000000 1C000000 18000000 38000000 30000000 70000000 | |
612 60000000 C0000000 00000000 00000000 >getsymb | |
613 213< 0000 0000 2000 1800 0C00 0400 0400 0C00 1800 3000 6000 8000 0000 | |
614 0000 >getsymb | |
615 212< 0000 0000 0800 3000 6000 C000 C000 C000 6000 3000 1000 0800 0000 | |
616 0000 >getsymb | |
617 211< 0000 0000 0040 1020 0810 0C18 0C18 1818 3010 4030 8060 0040 0000 | |
618 0000 >getsymb | |
619 210< 00000000 00000000 00060000 04180000 18300000 30600000 60C00000 | |
620 C0C00000 C0C00000 C0C00000 C0400000 40200000 20000000 00000000 | |
621 00000000 >getsymb | |
622 209< 000000000000 000000000000 FFF000000000 0FFFC0000000 000FFFFE0000 | |
623 000007FFF000 000000000000 000000000000 >getsymb | |
624 208< 00000000 00000000 FFC00000 7FFF8000 007FE000 00000000 00000000 | |
625 >getsymb | |
626 204< 00000000 00000000 00000200 00038C00 0007F800 001CF000 00380000 | |
627 00200000 00000000 00000000 00080000 00060000 00030000 00078000 | |
628 0007C000 000CE000 001CF000 00303000 00303E00 003FF800 00FF1800 | |
629 00400C00 00C00C00 01800600 01800600 03000300 06000300 1C000380 | |
630 30000380 60000380 E0000700 00000000 00000000 >getsymb | |
631 203< 00000000 00000000 00300000 00180000 000E0000 00038000 0003C000 | |
632 0000E000 0000F000 00001800 00060800 00030000 00038000 00078000 | |
633 000EC000 000C6000 00182000 00302000 00703000 01FC3000 00FFF800 | |
634 01807F80 03800E00 07000200 06000200 0E000300 1C000100 38000180 | |
635 600000C0 C0000060 C0000060 00000000 00000000 >getsymb | |
636 201< 00000000 00000000 80180600 E03C0700 E07C0700 703C0E00 00000000 | |
637 00000000 >getsymb | |
638 200< 00000000 00000000 00100000 00180000 E00C0000 30060000 18060000 | |
639 0C070000 0E018000 0E01C000 0780C000 03806000 00E07000 00E03000 | |
640 00703800 00303800 00607000 00606000 01C0C000 0180C000 03018000 | |
641 06070000 0C060000 380C0000 30080000 00100000 00200000 00600000 | |
642 00000000 00000000 >getsymb | |
643 199< 00000000 00000000 00010000 00620000 00C60000 018C0000 03180000 | |
644 06180000 0C300000 18600000 10600000 70C00000 60C00000 E1C00000 | |
645 61C00000 30E00000 38600000 18300000 1C100000 0E080000 070C0000 | |
646 03060000 01C30000 00C30000 00438000 00418000 00008000 00000000 | |
647 00000000 >getsymb | |
648 197< 00000000 00000000 00003800 0000F000 0C038000 3F870000 70FE0000 | |
649 603C0000 C0000800 80001000 00003000 03802000 0FE06000 38F06000 | |
650 701CC000 600F8000 60078000 00030000 00000000 00000000 >getsymb | |
651 196< 00000000 00000000 0001C000 001F8000 00380000 00600000 00600000 | |
652 00400000 00400000 00C00000 00C00000 00C00000 00C00000 00CC0000 | |
653 00980000 01F00000 0F800000 0D800000 01800000 01800000 01800000 | |
654 01800000 01800000 01800000 01800000 01800000 01800000 01800000 | |
655 01800000 01800000 03000000 02000000 06000000 8C000000 78000000 | |
656 00000000 00000000 >getsymb | |
657 195< 00000000 00000000 00000400 00001800 0003F000 00078000 00060000 | |
658 00040000 000C0000 000C0000 600C0000 F00C0000 300C0000 18180000 | |
659 18180000 18180000 08100000 08300000 0C300000 0C600000 0C600000 | |
660 0C400000 0DC00000 07800000 07000000 02000000 00000000 00000000 | |
661 >getsymb | |
662 194< 00000000 00000000 03018000 0F07C000 188C6000 10C83000 20701800 | |
663 60300C00 40200600 C0200300 C0000300 C0000300 40000300 40000300 | |
664 60000300 60000600 20000C00 30000800 10001800 18003000 0C006000 | |
665 0C00C000 06018000 03070000 010C0000 00980000 00F00000 00600000 | |
666 00400000 00400000 00000000 00000000 >getsymb | |
667 192< 00000000 00000000 00C00000 00E00000 00C00000 00000000 00000000 | |
668 00000000 00C00000 00C00000 00600000 00600000 00C00000 01800000 | |
669 03000000 06000000 1C000000 38000000 60000000 60040000 C0060000 | |
670 C0020000 C0010000 E0030000 70060000 380C0000 1C3C0000 0FF80000 | |
671 07E00000 00000000 00000000 >getsymb | |
672 191< 00000000 00000000 06000000 1F000000 318C0000 609F0000 60B38000 | |
673 60E18000 40418000 C040C000 C000C000 C000C000 C000C000 C0018000 | |
674 40030000 60060000 600C0000 30180000 30100000 18300000 18600000 | |
675 08400000 0CC00000 0C800000 05800000 03000000 03000000 02000000 | |
676 00000000 00000000 >getsymb | |
677 186< 00000000 00000000 00060000 001C0000 00F80000 01F00000 01800000 | |
678 03800000 03800000 07000000 07000000 07000000 07000000 07000000 | |
679 07000000 07000000 07000000 07000000 07000000 07000000 07000000 | |
680 0F000000 0F000000 0F000000 0F000000 0F000000 0F000000 0F000000 | |
681 0E000000 0E000000 0E000000 0E000000 0E000000 0E000000 0E000000 | |
682 8C000000 FC000000 F8000000 30000000 00000000 00000000 >getsymb | |
683 185< 00000000 00000000 00004000 7C003000 FF003000 CF806000 CDC0C000 | |
684 0CFF0000 0C1F0000 0C030000 0C030000 0C030000 0C030000 0C010000 | |
685 0C018000 3800D000 30006000 00000000 00000000 >getsymb | |
686 184< 00000000 00000000 1FC00000 7FFC0000 EE0F0000 83038000 0301C000 | |
687 0180C000 01806000 01802000 01803000 01803000 01803000 01803000 | |
688 01803000 01803000 01806000 0180E000 0181C000 018F8000 03FC0000 | |
689 0FE00000 03000000 03000000 03000000 03000000 06000000 06000000 | |
690 06000000 06000000 06000000 06000000 00000000 00000000 >getsymb | |
691 183< 00000000 00000000 000FF800 003FFE00 00F00700 03C00180 0F000080 | |
692 07000000 03C00000 01E00000 00780000 001E0000 00070000 0001C000 | |
693 0000E000 00007000 0000F800 0001C000 00038000 00060000 000C0000 | |
694 00380000 00700000 00E00000 01C00000 03800080 0F000180 1C000180 | |
695 38000180 70000300 E0000300 FC000600 7FFC0C00 03FFF800 0003F000 | |
696 00000000 00000000 >getsymb | |
697 182< 0000 0000 0F00 3F80 40E0 8070 0038 0018 000C 000C 000C 000C 038C | |
698 0FEC 1C3C 301C 201C 600C 600C 600C 600C 6008 6018 6030 3060 1FC0 0F80 | |
699 0000 0000 >getsymb | |
700 181< 00000000 00000000 0600C000 0600C000 0600C000 0600C000 06008000 | |
701 06018000 06018000 0E018000 0E018000 0E018000 0E038000 0E038000 | |
702 0E038800 1E079800 1B0DF000 19F8E000 10F04000 30000000 30000000 | |
703 30000000 30000000 60000000 60000000 40000000 80000000 00000000 | |
704 00000000 >getsymb | |
705 180< 00000000 00000000 08000000 0C030000 0C038000 00000000 00000000 | |
706 00000000 00000000 04030000 0C030000 0C030000 18030000 38030000 | |
707 30030000 70060300 F0060600 301C0C00 301C0C00 303C1800 186C3000 | |
708 1C6C6000 0CCC6000 078CC000 030D8000 000F0000 000E0000 003C0000 | |
709 007C0000 00CC0000 018C0000 030C0000 030C0000 03180000 03300000 | |
710 01E00000 00C00000 00000000 00000000 >getsymb | |
711 179< 00000000 00000000 38000000 0E000000 03800000 00C00000 00600000 | |
712 00300000 001C0000 00070000 0003C000 00018000 00030000 00060000 | |
713 001C0000 00780000 00C00000 01800000 07000000 0E000000 18000000 | |
714 00000000 000FE000 1FFF0000 7FE00000 00000000 00000000 3FFFC000 | |
715 FFFF8000 00000000 00000000 >getsymb | |
716 178< 00000000 00000000 00018000 00070000 000C0000 00180000 00700000 | |
717 01C00000 07000000 0C000000 38000000 60000000 C0000000 E0000000 | |
718 30000000 18000000 0E000000 07000000 01C00000 00E00000 00380000 | |
719 001C0000 00070000 00000000 00000000 3FFFF000 0FFFE000 00000000 | |
720 00000000 0FE00000 07FF8000 001FE000 00000000 00000000 >getsymb | |
721 177< 00000000 00000000 01000000 03000000 03000000 03000000 03000000 | |
722 03000000 03000000 03000000 FFF80000 FFFF0000 03000000 03000000 | |
723 03000000 01800000 01800000 01800000 01800000 01800000 00000000 | |
724 00000000 FFFFC000 0FFFC000 00000000 00000000 >getsymb | |
725 176< 00000000 00000000 000F0000 003FC000 3C60E000 7EC06000 C1806000 | |
726 C180C000 61FF8000 7F1F0000 1E000000 00000000 00000000 >getsymb | |
727 175< 00000000 00000000 00000300 00000600 00000400 001FEC00 00783800 | |
728 00E03C00 03806600 06006200 0E004300 0C00C300 0C018180 0C018180 | |
729 18030180 18020180 18060180 180C0180 18080180 18180180 18300300 | |
730 18700300 18E00200 09800600 0D000C00 0F000800 07003800 0780F000 | |
731 0DFFC000 0C7F0000 18000000 30000000 60000000 C0000000 00000000 | |
732 00000000 >getsymb | |
733 174< 00000000 00000000 00FF0000 03C1C000 0700E000 1C003000 30001000 | |
734 70001800 60001800 60000C00 60000C00 C0000C00 C0000C00 C0000C00 | |
735 C0000C00 C0000C00 C0000C00 C0001800 C0001800 C0001000 40003000 | |
736 60006000 70004000 3801C000 1C078000 0FFE0000 03F80000 00000000 | |
737 00000000 >getsymb | |
738 173< 00000000 00000000 00040000 000C0000 000C0000 000C0000 00180000 | |
739 001FF000 07FFC000 3FF80000 78300000 00600000 00600000 00C00000 | |
740 00FFE000 3FFFC000 FFC00000 01800000 01800000 03000000 03000000 | |
741 06000000 04000000 00000000 00000000 >getsymb | |
742 172< 0000 0000 E038 6038 C030 0000 0000 >getsymb | |
743 171< 0000 0000 0600 1C00 3000 6000 4000 C000 C000 8000 0000 0000 | |
744 >getsymb | |
745 170< 000000000000 000000000000 000F20000000 01F82C700000 FF803EF80000 | |
746 FF00638C0000 6300630C0000 330063040000 130063060000 1B0063060000 | |
747 0B00C3060000 0B00C3060000 0B00C3068000 0E0183028000 060101038000 | |
748 000000030000 000000000000 000000000000 >getsymb | |
749 169< 00000000 00000000 0000F800 0003FC00 003F1E00 00F80700 03800180 | |
750 06000180 1C0000C0 300000C0 3007C0C0 601FF0E0 60301820 60200C30 | |
751 C0600430 C0C00030 C0C00030 C0C00030 C0C00030 C0C02030 C0402030 | |
752 C0606030 6030C020 603F8060 380E01C0 3C000300 03001E00 03C03C00 | |
753 00FFE000 00FF0000 00000000 00000000 >getsymb | |
754 168< 00000000 00000000 00078000 000FC000 000CE000 000C7000 007E1800 | |
755 00FC0C00 07C00E00 0F800700 0C060300 1C9F8300 30B0C180 30C0C180 | |
756 70C1C180 E0C38080 C0FF00C0 C0FC00C0 C1C800C0 C1CC00C0 C30E01C0 | |
757 C3030180 E2038300 6201C300 30000700 30000E00 38003C00 1C007800 | |
758 0E00E000 0F03C000 07FF8000 01FC0000 00000000 00000000 >getsymb | |
759 167< 00000000 00000000 00070000 003F8000 0C70C000 1EC04000 1E804000 | |
760 1700C000 37018000 36030000 360C0000 661F0000 66018180 C6008300 | |
761 0600C600 0600CC00 0600D800 0600F000 0600E000 0600C000 0E038000 | |
762 0E0E0000 0C180000 0C200000 0C000000 0C000000 08000000 08000000 | |
763 10000000 10000000 10000000 00000000 00000000 >getsymb | |
764 166< 00000000 00000000 00060000 00038000 01F0C000 07AFE000 3FBDF000 | |
765 5F5C3000 4FFC3000 5FFC3000 BFFC1000 FFFC1000 7FFC1000 7FFC1800 | |
766 7FF81800 7FF81800 FFF81800 FFF80800 7FF80800 7FF80800 3FF80800 | |
767 00580800 00180800 00180800 00181800 00181800 00181800 00181000 | |
768 00183000 00182000 00186000 00186000 0018C000 001CC000 000F8000 | |
769 00078000 00000000 00000000 >getsymb | |
770 165< 0000 0000 3000 4F00 9FC0 FFE0 FFF0 7FF8 FFF8 FFF8 FFF8 FFFC 9FE4 | |
771 AFE4 4FD8 7FF0 2700 1E00 0000 0000 >getsymb | |
772 164< 00000000 00000000 00F00000 01FC0000 03060000 06020000 06000000 | |
773 07000000 03200000 01C00000 07F00000 1C1C0000 30060000 60030000 | |
774 C0018000 C0018000 C0018000 E0070000 700C0000 1E780000 07E00000 | |
775 03F00000 06380000 081C0000 000C0000 00060000 00030000 00018000 | |
776 0400C000 0400C000 06018000 03038000 01FE0000 00F00000 00000000 | |
777 00000000 >getsymb | |
778 163< 00000000 00000000 00018000 0007C000 001C6000 00303000 00601800 | |
779 00600800 00400000 00C00000 00C00000 00C00000 00C00000 00C00000 | |
780 00C00000 00C00000 1FC00000 03FE0000 01FFC000 01C00000 01800000 | |
781 0180E000 03013000 07001800 06001800 0C001000 18002000 3FC0E000 | |
782 F07FC000 601F0000 00000000 00000000 >getsymb | |
783 162< 00000000 00000000 00180000 00300000 00200000 00600000 00600000 | |
784 00600000 00600000 01F00000 07F80000 0CCC0000 08C40000 18C00000 | |
785 30C00000 70800000 F1801000 31803000 31806000 31804000 3180C000 | |
786 31818000 19818000 19830000 0D8E0000 07980000 01F00000 01800000 | |
787 01000000 01000000 03000000 03000000 02000000 00000000 00000000 | |
788 >getsymb | |
789 161< 0000 0000 3C00 6600 6300 4180 C180 C080 C080 E180 FF00 4C00 6000 | |
790 3000 0000 0000 >getsymb | |
791 160< 00000000 00000000 00C00000 00C00000 00C00000 00C00000 00C00000 | |
792 00C00000 00C00000 00C00000 01C00000 E1C00000 FFE00000 07FC0000 | |
793 01CF8000 01800000 01800000 01800000 01800000 01800000 01800000 | |
794 01800000 01800000 01800000 01800000 01800000 01800000 01800000 | |
795 01800000 01000000 00000000 00000000 >getsymb | |
796 159< 00000000 00000000 01000000 0300C000 0300C000 00006000 00000000 | |
797 00000000 00000000 00000000 00008000 04008000 0E018000 3B018000 | |
798 63010000 43010180 C3030300 02030600 06030400 06030C00 06030C00 | |
799 06070800 06059800 060D9800 06189000 03F0F000 01E06000 00000000 | |
800 00000000 >getsymb | |
801 158< 00000000 00000000 00100000 00780000 01CE0000 03870000 06018000 | |
802 0400C000 08006000 00002000 00000000 00000000 00000000 00004000 | |
803 00004000 0C018000 1E018000 33030000 63030180 C3030300 03030600 | |
804 06030600 06030400 06070C00 06070C00 06051800 06091800 07191000 | |
805 03F1F000 01E0E000 00000000 00000000 >getsymb | |
806 157< 00000000 00000000 01800000 00C00000 00F00000 00300000 00180000 | |
807 000C0000 00060000 00000000 00000000 00000000 00008000 00018000 | |
808 00018000 3C018000 7E018000 43018180 C3010300 03030600 06030600 | |
809 06030C00 06070C00 06070C00 06059800 060D9800 07089000 03F8F000 | |
810 01F06000 00000000 00000000 >getsymb | |
811 156< 00000000 00000000 00007000 0001C000 00030000 000E0000 00380000 | |
812 00200000 00E00000 00000000 00000000 00004000 0E00C000 1E00C000 | |
813 13018000 33018000 63030000 43030180 C3030300 03030600 06030600 | |
814 06070C00 06070C00 060F0C00 06099800 06199800 07309000 03E0F000 | |
815 01C06000 00000000 00000000 >getsymb | |
816 155< 00000000 00000000 00C0C000 01E38000 11370000 0E1E0000 04000000 | |
817 00000000 00000000 00F00000 03FC0000 071E0000 0E070000 38018000 | |
818 7801C600 D801EC00 1801B800 18018000 18018000 0C018000 0C018000 | |
819 06010000 06030000 03060000 01FC0000 00F00000 00000000 00000000 | |
820 >getsymb | |
821 154< 00000000 00000000 0C040000 0C0E0000 100E0000 00000000 00000000 | |
822 00000000 00000000 00F00000 03FC0000 079E0000 0F070000 3F038000 | |
823 7203C600 C6017C00 06013000 06018000 0E018000 0C018000 0C010000 | |
824 06030000 06060000 030C0000 01F80000 00F00000 00000000 00000000 | |
825 >getsymb | |
826 153< 00000000 00000000 00C00000 00600000 00F00000 01BC0000 030E0000 | |
827 06070000 18018000 1000E000 00000000 00F00000 03FC0000 079E0000 | |
828 1F070000 3C038000 7803C600 D8016C00 18013800 18018000 18018000 | |
829 0C018000 0C010000 06030000 06060000 030C0000 01F80000 00F00000 | |
830 00000000 00000000 >getsymb | |
831 152< 00000000 00000000 06000000 07000000 01C00000 00780000 003C0000 | |
832 00070000 00000000 00000000 00F00000 03FC0000 071E0000 1C030000 | |
833 38038000 7801C600 D8016C00 18013800 18018000 18018000 08018000 | |
834 0C010000 0C030000 06060000 030C0000 01F80000 00F00000 00000000 | |
835 00000000 >getsymb | |
836 151< 00000000 00000000 00010000 00020000 000C0000 00180000 00300000 | |
837 00E00000 03800000 00000000 00000000 00000000 00000000 00000000 | |
838 00F00000 03FC0000 079C0000 1C060000 38030000 7801C600 D8016C00 | |
839 18013800 18018000 18018000 1C018000 0C030000 0C020000 0C060000 | |
840 060C0000 07F80000 01F00000 00000000 00000000 >getsymb | |
841 150< 00000000 00000000 00000600 00E00C00 01B83800 010E6000 0603C000 | |
842 0C000000 00000000 00000000 00000000 00000000 00000000 0F1C0000 | |
843 3FBF0000 31B38000 61E18000 C1C18180 81818180 01818300 01818300 | |
844 01818600 03018600 07018400 06018C00 0600CC00 06007800 06003000 | |
845 00000000 00000000 >getsymb | |
846 149< 0000 0000 1800 3830 3878 0070 0000 0000 0000 0000 0C00 1800 1800 | |
847 3000 3000 7008 F018 B030 3060 3060 30C0 30C0 3180 3180 1B00 1E00 1C00 | |
848 0800 0000 0000 >getsymb | |
849 148< 0000 0000 0300 0780 0D80 18C0 3040 2060 2030 4030 0018 0000 0C00 | |
850 1800 1800 3000 3000 7008 F018 B030 3060 3060 30C0 30C0 3180 3180 1B00 | |
851 1E00 1C00 0800 0000 0000 >getsymb | |
852 147< 0000 0000 8000 E000 7000 1800 0C00 0700 0780 0000 0000 0000 0C00 | |
853 1800 1800 3000 3000 7008 F018 B030 3060 3060 30C0 30C0 3180 3180 1B00 | |
854 1E00 1C00 0800 0000 0000 >getsymb | |
855 146< 0000 0000 0018 0030 0060 01C0 0300 0E00 1C00 0000 0000 0000 0C00 | |
856 1800 1800 3000 3000 7008 F018 B030 3060 3060 30C0 30C0 3180 3180 1B00 | |
857 1E00 1C00 0800 0000 0000 >getsymb | |
858 145< 00000000 00000000 301C0000 380C0000 30000000 00000000 00000000 | |
859 00000000 00000000 03E00000 0FF00000 1C180000 30180000 60180000 | |
860 40300000 C0600000 C0C00000 C7800000 FE001800 F0001000 60003000 | |
861 30006000 3000C000 18018000 0C030000 0C060000 061C0000 03F80000 | |
862 00E00000 00000000 00000000 >getsymb | |
863 144< 00000000 00000000 03E00000 0FF80000 300E0000 20030000 40010000 | |
864 C0000000 00000000 00000000 03E00000 07300000 0C180000 180C0000 | |
865 300C0000 200C0000 60380000 60E00000 67C00000 FE001800 60003000 | |
866 60006000 3000C000 30018000 10030000 18060000 0C0C0000 06380000 | |
867 03F00000 01C00000 00000000 00000000 >getsymb | |
868 143< 00000000 00000000 38000000 0C000000 07000000 01800000 00C00000 | |
869 00400000 00000000 00000000 01C00000 07E00000 0C300000 18180000 | |
870 30080000 30380000 60E00000 C3800000 CE000000 F8000C00 F0001800 | |
871 60003000 30006000 3000C000 18018000 08030000 0C060000 060C0000 | |
872 03F80000 01E00000 00000000 00000000 >getsymb | |
873 142< 00000000 00000000 001C0000 00780000 00C00000 00800000 03000000 | |
874 02000000 00000000 00000000 07800000 1FC00000 30600000 60300000 | |
875 60300000 40600000 C1C00000 C7800000 9E000000 F0000800 C0001800 | |
876 C0003000 60006000 2000C000 30018000 18030000 080E0000 0C180000 | |
877 07F00000 03C00000 00000000 00000000 >getsymb | |
878 141< 00000000 00000000 03E00000 0FF00000 18180000 30080000 60000000 | |
879 60003000 40006000 C000C000 C0008000 C0018000 C0018000 C0030000 | |
880 40030000 60020000 30060000 1F0C0000 07F80000 00E00000 00C00000 | |
881 00400000 00780000 001C0000 00040000 04060000 06060000 03060000 | |
882 030C0000 01F80000 00000000 00000000 >getsymb | |
883 140< 00000000 00000000 00F00000 01F80000 02880000 00880000 00D80000 | |
884 00700000 00000000 00000000 01E08000 03F98000 060D8000 0C070000 | |
885 18060000 10060000 30060000 70060000 E0060600 E00C0400 600C0C00 | |
886 600C1800 201C1000 30163000 30366000 18366000 18624000 0FC3C000 | |
887 07818000 00000000 00000000 >getsymb | |
888 139< 00000000 00000000 00004000 00008000 0E030000 339E0000 40F00000 | |
889 00000000 00000000 00000000 01E08000 03F98000 060D8000 0C070000 | |
890 18060000 10060000 30060000 70060000 E0060600 E00C0400 600C0C00 | |
891 600C1800 201C1000 30163000 30366000 18366000 18624000 0FC3C000 | |
892 07818000 00000000 00000000 >getsymb | |
893 138< 00000000 00000000 00080000 040C0000 1C0C0000 18000000 00000000 | |
894 00000000 00000000 01E08000 03F98000 060D8000 0C070000 18060000 | |
895 10060000 30060000 70060000 E0060600 E00C0400 600C0C00 600C1800 | |
896 201C1000 30163000 30366000 18366000 18624000 0FC3C000 07818000 | |
897 00000000 00000000 >getsymb | |
898 137< 00000000 00000000 00F00000 031C0000 0E060000 18038000 00008000 | |
899 00000000 00000000 01E08000 03F98000 060D8000 0C070000 18060000 | |
900 10060000 30060000 70060000 E0060600 E00C0400 600C0C00 600C1800 | |
901 201C1000 30163000 30366000 18366000 18624000 0FC3C000 07818000 | |
902 00000000 00000000 >getsymb | |
903 136< 00000000 00000000 10000000 0C000000 04000000 06000000 03000000 | |
904 01800000 00000000 00000000 01E08000 03F98000 060D8000 0C070000 | |
905 18060000 10060000 30060000 70060000 E0060600 E00C0400 600C0C00 | |
906 600C1800 201C1000 30163000 30366000 18366000 18624000 0FC3C000 | |
907 07818000 00000000 00000000 >getsymb | |
908 135< 00000000 00000000 00030000 000E0000 00180000 00300000 00400000 | |
909 00000000 00000000 00000000 01E08000 03F98000 060D8000 0C070000 | |
910 18060000 10060000 30060000 70060000 E0060600 E00C0400 600C0C00 | |
911 600C1800 201C1000 30163000 30366000 18366000 18624000 0FC3C000 | |
912 07818000 00000000 00000000 >getsymb | |
913 134< 00000000 00000000 38003800 38003800 30001800 00000000 00000000 | |
914 20000000 60001800 60001800 60001800 C0001800 C0001800 C0001800 | |
915 C0003000 C0003000 C0006000 C0006000 C000C000 C001C018 C001C030 | |
916 C003C060 6006C060 600C60C0 30186180 3C303300 0FE01E00 07C00C00 | |
917 00000000 00000000 >getsymb | |
918 133< 00000000 00000000 0F878000 1FCFC000 307CF800 303C3C00 30300C00 | |
919 30300600 30300300 30300300 30300300 30300300 30300700 60300E00 | |
920 C031FC00 C073F800 C0FF0000 C0FF0000 C0C30000 C0C30000 C0C18000 | |
921 C0C0C000 C0C0E000 C0C07000 E0C03000 E0C03800 70C00E00 30C00E00 | |
922 30C00300 30C00300 38C00380 1CC00180 0F8000C0 0F000040 00000000 | |
923 00000000 >getsymb | |
924 132< 00000000 00000000 0F000100 1F800100 30E00300 30700300 30700300 | |
925 30700300 20580300 204C0300 20CC0380 60CC01C0 E0CE00C0 E0C700C0 | |
926 C0C300C0 C0C300C0 C0C381C0 C0C1C380 C0C0C300 C0C0C300 C0C0C300 | |
927 C0C0C300 C0C06300 C0C06300 C0C03300 C0C03300 C0C03F00 C0C01F00 | |
928 C0C00F00 C1C00F00 FF800F00 3F000600 00000000 00000000 >getsymb | |
929 131< 0000 0000 000C 0018 0030 00E0 0380 0000 1FC0 09FC 181C 1000 3000 | |
930 2000 7F00 6FE0 E000 C000 C000 8000 C000 F000 3E00 07F0 0000 0000 | |
931 >getsymb | |
932 130< 00000000 00000000 003FC000 00FFE000 07F03000 0FC03800 1F000C00 | |
933 3B000E00 33000000 73000000 63000000 63000000 C3000000 C3000000 | |
934 C3000000 C3000000 C3000000 C3000000 C3000000 C3000000 C3000000 | |
935 C3000000 C3000000 C3000000 C6000000 CC000200 7C000C00 3C001C00 | |
936 07003000 03807000 01FFE000 00FF8000 00000000 00000000 >getsymb | |
937 129< 00000000 00000000 000F0000 001F8000 0030C000 0030C000 0010C000 | |
938 001F0000 00000000 00000000 000C0000 000E0000 000E0000 000F0000 | |
939 00338000 00338000 0040C000 00C0C000 00FFC000 00FFE000 0101E000 | |
940 03003000 04003800 0C003800 10000C00 30000C00 60000E00 60000E00 | |
941 C0000600 C0000700 00000000 00000000 >getsymb | |
942 128< 00000000 00000000 00C00000 00E0E000 00E0E000 0070F000 00000000 | |
943 00000000 00000000 00000000 00030000 00030000 00038000 0003C000 | |
944 000CE000 000CF000 00383000 00303800 0037FC00 003FBC00 00C00C00 | |
945 00C00E00 03000700 03000300 0C000380 0C000180 3C0000C0 380000C0 | |
946 E0000060 C0000060 00000000 00000000 >getsymb | |
947 126< 00000000 00000000 00001000 00003000 00004000 1C018000 3E030000 | |
948 63060000 819C0000 00F00000 00600000 00000000 00000000 >getsymb | |
949 125< 0000 0000 0780 1FE0 3870 0030 0030 0030 0030 0030 0030 0070 0060 | |
950 0040 0060 0030 0018 001C 0070 0060 0040 00C0 00C0 00C0 00C0 00C0 00C0 | |
951 0060 0020 0030 C030 7060 1DE0 0F80 0000 0000 >getsymb | |
952 124< 0000 0000 6000 6000 6000 6000 6000 6000 6000 6000 6000 6000 6000 | |
953 6000 6000 6000 6000 C000 C000 C000 C000 C000 C000 C000 C000 C000 C000 | |
954 C000 C000 4000 0000 0000 >getsymb | |
955 123< 00000000 00000000 00F80000 03FC0000 07020000 06000000 0C000000 | |
956 0C000000 0C000000 0C000000 0C000000 0C000000 18000000 18000000 | |
957 70000000 E0000000 38000000 0C000000 0C000000 0C000000 0C000000 | |
958 0C000000 0C000000 0C000000 18000000 18000000 30000000 30000000 | |
959 30040000 183C0000 1CF00000 07800000 00000000 00000000 >getsymb | |
960 122< 00000000 00000000 03020000 078E0000 0CFC0000 186C0000 30080000 | |
961 30180000 60300000 C0306000 0060C000 0040C000 00C18000 00818000 | |
962 01830000 01030000 03060000 078C0000 0CF80000 18300000 00000000 | |
963 00000000 >getsymb | |
964 121< 00000000 00000000 0600C000 0600C000 0C00C000 1C00C000 3C018000 | |
965 38038000 78038000 D8031800 18031000 18073000 180F2000 181B6000 | |
966 1C334000 0E62C000 07C78000 00070000 00060000 000E0000 001E0000 | |
967 00360000 00660000 00C60000 01860000 01860000 01840000 018C0000 | |
968 00F80000 00700000 00000000 00000000 >getsymb | |
969 120< 00000000 00000000 0C000000 1E030000 1B078000 330C8000 31180000 | |
970 61B00000 C1B01800 01A03000 01E02000 00C06000 00C04000 00C0C000 | |
971 01C08000 63418000 36670000 3C3E0000 18180000 00000000 00000000 | |
972 >getsymb | |
973 119< 00000000 00000000 18004000 38084000 6C186000 4C186000 CC186040 | |
974 08183980 18183F00 18183600 18183000 18383000 18683000 18682000 | |
975 0C4C2000 0ECC6000 0386C000 01838000 00000000 00000000 >getsymb | |
976 118< 00000000 00000000 18180000 3C1C0000 6C0C0000 4E0E0000 C6073000 | |
977 0607E000 0606C000 0C020000 0C030000 0C030000 0C030000 0C030000 | |
978 0C060000 040C0000 06180000 06300000 03E00000 01800000 00000000 | |
979 00000000 >getsymb | |
980 117< 00000000 00000000 00004000 0E00C000 1E00C000 13018000 33018000 | |
981 63030000 43030000 C3030300 03030600 06030600 06070C00 06070C00 | |
982 060F0C00 06099800 06199800 07309000 03E0F000 01C06000 00000000 | |
983 00000000 >getsymb | |
984 116< 00000000 00000000 00100000 00300000 00300000 00700000 00F00000 | |
985 01B00000 01300000 03300000 06200000 06200000 0C600000 18600000 | |
986 18400000 30400000 60400000 C6460000 0F4C0000 11580000 10F00000 | |
987 1FC00000 0CC00000 00800000 00800000 00800000 00800000 00800000 | |
988 00800000 00000000 00000000 >getsymb | |
989 115< 00000000 00000000 00C00000 01C00000 07600000 1C600000 30300000 | |
990 60304000 C010C000 00198000 00198000 001B0000 000F0000 000E0000 | |
991 000C0000 00180000 00300000 00600000 18C00000 0F800000 07000000 | |
992 00000000 00000000 >getsymb | |
993 114< 00000000 00000000 0C100000 1E300000 33F00000 31900000 60300000 | |
994 60600000 C0410000 80C20000 01860000 030C0000 03180000 03180000 | |
995 03300000 06300000 06200000 06600000 06400000 06C00000 07800000 | |
996 03000000 00000000 00000000 >getsymb | |
997 113< 00000000 00000000 00004000 00FCC000 03FEC000 0F06C000 3C03C200 | |
998 78018600 D8018400 10038C00 30078C00 30058800 300D9800 30099800 | |
999 30119800 38333000 18633000 0FC23000 07062000 00066000 00064000 | |
1000 000CC000 000CC000 000D8000 000D0000 000D0000 000F0000 000E0000 | |
1001 00060000 00000000 00000000 >getsymb | |
1002 112< 00000000 00000000 00380000 0C7C0000 1EC60000 36C20000 67830000 | |
1003 67030180 C6010300 06018600 06018400 0E018C00 0C008800 0C00D800 | |
1004 0C007000 0C002000 0C000000 0C000000 0C000000 18000000 18000000 | |
1005 18000000 18000000 18000000 18000000 18000000 18000000 18000000 | |
1006 10000000 10000000 00000000 00000000 >getsymb | |
1007 111< 00000000 00000000 00F00000 03FC0000 079E0000 1F070000 3C038000 | |
1008 7803C000 D8016C00 18013800 18018000 18018000 0C018000 0C010000 | |
1009 06030000 06060000 030C0000 01F80000 00F00000 00000000 00000000 | |
1010 >getsymb | |
1011 110< 00000000 00000000 0E0E0000 1F1F0000 33B30000 21A18000 61E18000 | |
1012 C1C18180 81818180 01818300 03018300 03018600 07018600 06018400 | |
1013 0E018C00 0C00CC00 0C007800 0C003000 00000000 00000000 >getsymb | |
1014 109< 000000000000 000000000000 000000E00000 060001F00000 0F1E01300000 | |
1015 19BF03180000 31E382180000 31C0C6180000 6180C4180000 C180CC183000 | |
1016 8180C8186000 0180D8186000 0180F018C000 0180E0198000 0380C0190000 | |
1017 0300C01B0000 0601800E0000 0601800E0000 060180040000 060180000000 | |
1018 000000000000 000000000000 >getsymb | |
1019 108< 0000 0000 0700 0F80 08C0 18C0 18C0 18C0 30C0 30C0 30C0 3080 3180 | |
1020 3300 3600 3600 3C00 3800 3008 7018 F030 B020 3060 3040 30C0 30C0 3080 | |
1021 1980 1F00 0E00 0000 0000 >getsymb | |
1022 107< 00000000 00000000 00300000 00F80000 018C0000 018C0000 030C0000 | |
1023 030C0000 03180000 03300000 03600000 03C00000 03800000 03000000 | |
1024 07000000 0F000000 1B1E0000 323F0000 66618000 C6C18600 86C30C00 | |
1025 078E1800 07383000 07E03000 07806000 06C06000 0C60C000 0C20C000 | |
1026 0C318000 18330000 181E0000 180C0000 00000000 00000000 >getsymb | |
1027 106< 0000 0000 0080 0300 0300 0000 0000 0600 0600 0600 0E00 1E00 1600 | |
1028 3600 6610 C630 8660 06C0 0780 0700 0600 0E00 1E00 3600 6600 6600 C600 | |
1029 C600 C600 C600 C600 C600 CC00 CC00 CC00 7800 3000 0000 0000 >getsymb | |
1030 105< 0000 0000 0600 0600 0200 0000 0000 0000 0000 0000 0000 0C00 1800 | |
1031 1800 3000 3000 7008 F018 B030 3060 3060 30C0 30C0 3180 3180 1B00 1E00 | |
1032 1C00 0800 0000 0000 >getsymb | |
1033 104< 00000000 00000000 01E00000 03300000 03180000 02180000 06180000 | |
1034 06180000 06180000 06300000 06200000 06600000 06C00000 07800000 | |
1035 07000000 0E000000 1E000000 36000000 66000000 C6000300 06380600 | |
1036 067C0600 06C60C00 07830C00 07030C00 06031800 06031800 06031800 | |
1037 0C033000 0C033000 1801E000 1800C000 00000000 00000000 >getsymb | |
1038 103< 00000000 00000000 00300000 00F88000 038D8000 06070000 0C030000 | |
1039 18070000 38070000 780F0000 D81B0600 98330C00 18331800 18633000 | |
1040 0CC36000 0783C000 03078000 000F0000 003B0000 00630000 00C30000 | |
1041 01830000 03060000 06060000 06060000 060C0000 06180000 03F00000 | |
1042 01E00000 00000000 00000000 >getsymb | |
1043 102< 0000 0000 0380 07C0 0CC0 08C0 18C0 18C0 1980 1980 1900 1B00 1A00 | |
1044 1C00 1C00 1800 3800 3800 5800 D818 1C70 1FC0 1E00 1B00 1980 18C0 18C0 | |
1045 1860 1860 1860 1860 1860 1860 1860 1860 18C0 18C0 0C80 0F80 0700 0000 | |
1046 0000 >getsymb | |
1047 101< 00000000 00000000 03E00000 0FF80000 1C1C0000 300C0000 200C0000 | |
1048 600C0000 60380000 40E00000 C7800000 DE000400 F0000C00 E0001800 | |
1049 60003000 30006000 3000C000 18018000 08030000 0C060000 079C0000 | |
1050 03F80000 00E00000 00000000 00000000 >getsymb | |
1051 100< 00000000 00000000 00004000 00004000 00004000 0000C000 0000C000 | |
1052 0000C000 0000C000 00018000 00018000 00018000 01E18000 07F18000 | |
1053 0C1B8000 181F0000 180F0000 30060000 70060000 F0020300 B0060600 | |
1054 30060400 300E0C00 300B0C00 101B1800 18319800 0C61B000 07C1F000 | |
1055 0380E000 00000000 00000000 >getsymb | |
1056 99< 00000000 00000000 01F00000 07380000 0E0C0000 0C040000 18000000 | |
1057 30000000 70000000 F0001000 30003000 30006000 30004000 3000C000 | |
1058 30018000 18018000 18030000 0E0E0000 07380000 01F00000 00000000 | |
1059 00000000 >getsymb | |
1060 98< 00000000 00000000 00600000 00F00000 01980000 010C0000 030C0000 | |
1061 030C0000 03180000 02100000 06300000 06600000 07C00000 07000000 | |
1062 06000000 0E000000 1E000000 36000000 66008000 C600C300 0601FE00 | |
1063 0601B800 02018000 03018000 03018000 01010000 01830000 00C60000 | |
1064 007C0000 00380000 00000000 00000000 >getsymb | |
1065 97< 00000000 00000000 01E08000 03F98000 060D8000 0C070000 18060000 | |
1066 10060000 30060000 70060000 E0060600 E00C0400 600C0C00 600C1800 | |
1067 201C1000 30163000 30366000 18366000 18624000 0FC3C000 07818000 | |
1068 00000000 00000000 >getsymb | |
1069 96< 0000 0000 1800 3000 3000 6000 6000 C000 C000 C000 C000 6000 3000 | |
1070 1800 0400 0000 0000 >getsymb | |
1071 95< 00000000 00000000 FF800000 3FFFFF00 00FFFF80 00000000 00000000 | |
1072 >getsymb | |
1073 94< 00000000 00000000 00700000 01F80000 038C0000 06060000 1C030000 | |
1074 3001C000 6000E000 C0003000 00001800 00000C00 00000000 00000000 | |
1075 >getsymb | |
1076 93< 0000 0000 3FC0 FFC0 00C0 00C0 00C0 00C0 00C0 00C0 00C0 00C0 00C0 | |
1077 00C0 00C0 00C0 00C0 00C0 00C0 00C0 00C0 00C0 00C0 00C0 00C0 00C0 00C0 | |
1078 00C0 00C0 0180 0180 3F80 7F00 0000 0000 >getsymb | |
1079 92< 00000000 00000000 E0000000 70000000 30000000 18000000 18000000 | |
1080 0C000000 0C000000 0E000000 06000000 06000000 03000000 03000000 | |
1081 01800000 01800000 00C00000 00C00000 00400000 00600000 00600000 | |
1082 00200000 00300000 00180000 00180000 00180000 000C0000 000E0000 | |
1083 00060000 00070000 00038000 0000C000 00000000 00000000 >getsymb | |
1084 91< 0000 0000 7800 7F00 63C0 6000 6000 6000 6000 6000 6000 6000 6000 | |
1085 6000 6000 6000 6000 6000 6000 6000 C000 C000 C000 C000 C000 C000 C000 | |
1086 C000 E000 7C00 7F00 0000 0000 >getsymb | |
1087 90< 00000000 00000000 0C01F000 3E07B000 630C2000 41F86000 8070C000 | |
1088 00018000 00030000 00060000 00040000 000C0000 00180000 00180000 | |
1089 00300000 07E00000 00FC0000 00C00000 00800000 01800040 030000C0 | |
1090 03000180 06000180 06000300 0C780600 09F80600 1B0F0C00 1E039800 | |
1091 3C00F000 70007000 00000000 00000000 >getsymb | |
1092 89< 00000000 00000000 00002000 00002000 20002000 70006000 C8006000 | |
1093 CC006000 CC00C000 8C00C000 0C00C000 0C00C000 0C00C000 0C00C000 | |
1094 0C01C000 0C01C000 0403C000 0602C000 0602C600 0604CC00 021CD800 | |
1095 03F0F000 01C0E000 0001C000 0003C000 0006C000 000CC000 0018C000 | |
1096 0030C000 00608000 00418000 00C30000 00860000 008C0000 00D80000 | |
1097 00700000 00000000 00000000 >getsymb | |
1098 88< 00000000 00000000 1F000000 31C00C00 30601E00 30303300 30387100 | |
1099 18186000 0C18C000 000CC000 000C8000 000D8000 000F8000 000F0000 | |
1100 000F0000 00070000 00060000 00060000 00060000 00060000 00060060 | |
1101 000600C0 00060080 000F0180 400F0180 C01F0180 C0198100 C0318300 | |
1102 6030C300 20604200 30C06600 1C803C00 0F801800 03000000 00000000 | |
1103 00000000 >getsymb | |
1104 87< 000000000000 000000000000 100000000000 780000000000 4C0000000000 | |
1105 8C0000000000 0C0030000000 0C00300000C0 0C00600001A0 0C0060000100 | |
1106 0C0060000300 0C0060000300 0C00C0000300 0C00C0000300 1800C0000300 | |
1107 1800C0000300 1001C0000600 3001C0000600 3003C0000C00 3003C0000C30 | |
1108 3006C0001860 300CC00030C0 3018C00020C0 3018C0006180 3030C000C380 | |
1109 1830C0018700 1860C0019C00 0CC0C003F800 0F80600FE000 0600703E0000 | |
1110 00003FF00000 00000FC00000 000000000000 000000000000 >getsymb | |
1111 86< 00000000 00000000 30000100 78000380 CC0003F0 8C000360 0C000300 | |
1112 0C000300 0C000300 0C000300 0C000600 0C000600 0C000600 0C000600 | |
1113 0C000C00 06000C00 06000C00 06000C00 06001800 06001818 06001070 | |
1114 060011E0 06003F80 06007C00 0300F000 0187C000 01FF0000 00780000 | |
1115 00000000 00000000 >getsymb | |
1116 85< 000000000000 000000000000 300003000000 780003000000 CC0003000000 | |
1117 8C0003000000 0C0003000000 0C0003000000 180006000000 180006000000 | |
1118 180006000000 300006000000 300006000000 300006000000 30000C000000 | |
1119 30000C000000 300018000000 300018000000 300030000000 300070060000 | |
1120 3000700C0000 3000F0180000 1801B0180000 180318300000 0C0618600000 | |
1121 0F0C0CC00000 03F807800000 01F003000000 000000000000 000000000000 | |
1122 >getsymb | |
1123 84< 00000000 00000000 0F800100 3FC00200 607E0C00 803FF800 000CE000 | |
1124 000C0000 000C0000 000C0000 00060000 00060000 00030000 00030000 | |
1125 00030000 00030000 00030000 00030000 000300C0 00030180 02030300 | |
1126 02030300 02030600 03030C00 01833800 01C7F000 00FF8000 003C0000 | |
1127 00000000 00000000 >getsymb | |
1128 83< 00000000 00000000 00F00000 01FC0000 031E0000 02030000 06018000 | |
1129 0600C000 06004000 06004000 06008000 03000000 03800000 00F00000 | |
1130 003C0000 000F0000 00038000 00018000 0000C600 00006400 00006C00 | |
1131 00003800 00003000 20007000 70006000 9C00C000 06038000 030F0000 | |
1132 03FC0000 01F80000 00000000 00000000 >getsymb | |
1133 82< 00000000 00000000 020FE000 033FF800 03F80C00 03C00600 07000300 | |
1134 0F000300 1B000300 3B000300 33000600 33000C00 63003800 6300E000 | |
1135 43038000 C30F0000 C3FC0000 C3FE0000 C3070018 C6070030 CC038060 | |
1136 4C01C0C0 7C00C080 7C006180 38006180 38006100 38003300 38003300 | |
1137 38001E00 38001E00 30000C00 10000000 00000000 00000000 >getsymb | |
1138 81< 00000000 00000000 001FE000 007FF000 01C03800 03001C00 06000C00 | |
1139 0C000C00 0C000C00 18000C00 18000600 10000600 30000300 30000300 | |
1140 30000300 30000300 60000300 60000200 60000600 C0000600 C000060C | |
1141 C000060C C0000C18 C0000C18 C0001830 603C3020 304E7060 3083C040 | |
1142 1C01E0C0 0E037180 03FE1F00 00FC0E00 00000000 00000000 >getsymb | |
1143 80< 00000000 00000000 03FC0000 0FFF0000 3C01C000 7C007000 4C003800 | |
1144 8C001800 0C000C00 0C000C00 0C000C00 0C000C00 06000C00 06000800 | |
1145 06001800 06003000 261FE000 1FFF8030 0F800060 060000C0 06000180 | |
1146 06000300 06000E00 06003800 0600F000 0603C000 0C0F0000 0C3C0000 | |
1147 0FF00000 1FC00000 00000000 00000000 >getsymb | |
1148 79< 00000000 00000000 00FE0000 01FF8000 0700C000 0E00C000 0C006000 | |
1149 18003000 30003000 30003000 70003000 60001800 40001C00 C0000C00 | |
1150 C0000C00 C0000C00 C0000600 C0000600 C0000700 C0000730 C00006E0 | |
1151 C0000600 60000600 60000600 30000400 30000C00 30001800 18003000 | |
1152 0C006000 0C00C000 06018000 060F0000 03FC0000 00F00000 00000000 | |
1153 00000000 >getsymb | |
1154 78< 000000000000 000000000000 1E0380000000 3F07E0000000 631C38000000 | |
1155 81B81C000000 00F00C000000 00E006000000 00C002000000 00C003000000 | |
1156 00C003000000 01C003000000 018003000000 018003000000 030003000000 | |
1157 030003000000 030003800000 030001800000 030001800400 030001800800 | |
1158 030001801800 060001803000 060000806000 0C0000C0C000 0C0000C0C000 | |
1159 0C0000C18000 0C0000C30000 0C0000C60000 0000007C0000 000000380000 | |
1160 000000000000 000000000000 >getsymb | |
1161 77< 000000000000 000000000000 070180000000 1F83C0000000 7186600F0000 | |
1162 E0C6703F8000 00C43030C000 00CC1860C000 00CC18606000 00C808C06000 | |
1163 00F80CC02000 00F006803000 00F007803000 00E007803000 00E003803000 | |
1164 00E003003000 00E003003000 00E003006000 00E003006000 00E003006060 | |
1165 00E0030060C0 00E0030060C0 00E003006180 00E003006180 00E003006100 | |
1166 00E003006300 00C001006200 00C001006600 00C001003C00 00C001001800 | |
1167 000000000000 000000000000 >getsymb | |
1168 76< 00000000 00000000 00300000 00780000 004C0000 00CC0000 00CC0000 | |
1169 00CC0000 00CC0000 00D80000 00F00000 00E00000 01C00000 03C00000 | |
1170 0EC00000 38C00000 60C00000 C0C00000 00C00000 00C00300 00C00600 | |
1171 00C00C00 00C00C00 00C01800 0FE01800 1FF03000 31B83000 331C6000 | |
1172 1E07C000 0C038000 00000000 00000000 >getsymb | |
1173 75< 00000000 00000000 18300060 3C7800C0 664C0300 43CC0600 838C1C00 | |
1174 010C3800 000C6000 000CC000 000F8000 000F0000 00098000 0018C000 | |
1175 00186000 00186000 00183000 00183000 00183018 00301830 00301830 | |
1176 00201860 00600C60 20C00CC0 218004C0 330006C0 1E000380 0C000300 | |
1177 00000000 00000000 >getsymb | |
1178 74< 00000000 00000000 00040000 180E0000 3E1B0000 23198000 63318000 | |
1179 C1B18000 C1E18000 80C18000 80018000 00030000 00030000 00060000 | |
1180 00060000 00060000 00060000 00062000 00066000 0006C000 00078000 | |
1181 00070000 00060000 000C0000 001C0000 003C0000 006C0000 00CC0000 | |
1182 018C0000 030C0000 060C0000 0C0C0000 0C0C0000 0C0C0000 0C0C0000 | |
1183 0C180000 0C180000 06180000 03980000 03F80000 00F00000 00000000 | |
1184 00000000 >getsymb | |
1185 73< 00000000 00000000 000C0000 1C3C0000 36660000 63C60000 41860000 | |
1186 80060000 80060000 00060000 00060000 000C0000 000C0000 000C0000 | |
1187 000C0000 000C0000 000C0000 00180000 00183000 00186000 00186000 | |
1188 0018C000 80198000 801F0000 C03C0000 60700000 3FC00000 1F800000 | |
1189 00000000 00000000 >getsymb | |
1190 72< 000000000000 000000000000 000001800000 000007C00000 1C100C600000 | |
1191 3E3808600000 67D818600000 439818600000 801818400000 801818C00000 | |
1192 001818800000 001819800000 00181F000000 00181C000000 001878000000 | |
1193 001BF0000000 007E30000000 00F830000000 019830000000 031860030000 | |
1194 061860060000 0618600C0000 0C18600C0000 181860180000 181860180000 | |
1195 181060300000 183030300000 186030600000 0FC018600000 070008C00000 | |
1196 00000F800000 000007000000 000000000000 000000000000 >getsymb | |
1197 71< 00000000 00000000 00180000 00FF0000 03C78000 0600E000 0C003000 | |
1198 18001000 30000000 30000000 60000000 E0000000 C0000000 C0000000 | |
1199 C0000000 C0000000 C0000000 60008000 60018000 30038030 30078060 | |
1200 180F80C0 081D8380 0C310700 07E31C00 03C37000 0003C000 001F8000 | |
1201 007F0000 01E30000 03830000 07030000 06060000 0C060000 0C040000 | |
1202 0C0C0000 0C180000 0C100000 06300000 03E00000 01C00000 00000000 | |
1203 00000000 >getsymb | |
1204 70< 00000000 00000000 0801FC00 0C0FF800 3FFE0000 FFF00000 8C000000 | |
1205 0C000000 0C000000 04000000 06000000 06000000 03000000 0303F000 | |
1206 03FF8000 03FC0000 03000000 02000000 06000000 06000600 04000C00 | |
1207 0C001800 0C003000 0C00E000 18078000 180F0000 1FF80000 3FE00000 | |
1208 00000000 00000000 >getsymb | |
1209 69< 00000000 00000000 03FC0000 07FF0000 1C038000 3C01C000 3000C000 | |
1210 30004000 30000000 38000000 1E000000 0E000000 03F00000 01F80000 | |
1211 03800000 0E000000 18000000 30000000 60000000 60000300 C0000600 | |
1212 C0000600 C0000C00 C0000C00 C0001800 70003000 3800E000 1E01C000 | |
1213 07FF0000 01FC0000 00000000 00000000 >getsymb | |
1214 68< 00000000 00000000 07FE0000 1FFF8000 3060C000 30C06000 30C03000 | |
1215 19801800 19800800 0D000C00 07000400 07000600 03000300 03800300 | |
1216 06C00300 06600300 06300300 061C0300 0C06030C 0C038318 1C01C670 | |
1217 18007FC0 30003F00 3E001800 3B803000 71F0E000 C03FC000 C01F8000 | |
1218 00000000 00000000 >getsymb | |
1219 67< 00000000 00000000 007F8000 01FFE000 07007000 0C003000 18001800 | |
1220 38001800 30001800 60003000 60006000 6011C000 C01F0000 C0060000 | |
1221 C0000000 C0000000 C0000000 C0000000 C0000000 C0000000 C00000C0 | |
1222 C0000180 C0000180 60000300 60000300 60000600 30000C00 38003800 | |
1223 1E00E000 0F03C000 01FF0000 00FE0000 00000000 00000000 >getsymb | |
1224 66< 00000000 00000000 03FC0000 0FFF0000 1B818000 2300C000 0300C000 | |
1225 0300C000 0300C000 06018000 06038000 060F0000 041C0000 04700000 | |
1226 0CF00000 0C1C0000 0C0F0000 0C078000 0C00C000 0C00600C 0C003018 | |
1227 0C003818 0C001C30 0C000C30 0C000CE0 0C000DC0 18001F00 18001E00 | |
1228 30003800 30007000 F800C000 7F018000 47FF0000 00FE0000 00000000 | |
1229 00000000 >getsymb | |
1230 65< 00000000 00000000 001E0400 007F0C00 01C1C800 0300E800 06003800 | |
1231 0C003000 18003000 10003000 30003000 60006000 60006000 60006000 | |
1232 C0006000 C0006000 C000C000 C000C030 C000C060 C000C0C0 4000C180 | |
1233 6000C300 2001C300 3001C600 3803C600 1802CC00 0C06CC00 06046C00 | |
1234 039C7800 00F83000 00000000 00000000 >getsymb | |
1235 64< 00000000 00000000 001F0000 00FFE000 07C0F000 0F001800 1C000C00 | |
1236 18000C00 30000700 70000300 60000180 60000180 400E0180 401F8180 | |
1237 C030C180 C070C180 C0C04180 C1C0C180 C180C180 8300C180 C301C180 | |
1238 C3018100 43018300 61018300 2186EE00 30CE7C00 107C0000 18000000 | |
1239 0C000000 06000000 0300E000 01FFC000 007E0000 00000000 00000000 | |
1240 >getsymb | |
1241 63< 0000 0000 1E00 3F00 6180 C0C0 8060 8020 C030 6030 1030 0020 0060 | |
1242 00C0 0180 0300 0200 0400 0C00 0800 1800 1000 3000 3000 1800 0000 0000 | |
1243 0000 1800 1C00 0000 0000 >getsymb | |
1244 62< 00000000 00000000 C0000000 60000000 30000000 18000000 0C000000 | |
1245 06000000 03000000 01800000 00C00000 00600000 00380000 001C0000 | |
1246 00060000 00030000 00070000 001C0000 00700000 01C00000 07000000 | |
1247 0E000000 38000000 60000000 C0000000 80000000 00000000 00000000 | |
1248 >getsymb | |
1249 61< 00000000 00000000 FFE00000 FFFFF000 001FF000 00000000 00000000 | |
1250 00000000 00000000 00000000 00000000 FFFFC000 FFFFC000 00000000 | |
1251 00000000 >getsymb | |
1252 60< 00000000 00000000 00018000 000F0000 00380000 00E00000 03800000 | |
1253 06000000 0C000000 10000000 30000000 E0000000 60000000 20000000 | |
1254 30000000 18000000 0C000000 06000000 03000000 01800000 00E00000 | |
1255 00380000 000E0000 00038000 00000000 00000000 >getsymb | |
1256 59< 0000 0000 1800 3800 3000 2000 0000 0000 0000 0000 0000 0000 0000 | |
1257 0000 0000 0000 0C00 0600 0600 0600 0600 1C00 3000 E000 8000 0000 0000 | |
1258 >getsymb | |
1259 58< 0000 0000 6000 F000 C000 C000 0000 0000 0000 0000 0000 0000 0000 | |
1260 0000 0000 0000 0000 8000 F000 E000 0000 0000 >getsymb | |
1261 57< 00000000 00000000 03F00000 0FFC0000 180E0000 38060000 60020000 | |
1262 C0030000 C0030000 C0030000 C0030000 C0030000 C0020000 40060000 | |
1263 60060000 601E0000 30340000 18640000 0FEC0000 078C0000 00080000 | |
1264 00080000 00180000 00180000 00100000 80300000 C0300000 70600000 | |
1265 1FC00000 0F000000 00000000 00000000 >getsymb | |
1266 56< 00000000 00000000 007C0000 00C60000 01820000 03030000 03010000 | |
1267 03010000 03010000 03030000 01030000 01030000 03860000 0F8E0000 | |
1268 18F80000 30700000 60100000 60180000 60080000 C0080000 C0080000 | |
1269 C0180000 40180000 60300000 3FE00000 0FC00000 00000000 00000000 | |
1270 >getsymb | |
1271 55< 0000 0000 0008 3078 78F8 CC98 8798 0710 0030 0030 0020 0060 0040 | |
1272 00C0 0080 3980 0FE0 03F8 0300 0300 0600 0600 0600 0C00 0800 1800 3000 | |
1273 6000 6000 4000 4000 0000 0000 >getsymb | |
1274 54< 00000000 00000000 00040000 001C0000 00300000 00E00000 01800000 | |
1275 03000000 06000000 0C000000 08000000 18F00000 33F80000 360E0000 | |
1276 6C070000 78010000 60018000 60018000 C000C000 C000C000 C000C000 | |
1277 C0008000 C0018000 60010000 30030000 18060000 1C0C0000 0F180000 | |
1278 03F00000 00000000 00000000 >getsymb | |
1279 53< 00000000 00000000 01FF0000 03FF0000 03000000 03000000 06000000 | |
1280 06000000 06000000 06000000 06000000 03C00000 00F80000 001C0000 | |
1281 000E0000 00030000 00030000 00030000 000E0000 E01C0000 70300000 | |
1282 3FE00000 0F800000 00000000 00000000 >getsymb | |
1283 52< 0000 0000 8018 8018 C018 C018 C018 C018 C018 FF18 3FF8 01F8 0030 | |
1284 0030 0070 0060 0060 0060 00E0 00C0 00C0 0080 0080 0000 0000 >getsymb | |
1285 51< 00000000 00000000 01E00000 07F00000 0E180000 0C0C0000 000C0000 | |
1286 000C0000 00180000 00300000 00600000 00C00000 00780000 001E0000 | |
1287 00070000 00018000 0001C000 0000C000 8000C000 C0018000 C0070000 | |
1288 7C0E0000 3FF80000 03F00000 00000000 00000000 >getsymb | |
1289 50< 00000000 00000000 07800000 1FC00000 38600000 70300000 C0300000 | |
1290 80100000 00100000 00100000 00300000 00300000 00200000 00600000 | |
1291 00C00000 01800000 01000000 03000000 06000000 06000000 0F004000 | |
1292 1DC08000 307F8000 303E0000 00000000 00000000 >getsymb | |
1293 49< 0000 0000 3000 7800 9800 1800 1800 1800 1800 1800 1800 1800 1800 | |
1294 3000 3000 3000 3000 3000 3000 3000 3000 3000 0000 0000 >getsymb | |
1295 48< 00000000 00000000 00E00000 03F80000 0E180000 180C0000 30060000 | |
1296 30060000 60020000 E0030000 C0030000 C0030000 C0030000 C0030000 | |
1297 C0030000 C0030000 C0020000 60060000 60060000 20040000 300C0000 | |
1298 18180000 0C180000 07F00000 01E00000 00000000 00000000 >getsymb | |
1299 47< 00000000 00000000 00040000 00060000 000C0000 000C0000 00180000 | |
1300 00180000 00180000 00300000 00300000 00200000 00600000 00600000 | |
1301 00C00000 00C00000 01800000 01800000 03000000 03000000 06000000 | |
1302 06000000 0C000000 0C000000 18000000 18000000 38000000 30000000 | |
1303 60000000 60000000 60000000 C0000000 80000000 00000000 00000000 | |
1304 >getsymb | |
1305 46< 0000 0000 8000 C000 E000 C000 0000 0000 >getsymb | |
1306 45< 0000 0000 F000 7FF0 07F0 0000 0000 >getsymb | |
1307 44< 0000 0000 1000 1800 0C00 0C00 0C00 0C00 0800 1800 3000 6000 8000 | |
1308 0000 0000 >getsymb | |
1309 43< 00000000 00000000 00100000 00100000 00300000 00300000 00300000 | |
1310 00300000 00300000 0033E000 3FFFC000 FFFC0000 00300000 00300000 | |
1311 00300000 00300000 00300000 00300000 00600000 00600000 00400000 | |
1312 00400000 00000000 00000000 >getsymb | |
1313 42< 00000000 00000000 30180000 18300000 0C600000 04C00000 0FFE0000 | |
1314 3FF80000 EC600000 86200000 06300000 03180000 03000000 01000000 | |
1315 00000000 00000000 >getsymb | |
1316 41< 0000 0000 6000 F000 1C00 0E00 0300 0180 0080 00C0 00C0 00C0 00C0 | |
1317 00C0 0060 0060 0060 0060 0060 0060 0060 00C0 00C0 00C0 00C0 00C0 0080 | |
1318 0180 0380 0300 0600 0C00 1800 7000 0000 0000 >getsymb | |
1319 40< 0000 0000 0700 0E00 1800 3000 2000 6000 6000 6000 6000 6000 C000 | |
1320 C000 C000 C000 C000 C000 C000 C000 6000 6000 6000 6000 3000 3000 1800 | |
1321 1800 0C00 0600 0700 0380 0000 0000 >getsymb | |
1322 39< 0000 0000 2000 3000 1800 1800 0C00 0C00 0C00 1800 3000 3000 6000 | |
1323 4000 8000 0000 0000 >getsymb | |
1324 38< 00000000 00000000 0F000000 1F800000 30C00000 20600000 20300000 | |
1325 30300000 18200000 18400000 0CC00000 05800000 0F000000 1F000000 | |
1326 19820000 30C20000 60660000 602C0000 C0380000 C0300000 C0300000 | |
1327 C0780000 60680000 61CC0000 3F0C0000 1E040000 00060000 00000000 | |
1328 00000000 >getsymb | |
1329 37< 00000000 00000000 0E03C000 3FDF8000 61F30000 60C70000 C0C60000 | |
1330 C0CC0000 618C0000 630C0000 3E180000 0C300000 00300000 00600000 | |
1331 00600000 00C00000 01C00000 03800000 0307C000 060FE000 0C3C2000 | |
1332 18F03000 31E03000 37603000 6CC03000 78C06000 E0F0C000 C07FC000 | |
1333 000F0000 00000000 00000000 >getsymb | |
1334 36< 00000000 00000000 01040000 03040000 030C0000 030C0000 030C0000 | |
1335 037C0000 03DE0000 0F0F0000 0E0D8000 1A0C8000 360C0000 260C0000 | |
1336 260C0000 1E0C0000 1FCC0000 07FC0000 043C0000 040E0000 8C0F8000 | |
1337 CC0FC000 7C0C4000 1C0C6000 0E0CE000 0FFFC000 0CFE0000 0C180000 | |
1338 0C180000 0C180000 0C180000 0C180000 0C100000 08100000 08100000 | |
1339 08100000 00100000 00000000 00000000 >getsymb | |
1340 35< 00000000 00000000 00430000 00430000 00C30000 00C30000 00C30000 | |
1341 00C30000 00C3F000 00FFF000 1FFF0000 3F870000 018C0000 018C0000 | |
1342 018C0000 018C0000 030C0000 030FC000 7FFFC000 FFF80000 06180000 | |
1343 06180000 06180000 0C180000 0C180000 0C100000 00000000 00000000 | |
1344 >getsymb | |
1345 34< 0000 0000 8300 6180 30C0 10C0 10C0 10C0 3180 6300 C000 8000 0000 | |
1346 0000 >getsymb | |
1347 33< 0000 0000 4000 6000 6000 6000 6000 6000 6000 6000 6000 6000 6000 | |
1348 6000 6000 6000 6000 6000 E000 C000 C000 C000 C000 C000 C000 8000 0000 | |
1349 0000 0000 C000 C000 4000 0000 0000 >getsymb | |
1350 Hwfdict begin | |
1351 /BuildChar | |
1352 Chread | |
1353 end | |
1354 /Joepie Hwfdict definefont | |
1355 %%EndFont Joepie\n\n")) | |
1356 | |
1357 ;;Sets page numbering off | |
1358 (defun handwrite-set-pagenumber-off () | |
1359 (setq handwrite-pagenumbering nil) | |
1360 (define-key menu-bar-handwrite-map | |
1361 [numbering] | |
1362 '("Page numbering Off" . handwrite-set-pagenumber)) | |
1363 (message "page numbering off")) | |
1364 | |
1365 ;;Sets page numbering on | |
1366 (defun handwrite-set-pagenumber-on () | |
1367 (setq handwrite-pagenumbering t) | |
1368 (define-key menu-bar-handwrite-map | |
1369 [numbering] | |
1370 '("Page numbering On" . handwrite-set-pagenumber)) | |
1371 (message "page numbering on" )) | |
1372 | |
1373 | |
1374 ;; Key bindings | |
1375 | |
1376 | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
45321
diff
changeset
|
1377 ;;; I'd rather not fill up the menu bar menus with |
18949 | 1378 ;;; lots of random miscellaneous features. -- rms. |
1379 ;;;(define-key-after | |
1380 ;;; (lookup-key global-map [menu-bar edit]) | |
1381 ;;; [handwrite] | |
1382 ;;; '("Write by hand" . menu-bar-handwrite-map) | |
1383 ;;; 'spell) | |
16502 | 1384 |
1385 (define-key menu-bar-handwrite-map [numbering] | |
1386 '("Page numbering Off" . handwrite-set-pagenumber)) | |
1387 | |
1388 (define-key menu-bar-handwrite-map [10pt] | |
1389 '("10 pt" . handwrite-10pt)) | |
1390 | |
1391 (define-key menu-bar-handwrite-map [11pt] | |
1392 '("11 pt *" . handwrite-11pt)) | |
1393 | |
1394 (define-key menu-bar-handwrite-map [12pt] | |
1395 '("12 pt" . handwrite-12pt)) | |
1396 | |
1397 (define-key menu-bar-handwrite-map [13pt] | |
1398 '("13 pt" . handwrite-13pt)) | |
1399 | |
1400 (define-key menu-bar-handwrite-map [handwrite] | |
1401 '("Write by hand" . handwrite)) | |
1402 | |
1403 (define-key-after | |
1404 (lookup-key menu-bar-handwrite-map [ ]) | |
1405 [handwrite-separator1] | |
1406 '("----" . nil) | |
1407 'handwrite) | |
1408 | |
1409 (define-key-after | |
1410 (lookup-key menu-bar-handwrite-map [ ]) | |
1411 [handwrite-separator2] | |
1412 '("----" . nil) | |
1413 '10pt) | |
1414 | |
1415 | |
1416 (provide 'handwrite) | |
1417 | |
1418 | |
52401 | 1419 ;;; arch-tag: f2285ae9-e41b-4c96-8343-87dce41e44b7 |
16502 | 1420 ;;; handwrite.el ends here |