Author: toad
Date: 2006-11-29 20:08:59 +0000 (Wed, 29 Nov 2006)
New Revision: 11118

Modified:
   trunk/freenet/src/freenet/clients/http/FProxyToadlet.java
   trunk/freenet/src/freenet/clients/http/Toadlet.java
   trunk/freenet/src/freenet/clients/http/filter/CSSTokenizerFilter.java
   trunk/freenet/src/freenet/clients/http/filter/CSSTokenizerFilter.jflex
   trunk/freenet/src/freenet/node/Version.java
Log:
1004: Fix two exploitable anonymity filter bugs. UPGRADE ASAP!
- ?type= wasn't kept when following permanent redirects in fproxy (exploitable 
because of CSS)
- unofficial declarations were passed through by the CSS filter (some of them 
are dangerous)

Modified: trunk/freenet/src/freenet/clients/http/FProxyToadlet.java
===================================================================
--- trunk/freenet/src/freenet/clients/http/FProxyToadlet.java   2006-11-29 
19:43:24 UTC (rev 11117)
+++ trunk/freenet/src/freenet/clients/http/FProxyToadlet.java   2006-11-29 
20:08:59 UTC (rev 11118)
@@ -27,6 +27,7 @@
 import freenet.node.NodeClientCore;
 import freenet.node.RequestStarter;
 import freenet.support.Base64;
+import freenet.support.HTMLEncoder;
 import freenet.support.HTMLNode;
 import freenet.support.HexUtil;
 import freenet.support.Logger;
@@ -228,6 +229,8 @@
                        this.writeReply(ctx, 400, "text/html", "Invalid key", 
pageBuffer.toString());
                        return;
                }
