diff --git a/index.php b/index.php deleted file mode 100644 index 7ed173a..0000000 --- a/index.php +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/www/controller.php b/www/controller.php deleted file mode 100644 index d7c0b98..0000000 --- a/www/controller.php +++ /dev/null @@ -1,75 +0,0 @@ - $error) { - if ($error) { - switch($error) { - case UPLOAD_ERR_INI_SIZE: - case UPLOAD_ERR_FORM_SIZE: - echo "The uploaded file exceeds the upload_max_filesize directive in php.ini."; break; - case UPLOAD_ERR_PARTIAL: - echo "The uploaded file was only partially uploaded."; break; - case UPLOAD_ERR_NO_FILE: - break; - case UPLOAD_ERR_NO_TMP_DIR: - echo "Missing a temporary folder."; break; - default: - echo "Unknown error"; - } - continue; - } - - $weight = "normal"; - $style = "normal"; - - switch($name) { - case "bold": - $weight = "bold"; break; - - case "italic": - $style = "italic"; break; - - case "bold_italic": - $weight = "bold"; - $style = "italic"; - break; - } - - $style_arr = array( - "family" => $family, - "weight" => $weight, - "style" => $style, - ); - - Font_Metrics::init(); - - if (!Font_Metrics::register_font($style_arr, $data["tmp_name"][$name])) { - echo htmlentities($data["name"][$name])." is not a valid font file"; - } - else { - $font_view = htmlentities("$family $weight $style"); - echo "The $font_view font was successfully installed !
"; - } - } - break; -} \ No newline at end of file diff --git a/www/cssSandpaper/css/reset.css b/www/cssSandpaper/css/reset.css deleted file mode 100644 index 3478e36..0000000 --- a/www/cssSandpaper/css/reset.css +++ /dev/null @@ -1,66 +0,0 @@ -/* - * CSS Reset based on code from - * http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/ - * - * Earlier copy stated: - * "If you want to use my reset styles, then feel free! It's all - * explicitly in the public domain (I have to formally say that - * or else people ask me about licensing)." - */ - -html, body, div, span, applet, object, iframe, -h1, h2, h3, h4, h5, h6, p, blockquote, pre, -a, abbr, acronym, address, big, cite, code, -del, dfn, em, font, img, ins, kbd, q, s, samp, -small, strike, strong, sub, sup, tt, var, -dl, dt, dd, ol, ul, li, -fieldset, form, label, legend, -table, caption, tbody, tfoot, thead, tr, th, td { - margin: 0; - padding: 0; - border: 0; - outline: 0; - font-weight: inherit; - font-style: inherit; - font-size: 100%; - font-family: inherit; - vertical-align: baseline; -} -/* remember to define focus styles! */ -:focus { - outline: 0; -} -body { - line-height: 1; - color: black; - background: white; -} -ol, ul { - list-style: none; -} -/* tables still need 'cellspacing="0"' in the markup */ -table { - border-collapse: separate; - border-spacing: 0; -} -caption, th, td { - text-align: left; - font-weight: normal; -} -blockquote:before, blockquote:after, -q:before, q:after { - content: ""; -} -blockquote, q { - quotes: "" ""; -} - -/* - * Added 2009/02/04 to fix IE7's issue with interpolated - * scaling not turned on by default. Based on an idea from - * http://acidmartin.wordpress.com/2009/01/05/better-image-scaling-and-resampling-in-internet-explorer/ - */ -img -{ - -ms-interpolation-mode: bicubic; -} diff --git a/www/cssSandpaper/js/EventHelpers.js b/www/cssSandpaper/js/EventHelpers.js deleted file mode 100644 index 52fe7e6..0000000 --- a/www/cssSandpaper/js/EventHelpers.js +++ /dev/null @@ -1,441 +0,0 @@ -/******************************************************************************* - * This notice must be untouched at all times. - * - * This javascript library contains helper routines to assist with event - * handling consinstently among browsers - * - * EventHelpers.js v.1.3 available at http://www.useragentman.com/ - * - * released under the MIT License: - * http://www.opensource.org/licenses/mit-license.php - * - *******************************************************************************/ -var EventHelpers = new function(){ - var me = this; - - var safariTimer; - var isSafari = /WebKit/i.test(navigator.userAgent); - var globalEvent; - - me.init = function () { - if (me.hasPageLoadHappened(arguments)) { - return; - } - - if (document.createEventObject){ - // dispatch for IE - globalEvent = document.createEventObject(); - } else if (document.createEvent) { - globalEvent = document.createEvent("HTMLEvents"); - } - - me.docIsLoaded = true; - } - - /** - * Adds an event to the document. Examples of usage: - * me.addEvent(window, "load", myFunction); - * me.addEvent(docunent, "keydown", keyPressedFunc); - * me.addEvent(document, "keyup", keyPressFunc); - * - * @author Scott Andrew - http://www.scottandrew.com/weblog/articles/cbs-events - * @author John Resig - http://ejohn.org/projects/flexible-javascript-events/ - * @param {Object} obj - a javascript object. - * @param {String} evType - an event to attach to the object. - * @param {Function} fn - the function that is attached to the event. - */ - me.addEvent = function(obj, evType, fn){ - - if (obj.addEventListener) { - obj.addEventListener(evType, fn, false); - } else if (obj.attachEvent) { - obj['e' + evType + fn] = fn; - obj[evType + fn] = function(){ - obj["e" + evType + fn](self.event); - } - obj.attachEvent("on" + evType, obj[evType + fn]); - } - } - - - /** - * Removes an event that is attached to a javascript object. - * - * @author Scott Andrew - http://www.scottandrew.com/weblog/articles/cbs-events - * @author John Resig - http://ejohn.org/projects/flexible-javascript-events/ * @param {Object} obj - a javascript object. - * @param {String} evType - an event attached to the object. - * @param {Function} fn - the function that is called when the event fires. - */ - me.removeEvent = function(obj, evType, fn){ - - if (obj.removeEventListener) { - obj.removeEventListener(evType, fn, false); - } else if (obj.detachEvent) { - try { - obj.detachEvent("on" + evType, obj[evType + fn]); - obj[evType + fn] = null; - obj["e" + evType + fn] = null; - } - catch (ex) { - // do nothing; - } - } - } - - function removeEventAttribute(obj, beginName){ - var attributes = obj.attributes; - for (var i = 0; i < attributes.length; i++) { - var attribute = attributes[i] - var name = attribute.name - if (name.indexOf(beginName) == 0) { - //obj.removeAttributeNode(attribute); - attribute.specified = false; - } - } - } - - me.addScrollWheelEvent = function(obj, fn){ - if (obj.addEventListener) { - /** DOMMouseScroll is for mozilla. */ - obj.addEventListener('DOMMouseScroll', fn, true); - } - - /** IE/Opera. */ - if (obj.attachEvent) { - obj.attachEvent("onmousewheel", fn); - } - - } - - me.removeScrollWheelEvent = function(obj, fn){ - if (obj.removeEventListener) { - /** DOMMouseScroll is for mozilla. */ - obj.removeEventListener('DOMMouseScroll', fn, true); - } - - /** IE/Opera. */ - if (obj.detachEvent) { - obj.detatchEvent("onmousewheel", fn); - } - - } - - /** - * Given a mouse event, get the mouse pointer's x-coordinate. - * - * @param {Object} e - a DOM Event object. - * @return {int} - the mouse pointer's x-coordinate. - */ - me.getMouseX = function(e){ - if (!e) { - return; - } - // NS4 - if (e.pageX != null) { - return e.pageX; - // IE - } else if (window.event != null && window.event.clientX != null && - document.body != null && - document.body.scrollLeft != null) - return window.event.clientX + document.body.scrollLeft; - // W3C - else if (e.clientX != null) - return e.clientX; - else - return null; - } - - /** - * Given a mouse event, get the mouse pointer's y-coordinate. - * @param {Object} e - a DOM Event Object. - * @return {int} - the mouse pointer's y-coordinate. - */ - me.getMouseY = function(e){ - // NS4 - if (e.pageY != null) - return e.pageY; - // IE - else if (window.event != null && window.event.clientY != null && - document.body != null && - document.body.scrollTop != null) - return window.event.clientY + document.body.scrollTop; - // W3C - else if (e.clientY != null) { - return e.clientY; - } - } - /** - * Given a mouse scroll wheel event, get the "delta" of how fast it moved. - * @param {Object} e - a DOM Event Object. - * @return {int} - the mouse wheel's delta. It is greater than 0, the - * scroll wheel was spun upwards; if less than 0, downwards. - */ - me.getScrollWheelDelta = function(e){ - var delta = 0; - if (!e) /* For IE. */ - e = window.event; - if (e.wheelDelta) { /* IE/Opera. */ - delta = e.wheelDelta / 120; - /** In Opera 9, delta differs in sign as compared to IE. - */ - if (window.opera) { - delta = -delta; - } - } else if (e.detail) { /** Mozilla case. */ - /** In Mozilla, sign of delta is different than in IE. - * Also, delta is multiple of 3. - */ - delta = -e.detail / 3; - } - return delta - } - - /** - * Sets a mouse move event of a document. - * - * @deprecated - use only if compatibility with IE4 and NS4 is necessary. Otherwise, just - * use EventHelpers.addEvent(window, 'mousemove', func) instead. Cannot be used to add - * multiple mouse move event handlers. - * - * @param {Function} func - the function that you want a mouse event to fire. - */ - me.addMouseEvent = function(func){ - - if (document.captureEvents) { - document.captureEvents(Event.MOUSEMOVE); - } - - document.onmousemove = func; - window.onmousemove = func; - window.onmouseover = func; - - } - - - - /** - * Find the HTML object that fired an Event. - * - * @param {Object} e - an HTML object - * @return {Object} - the HTML object that fired the event. - */ - me.getEventTarget = function(e){ - // first, IE method for mouse events(also supported by Safari and Opera) - if (e.toElement) { - return e.toElement; - // W3C - } else if (e.currentTarget) { - return e.currentTarget; - - // MS way - } else if (e.srcElement) { - return e.srcElement; - } else { - return null; - } - } - - - - - /** - * Given an event fired by the keyboard, find the key associated with that event. - * - * @param {Object} e - an event object. - * @return {String} - the ASCII character code representing the key associated with the event. - */ - me.getKey = function(e){ - if (e.keyCode) { - return e.keyCode; - } else if (e.event && e.event.keyCode) { - return window.event.keyCode; - } else if (e.which) { - return e.which; - } - } - - - /** - * Will execute a function when the page's DOM has fully loaded (and before all attached images, iframes, - * etc., are). - * - * Usage: - * - * EventHelpers.addPageLoadEvent('init'); - * - * where the function init() has this code at the beginning: - * - * function init() { - * - * if (EventHelpers.hasPageLoadHappened(arguments)) return; - * - * // rest of code - * .... - * } - * - * @author This code is based off of code from http://dean.edwards.name/weblog/2005/09/busted/ by Dean - * Edwards, with a modification by me. - * - * @param {String} funcName - a string containing the function to be called. - */ - me.addPageLoadEvent = function(funcName){ - - var func = eval(funcName); - - // for Internet Explorer (using conditional comments) - /*@cc_on @*/ - /*@if (@_win32) - pageLoadEventArray.push(func); - return; - /*@end @*/ - if (isSafari) { // sniff - pageLoadEventArray.push(func); - - if (!safariTimer) { - - safariTimer = setInterval(function(){ - if (/loaded|complete/.test(document.readyState)) { - clearInterval(safariTimer); - - /* - * call the onload handler - * func(); - */ - me.runPageLoadEvents(); - return; - } - set = true; - }, 10); - } - /* for Mozilla */ - } else if (document.addEventListener) { - var x = document.addEventListener("DOMContentLoaded", func, null); - - /* Others */ - } else { - me.addEvent(window, 'load', func); - } - } - - var pageLoadEventArray = new Array(); - - me.runPageLoadEvents = function(e){ - if (isSafari || e.srcElement.readyState == "complete") { - - for (var i = 0; i < pageLoadEventArray.length; i++) { - pageLoadEventArray[i](); - } - } - } - /** - * Determines if either addPageLoadEvent('funcName') or addEvent(window, 'load', funcName) - * has been executed. - * - * @see addPageLoadEvent - * @param {Function} funcArgs - the arguments of the containing. function - */ - me.hasPageLoadHappened = function(funcArgs){ - // If the function already been called, return true; - if (funcArgs.callee.done) - return true; - - // flag this function so we don't do the same thing twice - funcArgs.callee.done = true; - } - - - - /** - * Used in an event method/function to indicate that the default behaviour of the event - * should *not* happen. - * - * @param {Object} e - an event object. - * @return {Boolean} - always false - */ - me.preventDefault = function(e){ - - if (e.preventDefault) { - e.preventDefault(); - } - - try { - e.returnValue = false; - } - catch (ex) { - // do nothing - } - - } - - me.cancelBubble = function(e){ - if (e.stopPropagation) { - e.stopPropagation(); - } - - try { - e.cancelBubble = true; - } - catch (ex) { - // do nothing - } - } - - /* - * Fires an event manually. - * @author Scott Andrew - http://www.scottandrew.com/weblog/articles/cbs-events - * @author John Resig - http://ejohn.org/projects/flexible-javascript-events/ * @param {Object} obj - a javascript object. - * @param {String} evType - an event attached to the object. - * @param {Function} fn - the function that is called when the event fires. - * - */ - me.fireEvent = function (element,event, options){ - - if(!element) { - return; - } - - if (document.createEventObject){ - /* - var stack = DebugHelpers.getStackTrace(); - var s = stack.toString(); - jslog.debug(s); - if (s.indexOf('fireEvent') >= 0) { - return; - } - */ - return element.fireEvent('on' + event, globalEvent) - jslog.debug('ss'); - - } - else{ - // dispatch for firefox + others - globalEvent.initEvent(event, true, true); // event type,bubbling,cancelable - return !element.dispatchEvent(globalEvent); - } -} - - /* EventHelpers.init () */ - function init(){ - // Conditional comment alert: Do not remove comments. Leave intact. - // The detection if the page is secure or not is important. If - // this logic is removed, Internet Explorer will give security - // alerts. - /*@cc_on @*/ - /*@if (@_win32) - - document.write(' - - - - - - - - - - - - - - - - - -
- - - - - - - - -
- - - - -
-
diff --git a/www/demo.php b/www/demo.php deleted file mode 100644 index fff8398..0000000 --- a/www/demo.php +++ /dev/null @@ -1,86 +0,0 @@ -load_html($_POST["html"]); - $dompdf->set_paper($_POST["paper"], $_POST["orientation"]); - $dompdf->render(); - - $dompdf->stream("dompdf_out.pdf", array("Attachment" => false)); - - exit(0); -} - -?> - - - -

Demo

- - - -

Enter your html snippet in the text box below to see it rendered as a -PDF: (Note by default, remote stylesheets, images & inline PHP are disabled.)

- -
" method="post"> -

Paper size and orientation: - - -

- - - -
- -
- -
-

(Note: if you use a KHTML -based browser and are having difficulties loading the sample output, try -saving it to a file first.)

- - - -

- User input has been disabled for remote connections. -

- - - - - - \ No newline at end of file diff --git a/www/examples.php b/www/examples.php deleted file mode 100644 index 91a2f4c..0000000 --- a/www/examples.php +++ /dev/null @@ -1,134 +0,0 @@ - - - - - - -

Samples

- -

Below are some sample files. The PDF version is generated on the fly by dompdf. (The source HTML & CSS for -these files is included in the test/ directory of the distribution -package.)

- - array(), - "css" => array(), - "dom" => array(), - "image" => array(), - "page" => array(), - "encoding" => array(), - "script" => array(), - "quirks" => array(), - "other" => array(), -); - -foreach ( $test_files as $file ) { - preg_match("@[\\/](([^_]+)_?(.*))\.(".implode("|", $extensions).")$@i", $file, $matches); - $prefix = $matches[2]; - - if ( array_key_exists($prefix, $sections) ) { - $sections[$prefix][] = array($file, $matches[3]); - } - else { - $sections["other"][] = array($file, $matches[1]); - } -} - -foreach ( $sections as $section => $files ) { - echo "

$section

"; - - echo ""; -} - -include "foot.inc"; diff --git a/www/fonts.php b/www/fonts.php deleted file mode 100644 index 6b1c4ae..0000000 --- a/www/fonts.php +++ /dev/null @@ -1,200 +0,0 @@ - - - -

Font manager

- - - -

Installed fonts

- - - - - - - - - - - - - - - - - - - - $variants) { ?> - - - $path) { - if ($i > 0) { - echo ""; - } - - echo " - "; - - foreach ($extensions as $ext) { - $v = ""; - $class = ""; - - if (is_readable("$path.$ext")) { - // if not cache file - if (strpos($ext, ".php") === false) { - $class = "ok"; - $v = $ext; - } - - // cache file - else { - // check if old cache format - $content = file_get_contents("$path.$ext", null, null, null, 50); - if (strpos($content, '$this->')) { - $v = "DEPREC."; - } - else { - ob_start(); - $d = include "$path.$ext"; - ob_end_clean(); - - if ($d == 1) - $v = "DEPREC."; - else { - $class = "ok"; - $v = $d["_version_"]; - } - } - } - } - - echo ""; - } - - echo ""; - $i++; - } - ?> - - -
Font familyVariantsFile versions
TTFAFMAFM cacheUFMUFM cache
- (default)'; - } - ?> -
- ".htmlentities($name)." : ".htmlentities($path)."
-
$v
- -

Install new fonts

- - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Name
Normal
Bold
Bold italic
Italic
-
- - - \ No newline at end of file diff --git a/www/foot.inc b/www/foot.inc deleted file mode 100644 index 81b1819..0000000 --- a/www/foot.inc +++ /dev/null @@ -1,10 +0,0 @@ - - - - diff --git a/www/functions.inc.php b/www/functions.inc.php deleted file mode 100644 index 5c67b96..0000000 --- a/www/functions.inc.php +++ /dev/null @@ -1,53 +0,0 @@ -Authenticate to access this section'; -} - -function get_php_self(){ - return isset($_SERVER['PHP_SELF']) ? htmlentities(strip_tags($_SERVER['PHP_SELF'],''), ENT_QUOTES, 'UTF-8') : ''; -} - -// From apc.php -function auth_check() { - if ( isset($_GET["login"]) && DOMPDF_ADMIN_PASSWORD == "password" ) { - $_SESSION["auth_message"] = "The password must be changed in 'dompdf_config.custom.inc.php'"; - return false; - } - else { - $_SESSION["auth_message"] = null; - } - - if ( isset($_GET["login"]) || isset($_SERVER["PHP_AUTH_USER"]) ) { - - if (!isset($_SERVER["PHP_AUTH_USER"]) || - !isset($_SERVER["PHP_AUTH_PW"]) || - $_SERVER["PHP_AUTH_USER"] != DOMPDF_ADMIN_USERNAME || - $_SERVER["PHP_AUTH_PW"] != DOMPDF_ADMIN_PASSWORD) { - - $PHP_SELF = get_php_self(); - - header('WWW-Authenticate: Basic realm="DOMPDF Login"'); - header('HTTP/1.0 401 Unauthorized'); - - echo << -

Rejected!

- Wrong Username or Password!
 
  - Continue... - -EOB; - exit; - } - - else { - $_SESSION["auth_message"] = null; - $_SESSION["authenticated"] = true; - return true; - } - } -} \ No newline at end of file diff --git a/www/head.inc b/www/head.inc deleted file mode 100644 index 0206e5c..0000000 --- a/www/head.inc +++ /dev/null @@ -1,59 +0,0 @@ -'; -} - -function li_star() { - return '
  • '; -} - -auth_check(); - -?> - - - - dompdf - The PHP 5 HTML to PDF Converter - - - - - - - - - - - - - - - - -
    diff --git a/www/images/arrow_01.gif b/www/images/arrow_01.gif deleted file mode 100644 index 0a49fe8..0000000 Binary files a/www/images/arrow_01.gif and /dev/null differ diff --git a/www/images/arrow_02.gif b/www/images/arrow_02.gif deleted file mode 100644 index d5f3c37..0000000 Binary files a/www/images/arrow_02.gif and /dev/null differ diff --git a/www/images/arrow_03.gif b/www/images/arrow_03.gif deleted file mode 100644 index 66ce13e..0000000 Binary files a/www/images/arrow_03.gif and /dev/null differ diff --git a/www/images/arrow_04.gif b/www/images/arrow_04.gif deleted file mode 100644 index a489840..0000000 Binary files a/www/images/arrow_04.gif and /dev/null differ diff --git a/www/images/arrow_05.gif b/www/images/arrow_05.gif deleted file mode 100644 index f5a62cf..0000000 Binary files a/www/images/arrow_05.gif and /dev/null differ diff --git a/www/images/arrow_06.gif b/www/images/arrow_06.gif deleted file mode 100644 index 7ccdf5c..0000000 Binary files a/www/images/arrow_06.gif and /dev/null differ diff --git a/www/images/css2.png b/www/images/css2.png deleted file mode 100644 index 9fcaead..0000000 Binary files a/www/images/css2.png and /dev/null differ diff --git a/www/images/dompdf_simple.png b/www/images/dompdf_simple.png deleted file mode 100644 index 1362ba0..0000000 Binary files a/www/images/dompdf_simple.png and /dev/null differ diff --git a/www/images/favicon.ico b/www/images/favicon.ico deleted file mode 100644 index 4c4c7c2..0000000 Binary files a/www/images/favicon.ico and /dev/null differ diff --git a/www/images/favicon.png b/www/images/favicon.png deleted file mode 100644 index a6de7bd..0000000 Binary files a/www/images/favicon.png and /dev/null differ diff --git a/www/images/h_bar.gif b/www/images/h_bar.gif deleted file mode 100644 index a55e2f1..0000000 Binary files a/www/images/h_bar.gif and /dev/null differ diff --git a/www/images/left_arrow.gif b/www/images/left_arrow.gif deleted file mode 100644 index ecfae80..0000000 Binary files a/www/images/left_arrow.gif and /dev/null differ diff --git a/www/images/logo.png b/www/images/logo.png deleted file mode 100644 index 3fb7ad6..0000000 Binary files a/www/images/logo.png and /dev/null differ diff --git a/www/images/logo.xcf b/www/images/logo.xcf deleted file mode 100644 index f78f35f..0000000 Binary files a/www/images/logo.xcf and /dev/null differ diff --git a/www/images/php5-power-micro.png b/www/images/php5-power-micro.png deleted file mode 100644 index 19c4953..0000000 Binary files a/www/images/php5-power-micro.png and /dev/null differ diff --git a/www/images/small_logo.png b/www/images/small_logo.png deleted file mode 100644 index 0b8517d..0000000 Binary files a/www/images/small_logo.png and /dev/null differ diff --git a/www/images/star_01.gif b/www/images/star_01.gif deleted file mode 100644 index e110f50..0000000 Binary files a/www/images/star_01.gif and /dev/null differ diff --git a/www/images/star_02.gif b/www/images/star_02.gif deleted file mode 100644 index 75de460..0000000 Binary files a/www/images/star_02.gif and /dev/null differ diff --git a/www/images/star_03.gif b/www/images/star_03.gif deleted file mode 100644 index b3733cd..0000000 Binary files a/www/images/star_03.gif and /dev/null differ diff --git a/www/images/star_04.gif b/www/images/star_04.gif deleted file mode 100644 index 3735525..0000000 Binary files a/www/images/star_04.gif and /dev/null differ diff --git a/www/images/star_05.gif b/www/images/star_05.gif deleted file mode 100644 index 4983634..0000000 Binary files a/www/images/star_05.gif and /dev/null differ diff --git a/www/images/title.gif b/www/images/title.gif deleted file mode 100644 index 9d2574e..0000000 Binary files a/www/images/title.gif and /dev/null differ diff --git a/www/images/v_bar.gif b/www/images/v_bar.gif deleted file mode 100644 index ccbc3fe..0000000 Binary files a/www/images/v_bar.gif and /dev/null differ diff --git a/www/images/xhtml10.png b/www/images/xhtml10.png deleted file mode 100644 index 30f1e8e..0000000 Binary files a/www/images/xhtml10.png and /dev/null differ diff --git a/www/index.php b/www/index.php deleted file mode 100644 index 059a9b1..0000000 --- a/www/index.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    Overview

    - -

    dompdf is an HTML to PDF converter. At its heart, dompdf is (mostly) CSS2.1 -compliant HTML layout and rendering engine written in PHP. It is a style-driven -renderer: it will download and read external stylesheets, inline style tags, and -the style attributes of individual HTML elements. It also supports most -presentational HTML attributes.

    - -

    PDF rendering is currently provided either by PDFLib (www.pdflib.com) or by a bundled version the -CPDF class, originally R&OS CPDF written by Wayne Munro but customized by -the dompdf team to improve performance and add features. In order to use PDFLib -with dompdf the PDFLib PHP extension is required (available from PDFLib). Using -PDFLib improves performance and reduces the memory requirements of dompdf -somewhat, while the CPDF class, though slightly slower, eliminates any -dependencies on external PDF libraries.

    - - diff --git a/www/jquery-1.4.2.js b/www/jquery-1.4.2.js deleted file mode 100644 index 48a88b8..0000000 --- a/www/jquery-1.4.2.js +++ /dev/null @@ -1,154 +0,0 @@ -/*! - * jQuery JavaScript Library v1.4.2 - * http://jquery.com/ - * - * Copyright 2010, John Resig - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * Includes Sizzle.js - * http://sizzlejs.com/ - * Copyright 2010, The Dojo Foundation - * Released under the MIT, BSD, and GPL Licenses. - * - * Date: Sat Feb 13 22:33:48 2010 -0500 - */ -(function(A,w){function ma(){if(!c.isReady){try{s.documentElement.doScroll("left")}catch(a){setTimeout(ma,1);return}c.ready()}}function Qa(a,b){b.src?c.ajax({url:b.src,async:false,dataType:"script"}):c.globalEval(b.text||b.textContent||b.innerHTML||"");b.parentNode&&b.parentNode.removeChild(b)}function X(a,b,d,f,e,j){var i=a.length;if(typeof b==="object"){for(var o in b)X(a,o,b[o],f,e,d);return a}if(d!==w){f=!j&&f&&c.isFunction(d);for(o=0;o)[^>]*$|^#([\w-]+)$/,Ua=/^.[^:#\[\.,]*$/,Va=/\S/, -Wa=/^(\s|\u00A0)+|(\s|\u00A0)+$/g,Xa=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,P=navigator.userAgent,xa=false,Q=[],L,$=Object.prototype.toString,aa=Object.prototype.hasOwnProperty,ba=Array.prototype.push,R=Array.prototype.slice,ya=Array.prototype.indexOf;c.fn=c.prototype={init:function(a,b){var d,f;if(!a)return this;if(a.nodeType){this.context=this[0]=a;this.length=1;return this}if(a==="body"&&!b){this.context=s;this[0]=s.body;this.selector="body";this.length=1;return this}if(typeof a==="string")if((d=Ta.exec(a))&& -(d[1]||!b))if(d[1]){f=b?b.ownerDocument||b:s;if(a=Xa.exec(a))if(c.isPlainObject(b)){a=[s.createElement(a[1])];c.fn.attr.call(a,b,true)}else a=[f.createElement(a[1])];else{a=sa([d[1]],[f]);a=(a.cacheable?a.fragment.cloneNode(true):a.fragment).childNodes}return c.merge(this,a)}else{if(b=s.getElementById(d[2])){if(b.id!==d[2])return T.find(a);this.length=1;this[0]=b}this.context=s;this.selector=a;return this}else if(!b&&/^\w+$/.test(a)){this.selector=a;this.context=s;a=s.getElementsByTagName(a);return c.merge(this, -a)}else return!b||b.jquery?(b||T).find(a):c(b).find(a);else if(c.isFunction(a))return T.ready(a);if(a.selector!==w){this.selector=a.selector;this.context=a.context}return c.makeArray(a,this)},selector:"",jquery:"1.4.2",length:0,size:function(){return this.length},toArray:function(){return R.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this.slice(a)[0]:this[a]},pushStack:function(a,b,d){var f=c();c.isArray(a)?ba.apply(f,a):c.merge(f,a);f.prevObject=this;f.context=this.context;if(b=== -"find")f.selector=this.selector+(this.selector?" ":"")+d;else if(b)f.selector=this.selector+"."+b+"("+d+")";return f},each:function(a,b){return c.each(this,a,b)},ready:function(a){c.bindReady();if(c.isReady)a.call(s,c);else Q&&Q.push(a);return this},eq:function(a){return a===-1?this.slice(a):this.slice(a,+a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(R.apply(this,arguments),"slice",R.call(arguments).join(","))},map:function(a){return this.pushStack(c.map(this, -function(b,d){return a.call(b,d,b)}))},end:function(){return this.prevObject||c(null)},push:ba,sort:[].sort,splice:[].splice};c.fn.init.prototype=c.fn;c.extend=c.fn.extend=function(){var a=arguments[0]||{},b=1,d=arguments.length,f=false,e,j,i,o;if(typeof a==="boolean"){f=a;a=arguments[1]||{};b=2}if(typeof a!=="object"&&!c.isFunction(a))a={};if(d===b){a=this;--b}for(;b
    a"; -var e=d.getElementsByTagName("*"),j=d.getElementsByTagName("a")[0];if(!(!e||!e.length||!j)){c.support={leadingWhitespace:d.firstChild.nodeType===3,tbody:!d.getElementsByTagName("tbody").length,htmlSerialize:!!d.getElementsByTagName("link").length,style:/red/.test(j.getAttribute("style")),hrefNormalized:j.getAttribute("href")==="/a",opacity:/^0.55$/.test(j.style.opacity),cssFloat:!!j.style.cssFloat,checkOn:d.getElementsByTagName("input")[0].value==="on",optSelected:s.createElement("select").appendChild(s.createElement("option")).selected, -parentNode:d.removeChild(d.appendChild(s.createElement("div"))).parentNode===null,deleteExpando:true,checkClone:false,scriptEval:false,noCloneEvent:true,boxModel:null};b.type="text/javascript";try{b.appendChild(s.createTextNode("window."+f+"=1;"))}catch(i){}a.insertBefore(b,a.firstChild);if(A[f]){c.support.scriptEval=true;delete A[f]}try{delete b.test}catch(o){c.support.deleteExpando=false}a.removeChild(b);if(d.attachEvent&&d.fireEvent){d.attachEvent("onclick",function k(){c.support.noCloneEvent= -false;d.detachEvent("onclick",k)});d.cloneNode(true).fireEvent("onclick")}d=s.createElement("div");d.innerHTML="";a=s.createDocumentFragment();a.appendChild(d.firstChild);c.support.checkClone=a.cloneNode(true).cloneNode(true).lastChild.checked;c(function(){var k=s.createElement("div");k.style.width=k.style.paddingLeft="1px";s.body.appendChild(k);c.boxModel=c.support.boxModel=k.offsetWidth===2;s.body.removeChild(k).style.display="none"});a=function(k){var n= -s.createElement("div");k="on"+k;var r=k in n;if(!r){n.setAttribute(k,"return;");r=typeof n[k]==="function"}return r};c.support.submitBubbles=a("submit");c.support.changeBubbles=a("change");a=b=d=e=j=null}})();c.props={"for":"htmlFor","class":"className",readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",colspan:"colSpan",tabindex:"tabIndex",usemap:"useMap",frameborder:"frameBorder"};var G="jQuery"+J(),Ya=0,za={};c.extend({cache:{},expando:G,noData:{embed:true,object:true, -applet:true},data:function(a,b,d){if(!(a.nodeName&&c.noData[a.nodeName.toLowerCase()])){a=a==A?za:a;var f=a[G],e=c.cache;if(!f&&typeof b==="string"&&d===w)return null;f||(f=++Ya);if(typeof b==="object"){a[G]=f;e[f]=c.extend(true,{},b)}else if(!e[f]){a[G]=f;e[f]={}}a=e[f];if(d!==w)a[b]=d;return typeof b==="string"?a[b]:a}},removeData:function(a,b){if(!(a.nodeName&&c.noData[a.nodeName.toLowerCase()])){a=a==A?za:a;var d=a[G],f=c.cache,e=f[d];if(b){if(e){delete e[b];c.isEmptyObject(e)&&c.removeData(a)}}else{if(c.support.deleteExpando)delete a[c.expando]; -else a.removeAttribute&&a.removeAttribute(c.expando);delete f[d]}}}});c.fn.extend({data:function(a,b){if(typeof a==="undefined"&&this.length)return c.data(this[0]);else if(typeof a==="object")return this.each(function(){c.data(this,a)});var d=a.split(".");d[1]=d[1]?"."+d[1]:"";if(b===w){var f=this.triggerHandler("getData"+d[1]+"!",[d[0]]);if(f===w&&this.length)f=c.data(this[0],a);return f===w&&d[1]?this.data(d[0]):f}else return this.trigger("setData"+d[1]+"!",[d[0],b]).each(function(){c.data(this, -a,b)})},removeData:function(a){return this.each(function(){c.removeData(this,a)})}});c.extend({queue:function(a,b,d){if(a){b=(b||"fx")+"queue";var f=c.data(a,b);if(!d)return f||[];if(!f||c.isArray(d))f=c.data(a,b,c.makeArray(d));else f.push(d);return f}},dequeue:function(a,b){b=b||"fx";var d=c.queue(a,b),f=d.shift();if(f==="inprogress")f=d.shift();if(f){b==="fx"&&d.unshift("inprogress");f.call(a,function(){c.dequeue(a,b)})}}});c.fn.extend({queue:function(a,b){if(typeof a!=="string"){b=a;a="fx"}if(b=== -w)return c.queue(this[0],a);return this.each(function(){var d=c.queue(this,a,b);a==="fx"&&d[0]!=="inprogress"&&c.dequeue(this,a)})},dequeue:function(a){return this.each(function(){c.dequeue(this,a)})},delay:function(a,b){a=c.fx?c.fx.speeds[a]||a:a;b=b||"fx";return this.queue(b,function(){var d=this;setTimeout(function(){c.dequeue(d,b)},a)})},clearQueue:function(a){return this.queue(a||"fx",[])}});var Aa=/[\n\t]/g,ca=/\s+/,Za=/\r/g,$a=/href|src|style/,ab=/(button|input)/i,bb=/(button|input|object|select|textarea)/i, -cb=/^(a|area)$/i,Ba=/radio|checkbox/;c.fn.extend({attr:function(a,b){return X(this,a,b,true,c.attr)},removeAttr:function(a){return this.each(function(){c.attr(this,a,"");this.nodeType===1&&this.removeAttribute(a)})},addClass:function(a){if(c.isFunction(a))return this.each(function(n){var r=c(this);r.addClass(a.call(this,n,r.attr("class")))});if(a&&typeof a==="string")for(var b=(a||"").split(ca),d=0,f=this.length;d-1)return true;return false},val:function(a){if(a===w){var b=this[0];if(b){if(c.nodeName(b,"option"))return(b.attributes.value||{}).specified?b.value:b.text;if(c.nodeName(b,"select")){var d=b.selectedIndex,f=[],e=b.options;b=b.type==="select-one";if(d<0)return null;var j=b?d:0;for(d=b?d+1:e.length;j=0;else if(c.nodeName(this,"select")){var u=c.makeArray(r);c("option",this).each(function(){this.selected= -c.inArray(c(this).val(),u)>=0});if(!u.length)this.selectedIndex=-1}else this.value=r}})}});c.extend({attrFn:{val:true,css:true,html:true,text:true,data:true,width:true,height:true,offset:true},attr:function(a,b,d,f){if(!a||a.nodeType===3||a.nodeType===8)return w;if(f&&b in c.attrFn)return c(a)[b](d);f=a.nodeType!==1||!c.isXMLDoc(a);var e=d!==w;b=f&&c.props[b]||b;if(a.nodeType===1){var j=$a.test(b);if(b in a&&f&&!j){if(e){b==="type"&&ab.test(a.nodeName)&&a.parentNode&&c.error("type property can't be changed"); -a[b]=d}if(c.nodeName(a,"form")&&a.getAttributeNode(b))return a.getAttributeNode(b).nodeValue;if(b==="tabIndex")return(b=a.getAttributeNode("tabIndex"))&&b.specified?b.value:bb.test(a.nodeName)||cb.test(a.nodeName)&&a.href?0:w;return a[b]}if(!c.support.style&&f&&b==="style"){if(e)a.style.cssText=""+d;return a.style.cssText}e&&a.setAttribute(b,""+d);a=!c.support.hrefNormalized&&f&&j?a.getAttribute(b,2):a.getAttribute(b);return a===null?w:a}return c.style(a,b,d)}});var O=/\.(.*)$/,db=function(a){return a.replace(/[^\w\s\.\|`]/g, -function(b){return"\\"+b})};c.event={add:function(a,b,d,f){if(!(a.nodeType===3||a.nodeType===8)){if(a.setInterval&&a!==A&&!a.frameElement)a=A;var e,j;if(d.handler){e=d;d=e.handler}if(!d.guid)d.guid=c.guid++;if(j=c.data(a)){var i=j.events=j.events||{},o=j.handle;if(!o)j.handle=o=function(){return typeof c!=="undefined"&&!c.event.triggered?c.event.handle.apply(o.elem,arguments):w};o.elem=a;b=b.split(" ");for(var k,n=0,r;k=b[n++];){j=e?c.extend({},e):{handler:d,data:f};if(k.indexOf(".")>-1){r=k.split("."); -k=r.shift();j.namespace=r.slice(0).sort().join(".")}else{r=[];j.namespace=""}j.type=k;j.guid=d.guid;var u=i[k],z=c.event.special[k]||{};if(!u){u=i[k]=[];if(!z.setup||z.setup.call(a,f,r,o)===false)if(a.addEventListener)a.addEventListener(k,o,false);else a.attachEvent&&a.attachEvent("on"+k,o)}if(z.add){z.add.call(a,j);if(!j.handler.guid)j.handler.guid=d.guid}u.push(j);c.event.global[k]=true}a=null}}},global:{},remove:function(a,b,d,f){if(!(a.nodeType===3||a.nodeType===8)){var e,j=0,i,o,k,n,r,u,z=c.data(a), -C=z&&z.events;if(z&&C){if(b&&b.type){d=b.handler;b=b.type}if(!b||typeof b==="string"&&b.charAt(0)==="."){b=b||"";for(e in C)c.event.remove(a,e+b)}else{for(b=b.split(" ");e=b[j++];){n=e;i=e.indexOf(".")<0;o=[];if(!i){o=e.split(".");e=o.shift();k=new RegExp("(^|\\.)"+c.map(o.slice(0).sort(),db).join("\\.(?:.*\\.)?")+"(\\.|$)")}if(r=C[e])if(d){n=c.event.special[e]||{};for(B=f||0;B=0){a.type= -e=e.slice(0,-1);a.exclusive=true}if(!d){a.stopPropagation();c.event.global[e]&&c.each(c.cache,function(){this.events&&this.events[e]&&c.event.trigger(a,b,this.handle.elem)})}if(!d||d.nodeType===3||d.nodeType===8)return w;a.result=w;a.target=d;b=c.makeArray(b);b.unshift(a)}a.currentTarget=d;(f=c.data(d,"handle"))&&f.apply(d,b);f=d.parentNode||d.ownerDocument;try{if(!(d&&d.nodeName&&c.noData[d.nodeName.toLowerCase()]))if(d["on"+e]&&d["on"+e].apply(d,b)===false)a.result=false}catch(j){}if(!a.isPropagationStopped()&& -f)c.event.trigger(a,b,f,true);else if(!a.isDefaultPrevented()){f=a.target;var i,o=c.nodeName(f,"a")&&e==="click",k=c.event.special[e]||{};if((!k._default||k._default.call(d,a)===false)&&!o&&!(f&&f.nodeName&&c.noData[f.nodeName.toLowerCase()])){try{if(f[e]){if(i=f["on"+e])f["on"+e]=null;c.event.triggered=true;f[e]()}}catch(n){}if(i)f["on"+e]=i;c.event.triggered=false}}},handle:function(a){var b,d,f,e;a=arguments[0]=c.event.fix(a||A.event);a.currentTarget=this;b=a.type.indexOf(".")<0&&!a.exclusive; -if(!b){d=a.type.split(".");a.type=d.shift();f=new RegExp("(^|\\.)"+d.slice(0).sort().join("\\.(?:.*\\.)?")+"(\\.|$)")}e=c.data(this,"events");d=e[a.type];if(e&&d){d=d.slice(0);e=0;for(var j=d.length;e-1?c.map(a.options,function(f){return f.selected}).join("-"):"";else if(a.nodeName.toLowerCase()==="select")d=a.selectedIndex;return d},fa=function(a,b){var d=a.target,f,e;if(!(!da.test(d.nodeName)||d.readOnly)){f=c.data(d,"_change_data");e=Fa(d);if(a.type!=="focusout"||d.type!=="radio")c.data(d,"_change_data", -e);if(!(f===w||e===f))if(f!=null||e){a.type="change";return c.event.trigger(a,b,d)}}};c.event.special.change={filters:{focusout:fa,click:function(a){var b=a.target,d=b.type;if(d==="radio"||d==="checkbox"||b.nodeName.toLowerCase()==="select")return fa.call(this,a)},keydown:function(a){var b=a.target,d=b.type;if(a.keyCode===13&&b.nodeName.toLowerCase()!=="textarea"||a.keyCode===32&&(d==="checkbox"||d==="radio")||d==="select-multiple")return fa.call(this,a)},beforeactivate:function(a){a=a.target;c.data(a, -"_change_data",Fa(a))}},setup:function(){if(this.type==="file")return false;for(var a in ea)c.event.add(this,a+".specialChange",ea[a]);return da.test(this.nodeName)},teardown:function(){c.event.remove(this,".specialChange");return da.test(this.nodeName)}};ea=c.event.special.change.filters}s.addEventListener&&c.each({focus:"focusin",blur:"focusout"},function(a,b){function d(f){f=c.event.fix(f);f.type=b;return c.event.handle.call(this,f)}c.event.special[b]={setup:function(){this.addEventListener(a, -d,true)},teardown:function(){this.removeEventListener(a,d,true)}}});c.each(["bind","one"],function(a,b){c.fn[b]=function(d,f,e){if(typeof d==="object"){for(var j in d)this[b](j,f,d[j],e);return this}if(c.isFunction(f)){e=f;f=w}var i=b==="one"?c.proxy(e,function(k){c(this).unbind(k,i);return e.apply(this,arguments)}):e;if(d==="unload"&&b!=="one")this.one(d,f,e);else{j=0;for(var o=this.length;j0){y=t;break}}t=t[g]}m[q]=y}}}var f=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g, -e=0,j=Object.prototype.toString,i=false,o=true;[0,0].sort(function(){o=false;return 0});var k=function(g,h,l,m){l=l||[];var q=h=h||s;if(h.nodeType!==1&&h.nodeType!==9)return[];if(!g||typeof g!=="string")return l;for(var p=[],v,t,y,S,H=true,M=x(h),I=g;(f.exec(""),v=f.exec(I))!==null;){I=v[3];p.push(v[1]);if(v[2]){S=v[3];break}}if(p.length>1&&r.exec(g))if(p.length===2&&n.relative[p[0]])t=ga(p[0]+p[1],h);else for(t=n.relative[p[0]]?[h]:k(p.shift(),h);p.length;){g=p.shift();if(n.relative[g])g+=p.shift(); -t=ga(g,t)}else{if(!m&&p.length>1&&h.nodeType===9&&!M&&n.match.ID.test(p[0])&&!n.match.ID.test(p[p.length-1])){v=k.find(p.shift(),h,M);h=v.expr?k.filter(v.expr,v.set)[0]:v.set[0]}if(h){v=m?{expr:p.pop(),set:z(m)}:k.find(p.pop(),p.length===1&&(p[0]==="~"||p[0]==="+")&&h.parentNode?h.parentNode:h,M);t=v.expr?k.filter(v.expr,v.set):v.set;if(p.length>0)y=z(t);else H=false;for(;p.length;){var D=p.pop();v=D;if(n.relative[D])v=p.pop();else D="";if(v==null)v=h;n.relative[D](y,v,M)}}else y=[]}y||(y=t);y||k.error(D|| -g);if(j.call(y)==="[object Array]")if(H)if(h&&h.nodeType===1)for(g=0;y[g]!=null;g++){if(y[g]&&(y[g]===true||y[g].nodeType===1&&E(h,y[g])))l.push(t[g])}else for(g=0;y[g]!=null;g++)y[g]&&y[g].nodeType===1&&l.push(t[g]);else l.push.apply(l,y);else z(y,l);if(S){k(S,q,l,m);k.uniqueSort(l)}return l};k.uniqueSort=function(g){if(B){i=o;g.sort(B);if(i)for(var h=1;h":function(g,h){var l=typeof h==="string";if(l&&!/\W/.test(h)){h=h.toLowerCase();for(var m=0,q=g.length;m=0))l||m.push(v);else if(l)h[p]=false;return false},ID:function(g){return g[1].replace(/\\/g,"")},TAG:function(g){return g[1].toLowerCase()}, -CHILD:function(g){if(g[1]==="nth"){var h=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(g[2]==="even"&&"2n"||g[2]==="odd"&&"2n+1"||!/\D/.test(g[2])&&"0n+"+g[2]||g[2]);g[2]=h[1]+(h[2]||1)-0;g[3]=h[3]-0}g[0]=e++;return g},ATTR:function(g,h,l,m,q,p){h=g[1].replace(/\\/g,"");if(!p&&n.attrMap[h])g[1]=n.attrMap[h];if(g[2]==="~=")g[4]=" "+g[4]+" ";return g},PSEUDO:function(g,h,l,m,q){if(g[1]==="not")if((f.exec(g[3])||"").length>1||/^\w/.test(g[3]))g[3]=k(g[3],null,null,h);else{g=k.filter(g[3],h,l,true^q);l||m.push.apply(m, -g);return false}else if(n.match.POS.test(g[0])||n.match.CHILD.test(g[0]))return true;return g},POS:function(g){g.unshift(true);return g}},filters:{enabled:function(g){return g.disabled===false&&g.type!=="hidden"},disabled:function(g){return g.disabled===true},checked:function(g){return g.checked===true},selected:function(g){return g.selected===true},parent:function(g){return!!g.firstChild},empty:function(g){return!g.firstChild},has:function(g,h,l){return!!k(l[3],g).length},header:function(g){return/h\d/i.test(g.nodeName)}, -text:function(g){return"text"===g.type},radio:function(g){return"radio"===g.type},checkbox:function(g){return"checkbox"===g.type},file:function(g){return"file"===g.type},password:function(g){return"password"===g.type},submit:function(g){return"submit"===g.type},image:function(g){return"image"===g.type},reset:function(g){return"reset"===g.type},button:function(g){return"button"===g.type||g.nodeName.toLowerCase()==="button"},input:function(g){return/input|select|textarea|button/i.test(g.nodeName)}}, -setFilters:{first:function(g,h){return h===0},last:function(g,h,l,m){return h===m.length-1},even:function(g,h){return h%2===0},odd:function(g,h){return h%2===1},lt:function(g,h,l){return hl[3]-0},nth:function(g,h,l){return l[3]-0===h},eq:function(g,h,l){return l[3]-0===h}},filter:{PSEUDO:function(g,h,l,m){var q=h[1],p=n.filters[q];if(p)return p(g,l,h,m);else if(q==="contains")return(g.textContent||g.innerText||a([g])||"").indexOf(h[3])>=0;else if(q==="not"){h= -h[3];l=0;for(m=h.length;l=0}},ID:function(g,h){return g.nodeType===1&&g.getAttribute("id")===h},TAG:function(g,h){return h==="*"&&g.nodeType===1||g.nodeName.toLowerCase()===h},CLASS:function(g,h){return(" "+(g.className||g.getAttribute("class"))+" ").indexOf(h)>-1},ATTR:function(g,h){var l=h[1];g=n.attrHandle[l]?n.attrHandle[l](g):g[l]!=null?g[l]:g.getAttribute(l);l=g+"";var m=h[2];h=h[4];return g==null?m==="!=":m=== -"="?l===h:m==="*="?l.indexOf(h)>=0:m==="~="?(" "+l+" ").indexOf(h)>=0:!h?l&&g!==false:m==="!="?l!==h:m==="^="?l.indexOf(h)===0:m==="$="?l.substr(l.length-h.length)===h:m==="|="?l===h||l.substr(0,h.length+1)===h+"-":false},POS:function(g,h,l,m){var q=n.setFilters[h[2]];if(q)return q(g,l,h,m)}}},r=n.match.POS;for(var u in n.match){n.match[u]=new RegExp(n.match[u].source+/(?![^\[]*\])(?![^\(]*\))/.source);n.leftMatch[u]=new RegExp(/(^(?:.|\r|\n)*?)/.source+n.match[u].source.replace(/\\(\d+)/g,function(g, -h){return"\\"+(h-0+1)}))}var z=function(g,h){g=Array.prototype.slice.call(g,0);if(h){h.push.apply(h,g);return h}return g};try{Array.prototype.slice.call(s.documentElement.childNodes,0)}catch(C){z=function(g,h){h=h||[];if(j.call(g)==="[object Array]")Array.prototype.push.apply(h,g);else if(typeof g.length==="number")for(var l=0,m=g.length;l";var l=s.documentElement;l.insertBefore(g,l.firstChild);if(s.getElementById(h)){n.find.ID=function(m,q,p){if(typeof q.getElementById!=="undefined"&&!p)return(q=q.getElementById(m[1]))?q.id===m[1]||typeof q.getAttributeNode!=="undefined"&& -q.getAttributeNode("id").nodeValue===m[1]?[q]:w:[]};n.filter.ID=function(m,q){var p=typeof m.getAttributeNode!=="undefined"&&m.getAttributeNode("id");return m.nodeType===1&&p&&p.nodeValue===q}}l.removeChild(g);l=g=null})();(function(){var g=s.createElement("div");g.appendChild(s.createComment(""));if(g.getElementsByTagName("*").length>0)n.find.TAG=function(h,l){l=l.getElementsByTagName(h[1]);if(h[1]==="*"){h=[];for(var m=0;l[m];m++)l[m].nodeType===1&&h.push(l[m]);l=h}return l};g.innerHTML=""; -if(g.firstChild&&typeof g.firstChild.getAttribute!=="undefined"&&g.firstChild.getAttribute("href")!=="#")n.attrHandle.href=function(h){return h.getAttribute("href",2)};g=null})();s.querySelectorAll&&function(){var g=k,h=s.createElement("div");h.innerHTML="

    ";if(!(h.querySelectorAll&&h.querySelectorAll(".TEST").length===0)){k=function(m,q,p,v){q=q||s;if(!v&&q.nodeType===9&&!x(q))try{return z(q.querySelectorAll(m),p)}catch(t){}return g(m,q,p,v)};for(var l in g)k[l]=g[l];h=null}}(); -(function(){var g=s.createElement("div");g.innerHTML="
    ";if(!(!g.getElementsByClassName||g.getElementsByClassName("e").length===0)){g.lastChild.className="e";if(g.getElementsByClassName("e").length!==1){n.order.splice(1,0,"CLASS");n.find.CLASS=function(h,l,m){if(typeof l.getElementsByClassName!=="undefined"&&!m)return l.getElementsByClassName(h[1])};g=null}}})();var E=s.compareDocumentPosition?function(g,h){return!!(g.compareDocumentPosition(h)&16)}: -function(g,h){return g!==h&&(g.contains?g.contains(h):true)},x=function(g){return(g=(g?g.ownerDocument||g:0).documentElement)?g.nodeName!=="HTML":false},ga=function(g,h){var l=[],m="",q;for(h=h.nodeType?[h]:h;q=n.match.PSEUDO.exec(g);){m+=q[0];g=g.replace(n.match.PSEUDO,"")}g=n.relative[g]?g+"*":g;q=0;for(var p=h.length;q=0===d})};c.fn.extend({find:function(a){for(var b=this.pushStack("","find",a),d=0,f=0,e=this.length;f0)for(var j=d;j0},closest:function(a,b){if(c.isArray(a)){var d=[],f=this[0],e,j= -{},i;if(f&&a.length){e=0;for(var o=a.length;e-1:c(f).is(e)){d.push({selector:i,elem:f});delete j[i]}}f=f.parentNode}}return d}var k=c.expr.match.POS.test(a)?c(a,b||this.context):null;return this.map(function(n,r){for(;r&&r.ownerDocument&&r!==b;){if(k?k.index(r)>-1:c(r).is(a))return r;r=r.parentNode}return null})},index:function(a){if(!a||typeof a=== -"string")return c.inArray(this[0],a?c(a):this.parent().children());return c.inArray(a.jquery?a[0]:a,this)},add:function(a,b){a=typeof a==="string"?c(a,b||this.context):c.makeArray(a);b=c.merge(this.get(),a);return this.pushStack(qa(a[0])||qa(b[0])?b:c.unique(b))},andSelf:function(){return this.add(this.prevObject)}});c.each({parent:function(a){return(a=a.parentNode)&&a.nodeType!==11?a:null},parents:function(a){return c.dir(a,"parentNode")},parentsUntil:function(a,b,d){return c.dir(a,"parentNode", -d)},next:function(a){return c.nth(a,2,"nextSibling")},prev:function(a){return c.nth(a,2,"previousSibling")},nextAll:function(a){return c.dir(a,"nextSibling")},prevAll:function(a){return c.dir(a,"previousSibling")},nextUntil:function(a,b,d){return c.dir(a,"nextSibling",d)},prevUntil:function(a,b,d){return c.dir(a,"previousSibling",d)},siblings:function(a){return c.sibling(a.parentNode.firstChild,a)},children:function(a){return c.sibling(a.firstChild)},contents:function(a){return c.nodeName(a,"iframe")? -a.contentDocument||a.contentWindow.document:c.makeArray(a.childNodes)}},function(a,b){c.fn[a]=function(d,f){var e=c.map(this,b,d);eb.test(a)||(f=d);if(f&&typeof f==="string")e=c.filter(f,e);e=this.length>1?c.unique(e):e;if((this.length>1||gb.test(f))&&fb.test(a))e=e.reverse();return this.pushStack(e,a,R.call(arguments).join(","))}});c.extend({filter:function(a,b,d){if(d)a=":not("+a+")";return c.find.matches(a,b)},dir:function(a,b,d){var f=[];for(a=a[b];a&&a.nodeType!==9&&(d===w||a.nodeType!==1||!c(a).is(d));){a.nodeType=== -1&&f.push(a);a=a[b]}return f},nth:function(a,b,d){b=b||1;for(var f=0;a;a=a[d])if(a.nodeType===1&&++f===b)break;return a},sibling:function(a,b){for(var d=[];a;a=a.nextSibling)a.nodeType===1&&a!==b&&d.push(a);return d}});var Ja=/ jQuery\d+="(?:\d+|null)"/g,V=/^\s+/,Ka=/(<([\w:]+)[^>]*?)\/>/g,hb=/^(?:area|br|col|embed|hr|img|input|link|meta|param)$/i,La=/<([\w:]+)/,ib=/"},F={option:[1,""],legend:[1,"
    ","
    "],thead:[1,"","
    "],tr:[2,"","
    "],td:[3,"","
    "],col:[2,"","
    "],area:[1,"",""],_default:[0,"",""]};F.optgroup=F.option;F.tbody=F.tfoot=F.colgroup=F.caption=F.thead;F.th=F.td;if(!c.support.htmlSerialize)F._default=[1,"div
    ","
    "];c.fn.extend({text:function(a){if(c.isFunction(a))return this.each(function(b){var d= -c(this);d.text(a.call(this,b,d.text()))});if(typeof a!=="object"&&a!==w)return this.empty().append((this[0]&&this[0].ownerDocument||s).createTextNode(a));return c.text(this)},wrapAll:function(a){if(c.isFunction(a))return this.each(function(d){c(this).wrapAll(a.call(this,d))});if(this[0]){var b=c(a,this[0].ownerDocument).eq(0).clone(true);this[0].parentNode&&b.insertBefore(this[0]);b.map(function(){for(var d=this;d.firstChild&&d.firstChild.nodeType===1;)d=d.firstChild;return d}).append(this)}return this}, -wrapInner:function(a){if(c.isFunction(a))return this.each(function(b){c(this).wrapInner(a.call(this,b))});return this.each(function(){var b=c(this),d=b.contents();d.length?d.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){c(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){c.nodeName(this,"body")||c(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.appendChild(a)})}, -prepend:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b,this)});else if(arguments.length){var a=c(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b, -this.nextSibling)});else if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,c(arguments[0]).toArray());return a}},remove:function(a,b){for(var d=0,f;(f=this[d])!=null;d++)if(!a||c.filter(a,[f]).length){if(!b&&f.nodeType===1){c.cleanData(f.getElementsByTagName("*"));c.cleanData([f])}f.parentNode&&f.parentNode.removeChild(f)}return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++)for(b.nodeType===1&&c.cleanData(b.getElementsByTagName("*"));b.firstChild;)b.removeChild(b.firstChild); -return this},clone:function(a){var b=this.map(function(){if(!c.support.noCloneEvent&&!c.isXMLDoc(this)){var d=this.outerHTML,f=this.ownerDocument;if(!d){d=f.createElement("div");d.appendChild(this.cloneNode(true));d=d.innerHTML}return c.clean([d.replace(Ja,"").replace(/=([^="'>\s]+\/)>/g,'="$1">').replace(V,"")],f)[0]}else return this.cloneNode(true)});if(a===true){ra(this,b);ra(this.find("*"),b.find("*"))}return b},html:function(a){if(a===w)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(Ja, -""):null;else if(typeof a==="string"&&!ta.test(a)&&(c.support.leadingWhitespace||!V.test(a))&&!F[(La.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Ka,Ma);try{for(var b=0,d=this.length;b0||e.cacheable||this.length>1?k.cloneNode(true):k)}o.length&&c.each(o,Qa)}return this}});c.fragments={};c.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){c.fn[a]=function(d){var f=[];d=c(d);var e=this.length===1&&this[0].parentNode;if(e&&e.nodeType===11&&e.childNodes.length===1&&d.length===1){d[b](this[0]); -return this}else{e=0;for(var j=d.length;e0?this.clone(true):this).get();c.fn[b].apply(c(d[e]),i);f=f.concat(i)}return this.pushStack(f,a,d.selector)}}});c.extend({clean:function(a,b,d,f){b=b||s;if(typeof b.createElement==="undefined")b=b.ownerDocument||b[0]&&b[0].ownerDocument||s;for(var e=[],j=0,i;(i=a[j])!=null;j++){if(typeof i==="number")i+="";if(i){if(typeof i==="string"&&!jb.test(i))i=b.createTextNode(i);else if(typeof i==="string"){i=i.replace(Ka,Ma);var o=(La.exec(i)||["", -""])[1].toLowerCase(),k=F[o]||F._default,n=k[0],r=b.createElement("div");for(r.innerHTML=k[1]+i+k[2];n--;)r=r.lastChild;if(!c.support.tbody){n=ib.test(i);o=o==="table"&&!n?r.firstChild&&r.firstChild.childNodes:k[1]===""&&!n?r.childNodes:[];for(k=o.length-1;k>=0;--k)c.nodeName(o[k],"tbody")&&!o[k].childNodes.length&&o[k].parentNode.removeChild(o[k])}!c.support.leadingWhitespace&&V.test(i)&&r.insertBefore(b.createTextNode(V.exec(i)[0]),r.firstChild);i=r.childNodes}if(i.nodeType)e.push(i);else e= -c.merge(e,i)}}if(d)for(j=0;e[j];j++)if(f&&c.nodeName(e[j],"script")&&(!e[j].type||e[j].type.toLowerCase()==="text/javascript"))f.push(e[j].parentNode?e[j].parentNode.removeChild(e[j]):e[j]);else{e[j].nodeType===1&&e.splice.apply(e,[j+1,0].concat(c.makeArray(e[j].getElementsByTagName("script"))));d.appendChild(e[j])}return e},cleanData:function(a){for(var b,d,f=c.cache,e=c.event.special,j=c.support.deleteExpando,i=0,o;(o=a[i])!=null;i++)if(d=o[c.expando]){b=f[d];if(b.events)for(var k in b.events)e[k]? -c.event.remove(o,k):Ca(o,k,b.handle);if(j)delete o[c.expando];else o.removeAttribute&&o.removeAttribute(c.expando);delete f[d]}}});var kb=/z-?index|font-?weight|opacity|zoom|line-?height/i,Na=/alpha\([^)]*\)/,Oa=/opacity=([^)]*)/,ha=/float/i,ia=/-([a-z])/ig,lb=/([A-Z])/g,mb=/^-?\d+(?:px)?$/i,nb=/^-?\d/,ob={position:"absolute",visibility:"hidden",display:"block"},pb=["Left","Right"],qb=["Top","Bottom"],rb=s.defaultView&&s.defaultView.getComputedStyle,Pa=c.support.cssFloat?"cssFloat":"styleFloat",ja= -function(a,b){return b.toUpperCase()};c.fn.css=function(a,b){return X(this,a,b,true,function(d,f,e){if(e===w)return c.curCSS(d,f);if(typeof e==="number"&&!kb.test(f))e+="px";c.style(d,f,e)})};c.extend({style:function(a,b,d){if(!a||a.nodeType===3||a.nodeType===8)return w;if((b==="width"||b==="height")&&parseFloat(d)<0)d=w;var f=a.style||a,e=d!==w;if(!c.support.opacity&&b==="opacity"){if(e){f.zoom=1;b=parseInt(d,10)+""==="NaN"?"":"alpha(opacity="+d*100+")";a=f.filter||c.curCSS(a,"filter")||"";f.filter= -Na.test(a)?a.replace(Na,b):b}return f.filter&&f.filter.indexOf("opacity=")>=0?parseFloat(Oa.exec(f.filter)[1])/100+"":""}if(ha.test(b))b=Pa;b=b.replace(ia,ja);if(e)f[b]=d;return f[b]},css:function(a,b,d,f){if(b==="width"||b==="height"){var e,j=b==="width"?pb:qb;function i(){e=b==="width"?a.offsetWidth:a.offsetHeight;f!=="border"&&c.each(j,function(){f||(e-=parseFloat(c.curCSS(a,"padding"+this,true))||0);if(f==="margin")e+=parseFloat(c.curCSS(a,"margin"+this,true))||0;else e-=parseFloat(c.curCSS(a, -"border"+this+"Width",true))||0})}a.offsetWidth!==0?i():c.swap(a,ob,i);return Math.max(0,Math.round(e))}return c.curCSS(a,b,d)},curCSS:function(a,b,d){var f,e=a.style;if(!c.support.opacity&&b==="opacity"&&a.currentStyle){f=Oa.test(a.currentStyle.filter||"")?parseFloat(RegExp.$1)/100+"":"";return f===""?"1":f}if(ha.test(b))b=Pa;if(!d&&e&&e[b])f=e[b];else if(rb){if(ha.test(b))b="float";b=b.replace(lb,"-$1").toLowerCase();e=a.ownerDocument.defaultView;if(!e)return null;if(a=e.getComputedStyle(a,null))f= -a.getPropertyValue(b);if(b==="opacity"&&f==="")f="1"}else if(a.currentStyle){d=b.replace(ia,ja);f=a.currentStyle[b]||a.currentStyle[d];if(!mb.test(f)&&nb.test(f)){b=e.left;var j=a.runtimeStyle.left;a.runtimeStyle.left=a.currentStyle.left;e.left=d==="fontSize"?"1em":f||0;f=e.pixelLeft+"px";e.left=b;a.runtimeStyle.left=j}}return f},swap:function(a,b,d){var f={};for(var e in b){f[e]=a.style[e];a.style[e]=b[e]}d.call(a);for(e in b)a.style[e]=f[e]}});if(c.expr&&c.expr.filters){c.expr.filters.hidden=function(a){var b= -a.offsetWidth,d=a.offsetHeight,f=a.nodeName.toLowerCase()==="tr";return b===0&&d===0&&!f?true:b>0&&d>0&&!f?false:c.curCSS(a,"display")==="none"};c.expr.filters.visible=function(a){return!c.expr.filters.hidden(a)}}var sb=J(),tb=//gi,ub=/select|textarea/i,vb=/color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week/i,N=/=\?(&|$)/,ka=/\?/,wb=/(\?|&)_=.*?(&|$)/,xb=/^(\w+:)?\/\/([^\/?#]+)/,yb=/%20/g,zb=c.fn.load;c.fn.extend({load:function(a,b,d){if(typeof a!== -"string")return zb.call(this,a);else if(!this.length)return this;var f=a.indexOf(" ");if(f>=0){var e=a.slice(f,a.length);a=a.slice(0,f)}f="GET";if(b)if(c.isFunction(b)){d=b;b=null}else if(typeof b==="object"){b=c.param(b,c.ajaxSettings.traditional);f="POST"}var j=this;c.ajax({url:a,type:f,dataType:"html",data:b,complete:function(i,o){if(o==="success"||o==="notmodified")j.html(e?c("
    ").append(i.responseText.replace(tb,"")).find(e):i.responseText);d&&j.each(d,[i.responseText,o,i])}});return this}, -serialize:function(){return c.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?c.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||ub.test(this.nodeName)||vb.test(this.type))}).map(function(a,b){a=c(this).val();return a==null?null:c.isArray(a)?c.map(a,function(d){return{name:b.name,value:d}}):{name:b.name,value:a}}).get()}});c.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "), -function(a,b){c.fn[b]=function(d){return this.bind(b,d)}});c.extend({get:function(a,b,d,f){if(c.isFunction(b)){f=f||d;d=b;b=null}return c.ajax({type:"GET",url:a,data:b,success:d,dataType:f})},getScript:function(a,b){return c.get(a,null,b,"script")},getJSON:function(a,b,d){return c.get(a,b,d,"json")},post:function(a,b,d,f){if(c.isFunction(b)){f=f||d;d=b;b={}}return c.ajax({type:"POST",url:a,data:b,success:d,dataType:f})},ajaxSetup:function(a){c.extend(c.ajaxSettings,a)},ajaxSettings:{url:location.href, -global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:A.XMLHttpRequest&&(A.location.protocol!=="file:"||!A.ActiveXObject)?function(){return new A.XMLHttpRequest}:function(){try{return new A.ActiveXObject("Microsoft.XMLHTTP")}catch(a){}},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},etag:{},ajax:function(a){function b(){e.success&& -e.success.call(k,o,i,x);e.global&&f("ajaxSuccess",[x,e])}function d(){e.complete&&e.complete.call(k,x,i);e.global&&f("ajaxComplete",[x,e]);e.global&&!--c.active&&c.event.trigger("ajaxStop")}function f(q,p){(e.context?c(e.context):c.event).trigger(q,p)}var e=c.extend(true,{},c.ajaxSettings,a),j,i,o,k=a&&a.context||e,n=e.type.toUpperCase();if(e.data&&e.processData&&typeof e.data!=="string")e.data=c.param(e.data,e.traditional);if(e.dataType==="jsonp"){if(n==="GET")N.test(e.url)||(e.url+=(ka.test(e.url)? -"&":"?")+(e.jsonp||"callback")+"=?");else if(!e.data||!N.test(e.data))e.data=(e.data?e.data+"&":"")+(e.jsonp||"callback")+"=?";e.dataType="json"}if(e.dataType==="json"&&(e.data&&N.test(e.data)||N.test(e.url))){j=e.jsonpCallback||"jsonp"+sb++;if(e.data)e.data=(e.data+"").replace(N,"="+j+"$1");e.url=e.url.replace(N,"="+j+"$1");e.dataType="script";A[j]=A[j]||function(q){o=q;b();d();A[j]=w;try{delete A[j]}catch(p){}z&&z.removeChild(C)}}if(e.dataType==="script"&&e.cache===null)e.cache=false;if(e.cache=== -false&&n==="GET"){var r=J(),u=e.url.replace(wb,"$1_="+r+"$2");e.url=u+(u===e.url?(ka.test(e.url)?"&":"?")+"_="+r:"")}if(e.data&&n==="GET")e.url+=(ka.test(e.url)?"&":"?")+e.data;e.global&&!c.active++&&c.event.trigger("ajaxStart");r=(r=xb.exec(e.url))&&(r[1]&&r[1]!==location.protocol||r[2]!==location.host);if(e.dataType==="script"&&n==="GET"&&r){var z=s.getElementsByTagName("head")[0]||s.documentElement,C=s.createElement("script");C.src=e.url;if(e.scriptCharset)C.charset=e.scriptCharset;if(!j){var B= -false;C.onload=C.onreadystatechange=function(){if(!B&&(!this.readyState||this.readyState==="loaded"||this.readyState==="complete")){B=true;b();d();C.onload=C.onreadystatechange=null;z&&C.parentNode&&z.removeChild(C)}}}z.insertBefore(C,z.firstChild);return w}var E=false,x=e.xhr();if(x){e.username?x.open(n,e.url,e.async,e.username,e.password):x.open(n,e.url,e.async);try{if(e.data||a&&a.contentType)x.setRequestHeader("Content-Type",e.contentType);if(e.ifModified){c.lastModified[e.url]&&x.setRequestHeader("If-Modified-Since", -c.lastModified[e.url]);c.etag[e.url]&&x.setRequestHeader("If-None-Match",c.etag[e.url])}r||x.setRequestHeader("X-Requested-With","XMLHttpRequest");x.setRequestHeader("Accept",e.dataType&&e.accepts[e.dataType]?e.accepts[e.dataType]+", */*":e.accepts._default)}catch(ga){}if(e.beforeSend&&e.beforeSend.call(k,x,e)===false){e.global&&!--c.active&&c.event.trigger("ajaxStop");x.abort();return false}e.global&&f("ajaxSend",[x,e]);var g=x.onreadystatechange=function(q){if(!x||x.readyState===0||q==="abort"){E|| -d();E=true;if(x)x.onreadystatechange=c.noop}else if(!E&&x&&(x.readyState===4||q==="timeout")){E=true;x.onreadystatechange=c.noop;i=q==="timeout"?"timeout":!c.httpSuccess(x)?"error":e.ifModified&&c.httpNotModified(x,e.url)?"notmodified":"success";var p;if(i==="success")try{o=c.httpData(x,e.dataType,e)}catch(v){i="parsererror";p=v}if(i==="success"||i==="notmodified")j||b();else c.handleError(e,x,i,p);d();q==="timeout"&&x.abort();if(e.async)x=null}};try{var h=x.abort;x.abort=function(){x&&h.call(x); -g("abort")}}catch(l){}e.async&&e.timeout>0&&setTimeout(function(){x&&!E&&g("timeout")},e.timeout);try{x.send(n==="POST"||n==="PUT"||n==="DELETE"?e.data:null)}catch(m){c.handleError(e,x,null,m);d()}e.async||g();return x}},handleError:function(a,b,d,f){if(a.error)a.error.call(a.context||a,b,d,f);if(a.global)(a.context?c(a.context):c.event).trigger("ajaxError",[b,a,f])},active:0,httpSuccess:function(a){try{return!a.status&&location.protocol==="file:"||a.status>=200&&a.status<300||a.status===304||a.status=== -1223||a.status===0}catch(b){}return false},httpNotModified:function(a,b){var d=a.getResponseHeader("Last-Modified"),f=a.getResponseHeader("Etag");if(d)c.lastModified[b]=d;if(f)c.etag[b]=f;return a.status===304||a.status===0},httpData:function(a,b,d){var f=a.getResponseHeader("content-type")||"",e=b==="xml"||!b&&f.indexOf("xml")>=0;a=e?a.responseXML:a.responseText;e&&a.documentElement.nodeName==="parsererror"&&c.error("parsererror");if(d&&d.dataFilter)a=d.dataFilter(a,b);if(typeof a==="string")if(b=== -"json"||!b&&f.indexOf("json")>=0)a=c.parseJSON(a);else if(b==="script"||!b&&f.indexOf("javascript")>=0)c.globalEval(a);return a},param:function(a,b){function d(i,o){if(c.isArray(o))c.each(o,function(k,n){b||/\[\]$/.test(i)?f(i,n):d(i+"["+(typeof n==="object"||c.isArray(n)?k:"")+"]",n)});else!b&&o!=null&&typeof o==="object"?c.each(o,function(k,n){d(i+"["+k+"]",n)}):f(i,o)}function f(i,o){o=c.isFunction(o)?o():o;e[e.length]=encodeURIComponent(i)+"="+encodeURIComponent(o)}var e=[];if(b===w)b=c.ajaxSettings.traditional; -if(c.isArray(a)||a.jquery)c.each(a,function(){f(this.name,this.value)});else for(var j in a)d(j,a[j]);return e.join("&").replace(yb,"+")}});var la={},Ab=/toggle|show|hide/,Bb=/^([+-]=)?([\d+-.]+)(.*)$/,W,va=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];c.fn.extend({show:function(a,b){if(a||a===0)return this.animate(K("show",3),a,b);else{a=0;for(b=this.length;a").appendTo("body");f=e.css("display");if(f==="none")f="block";e.remove();la[d]=f}c.data(this[a],"olddisplay",f)}}a=0;for(b=this.length;a=0;f--)if(d[f].elem===this){b&&d[f](true);d.splice(f,1)}});b||this.dequeue();return this}});c.each({slideDown:K("show",1),slideUp:K("hide",1),slideToggle:K("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(a,b){c.fn[a]=function(d,f){return this.animate(b,d,f)}});c.extend({speed:function(a,b,d){var f=a&&typeof a==="object"?a:{complete:d||!d&&b||c.isFunction(a)&&a,duration:a,easing:d&&b||b&&!c.isFunction(b)&&b};f.duration=c.fx.off?0:typeof f.duration=== -"number"?f.duration:c.fx.speeds[f.duration]||c.fx.speeds._default;f.old=f.complete;f.complete=function(){f.queue!==false&&c(this).dequeue();c.isFunction(f.old)&&f.old.call(this)};return f},easing:{linear:function(a,b,d,f){return d+f*a},swing:function(a,b,d,f){return(-Math.cos(a*Math.PI)/2+0.5)*f+d}},timers:[],fx:function(a,b,d){this.options=b;this.elem=a;this.prop=d;if(!b.orig)b.orig={}}});c.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this);(c.fx.step[this.prop]|| -c.fx.step._default)(this);if((this.prop==="height"||this.prop==="width")&&this.elem.style)this.elem.style.display="block"},cur:function(a){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];return(a=parseFloat(c.css(this.elem,this.prop,a)))&&a>-10000?a:parseFloat(c.curCSS(this.elem,this.prop))||0},custom:function(a,b,d){function f(j){return e.step(j)}this.startTime=J();this.start=a;this.end=b;this.unit=d||this.unit||"px";this.now=this.start; -this.pos=this.state=0;var e=this;f.elem=this.elem;if(f()&&c.timers.push(f)&&!W)W=setInterval(c.fx.tick,13)},show:function(){this.options.orig[this.prop]=c.style(this.elem,this.prop);this.options.show=true;this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur());c(this.elem).show()},hide:function(){this.options.orig[this.prop]=c.style(this.elem,this.prop);this.options.hide=true;this.custom(this.cur(),0)},step:function(a){var b=J(),d=true;if(a||b>=this.options.duration+this.startTime){this.now= -this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;for(var f in this.options.curAnim)if(this.options.curAnim[f]!==true)d=false;if(d){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;a=c.data(this.elem,"olddisplay");this.elem.style.display=a?a:this.options.display;if(c.css(this.elem,"display")==="none")this.elem.style.display="block"}this.options.hide&&c(this.elem).hide();if(this.options.hide||this.options.show)for(var e in this.options.curAnim)c.style(this.elem, -e,this.options.orig[e]);this.options.complete.call(this.elem)}return false}else{e=b-this.startTime;this.state=e/this.options.duration;a=this.options.easing||(c.easing.swing?"swing":"linear");this.pos=c.easing[this.options.specialEasing&&this.options.specialEasing[this.prop]||a](this.state,e,0,1,this.options.duration);this.now=this.start+(this.end-this.start)*this.pos;this.update()}return true}};c.extend(c.fx,{tick:function(){for(var a=c.timers,b=0;b
    "; -a.insertBefore(b,a.firstChild);d=b.firstChild;f=d.firstChild;e=d.nextSibling.firstChild.firstChild;this.doesNotAddBorder=f.offsetTop!==5;this.doesAddBorderForTableAndCells=e.offsetTop===5;f.style.position="fixed";f.style.top="20px";this.supportsFixedPosition=f.offsetTop===20||f.offsetTop===15;f.style.position=f.style.top="";d.style.overflow="hidden";d.style.position="relative";this.subtractsBorderForOverflowNotVisible=f.offsetTop===-5;this.doesNotIncludeMarginInBodyOffset=a.offsetTop!==j;a.removeChild(b); -c.offset.initialize=c.noop},bodyOffset:function(a){var b=a.offsetTop,d=a.offsetLeft;c.offset.initialize();if(c.offset.doesNotIncludeMarginInBodyOffset){b+=parseFloat(c.curCSS(a,"marginTop",true))||0;d+=parseFloat(c.curCSS(a,"marginLeft",true))||0}return{top:b,left:d}},setOffset:function(a,b,d){if(/static/.test(c.curCSS(a,"position")))a.style.position="relative";var f=c(a),e=f.offset(),j=parseInt(c.curCSS(a,"top",true),10)||0,i=parseInt(c.curCSS(a,"left",true),10)||0;if(c.isFunction(b))b=b.call(a, -d,e);d={top:b.top-e.top+j,left:b.left-e.left+i};"using"in b?b.using.call(a,d):f.css(d)}};c.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),d=this.offset(),f=/^body|html$/i.test(b[0].nodeName)?{top:0,left:0}:b.offset();d.top-=parseFloat(c.curCSS(a,"marginTop",true))||0;d.left-=parseFloat(c.curCSS(a,"marginLeft",true))||0;f.top+=parseFloat(c.curCSS(b[0],"borderTopWidth",true))||0;f.left+=parseFloat(c.curCSS(b[0],"borderLeftWidth",true))||0;return{top:d.top- -f.top,left:d.left-f.left}},offsetParent:function(){return this.map(function(){for(var a=this.offsetParent||s.body;a&&!/^body|html$/i.test(a.nodeName)&&c.css(a,"position")==="static";)a=a.offsetParent;return a})}});c.each(["Left","Top"],function(a,b){var d="scroll"+b;c.fn[d]=function(f){var e=this[0],j;if(!e)return null;if(f!==w)return this.each(function(){if(j=wa(this))j.scrollTo(!a?f:c(j).scrollLeft(),a?f:c(j).scrollTop());else this[d]=f});else return(j=wa(e))?"pageXOffset"in j?j[a?"pageYOffset": -"pageXOffset"]:c.support.boxModel&&j.document.documentElement[d]||j.document.body[d]:e[d]}});c.each(["Height","Width"],function(a,b){var d=b.toLowerCase();c.fn["inner"+b]=function(){return this[0]?c.css(this[0],d,false,"padding"):null};c.fn["outer"+b]=function(f){return this[0]?c.css(this[0],d,false,f?"margin":"border"):null};c.fn[d]=function(f){var e=this[0];if(!e)return f==null?null:this;if(c.isFunction(f))return this.each(function(j){var i=c(this);i[d](f.call(this,j,i[d]()))});return"scrollTo"in -e&&e.document?e.document.compatMode==="CSS1Compat"&&e.document.documentElement["client"+b]||e.document.body["client"+b]:e.nodeType===9?Math.max(e.documentElement["client"+b],e.body["scroll"+b],e.documentElement["scroll"+b],e.body["offset"+b],e.documentElement["offset"+b]):f===w?c.css(e,d):this.css(d,typeof f==="string"?f:f+"px")}});A.jQuery=A.$=c})(window); \ No newline at end of file diff --git a/www/setup.php b/www/setup.php deleted file mode 100644 index ed0a138..0000000 --- a/www/setup.php +++ /dev/null @@ -1,311 +0,0 @@ - - - - - -

    Setup

    - - - -

    System Configuration

    - - array( - "required" => "5.0", - "value" => phpversion(), - "result" => version_compare(phpversion(), "5.0"), - ), - "DOMDocument extension" => array( - "required" => true, - "value" => phpversion("DOM"), - "result" => class_exists("DOMDocument"), - ), - "PCRE" => array( - "required" => true, - "value" => phpversion("pcre"), - "result" => function_exists("preg_match") && @preg_match("/./u", "a"), - "failure" => "PCRE is required with Unicode support (the \"u\" modifier)", - ), - "Zlib" => array( - "required" => true, - "value" => phpversion("zlib"), - "result" => function_exists("gzcompress"), - "fallback" => "Recommended to compress PDF documents", - ), - "MBString extension" => array( - "required" => true, - "value" => phpversion("mbstring"), - "result" => function_exists("mb_send_mail"), // Should never be reimplemented in dompdf - "fallback" => "Recommended, will use fallback functions", - ), - "GD" => array( - "required" => true, - "value" => phpversion("gd"), - "result" => function_exists("imagecreate"), - "fallback" => "Required if you have images in your documents", - ), - "opcache" => array( - "required" => "For better performances", - "value" => null, - "result" => false, - "fallback" => "Recommended for better performances", - ), - "GMagick or IMagick" => array( - "required" => "Better with transparent PNG images", - "value" => null, - "result" => extension_loaded("gmagick") || extension_loaded("imagick"), - "fallback" => "Recommended for better performances", - ), -); - -if (($xc = extension_loaded("xcache")) || ($apc = extension_loaded("apc")) || ($zop = extension_loaded("Zend OPcache")) || ($op = extension_loaded("opcache"))) { - $server_configs["opcache"]["result"] = true; - $server_configs["opcache"]["value"] = ( - $xc ? "XCache ".phpversion("xcache") : ( - $apc ? "APC ".phpversion("apc") : ( - $zop ? "Zend OPCache ".phpversion("Zend OPcache") : "PHP OPCache ".phpversion("opcache") - ) - ) - ); -} -if (($gm = extension_loaded("gmagick")) || ($im = extension_loaded("imagick"))) { - $server_configs["GMagick or IMagick"]["value"] = ($im ? "IMagick ".phpversion("imagick") : "GMagick ".phpversion("gmagick")); -} - -?> - - - - - - - - - $server_config) { ?> - - - - - - - -
    RequiredPresent
    "> - No. ".$server_config["fallback"].""; - } - if (isset($server_config["failure"])) { - echo "
    ".$server_config["failure"]."
    "; - } - } - ?> -
    - -

    DOMPDF Configuration

    - - array( - "desc" => "Root directory of DOMPDF", - "success" => "read", - ), - "DOMPDF_INC_DIR" => array( - "desc" => "Include directory of DOMPDF", - "success" => "read", - ), - "DOMPDF_LIB_DIR" => array( - "desc" => "Third-party libraries directory of DOMPDF", - "success" => "read", - ), - "DOMPDF_FONT_DIR" => array( - "desc" => "Directory containing fonts loaded into DOMPDF", - "success" => "write", - ), - "DOMPDF_FONT_CACHE" => array( - "desc" => "Font metrics cache (used mainly by CPDF)", - "success" => "write", - ), - "DOMPDF_TEMP_DIR" => array( - "desc" => "Temporary folder", - "success" => "write", - ), - "DOMPDF_CHROOT" => array( - "desc" => "Restricted path", - "success" => "read", - ), - "DOMPDF_UNICODE_ENABLED" => array( - "desc" => "Unicode support (with supporting fonts)", - ), - "DOMPDF_ENABLE_FONTSUBSETTING" => array( - "desc" => "Enable font subsetting, will make smaller documents when using Unicode fonts", - ), - "DOMPDF_PDF_BACKEND" => array( - "desc" => "Backend library that renders the output (PDF, image)", - "success" => "backend", - ), - "DOMPDF_DEFAULT_MEDIA_TYPE" => array( - "desc" => "Default media type (print, screen, ...)", - ), - "DOMPDF_DEFAULT_PAPER_SIZE" => array( - "desc" => "Default paper size (A4, letter, ...)", - ), - "DOMPDF_DEFAULT_FONT" => array( - "desc" => "Default font, used if the specified font in the CSS stylesheet was not found", - ), - "DOMPDF_DPI" => array( - "desc" => "DPI scale of the document", - ), - "DOMPDF_ENABLE_PHP" => array( - "desc" => "Inline PHP support", - ), - "DOMPDF_ENABLE_JAVASCRIPT" => array( - "desc" => "Inline JavaScript support", - ), - "DOMPDF_ENABLE_REMOTE" => array( - "desc" => "Allow remote stylesheets and images", - "success" => "remote", - ), - "DOMPDF_ENABLE_CSS_FLOAT" => array( - "desc" => "Enable CSS float support (experimental)", - ), - "DOMPDF_ENABLE_HTML5PARSER" => array( - "desc" => "Enable the HTML5 parser (experimental)", - ), - "DEBUGPNG" => array( - "desc" => "Debug PNG images", - ), - "DEBUGKEEPTEMP" => array( - "desc" => "Keep temporary image files", - ), - "DEBUGCSS" => array( - "desc" => "Debug CSS", - ), - "DEBUG_LAYOUT" => array( - "desc" => "Debug layout", - ), - "DEBUG_LAYOUT_LINES" => array( - "desc" => "Debug text lines layout", - ), - "DEBUG_LAYOUT_BLOCKS" => array( - "desc" => "Debug block elements layout", - ), - "DEBUG_LAYOUT_INLINE" => array( - "desc" => "Debug inline elements layout", - ), - "DEBUG_LAYOUT_PADDINGBOX" => array( - "desc" => "Debug padding boxes layout", - ), - "DOMPDF_LOG_OUTPUT_FILE" => array( - "desc" => "The file in which dompdf will write warnings and messages", - "success" => "write", - ), - "DOMPDF_FONT_HEIGHT_RATIO" => array( - "desc" => "The line height ratio to apply to get a render like web browsers", - ), - "DOMPDF_ENABLE_AUTOLOAD" => array( - "desc" => "Enable the DOMPDF autoloader", - ), - "DOMPDF_AUTOLOAD_PREPEND" => array( - "desc" => "Prepend the dompdf autoload function to the SPL autoload functions already registered instead of appending it", - ), - "DOMPDF_ADMIN_USERNAME" => array( - "desc" => "The username required to access restricted sections", - "secret" => true, - ), - "DOMPDF_ADMIN_PASSWORD" => array( - "desc" => "The password required to access restricted sections", - "secret" => true, - "success" => "auth", - ), -); -?> - - - - - - - - - - $value) { ?> - - - - - - - - -
    Config nameValueDescriptionStatus
    - - >
    - - - - - - \ No newline at end of file diff --git a/www/style.css b/www/style.css deleted file mode 100644 index ea6e570..0000000 --- a/www/style.css +++ /dev/null @@ -1,255 +0,0 @@ -body, select { - color: #7d7a7a; - font-family: 'trebuchet ms', verdana, sans-serif; - font-size: 13px; -} - -a:link, a:visited, a:active { - color: #5F83BA; - text-decoration: none; -} - -a:hover { - color: #5f83ba; - text-decoration: underline; -} - -img { - border: none; -} - -pre, -code { - font-size: 0.8em; - font-family: "lucida console", monospace; -} - -pre { - background-color: #f8f8f8; - padding: 10px; -} - -select { - font-weight: bold; -} - -h2 { - margin: 0.3em 0; -} - -.bar { - background-image: url('images/h_bar.gif'); - background-repeat: repeat-x; - background-position: bottom right; -} - -#header { - height: 50px; - line-height: 30px; -} - -#footer { - font-size: 0.75em; - padding-top: 12px; - background-image: url('images/h_bar.gif'); - background-repeat: repeat-x; - background-position: top left; - height: 35px; - vertical-align: middle; - clear: both; -} - -#logo { - position: absolute; - top: 0px; - right: 0px; - border: none; -} - -.badges { - float: right; -} - -#left_col, #content { - vertical-align: top; -} -/* -#left_col { - padding: 3px 3px 2em 3px; - margin-top: 2px; - width: 210px; - padding-right: 10px; - background-image: url('images/v_bar.gif'); - background-repeat: repeat-y; - background-position: top right; -} -*/ - -#left_col { - padding: 3px 3px 3em 3px; - margin-top: 2px; - width: 120px; - padding-right: 10px; - float: left; -} - -#left_col h2 { - font-size: 1.0em; - margin-top: 0.5em; - margin-bottom: 0.25em; -} - -#left_col ul { - margin-top: 0.25em; - padding-left: 0px; - margin-left: 0px; - position: fixed; -} - -#left_col ul li { list-style-position: inside; } - -#left_col iframe { margin-left: 40px; margin-top: 10px; } - -#content { - margin-left: 120px; - padding: 1em 1em 1em 2em; - min-width: 800px; - background-image: url('images/v_bar.gif'); - background-repeat: repeat-y; - background-position: top left; -} - -.message { - margin-top: 1em; - border: 1px dashed #5E83BA; -} - -#content li { - margin-top: 0.3em; - vertical-align: top; -} - -#content>*>li { - margin-right: 40px; /* keep things in line */ -} - -#content h2 { - text-align: left; - color: #4A9166; -} - -#content h3 { - margin-top: 2em; -} - -#content p { - text-align: justify; -} - -#content table td, -#content table th { - padding: 0.3em; -} - -#content table td.input { - white-space: nowrap; - font-family: "lucida console", monospace; - font-size: 0.8em; -} - -#content textarea { - padding: 4px; - width: 100%; - border: 1px dashed #5F83BA; - -moz-box-shadow: inset 3px 3px 3px rgba(0,0,0,0.1); - -webkit-box-shadow: inset 3px 3px 3px rgba(0,0,0,0.1); - box-shadow: inset 3px 3px 3px rgba(0,0,0,0.1); -} - -#content button { - color: #6d6a6a; - font-family: 'trebuchet ms', verdana, sans-serif; -} - -#preview { - float: right; - height: 800px; - min-width: 400px; - width: 60%; - border: 1px solid #666; - margin-left: 1em; - -moz-box-shadow: 0px 0px 6px rgba(0,0,0,0.5); - -webkit-box-shadow: 0px 0px 6px rgba(0,0,0,0.5); - box-shadow: 0px 0px 6px rgba(0,0,0,0.5); -} - -table.setup { - border: 1px solid #ccc; - border-collapse: collapse; -} - -table.setup td, -table.setup th { - border: 1px solid #ccc; -} - -table.setup th { - background-color: #ddd; -} - -table.setup td.title { - background-color: #f6f6f6; -} - -table.setup td.ok, -table.setup tr:hover td.ok { - background-color: #9e4; -} - -table.setup td.failed, -table.setup tr:hover td.failed { - background-color: #f43; - color: white; -} - -table.setup td.warning, -table.setup tr:hover td.warning { - background-color: #FCC612; -} - -table.setup tr:hover td { - background-color: #EBF1F7; -} - -table.setup tr:hover td.title { - background-color: #D0E0F2; -} - -input[type="file"] { - width: 30em; -} - -/* Method definitions from phpdoc */ -.method-definition { - background-image: url('images/h_bar.gif'); - background-position: bottom center; - background-repeat: repeat-x; - padding: 10px 10px 20px 10px; - margin-bottom: 1em; -} - -.method-title { - color: #5F83BA; -} - -.var-name, -.method-name, -.method-title { - font-weight: bold; -} - -.var-type, -.method-result { - color: #4A9166; - font-style: italic; -} diff --git a/www/test/backgroundcolor_fontdecoration_pageborder.html b/www/test/backgroundcolor_fontdecoration_pageborder.html deleted file mode 100644 index 3b8dfd6..0000000 --- a/www/test/backgroundcolor_fontdecoration_pageborder.html +++ /dev/null @@ -1,139 +0,0 @@ - - - - - - - - -
    -

    Background color, text decoration, page border

    -

    see more testcases with background images in image_variants.html

    - -
    -
    - -

     

    - -

    Text

    -

    Link

    - -

     

    - -

    -block -inline -block -_underlinex -block -_underline stylex -block -_line-through stylex -block -_overline stylex -block -
    - -

     

    - -

    -block -inline -block -_underlinex -block -_underline stylex -block -_line-through stylex -block -_overline stylex -block -
    - -

     

    - -

    -block -inline -block -_underlinex -block -_underline stylex -block -_line-through stylex -block -_overline stylex -block -
    - -

     

    - -

    -block -inline -block -_underlinex -block -_underline stylex -block -_line-through stylex -block -_overline stylex -block -
    -

     

    - -

    -block -inline - -underline sdfjsfh sdfs sfd sf sf sdfsdfasf asdfasdfa asdfasdf asdf asdfas dfasdf afsafasf asdfasdasdf adfasfasdf - -block -
    - -

     

    - -

    -block -inline -block -underline -block -underline style -block -
    - -

     

    - -

    -The PHP 5 HTML to PDF converter -

    - -

    Fill fill fill fill fill fill fill fill

    -

    Fill fill fill fill fill fill fill fill

    -

    Fill fill fill fill fill fill fill fill

    -

    Fill fill fill fill fill fill fill fill

    -

    Fill fill fill fill fill fill fill fill

    -

    Fill fill fill fill fill fill fill fill

    -

    Fill fill fill fill fill fill fill fill

    -
    - diff --git a/www/test/css/common.css b/www/test/css/common.css deleted file mode 100644 index eb8c732..0000000 --- a/www/test/css/common.css +++ /dev/null @@ -1,128 +0,0 @@ -/* Notes ------------------------------------------------------------------------*/ -.note_form { - display: none; -} - - -/* Page ------------------------------------------------------------------------*/ -.page { - background-color: white; - padding: 20px; - font-size: 0.7em; - margin-bottom: 15px; - margin-right: 5px; -} - -.page table.header td h1 { - margin: 0px; -} - -.page table.header { - border-bottom: 1px solid black; -} - -.page h1 { - text-align: center; - color: black; - font-style: normal; - font-size: 2em; -} - -.page h2 { - text-align: center; - color: black; -} - -.page h3 { - color: black; - font-size: 1em; -} - -.page p { - text-align: justify; - font-size: 1em; -} - -.page em { - font-weight: bold; - font-style: normal; - text-decoration: underline; - margin-left: 1%; - margin-right: 1%; - -} - -.money_table { - width: 85%; - margin-left: auto; - margin-right: auto; -} - -.money { - text-align: right; - padding-right: 20px; -} - -.money_field { - text-align: right; - padding: 0px 15px 5px 15px; - font-weight: bold; -} - -.total_label { - border-top: 2px double black; - font-weight: bold; -} - -.total_field { - border-top: 2px double black; - text-align: right; - padding: 0px 15px 5px 15px; - font-weight: bold; -} - -.written_field { - border-bottom: 0.1pt solid black; -} - -.page .indent * { margin-left: 4em; } - -.checkbox { - border: 1px solid black; - padding: 1px 2px; - font-size: 7px; - font-weight: bold; -} - -table.fax_head { - width: 100%; - font-weight: bold; - font-size: 1.1em; - border-bottom: 1px solid black; -} - -/* Sales-agreement specific ------------------------------------------------------------------------*/ -table.sa_signature_box { - margin: 2em auto 2em auto; -} - -table.sa_signature_box tr td { - padding-top: 1.5em; - vertical-align: top; - white-space: nowrap; -} - -.special_conditions { - font-style: italic; - margin-left: 2em; - white-space: pre; - font-weight: bold; -} - -.page h2 { - text-align: left; -} - diff --git a/www/test/css/importabs.css b/www/test/css/importabs.css deleted file mode 100644 index d6cbfb9..0000000 --- a/www/test/css/importabs.css +++ /dev/null @@ -1,2 +0,0 @@ -p.importabs {background-color:#ffffc0;} - diff --git a/www/test/css/importall.css b/www/test/css/importall.css deleted file mode 100644 index 89f4379..0000000 --- a/www/test/css/importall.css +++ /dev/null @@ -1,2 +0,0 @@ -li.import {background-color:#ffffc0;} - diff --git a/www/test/css/importdisplay.css b/www/test/css/importdisplay.css deleted file mode 100644 index 7610d90..0000000 --- a/www/test/css/importdisplay.css +++ /dev/null @@ -1,2 +0,0 @@ -p.import {background-color:#c0c0ff;} - diff --git a/www/test/css/importprint.css b/www/test/css/importprint.css deleted file mode 100644 index cc9e8c5..0000000 --- a/www/test/css/importprint.css +++ /dev/null @@ -1,2 +0,0 @@ -p.import {background-color:#eeeeee;} - diff --git a/www/test/css/importsub.css b/www/test/css/importsub.css deleted file mode 100644 index 96b5338..0000000 --- a/www/test/css/importsub.css +++ /dev/null @@ -1,2 +0,0 @@ -p.importsub {background-color:#ffffc0;} - diff --git a/www/test/css/linkall.css b/www/test/css/linkall.css deleted file mode 100644 index d3668cf..0000000 --- a/www/test/css/linkall.css +++ /dev/null @@ -1,2 +0,0 @@ -li.link {background-color:#ffffc0;} - diff --git a/www/test/css/linkdefault.css b/www/test/css/linkdefault.css deleted file mode 100644 index 0611501..0000000 --- a/www/test/css/linkdefault.css +++ /dev/null @@ -1,2 +0,0 @@ -li.link {color:#ff0000;} - diff --git a/www/test/css/linkdisplay.css b/www/test/css/linkdisplay.css deleted file mode 100644 index 77f3d19..0000000 --- a/www/test/css/linkdisplay.css +++ /dev/null @@ -1,2 +0,0 @@ -p.link {background-color:#c0c0ff;} - diff --git a/www/test/css/linkprint.css b/www/test/css/linkprint.css deleted file mode 100644 index dd3f3ca..0000000 --- a/www/test/css/linkprint.css +++ /dev/null @@ -1,2 +0,0 @@ -p.link {background-color:#eeeeee;} - diff --git a/www/test/css/print_static.css b/www/test/css/print_static.css deleted file mode 100644 index 5faa61b..0000000 --- a/www/test/css/print_static.css +++ /dev/null @@ -1,701 +0,0 @@ -/* Default style definitions */ - -@import url(common.css); - -@page { - margin: 0.25in; -} - -/* General ------------------------------------------------------------------------*/ -body { - background-color: transparent; - color: black; - font-family: "verdana", "sans-serif"; - margin: 0px; - padding-top: 0px; - font-size: 1em; -} - -@media print { - p { margin: 2px; } -} - -h1 { - font-size: 1.1em; - font-style: italic; -} - -h2 { - font-size: 1.05em; -} - -img { - border: none; -} - -pre { - font-family: "verdana", "sans-serif"; - font-size: 0.7em; -} - -ul { - list-style-type: circle; - list-style-position: inside; - margin: 0px; - padding: 3px; -} - -li.alpha { - list-style-type: lower-alpha; - margin-left: 15px; -} - -p { - font-size: 0.8em; -} - -a:link, -a:visited { - /* font-weight: bold; */ - text-decoration: none; - color: black; -} - -a:hover { - text-decoration: underline; -} - -#body { - padding-bottom: 2em; - padding-top: 5px; -} - -#body pre { -} - -.center { - text-align: center; -} - -.right { - text-align: right; -} - -#money { - text-align: right; - padding-right: 20px; -} - -/* Footer ------------------------------------------------------------------------*/ -#footer { - color: black; -} - -#copyright { - padding: 5px; - font-size: 0.6em; - background-color: white; -} - -#footer_spacer_row { - width: 100%; -} - -#footer_spacer_row td { - padding: 0px; - border-bottom: 1px solid #000033; - background-color: #F7CF07; - height: 2px; - font-size: 2px; - line-height: 2px; -} - -#logos { - padding: 5px; - float: right; -} - -/* Section Header ------------------------------------------------------------------------*/ -#section_header { - text-align: center; -} - -#job_header { - text-align: left; - background-color: white; - margin-left: 5px; - padding: 5px; - border: 1px dashed black; -} - -#job_info { - font-weight: bold; -} - -.header_details td { - font-size: 0.6em; -} - -.header_label { - padding-left: 20px; -} - -.header_field { - padding-left: 5px; - font-weight: bold; -} - -/* Content ------------------------------------------------------------------------*/ -#content { - padding: 0.2em 1% 0.2em 1%; - min-height: 15em; -} - -.page_buttons { - text-align: center; - margin: 3px; - font-size: 0.7em; - white-space: nowrap; - font-weight: bold; - width: 74%; -} - -.link_bar { - font-size: 0.7em; - text-align: center; - margin: auto; -/* white-space: nowrap; */ -} - -.link_bar a { - white-space: nowrap; - font-weight: bold; -} - -.page_menu li { - margin: 5px; - font-size: 0.8em; -} - -/* Detail ------------------------------------------------------------------------*/ -.detail_table { - border-top: 1px solid black; - border-bottom: 1px solid black; - padding: 3px; - margin: 15px; -} - -.detail_head td { - background-color: #ddd; - color: black; - font-weight: bold; - padding: 3px; - font-size: 0.75em; - text-align: center; -} - -.detail_label { - padding: 3px; - font-size: 0.75em; - width: 16%; - border-top: 1px solid #fff; - border-bottom: 1px solid #fff; - background-color: #ddd; -} - -.detail_field { - width: 33%; - font-size: 0.8em; - color: ; - text-align: center; - padding: 3px; -} - -.detail_sub_table { - font-size: 1em; -} - -.detail_spacer_row td { - border-top: 1px solid white; - border-bottom: 1px solid white; - background-color: #999; - font-size: 2px; - line-height: 2px; -} - -#narrow { - width: 50%; -} - -.operation { - width: 1%; -} - -.summary_spacer_row { - font-size: 0.1em; -} - -.bar { - border-top: 1px solid black; -} - -/* Forms ------------------------------------------------------------------------*/ -.form { - border-top: 1px solid black; - border-bottom: 1px solid black; - margin-top: 10px; -} - -.form td { - padding: 3px; -} - -.form th, .form_head td { - background-color: #ddd; - border-bottom: 1px solid black; - color: black; - padding: 3px; - text-align: center; - font-size: 0.65em; - font-weight: bold; -} - -.form_head a:link, -.form_head a:visited { - color: black; -} - -.form_head a:hover { -} - -.sub_form_head td { - border: none; - font-size: 0.9em; - white-space: nowrap; -} - -.form input { - color: black; - background-color: white; - border: 1px solid black; - padding: 1px 2px 1px 2px; - text-decoration: none; - font-size: 1em; -} - -.form textarea { - color: black; - background-color: white; - border: 1px solid black; - font-size: 1em; -} - -.form select { - color: black; - background-color: white; - font-size: 1em; -} - -.button, a.button { - color: black; - background-color: white; - border: 1px solid black; - font-weight: normal; - white-space: nowrap; - text-decoration: none; -} - -a.button { - display: inline-block; - text-align: center; - padding: 2px; -} - -a.button:hover { - text-decoration: none; - color: black; -} - -.form_field { - color: black; - background-color: white; - font-size: 0.7em; -} - -.form_label { - color: black; - background-color: #ddd; - font-size: 0.7em; - padding: 3px; -} - -/* -.form_foot { - background-color: #E5D9C3; - font-size: 0.6em; -} -*/ - -.form_foot td { - background-color: #ddd; - border-bottom: 1px solid black; - color: black; - padding: 3px; - text-align: center; - font-size: 0.65em; - font-weight: bold; -} - -.form_foot a:link, -.form_foot a:visited { - color: black; -} - -.form_foot a:hover { - color: black; -} - -.no_border_input input { - border: none; -} - -.no_wrap { - white-space: nowrap; -} - -tr.row_form td { - white-space: nowrap; -} - -/* Wizards ------------------------------------------------------------------------*/ -.wizard { - font-size: 0.8em; - border-top: 1px solid black; -} - -#no_border { - border: none; -} - -.wizard p { - text-indent: 2%; -} - -.wizard td { - padding: 3px; -/* padding-left: 3px; - padding-right: 3px; - padding-bottom: 3px;*/ -} - -.wizard input { - color: black; - background-color: white; - border: 1px solid black; - padding: 1px 2px 1px 2px; - text-decoration: none; -} - -.wizard textarea { - color: black; - background-color: white; - border: 1px solid black; -} - -.wizard select { - color: black; - background-color: white; - border: 1px solid black; -} - -.wizard_head { - color: black; - font-weight: bold; -} - -.wizard_buttons { - border-top: 1px solid black; - padding-top: 3px; -} - -.wizard_buttons a { - background-color: white; - border: 1px solid black; - padding: 2px 3px 2px 3px; -} - -/* List ------------------------------------------------------------------------*/ -.list_table, -.notif_list_table { - color: black; - padding-bottom: 4px; - background-color: white; -} - -.list_table td, -.notif_list_table td { - padding: 3px 5px 3px 5px; -} - -.list_table input { - color: black; - background-color: white; - border: 1px solid black; - padding: 1px 2px 1px 2px; - text-decoration: none; -} - -.list_head, -.notif_list_head { - font-weight: bold; - background-color: #ddd; - font-size: 0.65em; -} - -.list_head td, -.notif_list_head td { - border-top: 1px solid black; - border-bottom: 1px solid black; - color: black; - text-align: center; - white-space: nowrap; -} - -.list_head a:link, -.list_head a:visited, -.notif_list_head a:link, -.notif_list_head a:visited { - color: black; -} - -.list_head a:hover, -.notif_list_head a:hover { -} - -.list_foot { - font-weight: bold; - background-color: #ddd; - font-size: 0.65em; -} - -.list_foot td { - border-top: 1px solid black; - border-bottom: 1px solid black; - color: black; - text-align: right; - white-space: nowrap; -} - -.sub_list_head td { - border: none; - font-size: 0.7em; -} - -.odd_row td { -/* background-color: #EDF2F7; - border-top: 2px solid #FFFFff;*/ - background-color: transparent; - border-bottom: 0.9px solid #ddd; /* 0.9 so table borders take precedence */ -} - -.even_row td { -/* background-color: #F8EEE4; - border-top: 3px solid #FFFFff;*/ - background-color: #f6f6f6; - border-bottom: 0.9px solid #ddd; -} - -.spacer_row td { - line-height: 2px; - font-size: 2px; -} - -.phone_table td { - border: none; - font-size: 0.8em; -} - -div.notif_list_text { - margin-bottom: 1px; - font-size: 1.1em; -} - -.notif_list_row td.notif_list_job { - text-align: center; - font-weight: bold; - font-size: 0.65em; -} - -.notif_list_row td.notif_list_dismiss table td { - text-align: center; - font-size: 1em; - border: none; - padding: 0px 2px 0px 2px; -} - -.notif_list_row td { - padding: 5px 5px 7px 5px; - border-bottom: 1px dotted #ddd; - background-color: white; - font-size: 0.6em; -} - -.notif_list_row:hover td { - background-color: #ddd; -} - -/* Page ------------------------------------------------------------------------*/ -.page { - border: none; - padding: 0in; - margin-right: 0.1in; - margin-left: 0.1in; - /*margin: 0.33in 0.33in 0.4in 0.33in; */ - background-color: transparent; -} - -.page table.header h1{ - font-size: 12pt; -} - -.page>h2, -.page>p { - margin-top: 2pt; - margin-bottom: 2pt; -} - -.page h2 { - page-break-after: avoid; -} - -.money_table { - border-collapse: collapse; - font-size: 6pt; -} - -/* Tree ------------------------------------------------------------------------*/ -.tree_div { - display: none; - background-color: #ddd; - border: 1px solid #333; -} - -.tree_div .tree_step_bottom_border { - border-bottom: 1px dashed #8B9DBE; -} - -.tree_div .button, .tree_row_table .button, -.tree_div .no_button { - width: 110px; - font-size: 0.7em; - padding: 3px; - text-align: center; -} - -/* -.tree_div .button a, .tree_row_table .button a { - text-decoration: none; - color: #114C8D; -} -*/ - -.tree_row_desc { - font-weight: bold; - font-size: 0.7em; - text-indent: -10px; -} - -.tree_row_info { - font-size: 0.7em; - width: 200px; -} - -.tree_div_head a, -.tree_row_desc a { - color: #000033; - text-decoration: none; -} - -.tree_div_head { - font-weight: bold; - font-size: 0.7em; -} - -/* Summaries ------------------------------------------------------------------------*/ -.summary { - border: 1px solid black; - background-color: white; - padding: 1%; - font-size: 0.8em; -} - -.summary h1 { - color: black; - font-style: normal; -} - -/* Sales-agreement specific ------------------------------------------------------------------------*/ -table.sa_signature_box { - margin: 2em auto 2em auto; -} - -table.sa_signature_box tr td { - padding-top: 1.25em; - vertical-align: top; - white-space: nowrap; -} - -.special_conditions { - font-style: italic; - margin-left: 2em; - white-space: pre; -} - -.sa_head * { - font-size: 7pt; -} - -/* Change order specific ------------------------------------------------------------------------*/ -table.change_order_items { - font-size: 8pt; - width: 100%; - border-collapse: collapse; - margin-top: 2em; - margin-bottom: 2em; -} - -table.change_order_items>tbody { - border: 1px solid black; -} - -table.change_order_items>tbody>tr>th { - border-bottom: 1px solid black; -} - -table.change_order_items>tbody>tr>td { - border-right: 1px solid black; - padding: 0.5em; -} - -td.change_order_total_col { - padding-right: 4pt; - text-align: right; -} - -td.change_order_unit_col { - padding-left: 2pt; - text-align: left; -} diff --git a/www/test/css_2d_transforms.html b/www/test/css_2d_transforms.html deleted file mode 100644 index c0820cb..0000000 --- a/www/test/css_2d_transforms.html +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - - - - - - -

    none

    -
     
    - -

    rotate

    -
     
    - -

    scale

    -
     
    -
     
    -
     
    -
     
    - -

    translate

    -
     
    -
     
    -
     
    -
     
    - -

    skew

    -
     
    -
     
    -
     
    -
     
    - -

    mixed

    -
     
    - - - diff --git a/www/test/css_at_font_face.html b/www/test/css_at_font_face.html deleted file mode 100644 index 5b4ad48..0000000 --- a/www/test/css_at_font_face.html +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - -

    Give You Glory

    -

    - Grumpy wizards make toxic brew for the evil Queen and Jack -

    - -

    Wallpoet

    -

    - Grumpy wizards make toxic brew for the evil Queen and Jack -

    - -

    Love Ya Like A Sister

    -

    - Grumpy wizards make toxic brew for the evil Queen and Jack -

    - - - diff --git a/www/test/css_baseline.html b/www/test/css_baseline.html deleted file mode 100644 index af8bfb5..0000000 --- a/www/test/css_baseline.html +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - - - -

    -(enter your text here) -

    - -

    -suptestsub -

    - - - diff --git a/www/test/css_border.html b/www/test/css_border.html deleted file mode 100644 index f08086e..0000000 --- a/www/test/css_border.html +++ /dev/null @@ -1,163 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - -
    dotteddashedsoliddouble
    grooveridgeinsetoutset
    - -

    partial attributes merged

    - -
    border:thin solid red;
    -
    border:red thin solid;
    -
    { border:thin solid; }{border:blue; } (merged, reset all - color has no effect)
    -
    { border:thin solid; }{border-color:green; } (merged, overwrite only color)
    -
    { border:thin solid; }{border:blue; } (merged, reset all - color has no effect)
    -
    { border:thin solid; }{border-color:green; } (merged, overwrite only color)
    -
    { border:thin blue solid; }{border-color:green; } (merged, overwrite only color)
    -
    { border:thin blue solid; }{border-style:dashed; } (merged, overwrite only style)
    -
    { border:thin blue solid; }{border-width:thick; } (merged, overwrite only width)
    -
    { border:thin blue solid; }{border-width:medium; } (merged, overwrite only width)
    -
    { border:thin blue solid; }{border-width:3pt; } (merged, overwrite only width)
    - -

    top:

    - -
    border-top:thin solid red;
    -
    border-top:red thin solid;
    -
    { border-top:thin solid; }{border-top-color:green; } (merged, overwrite only color)
    -
    { border-top:thin solid; }{border-top:blue; } (merged, reset all - color has no effect)
    - -

    right left bottom:

    - -
    border-right:thin solid red;
    -
    border-left:thin solid red;
    -
    border-bottom:thin solid red;
    - -

    Individual Attributes

    -
    {border:thin blue solid;}{border-top-color:red;}
    -
    {border:thin blue solid;}{border-right-color:red;}
    -
    {border:thin blue solid;}{border-bottom-color:red;}
    -
    {border:thin blue solid;}{border-left-color:red;}
    - -
    {border:thin blue solid;}{border-top-style:dashed;}
    -
    {border:thin blue solid;}{border-right-style:dashed;}
    -
    {border:thin blue solid;}{border-bottom-style:dashed;}
    -
    {border:thin blue solid;}{border-left-style:dashed;}
    - -
    {border:thin blue solid;}{border-top-width:medium;}
    -
    {border:thin blue solid;}{border-right-width:medium;}
    -
    {border:thin blue solid;}{border-bottom-width:medium;}
    -
    {border:thin blue solid;}{border-left-width:medium;}
    - -

    Individual side specific Attributes

    - -
    {border:thin blue solid;}{border-color:red;}
    -
    {border:thin blue solid;}{border-color:red green;}
    -
    {border:thin blue solid;}{border-color:red green blue;}
    -
    {border:thin blue solid;}{border-color:red green blue gray;}
    - -
    {border:thin blue solid;}{border-style:dashed;}
    -
    {border:thin blue solid;}{border-style:dashed dotted;}
    -
    {border:thin blue solid;}{border-style:dashed dotted double;}
    -
    {border:thin blue solid;}{border-style:dashed dotted double groove;}
    - -
    {border:thin blue solid;}{border-width:1pt;}
    -
    {border:thin blue solid;}{border-width:1pt 2pt;}
    -
    {border:thin blue solid;}{border-width:1pt 2pt 3pt;}
    -
    {border:thin blue solid;}{border-width:1pt 2pt 3pt 4pt;}
    - -
    -

    Misc. values

    - -
    -
    -
    -
    -
    -
    - diff --git a/www/test/css_border_radius.html b/www/test/css_border_radius.html deleted file mode 100644 index eac5997..0000000 --- a/www/test/css_border_radius.html +++ /dev/null @@ -1,55 +0,0 @@ - - - - - - - - - - -
    -
    -
    -
    -
    -
    -
    - diff --git a/www/test/css_color_cmyk.html b/www/test/css_color_cmyk.html deleted file mode 100644 index 46a719e..0000000 --- a/www/test/css_color_cmyk.html +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - - -All these rectangles should look red: - -
    - -
    - -
    - -
    - -
    - -
    -
    -
    - -CMYK JPEG:
    - - -

    -CMYK: -
    - -
    - -
    - -
    - - - diff --git a/www/test/css_content.html b/www/test/css_content.html deleted file mode 100644 index 4558df5..0000000 --- a/www/test/css_content.html +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - Look at the HTML source ! - -

    quote <q>

    -

    to

    - -

    -

    -

    - - - - diff --git a/www/test/css_counter.html b/www/test/css_counter.html deleted file mode 100644 index 8eb244e..0000000 --- a/www/test/css_counter.html +++ /dev/null @@ -1,62 +0,0 @@ - - - - - -12.5b counter-increment - - - - - -

    CSS2 Test Suite: 12.5 counter-increment

    -[index page] [section] [Previous] [Next] [Specification] -
    -

    The style declarations contained within this page:

    -
    span:before {content: counter(ct1) "|" counter(ct2) "|" counter(ct3) "... ";}
    -li span:before {counter-increment: ct1;}
    -li li span:before {counter-increment: ct2 2;}
    -li li li span:before {counter-increment: ct3 -3;}
    -
    -
    -
    -

    -The list items in the following set of lists all have 'span' elements, and each 'span' should be preceded with generated content in the form "a|b|c... " where the letters are incremented numbers. "a" numbers increment in ones, "b" in twos, and "c" in negative threes. Note that counters are not reset for each sublist, or at any point, and so should use the default '0' as their base point. -

    -
      -
    • list item
    • -
    • list item
    • -
    • list item -
        -
      • list item
      • -
      • list item
      • -
      • list item -
          -
        • list item
        • -
        -
      • -
      • list item
      • -
      • list item -
          -
        • list item
        • -
        • list item
        • -
        • list item
        • -
        • list item
        • -
        -
      • -
      • list item
      • -
      • list item
      • -
      -
    • -
    • list item
    • -
    • list item
    • -
    -
    [index page] [section] [Previous] [Next] [Specification] -
    - - diff --git a/www/test/css_float.html b/www/test/css_float.html deleted file mode 100644 index 55db46f..0000000 --- a/www/test/css_float.html +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - - - - - - - - - - - - - - -
    fooo - - Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Sed non risus. Suspendisse lectus tortor, dignissim sit amet, adipiscing nec, ultricies sed, dolor. - Cras elementum ultrices diam. Maecenas ligula massa, varius a, semper congue, euismod non, mi. - - - Proin porttitor, orci nec nonummy molestie, enim est eleifend mi, non fermentum diam nisl sit amet erat. - Duis semper. Duis arcu massa, scelerisque vitae, consequat in, pretium a, enim. Pellentesque congue. - Ut in risus volutpat libero pharetra tempor. Cras vestibulum bibendum augue. - Praesent egestas leo in pede. Praesent blandit odio eu enim. - - - - - - -
    testfoo
    - -
    - Pellentesque sed dui ut augue blandit sodales. - Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Aliquam nibh. - Mauris ac mauris sed pede pellentesque fermentum. -
    fooo
    - - - - diff --git a/www/test/css_font_selection.html b/www/test/css_font_selection.html deleted file mode 100644 index 4067cac..0000000 --- a/www/test/css_font_selection.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - - -

    Font Selection

    - -

    Available font-family:

    -
      -
    • serif (default) (Aliases: times, times-roman)
    • -
    • sans-serif (Aliases: helvetica)
    • -
    • monospace (Aliases: fixed, courier)
    • -
    -

    Available font-style:

    -
      -
    • normal (default)
    • -
    • italic
    • -
    -

    Available font-weight:

    -
      -
    • normal (default)
    • -
    • bold
    • -
    -

    Other variations are falling back to a combination of the above

    -

    Special fonts

    -
      -
    • symbol
    • -
    • zapfdingbats
    • -
    - -

    Font selection

    - -

    abcdefghijk ABCDEFGHIJK - (Helvetica) - (sans-serif) - sans-serif

    -

    abcdefghijk ABCDEFGHIJK - (Helvetica) - (sans-serif) - helvetica

    -

    abcdefghijk ABCDEFGHIJK - (Times-Roman) - (serif) - serif

    -

    abcdefghijk ABCDEFGHIJK - (Times-Roman) - (serif) - times

    -

    abcdefghijk ABCDEFGHIJK - (Times-Roman) - (serif) - times-roman

    -

    abcdefghijk ABCDEFGHIJK - (Courier)- (monospace) - mononospace

    -

    abcdefghijk ABCDEFGHIJK - (Courier)- (monospace) - fixed

    -

    abcdefghijk ABCDEFGHIJK - (Courier)- (monospace) - courier

    - -

    Font search path

    - -

    abcdefghijk ABCDEFGHIJK - serif - "font-family:dummy1,dummy2;"

    -

    abcdefghijk ABCDEFGHIJK - sans-serif - "font-family:dummy1,dummy2,sans-serif;"

    -

    abcdefghijk ABCDEFGHIJK - sans-serif - "font-family:sans-serif,dummy1,dummy2;"

    -

    abcdefghijk ABCDEFGHIJK - sans-serif - "font-family:sans-serif,courier;"

    - -

    Font variations

    - -

    abcdefghijk ABCDEFGHIJK - serif - normal - "font-style:normal; font-weight:normal;"

    -

    abcdefghijk ABCDEFGHIJK - serif - normal - "font-style:normal; font-weight:lighter;"

    -

    abcdefghijk ABCDEFGHIJK - serif - normal - "font-style:normal; font-weight:100;"

    -

    abcdefghijk ABCDEFGHIJK - serif - normal - "font-style:normal; font-weight:200;"

    -

    abcdefghijk ABCDEFGHIJK - serif - normal - "font-style:normal; font-weight:300;"

    -

    abcdefghijk ABCDEFGHIJK - serif - normal - "font-style:normal; font-weight:400;"

    -

    abcdefghijk ABCDEFGHIJK - serif - normal - "font-style:normal; font-weight:500;"

    -

    abcdefghijk ABCDEFGHIJK - serif - bold - "font-style:normal; font-weight:600;"

    -

    abcdefghijk ABCDEFGHIJK - serif - bold - "font-style:normal; font-weight:700;"

    -

    abcdefghijk ABCDEFGHIJK - serif - bold - "font-style:normal; font-weight:800;"

    -

    abcdefghijk ABCDEFGHIJK - serif - bold - "font-style:normal; font-weight:900;"

    -

    abcdefghijk ABCDEFGHIJK - serif - bold - "font-style:normal; font-weight:bold;"

    -

    abcdefghijk ABCDEFGHIJK - serif - bold - "font-style:normal; font-weight:bolder;"

    -

    abcdefghijk ABCDEFGHIJK - serif - italic - "font-style:italic; font-weight:normal;"

    -

    abcdefghijk ABCDEFGHIJK - serif - italic - "font-style:oblique; font-weight:normal;"

    -

    abcdefghijk ABCDEFGHIJK - serif - bold_italic - "font-style:italic; font-weight:bold;"

    -

    abcdefghijk ABCDEFGHIJK - serif - normal - "font-variant:small-caps; font-style:normal; font-weight:normal;"

    - -

    Font size

    -

    abcdefghijk ABCDEFGHIJK - xx-small

    -

    abcdefghijk ABCDEFGHIJK - x-small

    -

    abcdefghijk ABCDEFGHIJK - small

    -

    abcdefghijk ABCDEFGHIJK - medium

    -

    abcdefghijk ABCDEFGHIJK - large

    -

    abcdefghijk ABCDEFGHIJK - x-large

    -

    abcdefghijk ABCDEFGHIJK - xx-large

    -

    abcdefghijk ABCDEFGHIJK - 10pt

    -

    abcdefghijk ABCDEFGHIJK - 12pt

    -

    abcdefghijk ABCDEFGHIJK - l4pt

    -

    abcdefghijk ABCDEFGHIJK - smaller

    -

    abcdefghijk ABCDEFGHIJK - larger

    - -

    Line height

    -

    abcdefghijk ABCDEFGHIJK
    abcdefghijk ABCDEFGHIJK 100%

    -

    abcdefghijk ABCDEFGHIJK
    abcdefghijk ABCDEFGHIJK 120%

    -

    abcdefghijk ABCDEFGHIJK
    abcdefghijk ABCDEFGHIJK 140%

    -

    abcdefghijk ABCDEFGHIJK
    abcdefghijk ABCDEFGHIJK 100%

    -

    abcdefghijk ABCDEFGHIJK
    abcdefghijk ABCDEFGHIJK 120%

    -

    abcdefghijk ABCDEFGHIJK
    abcdefghijk ABCDEFGHIJK 140%

    - -

    Font combined setting

    -

    style="font:italic small-caps bold 14pt/160% sans-serif;"
    (all attributes)

    -

    style="font:normal 10pt/160% sans-serif;"
    (partial attributes)

    -

    style="font:700 10pt/160% sans-serif;"
    (partial attributes)

    -

    style="font:small sans-serif;"
    (partial attributes)

    -
    - -

    inherit style="font:italic small-caps bold 14pt/160% sans-serif;" :

    - -

    -style="font:small sans-serif;"
    -(partial attributes - reset inherited)
    -style="font-weight:bold;"
    -(partial overwrite)

    -(resume partial attributes) -

    - -

    continue inherited

    - -
    - - - diff --git a/www/test/css_important_flag.html b/www/test/css_important_flag.html deleted file mode 100644 index 76751f1..0000000 --- a/www/test/css_important_flag.html +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - -

    Handling of "!important" property flag

    -

    -Normally later css style properties defined later are overriding earlier ones.
    -Except if they are marked with the flag "!important".
    -Those can only be overridden by style properties which are also marked "!important". -

    - -

    There are two classes of property overriding

    -
      -
    • inherit (nested html tags)
    • -
    • merging (more css properties to the same html tag)
    • -
    -

    This is handled similarly for all styles, so we check only examples here

    - -

    ul { line-height:160% }

    - -

    merge a { border-bottom:dashed 1pt red !important; text-decoration:none !important; }

    - -

    dummy links, text decoration/border bottom:

    - - - -

    Inherit .monospace { font-family:monospace !important; }

    -

    font family selection:

    -
      -
    • (default)
    • -
    • font-family:sans-serif; (ignored)
    • -
    • font-family:sans-serif!important; (override)
    • -
    - - - diff --git a/www/test/css_letter_spacing.html b/www/test/css_letter_spacing.html deleted file mode 100644 index fb813cb..0000000 --- a/www/test/css_letter_spacing.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - -
    -

    This has letter spacing of 5px

    -

    This has letter spacing of 4px

    -

    This has letter spacing of 3px

    -

    This has letter spacing of 2px

    -

    This has letter spacing of 1px

    -

    This has normal letter spacing

    -

    This has letter spacing of -1px

    -

    This has letter spacing of -2px

    -

    This has letter spacing of -3px

    -

    This has letter spacing of -4px

    -

    This has letter spacing of -5px

    -
    - -
    -

    This has letter spacing of 5px

    -

    This has letter spacing of 4px

    -

    This has letter spacing of 3px

    -

    This has letter spacing of 2px

    -

    This has letter spacing of 1px

    -

    This has normal letter spacing

    -

    This has letter spacing of -1px

    -

    This has letter spacing of -2px

    -

    This has letter spacing of -3px

    -

    This has letter spacing of -4px

    -

    This has letter spacing of -5px

    -
    - -
    -

    This has letter spacing of 5px

    -

    This has letter spacing of 4px

    -

    This has letter spacing of 3px

    -

    This has letter spacing of 2px

    -

    This has letter spacing of 1px

    -

    This has normal letter spacing

    -

    This has letter spacing of -1px

    -

    This has letter spacing of -2px

    -

    This has letter spacing of -3px

    -

    This has letter spacing of -4px

    -

    This has letter spacing of -5px

    -
    - -
    -

    This has letter spacing of 5px. This has letter spacing of 5px. This has letter spacing of 5px.

    -

    This has letter spacing of 4px. This has letter spacing of 4px. This has letter spacing of 4px.

    -

    This has letter spacing of 3px. This has letter spacing of 3px. This has letter spacing of 3px.

    -

    This has letter spacing of 2px. This has letter spacing of 2px. This has letter spacing of 2px.

    -

    This has letter spacing of 1px. This has letter spacing of 1px. This has letter spacing of 1px.

    -

    This has normal letter spacing. This has normal letter spacing. This has normal letter spacing.

    -

    This has letter spacing of -1px. This has letter spacing of -1px. This has letter spacing of -1px.

    -

    This has letter spacing of -2px. This has letter spacing of -2px. This has letter spacing of -2px.

    -

    This has letter spacing of -3px. This has letter spacing of -3px. This has letter spacing of -3px.

    -

    This has letter spacing of -4px. This has letter spacing of -4px. This has letter spacing of -4px.

    -

    This has letter spacing of -5px. This has letter spacing of -5px. This has letter spacing of -5px.

    -
    - - diff --git a/www/test/css_line_height.html b/www/test/css_line_height.html deleted file mode 100644 index 7589b79..0000000 --- a/www/test/css_line_height.html +++ /dev/null @@ -1,63 +0,0 @@ - - - - -CSS Line Height Inheritance - - - -

    Use only <number> for line-height

    -

    unless you like solving inexplicable inheritance problems or setting an explicit line-height on every element

    -

    div {line-height: 1}; div div {font-size: 200%}

    -
    The quick brown fox
    jumps over the crazy -
    The quick brown fox
    jumps over the crazy
    -

    div {line-height: 1em}; div div {font-size: 200%}

    -
    The quick brown fox
    jumps over the crazy -
    The quick brown fox
    jumps over the crazy
    -

    div {line-height: 100%}; div div {font-size: 200%}

    -
    The quick brown fox
    jumps over the crazy -
    The quick brown fox
    jumps over the crazy
    -
    -

    When rendered according to the -css 2.1 spec, -the 200% text in the second two div divs, those for which line-height of the parent -are specified in em or %, will overlap, the child divs being 1/2 the height of their containing -divs; while the first div div will be 2/3 the height of its containing div, -and its text won't overlap. The overlapping text in the latter div divs is because the spec requires the calculated -line-height specified in em or % be inherited by the children. In contrast, it is <number> itself that is inherited by -the children, which allows the line-height specified to be applied in reference to the font-size of the child div instead of -the ancestor.

    -
    -IE has an additional problem with line-height. -
    -
    - -
    - -Valid HTML 4.01! -
    -Last Modified
    2005.11.29
    © Felix Miata
    -Felix's Home -
    - - - \ No newline at end of file diff --git a/www/test/css_margin.html b/www/test/css_margin.html deleted file mode 100644 index 0efdc93..0000000 --- a/www/test/css_margin.html +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - -

    (margin: 1em;) The PHP Development -Team would like to announce the immediate availability of PHP 5.0.1. This is -a maintenance release that in addition to many non-critical bug fixes also -includes new UNIX and Windows installation docs which are now auto-generated -from the PHP Manual.

    - -

    (margin: 1em 1em 1em -50%;) PHP 4.3.9RC1 has been released for testing. This is the first -release candidate and should have a very low number of problems and/or -bugs. Nevertheless, please download and test it as much as possible on -real-life applications to uncover any remaining issues.

    - -

    (margin: 4em 1em 4em -1em;) PHP Tunisie has just released the second issue of its monthly -french PHP Magazine. In this issue you'll find a large plan on PostgreSQL, -Databases abstractions with PHP, your mini template engine, an article on -images generation with PHP, the migration towards PHP5 with -EasyPHP1.7... And many other articles and latests PHP news.

    - -

    (margin: 1em auto 1em -auto;) The traditional International PHP Conference 2004 will be -taking place from 7th November to 10th November in Frankfurt (FFM). The Call -for Papers has been issued, so if you have an interesting talk, the -organizers would love to hear about it! You can expect a gathering of PHP -experts and core developers.

    - - - diff --git a/www/test/css_media.html b/www/test/css_media.html deleted file mode 100644 index d01cd73..0000000 --- a/www/test/css_media.html +++ /dev/null @@ -1,150 +0,0 @@ - - - - - - - - - -

    css @media media types

    -

    -Depending on dompdf_config.inc.php setting DOMPDF_DEFAULT_MEDIA_TYPE here the -background color appeares different: -

    -
      -
    • print: light gray
    • -
    • screen: light blue
    • -
    • projection: light yellow
    • -
    - -

    css @import media types

    -

    -Depending on dompdf_config.inc.php setting DOMPDF_DEFAULT_MEDIA_TYPE here the -background color appeares different: -

    -
      -
    • print: light gray
    • -
    • screen or projection: light blue
    • -
    • all: this line yellow
    • -
    - -

    yellow by import css from subfolder

    - -

    yellow by import css from absolute local folder. -Note: Only works if www\test\images/importabs.css was copied to /absimagetest/importabs.css -

    - - -

    css link media types

    - -
      -
    • print: light gray
    • -
    • screen or projection: light blue
    • - -
    - - -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    -

    x

    - diff --git a/www/test/css_multiple_class.html b/www/test/css_multiple_class.html deleted file mode 100644 index c4f68d5..0000000 --- a/www/test/css_multiple_class.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - -

    class="a"

    -

    class="b"

    -

    class="c"

    -

    class="a b"

    -

    class="a b c"

    - - diff --git a/www/test/css_nth_child.html b/www/test/css_nth_child.html deleted file mode 100644 index 1d4e487..0000000 --- a/www/test/css_nth_child.html +++ /dev/null @@ -1,121 +0,0 @@ - - - - -CSS Selector :nth-child - - - - - - - -

    nth-child(1)

    -
    -

    1

    -

    2

    -

    3

    -

    4

    -

    5

    -
    - -

    nth-child(3)

    -
    -

    1

    -

    2

    -

    3

    -

    4

    -

    5

    -
    - -

    nth-child(odd)

    -
    -

    1

    -

    2

    -

    3

    -

    4

    -

    5

    -
    - -

    nth-child(even)

    -
    -

    1

    -

    2

    -

    3

    -

    4

    -

    5

    -
    - -

    nth-child(n)

    -
    -

    1

    -

    2

    -

    3

    -

    4

    -

    5

    -
    - -

    nth-child(3n)

    -
    -

    1

    -

    2

    -

    3

    -

    4

    -

    5

    -
    - -

    nth-child(n+2)

    -
    -

    1

    -

    2

    -

    3

    -

    4

    -

    5

    -
    - -

    nth-child(2n+1)

    -
    -

    1

    -

    2

    -

    3

    -

    4

    -

    5

    -
    - -

    nth-child(3n-2)

    -
    -

    1

    -

    2

    -

    3

    -

    4

    -

    5

    -
    - - - diff --git a/www/test/css_opacity.html b/www/test/css_opacity.html deleted file mode 100644 index 733e568..0000000 --- a/www/test/css_opacity.html +++ /dev/null @@ -1,107 +0,0 @@ - - - - - - - -

    Nested block elements

    - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    -
    -
    -
    -
    - -

    Inline elements

    - - - ab - cb - ef - gh - ij - kl - mn - op - qr - st - - -
    - - - ab - cb - ef - gh - ij - kl - mn - op - qr - st - - -
    0.1
    -
    0.2
    -
    0.3
    -
    0.4
    -
    0.5
    -
    0.6
    -
    0.7
    -
    0.8
    -
    0.9
    -
    1.0
    - -
    1.0 opacity
    -
    No opacity
    - -
    -
    -
    -
    -
    -
    -
    - - diff --git a/www/test/css_outline.html b/www/test/css_outline.html deleted file mode 100644 index 00ce313..0000000 --- a/www/test/css_outline.html +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - -
    The dotted gray line is the border box
    dotteddashedsoliddouble
    grooveridgeinsetoutset
    - -

    partial attributes merged

    - -
    outline:thin solid red;
    -
    outline:red thin solid;
    -
    { outline:thin solid; }{outline:blue; } (merged, reset all - color has no effect)
    -
    { outline:thin solid; }{outline-color:green; } (merged, overwrite only color)
    -
    { outline:thin solid; }{outline:blue; } (merged, reset all - color has no effect)
    -
    { outline:thin solid; }{outline-color:green; } (merged, overwrite only color)
    -
    { outline:thin blue solid; }{outline-color:green; } (merged, overwrite only color)
    -
    { outline:thin blue solid; }{outline-style:dashed; } (merged, overwrite only style)
    -
    { outline:thin blue solid; }{outline-width:thick; } (merged, overwrite only width)
    -
    { outline:thin blue solid; }{outline-width:medium; } (merged, overwrite only width)
    -
    { outline:thin blue solid; }{outline-width:3pt; } (merged, overwrite only width)
    - - diff --git a/www/test/css_overflow_hidden.html b/www/test/css_overflow_hidden.html deleted file mode 100644 index a2bd291..0000000 --- a/www/test/css_overflow_hidden.html +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - -

    overflow: hidden

    -
    - - Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Sed non risus. - Suspendisse lectus tortor, dignissim sit amet, adipiscing nec, ultricies sed, dolor. -
    - -

    overflow: visible

    -
    - - Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Sed non risus. - Suspendisse lectus tortor, dignissim sit amet, adipiscing nec, ultricies sed, dolor. -
    - - - diff --git a/www/test/css_position_absolute.html b/www/test/css_position_absolute.html deleted file mode 100644 index dafdc43..0000000 --- a/www/test/css_position_absolute.html +++ /dev/null @@ -1,60 +0,0 @@ - - - - - -Printed document - - - - - - - - -
    - top/left -
    -
    - top/right -
    -
    - top/left/right -
    - -
    - top/left/right/bottom -
    - -
    - bottom/right -
    -
    - bottom/left -
    -
    - bottom/left/right -
    - - - - diff --git a/www/test/css_position_all.html b/www/test/css_position_all.html deleted file mode 100644 index 0007c6d..0000000 --- a/www/test/css_position_all.html +++ /dev/null @@ -1,379 +0,0 @@ - - - - - -Printed document - - - - - - - -

    Examples from
    http://www.barelyfitz.com/screencast/html-training/css/positioning/

    - -position: static -
    -

    div-before

    - -
    -
    -

    div-1

    - -
    -

    div-1a

    -

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer pretium dui sit amet felis. Integer sit amet diam. Phasellus ultrices viverra velit.

    -
    - -
    -

    div-1b

    -

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer pretium dui sit amet felis. Integer sit amet diam. Phasellus ultrices viverra velit. Nam mattis, arcu ut bibendum commodo, magna nisi tincidunt tortor, quis accumsan augue ipsum id lorem.

    -
    - -

    div-1c

    -
    -
    - -

    div-after

    -
    - -position: relative -
    -

    div-before

    - -
    -
    -

    div-1

    - -
    -

    div-1a

    -

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer pretium dui sit amet felis. Integer sit amet diam. Phasellus ultrices viverra velit.

    -
    - -
    -

    div-1b

    -

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer pretium dui sit amet felis. Integer sit amet diam. Phasellus ultrices viverra velit. Nam mattis, arcu ut bibendum commodo, magna nisi tincidunt tortor, quis accumsan augue ipsum id lorem.

    -
    - -

    div-1c

    -
    -
    - -

    div-after

    -
    - -position: absolute -
    -

    div-before

    - -
    -
    -

    div-1

    - -
    -

    div-1a

    -

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer pretium dui sit amet felis. Integer sit amet diam. Phasellus ultrices viverra velit.

    -
    - -
    -

    div-1b

    -

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer pretium dui sit amet felis. Integer sit amet diam. Phasellus ultrices viverra velit. Nam mattis, arcu ut bibendum commodo, magna nisi tincidunt tortor, quis accumsan augue ipsum id lorem.

    -
    - -

    div-1c

    -
    -
    - -

    div-after

    -
    - -position: relative + position: absolute -
    -

    div-before

    - -
    -
    -

    div-1

    - -
    -

    div-1a

    -

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer pretium dui sit amet felis. Integer sit amet diam. Phasellus ultrices viverra velit.

    -
    - -
    -

    div-1b

    -

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer pretium dui sit amet felis. Integer sit amet diam. Phasellus ultrices viverra velit. Nam mattis, arcu ut bibendum commodo, magna nisi tincidunt tortor, quis accumsan augue ipsum id lorem.

    -
    - -

    div-1c

    -
    -
    - -

    div-after

    -
    - -two column absolute -
    -

    div-before

    - -
    -
    -

    div-1

    - -
    -

    div-1a

    -

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer pretium dui sit amet felis. Integer sit amet diam. Phasellus ultrices viverra velit.

    -
    - -
    -

    div-1b

    -

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer pretium dui sit amet felis. Integer sit amet diam. Phasellus ultrices viverra velit. Nam mattis, arcu ut bibendum commodo, magna nisi tincidunt tortor, quis accumsan augue ipsum id lorem.

    -
    - -

    div-1c

    -
    -
    - -

    div-after

    -
    - -two column absolute height -
    -

    div-before

    - -
    -
    -

    div-1

    - -
    -

    div-1a

    -

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer pretium dui sit amet felis. Integer sit amet diam. Phasellus ultrices viverra velit.

    -
    - -
    -

    div-1b

    -

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer pretium dui sit amet felis. Integer sit amet diam. Phasellus ultrices viverra velit. Nam mattis, arcu ut bibendum commodo, magna nisi tincidunt tortor, quis accumsan augue ipsum id lorem.

    -
    - -

    div-1c

    -
    -
    - -

    div-after

    -
    - -float -
    -

    div-before

    - -
    -
    -

    div-1

    - -
    -

    div-1a

    -

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer pretium dui sit amet felis. Integer sit amet diam. Phasellus ultrices viverra velit.

    -
    - -
    -

    div-1b

    -

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer pretium dui sit amet felis. Integer sit amet diam. Phasellus ultrices viverra velit. Nam mattis, arcu ut bibendum commodo, magna nisi tincidunt tortor, quis accumsan augue ipsum id lorem.

    -
    - -

    div-1c

    -
    -
    - -

    div-after

    -
    - -float columns -
    -

    div-before

    - -
    -
    -

    div-1

    - -
    -

    div-1a

    -

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer pretium dui sit amet felis. Integer sit amet diam. Phasellus ultrices viverra velit.

    -
    - -
    -

    div-1b

    -

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer pretium dui sit amet felis. Integer sit amet diam. Phasellus ultrices viverra velit. Nam mattis, arcu ut bibendum commodo, magna nisi tincidunt tortor, quis accumsan augue ipsum id lorem.

    -
    - -

    div-1c

    -
    -
    - -

    div-after

    -
    - -float columns with clear -
    -

    div-before

    - -
    -
    -

    div-1

    - -
    -

    div-1a

    -

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer pretium dui sit amet felis. Integer sit amet diam. Phasellus ultrices viverra velit.

    -
    - -
    -

    div-1b

    -

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer pretium dui sit amet felis. Integer sit amet diam. Phasellus ultrices viverra velit. Nam mattis, arcu ut bibendum commodo, magna nisi tincidunt tortor, quis accumsan augue ipsum id lorem.

    -
    - -

    div-1c

    -
    -
    - -

    div-after

    -
    - - - - diff --git a/www/test/css_position_fixed.html b/www/test/css_position_fixed.html deleted file mode 100644 index 6e12e0c..0000000 --- a/www/test/css_position_fixed.html +++ /dev/null @@ -1,216 +0,0 @@ - - - - - - Printed document - - - - - - - -
    -
    - Header line 1
    - Header line 2
    - Header line 3
    - Header line 4
    -
    -
    - - - -
    -
    - -
    -
    - -

    Section 1

    - -

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Sed non -risus. Suspendisse lectus tortor, dignissim sit amet, adipiscing nec, -ultricies sed, dolor. Cras elementum ultrices diam. Maecenas ligula -massa, varius a, semper congue, euismod non, mi. Proin porttitor, orci -nec nonummy molestie, enim est eleifend mi, non fermentum diam nisl sit -amet erat. Duis semper. Duis arcu massa, scelerisque vitae, consequat -in, pretium a, enim. Pellentesque congue. Ut in risus volutpat libero -pharetra tempor. Cras vestibulum bibendum augue. Praesent egestas leo -in pede. Praesent blandit odio eu enim. Pellentesque sed dui ut augue -blandit sodales. Vestibulum ante ipsum primis in faucibus orci luctus -et ultrices posuere cubilia Curae; Aliquam nibh. Mauris ac mauris sed -pede pellentesque fermentum. Maecenas adipiscing ante non diam sodales -hendrerit.

    - -
    - -

    Section 2

    - -

    Ut velit mauris, egestas sed, gravida nec, ornare ut, mi. Aenean ut -orci vel massa suscipit pulvinar. Nulla sollicitudin. Fusce varius, -ligula non tempus aliquam, nunc turpis ullamcorper nibh, in tempus -sapien eros vitae ligula. Pellentesque rhoncus nunc et augue. Integer -id felis. Curabitur aliquet pellentesque diam. Integer quis metus vitae -elit lobortis egestas. Lorem ipsum dolor sit amet, consectetuer -adipiscing elit. Morbi vel erat non mauris convallis vehicula. Nulla et -sapien. Integer tortor tellus, aliquam faucibus, convallis id, congue -eu, quam. Mauris ullamcorper felis vitae erat. Proin feugiat, augue non -elementum posuere, metus purus iaculis lectus, et tristique ligula -justo vitae magna.

    - -
    - -

    Section 3

    - -

    Aliquam convallis sollicitudin purus. Praesent aliquam, enim at -fermentum mollis, ligula massa adipiscing nisl, ac euismod nibh nisl eu -lectus. Fusce vulputate sem at sapien. Vivamus leo. Aliquam euismod -libero eu enim. Nulla nec felis sed leo placerat imperdiet. Aenean -suscipit nulla in justo. Suspendisse cursus rutrum augue. Nulla -tincidunt tincidunt mi. Curabitur iaculis, lorem vel rhoncus faucibus, -felis magna fermentum augue, et ultricies lacus lorem varius purus. -Curabitur eu amet.

    - -

    Aliquam convallis sollicitudin purus. Praesent aliquam, enim at -fermentum mollis, ligula massa adipiscing nisl, ac euismod nibh nisl eu -lectus. Fusce vulputate sem at sapien. Vivamus leo. Aliquam euismod -libero eu enim. Nulla nec felis sed leo placerat imperdiet. Aenean -suscipit nulla in justo. Suspendisse cursus rutrum augue. Nulla -tincidunt tincidunt mi. Curabitur iaculis, lorem vel rhoncus faucibus, -felis magna fermentum augue, et ultricies lacus lorem varius purus. -Curabitur eu amet.

    - -

    Aliquam convallis sollicitudin purus. Praesent aliquam, enim at -fermentum mollis, ligula massa adipiscing nisl, ac euismod nibh nisl eu -lectus. Fusce vulputate sem at sapien. Vivamus leo. Aliquam euismod -libero eu enim. Nulla nec felis sed leo placerat imperdiet. Aenean -suscipit nulla in justo. Suspendisse cursus rutrum augue. Nulla -tincidunt tincidunt mi. Curabitur iaculis, lorem vel rhoncus faucibus, -felis magna fermentum augue, et ultricies lacus lorem varius purus. -Curabitur eu amet.

    - -

    Aliquam convallis sollicitudin purus. Praesent aliquam, enim at -fermentum mollis, ligula massa adipiscing nisl, ac euismod nibh nisl eu -lectus. Fusce vulputate sem at sapien. Vivamus leo. Aliquam euismod -libero eu enim. Nulla nec felis sed leo placerat imperdiet. Aenean -suscipit nulla in justo. Suspendisse cursus rutrum augue. Nulla -tincidunt tincidunt mi. Curabitur iaculis, lorem vel rhoncus faucibus, -felis magna fermentum augue, et ultricies lacus lorem varius purus. -Curabitur eu amet.

    - -

    Aliquam convallis sollicitudin purus. Praesent aliquam, enim at -fermentum mollis, ligula massa adipiscing nisl, ac euismod nibh nisl eu -lectus. Fusce vulputate sem at sapien. Vivamus leo. Aliquam euismod -libero eu enim. Nulla nec felis sed leo placerat imperdiet. Aenean -suscipit nulla in justo. Suspendisse cursus rutrum augue. Nulla -tincidunt tincidunt mi. Curabitur iaculis, lorem vel rhoncus faucibus, -felis magna fermentum augue, et ultricies lacus lorem varius purus. -Curabitur eu amet.

    - -

    Aliquam convallis sollicitudin purus. Praesent aliquam, enim at -fermentum mollis, ligula massa adipiscing nisl, ac euismod nibh nisl eu -lectus. Fusce vulputate sem at sapien. Vivamus leo. Aliquam euismod -libero eu enim. Nulla nec felis sed leo placerat imperdiet. Aenean -suscipit nulla in justo. Suspendisse cursus rutrum augue. Nulla -tincidunt tincidunt mi. Curabitur iaculis, lorem vel rhoncus faucibus, -felis magna fermentum augue, et ultricies lacus lorem varius purus. -Curabitur eu amet.

    - -

    Aliquam convallis sollicitudin purus. Praesent aliquam, enim at -fermentum mollis, ligula massa adipiscing nisl, ac euismod nibh nisl eu -lectus. Fusce vulputate sem at sapien. Vivamus leo. Aliquam euismod -libero eu enim. Nulla nec felis sed leo placerat imperdiet. Aenean -suscipit nulla in justo. Suspendisse cursus rutrum augue. Nulla -tincidunt tincidunt mi. Curabitur iaculis, lorem vel rhoncus faucibus, -felis magna fermentum augue, et ultricies lacus lorem varius purus. -Curabitur eu amet.

    - -

    Aliquam convallis sollicitudin purus. Praesent aliquam, enim at -fermentum mollis, ligula massa adipiscing nisl, ac euismod nibh nisl eu -lectus. Fusce vulputate sem at sapien. Vivamus leo. Aliquam euismod -libero eu enim. Nulla nec felis sed leo placerat imperdiet. Aenean -suscipit nulla in justo. Suspendisse cursus rutrum augue. Nulla -tincidunt tincidunt mi. Curabitur iaculis, lorem vel rhoncus faucibus, -felis magna fermentum augue, et ultricies lacus lorem varius purus. -Curabitur eu amet.

    - -

    Aliquam convallis sollicitudin purus. Praesent aliquam, enim at -fermentum mollis, ligula massa adipiscing nisl, ac euismod nibh nisl eu -lectus. Fusce vulputate sem at sapien. Vivamus leo. Aliquam euismod -libero eu enim. Nulla nec felis sed leo placerat imperdiet. Aenean -suscipit nulla in justo. Suspendisse cursus rutrum augue. Nulla -tincidunt tincidunt mi. Curabitur iaculis, lorem vel rhoncus faucibus, -felis magna fermentum augue, et ultricies lacus lorem varius purus. -Curabitur eu amet.

    - -

    Aliquam convallis sollicitudin purus. Praesent aliquam, enim at -fermentum mollis, ligula massa adipiscing nisl, ac euismod nibh nisl eu -lectus. Fusce vulputate sem at sapien. Vivamus leo. Aliquam euismod -libero eu enim. Nulla nec felis sed leo placerat imperdiet. Aenean -suscipit nulla in justo. Suspendisse cursus rutrum augue. Nulla -tincidunt tincidunt mi. Curabitur iaculis, lorem vel rhoncus faucibus, -felis magna fermentum augue, et ultricies lacus lorem varius purus. -Curabitur eu amet.

    - - diff --git a/www/test/css_selectors.html b/www/test/css_selectors.html deleted file mode 100644 index baa7b8f..0000000 --- a/www/test/css_selectors.html +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - - -a[target=equal_1] -a[target='equal_2'] -a[target="equal_3"] - -a[href$=ends_1] -a[href$='ends_2'] -a[href$="ends_3"] - -

    -a[href*=contains_1] -a[href*='contains_2'] -a[href*="contains_3"] -

    - -a[href^=starts_1] -a[href^='starts_2'] -a[href^="starts_3"] - - - diff --git a/www/test/css_table_height.html b/www/test/css_table_height.html deleted file mode 100644 index ec638b0..0000000 --- a/www/test/css_table_height.html +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - -
    Some text
    - - diff --git a/www/test/css_table_layout_fixed.html b/www/test/css_table_layout_fixed.html deleted file mode 100644 index d8a7469..0000000 --- a/www/test/css_table_layout_fixed.html +++ /dev/null @@ -1,483 +0,0 @@ - - - - -Insert title here - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Reallyyyyyyyyyy Looooooong cell conteeeentshortNormal cell content
    shortReallyyyyyyyyyyLooooooong cell conteeeentNormal cell content
    Reallyyyyyyyyyy Looooooong cell conteeeentshortNormal cell content
    shortReallyyyyyyyyyyLooooooong cell conteeeentNormal cell content
    Reallyyyyyyyyyy Looooooong cell conteeeentshortNormal cell content
    shortReallyyyyyyyyyyLooooooong cell conteeeentNormal cell content
    Reallyyyyyyyyyy Looooooong cell conteeeentshortNormal cell content
    shortReallyyyyyyyyyyLooooooong cell conteeeentNormal cell content
    Reallyyyyyyyyyy Looooooong cell conteeeentshortNormal cell content
    shortReallyyyyyyyyyyLooooooong cell conteeeentNormal cell content
    Reallyyyyyyyyyy Looooooong cell conteeeentshortNormal cell content
    shortReallyyyyyyyyyyLooooooong cell conteeeentNormal cell content
    Reallyyyyyyyyyy Looooooong cell conteeeentshortNormal cell content
    shortReallyyyyyyyyyyLooooooong cell conteeeentNormal cell content
    Reallyyyyyyyyyy Looooooong cell conteeeentshortNormal cell content
    shortReallyyyyyyyyyyLooooooong cell conteeeentNormal cell content
    Reallyyyyyyyyyy Looooooong cell conteeeentshortNormal cell content
    shortReallyyyyyyyyyyLooooooong cell conteeeentNormal cell content
    Reallyyyyyyyyyy Looooooong cell conteeeentshortNormal cell content
    shortReallyyyyyyyyyyLooooooong cell conteeeentNormal cell content
    Reallyyyyyyyyyy Looooooong cell conteeeentshortNormal cell content
    shortReallyyyyyyyyyyLooooooong cell conteeeentNormal cell content
    Reallyyyyyyyyyy Looooooong cell conteeeentshortNormal cell content
    shortReallyyyyyyyyyyLooooooong cell conteeeentNormal cell content
    Reallyyyyyyyyyy Looooooong cell conteeeentshortNormal cell content
    shortReallyyyyyyyyyyLooooooong cell conteeeentNormal cell content
    Reallyyyyyyyyyy Looooooong cell conteeeentshortNormal cell content
    shortReallyyyyyyyyyyLooooooong cell conteeeentNormal cell content
    Reallyyyyyyyyyy Looooooong cell conteeeentshortNormal cell content
    shortReallyyyyyyyyyyLooooooong cell conteeeentNormal cell content
    Reallyyyyyyyyyy Looooooong cell conteeeentshortNormal cell content
    shortReallyyyyyyyyyyLooooooong cell conteeeentNormal cell content
    Reallyyyyyyyyyy Looooooong cell conteeeentshortNormal cell content
    shortReallyyyyyyyyyyLooooooong cell conteeeentNormal cell content
    Reallyyyyyyyyyy Looooooong cell conteeeentshortNormal cell content
    shortReallyyyyyyyyyyLooooooong cell conteeeentNormal cell content
    Reallyyyyyyyyyy Looooooong cell conteeeentshortNormal cell content
    shortReallyyyyyyyyyyLooooooong cell conteeeentNormal cell content
    Reallyyyyyyyyyy Looooooong cell conteeeentshortNormal cell content
    shortReallyyyyyyyyyyLooooooong cell conteeeentNormal cell content
    Reallyyyyyyyyyy Looooooong cell conteeeentshortNormal cell content
    shortReallyyyyyyyyyyLooooooong cell conteeeentNormal cell content
    Reallyyyyyyyyyy Looooooong cell conteeeentshortNormal cell content
    shortReallyyyyyyyyyyLooooooong cell conteeeentNormal cell content
    Reallyyyyyyyyyy Looooooong cell conteeeentshortNormal cell content
    shortReallyyyyyyyyyyLooooooong cell conteeeentNormal cell content
    Reallyyyyyyyyyy Looooooong cell conteeeentshortNormal cell content
    shortReallyyyyyyyyyyLooooooong cell conteeeentNormal cell content
    Reallyyyyyyyyyy Looooooong cell conteeeentshortNormal cell content
    shortReallyyyyyyyyyyLooooooong cell conteeeentNormal cell content
    Reallyyyyyyyyyy Looooooong cell conteeeentshortNormal cell content
    shortReallyyyyyyyyyyLooooooong cell conteeeentNormal cell content
    Reallyyyyyyyyyy Looooooong cell conteeeentshortNormal cell content
    shortReallyyyyyyyyyyLooooooong cell conteeeentNormal cell content
    Reallyyyyyyyyyy Looooooong cell conteeeentshortNormal cell content
    shortReallyyyyyyyyyyLooooooong cell conteeeentNormal cell content
    Reallyyyyyyyyyy Looooooong cell conteeeentshortNormal cell content
    shortReallyyyyyyyyyyLooooooong cell conteeeentNormal cell content
    Reallyyyyyyyyyy Looooooong cell conteeeentshortNormal cell content
    shortReallyyyyyyyyyyLooooooong cell conteeeentNormal cell content
    Reallyyyyyyyyyy Looooooong cell conteeeentshortNormal cell content
    shortReallyyyyyyyyyyLooooooong cell conteeeentNormal cell content
    Reallyyyyyyyyyy Looooooong cell conteeeentshortNormal cell content
    shortReallyyyyyyyyyyLooooooong cell conteeeentNormal cell content
    Reallyyyyyyyyyy Looooooong cell conteeeentshortNormal cell content
    shortReallyyyyyyyyyyLooooooong cell conteeeentNormal cell content
    Reallyyyyyyyyyy Looooooong cell conteeeentshortNormal cell content
    shortReallyyyyyyyyyyLooooooong cell conteeeentNormal cell content
    Reallyyyyyyyyyy Looooooong cell conteeeentshortNormal cell content
    shortReallyyyyyyyyyyLooooooong cell conteeeentNormal cell content
    Reallyyyyyyyyyy Looooooong cell conteeeentshortNormal cell content
    shortReallyyyyyyyyyyLooooooong cell conteeeentNormal cell content
    Reallyyyyyyyyyy Looooooong cell conteeeentshortNormal cell content
    shortReallyyyyyyyyyyLooooooong cell conteeeentNormal cell content
    Reallyyyyyyyyyy Looooooong cell conteeeentshortNormal cell content
    shortReallyyyyyyyyyyLooooooong cell conteeeentNormal cell content
    Reallyyyyyyyyyy Looooooong cell conteeeentshortNormal cell content
    shortReallyyyyyyyyyyLooooooong cell conteeeentNormal cell content
    Reallyyyyyyyyyy Looooooong cell conteeeentshortNormal cell content
    shortReallyyyyyyyyyyLooooooong cell conteeeentNormal cell content
    Reallyyyyyyyyyy Looooooong cell conteeeentshortNormal cell content
    shortReallyyyyyyyyyyLooooooong cell conteeeentNormal cell content
    Reallyyyyyyyyyy Looooooong cell conteeeentshortNormal cell content
    shortReallyyyyyyyyyyLooooooong cell conteeeentNormal cell content
    Reallyyyyyyyyyy Looooooong cell conteeeentshortNormal cell content
    shortReallyyyyyyyyyyLooooooong cell conteeeentNormal cell content
    Reallyyyyyyyyyy Looooooong cell conteeeentshortNormal cell content
    shortReallyyyyyyyyyyLooooooong cell conteeeentNormal cell content
    Reallyyyyyyyyyy Looooooong cell conteeeentshortNormal cell content
    shortReallyyyyyyyyyyLooooooong cell conteeeentNormal cell content
    Reallyyyyyyyyyy Looooooong cell conteeeentshortNormal cell content
    shortReallyyyyyyyyyyLooooooong cell conteeeentNormal cell content
    Reallyyyyyyyyyy Looooooong cell conteeeentshortNormal cell content
    shortReallyyyyyyyyyyLooooooong cell conteeeentNormal cell content
    - - \ No newline at end of file diff --git a/www/test/css_text_align.html b/www/test/css_text_align.html deleted file mode 100644 index c795af2..0000000 --- a/www/test/css_text_align.html +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - - -

    text-align: left

    -
    -Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec at odio vitae libero tempus -convallis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus -mus. Vestibulum purus mauris, dapibus eu, sagittis quis, sagittis quis, mi. Morbi fringilla -massa quis velit. Curabitur metus massa, semper mollis, molestie vel, adipiscing nec, massa. -
    -Phasellus vitae felis sed lectus dapibus facilisis. In ultrices sagittis ipsum. In at est. Integer -iaculis turpis vel magna. Cras eu est. Integer porttitor ligula a tellus. Curabitur accumsan ipsum -a velit. Sed laoreet lectus quis leo. Nulla pellentesque molestie ante. Quisque vestibulum est id -justo. Ut pellentesque ante in neque. -
    - -

    text-align: center

    -
    -Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec at odio vitae libero tempus -convallis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus -mus. Vestibulum purus mauris, dapibus eu, sagittis quis, sagittis quis, mi. Morbi fringilla -massa quis velit. Curabitur metus massa, semper mollis, molestie vel, adipiscing nec, massa. -
    -Phasellus vitae felis sed lectus dapibus facilisis. In ultrices sagittis ipsum. In at est. Integer -iaculis turpis vel magna. Cras eu est. Integer porttitor ligula a tellus. Curabitur accumsan ipsum -a velit. Sed laoreet lectus quis leo. Nulla pellentesque molestie ante. Quisque vestibulum est id -justo. Ut pellentesque ante in neque. -
    - -

    text-align: right

    -
    -Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec at odio vitae libero tempus -convallis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus -mus. Vestibulum purus mauris, dapibus eu, sagittis quis, sagittis quis, mi. Morbi fringilla -massa quis velit. Curabitur metus massa, semper mollis, molestie vel, adipiscing nec, massa. -
    -Phasellus vitae felis sed lectus dapibus facilisis. In ultrices sagittis ipsum. In at est. Integer -iaculis turpis vel magna. Cras eu est. Integer porttitor ligula a tellus. Curabitur accumsan ipsum -a velit. Sed laoreet lectus quis leo. Nulla pellentesque molestie ante. Quisque vestibulum est id -justo. Ut pellentesque ante in neque. -
    - -

    text-align: justify

    -
    -Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec at odio vitae libero tempus -convallis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus -mus. Vestibulum purus mauris, dapibus eu, sagittis quis, sagittis quis, mi. Morbi fringilla -massa quis velit. Curabitur metus massa, semper mollis, molestie vel, adipiscing nec, massa. -
    -Phasellus vitae felis sed lectus dapibus facilisis. In ultrices sagittis ipsum. In at est. Integer -iaculis turpis vel magna. Cras eu est. Integer porttitor ligula a tellus. Curabitur accumsan ipsum -a velit. Sed laoreet lectus quis leo. Nulla pellentesque molestie ante. Quisque vestibulum est id -justo. Ut pellentesque ante in neque. -
    - - - diff --git a/www/test/css_text_decoration.html b/www/test/css_text_decoration.html deleted file mode 100644 index 11015bf..0000000 --- a/www/test/css_text_decoration.html +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - - -

    - underline line-through overline -

    -

    - underline line-through overline -

    -

    - underline line-through overline -

    -

    - underline line-through overline -

    - -

    - underline line-through overline -

    -

    - underline line-through overline -

    -

    - underline line-through overline -

    -

    - underline line-through overline -

    - -

    - underline line-through overline -

    -

    - underline line-through overline -

    -

    - underline line-through overline -

    -

    - underline line-through overline -

    - -

    - underline line-through overline -

    -

    - underline line-through overline -

    -

    - underline line-through overline -

    -

    - underline line-through overline -

    - -

    - underline line-through overline -

    -

    - underline line-through overline -

    -

    - underline line-through overline -

    -

    - underline line-through overline -

    - - - diff --git a/www/test/css_vertical_align.html b/www/test/css_vertical_align.html deleted file mode 100644 index ac447a6..0000000 --- a/www/test/css_vertical_align.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - -

    [Image]test

    -

    [Image]test

    -

    [Image]test

    -

    [Image]test

    -

    [Image]test

    -

    [Image]test

    -

    [Image]test

    -

    [Image]test

    - - - diff --git a/www/test/css_vertical_align_w3.html b/www/test/css_vertical_align_w3.html deleted file mode 100644 index d1e426b..0000000 --- a/www/test/css_vertical_align_w3.html +++ /dev/null @@ -1,286 +0,0 @@ - - - -CSS1 Test Suite: 5.4.4 vertical-align - - - - - - - -

    The style declarations which apply to the text below are:

    -
    P {font-size: 12pt;}
    -.one {vertical-align: sub;}
    -.two {vertical-align: super;}
    -.three {vertical-align: top; font-size: 12pt;}
    -.four {vertical-align: text-top; font-size: 12pt;}
    -.five {vertical-align: middle; font-size: 12pt;}
    -.six {vertical-align: bottom; font-size: 12pt;}
    -.seven {vertical-align: text-bottom; font-size: 12pt;}
    -.eight {vertical-align: baseline; font-size: 12pt;}
    -.nine {vertical-align: 50%; font-size: 12px; line-height: 16px;}
    -
    -P.example {font-size: 14pt;}
    -BIG {font-size: 16pt;}
    -SMALL {font-size: 12pt;}
    -.ttopalign {vertical-align: text-top;}
    -.topalign {vertical-align: top;}
    -.midalign {vertical-align: middle;}
    -
    -
    -
    -

    -[Image]The first four words in this sentence should be subscript-aligned. The font size of the superscripted text should not be different from that of the parent element. -

    -

    -[Image]The first four words in this sentence should be superscript-aligned. The font size of the subscripted text should not be different from that of the parent element. -

    -

    -[Image]The first four words in this sentence should be top-aligned, which will align their tops with the top of the tallest element in the line (probably the orange rectangle). -

    -

    -[Image] - -The first four words in this sentence should be text-top-aligned, which should align their tops with the top of the tallest text in the line. - -

    -

    -[Image] -The image at the beginning of this sentence should be middle-aligned, which should align its middle with the point defined as the text baseline plus half the x-height. -

    -

    -[Image] - -The first four words in this sentence should be 12pt in size and bottom-aligned, which should align their bottom with the bottom of the lowest element in the line. - -

    -

    -[Image] - -The first eight words ("eight" has a descender) in this sentence should be 12pt in size and text-bottom-aligned, which should align their bottom with the bottom of the lowest text (including descenders) in the line. - -

    -

    -[Image] - -The first four words in this sentence should be 12pt in size and baseline-aligned, which should align their baseline with the baseline of the rest of the text in the line. - -

    -

    -[Image]The first four words in this sentence should have a font-size of 12px and a line-height of 16px; they are also 50%-aligned, which should raise them 8px relative to the natural baseline. -

    -

    -In the following paragraph, all images should be aligned with the top of the 14-point text, which is identical to the first section of text, whereas any size text should be aligned with the text baseline (which is the default value). -

    -

    -This paragraph -[Image] -contains many images -[Image] -of varying heights -[Image] -and widths -[Image] -all of which -[Image] -should be aligned -[Image] -with the top of -[Image] -a 14-point text element -[Image] -regardless of the line in which -[Image] -the images appear. -[Image] -

    -

    -In the following paragraph, all images should be aligned with the middle of the default text, whereas any text should be aligned with the text baseline (which is the default value). -

    -

    -This paragraph -[Image] -contains many images -[Image] -of varying heights -[Image] -and widths -[Image] -all of which -[Image] -should be aligned -[Image] -with the middle of -[Image] -a 14-point text element -[Image] -regardless of the line in which -[Image] -the images appear. -[Image] -

    -

    -In the following paragraph, all elements should be aligned with the top of the tallest element on the line, whether that element is an image or not. Each fragment of text has been SPANned appropriately in order to cause this to happen. -

    -

    -This paragraph -[Image] -contains many images -[Image] -and some text -[Image] -of varying heights -[Image] -and widths -[Image] -all of which -[Image] -should be aligned -[Image] -with the top of -[Image] -the tallest element in -[Image] -whichever line the elements appear. -[Image] -

    - - -TABLE Testing Section - -

    -[Image]The first four words in this sentence should be subscript-aligned. The font size of the superscripted text should not be different from that of the parent element. -

    -

    -[Image]The first four words in this sentence should be superscript-aligned. The font size of the subscripted text should not be different from that of the parent element. -

    -

    -[Image]The first four words in this sentence should be top-aligned, which will align their tops with the top of the tallest element in the line (probably the orange rectangle). -

    -

    -[Image] - -The first four words in this sentence should be text-top-aligned, which should align their tops with the top of the tallest text in the line. - -

    -

    -[Image] -The image at the beginning of this sentence should be middle-aligned, which should align its middle with the point defined as the text baseline plus half the x-height. -

    -

    -[Image] - -The first four words in this sentence should be 12pt in size and bottom-aligned, which should align their bottom with the bottom of the lowest element in the line. - -

    -

    -[Image] - -The first eight words ("eight" has a descender) in this sentence should be 12pt in size and text-bottom-aligned, which should align their bottom with the bottom of the lowest text (including descenders) in the line. - -

    -

    -[Image] - -The first four words in this sentence should be 12pt in size and baseline-aligned, which should align their baseline with the baseline of the rest of the text in the line. - -

    -

    -[Image]The first four words in this sentence should have a font-size of 12px and a line-height of 16px; they are also 50%-aligned, which should raise them 8px relative to the natural baseline. -

    -

    -In the following paragraph, all images should be aligned with the top of the 14-point text, which is identical to the first section of text, whereas any size text should be aligned with the text baseline (which is the default value). -

    -

    -This paragraph -[Image] -contains many images -[Image] -of varying heights -[Image] -and widths -[Image] -all of which -[Image] -should be aligned -[Image] -with the top of -[Image] -a 14-point text element -[Image] -regardless of the line in which -[Image] -the images appear. -[Image] -

    -

    -In the following paragraph, all images should be aligned with the middle of the default text, whereas any text should be aligned with the text baseline (which is the default value). -

    -

    -This paragraph -[Image] -contains many images -[Image] -of varying heights -[Image] -and widths -[Image] -all of which -[Image] -should be aligned -[Image] -with the middle of -[Image] -a 14-point text element -[Image] -regardless of the line in which -[Image] -the images appear. -[Image] -

    -

    -In the following paragraph, all elements should be aligned with the top of the tallest element on the line, whether that element is an image or not. Each fragment of text has been SPANned appropriately in order to cause this to happen. -

    -

    -This paragraph -[Image] -contains many images -[Image] -and some text -[Image] -of varying heights -[Image] -and widths -[Image] -all of which -[Image] -should be aligned -[Image] -with the top of -[Image] -the tallest element in -[Image] -whichever line the elements appear. -[Image] -

    - - diff --git a/www/test/css_whitespace.html b/www/test/css_whitespace.html deleted file mode 100644 index 5d9ef88..0000000 --- a/www/test/css_whitespace.html +++ /dev/null @@ -1,113 +0,0 @@ - - - - - - CSS white-space property - - - - - - -
    -

    CSS white-space property

    -

    Given this CSS code:

    -
    -p {
    -  width:100px;
    -  background-color:orange;
    -  margin:10px 0;
    -  font-family:monospace;
    -}
    -
    -

    and this HTML code:

    -
    -<p>
    -P
    -  A
    -    R
    -      A
    -        G
    -          R
    -            A
    -              P
    -                H
    -</p>
    -
    -

    Depending on the white-space property, the resulting presentation will be:

    -
    -

    normal

    -

    -P - A - R - A - G - R - A - P - H -

    -
    -

    nowrap

    -

    -P - A - R - A - G - R - A - P - H -

    -
    -

    pre

    -

    -P - A - R - A - G - R - A - P - H -

    -
    -

    pre-wrap

    -

    -P - A - R - A - G - R - A - P - H -

    -
    -

    pre-line

    -

    -P - A - R - A - G - R - A - P - H -

    - -
    - - - diff --git a/www/test/css_word_wrap.html b/www/test/css_word_wrap.html deleted file mode 100644 index b0b1853..0000000 --- a/www/test/css_word_wrap.html +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - -

    break-word

    -
    -

    I'm a veeeeeeeerryyyyyy loooooooonggggggg teeeeexxxtttt

    -

    http://www.w3.org/TR/2011/WD-css3-text-20110412/

    -
    - -

    normal

    -
    -

    I'm a veeeeeeeerryyyyyy loooooooonggggggg teeeeexxxtttt

    -

    http://www.w3.org/TR/2011/WD-css3-text-20110412/

    -
    - - - diff --git a/www/test/css_z_index.html b/www/test/css_z_index.html deleted file mode 100644 index 0c097ae..0000000 --- a/www/test/css_z_index.html +++ /dev/null @@ -1,40 +0,0 @@ - - - - - z-index - - - - -
    - z-index: 3, order: 1 -
    - -
    - z-index: 2, order: 2 -
    - -
    - z-index: 1, order: 3 -
    - -
    - z-index: auto, order: 1 -
    - -
    - z-index: auto, order: 2 -
    - -
    - z-index: auto, order: 3 -
    - - - \ No newline at end of file diff --git a/www/test/demo_01.html b/www/test/demo_01.html deleted file mode 100644 index d469638..0000000 --- a/www/test/demo_01.html +++ /dev/null @@ -1,214 +0,0 @@ - - - - - - - - -
    - -
    -
    - -
    - -
    - - - - - -

    SCHEDULE A

    Job: 132-003

    - - - - - - - - - - - - - - - - -
    Job: 132-003Purchasers(s): Palmer
    Created: 2004-08-13Last Change: 2004-08-16 9:28 AM
    Address: 667 Pine Lodge Dr.Legal: N/A
    - - - - - - - - - - -
    Model: FranklinElevation: BSize: 1160 Cu. Ft.Style: Reciprocating
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    Standard Items:

    ItemDescriptionQuantityUnit CostTotal
    1Sprockets (13 tooth)50$10.00Ea.$5,000.00
    2Cogs (Cylindrical)45$25.00Ea.$1125.00
    3Gears (15 tooth)32$19.00Ea.$608.00
    4Leaf springs (13 N/m)6$125.00Ea.$750.00
    5Coil springs (6 N/deg)7$11.00Ea.$77.00
    (Tax is not included; it will be collected on closing.)GRAND TOTAL:$7560.00
    - - - - - - - - - - - - - - - - - - - - -
    WITNESS: PURCHASER:X
     Mr. Leland Palmer
    -This change order shall have no force or effect until approved and signed -by an authorizing signing officer of the supplier. Any change or special -request not noted on this document is not contractual. -
    ACCEPTED THIS -  -DAY OF  , -20 . -TWIN PEAKS SUPPLY LTD.

    -PER: -  -
    - -
    - -
    -
    - - - - - \ No newline at end of file diff --git a/www/test/dom_anchor_link.html b/www/test/dom_anchor_link.html deleted file mode 100644 index bc9399a..0000000 --- a/www/test/dom_anchor_link.html +++ /dev/null @@ -1,210 +0,0 @@ - - - - - - - - - -

    Lorem ipsum dolor sit amet

    -

    Anchor 1

    - -

    link to anchor3

    -

    dompdf.github.com

    -

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec at -odio vitae libero tempus convallis. Cum sociis natoque penatibus et -magnis dis parturient montes, nascetur ridiculus mus. Vestibulum purus -mauris, dapibus eu, sagittis quis, sagittis quis, mi. Morbi fringilla -massa quis velit. Curabitur metus massa, semper mollis, molestie vel, -adipiscing nec, massa. Phasellus vitae felis sed lectus dapibus -facilisis. In ultrices sagittis ipsum. In at est. Integer iaculis -turpis vel magna. Cras eu est. Integer porttitor ligula a -tellus. Curabitur accumsan ipsum a velit. Sed laoreet lectus quis -leo. Nulla pellentesque molestie ante. Quisque vestibulum est id -justo. Ut pellentesque ante in neque.

    - -

    Curabitur ut diam eu dui vestibulum pharetra. Nam pellentesque, justo -non hendrerit venenatis, mi orci pretium mi, et vehicula leo arcu quis -diam. Nullam mattis laoreet quam. Morbi mollis sem ut tellus. Nam mi -massa, lobortis eu, sollicitudin et, iaculis et, massa. Maecenas purus -mauris, luctus sit amet, pharetra in, facilisis sit amet, elit. Nullam -vel erat tempus purus molestie suscipit. Vestibulum odio lorem, -sollicitudin non, volutpat sit amet, tincidunt vel, nunc. Nulla quis -ante vestibulum odio feugiat facilisis. Proin lorem nisl, viverra at, -rhoncus quis, semper nec, mi. Donec euismod enim vitae velit. Nulla -sed lectus. Vivamus placerat, lacus sed vehicula sagittis, arcu massa -adipiscing lorem, bibendum luctus nisl tortor vitae leo.

    - -

    Etiam a mauris. Proin justo elit, accumsan sit amet, tempus et, -blandit id, tellus. Morbi varius, nisi id iaculis aliquam, lacus -ligula facilisis velit, ac pharetra ipsum augue a massa. Etiam rhoncus -commodo orci. Mauris ullamcorper sagittis turpis. Nullam magna libero, -sagittis sed, auctor faucibus, accumsan vitae, urna. Pellentesque -volutpat. Aliquam sapien ipsum, eleifend nec, imperdiet vitae, -consectetuer id, quam. Donec a urna. Suspendisse sit amet -velit. Curabitur quis nisi id dui viverra ornare. Sed condimentum enim -quis tortor. Ut condimentum, magna non tempus tincidunt, leo nibh -molestie tellus, vitae convallis dolor ante sed ante. Nunc et -metus. Phasellus ultricies. Fusce faucibus tortor sit amet mauris.

    - -

    Aliquam enim. Duis et diam. Praesent porta, mauris quis pellentesque -volutpat, erat elit vulputate eros, vitae pulvinar augue velit sit -amet sem. Fusce eu urna eu nisi condimentum posuere. Vivamus sed -felis. Duis eget urna vitae eros interdum dignissim. Proin justo eros, -eleifend in, porttitor in, malesuada non, neque. Etiam sed -augue. Nulla sit amet magna. Lorem ipsum dolor sit amet, consectetuer -adipiscing elit. Mauris facilisis. Curabitur massa magna, pulvinar a, -nonummy eget, egestas vitae, mauris. Quisque vel elit sit amet lorem -malesuada facilisis. Vestibulum porta, metus sit amet egestas -interdum, urna justo euismod erat, id tristique urna leo quis -nibh. Morbi non erat.

    - -

    Cras fringilla, nulla id egestas elementum, augue nunc iaculis nibh, -ac adipiscing nibh justo id tortor. Donec vel orci a nisi ultricies -aliquet. Nunc urna quam, adipiscing molestie, vehicula non, -condimentum non, magna. Integer magna. Donec quam metus, pulvinar id, -suscipit eget, euismod ac, orci. Nulla facilisi. Nullam nec -mauris. Morbi in mi. Etiam urna lectus, pulvinar ac, sollicitudin eu, -euismod ac, lectus. Fusce elit. Sed ultricies odio ac felis.

    - -

    Cras iaculis. Nulla facilisi.

    -

    Anchor 2

    -

    link to anchor1

    -

    Cras iaculis. Nulla facilisi. Fusce vitae arcu. Integer lectus mauris, -ornare vel, accumsan eget, scelerisque vel, nunc. Maecenas justo urna, -volutpat vel, vehicula vel, ullamcorper nec, odio. Suspendisse laoreet -nisi sed erat. Cras convallis sollicitudin sapien. Phasellus ac erat -eu mi rutrum rhoncus. Morbi et velit. Morbi odio nisi, pharetra eget, -sollicitudin sed, aliquam at, nisl. Quisque euismod diam in -sapien. Integer accumsan urna in risus.

    - -

    Proin sit amet nisl. Phasellus dui ipsum, laoreet a, pulvinar id, -fringilla ut, libero. In hac habitasse platea dictumst. Maecenas mi -magna, cursus sed, rutrum eget, molestie nec, dui. Suspendisse -lacus. Vivamus nibh urna, accumsan sit amet, gravida sed, convallis a, -leo. Cras sollicitudin orci sit amet eros. Pellentesque eu odio et -velit tempor dignissim. Morbi vehicula malesuada enim. Pellentesque -tincidunt, tellus ac fringilla tempor, justo libero interdum nunc, eu -sollicitudin tortor augue nec tellus. Nullam eget leo quis tellus -gravida faucibus. Nam gravida. Curabitur rhoncus egestas -nunc. Curabitur mollis, nisi sed suscipit gravida, enim felis interdum -justo, vel accumsan magna nunc ut libero. Ut fermentum. Fusce luctus, -est sit amet feugiat lobortis, nisl eros bibendum libero, ut suscipit -felis ligula in massa. Proin congue elit et nisi. Cras ac nisl. Nunc -ullamcorper neque vel diam.

    - -

    Ut pellentesque arcu ac lectus.

    -

    Sed ac lorem. Ut pellentesque arcu ac lectus. Cum sociis natoque -penatibus et magnis dis parturient montes, nascetur ridiculus -mus. Pellentesque ultrices metus sollicitudin pede. Donec fermentum -est a velit fringilla mollis. Duis ligula. Fusce viverra laoreet -odio. Suspendisse sit amet ligula. Maecenas nunc velit, sagittis eu, -bibendum eu, placerat at, nibh. Praesent ut erat eget nisi gravida -imperdiet. Quisque vitae sapien. Ut eros.

    - -

    Donec eros ligula, dignissim vel, ultricies id, mattis in, massa. Duis -lobortis dui nec orci. Sed ullamcorper metus non massa. Aliquam eget -mauris ac nulla elementum posuere. Sed porta, augue vitae rhoncus -aliquet, felis quam eleifend est, vitae rutrum metus arcu vel -lorem. Proin laoreet, mauris sit amet aliquet eleifend, nisl sem -molestie nisi, eu varius eros ligula non erat. Integer ac -sem. Suspendisse lectus. Aliquam erat volutpat. Fusce sit amet leo -faucibus erat molestie ultrices. Maecenas lacinia lectus eget -dui. Etiam porta porttitor ante. Phasellus sit amet lacus adipiscing -enim mollis iaculis. Fusce congue, nulla a commodo aliquam, erat dui -fermentum dui, pellentesque faucibus orci enim at mauris. Pellentesque -a diam porta magna tempor posuere. Donec lorem.

    - -

    Sed viverra aliquam turpis. Aliquam lacus. Duis id massa. Nullam -ante. Suspendisse condimentum. Donec adipiscing, felis vel semper -sollicitudin, lacus justo pretium est, sed blandit pede risus eu -ante. Praesent ante nulla, fringilla id, ultrices et, feugiat a, -metus. Proin ac velit a metus suscipit fermentum. Integer aliquet. Sed -sapien nulla, placerat at, rutrum at, condimentum quis, libero. In -accumsan, tellus nec tincidunt malesuada, pede arcu commodo ipsum, ac -mattis tortor urna vitae enim. Aenean nonummy, mauris eget commodo -bibendum, augue sem ultrices nunc, eget rhoncus metus erat placerat -lectus. Aliquam mollis lectus in justo. Vivamus iaculis lacus sit amet -ligula. Etiam consectetuer convallis diam. Curabitur sollicitudin, -felis eu vehicula scelerisque, nisl urna aliquam orci, sit amet -laoreet mi turpis id ligula. Donec at enim non nulla adipiscing -dapibus. Aenean nisl.

    - -

    Ut in lacus nec enim volutpat pellentesque. Integer euismod. In odio -eros, malesuada in, mattis vel, tempor nec, sem. In libero tellus, -varius vitae, bibendum in, elementum quis, nisl. Duis tortor. Etiam at -justo. Pellentesque facilisis mauris non nunc. Praesent eros mi, -dapibus eget, placerat ac, lobortis quis, sem. Nulla rhoncus -turpis. Nulla vitae mi. Proin id massa. Nunc eros.

    - -

    Aliquam molestie pulvinar ligula.

    -

    Anchor 3

    -

    link to anchor2

    -

    Vestibulum dui risus, varius ut, semper et, consequat ultrices, -felis. Pellentesque iaculis urna in velit. Ut pharetra. Nunc -fringilla, nisi vitae fringilla placerat, enim justo semper erat, -mollis feugiat leo neque eu sem. Vestibulum orci urna, suscipit a, -accumsan nec, fringilla in, risus. Nullam ante. Nullam nec -eros. Nullam varius. Nulla facilisi. In auctor libero in -metus. Aliquam porttitor congue eros. Nulla facilisi. Mauris euismod -turpis ut felis. Ut nunc nisl, cursus quis, eleifend at, viverra -bibendum, lacus. Donec consequat lacus eu sapien. Fusce pulvinar -lectus quis nunc. In hac habitasse platea dictumst.

    - -

    Aliquam molestie pulvinar ligula. Maecenas imperdiet, urna eget -ultrices adipiscing, nibh ante elementum neque, id molestie massa quam -ut nunc. Nullam porta. Phasellus a magna in sem volutpat -viverra. Quisque aliquet nunc ac turpis. Mauris dolor enim, viverra -rutrum, placerat et, laoreet et, justo. In id nulla. Donec -erat. Phasellus nec mi sed velit mollis cursus. Vestibulum -tincidunt. Praesent dui libero, facilisis eu, vulputate eget, aliquet -nec, ipsum. Pellentesque in nisl in mauris pretium euismod.

    - - diff --git a/www/test/dom_br.html b/www/test/dom_br.html deleted file mode 100644 index 2402bf8..0000000 --- a/www/test/dom_br.html +++ /dev/null @@ -1,46 +0,0 @@ - - - - - -

    Line break test

    -

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec at -odio vitae libero tempus convallis. Cum sociis natoque penatibus et -magnis dis parturient montes, nascetur ridiculus mus. Vestibulum purus -mauris, dapibus eu, sagittis quis, sagittis quis, mi. Morbi fringilla -massa quis velit. Curabitur metus massa, semper mollis, molestie vel,
    -adipiscing nec, massa. Phasellus vitae felis sed lectus dapibus -facilisis. In ultrices sagittis ipsum. In at est. Integer iaculis -turpis vel magna. Cras eu est. Integer porttitor ligula a -
    -
    -tellus. Curabitur accumsan ipsum a velit. Sed laoreet lectus quis -leo. Nulla pellentesque molestie ante. Quisque vestibulum est id -justo. Ut pellentesque ante in neque.

    - -

    Line break at beginning of next paragraph:

    -


    -Line 2

    - -

    Line break within a font tag: -ABCDE
    FGHIJK

    - -

    Line break within two nested spans: span 1 2
    break

    - -

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec at -odio vitae libero tempus convallis. Cum sociis natoque penatibus et -magnis dis parturient montes, nascetur ridiculus mus. Vestibulum purus -mauris, dapibus eu, sagittis quis, sagittis quis, mi. Morbi fringilla -massa quis velit. Curabitur metus massa, semper mollis, molestie vel,
    -adipiscing nec, massa. Phasellus vitae felis sed lectus dapibus -facilisis. In ultrices sagittis ipsum. In at est. Integer iaculis -turpis vel magna. Cras eu est. Integer porttitor ligula a -
    -
    -tellus. Curabitur accumsan ipsum a velit. Sed laoreet lectus quis -leo. Nulla pellentesque molestie ante. Quisque vestibulum est id -justo. Ut pellentesque ante in neque.

    - - - diff --git a/www/test/dom_form_fieldset.html b/www/test/dom_form_fieldset.html deleted file mode 100644 index 7df4397..0000000 --- a/www/test/dom_form_fieldset.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - -Insert title here - - -
    - legend -
    -
    -
    -
    -
    -
    -
    -
    -
    - << input type hidden
    - << input type image
    -
    -
    -
    -
    -
    - - \ No newline at end of file diff --git a/www/test/dom_large_table.html b/www/test/dom_large_table.html deleted file mode 100644 index 0bf5449..0000000 --- a/www/test/dom_large_table.html +++ /dev/null @@ -1,2198 +0,0 @@ - - - - - - - - - - - - - - - -
    -

    SCHEDULE A

    -
    -

    404-135 - Schedule A

    -APPROVED: 2004-11-18 -
    - - - - - - - - - - - - - - - - - - - - - - - - -
    Job:404-135Purchasers: -Komant
    Created:2004-09-28Last change:2004-11-18
    Job address:2904-26 StreetLegal:28B/22/032-5210
    - - - - - - - - - - - - - -
    Model:Elevation:Size:Style:
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ItemDescriptionQuantityUnit CostTotal
    Standard items:
    1add bank of drawers - to bathroom vanity2$125.00Ea.$250.00
    2add sweep outlet - central vac1$100.00Ea.$100.00
    3run central vac rough in to attached garage c/w separate circuit1$120.00Ea.$120.00
    4add fan to FIREPLACE1$195.00Ea.$195.00
    5upgrade to laminate flooring - Entire Main Floor1$2,400.00Ea.$2,400.00
    6upgrade oh door to insulated (9ft)1$95.00Ea.$95.00
    7change upper stairwell ledge to painted MDF1$45.00Ea.$45.00
    8upgrade standard door to pocket door1$145.00Ea.$145.00
    9add RIDP1$400.00Ea.$400.00
    Standard items:
    1add bank of drawers - to bathroom vanity2$125.00Ea.$250.00
    2add sweep outlet - central vac1$100.00Ea.$100.00
    3run central vac rough in to attached garage c/w separate circuit1$120.00Ea.$120.00
    4add fan to FIREPLACE1$195.00Ea.$195.00
    5upgrade to laminate flooring - Entire Main Floor1$2,400.00Ea.$2,400.00
    6upgrade oh door to insulated (9ft)1$95.00Ea.$95.00
    7change upper stairwell ledge to painted MDF1$45.00Ea.$45.00
    8upgrade standard door to pocket door1$145.00Ea.$145.00
    9add RIDP1$400.00Ea.$400.00
    Custom items:
    1upgrade to brushed chrome hardware 1$195.00Ea.$195.00
    2box out FIREPLACE as per plan attached1$250.00Ea.$250.00
    3reduce WIC size by 6" to 8" to allow for large vanity ensuite1$0.00Ea.$0.00
    4add gas line to basement for future gas FP1$300.00Ea.$300.00
    5add pocket dorr to ensuite joining WIC and Ensuite. Delete 2 existing doors1$0.00Ea.$0.00
    6Main floor to be ISLAND Kitchen design1$0.00Ea.$0.00
    7price adjustment1($0.37)Ea.($0.37)
    Custom items:
    1upgrade to brushed chrome hardware 1$195.00Ea.$195.00
    2box out FIREPLACE as per plan attached1$250.00Ea.$250.00
    3reduce WIC size by 6" to 8" to allow for large vanity ensuite1$0.00Ea.$0.00
    4add gas line to basement for future gas FP1$300.00Ea.$300.00
    5add pocket dorr to ensuite joining WIC and Ensuite. Delete 2 existing doors1$0.00Ea.$0.00
    (GST is not included)   -Grand total:$4,494.63
    - - - - - - - - - - - -
    WITNESS: PURCHASER:X
      - Tammy Komant
    -

    This change order shall have no force or effect until approved and signed -by an authorizing signing officer of the Builder. Any change or special -request not noted on this document is not contractual.

    - - - - - - - - -
    ACCEPTED THIS -18 DAY OF NOVEMBER, 2004 -LINCOLNBERG COMMUNITIES

    -PER: -Keith Jansen -
    -
    - - \ No newline at end of file diff --git a/www/test/dom_long_table.php b/www/test/dom_long_table.php deleted file mode 100644 index 86cf239..0000000 --- a/www/test/dom_long_table.php +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - -" . ($i * $j) . "\n"; -} -?> - - -
    Header
    Footer
    - - \ No newline at end of file diff --git a/www/test/dom_nbsp.html b/www/test/dom_nbsp.html deleted file mode 100644 index a47a294..0000000 --- a/www/test/dom_nbsp.html +++ /dev/null @@ -1,29 +0,0 @@ - - - - Non-breaking space - - - -

    Non-breaking space representations:

    - - - - - -
    Non-breaking space character 
    &nbsp; 
    &#160; 
    &#xA0; 
    -

    With non-breaking space:  a  b  c 

    -

    Without non-breaking space: a b c

    -
    - no wrap - no wrap - no wrap - no wrap - no wrap - no wrap - no wrap - no wrap -
    - - diff --git a/www/test/dom_nested_table.html b/www/test/dom_nested_table.html deleted file mode 100644 index c141ad2..0000000 --- a/www/test/dom_nested_table.html +++ /dev/null @@ -1,62 +0,0 @@ - - - - - - - - - - - -
    - - - - - - - -
    foo
    bar
    -
    - - - - - - - - - - -
    - - - - - - - - -
    - - - - - - - - -
    a
    bc
    -
    d
    e
    -
    f
    gh
    - - - \ No newline at end of file diff --git a/www/test/dom_ol.html b/www/test/dom_ol.html deleted file mode 100644 index 2957cb8..0000000 --- a/www/test/dom_ol.html +++ /dev/null @@ -1,162 +0,0 @@ - - - - - - - - - -

    none

    -
      -
    1. Item 1
    2. -
    3. Item 2
    4. -
    5. Item 3
    6. -
    - -

    decimal

    -
      -
    1. Item 1
    2. -
    3. Item 2
    4. -
    5. Item 3
    6. -
    - -

    lower-alpha

    -
      -
    1. Item 1
    2. -
    3. Item 2
    4. -
    5. Item 3
    6. -
    - -

    lower-latin

    -
      -
    1. Item 1
    2. -
    3. Item 2
    4. -
    5. Item 3
    6. -
    - -

    lower-roman

    -
      -
    1. Item 1
    2. -
    3. Item 2
    4. -
    5. Item 3
    6. -
    - -

    lower-greek

    -
      -
    1. Item 1
    2. -
    3. Item 2
    4. -
    5. Item 3
    6. -
    - -

    upper-alpha

    -
      -
    1. Item 1
    2. -
    3. Item 2
    4. -
    5. Item 3
    6. -
    - -

    upper-latin

    -
      -
    1. Item 1
    2. -
    3. Item 2
    4. -
    5. Item 3
    6. -
    - -

    upper-roman

    -
      -
    1. Item 1
    2. -
    3. Item 2
    4. -
    5. Item 3
    6. -
    - -

    Advanced

    -
      -
    1. Item 1
    2. -
    3. Item 2 -
        -
      1. Item 1 -
          -
        1. Item 1
        2. -
        3. Item 2
        4. -
        5. Item 3
        6. -
        -
      2. -
      3. Item 2
      4. -
      5. Item 3 -
          -
        1. Item 1
        2. -
        3. Item 2
        4. -
        5. Item 3
        6. -
        -
      6. -
      -
    4. -
    5. Item 3
    6. -
    - -

    "start" attribute (8)

    -
      -
    1. Item 1
    2. -
    3. Item 2
    4. -
    5. Item 3
    6. -
    - -

    "value" attributes (1, 5, none)

    -
      -
    1. Item 1
    2. -
    3. Item 2
    4. -
    5. Item 3
    6. -
    - -

    decimal-leading-zero

    -
      -
    1. Item #
    2. -
    3. Item #
    4. -
    5. Item #
    6. -
    7. Item #
    8. -
    9. Item #
    10. -
    11. Item #
    12. -
    13. Item #
    14. -
    15. Item #
    16. -
    17. Item #
    18. -
    19. Item #
    20. -
    21. Item #
    22. -
    23. Item #
    24. -
    25. Item #
    26. -
    27. Item #
    28. -
    29. Item #
    30. -
    31. Item #
    32. -
    33. Item #
    34. -
    35. Item #
    36. -
    37. Item #
    38. -
    39. Item #
    40. -
    41. Item #
    42. -
    43. Item #
    44. -
    45. Item #
    46. -
    47. Item #
    48. -
    49. Item #
    50. -
    51. Item #
    52. -
    - - - diff --git a/www/test/dom_simple_ul.html b/www/test/dom_simple_ul.html deleted file mode 100644 index 1d6bd95..0000000 --- a/www/test/dom_simple_ul.html +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - -

    Here's a simple list from my favourite website:

    - -
      -
    • The Zend Engine II with a new object model and dozens of new features.
    • - -
    • XML support has been completely redone in PHP 5, all extensions are - now focused around the excellent libxml2 library - (http://www.xmlsoft.org/).
    • - -
    • A new SimpleXML extension for easily accessing and manipulating XML - as PHP objects. It can also interface with the DOM extension and - vice-versa.
    • - -
    • A brand new built-in SOAP extension for interoperability with Web Services.
    • - -
    • A new MySQL extension named MySQLi for developers using MySQL 4.1 and - later. This new extension includes an object-oriented interface in - addition to a traditional interface; as well as support for many of - MySQL's new features, such as prepared statements.
    • - -
    • SQLite has been bundled with PHP. For more information on SQLite, - please visit their website.
    • - -
    • Streams have been greatly improved, including the ability to access low-level socket operations on streams.
    • - -
    • And lots more...
    • - -
      • Sublists
      • work
      • too!
      -
    - - diff --git a/www/test/dom_table.html b/www/test/dom_table.html deleted file mode 100644 index 1997cbd..0000000 --- a/www/test/dom_table.html +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - - - - -border-collapse: separate - - - - - - - - - - - - - - - - - - - - - - - - -
    head 1head 2head 3head 4
    cell 1cell 2cell 3
    cell 4cell 5
    cell 6
    cell 7
    - -border-collapse: collapse - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    head 1head 2head 3head 4
    cell 1cell 2cell 3cell 4
    cell 5cell 6cell 7
    cell 8cell 9cell 10
    cell 11
    - - - diff --git a/www/test/dom_table_image.html b/www/test/dom_table_image.html deleted file mode 100644 index f563a38..0000000 --- a/www/test/dom_table_image.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - -
    Some Text
    More TextBlah
    - - - diff --git a/www/test/dom_ul.html b/www/test/dom_ul.html deleted file mode 100644 index 7d64ec7..0000000 --- a/www/test/dom_ul.html +++ /dev/null @@ -1,312 +0,0 @@ - - - - - - - - -
      -
    • Item 1
    • -
    • Item 2
    • -
    • Item 3
    • -
      • Sub 1
      • -
      • Sub 2
      • -
      • Sub 3
      • -
      -
    - -
      -
    • Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec at -odio vitae libero tempus convallis. Cum sociis natoque penatibus et -magnis dis parturient montes, nascetur ridiculus mus. Vestibulum purus -mauris, dapibus eu, sagittis quis, sagittis quis, mi. Morbi fringilla -massa quis velit. Curabitur metus massa, semper mollis, molestie vel, -adipiscing nec, massa. Phasellus vitae felis sed lectus dapibus -facilisis. In ultrices sagittis ipsum. In at est. Integer iaculis -turpis vel magna. Cras eu est. Integer porttitor ligula a -tellus. Curabitur accumsan ipsum a velit. Sed laoreet lectus quis -leo. Nulla pellentesque molestie ante. Quisque vestibulum est id -justo. Ut pellentesque ante in neque.
    • -
    • Curabitur ut diam eu dui vestibulum pharetra. Nam pellentesque, justo -non hendrerit venenatis, mi orci pretium mi, et vehicula leo arcu quis -diam. Nullam mattis laoreet quam. Morbi mollis sem ut tellus. Nam mi -massa, lobortis eu, sollicitudin et, iaculis et, massa. Maecenas purus -mauris, luctus sit amet, pharetra in, facilisis sit amet, elit. Nullam -vel erat tempus purus molestie suscipit. Vestibulum odio lorem, -sollicitudin non, volutpat sit amet, tincidunt vel, nunc. Nulla quis -ante vestibulum odio feugiat facilisis. Proin lorem nisl, viverra at, -rhoncus quis, semper nec, mi. Donec euismod enim vitae velit. Nulla -sed lectus. Vivamus placerat, lacus sed vehicula sagittis, arcu massa -adipiscing lorem, bibendum luctus nisl tortor vitae leo.
    • -
    • Inside. Aliquam enim. Duis et diam. Praesent porta, mauris quis pellentesque -volutpat, erat elit vulputate eros, vitae pulvinar augue velit sit -amet sem. Fusce eu urna eu nisi condimentum posuere. Vivamus sed -felis. Duis eget urna vitae eros interdum dignissim. Proin justo eros, -eleifend in, porttitor in, malesuada non, neque. Etiam sed -augue. Nulla sit amet magna. Lorem ipsum dolor sit amet, consectetuer -adipiscing elit. Mauris facilisis. Curabitur massa magna, pulvinar a, -nonummy eget, egestas vitae, mauris. Quisque vel elit sit amet lorem -malesuada facilisis. Vestibulum porta, metus sit amet egestas -interdum, urna justo euismod erat, id tristique urna leo quis -nibh. Morbi non erat.
    • -
    - -
      -
    • Item 1 disc
    • -
    • Item 2 disc
    • -
    • Lorem ipsum dolor sit amet, consectetuer sadipscing elitr, -sed diam nonumy eirmod tempor invidunt ut labore et dolore magna -aliquyam erat, sed diam voluptua. At vero eos et accusam et justo -duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata -sanctus est Lorem ipsum dolor sit amet.
    • -
    • Item 4 disc
    • -
    - -
      -
    • Item 1 circle
    • -
    • Item 2 circle
    • -
    • Lorem ipsum dolor sit amet, consectetuer sadipscing elitr, -sed diam nonumy eirmod tempor invidunt ut labore et dolore magna -aliquyam erat, sed diam voluptua. At vero eos et accusam et justo -duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata -sanctus est Lorem ipsum dolor sit amet.
    • -
    • Item 4 circle
    • -
    - -
      -
    • Item 1 square
    • -
    • Item 2 square
    • -
    • Lorem ipsum dolor sit amet, consectetuer sadipscing elitr, -sed diam nonumy eirmod tempor invidunt ut labore et dolore magna -aliquyam erat, sed diam voluptua. At vero eos et accusam et justo -duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata -sanctus est Lorem ipsum dolor sit amet.
    • -
    • Item 4 square
    • -
    - -
      -
    • Item 1 image
    • -
    • Item 2 image
    • -
    • Lorem ipsum dolor sit amet, consectetuer sadipscing elitr, -sed diam nonumy eirmod tempor invidunt ut labore et dolore magna -aliquyam erat, sed diam voluptua. At vero eos et accusam et justo -duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata -sanctus est Lorem ipsum dolor sit amet.
    • -
    • Item 4 image
    • -
    • Inside. Lorem ipsum dolor sit amet, consectetuer sadipscing elitr, -sed diam nonumy eirmod tempor invidunt ut labore et dolore magna -aliquyam erat, sed diam voluptua. At vero eos et accusam et justo -duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata -sanctus est Lorem ipsum dolor sit amet.
    • -
    • Outside. Lorem ipsum dolor sit amet, consectetuer sadipscing elitr, -sed diam nonumy eirmod tempor invidunt ut labore et dolore magna -aliquyam erat, sed diam voluptua. At vero eos et accusam et justo -duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata -sanctus est Lorem ipsum dolor sit amet.
    • -
    • Item 7 noimage
    • - -
        -
      • sub Item 1 image
      • -
      • sub Item 2 image
      • -
      • Inside. Lorem ipsum dolor sit amet, consectetuer sadipscing elitr, -sed diam nonumy eirmod tempor invidunt ut labore et dolore magna -aliquyam erat, sed diam voluptua. At vero eos et accusam et justo -duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata -sanctus est Lorem ipsum dolor sit amet.
      • -
      • Outside. Lorem ipsum dolor sit amet, consectetuer sadipscing elitr, -sed diam nonumy eirmod tempor invidunt ut labore et dolore magna -aliquyam erat, sed diam voluptua. At vero eos et accusam et justo -duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata -sanctus est Lorem ipsum dolor sit amet.
      • -
      • sub Item 5 noimage
      • -
      - -
    - -
      -
    • Item 1 missing image - fallback square
    • -
    • Item 2 missing image - fallback square
    • -
    • Lorem ipsum dolor sit amet, consectetuer sadipscing elitr, -sed diam nonumy eirmod tempor invidunt ut labore et dolore magna -aliquyam erat, sed diam voluptua. At vero eos et accusam et justo -duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata -sanctus est Lorem ipsum dolor sit amet.
    • -
    • Inside. Lorem ipsum dolor sit amet, consectetuer sadipscing elitr, -sed diam nonumy eirmod tempor invidunt ut labore et dolore magna -aliquyam erat, sed diam voluptua. At vero eos et accusam et justo -duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata -sanctus est Lorem ipsum dolor sit amet.
    • -
    • Item 4 missing image - fallback square
    • -
    - -
      -
    • Item 1 nobullet
    • -
    • Item 2 nobullet
    • -
    • Lorem ipsum dolor sit amet, consectetuer sadipscing elitr, -sed diam nonumy eirmod tempor invidunt ut labore et dolore magna -aliquyam erat, sed diam voluptua. At vero eos et accusam et justo -duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata -sanctus est Lorem ipsum dolor sit amet.
    • -
    • Inside. Lorem ipsum dolor sit amet, consectetuer sadipscing elitr, -sed diam nonumy eirmod tempor invidunt ut labore et dolore magna -aliquyam erat, sed diam voluptua. At vero eos et accusam et justo -duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata -sanctus est Lorem ipsum dolor sit amet.
    • -
    • Item 4 nobullet
    • -
    - -
      -
    • Item 1 missing image - fallback none
    • -
    • Item 2 missing image - fallback none
    • -
    • Lorem ipsum dolor sit amet, consectetuer sadipscing elitr, -sed diam nonumy eirmod tempor invidunt ut labore et dolore magna -aliquyam erat, sed diam voluptua. At vero eos et accusam et justo -duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata -sanctus est Lorem ipsum dolor sit amet.
    • -
    • Inside. Lorem ipsum dolor sit amet, consectetuer sadipscing elitr, -sed diam nonumy eirmod tempor invidunt ut labore et dolore magna -aliquyam erat, sed diam voluptua. At vero eos et accusam et justo -duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata -sanctus est Lorem ipsum dolor sit amet.
    • -
    • Item 4 missing image - fallback none
    • -
    - -
      -
    • Item 1 bigimage
    • -
    • Item 2 bigimage
    • -
    • Lorem ipsum dolor sit amet, consectetuer sadipscing elitr, -sed diam nonumy eirmod tempor invidunt ut labore et dolore magna -aliquyam erat, sed diam voluptua. At vero eos et accusam et justo -duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata -sanctus est Lorem ipsum dolor sit amet.
    • -
    • Inside. Lorem ipsum dolor sit amet, consectetuer sadipscing elitr, -sed diam nonumy eirmod tempor invidunt ut labore et dolore magna -aliquyam erat, sed diam voluptua. At vero eos et accusam et justo -duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata -sanctus est Lorem ipsum dolor sit amet.
    • -
    • Item 4 bigimage
    • -
    - -
      -
    • margin Item 1 image
    • -
    • margin Item 2 image
    • -
    • Lorem ipsum dolor sit amet, consectetuer sadipscing elitr, -sed diam nonumy eirmod tempor invidunt ut labore et dolore magna -aliquyam erat, sed diam voluptua. At vero eos et accusam et justo -duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata -sanctus est Lorem ipsum dolor sit amet.
    • -
    • margin Item 4 image
    • -
    • Inside. Lorem ipsum dolor sit amet, consectetuer sadipscing elitr, -sed diam nonumy eirmod tempor invidunt ut labore et dolore magna -aliquyam erat, sed diam voluptua. At vero eos et accusam et justo -duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata -sanctus est Lorem ipsum dolor sit amet.
    • -
    • Outside. Lorem ipsum dolor sit amet, consectetuer sadipscing elitr, -sed diam nonumy eirmod tempor invidunt ut labore et dolore magna -aliquyam erat, sed diam voluptua. At vero eos et accusam et justo -duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata -sanctus est Lorem ipsum dolor sit amet.
    • -
    • margin Item 7 noimage
    • - -
        -
      • margin sub Item 1 image
      • -
      • margin sub Item 2 image
      • -
      • Inside. Lorem ipsum dolor sit amet, consectetuer sadipscing elitr, -sed diam nonumy eirmod tempor invidunt ut labore et dolore magna -aliquyam erat, sed diam voluptua. At vero eos et accusam et justo -duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata -sanctus est Lorem ipsum dolor sit amet.
      • -
      • Outside. Lorem ipsum dolor sit amet, consectetuer sadipscing elitr, -sed diam nonumy eirmod tempor invidunt ut labore et dolore magna -aliquyam erat, sed diam voluptua. At vero eos et accusam et justo -duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata -sanctus est Lorem ipsum dolor sit amet.
      • -
      • margin sub Item 5 noimage
      • -
      - -
    - -
      -
    • padding Item 1 image
    • -
    • Inside. Lorem ipsum dolor sit amet, consectetuer sadipscing elitr, -sed diam nonumy eirmod tempor invidunt ut labore et dolore magna -aliquyam erat, sed diam voluptua. At vero eos et accusam et justo -duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata -sanctus est Lorem ipsum dolor sit amet.
    • -
        -
      • padding sub Item 1 image
      • -
      • Inside. Lorem ipsum dolor sit amet, consectetuer sadipscing elitr, -sed diam nonumy eirmod tempor invidunt ut labore et dolore magna -aliquyam erat, sed diam voluptua. At vero eos et accusam et justo -duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata -sanctus est Lorem ipsum dolor sit amet.
      • -
      -
    - -
      -
    • margin Item 1 square
    • -
    • Inside. Lorem ipsum dolor sit amet, consectetuer sadipscing elitr, -sed diam nonumy eirmod tempor invidunt ut labore et dolore magna -aliquyam erat, sed diam voluptua. At vero eos et accusam et justo -duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata -sanctus est Lorem ipsum dolor sit amet.
    • -
        -
      • margin sub Item 1 square
      • -
      • Inside. Lorem ipsum dolor sit amet, consectetuer sadipscing elitr, -sed diam nonumy eirmod tempor invidunt ut labore et dolore magna -aliquyam erat, sed diam voluptua. At vero eos et accusam et justo -duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata -sanctus est Lorem ipsum dolor sit amet.
      • -
      -
    - -
      -
    • padding Item 1 square
    • -
    • Inside. Lorem ipsum dolor sit amet, consectetuer sadipscing elitr, -sed diam nonumy eirmod tempor invidunt ut labore et dolore magna -aliquyam erat, sed diam voluptua. At vero eos et accusam et justo -duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata -sanctus est Lorem ipsum dolor sit amet.
    • -
        -
      • padding sub Item 1 square
      • -
      • Inside. Lorem ipsum dolor sit amet, consectetuer sadipscing elitr, -sed diam nonumy eirmod tempor invidunt ut labore et dolore magna -aliquyam erat, sed diam voluptua. At vero eos et accusam et justo -duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata -sanctus est Lorem ipsum dolor sit amet.
      • -
      -
    - -

    combined list attributes list-style

    - -
      -
    • list-style:square inside url(dummy.png);
    • -
    • list-style:outside;[overwrites only position]
    • -
    -
      -
    • list-style:square inside url(images/png.png);
    • -
    • list-style-position:outside;[overwrites only position]
    • -
    • list-style-position:outside;[overwrite attributes - firefox3: all; dompdf, internet explorer 8: only position]
    • -
    • list-style:none; [resets both, bullet and image]
    • -
    - - - diff --git a/www/test/encoding_entities.html b/www/test/encoding_entities.html deleted file mode 100644 index 1b7fc6b..0000000 --- a/www/test/encoding_entities.html +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - -

    é © « avoir et être α β

    -

    é © « avoir et être α β

    - \ No newline at end of file diff --git a/www/test/encoding_latin1.html b/www/test/encoding_latin1.html deleted file mode 100644 index a0468db..0000000 --- a/www/test/encoding_latin1.html +++ /dev/null @@ -1,1162 +0,0 @@ - - - - -HTML 4.0 Latin-1 Entities - - - - - - -

    Latin-1 Entities

    - -

    The following table gives the character entity reference, decimal -character reference, and hexadecimal character reference for 8-bit -characters in the Latin-1 (ISO-8859-1) character set, as well as the -rendering of each in your browser. Glyphs of the characters are -available at the Unicode -Consortium.

    - -

    Browser support is generally best for the decimal character -references, except for the accented characters (decimal 192-214, -216-246, 248-255), where the character entity references hold a slight -edge.

    - -

    Note that most Mac browsers will render fourteen Latin-1 characters -incorrectly. These characters are decimal 166, 178, 179, 185, 188, -189, 190, 208, 215, 221, 222, 240, 253, and 254. See ISO-8859-1 -and the Mac platform for more information.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    CharacterEntityDecimalHexRendering in Your Browser
    EntityDecimalHex
    no-break space = non-breaking space&nbsp;&#160;&#xA0;   
    inverted exclamation mark&iexcl;&#161;&#xA1;¡¡¡
    cent sign&cent;&#162;&#xA2;¢¢¢
    pound sign&pound;&#163;&#xA3;£££
    currency sign&curren;&#164;&#xA4;¤¤¤
    yen sign = yuan sign&yen;&#165;&#xA5;¥¥¥
    broken bar = broken vertical bar&brvbar;&#166;&#xA6;¦¦¦
    section sign&sect;&#167;&#xA7;§§§
    diaeresis = spacing diaeresis&uml;&#168;&#xA8;¨¨¨
    copyright sign&copy;&#169;&#xA9;©©©
    feminine ordinal indicator&ordf;&#170;&#xAA;ªªª
    left-pointing double angle quotation mark = left pointing guillemet&laquo;&#171;&#xAB;«««
    not sign&not;&#172;&#xAC;¬¬¬
    soft hyphen = discretionary hyphen&shy;&#173;&#xAD;­­­
    registered sign = registered trade mark sign&reg;&#174;&#xAE;®®®
    macron = spacing macron = overline = APL overbar&macr;&#175;&#xAF;¯¯¯
    degree sign&deg;&#176;&#xB0;°°°
    plus-minus sign = plus-or-minus sign&plusmn;&#177;&#xB1;±±±
    superscript two = superscript digit two = squared&sup2;&#178;&#xB2;²²²
    superscript three = superscript digit three = cubed&sup3;&#179;&#xB3;³³³
    acute accent = spacing acute&acute;&#180;&#xB4;´´´
    micro sign&micro;&#181;&#xB5;µµµ
    pilcrow sign = paragraph sign&para;&#182;&#xB6;
    middle dot = Georgian comma = Greek middle dot&middot;&#183;&#xB7;···
    cedilla = spacing cedilla&cedil;&#184;&#xB8;¸¸¸
    superscript one = superscript digit one&sup1;&#185;&#xB9;¹¹¹
    masculine ordinal indicator&ordm;&#186;&#xBA;ººº
    right-pointing double angle quotation mark = right pointing guillemet&raquo;&#187;&#xBB;»»»
    vulgar fraction one quarter = fraction one quarter&frac14;&#188;&#xBC;¼¼¼
    vulgar fraction one half = fraction one half&frac12;&#189;&#xBD;½½½
    vulgar fraction three quarters = fraction three quarters&frac34;&#190;&#xBE;¾¾¾
    inverted question mark = turned question mark&iquest;&#191;&#xBF;¿¿¿
    Latin capital letter A with grave = Latin capital letter A grave&Agrave;&#192;&#xC0;ÀÀÀ
    Latin capital letter A with acute&Aacute;&#193;&#xC1;ÁÁÁ
    Latin capital letter A with circumflex&Acirc;&#194;&#xC2;ÂÂÂ
    Latin capital letter A with tilde&Atilde;&#195;&#xC3;ÃÃÃ
    Latin capital letter A with diaeresis&Auml;&#196;&#xC4;ÄÄÄ
    Latin capital letter A with ring above = Latin capital letter A ring&Aring;&#197;&#xC5;ÅÅÅ
    Latin capital letter AE = Latin capital ligature AE&AElig;&#198;&#xC6;ÆÆÆ
    Latin capital letter C with cedilla&Ccedil;&#199;&#xC7;ÇÇÇ
    Latin capital letter E with grave&Egrave;&#200;&#xC8;ÈÈÈ
    Latin capital letter E with acute&Eacute;&#201;&#xC9;ÉÉÉ
    Latin capital letter E with circumflex&Ecirc;&#202;&#xCA;ÊÊÊ
    Latin capital letter E with diaeresis&Euml;&#203;&#xCB;ËËË
    Latin capital letter I with grave&Igrave;&#204;&#xCC;ÌÌÌ
    Latin capital letter I with acute&Iacute;&#205;&#xCD;ÍÍÍ
    Latin capital letter I with circumflex&Icirc;&#206;&#xCE;ÎÎÎ
    Latin capital letter I with diaeresis&Iuml;&#207;&#xCF;ÏÏÏ
    Latin capital letter ETH&ETH;&#208;&#xD0;ÐÐÐ
    Latin capital letter N with tilde&Ntilde;&#209;&#xD1;ÑÑÑ
    Latin capital letter O with grave&Ograve;&#210;&#xD2;ÒÒÒ
    Latin capital letter O with acute&Oacute;&#211;&#xD3;ÓÓÓ
    Latin capital letter O with circumflex&Ocirc;&#212;&#xD4;ÔÔÔ
    Latin capital letter O with tilde&Otilde;&#213;&#xD5;ÕÕÕ
    Latin capital letter O with diaeresis&Ouml;&#214;&#xD6;ÖÖÖ
    multiplication sign&times;&#215;&#xD7;×××
    Latin capital letter O with stroke = Latin capital letter O slash&Oslash;&#216;&#xD8;ØØØ
    Latin capital letter U with grave&Ugrave;&#217;&#xD9;ÙÙÙ
    Latin capital letter U with acute&Uacute;&#218;&#xDA;ÚÚÚ
    Latin capital letter U with circumflex&Ucirc;&#219;&#xDB;ÛÛÛ
    Latin capital letter U with diaeresis&Uuml;&#220;&#xDC;ÜÜÜ
    Latin capital letter Y with acute&Yacute;&#221;&#xDD;ÝÝÝ
    Latin capital letter THORN&THORN;&#222;&#xDE;ÞÞÞ
    Latin small letter sharp s = ess-zed&szlig;&#223;&#xDF;ßßß
    Latin small letter a with grave = Latin small letter a grave&agrave;&#224;&#xE0;ààà
    Latin small letter a with acute&aacute;&#225;&#xE1;ááá
    Latin small letter a with circumflex&acirc;&#226;&#xE2;âââ
    Latin small letter a with tilde&atilde;&#227;&#xE3;ããã
    Latin small letter a with diaeresis&auml;&#228;&#xE4;äää
    Latin small letter a with ring above = Latin small letter a ring&aring;&#229;&#xE5;ååå
    Latin small letter ae = Latin small ligature ae&aelig;&#230;&#xE6;æææ
    Latin small letter c with cedilla&ccedil;&#231;&#xE7;ççç
    Latin small letter e with grave&egrave;&#232;&#xE8;èèè
    Latin small letter e with acute&eacute;&#233;&#xE9;ééé
    Latin small letter e with circumflex&ecirc;&#234;&#xEA;êêê
    Latin small letter e with diaeresis&euml;&#235;&#xEB;ëëë
    Latin small letter i with grave&igrave;&#236;&#xEC;ììì
    Latin small letter i with acute&iacute;&#237;&#xED;ííí
    Latin small letter i with circumflex&icirc;&#238;&#xEE;îîî
    Latin small letter i with diaeresis&iuml;&#239;&#xEF;ïïï
    Latin small letter eth&eth;&#240;&#xF0;ððð
    Latin small letter n with tilde&ntilde;&#241;&#xF1;ñññ
    Latin small letter o with grave&ograve;&#242;&#xF2;òòò
    Latin small letter o with acute&oacute;&#243;&#xF3;óóó
    Latin small letter o with circumflex&ocirc;&#244;&#xF4;ôôô
    Latin small letter o with tilde&otilde;&#245;&#xF5;õõõ
    Latin small letter o with diaeresis&ouml;&#246;&#xF6;ööö
    division sign&divide;&#247;&#xF7;÷÷÷
    Latin small letter o with stroke = Latin small letter o slash&oslash;&#248;&#xF8;øøø
    Latin small letter u with grave&ugrave;&#249;&#xF9;ùùù
    Latin small letter u with acute&uacute;&#250;&#xFA;úúú
    Latin small letter u with circumflex&ucirc;&#251;&#xFB;ûûû
    Latin small letter u with diaeresis&uuml;&#252;&#xFC;üüü
    Latin small letter y with acute&yacute;&#253;&#xFD;ýýý
    Latin small letter thorn&thorn;&#254;&#xFE;þþþ
    Latin small letter y with diaeresis&yuml;&#255;&#xFF;ÿÿÿ
    - - - - diff --git a/www/test/encoding_special.html b/www/test/encoding_special.html deleted file mode 100644 index 5f9b42d..0000000 --- a/www/test/encoding_special.html +++ /dev/null @@ -1,570 +0,0 @@ - - - - -HTML 4.0 Special Entities - - - - - - - - -

    Special Entities

    -

    The following table gives the character entity reference, decimal character reference, and hexadecimal character reference for markup-significant and internationalization characters, as well as the rendering of each in your browser. Glyphs of the characters are available at the Unicode Consortium.

    -

    With the exception of HTML 2.0's &quot;, &amp;, &lt;, and &gt;, browser support for these entities is generally quite poor, but recent browsers support some of the character entity references and decimal character references.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    CharacterEntityDecimalHexRendering in Your Browser
    EntityDecimalHex
    quotation mark = APL quote&quot;&#34;&#x22;"""
    ampersand&amp;&#38;&#x26;&&&
    less-than sign&lt;&#60;&#x3C;<<<
    greater-than sign&gt;&#62;&#x3E;>>>
    Latin capital ligature OE&OElig;&#338;&#x152;ŒŒŒ
    Latin small ligature oe&oelig;&#339;&#x153;œœœ
    Latin capital letter S with caron&Scaron;&#352;&#x160;ŠŠŠ
    Latin small letter s with caron&scaron;&#353;&#x161;ššš
    Latin capital letter Y with diaeresis&Yuml;&#376;&#x178;ŸŸŸ
    modifier letter circumflex accent&circ;&#710;&#x2C6;ˆˆˆ
    small tilde&tilde;&#732;&#x2DC;˜˜˜
    en space&ensp;&#8194;&#x2002;
    em space&emsp;&#8195;&#x2003;
    thin space&thinsp;&#8201;&#x2009;
    zero width non-joiner&zwnj;&#8204;&#x200C;
    zero width joiner&zwj;&#8205;&#x200D;
    left-to-right mark&lrm;&#8206;&#x200E;
    right-to-left mark&rlm;&#8207;&#x200F;
    en dash&ndash;&#8211;&#x2013;
    em dash&mdash;&#8212;&#x2014;
    left single quotation mark&lsquo;&#8216;&#x2018;
    right single quotation mark&rsquo;&#8217;&#x2019;
    single low-9 quotation mark&sbquo;&#8218;&#x201A;
    left double quotation mark&ldquo;&#8220;&#x201C;
    right double quotation mark&rdquo;&#8221;&#x201D;
    double low-9 quotation mark&bdquo;&#8222;&#x201E;
    dagger&dagger;&#8224;&#x2020;
    double dagger&Dagger;&#8225;&#x2021;
    per mille sign&permil;&#8240;&#x2030;
    single left-pointing angle quotation mark&lsaquo;&#8249;&#x2039;
    single right-pointing angle quotation mark&rsaquo;&#8250;&#x203A;
    euro sign&euro;&#8364;&#x20AC;
    - - - - diff --git a/www/test/encoding_symbols.html b/www/test/encoding_symbols.html deleted file mode 100644 index 381cbe4..0000000 --- a/www/test/encoding_symbols.html +++ /dev/null @@ -1,1400 +0,0 @@ - - - - -HTML 4.0 Entities for Symbols and Greek Letters - - - - - - - - - -

    Entities for Symbols and Greek Letters

    -

    The following table gives the character entity reference, decimal character reference, and hexadecimal character reference for symbols and Greek letters, as well as the rendering of each in your browser. Glyphs of the characters are available at the Unicode Consortium.

    -

    Browser support for these entities is generally quite poor, but recent browsers support some of the character entity references and decimal character references.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    CharacterEntityDecimalHexRendering in Your Browser
    EntityDecimalHex
    Latin small f with hook = function = florin&fnof;&#402;&#x192;ƒƒƒ
    Greek capital letter alpha&Alpha;&#913;&#x391;ΑΑΑ
    Greek capital letter beta&Beta;&#914;&#x392;ΒΒΒ
    Greek capital letter gamma&Gamma;&#915;&#x393;ΓΓΓ
    Greek capital letter delta&Delta;&#916;&#x394;ΔΔΔ
    Greek capital letter epsilon&Epsilon;&#917;&#x395;ΕΕΕ
    Greek capital letter zeta&Zeta;&#918;&#x396;ΖΖΖ
    Greek capital letter eta&Eta;&#919;&#x397;ΗΗΗ
    Greek capital letter theta&Theta;&#920;&#x398;ΘΘΘ
    Greek capital letter iota&Iota;&#921;&#x399;ΙΙΙ
    Greek capital letter kappa&Kappa;&#922;&#x39A;ΚΚΚ
    Greek capital letter lambda&Lambda;&#923;&#x39B;ΛΛΛ
    Greek capital letter mu&Mu;&#924;&#x39C;ΜΜΜ
    Greek capital letter nu&Nu;&#925;&#x39D;ΝΝΝ
    Greek capital letter xi&Xi;&#926;&#x39E;ΞΞΞ
    Greek capital letter omicron&Omicron;&#927;&#x39F;ΟΟΟ
    Greek capital letter pi&Pi;&#928;&#x3A0;ΠΠΠ
    Greek capital letter rho&Rho;&#929;&#x3A1;ΡΡΡ
    Greek capital letter sigma&Sigma;&#931;&#x3A3;ΣΣΣ
    Greek capital letter tau&Tau;&#932;&#x3A4;ΤΤΤ
    Greek capital letter upsilon&Upsilon;&#933;&#x3A5;ΥΥΥ
    Greek capital letter phi&Phi;&#934;&#x3A6;ΦΦΦ
    Greek capital letter chi&Chi;&#935;&#x3A7;ΧΧΧ
    Greek capital letter psi&Psi;&#936;&#x3A8;ΨΨΨ
    Greek capital letter omega&Omega;&#937;&#x3A9;ΩΩΩ
    Greek small letter alpha&alpha;&#945;&#x3B1;ααα
    Greek small letter beta&beta;&#946;&#x3B2;βββ
    Greek small letter gamma&gamma;&#947;&#x3B3;γγγ
    Greek small letter delta&delta;&#948;&#x3B4;δδδ
    Greek small letter epsilon&epsilon;&#949;&#x3B5;εεε
    Greek small letter zeta&zeta;&#950;&#x3B6;ζζζ
    Greek small letter eta&eta;&#951;&#x3B7;ηηη
    Greek small letter theta&theta;&#952;&#x3B8;θθθ
    Greek small letter iota&iota;&#953;&#x3B9;ιιι
    Greek small letter kappa&kappa;&#954;&#x3BA;κκκ
    Greek small letter lambda&lambda;&#955;&#x3BB;λλλ
    Greek small letter mu&mu;&#956;&#x3BC;μμμ
    Greek small letter nu&nu;&#957;&#x3BD;ννν
    Greek small letter xi&xi;&#958;&#x3BE;ξξξ
    Greek small letter omicron&omicron;&#959;&#x3BF;οοο
    Greek small letter pi&pi;&#960;&#x3C0;πππ
    Greek small letter rho&rho;&#961;&#x3C1;ρρρ
    Greek small letter final sigma&sigmaf;&#962;&#x3C2;ςςς
    Greek small letter sigma&sigma;&#963;&#x3C3;σσσ
    Greek small letter tau&tau;&#964;&#x3C4;τττ
    Greek small letter upsilon&upsilon;&#965;&#x3C5;υυυ
    Greek small letter phi&phi;&#966;&#x3C6;φφφ
    Greek small letter chi&chi;&#967;&#x3C7;χχχ
    Greek small letter psi&psi;&#968;&#x3C8;ψψψ
    Greek small letter omega&omega;&#969;&#x3C9;ωωω
    Greek small letter theta symbol&thetasym;&#977;&#x3D1;ϑϑϑ
    Greek upsilon with hook symbol&upsih;&#978;&#x3D2;ϒϒϒ
    Greek pi symbol&piv;&#982;&#x3D6;ϖϖϖ
    bullet = black small circle&bull;&#8226;&#x2022;
    horizontal ellipsis = three dot leader&hellip;&#8230;&#x2026;
    prime = minutes = feet&prime;&#8242;&#x2032;
    double prime = seconds = inches&Prime;&#8243;&#x2033;
    overline = spacing overscore&oline;&#8254;&#x203E;
    fraction slash&frasl;&#8260;&#x2044;
    script capital P = power set = Weierstrass p&weierp;&#8472;&#x2118;
    blackletter capital I = imaginary part&image;&#8465;&#x2111;
    blackletter capital R = real part symbol&real;&#8476;&#x211C;
    trade mark sign&trade;&#8482;&#x2122;
    alef symbol = first transfinite cardinal&alefsym;&#8501;&#x2135;
    leftwards arrow&larr;&#8592;&#x2190;
    upwards arrow&uarr;&#8593;&#x2191;
    rightwards arrow&rarr;&#8594;&#x2192;
    downwards arrow&darr;&#8595;&#x2193;
    left right arrow&harr;&#8596;&#x2194;
    downwards arrow with corner leftwards = carriage return&crarr;&#8629;&#x21B5;
    leftwards double arrow&lArr;&#8656;&#x21D0;
    upwards double arrow&uArr;&#8657;&#x21D1;
    rightwards double arrow&rArr;&#8658;&#x21D2;
    downwards double arrow&dArr;&#8659;&#x21D3;
    left right double arrow&hArr;&#8660;&#x21D4;
    for all&forall;&#8704;&#x2200;
    partial differential&part;&#8706;&#x2202;
    there exists&exist;&#8707;&#x2203;
    empty set = null set = diameter&empty;&#8709;&#x2205;
    nabla = backward difference&nabla;&#8711;&#x2207;
    element of&isin;&#8712;&#x2208;
    not an element of&notin;&#8713;&#x2209;
    contains as member&ni;&#8715;&#x220B;
    n-ary product = product sign&prod;&#8719;&#x220F;
    n-ary sumation&sum;&#8721;&#x2211;
    minus sign&minus;&#8722;&#x2212;
    asterisk operator&lowast;&#8727;&#x2217;
    square root = radical sign&radic;&#8730;&#x221A;
    proportional to&prop;&#8733;&#x221D;
    infinity&infin;&#8734;&#x221E;
    angle&ang;&#8736;&#x2220;
    logical and = wedge&and;&#8743;&#x2227;
    logical or = vee&or;&#8744;&#x2228;
    intersection = cap&cap;&#8745;&#x2229;
    union = cup&cup;&#8746;&#x222A;
    integral&int;&#8747;&#x222B;
    therefore&there4;&#8756;&#x2234;
    tilde operator = varies with = similar to&sim;&#8764;&#x223C;
    approximately equal to&cong;&#8773;&#x2245;
    almost equal to = asymptotic to&asymp;&#8776;&#x2248;
    not equal to&ne;&#8800;&#x2260;
    identical to&equiv;&#8801;&#x2261;
    less-than or equal to&le;&#8804;&#x2264;
    greater-than or equal to&ge;&#8805;&#x2265;
    subset of&sub;&#8834;&#x2282;
    superset of&sup;&#8835;&#x2283;
    not a subset of&nsub;&#8836;&#x2284;
    subset of or equal to&sube;&#8838;&#x2286;
    superset of or equal to&supe;&#8839;&#x2287;
    circled plus = direct sum&oplus;&#8853;&#x2295;
    circled times = vector product&otimes;&#8855;&#x2297;
    up tack = orthogonal to = perpendicular&perp;&#8869;&#x22A5;
    dot operator&sdot;&#8901;&#x22C5;
    left ceiling = APL upstile&lceil;&#8968;&#x2308;
    right ceiling&rceil;&#8969;&#x2309;
    left floor = APL downstile&lfloor;&#8970;&#x230A;
    right floor&rfloor;&#8971;&#x230B;
    left-pointing angle bracket = bra&lang;&#9001;&#x2329;
    right-pointing angle bracket = ket&rang;&#9002;&#x232A;
    lozenge&loz;&#9674;&#x25CA;
    black spade suit&spades;&#9824;&#x2660;
    black club suit = shamrock&clubs;&#9827;&#x2663;
    black heart suit = valentine&hearts;&#9829;&#x2665;
    black diamond suit&diams;&#9830;&#x2666;
    - - - - diff --git a/www/test/encoding_unicode.html b/www/test/encoding_unicode.html deleted file mode 100644 index 90c2104..0000000 --- a/www/test/encoding_unicode.html +++ /dev/null @@ -1,8 +0,0 @@ - - - - - -献给æ¯äº²çš„爱 - - \ No newline at end of file diff --git a/www/test/encoding_unicode_wrapping.html b/www/test/encoding_unicode_wrapping.html deleted file mode 100644 index 8c964d3..0000000 --- a/www/test/encoding_unicode_wrapping.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - -Wrapping of non-ANSI characters - - - -No se tendrá en cuenta el hecho de que las partes tengan sus establecimientos en Estados diferentes -cuando ello no resulte del contrato, ni de los tratos entre ellas, ni de información revelada por -las partes en cualquier momento antes de la celebración del contrato o en el momento de su celebración. - - diff --git a/www/test/encoding_utf-8.html b/www/test/encoding_utf-8.html deleted file mode 100644 index 78aef09..0000000 --- a/www/test/encoding_utf-8.html +++ /dev/null @@ -1,793 +0,0 @@ - - - - - -Unicode (UTF-8) Test - - - - -

    Unicode (UTF-8) test

    - -

    You can use this document to check if your browser and your installed fonts display multilingual HTML documents in Unicode (UTF-8) correctly.

    - -
    - -

    Latin extended

    - -
    -
    Letters with acute
    -
    Aà aá   CĆ cć   EÉ eé   Ià ií   LĹ lĺ   NŃ nÅ„   OÓ oó   RÅ” rÅ•   SÅš sÅ›   UÚ uú   Yà yý   ZŹ zź
    - -
    Letters with apostrophe (hacek)
    -
    dÄ   LĽ lľ   tÅ¥
    - -
    Letters with breve
    -
    AÄ‚ aă   GÄž gÄŸ   UŬ uÅ­
    - -
    Letters with caron (hacek)
    -
    CÄŒ cÄ   DÄŽ   EÄš eÄ›   NŇ nň   RŘ rÅ™   SÅ  sÅ¡   TŤ   ZŽ zž
    - -
    Letters with cedilla (comma)
    -
    CÇ cç   GÄ¢ gÄ£   KĶ kÄ·   LÄ» lļ   NÅ… nņ   RÅ– rÅ—   SÅž sÅŸ   TÅ¢ tÅ£
    - -
    Letters with circumflex
    -
    A aâ   CĈ cĉ   EÊ eê   GÄœ gÄ   HĤ hÄ¥   IÃŽ iî   JÄ´ jĵ   OÔ oô   SÅœ sÅ   UÛ uû   WÅ´ wŵ   YŶ yÅ·
    - -
    Letters with diaeresis (umlaut)
    -
    AÄ aä   EË eë   Ià iï   OÖ oö   UÃœ uü   YŸ yÿ
    - -
    Letters with/without dot above
    -
    CÄŠ cÄ‹   EÄ– eÄ—   GÄ  gÄ¡   IÄ° iı   ZÅ» zż
    - -
    Letters with double acute
    -
    OÅ oÅ‘   UÅ° uű
    - -
    Letters with grave
    -
    AÀ aà   EÈ eè   IÃŒ iì   OÃ’ oò   UÙ uù
    - -
    Letters with horn
    -
    OÆ  oÆ¡   UƯ uÆ°
    - -
    Letters with macron
    -
    AÄ€ aÄ   EÄ’ eÄ“   IĪ iÄ«   OÅŒ oÅ   UŪ uÅ«
    - -
    Letters with ogonek
    -
    AÄ„ aÄ…   EĘ eÄ™   IÄ® iį   UŲ uų
    - -
    Letters with ring above
    -
    AÃ… aÃ¥   UÅ® uů
    - -
    Letters with stroke
    -
    DÄ dÄ‘   HĦ hħ   LÅ lÅ‚   OØ oø
    - -
    Letters with tilde
    -
    AÃ aã   NÑ nñ   OÕ oõ
    - -
    Ligatures
    -
    AEÆ aeæ   OEÅ’ oeÅ“
    - -
    Eth & Thorn
    -
    Dà dð   THÞ thþ
    - -
    German sharp s & long s
    -
    ß   Å¿
    -
    - -

    Combining diacritical marks
     

    - -
    - -

    Greek

    - -
    -
    Capital letters
    -
    Α Β Γ Δ Ε Ζ Η Θ Ι Κ Λ Μ ΠΞ Ο Π Ρ Σ Τ Υ Φ Χ Ψ Ω
    - -
    Capital letters with tonos
    -
    Ά   Έ   Ή   Ί   ÎŒ   ÎŽ   Î
    - -
    Capital letters with dialytika
    -
    Ϊ   Ϋ
    - -
    Small letters
    -
    α β γ δ ε ζ η θ ι κ λ μ ν ξ ο Ï€ Ï ÏƒÏ‚ Ï„ Ï… φ χ ψ ω
    - -
    Small letters with tonos
    -
    ά   έ   ή   ί   ÏŒ   Ï   ÏŽ
    - -
    Small letters with dialytika
    -
    ÏŠ   Ï‹
    - -
    Small letters with dialytika and tonos
    -
    Î   ΰ
    -
    - -
    - -

    Cyrillic

    - -
    -
    Russian alphabet
    - -
    РБ В Г Д Е РЖ З И Й К Л М РО П Р С Т У Ф Х Ц Ч Ш Щ Ъ Ы Ь Э Ю Я -
    а б в г д е Ñ‘ ж з и й к л м н о п Ñ€ Ñ Ñ‚ у Ñ„ Ñ… ц ч ш щ ÑŠ Ñ‹ ÑŒ Ñ ÑŽ Ñ
    - -
    Belarussian alphabet
    - -
    РБ В Г Д Е РЖ З І Й К Л М РО П Р С Т У Ў Ф Х Ц Ч Ш Ы Ь Э Ю Я -
    а б в г д е Ñ‘ ж з Ñ– й к л м н о п Ñ€ Ñ Ñ‚ у Ñž Ñ„ Ñ… ц ч ш Ñ‹ ÑŒ Ñ ÑŽ Ñ
    - -
    Ukrainian alphabet
    - -
    РБ Ð’ Г Ò Ð” Е Є Ж З И І Ї Й К Л Ðœ РО П Р С Т У Ф Ð¥ Ц Ч Ш Щ Ь Ю Я -
    а б в г Ò‘ д е Ñ” ж з и Ñ– Ñ— й к л м н о п Ñ€ Ñ Ñ‚ у Ñ„ Ñ… ц ч ш щ ÑŒ ÑŽ Ñ
    - -
    Bulgarian alphabet
    - -
    РБ В Г Д Е Ж З И Й К Л М РО П Р С Т У Ф Х Ц Ч Ш Щ Ъ Ь Ю Я -
    а б в г д е ж з и й к л м н о п Ñ€ Ñ Ñ‚ у Ñ„ Ñ… ц ч ш щ ÑŠ ÑŒ ÑŽ Ñ
    - -
    Macedonian alphabet
    - -
    РБ В Г Д Ѓ Е Ж З Ѕ И Ј К Л Љ М РЊ О П Р С Т Ќ У Ф Х Ц Ч РШ -
    а б в г д Ñ“ е ж з Ñ• и ј к л Ñ™ м н Ñš о п Ñ€ Ñ Ñ‚ Ñœ у Ñ„ Ñ… ц ч ÑŸ ш
    - -
    Serbian alphabet
    - -
    РБ В Г Д Ђ Е Ж З И Ј К Л Љ М РЊ О П Р С Т Ћ У Ф Х Ц Ч РШ -
    а б в г д Ñ’ е ж з и ј к л Ñ™ м н Ñš о п Ñ€ Ñ Ñ‚ Ñ› у Ñ„ Ñ… ц ч ÑŸ ш
    - -
    Mongolian alphabet
    - -
    -A B V G D E Ë Zh Z I J K L M N O Ö P R S T U Ü F X C Ch Sh Shh " Y ' E Ju Ja
    -
    РБ В Г Д Е РЖ З И Й К Л М РО Ө П Р С Т У Ү Ф Х Ц Ч Ш Щ Ъ Ы Ь Э Ю Я -
    а б в г д е Ñ‘ ж з и й к л м н о Ó© п Ñ€ Ñ Ñ‚ у Ò¯ Ñ„ Ñ… ц ч ш щ ÑŠ Ñ‹ ÑŒ Ñ ÑŽ Ñ
    -
    - -
    - -

    Armenian

    - -
    -
    Capital letters
    - -
    a b g d e z ê ă th -  ž i l x c’ k’ h dz ğ -  č’ m j n š o č p’ dž -  rr s v t’ r c w ph kh -  ô f
    -
    -Ô± -Ô² -Ô³ -Ô´ -Ôµ -Ô¶ -Ô· -Ô¸ -Ô¹   -Ôº -Ô» -Ô¼ -Ô½ -Ô¾ -Ô¿ -Õ€ -Õ -Õ‚   -Õƒ -Õ„ -Õ… -Õ† -Õ‡ -Õˆ -Õ‰ -ÕŠ -Õ‹   -ÕŒ -Õ -ÕŽ -Õ -Õ -Õ‘ -Õ’ -Õ“ -Õ”   -Õ• -Õ– -
    - -
    Small letters
    - -
    a b g d e z ê ă th -  ž i l x c’ k’ h dz ğ -  č’ m j n š o č p’ dž -  rr s v t’ r c w ph kh -  ew ô f
    -
    -Õ¡ -Õ¢ -Õ£ -Õ¤ -Õ¥ -Õ¦ -Õ§ -Õ¨ -Õ©   -Õª -Õ« -Õ¬ -Õ­ -Õ® -Õ¯ -Õ° -Õ± -Õ²   -Õ³ -Õ´ -Õµ -Õ¶ -Õ· -Õ¸ -Õ¹ -Õº -Õ»   -Õ¼ -Õ½ -Õ¾ -Õ¿ -Ö€ -Ö -Ö‚ -Öƒ -Ö„   -Ö‡ -Ö… -Ö† -
    -
    - -
    - -

    Georgian

    - -
    -
    Mxedruli (Mkhedruli) script
    - -
    a b g d e v z th -  i k’ l m n o p’ ž -  r s t’ u ph kh ğ q’ š -  č c dz c’ č’ x dž h
    -
    -რ-ბ -გ -დ -ე -ვ -ზ -თ   -ი -კ -ლ -მ -ნ -რ-პ -ჟ   -რ -ს -ტ -უ -ფ -ქ -ღ -ყ -შ   -ჩ -ც -ძ -წ -ჭ -ხ -ჯ -ჰ -
    -
    - -
    - -

    Hebrew

    - -
    -
    Hebrew alphabet
    - -
    ’ v g d h w z H T y xx l mm nn s ‘ ff cc q r S ( š ś ) t
    -
      -× ×‘ ×’ ד ×” ו ×– ×— ט ×™ כך ל ×ž× × ×Ÿ ס ×¢ פף צץ ק ר ש ( ×©× ×©×‚ ) ת -
    - -
    Letters with dagesh (mappiq)
    - -
    ’ b g d h w z   T y kk l m  n  s   pp c  q r S ( š ś ) t
    -
      -×Ö¼ בּ ×’Ö¼ דּ ×”Ö¼ וּ ×–Ö¼ טּ ×™Ö¼ כּךּ לּ מּ × Ö¼ סּ פּףּ צּ קּ רּ שּ ( ×©Ö¼× ×©Ö¼×‚ ) תּ -
    - -
    Yiddish digraphs
    - -
    ww   wy   yy
    -
      -×° ×± ײ -
    - -
    Letters with rafe
    - -
    v   x   f
    -
      -בֿ   -×›Ö¿   -פֿ
    - -
    Vowels with points
    - -
    a   å   o   u   i   ai
    -
      -×Ö·   -×Ö¸   -וֹ   -וּ   -×™Ö´   -ײַ
    -
    - -
    - -

    Arabic

    - -
    -
    Arabic alphabet
    - -
    ’a a b t þ j H x d ð r z s š S D T Z ‘ ğ f v q k l m n h -t w ÿ y -a
    -
    ـآ Ø¢  - Ù€Ø§ ا  - Ø¨Ù€Ø¨Ù€Ø¨ ب  - ØªÙ€ØªÙ€Øª ت  - Ø«Ù€Ø«Ù€Ø« Ø«  - Ø¬Ù€Ø¬Ù€Ø¬ ج  - Ø­Ù€Ø­Ù€Ø­ Ø­  - Ø®Ù€Ø®Ù€Ø® Ø®  - Ù€Ø¯ د  - Ù€Ø° Ø°  - Ù€Ø± ر  - Ù€Ø² ز  - Ø³Ù€Ø³Ù€Ø³ س  - Ø´Ù€Ø´Ù€Ø´ Ø´  - ØµÙ€ØµÙ€Øµ ص  - Ø¶Ù€Ø¶Ù€Ø¶ ض  - Ø·Ù€Ø·Ù€Ø· Ø·  - Ø¸Ù€Ø¸Ù€Ø¸ ظ  - Ø¹Ù€Ø¹Ù€Ø¹ ع  - ØºÙ€ØºÙ€Øº غ  - ÙÙ€ÙÙ€Ù Ù  - Ú¤Ù€Ú¤Ù€Ú¤ Ú¤  - Ù‚ـقـق Ù‚  - ÙƒÙ€ÙƒÙ€Ùƒ Ùƒ  - Ù„ـلـل Ù„  - Ù…ـمـم Ù…  - Ù†Ù€Ù†Ù€Ù† Ù†  - Ù‡Ù€Ù‡Ù€Ù‡ Ù‡  - Ù€Ø© Ø©  - Ù€Ùˆ Ùˆ  - ÙŠÙ€ÙŠÙ€ÙŠ ÙŠ  - ÛŒÙ€ÛŒÙ€ÛŒ ÛŒ  - Ù€Ù‰ Ù‰  -
    - -
    Letters with hamzah  
    - -
    Ø¡  - Ù€Ø¥ Ø¥  - Ù€Ø£ Ø£  - Ù€Ø¤ ؤ  - Ø¦Ù€Ø¦Ù€Ø¦ ئ  -
    - -
    Persian alphabet  
    - -
    ’a a b p t s j c H x d z r z ž s š S Z T Z ‘ ğ f q k g l m n v h y
    -
    ـآ Ø¢  - Ù€Ø§ ا  - Ø¨Ù€Ø¨Ù€Ø¨ ب  - Ù¾Ù€Ù¾Ù€Ù¾ Ù¾  - ØªÙ€ØªÙ€Øª ت  - Ø«Ù€Ø«Ù€Ø« Ø«  - Ø¬Ù€Ø¬Ù€Ø¬ ج  - Ú†Ù€Ú†Ù€Ú† Ú†  - Ø­Ù€Ø­Ù€Ø­ Ø­  - Ø®Ù€Ø®Ù€Ø® Ø®  - Ù€Ø¯ د  - Ù€Ø° Ø°  - Ù€Ø± ر  - Ù€Ø² ز  - Ù€Ú˜ Ú˜  - Ø³Ù€Ø³Ù€Ø³ س  - Ø´Ù€Ø´Ù€Ø´ Ø´  - ØµÙ€ØµÙ€Øµ ص  - Ø¶Ù€Ø¶Ù€Ø¶ ض  - Ø·Ù€Ø·Ù€Ø· Ø·  - Ø¸Ù€Ø¸Ù€Ø¸ ظ  - Ø¹Ù€Ø¹Ù€Ø¹ ع  - ØºÙ€ØºÙ€Øº غ  - ÙÙ€ÙÙ€Ù Ù  - Ù‚ـقـق Ù‚  - Ú©Ù€Ú©Ù€Ú© Ú©  - Ú¯Ù€Ú¯Ù€Ú¯ Ú¯  - Ù„ـلـل Ù„  - Ù…ـمـم Ù…  - Ù†Ù€Ù†Ù€Ù† Ù†  - Ù€Ùˆ Ùˆ  - Ù‡Ù€Ù‡Ù€Ù‡ Ù‡  - ÛŒÙ€ÛŒÙ€ÛŒ ÛŒ  -
    - -
    Urdu alphabet  
    - -
    ’a a b p t t. s j c H x d d. z r r. z ž s š S Z T Z ‘ ğ f q k g l m n -n v h h y -e
    -
    ـآ Ø¢  - Ù€Ø§ ا  - Ø¨Ù€Ø¨Ù€Ø¨ ب  - Ù¾Ù€Ù¾Ù€Ù¾ Ù¾  - ØªÙ€ØªÙ€Øª ت  - Ù¹Ù€Ù¹Ù€Ù¹ Ù¹  - Ø«Ù€Ø«Ù€Ø« Ø«  - Ø¬Ù€Ø¬Ù€Ø¬ ج  - Ú†Ù€Ú†Ù€Ú† Ú†  - Ø­Ù€Ø­Ù€Ø­ Ø­  - Ø®Ù€Ø®Ù€Ø® Ø®  - Ù€Ø¯ د  - Ù€Úˆ Úˆ  - Ù€Ø° Ø°  - Ù€Ø± ر  - Ù€Ú‘ Ú‘  - Ù€Ø² ز  - Ù€Ú˜ Ú˜  - Ø³Ù€Ø³Ù€Ø³ س  - Ø´Ù€Ø´Ù€Ø´ Ø´  - ØµÙ€ØµÙ€Øµ ص  - Ø¶Ù€Ø¶Ù€Ø¶ ض  - Ø·Ù€Ø·Ù€Ø· Ø·  - Ø¸Ù€Ø¸Ù€Ø¸ ظ  - Ø¹Ù€Ø¹Ù€Ø¹ ع  - ØºÙ€ØºÙ€Øº غ  - ÙÙ€ÙÙ€Ù Ù  - Ù‚ـقـق Ù‚  - Ú©Ù€Ú©Ù€Ú© Ú©  - Ú¯Ù€Ú¯Ù€Ú¯ Ú¯  - Ù„ـلـل Ù„  - Ù…ـمـم Ù…  - Ù†Ù€Ù†Ù€Ù† Ù†  - Ù€Úº Úº  - Ù€Ùˆ Ùˆ  - ÛÙ€ÛÙ€Û Û  - Ú¾Ù€Ú¾Ù€Ú¾ Ú¾  - ÛŒÙ€ÛŒÙ€ÛŒ ÛŒ  - Ù€Û’ Û’  -
    - -
    Arabic-Indic digits  
    - -
    -0 1 2 3 4 5 6 7 8 9 10 11 12
    -
    - 0 1 2 3 4 5 6 7 8 9 10 11 12
    - ٠ ١ ٢ ٣ ٤ ٥ ٦ ٧ ٨ ٩ ١٠ ١١ ١٢
    - Û° Û± Û² Û³ Û´ Ûµ Û¶ Û· Û¸ Û¹ Û±Û° Û±Û± Û±Û² -
    -
    - -
    - -

    Devanagari

    - -
    -
    Sanskrit alphabet
    - -
    a aa i ii u uu   r rr l   e ai o au
    -
    -अ à¤† à¤‡ à¤ˆ à¤‰ à¤Š   -ऋ à¥  à¤Œ   -ठठओ à¤” -
    - -
    kaa ki kii ku kuu   kr krr kl   ke kai ko kau
    -
    -का कि की कॠकू   -कृ à¤•à¥„ à¤•à¥¢   -के कै को कौ -
    - -
    k kh g gh ng   -c ch j jh ñ   -t. t.h d. d.h n.   -t th d dh n   -p ph b bh m   -y r l. l v   -ś s. s h
    -
    -क à¤– à¤— à¤˜ à¤™   -च à¤› à¤œ à¤ à¤ž   -ट à¤  à¤¡ à¤¢ à¤£   -त à¤¥ à¤¦ à¤§ à¤¨   -प à¤« à¤¬ à¤­ à¤®   -य à¤° à¤³ à¤² à¤µ   -श à¤· à¤¸ à¤¹ -
    - -
    Hindi/Urdu letters with nuqta
    - -
    q x ğ z r. r.h f
    -
    -क़ ख़ ग़ ज़ -ड़ ॠफ़ -
    - -
    Sample conjuncts
    - -
    ks. jñ tt tr rt
    -
    -कà¥à¤· जà¥à¤ž तà¥à¤¤ तà¥à¤° रà¥à¤¤ -
    - -
    Devanagari digits
    - -
    -0 1 2 3 4 5 6 7 8 9 10
    -
    -० १ २ ३ ४ ५ ६ ७ ८ ९ १०
    -
    - -
    - -

    Gujarati

    - -
    -
    Sanskrit alphabet
    - -
    a aa i ii u uu   r rr   e ai o au
    -
    -અ àª† àª‡ àªˆ àª‰ àªŠ   -ઋ à«    -ઠઠઓ àª” -
    - -
    kaa ki kii ku kuu   kr krr   ke kai ko kau
    -
    -કા કિ કી કૠકૂ   -કૃ àª•à«„   -કે કૈ કો કૌ -
    - -
    k kh g gh ng   -c ch j jh ñ   -t. t.h d. d.h n.   -t th d dh n   -p ph b bh m   -y r l. l v   -ś s. s h
    -
    -ક àª– àª— àª˜ àª™   -ચ àª› àªœ àª àªž   -ટ àª  àª¡ àª¢ àª£   -ત àª¥ àª¦ àª§ àª¨   -પ àª« àª¬ àª­ àª®   -ય àª° àª³ àª² àªµ   -શ àª· àª¸ àª¹ -
    - -
    Sample conjuncts
    - -
    ks. jñ tt tr rt
    -
    -કà«àª· જà«àªž તà«àª¤ તà«àª° રà«àª¤ -
    - -
    Gujarati digits
    - -
    -0 1 2 3 4 5 6 7 8 9 10
    -
    -૦ ૧ ૨ ૩ ૪ ૫ ૬ ૭ ૮ ૯ ૧૦
    -
    - -
    - -

    Bengali

    - -
    -
    Sanskrit alphabet
    - -
    a aa i ii u uu   r rr l   e ai o au
    -
    -অ à¦† à¦‡ à¦ˆ à¦‰ à¦Š   -ঋ à§  à¦Œ   -ঠঠও à¦” -
    - -
    kaa ki kii ku kuu   kr krr kl   ke kai ko kau
    -
    -কা কি কী কৠকূ   -কৃ à¦•à§„ à¦•à§¢   -কে কৈ কো কো -
    - -
    k kh g gh ng   -c ch j jh ñ   -t. t.h d. d.h n.   -t th d dh n   -p ph b bh m   -y r l v   -ś s. s h
    -
    -ক à¦– à¦— à¦˜ à¦™   -চ à¦› à¦œ à¦ à¦ž   -ট à¦  à¦¡ à¦¢ à¦£   -ত à¦¥ à¦¦ à¦§ à¦¨   -প à¦« à¦¬ à¦­ à¦®   -য à¦° à¦² à¦¬   -শ à¦· à¦¸ à¦¹ -
    - -
    Letters with nukta & Assamese letters
    - -
    r. r.h y.   r v
    -
    -ড় ৠয়   -ৰ ৱ -
    - -
    Sample conjuncts
    - -
    ks. jñ tt tr rt
    -
    -কà§à¦· জà§à¦ž তà§à¦¤ তà§à¦° রà§à¦¤ -
    - -
    Bengali digits
    - -
    -0 1 2 3 4 5 6 7 8 9 10
    -
    -০ ১ ২ ৩ ৪ ৫ ৬ ৭ ৮ ৯ ১০
    -
    - -
    - -

    Gurmukhi

    - -
    -
    Panjabi alphabet
    - -
    a aa i ii u uu   e ai o au
    -
    -ਅ ਆ ਇ ਈ ਉ ਊ   -ਠਠਓ ਔ -
    - -
    kaa ki kii ku kuu   ke kai ko kau
    -
    -ਕਾ ਕਿ ਕੀ ਕ੠ਕੂ   -ਕੇ ਕੈ ਕੋ ਕੌ -
    - -
    k kh g gh ng   -c ch j jh ñ   -t. t.h d. d.h n.   -t th d dh n   -p ph b bh m   -y r l v r.   -s h
    -
    -ਕ à¨– à¨— à¨˜ à¨™   -ਚ à¨› à¨œ à¨ à¨ž   -ਟ à¨  à¨¡ à¨¢ à¨£   -ਤ à¨¥ à¨¦ à¨§ à¨¨   -ਪ à¨« à¨¬ à¨­ à¨®   -ਯ à¨° à¨² à¨µ à©œ   -ਸ à¨¹ -
    - -
    Letters with nukta
    - -
    x ğ z f l. š
    -
    -ਖ਼ ਗ਼ ਜ਼ -ਫ਼ ਲ਼ ਸ਼ -
    - -
    Gurmukhi digits
    - -
    -0 1 2 3 4 5 6 7 8 9 10
    -
    -੦ ੧ ੨ ੩ ੪ ੫ ੬ ੭ ੮ ੯ ੧੦
    -
    - -
    - -

    Symbols

    - - -- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    •bullet
    ¢cent sign
    ©copyright sign
    ¤currency sign
    †dagger
    °degree sign
    ÷division sign
    «double angle quotation mark (guillemet) <<
    »double angle quotation mark (guillemet) >>
    “double quotation mark 66
    â€double quotation mark 99
    „double quotation mark low-99
    …ellipsis
    —em dash
    –en dash
    €euro sign
    ―horizontal bar (quotation dash)
    µmicro sign
    ·middle dot (centered period)
    ·middle dot (centered period, Greek ano teleia)
    ×multiplication sign
    ¬not sign
    â„–numero sign
    ‰per mille (per thousand) sign
    ¶pilcrow (paragraph) sign
    ±plus-minus sign
    £pound sterling sign
    ®registered sign
    §section sign
    ₪sheqel sign
    ‹single angle quotation mark (guillemet) <
    ›single angle quotation mark (guillemet) >
    ‘single quotation mark 6
    ’single quotation mark 9 (apostrophe)
    ¹superscript 1
    ²superscript 2
    ³superscript 3
    â„¢trademark sign
    ¥yen sign
    ØŒArabic comma
    Ù«Arabic decimal separator
    ÙªArabic percent sign
    ØŸArabic question mark
    ؛Arabic semicolon
    Û”Arabic-Urdu full stop (Arabic-Urdu period)
    Ö¾Hebrew hyphen (maqaf)
    ׳Hebrew prime (geresh)
    ×´Hebrew double prime (gershayim)
    ॰Indic abbreviation sign
    ।Indic danda
    ॥Indic double danda
    - -
    - -


    19 February 2010

    - - - \ No newline at end of file diff --git a/www/test/encoding_utf-8_all.html b/www/test/encoding_utf-8_all.html deleted file mode 100644 index 4707eb6..0000000 --- a/www/test/encoding_utf-8_all.html +++ /dev/null @@ -1,2064 +0,0 @@ - - - - - - - - - - - -
    0020 !"#$%&'()*+,-./0123456789:;<=>? -
    0040 @ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_ -
    0060 `abcdefghijklmnopqrstuvwxyz{|}~ -
    0080 €‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ -
    00A0  ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ -
    00C0 ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞß -
    00E0 àáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ -
    0100 ĀāĂ㥹ĆćĈĉĊċČčĎďĐđĒēĔĕĖėĘęĚěĜĝĞğ -
    0120 ĠġĢģĤĥĦħĨĩĪīĬĭĮįİıIJijĴĵĶķĸĹĺĻļĽľĿ -
    0140 ŀŁłŃńŅņŇňʼnŊŋŌōŎŏŐőŒœŔŕŖŗŘřŚśŜŝŞş -
    0160 ŠšŢţŤťŦŧŨũŪūŬŭŮůŰűŲųŴŵŶŷŸŹźŻżŽžſ -
    0180 ƀƁƂƃƄƅƆƇƈƉƊƋƌƍƎƏƐƑƒƓƔƕƖƗƘƙƚƛƜƝƞƟ -
    01A0 ƠơƢƣƤƥƦƧƨƩƪƫƬƭƮƯưƱƲƳƴƵƶƷƸƹƺƻƼƽƾƿ -
    01C0 ǀǁǂǃDŽDždžLJLjljNJNjnjǍǎǏǐǑǒǓǔǕǖǗǘǙǚǛǜǝǞǟ -
    01E0 ǠǡǢǣǤǥǦǧǨǩǪǫǬǭǮǯǰDZDzdzǴǵǶǷǸǹǺǻǼǽǾǿ -
    0200 ȀȁȂȃȄȅȆȇȈȉȊȋȌȍȎȏȐȑȒȓȔȕȖȗȘșȚțȜȝȞȟ -
    0220 ȠȡȢȣȤȥȦȧȨȩȪȫȬȭȮȯȰȱȲȳȴȵȶȷȸȹȺȻȼȽȾȿ -
    0240 ɀɁɂɃɄɅɆɇɈɉɊɋɌɍɎɏɐɑɒɓɔɕɖɗɘəɚɛɜɝɞɟ -
    0260 ɠɡɢɣɤɥɦɧɨɩɪɫɬɭɮɯɰɱɲɳɴɵɶɷɸɹɺɻɼɽɾɿ -
    0280 ʀʁʂʃʄʅʆʇʈʉʊʋʌʍʎʏʐʑʒʓʔʕʖʗʘʙʚʛʜʝʞʟ -
    02A0 ʠʡʢʣʤʥʦʧʨʩʪʫʬʭʮʯʰʱʲʳʴʵʶʷʸʹʺʻʼʽʾʿ -
    02C0 ˀˁ˂˃˄˅ˆˇˈˉˊˋˌˍˎˏːˑ˒˓˔˕˖˗˘˙˚˛˜˝˞˟ -
    02E0 ˠˡˢˣˤ˥˦˧˨˩˪˫ˬ˭ˮ˯˰˱˲˳˴˵˶˷˸˹˺˻˼˽˾˿ -
    0300 ̛̖̗̘̙̜̝̞̟̀́̂̃̄̅̆̇̈̉̊̋̌̍̎̏̐̑̒̓̔̕̚ -
    0320 ̴̵̶̷̸̡̢̧̨̠̣̤̥̦̩̪̫̬̭̮̯̰̱̲̳̹̺̻̼̽̾̿ -
    0340 ͇͈͉͍͎̀́͂̓̈́͆͊͋͌ͅ͏͓͔͕͖͙͚͐͑͒͗͛͘͜͟͝͞ -
    0360 ͣͤͥͦͧͨͩͪͫͬͭͮͯ͢͠͡ͰͱͲͳʹ͵Ͷͷ͸͹ͺͻͼͽ;Ϳ -
    0380 ΀΁΂΃΄΅Ά·ΈΉΊ΋Ό΍ΎΏΐΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟ -
    03A0 ΠΡ΢ΣΤΥΦΧΨΩΪΫάέήίΰαβγδεζηθικλμνξο -
    03C0 πρςστυφχψωϊϋόύώϏϐϑϒϓϔϕϖϗϘϙϚϛϜϝϞϟ -
    03E0 ϠϡϢϣϤϥϦϧϨϩϪϫϬϭϮϯϰϱϲϳϴϵ϶ϷϸϹϺϻϼϽϾϿ -
    0400 ЀЁЂЃЄЅІЇЈЉЊЋЌЍЎЏАБВГДЕЖЗИЙКЛМНОП -
    0420 РСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмноп -
    0440 рстуфхцчшщъыьэюяѐёђѓєѕіїјљњћќѝўџ -
    0460 ѠѡѢѣѤѥѦѧѨѩѪѫѬѭѮѯѰѱѲѳѴѵѶѷѸѹѺѻѼѽѾѿ -
    0480 Ҁҁ҂҃҄҅҆҇҈҉ҊҋҌҍҎҏҐґҒғҔҕҖҗҘҙҚқҜҝҞҟ -
    04A0 ҠҡҢңҤҥҦҧҨҩҪҫҬҭҮүҰұҲҳҴҵҶҷҸҹҺһҼҽҾҿ -
    04C0 ӀӁӂӃӄӅӆӇӈӉӊӋӌӍӎӏӐӑӒӓӔӕӖӗӘәӚӛӜӝӞӟ -
    04E0 ӠӡӢӣӤӥӦӧӨөӪӫӬӭӮӯӰӱӲӳӴӵӶӷӸӹӺӻӼӽӾӿ -
    0500 ԀԁԂԃԄԅԆԇԈԉԊԋԌԍԎԏԐԑԒԓԔԕԖԗԘԙԚԛԜԝԞԟ -
    0520 ԠԡԢԣԤԥԦԧԨԩԪԫԬԭԮԯ԰ԱԲԳԴԵԶԷԸԹԺԻԼԽԾԿ -
    0540 ՀՁՂՃՄՅՆՇՈՉՊՋՌՍՎՏՐՑՒՓՔՕՖ՗՘ՙ՚՛՜՝՞՟ -
    0560 ՠաբգդեզէըթժիլխծկհձղճմյնշոչպջռսվտ -
    0580 րցւփքօֆևֈ։֊֋֌֍֎֏֐֑֖֛֚֒֓֔֕֗֘֙֜֝֞֟ -
    05A0 ְֱֲֳִֵֶַָֹֺֻּֽ֢֣֤֥֦֧֪֭֮֠֡֨֩֫֬֯־ֿ -
    05C0 ׀ׁׂ׃ׅׄ׆ׇ׈׉׊׋׌׍׎׏אבגדהוזחטיךכלםמן -
    05E0 נסעףפץצקרשת׫׬׭׮ׯװױײ׳״׵׶׷׸׹׺׻׼׽׾׿ -
    0600 ؀؁؂؃؄؅؆؇؈؉؊؋،؍؎؏ؘؙؚؐؑؒؓؔؕؖؗ؛؜؝؞؟ -
    0620 ؠءآأؤإئابةتثجحخدذرزسشصضطظعغػؼؽؾؿ -
    0640 ـفقكلمنهوىيًٌٍَُِّْٕٖٜٟٓٔٗ٘ٙٚٛٝٞ -
    0660 ٠١٢٣٤٥٦٧٨٩٪٫٬٭ٮٯٰٱٲٳٴٵٶٷٸٹٺٻټٽپٿ -
    0680 ڀځڂڃڄڅچڇڈډڊڋڌڍڎڏڐڑڒړڔڕږڗژڙښڛڜڝڞڟ -
    06A0 ڠڡڢڣڤڥڦڧڨکڪګڬڭڮگڰڱڲڳڴڵڶڷڸڹںڻڼڽھڿ -
    06C0 ۀہۂۃۄۅۆۇۈۉۊۋیۍێۏېۑےۓ۔ەۖۗۘۙۚۛۜ۝۞۟ -
    06E0 ۣ۠ۡۢۤۥۦۧۨ۩۪ۭ۫۬ۮۯ۰۱۲۳۴۵۶۷۸۹ۺۻۼ۽۾ۿ -
    0700 ܀܁܂܃܄܅܆܇܈܉܊܋܌܍܎܏ܐܑܒܓܔܕܖܗܘܙܚܛܜܝܞܟ -
    0720 ܠܡܢܣܤܥܦܧܨܩܪܫܬܭܮܯܱܴܷܸܹܻܼܾܰܲܳܵܶܺܽܿ -
    0740 ݂݄݆݈݀݁݃݅݇݉݊݋݌ݍݎݏݐݑݒݓݔݕݖݗݘݙݚݛݜݝݞݟ -
    0760 ݠݡݢݣݤݥݦݧݨݩݪݫݬݭݮݯݰݱݲݳݴݵݶݷݸݹݺݻݼݽݾݿ -
    0780 ހށނރބޅކއވމފދތލގޏސޑޒޓޔޕޖޗޘޙޚޛޜޝޞޟ -
    07A0 ޠޡޢޣޤޥަާިީުޫެޭޮޯްޱ޲޳޴޵޶޷޸޹޺޻޼޽޾޿ -
    07C0 ߀߁߂߃߄߅߆߇߈߉ߊߋߌߍߎߏߐߑߒߓߔߕߖߗߘߙߚߛߜߝߞߟ -
    07E0 ߠߡߢߣߤߥߦߧߨߩߪ߲߫߬߭߮߯߰߱߳ߴߵ߶߷߸߹ߺ߻߼߽߾߿ -
    0800 ࠀࠁࠂࠃࠄࠅࠆࠇࠈࠉࠊࠋࠌࠍࠎࠏࠐࠑࠒࠓࠔࠕࠖࠗ࠘࠙ࠚࠛࠜࠝࠞࠟ -
    0820 ࠠࠡࠢࠣࠤࠥࠦࠧࠨࠩࠪࠫࠬ࠭࠮࠯࠰࠱࠲࠳࠴࠵࠶࠷࠸࠹࠺࠻࠼࠽࠾࠿ -
    0840 ࡀࡁࡂࡃࡄࡅࡆࡇࡈࡉࡊࡋࡌࡍࡎࡏࡐࡑࡒࡓࡔࡕࡖࡗࡘ࡙࡚࡛࡜࡝࡞࡟ -
    0860 ࡠࡡࡢࡣࡤࡥࡦࡧࡨࡩࡪ࡫࡬࡭࡮࡯ࡰࡱࡲࡳࡴࡵࡶࡷࡸࡹࡺࡻࡼࡽࡾࡿ -
    0880 ࢀࢁࢂࢃࢄࢅࢆࢇ࢈ࢉࢊࢋࢌࢍࢎ࢏࢐࢑࢒࢓࢔࢕࢖࢙࢚࢛ࢗ࢘࢜࢝࢞࢟ -
    08A0 ࢠࢡࢢࢣࢤࢥࢦࢧࢨࢩࢪࢫࢬࢭࢮࢯࢰࢱࢲࢳࢴࢵࢶࢷࢸࢹࢺࢻࢼࢽࢾࢿ -
    08C0 ࣀࣁࣂࣃࣄࣅࣆࣇࣈࣉ࣏࣐࣑࣒࣓࣊࣋࣌࣍࣎ࣔࣕࣖࣗࣘࣙࣚࣛࣜࣝࣞࣟ -
    08E0 ࣠࣡࣢ࣰࣱࣲࣣࣦࣩ࣭࣮࣯ࣶࣹࣺࣤࣥࣧࣨ࣪࣫࣬ࣳࣴࣵࣷࣸࣻࣼࣽࣾࣿ -
    0900 ऀँंःऄअआइईउऊऋऌऍऎएऐऑऒओऔकखगघङचछजझञट -
    0920 ठडढणतथदधनऩपफबभमयरऱलळऴवशषसहऺऻ़ऽाि -
    0940 ीुूृॄॅॆेैॉॊोौ्ॎॏॐ॒॑॓॔ॕॖॗक़ख़ग़ज़ड़ढ़फ़य़ -
    0960 ॠॡॢॣ।॥०१२३४५६७८९॰ॱॲॳॴॵॶॷॸॹॺॻॼॽॾॿ -
    0980 ঀঁংঃ঄অআইঈউঊঋঌ঍঎এঐ঑঒ওঔকখগঘঙচছজঝঞট -
    09A0 ঠডঢণতথদধন঩পফবভমযর঱ল঳঴঵শষসহ঺঻়ঽাি -
    09C0 ীুূৃৄ৅৆েৈ৉৊োৌ্ৎ৏৐৑৒৓৔৕৖ৗ৘৙৚৛ড়ঢ়৞য় -
    09E0 ৠৡৢৣ৤৥০১২৩৪৫৬৭৮৯ৰৱ৲৳৴৵৶৷৸৹৺৻ৼ৽৾৿ -
    0A00 ਀ਁਂਃ਄ਅਆਇਈਉਊ਋਌਍਎ਏਐ਑਒ਓਔਕਖਗਘਙਚਛਜਝਞਟ -
    0A20 ਠਡਢਣਤਥਦਧਨ਩ਪਫਬਭਮਯਰ਱ਲਲ਼਴ਵਸ਼਷ਸਹ਺਻਼਽ਾਿ -
    0A40 ੀੁੂ੃੄੅੆ੇੈ੉੊ੋੌ੍੎੏੐ੑ੒੓੔੕੖੗੘ਖ਼ਗ਼ਜ਼ੜ੝ਫ਼੟ -
    0A60 ੠੡੢੣੤੥੦੧੨੩੪੫੬੭੮੯ੰੱੲੳੴੵ੶੷੸੹੺੻੼੽੾੿ -
    0A80 ઀ઁંઃ઄અઆઇઈઉઊઋઌઍ઎એઐઑ઒ઓઔકખગઘઙચછજઝઞટ -
    0AA0 ઠડઢણતથદધન઩પફબભમયર઱લળ઴વશષસહ઺઻઼ઽાિ -
    0AC0 ીુૂૃૄૅ૆ેૈૉ૊ોૌ્૎૏ૐ૑૒૓૔૕૖૗૘૙૚૛૜૝૞૟ -
    0AE0 ૠૡૢૣ૤૥૦૧૨૩૪૫૬૭૮૯૰૱૲૳૴૵૶૷૸ૹૺૻૼ૽૾૿ -
    0B00 ଀ଁଂଃ଄ଅଆଇଈଉଊଋଌ଍଎ଏଐ଑଒ଓଔକଖଗଘଙଚଛଜଝଞଟ -
    0B20 ଠଡଢଣତଥଦଧନ଩ପଫବଭମଯର଱ଲଳ଴ଵଶଷସହ଺଻଼ଽାି -
    0B40 ୀୁୂୃୄ୅୆େୈ୉୊ୋୌ୍୎୏୐୑୒୓୔୕ୖୗ୘୙୚୛ଡ଼ଢ଼୞ୟ -
    0B60 ୠୡୢୣ୤୥୦୧୨୩୪୫୬୭୮୯୰ୱ୲୳୴୵୶୷୸୹୺୻୼୽୾୿ -
    0B80 ஀஁ஂஃ஄அஆஇஈஉஊ஋஌஍எஏஐ஑ஒஓஔக஖஗஘ஙச஛ஜ஝ஞட -
    0BA0 ஠஡஢ணத஥஦஧நனப஫஬஭மயரறலளழவஶஷஸஹ஺஻஼஽ாி -
    0BC0 ீுூ௃௄௅ெேை௉ொோௌ்௎௏ௐ௑௒௓௔௕௖ௗ௘௙௚௛௜௝௞௟ -
    0BE0 ௠௡௢௣௤௥௦௧௨௩௪௫௬௭௮௯௰௱௲௳௴௵௶௷௸௹௺௻௼௽௾௿ -
    0C00 ఀఁంఃఄఅఆఇఈఉఊఋఌ఍ఎఏఐ఑ఒఓఔకఖగఘఙచఛజఝఞట -
    0C20 ఠడఢణతథదధన఩పఫబభమయరఱలళఴవశషసహ఺఻఼ఽాి -
    0C40 ీుూృౄ౅ెేై౉ొోౌ్౎౏౐౑౒౓౔ౕౖ౗ౘౙౚ౛౜ౝ౞౟ -
    0C60 ౠౡౢౣ౤౥౦౧౨౩౪౫౬౭౮౯౰౱౲౳౴౵౶౷౸౹౺౻౼౽౾౿ -
    0C80 ಀಁಂಃ಄ಅಆಇಈಉಊಋಌ಍ಎಏಐ಑ಒಓಔಕಖಗಘಙಚಛಜಝಞಟ -
    0CA0 ಠಡಢಣತಥದಧನ಩ಪಫಬಭಮಯರಱಲಳ಴ವಶಷಸಹ಺಻಼ಽಾಿ -
    0CC0 ೀುೂೃೄ೅ೆೇೈ೉ೊೋೌ್೎೏೐೑೒೓೔ೕೖ೗೘೙೚೛೜ೝೞ೟ -
    0CE0 ೠೡೢೣ೤೥೦೧೨೩೪೫೬೭೮೯೰ೱೲೳ೴೵೶೷೸೹೺೻೼೽೾೿ -
    0D00 ഀഁംഃഄഅആഇഈഉഊഋഌ഍എഏഐ഑ഒഓഔകഖഗഘങചഛജഝഞട -
    0D20 ഠഡഢണതഥദധനഩപഫബഭമയരറലളഴവശഷസഹഺ഻഼ഽാി -
    0D40 ീുൂൃൄ൅െേൈ൉ൊോൌ്ൎ൏൐൑൒൓ൔൕൖൗ൘൙൚൛൜൝൞ൟ -
    0D60 ൠൡൢൣ൤൥൦൧൨൩൪൫൬൭൮൯൰൱൲൳൴൵൶൷൸൹ൺൻർൽൾൿ -
    0D80 ඀ඁංඃ඄අආඇඈඉඊඋඌඍඎඏඐඑඒඓඔඕඖ඗඘඙කඛගඝඞඟ -
    0DA0 චඡජඣඤඥඦටඨඩඪණඬතථදධන඲ඳපඵබභමඹයර඼ල඾඿ -
    0DC0 වශෂසහළෆ෇෈෉්෋෌෍෎ාැෑිීු෕ූ෗ෘෙේෛොෝෞෟ -
    0DE0 ෠෡෢෣෤෥෦෧෨෩෪෫෬෭෮෯෰෱ෲෳ෴෵෶෷෸෹෺෻෼෽෾෿ -
    0E00 ฀กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟ -
    0E20 ภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู฻฼฽฾฿ -
    0E40 เแโใไๅๆ็่้๊๋์ํ๎๏๐๑๒๓๔๕๖๗๘๙๚๛๜๝๞๟ -
    0E60 ๠๡๢๣๤๥๦๧๨๩๪๫๬๭๮๯๰๱๲๳๴๵๶๷๸๹๺๻๼๽๾๿ -
    0E80 ຀ກຂ຃ຄ຅ຆງຈຉຊ຋ຌຍຎຏຐຑຒຓດຕຖທຘນບປຜຝພຟ -
    0EA0 ຠມຢຣ຤ລ຦ວຨຩສຫຬອຮຯະັາຳິີຶື຺ຸູົຼຽ຾຿ -
    0EC0 ເແໂໃໄ໅ໆ໇່້໊໋໌ໍ໎໏໐໑໒໓໔໕໖໗໘໙໚໛ໜໝໞໟ -
    0EE0 ໠໡໢໣໤໥໦໧໨໩໪໫໬໭໮໯໰໱໲໳໴໵໶໷໸໹໺໻໼໽໾໿ -
    0F00 ༀ༁༂༃༄༅༆༇༈༉༊་༌།༎༏༐༑༒༓༔༕༖༗༘༙༚༛༜༝༞༟ -
    0F20 ༠༡༢༣༤༥༦༧༨༩༪༫༬༭༮༯༰༱༲༳༴༵༶༷༸༹༺༻༼༽༾༿ -
    0F40 ཀཁགགྷངཅཆཇ཈ཉཊཋཌཌྷཎཏཐདདྷནཔཕབབྷམཙཚཛཛྷཝཞཟ -
    0F60 འཡརལཤཥསཧཨཀྵཪཫཬ཭཮཯཰ཱཱཱིིུུྲྀཷླྀཹེཻོཽཾཿ -
    0F80 ྄ཱྀྀྂྃ྅྆྇ྈྉྊྋྌྍྎྏྐྑྒྒྷྔྕྖྗ྘ྙྚྛྜྜྷྞྟ -
    0FA0 ྠྡྡྷྣྤྥྦྦྷྨྩྪྫྫྷྭྮྯྰྱྲླྴྵྶྷྸྐྵྺྻྼ྽྾྿ -
    0FC0 ࿀࿁࿂࿃࿄࿅࿆࿇࿈࿉࿊࿋࿌࿍࿎࿏࿐࿑࿒࿓࿔࿕࿖࿗࿘࿙࿚࿛࿜࿝࿞࿟ -
    0FE0 ࿠࿡࿢࿣࿤࿥࿦࿧࿨࿩࿪࿫࿬࿭࿮࿯࿰࿱࿲࿳࿴࿵࿶࿷࿸࿹࿺࿻࿼࿽࿾࿿ -
    1000 ကခဂဃငစဆဇဈဉညဋဌဍဎဏတထဒဓနပဖဗဘမယရလဝသဟ -
    1020 ဠအဢဣဤဥဦဧဨဩဪါာိီုူေဲဳဴဵံ့း္်ျြွှဿ -
    1040 ၀၁၂၃၄၅၆၇၈၉၊။၌၍၎၏ၐၑၒၓၔၕၖၗၘၙၚၛၜၝၞၟ -
    1060 ၠၡၢၣၤၥၦၧၨၩၪၫၬၭၮၯၰၱၲၳၴၵၶၷၸၹၺၻၼၽၾၿ -
    1080 ႀႁႂႃႄႅႆႇႈႉႊႋႌႍႎႏ႐႑႒႓႔႕႖႗႘႙ႚႛႜႝ႞႟ -
    10A0 ႠႡႢႣႤႥႦႧႨႩႪႫႬႭႮႯႰႱႲႳႴႵႶႷႸႹႺႻႼႽႾႿ -
    10C0 ჀჁჂჃჄჅ჆Ⴧ჈჉჊჋჌Ⴭ჎჏აბგდევზთიკლმნოპჟ -
    10E0 რსტუფქღყშჩცძწჭხჯჰჱჲჳჴჵჶჷჸჹჺ჻ჼჽჾჿ -
    1100 ᄀᄁᄂᄃᄄᄅᄆᄇᄈᄉᄊᄋᄌᄍᄎᄏᄐᄑᄒᄓᄔᄕᄖᄗᄘᄙᄚᄛᄜᄝᄞᄟ -
    1120 ᄠᄡᄢᄣᄤᄥᄦᄧᄨᄩᄪᄫᄬᄭᄮᄯᄰᄱᄲᄳᄴᄵᄶᄷᄸᄹᄺᄻᄼᄽᄾᄿ -
    1140 ᅀᅁᅂᅃᅄᅅᅆᅇᅈᅉᅊᅋᅌᅍᅎᅏᅐᅑᅒᅓᅔᅕᅖᅗᅘᅙᅚᅛᅜᅝᅞᅟ -
    1160 ᅠᅡᅢᅣᅤᅥᅦᅧᅨᅩᅪᅫᅬᅭᅮᅯᅰᅱᅲᅳᅴᅵᅶᅷᅸᅹᅺᅻᅼᅽᅾᅿ -
    1180 ᆀᆁᆂᆃᆄᆅᆆᆇᆈᆉᆊᆋᆌᆍᆎᆏᆐᆑᆒᆓᆔᆕᆖᆗᆘᆙᆚᆛᆜᆝᆞᆟ -
    11A0 ᆠᆡᆢᆣᆤᆥᆦᆧᆨᆩᆪᆫᆬᆭᆮᆯᆰᆱᆲᆳᆴᆵᆶᆷᆸᆹᆺᆻᆼᆽᆾᆿ -
    11C0 ᇀᇁᇂᇃᇄᇅᇆᇇᇈᇉᇊᇋᇌᇍᇎᇏᇐᇑᇒᇓᇔᇕᇖᇗᇘᇙᇚᇛᇜᇝᇞᇟ -
    11E0 ᇠᇡᇢᇣᇤᇥᇦᇧᇨᇩᇪᇫᇬᇭᇮᇯᇰᇱᇲᇳᇴᇵᇶᇷᇸᇹᇺᇻᇼᇽᇾᇿ -
    1200 ሀሁሂሃሄህሆሇለሉሊላሌልሎሏሐሑሒሓሔሕሖሗመሙሚማሜምሞሟ -
    1220 ሠሡሢሣሤሥሦሧረሩሪራሬርሮሯሰሱሲሳሴስሶሷሸሹሺሻሼሽሾሿ -
    1240 ቀቁቂቃቄቅቆቇቈ቉ቊቋቌቍ቎቏ቐቑቒቓቔቕቖ቗ቘ቙ቚቛቜቝ቞቟ -
    1260 በቡቢባቤብቦቧቨቩቪቫቬቭቮቯተቱቲታቴትቶቷቸቹቺቻቼችቾቿ -
    1280 ኀኁኂኃኄኅኆኇኈ኉ኊኋኌኍ኎኏ነኑኒናኔንኖኗኘኙኚኛኜኝኞኟ -
    12A0 አኡኢኣኤእኦኧከኩኪካኬክኮኯኰ኱ኲኳኴኵ኶኷ኸኹኺኻኼኽኾ኿ -
    12C0 ዀ዁ዂዃዄዅ዆዇ወዉዊዋዌውዎዏዐዑዒዓዔዕዖ዗ዘዙዚዛዜዝዞዟ -
    12E0 ዠዡዢዣዤዥዦዧየዩዪያዬይዮዯደዱዲዳዴድዶዷዸዹዺዻዼዽዾዿ -
    1300 ጀጁጂጃጄጅጆጇገጉጊጋጌግጎጏጐ጑ጒጓጔጕ጖጗ጘጙጚጛጜጝጞጟ -
    1320 ጠጡጢጣጤጥጦጧጨጩጪጫጬጭጮጯጰጱጲጳጴጵጶጷጸጹጺጻጼጽጾጿ -
    1340 ፀፁፂፃፄፅፆፇፈፉፊፋፌፍፎፏፐፑፒፓፔፕፖፗፘፙፚ፛፜፝፞፟ -
    1360 ፠፡።፣፤፥፦፧፨፩፪፫፬፭፮፯፰፱፲፳፴፵፶፷፸፹፺፻፼፽፾፿ -
    1380 ᎀᎁᎂᎃᎄᎅᎆᎇᎈᎉᎊᎋᎌᎍᎎᎏ᎐᎑᎒᎓᎔᎕᎖᎗᎘᎙᎚᎛᎜᎝᎞᎟ -
    13A0 ᎠᎡᎢᎣᎤᎥᎦᎧᎨᎩᎪᎫᎬᎭᎮᎯᎰᎱᎲᎳᎴᎵᎶᎷᎸᎹᎺᎻᎼᎽᎾᎿ -
    13C0 ᏀᏁᏂᏃᏄᏅᏆᏇᏈᏉᏊᏋᏌᏍᏎᏏᏐᏑᏒᏓᏔᏕᏖᏗᏘᏙᏚᏛᏜᏝᏞᏟ -
    13E0 ᏠᏡᏢᏣᏤᏥᏦᏧᏨᏩᏪᏫᏬᏭᏮᏯᏰᏱᏲᏳᏴᏵ᏶᏷ᏸᏹᏺᏻᏼᏽ᏾᏿ -
    1400 ᐀ᐁᐂᐃᐄᐅᐆᐇᐈᐉᐊᐋᐌᐍᐎᐏᐐᐑᐒᐓᐔᐕᐖᐗᐘᐙᐚᐛᐜᐝᐞᐟ -
    1420 ᐠᐡᐢᐣᐤᐥᐦᐧᐨᐩᐪᐫᐬᐭᐮᐯᐰᐱᐲᐳᐴᐵᐶᐷᐸᐹᐺᐻᐼᐽᐾᐿ -
    1440 ᑀᑁᑂᑃᑄᑅᑆᑇᑈᑉᑊᑋᑌᑍᑎᑏᑐᑑᑒᑓᑔᑕᑖᑗᑘᑙᑚᑛᑜᑝᑞᑟ -
    1460 ᑠᑡᑢᑣᑤᑥᑦᑧᑨᑩᑪᑫᑬᑭᑮᑯᑰᑱᑲᑳᑴᑵᑶᑷᑸᑹᑺᑻᑼᑽᑾᑿ -
    1480 ᒀᒁᒂᒃᒄᒅᒆᒇᒈᒉᒊᒋᒌᒍᒎᒏᒐᒑᒒᒓᒔᒕᒖᒗᒘᒙᒚᒛᒜᒝᒞᒟ -
    14A0 ᒠᒡᒢᒣᒤᒥᒦᒧᒨᒩᒪᒫᒬᒭᒮᒯᒰᒱᒲᒳᒴᒵᒶᒷᒸᒹᒺᒻᒼᒽᒾᒿ -
    14C0 ᓀᓁᓂᓃᓄᓅᓆᓇᓈᓉᓊᓋᓌᓍᓎᓏᓐᓑᓒᓓᓔᓕᓖᓗᓘᓙᓚᓛᓜᓝᓞᓟ -
    14E0 ᓠᓡᓢᓣᓤᓥᓦᓧᓨᓩᓪᓫᓬᓭᓮᓯᓰᓱᓲᓳᓴᓵᓶᓷᓸᓹᓺᓻᓼᓽᓾᓿ -
    1500 ᔀᔁᔂᔃᔄᔅᔆᔇᔈᔉᔊᔋᔌᔍᔎᔏᔐᔑᔒᔓᔔᔕᔖᔗᔘᔙᔚᔛᔜᔝᔞᔟ -
    1520 ᔠᔡᔢᔣᔤᔥᔦᔧᔨᔩᔪᔫᔬᔭᔮᔯᔰᔱᔲᔳᔴᔵᔶᔷᔸᔹᔺᔻᔼᔽᔾᔿ -
    1540 ᕀᕁᕂᕃᕄᕅᕆᕇᕈᕉᕊᕋᕌᕍᕎᕏᕐᕑᕒᕓᕔᕕᕖᕗᕘᕙᕚᕛᕜᕝᕞᕟ -
    1560 ᕠᕡᕢᕣᕤᕥᕦᕧᕨᕩᕪᕫᕬᕭᕮᕯᕰᕱᕲᕳᕴᕵᕶᕷᕸᕹᕺᕻᕼᕽᕾᕿ -
    1580 ᖀᖁᖂᖃᖄᖅᖆᖇᖈᖉᖊᖋᖌᖍᖎᖏᖐᖑᖒᖓᖔᖕᖖᖗᖘᖙᖚᖛᖜᖝᖞᖟ -
    15A0 ᖠᖡᖢᖣᖤᖥᖦᖧᖨᖩᖪᖫᖬᖭᖮᖯᖰᖱᖲᖳᖴᖵᖶᖷᖸᖹᖺᖻᖼᖽᖾᖿ -
    15C0 ᗀᗁᗂᗃᗄᗅᗆᗇᗈᗉᗊᗋᗌᗍᗎᗏᗐᗑᗒᗓᗔᗕᗖᗗᗘᗙᗚᗛᗜᗝᗞᗟ -
    15E0 ᗠᗡᗢᗣᗤᗥᗦᗧᗨᗩᗪᗫᗬᗭᗮᗯᗰᗱᗲᗳᗴᗵᗶᗷᗸᗹᗺᗻᗼᗽᗾᗿ -
    1600 ᘀᘁᘂᘃᘄᘅᘆᘇᘈᘉᘊᘋᘌᘍᘎᘏᘐᘑᘒᘓᘔᘕᘖᘗᘘᘙᘚᘛᘜᘝᘞᘟ -
    1620 ᘠᘡᘢᘣᘤᘥᘦᘧᘨᘩᘪᘫᘬᘭᘮᘯᘰᘱᘲᘳᘴᘵᘶᘷᘸᘹᘺᘻᘼᘽᘾᘿ -
    1640 ᙀᙁᙂᙃᙄᙅᙆᙇᙈᙉᙊᙋᙌᙍᙎᙏᙐᙑᙒᙓᙔᙕᙖᙗᙘᙙᙚᙛᙜᙝᙞᙟ -
    1660 ᙠᙡᙢᙣᙤᙥᙦᙧᙨᙩᙪᙫᙬ᙭᙮ᙯᙰᙱᙲᙳᙴᙵᙶᙷᙸᙹᙺᙻᙼᙽᙾᙿ -
    1680  ᚁᚂᚃᚄᚅᚆᚇᚈᚉᚊᚋᚌᚍᚎᚏᚐᚑᚒᚓᚔᚕᚖᚗᚘᚙᚚ᚛᚜᚝᚞᚟ -
    16A0 ᚠᚡᚢᚣᚤᚥᚦᚧᚨᚩᚪᚫᚬᚭᚮᚯᚰᚱᚲᚳᚴᚵᚶᚷᚸᚹᚺᚻᚼᚽᚾᚿ -
    16C0 ᛀᛁᛂᛃᛄᛅᛆᛇᛈᛉᛊᛋᛌᛍᛎᛏᛐᛑᛒᛓᛔᛕᛖᛗᛘᛙᛚᛛᛜᛝᛞᛟ -
    16E0 ᛠᛡᛢᛣᛤᛥᛦᛧᛨᛩᛪ᛫᛬᛭ᛮᛯᛰᛱᛲᛳᛴᛵᛶᛷᛸ᛹᛺᛻᛼᛽᛾᛿ -
    1700 ᜀᜁᜂᜃᜄᜅᜆᜇᜈᜉᜊᜋᜌᜍᜎᜏᜐᜑᜒᜓ᜔᜕᜖᜗᜘᜙᜚᜛᜜᜝᜞ᜟ -
    1720 ᜠᜡᜢᜣᜤᜥᜦᜧᜨᜩᜪᜫᜬᜭᜮᜯᜰᜱᜲᜳ᜴᜵᜶᜷᜸᜹᜺᜻᜼᜽᜾᜿ -
    1740 ᝀᝁᝂᝃᝄᝅᝆᝇᝈᝉᝊᝋᝌᝍᝎᝏᝐᝑᝒᝓ᝔᝕᝖᝗᝘᝙᝚᝛᝜᝝᝞᝟ -
    1760 ᝠᝡᝢᝣᝤᝥᝦᝧᝨᝩᝪᝫᝬ᝭ᝮᝯᝰ᝱ᝲᝳ᝴᝵᝶᝷᝸᝹᝺᝻᝼᝽᝾᝿ -
    1780 កខគឃងចឆជឈញដឋឌឍណតថទធនបផពភមយរលវឝឞស -
    17A0 ហឡអឣឤឥឦឧឨឩឪឫឬឭឮឯឰឱឲឳ឴឵ាិីឹឺុូួើឿ -
    17C0 ៀេែៃោៅំះៈ៉៊់៌៍៎៏័៑្៓។៕៖ៗ៘៙៚៛ៜ៝៞៟ -
    17E0 ០១២៣៤៥៦៧៨៩៪៫៬៭៮៯៰៱៲៳៴៵៶៷៸៹៺៻៼៽៾៿ -
    1800 ᠀᠁᠂᠃᠄᠅᠆᠇᠈᠉᠊᠋᠌᠍᠎᠏᠐᠑᠒᠓᠔᠕᠖᠗᠘᠙᠚᠛᠜᠝᠞᠟ -
    1820 ᠠᠡᠢᠣᠤᠥᠦᠧᠨᠩᠪᠫᠬᠭᠮᠯᠰᠱᠲᠳᠴᠵᠶᠷᠸᠹᠺᠻᠼᠽᠾᠿ -
    1840 ᡀᡁᡂᡃᡄᡅᡆᡇᡈᡉᡊᡋᡌᡍᡎᡏᡐᡑᡒᡓᡔᡕᡖᡗᡘᡙᡚᡛᡜᡝᡞᡟ -
    1860 ᡠᡡᡢᡣᡤᡥᡦᡧᡨᡩᡪᡫᡬᡭᡮᡯᡰᡱᡲᡳᡴᡵᡶᡷᡸ᡹᡺᡻᡼᡽᡾᡿ -
    1880 ᢀᢁᢂᢃᢄᢅᢆᢇᢈᢉᢊᢋᢌᢍᢎᢏᢐᢑᢒᢓᢔᢕᢖᢗᢘᢙᢚᢛᢜᢝᢞᢟ -
    18A0 ᢠᢡᢢᢣᢤᢥᢦᢧᢨᢩᢪ᢫᢬᢭᢮᢯ᢰᢱᢲᢳᢴᢵᢶᢷᢸᢹᢺᢻᢼᢽᢾᢿ -
    18C0 ᣀᣁᣂᣃᣄᣅᣆᣇᣈᣉᣊᣋᣌᣍᣎᣏᣐᣑᣒᣓᣔᣕᣖᣗᣘᣙᣚᣛᣜᣝᣞᣟ -
    18E0 ᣠᣡᣢᣣᣤᣥᣦᣧᣨᣩᣪᣫᣬᣭᣮᣯᣰᣱᣲᣳᣴᣵ᣶᣷᣸᣹᣺᣻᣼᣽᣾᣿ -
    1900 ᤀᤁᤂᤃᤄᤅᤆᤇᤈᤉᤊᤋᤌᤍᤎᤏᤐᤑᤒᤓᤔᤕᤖᤗᤘᤙᤚᤛᤜᤝᤞ᤟ -
    1920 ᤠᤡᤢᤣᤤᤥᤦᤧᤨᤩᤪᤫ᤬᤭᤮᤯ᤰᤱᤲᤳᤴᤵᤶᤷᤸ᤻᤹᤺᤼᤽᤾᤿ -
    1940 ᥀᥁᥂᥃᥄᥅᥆᥇᥈᥉᥊᥋᥌᥍᥎᥏ᥐᥑᥒᥓᥔᥕᥖᥗᥘᥙᥚᥛᥜᥝᥞᥟ -
    1960 ᥠᥡᥢᥣᥤᥥᥦᥧᥨᥩᥪᥫᥬᥭ᥮᥯ᥰᥱᥲᥳᥴ᥵᥶᥷᥸᥹᥺᥻᥼᥽᥾᥿ -
    1980 ᦀᦁᦂᦃᦄᦅᦆᦇᦈᦉᦊᦋᦌᦍᦎᦏᦐᦑᦒᦓᦔᦕᦖᦗᦘᦙᦚᦛᦜᦝᦞᦟ -
    19A0 ᦠᦡᦢᦣᦤᦥᦦᦧᦨᦩᦪᦫ᦬᦭᦮᦯ᦰᦱᦲᦳᦴᦵᦶᦷᦸᦹᦺᦻᦼᦽᦾᦿ -
    19C0 ᧀᧁᧂᧃᧄᧅᧆᧇᧈᧉ᧊᧋᧌᧍᧎᧏᧐᧑᧒᧓᧔᧕᧖᧗᧘᧙᧚᧛᧜᧝᧞᧟ -
    19E0 ᧠᧡᧢᧣᧤᧥᧦᧧᧨᧩᧪᧫᧬᧭᧮᧯᧰᧱᧲᧳᧴᧵᧶᧷᧸᧹᧺᧻᧼᧽᧾᧿ -
    1A00 ᨀᨁᨂᨃᨄᨅᨆᨇᨈᨉᨊᨋᨌᨍᨎᨏᨐᨑᨒᨓᨔᨕᨖᨘᨗᨙᨚᨛ᨜᨝᨞᨟ -
    1A20 ᨠᨡᨢᨣᨤᨥᨦᨧᨨᨩᨪᨫᨬᨭᨮᨯᨰᨱᨲᨳᨴᨵᨶᨷᨸᨹᨺᨻᨼᨽᨾᨿ -
    1A40 ᩀᩁᩂᩃᩄᩅᩆᩇᩈᩉᩊᩋᩌᩍᩎᩏᩐᩑᩒᩓᩔᩕᩖᩗᩘᩙᩚᩛᩜᩝᩞ᩟ -
    1A60 ᩠ᩡᩢᩣᩤᩥᩦᩧᩨᩩᩪᩫᩬᩭᩮᩯᩰᩱᩲᩳᩴ᩵᩶᩷᩸᩹᩺᩻᩼᩽᩾᩿ -
    1A80 ᪀᪁᪂᪃᪄᪅᪆᪇᪈᪉᪊᪋᪌᪍᪎᪏᪐᪑᪒᪓᪔᪕᪖᪗᪘᪙᪚᪛᪜᪝᪞᪟ -
    1AA0 ᪠᪡᪢᪣᪤᪥᪦ᪧ᪨᪩᪪᪫᪬᪭᪮᪯᪵᪶᪷᪸᪹᪺᪽᪰᪱᪲᪳᪴᪻᪼᪾ᪿ -
    1AC0 ᫀ᫃᫄᫊᫁᫂᫅᫆᫇᫈᫉᫋ᫌᫍᫎ᫏᫐᫑᫒᫓᫔᫕᫖᫗᫘᫙᫚᫛᫜᫝᫞᫟ -
    1AE0 ᫠᫡᫢᫣᫤᫥᫦᫧᫨᫩᫪᫫᫬᫭᫮᫯᫰᫱᫲᫳᫴᫵᫶᫷᫸᫹᫺᫻᫼᫽᫾᫿ -
    1B00 ᬀᬁᬂᬃᬄᬅᬆᬇᬈᬉᬊᬋᬌᬍᬎᬏᬐᬑᬒᬓᬔᬕᬖᬗᬘᬙᬚᬛᬜᬝᬞᬟ -
    1B20 ᬠᬡᬢᬣᬤᬥᬦᬧᬨᬩᬪᬫᬬᬭᬮᬯᬰᬱᬲᬳ᬴ᬵᬶᬷᬸᬹᬺᬻᬼᬽᬾᬿ -
    1B40 ᭀᭁᭂᭃ᭄ᭅᭆᭇᭈᭉᭊᭋᭌ᭍᭎᭏᭐᭑᭒᭓᭔᭕᭖᭗᭘᭙᭚᭛᭜᭝᭞᭟ -
    1B60 ᭠᭡᭢᭣᭤᭥᭦᭧᭨᭩᭪᭬᭫᭭᭮᭯᭰᭱᭲᭳᭴᭵᭶᭷᭸᭹᭺᭻᭼᭽᭾᭿ -
    1B80 ᮀᮁᮂᮃᮄᮅᮆᮇᮈᮉᮊᮋᮌᮍᮎᮏᮐᮑᮒᮓᮔᮕᮖᮗᮘᮙᮚᮛᮜᮝᮞᮟ -
    1BA0 ᮠᮡᮢᮣᮤᮥᮦᮧᮨᮩ᮪᮫ᮬᮭᮮᮯ᮰᮱᮲᮳᮴᮵᮶᮷᮸᮹ᮺᮻᮼᮽᮾᮿ -
    1BC0 ᯀᯁᯂᯃᯄᯅᯆᯇᯈᯉᯊᯋᯌᯍᯎᯏᯐᯑᯒᯓᯔᯕᯖᯗᯘᯙᯚᯛᯜᯝᯞᯟ -
    1BE0 ᯠᯡᯢᯣᯤᯥ᯦ᯧᯨᯩᯪᯫᯬᯭᯮᯯᯰᯱ᯲᯳᯴᯵᯶᯷᯸᯹᯺᯻᯼᯽᯾᯿ -
    1C00 ᰀᰁᰂᰃᰄᰅᰆᰇᰈᰉᰊᰋᰌᰍᰎᰏᰐᰑᰒᰓᰔᰕᰖᰗᰘᰙᰚᰛᰜᰝᰞᰟ -
    1C20 ᰠᰡᰢᰣᰤᰥᰦᰧᰨᰩᰪᰫᰬᰭᰮᰯᰰᰱᰲᰳᰴᰵᰶ᰷᰸᰹᰺᰻᰼᰽᰾᰿ -
    1C40 ᱀᱁᱂᱃᱄᱅᱆᱇᱈᱉᱊᱋᱌ᱍᱎᱏ᱐᱑᱒᱓᱔᱕᱖᱗᱘᱙ᱚᱛᱜᱝᱞᱟ -
    1C60 ᱠᱡᱢᱣᱤᱥᱦᱧᱨᱩᱪᱫᱬᱭᱮᱯᱰᱱᱲᱳᱴᱵᱶᱷᱸᱹᱺᱻᱼᱽ᱾᱿ -
    1C80 ᲀᲁᲂᲃᲄᲅᲆᲇᲈᲉᲊ᲋᲌᲍᲎᲏ᲐᲑᲒᲓᲔᲕᲖᲗᲘᲙᲚᲛᲜᲝᲞᲟ -
    1CA0 ᲠᲡᲢᲣᲤᲥᲦᲧᲨᲩᲪᲫᲬᲭᲮᲯᲰᲱᲲᲳᲴᲵᲶᲷᲸᲹᲺ᲻᲼ᲽᲾᲿ -
    1CC0 ᳀᳁᳂᳃᳄᳅᳆᳇᳈᳉᳊᳋᳌᳍᳎᳏᳐᳑᳒᳓᳔᳕᳖᳗᳘᳙᳜᳝᳞᳟᳚᳛ -
    1CE0 ᳠᳡᳢᳣᳤᳥᳦᳧᳨ᳩᳪᳫᳬ᳭ᳮᳯᳰᳱᳲᳳ᳴ᳵᳶ᳷᳸᳹ᳺ᳻᳼᳽᳾᳿ -
    1D00 ᴀᴁᴂᴃᴄᴅᴆᴇᴈᴉᴊᴋᴌᴍᴎᴏᴐᴑᴒᴓᴔᴕᴖᴗᴘᴙᴚᴛᴜᴝᴞᴟ -
    1D20 ᴠᴡᴢᴣᴤᴥᴦᴧᴨᴩᴪᴫᴬᴭᴮᴯᴰᴱᴲᴳᴴᴵᴶᴷᴸᴹᴺᴻᴼᴽᴾᴿ -
    1D40 ᵀᵁᵂᵃᵄᵅᵆᵇᵈᵉᵊᵋᵌᵍᵎᵏᵐᵑᵒᵓᵔᵕᵖᵗᵘᵙᵚᵛᵜᵝᵞᵟ -
    1D60 ᵠᵡᵢᵣᵤᵥᵦᵧᵨᵩᵪᵫᵬᵭᵮᵯᵰᵱᵲᵳᵴᵵᵶᵷᵸᵹᵺᵻᵼᵽᵾᵿ -
    1D80 ᶀᶁᶂᶃᶄᶅᶆᶇᶈᶉᶊᶋᶌᶍᶎᶏᶐᶑᶒᶓᶔᶕᶖᶗᶘᶙᶚᶛᶜᶝᶞᶟ -
    1DA0 ᶠᶡᶢᶣᶤᶥᶦᶧᶨᶩᶪᶫᶬᶭᶮᶯᶰᶱᶲᶳᶴᶵᶶᶷᶸᶹᶺᶻᶼᶽᶾᶿ -
    1DC0 ᷐᷎᷂᷊᷏᷀᷁᷃᷄᷅᷆᷇᷈᷉᷋᷌᷑᷒ᷓᷔᷕᷖᷗᷘᷙᷚᷛᷜᷝᷞᷟ᷍ -
    1DE0 ᷺᷹᷽᷿᷷᷸ᷠᷡᷢᷣᷤᷥᷦᷧᷨᷩᷪᷫᷬᷭᷮᷯᷰᷱᷲᷳᷴ᷵᷻᷾᷶᷼ -
    1E00 ḀḁḂḃḄḅḆḇḈḉḊḋḌḍḎḏḐḑḒḓḔḕḖḗḘḙḚḛḜḝḞḟ -
    1E20 ḠḡḢḣḤḥḦḧḨḩḪḫḬḭḮḯḰḱḲḳḴḵḶḷḸḹḺḻḼḽḾḿ -
    1E40 ṀṁṂṃṄṅṆṇṈṉṊṋṌṍṎṏṐṑṒṓṔṕṖṗṘṙṚṛṜṝṞṟ -
    1E60 ṠṡṢṣṤṥṦṧṨṩṪṫṬṭṮṯṰṱṲṳṴṵṶṷṸṹṺṻṼṽṾṿ -
    1E80 ẀẁẂẃẄẅẆẇẈẉẊẋẌẍẎẏẐẑẒẓẔẕẖẗẘẙẚẛẜẝẞẟ -
    1EA0 ẠạẢảẤấẦầẨẩẪẫẬậẮắẰằẲẳẴẵẶặẸẹẺẻẼẽẾế -
    1EC0 ỀềỂểỄễỆệỈỉỊịỌọỎỏỐốỒồỔổỖỗỘộỚớỜờỞở -
    1EE0 ỠỡỢợỤụỦủỨứỪừỬửỮữỰựỲỳỴỵỶỷỸỹỺỻỼỽỾỿ -
    1F00 ἀἁἂἃἄἅἆἇἈἉἊἋἌἍἎἏἐἑἒἓἔἕ἖἗ἘἙἚἛἜἝ἞἟ -
    1F20 ἠἡἢἣἤἥἦἧἨἩἪἫἬἭἮἯἰἱἲἳἴἵἶἷἸἹἺἻἼἽἾἿ -
    1F40 ὀὁὂὃὄὅ὆὇ὈὉὊὋὌὍ὎὏ὐὑὒὓὔὕὖὗ὘Ὑ὚Ὓ὜Ὕ὞Ὗ -
    1F60 ὠὡὢὣὤὥὦὧὨὩὪὫὬὭὮὯὰάὲέὴήὶίὸόὺύὼώ὾὿ -
    1F80 ᾀᾁᾂᾃᾄᾅᾆᾇᾈᾉᾊᾋᾌᾍᾎᾏᾐᾑᾒᾓᾔᾕᾖᾗᾘᾙᾚᾛᾜᾝᾞᾟ -
    1FA0 ᾠᾡᾢᾣᾤᾥᾦᾧᾨᾩᾪᾫᾬᾭᾮᾯᾰᾱᾲᾳᾴ᾵ᾶᾷᾸᾹᾺΆᾼ᾽ι᾿ -
    1FC0 ῀῁ῂῃῄ῅ῆῇῈΈῊΉῌ῍῎῏ῐῑῒΐ῔῕ῖῗῘῙῚΊ῜῝῞῟ -
    1FE0 ῠῡῢΰῤῥῦῧῨῩῪΎῬ῭΅`῰῱ῲῳῴ῵ῶῷῸΌῺΏῼ´῾῿ -
    2000            ​‌‍‎‏‐‑‒–—―‖‗‘’‚‛“”„‟ -
    2020 †‡•‣․‥…‧

‪‫‬‭‮ ‰‱′″‴‵‶‷‸‹›※‼‽‾‿ -
    2040 ⁀⁁⁂⁃⁄⁅⁆⁇⁈⁉⁊⁋⁌⁍⁎⁏⁐⁑⁒⁓⁔⁕⁖⁗⁘⁙⁚⁛⁜⁝⁞  -
    2060 ⁠⁡⁢⁣⁤⁥⁦⁧⁨⁩⁰ⁱ⁲⁳⁴⁵⁶⁷⁸⁹⁺⁻⁼⁽⁾ⁿ -
    2080 ₀₁₂₃₄₅₆₇₈₉₊₋₌₍₎₏ₐₑₒₓₔₕₖₗₘₙₚₛₜ₝₞₟ -
    20A0 ₠₡₢₣₤₥₦₧₨₩₪₫€₭₮₯₰₱₲₳₴₵₶₷₸₹₺₻₼₽₾₿ -
    20C0 ⃀⃁⃂⃃⃄⃅⃆⃇⃈⃉⃊⃋⃌⃍⃎⃏⃒⃓⃘⃙⃚⃐⃑⃔⃕⃖⃗⃛⃜⃝⃞⃟ -
    20E0 ⃠⃡⃢⃣⃤⃥⃦⃪⃫⃨⃬⃭⃮⃯⃧⃩⃰⃱⃲⃳⃴⃵⃶⃷⃸⃹⃺⃻⃼⃽⃾⃿ -
    2100 ℀℁ℂ℃℄℅℆ℇ℈℉ℊℋℌℍℎℏℐℑℒℓ℔ℕ№℗℘ℙℚℛℜℝ℞℟ -
    2120 ℠℡™℣ℤ℥Ω℧ℨ℩KÅℬℭ℮ℯℰℱℲℳℴℵℶℷℸℹ℺℻ℼℽℾℿ -
    2140 ⅀⅁⅂⅃⅄ⅅⅆⅇⅈⅉ⅊⅋⅌⅍ⅎ⅏⅐⅑⅒⅓⅔⅕⅖⅗⅘⅙⅚⅛⅜⅝⅞⅟ -
    2160 ⅠⅡⅢⅣⅤⅥⅦⅧⅨⅩⅪⅫⅬⅭⅮⅯⅰⅱⅲⅳⅴⅵⅶⅷⅸⅹⅺⅻⅼⅽⅾⅿ -
    2180 ↀↁↂↃↄↅↆↇↈ↉↊↋↌↍↎↏←↑→↓↔↕↖↗↘↙↚↛↜↝↞↟ -
    21A0 ↠↡↢↣↤↥↦↧↨↩↪↫↬↭↮↯↰↱↲↳↴↵↶↷↸↹↺↻↼↽↾↿ -
    21C0 ⇀⇁⇂⇃⇄⇅⇆⇇⇈⇉⇊⇋⇌⇍⇎⇏⇐⇑⇒⇓⇔⇕⇖⇗⇘⇙⇚⇛⇜⇝⇞⇟ -
    21E0 ⇠⇡⇢⇣⇤⇥⇦⇧⇨⇩⇪⇫⇬⇭⇮⇯⇰⇱⇲⇳⇴⇵⇶⇷⇸⇹⇺⇻⇼⇽⇾⇿ -
    2200 ∀∁∂∃∄∅∆∇∈∉∊∋∌∍∎∏∐∑−∓∔∕∖∗∘∙√∛∜∝∞∟ -
    2220 ∠∡∢∣∤∥∦∧∨∩∪∫∬∭∮∯∰∱∲∳∴∵∶∷∸∹∺∻∼∽∾∿ -
    2240 ≀≁≂≃≄≅≆≇≈≉≊≋≌≍≎≏≐≑≒≓≔≕≖≗≘≙≚≛≜≝≞≟ -
    2260 ≠≡≢≣≤≥≦≧≨≩≪≫≬≭≮≯≰≱≲≳≴≵≶≷≸≹≺≻≼≽≾≿ -
    2280 ⊀⊁⊂⊃⊄⊅⊆⊇⊈⊉⊊⊋⊌⊍⊎⊏⊐⊑⊒⊓⊔⊕⊖⊗⊘⊙⊚⊛⊜⊝⊞⊟ -
    22A0 ⊠⊡⊢⊣⊤⊥⊦⊧⊨⊩⊪⊫⊬⊭⊮⊯⊰⊱⊲⊳⊴⊵⊶⊷⊸⊹⊺⊻⊼⊽⊾⊿ -
    22C0 ⋀⋁⋂⋃⋄⋅⋆⋇⋈⋉⋊⋋⋌⋍⋎⋏⋐⋑⋒⋓⋔⋕⋖⋗⋘⋙⋚⋛⋜⋝⋞⋟ -
    22E0 ⋠⋡⋢⋣⋤⋥⋦⋧⋨⋩⋪⋫⋬⋭⋮⋯⋰⋱⋲⋳⋴⋵⋶⋷⋸⋹⋺⋻⋼⋽⋾⋿ -
    2300 ⌀⌁⌂⌃⌄⌅⌆⌇⌈⌉⌊⌋⌌⌍⌎⌏⌐⌑⌒⌓⌔⌕⌖⌗⌘⌙⌚⌛⌜⌝⌞⌟ -
    2320 ⌠⌡⌢⌣⌤⌥⌦⌧⌨〈〉⌫⌬⌭⌮⌯⌰⌱⌲⌳⌴⌵⌶⌷⌸⌹⌺⌻⌼⌽⌾⌿ -
    2340 ⍀⍁⍂⍃⍄⍅⍆⍇⍈⍉⍊⍋⍌⍍⍎⍏⍐⍑⍒⍓⍔⍕⍖⍗⍘⍙⍚⍛⍜⍝⍞⍟ -
    2360 ⍠⍡⍢⍣⍤⍥⍦⍧⍨⍩⍪⍫⍬⍭⍮⍯⍰⍱⍲⍳⍴⍵⍶⍷⍸⍹⍺⍻⍼⍽⍾⍿ -
    2380 ⎀⎁⎂⎃⎄⎅⎆⎇⎈⎉⎊⎋⎌⎍⎎⎏⎐⎑⎒⎓⎔⎕⎖⎗⎘⎙⎚⎛⎜⎝⎞⎟ -
    23A0 ⎠⎡⎢⎣⎤⎥⎦⎧⎨⎩⎪⎫⎬⎭⎮⎯⎰⎱⎲⎳⎴⎵⎶⎷⎸⎹⎺⎻⎼⎽⎾⎿ -
    23C0 ⏀⏁⏂⏃⏄⏅⏆⏇⏈⏉⏊⏋⏌⏍⏎⏏⏐⏑⏒⏓⏔⏕⏖⏗⏘⏙⏚⏛⏜⏝⏞⏟ -
    23E0 ⏠⏡⏢⏣⏤⏥⏦⏧⏨⏩⏪⏫⏬⏭⏮⏯⏰⏱⏲⏳⏴⏵⏶⏷⏸⏹⏺⏻⏼⏽⏾⏿ -
    2400 ␀␁␂␃␄␅␆␇␈␉␊␋␌␍␎␏␐␑␒␓␔␕␖␗␘␙␚␛␜␝␞␟ -
    2420 ␠␡␢␣␤␥␦␧␨␩␪␫␬␭␮␯␰␱␲␳␴␵␶␷␸␹␺␻␼␽␾␿ -
    2440 ⑀⑁⑂⑃⑄⑅⑆⑇⑈⑉⑊⑋⑌⑍⑎⑏⑐⑑⑒⑓⑔⑕⑖⑗⑘⑙⑚⑛⑜⑝⑞⑟ -
    2460 ①②③④⑤⑥⑦⑧⑨⑩⑪⑫⑬⑭⑮⑯⑰⑱⑲⑳⑴⑵⑶⑷⑸⑹⑺⑻⑼⑽⑾⑿ -
    2480 ⒀⒁⒂⒃⒄⒅⒆⒇⒈⒉⒊⒋⒌⒍⒎⒏⒐⒑⒒⒓⒔⒕⒖⒗⒘⒙⒚⒛⒜⒝⒞⒟ -
    24A0 ⒠⒡⒢⒣⒤⒥⒦⒧⒨⒩⒪⒫⒬⒭⒮⒯⒰⒱⒲⒳⒴⒵ⒶⒷⒸⒹⒺⒻⒼⒽⒾⒿ -
    24C0 ⓀⓁⓂⓃⓄⓅⓆⓇⓈⓉⓊⓋⓌⓍⓎⓏⓐⓑⓒⓓⓔⓕⓖⓗⓘⓙⓚⓛⓜⓝⓞⓟ -
    24E0 ⓠⓡⓢⓣⓤⓥⓦⓧⓨⓩ⓪⓫⓬⓭⓮⓯⓰⓱⓲⓳⓴⓵⓶⓷⓸⓹⓺⓻⓼⓽⓾⓿ -
    2500 ─━│┃┄┅┆┇┈┉┊┋┌┍┎┏┐┑┒┓└┕┖┗┘┙┚┛├┝┞┟ -
    2520 ┠┡┢┣┤┥┦┧┨┩┪┫┬┭┮┯┰┱┲┳┴┵┶┷┸┹┺┻┼┽┾┿ -
    2540 ╀╁╂╃╄╅╆╇╈╉╊╋╌╍╎╏═║╒╓╔╕╖╗╘╙╚╛╜╝╞╟ -
    2560 ╠╡╢╣╤╥╦╧╨╩╪╫╬╭╮╯╰╱╲╳╴╵╶╷╸╹╺╻╼╽╾╿ -
    2580 ▀▁▂▃▄▅▆▇█▉▊▋▌▍▎▏▐░▒▓▔▕▖▗▘▙▚▛▜▝▞▟ -
    25A0 ■□▢▣▤▥▦▧▨▩▪▫▬▭▮▯▰▱▲△▴▵▶▷▸▹►▻▼▽▾▿ -
    25C0 ◀◁◂◃◄◅◆◇◈◉◊○◌◍◎●◐◑◒◓◔◕◖◗◘◙◚◛◜◝◞◟ -
    25E0 ◠◡◢◣◤◥◦◧◨◩◪◫◬◭◮◯◰◱◲◳◴◵◶◷◸◹◺◻◼◽◾◿ -
    2600 ☀☁☂☃☄★☆☇☈☉☊☋☌☍☎☏☐☑☒☓☔☕☖☗☘☙☚☛☜☝☞☟ -
    2620 ☠☡☢☣☤☥☦☧☨☩☪☫☬☭☮☯☰☱☲☳☴☵☶☷☸☹☺☻☼☽☾☿ -
    2640 ♀♁♂♃♄♅♆♇♈♉♊♋♌♍♎♏♐♑♒♓♔♕♖♗♘♙♚♛♜♝♞♟ -
    2660 ♠♡♢♣♤♥♦♧♨♩♪♫♬♭♮♯♰♱♲♳♴♵♶♷♸♹♺♻♼♽♾♿ -
    2680 ⚀⚁⚂⚃⚄⚅⚆⚇⚈⚉⚊⚋⚌⚍⚎⚏⚐⚑⚒⚓⚔⚕⚖⚗⚘⚙⚚⚛⚜⚝⚞⚟ -
    26A0 ⚠⚡⚢⚣⚤⚥⚦⚧⚨⚩⚪⚫⚬⚭⚮⚯⚰⚱⚲⚳⚴⚵⚶⚷⚸⚹⚺⚻⚼⚽⚾⚿ -
    26C0 ⛀⛁⛂⛃⛄⛅⛆⛇⛈⛉⛊⛋⛌⛍⛎⛏⛐⛑⛒⛓⛔⛕⛖⛗⛘⛙⛚⛛⛜⛝⛞⛟ -
    26E0 ⛠⛡⛢⛣⛤⛥⛦⛧⛨⛩⛪⛫⛬⛭⛮⛯⛰⛱⛲⛳⛴⛵⛶⛷⛸⛹⛺⛻⛼⛽⛾⛿ -
    2700 ✀✁✂✃✄✅✆✇✈✉✊✋✌✍✎✏✐✑✒✓✔✕✖✗✘✙✚✛✜✝✞✟ -
    2720 ✠✡✢✣✤✥✦✧✨✩✪✫✬✭✮✯✰✱✲✳✴✵✶✷✸✹✺✻✼✽✾✿ -
    2740 ❀❁❂❃❄❅❆❇❈❉❊❋❌❍❎❏❐❑❒❓❔❕❖❗❘❙❚❛❜❝❞❟ -
    2760 ❠❡❢❣❤❥❦❧❨❩❪❫❬❭❮❯❰❱❲❳❴❵❶❷❸❹❺❻❼❽❾❿ -
    2780 ➀➁➂➃➄➅➆➇➈➉➊➋➌➍➎➏➐➑➒➓➔➕➖➗➘➙➚➛➜➝➞➟ -
    27A0 ➠➡➢➣➤➥➦➧➨➩➪➫➬➭➮➯➰➱➲➳➴➵➶➷➸➹➺➻➼➽➾➿ -
    27C0 ⟀⟁⟂⟃⟄⟅⟆⟇⟈⟉⟊⟋⟌⟍⟎⟏⟐⟑⟒⟓⟔⟕⟖⟗⟘⟙⟚⟛⟜⟝⟞⟟ -
    27E0 ⟠⟡⟢⟣⟤⟥⟦⟧⟨⟩⟪⟫⟬⟭⟮⟯⟰⟱⟲⟳⟴⟵⟶⟷⟸⟹⟺⟻⟼⟽⟾⟿ -
    2800 ⠀⠁⠂⠃⠄⠅⠆⠇⠈⠉⠊⠋⠌⠍⠎⠏⠐⠑⠒⠓⠔⠕⠖⠗⠘⠙⠚⠛⠜⠝⠞⠟ -
    2820 ⠠⠡⠢⠣⠤⠥⠦⠧⠨⠩⠪⠫⠬⠭⠮⠯⠰⠱⠲⠳⠴⠵⠶⠷⠸⠹⠺⠻⠼⠽⠾⠿ -
    2840 ⡀⡁⡂⡃⡄⡅⡆⡇⡈⡉⡊⡋⡌⡍⡎⡏⡐⡑⡒⡓⡔⡕⡖⡗⡘⡙⡚⡛⡜⡝⡞⡟ -
    2860 ⡠⡡⡢⡣⡤⡥⡦⡧⡨⡩⡪⡫⡬⡭⡮⡯⡰⡱⡲⡳⡴⡵⡶⡷⡸⡹⡺⡻⡼⡽⡾⡿ -
    2880 ⢀⢁⢂⢃⢄⢅⢆⢇⢈⢉⢊⢋⢌⢍⢎⢏⢐⢑⢒⢓⢔⢕⢖⢗⢘⢙⢚⢛⢜⢝⢞⢟ -
    28A0 ⢠⢡⢢⢣⢤⢥⢦⢧⢨⢩⢪⢫⢬⢭⢮⢯⢰⢱⢲⢳⢴⢵⢶⢷⢸⢹⢺⢻⢼⢽⢾⢿ -
    28C0 ⣀⣁⣂⣃⣄⣅⣆⣇⣈⣉⣊⣋⣌⣍⣎⣏⣐⣑⣒⣓⣔⣕⣖⣗⣘⣙⣚⣛⣜⣝⣞⣟ -
    28E0 ⣠⣡⣢⣣⣤⣥⣦⣧⣨⣩⣪⣫⣬⣭⣮⣯⣰⣱⣲⣳⣴⣵⣶⣷⣸⣹⣺⣻⣼⣽⣾⣿ -
    2900 ⤀⤁⤂⤃⤄⤅⤆⤇⤈⤉⤊⤋⤌⤍⤎⤏⤐⤑⤒⤓⤔⤕⤖⤗⤘⤙⤚⤛⤜⤝⤞⤟ -
    2920 ⤠⤡⤢⤣⤤⤥⤦⤧⤨⤩⤪⤫⤬⤭⤮⤯⤰⤱⤲⤳⤴⤵⤶⤷⤸⤹⤺⤻⤼⤽⤾⤿ -
    2940 ⥀⥁⥂⥃⥄⥅⥆⥇⥈⥉⥊⥋⥌⥍⥎⥏⥐⥑⥒⥓⥔⥕⥖⥗⥘⥙⥚⥛⥜⥝⥞⥟ -
    2960 ⥠⥡⥢⥣⥤⥥⥦⥧⥨⥩⥪⥫⥬⥭⥮⥯⥰⥱⥲⥳⥴⥵⥶⥷⥸⥹⥺⥻⥼⥽⥾⥿ -
    2980 ⦀⦁⦂⦃⦄⦅⦆⦇⦈⦉⦊⦋⦌⦍⦎⦏⦐⦑⦒⦓⦔⦕⦖⦗⦘⦙⦚⦛⦜⦝⦞⦟ -
    29A0 ⦠⦡⦢⦣⦤⦥⦦⦧⦨⦩⦪⦫⦬⦭⦮⦯⦰⦱⦲⦳⦴⦵⦶⦷⦸⦹⦺⦻⦼⦽⦾⦿ -
    29C0 ⧀⧁⧂⧃⧄⧅⧆⧇⧈⧉⧊⧋⧌⧍⧎⧏⧐⧑⧒⧓⧔⧕⧖⧗⧘⧙⧚⧛⧜⧝⧞⧟ -
    29E0 ⧠⧡⧢⧣⧤⧥⧦⧧⧨⧩⧪⧫⧬⧭⧮⧯⧰⧱⧲⧳⧴⧵⧶⧷⧸⧹⧺⧻⧼⧽⧾⧿ -
    2A00 ⨀⨁⨂⨃⨄⨅⨆⨇⨈⨉⨊⨋⨌⨍⨎⨏⨐⨑⨒⨓⨔⨕⨖⨗⨘⨙⨚⨛⨜⨝⨞⨟ -
    2A20 ⨠⨡⨢⨣⨤⨥⨦⨧⨨⨩⨪⨫⨬⨭⨮⨯⨰⨱⨲⨳⨴⨵⨶⨷⨸⨹⨺⨻⨼⨽⨾⨿ -
    2A40 ⩀⩁⩂⩃⩄⩅⩆⩇⩈⩉⩊⩋⩌⩍⩎⩏⩐⩑⩒⩓⩔⩕⩖⩗⩘⩙⩚⩛⩜⩝⩞⩟ -
    2A60 ⩠⩡⩢⩣⩤⩥⩦⩧⩨⩩⩪⩫⩬⩭⩮⩯⩰⩱⩲⩳⩴⩵⩶⩷⩸⩹⩺⩻⩼⩽⩾⩿ -
    2A80 ⪀⪁⪂⪃⪄⪅⪆⪇⪈⪉⪊⪋⪌⪍⪎⪏⪐⪑⪒⪓⪔⪕⪖⪗⪘⪙⪚⪛⪜⪝⪞⪟ -
    2AA0 ⪠⪡⪢⪣⪤⪥⪦⪧⪨⪩⪪⪫⪬⪭⪮⪯⪰⪱⪲⪳⪴⪵⪶⪷⪸⪹⪺⪻⪼⪽⪾⪿ -
    2AC0 ⫀⫁⫂⫃⫄⫅⫆⫇⫈⫉⫊⫋⫌⫍⫎⫏⫐⫑⫒⫓⫔⫕⫖⫗⫘⫙⫚⫛⫝̸⫝⫞⫟ -
    2AE0 ⫠⫡⫢⫣⫤⫥⫦⫧⫨⫩⫪⫫⫬⫭⫮⫯⫰⫱⫲⫳⫴⫵⫶⫷⫸⫹⫺⫻⫼⫽⫾⫿ -
    2B00 ⬀⬁⬂⬃⬄⬅⬆⬇⬈⬉⬊⬋⬌⬍⬎⬏⬐⬑⬒⬓⬔⬕⬖⬗⬘⬙⬚⬛⬜⬝⬞⬟ -
    2B20 ⬠⬡⬢⬣⬤⬥⬦⬧⬨⬩⬪⬫⬬⬭⬮⬯⬰⬱⬲⬳⬴⬵⬶⬷⬸⬹⬺⬻⬼⬽⬾⬿ -
    2B40 ⭀⭁⭂⭃⭄⭅⭆⭇⭈⭉⭊⭋⭌⭍⭎⭏⭐⭑⭒⭓⭔⭕⭖⭗⭘⭙⭚⭛⭜⭝⭞⭟ -
    2B60 ⭠⭡⭢⭣⭤⭥⭦⭧⭨⭩⭪⭫⭬⭭⭮⭯⭰⭱⭲⭳⭴⭵⭶⭷⭸⭹⭺⭻⭼⭽⭾⭿ -
    2B80 ⮀⮁⮂⮃⮄⮅⮆⮇⮈⮉⮊⮋⮌⮍⮎⮏⮐⮑⮒⮓⮔⮕⮖⮗⮘⮙⮚⮛⮜⮝⮞⮟ -
    2BA0 ⮠⮡⮢⮣⮤⮥⮦⮧⮨⮩⮪⮫⮬⮭⮮⮯⮰⮱⮲⮳⮴⮵⮶⮷⮸⮹⮺⮻⮼⮽⮾⮿ -
    2BC0 ⯀⯁⯂⯃⯄⯅⯆⯇⯈⯉⯊⯋⯌⯍⯎⯏⯐⯑⯒⯓⯔⯕⯖⯗⯘⯙⯚⯛⯜⯝⯞⯟ -
    2BE0 ⯠⯡⯢⯣⯤⯥⯦⯧⯨⯩⯪⯫⯬⯭⯮⯯⯰⯱⯲⯳⯴⯵⯶⯷⯸⯹⯺⯻⯼⯽⯾⯿ -
    2C00 ⰀⰁⰂⰃⰄⰅⰆⰇⰈⰉⰊⰋⰌⰍⰎⰏⰐⰑⰒⰓⰔⰕⰖⰗⰘⰙⰚⰛⰜⰝⰞⰟ -
    2C20 ⰠⰡⰢⰣⰤⰥⰦⰧⰨⰩⰪⰫⰬⰭⰮⰯⰰⰱⰲⰳⰴⰵⰶⰷⰸⰹⰺⰻⰼⰽⰾⰿ -
    2C40 ⱀⱁⱂⱃⱄⱅⱆⱇⱈⱉⱊⱋⱌⱍⱎⱏⱐⱑⱒⱓⱔⱕⱖⱗⱘⱙⱚⱛⱜⱝⱞⱟ -
    2C60 ⱠⱡⱢⱣⱤⱥⱦⱧⱨⱩⱪⱫⱬⱭⱮⱯⱰⱱⱲⱳⱴⱵⱶⱷⱸⱹⱺⱻⱼⱽⱾⱿ -
    2C80 ⲀⲁⲂⲃⲄⲅⲆⲇⲈⲉⲊⲋⲌⲍⲎⲏⲐⲑⲒⲓⲔⲕⲖⲗⲘⲙⲚⲛⲜⲝⲞⲟ -
    2CA0 ⲠⲡⲢⲣⲤⲥⲦⲧⲨⲩⲪⲫⲬⲭⲮⲯⲰⲱⲲⲳⲴⲵⲶⲷⲸⲹⲺⲻⲼⲽⲾⲿ -
    2CC0 ⳀⳁⳂⳃⳄⳅⳆⳇⳈⳉⳊⳋⳌⳍⳎⳏⳐⳑⳒⳓⳔⳕⳖⳗⳘⳙⳚⳛⳜⳝⳞⳟ -
    2CE0 ⳠⳡⳢⳣⳤ⳥⳦⳧⳨⳩⳪ⳫⳬⳭⳮ⳯⳰⳱Ⳳⳳ⳴⳵⳶⳷⳸⳹⳺⳻⳼⳽⳾⳿ -
    2D00 ⴀⴁⴂⴃⴄⴅⴆⴇⴈⴉⴊⴋⴌⴍⴎⴏⴐⴑⴒⴓⴔⴕⴖⴗⴘⴙⴚⴛⴜⴝⴞⴟ -
    2D20 ⴠⴡⴢⴣⴤⴥ⴦ⴧ⴨⴩⴪⴫⴬ⴭ⴮⴯ⴰⴱⴲⴳⴴⴵⴶⴷⴸⴹⴺⴻⴼⴽⴾⴿ -
    2D40 ⵀⵁⵂⵃⵄⵅⵆⵇⵈⵉⵊⵋⵌⵍⵎⵏⵐⵑⵒⵓⵔⵕⵖⵗⵘⵙⵚⵛⵜⵝⵞⵟ -
    2D60 ⵠⵡⵢⵣⵤⵥⵦⵧ⵨⵩⵪⵫⵬⵭⵮ⵯ⵰⵱⵲⵳⵴⵵⵶⵷⵸⵹⵺⵻⵼⵽⵾⵿ -
    2D80 ⶀⶁⶂⶃⶄⶅⶆⶇⶈⶉⶊⶋⶌⶍⶎⶏⶐⶑⶒⶓⶔⶕⶖ⶗⶘⶙⶚⶛⶜⶝⶞⶟ -
    2DA0 ⶠⶡⶢⶣⶤⶥⶦ⶧ⶨⶩⶪⶫⶬⶭⶮ⶯ⶰⶱⶲⶳⶴⶵⶶ⶷ⶸⶹⶺⶻⶼⶽⶾ⶿ -
    2DC0 ⷀⷁⷂⷃⷄⷅⷆ⷇ⷈⷉⷊⷋⷌⷍⷎ⷏ⷐⷑⷒⷓⷔⷕⷖ⷗ⷘⷙⷚⷛⷜⷝⷞ⷟ -
    2DE0 ⷠⷡⷢⷣⷤⷥⷦⷧⷨⷩⷪⷫⷬⷭⷮⷯⷰⷱⷲⷳⷴⷵⷶⷷⷸⷹⷺⷻⷼⷽⷾⷿ -
    2E00 ⸀⸁⸂⸃⸄⸅⸆⸇⸈⸉⸊⸋⸌⸍⸎⸏⸐⸑⸒⸓⸔⸕⸖⸗⸘⸙⸚⸛⸜⸝⸞⸟ -
    2E20 ⸠⸡⸢⸣⸤⸥⸦⸧⸨⸩⸪⸫⸬⸭⸮ⸯ⸰⸱⸲⸳⸴⸵⸶⸷⸸⸹⸺⸻⸼⸽⸾⸿ -
    2E40 ⹀⹁⹂⹃⹄⹅⹆⹇⹈⹉⹊⹋⹌⹍⹎⹏⹐⹑⹒⹓⹔⹕⹖⹗⹘⹙⹚⹛⹜⹝⹞⹟ -
    2E60 ⹠⹡⹢⹣⹤⹥⹦⹧⹨⹩⹪⹫⹬⹭⹮⹯⹰⹱⹲⹳⹴⹵⹶⹷⹸⹹⹺⹻⹼⹽⹾⹿ -
    2E80 ⺀⺁⺂⺃⺄⺅⺆⺇⺈⺉⺊⺋⺌⺍⺎⺏⺐⺑⺒⺓⺔⺕⺖⺗⺘⺙⺚⺛⺜⺝⺞⺟ -
    2EA0 ⺠⺡⺢⺣⺤⺥⺦⺧⺨⺩⺪⺫⺬⺭⺮⺯⺰⺱⺲⺳⺴⺵⺶⺷⺸⺹⺺⺻⺼⺽⺾⺿ -
    2EC0 ⻀⻁⻂⻃⻄⻅⻆⻇⻈⻉⻊⻋⻌⻍⻎⻏⻐⻑⻒⻓⻔⻕⻖⻗⻘⻙⻚⻛⻜⻝⻞⻟ -
    2EE0 ⻠⻡⻢⻣⻤⻥⻦⻧⻨⻩⻪⻫⻬⻭⻮⻯⻰⻱⻲⻳⻴⻵⻶⻷⻸⻹⻺⻻⻼⻽⻾⻿ -
    2F00 ⼀⼁⼂⼃⼄⼅⼆⼇⼈⼉⼊⼋⼌⼍⼎⼏⼐⼑⼒⼓⼔⼕⼖⼗⼘⼙⼚⼛⼜⼝⼞⼟ -
    2F20 ⼠⼡⼢⼣⼤⼥⼦⼧⼨⼩⼪⼫⼬⼭⼮⼯⼰⼱⼲⼳⼴⼵⼶⼷⼸⼹⼺⼻⼼⼽⼾⼿ -
    2F40 ⽀⽁⽂⽃⽄⽅⽆⽇⽈⽉⽊⽋⽌⽍⽎⽏⽐⽑⽒⽓⽔⽕⽖⽗⽘⽙⽚⽛⽜⽝⽞⽟ -
    2F60 ⽠⽡⽢⽣⽤⽥⽦⽧⽨⽩⽪⽫⽬⽭⽮⽯⽰⽱⽲⽳⽴⽵⽶⽷⽸⽹⽺⽻⽼⽽⽾⽿ -
    2F80 ⾀⾁⾂⾃⾄⾅⾆⾇⾈⾉⾊⾋⾌⾍⾎⾏⾐⾑⾒⾓⾔⾕⾖⾗⾘⾙⾚⾛⾜⾝⾞⾟ -
    2FA0 ⾠⾡⾢⾣⾤⾥⾦⾧⾨⾩⾪⾫⾬⾭⾮⾯⾰⾱⾲⾳⾴⾵⾶⾷⾸⾹⾺⾻⾼⾽⾾⾿ -
    2FC0 ⿀⿁⿂⿃⿄⿅⿆⿇⿈⿉⿊⿋⿌⿍⿎⿏⿐⿑⿒⿓⿔⿕⿖⿗⿘⿙⿚⿛⿜⿝⿞⿟ -
    2FE0 ⿠⿡⿢⿣⿤⿥⿦⿧⿨⿩⿪⿫⿬⿭⿮⿯⿰⿱⿲⿳⿴⿵⿶⿷⿸⿹⿺⿻⿼⿽⿾⿿ -
    3000  、。〃〄々〆〇〈〉《》「」『』【】〒〓〔〕〖〗〘〙〚〛〜〝〞〟 -
    3020 〠〡〢〣〤〥〦〧〨〩〪〭〮〯〫〬〰〱〲〳〴〵〶〷〸〹〺〻〼〽〾〿 -
    3040 ぀ぁあぃいぅうぇえぉおかがきぎくぐけげこごさざしじすずせぜそぞた -
    3060 だちぢっつづてでとどなにぬねのはばぱひびぴふぶぷへべぺほぼぽまみ -
    3080 むめもゃやゅゆょよらりるれろゎわゐゑをんゔゕゖ゗゘゙゚゛゜ゝゞゟ -
    30A0 ゠ァアィイゥウェエォオカガキギクグケゲコゴサザシジスズセゼソゾタ -
    30C0 ダチヂッツヅテデトドナニヌネノハバパヒビピフブプヘベペホボポマミ -
    30E0 ムメモャヤュユョヨラリルレロヮワヰヱヲンヴヵヶヷヸヹヺ・ーヽヾヿ -
    3100 ㄀㄁㄂㄃㄄ㄅㄆㄇㄈㄉㄊㄋㄌㄍㄎㄏㄐㄑㄒㄓㄔㄕㄖㄗㄘㄙㄚㄛㄜㄝㄞㄟ -
    3120 ㄠㄡㄢㄣㄤㄥㄦㄧㄨㄩㄪㄫㄬㄭㄮㄯ㄰ㄱㄲㄳㄴㄵㄶㄷㄸㄹㄺㄻㄼㄽㄾㄿ -
    3140 ㅀㅁㅂㅃㅄㅅㅆㅇㅈㅉㅊㅋㅌㅍㅎㅏㅐㅑㅒㅓㅔㅕㅖㅗㅘㅙㅚㅛㅜㅝㅞㅟ -
    3160 ㅠㅡㅢㅣㅤㅥㅦㅧㅨㅩㅪㅫㅬㅭㅮㅯㅰㅱㅲㅳㅴㅵㅶㅷㅸㅹㅺㅻㅼㅽㅾㅿ -
    3180 ㆀㆁㆂㆃㆄㆅㆆㆇㆈㆉㆊㆋㆌㆍㆎ㆏㆐㆑㆒㆓㆔㆕㆖㆗㆘㆙㆚㆛㆜㆝㆞㆟ -
    31A0 ㆠㆡㆢㆣㆤㆥㆦㆧㆨㆩㆪㆫㆬㆭㆮㆯㆰㆱㆲㆳㆴㆵㆶㆷㆸㆹㆺㆻㆼㆽㆾㆿ -
    31C0 ㇀㇁㇂㇃㇄㇅㇆㇇㇈㇉㇊㇋㇌㇍㇎㇏㇐㇑㇒㇓㇔㇕㇖㇗㇘㇙㇚㇛㇜㇝㇞㇟ -
    31E0 ㇠㇡㇢㇣㇤㇥㇦㇧㇨㇩㇪㇫㇬㇭㇮㇯ㇰㇱㇲㇳㇴㇵㇶㇷㇸㇹㇺㇻㇼㇽㇾㇿ -
    3200 ㈀㈁㈂㈃㈄㈅㈆㈇㈈㈉㈊㈋㈌㈍㈎㈏㈐㈑㈒㈓㈔㈕㈖㈗㈘㈙㈚㈛㈜㈝㈞㈟ -
    3220 ㈠㈡㈢㈣㈤㈥㈦㈧㈨㈩㈪㈫㈬㈭㈮㈯㈰㈱㈲㈳㈴㈵㈶㈷㈸㈹㈺㈻㈼㈽㈾㈿ -
    3240 ㉀㉁㉂㉃㉄㉅㉆㉇㉈㉉㉊㉋㉌㉍㉎㉏㉐㉑㉒㉓㉔㉕㉖㉗㉘㉙㉚㉛㉜㉝㉞㉟ -
    3260 ㉠㉡㉢㉣㉤㉥㉦㉧㉨㉩㉪㉫㉬㉭㉮㉯㉰㉱㉲㉳㉴㉵㉶㉷㉸㉹㉺㉻㉼㉽㉾㉿ -
    3280 ㊀㊁㊂㊃㊄㊅㊆㊇㊈㊉㊊㊋㊌㊍㊎㊏㊐㊑㊒㊓㊔㊕㊖㊗㊘㊙㊚㊛㊜㊝㊞㊟ -
    32A0 ㊠㊡㊢㊣㊤㊥㊦㊧㊨㊩㊪㊫㊬㊭㊮㊯㊰㊱㊲㊳㊴㊵㊶㊷㊸㊹㊺㊻㊼㊽㊾㊿ -
    32C0 ㋀㋁㋂㋃㋄㋅㋆㋇㋈㋉㋊㋋㋌㋍㋎㋏㋐㋑㋒㋓㋔㋕㋖㋗㋘㋙㋚㋛㋜㋝㋞㋟ -
    32E0 ㋠㋡㋢㋣㋤㋥㋦㋧㋨㋩㋪㋫㋬㋭㋮㋯㋰㋱㋲㋳㋴㋵㋶㋷㋸㋹㋺㋻㋼㋽㋾㋿ -
    3300 ㌀㌁㌂㌃㌄㌅㌆㌇㌈㌉㌊㌋㌌㌍㌎㌏㌐㌑㌒㌓㌔㌕㌖㌗㌘㌙㌚㌛㌜㌝㌞㌟ -
    3320 ㌠㌡㌢㌣㌤㌥㌦㌧㌨㌩㌪㌫㌬㌭㌮㌯㌰㌱㌲㌳㌴㌵㌶㌷㌸㌹㌺㌻㌼㌽㌾㌿ -
    3340 ㍀㍁㍂㍃㍄㍅㍆㍇㍈㍉㍊㍋㍌㍍㍎㍏㍐㍑㍒㍓㍔㍕㍖㍗㍘㍙㍚㍛㍜㍝㍞㍟ -
    3360 ㍠㍡㍢㍣㍤㍥㍦㍧㍨㍩㍪㍫㍬㍭㍮㍯㍰㍱㍲㍳㍴㍵㍶㍷㍸㍹㍺㍻㍼㍽㍾㍿ -
    3380 ㎀㎁㎂㎃㎄㎅㎆㎇㎈㎉㎊㎋㎌㎍㎎㎏㎐㎑㎒㎓㎔㎕㎖㎗㎘㎙㎚㎛㎜㎝㎞㎟ -
    33A0 ㎠㎡㎢㎣㎤㎥㎦㎧㎨㎩㎪㎫㎬㎭㎮㎯㎰㎱㎲㎳㎴㎵㎶㎷㎸㎹㎺㎻㎼㎽㎾㎿ -
    33C0 ㏀㏁㏂㏃㏄㏅㏆㏇㏈㏉㏊㏋㏌㏍㏎㏏㏐㏑㏒㏓㏔㏕㏖㏗㏘㏙㏚㏛㏜㏝㏞㏟ -
    33E0 ㏠㏡㏢㏣㏤㏥㏦㏧㏨㏩㏪㏫㏬㏭㏮㏯㏰㏱㏲㏳㏴㏵㏶㏷㏸㏹㏺㏻㏼㏽㏾㏿ -
    3400 㐀㐁㐂㐃㐄㐅㐆㐇㐈㐉㐊㐋㐌㐍㐎㐏㐐㐑㐒㐓㐔㐕㐖㐗㐘㐙㐚㐛㐜㐝㐞㐟 -
    3420 㐠㐡㐢㐣㐤㐥㐦㐧㐨㐩㐪㐫㐬㐭㐮㐯㐰㐱㐲㐳㐴㐵㐶㐷㐸㐹㐺㐻㐼㐽㐾㐿 -
    3440 㑀㑁㑂㑃㑄㑅㑆㑇㑈㑉㑊㑋㑌㑍㑎㑏㑐㑑㑒㑓㑔㑕㑖㑗㑘㑙㑚㑛㑜㑝㑞㑟 -
    3460 㑠㑡㑢㑣㑤㑥㑦㑧㑨㑩㑪㑫㑬㑭㑮㑯㑰㑱㑲㑳㑴㑵㑶㑷㑸㑹㑺㑻㑼㑽㑾㑿 -
    3480 㒀㒁㒂㒃㒄㒅㒆㒇㒈㒉㒊㒋㒌㒍㒎㒏㒐㒑㒒㒓㒔㒕㒖㒗㒘㒙㒚㒛㒜㒝㒞㒟 -
    34A0 㒠㒡㒢㒣㒤㒥㒦㒧㒨㒩㒪㒫㒬㒭㒮㒯㒰㒱㒲㒳㒴㒵㒶㒷㒸㒹㒺㒻㒼㒽㒾㒿 -
    34C0 㓀㓁㓂㓃㓄㓅㓆㓇㓈㓉㓊㓋㓌㓍㓎㓏㓐㓑㓒㓓㓔㓕㓖㓗㓘㓙㓚㓛㓜㓝㓞㓟 -
    34E0 㓠㓡㓢㓣㓤㓥㓦㓧㓨㓩㓪㓫㓬㓭㓮㓯㓰㓱㓲㓳㓴㓵㓶㓷㓸㓹㓺㓻㓼㓽㓾㓿 -
    3500 㔀㔁㔂㔃㔄㔅㔆㔇㔈㔉㔊㔋㔌㔍㔎㔏㔐㔑㔒㔓㔔㔕㔖㔗㔘㔙㔚㔛㔜㔝㔞㔟 -
    3520 㔠㔡㔢㔣㔤㔥㔦㔧㔨㔩㔪㔫㔬㔭㔮㔯㔰㔱㔲㔳㔴㔵㔶㔷㔸㔹㔺㔻㔼㔽㔾㔿 -
    3540 㕀㕁㕂㕃㕄㕅㕆㕇㕈㕉㕊㕋㕌㕍㕎㕏㕐㕑㕒㕓㕔㕕㕖㕗㕘㕙㕚㕛㕜㕝㕞㕟 -
    3560 㕠㕡㕢㕣㕤㕥㕦㕧㕨㕩㕪㕫㕬㕭㕮㕯㕰㕱㕲㕳㕴㕵㕶㕷㕸㕹㕺㕻㕼㕽㕾㕿 -
    3580 㖀㖁㖂㖃㖄㖅㖆㖇㖈㖉㖊㖋㖌㖍㖎㖏㖐㖑㖒㖓㖔㖕㖖㖗㖘㖙㖚㖛㖜㖝㖞㖟 -
    35A0 㖠㖡㖢㖣㖤㖥㖦㖧㖨㖩㖪㖫㖬㖭㖮㖯㖰㖱㖲㖳㖴㖵㖶㖷㖸㖹㖺㖻㖼㖽㖾㖿 -
    35C0 㗀㗁㗂㗃㗄㗅㗆㗇㗈㗉㗊㗋㗌㗍㗎㗏㗐㗑㗒㗓㗔㗕㗖㗗㗘㗙㗚㗛㗜㗝㗞㗟 -
    35E0 㗠㗡㗢㗣㗤㗥㗦㗧㗨㗩㗪㗫㗬㗭㗮㗯㗰㗱㗲㗳㗴㗵㗶㗷㗸㗹㗺㗻㗼㗽㗾㗿 -
    3600 㘀㘁㘂㘃㘄㘅㘆㘇㘈㘉㘊㘋㘌㘍㘎㘏㘐㘑㘒㘓㘔㘕㘖㘗㘘㘙㘚㘛㘜㘝㘞㘟 -
    3620 㘠㘡㘢㘣㘤㘥㘦㘧㘨㘩㘪㘫㘬㘭㘮㘯㘰㘱㘲㘳㘴㘵㘶㘷㘸㘹㘺㘻㘼㘽㘾㘿 -
    3640 㙀㙁㙂㙃㙄㙅㙆㙇㙈㙉㙊㙋㙌㙍㙎㙏㙐㙑㙒㙓㙔㙕㙖㙗㙘㙙㙚㙛㙜㙝㙞㙟 -
    3660 㙠㙡㙢㙣㙤㙥㙦㙧㙨㙩㙪㙫㙬㙭㙮㙯㙰㙱㙲㙳㙴㙵㙶㙷㙸㙹㙺㙻㙼㙽㙾㙿 -
    3680 㚀㚁㚂㚃㚄㚅㚆㚇㚈㚉㚊㚋㚌㚍㚎㚏㚐㚑㚒㚓㚔㚕㚖㚗㚘㚙㚚㚛㚜㚝㚞㚟 -
    36A0 㚠㚡㚢㚣㚤㚥㚦㚧㚨㚩㚪㚫㚬㚭㚮㚯㚰㚱㚲㚳㚴㚵㚶㚷㚸㚹㚺㚻㚼㚽㚾㚿 -
    36C0 㛀㛁㛂㛃㛄㛅㛆㛇㛈㛉㛊㛋㛌㛍㛎㛏㛐㛑㛒㛓㛔㛕㛖㛗㛘㛙㛚㛛㛜㛝㛞㛟 -
    36E0 㛠㛡㛢㛣㛤㛥㛦㛧㛨㛩㛪㛫㛬㛭㛮㛯㛰㛱㛲㛳㛴㛵㛶㛷㛸㛹㛺㛻㛼㛽㛾㛿 -
    3700 㜀㜁㜂㜃㜄㜅㜆㜇㜈㜉㜊㜋㜌㜍㜎㜏㜐㜑㜒㜓㜔㜕㜖㜗㜘㜙㜚㜛㜜㜝㜞㜟 -
    3720 㜠㜡㜢㜣㜤㜥㜦㜧㜨㜩㜪㜫㜬㜭㜮㜯㜰㜱㜲㜳㜴㜵㜶㜷㜸㜹㜺㜻㜼㜽㜾㜿 -
    3740 㝀㝁㝂㝃㝄㝅㝆㝇㝈㝉㝊㝋㝌㝍㝎㝏㝐㝑㝒㝓㝔㝕㝖㝗㝘㝙㝚㝛㝜㝝㝞㝟 -
    3760 㝠㝡㝢㝣㝤㝥㝦㝧㝨㝩㝪㝫㝬㝭㝮㝯㝰㝱㝲㝳㝴㝵㝶㝷㝸㝹㝺㝻㝼㝽㝾㝿 -
    3780 㞀㞁㞂㞃㞄㞅㞆㞇㞈㞉㞊㞋㞌㞍㞎㞏㞐㞑㞒㞓㞔㞕㞖㞗㞘㞙㞚㞛㞜㞝㞞㞟 -
    37A0 㞠㞡㞢㞣㞤㞥㞦㞧㞨㞩㞪㞫㞬㞭㞮㞯㞰㞱㞲㞳㞴㞵㞶㞷㞸㞹㞺㞻㞼㞽㞾㞿 -
    37C0 㟀㟁㟂㟃㟄㟅㟆㟇㟈㟉㟊㟋㟌㟍㟎㟏㟐㟑㟒㟓㟔㟕㟖㟗㟘㟙㟚㟛㟜㟝㟞㟟 -
    37E0 㟠㟡㟢㟣㟤㟥㟦㟧㟨㟩㟪㟫㟬㟭㟮㟯㟰㟱㟲㟳㟴㟵㟶㟷㟸㟹㟺㟻㟼㟽㟾㟿 -
    3800 㠀㠁㠂㠃㠄㠅㠆㠇㠈㠉㠊㠋㠌㠍㠎㠏㠐㠑㠒㠓㠔㠕㠖㠗㠘㠙㠚㠛㠜㠝㠞㠟 -
    3820 㠠㠡㠢㠣㠤㠥㠦㠧㠨㠩㠪㠫㠬㠭㠮㠯㠰㠱㠲㠳㠴㠵㠶㠷㠸㠹㠺㠻㠼㠽㠾㠿 -
    3840 㡀㡁㡂㡃㡄㡅㡆㡇㡈㡉㡊㡋㡌㡍㡎㡏㡐㡑㡒㡓㡔㡕㡖㡗㡘㡙㡚㡛㡜㡝㡞㡟 -
    3860 㡠㡡㡢㡣㡤㡥㡦㡧㡨㡩㡪㡫㡬㡭㡮㡯㡰㡱㡲㡳㡴㡵㡶㡷㡸㡹㡺㡻㡼㡽㡾㡿 -
    3880 㢀㢁㢂㢃㢄㢅㢆㢇㢈㢉㢊㢋㢌㢍㢎㢏㢐㢑㢒㢓㢔㢕㢖㢗㢘㢙㢚㢛㢜㢝㢞㢟 -
    38A0 㢠㢡㢢㢣㢤㢥㢦㢧㢨㢩㢪㢫㢬㢭㢮㢯㢰㢱㢲㢳㢴㢵㢶㢷㢸㢹㢺㢻㢼㢽㢾㢿 -
    38C0 㣀㣁㣂㣃㣄㣅㣆㣇㣈㣉㣊㣋㣌㣍㣎㣏㣐㣑㣒㣓㣔㣕㣖㣗㣘㣙㣚㣛㣜㣝㣞㣟 -
    38E0 㣠㣡㣢㣣㣤㣥㣦㣧㣨㣩㣪㣫㣬㣭㣮㣯㣰㣱㣲㣳㣴㣵㣶㣷㣸㣹㣺㣻㣼㣽㣾㣿 -
    3900 㤀㤁㤂㤃㤄㤅㤆㤇㤈㤉㤊㤋㤌㤍㤎㤏㤐㤑㤒㤓㤔㤕㤖㤗㤘㤙㤚㤛㤜㤝㤞㤟 -
    3920 㤠㤡㤢㤣㤤㤥㤦㤧㤨㤩㤪㤫㤬㤭㤮㤯㤰㤱㤲㤳㤴㤵㤶㤷㤸㤹㤺㤻㤼㤽㤾㤿 -
    3940 㥀㥁㥂㥃㥄㥅㥆㥇㥈㥉㥊㥋㥌㥍㥎㥏㥐㥑㥒㥓㥔㥕㥖㥗㥘㥙㥚㥛㥜㥝㥞㥟 -
    3960 㥠㥡㥢㥣㥤㥥㥦㥧㥨㥩㥪㥫㥬㥭㥮㥯㥰㥱㥲㥳㥴㥵㥶㥷㥸㥹㥺㥻㥼㥽㥾㥿 -
    3980 㦀㦁㦂㦃㦄㦅㦆㦇㦈㦉㦊㦋㦌㦍㦎㦏㦐㦑㦒㦓㦔㦕㦖㦗㦘㦙㦚㦛㦜㦝㦞㦟 -
    39A0 㦠㦡㦢㦣㦤㦥㦦㦧㦨㦩㦪㦫㦬㦭㦮㦯㦰㦱㦲㦳㦴㦵㦶㦷㦸㦹㦺㦻㦼㦽㦾㦿 -
    39C0 㧀㧁㧂㧃㧄㧅㧆㧇㧈㧉㧊㧋㧌㧍㧎㧏㧐㧑㧒㧓㧔㧕㧖㧗㧘㧙㧚㧛㧜㧝㧞㧟 -
    39E0 㧠㧡㧢㧣㧤㧥㧦㧧㧨㧩㧪㧫㧬㧭㧮㧯㧰㧱㧲㧳㧴㧵㧶㧷㧸㧹㧺㧻㧼㧽㧾㧿 -
    3A00 㨀㨁㨂㨃㨄㨅㨆㨇㨈㨉㨊㨋㨌㨍㨎㨏㨐㨑㨒㨓㨔㨕㨖㨗㨘㨙㨚㨛㨜㨝㨞㨟 -
    3A20 㨠㨡㨢㨣㨤㨥㨦㨧㨨㨩㨪㨫㨬㨭㨮㨯㨰㨱㨲㨳㨴㨵㨶㨷㨸㨹㨺㨻㨼㨽㨾㨿 -
    3A40 㩀㩁㩂㩃㩄㩅㩆㩇㩈㩉㩊㩋㩌㩍㩎㩏㩐㩑㩒㩓㩔㩕㩖㩗㩘㩙㩚㩛㩜㩝㩞㩟 -
    3A60 㩠㩡㩢㩣㩤㩥㩦㩧㩨㩩㩪㩫㩬㩭㩮㩯㩰㩱㩲㩳㩴㩵㩶㩷㩸㩹㩺㩻㩼㩽㩾㩿 -
    3A80 㪀㪁㪂㪃㪄㪅㪆㪇㪈㪉㪊㪋㪌㪍㪎㪏㪐㪑㪒㪓㪔㪕㪖㪗㪘㪙㪚㪛㪜㪝㪞㪟 -
    3AA0 㪠㪡㪢㪣㪤㪥㪦㪧㪨㪩㪪㪫㪬㪭㪮㪯㪰㪱㪲㪳㪴㪵㪶㪷㪸㪹㪺㪻㪼㪽㪾㪿 -
    3AC0 㫀㫁㫂㫃㫄㫅㫆㫇㫈㫉㫊㫋㫌㫍㫎㫏㫐㫑㫒㫓㫔㫕㫖㫗㫘㫙㫚㫛㫜㫝㫞㫟 -
    3AE0 㫠㫡㫢㫣㫤㫥㫦㫧㫨㫩㫪㫫㫬㫭㫮㫯㫰㫱㫲㫳㫴㫵㫶㫷㫸㫹㫺㫻㫼㫽㫾㫿 -
    3B00 㬀㬁㬂㬃㬄㬅㬆㬇㬈㬉㬊㬋㬌㬍㬎㬏㬐㬑㬒㬓㬔㬕㬖㬗㬘㬙㬚㬛㬜㬝㬞㬟 -
    3B20 㬠㬡㬢㬣㬤㬥㬦㬧㬨㬩㬪㬫㬬㬭㬮㬯㬰㬱㬲㬳㬴㬵㬶㬷㬸㬹㬺㬻㬼㬽㬾㬿 -
    3B40 㭀㭁㭂㭃㭄㭅㭆㭇㭈㭉㭊㭋㭌㭍㭎㭏㭐㭑㭒㭓㭔㭕㭖㭗㭘㭙㭚㭛㭜㭝㭞㭟 -
    3B60 㭠㭡㭢㭣㭤㭥㭦㭧㭨㭩㭪㭫㭬㭭㭮㭯㭰㭱㭲㭳㭴㭵㭶㭷㭸㭹㭺㭻㭼㭽㭾㭿 -
    3B80 㮀㮁㮂㮃㮄㮅㮆㮇㮈㮉㮊㮋㮌㮍㮎㮏㮐㮑㮒㮓㮔㮕㮖㮗㮘㮙㮚㮛㮜㮝㮞㮟 -
    3BA0 㮠㮡㮢㮣㮤㮥㮦㮧㮨㮩㮪㮫㮬㮭㮮㮯㮰㮱㮲㮳㮴㮵㮶㮷㮸㮹㮺㮻㮼㮽㮾㮿 -
    3BC0 㯀㯁㯂㯃㯄㯅㯆㯇㯈㯉㯊㯋㯌㯍㯎㯏㯐㯑㯒㯓㯔㯕㯖㯗㯘㯙㯚㯛㯜㯝㯞㯟 -
    3BE0 㯠㯡㯢㯣㯤㯥㯦㯧㯨㯩㯪㯫㯬㯭㯮㯯㯰㯱㯲㯳㯴㯵㯶㯷㯸㯹㯺㯻㯼㯽㯾㯿 -
    3C00 㰀㰁㰂㰃㰄㰅㰆㰇㰈㰉㰊㰋㰌㰍㰎㰏㰐㰑㰒㰓㰔㰕㰖㰗㰘㰙㰚㰛㰜㰝㰞㰟 -
    3C20 㰠㰡㰢㰣㰤㰥㰦㰧㰨㰩㰪㰫㰬㰭㰮㰯㰰㰱㰲㰳㰴㰵㰶㰷㰸㰹㰺㰻㰼㰽㰾㰿 -
    3C40 㱀㱁㱂㱃㱄㱅㱆㱇㱈㱉㱊㱋㱌㱍㱎㱏㱐㱑㱒㱓㱔㱕㱖㱗㱘㱙㱚㱛㱜㱝㱞㱟 -
    3C60 㱠㱡㱢㱣㱤㱥㱦㱧㱨㱩㱪㱫㱬㱭㱮㱯㱰㱱㱲㱳㱴㱵㱶㱷㱸㱹㱺㱻㱼㱽㱾㱿 -
    3C80 㲀㲁㲂㲃㲄㲅㲆㲇㲈㲉㲊㲋㲌㲍㲎㲏㲐㲑㲒㲓㲔㲕㲖㲗㲘㲙㲚㲛㲜㲝㲞㲟 -
    3CA0 㲠㲡㲢㲣㲤㲥㲦㲧㲨㲩㲪㲫㲬㲭㲮㲯㲰㲱㲲㲳㲴㲵㲶㲷㲸㲹㲺㲻㲼㲽㲾㲿 -
    3CC0 㳀㳁㳂㳃㳄㳅㳆㳇㳈㳉㳊㳋㳌㳍㳎㳏㳐㳑㳒㳓㳔㳕㳖㳗㳘㳙㳚㳛㳜㳝㳞㳟 -
    3CE0 㳠㳡㳢㳣㳤㳥㳦㳧㳨㳩㳪㳫㳬㳭㳮㳯㳰㳱㳲㳳㳴㳵㳶㳷㳸㳹㳺㳻㳼㳽㳾㳿 -
    3D00 㴀㴁㴂㴃㴄㴅㴆㴇㴈㴉㴊㴋㴌㴍㴎㴏㴐㴑㴒㴓㴔㴕㴖㴗㴘㴙㴚㴛㴜㴝㴞㴟 -
    3D20 㴠㴡㴢㴣㴤㴥㴦㴧㴨㴩㴪㴫㴬㴭㴮㴯㴰㴱㴲㴳㴴㴵㴶㴷㴸㴹㴺㴻㴼㴽㴾㴿 -
    3D40 㵀㵁㵂㵃㵄㵅㵆㵇㵈㵉㵊㵋㵌㵍㵎㵏㵐㵑㵒㵓㵔㵕㵖㵗㵘㵙㵚㵛㵜㵝㵞㵟 -
    3D60 㵠㵡㵢㵣㵤㵥㵦㵧㵨㵩㵪㵫㵬㵭㵮㵯㵰㵱㵲㵳㵴㵵㵶㵷㵸㵹㵺㵻㵼㵽㵾㵿 -
    3D80 㶀㶁㶂㶃㶄㶅㶆㶇㶈㶉㶊㶋㶌㶍㶎㶏㶐㶑㶒㶓㶔㶕㶖㶗㶘㶙㶚㶛㶜㶝㶞㶟 -
    3DA0 㶠㶡㶢㶣㶤㶥㶦㶧㶨㶩㶪㶫㶬㶭㶮㶯㶰㶱㶲㶳㶴㶵㶶㶷㶸㶹㶺㶻㶼㶽㶾㶿 -
    3DC0 㷀㷁㷂㷃㷄㷅㷆㷇㷈㷉㷊㷋㷌㷍㷎㷏㷐㷑㷒㷓㷔㷕㷖㷗㷘㷙㷚㷛㷜㷝㷞㷟 -
    3DE0 㷠㷡㷢㷣㷤㷥㷦㷧㷨㷩㷪㷫㷬㷭㷮㷯㷰㷱㷲㷳㷴㷵㷶㷷㷸㷹㷺㷻㷼㷽㷾㷿 -
    3E00 㸀㸁㸂㸃㸄㸅㸆㸇㸈㸉㸊㸋㸌㸍㸎㸏㸐㸑㸒㸓㸔㸕㸖㸗㸘㸙㸚㸛㸜㸝㸞㸟 -
    3E20 㸠㸡㸢㸣㸤㸥㸦㸧㸨㸩㸪㸫㸬㸭㸮㸯㸰㸱㸲㸳㸴㸵㸶㸷㸸㸹㸺㸻㸼㸽㸾㸿 -
    3E40 㹀㹁㹂㹃㹄㹅㹆㹇㹈㹉㹊㹋㹌㹍㹎㹏㹐㹑㹒㹓㹔㹕㹖㹗㹘㹙㹚㹛㹜㹝㹞㹟 -
    3E60 㹠㹡㹢㹣㹤㹥㹦㹧㹨㹩㹪㹫㹬㹭㹮㹯㹰㹱㹲㹳㹴㹵㹶㹷㹸㹹㹺㹻㹼㹽㹾㹿 -
    3E80 㺀㺁㺂㺃㺄㺅㺆㺇㺈㺉㺊㺋㺌㺍㺎㺏㺐㺑㺒㺓㺔㺕㺖㺗㺘㺙㺚㺛㺜㺝㺞㺟 -
    3EA0 㺠㺡㺢㺣㺤㺥㺦㺧㺨㺩㺪㺫㺬㺭㺮㺯㺰㺱㺲㺳㺴㺵㺶㺷㺸㺹㺺㺻㺼㺽㺾㺿 -
    3EC0 㻀㻁㻂㻃㻄㻅㻆㻇㻈㻉㻊㻋㻌㻍㻎㻏㻐㻑㻒㻓㻔㻕㻖㻗㻘㻙㻚㻛㻜㻝㻞㻟 -
    3EE0 㻠㻡㻢㻣㻤㻥㻦㻧㻨㻩㻪㻫㻬㻭㻮㻯㻰㻱㻲㻳㻴㻵㻶㻷㻸㻹㻺㻻㻼㻽㻾㻿 -
    3F00 㼀㼁㼂㼃㼄㼅㼆㼇㼈㼉㼊㼋㼌㼍㼎㼏㼐㼑㼒㼓㼔㼕㼖㼗㼘㼙㼚㼛㼜㼝㼞㼟 -
    3F20 㼠㼡㼢㼣㼤㼥㼦㼧㼨㼩㼪㼫㼬㼭㼮㼯㼰㼱㼲㼳㼴㼵㼶㼷㼸㼹㼺㼻㼼㼽㼾㼿 -
    3F40 㽀㽁㽂㽃㽄㽅㽆㽇㽈㽉㽊㽋㽌㽍㽎㽏㽐㽑㽒㽓㽔㽕㽖㽗㽘㽙㽚㽛㽜㽝㽞㽟 -
    3F60 㽠㽡㽢㽣㽤㽥㽦㽧㽨㽩㽪㽫㽬㽭㽮㽯㽰㽱㽲㽳㽴㽵㽶㽷㽸㽹㽺㽻㽼㽽㽾㽿 -
    3F80 㾀㾁㾂㾃㾄㾅㾆㾇㾈㾉㾊㾋㾌㾍㾎㾏㾐㾑㾒㾓㾔㾕㾖㾗㾘㾙㾚㾛㾜㾝㾞㾟 -
    3FA0 㾠㾡㾢㾣㾤㾥㾦㾧㾨㾩㾪㾫㾬㾭㾮㾯㾰㾱㾲㾳㾴㾵㾶㾷㾸㾹㾺㾻㾼㾽㾾㾿 -
    3FC0 㿀㿁㿂㿃㿄㿅㿆㿇㿈㿉㿊㿋㿌㿍㿎㿏㿐㿑㿒㿓㿔㿕㿖㿗㿘㿙㿚㿛㿜㿝㿞㿟 -
    3FE0 㿠㿡㿢㿣㿤㿥㿦㿧㿨㿩㿪㿫㿬㿭㿮㿯㿰㿱㿲㿳㿴㿵㿶㿷㿸㿹㿺㿻㿼㿽㿾㿿 -
    4000 䀀䀁䀂䀃䀄䀅䀆䀇䀈䀉䀊䀋䀌䀍䀎䀏䀐䀑䀒䀓䀔䀕䀖䀗䀘䀙䀚䀛䀜䀝䀞䀟 -
    4020 䀠䀡䀢䀣䀤䀥䀦䀧䀨䀩䀪䀫䀬䀭䀮䀯䀰䀱䀲䀳䀴䀵䀶䀷䀸䀹䀺䀻䀼䀽䀾䀿 -
    4040 䁀䁁䁂䁃䁄䁅䁆䁇䁈䁉䁊䁋䁌䁍䁎䁏䁐䁑䁒䁓䁔䁕䁖䁗䁘䁙䁚䁛䁜䁝䁞䁟 -
    4060 䁠䁡䁢䁣䁤䁥䁦䁧䁨䁩䁪䁫䁬䁭䁮䁯䁰䁱䁲䁳䁴䁵䁶䁷䁸䁹䁺䁻䁼䁽䁾䁿 -
    4080 䂀䂁䂂䂃䂄䂅䂆䂇䂈䂉䂊䂋䂌䂍䂎䂏䂐䂑䂒䂓䂔䂕䂖䂗䂘䂙䂚䂛䂜䂝䂞䂟 -
    40A0 䂠䂡䂢䂣䂤䂥䂦䂧䂨䂩䂪䂫䂬䂭䂮䂯䂰䂱䂲䂳䂴䂵䂶䂷䂸䂹䂺䂻䂼䂽䂾䂿 -
    40C0 䃀䃁䃂䃃䃄䃅䃆䃇䃈䃉䃊䃋䃌䃍䃎䃏䃐䃑䃒䃓䃔䃕䃖䃗䃘䃙䃚䃛䃜䃝䃞䃟 -
    40E0 䃠䃡䃢䃣䃤䃥䃦䃧䃨䃩䃪䃫䃬䃭䃮䃯䃰䃱䃲䃳䃴䃵䃶䃷䃸䃹䃺䃻䃼䃽䃾䃿 -
    4100 䄀䄁䄂䄃䄄䄅䄆䄇䄈䄉䄊䄋䄌䄍䄎䄏䄐䄑䄒䄓䄔䄕䄖䄗䄘䄙䄚䄛䄜䄝䄞䄟 -
    4120 䄠䄡䄢䄣䄤䄥䄦䄧䄨䄩䄪䄫䄬䄭䄮䄯䄰䄱䄲䄳䄴䄵䄶䄷䄸䄹䄺䄻䄼䄽䄾䄿 -
    4140 䅀䅁䅂䅃䅄䅅䅆䅇䅈䅉䅊䅋䅌䅍䅎䅏䅐䅑䅒䅓䅔䅕䅖䅗䅘䅙䅚䅛䅜䅝䅞䅟 -
    4160 䅠䅡䅢䅣䅤䅥䅦䅧䅨䅩䅪䅫䅬䅭䅮䅯䅰䅱䅲䅳䅴䅵䅶䅷䅸䅹䅺䅻䅼䅽䅾䅿 -
    4180 䆀䆁䆂䆃䆄䆅䆆䆇䆈䆉䆊䆋䆌䆍䆎䆏䆐䆑䆒䆓䆔䆕䆖䆗䆘䆙䆚䆛䆜䆝䆞䆟 -
    41A0 䆠䆡䆢䆣䆤䆥䆦䆧䆨䆩䆪䆫䆬䆭䆮䆯䆰䆱䆲䆳䆴䆵䆶䆷䆸䆹䆺䆻䆼䆽䆾䆿 -
    41C0 䇀䇁䇂䇃䇄䇅䇆䇇䇈䇉䇊䇋䇌䇍䇎䇏䇐䇑䇒䇓䇔䇕䇖䇗䇘䇙䇚䇛䇜䇝䇞䇟 -
    41E0 䇠䇡䇢䇣䇤䇥䇦䇧䇨䇩䇪䇫䇬䇭䇮䇯䇰䇱䇲䇳䇴䇵䇶䇷䇸䇹䇺䇻䇼䇽䇾䇿 -
    4200 䈀䈁䈂䈃䈄䈅䈆䈇䈈䈉䈊䈋䈌䈍䈎䈏䈐䈑䈒䈓䈔䈕䈖䈗䈘䈙䈚䈛䈜䈝䈞䈟 -
    4220 䈠䈡䈢䈣䈤䈥䈦䈧䈨䈩䈪䈫䈬䈭䈮䈯䈰䈱䈲䈳䈴䈵䈶䈷䈸䈹䈺䈻䈼䈽䈾䈿 -
    4240 䉀䉁䉂䉃䉄䉅䉆䉇䉈䉉䉊䉋䉌䉍䉎䉏䉐䉑䉒䉓䉔䉕䉖䉗䉘䉙䉚䉛䉜䉝䉞䉟 -
    4260 䉠䉡䉢䉣䉤䉥䉦䉧䉨䉩䉪䉫䉬䉭䉮䉯䉰䉱䉲䉳䉴䉵䉶䉷䉸䉹䉺䉻䉼䉽䉾䉿 -
    4280 䊀䊁䊂䊃䊄䊅䊆䊇䊈䊉䊊䊋䊌䊍䊎䊏䊐䊑䊒䊓䊔䊕䊖䊗䊘䊙䊚䊛䊜䊝䊞䊟 -
    42A0 䊠䊡䊢䊣䊤䊥䊦䊧䊨䊩䊪䊫䊬䊭䊮䊯䊰䊱䊲䊳䊴䊵䊶䊷䊸䊹䊺䊻䊼䊽䊾䊿 -
    42C0 䋀䋁䋂䋃䋄䋅䋆䋇䋈䋉䋊䋋䋌䋍䋎䋏䋐䋑䋒䋓䋔䋕䋖䋗䋘䋙䋚䋛䋜䋝䋞䋟 -
    42E0 䋠䋡䋢䋣䋤䋥䋦䋧䋨䋩䋪䋫䋬䋭䋮䋯䋰䋱䋲䋳䋴䋵䋶䋷䋸䋹䋺䋻䋼䋽䋾䋿 -
    4300 䌀䌁䌂䌃䌄䌅䌆䌇䌈䌉䌊䌋䌌䌍䌎䌏䌐䌑䌒䌓䌔䌕䌖䌗䌘䌙䌚䌛䌜䌝䌞䌟 -
    4320 䌠䌡䌢䌣䌤䌥䌦䌧䌨䌩䌪䌫䌬䌭䌮䌯䌰䌱䌲䌳䌴䌵䌶䌷䌸䌹䌺䌻䌼䌽䌾䌿 -
    4340 䍀䍁䍂䍃䍄䍅䍆䍇䍈䍉䍊䍋䍌䍍䍎䍏䍐䍑䍒䍓䍔䍕䍖䍗䍘䍙䍚䍛䍜䍝䍞䍟 -
    4360 䍠䍡䍢䍣䍤䍥䍦䍧䍨䍩䍪䍫䍬䍭䍮䍯䍰䍱䍲䍳䍴䍵䍶䍷䍸䍹䍺䍻䍼䍽䍾䍿 -
    4380 䎀䎁䎂䎃䎄䎅䎆䎇䎈䎉䎊䎋䎌䎍䎎䎏䎐䎑䎒䎓䎔䎕䎖䎗䎘䎙䎚䎛䎜䎝䎞䎟 -
    43A0 䎠䎡䎢䎣䎤䎥䎦䎧䎨䎩䎪䎫䎬䎭䎮䎯䎰䎱䎲䎳䎴䎵䎶䎷䎸䎹䎺䎻䎼䎽䎾䎿 -
    43C0 䏀䏁䏂䏃䏄䏅䏆䏇䏈䏉䏊䏋䏌䏍䏎䏏䏐䏑䏒䏓䏔䏕䏖䏗䏘䏙䏚䏛䏜䏝䏞䏟 -
    43E0 䏠䏡䏢䏣䏤䏥䏦䏧䏨䏩䏪䏫䏬䏭䏮䏯䏰䏱䏲䏳䏴䏵䏶䏷䏸䏹䏺䏻䏼䏽䏾䏿 -
    4400 䐀䐁䐂䐃䐄䐅䐆䐇䐈䐉䐊䐋䐌䐍䐎䐏䐐䐑䐒䐓䐔䐕䐖䐗䐘䐙䐚䐛䐜䐝䐞䐟 -
    4420 䐠䐡䐢䐣䐤䐥䐦䐧䐨䐩䐪䐫䐬䐭䐮䐯䐰䐱䐲䐳䐴䐵䐶䐷䐸䐹䐺䐻䐼䐽䐾䐿 -
    4440 䑀䑁䑂䑃䑄䑅䑆䑇䑈䑉䑊䑋䑌䑍䑎䑏䑐䑑䑒䑓䑔䑕䑖䑗䑘䑙䑚䑛䑜䑝䑞䑟 -
    4460 䑠䑡䑢䑣䑤䑥䑦䑧䑨䑩䑪䑫䑬䑭䑮䑯䑰䑱䑲䑳䑴䑵䑶䑷䑸䑹䑺䑻䑼䑽䑾䑿 -
    4480 䒀䒁䒂䒃䒄䒅䒆䒇䒈䒉䒊䒋䒌䒍䒎䒏䒐䒑䒒䒓䒔䒕䒖䒗䒘䒙䒚䒛䒜䒝䒞䒟 -
    44A0 䒠䒡䒢䒣䒤䒥䒦䒧䒨䒩䒪䒫䒬䒭䒮䒯䒰䒱䒲䒳䒴䒵䒶䒷䒸䒹䒺䒻䒼䒽䒾䒿 -
    44C0 䓀䓁䓂䓃䓄䓅䓆䓇䓈䓉䓊䓋䓌䓍䓎䓏䓐䓑䓒䓓䓔䓕䓖䓗䓘䓙䓚䓛䓜䓝䓞䓟 -
    44E0 䓠䓡䓢䓣䓤䓥䓦䓧䓨䓩䓪䓫䓬䓭䓮䓯䓰䓱䓲䓳䓴䓵䓶䓷䓸䓹䓺䓻䓼䓽䓾䓿 -
    4500 䔀䔁䔂䔃䔄䔅䔆䔇䔈䔉䔊䔋䔌䔍䔎䔏䔐䔑䔒䔓䔔䔕䔖䔗䔘䔙䔚䔛䔜䔝䔞䔟 -
    4520 䔠䔡䔢䔣䔤䔥䔦䔧䔨䔩䔪䔫䔬䔭䔮䔯䔰䔱䔲䔳䔴䔵䔶䔷䔸䔹䔺䔻䔼䔽䔾䔿 -
    4540 䕀䕁䕂䕃䕄䕅䕆䕇䕈䕉䕊䕋䕌䕍䕎䕏䕐䕑䕒䕓䕔䕕䕖䕗䕘䕙䕚䕛䕜䕝䕞䕟 -
    4560 䕠䕡䕢䕣䕤䕥䕦䕧䕨䕩䕪䕫䕬䕭䕮䕯䕰䕱䕲䕳䕴䕵䕶䕷䕸䕹䕺䕻䕼䕽䕾䕿 -
    4580 䖀䖁䖂䖃䖄䖅䖆䖇䖈䖉䖊䖋䖌䖍䖎䖏䖐䖑䖒䖓䖔䖕䖖䖗䖘䖙䖚䖛䖜䖝䖞䖟 -
    45A0 䖠䖡䖢䖣䖤䖥䖦䖧䖨䖩䖪䖫䖬䖭䖮䖯䖰䖱䖲䖳䖴䖵䖶䖷䖸䖹䖺䖻䖼䖽䖾䖿 -
    45C0 䗀䗁䗂䗃䗄䗅䗆䗇䗈䗉䗊䗋䗌䗍䗎䗏䗐䗑䗒䗓䗔䗕䗖䗗䗘䗙䗚䗛䗜䗝䗞䗟 -
    45E0 䗠䗡䗢䗣䗤䗥䗦䗧䗨䗩䗪䗫䗬䗭䗮䗯䗰䗱䗲䗳䗴䗵䗶䗷䗸䗹䗺䗻䗼䗽䗾䗿 -
    4600 䘀䘁䘂䘃䘄䘅䘆䘇䘈䘉䘊䘋䘌䘍䘎䘏䘐䘑䘒䘓䘔䘕䘖䘗䘘䘙䘚䘛䘜䘝䘞䘟 -
    4620 䘠䘡䘢䘣䘤䘥䘦䘧䘨䘩䘪䘫䘬䘭䘮䘯䘰䘱䘲䘳䘴䘵䘶䘷䘸䘹䘺䘻䘼䘽䘾䘿 -
    4640 䙀䙁䙂䙃䙄䙅䙆䙇䙈䙉䙊䙋䙌䙍䙎䙏䙐䙑䙒䙓䙔䙕䙖䙗䙘䙙䙚䙛䙜䙝䙞䙟 -
    4660 䙠䙡䙢䙣䙤䙥䙦䙧䙨䙩䙪䙫䙬䙭䙮䙯䙰䙱䙲䙳䙴䙵䙶䙷䙸䙹䙺䙻䙼䙽䙾䙿 -
    4680 䚀䚁䚂䚃䚄䚅䚆䚇䚈䚉䚊䚋䚌䚍䚎䚏䚐䚑䚒䚓䚔䚕䚖䚗䚘䚙䚚䚛䚜䚝䚞䚟 -
    46A0 䚠䚡䚢䚣䚤䚥䚦䚧䚨䚩䚪䚫䚬䚭䚮䚯䚰䚱䚲䚳䚴䚵䚶䚷䚸䚹䚺䚻䚼䚽䚾䚿 -
    46C0 䛀䛁䛂䛃䛄䛅䛆䛇䛈䛉䛊䛋䛌䛍䛎䛏䛐䛑䛒䛓䛔䛕䛖䛗䛘䛙䛚䛛䛜䛝䛞䛟 -
    46E0 䛠䛡䛢䛣䛤䛥䛦䛧䛨䛩䛪䛫䛬䛭䛮䛯䛰䛱䛲䛳䛴䛵䛶䛷䛸䛹䛺䛻䛼䛽䛾䛿 -
    4700 䜀䜁䜂䜃䜄䜅䜆䜇䜈䜉䜊䜋䜌䜍䜎䜏䜐䜑䜒䜓䜔䜕䜖䜗䜘䜙䜚䜛䜜䜝䜞䜟 -
    4720 䜠䜡䜢䜣䜤䜥䜦䜧䜨䜩䜪䜫䜬䜭䜮䜯䜰䜱䜲䜳䜴䜵䜶䜷䜸䜹䜺䜻䜼䜽䜾䜿 -
    4740 䝀䝁䝂䝃䝄䝅䝆䝇䝈䝉䝊䝋䝌䝍䝎䝏䝐䝑䝒䝓䝔䝕䝖䝗䝘䝙䝚䝛䝜䝝䝞䝟 -
    4760 䝠䝡䝢䝣䝤䝥䝦䝧䝨䝩䝪䝫䝬䝭䝮䝯䝰䝱䝲䝳䝴䝵䝶䝷䝸䝹䝺䝻䝼䝽䝾䝿 -
    4780 䞀䞁䞂䞃䞄䞅䞆䞇䞈䞉䞊䞋䞌䞍䞎䞏䞐䞑䞒䞓䞔䞕䞖䞗䞘䞙䞚䞛䞜䞝䞞䞟 -
    47A0 䞠䞡䞢䞣䞤䞥䞦䞧䞨䞩䞪䞫䞬䞭䞮䞯䞰䞱䞲䞳䞴䞵䞶䞷䞸䞹䞺䞻䞼䞽䞾䞿 -
    47C0 䟀䟁䟂䟃䟄䟅䟆䟇䟈䟉䟊䟋䟌䟍䟎䟏䟐䟑䟒䟓䟔䟕䟖䟗䟘䟙䟚䟛䟜䟝䟞䟟 -
    47E0 䟠䟡䟢䟣䟤䟥䟦䟧䟨䟩䟪䟫䟬䟭䟮䟯䟰䟱䟲䟳䟴䟵䟶䟷䟸䟹䟺䟻䟼䟽䟾䟿 -
    4800 䠀䠁䠂䠃䠄䠅䠆䠇䠈䠉䠊䠋䠌䠍䠎䠏䠐䠑䠒䠓䠔䠕䠖䠗䠘䠙䠚䠛䠜䠝䠞䠟 -
    4820 䠠䠡䠢䠣䠤䠥䠦䠧䠨䠩䠪䠫䠬䠭䠮䠯䠰䠱䠲䠳䠴䠵䠶䠷䠸䠹䠺䠻䠼䠽䠾䠿 -
    4840 䡀䡁䡂䡃䡄䡅䡆䡇䡈䡉䡊䡋䡌䡍䡎䡏䡐䡑䡒䡓䡔䡕䡖䡗䡘䡙䡚䡛䡜䡝䡞䡟 -
    4860 䡠䡡䡢䡣䡤䡥䡦䡧䡨䡩䡪䡫䡬䡭䡮䡯䡰䡱䡲䡳䡴䡵䡶䡷䡸䡹䡺䡻䡼䡽䡾䡿 -
    4880 䢀䢁䢂䢃䢄䢅䢆䢇䢈䢉䢊䢋䢌䢍䢎䢏䢐䢑䢒䢓䢔䢕䢖䢗䢘䢙䢚䢛䢜䢝䢞䢟 -
    48A0 䢠䢡䢢䢣䢤䢥䢦䢧䢨䢩䢪䢫䢬䢭䢮䢯䢰䢱䢲䢳䢴䢵䢶䢷䢸䢹䢺䢻䢼䢽䢾䢿 -
    48C0 䣀䣁䣂䣃䣄䣅䣆䣇䣈䣉䣊䣋䣌䣍䣎䣏䣐䣑䣒䣓䣔䣕䣖䣗䣘䣙䣚䣛䣜䣝䣞䣟 -
    48E0 䣠䣡䣢䣣䣤䣥䣦䣧䣨䣩䣪䣫䣬䣭䣮䣯䣰䣱䣲䣳䣴䣵䣶䣷䣸䣹䣺䣻䣼䣽䣾䣿 -
    4900 䤀䤁䤂䤃䤄䤅䤆䤇䤈䤉䤊䤋䤌䤍䤎䤏䤐䤑䤒䤓䤔䤕䤖䤗䤘䤙䤚䤛䤜䤝䤞䤟 -
    4920 䤠䤡䤢䤣䤤䤥䤦䤧䤨䤩䤪䤫䤬䤭䤮䤯䤰䤱䤲䤳䤴䤵䤶䤷䤸䤹䤺䤻䤼䤽䤾䤿 -
    4940 䥀䥁䥂䥃䥄䥅䥆䥇䥈䥉䥊䥋䥌䥍䥎䥏䥐䥑䥒䥓䥔䥕䥖䥗䥘䥙䥚䥛䥜䥝䥞䥟 -
    4960 䥠䥡䥢䥣䥤䥥䥦䥧䥨䥩䥪䥫䥬䥭䥮䥯䥰䥱䥲䥳䥴䥵䥶䥷䥸䥹䥺䥻䥼䥽䥾䥿 -
    4980 䦀䦁䦂䦃䦄䦅䦆䦇䦈䦉䦊䦋䦌䦍䦎䦏䦐䦑䦒䦓䦔䦕䦖䦗䦘䦙䦚䦛䦜䦝䦞䦟 -
    49A0 䦠䦡䦢䦣䦤䦥䦦䦧䦨䦩䦪䦫䦬䦭䦮䦯䦰䦱䦲䦳䦴䦵䦶䦷䦸䦹䦺䦻䦼䦽䦾䦿 -
    49C0 䧀䧁䧂䧃䧄䧅䧆䧇䧈䧉䧊䧋䧌䧍䧎䧏䧐䧑䧒䧓䧔䧕䧖䧗䧘䧙䧚䧛䧜䧝䧞䧟 -
    49E0 䧠䧡䧢䧣䧤䧥䧦䧧䧨䧩䧪䧫䧬䧭䧮䧯䧰䧱䧲䧳䧴䧵䧶䧷䧸䧹䧺䧻䧼䧽䧾䧿 -
    4A00 䨀䨁䨂䨃䨄䨅䨆䨇䨈䨉䨊䨋䨌䨍䨎䨏䨐䨑䨒䨓䨔䨕䨖䨗䨘䨙䨚䨛䨜䨝䨞䨟 -
    4A20 䨠䨡䨢䨣䨤䨥䨦䨧䨨䨩䨪䨫䨬䨭䨮䨯䨰䨱䨲䨳䨴䨵䨶䨷䨸䨹䨺䨻䨼䨽䨾䨿 -
    4A40 䩀䩁䩂䩃䩄䩅䩆䩇䩈䩉䩊䩋䩌䩍䩎䩏䩐䩑䩒䩓䩔䩕䩖䩗䩘䩙䩚䩛䩜䩝䩞䩟 -
    4A60 䩠䩡䩢䩣䩤䩥䩦䩧䩨䩩䩪䩫䩬䩭䩮䩯䩰䩱䩲䩳䩴䩵䩶䩷䩸䩹䩺䩻䩼䩽䩾䩿 -
    4A80 䪀䪁䪂䪃䪄䪅䪆䪇䪈䪉䪊䪋䪌䪍䪎䪏䪐䪑䪒䪓䪔䪕䪖䪗䪘䪙䪚䪛䪜䪝䪞䪟 -
    4AA0 䪠䪡䪢䪣䪤䪥䪦䪧䪨䪩䪪䪫䪬䪭䪮䪯䪰䪱䪲䪳䪴䪵䪶䪷䪸䪹䪺䪻䪼䪽䪾䪿 -
    4AC0 䫀䫁䫂䫃䫄䫅䫆䫇䫈䫉䫊䫋䫌䫍䫎䫏䫐䫑䫒䫓䫔䫕䫖䫗䫘䫙䫚䫛䫜䫝䫞䫟 -
    4AE0 䫠䫡䫢䫣䫤䫥䫦䫧䫨䫩䫪䫫䫬䫭䫮䫯䫰䫱䫲䫳䫴䫵䫶䫷䫸䫹䫺䫻䫼䫽䫾䫿 -
    4B00 䬀䬁䬂䬃䬄䬅䬆䬇䬈䬉䬊䬋䬌䬍䬎䬏䬐䬑䬒䬓䬔䬕䬖䬗䬘䬙䬚䬛䬜䬝䬞䬟 -
    4B20 䬠䬡䬢䬣䬤䬥䬦䬧䬨䬩䬪䬫䬬䬭䬮䬯䬰䬱䬲䬳䬴䬵䬶䬷䬸䬹䬺䬻䬼䬽䬾䬿 -
    4B40 䭀䭁䭂䭃䭄䭅䭆䭇䭈䭉䭊䭋䭌䭍䭎䭏䭐䭑䭒䭓䭔䭕䭖䭗䭘䭙䭚䭛䭜䭝䭞䭟 -
    4B60 䭠䭡䭢䭣䭤䭥䭦䭧䭨䭩䭪䭫䭬䭭䭮䭯䭰䭱䭲䭳䭴䭵䭶䭷䭸䭹䭺䭻䭼䭽䭾䭿 -
    4B80 䮀䮁䮂䮃䮄䮅䮆䮇䮈䮉䮊䮋䮌䮍䮎䮏䮐䮑䮒䮓䮔䮕䮖䮗䮘䮙䮚䮛䮜䮝䮞䮟 -
    4BA0 䮠䮡䮢䮣䮤䮥䮦䮧䮨䮩䮪䮫䮬䮭䮮䮯䮰䮱䮲䮳䮴䮵䮶䮷䮸䮹䮺䮻䮼䮽䮾䮿 -
    4BC0 䯀䯁䯂䯃䯄䯅䯆䯇䯈䯉䯊䯋䯌䯍䯎䯏䯐䯑䯒䯓䯔䯕䯖䯗䯘䯙䯚䯛䯜䯝䯞䯟 -
    4BE0 䯠䯡䯢䯣䯤䯥䯦䯧䯨䯩䯪䯫䯬䯭䯮䯯䯰䯱䯲䯳䯴䯵䯶䯷䯸䯹䯺䯻䯼䯽䯾䯿 -
    4C00 䰀䰁䰂䰃䰄䰅䰆䰇䰈䰉䰊䰋䰌䰍䰎䰏䰐䰑䰒䰓䰔䰕䰖䰗䰘䰙䰚䰛䰜䰝䰞䰟 -
    4C20 䰠䰡䰢䰣䰤䰥䰦䰧䰨䰩䰪䰫䰬䰭䰮䰯䰰䰱䰲䰳䰴䰵䰶䰷䰸䰹䰺䰻䰼䰽䰾䰿 -
    4C40 䱀䱁䱂䱃䱄䱅䱆䱇䱈䱉䱊䱋䱌䱍䱎䱏䱐䱑䱒䱓䱔䱕䱖䱗䱘䱙䱚䱛䱜䱝䱞䱟 -
    4C60 䱠䱡䱢䱣䱤䱥䱦䱧䱨䱩䱪䱫䱬䱭䱮䱯䱰䱱䱲䱳䱴䱵䱶䱷䱸䱹䱺䱻䱼䱽䱾䱿 -
    4C80 䲀䲁䲂䲃䲄䲅䲆䲇䲈䲉䲊䲋䲌䲍䲎䲏䲐䲑䲒䲓䲔䲕䲖䲗䲘䲙䲚䲛䲜䲝䲞䲟 -
    4CA0 䲠䲡䲢䲣䲤䲥䲦䲧䲨䲩䲪䲫䲬䲭䲮䲯䲰䲱䲲䲳䲴䲵䲶䲷䲸䲹䲺䲻䲼䲽䲾䲿 -
    4CC0 䳀䳁䳂䳃䳄䳅䳆䳇䳈䳉䳊䳋䳌䳍䳎䳏䳐䳑䳒䳓䳔䳕䳖䳗䳘䳙䳚䳛䳜䳝䳞䳟 -
    4CE0 䳠䳡䳢䳣䳤䳥䳦䳧䳨䳩䳪䳫䳬䳭䳮䳯䳰䳱䳲䳳䳴䳵䳶䳷䳸䳹䳺䳻䳼䳽䳾䳿 -
    4D00 䴀䴁䴂䴃䴄䴅䴆䴇䴈䴉䴊䴋䴌䴍䴎䴏䴐䴑䴒䴓䴔䴕䴖䴗䴘䴙䴚䴛䴜䴝䴞䴟 -
    4D20 䴠䴡䴢䴣䴤䴥䴦䴧䴨䴩䴪䴫䴬䴭䴮䴯䴰䴱䴲䴳䴴䴵䴶䴷䴸䴹䴺䴻䴼䴽䴾䴿 -
    4D40 䵀䵁䵂䵃䵄䵅䵆䵇䵈䵉䵊䵋䵌䵍䵎䵏䵐䵑䵒䵓䵔䵕䵖䵗䵘䵙䵚䵛䵜䵝䵞䵟 -
    4D60 䵠䵡䵢䵣䵤䵥䵦䵧䵨䵩䵪䵫䵬䵭䵮䵯䵰䵱䵲䵳䵴䵵䵶䵷䵸䵹䵺䵻䵼䵽䵾䵿 -
    4D80 䶀䶁䶂䶃䶄䶅䶆䶇䶈䶉䶊䶋䶌䶍䶎䶏䶐䶑䶒䶓䶔䶕䶖䶗䶘䶙䶚䶛䶜䶝䶞䶟 -
    4DA0 䶠䶡䶢䶣䶤䶥䶦䶧䶨䶩䶪䶫䶬䶭䶮䶯䶰䶱䶲䶳䶴䶵䶶䶷䶸䶹䶺䶻䶼䶽䶾䶿 -
    4DC0 ䷀䷁䷂䷃䷄䷅䷆䷇䷈䷉䷊䷋䷌䷍䷎䷏䷐䷑䷒䷓䷔䷕䷖䷗䷘䷙䷚䷛䷜䷝䷞䷟ -
    4DE0 ䷠䷡䷢䷣䷤䷥䷦䷧䷨䷩䷪䷫䷬䷭䷮䷯䷰䷱䷲䷳䷴䷵䷶䷷䷸䷹䷺䷻䷼䷽䷾䷿ -
    4E00 一丁丂七丄丅丆万丈三上下丌不与丏丐丑丒专且丕世丗丘丙业丛东丝丞丟 -
    4E20 丠両丢丣两严並丧丨丩个丫丬中丮丯丰丱串丳临丵丶丷丸丹为主丼丽举丿 -
    4E40 乀乁乂乃乄久乆乇么义乊之乌乍乎乏乐乑乒乓乔乕乖乗乘乙乚乛乜九乞也 -
    4E60 习乡乢乣乤乥书乧乨乩乪乫乬乭乮乯买乱乲乳乴乵乶乷乸乹乺乻乼乽乾乿 -
    4E80 亀亁亂亃亄亅了亇予争亊事二亍于亏亐云互亓五井亖亗亘亙亚些亜亝亞亟 -
    4EA0 亠亡亢亣交亥亦产亨亩亪享京亭亮亯亰亱亲亳亴亵亶亷亸亹人亻亼亽亾亿 -
    4EC0 什仁仂仃仄仅仆仇仈仉今介仌仍从仏仐仑仒仓仔仕他仗付仙仚仛仜仝仞仟 -
    4EE0 仠仡仢代令以仦仧仨仩仪仫们仭仮仯仰仱仲仳仴仵件价仸仹仺任仼份仾仿 -
    4F00 伀企伂伃伄伅伆伇伈伉伊伋伌伍伎伏伐休伒伓伔伕伖众优伙会伛伜伝伞伟 -
    4F20 传伡伢伣伤伥伦伧伨伩伪伫伬伭伮伯估伱伲伳伴伵伶伷伸伹伺伻似伽伾伿 -
    4F40 佀佁佂佃佄佅但佇佈佉佊佋佌位低住佐佑佒体佔何佖佗佘余佚佛作佝佞佟 -
    4F60 你佡佢佣佤佥佦佧佨佩佪佫佬佭佮佯佰佱佲佳佴併佶佷佸佹佺佻佼佽佾使 -
    4F80 侀侁侂侃侄侅來侇侈侉侊例侌侍侎侏侐侑侒侓侔侕侖侗侘侙侚供侜依侞侟 -
    4FA0 侠価侢侣侤侥侦侧侨侩侪侫侬侭侮侯侰侱侲侳侴侵侶侷侸侹侺侻侼侽侾便 -
    4FC0 俀俁係促俄俅俆俇俈俉俊俋俌俍俎俏俐俑俒俓俔俕俖俗俘俙俚俛俜保俞俟 -
    4FE0 俠信俢俣俤俥俦俧俨俩俪俫俬俭修俯俰俱俲俳俴俵俶俷俸俹俺俻俼俽俾俿 -
    5000 倀倁倂倃倄倅倆倇倈倉倊個倌倍倎倏倐們倒倓倔倕倖倗倘候倚倛倜倝倞借 -
    5020 倠倡倢倣値倥倦倧倨倩倪倫倬倭倮倯倰倱倲倳倴倵倶倷倸倹债倻值倽倾倿 -
    5040 偀偁偂偃偄偅偆假偈偉偊偋偌偍偎偏偐偑偒偓偔偕偖偗偘偙做偛停偝偞偟 -
    5060 偠偡偢偣偤健偦偧偨偩偪偫偬偭偮偯偰偱偲偳側偵偶偷偸偹偺偻偼偽偾偿 -
    5080 傀傁傂傃傄傅傆傇傈傉傊傋傌傍傎傏傐傑傒傓傔傕傖傗傘備傚傛傜傝傞傟 -
    50A0 傠傡傢傣傤傥傦傧储傩傪傫催傭傮傯傰傱傲傳傴債傶傷傸傹傺傻傼傽傾傿 -
    50C0 僀僁僂僃僄僅僆僇僈僉僊僋僌働僎像僐僑僒僓僔僕僖僗僘僙僚僛僜僝僞僟 -
    50E0 僠僡僢僣僤僥僦僧僨僩僪僫僬僭僮僯僰僱僲僳僴僵僶僷僸價僺僻僼僽僾僿 -
    5100 儀儁儂儃億儅儆儇儈儉儊儋儌儍儎儏儐儑儒儓儔儕儖儗儘儙儚儛儜儝儞償 -
    5120 儠儡儢儣儤儥儦儧儨儩優儫儬儭儮儯儰儱儲儳儴儵儶儷儸儹儺儻儼儽儾儿 -
    5140 兀允兂元兄充兆兇先光兊克兌免兎兏児兑兒兓兔兕兖兗兘兙党兛兜兝兞兟 -
    5160 兠兡兢兣兤入兦內全兩兪八公六兮兯兰共兲关兴兵其具典兹兺养兼兽兾兿 -
    5180 冀冁冂冃冄内円冇冈冉冊冋册再冎冏冐冑冒冓冔冕冖冗冘写冚军农冝冞冟 -
    51A0 冠冡冢冣冤冥冦冧冨冩冪冫冬冭冮冯冰冱冲决冴况冶冷冸冹冺冻冼冽冾冿 -
    51C0 净凁凂凃凄凅准凇凈凉凊凋凌凍凎减凐凑凒凓凔凕凖凗凘凙凚凛凜凝凞凟 -
    51E0 几凡凢凣凤凥処凧凨凩凪凫凬凭凮凯凰凱凲凳凴凵凶凷凸凹出击凼函凾凿 -
    5200 刀刁刂刃刄刅分切刈刉刊刋刌刍刎刏刐刑划刓刔刕刖列刘则刚创刜初刞刟 -
    5220 删刡刢刣判別刦刧刨利刪别刬刭刮刯到刱刲刳刴刵制刷券刹刺刻刼刽刾刿 -
    5240 剀剁剂剃剄剅剆則剈剉削剋剌前剎剏剐剑剒剓剔剕剖剗剘剙剚剛剜剝剞剟 -
    5260 剠剡剢剣剤剥剦剧剨剩剪剫剬剭剮副剰剱割剳剴創剶剷剸剹剺剻剼剽剾剿 -
    5280 劀劁劂劃劄劅劆劇劈劉劊劋劌劍劎劏劐劑劒劓劔劕劖劗劘劙劚力劜劝办功 -
    52A0 加务劢劣劤劥劦劧动助努劫劬劭劮劯劰励劲劳労劵劶劷劸効劺劻劼劽劾势 -
    52C0 勀勁勂勃勄勅勆勇勈勉勊勋勌勍勎勏勐勑勒勓勔動勖勗勘務勚勛勜勝勞募 -
    52E0 勠勡勢勣勤勥勦勧勨勩勪勫勬勭勮勯勰勱勲勳勴勵勶勷勸勹勺勻勼勽勾勿 -
    5300 匀匁匂匃匄包匆匇匈匉匊匋匌匍匎匏匐匑匒匓匔匕化北匘匙匚匛匜匝匞匟 -
    5320 匠匡匢匣匤匥匦匧匨匩匪匫匬匭匮匯匰匱匲匳匴匵匶匷匸匹区医匼匽匾匿 -
    5340 區十卂千卄卅卆升午卉半卋卌卍华协卐卑卒卓協单卖南単卙博卛卜卝卞卟 -
    5360 占卡卢卣卤卥卦卧卨卩卪卫卬卭卮卯印危卲即却卵卶卷卸卹卺卻卼卽卾卿 -
    5380 厀厁厂厃厄厅历厇厈厉厊压厌厍厎厏厐厑厒厓厔厕厖厗厘厙厚厛厜厝厞原 -
    53A0 厠厡厢厣厤厥厦厧厨厩厪厫厬厭厮厯厰厱厲厳厴厵厶厷厸厹厺去厼厽厾县 -
    53C0 叀叁参參叄叅叆叇又叉及友双反収叏叐发叒叓叔叕取受变叙叚叛叜叝叞叟 -
    53E0 叠叡叢口古句另叧叨叩只叫召叭叮可台叱史右叴叵叶号司叹叺叻叼叽叾叿 -
    5400 吀吁吂吃各吅吆吇合吉吊吋同名后吏吐向吒吓吔吕吖吗吘吙吚君吜吝吞吟 -
    5420 吠吡吢吣吤吥否吧吨吩吪含听吭吮启吰吱吲吳吴吵吶吷吸吹吺吻吼吽吾吿 -
    5440 呀呁呂呃呄呅呆呇呈呉告呋呌呍呎呏呐呑呒呓呔呕呖呗员呙呚呛呜呝呞呟 -
    5460 呠呡呢呣呤呥呦呧周呩呪呫呬呭呮呯呰呱呲味呴呵呶呷呸呹呺呻呼命呾呿 -
    5480 咀咁咂咃咄咅咆咇咈咉咊咋和咍咎咏咐咑咒咓咔咕咖咗咘咙咚咛咜咝咞咟 -
    54A0 咠咡咢咣咤咥咦咧咨咩咪咫咬咭咮咯咰咱咲咳咴咵咶咷咸咹咺咻咼咽咾咿 -
    54C0 哀品哂哃哄哅哆哇哈哉哊哋哌响哎哏哐哑哒哓哔哕哖哗哘哙哚哛哜哝哞哟 -
    54E0 哠員哢哣哤哥哦哧哨哩哪哫哬哭哮哯哰哱哲哳哴哵哶哷哸哹哺哻哼哽哾哿 -
    5500 唀唁唂唃唄唅唆唇唈唉唊唋唌唍唎唏唐唑唒唓唔唕唖唗唘唙唚唛唜唝唞唟 -
    5520 唠唡唢唣唤唥唦唧唨唩唪唫唬唭售唯唰唱唲唳唴唵唶唷唸唹唺唻唼唽唾唿 -
    5540 啀啁啂啃啄啅商啇啈啉啊啋啌啍啎問啐啑啒啓啔啕啖啗啘啙啚啛啜啝啞啟 -
    5560 啠啡啢啣啤啥啦啧啨啩啪啫啬啭啮啯啰啱啲啳啴啵啶啷啸啹啺啻啼啽啾啿 -
    5580 喀喁喂喃善喅喆喇喈喉喊喋喌喍喎喏喐喑喒喓喔喕喖喗喘喙喚喛喜喝喞喟 -
    55A0 喠喡喢喣喤喥喦喧喨喩喪喫喬喭單喯喰喱喲喳喴喵営喷喸喹喺喻喼喽喾喿 -
    55C0 嗀嗁嗂嗃嗄嗅嗆嗇嗈嗉嗊嗋嗌嗍嗎嗏嗐嗑嗒嗓嗔嗕嗖嗗嗘嗙嗚嗛嗜嗝嗞嗟 -
    55E0 嗠嗡嗢嗣嗤嗥嗦嗧嗨嗩嗪嗫嗬嗭嗮嗯嗰嗱嗲嗳嗴嗵嗶嗷嗸嗹嗺嗻嗼嗽嗾嗿 -
    5600 嘀嘁嘂嘃嘄嘅嘆嘇嘈嘉嘊嘋嘌嘍嘎嘏嘐嘑嘒嘓嘔嘕嘖嘗嘘嘙嘚嘛嘜嘝嘞嘟 -
    5620 嘠嘡嘢嘣嘤嘥嘦嘧嘨嘩嘪嘫嘬嘭嘮嘯嘰嘱嘲嘳嘴嘵嘶嘷嘸嘹嘺嘻嘼嘽嘾嘿 -
    5640 噀噁噂噃噄噅噆噇噈噉噊噋噌噍噎噏噐噑噒噓噔噕噖噗噘噙噚噛噜噝噞噟 -
    5660 噠噡噢噣噤噥噦噧器噩噪噫噬噭噮噯噰噱噲噳噴噵噶噷噸噹噺噻噼噽噾噿 -
    5680 嚀嚁嚂嚃嚄嚅嚆嚇嚈嚉嚊嚋嚌嚍嚎嚏嚐嚑嚒嚓嚔嚕嚖嚗嚘嚙嚚嚛嚜嚝嚞嚟 -
    56A0 嚠嚡嚢嚣嚤嚥嚦嚧嚨嚩嚪嚫嚬嚭嚮嚯嚰嚱嚲嚳嚴嚵嚶嚷嚸嚹嚺嚻嚼嚽嚾嚿 -
    56C0 囀囁囂囃囄囅囆囇囈囉囊囋囌囍囎囏囐囑囒囓囔囕囖囗囘囙囚四囜囝回囟 -
    56E0 因囡团団囤囥囦囧囨囩囪囫囬园囮囯困囱囲図围囵囶囷囸囹固囻囼国图囿 -
    5700 圀圁圂圃圄圅圆圇圈圉圊國圌圍圎圏圐圑園圓圔圕圖圗團圙圚圛圜圝圞土 -
    5720 圠圡圢圣圤圥圦圧在圩圪圫圬圭圮圯地圱圲圳圴圵圶圷圸圹场圻圼圽圾圿 -
    5740 址坁坂坃坄坅坆均坈坉坊坋坌坍坎坏坐坑坒坓坔坕坖块坘坙坚坛坜坝坞坟 -
    5760 坠坡坢坣坤坥坦坧坨坩坪坫坬坭坮坯坰坱坲坳坴坵坶坷坸坹坺坻坼坽坾坿 -
    5780 垀垁垂垃垄垅垆垇垈垉垊型垌垍垎垏垐垑垒垓垔垕垖垗垘垙垚垛垜垝垞垟 -
    57A0 垠垡垢垣垤垥垦垧垨垩垪垫垬垭垮垯垰垱垲垳垴垵垶垷垸垹垺垻垼垽垾垿 -
    57C0 埀埁埂埃埄埅埆埇埈埉埊埋埌埍城埏埐埑埒埓埔埕埖埗埘埙埚埛埜埝埞域 -
    57E0 埠埡埢埣埤埥埦埧埨埩埪埫埬埭埮埯埰埱埲埳埴埵埶執埸培基埻埼埽埾埿 -
    5800 堀堁堂堃堄堅堆堇堈堉堊堋堌堍堎堏堐堑堒堓堔堕堖堗堘堙堚堛堜堝堞堟 -
    5820 堠堡堢堣堤堥堦堧堨堩堪堫堬堭堮堯堰報堲堳場堵堶堷堸堹堺堻堼堽堾堿 -
    5840 塀塁塂塃塄塅塆塇塈塉塊塋塌塍塎塏塐塑塒塓塔塕塖塗塘塙塚塛塜塝塞塟 -
    5860 塠塡塢塣塤塥塦塧塨塩塪填塬塭塮塯塰塱塲塳塴塵塶塷塸塹塺塻塼塽塾塿 -
    5880 墀墁墂境墄墅墆墇墈墉墊墋墌墍墎墏墐墑墒墓墔墕墖増墘墙墚墛墜墝增墟 -
    58A0 墠墡墢墣墤墥墦墧墨墩墪墫墬墭墮墯墰墱墲墳墴墵墶墷墸墹墺墻墼墽墾墿 -
    58C0 壀壁壂壃壄壅壆壇壈壉壊壋壌壍壎壏壐壑壒壓壔壕壖壗壘壙壚壛壜壝壞壟 -
    58E0 壠壡壢壣壤壥壦壧壨壩壪士壬壭壮壯声壱売壳壴壵壶壷壸壹壺壻壼壽壾壿 -
    5900 夀夁夂夃处夅夆备夈変夊夋夌复夎夏夐夑夒夓夔夕外夗夘夙多夛夜夝夞够 -
    5920 夠夡夢夣夤夥夦大夨天太夫夬夭央夯夰失夲夳头夵夶夷夸夹夺夻夼夽夾夿 -
    5940 奀奁奂奃奄奅奆奇奈奉奊奋奌奍奎奏奐契奒奓奔奕奖套奘奙奚奛奜奝奞奟 -
    5960 奠奡奢奣奤奥奦奧奨奩奪奫奬奭奮奯奰奱奲女奴奵奶奷奸她奺奻奼好奾奿 -
    5980 妀妁如妃妄妅妆妇妈妉妊妋妌妍妎妏妐妑妒妓妔妕妖妗妘妙妚妛妜妝妞妟 -
    59A0 妠妡妢妣妤妥妦妧妨妩妪妫妬妭妮妯妰妱妲妳妴妵妶妷妸妹妺妻妼妽妾妿 -
    59C0 姀姁姂姃姄姅姆姇姈姉姊始姌姍姎姏姐姑姒姓委姕姖姗姘姙姚姛姜姝姞姟 -
    59E0 姠姡姢姣姤姥姦姧姨姩姪姫姬姭姮姯姰姱姲姳姴姵姶姷姸姹姺姻姼姽姾姿 -
    5A00 娀威娂娃娄娅娆娇娈娉娊娋娌娍娎娏娐娑娒娓娔娕娖娗娘娙娚娛娜娝娞娟 -
    5A20 娠娡娢娣娤娥娦娧娨娩娪娫娬娭娮娯娰娱娲娳娴娵娶娷娸娹娺娻娼娽娾娿 -
    5A40 婀婁婂婃婄婅婆婇婈婉婊婋婌婍婎婏婐婑婒婓婔婕婖婗婘婙婚婛婜婝婞婟 -
    5A60 婠婡婢婣婤婥婦婧婨婩婪婫婬婭婮婯婰婱婲婳婴婵婶婷婸婹婺婻婼婽婾婿 -
    5A80 媀媁媂媃媄媅媆媇媈媉媊媋媌媍媎媏媐媑媒媓媔媕媖媗媘媙媚媛媜媝媞媟 -
    5AA0 媠媡媢媣媤媥媦媧媨媩媪媫媬媭媮媯媰媱媲媳媴媵媶媷媸媹媺媻媼媽媾媿 -
    5AC0 嫀嫁嫂嫃嫄嫅嫆嫇嫈嫉嫊嫋嫌嫍嫎嫏嫐嫑嫒嫓嫔嫕嫖嫗嫘嫙嫚嫛嫜嫝嫞嫟 -
    5AE0 嫠嫡嫢嫣嫤嫥嫦嫧嫨嫩嫪嫫嫬嫭嫮嫯嫰嫱嫲嫳嫴嫵嫶嫷嫸嫹嫺嫻嫼嫽嫾嫿 -
    5B00 嬀嬁嬂嬃嬄嬅嬆嬇嬈嬉嬊嬋嬌嬍嬎嬏嬐嬑嬒嬓嬔嬕嬖嬗嬘嬙嬚嬛嬜嬝嬞嬟 -
    5B20 嬠嬡嬢嬣嬤嬥嬦嬧嬨嬩嬪嬫嬬嬭嬮嬯嬰嬱嬲嬳嬴嬵嬶嬷嬸嬹嬺嬻嬼嬽嬾嬿 -
    5B40 孀孁孂孃孄孅孆孇孈孉孊孋孌孍孎孏子孑孒孓孔孕孖字存孙孚孛孜孝孞孟 -
    5B60 孠孡孢季孤孥学孧孨孩孪孫孬孭孮孯孰孱孲孳孴孵孶孷學孹孺孻孼孽孾孿 -
    5B80 宀宁宂它宄宅宆宇守安宊宋完宍宎宏宐宑宒宓宔宕宖宗官宙定宛宜宝实実 -
    5BA0 宠审客宣室宥宦宧宨宩宪宫宬宭宮宯宰宱宲害宴宵家宷宸容宺宻宼宽宾宿 -
    5BC0 寀寁寂寃寄寅密寇寈寉寊寋富寍寎寏寐寑寒寓寔寕寖寗寘寙寚寛寜寝寞察 -
    5BE0 寠寡寢寣寤寥實寧寨審寪寫寬寭寮寯寰寱寲寳寴寵寶寷寸对寺寻导寽対寿 -
    5C00 尀封専尃射尅将將專尉尊尋尌對導小尐少尒尓尔尕尖尗尘尙尚尛尜尝尞尟 -
    5C20 尠尡尢尣尤尥尦尧尨尩尪尫尬尭尮尯尰就尲尳尴尵尶尷尸尹尺尻尼尽尾尿 -
    5C40 局屁层屃屄居屆屇屈屉届屋屌屍屎屏屐屑屒屓屔展屖屗屘屙屚屛屜屝属屟 -
    5C60 屠屡屢屣層履屦屧屨屩屪屫屬屭屮屯屰山屲屳屴屵屶屷屸屹屺屻屼屽屾屿 -
    5C80 岀岁岂岃岄岅岆岇岈岉岊岋岌岍岎岏岐岑岒岓岔岕岖岗岘岙岚岛岜岝岞岟 -
    5CA0 岠岡岢岣岤岥岦岧岨岩岪岫岬岭岮岯岰岱岲岳岴岵岶岷岸岹岺岻岼岽岾岿 -
    5CC0 峀峁峂峃峄峅峆峇峈峉峊峋峌峍峎峏峐峑峒峓峔峕峖峗峘峙峚峛峜峝峞峟 -
    5CE0 峠峡峢峣峤峥峦峧峨峩峪峫峬峭峮峯峰峱峲峳峴峵島峷峸峹峺峻峼峽峾峿 -
    5D00 崀崁崂崃崄崅崆崇崈崉崊崋崌崍崎崏崐崑崒崓崔崕崖崗崘崙崚崛崜崝崞崟 -
    5D20 崠崡崢崣崤崥崦崧崨崩崪崫崬崭崮崯崰崱崲崳崴崵崶崷崸崹崺崻崼崽崾崿 -
    5D40 嵀嵁嵂嵃嵄嵅嵆嵇嵈嵉嵊嵋嵌嵍嵎嵏嵐嵑嵒嵓嵔嵕嵖嵗嵘嵙嵚嵛嵜嵝嵞嵟 -
    5D60 嵠嵡嵢嵣嵤嵥嵦嵧嵨嵩嵪嵫嵬嵭嵮嵯嵰嵱嵲嵳嵴嵵嵶嵷嵸嵹嵺嵻嵼嵽嵾嵿 -
    5D80 嶀嶁嶂嶃嶄嶅嶆嶇嶈嶉嶊嶋嶌嶍嶎嶏嶐嶑嶒嶓嶔嶕嶖嶗嶘嶙嶚嶛嶜嶝嶞嶟 -
    5DA0 嶠嶡嶢嶣嶤嶥嶦嶧嶨嶩嶪嶫嶬嶭嶮嶯嶰嶱嶲嶳嶴嶵嶶嶷嶸嶹嶺嶻嶼嶽嶾嶿 -
    5DC0 巀巁巂巃巄巅巆巇巈巉巊巋巌巍巎巏巐巑巒巓巔巕巖巗巘巙巚巛巜川州巟 -
    5DE0 巠巡巢巣巤工左巧巨巩巪巫巬巭差巯巰己已巳巴巵巶巷巸巹巺巻巼巽巾巿 -
    5E00 帀币市布帄帅帆帇师帉帊帋希帍帎帏帐帑帒帓帔帕帖帗帘帙帚帛帜帝帞帟 -
    5E20 帠帡帢帣帤帥带帧帨帩帪師帬席帮帯帰帱帲帳帴帵帶帷常帹帺帻帼帽帾帿 -
    5E40 幀幁幂幃幄幅幆幇幈幉幊幋幌幍幎幏幐幑幒幓幔幕幖幗幘幙幚幛幜幝幞幟 -
    5E60 幠幡幢幣幤幥幦幧幨幩幪幫幬幭幮幯幰幱干平年幵并幷幸幹幺幻幼幽幾广 -
    5E80 庀庁庂広庄庅庆庇庈庉床庋庌庍庎序庐庑庒库应底庖店庘庙庚庛府庝庞废 -
    5EA0 庠庡庢庣庤庥度座庨庩庪庫庬庭庮庯庰庱庲庳庴庵庶康庸庹庺庻庼庽庾庿 -
    5EC0 廀廁廂廃廄廅廆廇廈廉廊廋廌廍廎廏廐廑廒廓廔廕廖廗廘廙廚廛廜廝廞廟 -
    5EE0 廠廡廢廣廤廥廦廧廨廩廪廫廬廭廮廯廰廱廲廳廴廵延廷廸廹建廻廼廽廾廿 -
    5F00 开弁异弃弄弅弆弇弈弉弊弋弌弍弎式弐弑弒弓弔引弖弗弘弙弚弛弜弝弞弟 -
    5F20 张弡弢弣弤弥弦弧弨弩弪弫弬弭弮弯弰弱弲弳弴張弶強弸弹强弻弼弽弾弿 -
    5F40 彀彁彂彃彄彅彆彇彈彉彊彋彌彍彎彏彐彑归当彔录彖彗彘彙彚彛彜彝彞彟 -
    5F60 彠彡形彣彤彥彦彧彨彩彪彫彬彭彮彯彰影彲彳彴彵彶彷彸役彺彻彼彽彾彿 -
    5F80 往征徂徃径待徆徇很徉徊律後徍徎徏徐徑徒従徔徕徖得徘徙徚徛徜徝從徟 -
    5FA0 徠御徢徣徤徥徦徧徨復循徫徬徭微徯徰徱徲徳徴徵徶德徸徹徺徻徼徽徾徿 -
    5FC0 忀忁忂心忄必忆忇忈忉忊忋忌忍忎忏忐忑忒忓忔忕忖志忘忙忚忛応忝忞忟 -
    5FE0 忠忡忢忣忤忥忦忧忨忩忪快忬忭忮忯忰忱忲忳忴念忶忷忸忹忺忻忼忽忾忿 -
    6000 怀态怂怃怄怅怆怇怈怉怊怋怌怍怎怏怐怑怒怓怔怕怖怗怘怙怚怛怜思怞怟 -
    6020 怠怡怢怣怤急怦性怨怩怪怫怬怭怮怯怰怱怲怳怴怵怶怷怸怹怺总怼怽怾怿 -
    6040 恀恁恂恃恄恅恆恇恈恉恊恋恌恍恎恏恐恑恒恓恔恕恖恗恘恙恚恛恜恝恞恟 -
    6060 恠恡恢恣恤恥恦恧恨恩恪恫恬恭恮息恰恱恲恳恴恵恶恷恸恹恺恻恼恽恾恿 -
    6080 悀悁悂悃悄悅悆悇悈悉悊悋悌悍悎悏悐悑悒悓悔悕悖悗悘悙悚悛悜悝悞悟 -
    60A0 悠悡悢患悤悥悦悧您悩悪悫悬悭悮悯悰悱悲悳悴悵悶悷悸悹悺悻悼悽悾悿 -
    60C0 惀惁惂惃惄情惆惇惈惉惊惋惌惍惎惏惐惑惒惓惔惕惖惗惘惙惚惛惜惝惞惟 -
    60E0 惠惡惢惣惤惥惦惧惨惩惪惫惬惭惮惯惰惱惲想惴惵惶惷惸惹惺惻惼惽惾惿 -
    6100 愀愁愂愃愄愅愆愇愈愉愊愋愌愍愎意愐愑愒愓愔愕愖愗愘愙愚愛愜愝愞感 -
    6120 愠愡愢愣愤愥愦愧愨愩愪愫愬愭愮愯愰愱愲愳愴愵愶愷愸愹愺愻愼愽愾愿 -
    6140 慀慁慂慃慄慅慆慇慈慉慊態慌慍慎慏慐慑慒慓慔慕慖慗慘慙慚慛慜慝慞慟 -
    6160 慠慡慢慣慤慥慦慧慨慩慪慫慬慭慮慯慰慱慲慳慴慵慶慷慸慹慺慻慼慽慾慿 -
    6180 憀憁憂憃憄憅憆憇憈憉憊憋憌憍憎憏憐憑憒憓憔憕憖憗憘憙憚憛憜憝憞憟 -
    61A0 憠憡憢憣憤憥憦憧憨憩憪憫憬憭憮憯憰憱憲憳憴憵憶憷憸憹憺憻憼憽憾憿 -
    61C0 懀懁懂懃懄懅懆懇懈應懊懋懌懍懎懏懐懑懒懓懔懕懖懗懘懙懚懛懜懝懞懟 -
    61E0 懠懡懢懣懤懥懦懧懨懩懪懫懬懭懮懯懰懱懲懳懴懵懶懷懸懹懺懻懼懽懾懿 -
    6200 戀戁戂戃戄戅戆戇戈戉戊戋戌戍戎戏成我戒戓戔戕或戗战戙戚戛戜戝戞戟 -
    6220 戠戡戢戣戤戥戦戧戨戩截戫戬戭戮戯戰戱戲戳戴戵戶户戸戹戺戻戼戽戾房 -
    6240 所扁扂扃扄扅扆扇扈扉扊手扌才扎扏扐扑扒打扔払扖扗托扙扚扛扜扝扞扟 -
    6260 扠扡扢扣扤扥扦执扨扩扪扫扬扭扮扯扰扱扲扳扴扵扶扷扸批扺扻扼扽找承 -
    6280 技抁抂抃抄抅抆抇抈抉把抋抌抍抎抏抐抑抒抓抔投抖抗折抙抚抛抜抝択抟 -
    62A0 抠抡抢抣护报抦抧抨抩抪披抬抭抮抯抰抱抲抳抴抵抶抷抸抹抺抻押抽抾抿 -
    62C0 拀拁拂拃拄担拆拇拈拉拊拋拌拍拎拏拐拑拒拓拔拕拖拗拘拙拚招拜拝拞拟 -
    62E0 拠拡拢拣拤拥拦拧拨择拪拫括拭拮拯拰拱拲拳拴拵拶拷拸拹拺拻拼拽拾拿 -
    6300 挀持挂挃挄挅挆指挈按挊挋挌挍挎挏挐挑挒挓挔挕挖挗挘挙挚挛挜挝挞挟 -
    6320 挠挡挢挣挤挥挦挧挨挩挪挫挬挭挮振挰挱挲挳挴挵挶挷挸挹挺挻挼挽挾挿 -
    6340 捀捁捂捃捄捅捆捇捈捉捊捋捌捍捎捏捐捑捒捓捔捕捖捗捘捙捚捛捜捝捞损 -
    6360 捠捡换捣捤捥捦捧捨捩捪捫捬捭据捯捰捱捲捳捴捵捶捷捸捹捺捻捼捽捾捿 -
    6380 掀掁掂掃掄掅掆掇授掉掊掋掌掍掎掏掐掑排掓掔掕掖掗掘掙掚掛掜掝掞掟 -
    63A0 掠採探掣掤接掦控推掩措掫掬掭掮掯掰掱掲掳掴掵掶掷掸掹掺掻掼掽掾掿 -
    63C0 揀揁揂揃揄揅揆揇揈揉揊揋揌揍揎描提揑插揓揔揕揖揗揘揙揚換揜揝揞揟 -
    63E0 揠握揢揣揤揥揦揧揨揩揪揫揬揭揮揯揰揱揲揳援揵揶揷揸揹揺揻揼揽揾揿 -
    6400 搀搁搂搃搄搅搆搇搈搉搊搋搌損搎搏搐搑搒搓搔搕搖搗搘搙搚搛搜搝搞搟 -
    6420 搠搡搢搣搤搥搦搧搨搩搪搫搬搭搮搯搰搱搲搳搴搵搶搷搸搹携搻搼搽搾搿 -
    6440 摀摁摂摃摄摅摆摇摈摉摊摋摌摍摎摏摐摑摒摓摔摕摖摗摘摙摚摛摜摝摞摟 -
    6460 摠摡摢摣摤摥摦摧摨摩摪摫摬摭摮摯摰摱摲摳摴摵摶摷摸摹摺摻摼摽摾摿 -
    6480 撀撁撂撃撄撅撆撇撈撉撊撋撌撍撎撏撐撑撒撓撔撕撖撗撘撙撚撛撜撝撞撟 -
    64A0 撠撡撢撣撤撥撦撧撨撩撪撫撬播撮撯撰撱撲撳撴撵撶撷撸撹撺撻撼撽撾撿 -
    64C0 擀擁擂擃擄擅擆擇擈擉擊擋擌操擎擏擐擑擒擓擔擕擖擗擘擙據擛擜擝擞擟 -
    64E0 擠擡擢擣擤擥擦擧擨擩擪擫擬擭擮擯擰擱擲擳擴擵擶擷擸擹擺擻擼擽擾擿 -
    6500 攀攁攂攃攄攅攆攇攈攉攊攋攌攍攎攏攐攑攒攓攔攕攖攗攘攙攚攛攜攝攞攟 -
    6520 攠攡攢攣攤攥攦攧攨攩攪攫攬攭攮支攰攱攲攳攴攵收攷攸改攺攻攼攽放政 -
    6540 敀敁敂敃敄故敆敇效敉敊敋敌敍敎敏敐救敒敓敔敕敖敗敘教敚敛敜敝敞敟 -
    6560 敠敡敢散敤敥敦敧敨敩敪敫敬敭敮敯数敱敲敳整敵敶敷數敹敺敻敼敽敾敿 -
    6580 斀斁斂斃斄斅斆文斈斉斊斋斌斍斎斏斐斑斒斓斔斕斖斗斘料斚斛斜斝斞斟 -
    65A0 斠斡斢斣斤斥斦斧斨斩斪斫斬断斮斯新斱斲斳斴斵斶斷斸方斺斻於施斾斿 -
    65C0 旀旁旂旃旄旅旆旇旈旉旊旋旌旍旎族旐旑旒旓旔旕旖旗旘旙旚旛旜旝旞旟 -
    65E0 无旡既旣旤日旦旧旨早旪旫旬旭旮旯旰旱旲旳旴旵时旷旸旹旺旻旼旽旾旿 -
    6600 昀昁昂昃昄昅昆昇昈昉昊昋昌昍明昏昐昑昒易昔昕昖昗昘昙昚昛昜昝昞星 -
    6620 映昡昢昣昤春昦昧昨昩昪昫昬昭昮是昰昱昲昳昴昵昶昷昸昹昺昻昼昽显昿 -
    6640 晀晁時晃晄晅晆晇晈晉晊晋晌晍晎晏晐晑晒晓晔晕晖晗晘晙晚晛晜晝晞晟 -
    6660 晠晡晢晣晤晥晦晧晨晩晪晫晬晭普景晰晱晲晳晴晵晶晷晸晹智晻晼晽晾晿 -
    6680 暀暁暂暃暄暅暆暇暈暉暊暋暌暍暎暏暐暑暒暓暔暕暖暗暘暙暚暛暜暝暞暟 -
    66A0 暠暡暢暣暤暥暦暧暨暩暪暫暬暭暮暯暰暱暲暳暴暵暶暷暸暹暺暻暼暽暾暿 -
    66C0 曀曁曂曃曄曅曆曇曈曉曊曋曌曍曎曏曐曑曒曓曔曕曖曗曘曙曚曛曜曝曞曟 -
    66E0 曠曡曢曣曤曥曦曧曨曩曪曫曬曭曮曯曰曱曲曳更曵曶曷書曹曺曻曼曽曾替 -
    6700 最朁朂會朄朅朆朇月有朊朋朌服朎朏朐朑朒朓朔朕朖朗朘朙朚望朜朝朞期 -
    6720 朠朡朢朣朤朥朦朧木朩未末本札朮术朰朱朲朳朴朵朶朷朸朹机朻朼朽朾朿 -
    6740 杀杁杂权杄杅杆杇杈杉杊杋杌杍李杏材村杒杓杔杕杖杗杘杙杚杛杜杝杞束 -
    6760 杠条杢杣杤来杦杧杨杩杪杫杬杭杮杯杰東杲杳杴杵杶杷杸杹杺杻杼杽松板 -
    6780 枀极枂枃构枅枆枇枈枉枊枋枌枍枎枏析枑枒枓枔枕枖林枘枙枚枛果枝枞枟 -
    67A0 枠枡枢枣枤枥枦枧枨枩枪枫枬枭枮枯枰枱枲枳枴枵架枷枸枹枺枻枼枽枾枿 -
    67C0 柀柁柂柃柄柅柆柇柈柉柊柋柌柍柎柏某柑柒染柔柕柖柗柘柙柚柛柜柝柞柟 -
    67E0 柠柡柢柣柤查柦柧柨柩柪柫柬柭柮柯柰柱柲柳柴柵柶柷柸柹柺査柼柽柾柿 -
    6800 栀栁栂栃栄栅栆标栈栉栊栋栌栍栎栏栐树栒栓栔栕栖栗栘栙栚栛栜栝栞栟 -
    6820 栠校栢栣栤栥栦栧栨栩株栫栬栭栮栯栰栱栲栳栴栵栶样核根栺栻格栽栾栿 -
    6840 桀桁桂桃桄桅框桇案桉桊桋桌桍桎桏桐桑桒桓桔桕桖桗桘桙桚桛桜桝桞桟 -
    6860 桠桡桢档桤桥桦桧桨桩桪桫桬桭桮桯桰桱桲桳桴桵桶桷桸桹桺桻桼桽桾桿 -
    6880 梀梁梂梃梄梅梆梇梈梉梊梋梌梍梎梏梐梑梒梓梔梕梖梗梘梙梚梛梜條梞梟 -
    68A0 梠梡梢梣梤梥梦梧梨梩梪梫梬梭梮梯械梱梲梳梴梵梶梷梸梹梺梻梼梽梾梿 -
    68C0 检棁棂棃棄棅棆棇棈棉棊棋棌棍棎棏棐棑棒棓棔棕棖棗棘棙棚棛棜棝棞棟 -
    68E0 棠棡棢棣棤棥棦棧棨棩棪棫棬棭森棯棰棱棲棳棴棵棶棷棸棹棺棻棼棽棾棿 -
    6900 椀椁椂椃椄椅椆椇椈椉椊椋椌植椎椏椐椑椒椓椔椕椖椗椘椙椚椛検椝椞椟 -
    6920 椠椡椢椣椤椥椦椧椨椩椪椫椬椭椮椯椰椱椲椳椴椵椶椷椸椹椺椻椼椽椾椿 -
    6940 楀楁楂楃楄楅楆楇楈楉楊楋楌楍楎楏楐楑楒楓楔楕楖楗楘楙楚楛楜楝楞楟 -
    6960 楠楡楢楣楤楥楦楧楨楩楪楫楬業楮楯楰楱楲楳楴極楶楷楸楹楺楻楼楽楾楿 -
    6980 榀榁概榃榄榅榆榇榈榉榊榋榌榍榎榏榐榑榒榓榔榕榖榗榘榙榚榛榜榝榞榟 -
    69A0 榠榡榢榣榤榥榦榧榨榩榪榫榬榭榮榯榰榱榲榳榴榵榶榷榸榹榺榻榼榽榾榿 -
    69C0 槀槁槂槃槄槅槆槇槈槉槊構槌槍槎槏槐槑槒槓槔槕槖槗様槙槚槛槜槝槞槟 -
    69E0 槠槡槢槣槤槥槦槧槨槩槪槫槬槭槮槯槰槱槲槳槴槵槶槷槸槹槺槻槼槽槾槿 -
    6A00 樀樁樂樃樄樅樆樇樈樉樊樋樌樍樎樏樐樑樒樓樔樕樖樗樘標樚樛樜樝樞樟 -
    6A20 樠模樢樣樤樥樦樧樨権横樫樬樭樮樯樰樱樲樳樴樵樶樷樸樹樺樻樼樽樾樿 -
    6A40 橀橁橂橃橄橅橆橇橈橉橊橋橌橍橎橏橐橑橒橓橔橕橖橗橘橙橚橛橜橝橞機 -
    6A60 橠橡橢橣橤橥橦橧橨橩橪橫橬橭橮橯橰橱橲橳橴橵橶橷橸橹橺橻橼橽橾橿 -
    6A80 檀檁檂檃檄檅檆檇檈檉檊檋檌檍檎檏檐檑檒檓檔檕檖檗檘檙檚檛檜檝檞檟 -
    6AA0 檠檡檢檣檤檥檦檧檨檩檪檫檬檭檮檯檰檱檲檳檴檵檶檷檸檹檺檻檼檽檾檿 -
    6AC0 櫀櫁櫂櫃櫄櫅櫆櫇櫈櫉櫊櫋櫌櫍櫎櫏櫐櫑櫒櫓櫔櫕櫖櫗櫘櫙櫚櫛櫜櫝櫞櫟 -
    6AE0 櫠櫡櫢櫣櫤櫥櫦櫧櫨櫩櫪櫫櫬櫭櫮櫯櫰櫱櫲櫳櫴櫵櫶櫷櫸櫹櫺櫻櫼櫽櫾櫿 -
    6B00 欀欁欂欃欄欅欆欇欈欉權欋欌欍欎欏欐欑欒欓欔欕欖欗欘欙欚欛欜欝欞欟 -
    6B20 欠次欢欣欤欥欦欧欨欩欪欫欬欭欮欯欰欱欲欳欴欵欶欷欸欹欺欻欼欽款欿 -
    6B40 歀歁歂歃歄歅歆歇歈歉歊歋歌歍歎歏歐歑歒歓歔歕歖歗歘歙歚歛歜歝歞歟 -
    6B60 歠歡止正此步武歧歨歩歪歫歬歭歮歯歰歱歲歳歴歵歶歷歸歹歺死歼歽歾歿 -
    6B80 殀殁殂殃殄殅殆殇殈殉殊残殌殍殎殏殐殑殒殓殔殕殖殗殘殙殚殛殜殝殞殟 -
    6BA0 殠殡殢殣殤殥殦殧殨殩殪殫殬殭殮殯殰殱殲殳殴段殶殷殸殹殺殻殼殽殾殿 -
    6BC0 毀毁毂毃毄毅毆毇毈毉毊毋毌母毎每毐毑毒毓比毕毖毗毘毙毚毛毜毝毞毟 -
    6BE0 毠毡毢毣毤毥毦毧毨毩毪毫毬毭毮毯毰毱毲毳毴毵毶毷毸毹毺毻毼毽毾毿 -
    6C00 氀氁氂氃氄氅氆氇氈氉氊氋氌氍氎氏氐民氒氓气氕氖気氘氙氚氛氜氝氞氟 -
    6C20 氠氡氢氣氤氥氦氧氨氩氪氫氬氭氮氯氰氱氲氳水氵氶氷永氹氺氻氼氽氾氿 -
    6C40 汀汁求汃汄汅汆汇汈汉汊汋汌汍汎汏汐汑汒汓汔汕汖汗汘汙汚汛汜汝汞江 -
    6C60 池污汢汣汤汥汦汧汨汩汪汫汬汭汮汯汰汱汲汳汴汵汶汷汸汹決汻汼汽汾汿 -
    6C80 沀沁沂沃沄沅沆沇沈沉沊沋沌沍沎沏沐沑沒沓沔沕沖沗沘沙沚沛沜沝沞沟 -
    6CA0 沠没沢沣沤沥沦沧沨沩沪沫沬沭沮沯沰沱沲河沴沵沶沷沸油沺治沼沽沾沿 -
    6CC0 泀況泂泃泄泅泆泇泈泉泊泋泌泍泎泏泐泑泒泓泔法泖泗泘泙泚泛泜泝泞泟 -
    6CE0 泠泡波泣泤泥泦泧注泩泪泫泬泭泮泯泰泱泲泳泴泵泶泷泸泹泺泻泼泽泾泿 -
    6D00 洀洁洂洃洄洅洆洇洈洉洊洋洌洍洎洏洐洑洒洓洔洕洖洗洘洙洚洛洜洝洞洟 -
    6D20 洠洡洢洣洤津洦洧洨洩洪洫洬洭洮洯洰洱洲洳洴洵洶洷洸洹洺活洼洽派洿 -
    6D40 浀流浂浃浄浅浆浇浈浉浊测浌浍济浏浐浑浒浓浔浕浖浗浘浙浚浛浜浝浞浟 -
    6D60 浠浡浢浣浤浥浦浧浨浩浪浫浬浭浮浯浰浱浲浳浴浵浶海浸浹浺浻浼浽浾浿 -
    6D80 涀涁涂涃涄涅涆涇消涉涊涋涌涍涎涏涐涑涒涓涔涕涖涗涘涙涚涛涜涝涞涟 -
    6DA0 涠涡涢涣涤涥润涧涨涩涪涫涬涭涮涯涰涱液涳涴涵涶涷涸涹涺涻涼涽涾涿 -
    6DC0 淀淁淂淃淄淅淆淇淈淉淊淋淌淍淎淏淐淑淒淓淔淕淖淗淘淙淚淛淜淝淞淟 -
    6DE0 淠淡淢淣淤淥淦淧淨淩淪淫淬淭淮淯淰深淲淳淴淵淶混淸淹淺添淼淽淾淿 -
    6E00 渀渁渂渃渄清渆渇済渉渊渋渌渍渎渏渐渑渒渓渔渕渖渗渘渙渚減渜渝渞渟 -
    6E20 渠渡渢渣渤渥渦渧渨温渪渫測渭渮港渰渱渲渳渴渵渶渷游渹渺渻渼渽渾渿 -
    6E40 湀湁湂湃湄湅湆湇湈湉湊湋湌湍湎湏湐湑湒湓湔湕湖湗湘湙湚湛湜湝湞湟 -
    6E60 湠湡湢湣湤湥湦湧湨湩湪湫湬湭湮湯湰湱湲湳湴湵湶湷湸湹湺湻湼湽湾湿 -
    6E80 満溁溂溃溄溅溆溇溈溉溊溋溌溍溎溏源溑溒溓溔溕準溗溘溙溚溛溜溝溞溟 -
    6EA0 溠溡溢溣溤溥溦溧溨溩溪溫溬溭溮溯溰溱溲溳溴溵溶溷溸溹溺溻溼溽溾溿 -
    6EC0 滀滁滂滃滄滅滆滇滈滉滊滋滌滍滎滏滐滑滒滓滔滕滖滗滘滙滚滛滜滝滞滟 -
    6EE0 滠满滢滣滤滥滦滧滨滩滪滫滬滭滮滯滰滱滲滳滴滵滶滷滸滹滺滻滼滽滾滿 -
    6F00 漀漁漂漃漄漅漆漇漈漉漊漋漌漍漎漏漐漑漒漓演漕漖漗漘漙漚漛漜漝漞漟 -
    6F20 漠漡漢漣漤漥漦漧漨漩漪漫漬漭漮漯漰漱漲漳漴漵漶漷漸漹漺漻漼漽漾漿 -
    6F40 潀潁潂潃潄潅潆潇潈潉潊潋潌潍潎潏潐潑潒潓潔潕潖潗潘潙潚潛潜潝潞潟 -
    6F60 潠潡潢潣潤潥潦潧潨潩潪潫潬潭潮潯潰潱潲潳潴潵潶潷潸潹潺潻潼潽潾潿 -
    6F80 澀澁澂澃澄澅澆澇澈澉澊澋澌澍澎澏澐澑澒澓澔澕澖澗澘澙澚澛澜澝澞澟 -
    6FA0 澠澡澢澣澤澥澦澧澨澩澪澫澬澭澮澯澰澱澲澳澴澵澶澷澸澹澺澻澼澽澾澿 -
    6FC0 激濁濂濃濄濅濆濇濈濉濊濋濌濍濎濏濐濑濒濓濔濕濖濗濘濙濚濛濜濝濞濟 -
    6FE0 濠濡濢濣濤濥濦濧濨濩濪濫濬濭濮濯濰濱濲濳濴濵濶濷濸濹濺濻濼濽濾濿 -
    7000 瀀瀁瀂瀃瀄瀅瀆瀇瀈瀉瀊瀋瀌瀍瀎瀏瀐瀑瀒瀓瀔瀕瀖瀗瀘瀙瀚瀛瀜瀝瀞瀟 -
    7020 瀠瀡瀢瀣瀤瀥瀦瀧瀨瀩瀪瀫瀬瀭瀮瀯瀰瀱瀲瀳瀴瀵瀶瀷瀸瀹瀺瀻瀼瀽瀾瀿 -
    7040 灀灁灂灃灄灅灆灇灈灉灊灋灌灍灎灏灐灑灒灓灔灕灖灗灘灙灚灛灜灝灞灟 -
    7060 灠灡灢灣灤灥灦灧灨灩灪火灬灭灮灯灰灱灲灳灴灵灶灷灸灹灺灻灼災灾灿 -
    7080 炀炁炂炃炄炅炆炇炈炉炊炋炌炍炎炏炐炑炒炓炔炕炖炗炘炙炚炛炜炝炞炟 -
    70A0 炠炡炢炣炤炥炦炧炨炩炪炫炬炭炮炯炰炱炲炳炴炵炶炷炸点為炻炼炽炾炿 -
    70C0 烀烁烂烃烄烅烆烇烈烉烊烋烌烍烎烏烐烑烒烓烔烕烖烗烘烙烚烛烜烝烞烟 -
    70E0 烠烡烢烣烤烥烦烧烨烩烪烫烬热烮烯烰烱烲烳烴烵烶烷烸烹烺烻烼烽烾烿 -
    7100 焀焁焂焃焄焅焆焇焈焉焊焋焌焍焎焏焐焑焒焓焔焕焖焗焘焙焚焛焜焝焞焟 -
    7120 焠無焢焣焤焥焦焧焨焩焪焫焬焭焮焯焰焱焲焳焴焵然焷焸焹焺焻焼焽焾焿 -
    7140 煀煁煂煃煄煅煆煇煈煉煊煋煌煍煎煏煐煑煒煓煔煕煖煗煘煙煚煛煜煝煞煟 -
    7160 煠煡煢煣煤煥煦照煨煩煪煫煬煭煮煯煰煱煲煳煴煵煶煷煸煹煺煻煼煽煾煿 -
    7180 熀熁熂熃熄熅熆熇熈熉熊熋熌熍熎熏熐熑熒熓熔熕熖熗熘熙熚熛熜熝熞熟 -
    71A0 熠熡熢熣熤熥熦熧熨熩熪熫熬熭熮熯熰熱熲熳熴熵熶熷熸熹熺熻熼熽熾熿 -
    71C0 燀燁燂燃燄燅燆燇燈燉燊燋燌燍燎燏燐燑燒燓燔燕燖燗燘燙燚燛燜燝燞營 -
    71E0 燠燡燢燣燤燥燦燧燨燩燪燫燬燭燮燯燰燱燲燳燴燵燶燷燸燹燺燻燼燽燾燿 -
    7200 爀爁爂爃爄爅爆爇爈爉爊爋爌爍爎爏爐爑爒爓爔爕爖爗爘爙爚爛爜爝爞爟 -
    7220 爠爡爢爣爤爥爦爧爨爩爪爫爬爭爮爯爰爱爲爳爴爵父爷爸爹爺爻爼爽爾爿 -
    7240 牀牁牂牃牄牅牆片版牉牊牋牌牍牎牏牐牑牒牓牔牕牖牗牘牙牚牛牜牝牞牟 -
    7260 牠牡牢牣牤牥牦牧牨物牪牫牬牭牮牯牰牱牲牳牴牵牶牷牸特牺牻牼牽牾牿 -
    7280 犀犁犂犃犄犅犆犇犈犉犊犋犌犍犎犏犐犑犒犓犔犕犖犗犘犙犚犛犜犝犞犟 -
    72A0 犠犡犢犣犤犥犦犧犨犩犪犫犬犭犮犯犰犱犲犳犴犵状犷犸犹犺犻犼犽犾犿 -
    72C0 狀狁狂狃狄狅狆狇狈狉狊狋狌狍狎狏狐狑狒狓狔狕狖狗狘狙狚狛狜狝狞狟 -
    72E0 狠狡狢狣狤狥狦狧狨狩狪狫独狭狮狯狰狱狲狳狴狵狶狷狸狹狺狻狼狽狾狿 -
    7300 猀猁猂猃猄猅猆猇猈猉猊猋猌猍猎猏猐猑猒猓猔猕猖猗猘猙猚猛猜猝猞猟 -
    7320 猠猡猢猣猤猥猦猧猨猩猪猫猬猭献猯猰猱猲猳猴猵猶猷猸猹猺猻猼猽猾猿 -
    7340 獀獁獂獃獄獅獆獇獈獉獊獋獌獍獎獏獐獑獒獓獔獕獖獗獘獙獚獛獜獝獞獟 -
    7360 獠獡獢獣獤獥獦獧獨獩獪獫獬獭獮獯獰獱獲獳獴獵獶獷獸獹獺獻獼獽獾獿 -
    7380 玀玁玂玃玄玅玆率玈玉玊王玌玍玎玏玐玑玒玓玔玕玖玗玘玙玚玛玜玝玞玟 -
    73A0 玠玡玢玣玤玥玦玧玨玩玪玫玬玭玮环现玱玲玳玴玵玶玷玸玹玺玻玼玽玾玿 -
    73C0 珀珁珂珃珄珅珆珇珈珉珊珋珌珍珎珏珐珑珒珓珔珕珖珗珘珙珚珛珜珝珞珟 -
    73E0 珠珡珢珣珤珥珦珧珨珩珪珫珬班珮珯珰珱珲珳珴珵珶珷珸珹珺珻珼珽現珿 -
    7400 琀琁琂球琄琅理琇琈琉琊琋琌琍琎琏琐琑琒琓琔琕琖琗琘琙琚琛琜琝琞琟 -
    7420 琠琡琢琣琤琥琦琧琨琩琪琫琬琭琮琯琰琱琲琳琴琵琶琷琸琹琺琻琼琽琾琿 -
    7440 瑀瑁瑂瑃瑄瑅瑆瑇瑈瑉瑊瑋瑌瑍瑎瑏瑐瑑瑒瑓瑔瑕瑖瑗瑘瑙瑚瑛瑜瑝瑞瑟 -
    7460 瑠瑡瑢瑣瑤瑥瑦瑧瑨瑩瑪瑫瑬瑭瑮瑯瑰瑱瑲瑳瑴瑵瑶瑷瑸瑹瑺瑻瑼瑽瑾瑿 -
    7480 璀璁璂璃璄璅璆璇璈璉璊璋璌璍璎璏璐璑璒璓璔璕璖璗璘璙璚璛璜璝璞璟 -
    74A0 璠璡璢璣璤璥璦璧璨璩璪璫璬璭璮璯環璱璲璳璴璵璶璷璸璹璺璻璼璽璾璿 -
    74C0 瓀瓁瓂瓃瓄瓅瓆瓇瓈瓉瓊瓋瓌瓍瓎瓏瓐瓑瓒瓓瓔瓕瓖瓗瓘瓙瓚瓛瓜瓝瓞瓟 -
    74E0 瓠瓡瓢瓣瓤瓥瓦瓧瓨瓩瓪瓫瓬瓭瓮瓯瓰瓱瓲瓳瓴瓵瓶瓷瓸瓹瓺瓻瓼瓽瓾瓿 -
    7500 甀甁甂甃甄甅甆甇甈甉甊甋甌甍甎甏甐甑甒甓甔甕甖甗甘甙甚甛甜甝甞生 -
    7520 甠甡產産甤甥甦甧用甩甪甫甬甭甮甯田由甲申甴电甶男甸甹町画甼甽甾甿 -
    7540 畀畁畂畃畄畅畆畇畈畉畊畋界畍畎畏畐畑畒畓畔畕畖畗畘留畚畛畜畝畞畟 -
    7560 畠畡畢畣畤略畦畧畨畩番畫畬畭畮畯異畱畲畳畴畵當畷畸畹畺畻畼畽畾畿 -
    7580 疀疁疂疃疄疅疆疇疈疉疊疋疌疍疎疏疐疑疒疓疔疕疖疗疘疙疚疛疜疝疞疟 -
    75A0 疠疡疢疣疤疥疦疧疨疩疪疫疬疭疮疯疰疱疲疳疴疵疶疷疸疹疺疻疼疽疾疿 -
    75C0 痀痁痂痃痄病痆症痈痉痊痋痌痍痎痏痐痑痒痓痔痕痖痗痘痙痚痛痜痝痞痟 -
    75E0 痠痡痢痣痤痥痦痧痨痩痪痫痬痭痮痯痰痱痲痳痴痵痶痷痸痹痺痻痼痽痾痿 -
    7600 瘀瘁瘂瘃瘄瘅瘆瘇瘈瘉瘊瘋瘌瘍瘎瘏瘐瘑瘒瘓瘔瘕瘖瘗瘘瘙瘚瘛瘜瘝瘞瘟 -
    7620 瘠瘡瘢瘣瘤瘥瘦瘧瘨瘩瘪瘫瘬瘭瘮瘯瘰瘱瘲瘳瘴瘵瘶瘷瘸瘹瘺瘻瘼瘽瘾瘿 -
    7640 癀癁療癃癄癅癆癇癈癉癊癋癌癍癎癏癐癑癒癓癔癕癖癗癘癙癚癛癜癝癞癟 -
    7660 癠癡癢癣癤癥癦癧癨癩癪癫癬癭癮癯癰癱癲癳癴癵癶癷癸癹発登發白百癿 -
    7680 皀皁皂皃的皅皆皇皈皉皊皋皌皍皎皏皐皑皒皓皔皕皖皗皘皙皚皛皜皝皞皟 -
    76A0 皠皡皢皣皤皥皦皧皨皩皪皫皬皭皮皯皰皱皲皳皴皵皶皷皸皹皺皻皼皽皾皿 -
    76C0 盀盁盂盃盄盅盆盇盈盉益盋盌盍盎盏盐监盒盓盔盕盖盗盘盙盚盛盜盝盞盟 -
    76E0 盠盡盢監盤盥盦盧盨盩盪盫盬盭目盯盰盱盲盳直盵盶盷相盹盺盻盼盽盾盿 -
    7700 眀省眂眃眄眅眆眇眈眉眊看県眍眎眏眐眑眒眓眔眕眖眗眘眙眚眛眜眝眞真 -
    7720 眠眡眢眣眤眥眦眧眨眩眪眫眬眭眮眯眰眱眲眳眴眵眶眷眸眹眺眻眼眽眾眿 -
    7740 着睁睂睃睄睅睆睇睈睉睊睋睌睍睎睏睐睑睒睓睔睕睖睗睘睙睚睛睜睝睞睟 -
    7760 睠睡睢督睤睥睦睧睨睩睪睫睬睭睮睯睰睱睲睳睴睵睶睷睸睹睺睻睼睽睾睿 -
    7780 瞀瞁瞂瞃瞄瞅瞆瞇瞈瞉瞊瞋瞌瞍瞎瞏瞐瞑瞒瞓瞔瞕瞖瞗瞘瞙瞚瞛瞜瞝瞞瞟 -
    77A0 瞠瞡瞢瞣瞤瞥瞦瞧瞨瞩瞪瞫瞬瞭瞮瞯瞰瞱瞲瞳瞴瞵瞶瞷瞸瞹瞺瞻瞼瞽瞾瞿 -
    77C0 矀矁矂矃矄矅矆矇矈矉矊矋矌矍矎矏矐矑矒矓矔矕矖矗矘矙矚矛矜矝矞矟 -
    77E0 矠矡矢矣矤知矦矧矨矩矪矫矬短矮矯矰矱矲石矴矵矶矷矸矹矺矻矼矽矾矿 -
    7800 砀码砂砃砄砅砆砇砈砉砊砋砌砍砎砏砐砑砒砓研砕砖砗砘砙砚砛砜砝砞砟 -
    7820 砠砡砢砣砤砥砦砧砨砩砪砫砬砭砮砯砰砱砲砳破砵砶砷砸砹砺砻砼砽砾砿 -
    7840 础硁硂硃硄硅硆硇硈硉硊硋硌硍硎硏硐硑硒硓硔硕硖硗硘硙硚硛硜硝硞硟 -
    7860 硠硡硢硣硤硥硦硧硨硩硪硫硬硭确硯硰硱硲硳硴硵硶硷硸硹硺硻硼硽硾硿 -
    7880 碀碁碂碃碄碅碆碇碈碉碊碋碌碍碎碏碐碑碒碓碔碕碖碗碘碙碚碛碜碝碞碟 -
    78A0 碠碡碢碣碤碥碦碧碨碩碪碫碬碭碮碯碰碱碲碳碴碵碶碷碸碹確碻碼碽碾碿 -
    78C0 磀磁磂磃磄磅磆磇磈磉磊磋磌磍磎磏磐磑磒磓磔磕磖磗磘磙磚磛磜磝磞磟 -
    78E0 磠磡磢磣磤磥磦磧磨磩磪磫磬磭磮磯磰磱磲磳磴磵磶磷磸磹磺磻磼磽磾磿 -
    7900 礀礁礂礃礄礅礆礇礈礉礊礋礌礍礎礏礐礑礒礓礔礕礖礗礘礙礚礛礜礝礞礟 -
    7920 礠礡礢礣礤礥礦礧礨礩礪礫礬礭礮礯礰礱礲礳礴礵礶礷礸礹示礻礼礽社礿 -
    7940 祀祁祂祃祄祅祆祇祈祉祊祋祌祍祎祏祐祑祒祓祔祕祖祗祘祙祚祛祜祝神祟 -
    7960 祠祡祢祣祤祥祦祧票祩祪祫祬祭祮祯祰祱祲祳祴祵祶祷祸祹祺祻祼祽祾祿 -
    7980 禀禁禂禃禄禅禆禇禈禉禊禋禌禍禎福禐禑禒禓禔禕禖禗禘禙禚禛禜禝禞禟 -
    79A0 禠禡禢禣禤禥禦禧禨禩禪禫禬禭禮禯禰禱禲禳禴禵禶禷禸禹禺离禼禽禾禿 -
    79C0 秀私秂秃秄秅秆秇秈秉秊秋秌种秎秏秐科秒秓秔秕秖秗秘秙秚秛秜秝秞租 -
    79E0 秠秡秢秣秤秥秦秧秨秩秪秫秬秭秮积称秱秲秳秴秵秶秷秸秹秺移秼秽秾秿 -
    7A00 稀稁稂稃稄稅稆稇稈稉稊程稌稍税稏稐稑稒稓稔稕稖稗稘稙稚稛稜稝稞稟 -
    7A20 稠稡稢稣稤稥稦稧稨稩稪稫稬稭種稯稰稱稲稳稴稵稶稷稸稹稺稻稼稽稾稿 -
    7A40 穀穁穂穃穄穅穆穇穈穉穊穋穌積穎穏穐穑穒穓穔穕穖穗穘穙穚穛穜穝穞穟 -
    7A60 穠穡穢穣穤穥穦穧穨穩穪穫穬穭穮穯穰穱穲穳穴穵究穷穸穹空穻穼穽穾穿 -
    7A80 窀突窂窃窄窅窆窇窈窉窊窋窌窍窎窏窐窑窒窓窔窕窖窗窘窙窚窛窜窝窞窟 -
    7AA0 窠窡窢窣窤窥窦窧窨窩窪窫窬窭窮窯窰窱窲窳窴窵窶窷窸窹窺窻窼窽窾窿 -
    7AC0 竀竁竂竃竄竅竆竇竈竉竊立竌竍竎竏竐竑竒竓竔竕竖竗竘站竚竛竜竝竞竟 -
    7AE0 章竡竢竣竤童竦竧竨竩竪竫竬竭竮端竰竱竲竳竴竵競竷竸竹竺竻竼竽竾竿 -
    7B00 笀笁笂笃笄笅笆笇笈笉笊笋笌笍笎笏笐笑笒笓笔笕笖笗笘笙笚笛笜笝笞笟 -
    7B20 笠笡笢笣笤笥符笧笨笩笪笫第笭笮笯笰笱笲笳笴笵笶笷笸笹笺笻笼笽笾笿 -
    7B40 筀筁筂筃筄筅筆筇筈等筊筋筌筍筎筏筐筑筒筓答筕策筗筘筙筚筛筜筝筞筟 -
    7B60 筠筡筢筣筤筥筦筧筨筩筪筫筬筭筮筯筰筱筲筳筴筵筶筷筸筹筺筻筼筽签筿 -
    7B80 简箁箂箃箄箅箆箇箈箉箊箋箌箍箎箏箐箑箒箓箔箕箖算箘箙箚箛箜箝箞箟 -
    7BA0 箠管箢箣箤箥箦箧箨箩箪箫箬箭箮箯箰箱箲箳箴箵箶箷箸箹箺箻箼箽箾箿 -
    7BC0 節篁篂篃範篅篆篇篈築篊篋篌篍篎篏篐篑篒篓篔篕篖篗篘篙篚篛篜篝篞篟 -
    7BE0 篠篡篢篣篤篥篦篧篨篩篪篫篬篭篮篯篰篱篲篳篴篵篶篷篸篹篺篻篼篽篾篿 -
    7C00 簀簁簂簃簄簅簆簇簈簉簊簋簌簍簎簏簐簑簒簓簔簕簖簗簘簙簚簛簜簝簞簟 -
    7C20 簠簡簢簣簤簥簦簧簨簩簪簫簬簭簮簯簰簱簲簳簴簵簶簷簸簹簺簻簼簽簾簿 -
    7C40 籀籁籂籃籄籅籆籇籈籉籊籋籌籍籎籏籐籑籒籓籔籕籖籗籘籙籚籛籜籝籞籟 -
    7C60 籠籡籢籣籤籥籦籧籨籩籪籫籬籭籮籯籰籱籲米籴籵籶籷籸籹籺类籼籽籾籿 -
    7C80 粀粁粂粃粄粅粆粇粈粉粊粋粌粍粎粏粐粑粒粓粔粕粖粗粘粙粚粛粜粝粞粟 -
    7CA0 粠粡粢粣粤粥粦粧粨粩粪粫粬粭粮粯粰粱粲粳粴粵粶粷粸粹粺粻粼粽精粿 -
    7CC0 糀糁糂糃糄糅糆糇糈糉糊糋糌糍糎糏糐糑糒糓糔糕糖糗糘糙糚糛糜糝糞糟 -
    7CE0 糠糡糢糣糤糥糦糧糨糩糪糫糬糭糮糯糰糱糲糳糴糵糶糷糸糹糺系糼糽糾糿 -
    7D00 紀紁紂紃約紅紆紇紈紉紊紋紌納紎紏紐紑紒紓純紕紖紗紘紙級紛紜紝紞紟 -
    7D20 素紡索紣紤紥紦紧紨紩紪紫紬紭紮累細紱紲紳紴紵紶紷紸紹紺紻紼紽紾紿 -
    7D40 絀絁終絃組絅絆絇絈絉絊絋経絍絎絏結絑絒絓絔絕絖絗絘絙絚絛絜絝絞絟 -
    7D60 絠絡絢絣絤絥給絧絨絩絪絫絬絭絮絯絰統絲絳絴絵絶絷絸絹絺絻絼絽絾絿 -
    7D80 綀綁綂綃綄綅綆綇綈綉綊綋綌綍綎綏綐綑綒經綔綕綖綗綘継続綛綜綝綞綟 -
    7DA0 綠綡綢綣綤綥綦綧綨綩綪綫綬維綮綯綰綱網綳綴綵綶綷綸綹綺綻綼綽綾綿 -
    7DC0 緀緁緂緃緄緅緆緇緈緉緊緋緌緍緎総緐緑緒緓緔緕緖緗緘緙線緛緜緝緞緟 -
    7DE0 締緡緢緣緤緥緦緧編緩緪緫緬緭緮緯緰緱緲緳練緵緶緷緸緹緺緻緼緽緾緿 -
    7E00 縀縁縂縃縄縅縆縇縈縉縊縋縌縍縎縏縐縑縒縓縔縕縖縗縘縙縚縛縜縝縞縟 -
    7E20 縠縡縢縣縤縥縦縧縨縩縪縫縬縭縮縯縰縱縲縳縴縵縶縷縸縹縺縻縼總績縿 -
    7E40 繀繁繂繃繄繅繆繇繈繉繊繋繌繍繎繏繐繑繒繓織繕繖繗繘繙繚繛繜繝繞繟 -
    7E60 繠繡繢繣繤繥繦繧繨繩繪繫繬繭繮繯繰繱繲繳繴繵繶繷繸繹繺繻繼繽繾繿 -
    7E80 纀纁纂纃纄纅纆纇纈纉纊纋續纍纎纏纐纑纒纓纔纕纖纗纘纙纚纛纜纝纞纟 -
    7EA0 纠纡红纣纤纥约级纨纩纪纫纬纭纮纯纰纱纲纳纴纵纶纷纸纹纺纻纼纽纾线 -
    7EC0 绀绁绂练组绅细织终绉绊绋绌绍绎经绐绑绒结绔绕绖绗绘给绚绛络绝绞统 -
    7EE0 绠绡绢绣绤绥绦继绨绩绪绫绬续绮绯绰绱绲绳维绵绶绷绸绹绺绻综绽绾绿 -
    7F00 缀缁缂缃缄缅缆缇缈缉缊缋缌缍缎缏缐缑缒缓缔缕编缗缘缙缚缛缜缝缞缟 -
    7F20 缠缡缢缣缤缥缦缧缨缩缪缫缬缭缮缯缰缱缲缳缴缵缶缷缸缹缺缻缼缽缾缿 -
    7F40 罀罁罂罃罄罅罆罇罈罉罊罋罌罍罎罏罐网罒罓罔罕罖罗罘罙罚罛罜罝罞罟 -
    7F60 罠罡罢罣罤罥罦罧罨罩罪罫罬罭置罯罰罱署罳罴罵罶罷罸罹罺罻罼罽罾罿 -
    7F80 羀羁羂羃羄羅羆羇羈羉羊羋羌羍美羏羐羑羒羓羔羕羖羗羘羙羚羛羜羝羞羟 -
    7FA0 羠羡羢羣群羥羦羧羨義羪羫羬羭羮羯羰羱羲羳羴羵羶羷羸羹羺羻羼羽羾羿 -
    7FC0 翀翁翂翃翄翅翆翇翈翉翊翋翌翍翎翏翐翑習翓翔翕翖翗翘翙翚翛翜翝翞翟 -
    7FE0 翠翡翢翣翤翥翦翧翨翩翪翫翬翭翮翯翰翱翲翳翴翵翶翷翸翹翺翻翼翽翾翿 -
    8000 耀老耂考耄者耆耇耈耉耊耋而耍耎耏耐耑耒耓耔耕耖耗耘耙耚耛耜耝耞耟 -
    8020 耠耡耢耣耤耥耦耧耨耩耪耫耬耭耮耯耰耱耲耳耴耵耶耷耸耹耺耻耼耽耾耿 -
    8040 聀聁聂聃聄聅聆聇聈聉聊聋职聍聎聏聐聑聒聓联聕聖聗聘聙聚聛聜聝聞聟 -
    8060 聠聡聢聣聤聥聦聧聨聩聪聫聬聭聮聯聰聱聲聳聴聵聶職聸聹聺聻聼聽聾聿 -
    8080 肀肁肂肃肄肅肆肇肈肉肊肋肌肍肎肏肐肑肒肓肔肕肖肗肘肙肚肛肜肝肞肟 -
    80A0 肠股肢肣肤肥肦肧肨肩肪肫肬肭肮肯肰肱育肳肴肵肶肷肸肹肺肻肼肽肾肿 -
    80C0 胀胁胂胃胄胅胆胇胈胉胊胋背胍胎胏胐胑胒胓胔胕胖胗胘胙胚胛胜胝胞胟 -
    80E0 胠胡胢胣胤胥胦胧胨胩胪胫胬胭胮胯胰胱胲胳胴胵胶胷胸胹胺胻胼能胾胿 -
    8100 脀脁脂脃脄脅脆脇脈脉脊脋脌脍脎脏脐脑脒脓脔脕脖脗脘脙脚脛脜脝脞脟 -
    8120 脠脡脢脣脤脥脦脧脨脩脪脫脬脭脮脯脰脱脲脳脴脵脶脷脸脹脺脻脼脽脾脿 -
    8140 腀腁腂腃腄腅腆腇腈腉腊腋腌腍腎腏腐腑腒腓腔腕腖腗腘腙腚腛腜腝腞腟 -
    8160 腠腡腢腣腤腥腦腧腨腩腪腫腬腭腮腯腰腱腲腳腴腵腶腷腸腹腺腻腼腽腾腿 -
    8180 膀膁膂膃膄膅膆膇膈膉膊膋膌膍膎膏膐膑膒膓膔膕膖膗膘膙膚膛膜膝膞膟 -
    81A0 膠膡膢膣膤膥膦膧膨膩膪膫膬膭膮膯膰膱膲膳膴膵膶膷膸膹膺膻膼膽膾膿 -
    81C0 臀臁臂臃臄臅臆臇臈臉臊臋臌臍臎臏臐臑臒臓臔臕臖臗臘臙臚臛臜臝臞臟 -
    81E0 臠臡臢臣臤臥臦臧臨臩自臫臬臭臮臯臰臱臲至致臵臶臷臸臹臺臻臼臽臾臿 -
    8200 舀舁舂舃舄舅舆與興舉舊舋舌舍舎舏舐舑舒舓舔舕舖舗舘舙舚舛舜舝舞舟 -
    8220 舠舡舢舣舤舥舦舧舨舩航舫般舭舮舯舰舱舲舳舴舵舶舷舸船舺舻舼舽舾舿 -
    8240 艀艁艂艃艄艅艆艇艈艉艊艋艌艍艎艏艐艑艒艓艔艕艖艗艘艙艚艛艜艝艞艟 -
    8260 艠艡艢艣艤艥艦艧艨艩艪艫艬艭艮良艰艱色艳艴艵艶艷艸艹艺艻艼艽艾艿 -
    8280 芀芁节芃芄芅芆芇芈芉芊芋芌芍芎芏芐芑芒芓芔芕芖芗芘芙芚芛芜芝芞芟 -
    82A0 芠芡芢芣芤芥芦芧芨芩芪芫芬芭芮芯芰花芲芳芴芵芶芷芸芹芺芻芼芽芾芿 -
    82C0 苀苁苂苃苄苅苆苇苈苉苊苋苌苍苎苏苐苑苒苓苔苕苖苗苘苙苚苛苜苝苞苟 -
    82E0 苠苡苢苣苤若苦苧苨苩苪苫苬苭苮苯苰英苲苳苴苵苶苷苸苹苺苻苼苽苾苿 -
    8300 茀茁茂范茄茅茆茇茈茉茊茋茌茍茎茏茐茑茒茓茔茕茖茗茘茙茚茛茜茝茞茟 -
    8320 茠茡茢茣茤茥茦茧茨茩茪茫茬茭茮茯茰茱茲茳茴茵茶茷茸茹茺茻茼茽茾茿 -
    8340 荀荁荂荃荄荅荆荇荈草荊荋荌荍荎荏荐荑荒荓荔荕荖荗荘荙荚荛荜荝荞荟 -
    8360 荠荡荢荣荤荥荦荧荨荩荪荫荬荭荮药荰荱荲荳荴荵荶荷荸荹荺荻荼荽荾荿 -
    8380 莀莁莂莃莄莅莆莇莈莉莊莋莌莍莎莏莐莑莒莓莔莕莖莗莘莙莚莛莜莝莞莟 -
    83A0 莠莡莢莣莤莥莦莧莨莩莪莫莬莭莮莯莰莱莲莳莴莵莶获莸莹莺莻莼莽莾莿 -
    83C0 菀菁菂菃菄菅菆菇菈菉菊菋菌菍菎菏菐菑菒菓菔菕菖菗菘菙菚菛菜菝菞菟 -
    83E0 菠菡菢菣菤菥菦菧菨菩菪菫菬菭菮華菰菱菲菳菴菵菶菷菸菹菺菻菼菽菾菿 -
    8400 萀萁萂萃萄萅萆萇萈萉萊萋萌萍萎萏萐萑萒萓萔萕萖萗萘萙萚萛萜萝萞萟 -
    8420 萠萡萢萣萤营萦萧萨萩萪萫萬萭萮萯萰萱萲萳萴萵萶萷萸萹萺萻萼落萾萿 -
    8440 葀葁葂葃葄葅葆葇葈葉葊葋葌葍葎葏葐葑葒葓葔葕葖著葘葙葚葛葜葝葞葟 -
    8460 葠葡葢董葤葥葦葧葨葩葪葫葬葭葮葯葰葱葲葳葴葵葶葷葸葹葺葻葼葽葾葿 -
    8480 蒀蒁蒂蒃蒄蒅蒆蒇蒈蒉蒊蒋蒌蒍蒎蒏蒐蒑蒒蒓蒔蒕蒖蒗蒘蒙蒚蒛蒜蒝蒞蒟 -
    84A0 蒠蒡蒢蒣蒤蒥蒦蒧蒨蒩蒪蒫蒬蒭蒮蒯蒰蒱蒲蒳蒴蒵蒶蒷蒸蒹蒺蒻蒼蒽蒾蒿 -
    84C0 蓀蓁蓂蓃蓄蓅蓆蓇蓈蓉蓊蓋蓌蓍蓎蓏蓐蓑蓒蓓蓔蓕蓖蓗蓘蓙蓚蓛蓜蓝蓞蓟 -
    84E0 蓠蓡蓢蓣蓤蓥蓦蓧蓨蓩蓪蓫蓬蓭蓮蓯蓰蓱蓲蓳蓴蓵蓶蓷蓸蓹蓺蓻蓼蓽蓾蓿 -
    8500 蔀蔁蔂蔃蔄蔅蔆蔇蔈蔉蔊蔋蔌蔍蔎蔏蔐蔑蔒蔓蔔蔕蔖蔗蔘蔙蔚蔛蔜蔝蔞蔟 -
    8520 蔠蔡蔢蔣蔤蔥蔦蔧蔨蔩蔪蔫蔬蔭蔮蔯蔰蔱蔲蔳蔴蔵蔶蔷蔸蔹蔺蔻蔼蔽蔾蔿 -
    8540 蕀蕁蕂蕃蕄蕅蕆蕇蕈蕉蕊蕋蕌蕍蕎蕏蕐蕑蕒蕓蕔蕕蕖蕗蕘蕙蕚蕛蕜蕝蕞蕟 -
    8560 蕠蕡蕢蕣蕤蕥蕦蕧蕨蕩蕪蕫蕬蕭蕮蕯蕰蕱蕲蕳蕴蕵蕶蕷蕸蕹蕺蕻蕼蕽蕾蕿 -
    8580 薀薁薂薃薄薅薆薇薈薉薊薋薌薍薎薏薐薑薒薓薔薕薖薗薘薙薚薛薜薝薞薟 -
    85A0 薠薡薢薣薤薥薦薧薨薩薪薫薬薭薮薯薰薱薲薳薴薵薶薷薸薹薺薻薼薽薾薿 -
    85C0 藀藁藂藃藄藅藆藇藈藉藊藋藌藍藎藏藐藑藒藓藔藕藖藗藘藙藚藛藜藝藞藟 -
    85E0 藠藡藢藣藤藥藦藧藨藩藪藫藬藭藮藯藰藱藲藳藴藵藶藷藸藹藺藻藼藽藾藿 -
    8600 蘀蘁蘂蘃蘄蘅蘆蘇蘈蘉蘊蘋蘌蘍蘎蘏蘐蘑蘒蘓蘔蘕蘖蘗蘘蘙蘚蘛蘜蘝蘞蘟 -
    8620 蘠蘡蘢蘣蘤蘥蘦蘧蘨蘩蘪蘫蘬蘭蘮蘯蘰蘱蘲蘳蘴蘵蘶蘷蘸蘹蘺蘻蘼蘽蘾蘿 -
    8640 虀虁虂虃虄虅虆虇虈虉虊虋虌虍虎虏虐虑虒虓虔處虖虗虘虙虚虛虜虝虞號 -
    8660 虠虡虢虣虤虥虦虧虨虩虪虫虬虭虮虯虰虱虲虳虴虵虶虷虸虹虺虻虼虽虾虿 -
    8680 蚀蚁蚂蚃蚄蚅蚆蚇蚈蚉蚊蚋蚌蚍蚎蚏蚐蚑蚒蚓蚔蚕蚖蚗蚘蚙蚚蚛蚜蚝蚞蚟 -
    86A0 蚠蚡蚢蚣蚤蚥蚦蚧蚨蚩蚪蚫蚬蚭蚮蚯蚰蚱蚲蚳蚴蚵蚶蚷蚸蚹蚺蚻蚼蚽蚾蚿 -
    86C0 蛀蛁蛂蛃蛄蛅蛆蛇蛈蛉蛊蛋蛌蛍蛎蛏蛐蛑蛒蛓蛔蛕蛖蛗蛘蛙蛚蛛蛜蛝蛞蛟 -
    86E0 蛠蛡蛢蛣蛤蛥蛦蛧蛨蛩蛪蛫蛬蛭蛮蛯蛰蛱蛲蛳蛴蛵蛶蛷蛸蛹蛺蛻蛼蛽蛾蛿 -
    8700 蜀蜁蜂蜃蜄蜅蜆蜇蜈蜉蜊蜋蜌蜍蜎蜏蜐蜑蜒蜓蜔蜕蜖蜗蜘蜙蜚蜛蜜蜝蜞蜟 -
    8720 蜠蜡蜢蜣蜤蜥蜦蜧蜨蜩蜪蜫蜬蜭蜮蜯蜰蜱蜲蜳蜴蜵蜶蜷蜸蜹蜺蜻蜼蜽蜾蜿 -
    8740 蝀蝁蝂蝃蝄蝅蝆蝇蝈蝉蝊蝋蝌蝍蝎蝏蝐蝑蝒蝓蝔蝕蝖蝗蝘蝙蝚蝛蝜蝝蝞蝟 -
    8760 蝠蝡蝢蝣蝤蝥蝦蝧蝨蝩蝪蝫蝬蝭蝮蝯蝰蝱蝲蝳蝴蝵蝶蝷蝸蝹蝺蝻蝼蝽蝾蝿 -
    8780 螀螁螂螃螄螅螆螇螈螉螊螋螌融螎螏螐螑螒螓螔螕螖螗螘螙螚螛螜螝螞螟 -
    87A0 螠螡螢螣螤螥螦螧螨螩螪螫螬螭螮螯螰螱螲螳螴螵螶螷螸螹螺螻螼螽螾螿 -
    87C0 蟀蟁蟂蟃蟄蟅蟆蟇蟈蟉蟊蟋蟌蟍蟎蟏蟐蟑蟒蟓蟔蟕蟖蟗蟘蟙蟚蟛蟜蟝蟞蟟 -
    87E0 蟠蟡蟢蟣蟤蟥蟦蟧蟨蟩蟪蟫蟬蟭蟮蟯蟰蟱蟲蟳蟴蟵蟶蟷蟸蟹蟺蟻蟼蟽蟾蟿 -
    8800 蠀蠁蠂蠃蠄蠅蠆蠇蠈蠉蠊蠋蠌蠍蠎蠏蠐蠑蠒蠓蠔蠕蠖蠗蠘蠙蠚蠛蠜蠝蠞蠟 -
    8820 蠠蠡蠢蠣蠤蠥蠦蠧蠨蠩蠪蠫蠬蠭蠮蠯蠰蠱蠲蠳蠴蠵蠶蠷蠸蠹蠺蠻蠼蠽蠾蠿 -
    8840 血衁衂衃衄衅衆衇衈衉衊衋行衍衎衏衐衑衒術衔衕衖街衘衙衚衛衜衝衞衟 -
    8860 衠衡衢衣衤补衦衧表衩衪衫衬衭衮衯衰衱衲衳衴衵衶衷衸衹衺衻衼衽衾衿 -
    8880 袀袁袂袃袄袅袆袇袈袉袊袋袌袍袎袏袐袑袒袓袔袕袖袗袘袙袚袛袜袝袞袟 -
    88A0 袠袡袢袣袤袥袦袧袨袩袪被袬袭袮袯袰袱袲袳袴袵袶袷袸袹袺袻袼袽袾袿 -
    88C0 裀裁裂裃裄装裆裇裈裉裊裋裌裍裎裏裐裑裒裓裔裕裖裗裘裙裚裛補裝裞裟 -
    88E0 裠裡裢裣裤裥裦裧裨裩裪裫裬裭裮裯裰裱裲裳裴裵裶裷裸裹裺裻裼製裾裿 -
    8900 褀褁褂褃褄褅褆複褈褉褊褋褌褍褎褏褐褑褒褓褔褕褖褗褘褙褚褛褜褝褞褟 -
    8920 褠褡褢褣褤褥褦褧褨褩褪褫褬褭褮褯褰褱褲褳褴褵褶褷褸褹褺褻褼褽褾褿 -
    8940 襀襁襂襃襄襅襆襇襈襉襊襋襌襍襎襏襐襑襒襓襔襕襖襗襘襙襚襛襜襝襞襟 -
    8960 襠襡襢襣襤襥襦襧襨襩襪襫襬襭襮襯襰襱襲襳襴襵襶襷襸襹襺襻襼襽襾西 -
    8980 覀要覂覃覄覅覆覇覈覉覊見覌覍覎規覐覑覒覓覔覕視覗覘覙覚覛覜覝覞覟 -
    89A0 覠覡覢覣覤覥覦覧覨覩親覫覬覭覮覯覰覱覲観覴覵覶覷覸覹覺覻覼覽覾覿 -
    89C0 觀见观觃规觅视觇览觉觊觋觌觍觎觏觐觑角觓觔觕觖觗觘觙觚觛觜觝觞觟 -
    89E0 觠觡觢解觤觥触觧觨觩觪觫觬觭觮觯觰觱觲觳觴觵觶觷觸觹觺觻觼觽觾觿 -
    8A00 言訁訂訃訄訅訆訇計訉訊訋訌訍討訏訐訑訒訓訔訕訖託記訙訚訛訜訝訞訟 -
    8A20 訠訡訢訣訤訥訦訧訨訩訪訫訬設訮訯訰許訲訳訴訵訶訷訸訹診註証訽訾訿 -
    8A40 詀詁詂詃詄詅詆詇詈詉詊詋詌詍詎詏詐詑詒詓詔評詖詗詘詙詚詛詜詝詞詟 -
    8A60 詠詡詢詣詤詥試詧詨詩詪詫詬詭詮詯詰話該詳詴詵詶詷詸詹詺詻詼詽詾詿 -
    8A80 誀誁誂誃誄誅誆誇誈誉誊誋誌認誎誏誐誑誒誓誔誕誖誗誘誙誚誛誜誝語誟 -
    8AA0 誠誡誢誣誤誥誦誧誨誩說誫説読誮誯誰誱課誳誴誵誶誷誸誹誺誻誼誽誾調 -
    8AC0 諀諁諂諃諄諅諆談諈諉諊請諌諍諎諏諐諑諒諓諔諕論諗諘諙諚諛諜諝諞諟 -
    8AE0 諠諡諢諣諤諥諦諧諨諩諪諫諬諭諮諯諰諱諲諳諴諵諶諷諸諹諺諻諼諽諾諿 -
    8B00 謀謁謂謃謄謅謆謇謈謉謊謋謌謍謎謏謐謑謒謓謔謕謖謗謘謙謚講謜謝謞謟 -
    8B20 謠謡謢謣謤謥謦謧謨謩謪謫謬謭謮謯謰謱謲謳謴謵謶謷謸謹謺謻謼謽謾謿 -
    8B40 譀譁譂譃譄譅譆譇譈證譊譋譌譍譎譏譐譑譒譓譔譕譖譗識譙譚譛譜譝譞譟 -
    8B60 譠譡譢譣譤譥警譧譨譩譪譫譬譭譮譯議譱譲譳譴譵譶護譸譹譺譻譼譽譾譿 -
    8B80 讀讁讂讃讄讅讆讇讈讉變讋讌讍讎讏讐讑讒讓讔讕讖讗讘讙讚讛讜讝讞讟 -
    8BA0 讠计订讣认讥讦讧讨让讪讫讬训议讯记讱讲讳讴讵讶讷许讹论讻讼讽设访 -
    8BC0 诀证诂诃评诅识诇诈诉诊诋诌词诎诏诐译诒诓诔试诖诗诘诙诚诛诜话诞诟 -
    8BE0 诠诡询诣诤该详诧诨诩诪诫诬语诮误诰诱诲诳说诵诶请诸诹诺读诼诽课诿 -
    8C00 谀谁谂调谄谅谆谇谈谉谊谋谌谍谎谏谐谑谒谓谔谕谖谗谘谙谚谛谜谝谞谟 -
    8C20 谠谡谢谣谤谥谦谧谨谩谪谫谬谭谮谯谰谱谲谳谴谵谶谷谸谹谺谻谼谽谾谿 -
    8C40 豀豁豂豃豄豅豆豇豈豉豊豋豌豍豎豏豐豑豒豓豔豕豖豗豘豙豚豛豜豝豞豟 -
    8C60 豠象豢豣豤豥豦豧豨豩豪豫豬豭豮豯豰豱豲豳豴豵豶豷豸豹豺豻豼豽豾豿 -
    8C80 貀貁貂貃貄貅貆貇貈貉貊貋貌貍貎貏貐貑貒貓貔貕貖貗貘貙貚貛貜貝貞貟 -
    8CA0 負財貢貣貤貥貦貧貨販貪貫責貭貮貯貰貱貲貳貴貵貶買貸貹貺費貼貽貾貿 -
    8CC0 賀賁賂賃賄賅賆資賈賉賊賋賌賍賎賏賐賑賒賓賔賕賖賗賘賙賚賛賜賝賞賟 -
    8CE0 賠賡賢賣賤賥賦賧賨賩質賫賬賭賮賯賰賱賲賳賴賵賶賷賸賹賺賻購賽賾賿 -
    8D00 贀贁贂贃贄贅贆贇贈贉贊贋贌贍贎贏贐贑贒贓贔贕贖贗贘贙贚贛贜贝贞负 -
    8D20 贠贡财责贤败账货质贩贪贫贬购贮贯贰贱贲贳贴贵贶贷贸费贺贻贼贽贾贿 -
    8D40 赀赁赂赃资赅赆赇赈赉赊赋赌赍赎赏赐赑赒赓赔赕赖赗赘赙赚赛赜赝赞赟 -
    8D60 赠赡赢赣赤赥赦赧赨赩赪赫赬赭赮赯走赱赲赳赴赵赶起赸赹赺赻赼赽赾赿 -
    8D80 趀趁趂趃趄超趆趇趈趉越趋趌趍趎趏趐趑趒趓趔趕趖趗趘趙趚趛趜趝趞趟 -
    8DA0 趠趡趢趣趤趥趦趧趨趩趪趫趬趭趮趯趰趱趲足趴趵趶趷趸趹趺趻趼趽趾趿 -
    8DC0 跀跁跂跃跄跅跆跇跈跉跊跋跌跍跎跏跐跑跒跓跔跕跖跗跘跙跚跛跜距跞跟 -
    8DE0 跠跡跢跣跤跥跦跧跨跩跪跫跬跭跮路跰跱跲跳跴践跶跷跸跹跺跻跼跽跾跿 -
    8E00 踀踁踂踃踄踅踆踇踈踉踊踋踌踍踎踏踐踑踒踓踔踕踖踗踘踙踚踛踜踝踞踟 -
    8E20 踠踡踢踣踤踥踦踧踨踩踪踫踬踭踮踯踰踱踲踳踴踵踶踷踸踹踺踻踼踽踾踿 -
    8E40 蹀蹁蹂蹃蹄蹅蹆蹇蹈蹉蹊蹋蹌蹍蹎蹏蹐蹑蹒蹓蹔蹕蹖蹗蹘蹙蹚蹛蹜蹝蹞蹟 -
    8E60 蹠蹡蹢蹣蹤蹥蹦蹧蹨蹩蹪蹫蹬蹭蹮蹯蹰蹱蹲蹳蹴蹵蹶蹷蹸蹹蹺蹻蹼蹽蹾蹿 -
    8E80 躀躁躂躃躄躅躆躇躈躉躊躋躌躍躎躏躐躑躒躓躔躕躖躗躘躙躚躛躜躝躞躟 -
    8EA0 躠躡躢躣躤躥躦躧躨躩躪身躬躭躮躯躰躱躲躳躴躵躶躷躸躹躺躻躼躽躾躿 -
    8EC0 軀軁軂軃軄軅軆軇軈軉車軋軌軍軎軏軐軑軒軓軔軕軖軗軘軙軚軛軜軝軞軟 -
    8EE0 軠軡転軣軤軥軦軧軨軩軪軫軬軭軮軯軰軱軲軳軴軵軶軷軸軹軺軻軼軽軾軿 -
    8F00 輀輁輂較輄輅輆輇輈載輊輋輌輍輎輏輐輑輒輓輔輕輖輗輘輙輚輛輜輝輞輟 -
    8F20 輠輡輢輣輤輥輦輧輨輩輪輫輬輭輮輯輰輱輲輳輴輵輶輷輸輹輺輻輼輽輾輿 -
    8F40 轀轁轂轃轄轅轆轇轈轉轊轋轌轍轎轏轐轑轒轓轔轕轖轗轘轙轚轛轜轝轞轟 -
    8F60 轠轡轢轣轤轥车轧轨轩轪轫转轭轮软轰轱轲轳轴轵轶轷轸轹轺轻轼载轾轿 -
    8F80 辀辁辂较辄辅辆辇辈辉辊辋辌辍辎辏辐辑辒输辔辕辖辗辘辙辚辛辜辝辞辟 -
    8FA0 辠辡辢辣辤辥辦辧辨辩辪辫辬辭辮辯辰辱農辳辴辵辶辷辸边辺辻込辽达辿 -
    8FC0 迀迁迂迃迄迅迆过迈迉迊迋迌迍迎迏运近迒迓返迕迖迗还这迚进远违连迟 -
    8FE0 迠迡迢迣迤迥迦迧迨迩迪迫迬迭迮迯述迱迲迳迴迵迶迷迸迹迺迻迼追迾迿 -
    9000 退送适逃逄逅逆逇逈选逊逋逌逍逎透逐逑递逓途逕逖逗逘這通逛逜逝逞速 -
    9020 造逡逢連逤逥逦逧逨逩逪逫逬逭逮逯逰週進逳逴逵逶逷逸逹逺逻逼逽逾逿 -
    9040 遀遁遂遃遄遅遆遇遈遉遊運遌遍過遏遐遑遒道達違遖遗遘遙遚遛遜遝遞遟 -
    9060 遠遡遢遣遤遥遦遧遨適遪遫遬遭遮遯遰遱遲遳遴遵遶遷選遹遺遻遼遽遾避 -
    9080 邀邁邂邃還邅邆邇邈邉邊邋邌邍邎邏邐邑邒邓邔邕邖邗邘邙邚邛邜邝邞邟 -
    90A0 邠邡邢那邤邥邦邧邨邩邪邫邬邭邮邯邰邱邲邳邴邵邶邷邸邹邺邻邼邽邾邿 -
    90C0 郀郁郂郃郄郅郆郇郈郉郊郋郌郍郎郏郐郑郒郓郔郕郖郗郘郙郚郛郜郝郞郟 -
    90E0 郠郡郢郣郤郥郦郧部郩郪郫郬郭郮郯郰郱郲郳郴郵郶郷郸郹郺郻郼都郾郿 -
    9100 鄀鄁鄂鄃鄄鄅鄆鄇鄈鄉鄊鄋鄌鄍鄎鄏鄐鄑鄒鄓鄔鄕鄖鄗鄘鄙鄚鄛鄜鄝鄞鄟 -
    9120 鄠鄡鄢鄣鄤鄥鄦鄧鄨鄩鄪鄫鄬鄭鄮鄯鄰鄱鄲鄳鄴鄵鄶鄷鄸鄹鄺鄻鄼鄽鄾鄿 -
    9140 酀酁酂酃酄酅酆酇酈酉酊酋酌配酎酏酐酑酒酓酔酕酖酗酘酙酚酛酜酝酞酟 -
    9160 酠酡酢酣酤酥酦酧酨酩酪酫酬酭酮酯酰酱酲酳酴酵酶酷酸酹酺酻酼酽酾酿 -
    9180 醀醁醂醃醄醅醆醇醈醉醊醋醌醍醎醏醐醑醒醓醔醕醖醗醘醙醚醛醜醝醞醟 -
    91A0 醠醡醢醣醤醥醦醧醨醩醪醫醬醭醮醯醰醱醲醳醴醵醶醷醸醹醺醻醼醽醾醿 -
    91C0 釀釁釂釃釄釅釆采釈釉释釋里重野量釐金釒釓釔釕釖釗釘釙釚釛釜針釞釟 -
    91E0 釠釡釢釣釤釥釦釧釨釩釪釫釬釭釮釯釰釱釲釳釴釵釶釷釸釹釺釻釼釽釾釿 -
    9200 鈀鈁鈂鈃鈄鈅鈆鈇鈈鈉鈊鈋鈌鈍鈎鈏鈐鈑鈒鈓鈔鈕鈖鈗鈘鈙鈚鈛鈜鈝鈞鈟 -
    9220 鈠鈡鈢鈣鈤鈥鈦鈧鈨鈩鈪鈫鈬鈭鈮鈯鈰鈱鈲鈳鈴鈵鈶鈷鈸鈹鈺鈻鈼鈽鈾鈿 -
    9240 鉀鉁鉂鉃鉄鉅鉆鉇鉈鉉鉊鉋鉌鉍鉎鉏鉐鉑鉒鉓鉔鉕鉖鉗鉘鉙鉚鉛鉜鉝鉞鉟 -
    9260 鉠鉡鉢鉣鉤鉥鉦鉧鉨鉩鉪鉫鉬鉭鉮鉯鉰鉱鉲鉳鉴鉵鉶鉷鉸鉹鉺鉻鉼鉽鉾鉿 -
    9280 銀銁銂銃銄銅銆銇銈銉銊銋銌銍銎銏銐銑銒銓銔銕銖銗銘銙銚銛銜銝銞銟 -
    92A0 銠銡銢銣銤銥銦銧銨銩銪銫銬銭銮銯銰銱銲銳銴銵銶銷銸銹銺銻銼銽銾銿 -
    92C0 鋀鋁鋂鋃鋄鋅鋆鋇鋈鋉鋊鋋鋌鋍鋎鋏鋐鋑鋒鋓鋔鋕鋖鋗鋘鋙鋚鋛鋜鋝鋞鋟 -
    92E0 鋠鋡鋢鋣鋤鋥鋦鋧鋨鋩鋪鋫鋬鋭鋮鋯鋰鋱鋲鋳鋴鋵鋶鋷鋸鋹鋺鋻鋼鋽鋾鋿 -
    9300 錀錁錂錃錄錅錆錇錈錉錊錋錌錍錎錏錐錑錒錓錔錕錖錗錘錙錚錛錜錝錞錟 -
    9320 錠錡錢錣錤錥錦錧錨錩錪錫錬錭錮錯錰錱録錳錴錵錶錷錸錹錺錻錼錽錾錿 -
    9340 鍀鍁鍂鍃鍄鍅鍆鍇鍈鍉鍊鍋鍌鍍鍎鍏鍐鍑鍒鍓鍔鍕鍖鍗鍘鍙鍚鍛鍜鍝鍞鍟 -
    9360 鍠鍡鍢鍣鍤鍥鍦鍧鍨鍩鍪鍫鍬鍭鍮鍯鍰鍱鍲鍳鍴鍵鍶鍷鍸鍹鍺鍻鍼鍽鍾鍿 -
    9380 鎀鎁鎂鎃鎄鎅鎆鎇鎈鎉鎊鎋鎌鎍鎎鎏鎐鎑鎒鎓鎔鎕鎖鎗鎘鎙鎚鎛鎜鎝鎞鎟 -
    93A0 鎠鎡鎢鎣鎤鎥鎦鎧鎨鎩鎪鎫鎬鎭鎮鎯鎰鎱鎲鎳鎴鎵鎶鎷鎸鎹鎺鎻鎼鎽鎾鎿 -
    93C0 鏀鏁鏂鏃鏄鏅鏆鏇鏈鏉鏊鏋鏌鏍鏎鏏鏐鏑鏒鏓鏔鏕鏖鏗鏘鏙鏚鏛鏜鏝鏞鏟 -
    93E0 鏠鏡鏢鏣鏤鏥鏦鏧鏨鏩鏪鏫鏬鏭鏮鏯鏰鏱鏲鏳鏴鏵鏶鏷鏸鏹鏺鏻鏼鏽鏾鏿 -
    9400 鐀鐁鐂鐃鐄鐅鐆鐇鐈鐉鐊鐋鐌鐍鐎鐏鐐鐑鐒鐓鐔鐕鐖鐗鐘鐙鐚鐛鐜鐝鐞鐟 -
    9420 鐠鐡鐢鐣鐤鐥鐦鐧鐨鐩鐪鐫鐬鐭鐮鐯鐰鐱鐲鐳鐴鐵鐶鐷鐸鐹鐺鐻鐼鐽鐾鐿 -
    9440 鑀鑁鑂鑃鑄鑅鑆鑇鑈鑉鑊鑋鑌鑍鑎鑏鑐鑑鑒鑓鑔鑕鑖鑗鑘鑙鑚鑛鑜鑝鑞鑟 -
    9460 鑠鑡鑢鑣鑤鑥鑦鑧鑨鑩鑪鑫鑬鑭鑮鑯鑰鑱鑲鑳鑴鑵鑶鑷鑸鑹鑺鑻鑼鑽鑾鑿 -
    9480 钀钁钂钃钄钅钆钇针钉钊钋钌钍钎钏钐钑钒钓钔钕钖钗钘钙钚钛钜钝钞钟 -
    94A0 钠钡钢钣钤钥钦钧钨钩钪钫钬钭钮钯钰钱钲钳钴钵钶钷钸钹钺钻钼钽钾钿 -
    94C0 铀铁铂铃铄铅铆铇铈铉铊铋铌铍铎铏铐铑铒铓铔铕铖铗铘铙铚铛铜铝铞铟 -
    94E0 铠铡铢铣铤铥铦铧铨铩铪铫铬铭铮铯铰铱铲铳铴铵银铷铸铹铺铻铼铽链铿 -
    9500 销锁锂锃锄锅锆锇锈锉锊锋锌锍锎锏锐锑锒锓锔锕锖锗锘错锚锛锜锝锞锟 -
    9520 锠锡锢锣锤锥锦锧锨锩锪锫锬锭键锯锰锱锲锳锴锵锶锷锸锹锺锻锼锽锾锿 -
    9540 镀镁镂镃镄镅镆镇镈镉镊镋镌镍镎镏镐镑镒镓镔镕镖镗镘镙镚镛镜镝镞镟 -
    9560 镠镡镢镣镤镥镦镧镨镩镪镫镬镭镮镯镰镱镲镳镴镵镶長镸镹镺镻镼镽镾长 -
    9580 門閁閂閃閄閅閆閇閈閉閊開閌閍閎閏閐閑閒間閔閕閖閗閘閙閚閛閜閝閞閟 -
    95A0 閠閡関閣閤閥閦閧閨閩閪閫閬閭閮閯閰閱閲閳閴閵閶閷閸閹閺閻閼閽閾閿 -
    95C0 闀闁闂闃闄闅闆闇闈闉闊闋闌闍闎闏闐闑闒闓闔闕闖闗闘闙闚闛關闝闞闟 -
    95E0 闠闡闢闣闤闥闦闧门闩闪闫闬闭问闯闰闱闲闳间闵闶闷闸闹闺闻闼闽闾闿 -
    9600 阀阁阂阃阄阅阆阇阈阉阊阋阌阍阎阏阐阑阒阓阔阕阖阗阘阙阚阛阜阝阞队 -
    9620 阠阡阢阣阤阥阦阧阨阩阪阫阬阭阮阯阰阱防阳阴阵阶阷阸阹阺阻阼阽阾阿 -
    9640 陀陁陂陃附际陆陇陈陉陊陋陌降陎陏限陑陒陓陔陕陖陗陘陙陚陛陜陝陞陟 -
    9660 陠陡院陣除陥陦陧陨险陪陫陬陭陮陯陰陱陲陳陴陵陶陷陸陹険陻陼陽陾陿 -
    9680 隀隁隂隃隄隅隆隇隈隉隊隋隌隍階随隐隑隒隓隔隕隖隗隘隙隚際障隝隞隟 -
    96A0 隠隡隢隣隤隥隦隧隨隩險隫隬隭隮隯隰隱隲隳隴隵隶隷隸隹隺隻隼隽难隿 -
    96C0 雀雁雂雃雄雅集雇雈雉雊雋雌雍雎雏雐雑雒雓雔雕雖雗雘雙雚雛雜雝雞雟 -
    96E0 雠雡離難雤雥雦雧雨雩雪雫雬雭雮雯雰雱雲雳雴雵零雷雸雹雺電雼雽雾雿 -
    9700 需霁霂霃霄霅霆震霈霉霊霋霌霍霎霏霐霑霒霓霔霕霖霗霘霙霚霛霜霝霞霟 -
    9720 霠霡霢霣霤霥霦霧霨霩霪霫霬霭霮霯霰霱露霳霴霵霶霷霸霹霺霻霼霽霾霿 -
    9740 靀靁靂靃靄靅靆靇靈靉靊靋靌靍靎靏靐靑青靓靔靕靖靗靘静靚靛靜靝非靟 -
    9760 靠靡面靣靤靥靦靧靨革靪靫靬靭靮靯靰靱靲靳靴靵靶靷靸靹靺靻靼靽靾靿 -
    9780 鞀鞁鞂鞃鞄鞅鞆鞇鞈鞉鞊鞋鞌鞍鞎鞏鞐鞑鞒鞓鞔鞕鞖鞗鞘鞙鞚鞛鞜鞝鞞鞟 -
    97A0 鞠鞡鞢鞣鞤鞥鞦鞧鞨鞩鞪鞫鞬鞭鞮鞯鞰鞱鞲鞳鞴鞵鞶鞷鞸鞹鞺鞻鞼鞽鞾鞿 -
    97C0 韀韁韂韃韄韅韆韇韈韉韊韋韌韍韎韏韐韑韒韓韔韕韖韗韘韙韚韛韜韝韞韟 -
    97E0 韠韡韢韣韤韥韦韧韨韩韪韫韬韭韮韯韰韱韲音韴韵韶韷韸韹韺韻韼韽韾響 -
    9800 頀頁頂頃頄項順頇須頉頊頋頌頍頎頏預頑頒頓頔頕頖頗領頙頚頛頜頝頞頟 -
    9820 頠頡頢頣頤頥頦頧頨頩頪頫頬頭頮頯頰頱頲頳頴頵頶頷頸頹頺頻頼頽頾頿 -
    9840 顀顁顂顃顄顅顆顇顈顉顊顋題額顎顏顐顑顒顓顔顕顖顗願顙顚顛顜顝類顟 -
    9860 顠顡顢顣顤顥顦顧顨顩顪顫顬顭顮顯顰顱顲顳顴页顶顷顸项顺须顼顽顾顿 -
    9880 颀颁颂颃预颅领颇颈颉颊颋颌颍颎颏颐频颒颓颔颕颖颗题颙颚颛颜额颞颟 -
    98A0 颠颡颢颣颤颥颦颧風颩颪颫颬颭颮颯颰颱颲颳颴颵颶颷颸颹颺颻颼颽颾颿 -
    98C0 飀飁飂飃飄飅飆飇飈飉飊飋飌飍风飏飐飑飒飓飔飕飖飗飘飙飚飛飜飝飞食 -
    98E0 飠飡飢飣飤飥飦飧飨飩飪飫飬飭飮飯飰飱飲飳飴飵飶飷飸飹飺飻飼飽飾飿 -
    9900 餀餁餂餃餄餅餆餇餈餉養餋餌餍餎餏餐餑餒餓餔餕餖餗餘餙餚餛餜餝餞餟 -
    9920 餠餡餢餣餤餥餦餧館餩餪餫餬餭餮餯餰餱餲餳餴餵餶餷餸餹餺餻餼餽餾餿 -
    9940 饀饁饂饃饄饅饆饇饈饉饊饋饌饍饎饏饐饑饒饓饔饕饖饗饘饙饚饛饜饝饞饟 -
    9960 饠饡饢饣饤饥饦饧饨饩饪饫饬饭饮饯饰饱饲饳饴饵饶饷饸饹饺饻饼饽饾饿 -
    9980 馀馁馂馃馄馅馆馇馈馉馊馋馌馍馎馏馐馑馒馓馔馕首馗馘香馚馛馜馝馞馟 -
    99A0 馠馡馢馣馤馥馦馧馨馩馪馫馬馭馮馯馰馱馲馳馴馵馶馷馸馹馺馻馼馽馾馿 -
    99C0 駀駁駂駃駄駅駆駇駈駉駊駋駌駍駎駏駐駑駒駓駔駕駖駗駘駙駚駛駜駝駞駟 -
    99E0 駠駡駢駣駤駥駦駧駨駩駪駫駬駭駮駯駰駱駲駳駴駵駶駷駸駹駺駻駼駽駾駿 -
    9A00 騀騁騂騃騄騅騆騇騈騉騊騋騌騍騎騏騐騑騒験騔騕騖騗騘騙騚騛騜騝騞騟 -
    9A20 騠騡騢騣騤騥騦騧騨騩騪騫騬騭騮騯騰騱騲騳騴騵騶騷騸騹騺騻騼騽騾騿 -
    9A40 驀驁驂驃驄驅驆驇驈驉驊驋驌驍驎驏驐驑驒驓驔驕驖驗驘驙驚驛驜驝驞驟 -
    9A60 驠驡驢驣驤驥驦驧驨驩驪驫马驭驮驯驰驱驲驳驴驵驶驷驸驹驺驻驼驽驾驿 -
    9A80 骀骁骂骃骄骅骆骇骈骉骊骋验骍骎骏骐骑骒骓骔骕骖骗骘骙骚骛骜骝骞骟 -
    9AA0 骠骡骢骣骤骥骦骧骨骩骪骫骬骭骮骯骰骱骲骳骴骵骶骷骸骹骺骻骼骽骾骿 -
    9AC0 髀髁髂髃髄髅髆髇髈髉髊髋髌髍髎髏髐髑髒髓體髕髖髗高髙髚髛髜髝髞髟 -
    9AE0 髠髡髢髣髤髥髦髧髨髩髪髫髬髭髮髯髰髱髲髳髴髵髶髷髸髹髺髻髼髽髾髿 -
    9B00 鬀鬁鬂鬃鬄鬅鬆鬇鬈鬉鬊鬋鬌鬍鬎鬏鬐鬑鬒鬓鬔鬕鬖鬗鬘鬙鬚鬛鬜鬝鬞鬟 -
    9B20 鬠鬡鬢鬣鬤鬥鬦鬧鬨鬩鬪鬫鬬鬭鬮鬯鬰鬱鬲鬳鬴鬵鬶鬷鬸鬹鬺鬻鬼鬽鬾鬿 -
    9B40 魀魁魂魃魄魅魆魇魈魉魊魋魌魍魎魏魐魑魒魓魔魕魖魗魘魙魚魛魜魝魞魟 -
    9B60 魠魡魢魣魤魥魦魧魨魩魪魫魬魭魮魯魰魱魲魳魴魵魶魷魸魹魺魻魼魽魾魿 -
    9B80 鮀鮁鮂鮃鮄鮅鮆鮇鮈鮉鮊鮋鮌鮍鮎鮏鮐鮑鮒鮓鮔鮕鮖鮗鮘鮙鮚鮛鮜鮝鮞鮟 -
    9BA0 鮠鮡鮢鮣鮤鮥鮦鮧鮨鮩鮪鮫鮬鮭鮮鮯鮰鮱鮲鮳鮴鮵鮶鮷鮸鮹鮺鮻鮼鮽鮾鮿 -
    9BC0 鯀鯁鯂鯃鯄鯅鯆鯇鯈鯉鯊鯋鯌鯍鯎鯏鯐鯑鯒鯓鯔鯕鯖鯗鯘鯙鯚鯛鯜鯝鯞鯟 -
    9BE0 鯠鯡鯢鯣鯤鯥鯦鯧鯨鯩鯪鯫鯬鯭鯮鯯鯰鯱鯲鯳鯴鯵鯶鯷鯸鯹鯺鯻鯼鯽鯾鯿 -
    9C00 鰀鰁鰂鰃鰄鰅鰆鰇鰈鰉鰊鰋鰌鰍鰎鰏鰐鰑鰒鰓鰔鰕鰖鰗鰘鰙鰚鰛鰜鰝鰞鰟 -
    9C20 鰠鰡鰢鰣鰤鰥鰦鰧鰨鰩鰪鰫鰬鰭鰮鰯鰰鰱鰲鰳鰴鰵鰶鰷鰸鰹鰺鰻鰼鰽鰾鰿 -
    9C40 鱀鱁鱂鱃鱄鱅鱆鱇鱈鱉鱊鱋鱌鱍鱎鱏鱐鱑鱒鱓鱔鱕鱖鱗鱘鱙鱚鱛鱜鱝鱞鱟 -
    9C60 鱠鱡鱢鱣鱤鱥鱦鱧鱨鱩鱪鱫鱬鱭鱮鱯鱰鱱鱲鱳鱴鱵鱶鱷鱸鱹鱺鱻鱼鱽鱾鱿 -
    9C80 鲀鲁鲂鲃鲄鲅鲆鲇鲈鲉鲊鲋鲌鲍鲎鲏鲐鲑鲒鲓鲔鲕鲖鲗鲘鲙鲚鲛鲜鲝鲞鲟 -
    9CA0 鲠鲡鲢鲣鲤鲥鲦鲧鲨鲩鲪鲫鲬鲭鲮鲯鲰鲱鲲鲳鲴鲵鲶鲷鲸鲹鲺鲻鲼鲽鲾鲿 -
    9CC0 鳀鳁鳂鳃鳄鳅鳆鳇鳈鳉鳊鳋鳌鳍鳎鳏鳐鳑鳒鳓鳔鳕鳖鳗鳘鳙鳚鳛鳜鳝鳞鳟 -
    9CE0 鳠鳡鳢鳣鳤鳥鳦鳧鳨鳩鳪鳫鳬鳭鳮鳯鳰鳱鳲鳳鳴鳵鳶鳷鳸鳹鳺鳻鳼鳽鳾鳿 -
    9D00 鴀鴁鴂鴃鴄鴅鴆鴇鴈鴉鴊鴋鴌鴍鴎鴏鴐鴑鴒鴓鴔鴕鴖鴗鴘鴙鴚鴛鴜鴝鴞鴟 -
    9D20 鴠鴡鴢鴣鴤鴥鴦鴧鴨鴩鴪鴫鴬鴭鴮鴯鴰鴱鴲鴳鴴鴵鴶鴷鴸鴹鴺鴻鴼鴽鴾鴿 -
    9D40 鵀鵁鵂鵃鵄鵅鵆鵇鵈鵉鵊鵋鵌鵍鵎鵏鵐鵑鵒鵓鵔鵕鵖鵗鵘鵙鵚鵛鵜鵝鵞鵟 -
    9D60 鵠鵡鵢鵣鵤鵥鵦鵧鵨鵩鵪鵫鵬鵭鵮鵯鵰鵱鵲鵳鵴鵵鵶鵷鵸鵹鵺鵻鵼鵽鵾鵿 -
    9D80 鶀鶁鶂鶃鶄鶅鶆鶇鶈鶉鶊鶋鶌鶍鶎鶏鶐鶑鶒鶓鶔鶕鶖鶗鶘鶙鶚鶛鶜鶝鶞鶟 -
    9DA0 鶠鶡鶢鶣鶤鶥鶦鶧鶨鶩鶪鶫鶬鶭鶮鶯鶰鶱鶲鶳鶴鶵鶶鶷鶸鶹鶺鶻鶼鶽鶾鶿 -
    9DC0 鷀鷁鷂鷃鷄鷅鷆鷇鷈鷉鷊鷋鷌鷍鷎鷏鷐鷑鷒鷓鷔鷕鷖鷗鷘鷙鷚鷛鷜鷝鷞鷟 -
    9DE0 鷠鷡鷢鷣鷤鷥鷦鷧鷨鷩鷪鷫鷬鷭鷮鷯鷰鷱鷲鷳鷴鷵鷶鷷鷸鷹鷺鷻鷼鷽鷾鷿 -
    9E00 鸀鸁鸂鸃鸄鸅鸆鸇鸈鸉鸊鸋鸌鸍鸎鸏鸐鸑鸒鸓鸔鸕鸖鸗鸘鸙鸚鸛鸜鸝鸞鸟 -
    9E20 鸠鸡鸢鸣鸤鸥鸦鸧鸨鸩鸪鸫鸬鸭鸮鸯鸰鸱鸲鸳鸴鸵鸶鸷鸸鸹鸺鸻鸼鸽鸾鸿 -
    9E40 鹀鹁鹂鹃鹄鹅鹆鹇鹈鹉鹊鹋鹌鹍鹎鹏鹐鹑鹒鹓鹔鹕鹖鹗鹘鹙鹚鹛鹜鹝鹞鹟 -
    9E60 鹠鹡鹢鹣鹤鹥鹦鹧鹨鹩鹪鹫鹬鹭鹮鹯鹰鹱鹲鹳鹴鹵鹶鹷鹸鹹鹺鹻鹼鹽鹾鹿 -
    9E80 麀麁麂麃麄麅麆麇麈麉麊麋麌麍麎麏麐麑麒麓麔麕麖麗麘麙麚麛麜麝麞麟 -
    9EA0 麠麡麢麣麤麥麦麧麨麩麪麫麬麭麮麯麰麱麲麳麴麵麶麷麸麹麺麻麼麽麾麿 -
    9EC0 黀黁黂黃黄黅黆黇黈黉黊黋黌黍黎黏黐黑黒黓黔黕黖黗默黙黚黛黜黝點黟 -
    9EE0 黠黡黢黣黤黥黦黧黨黩黪黫黬黭黮黯黰黱黲黳黴黵黶黷黸黹黺黻黼黽黾黿 -
    9F00 鼀鼁鼂鼃鼄鼅鼆鼇鼈鼉鼊鼋鼌鼍鼎鼏鼐鼑鼒鼓鼔鼕鼖鼗鼘鼙鼚鼛鼜鼝鼞鼟 -
    9F20 鼠鼡鼢鼣鼤鼥鼦鼧鼨鼩鼪鼫鼬鼭鼮鼯鼰鼱鼲鼳鼴鼵鼶鼷鼸鼹鼺鼻鼼鼽鼾鼿 -
    9F40 齀齁齂齃齄齅齆齇齈齉齊齋齌齍齎齏齐齑齒齓齔齕齖齗齘齙齚齛齜齝齞齟 -
    9F60 齠齡齢齣齤齥齦齧齨齩齪齫齬齭齮齯齰齱齲齳齴齵齶齷齸齹齺齻齼齽齾齿 -
    9F80 龀龁龂龃龄龅龆龇龈龉龊龋龌龍龎龏龐龑龒龓龔龕龖龗龘龙龚龛龜龝龞龟 -
    9FA0 龠龡龢龣龤龥龦龧龨龩龪龫龬龭龮龯龰龱龲龳龴龵龶龷龸龹龺龻龼龽龾龿 -
    9FC0 鿀鿁鿂鿃鿄鿅鿆鿇鿈鿉鿊鿋鿌鿍鿎鿏鿐鿑鿒鿓鿔鿕鿖鿗鿘鿙鿚鿛鿜鿝鿞鿟 -
    9FE0 鿠鿡鿢鿣鿤鿥鿦鿧鿨鿩鿪鿫鿬鿭鿮鿯鿰鿱鿲鿳鿴鿵鿶鿷鿸鿹鿺鿻鿼鿽鿾鿿 -
    A000 ꀀꀁꀂꀃꀄꀅꀆꀇꀈꀉꀊꀋꀌꀍꀎꀏꀐꀑꀒꀓꀔꀕꀖꀗꀘꀙꀚꀛꀜꀝꀞꀟ -
    A020 ꀠꀡꀢꀣꀤꀥꀦꀧꀨꀩꀪꀫꀬꀭꀮꀯꀰꀱꀲꀳꀴꀵꀶꀷꀸꀹꀺꀻꀼꀽꀾꀿ -
    A040 ꁀꁁꁂꁃꁄꁅꁆꁇꁈꁉꁊꁋꁌꁍꁎꁏꁐꁑꁒꁓꁔꁕꁖꁗꁘꁙꁚꁛꁜꁝꁞꁟ -
    A060 ꁠꁡꁢꁣꁤꁥꁦꁧꁨꁩꁪꁫꁬꁭꁮꁯꁰꁱꁲꁳꁴꁵꁶꁷꁸꁹꁺꁻꁼꁽꁾꁿ -
    A080 ꂀꂁꂂꂃꂄꂅꂆꂇꂈꂉꂊꂋꂌꂍꂎꂏꂐꂑꂒꂓꂔꂕꂖꂗꂘꂙꂚꂛꂜꂝꂞꂟ -
    A0A0 ꂠꂡꂢꂣꂤꂥꂦꂧꂨꂩꂪꂫꂬꂭꂮꂯꂰꂱꂲꂳꂴꂵꂶꂷꂸꂹꂺꂻꂼꂽꂾꂿ -
    A0C0 ꃀꃁꃂꃃꃄꃅꃆꃇꃈꃉꃊꃋꃌꃍꃎꃏꃐꃑꃒꃓꃔꃕꃖꃗꃘꃙꃚꃛꃜꃝꃞꃟ -
    A0E0 ꃠꃡꃢꃣꃤꃥꃦꃧꃨꃩꃪꃫꃬꃭꃮꃯꃰꃱꃲꃳꃴꃵꃶꃷꃸꃹꃺꃻꃼꃽꃾꃿ -
    A100 ꄀꄁꄂꄃꄄꄅꄆꄇꄈꄉꄊꄋꄌꄍꄎꄏꄐꄑꄒꄓꄔꄕꄖꄗꄘꄙꄚꄛꄜꄝꄞꄟ -
    A120 ꄠꄡꄢꄣꄤꄥꄦꄧꄨꄩꄪꄫꄬꄭꄮꄯꄰꄱꄲꄳꄴꄵꄶꄷꄸꄹꄺꄻꄼꄽꄾꄿ -
    A140 ꅀꅁꅂꅃꅄꅅꅆꅇꅈꅉꅊꅋꅌꅍꅎꅏꅐꅑꅒꅓꅔꅕꅖꅗꅘꅙꅚꅛꅜꅝꅞꅟ -
    A160 ꅠꅡꅢꅣꅤꅥꅦꅧꅨꅩꅪꅫꅬꅭꅮꅯꅰꅱꅲꅳꅴꅵꅶꅷꅸꅹꅺꅻꅼꅽꅾꅿ -
    A180 ꆀꆁꆂꆃꆄꆅꆆꆇꆈꆉꆊꆋꆌꆍꆎꆏꆐꆑꆒꆓꆔꆕꆖꆗꆘꆙꆚꆛꆜꆝꆞꆟ -
    A1A0 ꆠꆡꆢꆣꆤꆥꆦꆧꆨꆩꆪꆫꆬꆭꆮꆯꆰꆱꆲꆳꆴꆵꆶꆷꆸꆹꆺꆻꆼꆽꆾꆿ -
    A1C0 ꇀꇁꇂꇃꇄꇅꇆꇇꇈꇉꇊꇋꇌꇍꇎꇏꇐꇑꇒꇓꇔꇕꇖꇗꇘꇙꇚꇛꇜꇝꇞꇟ -
    A1E0 ꇠꇡꇢꇣꇤꇥꇦꇧꇨꇩꇪꇫꇬꇭꇮꇯꇰꇱꇲꇳꇴꇵꇶꇷꇸꇹꇺꇻꇼꇽꇾꇿ -
    A200 ꈀꈁꈂꈃꈄꈅꈆꈇꈈꈉꈊꈋꈌꈍꈎꈏꈐꈑꈒꈓꈔꈕꈖꈗꈘꈙꈚꈛꈜꈝꈞꈟ -
    A220 ꈠꈡꈢꈣꈤꈥꈦꈧꈨꈩꈪꈫꈬꈭꈮꈯꈰꈱꈲꈳꈴꈵꈶꈷꈸꈹꈺꈻꈼꈽꈾꈿ -
    A240 ꉀꉁꉂꉃꉄꉅꉆꉇꉈꉉꉊꉋꉌꉍꉎꉏꉐꉑꉒꉓꉔꉕꉖꉗꉘꉙꉚꉛꉜꉝꉞꉟ -
    A260 ꉠꉡꉢꉣꉤꉥꉦꉧꉨꉩꉪꉫꉬꉭꉮꉯꉰꉱꉲꉳꉴꉵꉶꉷꉸꉹꉺꉻꉼꉽꉾꉿ -
    A280 ꊀꊁꊂꊃꊄꊅꊆꊇꊈꊉꊊꊋꊌꊍꊎꊏꊐꊑꊒꊓꊔꊕꊖꊗꊘꊙꊚꊛꊜꊝꊞꊟ -
    A2A0 ꊠꊡꊢꊣꊤꊥꊦꊧꊨꊩꊪꊫꊬꊭꊮꊯꊰꊱꊲꊳꊴꊵꊶꊷꊸꊹꊺꊻꊼꊽꊾꊿ -
    A2C0 ꋀꋁꋂꋃꋄꋅꋆꋇꋈꋉꋊꋋꋌꋍꋎꋏꋐꋑꋒꋓꋔꋕꋖꋗꋘꋙꋚꋛꋜꋝꋞꋟ -
    A2E0 ꋠꋡꋢꋣꋤꋥꋦꋧꋨꋩꋪꋫꋬꋭꋮꋯꋰꋱꋲꋳꋴꋵꋶꋷꋸꋹꋺꋻꋼꋽꋾꋿ -
    A300 ꌀꌁꌂꌃꌄꌅꌆꌇꌈꌉꌊꌋꌌꌍꌎꌏꌐꌑꌒꌓꌔꌕꌖꌗꌘꌙꌚꌛꌜꌝꌞꌟ -
    A320 ꌠꌡꌢꌣꌤꌥꌦꌧꌨꌩꌪꌫꌬꌭꌮꌯꌰꌱꌲꌳꌴꌵꌶꌷꌸꌹꌺꌻꌼꌽꌾꌿ -
    A340 ꍀꍁꍂꍃꍄꍅꍆꍇꍈꍉꍊꍋꍌꍍꍎꍏꍐꍑꍒꍓꍔꍕꍖꍗꍘꍙꍚꍛꍜꍝꍞꍟ -
    A360 ꍠꍡꍢꍣꍤꍥꍦꍧꍨꍩꍪꍫꍬꍭꍮꍯꍰꍱꍲꍳꍴꍵꍶꍷꍸꍹꍺꍻꍼꍽꍾꍿ -
    A380 ꎀꎁꎂꎃꎄꎅꎆꎇꎈꎉꎊꎋꎌꎍꎎꎏꎐꎑꎒꎓꎔꎕꎖꎗꎘꎙꎚꎛꎜꎝꎞꎟ -
    A3A0 ꎠꎡꎢꎣꎤꎥꎦꎧꎨꎩꎪꎫꎬꎭꎮꎯꎰꎱꎲꎳꎴꎵꎶꎷꎸꎹꎺꎻꎼꎽꎾꎿ -
    A3C0 ꏀꏁꏂꏃꏄꏅꏆꏇꏈꏉꏊꏋꏌꏍꏎꏏꏐꏑꏒꏓꏔꏕꏖꏗꏘꏙꏚꏛꏜꏝꏞꏟ -
    A3E0 ꏠꏡꏢꏣꏤꏥꏦꏧꏨꏩꏪꏫꏬꏭꏮꏯꏰꏱꏲꏳꏴꏵꏶꏷꏸꏹꏺꏻꏼꏽꏾꏿ -
    A400 ꐀꐁꐂꐃꐄꐅꐆꐇꐈꐉꐊꐋꐌꐍꐎꐏꐐꐑꐒꐓꐔꐕꐖꐗꐘꐙꐚꐛꐜꐝꐞꐟ -
    A420 ꐠꐡꐢꐣꐤꐥꐦꐧꐨꐩꐪꐫꐬꐭꐮꐯꐰꐱꐲꐳꐴꐵꐶꐷꐸꐹꐺꐻꐼꐽꐾꐿ -
    A440 ꑀꑁꑂꑃꑄꑅꑆꑇꑈꑉꑊꑋꑌꑍꑎꑏꑐꑑꑒꑓꑔꑕꑖꑗꑘꑙꑚꑛꑜꑝꑞꑟ -
    A460 ꑠꑡꑢꑣꑤꑥꑦꑧꑨꑩꑪꑫꑬꑭꑮꑯꑰꑱꑲꑳꑴꑵꑶꑷꑸꑹꑺꑻꑼꑽꑾꑿ -
    A480 ꒀꒁꒂꒃꒄꒅꒆꒇꒈꒉꒊꒋꒌ꒍꒎꒏꒐꒑꒒꒓꒔꒕꒖꒗꒘꒙꒚꒛꒜꒝꒞꒟ -
    A4A0 ꒠꒡꒢꒣꒤꒥꒦꒧꒨꒩꒪꒫꒬꒭꒮꒯꒰꒱꒲꒳꒴꒵꒶꒷꒸꒹꒺꒻꒼꒽꒾꒿ -
    A4C0 ꓀꓁꓂꓃꓄꓅꓆꓇꓈꓉꓊꓋꓌꓍꓎꓏ꓐꓑꓒꓓꓔꓕꓖꓗꓘꓙꓚꓛꓜꓝꓞꓟ -
    A4E0 ꓠꓡꓢꓣꓤꓥꓦꓧꓨꓩꓪꓫꓬꓭꓮꓯꓰꓱꓲꓳꓴꓵꓶꓷꓸꓹꓺꓻꓼꓽ꓾꓿ -
    A500 ꔀꔁꔂꔃꔄꔅꔆꔇꔈꔉꔊꔋꔌꔍꔎꔏꔐꔑꔒꔓꔔꔕꔖꔗꔘꔙꔚꔛꔜꔝꔞꔟ -
    A520 ꔠꔡꔢꔣꔤꔥꔦꔧꔨꔩꔪꔫꔬꔭꔮꔯꔰꔱꔲꔳꔴꔵꔶꔷꔸꔹꔺꔻꔼꔽꔾꔿ -
    A540 ꕀꕁꕂꕃꕄꕅꕆꕇꕈꕉꕊꕋꕌꕍꕎꕏꕐꕑꕒꕓꕔꕕꕖꕗꕘꕙꕚꕛꕜꕝꕞꕟ -
    A560 ꕠꕡꕢꕣꕤꕥꕦꕧꕨꕩꕪꕫꕬꕭꕮꕯꕰꕱꕲꕳꕴꕵꕶꕷꕸꕹꕺꕻꕼꕽꕾꕿ -
    A580 ꖀꖁꖂꖃꖄꖅꖆꖇꖈꖉꖊꖋꖌꖍꖎꖏꖐꖑꖒꖓꖔꖕꖖꖗꖘꖙꖚꖛꖜꖝꖞꖟ -
    A5A0 ꖠꖡꖢꖣꖤꖥꖦꖧꖨꖩꖪꖫꖬꖭꖮꖯꖰꖱꖲꖳꖴꖵꖶꖷꖸꖹꖺꖻꖼꖽꖾꖿ -
    A5C0 ꗀꗁꗂꗃꗄꗅꗆꗇꗈꗉꗊꗋꗌꗍꗎꗏꗐꗑꗒꗓꗔꗕꗖꗗꗘꗙꗚꗛꗜꗝꗞꗟ -
    A5E0 ꗠꗡꗢꗣꗤꗥꗦꗧꗨꗩꗪꗫꗬꗭꗮꗯꗰꗱꗲꗳꗴꗵꗶꗷꗸꗹꗺꗻꗼꗽꗾꗿ -
    A600 ꘀꘁꘂꘃꘄꘅꘆꘇꘈꘉꘊꘋꘌ꘍꘎꘏ꘐꘑꘒꘓꘔꘕꘖꘗꘘꘙꘚꘛꘜꘝꘞꘟ -
    A620 ꘠꘡꘢꘣꘤꘥꘦꘧꘨꘩ꘪꘫ꘬꘭꘮꘯꘰꘱꘲꘳꘴꘵꘶꘷꘸꘹꘺꘻꘼꘽꘾꘿ -
    A640 ꙀꙁꙂꙃꙄꙅꙆꙇꙈꙉꙊꙋꙌꙍꙎꙏꙐꙑꙒꙓꙔꙕꙖꙗꙘꙙꙚꙛꙜꙝꙞꙟ -
    A660 ꙠꙡꙢꙣꙤꙥꙦꙧꙨꙩꙪꙫꙬꙭꙮ꙯꙰꙱꙲꙳ꙴꙵꙶꙷꙸꙹꙺꙻ꙼꙽꙾ꙿ -
    A680 ꚀꚁꚂꚃꚄꚅꚆꚇꚈꚉꚊꚋꚌꚍꚎꚏꚐꚑꚒꚓꚔꚕꚖꚗꚘꚙꚚꚛꚜꚝꚞꚟ -
    A6A0 ꚠꚡꚢꚣꚤꚥꚦꚧꚨꚩꚪꚫꚬꚭꚮꚯꚰꚱꚲꚳꚴꚵꚶꚷꚸꚹꚺꚻꚼꚽꚾꚿ -
    A6C0 ꛀꛁꛂꛃꛄꛅꛆꛇꛈꛉꛊꛋꛌꛍꛎꛏꛐꛑꛒꛓꛔꛕꛖꛗꛘꛙꛚꛛꛜꛝꛞꛟ -
    A6E0 ꛠꛡꛢꛣꛤꛥꛦꛧꛨꛩꛪꛫꛬꛭꛮꛯ꛰꛱꛲꛳꛴꛵꛶꛷꛸꛹꛺꛻꛼꛽꛾꛿ -
    A700 ꜀꜁꜂꜃꜄꜅꜆꜇꜈꜉꜊꜋꜌꜍꜎꜏꜐꜑꜒꜓꜔꜕꜖ꜗꜘꜙꜚꜛꜜꜝꜞꜟ -
    A720 ꜠꜡ꜢꜣꜤꜥꜦꜧꜨꜩꜪꜫꜬꜭꜮꜯꜰꜱꜲꜳꜴꜵꜶꜷꜸꜹꜺꜻꜼꜽꜾꜿ -
    A740 ꝀꝁꝂꝃꝄꝅꝆꝇꝈꝉꝊꝋꝌꝍꝎꝏꝐꝑꝒꝓꝔꝕꝖꝗꝘꝙꝚꝛꝜꝝꝞꝟ -
    A760 ꝠꝡꝢꝣꝤꝥꝦꝧꝨꝩꝪꝫꝬꝭꝮꝯꝰꝱꝲꝳꝴꝵꝶꝷꝸꝹꝺꝻꝼꝽꝾꝿ -
    A780 ꞀꞁꞂꞃꞄꞅꞆꞇꞈ꞉꞊ꞋꞌꞍꞎꞏꞐꞑꞒꞓꞔꞕꞖꞗꞘꞙꞚꞛꞜꞝꞞꞟ -
    A7A0 ꞠꞡꞢꞣꞤꞥꞦꞧꞨꞩꞪꞫꞬꞭꞮꞯꞰꞱꞲꞳꞴꞵꞶꞷꞸꞹꞺꞻꞼꞽꞾꞿ -
    A7C0 ꟀꟁꟂꟃꟄꟅꟆꟇꟈꟉꟊꟋꟌꟍ꟎꟏Ꟑꟑ꟒ꟓ꟔ꟕꟖꟗꟘꟙꟚꟛꟜ꟝꟞꟟ -
    A7E0 ꟠꟡꟢꟣꟤꟥꟦꟧꟨꟩꟪꟫꟬꟭꟮꟯꟰꟱ꟲꟳꟴꟵꟶꟷꟸꟹꟺꟻꟼꟽꟾꟿ -
    A800 ꠀꠁꠂꠃꠄꠅ꠆ꠇꠈꠉꠊꠋꠌꠍꠎꠏꠐꠑꠒꠓꠔꠕꠖꠗꠘꠙꠚꠛꠜꠝꠞꠟ -
    A820 ꠠꠡꠢꠣꠤꠥꠦꠧ꠨꠩꠪꠫꠬꠭꠮꠯꠰꠱꠲꠳꠴꠵꠶꠷꠸꠹꠺꠻꠼꠽꠾꠿ -
    A840 ꡀꡁꡂꡃꡄꡅꡆꡇꡈꡉꡊꡋꡌꡍꡎꡏꡐꡑꡒꡓꡔꡕꡖꡗꡘꡙꡚꡛꡜꡝꡞꡟ -
    A860 ꡠꡡꡢꡣꡤꡥꡦꡧꡨꡩꡪꡫꡬꡭꡮꡯꡰꡱꡲꡳ꡴꡵꡶꡷꡸꡹꡺꡻꡼꡽꡾꡿ -
    A880 ꢀꢁꢂꢃꢄꢅꢆꢇꢈꢉꢊꢋꢌꢍꢎꢏꢐꢑꢒꢓꢔꢕꢖꢗꢘꢙꢚꢛꢜꢝꢞꢟ -
    A8A0 ꢠꢡꢢꢣꢤꢥꢦꢧꢨꢩꢪꢫꢬꢭꢮꢯꢰꢱꢲꢳꢴꢵꢶꢷꢸꢹꢺꢻꢼꢽꢾꢿ -
    A8C0 ꣀꣁꣂꣃ꣄ꣅ꣆꣇꣈꣉꣊꣋꣌꣍꣎꣏꣐꣑꣒꣓꣔꣕꣖꣗꣘꣙꣚꣛꣜꣝꣞꣟ -
    A8E0 ꣠꣡꣢꣣꣤꣥꣦꣧꣨꣩꣪꣫꣬꣭꣮꣯꣰꣱ꣲꣳꣴꣵꣶꣷ꣸꣹꣺ꣻ꣼ꣽꣾꣿ -
    A900 ꤀꤁꤂꤃꤄꤅꤆꤇꤈꤉ꤊꤋꤌꤍꤎꤏꤐꤑꤒꤓꤔꤕꤖꤗꤘꤙꤚꤛꤜꤝꤞꤟ -
    A920 ꤠꤡꤢꤣꤤꤥꤦꤧꤨꤩꤪ꤫꤬꤭꤮꤯ꤰꤱꤲꤳꤴꤵꤶꤷꤸꤹꤺꤻꤼꤽꤾꤿ -
    A940 ꥀꥁꥂꥃꥄꥅꥆꥇꥈꥉꥊꥋꥌꥍꥎꥏꥐꥑꥒ꥓꥔꥕꥖꥗꥘꥙꥚꥛꥜꥝꥞꥟ -
    A960 ꥠꥡꥢꥣꥤꥥꥦꥧꥨꥩꥪꥫꥬꥭꥮꥯꥰꥱꥲꥳꥴꥵꥶꥷꥸꥹꥺꥻꥼ꥽꥾꥿ -
    A980 ꦀꦁꦂꦃꦄꦅꦆꦇꦈꦉꦊꦋꦌꦍꦎꦏꦐꦑꦒꦓꦔꦕꦖꦗꦘꦙꦚꦛꦜꦝꦞꦟ -
    A9A0 ꦠꦡꦢꦣꦤꦥꦦꦧꦨꦩꦪꦫꦬꦭꦮꦯꦰꦱꦲ꦳ꦴꦵꦶꦷꦸꦹꦺꦻꦼꦽꦾꦿ -
    A9C0 ꧀꧁꧂꧃꧄꧅꧆꧇꧈꧉꧊꧋꧌꧍꧎ꧏ꧐꧑꧒꧓꧔꧕꧖꧗꧘꧙꧚꧛꧜꧝꧞꧟ -
    A9E0 ꧠꧡꧢꧣꧤꧥꧦꧧꧨꧩꧪꧫꧬꧭꧮꧯ꧰꧱꧲꧳꧴꧵꧶꧷꧸꧹ꧺꧻꧼꧽꧾ꧿ -
    AA00 ꨀꨁꨂꨃꨄꨅꨆꨇꨈꨉꨊꨋꨌꨍꨎꨏꨐꨑꨒꨓꨔꨕꨖꨗꨘꨙꨚꨛꨜꨝꨞꨟ -
    AA20 ꨠꨡꨢꨣꨤꨥꨦꨧꨨꨩꨪꨫꨬꨭꨮꨯꨰꨱꨲꨳꨴꨵꨶ꨷꨸꨹꨺꨻꨼꨽꨾꨿ -
    AA40 ꩀꩁꩂꩃꩄꩅꩆꩇꩈꩉꩊꩋꩌꩍ꩎꩏꩐꩑꩒꩓꩔꩕꩖꩗꩘꩙꩚꩛꩜꩝꩞꩟ -
    AA60 ꩠꩡꩢꩣꩤꩥꩦꩧꩨꩩꩪꩫꩬꩭꩮꩯꩰꩱꩲꩳꩴꩵꩶ꩷꩸꩹ꩺꩻꩼꩽꩾꩿ -
    AA80 ꪀꪁꪂꪃꪄꪅꪆꪇꪈꪉꪊꪋꪌꪍꪎꪏꪐꪑꪒꪓꪔꪕꪖꪗꪘꪙꪚꪛꪜꪝꪞꪟ -
    AAA0 ꪠꪡꪢꪣꪤꪥꪦꪧꪨꪩꪪꪫꪬꪭꪮꪯꪰꪱꪴꪲꪳꪵꪶꪷꪸꪹꪺꪻꪼꪽꪾ꪿ -
    AAC0 ꫀ꫁ꫂ꫃꫄꫅꫆꫇꫈꫉꫊꫋꫌꫍꫎꫏꫐꫑꫒꫓꫔꫕꫖꫗꫘꫙꫚ꫛꫜꫝ꫞꫟ -
    AAE0 ꫠꫡꫢꫣꫤꫥꫦꫧꫨꫩꫪꫫꫬꫭꫮꫯ꫰꫱ꫲꫳꫴꫵ꫶꫷꫸꫹꫺꫻꫼꫽꫾꫿ -
    AB00 ꬀ꬁꬂꬃꬄꬅꬆ꬇꬈ꬉꬊꬋꬌꬍꬎ꬏꬐ꬑꬒꬓꬔꬕꬖ꬗꬘꬙꬚꬛꬜꬝꬞꬟ -
    AB20 ꬠꬡꬢꬣꬤꬥꬦ꬧ꬨꬩꬪꬫꬬꬭꬮ꬯ꬰꬱꬲꬳꬴꬵꬶꬷꬸꬹꬺꬻꬼꬽꬾꬿ -
    AB40 ꭀꭁꭂꭃꭄꭅꭆꭇꭈꭉꭊꭋꭌꭍꭎꭏꭐꭑꭒꭓꭔꭕꭖꭗꭘꭙꭚ꭛ꭜꭝꭞꭟ -
    AB60 ꭠꭡꭢꭣꭤꭥꭦꭧꭨꭩ꭪꭫꭬꭭꭮꭯ꭰꭱꭲꭳꭴꭵꭶꭷꭸꭹꭺꭻꭼꭽꭾꭿ -
    AB80 ꮀꮁꮂꮃꮄꮅꮆꮇꮈꮉꮊꮋꮌꮍꮎꮏꮐꮑꮒꮓꮔꮕꮖꮗꮘꮙꮚꮛꮜꮝꮞꮟ -
    ABA0 ꮠꮡꮢꮣꮤꮥꮦꮧꮨꮩꮪꮫꮬꮭꮮꮯꮰꮱꮲꮳꮴꮵꮶꮷꮸꮹꮺꮻꮼꮽꮾꮿ -
    ABC0 ꯀꯁꯂꯃꯄꯅꯆꯇꯈꯉꯊꯋꯌꯍꯎꯏꯐꯑꯒꯓꯔꯕꯖꯗꯘꯙꯚꯛꯜꯝꯞꯟ -
    ABE0 ꯠꯡꯢꯣꯤꯥꯦꯧꯨꯩꯪ꯫꯬꯭꯮꯯꯰꯱꯲꯳꯴꯵꯶꯷꯸꯹꯺꯻꯼꯽꯾꯿ -
    AC00 가각갂갃간갅갆갇갈갉갊갋갌갍갎갏감갑값갓갔강갖갗갘같갚갛개객갞갟 -
    AC20 갠갡갢갣갤갥갦갧갨갩갪갫갬갭갮갯갰갱갲갳갴갵갶갷갸갹갺갻갼갽갾갿 -
    AC40 걀걁걂걃걄걅걆걇걈걉걊걋걌걍걎걏걐걑걒걓걔걕걖걗걘걙걚걛걜걝걞걟 -
    AC60 걠걡걢걣걤걥걦걧걨걩걪걫걬걭걮걯거걱걲걳건걵걶걷걸걹걺걻걼걽걾걿 -
    AC80 검겁겂것겄겅겆겇겈겉겊겋게겍겎겏겐겑겒겓겔겕겖겗겘겙겚겛겜겝겞겟 -
    ACA0 겠겡겢겣겤겥겦겧겨격겪겫견겭겮겯결겱겲겳겴겵겶겷겸겹겺겻겼경겾겿 -
    ACC0 곀곁곂곃계곅곆곇곈곉곊곋곌곍곎곏곐곑곒곓곔곕곖곗곘곙곚곛곜곝곞곟 -
    ACE0 고곡곢곣곤곥곦곧골곩곪곫곬곭곮곯곰곱곲곳곴공곶곷곸곹곺곻과곽곾곿 -
    AD00 관괁괂괃괄괅괆괇괈괉괊괋괌괍괎괏괐광괒괓괔괕괖괗괘괙괚괛괜괝괞괟 -
    AD20 괠괡괢괣괤괥괦괧괨괩괪괫괬괭괮괯괰괱괲괳괴괵괶괷괸괹괺괻괼괽괾괿 -
    AD40 굀굁굂굃굄굅굆굇굈굉굊굋굌굍굎굏교굑굒굓굔굕굖굗굘굙굚굛굜굝굞굟 -
    AD60 굠굡굢굣굤굥굦굧굨굩굪굫구국굮굯군굱굲굳굴굵굶굷굸굹굺굻굼굽굾굿 -
    AD80 궀궁궂궃궄궅궆궇궈궉궊궋권궍궎궏궐궑궒궓궔궕궖궗궘궙궚궛궜궝궞궟 -
    ADA0 궠궡궢궣궤궥궦궧궨궩궪궫궬궭궮궯궰궱궲궳궴궵궶궷궸궹궺궻궼궽궾궿 -
    ADC0 귀귁귂귃귄귅귆귇귈귉귊귋귌귍귎귏귐귑귒귓귔귕귖귗귘귙귚귛규귝귞귟 -
    ADE0 균귡귢귣귤귥귦귧귨귩귪귫귬귭귮귯귰귱귲귳귴귵귶귷그극귺귻근귽귾귿 -
    AE00 글긁긂긃긄긅긆긇금급긊긋긌긍긎긏긐긑긒긓긔긕긖긗긘긙긚긛긜긝긞긟 -
    AE20 긠긡긢긣긤긥긦긧긨긩긪긫긬긭긮긯기긱긲긳긴긵긶긷길긹긺긻긼긽긾긿 -
    AE40 김깁깂깃깄깅깆깇깈깉깊깋까깍깎깏깐깑깒깓깔깕깖깗깘깙깚깛깜깝깞깟 -
    AE60 깠깡깢깣깤깥깦깧깨깩깪깫깬깭깮깯깰깱깲깳깴깵깶깷깸깹깺깻깼깽깾깿 -
    AE80 꺀꺁꺂꺃꺄꺅꺆꺇꺈꺉꺊꺋꺌꺍꺎꺏꺐꺑꺒꺓꺔꺕꺖꺗꺘꺙꺚꺛꺜꺝꺞꺟 -
    AEA0 꺠꺡꺢꺣꺤꺥꺦꺧꺨꺩꺪꺫꺬꺭꺮꺯꺰꺱꺲꺳꺴꺵꺶꺷꺸꺹꺺꺻꺼꺽꺾꺿 -
    AEC0 껀껁껂껃껄껅껆껇껈껉껊껋껌껍껎껏껐껑껒껓껔껕껖껗께껙껚껛껜껝껞껟 -
    AEE0 껠껡껢껣껤껥껦껧껨껩껪껫껬껭껮껯껰껱껲껳껴껵껶껷껸껹껺껻껼껽껾껿 -
    AF00 꼀꼁꼂꼃꼄꼅꼆꼇꼈꼉꼊꼋꼌꼍꼎꼏꼐꼑꼒꼓꼔꼕꼖꼗꼘꼙꼚꼛꼜꼝꼞꼟 -
    AF20 꼠꼡꼢꼣꼤꼥꼦꼧꼨꼩꼪꼫꼬꼭꼮꼯꼰꼱꼲꼳꼴꼵꼶꼷꼸꼹꼺꼻꼼꼽꼾꼿 -
    AF40 꽀꽁꽂꽃꽄꽅꽆꽇꽈꽉꽊꽋꽌꽍꽎꽏꽐꽑꽒꽓꽔꽕꽖꽗꽘꽙꽚꽛꽜꽝꽞꽟 -
    AF60 꽠꽡꽢꽣꽤꽥꽦꽧꽨꽩꽪꽫꽬꽭꽮꽯꽰꽱꽲꽳꽴꽵꽶꽷꽸꽹꽺꽻꽼꽽꽾꽿 -
    AF80 꾀꾁꾂꾃꾄꾅꾆꾇꾈꾉꾊꾋꾌꾍꾎꾏꾐꾑꾒꾓꾔꾕꾖꾗꾘꾙꾚꾛꾜꾝꾞꾟 -
    AFA0 꾠꾡꾢꾣꾤꾥꾦꾧꾨꾩꾪꾫꾬꾭꾮꾯꾰꾱꾲꾳꾴꾵꾶꾷꾸꾹꾺꾻꾼꾽꾾꾿 -
    AFC0 꿀꿁꿂꿃꿄꿅꿆꿇꿈꿉꿊꿋꿌꿍꿎꿏꿐꿑꿒꿓꿔꿕꿖꿗꿘꿙꿚꿛꿜꿝꿞꿟 -
    AFE0 꿠꿡꿢꿣꿤꿥꿦꿧꿨꿩꿪꿫꿬꿭꿮꿯꿰꿱꿲꿳꿴꿵꿶꿷꿸꿹꿺꿻꿼꿽꿾꿿 -
    B000 뀀뀁뀂뀃뀄뀅뀆뀇뀈뀉뀊뀋뀌뀍뀎뀏뀐뀑뀒뀓뀔뀕뀖뀗뀘뀙뀚뀛뀜뀝뀞뀟 -
    B020 뀠뀡뀢뀣뀤뀥뀦뀧뀨뀩뀪뀫뀬뀭뀮뀯뀰뀱뀲뀳뀴뀵뀶뀷뀸뀹뀺뀻뀼뀽뀾뀿 -
    B040 끀끁끂끃끄끅끆끇끈끉끊끋끌끍끎끏끐끑끒끓끔끕끖끗끘끙끚끛끜끝끞끟 -
    B060 끠끡끢끣끤끥끦끧끨끩끪끫끬끭끮끯끰끱끲끳끴끵끶끷끸끹끺끻끼끽끾끿 -
    B080 낀낁낂낃낄낅낆낇낈낉낊낋낌낍낎낏낐낑낒낓낔낕낖낗나낙낚낛난낝낞낟 -
    B0A0 날낡낢낣낤낥낦낧남납낪낫났낭낮낯낰낱낲낳내낵낶낷낸낹낺낻낼낽낾낿 -
    B0C0 냀냁냂냃냄냅냆냇냈냉냊냋냌냍냎냏냐냑냒냓냔냕냖냗냘냙냚냛냜냝냞냟 -
    B0E0 냠냡냢냣냤냥냦냧냨냩냪냫냬냭냮냯냰냱냲냳냴냵냶냷냸냹냺냻냼냽냾냿 -
    B100 넀넁넂넃넄넅넆넇너넉넊넋넌넍넎넏널넑넒넓넔넕넖넗넘넙넚넛넜넝넞넟 -
    B120 넠넡넢넣네넥넦넧넨넩넪넫넬넭넮넯넰넱넲넳넴넵넶넷넸넹넺넻넼넽넾넿 -
    B140 녀녁녂녃년녅녆녇녈녉녊녋녌녍녎녏념녑녒녓녔녕녖녗녘녙녚녛녜녝녞녟 -
    B160 녠녡녢녣녤녥녦녧녨녩녪녫녬녭녮녯녰녱녲녳녴녵녶녷노녹녺녻논녽녾녿 -
    B180 놀놁놂놃놄놅놆놇놈놉놊놋놌농놎놏놐놑높놓놔놕놖놗놘놙놚놛놜놝놞놟 -
    B1A0 놠놡놢놣놤놥놦놧놨놩놪놫놬놭놮놯놰놱놲놳놴놵놶놷놸놹놺놻놼놽놾놿 -
    B1C0 뇀뇁뇂뇃뇄뇅뇆뇇뇈뇉뇊뇋뇌뇍뇎뇏뇐뇑뇒뇓뇔뇕뇖뇗뇘뇙뇚뇛뇜뇝뇞뇟 -
    B1E0 뇠뇡뇢뇣뇤뇥뇦뇧뇨뇩뇪뇫뇬뇭뇮뇯뇰뇱뇲뇳뇴뇵뇶뇷뇸뇹뇺뇻뇼뇽뇾뇿 -
    B200 눀눁눂눃누눅눆눇눈눉눊눋눌눍눎눏눐눑눒눓눔눕눖눗눘눙눚눛눜눝눞눟 -
    B220 눠눡눢눣눤눥눦눧눨눩눪눫눬눭눮눯눰눱눲눳눴눵눶눷눸눹눺눻눼눽눾눿 -
    B240 뉀뉁뉂뉃뉄뉅뉆뉇뉈뉉뉊뉋뉌뉍뉎뉏뉐뉑뉒뉓뉔뉕뉖뉗뉘뉙뉚뉛뉜뉝뉞뉟 -
    B260 뉠뉡뉢뉣뉤뉥뉦뉧뉨뉩뉪뉫뉬뉭뉮뉯뉰뉱뉲뉳뉴뉵뉶뉷뉸뉹뉺뉻뉼뉽뉾뉿 -
    B280 늀늁늂늃늄늅늆늇늈늉늊늋늌늍늎늏느늑늒늓는늕늖늗늘늙늚늛늜늝늞늟 -
    B2A0 늠늡늢늣늤능늦늧늨늩늪늫늬늭늮늯늰늱늲늳늴늵늶늷늸늹늺늻늼늽늾늿 -
    B2C0 닀닁닂닃닄닅닆닇니닉닊닋닌닍닎닏닐닑닒닓닔닕닖닗님닙닚닛닜닝닞닟 -
    B2E0 닠닡닢닣다닥닦닧단닩닪닫달닭닮닯닰닱닲닳담답닶닷닸당닺닻닼닽닾닿 -
    B300 대댁댂댃댄댅댆댇댈댉댊댋댌댍댎댏댐댑댒댓댔댕댖댗댘댙댚댛댜댝댞댟 -
    B320 댠댡댢댣댤댥댦댧댨댩댪댫댬댭댮댯댰댱댲댳댴댵댶댷댸댹댺댻댼댽댾댿 -
    B340 덀덁덂덃덄덅덆덇덈덉덊덋덌덍덎덏덐덑덒덓더덕덖덗던덙덚덛덜덝덞덟 -
    B360 덠덡덢덣덤덥덦덧덨덩덪덫덬덭덮덯데덱덲덳덴덵덶덷델덹덺덻덼덽덾덿 -
    B380 뎀뎁뎂뎃뎄뎅뎆뎇뎈뎉뎊뎋뎌뎍뎎뎏뎐뎑뎒뎓뎔뎕뎖뎗뎘뎙뎚뎛뎜뎝뎞뎟 -
    B3A0 뎠뎡뎢뎣뎤뎥뎦뎧뎨뎩뎪뎫뎬뎭뎮뎯뎰뎱뎲뎳뎴뎵뎶뎷뎸뎹뎺뎻뎼뎽뎾뎿 -
    B3C0 돀돁돂돃도독돆돇돈돉돊돋돌돍돎돏돐돑돒돓돔돕돖돗돘동돚돛돜돝돞돟 -
    B3E0 돠돡돢돣돤돥돦돧돨돩돪돫돬돭돮돯돰돱돲돳돴돵돶돷돸돹돺돻돼돽돾돿 -
    B400 됀됁됂됃됄됅됆됇됈됉됊됋됌됍됎됏됐됑됒됓됔됕됖됗되됙됚됛된됝됞됟 -
    B420 될됡됢됣됤됥됦됧됨됩됪됫됬됭됮됯됰됱됲됳됴됵됶됷됸됹됺됻됼됽됾됿 -
    B440 둀둁둂둃둄둅둆둇둈둉둊둋둌둍둎둏두둑둒둓둔둕둖둗둘둙둚둛둜둝둞둟 -
    B460 둠둡둢둣둤둥둦둧둨둩둪둫둬둭둮둯둰둱둲둳둴둵둶둷둸둹둺둻둼둽둾둿 -
    B480 뒀뒁뒂뒃뒄뒅뒆뒇뒈뒉뒊뒋뒌뒍뒎뒏뒐뒑뒒뒓뒔뒕뒖뒗뒘뒙뒚뒛뒜뒝뒞뒟 -
    B4A0 뒠뒡뒢뒣뒤뒥뒦뒧뒨뒩뒪뒫뒬뒭뒮뒯뒰뒱뒲뒳뒴뒵뒶뒷뒸뒹뒺뒻뒼뒽뒾뒿 -
    B4C0 듀듁듂듃듄듅듆듇듈듉듊듋듌듍듎듏듐듑듒듓듔듕듖듗듘듙듚듛드득듞듟 -
    B4E0 든듡듢듣들듥듦듧듨듩듪듫듬듭듮듯듰등듲듳듴듵듶듷듸듹듺듻듼듽듾듿 -
    B500 딀딁딂딃딄딅딆딇딈딉딊딋딌딍딎딏딐딑딒딓디딕딖딗딘딙딚딛딜딝딞딟 -
    B520 딠딡딢딣딤딥딦딧딨딩딪딫딬딭딮딯따딱딲딳딴딵딶딷딸딹딺딻딼딽딾딿 -
    B540 땀땁땂땃땄땅땆땇땈땉땊땋때땍땎땏땐땑땒땓땔땕땖땗땘땙땚땛땜땝땞땟 -
    B560 땠땡땢땣땤땥땦땧땨땩땪땫땬땭땮땯땰땱땲땳땴땵땶땷땸땹땺땻땼땽땾땿 -
    B580 떀떁떂떃떄떅떆떇떈떉떊떋떌떍떎떏떐떑떒떓떔떕떖떗떘떙떚떛떜떝떞떟 -
    B5A0 떠떡떢떣떤떥떦떧떨떩떪떫떬떭떮떯떰떱떲떳떴떵떶떷떸떹떺떻떼떽떾떿 -
    B5C0 뗀뗁뗂뗃뗄뗅뗆뗇뗈뗉뗊뗋뗌뗍뗎뗏뗐뗑뗒뗓뗔뗕뗖뗗뗘뗙뗚뗛뗜뗝뗞뗟 -
    B5E0 뗠뗡뗢뗣뗤뗥뗦뗧뗨뗩뗪뗫뗬뗭뗮뗯뗰뗱뗲뗳뗴뗵뗶뗷뗸뗹뗺뗻뗼뗽뗾뗿 -
    B600 똀똁똂똃똄똅똆똇똈똉똊똋똌똍똎똏또똑똒똓똔똕똖똗똘똙똚똛똜똝똞똟 -
    B620 똠똡똢똣똤똥똦똧똨똩똪똫똬똭똮똯똰똱똲똳똴똵똶똷똸똹똺똻똼똽똾똿 -
    B640 뙀뙁뙂뙃뙄뙅뙆뙇뙈뙉뙊뙋뙌뙍뙎뙏뙐뙑뙒뙓뙔뙕뙖뙗뙘뙙뙚뙛뙜뙝뙞뙟 -
    B660 뙠뙡뙢뙣뙤뙥뙦뙧뙨뙩뙪뙫뙬뙭뙮뙯뙰뙱뙲뙳뙴뙵뙶뙷뙸뙹뙺뙻뙼뙽뙾뙿 -
    B680 뚀뚁뚂뚃뚄뚅뚆뚇뚈뚉뚊뚋뚌뚍뚎뚏뚐뚑뚒뚓뚔뚕뚖뚗뚘뚙뚚뚛뚜뚝뚞뚟 -
    B6A0 뚠뚡뚢뚣뚤뚥뚦뚧뚨뚩뚪뚫뚬뚭뚮뚯뚰뚱뚲뚳뚴뚵뚶뚷뚸뚹뚺뚻뚼뚽뚾뚿 -
    B6C0 뛀뛁뛂뛃뛄뛅뛆뛇뛈뛉뛊뛋뛌뛍뛎뛏뛐뛑뛒뛓뛔뛕뛖뛗뛘뛙뛚뛛뛜뛝뛞뛟 -
    B6E0 뛠뛡뛢뛣뛤뛥뛦뛧뛨뛩뛪뛫뛬뛭뛮뛯뛰뛱뛲뛳뛴뛵뛶뛷뛸뛹뛺뛻뛼뛽뛾뛿 -
    B700 뜀뜁뜂뜃뜄뜅뜆뜇뜈뜉뜊뜋뜌뜍뜎뜏뜐뜑뜒뜓뜔뜕뜖뜗뜘뜙뜚뜛뜜뜝뜞뜟 -
    B720 뜠뜡뜢뜣뜤뜥뜦뜧뜨뜩뜪뜫뜬뜭뜮뜯뜰뜱뜲뜳뜴뜵뜶뜷뜸뜹뜺뜻뜼뜽뜾뜿 -
    B740 띀띁띂띃띄띅띆띇띈띉띊띋띌띍띎띏띐띑띒띓띔띕띖띗띘띙띚띛띜띝띞띟 -
    B760 띠띡띢띣띤띥띦띧띨띩띪띫띬띭띮띯띰띱띲띳띴띵띶띷띸띹띺띻라락띾띿 -
    B780 란랁랂랃랄랅랆랇랈랉랊랋람랍랎랏랐랑랒랓랔랕랖랗래랙랚랛랜랝랞랟 -
    B7A0 랠랡랢랣랤랥랦랧램랩랪랫랬랭랮랯랰랱랲랳랴략랶랷랸랹랺랻랼랽랾랿 -
    B7C0 럀럁럂럃럄럅럆럇럈량럊럋럌럍럎럏럐럑럒럓럔럕럖럗럘럙럚럛럜럝럞럟 -
    B7E0 럠럡럢럣럤럥럦럧럨럩럪럫러럭럮럯런럱럲럳럴럵럶럷럸럹럺럻럼럽럾럿 -
    B800 렀렁렂렃렄렅렆렇레렉렊렋렌렍렎렏렐렑렒렓렔렕렖렗렘렙렚렛렜렝렞렟 -
    B820 렠렡렢렣려력렦렧련렩렪렫렬렭렮렯렰렱렲렳렴렵렶렷렸령렺렻렼렽렾렿 -
    B840 례롁롂롃롄롅롆롇롈롉롊롋롌롍롎롏롐롑롒롓롔롕롖롗롘롙롚롛로록롞롟 -
    B860 론롡롢롣롤롥롦롧롨롩롪롫롬롭롮롯롰롱롲롳롴롵롶롷롸롹롺롻롼롽롾롿 -
    B880 뢀뢁뢂뢃뢄뢅뢆뢇뢈뢉뢊뢋뢌뢍뢎뢏뢐뢑뢒뢓뢔뢕뢖뢗뢘뢙뢚뢛뢜뢝뢞뢟 -
    B8A0 뢠뢡뢢뢣뢤뢥뢦뢧뢨뢩뢪뢫뢬뢭뢮뢯뢰뢱뢲뢳뢴뢵뢶뢷뢸뢹뢺뢻뢼뢽뢾뢿 -
    B8C0 룀룁룂룃룄룅룆룇룈룉룊룋료룍룎룏룐룑룒룓룔룕룖룗룘룙룚룛룜룝룞룟 -
    B8E0 룠룡룢룣룤룥룦룧루룩룪룫룬룭룮룯룰룱룲룳룴룵룶룷룸룹룺룻룼룽룾룿 -
    B900 뤀뤁뤂뤃뤄뤅뤆뤇뤈뤉뤊뤋뤌뤍뤎뤏뤐뤑뤒뤓뤔뤕뤖뤗뤘뤙뤚뤛뤜뤝뤞뤟 -
    B920 뤠뤡뤢뤣뤤뤥뤦뤧뤨뤩뤪뤫뤬뤭뤮뤯뤰뤱뤲뤳뤴뤵뤶뤷뤸뤹뤺뤻뤼뤽뤾뤿 -
    B940 륀륁륂륃륄륅륆륇륈륉륊륋륌륍륎륏륐륑륒륓륔륕륖륗류륙륚륛륜륝륞륟 -
    B960 률륡륢륣륤륥륦륧륨륩륪륫륬륭륮륯륰륱륲륳르륵륶륷른륹륺륻를륽륾륿 -
    B980 릀릁릂릃름릅릆릇릈릉릊릋릌릍릎릏릐릑릒릓릔릕릖릗릘릙릚릛릜릝릞릟 -
    B9A0 릠릡릢릣릤릥릦릧릨릩릪릫리릭릮릯린릱릲릳릴릵릶릷릸릹릺릻림립릾릿 -
    B9C0 맀링맂맃맄맅맆맇마막맊맋만맍많맏말맑맒맓맔맕맖맗맘맙맚맛맜망맞맟 -
    B9E0 맠맡맢맣매맥맦맧맨맩맪맫맬맭맮맯맰맱맲맳맴맵맶맷맸맹맺맻맼맽맾맿 -
    BA00 먀먁먂먃먄먅먆먇먈먉먊먋먌먍먎먏먐먑먒먓먔먕먖먗먘먙먚먛먜먝먞먟 -
    BA20 먠먡먢먣먤먥먦먧먨먩먪먫먬먭먮먯먰먱먲먳먴먵먶먷머먹먺먻먼먽먾먿 -
    BA40 멀멁멂멃멄멅멆멇멈멉멊멋멌멍멎멏멐멑멒멓메멕멖멗멘멙멚멛멜멝멞멟 -
    BA60 멠멡멢멣멤멥멦멧멨멩멪멫멬멭멮멯며멱멲멳면멵멶멷멸멹멺멻멼멽멾멿 -
    BA80 몀몁몂몃몄명몆몇몈몉몊몋몌몍몎몏몐몑몒몓몔몕몖몗몘몙몚몛몜몝몞몟 -
    BAA0 몠몡몢몣몤몥몦몧모목몪몫몬몭몮몯몰몱몲몳몴몵몶몷몸몹몺못몼몽몾몿 -
    BAC0 뫀뫁뫂뫃뫄뫅뫆뫇뫈뫉뫊뫋뫌뫍뫎뫏뫐뫑뫒뫓뫔뫕뫖뫗뫘뫙뫚뫛뫜뫝뫞뫟 -
    BAE0 뫠뫡뫢뫣뫤뫥뫦뫧뫨뫩뫪뫫뫬뫭뫮뫯뫰뫱뫲뫳뫴뫵뫶뫷뫸뫹뫺뫻뫼뫽뫾뫿 -
    BB00 묀묁묂묃묄묅묆묇묈묉묊묋묌묍묎묏묐묑묒묓묔묕묖묗묘묙묚묛묜묝묞묟 -
    BB20 묠묡묢묣묤묥묦묧묨묩묪묫묬묭묮묯묰묱묲묳무묵묶묷문묹묺묻물묽묾묿 -
    BB40 뭀뭁뭂뭃뭄뭅뭆뭇뭈뭉뭊뭋뭌뭍뭎뭏뭐뭑뭒뭓뭔뭕뭖뭗뭘뭙뭚뭛뭜뭝뭞뭟 -
    BB60 뭠뭡뭢뭣뭤뭥뭦뭧뭨뭩뭪뭫뭬뭭뭮뭯뭰뭱뭲뭳뭴뭵뭶뭷뭸뭹뭺뭻뭼뭽뭾뭿 -
    BB80 뮀뮁뮂뮃뮄뮅뮆뮇뮈뮉뮊뮋뮌뮍뮎뮏뮐뮑뮒뮓뮔뮕뮖뮗뮘뮙뮚뮛뮜뮝뮞뮟 -
    BBA0 뮠뮡뮢뮣뮤뮥뮦뮧뮨뮩뮪뮫뮬뮭뮮뮯뮰뮱뮲뮳뮴뮵뮶뮷뮸뮹뮺뮻뮼뮽뮾뮿 -
    BBC0 므믁믂믃믄믅믆믇믈믉믊믋믌믍믎믏믐믑믒믓믔믕믖믗믘믙믚믛믜믝믞믟 -
    BBE0 믠믡믢믣믤믥믦믧믨믩믪믫믬믭믮믯믰믱믲믳믴믵믶믷미믹믺믻민믽믾믿 -
    BC00 밀밁밂밃밄밅밆밇밈밉밊밋밌밍밎및밐밑밒밓바박밖밗반밙밚받발밝밞밟 -
    BC20 밠밡밢밣밤밥밦밧밨방밪밫밬밭밮밯배백밲밳밴밵밶밷밸밹밺밻밼밽밾밿 -
    BC40 뱀뱁뱂뱃뱄뱅뱆뱇뱈뱉뱊뱋뱌뱍뱎뱏뱐뱑뱒뱓뱔뱕뱖뱗뱘뱙뱚뱛뱜뱝뱞뱟 -
    BC60 뱠뱡뱢뱣뱤뱥뱦뱧뱨뱩뱪뱫뱬뱭뱮뱯뱰뱱뱲뱳뱴뱵뱶뱷뱸뱹뱺뱻뱼뱽뱾뱿 -
    BC80 벀벁벂벃버벅벆벇번벉벊벋벌벍벎벏벐벑벒벓범법벖벗벘벙벚벛벜벝벞벟 -
    BCA0 베벡벢벣벤벥벦벧벨벩벪벫벬벭벮벯벰벱벲벳벴벵벶벷벸벹벺벻벼벽벾벿 -
    BCC0 변볁볂볃별볅볆볇볈볉볊볋볌볍볎볏볐병볒볓볔볕볖볗볘볙볚볛볜볝볞볟 -
    BCE0 볠볡볢볣볤볥볦볧볨볩볪볫볬볭볮볯볰볱볲볳보복볶볷본볹볺볻볼볽볾볿 -
    BD00 봀봁봂봃봄봅봆봇봈봉봊봋봌봍봎봏봐봑봒봓봔봕봖봗봘봙봚봛봜봝봞봟 -
    BD20 봠봡봢봣봤봥봦봧봨봩봪봫봬봭봮봯봰봱봲봳봴봵봶봷봸봹봺봻봼봽봾봿 -
    BD40 뵀뵁뵂뵃뵄뵅뵆뵇뵈뵉뵊뵋뵌뵍뵎뵏뵐뵑뵒뵓뵔뵕뵖뵗뵘뵙뵚뵛뵜뵝뵞뵟 -
    BD60 뵠뵡뵢뵣뵤뵥뵦뵧뵨뵩뵪뵫뵬뵭뵮뵯뵰뵱뵲뵳뵴뵵뵶뵷뵸뵹뵺뵻뵼뵽뵾뵿 -
    BD80 부북붂붃분붅붆붇불붉붊붋붌붍붎붏붐붑붒붓붔붕붖붗붘붙붚붛붜붝붞붟 -
    BDA0 붠붡붢붣붤붥붦붧붨붩붪붫붬붭붮붯붰붱붲붳붴붵붶붷붸붹붺붻붼붽붾붿 -
    BDC0 뷀뷁뷂뷃뷄뷅뷆뷇뷈뷉뷊뷋뷌뷍뷎뷏뷐뷑뷒뷓뷔뷕뷖뷗뷘뷙뷚뷛뷜뷝뷞뷟 -
    BDE0 뷠뷡뷢뷣뷤뷥뷦뷧뷨뷩뷪뷫뷬뷭뷮뷯뷰뷱뷲뷳뷴뷵뷶뷷뷸뷹뷺뷻뷼뷽뷾뷿 -
    BE00 븀븁븂븃븄븅븆븇븈븉븊븋브븍븎븏븐븑븒븓블븕븖븗븘븙븚븛븜븝븞븟 -
    BE20 븠븡븢븣븤븥븦븧븨븩븪븫븬븭븮븯븰븱븲븳븴븵븶븷븸븹븺븻븼븽븾븿 -
    BE40 빀빁빂빃비빅빆빇빈빉빊빋빌빍빎빏빐빑빒빓빔빕빖빗빘빙빚빛빜빝빞빟 -
    BE60 빠빡빢빣빤빥빦빧빨빩빪빫빬빭빮빯빰빱빲빳빴빵빶빷빸빹빺빻빼빽빾빿 -
    BE80 뺀뺁뺂뺃뺄뺅뺆뺇뺈뺉뺊뺋뺌뺍뺎뺏뺐뺑뺒뺓뺔뺕뺖뺗뺘뺙뺚뺛뺜뺝뺞뺟 -
    BEA0 뺠뺡뺢뺣뺤뺥뺦뺧뺨뺩뺪뺫뺬뺭뺮뺯뺰뺱뺲뺳뺴뺵뺶뺷뺸뺹뺺뺻뺼뺽뺾뺿 -
    BEC0 뻀뻁뻂뻃뻄뻅뻆뻇뻈뻉뻊뻋뻌뻍뻎뻏뻐뻑뻒뻓뻔뻕뻖뻗뻘뻙뻚뻛뻜뻝뻞뻟 -
    BEE0 뻠뻡뻢뻣뻤뻥뻦뻧뻨뻩뻪뻫뻬뻭뻮뻯뻰뻱뻲뻳뻴뻵뻶뻷뻸뻹뻺뻻뻼뻽뻾뻿 -
    BF00 뼀뼁뼂뼃뼄뼅뼆뼇뼈뼉뼊뼋뼌뼍뼎뼏뼐뼑뼒뼓뼔뼕뼖뼗뼘뼙뼚뼛뼜뼝뼞뼟 -
    BF20 뼠뼡뼢뼣뼤뼥뼦뼧뼨뼩뼪뼫뼬뼭뼮뼯뼰뼱뼲뼳뼴뼵뼶뼷뼸뼹뼺뼻뼼뼽뼾뼿 -
    BF40 뽀뽁뽂뽃뽄뽅뽆뽇뽈뽉뽊뽋뽌뽍뽎뽏뽐뽑뽒뽓뽔뽕뽖뽗뽘뽙뽚뽛뽜뽝뽞뽟 -
    BF60 뽠뽡뽢뽣뽤뽥뽦뽧뽨뽩뽪뽫뽬뽭뽮뽯뽰뽱뽲뽳뽴뽵뽶뽷뽸뽹뽺뽻뽼뽽뽾뽿 -
    BF80 뾀뾁뾂뾃뾄뾅뾆뾇뾈뾉뾊뾋뾌뾍뾎뾏뾐뾑뾒뾓뾔뾕뾖뾗뾘뾙뾚뾛뾜뾝뾞뾟 -
    BFA0 뾠뾡뾢뾣뾤뾥뾦뾧뾨뾩뾪뾫뾬뾭뾮뾯뾰뾱뾲뾳뾴뾵뾶뾷뾸뾹뾺뾻뾼뾽뾾뾿 -
    BFC0 뿀뿁뿂뿃뿄뿅뿆뿇뿈뿉뿊뿋뿌뿍뿎뿏뿐뿑뿒뿓뿔뿕뿖뿗뿘뿙뿚뿛뿜뿝뿞뿟 -
    BFE0 뿠뿡뿢뿣뿤뿥뿦뿧뿨뿩뿪뿫뿬뿭뿮뿯뿰뿱뿲뿳뿴뿵뿶뿷뿸뿹뿺뿻뿼뿽뿾뿿 -
    C000 쀀쀁쀂쀃쀄쀅쀆쀇쀈쀉쀊쀋쀌쀍쀎쀏쀐쀑쀒쀓쀔쀕쀖쀗쀘쀙쀚쀛쀜쀝쀞쀟 -
    C020 쀠쀡쀢쀣쀤쀥쀦쀧쀨쀩쀪쀫쀬쀭쀮쀯쀰쀱쀲쀳쀴쀵쀶쀷쀸쀹쀺쀻쀼쀽쀾쀿 -
    C040 쁀쁁쁂쁃쁄쁅쁆쁇쁈쁉쁊쁋쁌쁍쁎쁏쁐쁑쁒쁓쁔쁕쁖쁗쁘쁙쁚쁛쁜쁝쁞쁟 -
    C060 쁠쁡쁢쁣쁤쁥쁦쁧쁨쁩쁪쁫쁬쁭쁮쁯쁰쁱쁲쁳쁴쁵쁶쁷쁸쁹쁺쁻쁼쁽쁾쁿 -
    C080 삀삁삂삃삄삅삆삇삈삉삊삋삌삍삎삏삐삑삒삓삔삕삖삗삘삙삚삛삜삝삞삟 -
    C0A0 삠삡삢삣삤삥삦삧삨삩삪삫사삭삮삯산삱삲삳살삵삶삷삸삹삺삻삼삽삾삿 -
    C0C0 샀상샂샃샄샅샆샇새색샊샋샌샍샎샏샐샑샒샓샔샕샖샗샘샙샚샛샜생샞샟 -
    C0E0 샠샡샢샣샤샥샦샧샨샩샪샫샬샭샮샯샰샱샲샳샴샵샶샷샸샹샺샻샼샽샾샿 -
    C100 섀섁섂섃섄섅섆섇섈섉섊섋섌섍섎섏섐섑섒섓섔섕섖섗섘섙섚섛서석섞섟 -
    C120 선섡섢섣설섥섦섧섨섩섪섫섬섭섮섯섰성섲섳섴섵섶섷세섹섺섻센섽섾섿 -
    C140 셀셁셂셃셄셅셆셇셈셉셊셋셌셍셎셏셐셑셒셓셔셕셖셗션셙셚셛셜셝셞셟 -
    C160 셠셡셢셣셤셥셦셧셨셩셪셫셬셭셮셯셰셱셲셳셴셵셶셷셸셹셺셻셼셽셾셿 -
    C180 솀솁솂솃솄솅솆솇솈솉솊솋소속솎솏손솑솒솓솔솕솖솗솘솙솚솛솜솝솞솟 -
    C1A0 솠송솢솣솤솥솦솧솨솩솪솫솬솭솮솯솰솱솲솳솴솵솶솷솸솹솺솻솼솽솾솿 -
    C1C0 쇀쇁쇂쇃쇄쇅쇆쇇쇈쇉쇊쇋쇌쇍쇎쇏쇐쇑쇒쇓쇔쇕쇖쇗쇘쇙쇚쇛쇜쇝쇞쇟 -
    C1E0 쇠쇡쇢쇣쇤쇥쇦쇧쇨쇩쇪쇫쇬쇭쇮쇯쇰쇱쇲쇳쇴쇵쇶쇷쇸쇹쇺쇻쇼쇽쇾쇿 -
    C200 숀숁숂숃숄숅숆숇숈숉숊숋숌숍숎숏숐숑숒숓숔숕숖숗수숙숚숛순숝숞숟 -
    C220 술숡숢숣숤숥숦숧숨숩숪숫숬숭숮숯숰숱숲숳숴숵숶숷숸숹숺숻숼숽숾숿 -
    C240 쉀쉁쉂쉃쉄쉅쉆쉇쉈쉉쉊쉋쉌쉍쉎쉏쉐쉑쉒쉓쉔쉕쉖쉗쉘쉙쉚쉛쉜쉝쉞쉟 -
    C260 쉠쉡쉢쉣쉤쉥쉦쉧쉨쉩쉪쉫쉬쉭쉮쉯쉰쉱쉲쉳쉴쉵쉶쉷쉸쉹쉺쉻쉼쉽쉾쉿 -
    C280 슀슁슂슃슄슅슆슇슈슉슊슋슌슍슎슏슐슑슒슓슔슕슖슗슘슙슚슛슜슝슞슟 -
    C2A0 슠슡슢슣스슥슦슧슨슩슪슫슬슭슮슯슰슱슲슳슴습슶슷슸승슺슻슼슽슾슿 -
    C2C0 싀싁싂싃싄싅싆싇싈싉싊싋싌싍싎싏싐싑싒싓싔싕싖싗싘싙싚싛시식싞싟 -
    C2E0 신싡싢싣실싥싦싧싨싩싪싫심십싮싯싰싱싲싳싴싵싶싷싸싹싺싻싼싽싾싿 -
    C300 쌀쌁쌂쌃쌄쌅쌆쌇쌈쌉쌊쌋쌌쌍쌎쌏쌐쌑쌒쌓쌔쌕쌖쌗쌘쌙쌚쌛쌜쌝쌞쌟 -
    C320 쌠쌡쌢쌣쌤쌥쌦쌧쌨쌩쌪쌫쌬쌭쌮쌯쌰쌱쌲쌳쌴쌵쌶쌷쌸쌹쌺쌻쌼쌽쌾쌿 -
    C340 썀썁썂썃썄썅썆썇썈썉썊썋썌썍썎썏썐썑썒썓썔썕썖썗썘썙썚썛썜썝썞썟 -
    C360 썠썡썢썣썤썥썦썧써썩썪썫썬썭썮썯썰썱썲썳썴썵썶썷썸썹썺썻썼썽썾썿 -
    C380 쎀쎁쎂쎃쎄쎅쎆쎇쎈쎉쎊쎋쎌쎍쎎쎏쎐쎑쎒쎓쎔쎕쎖쎗쎘쎙쎚쎛쎜쎝쎞쎟 -
    C3A0 쎠쎡쎢쎣쎤쎥쎦쎧쎨쎩쎪쎫쎬쎭쎮쎯쎰쎱쎲쎳쎴쎵쎶쎷쎸쎹쎺쎻쎼쎽쎾쎿 -
    C3C0 쏀쏁쏂쏃쏄쏅쏆쏇쏈쏉쏊쏋쏌쏍쏎쏏쏐쏑쏒쏓쏔쏕쏖쏗쏘쏙쏚쏛쏜쏝쏞쏟 -
    C3E0 쏠쏡쏢쏣쏤쏥쏦쏧쏨쏩쏪쏫쏬쏭쏮쏯쏰쏱쏲쏳쏴쏵쏶쏷쏸쏹쏺쏻쏼쏽쏾쏿 -
    C400 쐀쐁쐂쐃쐄쐅쐆쐇쐈쐉쐊쐋쐌쐍쐎쐏쐐쐑쐒쐓쐔쐕쐖쐗쐘쐙쐚쐛쐜쐝쐞쐟 -
    C420 쐠쐡쐢쐣쐤쐥쐦쐧쐨쐩쐪쐫쐬쐭쐮쐯쐰쐱쐲쐳쐴쐵쐶쐷쐸쐹쐺쐻쐼쐽쐾쐿 -
    C440 쑀쑁쑂쑃쑄쑅쑆쑇쑈쑉쑊쑋쑌쑍쑎쑏쑐쑑쑒쑓쑔쑕쑖쑗쑘쑙쑚쑛쑜쑝쑞쑟 -
    C460 쑠쑡쑢쑣쑤쑥쑦쑧쑨쑩쑪쑫쑬쑭쑮쑯쑰쑱쑲쑳쑴쑵쑶쑷쑸쑹쑺쑻쑼쑽쑾쑿 -
    C480 쒀쒁쒂쒃쒄쒅쒆쒇쒈쒉쒊쒋쒌쒍쒎쒏쒐쒑쒒쒓쒔쒕쒖쒗쒘쒙쒚쒛쒜쒝쒞쒟 -
    C4A0 쒠쒡쒢쒣쒤쒥쒦쒧쒨쒩쒪쒫쒬쒭쒮쒯쒰쒱쒲쒳쒴쒵쒶쒷쒸쒹쒺쒻쒼쒽쒾쒿 -
    C4C0 쓀쓁쓂쓃쓄쓅쓆쓇쓈쓉쓊쓋쓌쓍쓎쓏쓐쓑쓒쓓쓔쓕쓖쓗쓘쓙쓚쓛쓜쓝쓞쓟 -
    C4E0 쓠쓡쓢쓣쓤쓥쓦쓧쓨쓩쓪쓫쓬쓭쓮쓯쓰쓱쓲쓳쓴쓵쓶쓷쓸쓹쓺쓻쓼쓽쓾쓿 -
    C500 씀씁씂씃씄씅씆씇씈씉씊씋씌씍씎씏씐씑씒씓씔씕씖씗씘씙씚씛씜씝씞씟 -
    C520 씠씡씢씣씤씥씦씧씨씩씪씫씬씭씮씯씰씱씲씳씴씵씶씷씸씹씺씻씼씽씾씿 -
    C540 앀앁앂앃아악앆앇안앉않앋알앍앎앏앐앑앒앓암압앖앗았앙앚앛앜앝앞앟 -
    C560 애액앢앣앤앥앦앧앨앩앪앫앬앭앮앯앰앱앲앳앴앵앶앷앸앹앺앻야약앾앿 -
    C580 얀얁얂얃얄얅얆얇얈얉얊얋얌얍얎얏얐양얒얓얔얕얖얗얘얙얚얛얜얝얞얟 -
    C5A0 얠얡얢얣얤얥얦얧얨얩얪얫얬얭얮얯얰얱얲얳어억얶얷언얹얺얻얼얽얾얿 -
    C5C0 엀엁엂엃엄업없엇었엉엊엋엌엍엎엏에엑엒엓엔엕엖엗엘엙엚엛엜엝엞엟 -
    C5E0 엠엡엢엣엤엥엦엧엨엩엪엫여역엮엯연엱엲엳열엵엶엷엸엹엺엻염엽엾엿 -
    C600 였영옂옃옄옅옆옇예옉옊옋옌옍옎옏옐옑옒옓옔옕옖옗옘옙옚옛옜옝옞옟 -
    C620 옠옡옢옣오옥옦옧온옩옪옫올옭옮옯옰옱옲옳옴옵옶옷옸옹옺옻옼옽옾옿 -
    C640 와왁왂왃완왅왆왇왈왉왊왋왌왍왎왏왐왑왒왓왔왕왖왗왘왙왚왛왜왝왞왟 -
    C660 왠왡왢왣왤왥왦왧왨왩왪왫왬왭왮왯왰왱왲왳왴왵왶왷외왹왺왻왼왽왾왿 -
    C680 욀욁욂욃욄욅욆욇욈욉욊욋욌욍욎욏욐욑욒욓요욕욖욗욘욙욚욛욜욝욞욟 -
    C6A0 욠욡욢욣욤욥욦욧욨용욪욫욬욭욮욯우욱욲욳운욵욶욷울욹욺욻욼욽욾욿 -
    C6C0 움웁웂웃웄웅웆웇웈웉웊웋워웍웎웏원웑웒웓월웕웖웗웘웙웚웛웜웝웞웟 -
    C6E0 웠웡웢웣웤웥웦웧웨웩웪웫웬웭웮웯웰웱웲웳웴웵웶웷웸웹웺웻웼웽웾웿 -
    C700 윀윁윂윃위윅윆윇윈윉윊윋윌윍윎윏윐윑윒윓윔윕윖윗윘윙윚윛윜윝윞윟 -
    C720 유육윢윣윤윥윦윧율윩윪윫윬윭윮윯윰윱윲윳윴융윶윷윸윹윺윻으윽윾윿 -
    C740 은읁읂읃을읅읆읇읈읉읊읋음읍읎읏읐응읒읓읔읕읖읗의읙읚읛읜읝읞읟 -
    C760 읠읡읢읣읤읥읦읧읨읩읪읫읬읭읮읯읰읱읲읳이익읶읷인읹읺읻일읽읾읿 -
    C780 잀잁잂잃임입잆잇있잉잊잋잌잍잎잏자작잒잓잔잕잖잗잘잙잚잛잜잝잞잟 -
    C7A0 잠잡잢잣잤장잦잧잨잩잪잫재잭잮잯잰잱잲잳잴잵잶잷잸잹잺잻잼잽잾잿 -
    C7C0 쟀쟁쟂쟃쟄쟅쟆쟇쟈쟉쟊쟋쟌쟍쟎쟏쟐쟑쟒쟓쟔쟕쟖쟗쟘쟙쟚쟛쟜쟝쟞쟟 -
    C7E0 쟠쟡쟢쟣쟤쟥쟦쟧쟨쟩쟪쟫쟬쟭쟮쟯쟰쟱쟲쟳쟴쟵쟶쟷쟸쟹쟺쟻쟼쟽쟾쟿 -
    C800 저적젂젃전젅젆젇절젉젊젋젌젍젎젏점접젒젓젔정젖젗젘젙젚젛제젝젞젟 -
    C820 젠젡젢젣젤젥젦젧젨젩젪젫젬젭젮젯젰젱젲젳젴젵젶젷져젹젺젻젼젽젾젿 -
    C840 졀졁졂졃졄졅졆졇졈졉졊졋졌졍졎졏졐졑졒졓졔졕졖졗졘졙졚졛졜졝졞졟 -
    C860 졠졡졢졣졤졥졦졧졨졩졪졫졬졭졮졯조족졲졳존졵졶졷졸졹졺졻졼졽졾졿 -
    C880 좀좁좂좃좄종좆좇좈좉좊좋좌좍좎좏좐좑좒좓좔좕좖좗좘좙좚좛좜좝좞좟 -
    C8A0 좠좡좢좣좤좥좦좧좨좩좪좫좬좭좮좯좰좱좲좳좴좵좶좷좸좹좺좻좼좽좾좿 -
    C8C0 죀죁죂죃죄죅죆죇죈죉죊죋죌죍죎죏죐죑죒죓죔죕죖죗죘죙죚죛죜죝죞죟 -
    C8E0 죠죡죢죣죤죥죦죧죨죩죪죫죬죭죮죯죰죱죲죳죴죵죶죷죸죹죺죻주죽죾죿 -
    C900 준줁줂줃줄줅줆줇줈줉줊줋줌줍줎줏줐중줒줓줔줕줖줗줘줙줚줛줜줝줞줟 -
    C920 줠줡줢줣줤줥줦줧줨줩줪줫줬줭줮줯줰줱줲줳줴줵줶줷줸줹줺줻줼줽줾줿 -
    C940 쥀쥁쥂쥃쥄쥅쥆쥇쥈쥉쥊쥋쥌쥍쥎쥏쥐쥑쥒쥓쥔쥕쥖쥗쥘쥙쥚쥛쥜쥝쥞쥟 -
    C960 쥠쥡쥢쥣쥤쥥쥦쥧쥨쥩쥪쥫쥬쥭쥮쥯쥰쥱쥲쥳쥴쥵쥶쥷쥸쥹쥺쥻쥼쥽쥾쥿 -
    C980 즀즁즂즃즄즅즆즇즈즉즊즋즌즍즎즏즐즑즒즓즔즕즖즗즘즙즚즛즜증즞즟 -
    C9A0 즠즡즢즣즤즥즦즧즨즩즪즫즬즭즮즯즰즱즲즳즴즵즶즷즸즹즺즻즼즽즾즿 -
    C9C0 지직짂짃진짅짆짇질짉짊짋짌짍짎짏짐집짒짓짔징짖짗짘짙짚짛짜짝짞짟 -
    C9E0 짠짡짢짣짤짥짦짧짨짩짪짫짬짭짮짯짰짱짲짳짴짵짶짷째짹짺짻짼짽짾짿 -
    CA00 쨀쨁쨂쨃쨄쨅쨆쨇쨈쨉쨊쨋쨌쨍쨎쨏쨐쨑쨒쨓쨔쨕쨖쨗쨘쨙쨚쨛쨜쨝쨞쨟 -
    CA20 쨠쨡쨢쨣쨤쨥쨦쨧쨨쨩쨪쨫쨬쨭쨮쨯쨰쨱쨲쨳쨴쨵쨶쨷쨸쨹쨺쨻쨼쨽쨾쨿 -
    CA40 쩀쩁쩂쩃쩄쩅쩆쩇쩈쩉쩊쩋쩌쩍쩎쩏쩐쩑쩒쩓쩔쩕쩖쩗쩘쩙쩚쩛쩜쩝쩞쩟 -
    CA60 쩠쩡쩢쩣쩤쩥쩦쩧쩨쩩쩪쩫쩬쩭쩮쩯쩰쩱쩲쩳쩴쩵쩶쩷쩸쩹쩺쩻쩼쩽쩾쩿 -
    CA80 쪀쪁쪂쪃쪄쪅쪆쪇쪈쪉쪊쪋쪌쪍쪎쪏쪐쪑쪒쪓쪔쪕쪖쪗쪘쪙쪚쪛쪜쪝쪞쪟 -
    CAA0 쪠쪡쪢쪣쪤쪥쪦쪧쪨쪩쪪쪫쪬쪭쪮쪯쪰쪱쪲쪳쪴쪵쪶쪷쪸쪹쪺쪻쪼쪽쪾쪿 -
    CAC0 쫀쫁쫂쫃쫄쫅쫆쫇쫈쫉쫊쫋쫌쫍쫎쫏쫐쫑쫒쫓쫔쫕쫖쫗쫘쫙쫚쫛쫜쫝쫞쫟 -
    CAE0 쫠쫡쫢쫣쫤쫥쫦쫧쫨쫩쫪쫫쫬쫭쫮쫯쫰쫱쫲쫳쫴쫵쫶쫷쫸쫹쫺쫻쫼쫽쫾쫿 -
    CB00 쬀쬁쬂쬃쬄쬅쬆쬇쬈쬉쬊쬋쬌쬍쬎쬏쬐쬑쬒쬓쬔쬕쬖쬗쬘쬙쬚쬛쬜쬝쬞쬟 -
    CB20 쬠쬡쬢쬣쬤쬥쬦쬧쬨쬩쬪쬫쬬쬭쬮쬯쬰쬱쬲쬳쬴쬵쬶쬷쬸쬹쬺쬻쬼쬽쬾쬿 -
    CB40 쭀쭁쭂쭃쭄쭅쭆쭇쭈쭉쭊쭋쭌쭍쭎쭏쭐쭑쭒쭓쭔쭕쭖쭗쭘쭙쭚쭛쭜쭝쭞쭟 -
    CB60 쭠쭡쭢쭣쭤쭥쭦쭧쭨쭩쭪쭫쭬쭭쭮쭯쭰쭱쭲쭳쭴쭵쭶쭷쭸쭹쭺쭻쭼쭽쭾쭿 -
    CB80 쮀쮁쮂쮃쮄쮅쮆쮇쮈쮉쮊쮋쮌쮍쮎쮏쮐쮑쮒쮓쮔쮕쮖쮗쮘쮙쮚쮛쮜쮝쮞쮟 -
    CBA0 쮠쮡쮢쮣쮤쮥쮦쮧쮨쮩쮪쮫쮬쮭쮮쮯쮰쮱쮲쮳쮴쮵쮶쮷쮸쮹쮺쮻쮼쮽쮾쮿 -
    CBC0 쯀쯁쯂쯃쯄쯅쯆쯇쯈쯉쯊쯋쯌쯍쯎쯏쯐쯑쯒쯓쯔쯕쯖쯗쯘쯙쯚쯛쯜쯝쯞쯟 -
    CBE0 쯠쯡쯢쯣쯤쯥쯦쯧쯨쯩쯪쯫쯬쯭쯮쯯쯰쯱쯲쯳쯴쯵쯶쯷쯸쯹쯺쯻쯼쯽쯾쯿 -
    CC00 찀찁찂찃찄찅찆찇찈찉찊찋찌찍찎찏찐찑찒찓찔찕찖찗찘찙찚찛찜찝찞찟 -
    CC20 찠찡찢찣찤찥찦찧차착찪찫찬찭찮찯찰찱찲찳찴찵찶찷참찹찺찻찼창찾찿 -
    CC40 챀챁챂챃채책챆챇챈챉챊챋챌챍챎챏챐챑챒챓챔챕챖챗챘챙챚챛챜챝챞챟 -
    CC60 챠챡챢챣챤챥챦챧챨챩챪챫챬챭챮챯챰챱챲챳챴챵챶챷챸챹챺챻챼챽챾챿 -
    CC80 첀첁첂첃첄첅첆첇첈첉첊첋첌첍첎첏첐첑첒첓첔첕첖첗처척첚첛천첝첞첟 -
    CCA0 철첡첢첣첤첥첦첧첨첩첪첫첬청첮첯첰첱첲첳체첵첶첷첸첹첺첻첼첽첾첿 -
    CCC0 쳀쳁쳂쳃쳄쳅쳆쳇쳈쳉쳊쳋쳌쳍쳎쳏쳐쳑쳒쳓쳔쳕쳖쳗쳘쳙쳚쳛쳜쳝쳞쳟 -
    CCE0 쳠쳡쳢쳣쳤쳥쳦쳧쳨쳩쳪쳫쳬쳭쳮쳯쳰쳱쳲쳳쳴쳵쳶쳷쳸쳹쳺쳻쳼쳽쳾쳿 -
    CD00 촀촁촂촃촄촅촆촇초촉촊촋촌촍촎촏촐촑촒촓촔촕촖촗촘촙촚촛촜총촞촟 -
    CD20 촠촡촢촣촤촥촦촧촨촩촪촫촬촭촮촯촰촱촲촳촴촵촶촷촸촹촺촻촼촽촾촿 -
    CD40 쵀쵁쵂쵃쵄쵅쵆쵇쵈쵉쵊쵋쵌쵍쵎쵏쵐쵑쵒쵓쵔쵕쵖쵗쵘쵙쵚쵛최쵝쵞쵟 -
    CD60 쵠쵡쵢쵣쵤쵥쵦쵧쵨쵩쵪쵫쵬쵭쵮쵯쵰쵱쵲쵳쵴쵵쵶쵷쵸쵹쵺쵻쵼쵽쵾쵿 -
    CD80 춀춁춂춃춄춅춆춇춈춉춊춋춌춍춎춏춐춑춒춓추축춖춗춘춙춚춛출춝춞춟 -
    CDA0 춠춡춢춣춤춥춦춧춨충춪춫춬춭춮춯춰춱춲춳춴춵춶춷춸춹춺춻춼춽춾춿 -
    CDC0 췀췁췂췃췄췅췆췇췈췉췊췋췌췍췎췏췐췑췒췓췔췕췖췗췘췙췚췛췜췝췞췟 -
    CDE0 췠췡췢췣췤췥췦췧취췩췪췫췬췭췮췯췰췱췲췳췴췵췶췷췸췹췺췻췼췽췾췿 -
    CE00 츀츁츂츃츄츅츆츇츈츉츊츋츌츍츎츏츐츑츒츓츔츕츖츗츘츙츚츛츜츝츞츟 -
    CE20 츠측츢츣츤츥츦츧츨츩츪츫츬츭츮츯츰츱츲츳츴층츶츷츸츹츺츻츼츽츾츿 -
    CE40 칀칁칂칃칄칅칆칇칈칉칊칋칌칍칎칏칐칑칒칓칔칕칖칗치칙칚칛친칝칞칟 -
    CE60 칠칡칢칣칤칥칦칧침칩칪칫칬칭칮칯칰칱칲칳카칵칶칷칸칹칺칻칼칽칾칿 -
    CE80 캀캁캂캃캄캅캆캇캈캉캊캋캌캍캎캏캐캑캒캓캔캕캖캗캘캙캚캛캜캝캞캟 -
    CEA0 캠캡캢캣캤캥캦캧캨캩캪캫캬캭캮캯캰캱캲캳캴캵캶캷캸캹캺캻캼캽캾캿 -
    CEC0 컀컁컂컃컄컅컆컇컈컉컊컋컌컍컎컏컐컑컒컓컔컕컖컗컘컙컚컛컜컝컞컟 -
    CEE0 컠컡컢컣커컥컦컧컨컩컪컫컬컭컮컯컰컱컲컳컴컵컶컷컸컹컺컻컼컽컾컿 -
    CF00 케켁켂켃켄켅켆켇켈켉켊켋켌켍켎켏켐켑켒켓켔켕켖켗켘켙켚켛켜켝켞켟 -
    CF20 켠켡켢켣켤켥켦켧켨켩켪켫켬켭켮켯켰켱켲켳켴켵켶켷켸켹켺켻켼켽켾켿 -
    CF40 콀콁콂콃콄콅콆콇콈콉콊콋콌콍콎콏콐콑콒콓코콕콖콗콘콙콚콛콜콝콞콟 -
    CF60 콠콡콢콣콤콥콦콧콨콩콪콫콬콭콮콯콰콱콲콳콴콵콶콷콸콹콺콻콼콽콾콿 -
    CF80 쾀쾁쾂쾃쾄쾅쾆쾇쾈쾉쾊쾋쾌쾍쾎쾏쾐쾑쾒쾓쾔쾕쾖쾗쾘쾙쾚쾛쾜쾝쾞쾟 -
    CFA0 쾠쾡쾢쾣쾤쾥쾦쾧쾨쾩쾪쾫쾬쾭쾮쾯쾰쾱쾲쾳쾴쾵쾶쾷쾸쾹쾺쾻쾼쾽쾾쾿 -
    CFC0 쿀쿁쿂쿃쿄쿅쿆쿇쿈쿉쿊쿋쿌쿍쿎쿏쿐쿑쿒쿓쿔쿕쿖쿗쿘쿙쿚쿛쿜쿝쿞쿟 -
    CFE0 쿠쿡쿢쿣쿤쿥쿦쿧쿨쿩쿪쿫쿬쿭쿮쿯쿰쿱쿲쿳쿴쿵쿶쿷쿸쿹쿺쿻쿼쿽쿾쿿 -
    D000 퀀퀁퀂퀃퀄퀅퀆퀇퀈퀉퀊퀋퀌퀍퀎퀏퀐퀑퀒퀓퀔퀕퀖퀗퀘퀙퀚퀛퀜퀝퀞퀟 -
    D020 퀠퀡퀢퀣퀤퀥퀦퀧퀨퀩퀪퀫퀬퀭퀮퀯퀰퀱퀲퀳퀴퀵퀶퀷퀸퀹퀺퀻퀼퀽퀾퀿 -
    D040 큀큁큂큃큄큅큆큇큈큉큊큋큌큍큎큏큐큑큒큓큔큕큖큗큘큙큚큛큜큝큞큟 -
    D060 큠큡큢큣큤큥큦큧큨큩큪큫크큭큮큯큰큱큲큳클큵큶큷큸큹큺큻큼큽큾큿 -
    D080 킀킁킂킃킄킅킆킇킈킉킊킋킌킍킎킏킐킑킒킓킔킕킖킗킘킙킚킛킜킝킞킟 -
    D0A0 킠킡킢킣키킥킦킧킨킩킪킫킬킭킮킯킰킱킲킳킴킵킶킷킸킹킺킻킼킽킾킿 -
    D0C0 타탁탂탃탄탅탆탇탈탉탊탋탌탍탎탏탐탑탒탓탔탕탖탗탘탙탚탛태택탞탟 -
    D0E0 탠탡탢탣탤탥탦탧탨탩탪탫탬탭탮탯탰탱탲탳탴탵탶탷탸탹탺탻탼탽탾탿 -
    D100 턀턁턂턃턄턅턆턇턈턉턊턋턌턍턎턏턐턑턒턓턔턕턖턗턘턙턚턛턜턝턞턟 -
    D120 턠턡턢턣턤턥턦턧턨턩턪턫턬턭턮턯터턱턲턳턴턵턶턷털턹턺턻턼턽턾턿 -
    D140 텀텁텂텃텄텅텆텇텈텉텊텋테텍텎텏텐텑텒텓텔텕텖텗텘텙텚텛템텝텞텟 -
    D160 텠텡텢텣텤텥텦텧텨텩텪텫텬텭텮텯텰텱텲텳텴텵텶텷텸텹텺텻텼텽텾텿 -
    D180 톀톁톂톃톄톅톆톇톈톉톊톋톌톍톎톏톐톑톒톓톔톕톖톗톘톙톚톛톜톝톞톟 -
    D1A0 토톡톢톣톤톥톦톧톨톩톪톫톬톭톮톯톰톱톲톳톴통톶톷톸톹톺톻톼톽톾톿 -
    D1C0 퇀퇁퇂퇃퇄퇅퇆퇇퇈퇉퇊퇋퇌퇍퇎퇏퇐퇑퇒퇓퇔퇕퇖퇗퇘퇙퇚퇛퇜퇝퇞퇟 -
    D1E0 퇠퇡퇢퇣퇤퇥퇦퇧퇨퇩퇪퇫퇬퇭퇮퇯퇰퇱퇲퇳퇴퇵퇶퇷퇸퇹퇺퇻퇼퇽퇾퇿 -
    D200 툀툁툂툃툄툅툆툇툈툉툊툋툌툍툎툏툐툑툒툓툔툕툖툗툘툙툚툛툜툝툞툟 -
    D220 툠툡툢툣툤툥툦툧툨툩툪툫투툭툮툯툰툱툲툳툴툵툶툷툸툹툺툻툼툽툾툿 -
    D240 퉀퉁퉂퉃퉄퉅퉆퉇퉈퉉퉊퉋퉌퉍퉎퉏퉐퉑퉒퉓퉔퉕퉖퉗퉘퉙퉚퉛퉜퉝퉞퉟 -
    D260 퉠퉡퉢퉣퉤퉥퉦퉧퉨퉩퉪퉫퉬퉭퉮퉯퉰퉱퉲퉳퉴퉵퉶퉷퉸퉹퉺퉻퉼퉽퉾퉿 -
    D280 튀튁튂튃튄튅튆튇튈튉튊튋튌튍튎튏튐튑튒튓튔튕튖튗튘튙튚튛튜튝튞튟 -
    D2A0 튠튡튢튣튤튥튦튧튨튩튪튫튬튭튮튯튰튱튲튳튴튵튶튷트특튺튻튼튽튾튿 -
    D2C0 틀틁틂틃틄틅틆틇틈틉틊틋틌틍틎틏틐틑틒틓틔틕틖틗틘틙틚틛틜틝틞틟 -
    D2E0 틠틡틢틣틤틥틦틧틨틩틪틫틬틭틮틯티틱틲틳틴틵틶틷틸틹틺틻틼틽틾틿 -
    D300 팀팁팂팃팄팅팆팇팈팉팊팋파팍팎팏판팑팒팓팔팕팖팗팘팙팚팛팜팝팞팟 -
    D320 팠팡팢팣팤팥팦팧패팩팪팫팬팭팮팯팰팱팲팳팴팵팶팷팸팹팺팻팼팽팾팿 -
    D340 퍀퍁퍂퍃퍄퍅퍆퍇퍈퍉퍊퍋퍌퍍퍎퍏퍐퍑퍒퍓퍔퍕퍖퍗퍘퍙퍚퍛퍜퍝퍞퍟 -
    D360 퍠퍡퍢퍣퍤퍥퍦퍧퍨퍩퍪퍫퍬퍭퍮퍯퍰퍱퍲퍳퍴퍵퍶퍷퍸퍹퍺퍻퍼퍽퍾퍿 -
    D380 펀펁펂펃펄펅펆펇펈펉펊펋펌펍펎펏펐펑펒펓펔펕펖펗페펙펚펛펜펝펞펟 -
    D3A0 펠펡펢펣펤펥펦펧펨펩펪펫펬펭펮펯펰펱펲펳펴펵펶펷편펹펺펻펼펽펾펿 -
    D3C0 폀폁폂폃폄폅폆폇폈평폊폋폌폍폎폏폐폑폒폓폔폕폖폗폘폙폚폛폜폝폞폟 -
    D3E0 폠폡폢폣폤폥폦폧폨폩폪폫포폭폮폯폰폱폲폳폴폵폶폷폸폹폺폻폼폽폾폿 -
    D400 퐀퐁퐂퐃퐄퐅퐆퐇퐈퐉퐊퐋퐌퐍퐎퐏퐐퐑퐒퐓퐔퐕퐖퐗퐘퐙퐚퐛퐜퐝퐞퐟 -
    D420 퐠퐡퐢퐣퐤퐥퐦퐧퐨퐩퐪퐫퐬퐭퐮퐯퐰퐱퐲퐳퐴퐵퐶퐷퐸퐹퐺퐻퐼퐽퐾퐿 -
    D440 푀푁푂푃푄푅푆푇푈푉푊푋푌푍푎푏푐푑푒푓푔푕푖푗푘푙푚푛표푝푞푟 -
    D460 푠푡푢푣푤푥푦푧푨푩푪푫푬푭푮푯푰푱푲푳푴푵푶푷푸푹푺푻푼푽푾푿 -
    D480 풀풁풂풃풄풅풆풇품풉풊풋풌풍풎풏풐풑풒풓풔풕풖풗풘풙풚풛풜풝풞풟 -
    D4A0 풠풡풢풣풤풥풦풧풨풩풪풫풬풭풮풯풰풱풲풳풴풵풶풷풸풹풺풻풼풽풾풿 -
    D4C0 퓀퓁퓂퓃퓄퓅퓆퓇퓈퓉퓊퓋퓌퓍퓎퓏퓐퓑퓒퓓퓔퓕퓖퓗퓘퓙퓚퓛퓜퓝퓞퓟 -
    D4E0 퓠퓡퓢퓣퓤퓥퓦퓧퓨퓩퓪퓫퓬퓭퓮퓯퓰퓱퓲퓳퓴퓵퓶퓷퓸퓹퓺퓻퓼퓽퓾퓿 -
    D500 픀픁픂픃프픅픆픇픈픉픊픋플픍픎픏픐픑픒픓픔픕픖픗픘픙픚픛픜픝픞픟 -
    D520 픠픡픢픣픤픥픦픧픨픩픪픫픬픭픮픯픰픱픲픳픴픵픶픷픸픹픺픻피픽픾픿 -
    D540 핀핁핂핃필핅핆핇핈핉핊핋핌핍핎핏핐핑핒핓핔핕핖핗하학핚핛한핝핞핟 -
    D560 할핡핢핣핤핥핦핧함합핪핫핬항핮핯핰핱핲핳해핵핶핷핸핹핺핻핼핽핾핿 -
    D580 햀햁햂햃햄햅햆햇했행햊햋햌햍햎햏햐햑햒햓햔햕햖햗햘햙햚햛햜햝햞햟 -
    D5A0 햠햡햢햣햤향햦햧햨햩햪햫햬햭햮햯햰햱햲햳햴햵햶햷햸햹햺햻햼햽햾햿 -
    D5C0 헀헁헂헃헄헅헆헇허헉헊헋헌헍헎헏헐헑헒헓헔헕헖헗험헙헚헛헜헝헞헟 -
    D5E0 헠헡헢헣헤헥헦헧헨헩헪헫헬헭헮헯헰헱헲헳헴헵헶헷헸헹헺헻헼헽헾헿 -
    D600 혀혁혂혃현혅혆혇혈혉혊혋혌혍혎혏혐협혒혓혔형혖혗혘혙혚혛혜혝혞혟 -
    D620 혠혡혢혣혤혥혦혧혨혩혪혫혬혭혮혯혰혱혲혳혴혵혶혷호혹혺혻혼혽혾혿 -
    D640 홀홁홂홃홄홅홆홇홈홉홊홋홌홍홎홏홐홑홒홓화확홖홗환홙홚홛활홝홞홟 -
    D660 홠홡홢홣홤홥홦홧홨황홪홫홬홭홮홯홰홱홲홳홴홵홶홷홸홹홺홻홼홽홾홿 -
    D680 횀횁횂횃횄횅횆횇횈횉횊횋회획횎횏횐횑횒횓횔횕횖횗횘횙횚횛횜횝횞횟 -
    D6A0 횠횡횢횣횤횥횦횧효횩횪횫횬횭횮횯횰횱횲횳횴횵횶횷횸횹횺횻횼횽횾횿 -
    D6C0 훀훁훂훃후훅훆훇훈훉훊훋훌훍훎훏훐훑훒훓훔훕훖훗훘훙훚훛훜훝훞훟 -
    D6E0 훠훡훢훣훤훥훦훧훨훩훪훫훬훭훮훯훰훱훲훳훴훵훶훷훸훹훺훻훼훽훾훿 -
    D700 휀휁휂휃휄휅휆휇휈휉휊휋휌휍휎휏휐휑휒휓휔휕휖휗휘휙휚휛휜휝휞휟 -
    D720 휠휡휢휣휤휥휦휧휨휩휪휫휬휭휮휯휰휱휲휳휴휵휶휷휸휹휺휻휼휽휾휿 -
    D740 흀흁흂흃흄흅흆흇흈흉흊흋흌흍흎흏흐흑흒흓흔흕흖흗흘흙흚흛흜흝흞흟 -
    D760 흠흡흢흣흤흥흦흧흨흩흪흫희흭흮흯흰흱흲흳흴흵흶흷흸흹흺흻흼흽흾흿 -
    D780 힀힁힂힃힄힅힆힇히힉힊힋힌힍힎힏힐힑힒힓힔힕힖힗힘힙힚힛힜힝힞힟 -
    D7A0 힠힡힢힣힤힥힦힧힨힩힪힫힬힭힮힯ힰힱힲힳힴힵힶힷힸힹힺힻힼힽힾힿ -
    D7C0 ퟀퟁퟂퟃퟄퟅퟆ퟇퟈퟉퟊ퟋퟌퟍퟎퟏퟐퟑퟒퟓퟔퟕퟖퟗퟘퟙퟚퟛퟜퟝퟞퟟ -
    D7E0 ퟠퟡퟢퟣퟤퟥퟦퟧퟨퟩퟪퟫퟬퟭퟮퟯퟰퟱퟲퟳퟴퟵퟶퟷퟸퟹퟺퟻ퟼퟽퟾퟿ -
    D800 �������������������������������� -
    D820 �������������������������������� -
    D840 �������������������������������� -
    D860 �������������������������������� -
    D880 �������������������������������� -
    D8A0 �������������������������������� -
    D8C0 �������������������������������� -
    D8E0 �������������������������������� -
    D900 �������������������������������� -
    D920 �������������������������������� -
    D940 �������������������������������� -br />D960 �������������������������������� -
    D980 �������������������������������� -
    D9A0 �������������������������������� -
    D9C0 �������������������������������� -
    D9E0 �������������������������������� -
    DA00 �������������������������������� -
    DA20 �������������������������������� -
    DA40 �������������������������������� -
    DA60 �������������������������������� -
    DA80 �������������������������������� -
    DAA0 �������������������������������� -
    DAC0 �������������������������������� -
    DAE0 �������������������������������� -
    DB00 �������������������������������� -
    DB20 �������������������������������� -
    DB40 �������������������������������� -
    DB60 �������������������������������� -
    DB80 �������������������������������� -
    DBA0 �������������������������������� -
    DBC0 �������������������������������� -
    DBE0 �������������������������������� -
    DC00 �������������������������������� -
    DC20 �������������������������������� -
    DC40 �������������������������������� -
    DC60 �������������������������������� -
    DC80 �������������������������������� -
    DCA0 �������������������������������� -
    DCC0 �������������������������������� -
    DCE0 �������������������������������� -
    DD00 �������������������������������� -
    DD20 �������������������������������� -
    DD40 �������������������������������� -
    DD60 �������������������������������� -
    DD80 �������������������������������� -
    DDA0 �������������������������������� -
    DDC0 �������������������������������� -
    DDE0 �������������������������������� -
    DE00 �������������������������������� -
    DE20 �������������������������������� -
    DE40 �������������������������������� -
    DE60 �������������������������������� -
    DE80 �������������������������������� -
    DEA0 �������������������������������� -
    DEC0 �������������������������������� -
    DEE0 �������������������������������� -
    DF00 �������������������������������� -
    DF20 �������������������������������� -
    DF40 �������������������������������� -
    DF60 �������������������������������� -
    DF80 �������������������������������� -
    DFA0 �������������������������������� -
    DFC0 �������������������������������� -
    DFE0 �������������������������������� -
    E000  -
    E020  -
    E040  -
    E060  -
    E080  -
    E0A0  -
    E0C0  -
    E0E0  -
    E100  -
    E120  -
    E140  -
    E160  -
    E180  -
    E1A0  -
    E1C0  -
    E1E0  -
    E200  -
    E220  -
    E240  -
    E260  -
    E280  -
    E2A0  -
    E2C0  -
    E2E0  -
    E300  -
    E320  -
    E340  -
    E360  -
    E380  -
    E3A0  -
    E3C0  -
    E3E0  -
    E400  -
    E420  -
    E440  -
    E460  -
    E480  -
    E4A0  -
    E4C0  -
    E4E0  -
    E500  -
    E520  -
    E540  -
    E560  -
    E580  -
    E5A0  -
    E5C0  -
    E5E0  -
    E600  -
    E620  -
    E640  -
    E660  -
    E680  -
    E6A0  -
    E6C0  -
    E6E0  -
    E700  -
    E720  -
    E740  -
    E760  -
    E780  -
    E7A0  -
    E7C0  -
    E7E0  -
    E800  -
    E820  -
    E840  -
    E860  -
    E880  -
    E8A0  -
    E8C0  -
    E8E0  -
    E900  -
    E920  -
    E940  -
    E960  -
    E980  -
    E9A0  -
    E9C0  -
    E9E0  -
    EA00  -
    EA20  -
    EA40  -
    EA60  -
    EA80  -
    EAA0  -
    EAC0  -
    EAE0  -
    EB00  -
    EB20  -
    EB40  -
    EB60  -
    EB80  -
    EBA0  -
    EBC0  -
    EBE0  -
    EC00  -
    EC20  -
    EC40  -
    EC60  -
    EC80  -
    ECA0  -
    ECC0  -
    ECE0  -
    ED00  -
    ED20  -
    ED40  -
    ED60  -
    ED80  -
    EDA0  -
    EDC0  -
    EDE0  -
    EE00  -
    EE20  -
    EE40  -
    EE60  -
    EE80  -
    EEA0  -
    EEC0  -
    EEE0  -
    EF00  -
    EF20  -
    EF40  -
    EF60  -
    EF80  -
    EFA0  -
    EFC0  -
    EFE0  -
    F000  -
    F020  -
    F040  -
    F060  -
    F080  -
    F0A0  -
    F0C0  -
    F0E0  -
    F100  -
    F120  -
    F140  -
    F160  -
    F180  -
    F1A0  -
    F1C0  -
    F1E0  -
    F200  -
    F220  -
    F240  -
    F260  -
    F280  -
    F2A0  -
    F2C0  -
    F2E0  -
    F300  -
    F320  -
    F340  -
    F360  -
    F380  -
    F3A0  -
    F3C0  -
    F3E0  -
    F400  -
    F420  -
    F440  -
    F460  -
    F480  -
    F4A0  -
    F4C0  -
    F4E0  -
    F500  -
    F520  -
    F540  -
    F560  -
    F580  -
    F5A0  -
    F5C0  -
    F5E0  -
    F600  -
    F620  -
    F640  -
    F660  -
    F680  -
    F6A0  -
    F6C0  -
    F6E0  -
    F700  -
    F720  -
    F740  -
    F760  -
    F780  -
    F7A0  -
    F7C0  -
    F7E0  -
    F800  -
    F820  -
    F840  -
    F860  -
    F880  -
    F8A0  -
    F8C0  -
    F8E0  -
    F900 豈更車賈滑串句龜龜契金喇奈懶癩羅蘿螺裸邏樂洛烙珞落酪駱亂卵欄爛蘭 -
    F920 鸞嵐濫藍襤拉臘蠟廊朗浪狼郎來冷勞擄櫓爐盧老蘆虜路露魯鷺碌祿綠菉錄 -
    F940 鹿論壟弄籠聾牢磊賂雷壘屢樓淚漏累縷陋勒肋凜凌稜綾菱陵讀拏樂諾丹寧 -
    F960 怒率異北磻便復不泌數索參塞省葉說殺辰沈拾若掠略亮兩凉梁糧良諒量勵 -
    F980 呂女廬旅濾礪閭驪麗黎力曆歷轢年憐戀撚漣煉璉秊練聯輦蓮連鍊列劣咽烈 -
    F9A0 裂說廉念捻殮簾獵令囹寧嶺怜玲瑩羚聆鈴零靈領例禮醴隸惡了僚寮尿料樂 -
    F9C0 燎療蓼遼龍暈阮劉杻柳流溜琉留硫紐類六戮陸倫崙淪輪律慄栗率隆利吏履 -
    F9E0 易李梨泥理痢罹裏裡里離匿溺吝燐璘藺隣鱗麟林淋臨立笠粒狀炙識什茶刺 -
    FA00 切度拓糖宅洞暴輻行降見廓兀嗀﨎﨏塚﨑晴﨓﨔凞猪益礼神祥福靖精羽﨟 -
    FA20 蘒﨡諸﨣﨤逸都﨧﨨﨩飯飼館鶴郞隷侮僧免勉勤卑喝嘆器塀墨層屮悔慨憎 -
    FA40 懲敏既暑梅海渚漢煮爫琢碑社祉祈祐祖祝禍禎穀突節練縉繁署者臭艹艹著 -
    FA60 褐視謁謹賓贈辶逸難響頻恵𤋮舘﩮﩯並况全侀充冀勇勺喝啕喙嗢塚墳奄奔 -
    FA80 婢嬨廒廙彩徭惘慎愈憎慠懲戴揄搜摒敖晴朗望杖歹殺流滛滋漢瀞煮瞧爵犯 -
    FAA0 猪瑱甆画瘝瘟益盛直睊着磌窱節类絛練缾者荒華蝹襁覆視調諸請謁諾諭謹 -
    FAC0 變贈輸遲醙鉶陼難靖韛響頋頻鬒龜𢡊𢡄𣏕㮝䀘䀹𥉉𥳐𧻓齃龎﫚﫛﫜﫝﫞﫟 -
    FAE0 﫠﫡﫢﫣﫤﫥﫦﫧﫨﫩﫪﫫﫬﫭﫮﫯﫰﫱﫲﫳﫴﫵﫶﫷﫸﫹﫺﫻﫼﫽﫾﫿 -
    FB00 fffiflffifflſtst﬇﬈﬉﬊﬋﬌﬍﬎﬏﬐﬑﬒ﬓﬔﬕﬖﬗ﬘﬙﬚﬛﬜יִﬞײַ -
    FB20 ﬠﬡﬢﬣﬤﬥﬦﬧﬨ﬩שׁשׂשּׁשּׂאַאָאּבּגּדּהּוּזּ﬷טּיּךּכּלּ﬽מּ﬿ -
    FB40 נּסּ﭂ףּפּ﭅צּקּרּשּתּוֹבֿכֿפֿﭏﭐﭑﭒﭓﭔﭕﭖﭗﭘﭙﭚﭛﭜﭝﭞﭟ -
    FB60 ﭠﭡﭢﭣﭤﭥﭦﭧﭨﭩﭪﭫﭬﭭﭮﭯﭰﭱﭲﭳﭴﭵﭶﭷﭸﭹﭺﭻﭼﭽﭾﭿ -
    FB80 ﮀﮁﮂﮃﮄﮅﮆﮇﮈﮉﮊﮋﮌﮍﮎﮏﮐﮑﮒﮓﮔﮕﮖﮗﮘﮙﮚﮛﮜﮝﮞﮟ -
    FBA0 ﮠﮡﮢﮣﮤﮥﮦﮧﮨﮩﮪﮫﮬﮭﮮﮯﮰﮱ﮲﮳﮴﮵﮶﮷﮸﮹﮺﮻﮼﮽﮾﮿ -
    FBC0 ﯀﯁﯂﯃﯄﯅﯆﯇﯈﯉﯊﯋﯌﯍﯎﯏﯐﯑﯒ﯓﯔﯕﯖﯗﯘﯙﯚﯛﯜﯝﯞﯟ -
    FBE0 ﯠﯡﯢﯣﯤﯥﯦﯧﯨﯩﯪﯫﯬﯭﯮﯯﯰﯱﯲﯳﯴﯵﯶﯷﯸﯹﯺﯻﯼﯽﯾﯿ -
    FC00 ﰀﰁﰂﰃﰄﰅﰆﰇﰈﰉﰊﰋﰌﰍﰎﰏﰐﰑﰒﰓﰔﰕﰖﰗﰘﰙﰚﰛﰜﰝﰞﰟ -
    FC20 ﰠﰡﰢﰣﰤﰥﰦﰧﰨﰩﰪﰫﰬﰭﰮﰯﰰﰱﰲﰳﰴﰵﰶﰷﰸﰹﰺﰻﰼﰽﰾﰿ -
    FC40 ﱀﱁﱂﱃﱄﱅﱆﱇﱈﱉﱊﱋﱌﱍﱎﱏﱐﱑﱒﱓﱔﱕﱖﱗﱘﱙﱚﱛﱜﱝﱞﱟ -
    FC60 ﱠﱡﱢﱣﱤﱥﱦﱧﱨﱩﱪﱫﱬﱭﱮﱯﱰﱱﱲﱳﱴﱵﱶﱷﱸﱹﱺﱻﱼﱽﱾﱿ -
    FC80 ﲀﲁﲂﲃﲄﲅﲆﲇﲈﲉﲊﲋﲌﲍﲎﲏﲐﲑﲒﲓﲔﲕﲖﲗﲘﲙﲚﲛﲜﲝﲞﲟ -
    FCA0 ﲠﲡﲢﲣﲤﲥﲦﲧﲨﲩﲪﲫﲬﲭﲮﲯﲰﲱﲲﲳﲴﲵﲶﲷﲸﲹﲺﲻﲼﲽﲾﲿ -
    FCC0 ﳀﳁﳂﳃﳄﳅﳆﳇﳈﳉﳊﳋﳌﳍﳎﳏﳐﳑﳒﳓﳔﳕﳖﳗﳘﳙﳚﳛﳜﳝﳞﳟ -
    FCE0 ﳠﳡﳢﳣﳤﳥﳦﳧﳨﳩﳪﳫﳬﳭﳮﳯﳰﳱﳲﳳﳴﳵﳶﳷﳸﳹﳺﳻﳼﳽﳾﳿ -
    FD00 ﴀﴁﴂﴃﴄﴅﴆﴇﴈﴉﴊﴋﴌﴍﴎﴏﴐﴑﴒﴓﴔﴕﴖﴗﴘﴙﴚﴛﴜﴝﴞﴟ -
    FD20 ﴠﴡﴢﴣﴤﴥﴦﴧﴨﴩﴪﴫﴬﴭﴮﴯﴰﴱﴲﴳﴴﴵﴶﴷﴸﴹﴺﴻﴼﴽ﴾﴿ -
    FD40 ﵀﵁﵂﵃﵄﵅﵆﵇﵈﵉﵊﵋﵌﵍﵎﵏ﵐﵑﵒﵓﵔﵕﵖﵗﵘﵙﵚﵛﵜﵝﵞﵟ -
    FD60 ﵠﵡﵢﵣﵤﵥﵦﵧﵨﵩﵪﵫﵬﵭﵮﵯﵰﵱﵲﵳﵴﵵﵶﵷﵸﵹﵺﵻﵼﵽﵾﵿ -
    FD80 ﶀﶁﶂﶃﶄﶅﶆﶇﶈﶉﶊﶋﶌﶍﶎﶏ﶐﶑ﶒﶓﶔﶕﶖﶗﶘﶙﶚﶛﶜﶝﶞﶟ -
    FDA0 ﶠﶡﶢﶣﶤﶥﶦﶧﶨﶩﶪﶫﶬﶭﶮﶯﶰﶱﶲﶳﶴﶵﶶﶷﶸﶹﶺﶻﶼﶽﶾﶿ -
    FDC0 ﷀﷁﷂﷃﷄﷅﷆﷇ﷈﷉﷊﷋﷌﷍﷎﷏﷐﷑﷒﷓﷔﷕﷖﷗﷘﷙﷚﷛﷜﷝﷞﷟ -
    FDE0 ﷠﷡﷢﷣﷤﷥﷦﷧﷨﷩﷪﷫﷬﷭﷮﷯ﷰﷱﷲﷳﷴﷵﷶﷷﷸﷹﷺﷻ﷼﷽﷾﷿ -
    FE00 ︀︁︂︃︄︅︆︇︈︉︊︋︌︍︎️︐︑︒︓︔︕︖︗︘︙︚︛︜︝︞︟ -
    FE20 ︧︨︩︪︫︬︭︠︡︢︣︤︥︦︮︯︰︱︲︳︴︵︶︷︸︹︺︻︼︽︾︿ -
    FE40 ﹀﹁﹂﹃﹄﹅﹆﹇﹈﹉﹊﹋﹌﹍﹎﹏﹐﹑﹒﹓﹔﹕﹖﹗﹘﹙﹚﹛﹜﹝﹞﹟ -
    FE60 ﹠﹡﹢﹣﹤﹥﹦﹧﹨﹩﹪﹫﹬﹭﹮﹯ﹰﹱﹲﹳﹴ﹵ﹶﹷﹸﹹﹺﹻﹼﹽﹾﹿ -
    FE80 ﺀﺁﺂﺃﺄﺅﺆﺇﺈﺉﺊﺋﺌﺍﺎﺏﺐﺑﺒﺓﺔﺕﺖﺗﺘﺙﺚﺛﺜﺝﺞﺟ -
    FEA0 ﺠﺡﺢﺣﺤﺥﺦﺧﺨﺩﺪﺫﺬﺭﺮﺯﺰﺱﺲﺳﺴﺵﺶﺷﺸﺹﺺﺻﺼﺽﺾﺿ -
    FEC0 ﻀﻁﻂﻃﻄﻅﻆﻇﻈﻉﻊﻋﻌﻍﻎﻏﻐﻑﻒﻓﻔﻕﻖﻗﻘﻙﻚﻛﻜﻝﻞﻟ -
    FEE0 ﻠﻡﻢﻣﻤﻥﻦﻧﻨﻩﻪﻫﻬﻭﻮﻯﻰﻱﻲﻳﻴﻵﻶﻷﻸﻹﻺﻻﻼ﻽﻾ -
    FF00 ＀!"#$%&'()*+,-./0123456789:;<=>? -
    FF20 @ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_ -
    FF40 `abcdefghijklmnopqrstuvwxyz{|}~⦅ -
    FF60 ⦆。「」、・ヲァィゥェォャュョッーアイウエオカキクケコサシスセソ -
    FF80 タチツテトナニヌネノハヒフヘホマミムメモヤユヨラリルレロワン゙゚ -
    FFA0 ᅠᄀᄁᆪᄂᆬᆭᄃᄄᄅᆰᆱᆲᆳᆴᆵᄚᄆᄇᄈᄡᄉᄊᄋᄌᄍᄎᄏᄐᄑᄒ﾿ -
    FFC0 ￀￁ᅡᅢᅣᅤᅥᅦ￈￉ᅧᅨᅩᅪᅫᅬ￐￑ᅭᅮᅯᅰᅱᅲ￘￙ᅳᅴᅵ￝￞￟ -
    FFE0 ¢£¬ ̄¦¥₩￧│←↑→↓■○￯￰￱￲￳￴￵￶￷￸� - \ No newline at end of file diff --git a/www/test/encoding_utf-8_w3.html b/www/test/encoding_utf-8_w3.html deleted file mode 100644 index 568e6bc..0000000 --- a/www/test/encoding_utf-8_w3.html +++ /dev/null @@ -1,220 +0,0 @@ - - - - UTF-8 test file - - - -

    Original by Markus Kuhn, adapted for HTML by Martin Dürst.

    -
     
    -UTF-8 encoded sample plain-text file
    -‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
    - 
    -Markus Kuhn [ˈmaʳkÊŠs kuËn] <mkuhn@acm.org> — 1999-08-20
    - 
    - 
    -The ASCII compatible UTF-8 encoding of ISO 10646 and Unicode
    -plain-text files is defined in RFC 2279 and in ISO 10646-1 Annex R.
    - 
    - 
    -Using Unicode/UTF-8, you can write in emails and source code things such as
    - 
    -Mathematics and Sciences:
    - 
    -  ∮ Eâ‹…da = Q,  n → ∞, ∑ f(i) = ∠g(i), ∀x∈â„: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),
    - 
    -  ℕ ⊆ ℕ₀ ⊂ ℤ ⊂ ℚ ⊂ ℠⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),
    - 
    -  2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm
    - 
    -Linguistics and dictionaries:
    - 
    -  ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn
    -  Y [ˈÊpsilÉ”n], Yen [jÉ›n], Yoga [ˈjoËgÉ‘]
    - 
    -APL:
    - 
    -  ((Vâ³V)=â³â´V)/Vâ†,V    ⌷â†â³â†’â´âˆ†âˆ‡âŠƒâ€¾âŽâ•âŒˆ
    - 
    -Nicer typography in plain text files:
    - 
    -  â•”â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•—
    -  â•‘                                          â•‘
    -  ║   • ‘single’ and “double†quotes         ║
    -  â•‘                                          â•‘
    -  ║   • Curly apostrophes: “We’ve been here†║
    -  â•‘                                          â•‘
    -  ║   • Latin-1 apostrophe and accents: '´`  ║
    -  â•‘                                          â•‘
    -  ║   • ‚deutsche‘ „Anführungszeichen“       ║
    -  â•‘                                          â•‘
    -  ║   • †, ‡, ‰, •, 3–4, —, −5/+5, ™, …      ║
    -  â•‘                                          â•‘
    -  ║   • ASCII safety test: 1lI|, 0OD, 8B     ║
    -  ║                      ╭─────────╮         ║
    -  ║   • the euro symbol: │ 14.95 € │         ║
    -  ║                      ╰─────────╯         ║
    -  â•šâ•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
    - 
    -Greek (in Polytonic):
    - 
    -  The Greek anthem:
    - 
    -  Σὲ γνωÏίζω ἀπὸ τὴν κόψη
    -  τοῦ σπαθιοῦ τὴν Ï„ÏομεÏá½µ,
    -  σὲ γνωÏίζω ἀπὸ τὴν ὄψη
    -  ποὺ μὲ βία μετÏάει Ï„á½´ γῆ.
    - 
    -  ᾿Απ᾿ τὰ κόκκαλα βγαλμένη
    -  τῶν ῾Ελλήνων Ï„á½° ἱεÏá½±
    -  καὶ σὰν Ï€Ïῶτα ἀνδÏειωμένη
    -  χαῖÏε, ὦ χαῖÏε, ᾿ΕλευθεÏιά!
    - 
    -  From a speech of Demosthenes in the 4th century BC:
    - 
    -  Οá½Ï‡á½¶ ταá½Ï„á½° παÏίσταταί μοι γιγνώσκειν, ὦ ἄνδÏες ᾿Αθηναῖοι,
    -  ὅταν τ᾿ εἰς Ï„á½° Ï€Ïάγματα ἀποβλέψω καὶ ὅταν Ï€Ïὸς τοὺς
    -  λόγους οὓς ἀκούω· τοὺς μὲν Î³á½°Ï Î»á½¹Î³Î¿Ï…Ï‚ πεÏὶ τοῦ
    -  τιμωÏήσασθαι Φίλιππον á½Ïῶ γιγνομένους, Ï„á½° δὲ Ï€Ïάγματ᾿ 
    -  εἰς τοῦτο Ï€Ïοήκοντα,  ὥσθ᾿ ὅπως μὴ πεισόμεθ᾿ αá½Ï„οὶ
    -  Ï€ÏότεÏον κακῶς σκέψασθαι δέον. οá½Î´á½³Î½ οὖν ἄλλο μοι δοκοῦσιν
    -  οἱ Ï„á½° τοιαῦτα λέγοντες á¼¢ τὴν ὑπόθεσιν, πεÏὶ ἧς βουλεύεσθαι,
    -  οá½Ï‡á½¶ τὴν οὖσαν παÏιστάντες ὑμῖν á¼Î¼Î±Ïτάνειν. á¼Î³á½¼ δέ, ὅτι μέν
    -  ποτ᾿ á¼Î¾á¿†Î½ τῇ πόλει καὶ Ï„á½° αὑτῆς ἔχειν ἀσφαλῶς καὶ Φίλιππον
    -  τιμωÏήσασθαι, καὶ μάλ᾿ ἀκÏιβῶς οἶδα· á¼Ï€á¾¿ á¼Î¼Î¿á¿¦ γάÏ, οὠπάλαι
    -  γέγονεν ταῦτ᾿ ἀμφότεÏα· νῦν μέντοι πέπεισμαι τοῦθ᾿ ἱκανὸν
    -  Ï€Ïολαβεῖν ἡμῖν εἶναι τὴν Ï€Ïώτην, ὅπως τοὺς συμμάχους
    -  σώσομεν. á¼á½°Î½ Î³á½°Ï Ï„Î¿á¿¦Ï„Î¿ βεβαίως ὑπάÏξῃ, τότε καὶ πεÏὶ τοῦ
    -  τίνα τιμωÏήσεταί τις καὶ ὃν Ï„Ïόπον á¼Î¾á½³ÏƒÏ„αι σκοπεῖν· Ï€Ïὶν δὲ
    -  τὴν á¼€Ïχὴν á½€Ïθῶς ὑποθέσθαι, μάταιον ἡγοῦμαι πεÏὶ τῆς
    -  τελευτῆς á½Î½Ï„ινοῦν ποιεῖσθαι λόγον.
    - 
    -  Δημοσθένους, Γ´ ᾿Ολυνθιακὸς
    - 
    -Georgian:
    - 
    -  From a Unicode conference invitation:
    - 
    -  გთხáƒáƒ•áƒ— áƒáƒ®áƒšáƒáƒ•áƒ” გáƒáƒ˜áƒáƒ áƒáƒ— რეგისტრáƒáƒªáƒ˜áƒ Unicode-ის მეáƒáƒ—ე სáƒáƒ”რთáƒáƒ¨áƒáƒ áƒ˜áƒ¡áƒ
    -  კáƒáƒœáƒ¤áƒ”რენციáƒáƒ–ე დáƒáƒ¡áƒáƒ¡áƒ¬áƒ áƒ”ბáƒáƒ“, რáƒáƒ›áƒ”ლიც გáƒáƒ˜áƒ›áƒáƒ áƒ—ებრ10-12 მáƒáƒ áƒ¢áƒ¡,
    -  ქ. მáƒáƒ˜áƒœáƒªáƒ¨áƒ˜, გერმáƒáƒœáƒ˜áƒáƒ¨áƒ˜. კáƒáƒœáƒ¤áƒ”რენცირშეჰკრებს ერთáƒáƒ“ მსáƒáƒ¤áƒšáƒ˜áƒáƒ¡
    -  ექსპერტებს ისეთ დáƒáƒ áƒ’ებში რáƒáƒ’áƒáƒ áƒ˜áƒªáƒáƒ ინტერნეტი დრUnicode-ი,
    -  ინტერნáƒáƒªáƒ˜áƒáƒœáƒáƒšáƒ˜áƒ–áƒáƒªáƒ˜áƒ დრლáƒáƒ™áƒáƒšáƒ˜áƒ–áƒáƒªáƒ˜áƒ, Unicode-ის გáƒáƒ›áƒáƒ§áƒ”ნებáƒ
    -  áƒáƒžáƒ”რáƒáƒªáƒ˜áƒ£áƒš სისტემებსáƒ, დრგáƒáƒ›áƒáƒ§áƒ”ნებით პრáƒáƒ’რáƒáƒ›áƒ”ბში, შრიფტებში,
    -  ტექსტების დáƒáƒ›áƒ£áƒ¨áƒáƒ•áƒ”ბáƒáƒ¡áƒ დრმრáƒáƒ•áƒáƒšáƒ”ნáƒáƒ•áƒáƒœ კáƒáƒ›áƒžáƒ˜áƒ£áƒ¢áƒ”რულ სისტემებში.
    - 
    -Russian:
    - 
    -  From a Unicode conference invitation:
    - 
    -  ЗарегиÑтрируйтеÑÑŒ ÑÐµÐ¹Ñ‡Ð°Ñ Ð½Ð° ДеÑÑтую Международную Конференцию по
    -  Unicode, ÐºÐ¾Ñ‚Ð¾Ñ€Ð°Ñ ÑоÑтоитÑÑ 10-12 марта 1997 года в Майнце в Германии.
    -  ÐšÐ¾Ð½Ñ„ÐµÑ€ÐµÐ½Ñ†Ð¸Ñ Ñоберет широкий круг ÑкÑпертов по  вопроÑам глобального
    -  Интернета и Unicode, локализации и интернационализации, воплощению и
    -  применению Unicode в различных операционных ÑиÑтемах и программных
    -  приложениÑÑ…, шрифтах, верÑтке и многоÑзычных компьютерных ÑиÑтемах.
    - 
    -Thai (UCS Level 2):
    - 
    -  Excerpt from a poetry on The Romance of The Three Kingdoms (a Chinese
    -  classic 'San Gua'):
    - 
    -  [----------------------------|------------------------]
    -    ๠à¹à¸œà¹ˆà¸™à¸”ินฮั่นเสื่อมโทรมà¹à¸ªà¸™à¸ªà¸±à¸‡à¹€à¸§à¸Š  พระปà¸à¹€à¸à¸¨à¸à¸­à¸‡à¸šà¸¹à¹Šà¸à¸¹à¹‰à¸‚ึ้นใหม่
    -  สิบสองà¸à¸©à¸±à¸•à¸£à¸´à¸¢à¹Œà¸à¹ˆà¸­à¸™à¸«à¸™à¹‰à¸²à¹à¸¥à¸–ัดไป       สององค์ไซร้โง่เขลาเบาปัà¸à¸à¸²
    -    ทรงนับถือขันทีเป็นที่พึ่ง           บ้านเมืองจึงวิปริตเป็นนัà¸à¸«à¸™à¸²
    -  โฮจิ๋นเรียà¸à¸—ัพทั่วหัวเมืองมา         หมายจะฆ่ามดชั่วตัวสำคัà¸
    -    เหมือนขับไสไล่เสือจาà¸à¹€à¸„หา      รับหมาป่าเข้ามาเลยอาสัà¸
    -  à¸à¹ˆà¸²à¸¢à¸­à¹‰à¸­à¸‡à¸­à¸¸à¹‰à¸™à¸¢à¸¸à¹à¸¢à¸à¹ƒà¸«à¹‰à¹à¸•à¸à¸à¸±à¸™          ใช้สาวนั้นเป็นชนวนชื่นชวนใจ
    -    พลันลิฉุยà¸à¸¸à¸¢à¸à¸µà¸à¸¥à¸±à¸šà¸à¹ˆà¸­à¹€à¸«à¸•à¸¸          ช่างอาเพศจริงหนาฟ้าร้องไห้
    -  ต้องรบราฆ่าฟันจนบรรลัย           ฤๅหาใครค้ำชูà¸à¸¹à¹‰à¸šà¸£à¸£à¸¥à¸±à¸‡à¸à¹Œ ฯ
    - 
    -  (The above is a two-column text. If combining characters are handled
    -  correctly, the lines of the second column should be aligned with the
    -  | character above.)
    - 
    -Ethiopian:
    - 
    -  Proverbs in the Amharic language:
    - 
    -  ሰማይ አይታረስ ንጉሥ አይከሰስá¢
    -  ብላ ካለአእንደአባቴ በቆመጠáŠá¢
    -  ጌጥ ያለቤቱ á‰áˆáŒ¥áŠ“ áŠá‹á¢
    -  ደሀ በሕáˆáˆ™ ቅቤ ባይጠጣ ንጣት በገደለá‹á¢
    -  የአá ወለáˆá‰³ በቅቤ አይታሽáˆá¢
    -  አይጥ በበላ ዳዋ ተመታá¢
    -  ሲተረጉሙ ይደረáŒáˆ™á¢
    -  ቀስ በቀስᥠዕንá‰áˆ‹áˆ በእáŒáˆ© ይሄዳáˆá¢
    -  ድር ቢያብር አንበሳ ያስርá¢
    -  ሰዠእንደቤቱ እንጅ እንደ ጉረቤቱ አይተዳደርáˆá¢
    -  እáŒá‹œáˆ­ የከáˆá‰°á‹áŠ• ጉሮሮ ሳይዘጋዠአይድርáˆá¢
    -  የጎረቤት ሌባᥠቢያዩት ይስቅ ባያዩት ያጠáˆá‰…á¢
    -  ሥራ ከመáታት áˆáŒ„ን ላá‹á‰³á‰µá¢
    -  ዓባይ ማደሪያ የለá‹á¥ áŒáŠ•á‹µ á‹­á‹ž ይዞራáˆá¢
    -  የእስላሠአገሩ መካ የአሞራ አገሩ ዋርካá¢
    -  ተንጋሎ ቢተበተመáˆáˆ¶ ባá‰á¢
    -  ወዳጅህ ማር ቢሆን ጨርስህ አትላሰá‹á¢
    -  እáŒáˆ­áˆ…ን በáራሽህ áˆáŠ­ ዘርጋá¢
    - 
    -Runes:
    - 
    -  ᚻᛖ ᚳᚹᚫᚦ ᚦᚫᛠᚻᛖ ᛒᚢᛞᛖ áš©áš¾ ᚦᚫᛗ ᛚᚪᚾᛞᛖ ᚾᚩᚱᚦᚹᛖᚪᚱᛞᚢᛗ áš¹á›áš¦ ᚦᚪ ᚹᛖᛥᚫ
    - 
    -  (Old English, which transcribed into Latin reads 'He cwaeth that he
    -  bude thaem lande northweardum with tha Westsae.' and means 'He said
    -  that he lived in the northern land near the Western Sea.')
    - 
    -Braille:
    - 
    -  â¡Œâ â §â ‘ â ¼â â ’  â¡â œâ ‡â ‘⠹⠰⠎ ⡣⠕⠌
    - 
    -  â¡â œâ ‡â ‘â ¹ â ºâ â Ž ⠙⠑â â ™â ’ â žâ • ⠃⠑⠛⠔ ⠺⠊⠹⠲ ⡹⠻⠑ â Šâ Ž â â • ⠙⠳⠃⠞
    -  â ±â â žâ ‘⠧⠻ â â ƒâ ³â ž â ¹â â žâ ² ⡹⠑ ⠗⠑⠛⠊⠌⠻ â •â ‹ ⠙⠊⠎ ⠃⠥⠗⠊â â ‡ â ºâ â Ž
    -  â Žâ Šâ ›â â « ⠃⠹ ⠹⠑ ⠊⠇⠻⠛⠹â â â â ‚ ⠹⠑ ⠊⠇⠻⠅⠂ ⠹⠑ â ¥â â ™â »â žâ â …⠻⠂
    -  â â â ™ ⠹⠑ â ¡â Šâ ‘â ‹ â â ³â —â â »â ² ⡎⠊⠗⠕⠕⠛⠑ â Žâ Šâ ›â â « â Šâ žâ ² â¡â â ™
    -  ⡎⠊⠗⠕⠕⠛⠑⠰⠎ â â â â ‘ â ºâ â Ž ⠛⠕⠕⠙ â ¥â â •â  â °â¡¡â â â ›â ‘â ‚ â ‹â •â — â â â ¹â ¹â ”â › ⠙⠑ 
    -  â ¡â •â Žâ ‘ â žâ • â â ¥â ž ⠙⠊⠎ â ™â â â ™ â žâ •â ²
    - 
    -  ⡕⠇⠙ â¡â œâ ‡â ‘â ¹ â ºâ â Ž â â Ž ⠙⠑â â ™ â â Ž â  â ™â •â •â —â ¤â â â Šâ ‡â ²
    - 
    -  â¡â ”⠙⠖ â¡Š ⠙⠕â â °â ž â â ‘â â  â žâ • â Žâ â ¹ â ¹â â ž â¡Š â …â â ªâ ‚ â •â ‹ â â ¹
    -  â ªâ  â …â â ªâ ‡â «â ›â ‘â ‚ â ±â â ž ⠹⠻⠑ â Šâ Ž â â œâ žâ Šâ Šâ ¥â ‡â œâ ‡â ¹ ⠙⠑â â ™ â â ƒâ ³â ž
    -  â  â ™â •â •â —â ¤â â â Šâ ‡â ² â¡Š â â Šâ £â ž â ™â â §â ‘ ⠃⠑⠲ ⠔⠊⠇⠔⠫⠂ â â ¹â Žâ ‘⠇⠋⠂ â žâ •
    -  ⠗⠑⠛⠜⠙ â  â Šâ •â ‹â ‹â ”â ¤â â â Šâ ‡ â â Ž ⠹⠑ ⠙⠑â â ™â ‘â Œ â â Šâ ‘â Šâ ‘ â •â ‹ â Šâ —â •â â â •â â ›â »â ¹ 
    -  â ” ⠹⠑ â žâ —â â ™â ‘â ² ⡃⠥⠞ ⠹⠑ â ºâ Šâ Žâ ™â •â  â •â ‹ ⠳⠗ â â â Šâ ‘⠌⠕⠗⠎ 
    -  â Šâ Ž â ” ⠹⠑ â Žâ Šâ â Šâ ‡â ‘â † â â â ™ â â ¹ â ¥â â ™â â ‡â ‡â ªâ « â ™â â â ™â Ž
    -  â ©â â ‡â ‡ â â •â ž ⠙⠊⠌⠥⠗⠃ â Šâ žâ ‚ â •â — ⠹⠑ â¡Šâ ³â â žâ —⠹⠰⠎ ⠙⠕â â ‘ â ‹â •â —â ² ⡹⠳
    -  ⠺⠊⠇⠇ ⠹⠻⠑⠋⠕⠗⠑ â â »â â Šâ ž â â ‘ â žâ • â —â ‘â â ‘â â žâ ‚ â ‘â â â ™â â žâ Šâ Šâ â ‡â ‡â ¹â ‚ â ¹â â ž
    -  â¡â œâ ‡â ‘â ¹ â ºâ â Ž â â Ž ⠙⠑â â ™ â â Ž â  â ™â •â •â —â ¤â â â Šâ ‡â ²
    - 
    -  (The first couple of paragraphs of "A Christmas Carol" by Dickens)
    - 
    -Compact font selection example text:
    - 
    -  ABCDEFGHIJKLMNOPQRSTUVWXYZ /0123456789
    -  abcdefghijklmnopqrstuvwxyz £©µÀÆÖÞßéöÿ
    -  –—‘“â€â€žâ€ â€¢â€¦â€°â„¢Å“ŠŸž€ ΑΒΓΔΩαβγδω ÐБВГДабвгд
    -  ∀∂∈â„∧∪≡∞ ↑↗↨↻⇣ â”┼╔╘░►☺♀ ï¬ï¿½â‘€â‚‚ἠḂӥẄÉËâŽ×Ô±áƒ
    - 
    -Greetings in various languages:
    - 
    -  Hello world, ΚαλημέÏα κόσμε, コンニãƒãƒ
    - 
    -Box drawing alignment tests:                                          â–ˆ
    -                                                                      â–‰
    -  â•”â•â•â•¦â•â•â•—  ┌──┬──┠ ╭──┬──╮  ╭──┬──╮  â”â”â”┳â”â”┓  ┎┒â”┑   â•·  â•» â”┯┓ ┌┰┠   â–Š ╱╲╱╲╳╳╳
    -  ║┌─╨─â”â•‘  │╔â•â•§â•â•—│  │╒â•â•ªâ•â••â”‚  │╓─â•â”€â•–│  ┃┌─╂─â”┃  ┗╃╄┙  ╶┼╴╺╋╸┠┼┨ â”╋┥    â–‹ ╲╱╲╱╳╳╳
    -  ║│╲ ╱│║  │║   ║│  ││ │ ││  │║ ┃ ║│  ┃│ â•¿ │┃  â”╅╆┓   ╵  ╹ â”—â”·â”› └┸┘    â–Œ ╱╲╱╲╳╳╳
    -  â• â•¡ ╳ â•žâ•£  ├╢   ╟┤  ├┼─┼─┼┤  ├╫─╂─╫┤  ┣┿╾┼╼┿┫  ┕┛┖┚     ┌┄┄┠╎ â”┅┅┓ ┋ ■╲╱╲╱╳╳╳
    -  ║│╱ ╲│║  │║   ║│  ││ │ ││  │║ ┃ ║│  ┃│ ╽ │┃  ░░▒▒▓▓██ ┊  ┆ ╎ ╠ ┇ ┋ ▎
    -  ║└─╥─┘║  │╚â•â•¤â•â•â”‚  │╘â•â•ªâ•â•›â”‚  │╙─╀─╜│  ┃└─╂─┘┃  ░░▒▒▓▓██ ┊  ┆ â•Ž â•  ┇ ┋ â–
    -  â•šâ•â•â•©â•â•â•  └──┴──┘  ╰──┴──╯  ╰──┴──╯  â”—â”â”â”»â”â”â”›           └╌╌┘ â•Ž â”—â•â•â”› ┋  â–▂▃▄▅▆▇█
    - 
    -
    - - \ No newline at end of file diff --git a/www/test/image_background.html b/www/test/image_background.html deleted file mode 100644 index a3b2e3f..0000000 --- a/www/test/image_background.html +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - Images with background-color, background-image, border, margin and padding - - - - - -

    Lorem ipsum dolor sit amet

    -

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec at -odio vitae libero tempus convallis. Cum sociis natoque penatibus et -magnis dis parturient montes, nascetur ridiculus mus. Vestibulum purus -mauris, dapibus eu, sagittis quis, sagittis quis, mi. Morbi fringilla -massa quis velit. Curabitur metus massa, semper mollis, molestie vel, -adipiscing nec, massa. Phasellus vitae felis sed lectus dapibus -facilisis. In ultrices sagittis ipsum. In at est. Integer iaculis -turpis vel magna. Cras eu est. Integer porttitor ligula a -tellus. Curabitur accumsan ipsum a velit. Sed laoreet lectus quis -leo. Nulla pellentesque molestie ante. Quisque vestibulum est id -justo. Ut pellentesque ante in neque.

    - -

    Curabitur ut diam eu dui vestibulum pharetra. Nam pellentesque, justo -non hendrerit venenatis, mi orci pretium mi, et vehicula leo arcu quis -diam. Nullam mattis laoreet quam. Morbi mollis sem ut tellus. Nam mi -massa, lobortis eu, sollicitudin et, iaculis et, massa. Maecenas purus -mauris, luctus sit amet, pharetra in, facilisis sit amet, elit. Nullam -vel erat tempus purus molestie suscipit. Vestibulum odio lorem, -sollicitudin non, volutpat sit amet, tincidunt vel, nunc. Nulla quis -ante vestibulum odio feugiat facilisis. Proin lorem nisl, viverra at, -rhoncus quis, semper nec, mi. Donec euismod enim vitae velit. Nulla -sed lectus. Vivamus placerat, lacus sed vehicula sagittis, arcu massa -adipiscing lorem, bibendum luctus nisl tortor vitae leo.

    - -

    Etiam a mauris. Proin justo elit, accumsan sit amet, tempus et, -blandit id, tellus. Morbi varius, nisi id iaculis aliquam, lacus -ligula facilisis velit, ac pharetra ipsum augue a massa. Etiam rhoncus -commodo orci. Mauris ullamcorper sagittis turpis. Nullam magna libero, -sagittis sed, auctor faucibus, accumsan vitae, urna. Pellentesque -volutpat. Aliquam sapien ipsum, eleifend nec, imperdiet vitae, -consectetuer id, quam. Donec a urna. Suspendisse sit amet -velit. Curabitur quis nisi id dui viverra ornare. Sed condimentum enim -quis tortor. Ut condimentum, magna non tempus tincidunt, leo nibh -molestie tellus, vitae convallis dolor ante sed ante. Nunc et -metus. Phasellus ultricies. Fusce faucibus tortor sit amet mauris.

    - -

    Aliquam enim. Duis et diam. Praesent porta, mauris quis pellentesque -volutpat, erat elit vulputate eros, vitae pulvinar augue velit sit -amet sem. Fusce eu urna eu nisi condimentum posuere. Vivamus sed -felis. Duis eget urna vitae eros interdum dignissim. Proin justo eros, -eleifend in, porttitor in, malesuada non, neque. Etiam sed -augue. Nulla sit amet magna. Lorem ipsum dolor sit amet, consectetuer -adipiscing elit. Mauris facilisis. Curabitur massa magna, pulvinar a, -nonummy eget, egestas vitae, mauris. Quisque vel elit sit amet lorem -malesuada facilisis. Vestibulum porta, metus sit amet egestas -interdum, urna justo euismod erat, id tristique urna leo quis -nibh. Morbi non erat.

    - -

    Cras fringilla, nulla id egestas elementum, augue nunc iaculis nibh, -ac adipiscing nibh justo id tortor. Donec vel orci a nisi ultricies -aliquet. Nunc urna quam, adipiscing molestie, vehicula non, -condimentum non, magna. Integer magna. Donec quam metus, pulvinar id, -suscipit eget, euismod ac, orci. Nulla facilisi. Nullam nec -mauris. Morbi in mi. Etiam urna lectus, pulvinar ac, sollicitudin eu, -euismod ac, lectus. Fusce elit. Sed ultricies odio ac felis.

    - - - diff --git a/www/test/image_basic.html b/www/test/image_basic.html deleted file mode 100644 index 30b071b..0000000 --- a/www/test/image_basic.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - -
    - -
    -The PHP 5 HTML to PDF converter -
    - - diff --git a/www/test/image_bmp.html b/www/test/image_bmp.html deleted file mode 100644 index 3496740..0000000 --- a/www/test/image_bmp.html +++ /dev/null @@ -1,128 +0,0 @@ - - - - - BMP image test suite - - - - - -

    - This test suite was grabbed from http://wvnvaxa.wvnet.edu/vmswww/bmp.html. -

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    BMPPNG
    1 bit (2 color)
    4 bit
    8 bit
    16 bit
    24 bit
    32 bit
    4 bit compressed
    8 bit compressed
    16 bit 555 bitfield
    16 bit 565 bitfield
    32 bit 888 bitfield
    32 bit 888 bitfield version 4
    32 bit version 5
    32 bit transparent version 4
    - -

    -Note that as of December 2005, Mozilla and Internet Explorer -do not support transparent BMP images. -

    - -

    -The images (except for the last three and the OS/2 version 2 image) -are from Jason Summer's BMP Suite. -

    - - \ No newline at end of file diff --git a/www/test/image_datauri.html b/www/test/image_datauri.html deleted file mode 100644 index 513c4e1..0000000 --- a/www/test/image_datauri.html +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - -

    - Embedded <img> :
    - -

    - -

    - Normal <img> :
    - -

    - -

    - Embedded background image -

    - -

    - Normal background image -

    - - - - diff --git a/www/test/image_dimensions.html b/www/test/image_dimensions.html deleted file mode 100644 index 83a9f30..0000000 --- a/www/test/image_dimensions.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - -

    All these images should be nearly of the same size

    - -width=150 -
    - -
    - -width: 40mm -
    - -
    - -width: 4cm -
    - -
    - -width: 21% -
    - -
    - -width: 150px -
    - -
    - -width: 110pt -
    - -
    - - diff --git a/www/test/image_gif.html b/www/test/image_gif.html deleted file mode 100644 index 52845b7..0000000 --- a/www/test/image_gif.html +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - -

    - diff --git a/www/test/image_remote.html b/www/test/image_remote.html deleted file mode 100644 index 106d138..0000000 --- a/www/test/image_remote.html +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - -
    -

    Remote CSS & Image Test

    -

    Note: DOMPDF_ENABLE_REMOTE must be enabled for this test to work.

    - -

    CSS: https://github.com/dompdf/dompdf/raw/master/www/style.css

    -

    - Remote image with extension:
    - -

    -

    - Remote image without extension:
    - -

    -

    - Remote image with unknown extension:
    - -

    -

    - Remote image with unknown extension and params:
    - -

    -

    - Remote image with unknown extension and advanced params:
    - -

    -
    - - diff --git a/www/test/image_transparent_gif.html b/www/test/image_transparent_gif.html deleted file mode 100644 index 145d687..0000000 --- a/www/test/image_transparent_gif.html +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - -
    - -
    - -
    - -
    - - diff --git a/www/test/image_transparent_png.html b/www/test/image_transparent_png.html deleted file mode 100644 index 686f554..0000000 --- a/www/test/image_transparent_png.html +++ /dev/null @@ -1,189 +0,0 @@ - - - - - PNG transparency test - - - - - -

    PNG transparency test

    - -Examples from http://entropymine.com/jason/testbed/pngtrans/ - -

    -Not all possible results are shown; there are too many combinations -of background colors and shapes of the opaque region. However, I -intend to include every result that actually occurs in a mainstream -browser. If I am missing any, please -let me know. - -

    It's come to my attention that my images which show how -alpha transparency should look are not quite perfect -in regard to precisely how transparent they are at various points. -Rather than try to modify this page to test gamma -correction issues as well, I've created a -separate test page for that. - -

    -This test page was constructed by -Jason Summers. -Comments may be emailed to jason1@pobox.com.
    -There are -other test -pages listed at the PNG web site. - - - - - -

    - -

    Alpha and palette transparency

    - -

    Expected result:
    -[Test image] -

    - -

    (T1) 8-bit palette, includes background color:
    -[Test image] -

    - -

    (T2) 8-bit palette, no background color:
    -[Test image] -

    - -

    (T3) 32-bit RGBA, includes background color:
    -[Test image] -

    - -

    (T4) 32-bit RGBA, no background color:
    -[Test image] -

    - -

    (T5) 64-bit RGBA, includes background color:
    -[Test image] -

    - -

    (T6) 64-bit RGBA, no background color:
    -[Test image] -

    - -

    RGB binary transparency

    - -

    Expected result:
    -[Test image] -

    - -

    (T7) 24-bit RGB, binary transparency, includes background color:
    -[Test image] -

    - -

    (T8) 24-bit RGB, binary transparency, no background color:
    -[Test image] -

    - -

    (T9) 48-bit RGB, binary transparency, includes background color:
    -[Test image] -

    - -

    (T10) 48-bit RGB, binary transparency, no background color:
    -[Test image] -

    - - -

    Grayscale alpha transparency

    - -

    Expected result:
    -[Test image] -

    - -

    (G1) 16 bpp grayscale (8 gray + 8 alpha), includes background color:
    -[Test image] -

    - -

    (G2) 16 bpp grayscale (8 gray + 8 alpha), no background color:
    -[Test image] -

    - -

    (G3) 32 bpp grayscale (16 gray + 16 alpha), includes background color:
    -[Test image] -

    - -

    (G4) 32 bpp grayscale (16 gray + 16 alpha), no background color:
    -[Test image] - - -

    Grayscale binary transparency

    - -

    Expected result:
    -[Test image] -

    - -

    (G5) 8 bpp grayscale (8 gray), includes background color:
    -[Test image] -

    - -

    (G6) 8 bpp grayscale (8 gray), no background color:
    -[Test image] -

    - -

    (G7) 16 bpp grayscale (16 gray), includes background color:
    -[Test image] -

    - -

    (G8) 16 bpp grayscale (16 gray), no background color:
    -[Test image] - -

    Miscellaneous

    - -

    (M1) 8-bit palette, no transparency, includes background color:
    -Expected result:
    -[Test image]
    -[Test image] -

    - -

    (M2) (4-bit) palette, binary transparency only, no background color:
    -Expected result:
    -[Test image]
    -[Test image]
    -(This tests a few things that may have slipped through the cracks.) -

    - - \ No newline at end of file diff --git a/www/test/image_variants.html b/www/test/image_variants.html deleted file mode 100644 index e91d42d..0000000 --- a/www/test/image_variants.html +++ /dev/null @@ -1,149 +0,0 @@ - - - - - - - - -
    - -

    40% of box width:

    -
    - -
    - -

    multiple identical images jpg:

    - - - - -

    multiple identical images gif (will be recoded to png by dompdf):

    - - - - -

    multiple identical images png:

    - - - - -

    local png image with alpha channel:

    - - -

    Attention!

    - -

    For external images to work, the following configuration is required:

    -
    dompdf_config.inc.php :
    - -
    define("DOMPDF_ENABLE_REMOTE", true);
    - -

    external png Image with alpha channel:

    - - -

    external image, dynamically created with id in url parameter at end of parameter(.jpg):

    - - -

    external image, dynamically created with id in url parameter not at end of parameter (.jpg):

    - - -

    external Image without file extension (.jpg):

    - - -

    Background images

    -
    - - - - - - -
    -

    paragraph link no-repeat position:default

    -

    paragraph text no-repeat position:left-top; more text text more text text bla bla sdfjkhs sdfsjksdfks sdfkjsfsf skjfh ksjdfhsd

    -

    paragraph text no-repeat position:left-center; more text text more text text bla bla sdfjkhs sdfsjksdfks sdfkjsfsf skjfh ksjdfhsd

    -

    -The PHP 5 HTML to PDF converter -

    - -
    - - diff --git a/www/test/images/bmp/test1.bmp b/www/test/images/bmp/test1.bmp deleted file mode 100644 index a720347..0000000 Binary files a/www/test/images/bmp/test1.bmp and /dev/null differ diff --git a/www/test/images/bmp/test1.png b/www/test/images/bmp/test1.png deleted file mode 100644 index 3cdc498..0000000 Binary files a/www/test/images/bmp/test1.png and /dev/null differ diff --git a/www/test/images/bmp/test16.bmp b/www/test/images/bmp/test16.bmp deleted file mode 100644 index a5a3195..0000000 Binary files a/www/test/images/bmp/test16.bmp and /dev/null differ diff --git a/www/test/images/bmp/test16.png b/www/test/images/bmp/test16.png deleted file mode 100644 index 32a1cb3..0000000 Binary files a/www/test/images/bmp/test16.png and /dev/null differ diff --git a/www/test/images/bmp/test16bf555.bmp b/www/test/images/bmp/test16bf555.bmp deleted file mode 100644 index 639a57f..0000000 Binary files a/www/test/images/bmp/test16bf555.bmp and /dev/null differ diff --git a/www/test/images/bmp/test16bf555.png b/www/test/images/bmp/test16bf555.png deleted file mode 100644 index 32a1cb3..0000000 Binary files a/www/test/images/bmp/test16bf555.png and /dev/null differ diff --git a/www/test/images/bmp/test16bf565.bmp b/www/test/images/bmp/test16bf565.bmp deleted file mode 100644 index cb0ea24..0000000 Binary files a/www/test/images/bmp/test16bf565.bmp and /dev/null differ diff --git a/www/test/images/bmp/test16bf565.png b/www/test/images/bmp/test16bf565.png deleted file mode 100644 index 6223790..0000000 Binary files a/www/test/images/bmp/test16bf565.png and /dev/null differ diff --git a/www/test/images/bmp/test24.bmp b/www/test/images/bmp/test24.bmp deleted file mode 100644 index d6d9e6a..0000000 Binary files a/www/test/images/bmp/test24.bmp and /dev/null differ diff --git a/www/test/images/bmp/test24.png b/www/test/images/bmp/test24.png deleted file mode 100644 index 46211a8..0000000 Binary files a/www/test/images/bmp/test24.png and /dev/null differ diff --git a/www/test/images/bmp/test32.bmp b/www/test/images/bmp/test32.bmp deleted file mode 100644 index 9524f76..0000000 Binary files a/www/test/images/bmp/test32.bmp and /dev/null differ diff --git a/www/test/images/bmp/test32.png b/www/test/images/bmp/test32.png deleted file mode 100644 index 46211a8..0000000 Binary files a/www/test/images/bmp/test32.png and /dev/null differ diff --git a/www/test/images/bmp/test32bf.bmp b/www/test/images/bmp/test32bf.bmp deleted file mode 100644 index 0f41534..0000000 Binary files a/www/test/images/bmp/test32bf.bmp and /dev/null differ diff --git a/www/test/images/bmp/test32bf.png b/www/test/images/bmp/test32bf.png deleted file mode 100644 index 46211a8..0000000 Binary files a/www/test/images/bmp/test32bf.png and /dev/null differ diff --git a/www/test/images/bmp/test32bfv4.bmp b/www/test/images/bmp/test32bfv4.bmp deleted file mode 100644 index 3706037..0000000 Binary files a/www/test/images/bmp/test32bfv4.bmp and /dev/null differ diff --git a/www/test/images/bmp/test32bfv4.png b/www/test/images/bmp/test32bfv4.png deleted file mode 100644 index 0525bc7..0000000 Binary files a/www/test/images/bmp/test32bfv4.png and /dev/null differ diff --git a/www/test/images/bmp/test32v5.bmp b/www/test/images/bmp/test32v5.bmp deleted file mode 100644 index 8ad3cfa..0000000 Binary files a/www/test/images/bmp/test32v5.bmp and /dev/null differ diff --git a/www/test/images/bmp/test32v5.png b/www/test/images/bmp/test32v5.png deleted file mode 100644 index 659164e..0000000 Binary files a/www/test/images/bmp/test32v5.png and /dev/null differ diff --git a/www/test/images/bmp/test4.bmp b/www/test/images/bmp/test4.bmp deleted file mode 100644 index a064f66..0000000 Binary files a/www/test/images/bmp/test4.bmp and /dev/null differ diff --git a/www/test/images/bmp/test4.png b/www/test/images/bmp/test4.png deleted file mode 100644 index 29f1c34..0000000 Binary files a/www/test/images/bmp/test4.png and /dev/null differ diff --git a/www/test/images/bmp/test4os2v2.bmp b/www/test/images/bmp/test4os2v2.bmp deleted file mode 100644 index 874a277..0000000 Binary files a/www/test/images/bmp/test4os2v2.bmp and /dev/null differ diff --git a/www/test/images/bmp/test4os2v2.png b/www/test/images/bmp/test4os2v2.png deleted file mode 100644 index a939a51..0000000 Binary files a/www/test/images/bmp/test4os2v2.png and /dev/null differ diff --git a/www/test/images/bmp/test8.bmp b/www/test/images/bmp/test8.bmp deleted file mode 100644 index 3be9a20..0000000 Binary files a/www/test/images/bmp/test8.bmp and /dev/null differ diff --git a/www/test/images/bmp/test8.png b/www/test/images/bmp/test8.png deleted file mode 100644 index 4787031..0000000 Binary files a/www/test/images/bmp/test8.png and /dev/null differ diff --git a/www/test/images/bmp/test8os2.bmp b/www/test/images/bmp/test8os2.bmp deleted file mode 100644 index f7f9f57..0000000 Binary files a/www/test/images/bmp/test8os2.bmp and /dev/null differ diff --git a/www/test/images/bmp/test8os2.png b/www/test/images/bmp/test8os2.png deleted file mode 100644 index 4787031..0000000 Binary files a/www/test/images/bmp/test8os2.png and /dev/null differ diff --git a/www/test/images/bmp/testcompress4.bmp b/www/test/images/bmp/testcompress4.bmp deleted file mode 100644 index 7239fa6..0000000 Binary files a/www/test/images/bmp/testcompress4.bmp and /dev/null differ diff --git a/www/test/images/bmp/testcompress4.png b/www/test/images/bmp/testcompress4.png deleted file mode 100644 index 29f1c34..0000000 Binary files a/www/test/images/bmp/testcompress4.png and /dev/null differ diff --git a/www/test/images/bmp/testcompress8.bmp b/www/test/images/bmp/testcompress8.bmp deleted file mode 100644 index 082f7f4..0000000 Binary files a/www/test/images/bmp/testcompress8.bmp and /dev/null differ diff --git a/www/test/images/bmp/testcompress8.png b/www/test/images/bmp/testcompress8.png deleted file mode 100644 index 4787031..0000000 Binary files a/www/test/images/bmp/testcompress8.png and /dev/null differ diff --git a/www/test/images/bmp/trans.bmp b/www/test/images/bmp/trans.bmp deleted file mode 100644 index edd5ed8..0000000 Binary files a/www/test/images/bmp/trans.bmp and /dev/null differ diff --git a/www/test/images/bmp/trans.png b/www/test/images/bmp/trans.png deleted file mode 100644 index 653d44a..0000000 Binary files a/www/test/images/bmp/trans.png and /dev/null differ diff --git a/www/test/images/cmyk_test2.jpg b/www/test/images/cmyk_test2.jpg deleted file mode 100644 index 9b98229..0000000 Binary files a/www/test/images/cmyk_test2.jpg and /dev/null differ diff --git a/www/test/images/dokuwiki-128.png b/www/test/images/dokuwiki-128.png deleted file mode 100644 index b2306ac..0000000 Binary files a/www/test/images/dokuwiki-128.png and /dev/null differ diff --git a/www/test/images/dompdf_simple.png b/www/test/images/dompdf_simple.png deleted file mode 100644 index fd3265e..0000000 Binary files a/www/test/images/dompdf_simple.png and /dev/null differ diff --git a/www/test/images/goldengate.jpg b/www/test/images/goldengate.jpg deleted file mode 100644 index 4280274..0000000 Binary files a/www/test/images/goldengate.jpg and /dev/null differ diff --git a/www/test/images/green.gif b/www/test/images/green.gif deleted file mode 100644 index 151a83c..0000000 Binary files a/www/test/images/green.gif and /dev/null differ diff --git a/www/test/images/grid-36.gif b/www/test/images/grid-36.gif deleted file mode 100644 index 4bf1e2c..0000000 Binary files a/www/test/images/grid-36.gif and /dev/null differ diff --git a/www/test/images/html.png b/www/test/images/html.png deleted file mode 100644 index 672cbce..0000000 Binary files a/www/test/images/html.png and /dev/null differ diff --git a/www/test/images/no_extension b/www/test/images/no_extension deleted file mode 100644 index fd3265e..0000000 Binary files a/www/test/images/no_extension and /dev/null differ diff --git a/www/test/images/pdf.png b/www/test/images/pdf.png deleted file mode 100644 index 638066d..0000000 Binary files a/www/test/images/pdf.png and /dev/null differ diff --git a/www/test/images/php.gif b/www/test/images/php.gif deleted file mode 100644 index f352c73..0000000 Binary files a/www/test/images/php.gif and /dev/null differ diff --git a/www/test/images/png.png b/www/test/images/png.png deleted file mode 100644 index f0b5b00..0000000 Binary files a/www/test/images/png.png and /dev/null differ diff --git a/www/test/images/png/gray16a.png b/www/test/images/png/gray16a.png deleted file mode 100644 index 946006b..0000000 Binary files a/www/test/images/png/gray16a.png and /dev/null differ diff --git a/www/test/images/png/gray16a_bk.png b/www/test/images/png/gray16a_bk.png deleted file mode 100644 index afbb9c8..0000000 Binary files a/www/test/images/png/gray16a_bk.png and /dev/null differ diff --git a/www/test/images/png/gray16b.png b/www/test/images/png/gray16b.png deleted file mode 100644 index 46aca9c..0000000 Binary files a/www/test/images/png/gray16b.png and /dev/null differ diff --git a/www/test/images/png/gray16b_bk.png b/www/test/images/png/gray16b_bk.png deleted file mode 100644 index 6797708..0000000 Binary files a/www/test/images/png/gray16b_bk.png and /dev/null differ diff --git a/www/test/images/png/gray8a.png b/www/test/images/png/gray8a.png deleted file mode 100644 index df7cefc..0000000 Binary files a/www/test/images/png/gray8a.png and /dev/null differ diff --git a/www/test/images/png/gray8a_bk.png b/www/test/images/png/gray8a_bk.png deleted file mode 100644 index fcb8483..0000000 Binary files a/www/test/images/png/gray8a_bk.png and /dev/null differ diff --git a/www/test/images/png/gray8b.png b/www/test/images/png/gray8b.png deleted file mode 100644 index 9ad1ab2..0000000 Binary files a/www/test/images/png/gray8b.png and /dev/null differ diff --git a/www/test/images/png/gray8b_bk.png b/www/test/images/png/gray8b_bk.png deleted file mode 100644 index ca246e8..0000000 Binary files a/www/test/images/png/gray8b_bk.png and /dev/null differ diff --git a/www/test/images/png/pal.png b/www/test/images/png/pal.png deleted file mode 100644 index 7fec549..0000000 Binary files a/www/test/images/png/pal.png and /dev/null differ diff --git a/www/test/images/png/pal_bk.png b/www/test/images/png/pal_bk.png deleted file mode 100644 index 1923b03..0000000 Binary files a/www/test/images/png/pal_bk.png and /dev/null differ diff --git a/www/test/images/png/pal_bk_notrns.png b/www/test/images/png/pal_bk_notrns.png deleted file mode 100644 index b89efae..0000000 Binary files a/www/test/images/png/pal_bk_notrns.png and /dev/null differ diff --git a/www/test/images/png/palb.png b/www/test/images/png/palb.png deleted file mode 100644 index 65a8351..0000000 Binary files a/www/test/images/png/palb.png and /dev/null differ diff --git a/www/test/images/png/result_16ns.gif b/www/test/images/png/result_16ns.gif deleted file mode 100644 index 55c4a39..0000000 Binary files a/www/test/images/png/result_16ns.gif and /dev/null differ diff --git a/www/test/images/png/result_1trns.gif b/www/test/images/png/result_1trns.gif deleted file mode 100644 index 8a98130..0000000 Binary files a/www/test/images/png/result_1trns.gif and /dev/null differ diff --git a/www/test/images/png/result_bla.gif b/www/test/images/png/result_bla.gif deleted file mode 100644 index c29b13f..0000000 Binary files a/www/test/images/png/result_bla.gif and /dev/null differ diff --git a/www/test/images/png/result_dith.gif b/www/test/images/png/result_dith.gif deleted file mode 100644 index b76f484..0000000 Binary files a/www/test/images/png/result_dith.gif and /dev/null differ diff --git a/www/test/images/png/result_gra.gif b/www/test/images/png/result_gra.gif deleted file mode 100644 index fb348ff..0000000 Binary files a/www/test/images/png/result_gra.gif and /dev/null differ diff --git a/www/test/images/png/result_mag.gif b/www/test/images/png/result_mag.gif deleted file mode 100644 index fa72b52..0000000 Binary files a/www/test/images/png/result_mag.gif and /dev/null differ diff --git a/www/test/images/png/result_magthr1.gif b/www/test/images/png/result_magthr1.gif deleted file mode 100644 index 478250f..0000000 Binary files a/www/test/images/png/result_magthr1.gif and /dev/null differ diff --git a/www/test/images/png/result_no.gif b/www/test/images/png/result_no.gif deleted file mode 100644 index e64739a..0000000 Binary files a/www/test/images/png/result_no.gif and /dev/null differ diff --git a/www/test/images/png/result_nsbug.gif b/www/test/images/png/result_nsbug.gif deleted file mode 100644 index 52a87b3..0000000 Binary files a/www/test/images/png/result_nsbug.gif and /dev/null differ diff --git a/www/test/images/png/result_ok.gif b/www/test/images/png/result_ok.gif deleted file mode 100644 index f869988..0000000 Binary files a/www/test/images/png/result_ok.gif and /dev/null differ diff --git a/www/test/images/png/result_oprbug.gif b/www/test/images/png/result_oprbug.gif deleted file mode 100644 index 5fac687..0000000 Binary files a/www/test/images/png/result_oprbug.gif and /dev/null differ diff --git a/www/test/images/png/result_thr1.gif b/www/test/images/png/result_thr1.gif deleted file mode 100644 index 66ee0f6..0000000 Binary files a/www/test/images/png/result_thr1.gif and /dev/null differ diff --git a/www/test/images/png/result_thr128.gif b/www/test/images/png/result_thr128.gif deleted file mode 100644 index 998fb74..0000000 Binary files a/www/test/images/png/result_thr128.gif and /dev/null differ diff --git a/www/test/images/png/result_thr255.gif b/www/test/images/png/result_thr255.gif deleted file mode 100644 index a7b719c..0000000 Binary files a/www/test/images/png/result_thr255.gif and /dev/null differ diff --git a/www/test/images/png/result_whi.gif b/www/test/images/png/result_whi.gif deleted file mode 100644 index 74ddabc..0000000 Binary files a/www/test/images/png/result_whi.gif and /dev/null differ diff --git a/www/test/images/png/result_yel.gif b/www/test/images/png/result_yel.gif deleted file mode 100644 index 681d088..0000000 Binary files a/www/test/images/png/result_yel.gif and /dev/null differ diff --git a/www/test/images/png/result_yelthr1.gif b/www/test/images/png/result_yelthr1.gif deleted file mode 100644 index 6049157..0000000 Binary files a/www/test/images/png/result_yelthr1.gif and /dev/null differ diff --git a/www/test/images/png/resultb_bla.gif b/www/test/images/png/resultb_bla.gif deleted file mode 100644 index bcbd4d9..0000000 Binary files a/www/test/images/png/resultb_bla.gif and /dev/null differ diff --git a/www/test/images/png/resultb_bug.gif b/www/test/images/png/resultb_bug.gif deleted file mode 100644 index 3789f2b..0000000 Binary files a/www/test/images/png/resultb_bug.gif and /dev/null differ diff --git a/www/test/images/png/resultb_mag.gif b/www/test/images/png/resultb_mag.gif deleted file mode 100644 index f051aa4..0000000 Binary files a/www/test/images/png/resultb_mag.gif and /dev/null differ diff --git a/www/test/images/png/resultb_moz2.gif b/www/test/images/png/resultb_moz2.gif deleted file mode 100644 index 312f734..0000000 Binary files a/www/test/images/png/resultb_moz2.gif and /dev/null differ diff --git a/www/test/images/png/resultb_no.gif b/www/test/images/png/resultb_no.gif deleted file mode 100644 index 9cb7801..0000000 Binary files a/www/test/images/png/resultb_no.gif and /dev/null differ diff --git a/www/test/images/png/resultb_ok.gif b/www/test/images/png/resultb_ok.gif deleted file mode 100644 index 2398125..0000000 Binary files a/www/test/images/png/resultb_ok.gif and /dev/null differ diff --git a/www/test/images/png/resultb_whi.gif b/www/test/images/png/resultb_whi.gif deleted file mode 100644 index a21af08..0000000 Binary files a/www/test/images/png/resultb_whi.gif and /dev/null differ diff --git a/www/test/images/png/resultb_yel.gif b/www/test/images/png/resultb_yel.gif deleted file mode 100644 index 969db3d..0000000 Binary files a/www/test/images/png/resultb_yel.gif and /dev/null differ diff --git a/www/test/images/png/resultg_bla.gif b/www/test/images/png/resultg_bla.gif deleted file mode 100644 index c4ecc4e..0000000 Binary files a/www/test/images/png/resultg_bla.gif and /dev/null differ diff --git a/www/test/images/png/resultg_dgr.gif b/www/test/images/png/resultg_dgr.gif deleted file mode 100644 index 17fbb6c..0000000 Binary files a/www/test/images/png/resultg_dgr.gif and /dev/null differ diff --git a/www/test/images/png/resultg_lgr.gif b/www/test/images/png/resultg_lgr.gif deleted file mode 100644 index 68914a2..0000000 Binary files a/www/test/images/png/resultg_lgr.gif and /dev/null differ diff --git a/www/test/images/png/resultg_no.gif b/www/test/images/png/resultg_no.gif deleted file mode 100644 index 3e3619a..0000000 Binary files a/www/test/images/png/resultg_no.gif and /dev/null differ diff --git a/www/test/images/png/resultga.gif b/www/test/images/png/resultga.gif deleted file mode 100644 index 33ce2f8..0000000 Binary files a/www/test/images/png/resultga.gif and /dev/null differ diff --git a/www/test/images/png/resultgb.gif b/www/test/images/png/resultgb.gif deleted file mode 100644 index 76ecb54..0000000 Binary files a/www/test/images/png/resultgb.gif and /dev/null differ diff --git a/www/test/images/png/resultgb_dgr.gif b/www/test/images/png/resultgb_dgr.gif deleted file mode 100644 index 06413c5..0000000 Binary files a/www/test/images/png/resultgb_dgr.gif and /dev/null differ diff --git a/www/test/images/png/resultgb_no.gif b/www/test/images/png/resultgb_no.gif deleted file mode 100644 index a2453e4..0000000 Binary files a/www/test/images/png/resultgb_no.gif and /dev/null differ diff --git a/www/test/images/png/resultpb_no.gif b/www/test/images/png/resultpb_no.gif deleted file mode 100644 index 72e61f8..0000000 Binary files a/www/test/images/png/resultpb_no.gif and /dev/null differ diff --git a/www/test/images/png/rgb16_t.png b/www/test/images/png/rgb16_t.png deleted file mode 100644 index 37682e9..0000000 Binary files a/www/test/images/png/rgb16_t.png and /dev/null differ diff --git a/www/test/images/png/rgb16_t_bk.png b/www/test/images/png/rgb16_t_bk.png deleted file mode 100644 index 0505b2f..0000000 Binary files a/www/test/images/png/rgb16_t_bk.png and /dev/null differ diff --git a/www/test/images/png/rgb8_t.png b/www/test/images/png/rgb8_t.png deleted file mode 100644 index 3fd10c8..0000000 Binary files a/www/test/images/png/rgb8_t.png and /dev/null differ diff --git a/www/test/images/png/rgb8_t_bk.png b/www/test/images/png/rgb8_t_bk.png deleted file mode 100644 index 89ce912..0000000 Binary files a/www/test/images/png/rgb8_t_bk.png and /dev/null differ diff --git a/www/test/images/png/rgba16.png b/www/test/images/png/rgba16.png deleted file mode 100644 index 8a10587..0000000 Binary files a/www/test/images/png/rgba16.png and /dev/null differ diff --git a/www/test/images/png/rgba16_bk.png b/www/test/images/png/rgba16_bk.png deleted file mode 100644 index 05a6db1..0000000 Binary files a/www/test/images/png/rgba16_bk.png and /dev/null differ diff --git a/www/test/images/png/rgba8.png b/www/test/images/png/rgba8.png deleted file mode 100644 index 495d8c3..0000000 Binary files a/www/test/images/png/rgba8.png and /dev/null differ diff --git a/www/test/images/png/rgba8_bk.png b/www/test/images/png/rgba8_bk.png deleted file mode 100644 index 10a1ee5..0000000 Binary files a/www/test/images/png/rgba8_bk.png and /dev/null differ diff --git a/www/test/images/png/stripe.gif b/www/test/images/png/stripe.gif deleted file mode 100644 index e3fa3b3..0000000 Binary files a/www/test/images/png/stripe.gif and /dev/null differ diff --git a/www/test/images/smiley.png b/www/test/images/smiley.png deleted file mode 100644 index f5d3a0a..0000000 Binary files a/www/test/images/smiley.png and /dev/null differ diff --git a/www/test/images/unknown_extension.foo b/www/test/images/unknown_extension.foo deleted file mode 100644 index fd3265e..0000000 Binary files a/www/test/images/unknown_extension.foo and /dev/null differ diff --git a/www/test/images/vblank.gif b/www/test/images/vblank.gif deleted file mode 100644 index 332034b..0000000 Binary files a/www/test/images/vblank.gif and /dev/null differ diff --git a/www/test/images/what_ordered.gif b/www/test/images/what_ordered.gif deleted file mode 100644 index 63de445..0000000 Binary files a/www/test/images/what_ordered.gif and /dev/null differ diff --git a/www/test/page_pages.html b/www/test/page_pages.html deleted file mode 100644 index a9f2fe0..0000000 --- a/www/test/page_pages.html +++ /dev/null @@ -1,201 +0,0 @@ - - - - - - - - - -

    Lorem ipsum dolor sit amet

    -

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec at -odio vitae libero tempus convallis. Cum sociis natoque penatibus et -magnis dis parturient montes, nascetur ridiculus mus. Vestibulum purus -mauris, dapibus eu, sagittis quis, sagittis quis, mi. Morbi fringilla -massa quis velit. Curabitur metus massa, semper mollis, molestie vel, -adipiscing nec, massa. Phasellus vitae felis sed lectus dapibus -facilisis. In ultrices sagittis ipsum. In at est. Integer iaculis -turpis vel magna. Cras eu est. Integer porttitor ligula a -tellus. Curabitur accumsan ipsum a velit. Sed laoreet lectus quis -leo. Nulla pellentesque molestie ante. Quisque vestibulum est id -justo. Ut pellentesque ante in neque.

    - -

    Curabitur ut diam eu dui vestibulum pharetra. Nam pellentesque, justo -non hendrerit venenatis, mi orci pretium mi, et vehicula leo arcu quis -diam. Nullam mattis laoreet quam. Morbi mollis sem ut tellus. Nam mi -massa, lobortis eu, sollicitudin et, iaculis et, massa. Maecenas purus -mauris, luctus sit amet, pharetra in, facilisis sit amet, elit. Nullam -vel erat tempus purus molestie suscipit. Vestibulum odio lorem, -sollicitudin non, volutpat sit amet, tincidunt vel, nunc. Nulla quis -ante vestibulum odio feugiat facilisis. Proin lorem nisl, viverra at, -rhoncus quis, semper nec, mi. Donec euismod enim vitae velit. Nulla -sed lectus. Vivamus placerat, lacus sed vehicula sagittis, arcu massa -adipiscing lorem, bibendum luctus nisl tortor vitae leo.

    - -

    Etiam a mauris. Proin justo elit, accumsan sit amet, tempus et, -blandit id, tellus. Morbi varius, nisi id iaculis aliquam, lacus -ligula facilisis velit, ac pharetra ipsum augue a massa. Etiam rhoncus -commodo orci. Mauris ullamcorper sagittis turpis. Nullam magna libero, -sagittis sed, auctor faucibus, accumsan vitae, urna. Pellentesque -volutpat. Aliquam sapien ipsum, eleifend nec, imperdiet vitae, -consectetuer id, quam. Donec a urna. Suspendisse sit amet -velit. Curabitur quis nisi id dui viverra ornare. Sed condimentum enim -quis tortor. Ut condimentum, magna non tempus tincidunt, leo nibh -molestie tellus, vitae convallis dolor ante sed ante. Nunc et -metus. Phasellus ultricies. Fusce faucibus tortor sit amet mauris.

    - -

    Aliquam enim. Duis et diam. Praesent porta, mauris quis pellentesque -volutpat, erat elit vulputate eros, vitae pulvinar augue velit sit -amet sem. Fusce eu urna eu nisi condimentum posuere. Vivamus sed -felis. Duis eget urna vitae eros interdum dignissim. Proin justo eros, -eleifend in, porttitor in, malesuada non, neque. Etiam sed -augue. Nulla sit amet magna. Lorem ipsum dolor sit amet, consectetuer -adipiscing elit. Mauris facilisis. Curabitur massa magna, pulvinar a, -nonummy eget, egestas vitae, mauris. Quisque vel elit sit amet lorem -malesuada facilisis. Vestibulum porta, metus sit amet egestas -interdum, urna justo euismod erat, id tristique urna leo quis -nibh. Morbi non erat.

    - -

    Cras fringilla, nulla id egestas elementum, augue nunc iaculis nibh, -ac adipiscing nibh justo id tortor. Donec vel orci a nisi ultricies -aliquet. Nunc urna quam, adipiscing molestie, vehicula non, -condimentum non, magna. Integer magna. Donec quam metus, pulvinar id, -suscipit eget, euismod ac, orci. Nulla facilisi. Nullam nec -mauris. Morbi in mi. Etiam urna lectus, pulvinar ac, sollicitudin eu, -euismod ac, lectus. Fusce elit. Sed ultricies odio ac felis.

    - -

    Cras iaculis. Nulla facilisi.

    -

    Cras iaculis. Nulla facilisi. Fusce vitae arcu. Integer lectus mauris, -ornare vel, accumsan eget, scelerisque vel, nunc. Maecenas justo urna, -volutpat vel, vehicula vel, ullamcorper nec, odio. Suspendisse laoreet -nisi sed erat. Cras convallis sollicitudin sapien. Phasellus ac erat -eu mi rutrum rhoncus. Morbi et velit. Morbi odio nisi, pharetra eget, -sollicitudin sed, aliquam at, nisl. Quisque euismod diam in -sapien. Integer accumsan urna in risus.

    - -

    Proin sit amet nisl. Phasellus dui ipsum, laoreet a, pulvinar id, -fringilla ut, libero. In hac habitasse platea dictumst. Maecenas mi -magna, cursus sed, rutrum eget, molestie nec, dui. Suspendisse -lacus. Vivamus nibh urna, accumsan sit amet, gravida sed, convallis a, -leo. Cras sollicitudin orci sit amet eros. Pellentesque eu odio et -velit tempor dignissim. Morbi vehicula malesuada enim. Pellentesque -tincidunt, tellus ac fringilla tempor, justo libero interdum nunc, eu -sollicitudin tortor augue nec tellus. Nullam eget leo quis tellus -gravida faucibus. Nam gravida. Curabitur rhoncus egestas -nunc. Curabitur mollis, nisi sed suscipit gravida, enim felis interdum -justo, vel accumsan magna nunc ut libero. Ut fermentum. Fusce luctus, -est sit amet feugiat lobortis, nisl eros bibendum libero, ut suscipit -felis ligula in massa. Proin congue elit et nisi. Cras ac nisl. Nunc -ullamcorper neque vel diam.

    - -

    Ut pellentesque arcu ac lectus.

    -

    Sed ac lorem. Ut pellentesque arcu ac lectus. Cum sociis natoque -penatibus et magnis dis parturient montes, nascetur ridiculus -mus. Pellentesque ultrices metus sollicitudin pede. Donec fermentum -est a velit fringilla mollis. Duis ligula. Fusce viverra laoreet -odio. Suspendisse sit amet ligula. Maecenas nunc velit, sagittis eu, -bibendum eu, placerat at, nibh. Praesent ut erat eget nisi gravida -imperdiet. Quisque vitae sapien. Ut eros.

    - -

    Donec eros ligula, dignissim vel, ultricies id, mattis in, massa. Duis -lobortis dui nec orci. Sed ullamcorper metus non massa. Aliquam eget -mauris ac nulla elementum posuere. Sed porta, augue vitae rhoncus -aliquet, felis quam eleifend est, vitae rutrum metus arcu vel -lorem. Proin laoreet, mauris sit amet aliquet eleifend, nisl sem -molestie nisi, eu varius eros ligula non erat. Integer ac -sem. Suspendisse lectus. Aliquam erat volutpat. Fusce sit amet leo -faucibus erat molestie ultrices. Maecenas lacinia lectus eget -dui. Etiam porta porttitor ante. Phasellus sit amet lacus adipiscing -enim mollis iaculis. Fusce congue, nulla a commodo aliquam, erat dui -fermentum dui, pellentesque faucibus orci enim at mauris. Pellentesque -a diam porta magna tempor posuere. Donec lorem.

    - -

    Sed viverra aliquam turpis. Aliquam lacus. Duis id massa. Nullam -ante. Suspendisse condimentum. Donec adipiscing, felis vel semper -sollicitudin, lacus justo pretium est, sed blandit pede risus eu -ante. Praesent ante nulla, fringilla id, ultrices et, feugiat a, -metus. Proin ac velit a metus suscipit fermentum. Integer aliquet. Sed -sapien nulla, placerat at, rutrum at, condimentum quis, libero. In -accumsan, tellus nec tincidunt malesuada, pede arcu commodo ipsum, ac -mattis tortor urna vitae enim. Aenean nonummy, mauris eget commodo -bibendum, augue sem ultrices nunc, eget rhoncus metus erat placerat -lectus. Aliquam mollis lectus in justo. Vivamus iaculis lacus sit amet -ligula. Etiam consectetuer convallis diam. Curabitur sollicitudin, -felis eu vehicula scelerisque, nisl urna aliquam orci, sit amet -laoreet mi turpis id ligula. Donec at enim non nulla adipiscing -dapibus. Aenean nisl.

    - -

    Ut in lacus nec enim volutpat pellentesque. Integer euismod. In odio -eros, malesuada in, mattis vel, tempor nec, sem. In libero tellus, -varius vitae, bibendum in, elementum quis, nisl. Duis tortor. Etiam at -justo. Pellentesque facilisis mauris non nunc. Praesent eros mi, -dapibus eget, placerat ac, lobortis quis, sem. Nulla rhoncus -turpis. Nulla vitae mi. Proin id massa. Nunc eros.

    - -

    Aliquam molestie pulvinar ligula.

    -

    Vestibulum dui risus, varius ut, semper et, consequat ultrices, -felis. Pellentesque iaculis urna in velit. Ut pharetra. Nunc -fringilla, nisi vitae fringilla placerat, enim justo semper erat, -mollis feugiat leo neque eu sem. Vestibulum orci urna, suscipit a, -accumsan nec, fringilla in, risus. Nullam ante. Nullam nec -eros. Nullam varius. Nulla facilisi. In auctor libero in -metus. Aliquam porttitor congue eros. Nulla facilisi. Mauris euismod -turpis ut felis. Ut nunc nisl, cursus quis, eleifend at, viverra -bibendum, lacus. Donec consequat lacus eu sapien. Fusce pulvinar -lectus quis nunc. In hac habitasse platea dictumst.

    - -

    Aliquam molestie pulvinar ligula. Maecenas imperdiet, urna eget -ultrices adipiscing, nibh ante elementum neque, id molestie massa quam -ut nunc. Nullam porta. Phasellus a magna in sem volutpat -viverra. Quisque aliquet nunc ac turpis. Mauris dolor enim, viverra -rutrum, placerat et, laoreet et, justo. In id nulla. Donec -erat. Phasellus nec mi sed velit mollis cursus. Vestibulum -tincidunt. Praesent dui libero, facilisis eu, vulputate eget, aliquet -nec, ipsum. Pellentesque in nisl in mauris pretium euismod.

    - - diff --git a/www/test/print_header_footer.html b/www/test/print_header_footer.html deleted file mode 100644 index e74d4e3..0000000 --- a/www/test/print_header_footer.html +++ /dev/null @@ -1,218 +0,0 @@ - - - - - -Header and Footer example - - - - - - - - - - -

    Section 1

    - -

    - -Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Sed non -risus. Suspendisse lectus tortor, dignissim sit amet, adipiscing nec, -ultricies sed, dolor. Cras elementum ultrices diam. Maecenas ligula -massa, varius a, semper congue, euismod non, mi. Proin porttitor, orci -nec nonummy molestie, enim est eleifend mi, non fermentum diam nisl sit -amet erat. Duis semper. Duis arcu massa, scelerisque vitae, consequat -in, pretium a, enim. Pellentesque congue. Ut in risus volutpat libero -pharetra tempor. Cras vestibulum bibendum augue. Praesent egestas leo -in pede. Praesent blandit odio eu enim. Pellentesque sed dui ut augue -blandit sodales. Vestibulum ante ipsum primis in faucibus orci luctus -et ultrices posuere cubilia Curae; Aliquam nibh. Mauris ac mauris sed -pede pellentesque fermentum. Maecenas adipiscing ante non diam sodales -hendrerit.

    - -
    - -

    Section 2

    - -

    - - Ut velit mauris, egestas sed, gravida nec, ornare ut, mi. Aenean ut -orci vel massa suscipit pulvinar. Nulla sollicitudin. Fusce varius, -ligula non tempus aliquam, nunc turpis ullamcorper nibh, in tempus -sapien eros vitae ligula. Pellentesque rhoncus nunc et augue. Integer -id felis. Curabitur aliquet pellentesque diam. Integer quis metus vitae -elit lobortis egestas. Lorem ipsum dolor sit amet, consectetuer -adipiscing elit. Morbi vel erat non mauris convallis vehicula. Nulla et -sapien. Integer tortor tellus, aliquam faucibus, convallis id, congue -eu, quam. Mauris ullamcorper felis vitae erat. Proin feugiat, augue non -elementum posuere, metus purus iaculis lectus, et tristique ligula -justo vitae magna. Morbi vel erat non mauris convallis vehicula. Nulla et -sapien. Integer tortor tellus, aliquam faucibus, convallis id, congue -eu, quam. Mauris ullamcorper felis vitae erat. Proin feugiat, augue non -elementum posuere, metus purus iaculis lectus, et tristique ligula -justo vitae magna.

    - -
    - -

    Section 3

    - - -

    Aliquam convallis sollicitudin purus. Praesent aliquam, enim at -fermentum mollis, ligula massa adipiscing nisl, ac euismod nibh nisl eu -lectus. Fusce vulputate sem at sapien. Vivamus leo. Aliquam euismod -libero eu enim. Nulla nec felis sed leo placerat imperdiet. Aenean -suscipit nulla in justo. Suspendisse cursus rutrum augue. Nulla -tincidunt tincidunt mi. Curabitur iaculis, lorem vel rhoncus faucibus, -felis magna fermentum augue, et ultricies lacus lorem varius purus. -Curabitur eu amet.

    - -

    Aliquam convallis sollicitudin purus. Praesent aliquam, enim at -fermentum mollis, ligula massa adipiscing nisl, ac euismod nibh nisl eu -lectus. Fusce vulputate sem at sapien. Vivamus leo. Aliquam euismod -libero eu enim. Nulla nec felis sed leo placerat imperdiet. Aenean -suscipit nulla in justo. Suspendisse cursus rutrum augue. Nulla -tincidunt tincidunt mi. Curabitur iaculis, lorem vel rhoncus faucibus, -felis magna fermentum augue, et ultricies lacus lorem varius purus. -Curabitur eu amet.

    - -

    Aliquam convallis sollicitudin purus. Praesent aliquam, enim at -fermentum mollis, ligula massa adipiscing nisl, ac euismod nibh nisl eu -lectus. Fusce vulputate sem at sapien. Vivamus leo. Aliquam euismod -libero eu enim. Nulla nec felis sed leo placerat imperdiet. Aenean -suscipit nulla in justo. Suspendisse cursus rutrum augue. Nulla -tincidunt tincidunt mi. Curabitur iaculis, lorem vel rhoncus faucibus, -felis magna fermentum augue, et ultricies lacus lorem varius purus. -Curabitur eu amet.

    - -

    Aliquam convallis sollicitudin purus. Praesent aliquam, enim at -fermentum mollis, ligula massa adipiscing nisl, ac euismod nibh nisl eu -lectus. Fusce vulputate sem at sapien. Vivamus leo. Aliquam euismod -libero eu enim. Nulla nec felis sed leo placerat imperdiet. Aenean -suscipit nulla in justo. Suspendisse cursus rutrum augue. Nulla -tincidunt tincidunt mi. Curabitur iaculis, lorem vel rhoncus faucibus, -felis magna fermentum augue, et ultricies lacus lorem varius purus. -Curabitur eu amet.

    - -

    Aliquam convallis sollicitudin purus. Praesent aliquam, enim at -fermentum mollis, ligula massa adipiscing nisl, ac euismod nibh nisl eu -lectus. Fusce vulputate sem at sapien. Vivamus leo. Aliquam euismod -libero eu enim. Nulla nec felis sed leo placerat imperdiet. Aenean -suscipit nulla in justo. Suspendisse cursus rutrum augue. Nulla -tincidunt tincidunt mi. Curabitur iaculis, lorem vel rhoncus faucibus, -felis magna fermentum augue, et ultricies lacus lorem varius purus. -Curabitur eu amet.

    - -

    Aliquam convallis sollicitudin purus. Praesent aliquam, enim at -fermentum mollis, ligula massa adipiscing nisl, ac euismod nibh nisl eu -lectus. Fusce vulputate sem at sapien. Vivamus leo. Aliquam euismod -libero eu enim. Nulla nec felis sed leo placerat imperdiet. Aenean -suscipit nulla in justo. Suspendisse cursus rutrum augue. Nulla -tincidunt tincidunt mi. Curabitur iaculis, lorem vel rhoncus faucibus, -felis magna fermentum augue, et ultricies lacus lorem varius purus. -Curabitur eu amet.

    - -

    Aliquam convallis sollicitudin purus. Praesent aliquam, enim at -fermentum mollis, ligula massa adipiscing nisl, ac euismod nibh nisl eu -lectus. Fusce vulputate sem at sapien. Vivamus leo. Aliquam euismod -libero eu enim. Nulla nec felis sed leo placerat imperdiet. Aenean -suscipit nulla in justo. Suspendisse cursus rutrum augue. Nulla -tincidunt tincidunt mi. Curabitur iaculis, lorem vel rhoncus faucibus, -felis magna fermentum augue, et ultricies lacus lorem varius purus. -Curabitur eu amet.

    - -

    Aliquam convallis sollicitudin purus. Praesent aliquam, enim at -fermentum mollis, ligula massa adipiscing nisl, ac euismod nibh nisl eu -lectus. Fusce vulputate sem at sapien. Vivamus leo. Aliquam euismod -libero eu enim. Nulla nec felis sed leo placerat imperdiet. Aenean -suscipit nulla in justo. Suspendisse cursus rutrum augue. Nulla -tincidunt tincidunt mi. Curabitur iaculis, lorem vel rhoncus faucibus, -felis magna fermentum augue, et ultricies lacus lorem varius purus. -Curabitur eu amet.

    - -

    Aliquam convallis sollicitudin purus. Praesent aliquam, enim at -fermentum mollis, ligula massa adipiscing nisl, ac euismod nibh nisl eu -lectus. Fusce vulputate sem at sapien. Vivamus leo. Aliquam euismod -libero eu enim. Nulla nec felis sed leo placerat imperdiet. Aenean -suscipit nulla in justo. Suspendisse cursus rutrum augue. Nulla -tincidunt tincidunt mi. Curabitur iaculis, lorem vel rhoncus faucibus, -felis magna fermentum augue, et ultricies lacus lorem varius purus. -Curabitur eu amet.

    - -

    Aliquam convallis sollicitudin purus. Praesent aliquam, enim at -fermentum mollis, ligula massa adipiscing nisl, ac euismod nibh nisl eu -lectus. Fusce vulputate sem at sapien. Vivamus leo. Aliquam euismod -libero eu enim. Nulla nec felis sed leo placerat imperdiet. Aenean -suscipit nulla in justo. Suspendisse cursus rutrum augue. Nulla -tincidunt tincidunt mi. Curabitur iaculis, lorem vel rhoncus faucibus, -felis magna fermentum augue, et ultricies lacus lorem varius purus. -Curabitur eu amet.

    - - diff --git a/www/test/quirks_center_table.html b/www/test/quirks_center_table.html deleted file mode 100644 index d0a4536..0000000 --- a/www/test/quirks_center_table.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - -
    ab
    cd
    - - - diff --git a/www/test/quirks_font_tag.html b/www/test/quirks_font_tag.html deleted file mode 100644 index 6b0812f..0000000 --- a/www/test/quirks_font_tag.html +++ /dev/null @@ -1,70 +0,0 @@ - - - - - - - -

    Font tags with absolute size

    - -size=1 -size=2 -size=3 -size=4 -size=5 -size=6 -size=7 - -

    Span tags with absolute CSS size

    - -size=1 -size=2 -size=3 -size=4 -size=5 -size=6 -size=7 - -

    Font tags with relative size

    - -size=-4 -size=-3 -size=-2 -size=-1 -size=+1 -size=+2 -size=+3 -size=+4 - -

    Span tags with relative CSS size

    - -size=-4 -size=-3 -size=-2 -size=-1 -size=+1 -size=+2 -size=+3 -size=+4 - -

    Nested font tags

    - -size=2 - size=4 - size=2 - size=4 - size=2 - size=4 - size=2 - size=4 - - - - - - - - - - - diff --git a/www/test/quirks_html_attributes.html b/www/test/quirks_html_attributes.html deleted file mode 100644 index efb6b26..0000000 --- a/www/test/quirks_html_attributes.html +++ /dev/null @@ -1,55 +0,0 @@ - - - - - - -
    - -Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet -doming id quod mazim placerat facer possim assum. Lorem ipsum dolor sit -amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt -ut laoreet dolore magna aliquam erat volutpat.
    -Ut wisi enim ad minim veniam, -quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex -ea commodo consequat. - -
    -
    - - - - - - - - - - - - - - - - - - - - -
    Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper - suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem - vel eum iriure dolor in hendrerit in vulputate velit esse molestie - consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et - accumsan et iusto odio dignissim qui blandit praesent luptatum zzril - delenit augue duis dolore te feugait nulla facilisi.table testLorem ipsum dolor sit amet, consetetur sadipscing elitr, - sed diam nonumy eirmod tempor invidunt ut labore et dolore magna - aliquyam erat, sed diam voluptua.Duis autem vel eum iriure dolor in hendrerit in - vulputate velit esse molestie consequat, vel illum dolore eu feugiat - nulla facilisis at vero eros et accumsan et iusto odio dignissim qui - blandit praesent luptatum zzril delenit augue duis dolore te feugait - nulla facilisi.
    table testNam liber tempor cum soluta nobis eleifend option congue nihil - imperdiet doming id quod mazim placerat facer possim assum.
    - Lorem ipsum dolor sit amet.
    table testtable test
    table testtable testtable testtable test
    - - - diff --git a/www/test/script_javascript.html b/www/test/script_javascript.html deleted file mode 100644 index 84efb46..0000000 --- a/www/test/script_javascript.html +++ /dev/null @@ -1,24 +0,0 @@ - - - - Javascript test - - - - -This page will be printed automatically - -

    A title

    - - - - - diff --git a/www/test/script_php.php b/www/test/script_php.php deleted file mode 100644 index ad75b6e..0000000 --- a/www/test/script_php.php +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - -Here's some dynamically generated text and some random circles...

    "; -?> - - -Current PHP version: " . phpversion() . ". "; -echo "Today is " . strftime("%A") . " the " . strftime("%e").date("S").strftime(" of %B, %Y %T") . "

    "; - -?> -