+               String requestedMimeType = httprequest.getParam("type", null);
+               String override = (requestedMimeType == null) ? "" : 
"?type="+URLEncoder.encode(requestedMimeType);
                try {
                        if(Logger.shouldLog(Logger.MINOR, this))
                                Logger.minor(this, "FProxy fetching "+key+" 
("+maxSize+ ')');
@@ -237,7 +240,6 @@

                        Bucket data = result.asBucket();
                        String mimeType = result.getMimeType();
-                       String requestedMimeType = httprequest.getParam("type", 
null);

                        handleDownload(ctx, data, ctx.getBucketFactory(), 
mimeType, requestedMimeType, httprequest.getParam("force", null), 
httprequest.isParameterSet("forcedownload"), "/", key, maxSize != MAX_LENGTH ? 
"&max-size="+maxSize : "");

@@ -245,9 +247,9 @@
                        String msg = e.getMessage();
                        String extra = "";
                        if(e.mode == FetchException.NOT_ENOUGH_PATH_COMPONENTS) 
{
-                               this.writePermanentRedirect(ctx, "Not enough 
meta-strings", '/' + URLEncoder.encode(key.toString(false)) + '/');
+                               this.writePermanentRedirect(ctx, "Not enough 
meta-strings", '/' + key.toString(false) + '/' + override);
                        } else if(e.newURI != null) {
-                               this.writePermanentRedirect(ctx, msg, '/' 
+e.newURI.toString());
+                               this.writePermanentRedirect(ctx, msg, '/' 
+e.newURI.toString() + override);
                        } else if(e.mode == FetchException.TOO_BIG) {
                                HTMLNode pageNode = 
ctx.getPageMaker().getPageNode("File information");
                                HTMLNode contentNode = 
ctx.getPageMaker().getContentNode(pageNode);
@@ -332,7 +334,7 @@
                        PrintWriter pw = new PrintWriter(sw);
                        t.printStackTrace(pw);
                        pw.flush();
-                       msg = msg + sw.toString() + "</pre></body></html>";
+                       msg = msg + HTMLEncoder.encode(sw.toString()) + 
"</pre></body></html>";
                        this.writeReply(ctx, 500, "text/html", "Internal 
Error", msg);
                }
        }

Modified: trunk/freenet/src/freenet/clients/http/Toadlet.java
===================================================================
--- trunk/freenet/src/freenet/clients/http/Toadlet.java 2006-11-29 19:43:24 UTC 
(rev 11117)
+++ trunk/freenet/src/freenet/clients/http/Toadlet.java 2006-11-29 20:08:59 UTC 
(rev 11118)
@@ -13,6 +13,7 @@
 import freenet.support.HTMLEncoder;
 import freenet.support.HTMLNode;
 import freenet.support.MultiValueTable;
+import freenet.support.URLEncoder;
 import freenet.support.io.Bucket;

 /**
@@ -145,7 +146,7 @@
                else msg = HTMLEncoder.encode(msg);
                String redirDoc =
                        
"<html><head><title>"+msg+"</title></head><body><h1>Permanent redirect: "+
-                       msg+"</h1><a href=\""+location+"\">Click 
here</a></body></html>";
+                       msg+"</h1><a 
href=\""+HTMLEncoder.encode(location)+"\">Click here</a></body></html>";
                byte[] buf;
                try {
                        buf = redirDoc.getBytes("UTF-8");

Modified: trunk/freenet/src/freenet/clients/http/filter/CSSTokenizerFilter.java
===================================================================
--- trunk/freenet/src/freenet/clients/http/filter/CSSTokenizerFilter.java       
2006-11-29 19:43:24 UTC (rev 11117)
+++ trunk/freenet/src/freenet/clients/http/filter/CSSTokenizerFilter.java       
2006-11-29 20:08:59 UTC (rev 11118)
@@ -1,4 +1,4 @@
-/* The following code was generated by JFlex 1.4.1 on 13/11/06 13:27 */
+/* The following code was generated by JFlex 1.4.1 on 29/11/06 20:03 */

 /* This code is part of Freenet. It is distributed under the GNU General
  * Public License, version 2 (or at your option any later version). See
@@ -8,13 +8,15 @@
 import java.util.*;
 /* This class tokenizes a CSS2 Reader stream, writes it out to the output 
Writer, and filters any URLs found */
 // WARNING: this is not as thorough as the HTML parser - new versions of the 
standard could lead to anonymity risks. See comments in SaferFilter.java
+// FIXME: Rewrite this as a proper whitelist filter. It's about half way 
there, it
+// just needs somebody to go over the standard carefully and eliminate 
everything that isn't sufficiently specific (e.g. matching a '-' on its own).
 // Mostly from http://www.w3.org/TR/REC-CSS2/grammar.html


 /**
  * This class is a scanner generated by 
  * <a href="http://www.jflex.de/";>JFlex</a> 1.4.1
- * on 13/11/06 13:27 from the specification file
+ * on 29/11/06 20:03 from the specification file
  * <tt>freenet/clients/http/filter/CSSTokenizerFilter.jflex</tt>
  */
 class CSSTokenizerFilter {
@@ -32,15 +34,15 @@
    * Translates characters to character classes
    */
   private static final String ZZ_CMAP_PACKED = 
-    "\11\0\1\3\1\3\1\0\1\3\1\3\22\0\1\5\1\40\1\11"+
-    "\1\16\1\4\1\63\1\4\1\12\1\22\1\14\1\36\1\55\1\23"+
-    "\1\41\1\13\1\35\12\1\1\64\1\32\1\37\1\44\1\42\1\15"+
-    "\1\24\1\46\1\6\1\54\1\51\1\50\1\52\1\47\1\60\1\25"+
-    "\1\7\1\62\1\21\1\26\1\53\1\30\1\27\1\7\1\20\1\57"+
-    "\1\31\1\17\2\7\1\56\1\7\1\61\1\4\1\2\2\4\1\10"+
-    "\1\4\1\46\1\6\1\54\1\51\1\50\1\52\1\47\1\60\1\25"+
-    "\1\7\1\62\1\21\1\26\1\53\1\30\1\27\1\7\1\20\1\57"+
-    "\1\31\1\17\2\7\1\56\1\7\1\61\1\33\1\45\1\34\1\43"+
+    "\11\0\1\3\1\3\1\0\1\3\1\3\22\0\1\5\1\41\1\11"+
+    "\1\17\1\4\1\64\1\4\1\12\1\23\1\15\1\37\1\56\1\24"+
+    "\1\13\1\14\1\36\12\1\1\46\1\33\1\40\1\44\1\42\1\16"+
+    "\1\25\1\47\1\6\1\55\1\52\1\51\1\53\1\50\1\61\1\26"+
+    "\1\7\1\63\1\22\1\27\1\54\1\31\1\30\1\7\1\21\1\60"+
+    "\1\32\1\20\2\7\1\57\1\7\1\62\1\4\1\2\2\4\1\10"+
+    "\1\4\1\47\1\6\1\55\1\52\1\51\1\53\1\50\1\61\1\26"+
+    "\1\7\1\63\1\22\1\27\1\54\1\31\1\30\1\7\1\21\1\60"+
+    "\1\32\1\20\2\7\1\57\1\7\1\62\1\34\1\45\1\35\1\43"+
     "\uff81\0";

   /** 
@@ -54,28 +56,30 @@
   private static final int [] ZZ_ACTION = zzUnpackAction();

   private static final String ZZ_ACTION_PACKED_0 =
-    "\1\0\1\1\1\2\1\1\1\3\1\2\2\1\1\4"+
+    "\1\0\1\1\1\2\1\1\1\3\1\2\2\1\2\4"+
     "\1\5\1\1\1\2\1\4\1\1\1\6\1\7\1\10"+
-    "\1\4\2\1\1\4\2\1\3\0\1\11\1\0\1\12"+
-    "\1\13\1\2\2\0\1\14\2\0\1\15\1\16\1\0"+
-    "\1\16\1\2\1\0\1\17\1\0\5\17\5\0\1\20"+
-    "\1\21\2\0\1\2\2\14\12\0\2\16\1\2\2\22"+
-    "\6\17\3\0\1\23\1\0\1\2\2\0\1\24\1\16"+
-    "\1\11\2\22\1\0\6\17\1\25\1\26\2\0\1\2"+
-    "\2\16\5\0\1\27\2\22\1\30\3\17\1\31\2\17"+
-    "\2\0\1\2\2\16\1\27\3\0\2\22\1\30\5\17"+
-    "\2\0\1\2\1\24\1\16\2\0\2\22\1\30\2\17"+
-    "\1\32\2\0\2\17\2\0\1\16\2\27\2\22\1\30"+
-    "\1\17\1\0\1\17\4\0\1\17\1\33\2\32\2\17"+
-    "\2\0\1\30\1\0\2\17\1\33\4\0\1\17\1\32"+
-    "\1\17\4\0\1\30\1\17\5\0\1\33\1\0\1\17"+
-    "\1\32\1\34\3\0\1\35\1\17\4\0\1\33\5\0"+
-    "\1\33\1\0\1\32\1\0\1\36\1\0\1\17\15\0"+
-    "\1\32\2\36\1\17\11\0\1\32\1\17\6\0\1\33"+
-    "\23\0\1\33\3\0\1\33\32\0";
+    "\1\4\4\1\3\0\1\11\1\0\1\12\1\13\1\2"+
+    "\2\0\1\14\2\0\1\15\2\0\1\16\1\17\1\0"+
+    "\1\17\1\2\1\0\1\20\1\0\5\20\4\0\1\21"+
+    "\1\22\2\0\1\2\2\14\2\0\1\15\1\23\12\0"+
+    "\2\17\1\2\2\24\6\20\4\0\1\2\1\0\1\15"+
+    "\2\0\1\25\1\17\1\11\1\24\1\0\1\24\6\20"+
+    "\1\26\1\27\2\0\1\2\1\0\1\15\2\17\5\0"+
+    "\1\30\2\24\1\31\3\20\1\32\2\20\2\0\1\2"+
+    "\1\0\1\15\2\17\1\30\3\0\2\24\1\31\5\20"+
+    "\2\0\1\2\1\0\1\15\1\25\1\17\2\0\2\24"+
+    "\1\31\2\20\1\33\2\0\2\20\6\0\1\34\1\15"+
+    "\1\17\2\30\2\24\1\31\1\20\1\0\1\20\4\0"+
+    "\1\20\1\35\2\33\2\20\2\0\1\34\3\0\1\31"+
+    "\1\0\2\20\1\35\4\0\1\20\1\33\1\20\6\0"+
+    "\1\31\1\20\5\0\1\35\1\0\1\20\1\33\1\36"+
+    "\3\0\1\37\2\34\1\20\4\0\1\35\5\0\1\35"+
+    "\1\0\1\33\1\0\1\40\1\0\1\20\15\0\1\33"+
+    "\2\40\1\20\11\0\1\33\1\20\6\0\1\35\23\0"+
+    "\1\35\3\0\1\35\32\0";

   private static int [] zzUnpackAction() {
-    int [] result = new int[316];
+    int [] result = new int[343];
     int offset = 0;
     offset = zzUnpackAction(ZZ_ACTION_PACKED_0, offset, result);
     return result;
@@ -101,48 +105,51 @@

   private static final String ZZ_ROWMAP_PACKED_0 =
     "\0\0\0\65\0\152\0\237\0\324\0\u0109\0\u013e\0\u0173"+
-    "\0\u01a8\0\65\0\u01dd\0\u0212\0\65\0\u0247\0\65\0\u027c"+
+    "\0\u01a8\0\u01dd\0\65\0\u0212\0\u0247\0\65\0\u027c\0\65"+
     "\0\u02b1\0\u02e6\0\u031b\0\u0350\0\u0385\0\u03ba\0\u03ef\0\237"+
-    "\0\u0424\0\u01a8\0\65\0\u0459\0\65\0\65\0\u048e\0\u013e"+
+    "\0\u0424\0\u01dd\0\65\0\u0459\0\65\0\65\0\u048e\0\u013e"+
     "\0\u04c3\0\65\0\u0173\0\u04f8\0\u052d\0\u0562\0\u0597\0\u05cc"+
     "\0\u0601\0\u0636\0\u066b\0\u06a0\0\u06d5\0\u070a\0\u073f\0\u0774"+
-    "\0\u07a9\0\u07de\0\u0813\0\u0350\0\u0848\0\u087d\0\65\0\65"+
-    "\0\u08b2\0\u08e7\0\u091c\0\u013e\0\u0173\0\u0951\0\u0986\0\u09bb"+
-    "\0\u09f0\0\u0a25\0\u0a5a\0\u0a8f\0\u0ac4\0\u0af9\0\u0b2e\0\u0b63"+
-    "\0\u0b98\0\u0bcd\0\u0c02\0\u0c37\0\u0c6c\0\u0ca1\0\u0cd6\0\u0d0b"+
-    "\0\u0d40\0\u0d75\0\u0daa\0\u0ddf\0\u0e14\0\65\0\u0e49\0\u0e7e"+
+    "\0\u07a9\0\u07de\0\u0813\0\u0848\0\u087d\0\u08b2\0\u0385\0\u08e7"+
+    "\0\65\0\65\0\u091c\0\u0951\0\u0986\0\u013e\0\u0173\0\u09bb"+
+    "\0\u09f0\0\u0a25\0\65\0\u0a5a\0\u0a8f\0\u0ac4\0\u0af9\0\u0b2e"+
+    "\0\u0b63\0\u0b98\0\u0bcd\0\u0c02\0\u0c37\0\u0c6c\0\u0ca1\0\u0cd6"+
+    "\0\u0d0b\0\u0d40\0\u0d75\0\u0daa\0\u0ddf\0\u0e14\0\u0e49\0\u0e7e"+
     "\0\u0eb3\0\u0ee8\0\u0f1d\0\u0f52\0\u0f87\0\u0fbc\0\u0ff1\0\u1026"+
-    "\0\u105b\0\u1090\0\u10c5\0\u10fa\0\u112f\0\u1164\0\65\0\65"+
-    "\0\u1199\0\u11ce\0\u1203\0\u1238\0\u126d\0\u12a2\0\u12d7\0\u0f87"+
-    "\0\u130c\0\u1341\0\65\0\u1376\0\u13ab\0\u13e0\0\u1415\0\u144a"+
-    "\0\u147f\0\u066b\0\u14b4\0\u14e9\0\u151e\0\u1553\0\u1588\0\u15bd"+
-    "\0\u15f2\0\u12a2\0\u1627\0\u165c\0\u1691\0\u16c6\0\u16fb\0\u1730"+
-    "\0\u1765\0\u179a\0\u17cf\0\u1804\0\u1839\0\u186e\0\u18a3\0\u18d8"+
-    "\0\u05cc\0\u190d\0\u1942\0\u1977\0\u19ac\0\u19e1\0\u1a16\0\u1a4b"+
-    "\0\u1a80\0\u1ab5\0\u1aea\0\u1b1f\0\u1b54\0\u1b89\0\u1bbe\0\u1bf3"+
-    "\0\u1c28\0\u130c\0\u1341\0\u1c5d\0\65\0\u1c92\0\u1cc7\0\u1cfc"+
-    "\0\u1d31\0\u1d66\0\u1d9b\0\u1dd0\0\u1e05\0\u1e3a\0\u1cfc\0\u1e6f"+
-    "\0\u1ea4\0\u1ed9\0\u1f0e\0\u1f43\0\u1f78\0\u1fad\0\u1fe2\0\u2017"+
-    "\0\u204c\0\u1d31\0\u2081\0\u20b6\0\u20eb\0\u2120\0\u2155\0\u218a"+
-    "\0\u21bf\0\u21f4\0\u2229\0\u225e\0\u2293\0\65\0\u22c8\0\u22fd"+
-    "\0\u2332\0\u2367\0\u239c\0\u23d1\0\65\0\u2406\0\u243b\0\u2470"+
-    "\0\u066b\0\u24a5\0\u24da\0\u250f\0\65\0\u2544\0\u2579\0\u25ae"+
-    "\0\u25e3\0\u2618\0\u1dd0\0\u264d\0\u2682\0\u26b7\0\u26ec\0\u2721"+
-    "\0\u1e05\0\u2756\0\u278b\0\u27c0\0\65\0\u27f5\0\u282a\0\u285f"+
-    "\0\u2894\0\u28c9\0\u28fe\0\u2933\0\u2968\0\u299d\0\u29d2\0\u2a07"+
-    "\0\u2a3c\0\u2a71\0\u2aa6\0\u2adb\0\u2b10\0\u2229\0\u225e\0\u2b45"+
-    "\0\u2b7a\0\u2baf\0\u2be4\0\u2c19\0\u2c4e\0\u2c83\0\u2cb8\0\u2ced"+
-    "\0\u2d22\0\u2d57\0\u2d8c\0\u2dc1\0\u2df6\0\u2e2b\0\u2e60\0\u2e95"+
-    "\0\u2eca\0\u2a3c\0\u2eff\0\u2f34\0\u2f69\0\u2f9e\0\u2fd3\0\u3008"+
-    "\0\u303d\0\u3072\0\u30a7\0\u30dc\0\u3111\0\u3146\0\u317b\0\u31b0"+
-    "\0\u31e5\0\u321a\0\u324f\0\u3284\0\u32b9\0\u2aa6\0\u32ee\0\u3323"+
-    "\0\u3358\0\u2adb\0\u338d\0\u33c2\0\u33f7\0\u342c\0\u3461\0\u3496"+
-    "\0\u34cb\0\u3500\0\u3535\0\u356a\0\u359f\0\u35d4\0\u3609\0\u363e"+
-    "\0\u3673\0\u36a8\0\u36dd\0\u3712\0\u3747\0\u377c\0\u37b1\0\u37e6"+
-    "\0\u381b\0\u3850\0\u3885\0\u38ba";
+    "\0\u105b\0\u1090\0\u10c5\0\u10fa\0\u112f\0\u1164\0\u1199\0\u11ce"+
+    "\0\u1203\0\u1238\0\u126d\0\u12a2\0\u12d7\0\65\0\65\0\u130c"+
+    "\0\u1341\0\u1376\0\u13ab\0\u13e0\0\u1415\0\u144a\0\u147f\0\u14b4"+
+    "\0\u10fa\0\u14e9\0\u151e\0\65\0\u1553\0\u1588\0\u15bd\0\u15f2"+
+    "\0\u1627\0\u165c\0\u070a\0\u1691\0\u16c6\0\u16fb\0\u1730\0\u1765"+
+    "\0\u179a\0\u17cf\0\u1804\0\u1839\0\u147f\0\u186e\0\u18a3\0\u18d8"+
+    "\0\u190d\0\u1942\0\u1977\0\u19ac\0\u19e1\0\u1a16\0\u1a4b\0\u1a80"+
+    "\0\u1ab5\0\u1aea\0\u1b1f\0\u1b54\0\u1b89\0\u066b\0\u1bbe\0\u1bf3"+
+    "\0\u1c28\0\u1c5d\0\u1c92\0\u1cc7\0\u1cfc\0\u1d31\0\u1d66\0\u1d9b"+
+    "\0\u1dd0\0\u1e05\0\u1e3a\0\u1e6f\0\u1ea4\0\u1ed9\0\u1f0e\0\u1f43"+
+    "\0\u1f78\0\65\0\u1fad\0\u1fe2\0\u14e9\0\u151e\0\u2017\0\65"+
+    "\0\u204c\0\u2081\0\u20b6\0\u20eb\0\u2120\0\u2155\0\u218a\0\u21bf"+
+    "\0\u21f4\0\u20b6\0\u2229\0\u225e\0\u2293\0\u22c8\0\u22fd\0\u2332"+
+    "\0\u1ed9\0\u2367\0\u239c\0\u23d1\0\u2406\0\u243b\0\u2470\0\u24a5"+
+    "\0\u20eb\0\u24da\0\u250f\0\u2544\0\u2579\0\u25ae\0\u25e3\0\u2618"+
+    "\0\u264d\0\u2682\0\u26b7\0\u26ec\0\u2721\0\u2756\0\65\0\u278b"+
+    "\0\u27c0\0\u27f5\0\u282a\0\u285f\0\u2894\0\65\0\u28c9\0\u28fe"+
+    "\0\u2933\0\u070a\0\u2968\0\u299d\0\u29d2\0\65\0\u1f43\0\u1f78"+
+    "\0\u2a07\0\u2a3c\0\u2a71\0\u2aa6\0\u2adb\0\u218a\0\u2b10\0\u2b45"+
+    "\0\u2b7a\0\u2baf\0\u2be4\0\u21bf\0\u2c19\0\u2c4e\0\u2c83\0\65"+
+    "\0\u2cb8\0\u2ced\0\u2d22\0\u2d57\0\u2d8c\0\u2dc1\0\u2df6\0\u2e2b"+
+    "\0\u2e60\0\u2e95\0\u2eca\0\u2eff\0\u2f34\0\u2f69\0\u2f9e\0\u2fd3"+
+    "\0\u2682\0\u26b7\0\u3008\0\u303d\0\u3072\0\u30a7\0\u30dc\0\u3111"+
+    "\0\u3146\0\u317b\0\u31b0\0\u31e5\0\u321a\0\u324f\0\u3284\0\u32b9"+
+    "\0\u32ee\0\u3323\0\u3358\0\u338d\0\u2eff\0\u33c2\0\u33f7\0\u342c"+
+    "\0\u3461\0\u3496\0\u34cb\0\u3500\0\u3535\0\u356a\0\u359f\0\u35d4"+
+    "\0\u3609\0\u363e\0\u3673\0\u36a8\0\u36dd\0\u3712\0\u3747\0\u377c"+
+    "\0\u2f69\0\u37b1\0\u37e6\0\u381b\0\u2f9e\0\u3850\0\u3885\0\u38ba"+
+    "\0\u38ef\0\u3924\0\u3959\0\u398e\0\u39c3\0\u39f8\0\u3a2d\0\u3a62"+
+    "\0\u3a97\0\u3acc\0\u3b01\0\u3b36\0\u3b6b\0\u3ba0\0\u3bd5\0\u3c0a"+
+    "\0\u3c3f\0\u3c74\0\u3ca9\0\u3cde\0\u3d13\0\u3d48\0\u3d7d";

   private static int [] zzUnpackRowMap() {
-    int [] result = new int[316];
+    int [] result = new int[343];
     int offset = 0;
     offset = zzUnpackRowMap(ZZ_ROWMAP_PACKED_0, offset, result);
     return result;
@@ -166,542 +173,571 @@

   private static final String ZZ_TRANS_PACKED_0 =
     "\1\2\1\3\1\4\1\5\1\2\1\5\2\6\1\2"+
-    "\1\7\1\10\1\11\1\12\1\2\1\13\1\14\2\6"+
-    "\1\2\1\15\1\16\5\6\1\17\1\20\1\21\1\22"+
-    "\1\15\1\23\1\24\1\25\1\15\1\26\1\2\1\27"+
-    "\7\6\1\15\5\6\1\2\1\15\66\0\1\3\1\30"+
-    "\1\31\1\0\1\31\3\6\2\0\1\32\3\0\3\6"+
-    "\1\33\1\34\1\0\5\6\1\35\6\0\1\6\4\0"+
-    "\7\6\1\0\5\6\1\36\2\0\1\37\1\6\1\0"+
-    "\2\6\1\37\37\6\1\37\1\6\3\37\1\6\1\37"+
-    "\10\6\3\0\1\5\1\0\1\5\25\0\1\20\1\21"+
-    "\31\0\1\6\1\30\1\31\1\0\1\31\3\6\6\0"+
-    "\3\6\1\33\1\34\1\0\5\6\1\35\6\0\1\6"+
-    "\4\0\7\6\1\0\5\6\2\0\2\40\1\41\6\40"+
-    "\1\42\53\40\2\43\1\44\7\43\1\42\52\43\1\0"+
-    "\1\45\64\0\1\46\1\47\3\0\1\46\2\50\6\0"+
-    "\3\50\3\0\5\50\7\0\1\50\4\0\1\46\1\50"+
-    "\3\46\1\50\1\46\1\0\5\50\3\0\1\6\1\30"+
-    "\1\31\1\0\1\31\3\6\6\0\1\6\1\51\1\6"+
-    "\1\33\1\34\1\0\5\6\1\35\6\0\1\6\4\0"+
-    "\7\6\1\52\5\6\3\0\1\53\1\54\3\0\2\53"+
-    "\7\0\3\53\3\0\1\55\1\56\1\57\2\53\14\0"+
-    "\4\53\1\60\1\53\1\61\1\0\5\53\5\0\1\20"+
-    "\1\0\1\20\62\0\1\21\1\0\1\21\115\0\1\62"+
-    "\66\0\1\63\27\0\1\64\1\0\1\64\17\0\1\65"+
-    "\100\0\1\66\67\0\1\67\64\0\1\70\23\0\1\31"+
-    "\1\0\1\31\15\0\1\34\6\0\1\35\33\0\1\71"+
-    "\1\72\1\34\1\0\1\34\2\71\7\0\3\71\3\0"+
-    "\5\71\14\0\7\71\1\0\5\71\3\0\1\73\1\30"+
-    "\1\6\1\0\1\6\1\73\2\6\6\0\3\6\1\33"+
-    "\1\34\1\0\5\6\1\35\6\0\1\6\4\0\1\73"+
-    "\1\6\3\73\1\6\1\73\1\0\5\6\2\0\2\40"+
-    "\1\41\6\40\1\74\53\40\2\43\1\44\7\43\1\75"+
-    "\52\43\1\0\1\45\16\0\1\76\4\0\1\77\1\100"+
-    "\1\101\17\0\1\102\1\103\1\104\2\0\1\105\2\0"+
-    "\1\36\1\106\1\0\1\107\1\36\2\0\1\110\1\47"+
-    "\3\0\1\110\2\50\6\0\3\50\3\0\5\50\7\0"+
-    "\1\50\4\0\1\110\1\50\3\110\1\50\1\110\1\0"+
-    "\5\50\3\0\1\111\1\50\1\0\2\50\1\111\37\50"+
-    "\1\111\1\50\3\111\1\50\1\111\10\50\1\0\1\50"+
-    "\1\47\3\0\3\50\6\0\3\50\3\0\5\50\7\0"+
-    "\1\50\4\0\7\50\1\0\5\50\3\0\1\6\1\30"+
-    "\1\31\1\0\1\31\3\6\6\0\2\6\1\112\1\33"+
-    "\1\34\1\0\5\6\1\35\6\0\1\6\4\0\7\6"+
-    "\1\0\5\6\3\0\1\113\4\0\1\113\6\0\1\114"+
-    "\30\0\1\113\1\0\3\113\1\0\1\113\11\0\1\53"+
-    "\1\54\3\0\3\53\6\0\3\53\3\0\5\53\7\0"+
-    "\1\53\4\0\7\53\1\0\5\53\3\0\1\115\1\53"+
-    "\1\0\2\53\1\115\37\53\1\115\1\53\3\115\1\53"+
-    "\1\115\10\53\1\0\1\53\1\54\3\0\3\53\6\0"+
-    "\3\53\3\0\1\53\1\116\3\53\7\0\1\53\4\0"+
-    "\7\53\1\0\5\53\3\0\1\53\1\54\3\0\3\53"+
-    "\6\0\3\53\3\0\5\53\7\0\1\53\4\0\2\53"+
-    "\1\117\4\53\1\0\5\53\3\0\1\53\1\54\3\0"+
-    "\3\53\6\0\3\53\3\0\5\53\7\0\1\53\4\0"+
-    "\1\120\6\53\1\0\5\53\3\0\1\53\1\54\3\0"+
-    "\3\53\6\0\3\53\3\0\3\53\1\121\1\53\7\0"+
-    "\1\53\4\0\7\53\1\0\5\53\3\0\1\53\1\54"+
-    "\3\0\3\53\6\0\3\53\3\0\5\53\7\0\1\53"+
-    "\4\0\7\53\1\0\2\53\1\122\2\53\2\0\36\62"+
-    "\1\123\26\62\41\0\1\124\51\0\1\125\100\0\1\126"+
-    "\23\0\1\71\1\72\1\31\1\0\1\31\3\71\6\0"+
-    "\3\71\1\0\1\34\1\0\5\71\1\35\6\0\1\71"+
-    "\4\0\7\71\1\0\5\71\3\0\1\127\1\71\1\0"+
-    "\2\71\1\127\37\71\1\127\1\71\3\127\1\71\1\127"+
-    "\10\71\1\0\1\130\1\30\1\6\1\0\1\6\1\130"+
-    "\2\6\6\0\3\6\1\33\1\34\1\0\5\6\1\35"+
-    "\6\0\1\6\4\0\1\130\1\6\3\130\1\6\1\130"+
-    "\1\0\5\6\50\0\1\131\71\0\1\36\37\0\1\36"+
-    "\30\0\1\36\61\0\1\36\1\0\1\36\26\0\1\76"+
-    "\72\0\1\36\27\0\1\36\56\0\1\132\42\0\1\36"+
-    "\117\0\1\36\63\0\1\106\5\0\1\133\1\47\3\0"+
-    "\1\133\2\50\6\0\3\50\3\0\5\50\7\0\1\50"+
-    "\4\0\1\133\1\50\3\133\1\50\1\133\1\0\5\50"+
-    "\3\0\1\134\1\47\1\50\1\0\1\50\1\134\2\50"+
-    "\6\0\3\50\3\0\5\50\7\0\1\50\4\0\1\134"+
-    "\1\50\3\134\1\50\1\134\1\0\5\50\3\0\1\6"+
-    "\1\30\1\31\1\0\1\31\3\6\6\0\3\6\1\135"+
-    "\1\34\1\0\5\6\1\35\6\0\1\6\4\0\7\6"+
-    "\1\0\5\6\3\0\1\136\4\0\1\136\6\0\1\137"+
-    "\23\0\1\140\4\0\1\136\1\0\3\136\1\0\1\136"+
-    "\25\0\1\137\50\0\1\141\1\54\1\53\1\0\1\53"+
-    "\1\141\2\53\6\0\3\53\3\0\5\53\7\0\1\53"+
-    "\4\0\1\141\1\53\3\141\1\53\1\141\1\0\5\53"+
-    "\3\0\1\53\1\54\3\0\3\53\6\0\3\53\3\0"+
-    "\2\53\1\142\2\53\7\0\1\53\4\0\7\53\1\0"+
-    "\5\53\3\0\1\53\1\54\3\0\3\53\6\0\3\53"+
-    "\3\0\5\53\7\0\1\53\4\0\3\53\1\143\3\53"+
-    "\1\0\5\53\3\0\1\53\1\54\3\0\3\53\6\0"+
-    "\3\53\3\0\5\53\7\0\1\53\4\0\1\53\1\144"+
-    "\5\53\1\0\5\53\3\0\1\53\1\54\3\0\3\53"+
-    "\6\0\3\53\3\0\5\53\7\0\1\53\4\0\5\53"+
-    "\1\145\1\53\1\0\5\53\3\0\1\53\1\54\3\0"+
-    "\3\53\6\0\3\53\3\0\5\53\7\0\1\53\4\0"+
-    "\1\146\6\53\1\0\5\53\2\0\35\62\1\147\1\123"+
-    "\26\62\41\0\1\150\52\0\1\151\36\0\1\152\1\72"+
-    "\1\71\1\0\1\71\1\152\2\71\6\0\3\71\1\0"+
-    "\1\34\1\0\5\71\1\35\6\0\1\71\4\0\1\152"+
-    "\1\71\3\152\1\71\1\152\1\0\5\71\3\0\1\153"+
-    "\1\30\1\6\1\0\1\6\1\153\2\6\6\0\3\6"+
-    "\1\33\1\34\1\0\5\6\1\35\6\0\1\6\4\0"+
-    "\1\153\1\6\3\153\1\6\1\153\1\0\5\6\53\0"+
-    "\1\36\62\0\1\36\16\0\1\154\1\47\3\0\1\154"+
-    "\2\50\6\0\3\50\3\0\5\50\7\0\1\50\4\0"+
-    "\1\154\1\50\3\154\1\50\1\154\1\0\5\50\3\0"+
-    "\1\155\1\47\1\50\1\0\1\50\1\155\2\50\6\0"+
-    "\3\50\3\0\5\50\7\0\1\50\4\0\1\155\1\50"+
-    "\3\155\1\50\1\155\1\0\5\50\2\0\2\156\1\157"+
-    "\1\160\1\156\1\160\3\156\1\161\1\162\1\156\1\163"+
-    "\5\156\1\0\42\156\1\0\1\164\4\0\1\164\6\0"+
-    "\1\165\23\0\1\140\4\0\1\164\1\0\3\164\1\0"+
-    "\1\164\25\0\1\165\50\0\1\166\4\0\1\166\37\0"+
-    "\1\166\1\0\3\166\1\0\1\166\11\0\1\167\1\54"+
-    "\1\53\1\0\1\53\1\167\2\53\6\0\3\53\3\0"+
-    "\5\53\7\0\1\53\4\0\1\167\1\53\3\167\1\53"+
-    "\1\167\1\0\5\53\3\0\1\53\1\54\3\0\3\53"+
-    "\6\0\3\53\3\0\3\53\1\170\1\53\7\0\1\53"+
-    "\4\0\7\53\1\0\5\53\3\0\1\53\1\54\3\0"+
-    "\3\53\6\0\3\53\3\0\1\171\4\53\7\0\1\53"+
-    "\4\0\7\53\1\0\5\53\3\0\1\53\1\54\3\0"+
-    "\3\53\6\0\3\53\3\0\5\53\7\0\1\53\4\0"+
-    "\2\53\1\172\4\53\1\0\5\53\3\0\1\53\1\54"+
-    "\3\0\3\53\6\0\3\53\3\0\4\53\1\173\7\0"+
-    "\1\53\4\0\7\53\1\0\5\53\3\0\1\53\1\54"+
-    "\3\0\3\53\6\0\1\53\1\174\1\53\3\0\5\53"+
-    "\7\0\1\53\4\0\7\53\1\0\5\53\32\0\1\175"+
-    "\35\0\1\176\1\72\1\71\1\0\1\71\1\176\2\71"+
-    "\6\0\3\71\1\0\1\34\1\0\5\71\1\35\6\0"+
-    "\1\71\4\0\1\176\1\71\3\176\1\71\1\176\1\0"+
-    "\5\71\3\0\1\177\1\30\1\6\1\0\1\6\1\177"+
-    "\2\6\6\0\3\6\1\33\1\34\1\0\5\6\1\35"+
-    "\6\0\1\6\4\0\1\177\1\6\3\177\1\6\1\177"+
-    "\1\0\5\6\3\0\1\200\1\47\3\0\1\200\2\50"+
-    "\6\0\3\50\3\0\5\50\7\0\1\50\4\0\1\200"+
-    "\1\50\3\200\1\50\1\200\1\0\5\50\3\0\1\201"+
-    "\1\47\1\50\1\0\1\50\1\201\2\50\6\0\3\50"+
-    "\3\0\5\50\7\0\1\50\4\0\1\201\1\50\3\201"+
-    "\1\50\1\201\1\0\5\50\2\0\2\156\1\157\6\156"+
-    "\2\0\1\156\1\163\5\156\1\0\44\156\1\157\11\156"+
-    "\1\202\50\156\2\161\1\203\6\161\1\204\53\161\2\162"+
-    "\1\205\7\162\1\204\52\162\1\0\1\206\4\0\1\206"+
-    "\6\0\1\207\23\0\1\140\4\0\1\206\1\0\3\206"+
-    "\1\0\1\206\25\0\1\207\50\0\1\210\4\0\1\210"+
-    "\37\0\1\210\1\0\3\210\1\0\1\210\11\0\1\211"+
-    "\1\54\1\53\1\0\1\53\1\211\2\53\6\0\3\53"+
-    "\3\0\5\53\7\0\1\53\4\0\1\211\1\53\3\211"+
-    "\1\53\1\211\1\0\5\53\3\0\1\53\1\54\3\0"+
-    "\3\53\6\0\1\53\1\212\1\53\3\0\5\53\7\0"+
-    "\1\53\4\0\7\53\1\0\5\53\3\0\1\53\1\54"+
-    "\3\0\3\53\6\0\3\53\3\0\5\53\7\0\1\53"+
-    "\4\0\1\213\6\53\1\0\5\53\3\0\1\53\1\54"+
-    "\3\0\3\53\6\0\3\53\3\0\5\53\7\0\1\214"+
-    "\4\0\7\53\1\0\5\53\3\0\1\53\1\54\3\0"+
-    "\3\53\6\0\3\53\3\0\5\53\7\0\1\53\4\0"+
-    "\7\53\1\0\1\53\1\215\3\53\22\0\1\216\45\0"+
-    "\1\217\1\72\1\71\1\0\1\71\1\217\2\71\6\0"+
-    "\3\71\1\0\1\34\1\0\5\71\1\35\6\0\1\71"+
-    "\4\0\1\217\1\71\3\217\1\71\1\217\1\0\5\71"+
-    "\3\0\1\220\1\30\1\6\1\0\1\6\1\220\2\6"+
-    "\6\0\3\6\1\33\1\34\1\0\5\6\1\35\6\0"+
-    "\1\6\4\0\1\220\1\6\3\220\1\6\1\220\1\0"+
-    "\5\6\3\0\1\221\1\47\3\0\1\221\2\50\6\0"+
-    "\3\50\3\0\5\50\7\0\1\50\4\0\1\221\1\50"+
-    "\3\221\1\50\1\221\1\0\5\50\3\0\1\222\1\47"+
-    "\1\50\1\0\1\50\1\222\2\50\6\0\3\50\3\0"+
-    "\5\50\7\0\1\50\4\0\1\222\1\50\3\222\1\50"+
-    "\1\222\1\0\5\50\2\0\2\161\1\203\6\161\1\223"+
-    "\53\161\3\0\1\204\1\0\1\204\6\0\1\163\50\0"+
-    "\2\162\1\205\7\162\1\224\52\162\1\0\1\225\4\0"+
-    "\1\225\6\0\1\226\23\0\1\140\4\0\1\225\1\0"+
-    "\3\225\1\0\1\225\25\0\1\226\50\0\1\227\4\0"+
-    "\1\227\37\0\1\227\1\0\3\227\1\0\1\227\11\0"+
-    "\1\230\1\54\1\53\1\0\1\53\1\230\2\53\6\0"+
-    "\3\53\3\0\5\53\7\0\1\53\4\0\1\230\1\53"+
-    "\3\230\1\53\1\230\1\0\5\53\3\0\1\53\1\54"+
-    "\3\0\3\53\6\0\3\53\3\0\4\53\1\231\7\0"+
-    "\1\53\4\0\7\53\1\0\5\53\3\0\1\232\1\233"+
-    "\1\234\1\0\1\234\2\232\1\53\6\0\3\232\3\0"+
-    "\5\232\7\0\1\53\4\0\7\232\1\0\5\232\3\0"+
-    "\1\53\1\54\3\0\3\53\6\0\3\53\3\0\5\53"+
-    "\7\0\1\53\4\0\4\53\1\235\2\53\1\0\5\53"+
-    "\3\0\1\53\1\54\3\0\3\53\6\0\3\53\3\0"+
-    "\5\53\7\0\1\53\4\0\2\53\1\236\4\53\1\0"+
-    "\5\53\33\0\1\237\34\0\1\240\1\72\1\71\1\0"+
-    "\1\71\1\240\2\71\6\0\3\71\1\0\1\34\1\0"+
-    "\5\71\1\35\6\0\1\71\4\0\1\240\1\71\3\240"+
-    "\1\71\1\240\1\0\5\71\3\0\1\6\1\30\1\6"+
-    "\1\0\4\6\6\0\3\6\1\33\1\34\1\0\5\6"+
-    "\1\35\6\0\1\6\4\0\7\6\1\0\5\6\3\0"+
-    "\1\241\1\47\1\50\1\0\1\50\1\241\2\50\6\0"+
-    "\3\50\3\0\5\50\7\0\1\50\4\0\1\241\1\50"+
-    "\3\241\1\50\1\241\1\0\5\50\2\0\2\161\1\203"+
-    "\1\223\1\161\1\223\3\161\1\204\2\161\1\242\50\161"+
-    "\2\162\1\205\1\224\1\162\1\224\4\162\1\204\1\162"+
-    "\1\243\50\162\1\0\1\244\4\0\1\244\6\0\1\245"+
-    "\23\0\1\140\4\0\1\244\1\0\3\244\1\0\1\244"+
-    "\25\0\1\245\50\0\1\246\4\0\1\246\37\0\1\246"+
-    "\1\0\3\246\1\0\1\246\11\0\1\247\1\54\1\53"+
-    "\1\0\1\53\1\247\2\53\6\0\3\53\3\0\5\53"+
-    "\7\0\1\53\4\0\1\247\1\53\3\247\1\53\1\247"+
-    "\1\0\5\53\2\0\1\250\1\251\1\252\1\253\1\250"+
-    "\1\253\3\251\1\254\1\255\1\250\1\0\2\250\1\256"+
-    "\2\251\1\0\2\250\5\251\1\257\6\250\1\251\4\250"+
-    "\7\251\1\250\5\251\2\250\1\0\1\232\1\233\1\260"+
-    "\1\0\1\260\3\232\6\0\3\232\1\0\1\234\1\0"+
-    "\5\232\7\0\1\232\4\0\7\232\1\0\5\232\3\0"+
-    "\1\261\1\232\1\0\2\232\1\261\37\232\1\261\1\232"+
-    "\3\261\1\232\1\261\10\232\1\0\1\232\1\233\1\234"+
-    "\1\0\1\234\2\232\7\0\3\232\3\0\5\232\14\0"+
-    "\7\232\1\0\5\232\3\0\1\53\1\54\3\0\3\53"+
-    "\6\0\3\53\3\0\5\53\7\0\1\53\4\0\1\262"+
-    "\6\53\1\0\5\53\3\0\1\53\1\54\3\0\3\53"+
-    "\6\0\3\53\3\0\4\53\1\263\7\0\1\53\4\0"+
-    "\7\53\1\0\5\53\50\0\1\264\17\0\1\265\1\72"+
-    "\1\71\1\0\1\71\1\265\2\71\6\0\3\71\1\0"+
-    "\1\34\1\0\5\71\1\35\6\0\1\71\4\0\1\265"+
-    "\1\71\3\265\1\71\1\265\1\0\5\71\3\0\1\50"+
-    "\1\47\1\50\1\0\4\50\6\0\3\50\3\0\5\50"+
-    "\7\0\1\50\4\0\7\50\1\0\5\50\43\0\1\140"+
-    "\24\0\1\266\4\0\1\266\37\0\1\266\1\0\3\266"+
-    "\1\0\1\266\11\0\1\53\1\54\1\53\1\0\4\53"+
-    "\6\0\3\53\3\0\5\53\7\0\1\53\4\0\7\53"+
-    "\1\0\5\53\2\0\2\250\1\267\6\250\2\0\1\250"+
-    "\1\0\5\250\1\0\7\250\1\257\33\250\1\251\1\252"+
-    "\3\250\3\251\2\0\1\250\1\0\2\250\3\251\1\0"+
-    "\2\250\5\251\1\257\6\250\1\251\4\250\7\251\1\250"+
-    "\5\251\3\250\1\270\1\271\1\250\2\251\1\270\23\251"+
-    "\1\272\13\251\1\270\1\251\3\270\1\251\1\270\10\251"+
-    "\2\250\1\267\1\253\1\250\1\253\3\250\1\254\1\255"+
-    "\1\250\1\0\2\250\1\273\2\250\1\0\7\250\1\257"+
-    "\32\250\2\254\1\274\6\254\1\275\53\254\2\255\1\276"+
-    "\7\255\1\275\52\255\1\250\1\251\1\252\3\250\3\251"+
-    "\2\0\1\250\1\0\2\250\1\251\1\277\1\251\1\0"+
-    "\2\250\5\251\1\257\6\250\1\251\4\250\7\251\1\250"+
-    "\5\251\2\250\3\0\1\260\1\0\1\260\15\0\1\234"+
-    "\42\0\1\300\1\233\1\232\1\0\1\232\1\300\2\232"+
-    "\6\0\3\232\1\0\1\234\1\0\5\232\7\0\1\232"+
-    "\4\0\1\300\1\232\3\300\1\232\1\300\1\0\5\232"+
-    "\3\0\1\53\1\54\3\0\3\53\6\0\3\53\3\0"+
-    "\5\53\7\0\1\53\4\0\6\53\1\301\1\0\5\53"+
-    "\3\0\1\53\1\54\1\302\1\0\1\302\3\53\1\303"+
-    "\1\304\4\0\3\53\3\0\5\53\7\0\1\53\4\0"+
-    "\7\53\1\0\5\53\55\0\1\305\12\0\1\71\1\72"+
-    "\1\71\1\0\4\71\6\0\3\71\1\0\1\34\1\0"+
-    "\5\71\1\35\6\0\1\71\4\0\7\71\1\0\5\71"+
-    "\3\0\1\306\4\0\1\306\37\0\1\306\1\0\3\306"+
-    "\1\0\1\306\10\0\2\250\1\267\27\250\1\257\33\250"+
-    "\1\307\1\252\1\251\1\250\1\251\1\307\2\251\2\0"+
-    "\1\250\1\0\2\250\3\251\1\0\2\250\5\251\1\257"+
-    "\6\250\1\251\4\250\1\307\1\251\3\307\1\251\1\307"+
-    "\1\250\5\251\3\250\1\251\1\252\3\250\3\251\6\250"+
-    "\3\251\3\250\5\251\1\257\6\250\1\251\4\250\7\251"+
-    "\1\250\5\251\4\250\1\267\6\250\2\0\1\250\1\0"+
-    "\3\250\1\310\1\250\1\0\7\250\1\257\32\250\2\254"+
-    "\1\274\6\254\1\311\53\254\1\0\1\312\1\313\1\314"+
-    "\1\0\1\314\2\312\7\0\3\312\3\0\5\312\1\315"+
-    "\13\0\7\312\1\0\5\312\2\0\2\255\1\276\7\255"+
-    "\1\316\52\255\1\250\1\251\1\252\3\250\3\251\2\0"+
-    "\1\250\1\0\2\250\2\251\1\317\1\0\2\250\5\251"+
-    "\1\257\6\250\1\251\4\250\7\251\1\250\5\251\2\250"+
-    "\1\0\1\320\1\233\1\232\1\0\1\232\1\320\2\232"+
-    "\6\0\3\232\1\0\1\234\1\0\5\232\7\0\1\232"+
-    "\4\0\1\320\1\232\3\320\1\232\1\320\1\0\5\232"+
-    "\3\0\1\53\1\54\3\0\3\53\6\0\3\53\3\0"+
-    "\5\53\7\0\1\53\4\0\2\53\1\321\4\53\1\0"+
-    "\5\53\5\0\1\302\1\0\1\302\3\0\1\303\1\304"+
-    "\52\0\2\303\1\322\6\303\1\323\53\303\2\304\1\324"+
-    "\7\304\1\323\52\304\31\0\1\325\33\0\1\250\1\326"+
-    "\1\252\1\251\1\250\1\251\1\326\2\251\2\0\1\250"+
-    "\1\0\2\250\3\251\1\0\2\250\5\251\1\257\6\250"+
-    "\1\251\4\250\1\326\1\251\3\326\1\251\1\326\1\250"+
-    "\5\251\4\250\1\267\6\250\2\0\1\250\1\0\4\250"+
-    "\1\327\1\0\7\250\1\257\32\250\1\254\1\330\1\331"+
-    "\1\332\1\254\1\332\2\330\1\254\1\275\5\254\3\330"+
-    "\3\254\5\330\1\333\13\254\7\330\1\254\5\330\2\254"+
-    "\1\0\1\312\1\313\1\334\1\0\1\334\3\312\6\0"+
-    "\3\312\1\0\1\314\1\0\5\312\1\315\6\0\1\312"+
-    "\4\0\7\312\1\0\5\312\3\0\1\335\1\312\1\0"+
-    "\2\312\1\335\37\312\1\335\1\312\3\335\1\312\1\335"+
-    "\10\312\1\0\1\312\1\313\1\314\1\0\1\314\2\312"+
-    "\7\0\3\312\3\0\5\312\14\0\7\312\1\0\5\312"+
-    "\2\0\1\255\1\336\1\337\1\340\1\255\1\340\2\336"+
-    "\2\255\1\275\4\255\3\336\3\255\5\336\1\341\13\255"+
-    "\7\336\1\255\5\336\2\255\1\250\1\251\1\252\3\250"+
-    "\3\251\2\0\1\250\1\0\2\250\3\251\1\342\2\250"+
-    "\5\251\1\257\6\250\1\251\4\250\7\251\1\250\5\251"+
-    "\2\250\1\0\1\343\1\233\1\232\1\0\1\232\1\343"+
-    "\2\232\6\0\3\232\1\0\1\234\1\0\5\232\7\0"+
-    "\1\232\4\0\1\343\1\232\3\343\1\232\1\343\1\0"+
-    "\5\232\2\0\2\303\1\322\6\303\1\344\53\303\3\0"+
-    "\1\323\1\0\1\323\24\0\1\345\32\0\2\304\1\324"+
-    "\7\304\1\346\52\304\1\250\1\347\1\252\1\251\1\250"+
-    "\1\251\1\347\2\251\2\0\1\250\1\0\2\250\3\251"+
-    "\1\0\2\250\5\251\1\257\6\250\1\251\4\250\1\347"+
-    "\1\251\3\347\1\251\1\347\1\250\5\251\4\250\1\267"+
-    "\6\250\2\0\1\250\1\0\5\250\1\342\7\250\1\257"+
-    "\32\250\1\254\1\330\1\331\1\350\1\254\1\350\3\330"+
-    "\1\275\5\254\3\330\1\254\1\332\1\254\5\330\1\333"+
-    "\6\254\1\330\4\254\7\330\1\254\5\330\3\254\1\351"+
-    "\1\352\1\254\2\330\1\351\2\330\1\353\34\330\1\351"+
-    "\1\330\3\351\1\330\1\351\10\330\1\254\1\330\1\331"+
-    "\1\332\1\254\1\332\2\330\1\254\1\275\5\254\3\330"+
-    "\3\254\5\330\14\254\7\330\1\254\5\330\2\254\3\0"+
-    "\1\334\1\0\1\334\15\0\1\314\6\0\1\315\33\0"+
-    "\1\354\1\313\1\312\1\0\1\312\1\354\2\312\6\0"+
-    "\3\312\1\0\1\314\1\0\5\312\1\315\6\0\1\312"+
-    "\4\0\1\354\1\312\3\354\1\312\1\354\1\0\5\312"+
-    "\2\0\1\255\1\336\1\337\1\355\1\255\1\355\3\336"+
-    "\1\255\1\275\4\255\3\336\1\255\1\340\1\255\5\336"+
-    "\1\341\6\255\1\336\4\255\7\336\1\255\5\336\3\255"+
-    "\1\356\1\357\1\255\2\336\1\356\3\336\1\360\33\336"+
-    "\1\356\1\336\3\356\1\336\1\356\10\336\1\255\1\336"+
-    "\1\337\1\340\1\255\1\340\2\336\2\255\1\275\4\255"+
-    "\3\336\3\255\5\336\14\255\7\336\1\255\5\336\2\255"+
-    "\2\361\1\362\1\342\1\361\1\342\3\361\1\363\1\364"+
-    "\1\361\1\275\5\361\1\0\42\361\1\0\1\365\1\233"+
-    "\1\232\1\0\1\232\1\365\2\232\6\0\3\232\1\0"+
-    "\1\234\1\0\5\232\7\0\1\232\4\0\1\365\1\232"+
-    "\3\365\1\232\1\365\1\0\5\232\2\0\2\303\1\322"+
-    "\1\344\1\303\1\344\3\303\1\323\20\303\1\366\32\303"+
-    "\2\304\1\324\1\346\1\304\1\346\4\304\1\323\17\304"+
-    "\1\367\32\304\1\250\1\370\1\252\1\251\1\250\1\251"+
-    "\1\370\2\251\2\0\1\250\1\0\2\250\3\251\1\0"+
-    "\2\250\5\251\1\257\6\250\1\251\4\250\1\370\1\251"+
-    "\3\370\1\251\1\370\1\250\5\251\2\250\2\254\1\274"+
-    "\1\350\1\254\1\350\3\254\1\275\11\254\1\332\6\254"+
-    "\1\333\33\254\1\371\1\331\1\330\1\254\1\330\1\371"+
-    "\2\330\1\275\5\254\3\330\1\254\1\332\1\254\5\330"+
-    "\1\333\6\254\1\330\4\254\1\371\1\330\3\371\1\330"+
-    "\1\371\1\254\5\330\3\254\1\330\1\331\1\350\1\254"+
-    "\1\350\3\330\1\311\5\254\3\330\1\254\1\332\1\254"+
-    "\5\330\1\333\6\254\1\330\4\254\7\330\1\254\5\330"+
-    "\3\254\1\330\1\331\1\372\1\254\1\372\3\330\1\275"+
-    "\5\254\3\330\1\254\1\332\1\254\5\330\1\333\6\254"+
-    "\1\330\4\254\7\330\1\254\5\330\2\254\1\0\1\373"+
-    "\1\313\1\312\1\0\1\312\1\373\2\312\6\0\3\312"+
-    "\1\0\1\314\1\0\5\312\1\315\6\0\1\312\4\0"+
-    "\1\373\1\312\3\373\1\312\1\373\1\0\5\312\2\0"+
-    "\2\255\1\276\1\355\1\255\1\355\4\255\1\275\10\255"+
-    "\1\340\6\255\1\341\33\255\1\374\1\337\1\336\1\255"+
-    "\1\336\1\374\2\336\1\255\1\275\4\255\3\336\1\255"+
-    "\1\340\1\255\5\336\1\341\6\255\1\336\4\255\1\374"+
-    "\1\336\3\374\1\336\1\374\1\255\5\336\3\255\1\336"+
-    "\1\337\1\355\1\255\1\355\3\336\1\255\1\316\4\255"+
-    "\3\336\1\255\1\340\1\255\5\336\1\341\6\255\1\336"+
-    "\4\255\7\336\1\255\5\336\3\255\1\336\1\337\1\375"+
-    "\1\255\1\375\3\336\1\255\1\275\4\255\3\336\1\255"+
-    "\1\340\1\255\5\336\1\341\6\255\1\336\4\255\7\336"+
-    "\1\255\5\336\2\255\2\361\1\362\6\361\2\0\1\361"+
-    "\1\275\5\361\1\0\44\361\1\362\11\361\1\376\50\361"+
-    "\2\363\1\377\6\363\1\u0100\53\363\2\364\1\u0101\7\364"+
-    "\1\u0100\52\364\1\0\1\u0102\1\233\1\232\1\0\1\232"+
-    "\1\u0102\2\232\6\0\3\232\1\0\1\234\1\0\5\232"+
-    "\7\0\1\232\4\0\1\u0102\1\232\3\u0102\1\232\1\u0102"+
-    "\1\0\5\232\2\0\1\250\1\u0103\1\252\1\251\1\250"+
-    "\1\251\1\u0103\2\251\2\0\1\250\1\0\2\250\3\251"+
-    "\1\0\2\250\5\251\1\257\6\250\1\251\4\250\1\u0103"+
-    "\1\251\3\u0103\1\251\1\u0103\1\250\5\251\2\250\1\254"+
-    "\1\u0104\1\331\1\330\1\254\1\330\1\u0104\2\330\1\275"+
-    "\5\254\3\330\1\254\1\332\1\254\5\330\1\333\6\254"+
-    "\1\330\4\254\1\u0104\1\330\3\u0104\1\330\1\u0104\1\254"+
-    "\5\330\3\254\1\330\1\331\1\372\1\254\1\372\2\330"+
-    "\1\254\1\275\5\254\3\330\1\254\1\332\1\254\5\330"+
-    "\1\333\13\254\7\330\1\254\5\330\2\254\1\0\1\u0105"+
-    "\1\313\1\312\1\0\1\312\1\u0105\2\312\6\0\3\312"+
-    "\1\0\1\314\1\0\5\312\1\315\6\0\1\312\4\0"+
-    "\1\u0105\1\312\3\u0105\1\312\1\u0105\1\0\5\312\2\0"+
-    "\1\255\1\u0106\1\337\1\336\1\255\1\336\1\u0106\2\336"+
-    "\1\255\1\275\4\255\3\336\1\255\1\340\1\255\5\336"+
-    "\1\341\6\255\1\336\4\255\1\u0106\1\336\3\u0106\1\336"+
-    "\1\u0106\1\255\5\336\3\255\1\336\1\337\1\375\1\255"+
-    "\1\375\2\336\2\255\1\275\4\255\3\336\1\255\1\340"+
-    "\1\255\5\336\1\341\13\255\7\336\1\255\5\336\2\255"+
-    "\1\361\1\u0107\1\u0108\1\u0109\1\361\1\u0109\2\u0107\1\361"+
-    "\2\0\1\361\1\275\2\361\3\u0107\1\0\2\361\5\u0107"+
-    "\1\u010a\13\361\7\u0107\1\361\5\u0107\2\361\2\363\1\377"+
-    "\6\363\1\u010b\53\363\3\0\1\u0100\1\0\1\u0100\6\0"+
-    "\1\275\50\0\2\364\1\u0101\7\364\1\u010c\52\364\1\0"+
-    "\1\232\1\233\1\232\1\0\4\232\6\0\3\232\1\0"+
-    "\1\234\1\0\5\232\7\0\1\232\4\0\7\232\1\0"+
-    "\5\232\2\0\1\250\1\251\1\252\1\251\1\250\4\251"+
-    "\2\0\1\250\1\0\2\250\3\251\1\0\2\250\5\251"+
-    "\1\257\6\250\1\251\4\250\7\251\1\250\5\251\2\250"+
-    "\1\254\1\u010d\1\331\1\330\1\254\1\330\1\u010d\2\330"+
-    "\1\275\5\254\3\330\1\254\1\332\1\254\5\330\1\333"+
-    "\6\254\1\330\4\254\1\u010d\1\330\3\u010d\1\330\1\u010d"+
-    "\1\254\5\330\2\254\1\0\1\u010e\1\313\1\312\1\0"+
-    "\1\312\1\u010e\2\312\6\0\3\312\1\0\1\314\1\0"+
-    "\5\312\1\315\6\0\1\312\4\0\1\u010e\1\312\3\u010e"+
-    "\1\312\1\u010e\1\0\5\312\2\0\1\255\1\u010f\1\337"+
-    "\1\336\1\255\1\336\1\u010f\2\336\1\255\1\275\4\255"+
-    "\3\336\1\255\1\340\1\255\5\336\1\341\6\255\1\336"+
-    "\4\255\1\u010f\1\336\3\u010f\1\336\1\u010f\1\255\5\336"+
-    "\2\255\1\361\1\u0107\1\u0108\1\u0110\1\361\1\u0110\3\u0107"+
-    "\2\0\1\361\1\275\2\361\3\u0107\1\0\1\u0109\1\361"+
-    "\5\u0107\1\u010a\6\361\1\u0107\4\361\7\u0107\1\361\5\u0107"+
-    "\3\361\1\u0111\1\u0112\1\361\2\u0107\1\u0111\5\u0107\1\u0113"+
-    "\31\u0107\1\u0111\1\u0107\3\u0111\1\u0107\1\u0111\10\u0107\1\361"+
-    "\1\u0107\1\u0108\1\u0109\1\361\1\u0109\2\u0107\1\361\2\0"+
-    "\1\361\1\275\2\361\3\u0107\1\0\2\361\5\u0107\14\361"+
-    "\7\u0107\1\361\5\u0107\2\361\2\363\1\377\1\u010b\1\363"+
-    "\1\u010b\3\363\1\u0100\2\363\1\u0114\50\363\2\364\1\u0101"+
-    "\1\u010c\1\364\1\u010c\4\364\1\u0100\1\364\1\u0115\50\364"+
-    "\1\254\1\u0116\1\331\1\330\1\254\1\330\1\u0116\2\330"+
-    "\1\275\5\254\3\330\1\254\1\332\1\254\5\330\1\333"+
-    "\6\254\1\330\4\254\1\u0116\1\330\3\u0116\1\330\1\u0116"+
-    "\1\254\5\330\2\254\1\0\1\u0117\1\313\1\312\1\0"+
-    "\1\312\1\u0117\2\312\6\0\3\312\1\0\1\314\1\0"+
-    "\5\312\1\315\6\0\1\312\4\0\1\u0117\1\312\3\u0117"+
-    "\1\312\1\u0117\1\0\5\312\2\0\1\255\1\u0118\1\337"+
-    "\1\336\1\255\1\336\1\u0118\2\336\1\255\1\275\4\255"+
-    "\3\336\1\255\1\340\1\255\5\336\1\341\6\255\1\336"+
-    "\4\255\1\u0118\1\336\3\u0118\1\336\1\u0118\1\255\5\336"+
-    "\2\255\2\361\1\362\1\u0110\1\361\1\u0110\3\361\2\0"+
-    "\1\361\1\275\5\361\1\0\1\u0109\6\361\1\u010a\33\361"+
-    "\1\u0119\1\u0108\1\u0107\1\361\1\u0107\1\u0119\2\u0107\2\0"+
-    "\1\361\1\275\2\361\3\u0107\1\0\1\u0109\1\361\5\u0107"+
-    "\1\u010a\6\361\1\u0107\4\361\1\u0119\1\u0107\3\u0119\1\u0107"+
-    "\1\u0119\1\361\5\u0107\3\361\1\u0107\1\u0108\1\u0110\1\361"+
-    "\1\u0110\3\u0107\3\361\1\376\2\361\3\u0107\1\361\1\u0109"+
-    "\1\361\5\u0107\1\u010a\6\361\1\u0107\4\361\7\u0107\1\361"+
-    "\5\u0107\3\361\1\u0107\1\u0108\1\u011a\1\361\1\u011a\3\u0107"+
-    "\2\0\1\361\1\275\2\361\3\u0107\1\0\1\u0109\1\361"+
-    "\5\u0107\1\u010a\6\361\1\u0107\4\361\7\u0107\1\361\5\u0107"+
-    "\2\361\1\363\1\u011b\1\u011c\1\u011d\1\363\1\u011d\2\u011b"+
-    "\1\363\1\u0100\5\363\3\u011b\3\363\5\u011b\1\u011e\13\363"+
-    "\7\u011b\1\363\5\u011b\2\363\1\364\1\u011f\1\u0120\1\u0121"+
-    "\1\364\1\u0121\2\u011f\2\364\1\u0100\4\364\3\u011f\3\364"+
-    "\5\u011f\1\u0122\13\364\7\u011f\1\364\5\u011f\2\364\1\254"+
-    "\1\u0123\1\331\1\330\1\254\1\330\1\u0123\2\330\1\275"+
-    "\5\254\3\330\1\254\1\332\1\254\5\330\1\333\6\254"+
-    "\1\330\4\254\1\u0123\1\330\3\u0123\1\330\1\u0123\1\254"+
-    "\5\330\2\254\1\0\1\312\1\313\1\312\1\0\4\312"+
-    "\6\0\3\312\1\0\1\314\1\0\5\312\1\315\6\0"+
-    "\1\312\4\0\7\312\1\0\5\312\2\0\1\255\1\u0124"+
-    "\1\337\1\336\1\255\1\336\1\u0124\2\336\1\255\1\275"+
-    "\4\255\3\336\1\255\1\340\1\255\5\336\1\341\6\255"+
-    "\1\336\4\255\1\u0124\1\336\3\u0124\1\336\1\u0124\1\255"+
-    "\5\336\2\255\1\361\1\u0125\1\u0108\1\u0107\1\361\1\u0107"+
-    "\1\u0125\2\u0107\2\0\1\361\1\275\2\361\3\u0107\1\0"+
-    "\1\u0109\1\361\5\u0107\1\u010a\6\361\1\u0107\4\361\1\u0125"+
-    "\1\u0107\3\u0125\1\u0107\1\u0125\1\361\5\u0107\3\361\1\u0107"+
-    "\1\u0108\1\u011a\1\361\1\u011a\2\u0107\1\361\2\0\1\361"+
-    "\1\275\2\361\3\u0107\1\0\1\u0109\1\361\5\u0107\1\u010a"+
-    "\13\361\7\u0107\1\361\5\u0107\2\361\1\363\1\u011b\1\u011c"+
-    "\1\u0126\1\363\1\u0126\3\u011b\1\u0100\5\363\3\u011b\1\363"+
-    "\1\u011d\1\363\5\u011b\1\u011e\6\363\1\u011b\4\363\7\u011b"+
-    "\1\363\5\u011b\3\363\1\u0127\1\u0128\1\363\2\u011b\1\u0127"+
-    "\2\u011b\1\u0129\34\u011b\1\u0127\1\u011b\3\u0127\1\u011b\1\u0127"+
-    "\10\u011b\1\363\1\u011b\1\u011c\1\u011d\1\363\1\u011d\2\u011b"+
-    "\1\363\1\u0100\5\363\3\u011b\3\363\5\u011b\14\363\7\u011b"+
-    "\1\363\5\u011b\2\363\1\364\1\u011f\1\u0120\1\u012a\1\364"+
-    "\1\u012a\3\u011f\1\364\1\u0100\4\364\3\u011f\1\364\1\u0121"+
-    "\1\364\5\u011f\1\u0122\6\364\1\u011f\4\364\7\u011f\1\364"+
-    "\5\u011f\3\364\1\u012b\1\u012c\1\364\2\u011f\1\u012b\3\u011f"+
-    "\1\u012d\33\u011f\1\u012b\1\u011f\3\u012b\1\u011f\1\u012b\10\u011f"+
-    "\1\364\1\u011f\1\u0120\1\u0121\1\364\1\u0121\2\u011f\2\364"+
-    "\1\u0100\4\364\3\u011f\3\364\5\u011f\14\364\7\u011f\1\364"+
-    "\5\u011f\2\364\1\254\1\330\1\331\1\330\1\254\4\330"+
-    "\1\275\5\254\3\330\1\254\1\332\1\254\5\330\1\333"+
-    "\6\254\1\330\4\254\7\330\1\254\5\330\2\254\1\255"+
-    "\1\336\1\337\1\336\1\255\4\336\1\255\1\275\4\255"+
-    "\3\336\1\255\1\340\1\255\5\336\1\341\6\255\1\336"+
-    "\4\255\7\336\1\255\5\336\2\255\1\361\1\u012e\1\u0108"+
-    "\1\u0107\1\361\1\u0107\1\u012e\2\u0107\2\0\1\361\1\275"+
-    "\2\361\3\u0107\1\0\1\u0109\1\361\5\u0107\1\u010a\6\361"+
-    "\1\u0107\4\361\1\u012e\1\u0107\3\u012e\1\u0107\1\u012e\1\361"+
-    "\5\u0107\2\361\2\363\1\377\1\u0126\1\363\1\u0126\3\363"+
-    "\1\u0100\11\363\1\u011d\6\363\1\u011e\33\363\1\u012f\1\u011c"+
-    "\1\u011b\1\363\1\u011b\1\u012f\2\u011b\1\u0100\5\363\3\u011b"+
-    "\1\363\1\u011d\1\363\5\u011b\1\u011e\6\363\1\u011b\4\363"+
-    "\1\u012f\1\u011b\3\u012f\1\u011b\1\u012f\1\363\5\u011b\3\363"+
-    "\1\u011b\1\u011c\1\u0126\1\363\1\u0126\3\u011b\1\u010b\5\363"+
-    "\3\u011b\1\363\1\u011d\1\363\5\u011b\1\u011e\6\363\1\u011b"+
-    "\4\363\7\u011b\1\363\5\u011b\3\363\1\u011b\1\u011c\1\u0130"+
-    "\1\363\1\u0130\3\u011b\1\u0100\2\363\1\u0114\2\363\3\u011b"+
-    "\1\363\1\u011d\1\363\5\u011b\1\u011e\6\363\1\u011b\4\363"+
-    "\7\u011b\1\363\5\u011b\2\363\2\364\1\u0101\1\u012a\1\364"+
-    "\1\u012a\4\364\1\u0100\10\364\1\u0121\6\364\1\u0122\33\364"+
-    "\1\u0131\1\u0120\1\u011f\1\364\1\u011f\1\u0131\2\u011f\1\364"+
-    "\1\u0100\4\364\3\u011f\1\364\1\u0121\1\364\5\u011f\1\u0122"+
-    "\6\364\1\u011f\4\364\1\u0131\1\u011f\3\u0131\1\u011f\1\u0131"+
-    "\1\364\5\u011f\3\364\1\u011f\1\u0120\1\u012a\1\364\1\u012a"+
-    "\3\u011f\1\364\1\u010c\4\364\3\u011f\1\364\1\u0121\1\364"+
-    "\5\u011f\1\u0122\6\364\1\u011f\4\364\7\u011f\1\364\5\u011f"+
-    "\3\364\1\u011f\1\u0120\1\u0132\1\364\1\u0132\3\u011f\1\364"+
-    "\1\u0100\1\364\1\u0115\2\364\3\u011f\1\364\1\u0121\1\364"+
-    "\5\u011f\1\u0122\6\364\1\u011f\4\364\7\u011f\1\364\5\u011f"+
-    "\2\364\1\361\1\u0133\1\u0108\1\u0107\1\361\1\u0107\1\u0133"+
-    "\2\u0107\2\0\1\361\1\275\2\361\3\u0107\1\0\1\u0109"+
-    "\1\361\5\u0107\1\u010a\6\361\1\u0107\4\361\1\u0133\1\u0107"+
-    "\3\u0133\1\u0107\1\u0133\1\361\5\u0107\2\361\1\363\1\u0134"+
-    "\1\u011c\1\u011b\1\363\1\u011b\1\u0134\2\u011b\1\u0100\5\363"+
-    "\3\u011b\1\363\1\u011d\1\363\5\u011b\1\u011e\6\363\1\u011b"+
-    "\4\363\1\u0134\1\u011b\3\u0134\1\u011b\1\u0134\1\363\5\u011b"+
-    "\4\363\1\377\1\u0130\1\363\1\u0130\3\363\1\u0100\2\363"+
-    "\1\u0114\6\363\1\u011d\6\363\1\u011e\32\363\1\364\1\u0135"+
-    "\1\u0120\1\u011f\1\364\1\u011f\1\u0135\2\u011f\1\364\1\u0100"+
-    "\4\364\3\u011f\1\364\1\u0121\1\364\5\u011f\1\u0122\6\364"+
-    "\1\u011f\4\364\1\u0135\1\u011f\3\u0135\1\u011f\1\u0135\1\364"+
-    "\5\u011f\4\364\1\u0101\1\u0132\1\364\1\u0132\4\364\1\u0100"+
-    "\1\364\1\u0115\6\364\1\u0121\6\364\1\u0122\32\364\1\361"+
-    "\1\u0136\1\u0108\1\u0107\1\361\1\u0107\1\u0136\2\u0107\2\0"+
-    "\1\361\1\275\2\361\3\u0107\1\0\1\u0109\1\361\5\u0107"+
-    "\1\u010a\6\361\1\u0107\4\361\1\u0136\1\u0107\3\u0136\1\u0107"+
-    "\1\u0136\1\361\5\u0107\2\361\1\363\1\u0137\1\u011c\1\u011b"+
-    "\1\363\1\u011b\1\u0137\2\u011b\1\u0100\5\363\3\u011b\1\363"+
-    "\1\u011d\1\363\5\u011b\1\u011e\6\363\1\u011b\4\363\1\u0137"+
-    "\1\u011b\3\u0137\1\u011b\1\u0137\1\363\5\u011b\2\363\1\364"+
-    "\1\u0138\1\u0120\1\u011f\1\364\1\u011f\1\u0138\2\u011f\1\364"+
-    "\1\u0100\4\364\3\u011f\1\364\1\u0121\1\364\5\u011f\1\u0122"+
-    "\6\364\1\u011f\4\364\1\u0138\1\u011f\3\u0138\1\u011f\1\u0138"+
-    "\1\364\5\u011f\2\364\1\361\1\u0107\1\u0108\1\u0107\1\361"+
-    "\4\u0107\2\0\1\361\1\275\2\361\3\u0107\1\0\1\u0109"+
-    "\1\361\5\u0107\1\u010a\6\361\1\u0107\4\361\7\u0107\1\361"+
-    "\5\u0107\2\361\1\363\1\u0139\1\u011c\1\u011b\1\363\1\u011b"+
-    "\1\u0139\2\u011b\1\u0100\5\363\3\u011b\1\363\1\u011d\1\363"+
-    "\5\u011b\1\u011e\6\363\1\u011b\4\363\1\u0139\1\u011b\3\u0139"+
-    "\1\u011b\1\u0139\1\363\5\u011b\2\363\1\364\1\u013a\1\u0120"+
-    "\1\u011f\1\364\1\u011f\1\u013a\2\u011f\1\364\1\u0100\4\364"+
-    "\3\u011f\1\364\1\u0121\1\364\5\u011f\1\u0122\6\364\1\u011f"+
-    "\4\364\1\u013a\1\u011f\3\u013a\1\u011f\1\u013a\1\364\5\u011f"+
-    "\2\364\1\363\1\u013b\1\u011c\1\u011b\1\363\1\u011b\1\u013b"+
-    "\2\u011b\1\u0100\5\363\3\u011b\1\363\1\u011d\1\363\5\u011b"+
-    "\1\u011e\6\363\1\u011b\4\363\1\u013b\1\u011b\3\u013b\1\u011b"+
-    "\1\u013b\1\363\5\u011b\2\363\1\364\1\u013c\1\u0120\1\u011f"+
-    "\1\364\1\u011f\1\u013c\2\u011f\1\364\1\u0100\4\364\3\u011f"+
-    "\1\364\1\u0121\1\364\5\u011f\1\u0122\6\364\1\u011f\4\364"+
-    "\1\u013c\1\u011f\3\u013c\1\u011f\1\u013c\1\364\5\u011f\2\364"+
-    "\1\363\1\u011b\1\u011c\1\u011b\1\363\4\u011b\1\u0100\5\363"+
-    "\3\u011b\1\363\1\u011d\1\363\5\u011b\1\u011e\6\363\1\u011b"+
-    "\4\363\7\u011b\1\363\5\u011b\2\363\1\364\1\u011f\1\u0120"+
-    "\1\u011f\1\364\4\u011f\1\364\1\u0100\4\364\3\u011f\1\364"+
-    "\1\u0121\1\364\5\u011f\1\u0122\6\364\1\u011f\4\364\7\u011f"+
-    "\1\364\5\u011f\2\364";
+    "\1\7\1\10\1\11\1\12\1\13\1\2\1\14\1\15"+
+    "\2\6\1\2\1\16\1\17\5\6\1\20\1\21\1\22"+
+    "\1\23\1\16\1\24\1\25\1\16\1\26\1\2\1\27"+
+    "\1\16\7\6\1\16\5\6\1\2\66\0\1\3\1\30"+
+    "\1\31\1\0\1\31\3\6\2\0\1\6\1\32\3\0"+
+    "\3\6\1\33\1\34\1\0\5\6\1\35\13\0\7\6"+
+    "\1\0\5\6\1\36\1\0\1\37\1\6\1\0\2\6"+
+    "\1\37\40\6\1\37\1\6\3\37\1\6\1\37\7\6"+
+    "\3\0\1\5\1\0\1\5\26\0\1\21\1\22\30\0"+
+    "\1\6\1\30\1\31\1\0\1\31\3\6\2\0\1\6"+
+    "\4\0\3\6\1\33\1\34\1\0\5\6\1\35\13\0"+
+    "\7\6\1\0\5\6\1\0\2\40\1\41\6\40\1\42"+
+    "\53\40\2\43\1\44\7\43\1\42\52\43\1\0\1\45"+
+    "\1\46\3\0\2\45\3\0\1\47\4\0\3\45\3\0"+
+    "\5\45\14\0\7\45\1\0\5\45\2\0\1\50\64\0"+
+    "\1\51\1\52\3\0\1\51\2\53\2\0\1\53\4\0"+
+    "\3\53\3\0\5\53\14\0\1\51\1\53\3\51\1\53"+
+    "\1\51\1\0\5\53\2\0\1\6\1\30\1\31\1\0"+
+    "\1\31\3\6\2\0\1\6\4\0\1\6\1\54\1\6"+
+    "\1\33\1\34\1\0\5\6\1\35\13\0\7\6\1\55"+
+    "\5\6\2\0\1\56\1\57\3\0\2\56\10\0\3\56"+
+    "\3\0\1\60\1\61\1\62\2\56\14\0\4\56\1\63"+
+    "\1\56\1\64\1\0\5\56\4\0\1\21\1\0\1\21"+
+    "\62\0\1\22\1\0\1\22\116\0\1\65\66\0\1\66"+
+    "\26\0\1\67\1\0\1\67\20\0\1\70\102\0\1\71"+
+    "\64\0\1\72\23\0\1\31\1\0\1\31\16\0\1\34"+
+    "\6\0\1\35\32\0\1\73\1\74\1\34\1\0\1\34"+
+    "\2\73\10\0\3\73\3\0\5\73\14\0\7\73\1\0"+
+    "\5\73\2\0\1\75\1\30\1\6\1\0\1\6\1\75"+
+    "\2\6\2\0\1\6\4\0\3\6\1\33\1\34\1\0"+
+    "\5\6\1\35\13\0\1\75\1\6\3\75\1\6\1\75"+
+    "\1\0\5\6\1\0\2\40\1\41\6\40\1\76\53\40"+
+    "\2\43\1\44\7\43\1\77\52\43\1\0\1\45\1\46"+
+    "\1\100\1\0\1\100\3\45\2\0\1\45\4\0\3\45"+
+    "\3\0\5\45\13\0\1\101\7\45\1\0\5\45\2\0"+
+    "\1\102\1\45\1\0\2\45\1\102\40\45\1\102\1\45"+
+    "\3\102\1\45\1\102\7\45\42\0\1\103\23\0\1\50"+
+    "\17\0\1\104\4\0\1\105\1\106\1\107\17\0\1\110"+
+    "\1\111\1\112\2\0\1\113\2\0\1\36\1\114\1\0"+
+    "\1\115\1\36\1\0\1\116\1\52\3\0\1\116\2\53"+
+    "\2\0\1\53\4\0\3\53\3\0\5\53\14\0\1\116"+
+    "\1\53\3\116\1\53\1\116\1\0\5\53\2\0\1\117"+
+    "\1\53\1\0\2\53\1\117\40\53\1\117\1\53\3\117"+
+    "\1\53\1\117\7\53\1\0\1\53\1\52\3\0\3\53"+
+    "\2\0\1\53\4\0\3\53\3\0\5\53\14\0\7\53"+
+    "\1\0\5\53\2\0\1\6\1\30\1\31\1\0\1\31"+
+    "\3\6\2\0\1\6\4\0\2\6\1\120\1\33\1\34"+
+    "\1\0\5\6\1\35\13\0\7\6\1\0\5\6\2\0"+
+    "\1\121\4\0\1\121\7\0\1\122\30\0\1\121\1\0"+
+    "\3\121\1\0\1\121\10\0\1\56\1\57\3\0\3\56"+
+    "\2\0\1\56\4\0\3\56\3\0\5\56\14\0\7\56"+
+    "\1\0\5\56\2\0\1\123\1\56\1\0\2\56\1\123"+
+    "\40\56\1\123\1\56\3\123\1\56\1\123\7\56\1\0"+
+    "\1\56\1\57\3\0\3\56\2\0\1\56\4\0\3\56"+
+    "\3\0\1\56\1\124\3\56\14\0\7\56\1\0\5\56"+
+    "\2\0\1\56\1\57\3\0\3\56\2\0\1\56\4\0"+
+    "\3\56\3\0\5\56\14\0\2\56\1\125\4\56\1\0"+
+    "\5\56\2\0\1\56\1\57\3\0\3\56\2\0\1\56"+
+    "\4\0\3\56\3\0\5\56\14\0\1\126\6\56\1\0"+
+    "\5\56\2\0\1\56\1\57\3\0\3\56\2\0\1\56"+
+    "\4\0\3\56\3\0\3\56\1\127\1\56\14\0\7\56"+
+    "\1\0\5\56\2\0\1\56\1\57\3\0\3\56\2\0"+
+    "\1\56\4\0\3\56\3\0\5\56\14\0\7\56\1\0"+
+    "\2\56\1\130\2\56\1\0\37\65\1\131\25\65\13\0"+
+    "\1\132\100\0\1\133\36\0\1\73\1\74\1\31\1\0"+
+    "\1\31\3\73\2\0\1\73\4\0\3\73\1\0\1\34"+
+    "\1\0\5\73\1\35\13\0\7\73\1\0\5\73\2\0"+
+    "\1\134\1\73\1\0\2\73\1\134\40\73\1\134\1\73"+
+    "\3\134\1\73\1\134\7\73\1\0\1\135\1\30\1\6"+
+    "\1\0\1\6\1\135\2\6\2\0\1\6\4\0\3\6"+
+    "\1\33\1\34\1\0\5\6\1\35\13\0\1\135\1\6"+
+    "\3\135\1\6\1\135\1\0\5\6\4\0\1\100\1\0"+
+    "\1\100\40\0\1\101\21\0\1\101\1\0\1\101\12\0"+
+    "\1\136\45\0\1\137\1\46\1\45\1\0\1\45\1\137"+
+    "\2\45\2\0\1\45\4\0\3\45\3\0\5\45\13\0"+
+    "\1\101\1\137\1\45\3\137\1\45\1\137\1\0\5\45"+
+    "\50\0\1\140\71\0\1\36\37\0\1\36\30\0\1\36"+
+    "\61\0\1\36\1\0\1\36\26\0\1\104\72\0\1\36"+
+    "\27\0\1\36\56\0\1\141\42\0\1\36\117\0\1\36"+
+    "\63\0\1\114\4\0\1\142\1\52\3\0\1\142\2\53"+
+    "\2\0\1\53\4\0\3\53\3\0\5\53\14\0\1\142"+
+    "\1\53\3\142\1\53\1\142\1\0\5\53\2\0\1\143"+
+    "\1\52\1\53\1\0\1\53\1\143\2\53\2\0\1\53"+
+    "\4\0\3\53\3\0\5\53\14\0\1\143\1\53\3\143"+
+    "\1\53\1\143\1\0\5\53\2\0\1\6\1\30\1\31"+
+    "\1\0\1\31\3\6\2\0\1\6\4\0\3\6\1\144"+
+    "\1\34\1\0\5\6\1\35\13\0\7\6\1\0\5\6"+
+    "\2\0\1\145\4\0\1\145\4\0\1\146\2\0\1\147"+
+    "\30\0\1\145\1\0\3\145\1\0\1\145\25\0\1\147"+
+    "\47\0\1\150\1\57\1\56\1\0\1\56\1\150\2\56"+
+    "\2\0\1\56\4\0\3\56\3\0\5\56\14\0\1\150"+
+    "\1\56\3\150\1\56\1\150\1\0\5\56\2\0\1\56"+
+    "\1\57\3\0\3\56\2\0\1\56\4\0\3\56\3\0"+
+    "\2\56\1\151\2\56\14\0\7\56\1\0\5\56\2\0"+
+    "\1\56\1\57\3\0\3\56\2\0\1\56\4\0\3\56"+
+    "\3\0\5\56\14\0\3\56\1\152\3\56\1\0\5\56"+
+    "\2\0\1\56\1\57\3\0\3\56\2\0\1\56\4\0"+
+    "\3\56\3\0\5\56\14\0\1\56\1\153\5\56\1\0"+
+    "\5\56\2\0\1\56\1\57\3\0\3\56\2\0\1\56"+
+    "\4\0\3\56\3\0\5\56\14\0\5\56\1\154\1\56"+
+    "\1\0\5\56\2\0\1\56\1\57\3\0\3\56\2\0"+
+    "\1\56\4\0\3\56\3\0\5\56\14\0\1\155\6\56"+
+    "\1\0\5\56\1\0\36\65\1\156\1\131\25\65\13\0"+
+    "\1\157\101\0\1\160\35\0\1\161\1\74\1\73\1\0"+
+    "\1\73\1\161\2\73\2\0\1\73\4\0\3\73\1\0"+
+    "\1\34\1\0\5\73\1\35\13\0\1\161\1\73\3\161"+
+    "\1\73\1\161\1\0\5\73\2\0\1\162\1\30\1\6"+
+    "\1\0\1\6\1\162\2\6\2\0\1\6\4\0\3\6"+
+    "\1\33\1\34\1\0\5\6\1\35\13\0\1\162\1\6"+
+    "\3\162\1\6\1\162\1\0\5\6\22\0\1\163\44\0"+
+    "\1\164\1\46\1\45\1\0\1\45\1\164\2\45\2\0"+
+    "\1\45\4\0\3\45\3\0\5\45\13\0\1\101\1\164"+
+    "\1\45\3\164\1\45\1\164\1\0\5\45\53\0\1\36"+
+    "\62\0\1\36\15\0\1\165\1\52\3\0\1\165\2\53"+
+    "\2\0\1\53\4\0\3\53\3\0\5\53\14\0\1\165"+
+    "\1\53\3\165\1\53\1\165\1\0\5\53\2\0\1\166"+
+    "\1\52\1\53\1\0\1\53\1\166\2\53\2\0\1\53"+
+    "\4\0\3\53\3\0\5\53\14\0\1\166\1\53\3\166"+
+    "\1\53\1\166\1\0\5\53\1\0\2\167\1\170\1\171"+
+    "\1\167\1\171\3\167\1\172\1\173\2\167\1\174\5\167"+
+    "\1\0\41\167\1\0\1\175\4\0\1\175\4\0\1\146"+
+    "\2\0\1\176\30\0\1\175\1\0\3\175\1\0\1\175"+
+    "\10\0\1\177\4\0\1\177\40\0\1\177\1\0\3\177"+
+    "\1\0\1\177\25\0\1\176\47\0\1\200\1\57\1\56"+
+    "\1\0\1\56\1\200\2\56\2\0\1\56\4\0\3\56"+
+    "\3\0\5\56\14\0\1\200\1\56\3\200\1\56\1\200"+
+    "\1\0\5\56\2\0\1\56\1\57\3\0\3\56\2\0"+
+    "\1\56\4\0\3\56\3\0\3\56\1\201\1\56\14\0"+
+    "\7\56\1\0\5\56\2\0\1\56\1\57\3\0\3\56"+
+    "\2\0\1\56\4\0\3\56\3\0\1\202\4\56\14\0"+
+    "\7\56\1\0\5\56\2\0\1\56\1\57\3\0\3\56"+
+    "\2\0\1\56\4\0\3\56\3\0\5\56\14\0\2\56"+
+    "\1\203\4\56\1\0\5\56\2\0\1\56\1\57\3\0"+
+    "\3\56\2\0\1\56\4\0\3\56\3\0\4\56\1\204"+
+    "\14\0\7\56\1\0\5\56\2\0\1\56\1\57\3\0"+
+    "\3\56\2\0\1\56\4\0\1\56\1\205\1\56\3\0"+
+    "\5\56\14\0\7\56\1\0\5\56\32\0\1\206\34\0"+
+    "\1\207\1\74\1\73\1\0\1\73\1\207\2\73\2\0"+
+    "\1\73\4\0\3\73\1\0\1\34\1\0\5\73\1\35"+
+    "\13\0\1\207\1\73\3\207\1\73\1\207\1\0\5\73"+
+    "\2\0\1\210\1\30\1\6\1\0\1\6\1\210\2\6"+
+    "\2\0\1\6\4\0\3\6\1\33\1\34\1\0\5\6"+
+    "\1\35\13\0\1\210\1\6\3\210\1\6\1\210\1\0"+
+    "\5\6\23\0\1\211\43\0\1\212\1\46\1\45\1\0"+
+    "\1\45\1\212\2\45\2\0\1\45\4\0\3\45\3\0"+
+    "\5\45\13\0\1\101\1\212\1\45\3\212\1\45\1\212"+
+    "\1\0\5\45\2\0\1\213\1\52\3\0\1\213\2\53"+
+    "\2\0\1\53\4\0\3\53\3\0\5\53\14\0\1\213"+
+    "\1\53\3\213\1\53\1\213\1\0\5\53\2\0\1\214"+
+    "\1\52\1\53\1\0\1\53\1\214\2\53\2\0\1\53"+
+    "\4\0\3\53\3\0\5\53\14\0\1\214\1\53\3\214"+
+    "\1\53\1\214\1\0\5\53\1\0\2\167\1\170\6\167"+
+    "\2\0\2\167\1\174\5\167\1\0\43\167\1\170\12\167"+
+    "\1\215\47\167\2\172\1\216\6\172\1\217\53\172\2\173"+
+    "\1\220\7\173\1\217\52\173\1\0\1\221\4\0\1\221"+
+    "\4\0\1\146\2\0\1\222\30\0\1\221\1\0\3\221"+
+    "\1\0\1\221\25\0\1\222\47\0\1\223\4\0\1\223"+
+    "\40\0\1\223\1\0\3\223\1\0\1\223\10\0\1\224"+
+    "\1\57\1\56\1\0\1\56\1\224\2\56\2\0\1\56"+
+    "\4\0\3\56\3\0\5\56\14\0\1\224\1\56\3\224"+
+    "\1\56\1\224\1\0\5\56\2\0\1\56\1\57\3\0"+
+    "\3\56\2\0\1\56\4\0\1\56\1\225\1\56\3\0"+
+    "\5\56\14\0\7\56\1\0\5\56\2\0\1\56\1\57"+
+    "\3\0\3\56\2\0\1\56\4\0\3\56\3\0\5\56"+
+    "\14\0\1\226\6\56\1\0\5\56\2\0\1\56\1\57"+
+    "\3\0\3\56\2\0\1\227\4\0\3\56\3\0\5\56"+
+    "\14\0\7\56\1\0\5\56\2\0\1\56\1\57\3\0"+
+    "\3\56\2\0\1\56\4\0\3\56\3\0\5\56\14\0"+
+    "\7\56\1\0\1\56\1\230\3\56\22\0\1\231\44\0"+
+    "\1\232\1\74\1\73\1\0\1\73\1\232\2\73\2\0"+
+    "\1\73\4\0\3\73\1\0\1\34\1\0\5\73\1\35"+
+    "\13\0\1\232\1\73\3\232\1\73\1\232\1\0\5\73"+
+    "\2\0\1\233\1\30\1\6\1\0\1\6\1\233\2\6"+
+    "\2\0\1\6\4\0\3\6\1\33\1\34\1\0\5\6"+
+    "\1\35\13\0\1\233\1\6\3\233\1\6\1\233\1\0"+
+    "\5\6\24\0\1\234\42\0\1\235\1\46\1\45\1\0"+
+    "\1\45\1\235\2\45\2\0\1\45\4\0\3\45\3\0"+
+    "\5\45\13\0\1\101\1\235\1\45\3\235\1\45\1\235"+
+    "\1\0\5\45\2\0\1\236\1\52\3\0\1\236\2\53"+
+    "\2\0\1\53\4\0\3\53\3\0\5\53\14\0\1\236"+
+    "\1\53\3\236\1\53\1\236\1\0\5\53\2\0\1\237"+
+    "\1\52\1\53\1\0\1\53\1\237\2\53\2\0\1\53"+
+    "\4\0\3\53\3\0\5\53\14\0\1\237\1\53\3\237"+
+    "\1\53\1\237\1\0\5\53\1\0\2\172\1\216\6\172"+
+    "\1\240\53\172\3\0\1\217\1\0\1\217\7\0\1\174"+
+    "\47\0\2\173\1\220\7\173\1\241\52\173\1\0\1\242"+
+    "\4\0\1\242\4\0\1\146\2\0\1\243\30\0\1\242"+
+    "\1\0\3\242\1\0\1\242\25\0\1\243\47\0\1\244"+
+    "\4\0\1\244\40\0\1\244\1\0\3\244\1\0\1\244"+
+    "\10\0\1\245\1\57\1\56\1\0\1\56\1\245\2\56"+
+    "\2\0\1\56\4\0\3\56\3\0\5\56\14\0\1\245"+
+    "\1\56\3\245\1\56\1\245\1\0\5\56\2\0\1\56"+
+    "\1\57\3\0\3\56\2\0\1\56\4\0\3\56\3\0"+
+    "\4\56\1\246\14\0\7\56\1\0\5\56\2\0\1\247"+
+    "\1\250\1\251\1\0\1\251\2\247\1\56\2\0\1\56"+
+    "\4\0\3\247\3\0\5\247\14\0\7\247\1\0\5\247"+
+    "\2\0\1\56\1\57\3\0\3\56\2\0\1\56\4\0"+
+    "\3\56\3\0\5\56\14\0\4\56\1\252\2\56\1\0"+
+    "\5\56\2\0\1\56\1\57\3\0\3\56\2\0\1\56"+
+    "\4\0\3\56\3\0\5\56\14\0\2\56\1\253\4\56"+
+    "\1\0\5\56\33\0\1\254\33\0\1\255\1\74\1\73"+
+    "\1\0\1\73\1\255\2\73\2\0\1\73\4\0\3\73"+
+    "\1\0\1\34\1\0\5\73\1\35\13\0\1\255\1\73"+
+    "\3\255\1\73\1\255\1\0\5\73\2\0\1\6\1\30"+
+    "\1\6\1\0\4\6\2\0\1\6\4\0\3\6\1\33"+
+    "\1\34\1\0\5\6\1\35\13\0\7\6\1\0\5\6"+
+    "\1\0\2\256\1\257\1\234\1\256\1\234\3\256\1\260"+
+    "\1\261\2\256\1\262\5\256\1\0\41\256\1\0\1\263"+
+    "\1\46\1\45\1\0\1\45\1\263\2\45\2\0\1\45"+
+    "\4\0\3\45\3\0\5\45\13\0\1\101\1\263\1\45"+
+    "\3\263\1\45\1\263\1\0\5\45\2\0\1\264\1\52"+
+    "\1\53\1\0\1\53\1\264\2\53\2\0\1\53\4\0"+
+    "\3\53\3\0\5\53\14\0\1\264\1\53\3\264\1\53"+
+    "\1\264\1\0\5\53\1\0\2\172\1\216\1\240\1\172"+
+    "\1\240\3\172\1\217\3\172\1\265\47\172\2\173\1\220"+
+    "\1\241\1\173\1\241\4\173\1\217\2\173\1\266\47\173"+
+    "\1\0\1\267\4\0\1\267\4\0\1\146\2\0\1\270"+
+    "\30\0\1\267\1\0\3\267\1\0\1\267\25\0\1\270"+
+    "\47\0\1\271\4\0\1\271\40\0\1\271\1\0\3\271"+
+    "\1\0\1\271\10\0\1\272\1\57\1\56\1\0\1\56"+
+    "\1\272\2\56\2\0\1\56\4\0\3\56\3\0\5\56"+
+    "\14\0\1\272\1\56\3\272\1\56\1\272\1\0\5\56"+
+    "\1\0\1\273\1\274\1\275\1\276\1\273\1\276\3\274"+
+    "\1\277\1\300\1\274\1\273\1\0\2\273\1\301\2\274"+
+    "\1\0\2\273\5\274\1\302\13\273\7\274\1\273\5\274"+
+    "\1\273\1\0\1\247\1\250\1\303\1\0\1\303\3\247"+
+    "\2\0\1\247\4\0\3\247\1\0\1\251\1\0\5\247"+
+    "\14\0\7\247\1\0\5\247\2\0\1\304\1\247\1\0"+
+    "\2\247\1\304\40\247\1\304\1\247\3\304\1\247\1\304"+
+    "\7\247\1\0\1\247\1\250\1\251\1\0\1\251\2\247"+
+    "\10\0\3\247\3\0\5\247\14\0\7\247\1\0\5\247"+
+    "\2\0\1\56\1\57\3\0\3\56\2\0\1\56\4\0"+
+    "\3\56\3\0\5\56\14\0\1\305\6\56\1\0\5\56"+
+    "\2\0\1\56\1\57\3\0\3\56\2\0\1\56\4\0"+
+    "\3\56\3\0\4\56\1\306\14\0\7\56\1\0\5\56"+
+    "\50\0\1\307\16\0\1\310\1\74\1\73\1\0\1\73"+
+    "\1\310\2\73\2\0\1\73\4\0\3\73\1\0\1\34"+
+    "\1\0\5\73\1\35\13\0\1\310\1\73\3\310\1\73"+
+    "\1\310\1\0\5\73\1\0\2\256\1\257\6\256\2\0"+
+    "\2\256\1\262\5\256\1\0\43\256\1\257\12\256\1\311"+
+    "\47\256\2\260\1\312\6\260\1\313\53\260\2\261\1\314"+
+    "\7\261\1\313\52\261\1\0\1\45\1\46\1\45\1\0"+
+    "\4\45\2\0\1\45\4\0\3\45\3\0\5\45\13\0"+
+    "\1\101\7\45\1\0\5\45\2\0\1\53\1\52\1\53"+
+    "\1\0\4\53\2\0\1\53\4\0\3\53\3\0\5\53"+
+    "\14\0\7\53\1\0\5\53\14\0\1\146\52\0\1\315"+
+    "\4\0\1\315\40\0\1\315\1\0\3\315\1\0\1\315"+
+    "\10\0\1\56\1\57\1\56\1\0\4\56\2\0\1\56"+
+    "\4\0\3\56\3\0\5\56\14\0\7\56\1\0\5\56"+
+    "\1\0\2\273\1\316\6\273\2\0\2\273\1\0\5\273"+
+    "\1\0\7\273\1\302\32\273\1\274\1\275\3\273\3\274"+
+    "\2\0\1\274\1\273\1\0\2\273\3\274\1\0\2\273"+
+    "\5\274\1\302\13\273\7\274\1\273\5\274\2\273\1\317"+
+    "\1\320\1\273\2\274\1\317\24\274\1\321\13\274\1\317"+
+    "\1\274\3\317\1\274\1\317\7\274\2\273\1\316\1\276"+
+    "\1\273\1\276\3\273\1\277\1\300\2\273\1\0\2\273"+
+    "\1\322\2\273\1\0\7\273\1\302\31\273\2\277\1\323"+
+    "\6\277\1\324\53\277\2\300\1\325\7\300\1\324\52\300"+
+    "\1\273\1\274\1\275\3\273\3\274\2\0\1\274\1\273"+
+    "\1\0\2\273\1\274\1\326\1\274\1\0\2\273\5\274"+
+    "\1\302\13\273\7\274\1\273\5\274\1\273\3\0\1\303"+
+    "\1\0\1\303\16\0\1\251\41\0\1\327\1\250\1\247"+
+    "\1\0\1\247\1\327\2\247\2\0\1\247\4\0\3\247"+
+    "\1\0\1\251\1\0\5\247\14\0\1\327\1\247\3\327"+
+    "\1\247\1\327\1\0\5\247\2\0\1\56\1\57\3\0"+
+    "\3\56\2\0\1\56\4\0\3\56\3\0\5\56\14\0"+
+    "\6\56\1\330\1\0\5\56\2\0\1\56\1\57\1\331"+
+    "\1\0\1\331\3\56\1\332\1\333\1\56\4\0\3\56"+
+    "\3\0\5\56\14\0\7\56\1\0\5\56\55\0\1\334"+
+    "\11\0\1\73\1\74\1\73\1\0\4\73\2\0\1\73"+
+    "\4\0\3\73\1\0\1\34\1\0\5\73\1\35\13\0"+
+    "\7\73\1\0\5\73\1\0\2\260\1\312\6\260\1\335"+
+    "\53\260\3\0\1\313\1\0\1\313\7\0\1\262\47\0"+
+    "\2\261\1\314\7\261\1\336\52\261\1\0\1\337\4\0"+
+    "\1\337\40\0\1\337\1\0\3\337\1\0\1\337\7\0"+
+    "\2\273\1\316\30\273\1\302\32\273\1\340\1\275\1\274"+
+    "\1\273\1\274\1\340\2\274\2\0\1\274\1\273\1\0"+
+    "\2\273\3\274\1\0\2\273\5\274\1\302\13\273\1\340"+
+    "\1\274\3\340\1\274\1\340\1\273\5\274\2\273\1\274"+
+    "\1\275\3\273\3\274\2\273\1\274\4\273\3\274\3\273"+
+    "\5\274\1\302\13\273\7\274\1\273\5\274\3\273\1\316"+
+    "\6\273\2\0\2\273\1\0\3\273\1\341\1\273\1\0"+
+    "\7\273\1\302\31\273\2\277\1\323\6\277\1\342\53\277"+
+    "\1\0\1\343\1\344\1\345\1\0\1\345\2\343\10\0"+
+    "\3\343\3\0\5\343\1\346\13\0\7\343\1\0\5\343"+
+    "\1\0\2\300\1\325\7\300\1\347\52\300\1\273\1\274"+
+    "\1\275\3\273\3\274\2\0\1\274\1\273\1\0\2\273"+
+    "\2\274\1\350\1\0\2\273\5\274\1\302\13\273\7\274"+
+    "\1\273\5\274\1\273\1\0\1\351\1\250\1\247\1\0"+
+    "\1\247\1\351\2\247\2\0\1\247\4\0\3\247\1\0"+
+    "\1\251\1\0\5\247\14\0\1\351\1\247\3\351\1\247"+
+    "\1\351\1\0\5\247\2\0\1\56\1\57\3\0\3\56"+
+    "\2\0\1\56\4\0\3\56\3\0\5\56\14\0\2\56"+
+    "\1\352\4\56\1\0\5\56\4\0\1\331\1\0\1\331"+
+    "\3\0\1\332\1\333\52\0\2\332\1\353\6\332\1\354"+
+    "\53\332\2\333\1\355\7\333\1\354\52\333\32\0\1\356"+
+    "\32\0\2\260\1\312\1\335\1\260\1\335\3\260\1\313"+
+    "\3\260\1\357\47\260\2\261\1\314\1\336\1\261\1\336"+
+    "\4\261\1\313\2\261\1\360\47\261\1\273\1\361\1\275"+
+    "\1\274\1\273\1\274\1\361\2\274\2\0\1\274\1\273"+
+    "\1\0\2\273\3\274\1\0\2\273\5\274\1\302\13\273"+
+    "\1\361\1\274\3\361\1\274\1\361\1\273\5\274\3\273"+
+    "\1\316\6\273\2\0\2\273\1\0\4\273\1\362\1\0"+
+    "\7\273\1\302\31\273\1\277\1\363\1\364\1\365\1\277"+
+    "\1\365\2\363\1\277\1\324\6\277\3\363\3\277\5\363"+
+    "\1\366\13\277\7\363\1\277\5\363\1\277\1\0\1\343"+
+    "\1\344\1\367\1\0\1\367\3\343\2\0\1\343\4\0"+
+    "\3\343\1\0\1\345\1\0\5\343\1\346\13\0\7\343"+
+    "\1\0\5\343\2\0\1\370\1\343\1\0\2\343\1\370"+
+    "\40\343\1\370\1\343\3\370\1\343\1\370\7\343\1\0"+
+    "\1\343\1\344\1\345\1\0\1\345\2\343\10\0\3\343"+
+    "\3\0\5\343\14\0\7\343\1\0\5\343\1\0\1\300"+
+    "\1\371\1\372\1\373\1\300\1\373\2\371\2\300\1\324"+
+    "\5\300\3\371\3\300\5\371\1\374\13\300\7\371\1\300"+
+    "\5\371\1\300\1\273\1\274\1\275\3\273\3\274\2\0"+
+    "\1\274\1\273\1\0\2\273\3\274\1\375\2\273\5\274"+
+    "\1\302\13\273\7\274\1\273\5\274\1\273\1\0\1\376"+
+    "\1\250\1\247\1\0\1\247\1\376\2\247\2\0\1\247"+
+    "\4\0\3\247\1\0\1\251\1\0\5\247\14\0\1\376"+
+    "\1\247\3\376\1\247\1\376\1\0\5\247\1\0\2\332"+
+    "\1\353\6\332\1\377\53\332\3\0\1\354\1\0\1\354"+
+    "\25\0\1\u0100\31\0\2\333\1\355\7\333\1\u0101\52\333"+
+    "\1\273\1\u0102\1\275\1\274\1\273\1\274\1\u0102\2\274"+
+    "\2\0\1\274\1\273\1\0\2\273\3\274\1\0\2\273"+
+    "\5\274\1\302\13\273\1\u0102\1\274\3\u0102\1\274\1\u0102"+
+    "\1\273\5\274\3\273\1\316\6\273\2\0\2\273\1\0"+
+    "\5\273\1\375\7\273\1\302\31\273\1\277\1\363\1\364"+
+    "\1\u0103\1\277\1\u0103\3\363\1\324\1\277\1\363\4\277"+
+    "\3\363\1\277\1\365\1\277\5\363\1\366\13\277\7\363"+
+    "\1\277\5\363\2\277\1\u0104\1\u0105\1\277\2\363\1\u0104"+
+    "\2\363\1\u0106\35\363\1\u0104\1\363\3\u0104\1\363\1\u0104"+
+    "\7\363\1\277\1\363\1\364\1\365\1\277\1\365\2\363"+
+    "\1\277\1\324\6\277\3\363\3\277\5\363\14\277\7\363"+
+    "\1\277\5\363\1\277\3\0\1\367\1\0\1\367\16\0"+
+    "\1\345\6\0\1\346\32\0\1\u0107\1\344\1\343\1\0"+
+    "\1\343\1\u0107\2\343\2\0\1\343\4\0\3\343\1\0"+
+    "\1\345\1\0\5\343\1\346\13\0\1\u0107\1\343\3\u0107"+
+    "\1\343\1\u0107\1\0\5\343\1\0\1\300\1\371\1\372"+
+    "\1\u0108\1\300\1\u0108\3\371\1\300\1\324\1\371\4\300"+
+    "\3\371\1\300\1\373\1\300\5\371\1\374\13\300\7\371"+
+    "\1\300\5\371\2\300\1\u0109\1\u010a\1\300\2\371\1\u0109"+
+    "\3\371\1\u010b\34\371\1\u0109\1\371\3\u0109\1\371\1\u0109"+
+    "\7\371\1\300\1\371\1\372\1\373\1\300\1\373\2\371"+
+    "\2\300\1\324\5\300\3\371\3\300\5\371\14\300\7\371"+
+    "\1\300\5\371\1\300\2\u010c\1\u010d\1\375\1\u010c\1\375"+
+    "\3\u010c\1\u010e\1\u010f\2\u010c\1\324\5\u010c\1\0\41\u010c"+
+    "\1\0\1\u0110\1\250\1\247\1\0\1\247\1\u0110\2\247"+
+    "\2\0\1\247\4\0\3\247\1\0\1\251\1\0\5\247"+
+    "\14\0\1\u0110\1\247\3\u0110\1\247\1\u0110\1\0\5\247"+
+    "\1\0\2\332\1\353\1\377\1\332\1\377\3\332\1\354"+
+    "\21\332\1\u0111\31\332\2\333\1\355\1\u0101\1\333\1\u0101"+
+    "\4\333\1\354\20\333\1\u0112\31\333\1\273\1\u0113\1\275"+
+    "\1\274\1\273\1\274\1\u0113\2\274\2\0\1\274\1\273"+
+    "\1\0\2\273\3\274\1\0\2\273\5\274\1\302\13\273"+
+    "\1\u0113\1\274\3\u0113\1\274\1\u0113\1\273\5\274\1\273"+
+    "\2\277\1\323\1\u0103\1\277\1\u0103\3\277\1\324\12\277"+
+    "\1\365\6\277\1\366\32\277\1\u0114\1\364\1\363\1\277"+
+    "\1\363\1\u0114\2\363\1\324\1\277\1\363\4\277\3\363"+
+    "\1\277\1\365\1\277\5\363\1\366\13\277\1\u0114\1\363"+
+    "\3\u0114\1\363\1\u0114\1\277\5\363\2\277\1\363\1\364"+
+    "\1\u0103\1\277\1\u0103\3\363\1\342\1\277\1\363\4\277"+
+    "\3\363\1\277\1\365\1\277\5\363\1\366\13\277\7\363"+
+    "\1\277\5\363\2\277\1\363\1\364\1\u0115\1\277\1\u0115"+
+    "\3\363\1\324\1\277\1\363\4\277\3\363\1\277\1\365"+
+    "\1\277\5\363\1\366\13\277\7\363\1\277\5\363\1\277"+
+    "\1\0\1\u0116\1\344\1\343\1\0\1\343\1\u0116\2\343"+
+    "\2\0\1\343\4\0\3\343\1\0\1\345\1\0\5\343"+
+    "\1\346\13\0\1\u0116\1\343\3\u0116\1\343\1\u0116\1\0"+
+    "\5\343\1\0\2\300\1\325\1\u0108\1\300\1\u0108\4\300"+
+    "\1\324\11\300\1\373\6\300\1\374\32\300\1\u0117\1\372"+
+    "\1\371\1\300\1\371\1\u0117\2\371\1\300\1\324\1\371"+
+    "\4\300\3\371\1\300\1\373\1\300\5\371\1\374\13\300"+
+    "\1\u0117\1\371\3\u0117\1\371\1\u0117\1\300\5\371\2\300"+
+    "\1\371\1\372\1\u0108\1\300\1\u0108\3\371\1\300\1\347"+
+    "\1\371\4\300\3\371\1\300\1\373\1\300\5\371\1\374"+
+    "\13\300\7\371\1\300\5\371\2\300\1\371\1\372\1\u0118"+
+    "\1\300\1\u0118\3\371\1\300\1\324\1\371\4\300\3\371"+
+    "\1\300\1\373\1\300\5\371\1\374\13\300\7\371\1\300"+
+    "\5\371\1\300\2\u010c\1\u010d\6\u010c\2\0\2\u010c\1\324"+
+    "\5\u010c\1\0\43\u010c\1\u010d\12\u010c\1\u0119\47\u010c\2\u010e"+
+    "\1\u011a\6\u010e\1\u011b\53\u010e\2\u010f\1\u011c\7\u010f\1\u011b"+
+    "\52\u010f\1\0\1\u011d\1\250\1\247\1\0\1\247\1\u011d"+
+    "\2\247\2\0\1\247\4\0\3\247\1\0\1\251\1\0"+
+    "\5\247\14\0\1\u011d\1\247\3\u011d\1\247\1\u011d\1\0"+
+    "\5\247\1\0\1\273\1\u011e\1\275\1\274\1\273\1\274"+
+    "\1\u011e\2\274\2\0\1\274\1\273\1\0\2\273\3\274"+
+    "\1\0\2\273\5\274\1\302\13\273\1\u011e\1\274\3\u011e"+
+    "\1\274\1\u011e\1\273\5\274\1\273\1\277\1\u011f\1\364"+
+    "\1\363\1\277\1\363\1\u011f\2\363\1\324\1\277\1\363"+
+    "\4\277\3\363\1\277\1\365\1\277\5\363\1\366\13\277"+
+    "\1\u011f\1\363\3\u011f\1\363\1\u011f\1\277\5\363\2\277"+
+    "\1\363\1\364\1\u0115\1\277\1\u0115\2\363\1\277\1\324"+
+    "\6\277\3\363\1\277\1\365\1\277\5\363\1\366\13\277"+
+    "\7\363\1\277\5\363\1\277\1\0\1\u0120\1\344\1\343"+
+    "\1\0\1\343\1\u0120\2\343\2\0\1\343\4\0\3\343"+
+    "\1\0\1\345\1\0\5\343\1\346\13\0\1\u0120\1\343"+
+    "\3\u0120\1\343\1\u0120\1\0\5\343\1\0\1\300\1\u0121"+
+    "\1\372\1\371\1\300\1\371\1\u0121\2\371\1\300\1\324"+
+    "\1\371\4\300\3\371\1\300\1\373\1\300\5\371\1\374"+
+    "\13\300\1\u0121\1\371\3\u0121\1\371\1\u0121\1\300\5\371"+
+    "\2\300\1\371\1\372\1\u0118\1\300\1\u0118\2\371\2\300"+
+    "\1\324\5\300\3\371\1\300\1\373\1\300\5\371\1\374"+
+    "\13\300\7\371\1\300\5\371\1\300\1\u010c\1\u0122\1\u0123"+
+    "\1\u0124\1\u010c\1\u0124\2\u0122\1\u010c\2\0\2\u010c\1\324"+
+    "\2\u010c\3\u0122\1\0\2\u010c\5\u0122\1\u0125\13\u010c\7\u0122"+
+    "\1\u010c\5\u0122\1\u010c\2\u010e\1\u011a\6\u010e\1\u0126\53\u010e"+
+    "\3\0\1\u011b\1\0\1\u011b\7\0\1\324\47\0\2\u010f"+
+    "\1\u011c\7\u010f\1\u0127\52\u010f\1\0\1\247\1\250\1\247"+
+    "\1\0\4\247\2\0\1\247\4\0\3\247\1\0\1\251"+
+    "\1\0\5\247\14\0\7\247\1\0\5\247\1\0\1\273"+
+    "\1\274\1\275\1\274\1\273\4\274\2\0\1\274\1\273"+
+    "\1\0\2\273\3\274\1\0\2\273\5\274\1\302\13\273"+
+    "\7\274\1\273\5\274\1\273\1\277\1\u0128\1\364\1\363"+
+    "\1\277\1\363\1\u0128\2\363\1\324\1\277\1\363\4\277"+
+    "\3\363\1\277\1\365\1\277\5\363\1\366\13\277\1\u0128"+
+    "\1\363\3\u0128\1\363\1\u0128\1\277\5\363\1\277\1\0"+
+    "\1\u0129\1\344\1\343\1\0\1\343\1\u0129\2\343\2\0"+
+    "\1\343\4\0\3\343\1\0\1\345\1\0\5\343\1\346"+
+    "\13\0\1\u0129\1\343\3\u0129\1\343\1\u0129\1\0\5\343"+
+    "\1\0\1\300\1\u012a\1\372\1\371\1\300\1\371\1\u012a"+
+    "\2\371\1\300\1\324\1\371\4\300\3\371\1\300\1\373"+
+    "\1\300\5\371\1\374\13\300\1\u012a\1\371\3\u012a\1\371"+
+    "\1\u012a\1\300\5\371\1\300\1\u010c\1\u0122\1\u0123\1\u012b"+
+    "\1\u010c\1\u012b\3\u0122\2\0\1\u0122\1\u010c\1\324\2\u010c"+
+    "\3\u0122\1\0\1\u0124\1\u010c\5\u0122\1\u0125\13\u010c\7\u0122"+
+    "\1\u010c\5\u0122\2\u010c\1\u012c\1\u012d\1\u010c\2\u0122\1\u012c"+
+    "\6\u0122\1\u012e\31\u0122\1\u012c\1\u0122\3\u012c\1\u0122\1\u012c"+
+    "\7\u0122\1\u010c\1\u0122\1\u0123\1\u0124\1\u010c\1\u0124\2\u0122"+
+    "\1\u010c\2\0\2\u010c\1\324\2\u010c\3\u0122\1\0\2\u010c"+
+    "\5\u0122\14\u010c\7\u0122\1\u010c\5\u0122\1\u010c\2\u010e\1\u011a"+
+    "\1\u0126\1\u010e\1\u0126\3\u010e\1\u011b\3\u010e\1\u012f\47\u010e"+
+    "\2\u010f\1\u011c\1\u0127\1\u010f\1\u0127\4\u010f\1\u011b\2\u010f"+
+    "\1\u0130\47\u010f\1\277\1\u0131\1\364\1\363\1\277\1\363"+
+    "\1\u0131\2\363\1\324\1\277\1\363\4\277\3\363\1\277"+
+    "\1\365\1\277\5\363\1\366\13\277\1\u0131\1\363\3\u0131"+
+    "\1\363\1\u0131\1\277\5\363\1\277\1\0\1\u0132\1\344"+
+    "\1\343\1\0\1\343\1\u0132\2\343\2\0\1\343\4\0"+
+    "\3\343\1\0\1\345\1\0\5\343\1\346\13\0\1\u0132"+
+    "\1\343\3\u0132\1\343\1\u0132\1\0\5\343\1\0\1\300"+
+    "\1\u0133\1\372\1\371\1\300\1\371\1\u0133\2\371\1\300"+
+    "\1\324\1\371\4\300\3\371\1\300\1\373\1\300\5\371"+
+    "\1\374\13\300\1\u0133\1\371\3\u0133\1\371\1\u0133\1\300"+
+    "\5\371\1\300\2\u010c\1\u010d\1\u012b\1\u010c\1\u012b\3\u010c"+
+    "\2\0\2\u010c\1\324\5\u010c\1\0\1\u0124\6\u010c\1\u0125"+
+    "\32\u010c\1\u0134\1\u0123\1\u0122\1\u010c\1\u0122\1\u0134\2\u0122"+
+    "\2\0\1\u0122\1\u010c\1\324\2\u010c\3\u0122\1\0\1\u0124"+
+    "\1\u010c\5\u0122\1\u0125\13\u010c\1\u0134\1\u0122\3\u0134\1\u0122"+
+    "\1\u0134\1\u010c\5\u0122\2\u010c\1\u0122\1\u0123\1\u012b\1\u010c"+
+    "\1\u012b\3\u0122\2\u010c\1\u0122\1\u010c\1\u0119\2\u010c\3\u0122"+
+    "\1\u010c\1\u0124\1\u010c\5\u0122\1\u0125\13\u010c\7\u0122\1\u010c"+
+    "\5\u0122\2\u010c\1\u0122\1\u0123\1\u0135\1\u010c\1\u0135\3\u0122"+
+    "\2\0\1\u0122\1\u010c\1\324\2\u010c\3\u0122\1\0\1\u0124"+
+    "\1\u010c\5\u0122\1\u0125\13\u010c\7\u0122\1\u010c\5\u0122\1\u010c"+
+    "\1\u010e\1\u0136\1\u0137\1\u0138\1\u010e\1\u0138\2\u0136\1\u010e"+
+    "\1\u011b\6\u010e\3\u0136\3\u010e\5\u0136\1\u0139\13\u010e\7\u0136"+
+    "\1\u010e\5\u0136\1\u010e\1\u010f\1\u013a\1\u013b\1\u013c\1\u010f"+
+    "\1\u013c\2\u013a\2\u010f\1\u011b\5\u010f\3\u013a\3\u010f\5\u013a"+
+    "\1\u013d\13\u010f\7\u013a\1\u010f\5\u013a\1\u010f\1\277\1\u013e"+
+    "\1\364\1\363\1\277\1\363\1\u013e\2\363\1\324\1\277"+
+    "\1\363\4\277\3\363\1\277\1\365\1\277\5\363\1\366"+
+    "\13\277\1\u013e\1\363\3\u013e\1\363\1\u013e\1\277\5\363"+
+    "\1\277\1\0\1\343\1\344\1\343\1\0\4\343\2\0"+
+    "\1\343\4\0\3\343\1\0\1\345\1\0\5\343\1\346"+
+    "\13\0\7\343\1\0\5\343\1\0\1\300\1\u013f\1\372"+
+    "\1\371\1\300\1\371\1\u013f\2\371\1\300\1\324\1\371"+
+    "\4\300\3\371\1\300\1\373\1\300\5\371\1\374\13\300"+
+    "\1\u013f\1\371\3\u013f\1\371\1\u013f\1\300\5\371\1\300"+
+    "\1\u010c\1\u0140\1\u0123\1\u0122\1\u010c\1\u0122\1\u0140\2\u0122"+
+    "\2\0\1\u0122\1\u010c\1\324\2\u010c\3\u0122\1\0\1\u0124"+
+    "\1\u010c\5\u0122\1\u0125\13\u010c\1\u0140\1\u0122\3\u0140\1\u0122"+
+    "\1\u0140\1\u010c\5\u0122\2\u010c\1\u0122\1\u0123\1\u0135\1\u010c"+
+    "\1\u0135\2\u0122\1\u010c\2\0\2\u010c\1\324\2\u010c\3\u0122"+
+    "\1\0\1\u0124\1\u010c\5\u0122\1\u0125\13\u010c\7\u0122\1\u010c"+
+    "\5\u0122\1\u010c\1\u010e\1\u0136\1\u0137\1\u0141\1\u010e\1\u0141"+
+    "\3\u0136\1\u011b\1\u010e\1\u0136\4\u010e\3\u0136\1\u010e\1\u0138"+
+    "\1\u010e\5\u0136\1\u0139\13\u010e\7\u0136\1\u010e\5\u0136\2\u010e"+
+    "\1\u0142\1\u0143\1\u010e\2\u0136\1\u0142\2\u0136\1\u0144\35\u0136"+
+    "\1\u0142\1\u0136\3\u0142\1\u0136\1\u0142\7\u0136\1\u010e\1\u0136"+
+    "\1\u0137\1\u0138\1\u010e\1\u0138\2\u0136\1\u010e\1\u011b\6\u010e"+
+    "\3\u0136\3\u010e\5\u0136\14\u010e\7\u0136\1\u010e\5\u0136\1\u010e"+
+    "\1\u010f\1\u013a\1\u013b\1\u0145\1\u010f\1\u0145\3\u013a\1\u010f"+
+    "\1\u011b\1\u013a\4\u010f\3\u013a\1\u010f\1\u013c\1\u010f\5\u013a"+
+    "\1\u013d\13\u010f\7\u013a\1\u010f\5\u013a\2\u010f\1\u0146\1\u0147"+
+    "\1\u010f\2\u013a\1\u0146\3\u013a\1\u0148\34\u013a\1\u0146\1\u013a"+
+    "\3\u0146\1\u013a\1\u0146\7\u013a\1\u010f\1\u013a\1\u013b\1\u013c"+
+    "\1\u010f\1\u013c\2\u013a\2\u010f\1\u011b\5\u010f\3\u013a\3\u010f"+
+    "\5\u013a\14\u010f\7\u013a\1\u010f\5\u013a\1\u010f\1\277\1\363"+
+    "\1\364\1\363\1\277\4\363\1\324\1\277\1\363\4\277"+
+    "\3\363\1\277\1\365\1\277\5\363\1\366\13\277\7\363"+
+    "\1\277\5\363\1\277\1\300\1\371\1\372\1\371\1\300"+
+    "\4\371\1\300\1\324\1\371\4\300\3\371\1\300\1\373"+
+    "\1\300\5\371\1\374\13\300\7\371\1\300\5\371\1\300"+
+    "\1\u010c\1\u0149\1\u0123\1\u0122\1\u010c\1\u0122\1\u0149\2\u0122"+
+    "\2\0\1\u0122\1\u010c\1\324\2\u010c\3\u0122\1\0\1\u0124"+
+    "\1\u010c\5\u0122\1\u0125\13\u010c\1\u0149\1\u0122\3\u0149\1\u0122"+
+    "\1\u0149\1\u010c\5\u0122\1\u010c\2\u010e\1\u011a\1\u0141\1\u010e"+
+    "\1\u0141\3\u010e\1\u011b\12\u010e\1\u0138\6\u010e\1\u0139\32\u010e"+
+    "\1\u014a\1\u0137\1\u0136\1\u010e\1\u0136\1\u014a\2\u0136\1\u011b"+
+    "\1\u010e\1\u0136\4\u010e\3\u0136\1\u010e\1\u0138\1\u010e\5\u0136"+
+    "\1\u0139\13\u010e\1\u014a\1\u0136\3\u014a\1\u0136\1\u014a\1\u010e"+
+    "\5\u0136\2\u010e\1\u0136\1\u0137\1\u0141\1\u010e\1\u0141\3\u0136"+
+    "\1\u0126\1\u010e\1\u0136\4\u010e\3\u0136\1\u010e\1\u0138\1\u010e"+
+    "\5\u0136\1\u0139\13\u010e\7\u0136\1\u010e\5\u0136\2\u010e\1\u0136"+
+    "\1\u0137\1\u014b\1\u010e\1\u014b\3\u0136\1\u011b\1\u010e\1\u0136"+
+    "\1\u010e\1\u012f\2\u010e\3\u0136\1\u010e\1\u0138\1\u010e\5\u0136"+
+    "\1\u0139\13\u010e\7\u0136\1\u010e\5\u0136\1\u010e\2\u010f\1\u011c"+
+    "\1\u0145\1\u010f\1\u0145\4\u010f\1\u011b\11\u010f\1\u013c\6\u010f"+
+    "\1\u013d\32\u010f\1\u014c\1\u013b\1\u013a\1\u010f\1\u013a\1\u014c"+
+    "\2\u013a\1\u010f\1\u011b\1\u013a\4\u010f\3\u013a\1\u010f\1\u013c"+
+    "\1\u010f\5\u013a\1\u013d\13\u010f\1\u014c\1\u013a\3\u014c\1\u013a"+
+    "\1\u014c\1\u010f\5\u013a\2\u010f\1\u013a\1\u013b\1\u0145\1\u010f"+
+    "\1\u0145\3\u013a\1\u010f\1\u0127\1\u013a\4\u010f\3\u013a\1\u010f"+
+    "\1\u013c\1\u010f\5\u013a\1\u013d\13\u010f\7\u013a\1\u010f\5\u013a"+
+    "\2\u010f\1\u013a\1\u013b\1\u014d\1\u010f\1\u014d\3\u013a\1\u010f"+
+    "\1\u011b\1\u013a\1\u010f\1\u0130\2\u010f\3\u013a\1\u010f\1\u013c"+
+    "\1\u010f\5\u013a\1\u013d\13\u010f\7\u013a\1\u010f\5\u013a\1\u010f"+
+    "\1\u010c\1\u014e\1\u0123\1\u0122\1\u010c\1\u0122\1\u014e\2\u0122"+
+    "\2\0\1\u0122\1\u010c\1\324\2\u010c\3\u0122\1\0\1\u0124"+
+    "\1\u010c\5\u0122\1\u0125\13\u010c\1\u014e\1\u0122\3\u014e\1\u0122"+
+    "\1\u014e\1\u010c\5\u0122\1\u010c\1\u010e\1\u014f\1\u0137\1\u0136"+
+    "\1\u010e\1\u0136\1\u014f\2\u0136\1\u011b\1\u010e\1\u0136\4\u010e"+
+    "\3\u0136\1\u010e\1\u0138\1\u010e\5\u0136\1\u0139\13\u010e\1\u014f"+
+    "\1\u0136\3\u014f\1\u0136\1\u014f\1\u010e\5\u0136\3\u010e\1\u011a"+
+    "\1\u014b\1\u010e\1\u014b\3\u010e\1\u011b\3\u010e\1\u012f\6\u010e"+
+    "\1\u0138\6\u010e\1\u0139\31\u010e\1\u010f\1\u0150\1\u013b\1\u013a"+
+    "\1\u010f\1\u013a\1\u0150\2\u013a\1\u010f\1\u011b\1\u013a\4\u010f"+
+    "\3\u013a\1\u010f\1\u013c\1\u010f\5\u013a\1\u013d\13\u010f\1\u0150"+
+    "\1\u013a\3\u0150\1\u013a\1\u0150\1\u010f\5\u013a\3\u010f\1\u011c"+
+    "\1\u014d\1\u010f\1\u014d\4\u010f\1\u011b\2\u010f\1\u0130\6\u010f"+
+    "\1\u013c\6\u010f\1\u013d\31\u010f\1\u010c\1\u0151\1\u0123\1\u0122"+
+    "\1\u010c\1\u0122\1\u0151\2\u0122\2\0\1\u0122\1\u010c\1\324"+
+    "\2\u010c\3\u0122\1\0\1\u0124\1\u010c\5\u0122\1\u0125\13\u010c"+
+    "\1\u0151\1\u0122\3\u0151\1\u0122\1\u0151\1\u010c\5\u0122\1\u010c"+
+    "\1\u010e\1\u0152\1\u0137\1\u0136\1\u010e\1\u0136\1\u0152\2\u0136"+
+    "\1\u011b\1\u010e\1\u0136\4\u010e\3\u0136\1\u010e\1\u0138\1\u010e"+
+    "\5\u0136\1\u0139\13\u010e\1\u0152\1\u0136\3\u0152\1\u0136\1\u0152"+
+    "\1\u010e\5\u0136\1\u010e\1\u010f\1\u0153\1\u013b\1\u013a\1\u010f"+
+    "\1\u013a\1\u0153\2\u013a\1\u010f\1\u011b\1\u013a\4\u010f\3\u013a"+
+    "\1\u010f\1\u013c\1\u010f\5\u013a\1\u013d\13\u010f\1\u0153\1\u013a"+
+    "\3\u0153\1\u013a\1\u0153\1\u010f\5\u013a\1\u010f\1\u010c\1\u0122"+
+    "\1\u0123\1\u0122\1\u010c\4\u0122\2\0\1\u0122\1\u010c\1\324"+
+    "\2\u010c\3\u0122\1\0\1\u0124\1\u010c\5\u0122\1\u0125\13\u010c"+
+    "\7\u0122\1\u010c\5\u0122\1\u010c\1\u010e\1\u0154\1\u0137\1\u0136"+
+    "\1\u010e\1\u0136\1\u0154\2\u0136\1\u011b\1\u010e\1\u0136\4\u010e"+
+    "\3\u0136\1\u010e\1\u0138\1\u010e\5\u0136\1\u0139\13\u010e\1\u0154"+
+    "\1\u0136\3\u0154\1\u0136\1\u0154\1\u010e\5\u0136\1\u010e\1\u010f"+
+    "\1\u0155\1\u013b\1\u013a\1\u010f\1\u013a\1\u0155\2\u013a\1\u010f"+
+    "\1\u011b\1\u013a\4\u010f\3\u013a\1\u010f\1\u013c\1\u010f\5\u013a"+
+    "\1\u013d\13\u010f\1\u0155\1\u013a\3\u0155\1\u013a\1\u0155\1\u010f"+
+    "\5\u013a\1\u010f\1\u010e\1\u0156\1\u0137\1\u0136\1\u010e\1\u0136"+
+    "\1\u0156\2\u0136\1\u011b\1\u010e\1\u0136\4\u010e\3\u0136\1\u010e"+
+    "\1\u0138\1\u010e\5\u0136\1\u0139\13\u010e\1\u0156\1\u0136\3\u0156"+
+    "\1\u0136\1\u0156\1\u010e\5\u0136\1\u010e\1\u010f\1\u0157\1\u013b"+
+    "\1\u013a\1\u010f\1\u013a\1\u0157\2\u013a\1\u010f\1\u011b\1\u013a"+
+    "\4\u010f\3\u013a\1\u010f\1\u013c\1\u010f\5\u013a\1\u013d\13\u010f"+
+    "\1\u0157\1\u013a\3\u0157\1\u013a\1\u0157\1\u010f\5\u013a\1\u010f"+
+    "\1\u010e\1\u0136\1\u0137\1\u0136\1\u010e\4\u0136\1\u011b\1\u010e"+
+    "\1\u0136\4\u010e\3\u0136\1\u010e\1\u0138\1\u010e\5\u0136\1\u0139"+
+    "\13\u010e\7\u0136\1\u010e\5\u0136\1\u010e\1\u010f\1\u013a\1\u013b"+
+    "\1\u013a\1\u010f\4\u013a\1\u010f\1\u011b\1\u013a\4\u010f\3\u013a"+
+    "\1\u010f\1\u013c\1\u010f\5\u013a\1\u013d\13\u010f\7\u013a\1\u010f"+
+    "\5\u013a\1\u010f";

   private static int [] zzUnpackTrans() {
-    int [] result = new int[14575];
+    int [] result = new int[15794];
     int offset = 0;
     offset = zzUnpackTrans(ZZ_TRANS_PACKED_0, offset, result);
     return result;
@@ -739,22 +775,24 @@
   private static final int [] ZZ_ATTRIBUTE = zzUnpackAttribute();

   private static final String ZZ_ATTRIBUTE_PACKED_0 =
-    "\1\0\1\11\7\1\1\11\2\1\1\11\1\1\1\11"+
-    "\10\1\3\0\1\11\1\0\2\11\1\1\2\0\1\11"+
-    "\2\0\2\1\1\0\2\1\1\0\1\1\1\0\5\1"+
-    "\5\0\2\11\2\0\3\1\12\0\13\1\3\0\1\11"+
-    "\1\0\1\1\2\0\5\1\1\0\6\1\2\11\2\0"+
-    "\3\1\5\0\1\11\11\1\2\0\4\1\3\0\10\1"+
-    "\2\0\3\1\2\0\6\1\2\0\2\1\2\0\4\1"+
-    "\1\11\2\1\1\0\1\1\4\0\6\1\2\0\1\1"+
-    "\1\0\3\1\4\0\3\1\4\0\1\11\1\1\5\0"+
-    "\1\11\1\0\3\1\3\0\1\11\1\1\4\0\1\1"+
-    "\5\0\1\1\1\0\1\1\1\0\1\11\1\0\1\1"+
-    "\15\0\4\1\11\0\2\1\6\0\1\1\23\0\1\1"+
-    "\3\0\1\1\32\0";
+    "\1\0\1\11\10\1\1\11\2\1\1\11\1\1\1\11"+
+    "\7\1\3\0\1\11\1\0\2\11\1\1\2\0\1\11"+
+    "\2\0\1\1\2\0\2\1\1\0\2\1\1\0\1\1"+
+    "\1\0\5\1\4\0\2\11\2\0\3\1\2\0\1\1"+
+    "\1\11\12\0\13\1\4\0\1\1\1\0\1\1\2\0"+
+    "\4\1\1\0\7\1\2\11\2\0\1\1\1\0\3\1"+
+    "\5\0\1\11\11\1\2\0\1\1\1\0\4\1\3\0"+
+    "\10\1\2\0\1\1\1\0\3\1\2\0\6\1\2\0"+
+    "\2\1\6\0\1\11\5\1\1\11\2\1\1\0\1\1"+
+    "\4\0\6\1\2\0\1\1\3\0\1\1\1\0\3\1"+
+    "\4\0\3\1\6\0\1\11\1\1\5\0\1\11\1\0"+
+    "\3\1\3\0\1\11\3\1\4\0\1\1\5\0\1\1"+
+    "\1\0\1\1\1\0\1\11\1\0\1\1\15\0\4\1"+
+    "\11\0\2\1\6\0\1\1\23\0\1\1\3\0\1\1"+
+    "\32\0";

   private static int [] zzUnpackAttribute() {
-    int [] result = new int[316];
+    int [] result = new int[343];
     int offset = 0;
     offset = zzUnpackAttribute(ZZ_ATTRIBUTE_PACKED_0, offset, result);
     return result;
@@ -986,7 +1024,7 @@
                        if(quote != ' ') out.append(quote);
                        out.append(unescapeData());
                        if(quote != ' ') out.append(quote);
-                       if(url) out.append(')');
+                       if(url) out.append(")");
                        out.append(suffix);
                        return out.toString();
                }
@@ -1304,7 +1342,7 @@
       zzMarkedPos = zzMarkedPosL;

       switch (zzAction < 0 ? zzAction : ZZ_ACTION[zzAction]) {
-        case 23: 
+        case 24: 
           { // This is horrible. However it seems that there is no other way 
to do it with either jflex or CUP, as {URL} cannot be an unambiguous token :(
        String s = yytext();
        if(debug) log("Recognized URL: "+s);
@@ -1336,31 +1374,36 @@
                w.write("/* "+commentEncode(e.getMessage())+" */");
        }
           }
-        case 31: break;
-        case 18: 
+        case 33: break;
+        case 20: 
           { String s = yytext();
        w.write(s);
        if(debug) log("Matched unicode: "+s);
           }
-        case 32: break;
+        case 34: break;
         case 8: 
           { String s = yytext();
        w.write(s);
        if(debug) log("Matched close braces: "+s);
           }
-        case 33: break;
-        case 22: 
+        case 35: break;
+        case 23: 
           { String s = yytext();
        w.write(s);
        if(debug) log("Matched HTML comment: "+s);
           }
-        case 34: break;
-        case 16: 
+        case 36: break;
+        case 13: 
+          { if(debug) log("Deleted unofficial ident: "+yytext());
+       w.write("/* Deleted unofficial ident */");
+          }
+        case 37: break;
+        case 17: 
           { String s = yytext();
        w.write(s); 
        if(debug) log("Matched ~=: "+s);
           }
-        case 35: break;
+        case 38: break;
         case 12: 
           { String s = yytext();
        if(debug) log("Matched string: "+s);
@@ -1371,83 +1414,83 @@
                w.write(s);
        }
           }
-        case 36: break;
-        case 25: 
+        case 39: break;
+        case 26: 
           { String s = yytext();
        w.write(s);
        if(debug) log("Matched @page: "+s);
           }
-        case 37: break;
-        case 13: 
+        case 40: break;
+        case 14: 
           { String s = yytext();
        w.write(s);
        if(debug) log("Matched number: "+s);
           }
-        case 38: break;
+        case 41: break;
         case 1: 
           { String s = yytext();
        char c = s.charAt(0);
        log("Matched anything: "+yytext()+" - ignoring");
        w.write("/* ignored unmatched char: "+c+" */"); // single char cannot 
break out of comment
           }
-        case 39: break;
+        case 42: break;
         case 6: 
           { String s = yytext();
        w.write(s);
        if(debug) log("Matched semicolon: "+s);
           }
-        case 40: break;
-        case 20: 
+        case 43: break;
+        case 21: 
           { String s = yytext();
        if(debug) log("Got hexcolor: "+s);
        w.write(s);
           }
-        case 41: break;
+        case 44: break;
         case 7: 
           { String s = yytext();
        w.write(s);
        if(debug) log("Matched open braces: "+s);
           }
-        case 42: break;
-        case 26: 
+        case 45: break;
+        case 27: 
           { String s = yytext();
        s = s.substring("@media".length()).trim();
-       w.write("@media "+s+ ' ');
+       w.write("@media "+s+" ");
        if(debug) log("Matched @media: "+s);
           }
-        case 43: break;
+        case 46: break;
         case 2: 
           { String s = yytext();
        w.write(s);
        if(debug) log("Matched ident: "+s);
           }
-        case 44: break;
-        case 24: 
+        case 47: break;
+        case 25: 
           { String s = yytext();
        w.write(s);
        if(debug) log("Matched unicode range: "+s);
           }
-        case 45: break;
-        case 28: 
+        case 48: break;
+        case 30: 
           { String s = yytext();
        w.write(s);
        if(debug) log("Matched @font-face: "+s);
           }
-        case 46: break;
+        case 49: break;
         case 19: 
           { String s = yytext();
        w.write(s); 
        if(debug) log("Matched HTML comment: "+s);
           }
-        case 47: break;
+        case 50: break;
         case 9: 
           { String s = yytext();
        if(s.startsWith("url")) throwError("Invalid contents of url()");
        w.write(s);
        if(debug) log("Matched function start: "+s);
           }
-        case 48: break;
-        case 27: 
+        case 51: break;
+        case 29: 
           { String s = yytext();
        if(debug) log("Found @import: "+s);
        s = s.substring("@import".length());
@@ -1471,20 +1514,20 @@
                w.write("/* " + commentEncode(e.getMessage()) + " */");
        }
           }
-        case 49: break;
+        case 52: break;
         case 3: 
           { String s = yytext();
        w.write(s);
        if(debug) log("Matched whitespace: "+s);
           }
-        case 50: break;
-        case 29: 
+        case 53: break;
+        case 31: 
           { String s = yytext();
        w.write(s);
        if(debug) log("Matched important: "+s);
           }
-        case 51: break;
-        case 21: 
+        case 54: break;
+        case 22: 
           { String s = yytext();
        StringBuffer sb = new StringBuffer(s.length());
        sb.append("/* ");
@@ -1508,8 +1551,13 @@
        w.write(sb.toString());
        if(debug) log("Matched comment: "+s+" -> "+sb.toString());
           }
-        case 52: break;
-        case 15: 
+        case 55: break;
+        case 28: 
+          { if(debug) log("Deleted unofficial ident with url: "+yytext());
+       w.write("/* Deleted unofficial ident with url */");
+          }
+        case 56: break;
+        case 16: 
           { if(!deleteErrors) {
                throwError("Unknown @identifier "+yytext());
        } else {
@@ -1518,26 +1566,26 @@
                // Ignore
        }
           }
-        case 53: break;
+        case 57: break;
         case 11: 
           { String s = yytext();
        w.write(s);
        if(debug) log("Matched measurement: "+s);
           }
-        case 54: break;
-        case 17: 
+        case 58: break;
+        case 18: 
           { String s = yytext();
        w.write(s);
        if(debug) log("Matched |=: "+s);
           }
-        case 55: break;
-        case 30: 
+        case 59: break;
+        case 32: 
           { String s = yytext();
        detectedCharset = s;
        if(debug) log("Matched and ignoring charset: "+s);
        // Ignore
           }
-        case 56: break;
+        case 60: break;
         case 10: 
           { if(postBadImportFlag) {
                // Ignore
@@ -1550,25 +1598,25 @@
                if(debug) log("Matched and passing on mediums list: "+s);
        }
           }
-        case 57: break;
+        case 61: break;
         case 4: 
           { String s = yytext();
        w.write(s);
        if(debug) log("Matched single char: "+s);
           }
-        case 58: break;
-        case 14: 
+        case 62: break;
+        case 15: 
           { String s = yytext();
        w.write(s);
        if(debug) log("Matched #name: "+s);
           }
-        case 59: break;
+        case 63: break;
         case 5: 
           { String s = yytext();
        w.write(s);
        if(debug) log("Matched function end: "+s);
           }
-        case 60: break;
+        case 64: break;
         default: 
           if (zzInput == YYEOF && zzStartRead == zzCurrentPos) {
             zzAtEOF = true;

Modified: trunk/freenet/src/freenet/clients/http/filter/CSSTokenizerFilter.jflex
===================================================================
--- trunk/freenet/src/freenet/clients/http/filter/CSSTokenizerFilter.jflex      
2006-11-29 19:43:24 UTC (rev 11117)
+++ trunk/freenet/src/freenet/clients/http/filter/CSSTokenizerFilter.jflex      
2006-11-29 20:08:59 UTC (rev 11118)
@@ -6,6 +6,8 @@
 import java.util.*;
 /* This class tokenizes a CSS2 Reader stream, writes it out to the output 
Writer, and filters any URLs found */
 // WARNING: this is not as thorough as the HTML parser - new versions of the 
standard could lead to anonymity risks. See comments in SaferFilter.java
+// FIXME: Rewrite this as a proper whitelist filter. It's about half way 
there, it
+// just needs somebody to go over the standard carefully and eliminate 
everything that isn't sufficiently specific (e.g. matching a '-' on its own).
 // Mostly from http://www.w3.org/TR/REC-CSS2/grammar.html

 %%
@@ -228,6 +230,7 @@
 STRING2=\'(\\{NL}|\"|(\\\')|{NONASCII}|{ESCAPE}|[^\'])*\'

 IDENT={NMSTART}{NMCHAR}*
+UNOFFICIAL_IDENT="-"{IDENT}
 NAME={NMCHAR}+
 NUM=[0-9]+|[0-9]*"."[0-9]+
 STRING={STRING1}|{STRING2}
@@ -381,6 +384,14 @@
        w.write(s);
        if(debug) log("Matched ident: "+s);
 }
+{UNOFFICIAL_IDENT} {
+       if(debug) log("Deleted unofficial ident: "+yytext());
+       w.write("/* Deleted unofficial ident */");
+}
+{UNOFFICIAL_IDENT}{W}":"{W}{REALURL} {
+       if(debug) log("Deleted unofficial ident with url: "+yytext());
+       w.write("/* Deleted unofficial ident with url */");
+}
 "@page" {
        String s = yytext();
        w.write(s);

Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2006-11-29 19:43:24 UTC (rev 
11117)
+++ trunk/freenet/src/freenet/node/Version.java 2006-11-29 20:08:59 UTC (rev 
11118)
@@ -24,7 +24,7 @@
        public static final String protocolVersion = "1.0";

        /** The build number of the current revision */
-       private static final int buildNumber = 1003;
+       private static final int buildNumber = 1004;

        /** Oldest build of Fred we will talk to */
        private static final int oldLastGoodBuild = 990;


Reply via email to