packages feed

unicode-data 0.5.0 → 0.6.0

raw patch · 32 files changed

+873/−677 lines, 32 filesdep ~basedep ~tasty-bench

Dependency ranges changed: base, tasty-bench

Files

Changelog.md view
@@ -1,5 +1,25 @@ # Changelog +## 0.6.0 (July 2024)++- Updated to [Unicode 15.1.0](https://www.unicode.org/versions/Unicode15.1.0/).+- Added `showCodePoint` to `Unicode.Char`.+- Added `intToDigiT` to `Unicode.Char.Numeric`.++### Removed++- Removed deprecated `isLetter` and `isSpace` from `Unicode.Char.General`.+  Use the corresponding functions from `Unicode.Char.General.Compat` instead.+- Remove deprecated `isLower` and `isUpper` from `Unicode.Char.Case`.+  Use the corresponding functions from `Unicode.Char.Case.Compat` instead.+- Removed deprecated `Unicode.Char.Numeric.isNumber`.+  Use `Unicode.Char.Numeric.Compat.isNumber` instead.++### Deprecations++- `Unicode.Char.General.isAlphaNum`.+  Use `Unicode.Char.General.Compat.isAlphaNum` instead.+ ## 0.5.0 (July 2024)  - Fix the inlining of `Addr#` literals and reduce their size. This results in
README.md view
@@ -7,7 +7,7 @@ The Haskell data structures are generated programmatically from the [Unicode character database](https://www.unicode.org/ucd/) (UCD) files. The latest Unicode version supported by this library is-[`15.0.0`](https://www.unicode.org/versions/Unicode15.0.0/).+[`15.1.0`](https://www.unicode.org/versions/Unicode15.1.0/).  Please see the [Haddock documentation](https://hackage.haskell.org/package/unicode-data)
bench/Unicode/Char/General/CompatBench.hs view
@@ -20,6 +20,10 @@       [ Bench "base"         Char.isAlpha       , Bench "unicode-data" GC.isAlpha       ]+    , bgroupWithChars "isAlphaNum" chars+      [ Bench "base"         Char.isAlphaNum+      , Bench "unicode-data" GC.isAlphaNum+      ]     , bgroupWithChars "isLetter" chars       [ Bench "base"         Char.isLetter       , Bench "unicode-data" GC.isLetter
bench/Unicode/Char/GeneralBench.hs view
@@ -25,10 +25,6 @@     , bgroupWithChars "isAlphabetic" chars       [ Bench "unicode-data" G.isAlphabetic       ]-    , bgroupWithChars "isAlphaNum" chars-      [ Bench "base"         Char.isAlphaNum-      , Bench "unicode-data" G.isAlphaNum-      ]     , bgroupWithChars "isControl" chars       [ Bench "base"         Char.isControl       , Bench "unicode-data" G.isControl
lib/Unicode/Char.hs view
@@ -7,7 +7,7 @@ -- -- This module provides APIs to access the Unicode character database (UCD) -- corresponding to [Unicode Standard version--- 15.0.0](https://www.unicode.org/versions/Unicode15.0.0/).+-- 15.1.0](https://www.unicode.org/versions/Unicode15.1.0/). -- -- This module re-exports several sub-modules under it.  The sub-module -- structure under `Unicode.Char` is largely based on the@@ -35,7 +35,10 @@     , module Unicode.Char.Normalization     , module Unicode.Char.Identifiers -    -- * Re-export from @base@+      -- * Utils+    , showCodePoint++      -- * Re-export from @base@     , ord     , chr     )@@ -43,10 +46,33 @@  import Data.Char (chr, ord) import Unicode.Char.Case hiding (Unfold(..), Step(..))-import Unicode.Char.Case.Compat hiding (isLower, isUpper)-import Unicode.Char.General-import Unicode.Char.General.Compat hiding (isLetter, isSpace)+import Unicode.Char.Case.Compat+import Unicode.Char.General hiding (isAlphaNum)+import Unicode.Char.General.Compat import Unicode.Char.Identifiers import Unicode.Char.Numeric import Unicode.Char.Normalization import Unicode.Internal.Char.Version (unicodeVersion)++-- [NOTE] Code inspired from 'showIntAtBase'+-- | Show the code point of a character using the Unicode Standard convention:+-- hexadecimal codepoint padded with zeros if inferior to 4 characters.+--+-- >>> showCodePoint '\xf' ""+-- "000F"+-- >>> showCodePoint '\x1ffff' ""+-- "1FFFF"+--+-- @since 0.6.0+showCodePoint :: Char -> ShowS+showCodePoint c = pad . showIt (quotRem cp 16)+    where+    cp = ord c+    pad | cp <= 0x00f = \s -> '0' : '0' : '0' : s+        | cp <= 0x0ff = \s -> '0' : '0' : s+        | cp <= 0xfff = ('0' :)+        | otherwise   = id+    showIt (n, d) r = case intToDigiT d of+        !c' -> case n of+            0 -> c' : r+            _ -> showIt (quotRem n 16) (c' : r)
lib/Unicode/Char/Case.hs view
@@ -16,9 +16,7 @@ module Unicode.Char.Case     ( -- * Predicates       isLowerCase-    , isLower     , isUpperCase-    , isUpper       -- * Case mappings       -- $case @@ -57,22 +55,13 @@ -- It uses the character property -- <https://www.unicode.org/reports/tr44/#Lowercase Lowercase>. --+-- See: 'Unicode.Char.Case.Compat.isLower' for the legacy predicate.+-- -- @since 0.3.0 {-# INLINE isLowerCase #-} isLowerCase :: Char -> Bool isLowerCase = P.isLowercase --- | Returns 'True' for lower-case characters.------ It uses the character property--- <https://www.unicode.org/reports/tr44/#Lowercase Lowercase>.------ @since 0.1.0-{-# INLINE isLower #-}-{-# DEPRECATED isLower "Use isLowerCase instead. Note that the behavior of this function does not match base:Data.Char.isLower. See Unicode.Char.Case.Compat for behavior compatible with base:Data.Char." #-}-isLower :: Char -> Bool-isLower = P.isLowercase- -- | Returns 'True' for upper-case characters. -- -- It uses the character property@@ -82,25 +71,12 @@ -- @'Unicode.Char.General.generalCategory' c == -- 'Unicode.Char.General.TitlecaseLetter'@. --+-- See: 'Unicode.Char.Case.Compat.isUpper' for the legacy predicate.+-- -- @since 0.3.0 {-# INLINE isUpperCase #-} isUpperCase :: Char -> Bool isUpperCase = P.isUppercase---- | Returns 'True' for upper-case characters.------ It uses the character property--- <https://www.unicode.org/reports/tr44/#Uppercase Uppercase>.------ Note: it does /not/ match title-cased letters. Those are matched using:--- @'Unicode.Char.General.generalCategory' c ==--- 'Unicode.Char.General.TitlecaseLetter'@.------ @since 0.1.0-{-# INLINE isUpper #-}-{-# DEPRECATED isUpper "Use isUpperCase instead. Note that the behavior of this function does not match base:Data.Char.isUpper. See Unicode.Char.Case.Compat for behavior compatible with base:Data.Char." #-}-isUpper :: Char -> Bool-isUpper = P.isUppercase  -- $case --
lib/Unicode/Char/General.hs view
@@ -8,13 +8,16 @@ -- General character property related functions. -- module Unicode.Char.General-    (-    -- * Unicode general categories-      GeneralCategory(..)+    ( -- * Types of Code Points+      CodePointType(..)+    , codePointType++      -- * Unicode general categories+    , GeneralCategory(..)     , generalCategoryAbbr     , generalCategory -    -- * Character classification+      -- * Character classification     , isAlphabetic     , isAlphaNum     , isControl@@ -24,9 +27,9 @@     , isSeparator     , isSymbol     , isWhiteSpace-    , isLetter-    , isSpace-    -- ** Re-export+    , isNoncharacter++      -- ** Re-export     , isAscii     , isLatin1     , isAsciiUpper@@ -94,19 +97,25 @@ where  import Control.Exception (assert)+import Data.Bits ((.&.)) import Data.Char (isAscii, isLatin1, isAsciiUpper, isAsciiLower, ord) import Data.Ix (Ix)-import Unicode.Internal.Division (quotRem28) +import qualified Unicode.Char.General.Compat as Compat import qualified Unicode.Internal.Char.DerivedCoreProperties as P import qualified Unicode.Internal.Char.PropList as P import qualified Unicode.Internal.Char.UnicodeData.GeneralCategory as UC+import Unicode.Internal.Division (quotRem28) +--------------------------------------------------------------------------------+-- General Category+--------------------------------------------------------------------------------+ {-| Unicode General Categories.  These classes are defined in the [Unicode Character Database](http://www.unicode.org/reports/tr44/tr44-14.html#GC_Values_Table),-part of the Unicode standard+part of the Unicode standard.  __Note:__ the classes must be in the same order they are listed in the Unicode Standard, because some functions (e.g. 'generalCategory') rely on the 'Enum' instance.@@ -216,6 +225,116 @@ generalCategory :: Char -> GeneralCategory generalCategory = toEnum . UC.generalCategory +--------------------------------------------------------------------------------+-- Types of Code Points+--------------------------------------------------------------------------------++-- | Types of Code Points.+--+-- These classes are defined in the section+-- [2.4 “Code Points and Characters”](https://www.unicode.org/versions/Unicode15.0.0/ch02.pdf#G14527)+-- of the Unicode standard.+--+-- @since 0.4.1+data CodePointType+    = GraphicType+    -- ^ __Graphic__: defined by the following general categories:+    --+    -- * Letters (L): 'UppercaseLetter', 'LowercaseLetter', 'TitlecaseLetter',+    --   'ModifierLetter', 'OtherLetter'.+    -- * Marks (M): 'NonSpacingMark', 'SpacingCombiningMark', 'EnclosingMark'.+    -- * Numbers (N): 'DecimalNumber', 'LetterNumber', 'OtherNumber'.+    -- * Punctuation (P): 'ConnectorPunctuation', 'DashPunctuation',+    --   'OpenPunctuation', 'ClosePunctuation', 'InitialQuote', 'FinalQuote',+    --   'OtherPunctuation'.+    -- * Symbol (S): 'MathSymbol', 'CurrencySymbol', 'ModifierSymbol',+    --   'OtherSymbol'.+    -- * Separators: 'Space'.+    | FormatType+    -- ^ __Format__: invisible but affects neighboring characters.+    --+    -- Defined by the following general categories:+    -- 'LineSeparator', 'ParagraphSeparator', 'Format'.+    | ControlType+    -- ^ __Control__: usage defined by protocols or standards outside the+    -- Unicode Standard.+    --+    -- Defined by the general category 'Control'.+    | PrivateUseType+    -- ^ __Private-use__: usage defined by private agreement outside the+    -- Unicode Standard.+    --+    -- Defined by the general category 'PrivateUse'.+    | SurrogateType+    -- ^ __Surrogate__: Permanently reserved for UTF-16.+    --+    -- Defined by the general category 'Surrogate'.+    | NoncharacterType+    -- ^ __Noncharacter:__ a code point that is permanently reserved for+    -- internal use (see definition D14 in the section+    -- [3.4 “Characters and Encoding”](https://www.unicode.org/versions/Unicode15.0.0/ch03.pdf#G2212)+    -- of the Unicode Standard).+    -- Noncharacters consist of the values @U+nFFFE@ and @U+nFFFF@ (where @n@+    -- is from 0 to 10₁₆) and the values @U+FDD0..U+FDEF@.+    --+    -- They are a subset of the general category 'NotAssigned'.+    | ReservedType+    -- ^ __Reserved:__ any code point of the Unicode Standard that is reserved+    -- for future assignment (see definition D15 in the section+    -- [3.4 “Characters and Encoding”](https://www.unicode.org/versions/Unicode15.0.0/ch03.pdf#G2212)+    -- of the Unicode Standard). Also known as an unassigned code point.+    --+    -- They are a subset of the general category 'NotAssigned'.+    deriving ( Show+             , Eq+             , Ord+             , Enum+             , Bounded+             , Ix+             )++-- | Returns the 'CodePointType' of a character.+--+-- @since 0.6.0+codePointType :: Char -> CodePointType+codePointType c = case generalCategory c of+    UppercaseLetter      -> GraphicType+    LowercaseLetter      -> GraphicType+    TitlecaseLetter      -> GraphicType+    ModifierLetter       -> GraphicType+    OtherLetter          -> GraphicType+    NonSpacingMark       -> GraphicType+    SpacingCombiningMark -> GraphicType+    EnclosingMark        -> GraphicType+    DecimalNumber        -> GraphicType+    LetterNumber         -> GraphicType+    OtherNumber          -> GraphicType+    ConnectorPunctuation -> GraphicType+    DashPunctuation      -> GraphicType+    OpenPunctuation      -> GraphicType+    ClosePunctuation     -> GraphicType+    InitialQuote         -> GraphicType+    FinalQuote           -> GraphicType+    OtherPunctuation     -> GraphicType+    MathSymbol           -> GraphicType+    CurrencySymbol       -> GraphicType+    ModifierSymbol       -> GraphicType+    OtherSymbol          -> GraphicType+    Space                -> GraphicType+    LineSeparator        -> FormatType+    ParagraphSeparator   -> FormatType+    Control              -> ControlType+    Format               -> FormatType+    Surrogate            -> SurrogateType+    PrivateUse           -> PrivateUseType+    NotAssigned+        | isNoncharacter c -> NoncharacterType+        | otherwise        -> ReservedType++--------------------------------------------------------------------------------+-- Predicates+--------------------------------------------------------------------------------+ {-| Returns 'True' for alphabetic Unicode characters (lower-case, upper-case and title-case letters, plus letters of caseless scripts and modifiers letters).@@ -263,20 +382,19 @@  prop> isAlphaNum c == Data.Char.isAlphaNum c +__Note:__ this function is incompatible with 'isAlphabetic':++>>> isAlphabetic '\x345'+True+>>> isAlphaNum '\x345'+False+ @since 0.3.0 -}+{-# INLINE isAlphaNum #-}+{-# DEPRECATED isAlphaNum "Use Unicode.Char.General.Compat.isAlphaNum instead." #-} isAlphaNum :: Char -> Bool-isAlphaNum c =-    let !cp = ord c-    -- NOTE: The guard constant is updated at each Unicode revision.-    --       It must be < 0x40000 to be accepted by generalCategoryPlanes0To3.-    in cp <= UC.MaxIsAlphaNum &&-        let !gc = UC.generalCategoryPlanes0To3 cp-        in gc <= UC.OtherLetter ||-           (UC.DecimalNumber <= gc && gc <= UC.OtherNumber)-    -- Use the following in case the previous code is not valid anymore:-    -- gc <= UC.OtherLetter || (UC.DecimalNumber <= gc && gc <= UC.OtherNumber)-    -- where !gc = UC.generalCategory c+isAlphaNum = Compat.isAlphaNum  {-| Selects control characters, which are the non-printing characters of the Latin-1 subset of Unicode.@@ -414,24 +532,21 @@ isSymbol c = UC.MathSymbol <= gc && gc <= UC.OtherSymbol     where gc = UC.generalCategory c --- | Returns 'True' for alphabetic Unicode characters (lower-case, upper-case--- and title-case letters, plus letters of caseless scripts and modifiers--- letters).+-- | Returns 'True' for any /noncharacter/. ----- @since 0.1.0-{-# INLINE isLetter #-}-{-# DEPRECATED isLetter "Use isAlphabetic instead. Note that the behavior of this function does not match base:Data.Char.isLetter. See Unicode.Char.General.Compat for behavior compatible with base:Data.Char." #-}-isLetter :: Char -> Bool-isLetter = P.isAlphabetic---- | Returns 'True' for any whitespace characters, and the control--- characters @\\t@, @\\n@, @\\r@, @\\f@, @\\v@.+-- A /noncharacter/ is a code point that is permanently reserved for internal+-- use (see definition D14 in the section+-- [3.4 “Characters and Encoding”](https://www.unicode.org/versions/Unicode15.0.0/ch03.pdf#G2212)+-- of the Unicode Standard). ----- @since 0.1.0-{-# INLINE isSpace #-}-{-# DEPRECATED isSpace "Use isWhiteSpace instead. Note that the behavior of this function does not match base:Data.Char.isSpace. See Unicode.Char.General.Compat for behavior compatible with base:Data.Char." #-}-isSpace :: Char -> Bool-isSpace = P.isWhite_Space+-- Noncharacters consist of the values @U+nFFFE@ and @U+nFFFF@ (where @n@+-- is from 0 to 10₁₆) and the values @U+FDD0..U+FDEF@.+--+-- @since 0.6.0+isNoncharacter :: Char -> Bool+isNoncharacter c+    = ('\xFDD0' <= c && c <= '\xFDEF')+    || (ord c .&. 0xFFFF) >= 0xFFFE  ------------------------------------------------------------------------------- -- Korean Hangul
lib/Unicode/Char/General/Compat.hs view
@@ -13,6 +13,7 @@ -- module Unicode.Char.General.Compat     ( isAlpha+    , isAlphaNum     , isLetter     , isSpace     ) where@@ -20,12 +21,55 @@ import Data.Char (ord) import qualified Unicode.Internal.Char.UnicodeData.GeneralCategory as UC +-- $setup+-- import qualified Unicode.Char.General+ -- | Same as 'isLetter'. -- -- @since 0.3.0 {-# INLINE isAlpha #-} isAlpha :: Char -> Bool isAlpha = isLetter++{-| Selects alphabetic or numeric Unicode characters.++This function returns 'True' if its argument has one of the+following 'GeneralCategory's, or 'False' otherwise:++* 'UppercaseLetter'+* 'LowercaseLetter'+* 'TitlecaseLetter'+* 'ModifierLetter'+* 'OtherLetter'+* 'DecimalNumber'+* 'LetterNumber'+* 'OtherNumber'++prop> isAlphaNum c == Data.Char.isAlphaNum c++__Note:__ this function is incompatible with 'Unicode.Char.General.isAlphabetic':++>>> Unicode.Char.General.isAlphabetic '\x345'+True+>>> isAlphaNum '\x345'+False++@since 0.6.0 moved to Compat module++@since 0.3.0+-}+isAlphaNum :: Char -> Bool+isAlphaNum c =+    let !cp = ord c+    -- NOTE: The guard constant is updated at each Unicode revision.+    --       It must be < 0x40000 to be accepted by generalCategoryPlanes0To3.+    in cp <= UC.MaxIsAlphaNum &&+        let !gc = UC.generalCategoryPlanes0To3 cp+        in gc <= UC.OtherLetter ||+           (UC.DecimalNumber <= gc && gc <= UC.OtherNumber)+    -- Use the following in case the previous code is not valid anymore:+    -- gc <= UC.OtherLetter || (UC.DecimalNumber <= gc && gc <= UC.OtherNumber)+    -- where !gc = UC.generalCategory c  {-| Selects alphabetic Unicode characters (lower-case, upper-case and title-case letters, plus letters of caseless scripts and modifiers letters).
lib/Unicode/Char/Numeric.hs view
@@ -11,12 +11,14 @@ module Unicode.Char.Numeric     ( -- * Predicates       isNumeric-    , isNumber        -- * Numeric values     , numericValue     , integerValue +      -- * Single digit characters+    , intToDigiT+       -- * Re-export from @base@     , isDigit     , isOctDigit@@ -29,36 +31,13 @@ import Data.Int (Int64) import Data.Maybe (isJust) import Data.Ratio (denominator, numerator)+import GHC.Exts (Char (..), Int (..), chr#, isTrue#, (+#), (<=#), (>=#)) -import qualified Unicode.Char.Numeric.Compat as Compat import qualified Unicode.Internal.Char.DerivedNumericValues as V  -- $setup -- >>> import Data.Int (Int32, Int64) --- | Selects Unicode numeric characters, including digits from various--- scripts, Roman numerals, et cetera.------ This function returns 'True' if its argument has one of the--- following 'Unicode.Char.General.GeneralCategory's, or 'False' otherwise:------ * 'Unicode.Char.General.DecimalNumber'--- * 'Unicode.Char.General.LetterNumber'--- * 'Unicode.Char.General.OtherNumber'------ __Note:__ a character may have a numeric value (see 'numericValue') but return--- 'False', because 'isNumber' only tests 'Unicode.Char.General.GeneralCategory':--- some CJK characters are 'Unicode.Char.General.OtherLetter' and do have a--- numeric value. Use 'isNumeric' to cover those cases as well.------ prop> isNumber c == Data.Char.isNumber c------ @since 0.3.0-{-# DEPRECATED isNumber "Use Unicode.Char.Numeric.Compat.isNumber instead. This function will be a synonym for isNumeric in a future release. See Unicode.Char.Numeric.Compat for behavior compatible with base:Data.Char." #-}-{-# INLINE isNumber #-}-isNumber :: Char -> Bool-isNumber = Compat.isNumber- -- | Selects Unicode character with a numeric value. -- -- __Note:__ a character may have a numeric value but return 'False' with@@ -92,12 +71,16 @@ -- This is a special case of 'numericValue'. -- -- __Warning:__ There is a risk of /integer overflow/ depending of the chosen--- concrete return type. As of Unicode 15.0 the results range from 0 to 1e12.+-- concrete return type. As of Unicode 15.1 the results range from 0 to 1e16. ----- >>> integerValue '\x5146' :: Maybe Int64 -- OK--- Just 1000000000000--- >>> integerValue '\x5146' :: Maybe Int32 -- Will overflow!--- Just (-727379968)+-- >>> minimum [v | v@Just{} <- integerValue <$> [minBound..]] :: Maybe Integer+-- Just 0+-- >>> maximum (integerValue <$> [minBound..]) :: Maybe Integer+-- Just 10000000000000000+-- >>> integerValue '\x4EAC' :: Maybe Int64 -- OK+-- Just 10000000000000000+-- >>> integerValue '\x4EAC' :: Maybe Int32 -- Will overflow!+-- Just 1874919424 -- -- Therefore it is advised to use: @'integerValue' \@'Int64'@. --@@ -118,3 +101,16 @@     if denominator r == 1         then Just (fromInteger (numerator r))         else Nothing++-- | Same a 'intToDigit', but with upper case.+--+-- >>> intToDigiT <$> [0..15]+-- "0123456789ABCDEF"+--+-- @since 0.6.0+intToDigiT :: Int -> Char+intToDigiT (I# i)+    | isTrue# (i >=# 0#)  && isTrue# (i <=#  9#) = C# (chr# (0x30# +# i))+    | isTrue# (i >=# 10#) && isTrue# (i <=# 15#) = C# (chr# (0x37# +# i))+    | otherwise =  errorWithoutStackTrace+        ("Unicode.Char.Numeric.intToDigiT: not a digit " ++ show (I# i))
lib/Unicode/Internal/Char/Blocks.hs view
@@ -1,4 +1,4 @@--- autogenerated from https://www.unicode.org/Public/15.0.0/ucd/Blocks.txt+-- autogenerated from https://www.unicode.org/Public/15.1.0/ucd/Blocks.txt -- | -- Module      : Unicode.Internal.Char.Blocks -- Copyright   : (c) 2022 Composewell Technologies and Contributors@@ -19,7 +19,7 @@  -- | Unicode [block](https://www.unicode.org/glossary/#block). ----- There is a total of 327 blocks.+-- There is a total of 328 blocks. -- -- @since 0.3.1 data Block@@ -343,6 +343,7 @@     | CJKUnifiedIdeographsExtensionD -- ^ @U+2B740..U+2B81F@: CJK Unified Ideographs Extension D.     | CJKUnifiedIdeographsExtensionE -- ^ @U+2B820..U+2CEAF@: CJK Unified Ideographs Extension E.     | CJKUnifiedIdeographsExtensionF -- ^ @U+2CEB0..U+2EBEF@: CJK Unified Ideographs Extension F.+    | CJKUnifiedIdeographsExtensionI -- ^ @U+2EBF0..U+2EE5F@: CJK Unified Ideographs Extension I.     | CJKCompatibilityIdeographsSupplement -- ^ @U+2F800..U+2FA1F@: CJK Compatibility Ideographs Supplement.     | CJKUnifiedIdeographsExtensionG -- ^ @U+30000..U+3134F@: CJK Unified Ideographs Extension G.     | CJKUnifiedIdeographsExtensionH -- ^ @U+31350..U+323AF@: CJK Unified Ideographs Extension H.@@ -354,7 +355,7 @@  -- | Block definition ----- Undefined for values greater than 326.+-- Undefined for values greater than 327. -- -- Returned value: --@@ -685,19 +686,20 @@     317# -> (# 0x2b740#, 0x2b81f#, "CJK Unified Ideographs Extension D\0"# #)     318# -> (# 0x2b820#, 0x2ceaf#, "CJK Unified Ideographs Extension E\0"# #)     319# -> (# 0x2ceb0#, 0x2ebef#, "CJK Unified Ideographs Extension F\0"# #)-    320# -> (# 0x2f800#, 0x2fa1f#, "CJK Compatibility Ideographs Supplement\0"# #)-    321# -> (# 0x30000#, 0x3134f#, "CJK Unified Ideographs Extension G\0"# #)-    322# -> (# 0x31350#, 0x323af#, "CJK Unified Ideographs Extension H\0"# #)-    323# -> (# 0xe0000#, 0xe007f#, "Tags\0"# #)-    324# -> (# 0xe0100#, 0xe01ef#, "Variation Selectors Supplement\0"# #)-    325# -> (# 0xf0000#, 0xfffff#, "Supplementary Private Use Area-A\0"# #)+    320# -> (# 0x2ebf0#, 0x2ee5f#, "CJK Unified Ideographs Extension I\0"# #)+    321# -> (# 0x2f800#, 0x2fa1f#, "CJK Compatibility Ideographs Supplement\0"# #)+    322# -> (# 0x30000#, 0x3134f#, "CJK Unified Ideographs Extension G\0"# #)+    323# -> (# 0x31350#, 0x323af#, "CJK Unified Ideographs Extension H\0"# #)+    324# -> (# 0xe0000#, 0xe007f#, "Tags\0"# #)+    325# -> (# 0xe0100#, 0xe01ef#, "Variation Selectors Supplement\0"# #)+    326# -> (# 0xf0000#, 0xfffff#, "Supplementary Private Use Area-A\0"# #)     _    -> (# 0x100000#, 0x10ffff#, "Supplementary Private Use Area-B\0"# #)  -- | Character block, if defined, else -1. -- -- @since 0.3.1 block :: Char# -> Int#-block c# = getBlock 0# 326#+block c# = getBlock 0# 327#     where     -- [NOTE] Encoding     -- A range is encoded as two LE Word32:@@ -744,4 +746,4 @@     \\18\225\27\175\18\1\0\176\18\1\28\255\18\1\0\0\19\33\28\127\19\1\0\0\20\65\28\127\20\1\0\128\20\97\28\223\20\1\0\128\21\129\28\255\21\1\0\0\22\161\28\95\22\1\0\96\22\193\28\127\22\1\0\128\22\225\28\207\22\1\0\0\23\1\29\79\23\1\0\0\24\33\29\79\24\1\0\160\24\65\29\255\24\1\0\0\25\97\29\95\25\1\0\160\25\129\29\255\25\1\0\0\26\161\29\79\26\1\0\80\26\193\29\175\26\1\0\176\26\225\29\191\26\1\0\192\26\1\30\255\26\1\0\0\27\33\30\95\27\1\0\0\28\65\30\111\28\1\0\112\28\97\30\191\28\1\0\0\29\129\30\95\29\1\0\96\29\161\30\175\29\1\0\224\30\193\30\255\30\1\0\0\31\225\30\95\31\1\0\176\31\1\31\191\31\1\0\192\31\33\31\255\31\1\0\0\32\65\31\255\35\1\0\0\36\97\31\127\36\1\0\128\36\129\31\79\37\1\0\144\47\161\31\255\47\1\0\0\48\193\31\47\52\1\0\     \\48\52\225\31\95\52\1\0\0\68\1\32\127\70\1\0\0\104\33\32\63\106\1\0\64\106\65\32\111\106\1\0\112\106\97\32\207\106\1\0\208\106\129\32\255\106\1\0\0\107\161\32\143\107\1\0\64\110\193\32\159\110\1\0\0\111\225\32\159\111\1\0\224\111\1\33\255\111\1\0\0\112\33\33\255\135\1\0\0\136\65\33\255\138\1\0\0\139\97\33\255\140\1\0\0\141\129\33\127\141\1\0\240\175\161\33\255\175\1\0\0\176\193\33\255\176\1\0\0\177\225\33\47\177\1\0\48\177\1\34\111\177\1\0\112\177\33\34\255\178\1\0\0\188\65\34\159\188\1\0\160\188\97\34\175\188\1\0\0\207\129\34\207\207\1\0\0\208\161\34\255\208\1\0\0\209\193\34\255\209\1\0\0\210\225\34\79\210\1\0\192\210\1\35\223\210\1\0\224\210\33\35\255\210\1\0\0\211\65\35\95\211\1\0\96\211\97\35\127\211\1\0\0\212\129\35\255\215\1\0\0\216\161\35\175\218\1\0\0\223\193\35\255\223\1\     \\0\0\224\225\35\47\224\1\0\48\224\1\36\143\224\1\0\0\225\33\36\79\225\1\0\144\226\65\36\191\226\1\0\192\226\97\36\255\226\1\0\208\228\129\36\255\228\1\0\224\231\161\36\255\231\1\0\0\232\193\36\223\232\1\0\0\233\225\36\95\233\1\0\112\236\1\37\191\236\1\0\0\237\33\37\79\237\1\0\0\238\65\37\255\238\1\0\0\240\97\37\47\240\1\0\48\240\129\37\159\240\1\0\160\240\161\37\255\240\1\0\0\241\193\37\255\241\1\0\0\242\225\37\255\242\1\0\0\243\1\38\255\245\1\0\0\246\33\38\79\246\1\0\80\246\65\38\127\246\1\0\128\246\97\38\255\246\1\0\0\247\129\38\127\247\1\0\128\247\161\38\255\247\1\0\0\248\193\38\255\248\1\0\0\249\225\38\255\249\1\0\0\250\1\39\111\250\1\0\112\250\33\39\255\250\1\0\0\251\65\39\255\251\1\0\0\0\98\39\223\166\2\0\0\167\130\39\63\183\2\0\64\183\162\39\31\184\2\0\32\184\194\39\175\206\-    \\2\0\176\206\226\39\239\235\2\0\0\248\2\40\31\250\2\0\0\0\35\40\79\19\3\0\80\19\67\40\175\35\3\0\0\0\110\40\127\0\14\0\0\1\142\40\239\1\14\0\0\0\175\40\255\255\15\0\0\0\208\40\255\255\16\0"#+    \\2\0\176\206\226\39\239\235\2\0\240\235\2\40\95\238\2\0\0\248\34\40\31\250\2\0\0\0\67\40\79\19\3\0\80\19\99\40\175\35\3\0\0\0\142\40\127\0\14\0\0\1\174\40\239\1\14\0\0\0\207\40\255\255\15\0\0\0\240\40\255\255\16\0"#
lib/Unicode/Internal/Char/CaseFolding.hs view
@@ -1,4 +1,4 @@--- autogenerated from https://www.unicode.org/Public/15.0.0/ucd/CaseFolding.txt+-- autogenerated from https://www.unicode.org/Public/15.1.0/ucd/CaseFolding.txt -- | -- Module      : Unicode.Internal.Char.CaseFolding -- Copyright   : (c) 2022 Composewell Technologies and Contributors
lib/Unicode/Internal/Char/DerivedCoreProperties.hs view
@@ -1,4 +1,4 @@--- autogenerated from https://www.unicode.org/Public/15.0.0/ucd/DerivedCoreProperties.txt+-- autogenerated from https://www.unicode.org/Public/15.1.0/ucd/DerivedCoreProperties.txt -- | -- Module      : Unicode.Internal.Char.DerivedCoreProperties -- Copyright   : (c) 2020 Composewell Technologies and Contributors@@ -52,98 +52,99 @@ isXID_ContinueDataBitMap :: Ptr Int8 isXID_ContinueDataBitMap = Ptr     "\132\252\47\63\80\253\255\243\224\67\0\0\255\255\255\255\255\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\239\111\-    \\240\239\254\255\255\63\135\0\0\0\0\255\255\255\31\255\255\255\31\0\0\0\0\255\254\255\255\127\0\0\0\238\135\249\255\255\253\109\211\135\57\2\94\192\255\63\0\238\191\251\-    \\255\255\253\237\243\191\59\1\0\207\255\0\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\195\255\3\0\31\-    \\80\0\0\255\7\255\255\255\255\255\255\255\255\255\195\255\255\255\255\255\255\255\255\255\255\255\255\239\159\255\253\255\159\238\159\249\255\255\253\237\243\159\57\224\176\207\255\2\0\236\-    \\199\61\214\24\199\255\195\199\61\129\0\192\255\0\0\184\255\3\255\255\255\255\255\255\255\255\255\255\255\1\255\255\255\255\255\7\255\255\255\255\255\255\255\255\63\0\0\255\255\255\-    \\15\255\7\255\255\255\126\0\255\255\255\255\255\255\255\255\255\251\255\255\255\255\191\32\255\255\255\255\255\255\255\128\0\128\255\255\127\0\127\127\127\127\127\127\127\127\255\255\255\255\-    \\255\255\255\255\255\61\127\61\255\255\255\255\255\61\255\255\255\255\61\127\61\255\127\255\255\255\255\255\255\255\3\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\-    \\255\255\255\255\255\255\255\255\255\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\31\255\255\255\255\255\255\1\0\1\0\0\0\255\255\255\255\255\255\255\231\255\-    \\255\255\255\255\255\255\255\255\255\255\255\3\0\255\255\255\255\255\255\63\36\191\231\223\223\255\255\255\123\95\252\253\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\-    \\255\255\255\63\255\255\255\253\255\255\247\255\255\255\247\224\255\255\255\255\255\254\255\255\255\255\255\255\255\255\255\255\127\0\0\255\255\255\255\0\0\0\0\0\0\255\255\255\63\255\-    \\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\3\0\255\255\255\255\255\255\255\255\255\255\255\255\207\255\254\255\239\159\249\255\255\-    \\253\197\243\159\121\128\176\207\255\3\80\255\255\0\0\255\255\24\0\0\224\0\0\0\0\138\170\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\31\255\3\0\248\15\0\255\-    \\255\255\255\255\255\255\255\255\255\255\255\255\255\15\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\1\-    \\0\0\0\0\0\0\255\255\255\255\255\255\7\0\255\255\255\255\255\255\7\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\-    \\255\255\255\0\0\255\255\63\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\1\0\0\3\255\3\160\194\255\-    \\254\255\255\255\31\254\255\223\255\255\254\255\255\255\31\64\0\0\0\0\0\0\0\128\255\252\255\255\255\255\255\255\255\255\255\255\255\255\249\255\255\255\255\255\255\255\7\235\3\0\-    \\0\252\255\223\253\255\255\253\255\243\223\61\96\39\207\255\0\0\239\223\253\255\255\253\239\243\223\61\96\96\207\255\14\0\255\255\255\255\255\255\255\0\255\227\255\255\255\255\255\63\-    \\255\1\255\255\255\255\255\231\0\0\247\255\255\255\255\7\0\4\0\0\0\39\0\240\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\-    \\255\255\255\255\255\255\15\0\255\255\127\248\255\255\255\255\255\15\255\255\255\255\255\255\255\127\255\255\255\159\255\3\255\3\128\0\255\191\255\127\0\0\0\0\0\0\255\3\254\255\-    \\255\135\254\255\255\7\192\255\255\255\255\255\255\255\255\255\255\127\252\252\252\28\0\0\0\0\255\255\255\255\255\31\255\63\255\67\0\0\0\0\0\0\0\0\0\0\0\0\0\0\-    \\0\0\0\0\0\0\0\0\255\255\255\127\0\0\255\255\255\255\255\255\255\3\255\255\255\255\255\0\255\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\-    \\0\0\0\0\255\255\255\255\255\27\3\0\0\0\0\0\0\0\0\224\0\0\0\254\255\62\31\254\255\255\255\255\255\255\255\255\255\127\230\254\255\255\255\255\255\255\255\255\255\255\-    \\247\255\239\255\255\127\255\255\183\255\63\255\63\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\7\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\-    \\255\255\255\255\255\127\0\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\-    \\0\0\0\0\0\0\0\0\0\0\255\3\254\255\255\135\254\255\255\7\0\0\0\0\0\4\160\4\255\255\127\255\255\255\127\255\15\255\15\192\255\255\255\255\63\31\0\255\255\255\-    \\255\255\15\255\255\255\3\255\7\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\63\240\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\251\252\255\255\255\-    \\255\255\255\255\255\255\255\255\255\255\255\223\184\192\215\255\255\251\255\255\255\255\255\255\255\255\255\191\255\223\253\255\255\255\255\255\223\125\240\128\207\255\0\252\238\255\127\252\255\255\-    \\251\47\127\132\95\255\192\255\12\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\31\0\0\0\0\0\0\0\0\255\255\255\255\255\63\255\255\127\0\0\0\0\0\-    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\224\227\7\248\231\15\0\0\0\60\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\-    \\63\255\1\0\0\63\0\0\0\0\255\255\255\255\255\0\255\255\255\255\255\255\15\0\255\247\255\247\183\255\251\255\251\27\0\0\0\0\0\0\0\0\28\0\0\0\0\0\0\0\-    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\224\227\7\248\231\15\0\0\0\60\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\-    \\0\0\255\255\255\255\255\3\255\255\255\255\255\63\255\255\255\255\15\0\255\255\255\31\255\255\255\255\255\255\255\255\1\128\255\3\255\255\255\127\251\255\255\255\255\127\180\255\0\255\-    \\3\191\253\255\255\255\127\251\1\255\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\127\0\191\231\223\223\255\255\255\-    \\123\95\252\253\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\223\255\255\255\255\255\255\255\255\223\100\222\255\235\239\255\255\255\255\255\255\255\255\255\3\-    \\255\255\255\255\255\255\255\255\255\63\255\255\255\255\191\32\255\255\255\255\255\247\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\3\0\255\255\255\255\255\255\-    \\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\1\0\0\0\255\255\253\255\255\255\255\199\7\0\255\3\0\0\0\0\0\0\0\0\0\0\1\0\-    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\127\0\255\255\255\255\255\255\255\255\255\255\255\255\255\127\0\0\255\255\255\-    \\255\255\255\255\255\255\255\255\255\255\255\255\255\15\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\127\111\255\127\242\111\255\255\-    \\255\191\249\15\0\255\3\0\0\0\0\0\0\0\0\255\252\255\255\255\255\255\252\27\0\0\0\255\255\255\255\255\255\127\0\15\0\255\3\248\255\255\224\255\255\0\0\0\0\0\-    \\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\31\0\0\0\0\0\0\0\0\0\0\-    \\0\0\0\0\0\0\32\255\255\255\63\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\3\255\255\255\255\255\255\255\255\255\255\-    \\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\31\248\15\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\251\252\255\255\255\255\255\255\255\255\255\255\-    \\255\255\255\255\254\255\255\255\127\2\255\255\255\255\255\1\254\255\255\255\255\191\182\0\255\255\255\135\7\0\255\255\223\255\255\255\223\255\255\127\255\255\255\127\255\255\255\253\255\255\-    \\255\253\255\255\247\207\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\63\255\255\255\253\255\255\247\255\255\255\247\255\255\223\255\255\255\223\255\255\127\255\255\-    \\255\127\255\255\255\253\255\255\255\253\255\255\247\207\255\255\255\255\255\255\127\248\255\255\255\255\255\31\32\0\16\0\0\248\254\255\0\0\0\0\0\0\0\0\0\0\128\1\0\16\-    \\0\0\0\2\128\0\0\255\31\0\0\0\0\0\0\255\31\226\255\1\0\255\255\255\31\128\0\255\255\255\255\1\0\0\0\255\255\63\0\0\0\0\0\255\255\31\0\0\0\255\-    \\255\127\0\248\224\255\253\127\95\219\255\255\255\255\255\255\255\255\255\255\255\255\255\3\0\0\0\248\255\255\255\255\255\255\255\255\255\255\255\255\255\63\255\255\255\255\255\255\255\255\-    \\255\255\255\255\255\3\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\223\184\192\215\255\255\251\255\255\255\255\255\255\255\255\255\191\255\255\255\255\255\255\255\255\255\-    \\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\195\255\3\0\31\80\0\0\255\255\255\255\255\255\255\255\255\135\255\255\255\255\255\255\255\128\255\255\0\0\0\0\0\0\0\-    \\0\27\0\3\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\254\255\255\255\255\255\255\7\255\127\255\3\0\0\-    \\0\0\214\247\255\255\175\255\255\63\95\127\255\243\0\0\0\0\255\255\61\255\255\255\255\255\255\255\255\231\0\254\3\0\255\255\0\0\255\255\255\255\255\255\255\255\255\255\63\63\-    \\255\255\255\255\255\255\255\255\255\255\255\255\255\159\255\255\254\255\255\7\255\255\255\255\255\255\255\255\255\199\255\1\255\255\63\128\255\255\31\0\255\255\15\0\255\223\13\0\255\255\-    \\255\255\255\255\255\255\255\255\143\48\255\3\0\0\255\255\63\63\255\255\255\255\63\63\255\170\255\255\255\63\255\255\255\255\255\255\223\95\220\31\207\15\255\31\220\31\255\31\255\255\-    \\255\15\0\0\255\255\255\255\255\255\240\191\255\255\255\255\255\255\255\255\255\255\255\255\255\255\3\0\255\255\255\255\255\16\0\0\255\255\255\255\255\255\15\0\255\255\255\255\255\255\-    \\255\255\63\0\255\3\255\255\255\232\255\255\255\255\255\255\127\0\255\63\255\3\255\255\127\252\255\255\255\255\255\255\255\255\7\0\0\56\255\255\124\0\126\126\126\0\127\127\255\255\-    \\255\255\255\247\255\3\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\55\255\3\255\255\255\255\255\255\255\63\0\0\255\255\255\255\255\255\255\255\252\255\255\255\255\255\255\0\-    \\0\0\0\0\255\3\255\255\255\255\0\224\255\255\255\7\255\255\255\255\255\7\255\255\255\63\255\255\255\255\15\255\62\0\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\-    \\255\255\255\255\255\255\255\63\255\3\255\255\255\255\15\255\255\255\255\15\255\255\255\255\255\255\127\0\255\255\63\0\255\0\0\0\191\255\255\255\255\255\253\7\0\0\0\0\0\0\-    \\0\0\63\253\255\255\255\255\191\145\255\255\63\0\255\255\127\0\255\255\255\127\0\0\0\0\0\0\0\0\255\255\55\0\255\255\63\0\255\255\255\3\0\0\0\0\0\0\0\0\-    \\255\255\255\255\255\255\255\192\0\0\0\0\0\0\0\0\255\255\255\255\255\255\63\0\255\255\63\0\255\255\7\0\255\255\3\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\-    \\255\255\255\255\255\255\127\0\0\0\192\255\63\128\255\255\255\255\255\255\255\7\4\0\255\255\255\1\255\3\255\255\255\255\255\255\223\255\240\0\255\255\255\255\79\0\255\255\255\255\-    \\255\255\255\255\31\222\255\23\0\0\0\0\255\255\251\255\255\255\255\192\3\0\0\0\0\0\0\0\127\189\255\191\255\1\255\255\255\255\255\255\255\7\255\3\239\159\249\255\255\253\-    \\237\251\159\57\129\224\207\31\31\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\255\7\255\195\3\0\0\0\255\255\255\255\255\255\255\255\-    \\191\0\255\3\0\0\0\0\255\255\255\255\255\255\255\255\17\0\255\3\0\0\0\0\255\255\255\255\255\255\255\1\255\3\0\0\0\0\0\0\255\255\255\231\255\15\255\3\127\0\-    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\7\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\-    \\255\3\0\128\255\255\255\255\255\255\255\127\128\0\255\255\255\255\255\255\255\255\255\35\0\0\255\255\255\255\255\255\255\255\255\1\255\253\255\255\255\255\127\255\1\0\255\3\0\0\-    \\252\255\255\255\252\255\255\254\127\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\127\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\-    \\255\255\255\255\255\255\255\1\255\255\255\127\255\3\255\255\255\255\255\255\255\255\255\127\255\3\255\255\255\63\31\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\-    \\255\255\255\255\255\255\255\255\63\0\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\255\7\255\31\255\1\255\99\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\127\-    \\224\7\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\127\255\255\249\219\7\255\255\255\255\255\255\255\63\0\0\0\128\0\0\0\0\-    \\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\31\0\127\0\0\0\0\0\255\255\255\255\255\255\255\255\-    \\255\15\255\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\239\255\255\255\150\254\247\10\132\234\150\170\150\247\247\94\255\251\255\15\238\251\255\15\0\0\-    \\0\0\0\0\0\0\255\255\255\63\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"#+    \\240\239\254\255\255\63\135\0\0\0\0\255\255\255\31\255\255\255\31\0\0\0\0\255\254\255\255\127\0\0\0\48\0\0\0\0\0\128\1\0\16\0\0\0\2\128\0\0\255\31\+    \\0\0\0\0\0\0\255\31\226\255\1\0\224\0\0\0\254\255\62\31\254\255\255\255\255\255\255\255\255\255\127\230\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\+    \\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\195\255\3\0\31\80\0\0\255\7\255\255\255\255\255\255\255\255\255\195\255\255\255\255\255\255\255\255\255\255\255\255\239\159\255\+    \\253\255\159\238\159\249\255\255\253\237\243\159\57\224\176\207\255\2\0\236\199\61\214\24\199\255\195\199\61\129\0\192\255\0\0\184\255\3\255\255\255\255\255\255\255\255\255\255\255\1\+    \\255\255\255\255\255\7\255\255\255\255\255\255\255\255\63\0\0\255\255\255\15\255\7\255\255\255\126\0\255\255\255\255\255\255\255\255\255\251\255\255\255\255\191\32\255\255\255\255\255\255\+    \\255\128\0\128\255\255\127\0\127\127\127\127\127\127\127\127\255\255\255\255\255\255\255\255\255\61\127\61\255\255\255\255\255\61\255\255\255\255\61\127\61\255\127\255\255\255\255\255\255\255\+    \\3\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\+    \\255\63\255\1\0\0\63\0\0\0\0\255\255\255\255\255\255\255\231\255\255\255\255\255\255\255\255\255\255\255\255\3\0\255\255\255\255\255\255\63\36\255\239\255\255\127\255\255\183\255\+    \\63\255\63\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\7\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\63\+    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\3\254\255\255\135\254\255\255\7\0\0\0\0\0\4\160\4\+    \\255\255\127\255\255\255\127\255\15\255\15\192\255\255\255\255\63\31\0\255\255\255\255\255\15\255\255\255\3\255\7\0\0\0\0\128\255\252\255\255\255\255\255\255\255\255\255\255\255\255\+    \\249\255\255\255\255\255\255\255\7\235\3\0\0\252\255\223\253\255\255\253\255\243\223\61\96\39\207\255\0\0\239\223\253\255\255\253\239\243\223\61\96\96\207\255\14\0\191\231\223\223\+    \\255\255\255\123\95\252\253\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\63\255\255\255\253\255\255\247\255\255\255\247\224\255\255\255\255\255\254\255\255\255\+    \\255\255\255\255\255\255\255\127\0\0\255\255\255\255\0\0\0\0\0\0\255\255\255\63\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\+    \\255\255\3\0\255\255\255\255\255\255\255\255\255\255\255\255\207\255\254\255\239\159\249\255\255\253\197\243\159\121\128\176\207\255\3\80\255\255\0\0\255\255\24\0\0\224\0\0\0\0\+    \\138\170\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\31\255\3\0\248\15\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\15\0\0\0\0\0\0\0\0\0\0\0\+    \\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\1\0\0\0\0\0\0\255\255\255\255\255\255\7\0\255\255\255\255\255\255\7\0\255\255\255\+    \\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\0\0\255\255\63\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\+    \\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\1\0\0\3\255\3\160\194\255\254\255\255\255\31\254\255\223\255\255\254\255\255\255\31\64\0\0\0\0\0\0\0\255\3\+    \\254\255\255\135\254\255\255\7\224\255\255\255\255\255\255\255\255\255\255\127\252\252\252\28\0\0\0\0\255\255\255\255\255\255\255\0\255\227\255\255\255\255\255\63\255\1\255\255\255\255\+    \\255\231\0\0\247\255\255\255\255\7\0\4\0\0\0\39\0\240\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\+    \\15\0\255\255\127\248\255\255\255\255\255\15\255\255\255\255\255\255\255\127\255\255\255\159\255\3\255\3\128\0\255\191\255\127\0\0\0\0\0\0\255\255\255\255\255\31\255\63\255\67\+    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\127\0\0\255\255\255\255\255\255\255\3\255\255\255\255\255\0\255\3\0\0\0\0\0\0\+    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\27\3\0\0\0\0\0\0\0\0\224\255\255\255\255\255\255\255\255\255\255\255\255\255\127\0\0\+    \\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\31\255\255\255\255\255\255\1\0\1\0\+    \\0\0\255\255\255\255\255\255\255\255\255\255\255\63\240\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\251\252\255\255\255\255\255\255\255\255\255\255\255\255\255\255\+    \\223\184\192\215\255\255\251\255\255\255\255\255\255\255\255\255\191\255\223\253\255\255\255\255\255\223\125\240\128\207\255\0\252\238\255\127\252\255\255\251\47\127\132\95\255\192\255\12\0\255\+    \\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\31\0\0\0\0\0\0\0\0\255\255\255\255\255\63\255\255\127\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\+    \\0\0\0\0\0\0\0\224\227\7\248\231\15\0\0\0\60\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\3\255\+    \\255\255\255\255\0\255\255\255\255\255\255\15\0\255\247\255\247\183\255\251\255\251\27\0\0\0\0\0\0\0\0\28\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\+    \\0\0\0\0\0\224\227\7\248\231\15\0\0\0\60\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\127\111\255\127\242\111\255\+    \\255\255\191\249\15\0\255\3\0\0\0\0\0\0\0\0\255\252\255\255\255\255\255\252\27\0\0\0\255\255\255\255\255\63\255\255\255\255\15\0\255\255\255\31\255\255\255\255\255\255\+    \\255\255\1\128\255\3\255\255\255\127\251\255\255\255\255\127\180\255\0\255\3\191\253\255\255\255\127\251\1\255\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\+    \\0\0\0\0\0\0\0\0\0\255\255\127\0\191\231\223\223\255\255\255\123\95\252\253\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\223\255\255\255\255\+    \\255\255\255\255\223\100\222\255\235\239\255\255\255\255\255\255\255\255\255\3\255\255\255\255\255\255\255\255\255\63\255\255\255\255\191\32\255\255\255\255\255\247\255\255\255\255\255\255\255\255\+    \\255\255\255\255\255\255\255\255\255\255\255\255\3\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\1\0\255\255\61\255\255\255\+    \\255\255\255\255\255\231\0\254\3\0\255\255\0\0\255\255\255\255\255\255\255\255\255\255\63\63\255\255\255\255\63\63\255\170\255\255\255\63\255\255\255\255\255\255\223\95\220\31\207\15\+    \\255\31\220\31\255\255\253\255\255\255\255\199\7\0\255\3\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\+    \\0\0\0\0\0\255\255\127\0\255\255\255\255\255\255\255\255\255\255\255\255\255\127\0\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\15\0\0\0\0\0\0\0\0\+    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\31\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\32\255\255\255\255\255\255\127\0\15\0\255\+    \\3\248\255\255\224\255\255\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\63\255\+    \\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\3\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\+    \\255\255\255\255\255\255\31\248\15\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\251\252\255\255\255\255\255\255\255\255\255\255\255\255\255\255\254\255\255\255\127\2\255\255\+    \\255\255\255\1\254\255\255\255\255\191\182\0\255\255\255\135\7\0\255\255\223\255\255\255\223\255\255\127\255\255\255\127\255\255\255\253\255\255\255\253\255\255\247\207\255\255\255\255\255\255\+    \\255\255\255\255\255\255\255\255\255\255\255\255\255\255\63\255\255\255\253\255\255\247\255\255\255\247\255\255\223\255\255\255\223\255\255\127\255\255\255\127\255\255\255\253\255\255\255\253\255\255\+    \\247\207\255\255\255\255\255\255\127\248\255\255\255\255\255\31\32\0\16\0\0\248\254\255\0\0\0\0\0\0\0\0\0\0\255\255\255\31\128\0\255\255\255\255\1\0\0\0\255\255\+    \\63\0\0\0\0\0\255\255\31\0\0\0\255\255\127\0\248\224\255\253\127\95\219\255\255\255\255\255\255\255\255\255\255\255\255\255\3\0\0\0\248\255\255\255\255\255\255\255\255\255\+    \\255\255\255\255\63\255\255\255\255\255\255\255\255\255\255\255\255\255\3\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\+    \\255\1\0\255\255\255\255\255\255\255\255\255\255\255\63\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\223\+    \\184\192\215\255\255\251\255\255\255\255\255\255\255\255\255\191\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\195\255\3\0\31\80\0\0\255\255\+    \\255\255\255\255\255\255\255\135\255\255\255\255\255\255\255\128\255\255\0\0\0\0\0\0\0\0\27\0\3\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\0\0\0\0\0\+    \\0\0\0\0\0\0\0\0\0\0\0\238\135\249\255\255\253\109\211\135\57\2\94\192\255\63\0\238\191\251\255\255\253\237\243\191\59\1\0\207\255\0\254\254\255\255\255\255\255\255\+    \\7\255\127\255\3\0\0\0\0\214\247\255\255\175\255\255\63\95\127\255\243\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\255\159\255\255\254\255\255\7\255\255\255\255\255\+    \\255\255\255\255\199\255\1\255\255\63\128\255\255\31\0\255\255\15\0\255\223\13\0\255\255\255\255\255\255\255\255\255\255\143\48\255\3\0\0\255\31\255\255\255\15\0\0\255\255\255\+    \\255\255\255\240\191\255\255\255\255\255\255\255\255\255\255\255\255\255\255\3\0\255\255\255\255\255\16\0\0\255\255\255\255\255\255\15\0\255\255\255\255\255\255\255\255\63\0\255\3\255\+    \\255\255\232\255\255\255\255\255\255\127\0\255\63\255\3\255\255\127\252\255\255\255\255\255\255\255\255\7\0\0\56\255\255\124\0\126\126\126\0\127\127\255\255\255\255\255\247\255\3\255\+    \\255\255\255\255\255\255\255\255\255\255\255\255\255\255\55\255\3\255\255\255\255\255\255\255\63\0\0\255\255\255\255\255\255\255\255\252\255\255\255\255\255\255\0\0\0\0\0\255\3\255\+    \\255\255\255\0\224\255\255\255\7\255\255\255\255\255\7\255\255\255\63\255\255\255\255\15\255\62\0\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\+    \\63\255\3\255\255\255\255\15\255\255\255\255\15\255\255\255\255\255\255\127\0\255\255\63\0\255\0\0\0\191\255\255\255\255\255\253\7\0\0\0\0\0\0\0\0\63\253\255\255\255\+    \\255\191\145\255\255\63\0\255\255\127\0\255\255\255\127\0\0\0\0\0\0\0\0\255\255\55\0\255\255\63\0\255\255\255\3\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\+    \\192\0\0\0\0\0\0\0\0\255\255\255\255\255\255\63\0\255\255\63\0\255\255\7\0\255\255\3\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\127\+    \\0\0\0\192\255\63\128\255\255\255\255\255\255\255\7\4\0\255\255\255\1\255\3\255\255\255\255\255\255\223\255\240\0\255\255\255\255\79\0\255\255\255\255\255\255\255\255\31\222\255\+    \\23\0\0\0\0\255\255\251\255\255\255\255\192\3\0\0\0\0\0\0\0\127\189\255\191\255\1\255\255\255\255\255\255\255\7\255\3\239\159\249\255\255\253\237\251\159\57\129\224\207\+    \\31\31\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\255\7\255\195\3\0\0\0\255\255\255\255\255\255\255\255\191\0\255\3\0\0\0\+    \\0\255\255\255\255\255\255\255\255\17\0\255\3\0\0\0\0\255\255\255\255\255\255\255\1\255\3\0\0\0\0\0\0\255\255\255\231\255\15\255\3\127\0\0\0\0\0\0\0\0\+    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\7\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\255\3\0\128\255\255\255\+    \\255\255\255\255\127\128\0\255\255\255\255\255\255\255\255\255\35\0\0\255\255\255\255\255\255\255\255\255\1\255\253\255\255\255\255\127\255\1\0\255\3\0\0\252\255\255\255\252\255\255\+    \\254\127\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\127\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\+    \\1\255\255\255\127\255\3\255\255\255\255\255\255\255\255\255\127\255\3\255\255\255\63\31\0\255\255\255\255\255\255\255\255\255\255\255\255\255\7\255\31\255\1\255\99\0\0\0\0\0\+    \\0\0\0\0\0\0\0\255\255\255\127\224\7\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\127\255\255\249\219\7\255\255\255\255\255\+    \\255\255\63\0\0\0\128\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\31\0\127\0\0\+    \\0\0\0\255\255\255\255\255\255\255\255\255\15\255\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\239\255\255\255\150\254\247\10\132\234\150\170\150\247\247\+    \\94\255\251\255\15\238\251\255\15\0\0\0\0\0\0\0\0"#  isXID_ContinueOffsetsBitMap :: Ptr Word16 isXID_ContinueOffsetsBitMap = Ptr-    "\180\4\113\0\121\0\17\5\255\4\50\8\151\0\133\1\239\0\17\2\81\0\183\0\34\3\48\5\182\9\229\2\154\6\113\0\40\1\214\9\112\0\113\0\246\9\22\10\214\0\207\4\146\3\71\2\66\3\113\0\113\0\54\10\191\8\0\0\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\248\7\12\1\154\4\154\4\45\4\209\1\-    \\154\4\154\4\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\79\1\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\-    \\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\-    \\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\80\5\113\0\86\10\3\3\118\10\22\6\150\10\182\10\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\-    \\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\118\3\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\113\0\-    \\24\9\253\8\239\4\214\10\49\2\176\3\77\4\183\7\103\1\246\10\22\11\180\5\113\0\54\11\86\11\118\11\49\0\150\11\128\2\254\3\14\4\223\8\182\11\214\11\246\11\22\12\54\12\148\5\86\12\118\12\150\12\103\7\182\12\154\4\214\12\53\6\75\6\240\6\113\0\113\0\113\0\134\4\118\4\93\2\154\4\154\4\154\4\154\4\154\4\154\4\-    \\154\4\154\4\154\4\107\2\113\0\113\0\113\0\113\0\185\2\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\113\0\113\0\246\12\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\-    \\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\113\0\113\0\22\13\135\7\154\4\154\4\159\7\119\9\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\160\2\113\0\113\0\113\0\113\0\54\13\16\0\154\4\154\4\-    \\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\18\0\113\0\93\3\107\3\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\86\13\154\4\154\4\154\4\154\4\154\4\-    \\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\106\5\154\4\126\5\204\5\154\4\129\6\165\1\177\1\82\8\154\4\154\4\166\8\154\4\154\4\154\4\154\4\118\13\150\13\208\3\222\3\154\4\246\5\154\4\154\4\72\7\182\13\214\13\154\4\154\4\154\4\154\4\246\13\154\4\154\4\154\4\154\4\154\4\-    \\154\4\154\4\154\4\154\4\154\4\154\4\154\4\156\4\154\4\154\4\154\4\154\4\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\-    \\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\-    \\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\-    \\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\75\1\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\67\1\239\1\113\0\113\0\113\0\-    \\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\251\1\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\208\6\154\4\154\4\-    \\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\154\4\113\0\113\0\22\14\154\4\154\4\154\4\154\4\154\4\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\99\4\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\-    \\113\0\113\0\113\0\81\1\103\2\113\0"#+    "\14\2\133\0\141\0\56\5\38\5\138\8\171\0\153\1\3\1\242\2\51\10\203\0\102\2\87\5\83\10\198\3\224\6\133\0\60\1\52\7\132\0\133\0\115\10\147\10\234\0\41\2\84\4\40\3\4\4\133\0\133\0\80\7\80\0\0\0\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\80\8\32\1\244\1\244\1\112\0\178\2\+    \\244\1\244\1\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\99\1\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\+    \\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\+    \\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\119\5\133\0\179\10\71\2\211\10\92\6\243\10\19\11\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\+    \\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\56\4\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\133\0\+    \\87\9\60\9\22\5\51\11\18\3\228\3\185\1\215\7\246\4\83\11\115\11\219\5\133\0\147\11\179\11\211\11\49\0\243\11\97\3\162\4\178\4\30\9\19\12\51\12\83\12\115\12\147\12\123\1\179\12\211\12\243\12\60\6\19\13\244\1\51\13\123\6\145\6\112\7\133\0\133\0\133\0\226\4\210\4\62\3\244\1\244\1\244\1\244\1\244\1\244\1\+    \\244\1\244\1\244\1\76\3\133\0\133\0\133\0\133\0\154\3\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\133\0\133\0\83\13\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\+    \\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\133\0\133\0\115\13\247\7\244\1\244\1\15\8\244\9\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\129\3\133\0\133\0\133\0\133\0\217\1\16\0\244\1\244\1\+    \\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\18\0\133\0\31\4\45\4\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\147\13\244\1\244\1\244\1\244\1\244\1\+    \\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\145\5\244\1\165\5\243\5\244\1\199\6\134\2\146\2\170\8\244\1\244\1\254\8\244\1\244\1\244\1\244\1\179\13\211\13\116\4\130\4\244\1\187\5\244\1\244\1\29\6\243\13\19\14\244\1\244\1\244\1\244\1\51\14\244\1\244\1\244\1\244\1\244\1\+    \\244\1\244\1\244\1\244\1\244\1\244\1\244\1\246\1\244\1\244\1\244\1\244\1\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\+    \\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\+    \\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\+    \\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\95\1\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\87\1\208\2\133\0\133\0\133\0\+    \\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\220\2\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\22\7\133\0\133\0\+    \\232\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\133\0\133\0\240\1\244\1\244\1\244\1\244\1\244\1\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\207\1\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\+    \\133\0\133\0\133\0\101\1\72\3\133\0"#  {-# INLINE isXID_Start #-} isXID_Start :: Char -> Bool@@ -164,49 +165,49 @@  isXID_StartDataBitMap :: Ptr Int8 isXID_StartDataBitMap = Ptr-    "\224\255\255\255\255\255\254\255\255\255\255\255\255\255\255\255\255\127\0\0\255\255\255\255\0\0\0\0\0\0\255\255\255\255\255\255\0\0\15\0\0\0\248\255\255\224\255\255\0\0\-    \\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\138\170\255\255\255\255\255\255\255\255\255\255\255\255\-    \\255\255\255\31\0\128\7\0\128\3\0\0\0\255\255\255\255\255\255\0\0\176\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\127\0\0\0\0\0\15\-    \\0\0\0\0\255\255\255\255\255\7\0\0\0\192\254\255\255\255\255\255\255\255\255\255\255\255\47\0\96\192\0\156\132\252\47\63\80\253\255\243\224\67\0\0\255\255\255\255\255\1\-    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\239\111\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\-    \\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\195\255\3\0\31\80\0\0\255\255\255\255\255\255\255\3\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\-    \\255\255\255\255\255\255\255\255\255\0\0\0\0\0\0\0\0\254\255\255\7\254\255\255\7\0\0\0\0\0\4\32\4\255\255\127\255\255\255\127\255\255\61\255\255\255\255\255\255\255\-    \\255\7\0\0\0\0\255\255\0\0\255\255\255\255\255\255\255\255\255\255\63\63\255\255\255\255\63\63\255\170\255\255\255\63\255\255\255\255\255\255\223\95\220\31\207\15\255\31\220\31\-    \\255\239\255\255\127\255\255\183\255\63\255\63\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\7\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\-    \\255\255\255\255\255\255\255\255\255\255\31\120\12\0\191\231\223\223\255\255\255\123\95\252\253\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\63\255\255\255\-    \\253\255\255\247\255\255\255\247\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\31\0\0\0\0\0\0\0\0\255\255\255\255\255\63\255\255\255\-    \\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\3\0\255\255\255\255\255\255\255\255\255\255\255\255\255\159\255\255\254\255\255\7\255\255\255\-    \\255\255\255\255\255\255\199\255\1\0\239\254\255\255\63\0\0\0\0\0\255\255\255\31\255\255\255\31\0\0\0\0\255\254\255\255\31\0\0\0\255\255\255\255\255\255\255\255\15\0\-    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\1\0\0\0\0\0\0\255\255\255\255\255\255\7\0\255\-    \\255\255\255\255\255\7\0\128\0\0\63\60\98\192\225\255\3\64\0\0\255\255\255\255\191\32\255\255\255\255\255\247\255\31\255\255\0\12\0\0\255\255\255\255\255\127\0\128\255\255\-    \\255\63\255\255\255\255\255\255\255\255\255\255\0\0\126\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\-    \\1\0\0\247\15\0\0\255\255\127\196\255\255\255\255\255\255\98\62\5\0\0\56\255\7\28\0\255\255\255\255\7\0\4\0\0\0\39\0\240\0\255\255\255\255\255\255\255\255\255\-    \\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\15\0\255\255\127\248\255\255\255\255\255\15\0\0\0\0\224\0\252\255\255\255\63\255\1\255\255\255\-    \\255\255\231\0\0\0\0\0\222\111\4\255\255\255\255\255\31\128\63\0\64\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\63\0\0\255\-    \\255\255\255\255\15\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\0\0\0\128\255\252\255\255\255\255\255\255\255\255\255\255\255\255\249\255\255\255\255\-    \\255\255\255\7\235\3\0\0\252\255\255\63\0\255\255\127\0\0\0\255\255\255\31\240\255\255\255\255\255\7\0\0\128\0\0\223\255\0\124\224\159\249\255\255\253\237\35\0\0\0\-    \\176\3\0\2\0\232\199\61\214\24\199\255\3\0\0\1\0\0\0\0\0\0\0\255\254\255\255\255\31\0\0\0\31\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\-    \\255\255\255\31\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\31\255\255\255\255\255\255\1\0\0\0\0\0\254\255\255\7\254\255\255\7\192\255\255\255\255\-    \\255\255\63\255\255\255\127\252\252\252\28\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\63\0\0\255\255\255\255\15\255\255\255\255\15\0\0\0\-    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\3\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\128\0\0\255\-    \\31\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\127\111\255\127\242\111\255\255\255\0\128\2\0\0\0\0\0\-    \\0\0\0\0\0\0\255\252\255\255\255\255\1\0\10\0\0\0\255\255\255\255\255\255\255\255\255\255\255\63\240\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\-    \\3\252\255\255\255\255\255\255\255\255\255\255\255\255\255\255\127\0\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\3\0\0\0\0\0\0\0\0\0\0\0\-    \\0\0\0\223\184\64\215\255\255\251\255\255\255\255\255\255\255\255\255\191\255\255\127\0\255\255\255\255\255\255\31\0\0\0\0\0\0\0\0\0\128\0\0\0\0\0\0\0\0\0\-    \\0\0\127\251\255\255\255\255\1\0\64\0\0\0\191\253\255\255\255\3\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\-    \\255\255\7\0\191\231\223\223\255\255\255\123\95\252\253\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\223\255\255\255\255\255\255\255\255\223\100\222\255\235\-    \\239\255\255\255\255\255\255\255\255\255\61\127\61\255\255\255\255\255\61\255\255\255\255\61\127\61\255\127\255\255\255\255\255\255\254\255\255\255\127\2\255\255\255\255\255\1\0\0\0\0\-    \\0\0\0\0\255\255\255\135\7\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\3\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\-    \\255\255\255\255\255\255\255\255\255\255\1\0\0\0\244\255\253\255\255\255\15\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\-    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\7\0\255\255\255\255\255\255\0\0\16\0\0\0\0\0\0\0\255\255\255\255\255\7\0\1\0\0\0\0\0\0\0\-    \\0\0\0\0\0\0\0\0\0\255\255\255\255\255\127\0\0\0\0\0\15\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\255\127\0\0\255\255\255\255\255\255\255\255\255\-    \\255\255\255\255\255\255\255\15\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\15\0\0\255\255\255\255\255\255\255\255\255\255\-    \\223\255\255\255\255\255\255\255\255\223\100\222\255\235\239\255\255\255\255\255\255\255\255\255\255\255\255\255\7\255\31\255\1\255\3\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\-    \\63\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\3\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\-    \\255\255\255\255\255\255\255\255\255\255\255\0\255\255\255\255\255\255\15\0\255\247\255\247\183\255\251\255\251\27\0\0\0\0\0\0\0\0\255\255\255\127\224\7\0\0\0\0\0\0\-    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\63\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\-    \\0\0\0\0\0\0\255\255\255\255\255\31\128\63\0\64\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\63\0\0\0\0\-    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\31\128\0\255\255\63\0\0\0\0\0\255\255\3\0\0\0\0\0\255\255\31\0\0\0\255\255\127\0\248\160\255\253\+    "\132\252\47\63\80\253\255\243\224\67\0\0\255\255\255\255\255\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\239\111\+    \\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\195\255\3\0\31\80\0\0\224\255\255\255\255\255\254\255\255\+    \\255\255\255\255\255\255\255\255\127\0\0\255\255\255\255\0\0\0\0\0\0\255\255\255\255\255\255\255\3\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\+    \\255\255\255\255\255\255\255\0\0\0\0\0\0\0\0\254\255\255\7\254\255\255\7\0\0\0\0\0\4\32\4\255\255\127\255\255\255\127\255\255\255\255\191\32\255\255\255\255\255\255\+    \\255\128\0\0\255\255\127\0\127\127\127\127\127\127\127\127\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\63\240\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\+    \\255\255\255\255\255\255\255\255\255\63\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\7\0\255\239\255\255\+    \\127\255\255\183\255\63\255\63\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\7\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\+    \\255\255\255\255\255\255\31\120\12\0\191\231\223\223\255\255\255\123\95\252\253\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\63\255\255\255\253\255\255\247\+    \\255\255\255\247\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\31\0\0\0\0\0\0\0\0\255\255\255\255\255\63\255\255\255\255\255\255\255\+    \\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\3\0\255\255\255\255\255\255\255\255\255\255\255\255\255\159\255\255\254\255\255\7\255\255\255\255\255\255\255\+    \\255\255\199\255\1\0\239\254\255\255\63\0\0\0\0\0\255\255\255\31\255\255\255\31\0\0\0\0\255\254\255\255\31\0\0\0\255\255\255\255\255\255\255\255\15\0\0\0\0\0\+    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\1\0\0\0\0\0\0\255\255\255\255\255\255\7\0\255\255\255\255\255\+    \\255\7\0\128\0\0\63\60\98\192\225\255\3\64\0\0\255\255\255\255\191\32\255\255\255\255\255\247\255\31\255\255\0\12\0\0\255\255\255\255\255\127\0\128\255\255\255\63\255\255\+    \\255\255\255\255\255\255\255\255\0\0\126\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\1\0\0\247\+    \\15\0\0\255\255\127\196\255\255\255\255\255\255\98\62\5\0\0\56\255\7\28\0\255\255\255\255\7\0\4\0\0\0\39\0\240\0\255\255\255\255\255\255\255\255\255\255\255\255\255\+    \\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\15\0\255\255\127\248\255\255\255\255\255\15\0\0\0\0\224\0\252\255\255\255\63\255\1\255\255\255\255\255\231\0\+    \\0\0\0\0\222\111\4\255\255\255\255\255\31\128\63\0\64\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\63\0\0\255\255\255\255\255\+    \\15\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\0\0\0\128\255\252\255\255\255\255\255\255\255\255\255\255\255\255\249\255\255\255\255\255\255\255\7\+    \\235\3\0\0\252\255\255\63\0\255\255\127\0\0\0\255\255\255\31\240\255\255\255\255\255\7\0\0\128\0\0\223\255\0\124\224\159\249\255\255\253\237\35\0\0\0\176\3\0\2\+    \\0\232\199\61\214\24\199\255\3\0\0\1\0\0\0\0\0\0\0\255\254\255\255\255\31\0\0\0\31\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\31\+    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\31\255\255\255\255\255\255\1\0\0\0\0\0\255\255\255\255\255\7\0\0\0\192\254\255\255\255\255\255\255\+    \\255\255\255\255\255\47\0\96\192\0\156\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\63\0\0\255\255\255\255\15\255\255\255\255\15\0\0\0\0\0\0\0\+    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\3\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\128\0\0\255\31\0\0\0\+    \\0\0\0\0\0\0\0\0\0\0\0\138\170\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\31\128\0\255\255\63\0\0\0\0\0\255\255\3\0\0\0\0\0\255\255\31\+    \\0\0\0\255\255\127\0\255\255\255\255\255\255\31\0\0\0\0\0\0\0\0\0\128\0\0\0\0\0\0\0\0\0\0\0\254\255\255\7\254\255\255\7\192\255\255\255\255\255\255\+    \\63\255\255\255\127\252\252\252\28\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\3\252\255\255\255\255\255\255\255\255\255\255\255\255\255\255\127\0\0\255\255\+    \\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\223\184\64\215\255\255\251\255\255\255\255\255\255\255\255\255\191\255\+    \\255\255\255\255\255\127\0\255\255\63\0\255\0\0\0\191\255\255\255\255\255\253\7\0\0\0\0\0\0\0\0\191\231\223\223\255\255\255\123\95\252\253\255\255\255\255\255\255\255\255\+    \\255\255\255\255\255\255\255\255\255\255\255\255\255\223\255\255\255\255\255\255\255\255\223\100\222\255\235\239\255\255\255\255\255\255\255\255\255\61\127\61\255\255\255\255\255\61\255\255\255\255\+    \\61\127\61\255\127\255\255\255\255\255\255\254\255\255\255\127\2\255\255\255\255\255\1\0\0\0\0\0\0\0\0\255\255\255\135\7\0\255\255\255\255\255\255\255\255\255\255\255\255\255\+    \\255\255\255\255\255\255\255\3\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\1\0\255\255\61\255\255\255\255\255\255\255\255\+    \\7\0\0\0\0\255\255\0\0\255\255\255\255\255\255\255\255\255\255\63\63\255\255\255\255\63\63\255\170\255\255\255\63\255\255\255\255\255\255\223\95\220\31\207\15\255\31\220\31\255\+    \\255\255\255\255\255\0\0\16\0\0\0\0\0\0\0\255\255\255\255\255\7\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\127\0\0\0\0\0\+    \\15\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\255\127\0\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\15\0\0\0\0\0\0\0\0\0\0\0\0\+    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\15\0\0\255\255\255\255\255\255\0\0\15\0\0\0\248\255\255\224\255\255\0\0\0\0\0\0\0\0\0\0\0\0\+    \\0\0\255\255\255\255\255\255\255\255\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\127\111\255\127\242\111\255\255\255\0\128\2\+    \\0\0\0\0\0\0\0\0\0\0\0\255\252\255\255\255\255\1\0\10\0\0\0\255\255\255\255\255\255\31\0\128\7\0\128\3\0\0\0\255\255\255\255\255\255\0\0\176\0\0\+    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\127\0\0\0\0\0\15\0\0\0\0\255\255\255\255\255\255\255\255\255\255\223\255\255\255\255\255\255\255\255\223\+    \\100\222\255\235\239\255\255\255\255\255\255\255\255\255\255\255\255\255\7\255\31\255\1\255\3\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\63\255\255\255\255\255\255\255\255\255\+    \\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\3\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\+    \\255\0\255\255\255\255\255\255\15\0\255\247\255\247\183\255\251\255\251\27\0\0\0\0\0\0\0\0\255\255\255\127\224\7\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\+    \\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\63\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\31\128\63\0\64\0\0\0\0\+    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\63\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\127\0\248\160\255\253\     \\127\95\219\255\255\255\255\255\255\255\255\255\255\255\255\255\3\0\0\0\248\255\255\255\255\255\255\255\255\255\255\255\255\255\63\255\255\255\255\255\255\255\255\255\255\255\255\255\3\0\     \\0\0\0\255\255\255\255\0\224\255\255\255\7\255\255\255\255\63\0\255\255\255\63\255\255\255\255\15\255\62\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\31\     \\255\255\255\255\255\255\1\0\0\0\0\0\255\255\3\128\255\255\3\0\255\255\3\0\255\223\1\0\255\255\255\255\255\255\15\0\0\0\128\16\0\0\0\0\255\255\255\255\255\255\@@ -214,44 +215,46 @@     \\15\0\128\1\0\0\0\0\0\0\0\127\189\255\191\255\1\255\255\255\255\255\127\0\0\0\0\0\0\255\255\255\63\31\0\255\255\255\255\255\15\255\255\255\3\0\0\0\0\0\     \\0\255\255\255\255\255\255\255\255\255\255\255\1\255\255\255\255\255\5\255\255\255\255\255\255\255\255\63\0\255\255\63\0\255\255\7\0\255\255\3\0\0\0\0\0\0\0\0\0\0\     \\0\0\0\255\255\255\255\255\255\255\255\255\7\1\0\0\0\0\0\0\0\248\255\0\0\0\0\0\0\0\0\11\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\0\0\-    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\63\4\16\1\0\0\255\255\255\1\255\7\255\255\255\126\0\0\255\255\255\255\255\3\0\0\0\0\0\0\253\255\255\255\-    \\0\0\0\224\255\255\255\255\255\255\255\255\255\255\63\0\2\0\0\252\255\255\255\7\48\4\240\255\255\255\255\255\255\35\0\0\1\255\3\0\254\255\225\159\249\255\255\253\197\35\-    \\0\64\0\176\3\0\3\16\224\135\249\255\255\253\109\3\0\0\0\94\0\0\28\0\224\191\251\255\255\253\237\35\0\0\1\0\3\0\0\2\224\223\253\255\255\253\255\35\0\0\-    \\0\39\3\0\0\0\225\223\253\255\255\253\239\35\0\0\0\96\3\0\6\0\240\223\253\255\255\255\255\39\0\64\112\128\3\0\0\252\224\255\127\252\255\255\251\47\127\0\0\0\-    \\0\0\0\0\254\255\255\255\255\255\5\0\127\0\0\0\0\0\0\0\214\247\255\255\175\255\5\32\95\0\0\240\0\0\0\0\224\255\255\255\255\255\15\0\224\31\0\0\0\0\-    \\0\0\248\255\255\255\1\192\0\252\255\255\255\255\63\0\0\0\255\255\255\255\191\32\255\255\255\255\255\255\255\128\0\0\255\255\127\0\127\127\127\127\127\127\127\127\0\0\0\0\-    \\224\0\0\0\254\3\62\31\254\255\255\255\255\255\255\255\255\255\127\224\254\255\255\255\255\255\255\255\255\255\255\247\187\247\255\255\7\0\0\0\255\255\255\255\255\255\15\0\252\255\-    \\255\255\255\255\15\0\0\0\0\0\0\0\252\104\126\126\126\0\127\127\255\255\255\255\255\247\255\3\255\255\255\255\255\255\255\255\255\255\255\255\255\255\7\0\0\0\255\255\255\255\-    \\255\255\127\0\255\255\63\0\255\0\0\0\191\255\255\255\255\255\253\7\0\0\0\0\0\0\0\0\63\253\255\255\255\255\191\145\255\255\63\0\255\255\127\0\255\255\255\127\0\0\-    \\0\0\0\0\0\0\255\255\55\0\255\255\63\0\255\255\255\3\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\192\0\0\0\0\0\0\0\0\248\255\255\255\255\255\255\0\-    \\0\0\0\0\0\0\38\0\248\255\255\255\255\255\0\0\0\0\255\255\255\1\0\0\248\255\255\255\127\0\0\0\144\0\255\255\255\255\71\0\248\255\255\255\255\255\7\0\30\0\-    \\0\20\0\0\0\0\224\159\249\255\255\253\237\35\0\0\1\224\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\7\0\0\0\0\127\0\0\0\-    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\248\255\255\255\255\7\4\0\0\1\240\255\255\255\255\255\3\0\32\0\0\255\255\255\255\255\255\255\255\-    \\255\1\255\253\255\255\255\127\0\0\1\0\0\0\0\0\252\255\255\255\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\127\0\0\0\0\0\0\0\-    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\1\255\255\255\127\0\0\255\255\255\255\255\255\255\255\255\127\0\0\255\255\255\63\0\0\255\255\-    \\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\63\0\0\0\0\0\255\255\223\255\255\255\223\255\255\127\255\255\255\127\255\255\255\253\255\255\-    \\255\253\255\255\247\15\0\0\0\0\0\0\255\255\255\255\255\255\255\255\15\8\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\239\255\255\255\150\254\-    \\247\10\132\234\150\170\150\247\247\94\255\251\255\15\238\251\255\15\0\0\0\0\0\0\0\0"#+    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\255\7\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\63\0\0\0\+    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\63\4\16\1\0\0\255\255\255\1\255\7\255\255\255\126\0\0\255\255\255\255\255\+    \\3\0\0\0\0\0\0\253\255\255\255\0\0\0\224\255\255\255\255\255\255\255\255\255\255\63\0\2\0\0\252\255\255\255\7\48\4\255\255\255\255\255\255\255\255\255\255\255\255\255\+    \\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\1\0\255\255\255\255\255\255\255\255\255\255\255\63\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\240\+    \\255\255\255\255\255\255\35\0\0\1\255\3\0\254\255\225\159\249\255\255\253\197\35\0\64\0\176\3\0\3\16\224\135\249\255\255\253\109\3\0\0\0\94\0\0\28\0\224\191\251\+    \\255\255\253\237\35\0\0\1\0\3\0\0\2\224\223\253\255\255\253\255\35\0\0\0\39\3\0\0\0\225\223\253\255\255\253\239\35\0\0\0\96\3\0\6\0\240\223\253\255\255\+    \\255\255\39\0\64\112\128\3\0\0\252\224\255\127\252\255\255\251\47\127\0\0\0\0\0\0\0\254\255\255\255\255\255\5\0\127\0\0\0\0\0\0\0\214\247\255\255\175\255\5\+    \\32\95\0\0\240\0\0\0\0\224\255\255\255\255\255\15\0\224\31\0\0\0\0\0\0\248\255\255\255\1\192\0\252\255\255\255\255\63\0\0\0\224\0\0\0\254\3\62\31\254\+    \\255\255\255\255\255\255\255\255\255\127\224\254\255\255\255\255\255\255\255\255\255\255\247\187\247\255\255\7\0\0\0\255\255\255\255\255\255\15\0\252\255\255\255\255\255\15\0\0\0\0\+    \\0\0\0\252\104\126\126\126\0\127\127\255\255\255\255\255\247\255\3\255\255\255\255\255\255\255\255\255\255\255\255\255\255\7\0\0\0\63\253\255\255\255\255\191\145\255\255\63\0\255\+    \\255\127\0\255\255\255\127\0\0\0\0\0\0\0\0\255\255\55\0\255\255\63\0\255\255\255\3\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\192\0\0\0\0\0\0\0\+    \\0\248\255\255\255\255\255\255\0\0\0\0\0\0\0\38\0\248\255\255\255\255\255\0\0\0\0\255\255\255\1\0\0\248\255\255\255\127\0\0\0\144\0\255\255\255\255\71\0\248\+    \\255\255\255\255\255\7\0\30\0\0\20\0\0\0\0\224\159\249\255\255\253\237\35\0\0\1\224\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\+    \\7\0\0\0\0\127\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\248\255\255\255\255\7\4\0\0\1\240\255\255\255\255\255\3\0\32\0\+    \\0\255\255\255\255\255\255\255\255\255\1\255\253\255\255\255\127\0\0\1\0\0\0\0\0\252\255\255\255\0\0\0\0\0\0\0\0\0\0\0\0\0\0\127\251\255\255\255\255\1\+    \\0\64\0\0\0\191\253\255\255\255\3\0\1\0\0\0\0\0\0\0\0\0\0\0\0\244\255\253\255\255\255\15\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\+    \\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\127\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\1\255\255\255\+    \\127\0\0\255\255\255\255\255\255\255\255\255\127\0\0\255\255\255\63\0\0\255\255\223\255\255\255\223\255\255\127\255\255\255\127\255\255\255\253\255\255\255\253\255\255\247\15\0\0\0\+    \\0\0\0\255\255\255\255\255\255\255\255\15\8\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\239\255\255\255\150\254\247\10\132\234\150\170\150\247\247\+    \\94\255\251\255\15\238\251\255\15\0\0\0\0\0\0\0\0"#  isXID_StartOffsetsBitMap :: Ptr Word16 isXID_StartOffsetsBitMap = Ptr-    "\53\1\233\0\241\0\109\5\54\5\42\6\150\0\240\9\210\9\16\10\48\10\15\4\80\10\112\10\144\10\41\4\188\2\233\0\15\6\84\1\232\0\233\0\65\2\214\8\242\8\65\9\140\5\176\10\111\3\29\1\233\0\112\1\207\4\182\0\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\176\1\208\10\227\4\227\4\240\10\0\0\-    \\227\4\227\4\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\29\1\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\-    \\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\-    \\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\3\2\233\0\220\2\210\3\16\11\239\3\27\3\48\11\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\-    \\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\84\3\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\233\0\-    \\123\8\96\8\38\5\9\9\72\0\109\4\144\1\65\4\81\4\155\8\141\4\164\7\233\0\80\11\112\11\144\11\96\2\117\9\163\2\168\4\184\4\66\8\176\11\208\11\41\9\240\11\97\0\122\0\183\6\16\12\181\3\6\5\48\12\227\4\80\12\172\5\192\5\128\6\233\0\233\0\233\0\89\5\73\5\128\2\227\4\227\4\227\4\227\4\227\4\227\4\-    \\227\4\227\4\227\4\142\2\233\0\233\0\233\0\233\0\244\2\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\233\0\233\0\112\12\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\-    \\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\233\0\233\0\144\12\30\0\227\4\227\4\54\0\149\9\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\138\7\233\0\233\0\233\0\233\0\176\12\198\0\227\4\227\4\-    \\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\200\0\233\0\59\3\73\3\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\73\7\227\4\227\4\227\4\227\4\227\4\-    \\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\246\5\208\1\220\1\208\12\227\4\227\4\227\4\227\4\227\4\227\4\227\4\196\7\222\7\143\3\157\3\227\4\16\7\227\4\227\4\231\4\252\1\240\12\227\4\227\4\227\4\227\4\16\13\227\4\227\4\227\4\227\4\227\4\-    \\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\-    \\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\-    \\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\-    \\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\25\1\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\17\1\31\2\233\0\233\0\233\0\-    \\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\43\2\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\96\6\227\4\227\4\-    \\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\233\0\233\0\232\7\227\4\227\4\227\4\227\4\227\4\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\166\1\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\-    \\233\0\233\0\233\0\176\1"#+    "\157\0\51\0\59\0\38\5\239\4\175\5\5\4\45\10\15\10\139\10\171\10\167\3\203\10\235\10\11\11\193\3\84\2\51\0\148\5\3\6\50\0\51\0\217\1\214\8\242\8\65\9\179\4\43\11\7\3\133\0\51\0\31\6\103\4\0\0\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\72\1\188\0\4\1\4\1\75\11\91\0\+    \\4\1\4\1\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\133\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\+    \\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\+    \\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\155\1\51\0\116\2\106\3\107\11\135\3\179\2\139\11\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\+    \\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\236\2\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\51\0\+    \\123\8\96\8\220\0\9\9\123\4\207\4\40\1\217\3\233\3\155\8\37\4\204\7\51\0\69\5\171\11\203\11\248\1\117\9\59\2\64\4\80\4\151\4\235\11\11\12\41\9\43\12\31\7\87\6\63\6\75\12\77\3\255\6\107\12\4\1\139\12\171\12\8\1\203\12\51\0\51\0\51\0\18\5\2\5\24\2\4\1\4\1\4\1\4\1\4\1\4\1\+    \\4\1\4\1\4\1\38\2\51\0\51\0\51\0\51\0\140\2\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\51\0\51\0\235\12\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\+    \\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\51\0\51\0\11\13\184\6\4\1\4\1\208\6\149\9\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\178\7\51\0\51\0\51\0\51\0\233\0\16\0\4\1\4\1\+    \\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\18\0\51\0\211\2\225\2\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\113\7\4\1\4\1\4\1\4\1\4\1\+    \\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\123\5\104\1\116\1\43\13\4\1\4\1\4\1\4\1\4\1\4\1\4\1\236\7\6\8\39\3\53\3\4\1\152\6\4\1\4\1\224\6\148\1\75\13\4\1\4\1\4\1\4\1\107\13\4\1\4\1\4\1\4\1\4\1\+    \\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\+    \\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\+    \\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\+    \\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\129\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\121\0\183\1\51\0\51\0\51\0\+    \\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\195\1\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\229\5\51\0\51\0\+    \\248\0\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\4\1\51\0\51\0\0\1\4\1\4\1\4\1\4\1\4\1\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\62\1\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\+    \\51\0\51\0\51\0\72\1"#  {-# INLINE isID_Continue #-} isID_Continue :: Char -> Bool@@ -278,98 +281,99 @@ isID_ContinueDataBitMap :: Ptr Int8 isID_ContinueDataBitMap = Ptr     "\132\252\47\63\80\253\255\243\224\67\0\0\255\255\255\255\255\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\239\111\-    \\240\239\254\255\255\63\135\0\0\0\0\255\255\255\31\255\255\255\31\0\0\0\0\255\254\255\255\127\0\0\0\238\135\249\255\255\253\109\211\135\57\2\94\192\255\63\0\238\191\251\-    \\255\255\253\237\243\191\59\1\0\207\255\0\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\195\255\3\0\31\-    \\80\0\0\255\7\255\255\255\255\255\255\255\255\255\195\255\255\255\255\255\255\255\255\255\255\255\255\239\159\255\253\255\159\238\159\249\255\255\253\237\243\159\57\224\176\207\255\2\0\236\-    \\199\61\214\24\199\255\195\199\61\129\0\192\255\0\0\184\255\3\255\255\255\255\255\255\255\255\255\255\255\1\255\255\255\255\255\7\255\255\255\255\255\255\255\255\63\0\0\255\255\255\-    \\15\255\7\255\255\255\126\0\255\255\255\255\255\255\255\255\255\251\255\255\255\255\191\32\255\255\255\255\255\255\255\128\0\128\255\255\127\0\127\127\127\127\127\127\127\127\255\255\255\255\-    \\255\255\255\255\255\61\127\61\255\255\255\255\255\61\255\255\255\255\61\127\61\255\127\255\255\255\255\255\255\255\3\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\-    \\255\255\255\255\255\255\255\255\255\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\31\255\255\255\255\255\255\1\0\1\0\0\0\255\255\255\255\255\255\255\231\255\-    \\255\255\255\255\255\255\255\255\255\255\255\3\0\255\255\255\255\255\255\63\36\191\231\223\223\255\255\255\123\95\252\253\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\-    \\255\255\255\63\255\255\255\253\255\255\247\255\255\255\247\224\255\255\255\255\255\254\255\255\255\255\255\255\255\255\255\255\127\0\0\255\255\255\255\0\0\0\0\0\0\255\255\255\63\255\-    \\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\3\0\255\255\255\255\255\255\255\255\255\255\255\255\207\255\254\255\239\159\249\255\255\-    \\253\197\243\159\121\128\176\207\255\3\80\255\255\0\0\255\255\24\0\0\224\0\0\0\0\223\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\31\255\3\0\248\15\0\255\-    \\255\255\255\255\255\255\255\255\255\255\255\255\255\15\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\1\-    \\0\0\0\0\0\0\255\255\255\255\255\255\7\0\255\255\255\255\255\255\7\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\-    \\255\255\255\0\0\255\255\63\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\1\0\0\3\255\3\160\194\255\-    \\254\255\255\255\31\254\255\223\255\255\254\255\255\255\31\64\0\0\0\0\0\0\0\128\255\252\255\255\255\255\255\255\255\255\255\255\255\255\249\255\255\255\255\255\255\255\7\235\3\0\-    \\0\252\255\223\253\255\255\253\255\243\223\61\96\39\207\255\0\0\239\223\253\255\255\253\239\243\223\61\96\96\207\255\14\0\255\255\255\255\255\255\255\0\255\227\255\255\255\255\255\63\-    \\255\1\255\255\255\255\255\231\0\0\247\255\255\255\255\7\0\4\0\0\0\39\0\240\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\-    \\255\255\255\255\255\255\15\0\255\255\127\248\255\255\255\255\255\15\255\255\255\255\255\255\255\127\255\255\255\159\255\3\255\3\128\0\255\191\255\127\0\0\0\0\0\0\255\3\254\255\-    \\255\135\254\255\255\7\192\255\255\255\255\255\255\255\255\255\255\127\252\252\252\28\0\0\0\0\255\255\255\255\255\31\255\63\255\67\0\0\0\0\0\0\0\0\0\0\0\0\0\0\-    \\0\0\0\0\0\0\0\0\255\255\255\127\0\0\255\255\255\255\255\255\255\3\255\255\255\255\255\0\255\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\-    \\0\0\0\0\255\255\255\255\255\27\3\0\0\0\0\0\0\0\0\224\0\0\0\254\255\62\31\254\255\255\255\255\255\255\255\255\255\127\254\254\255\255\255\255\255\255\255\255\255\255\-    \\247\255\255\255\255\255\255\255\255\255\255\255\255\255\127\0\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\3\0\0\0\0\0\0\0\0\0\0\0\0\0\-    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\3\254\255\255\135\254\255\255\7\0\0\0\0\0\4\160\4\255\255\127\255\255\255\127\255\15\255\15\192\255\-    \\255\255\255\63\31\0\255\255\255\255\255\15\255\255\255\3\255\7\0\0\0\0\255\239\255\255\127\255\255\183\255\63\255\63\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\-    \\255\255\255\7\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\251\252\255\255\255\255\255\255\255\255\255\255\255\255\255\255\223\188\192\215\255\255\251\255\-    \\255\255\255\255\255\255\255\255\191\255\223\253\255\255\255\255\255\223\125\240\128\207\255\0\252\238\255\127\252\255\255\251\47\127\132\95\255\192\255\12\0\255\255\255\255\255\255\255\255\255\-    \\255\255\255\255\255\255\255\255\31\0\0\0\0\0\0\0\0\255\255\255\255\255\63\255\255\127\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\224\-    \\227\7\248\231\15\0\0\0\60\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\63\255\1\0\0\63\0\0\0\0\255\255\255\255\255\0\255\255\255\-    \\255\255\255\15\0\255\247\255\247\183\255\251\255\251\27\0\0\0\0\0\0\0\0\28\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\224\227\7\-    \\248\231\15\0\0\0\60\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\3\255\255\255\255\255\63\255\255\255\255\15\-    \\0\255\255\255\31\255\255\255\255\255\255\255\255\1\128\255\3\255\255\255\127\251\255\255\255\255\127\180\255\0\255\3\191\253\255\255\255\127\251\1\255\3\0\0\0\0\0\0\0\0\-    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\127\0\191\231\223\223\255\255\255\123\95\252\253\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\-    \\255\255\255\255\255\255\223\255\255\255\255\255\255\255\255\223\100\222\255\235\239\255\255\255\255\255\255\255\255\255\3\255\255\255\255\255\255\255\255\255\63\255\255\255\255\191\32\255\255\255\-    \\255\255\247\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\3\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\-    \\255\255\255\1\0\0\0\255\255\253\255\255\255\255\199\7\0\255\3\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\-    \\0\0\0\0\0\0\0\0\255\255\127\0\255\255\255\255\255\255\255\255\255\255\255\255\255\127\0\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\15\0\0\0\0\0\-    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\127\111\255\127\242\111\255\255\255\191\249\15\0\255\3\0\0\0\0\0\0\0\0\255\252\255\255\-    \\255\255\255\252\27\0\0\0\255\255\255\255\255\255\127\0\15\0\255\3\248\255\255\224\255\255\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\0\0\-    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\31\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\32\255\255\255\63\255\255\255\255\255\255\255\255\-    \\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\3\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\31\-    \\248\15\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\251\252\255\255\255\255\255\255\255\255\255\255\255\255\255\255\254\255\255\255\127\2\255\255\255\255\255\1\254\255\255\-    \\255\255\191\182\0\255\255\255\135\7\0\255\255\223\255\255\255\223\255\255\127\255\255\255\127\255\255\255\253\255\255\255\253\255\255\247\207\255\255\255\255\255\255\255\255\255\255\255\255\255\-    \\255\255\255\255\255\255\255\63\255\255\255\253\255\255\247\255\255\255\247\255\255\223\255\255\255\223\255\255\127\255\255\255\127\255\255\255\253\255\255\255\253\255\255\247\207\255\255\255\255\255\-    \\255\127\248\255\255\255\255\255\31\32\0\16\0\0\248\254\255\0\0\0\0\0\0\0\0\0\0\128\1\0\16\0\0\0\2\128\0\0\255\31\0\0\0\0\0\0\255\31\226\255\-    \\1\0\255\255\255\31\128\0\255\255\255\255\1\0\0\0\255\255\63\0\0\0\0\0\255\255\31\0\0\0\255\255\127\0\248\224\255\253\127\95\219\255\255\255\255\255\255\255\255\255\-    \\255\255\255\255\3\0\0\0\248\255\255\255\255\255\255\255\255\255\255\255\255\255\63\255\255\255\255\255\255\255\255\255\255\255\255\255\3\0\0\0\0\127\0\248\224\255\253\127\95\219\-    \\255\255\255\255\255\255\255\255\255\255\255\255\255\3\0\0\0\248\255\255\255\255\255\255\255\63\0\0\255\255\255\255\255\255\255\255\252\255\255\255\255\255\255\0\0\0\0\0\255\15\-    \\255\255\255\255\255\255\255\255\255\255\255\255\255\255\223\188\192\215\255\255\251\255\255\255\255\255\255\255\255\255\191\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\-    \\255\255\255\255\255\195\255\3\0\31\80\0\0\255\255\255\255\255\255\255\255\255\135\255\255\255\255\255\255\255\128\255\255\0\0\0\0\0\0\0\0\27\0\3\0\0\0\0\0\0\-    \\0\0\255\255\255\255\255\255\255\255\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\254\255\255\255\255\255\255\7\255\127\255\3\0\0\0\0\214\247\255\255\175\255\255\63\-    \\95\127\255\243\0\0\0\0\255\255\61\255\255\255\255\255\255\255\255\231\0\254\3\0\255\255\0\0\255\255\255\255\255\255\255\255\255\255\63\63\255\255\255\255\255\255\255\255\255\255\-    \\255\255\255\159\255\255\254\255\255\7\255\255\255\255\255\255\255\255\255\199\255\1\255\255\63\128\255\255\31\0\255\255\15\0\255\223\13\0\255\255\255\255\255\255\255\255\255\255\143\48\-    \\255\3\0\0\255\255\63\63\255\255\255\255\63\63\255\170\255\255\255\63\255\255\255\255\255\255\223\95\220\31\207\15\255\31\220\31\255\31\255\255\255\15\0\0\255\255\255\255\255\255\-    \\240\191\255\255\255\255\255\255\255\255\255\255\255\255\255\255\3\0\255\255\255\255\255\16\0\0\255\255\255\255\255\255\15\0\255\255\255\255\255\255\255\255\63\0\255\3\255\255\255\232\-    \\255\255\255\255\255\255\127\0\255\63\255\3\255\255\127\252\255\255\255\255\255\255\255\255\7\0\0\56\255\255\124\0\126\126\126\0\127\127\255\255\255\255\255\247\255\3\255\255\255\255\-    \\255\255\255\255\255\255\255\255\255\255\255\55\255\3\255\255\255\255\0\224\255\255\255\7\255\255\255\255\255\7\255\255\255\63\255\255\255\255\15\255\62\0\0\0\0\0\255\255\255\255\-    \\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\63\255\3\255\255\255\255\15\255\255\255\255\15\255\255\255\255\255\255\127\0\255\255\63\0\255\0\0\0\191\255\255\255\255\255\-    \\253\7\0\0\0\0\0\0\0\0\63\253\255\255\255\255\191\145\255\255\63\0\255\255\127\0\255\255\255\127\0\0\0\0\0\0\0\0\255\255\55\0\255\255\63\0\255\255\255\3\-    \\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\192\0\0\0\0\0\0\0\0\255\255\255\255\255\255\63\0\255\255\63\0\255\255\7\0\255\255\3\0\0\0\0\0\0\0\-    \\0\0\0\0\0\0\255\255\255\255\255\255\255\255\127\0\0\0\192\255\63\128\255\255\255\255\255\255\255\7\4\0\255\255\255\1\255\3\255\255\255\255\255\255\223\255\240\0\255\255\-    \\255\255\79\0\255\255\255\255\255\255\255\255\31\222\255\23\0\0\0\0\255\255\251\255\255\255\255\192\3\0\0\0\0\0\0\0\127\189\255\191\255\1\255\255\255\255\255\255\255\7\-    \\255\3\239\159\249\255\255\253\237\251\159\57\129\224\207\31\31\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\255\7\255\195\3\0\0\0\-    \\255\255\255\255\255\255\255\255\191\0\255\3\0\0\0\0\255\255\255\255\255\255\255\255\17\0\255\3\0\0\0\0\255\255\255\255\255\255\255\1\255\3\0\0\0\0\0\0\255\255\-    \\255\231\255\15\255\3\127\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\7\0\0\0\0\0\0\0\0\0\0\0\0\-    \\255\255\255\255\255\255\255\255\255\3\0\128\255\255\255\255\255\255\255\127\128\0\255\255\255\255\255\255\255\255\255\35\0\0\255\255\255\255\255\255\255\255\255\1\255\253\255\255\255\255\-    \\127\255\1\0\255\3\0\0\252\255\255\255\252\255\255\254\127\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\127\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\-    \\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\1\255\255\255\127\255\3\255\255\255\255\255\255\255\255\255\127\255\3\255\255\255\63\31\0\255\255\255\255\255\255\255\255\255\255\-    \\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\63\0\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\255\7\255\31\255\1\255\99\0\0\0\0\0\0\0\0\-    \\0\0\0\0\255\255\255\127\224\7\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\127\255\255\249\219\7\255\255\255\255\255\255\255\63\-    \\0\0\0\128\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\31\0\127\0\0\0\0\0\-    \\255\255\255\255\255\255\255\255\255\15\255\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\239\255\255\255\150\254\247\10\132\234\150\170\150\247\247\94\255\251\-    \\255\15\238\251\255\15\0\0\0\0\0\0\0\0\255\255\255\63\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"#+    \\240\239\254\255\255\63\135\0\0\0\0\255\255\255\31\255\255\255\31\0\0\0\0\255\254\255\255\127\0\0\0\48\0\0\0\0\0\128\1\0\16\0\0\0\2\128\0\0\255\31\+    \\0\0\0\0\0\0\255\31\226\255\1\0\224\0\0\0\254\255\62\31\254\255\255\255\255\255\255\255\255\255\127\254\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\+    \\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\195\255\3\0\31\80\0\0\255\7\255\255\255\255\255\255\255\255\255\195\255\255\255\255\255\255\255\255\255\255\255\255\239\159\255\+    \\253\255\159\238\159\249\255\255\253\237\243\159\57\224\176\207\255\2\0\236\199\61\214\24\199\255\195\199\61\129\0\192\255\0\0\184\255\3\255\255\255\255\255\255\255\255\255\255\255\1\+    \\255\255\255\255\255\7\255\255\255\255\255\255\255\255\63\0\0\255\255\255\15\255\7\255\255\255\126\0\255\255\255\255\255\255\255\255\255\251\255\255\255\255\191\32\255\255\255\255\255\255\+    \\255\128\0\128\255\255\127\0\127\127\127\127\127\127\127\127\255\255\255\255\255\255\255\255\255\61\127\61\255\255\255\255\255\61\255\255\255\255\61\127\61\255\127\255\255\255\255\255\255\255\+    \\3\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\+    \\255\63\255\1\0\0\63\0\0\0\0\255\255\255\255\255\255\255\231\255\255\255\255\255\255\255\255\255\255\255\255\3\0\255\255\255\255\255\255\63\36\255\239\255\255\127\255\255\183\255\+    \\63\255\63\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\7\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\63\+    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\3\254\255\255\135\254\255\255\7\0\0\0\0\0\4\160\4\+    \\255\255\127\255\255\255\127\255\15\255\15\192\255\255\255\255\63\31\0\255\255\255\255\255\15\255\255\255\3\255\7\0\0\0\0\128\255\252\255\255\255\255\255\255\255\255\255\255\255\255\+    \\249\255\255\255\255\255\255\255\7\235\3\0\0\252\255\223\253\255\255\253\255\243\223\61\96\39\207\255\0\0\239\223\253\255\255\253\239\243\223\61\96\96\207\255\14\0\191\231\223\223\+    \\255\255\255\123\95\252\253\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\63\255\255\255\253\255\255\247\255\255\255\247\224\255\255\255\255\255\254\255\255\255\+    \\255\255\255\255\255\255\255\127\0\0\255\255\255\255\0\0\0\0\0\0\255\255\255\63\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\+    \\255\255\3\0\255\255\255\255\255\255\255\255\255\255\255\255\207\255\254\255\239\159\249\255\255\253\197\243\159\121\128\176\207\255\3\80\255\255\0\0\255\255\24\0\0\224\0\0\0\0\+    \\223\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\31\255\3\0\248\15\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\15\0\0\0\0\0\0\0\0\0\0\0\+    \\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\1\0\0\0\0\0\0\255\255\255\255\255\255\7\0\255\255\255\255\255\255\7\0\255\255\255\+    \\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\0\0\255\255\63\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\+    \\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\1\0\0\3\255\3\160\194\255\254\255\255\255\31\254\255\223\255\255\254\255\255\255\31\64\0\0\0\0\0\0\0\255\3\+    \\254\255\255\135\254\255\255\7\224\255\255\255\255\255\255\255\255\255\255\127\252\252\252\28\0\0\0\0\255\255\255\255\255\255\255\0\255\227\255\255\255\255\255\63\255\1\255\255\255\255\+    \\255\231\0\0\247\255\255\255\255\7\0\4\0\0\0\39\0\240\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\+    \\15\0\255\255\127\248\255\255\255\255\255\15\255\255\255\255\255\255\255\127\255\255\255\159\255\3\255\3\128\0\255\191\255\127\0\0\0\0\0\0\255\255\255\255\255\31\255\63\255\67\+    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\127\0\0\255\255\255\255\255\255\255\3\255\255\255\255\255\0\255\3\0\0\0\0\0\0\+    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\27\3\0\0\0\0\0\0\0\0\224\255\255\255\255\255\255\255\255\255\255\255\255\255\127\0\0\+    \\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\31\255\255\255\255\255\255\1\0\1\0\+    \\0\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\251\252\255\255\255\255\255\255\255\255\255\255\255\255\255\255\223\188\192\215\255\255\251\255\255\255\255\255\255\255\255\255\+    \\191\255\223\253\255\255\255\255\255\223\125\240\128\207\255\0\252\238\255\127\252\255\255\251\47\127\132\95\255\192\255\12\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\+    \\31\0\0\0\0\0\0\0\0\255\255\255\255\255\63\255\255\127\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\224\227\7\248\231\15\0\0\0\+    \\60\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\3\255\255\255\255\255\0\255\255\255\255\255\255\15\0\255\247\255\+    \\247\183\255\251\255\251\27\0\0\0\0\0\0\0\0\28\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\224\227\7\248\231\15\0\0\0\60\0\+    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\127\111\255\127\242\111\255\255\255\191\249\15\0\255\3\0\0\0\0\0\0\0\0\+    \\255\252\255\255\255\255\255\252\27\0\0\0\255\255\255\255\255\63\255\255\255\255\15\0\255\255\255\31\255\255\255\255\255\255\255\255\1\128\255\3\255\255\255\127\251\255\255\255\255\127\+    \\180\255\0\255\3\191\253\255\255\255\127\251\1\255\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\127\0\191\231\223\+    \\223\255\255\255\123\95\252\253\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\223\255\255\255\255\255\255\255\255\223\100\222\255\235\239\255\255\255\255\255\255\+    \\255\255\255\3\255\255\255\255\255\255\255\255\255\63\255\255\255\255\191\32\255\255\255\255\255\247\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\3\0\255\255\+    \\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\1\0\255\255\61\255\255\255\255\255\255\255\255\231\0\254\3\0\255\255\0\0\255\255\+    \\255\255\255\255\255\255\255\255\63\63\255\255\255\255\63\63\255\170\255\255\255\63\255\255\255\255\255\255\223\95\220\31\207\15\255\31\220\31\255\255\253\255\255\255\255\199\7\0\255\3\+    \\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\127\0\255\255\255\255\255\255\255\+    \\255\255\255\255\255\255\127\0\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\15\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\+    \\255\255\255\255\255\31\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\32\255\255\255\255\255\255\127\0\15\0\255\3\248\255\255\224\255\255\0\0\0\0\0\0\0\0\0\+    \\0\0\0\0\0\255\255\255\255\255\255\255\255\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\63\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\+    \\255\255\255\255\255\255\255\255\255\255\255\3\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\31\248\15\0\255\255\255\255\255\255\+    \\255\255\255\255\255\255\255\255\255\255\251\252\255\255\255\255\255\255\255\255\255\255\255\255\255\255\254\255\255\255\127\2\255\255\255\255\255\1\254\255\255\255\255\191\182\0\255\255\255\135\+    \\7\0\255\255\223\255\255\255\223\255\255\127\255\255\255\127\255\255\255\253\255\255\255\253\255\255\247\207\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\63\255\+    \\255\255\253\255\255\247\255\255\255\247\255\255\223\255\255\255\223\255\255\127\255\255\255\127\255\255\255\253\255\255\255\253\255\255\247\207\255\255\255\255\255\255\127\248\255\255\255\255\255\31\+    \\32\0\16\0\0\248\254\255\0\0\0\0\0\0\0\0\0\0\255\255\255\31\128\0\255\255\255\255\1\0\0\0\255\255\63\0\0\0\0\0\255\255\31\0\0\0\255\255\127\0\+    \\248\224\255\253\127\95\219\255\255\255\255\255\255\255\255\255\255\255\255\255\3\0\0\0\248\255\255\255\255\255\255\255\255\255\255\255\255\255\63\255\255\255\255\255\255\255\255\255\255\255\+    \\255\255\3\0\0\0\0\127\0\248\224\255\253\127\95\219\255\255\255\255\255\255\255\255\255\255\255\255\255\3\0\0\0\248\255\255\255\255\255\255\255\63\0\0\255\255\255\255\255\255\+    \\255\255\252\255\255\255\255\255\255\0\0\0\0\0\255\15\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\1\0\255\255\255\255\+    \\255\255\255\255\255\255\255\63\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\223\188\192\215\255\255\251\255\+    \\255\255\255\255\255\255\255\255\191\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\195\255\3\0\31\80\0\0\255\255\255\255\255\255\255\255\255\+    \\135\255\255\255\255\255\255\255\128\255\255\0\0\0\0\0\0\0\0\27\0\3\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\0\0\0\0\0\0\0\0\0\0\0\0\+    \\0\0\0\0\238\135\249\255\255\253\109\211\135\57\2\94\192\255\63\0\238\191\251\255\255\253\237\243\191\59\1\0\207\255\0\254\254\255\255\255\255\255\255\7\255\127\255\3\0\0\+    \\0\0\214\247\255\255\175\255\255\63\95\127\255\243\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\255\159\255\255\254\255\255\7\255\255\255\255\255\255\255\255\255\199\255\1\+    \\255\255\63\128\255\255\31\0\255\255\15\0\255\223\13\0\255\255\255\255\255\255\255\255\255\255\143\48\255\3\0\0\255\31\255\255\255\15\0\0\255\255\255\255\255\255\240\191\255\255\+    \\255\255\255\255\255\255\255\255\255\255\255\255\3\0\255\255\255\255\255\16\0\0\255\255\255\255\255\255\15\0\255\255\255\255\255\255\255\255\63\0\255\3\255\255\255\232\255\255\255\255\+    \\255\255\127\0\255\63\255\3\255\255\127\252\255\255\255\255\255\255\255\255\7\0\0\56\255\255\124\0\126\126\126\0\127\127\255\255\255\255\255\247\255\3\255\255\255\255\255\255\255\255\+    \\255\255\255\255\255\255\255\55\255\3\255\255\255\255\0\224\255\255\255\7\255\255\255\255\255\7\255\255\255\63\255\255\255\255\15\255\62\0\0\0\0\0\255\255\255\255\255\255\255\255\+    \\255\255\255\255\255\255\255\255\255\255\255\63\255\3\255\255\255\255\15\255\255\255\255\15\255\255\255\255\255\255\127\0\255\255\63\0\255\0\0\0\191\255\255\255\255\255\253\7\0\0\+    \\0\0\0\0\0\0\63\253\255\255\255\255\191\145\255\255\63\0\255\255\127\0\255\255\255\127\0\0\0\0\0\0\0\0\255\255\55\0\255\255\63\0\255\255\255\3\0\0\0\0\+    \\0\0\0\0\255\255\255\255\255\255\255\192\0\0\0\0\0\0\0\0\255\255\255\255\255\255\63\0\255\255\63\0\255\255\7\0\255\255\3\0\0\0\0\0\0\0\0\0\0\0\+    \\0\0\255\255\255\255\255\255\255\255\127\0\0\0\192\255\63\128\255\255\255\255\255\255\255\7\4\0\255\255\255\1\255\3\255\255\255\255\255\255\223\255\240\0\255\255\255\255\79\0\+    \\255\255\255\255\255\255\255\255\31\222\255\23\0\0\0\0\255\255\251\255\255\255\255\192\3\0\0\0\0\0\0\0\127\189\255\191\255\1\255\255\255\255\255\255\255\7\255\3\239\159\+    \\249\255\255\253\237\251\159\57\129\224\207\31\31\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\255\7\255\195\3\0\0\0\255\255\255\255\+    \\255\255\255\255\191\0\255\3\0\0\0\0\255\255\255\255\255\255\255\255\17\0\255\3\0\0\0\0\255\255\255\255\255\255\255\1\255\3\0\0\0\0\0\0\255\255\255\231\255\15\+    \\255\3\127\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\7\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\+    \\255\255\255\255\255\3\0\128\255\255\255\255\255\255\255\127\128\0\255\255\255\255\255\255\255\255\255\35\0\0\255\255\255\255\255\255\255\255\255\1\255\253\255\255\255\255\127\255\1\0\+    \\255\3\0\0\252\255\255\255\252\255\255\254\127\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\127\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\+    \\0\0\0\0\255\255\255\255\255\255\255\1\255\255\255\127\255\3\255\255\255\255\255\255\255\255\255\127\255\3\255\255\255\63\31\0\255\255\255\255\255\255\255\255\255\255\255\255\255\7\+    \\255\31\255\1\255\99\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\127\224\7\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\+    \\127\255\255\249\219\7\255\255\255\255\255\255\255\63\0\0\0\128\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\+    \\255\255\255\255\255\255\31\0\127\0\0\0\0\0\255\255\255\255\255\255\255\255\255\15\255\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\239\255\255\255\+    \\150\254\247\10\132\234\150\170\150\247\247\94\255\251\255\15\238\251\255\15\0\0\0\0\0\0\0\0"#  isID_ContinueOffsetsBitMap :: Ptr Word16 isID_ContinueOffsetsBitMap = Ptr-    "\139\4\113\0\121\0\254\4\236\4\31\8\151\0\133\1\239\0\17\2\81\0\183\0\34\3\29\5\222\9\229\2\135\6\113\0\40\1\254\9\112\0\113\0\30\10\62\10\214\0\166\4\146\3\71\2\66\3\113\0\113\0\94\10\172\8\0\0\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\229\7\12\1\113\4\113\4\45\4\209\1\-    \\113\4\113\4\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\79\1\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\-    \\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\-    \\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\61\5\113\0\126\10\3\3\158\10\3\6\190\10\222\10\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\-    \\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\118\3\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\0\-    \\5\9\234\8\113\0\64\9\49\2\176\3\198\4\164\7\103\1\254\10\30\11\161\5\113\0\62\11\94\11\126\11\49\0\158\11\128\2\254\3\14\4\204\8\190\11\222\11\254\11\30\12\62\12\129\5\94\12\126\12\158\12\84\7\190\12\113\4\222\12\34\6\56\6\221\6\113\0\113\0\113\0\93\4\77\4\93\2\113\4\113\4\113\4\113\4\113\4\113\4\-    \\113\4\113\4\113\4\107\2\113\0\113\0\113\0\113\0\185\2\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\0\113\0\254\12\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\-    \\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\0\113\0\30\13\116\7\113\4\113\4\140\7\159\9\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\160\2\113\0\113\0\113\0\113\0\62\13\16\0\113\4\113\4\-    \\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\18\0\113\0\93\3\107\3\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\94\13\113\4\113\4\113\4\113\4\113\4\-    \\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\87\5\113\4\107\5\185\5\113\4\110\6\165\1\177\1\63\8\113\4\113\4\147\8\113\4\113\4\113\4\113\4\126\13\158\13\208\3\222\3\113\4\227\5\113\4\113\4\53\7\190\13\222\13\113\4\113\4\113\4\113\4\254\13\113\4\113\4\113\4\113\4\113\4\-    \\113\4\113\4\113\4\113\4\113\4\113\4\113\4\115\4\113\4\113\4\113\4\113\4\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\-    \\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\-    \\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\-    \\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\75\1\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\67\1\239\1\113\0\113\0\113\0\-    \\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\251\1\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\189\6\113\4\113\4\-    \\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\4\113\0\113\0\30\14\113\4\113\4\113\4\113\4\113\4\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\220\4\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\113\0\-    \\113\0\113\0\113\0\81\1\103\2\113\0"#+    "\14\2\133\0\141\0\40\5\22\5\122\8\171\0\153\1\3\1\242\2\94\10\203\0\102\2\71\5\126\10\198\3\208\6\133\0\60\1\36\7\132\0\133\0\158\10\190\10\234\0\41\2\84\4\40\3\4\4\133\0\133\0\64\7\80\0\0\0\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\64\8\32\1\244\1\244\1\112\0\178\2\+    \\244\1\244\1\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\99\1\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\+    \\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\+    \\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\103\5\133\0\222\10\71\2\254\10\76\6\30\11\62\11\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\+    \\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\56\4\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\133\0\+    \\71\9\44\9\133\0\130\9\18\3\228\3\185\1\199\7\246\4\94\11\126\11\203\5\133\0\158\11\190\11\222\11\49\0\254\11\97\3\162\4\178\4\14\9\30\12\62\12\94\12\126\12\158\12\123\1\190\12\222\12\254\12\44\6\30\13\244\1\62\13\107\6\129\6\96\7\133\0\133\0\133\0\226\4\210\4\62\3\244\1\244\1\244\1\244\1\244\1\244\1\+    \\244\1\244\1\244\1\76\3\133\0\133\0\133\0\133\0\154\3\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\133\0\133\0\94\13\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\+    \\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\133\0\133\0\126\13\231\7\244\1\244\1\255\7\31\10\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\129\3\133\0\133\0\133\0\133\0\217\1\16\0\244\1\244\1\+    \\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\18\0\133\0\31\4\45\4\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\158\13\244\1\244\1\244\1\244\1\244\1\+    \\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\129\5\244\1\149\5\227\5\244\1\183\6\134\2\146\2\154\8\244\1\244\1\238\8\244\1\244\1\244\1\244\1\190\13\222\13\116\4\130\4\244\1\171\5\244\1\244\1\13\6\254\13\30\14\244\1\244\1\244\1\244\1\62\14\244\1\244\1\244\1\244\1\244\1\+    \\244\1\244\1\244\1\244\1\244\1\244\1\244\1\246\1\244\1\244\1\244\1\244\1\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\+    \\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\+    \\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\+    \\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\95\1\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\87\1\208\2\133\0\133\0\133\0\+    \\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\220\2\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\6\7\133\0\133\0\+    \\232\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\244\1\133\0\133\0\240\1\244\1\244\1\244\1\244\1\244\1\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\207\1\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\133\0\+    \\133\0\133\0\133\0\101\1\72\3\133\0"#  {-# INLINE isID_Start #-} isID_Start :: Char -> Bool@@ -390,94 +394,96 @@  isID_StartDataBitMap :: Ptr Int8 isID_StartDataBitMap = Ptr-    "\224\255\255\255\255\255\254\255\255\255\255\255\255\255\255\255\255\127\0\0\255\255\255\255\0\0\0\0\0\0\255\255\255\255\255\255\0\0\15\0\0\0\248\255\255\224\255\255\0\0\-    \\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\223\255\255\255\255\255\255\255\255\255\255\255\255\255\-    \\255\255\255\31\0\128\7\0\128\3\0\0\0\255\255\255\255\255\255\0\0\176\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\127\0\0\0\0\0\15\-    \\0\0\0\0\255\255\255\255\255\7\0\0\0\192\254\255\255\255\255\255\255\255\255\255\255\255\47\0\96\192\0\156\132\252\47\63\80\253\255\243\224\67\0\0\255\255\255\255\255\1\-    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\239\111\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\-    \\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\195\255\3\0\31\80\0\0\255\255\255\255\255\255\255\3\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\-    \\255\255\255\255\255\255\255\255\255\0\0\0\0\0\0\0\0\254\255\255\7\254\255\255\7\0\0\0\0\0\4\32\4\255\255\127\255\255\255\127\255\255\61\255\255\255\255\255\255\255\-    \\255\7\0\0\0\0\255\255\0\0\255\255\255\255\255\255\255\255\255\255\63\63\255\255\255\255\63\63\255\170\255\255\255\63\255\255\255\255\255\255\223\95\220\31\207\15\255\31\220\31\-    \\255\239\255\255\127\255\255\183\255\63\255\63\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\7\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\-    \\255\255\255\255\255\255\255\255\255\255\31\120\12\0\191\231\223\223\255\255\255\123\95\252\253\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\63\255\255\255\-    \\253\255\255\247\255\255\255\247\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\31\0\0\0\0\0\0\0\0\255\255\255\255\255\63\255\255\255\-    \\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\3\0\255\255\255\255\255\255\255\255\255\255\255\255\255\159\255\255\254\255\255\7\255\255\255\-    \\255\255\255\255\255\255\199\255\1\0\239\254\255\255\63\0\0\0\0\0\255\255\255\31\255\255\255\31\0\0\0\0\255\254\255\255\31\0\0\0\255\255\255\255\255\255\255\255\15\0\-    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\1\0\0\0\0\0\0\255\255\255\255\255\255\7\0\255\-    \\255\255\255\255\255\7\0\128\0\0\63\60\98\192\225\255\3\64\0\0\255\255\255\255\191\32\255\255\255\255\255\247\255\31\255\255\0\12\0\0\255\255\255\255\255\127\0\128\255\255\-    \\255\63\255\255\255\255\255\255\255\255\255\255\0\0\126\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\-    \\1\0\0\247\15\0\0\255\255\127\196\255\255\255\255\255\255\98\62\5\0\0\56\255\7\28\0\255\255\255\255\7\0\4\0\0\0\39\0\240\0\255\255\255\255\255\255\255\255\255\-    \\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\15\0\255\255\127\248\255\255\255\255\255\15\0\0\0\0\224\0\252\255\255\255\63\255\1\255\255\255\-    \\255\255\231\0\0\0\0\0\222\111\4\255\255\255\255\255\31\128\63\0\64\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\63\0\0\255\-    \\255\255\255\255\15\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\0\0\0\128\255\252\255\255\255\255\255\255\255\255\255\255\255\255\249\255\255\255\255\-    \\255\255\255\7\235\3\0\0\252\255\255\63\0\255\255\127\0\0\0\255\255\255\31\240\255\255\255\255\255\7\0\0\128\0\0\223\255\0\124\224\159\249\255\255\253\237\35\0\0\0\-    \\176\3\0\2\0\232\199\61\214\24\199\255\3\0\0\1\0\0\0\0\0\0\0\255\254\255\255\255\31\0\0\0\31\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\-    \\255\255\255\31\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\31\255\255\255\255\255\255\1\0\0\0\0\0\254\255\255\7\254\255\255\7\192\255\255\255\255\-    \\255\255\255\255\255\255\127\252\252\252\28\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\63\0\0\255\255\255\255\15\255\255\255\255\15\0\0\0\-    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\3\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\128\0\0\255\-    \\31\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\127\111\255\127\242\111\255\255\255\0\128\2\0\0\0\0\0\-    \\0\0\0\0\0\0\255\252\255\255\255\255\1\0\10\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\3\252\255\255\255\255\255\255\255\255\255\255\255\255\255\255\-    \\127\0\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\223\188\64\215\255\255\251\255\255\255\255\255\255\-    \\255\255\255\191\255\255\127\0\255\255\255\255\255\255\31\0\0\0\0\0\0\0\0\0\128\0\0\0\0\0\0\0\0\0\0\0\127\251\255\255\255\255\1\0\64\0\0\0\191\253\-    \\255\255\255\3\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\7\0\191\231\223\223\255\255\255\123\95\252\253\255\-    \\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\223\255\255\255\255\255\255\255\255\223\100\222\255\235\239\255\255\255\255\255\255\255\255\255\61\127\61\255\255\255\-    \\255\255\61\255\255\255\255\61\127\61\255\127\255\255\255\255\255\255\254\255\255\255\127\2\255\255\255\255\255\1\0\0\0\0\0\0\0\0\255\255\255\135\7\0\255\255\255\255\255\255\-    \\255\255\255\255\255\255\255\255\255\255\255\255\255\255\3\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\1\0\0\0\244\255\-    \\253\255\255\255\15\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\-    \\255\7\0\255\255\255\255\255\255\0\0\16\0\0\0\0\0\0\0\255\255\255\255\255\7\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\127\0\-    \\0\0\0\0\15\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\255\127\0\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\15\0\0\0\0\0\0\0\0\-    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\15\0\0\255\255\255\255\255\255\255\255\255\255\223\255\255\255\255\255\255\255\255\223\100\222\255\235\239\255\-    \\255\255\255\255\255\255\255\255\255\255\255\255\7\255\31\255\1\255\3\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\63\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\-    \\255\255\255\255\255\255\255\255\255\255\255\255\255\3\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\0\255\255\255\255\-    \\255\255\15\0\255\247\255\247\183\255\251\255\251\27\0\0\0\0\0\0\0\0\255\255\255\127\224\7\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\-    \\0\0\0\0\255\255\255\255\255\255\255\63\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\31\128\63\0\64\-    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\63\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\-    \\255\31\128\0\255\255\63\0\0\0\0\0\255\255\3\0\0\0\0\0\255\255\31\0\0\0\255\255\127\0\248\160\255\253\127\95\219\255\255\255\255\255\255\255\255\255\255\255\255\255\-    \\3\0\0\0\248\255\255\255\255\255\255\255\255\255\255\255\255\255\63\255\255\255\255\255\255\255\255\255\255\255\255\255\3\0\0\0\0\127\0\248\160\255\253\127\95\219\255\255\255\255\-    \\255\255\255\255\255\255\255\255\255\3\0\0\0\248\255\255\255\255\255\255\255\63\0\0\255\255\255\255\255\255\255\255\252\255\255\255\255\255\255\0\0\0\0\0\255\15\255\255\255\255\-    \\0\224\255\255\255\7\255\255\255\255\63\0\255\255\255\63\255\255\255\255\15\255\62\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\31\255\255\255\255\255\255\1\-    \\0\0\0\0\0\255\255\3\128\255\255\3\0\255\255\3\0\255\223\1\0\255\255\255\255\255\255\15\0\0\0\128\16\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\1\255\-    \\255\255\255\255\5\255\255\255\255\255\255\255\255\63\0\255\255\63\0\255\255\7\0\255\255\3\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\251\255\255\15\0\128\1\0\0\-    \\0\0\0\0\0\127\189\255\191\255\1\255\255\255\255\255\127\0\0\0\0\0\0\255\255\255\63\31\0\255\255\255\255\255\15\255\255\255\3\0\0\0\0\0\0\255\255\255\255\255\-    \\255\255\255\255\255\255\1\255\255\255\255\255\5\255\255\255\255\255\255\255\255\63\0\255\255\255\3\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\192\0\0\0\0\0\0\0\-    \\0\255\255\255\255\255\255\255\255\255\7\1\0\0\0\0\0\0\0\248\255\0\0\0\0\0\0\0\0\11\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\0\0\0\0\-    \\0\0\0\0\0\0\0\0\0\0\0\0\255\255\63\4\16\1\0\0\255\255\255\1\255\7\255\255\255\126\0\0\255\255\255\255\255\3\0\0\0\0\0\0\253\255\255\255\0\0\-    \\0\224\255\255\255\255\255\255\255\255\255\255\63\0\2\0\0\252\255\255\255\7\48\4\240\255\255\255\255\255\255\35\0\0\1\255\3\0\254\255\225\159\249\255\255\253\197\35\0\64\-    \\0\176\3\0\3\16\224\135\249\255\255\253\109\3\0\0\0\94\0\0\28\0\224\191\251\255\255\253\237\35\0\0\1\0\3\0\0\2\224\223\253\255\255\253\255\35\0\0\0\39\-    \\3\0\0\0\225\223\253\255\255\253\239\35\0\0\0\96\3\0\6\0\240\223\253\255\255\255\255\39\0\64\112\128\3\0\0\252\224\255\127\252\255\255\251\47\127\0\0\0\0\0\-    \\0\0\254\255\255\255\255\255\13\0\127\0\0\0\0\0\0\0\214\247\255\255\175\255\13\32\95\0\0\240\0\0\0\0\224\255\255\255\255\255\15\0\224\31\0\0\0\0\0\0\-    \\248\255\255\255\1\192\0\252\255\255\255\255\63\0\0\0\255\255\255\255\191\32\255\255\255\255\255\255\255\128\0\0\255\255\127\0\127\127\127\127\127\127\127\127\0\0\0\0\224\0\-    \\0\0\254\3\62\31\254\255\255\255\255\255\255\255\255\255\127\248\254\255\255\255\255\255\255\255\255\255\255\247\187\247\255\255\7\0\0\0\255\255\255\255\255\255\15\0\252\255\255\255\-    \\255\255\15\0\0\0\0\0\0\0\252\104\126\126\126\0\127\127\255\255\255\255\255\247\255\3\255\255\255\255\255\255\255\255\255\255\255\255\255\255\7\0\0\0\255\255\255\255\255\255\-    \\127\0\255\255\63\0\255\0\0\0\191\255\255\255\255\255\253\7\0\0\0\0\0\0\0\0\63\253\255\255\255\255\191\145\255\255\63\0\255\255\127\0\255\255\255\127\0\0\0\0\-    \\0\0\0\0\255\255\55\0\248\255\255\255\255\255\255\0\0\0\0\0\0\0\38\0\248\255\255\255\255\255\0\0\0\0\255\255\255\1\0\0\248\255\255\255\127\0\0\0\144\0\-    \\255\255\255\255\71\0\248\255\255\255\255\255\7\0\30\0\0\20\0\0\0\0\224\159\249\255\255\253\237\35\0\0\1\224\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\-    \\0\0\0\0\255\255\255\7\0\0\0\0\127\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\248\255\255\255\255\7\4\0\0\1\240\255\255\-    \\255\255\255\3\0\32\0\0\255\255\255\255\255\255\255\255\255\1\255\253\255\255\255\127\0\0\1\0\0\0\0\0\252\255\255\255\0\0\0\0\0\0\0\0\0\0\0\0\0\0\-    \\255\255\255\255\255\255\255\255\127\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\1\255\255\255\127\0\0\255\255\255\255\-    \\255\255\255\255\255\127\0\0\255\255\255\63\0\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\63\0\0\0\0\0\255\255\223\255\-    \\255\255\223\255\255\127\255\255\255\127\255\255\255\253\255\255\255\253\255\255\247\15\0\0\0\0\0\0\255\255\255\255\255\255\255\255\15\8\0\0\0\0\0\0\0\0\0\0\0\0\-    \\0\0\0\0\0\0\0\0\0\0\239\255\255\255\150\254\247\10\132\234\150\170\150\247\247\94\255\251\255\15\238\251\255\15\0\0\0\0\0\0\0\0"#+    "\132\252\47\63\80\253\255\243\224\67\0\0\255\255\255\255\255\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\239\111\+    \\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\195\255\3\0\31\80\0\0\224\255\255\255\255\255\254\255\255\+    \\255\255\255\255\255\255\255\255\127\0\0\255\255\255\255\0\0\0\0\0\0\255\255\255\255\255\255\255\3\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\+    \\255\255\255\255\255\255\255\0\0\0\0\0\0\0\0\254\255\255\7\254\255\255\7\0\0\0\0\0\4\32\4\255\255\127\255\255\255\127\255\255\255\255\191\32\255\255\255\255\255\255\+    \\255\128\0\0\255\255\127\0\127\127\127\127\127\127\127\127\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\3\252\255\255\255\255\255\255\255\255\255\255\255\255\+    \\255\255\255\255\255\255\255\255\255\255\255\255\255\255\63\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\7\+    \\0\255\239\255\255\127\255\255\183\255\63\255\63\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\7\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\+    \\255\255\255\255\255\255\255\255\255\255\255\31\120\12\0\191\231\223\223\255\255\255\123\95\252\253\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\63\255\255\+    \\255\253\255\255\247\255\255\255\247\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\31\0\0\0\0\0\0\0\0\255\255\255\255\255\63\255\255\+    \\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\3\0\255\255\255\255\255\255\255\255\255\255\255\255\255\159\255\255\254\255\255\7\255\255\+    \\255\255\255\255\255\255\255\199\255\1\0\239\254\255\255\63\0\0\0\0\0\255\255\255\31\255\255\255\31\0\0\0\0\255\254\255\255\31\0\0\0\255\255\255\255\255\255\255\255\15\+    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\1\0\0\0\0\0\0\255\255\255\255\255\255\7\0\+    \\255\255\255\255\255\255\7\0\128\0\0\63\60\98\192\225\255\3\64\0\0\255\255\255\255\191\32\255\255\255\255\255\247\255\31\255\255\0\12\0\0\255\255\255\255\255\127\0\128\255\+    \\255\255\63\255\255\255\255\255\255\255\255\255\255\0\0\126\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\+    \\255\1\0\0\247\15\0\0\255\255\127\196\255\255\255\255\255\255\98\62\5\0\0\56\255\7\28\0\255\255\255\255\7\0\4\0\0\0\39\0\240\0\255\255\255\255\255\255\255\255\+    \\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\15\0\255\255\127\248\255\255\255\255\255\15\0\0\0\0\224\0\252\255\255\255\63\255\1\255\255\+    \\255\255\255\231\0\0\0\0\0\222\111\4\255\255\255\255\255\31\128\63\0\64\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\63\0\0\+    \\255\255\255\255\255\15\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\0\0\0\128\255\252\255\255\255\255\255\255\255\255\255\255\255\255\249\255\255\255\+    \\255\255\255\255\7\235\3\0\0\252\255\255\63\0\255\255\127\0\0\0\255\255\255\31\240\255\255\255\255\255\7\0\0\128\0\0\223\255\0\124\224\159\249\255\255\253\237\35\0\0\+    \\0\176\3\0\2\0\232\199\61\214\24\199\255\3\0\0\1\0\0\0\0\0\0\0\255\254\255\255\255\31\0\0\0\31\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\+    \\255\255\255\255\31\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\31\255\255\255\255\255\255\1\0\0\0\0\0\255\255\255\255\255\7\0\0\0\192\254\255\+    \\255\255\255\255\255\255\255\255\255\255\47\0\96\192\0\156\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\63\0\0\255\255\255\255\15\255\255\255\255\15\0\0\+    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\3\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\128\0\0\+    \\255\31\0\0\0\0\0\0\0\0\0\0\0\0\0\0\223\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\31\128\0\255\255\63\0\0\0\0\0\255\255\3\0\0\0\+    \\0\0\255\255\31\0\0\0\255\255\127\0\255\255\255\255\255\255\31\0\0\0\0\0\0\0\0\0\128\0\0\0\0\0\0\0\0\0\0\0\254\255\255\7\254\255\255\7\192\255\+    \\255\255\255\255\255\255\255\255\255\127\252\252\252\28\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\255\127\0\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\+    \\255\255\255\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\223\188\64\215\255\255\251\255\255\255\255\255\255\255\255\255\191\255\255\255\255\255\255\127\0\255\255\63\0\255\0\0\+    \\0\191\255\255\255\255\255\253\7\0\0\0\0\0\0\0\0\191\231\223\223\255\255\255\123\95\252\253\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\223\+    \\255\255\255\255\255\255\255\255\223\100\222\255\235\239\255\255\255\255\255\255\255\255\255\61\127\61\255\255\255\255\255\61\255\255\255\255\61\127\61\255\127\255\255\255\255\255\255\254\255\255\+    \\255\127\2\255\255\255\255\255\1\0\0\0\0\0\0\0\0\255\255\255\135\7\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\3\0\255\255\255\255\255\+    \\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\1\0\255\255\61\255\255\255\255\255\255\255\255\7\0\0\0\0\255\255\0\0\255\255\255\255\255\+    \\255\255\255\255\255\63\63\255\255\255\255\63\63\255\170\255\255\255\63\255\255\255\255\255\255\223\95\220\31\207\15\255\31\220\31\255\255\255\255\255\255\0\0\16\0\0\0\0\0\0\+    \\0\255\255\255\255\255\7\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\127\0\0\0\0\0\15\0\0\0\0\255\255\255\255\255\255\255\255\255\+    \\255\255\255\255\127\0\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\15\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\+    \\255\255\255\15\0\0\255\255\255\255\255\255\0\0\15\0\0\0\248\255\255\224\255\255\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\0\0\0\0\+    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\127\111\255\127\242\111\255\255\255\0\128\2\0\0\0\0\0\0\0\0\0\0\0\255\252\255\+    \\255\255\255\1\0\10\0\0\0\255\255\255\255\255\255\31\0\128\7\0\128\3\0\0\0\255\255\255\255\255\255\0\0\176\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\+    \\255\255\255\255\255\127\0\0\0\0\0\15\0\0\0\0\255\255\255\255\255\255\255\255\255\255\223\255\255\255\255\255\255\255\255\223\100\222\255\235\239\255\255\255\255\255\255\255\255\255\+    \\255\255\255\255\7\255\31\255\1\255\3\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\63\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\+    \\255\255\255\255\255\3\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\0\255\255\255\255\255\255\15\0\255\247\255\247\+    \\183\255\251\255\251\27\0\0\0\0\0\0\0\0\255\255\255\127\224\7\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\+    \\255\255\255\63\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\31\128\63\0\64\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\+    \\0\0\0\0\255\255\255\255\255\255\255\63\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\127\0\248\160\255\253\127\95\219\255\255\255\255\255\255\255\255\255\255\255\+    \\255\255\3\0\0\0\248\255\255\255\255\255\255\255\255\255\255\255\255\255\63\255\255\255\255\255\255\255\255\255\255\255\255\255\3\0\0\0\0\127\0\248\160\255\253\127\95\219\255\255\+    \\255\255\255\255\255\255\255\255\255\255\255\3\0\0\0\248\255\255\255\255\255\255\255\63\0\0\255\255\255\255\255\255\255\255\252\255\255\255\255\255\255\0\0\0\0\0\255\15\255\255\+    \\255\255\0\224\255\255\255\7\255\255\255\255\63\0\255\255\255\63\255\255\255\255\15\255\62\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\31\255\255\255\255\255\+    \\255\1\0\0\0\0\0\255\255\3\128\255\255\3\0\255\255\3\0\255\223\1\0\255\255\255\255\255\255\15\0\0\0\128\16\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\+    \\1\255\255\255\255\255\5\255\255\255\255\255\255\255\255\63\0\255\255\63\0\255\255\7\0\255\255\3\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\251\255\255\15\0\128\1\+    \\0\0\0\0\0\0\0\127\189\255\191\255\1\255\255\255\255\255\127\0\0\0\0\0\0\255\255\255\63\31\0\255\255\255\255\255\15\255\255\255\3\0\0\0\0\0\0\255\255\255\+    \\255\255\255\255\255\255\255\255\1\255\255\255\255\255\5\255\255\255\255\255\255\255\255\63\0\255\255\255\3\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\192\0\0\0\0\0\+    \\0\0\0\255\255\255\255\255\255\255\255\255\7\1\0\0\0\0\0\0\0\248\255\0\0\0\0\0\0\0\0\11\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\0\0\+    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\255\7\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\63\0\0\0\+    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\63\4\16\1\0\0\255\255\255\1\255\7\255\255\255\126\0\0\255\255\255\255\255\+    \\3\0\0\0\0\0\0\253\255\255\255\0\0\0\224\255\255\255\255\255\255\255\255\255\255\63\0\2\0\0\252\255\255\255\7\48\4\255\255\255\255\255\255\255\255\255\255\255\255\255\+    \\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\1\0\255\255\255\255\255\255\255\255\255\255\255\63\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\240\+    \\255\255\255\255\255\255\35\0\0\1\255\3\0\254\255\225\159\249\255\255\253\197\35\0\64\0\176\3\0\3\16\224\135\249\255\255\253\109\3\0\0\0\94\0\0\28\0\224\191\251\+    \\255\255\253\237\35\0\0\1\0\3\0\0\2\224\223\253\255\255\253\255\35\0\0\0\39\3\0\0\0\225\223\253\255\255\253\239\35\0\0\0\96\3\0\6\0\240\223\253\255\255\+    \\255\255\39\0\64\112\128\3\0\0\252\224\255\127\252\255\255\251\47\127\0\0\0\0\0\0\0\254\255\255\255\255\255\13\0\127\0\0\0\0\0\0\0\214\247\255\255\175\255\13\+    \\32\95\0\0\240\0\0\0\0\224\255\255\255\255\255\15\0\224\31\0\0\0\0\0\0\248\255\255\255\1\192\0\252\255\255\255\255\63\0\0\0\224\0\0\0\254\3\62\31\254\+    \\255\255\255\255\255\255\255\255\255\127\248\254\255\255\255\255\255\255\255\255\255\255\247\187\247\255\255\7\0\0\0\255\255\255\255\255\255\15\0\252\255\255\255\255\255\15\0\0\0\0\+    \\0\0\0\252\104\126\126\126\0\127\127\255\255\255\255\255\247\255\3\255\255\255\255\255\255\255\255\255\255\255\255\255\255\7\0\0\0\63\253\255\255\255\255\191\145\255\255\63\0\255\+    \\255\127\0\255\255\255\127\0\0\0\0\0\0\0\0\255\255\55\0\248\255\255\255\255\255\255\0\0\0\0\0\0\0\38\0\248\255\255\255\255\255\0\0\0\0\255\255\255\1\0\+    \\0\248\255\255\255\127\0\0\0\144\0\255\255\255\255\71\0\248\255\255\255\255\255\7\0\30\0\0\20\0\0\0\0\224\159\249\255\255\253\237\35\0\0\1\224\3\0\0\0\0\+    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\7\0\0\0\0\127\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\248\255\+    \\255\255\255\7\4\0\0\1\240\255\255\255\255\255\3\0\32\0\0\255\255\255\255\255\255\255\255\255\1\255\253\255\255\255\127\0\0\1\0\0\0\0\0\252\255\255\255\0\0\0\+    \\0\0\0\0\0\0\0\0\0\0\0\127\251\255\255\255\255\1\0\64\0\0\0\191\253\255\255\255\3\0\1\0\0\0\0\0\0\0\0\0\0\0\0\244\255\253\255\255\255\15\+    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\127\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\+    \\0\0\0\0\0\0\0\255\255\255\255\255\255\255\1\255\255\255\127\0\0\255\255\255\255\255\255\255\255\255\127\0\0\255\255\255\63\0\0\255\255\223\255\255\255\223\255\255\127\255\+    \\255\255\127\255\255\255\253\255\255\255\253\255\255\247\15\0\0\0\0\0\0\255\255\255\255\255\255\255\255\15\8\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\+    \\0\0\0\239\255\255\255\150\254\247\10\132\234\150\170\150\247\247\94\255\251\255\15\238\251\255\15\0\0\0\0\0\0\0\0"#  isID_StartOffsetsBitMap :: Ptr Word16 isID_StartOffsetsBitMap = Ptr-    "\53\1\233\0\241\0\93\5\38\5\26\6\150\0\32\10\2\10\64\10\96\10\15\4\128\10\160\10\192\10\41\4\188\2\233\0\255\5\84\1\232\0\233\0\65\2\1\9\29\9\109\9\124\5\224\10\111\3\29\1\233\0\112\1\207\4\182\0\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\176\1\0\11\227\4\227\4\32\11\0\0\-    \\227\4\227\4\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\29\1\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\-    \\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\-    \\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\3\2\233\0\220\2\210\3\64\11\239\3\27\3\96\11\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\-    \\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\84\3\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\233\0\-    \\107\8\80\8\233\0\166\8\72\0\109\4\144\1\65\4\81\4\198\8\141\4\148\7\233\0\128\11\160\11\165\9\96\2\53\9\163\2\168\4\184\4\50\8\192\11\224\11\85\9\0\12\97\0\122\0\167\6\32\12\181\3\6\5\64\12\227\4\96\12\156\5\176\5\112\6\233\0\233\0\233\0\73\5\57\5\128\2\227\4\227\4\227\4\227\4\227\4\227\4\-    \\227\4\227\4\227\4\142\2\233\0\233\0\233\0\233\0\244\2\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\233\0\233\0\128\12\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\-    \\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\233\0\233\0\160\12\30\0\227\4\227\4\54\0\197\9\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\122\7\233\0\233\0\233\0\233\0\192\12\198\0\227\4\227\4\-    \\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\200\0\233\0\59\3\73\3\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\57\7\227\4\227\4\227\4\227\4\227\4\-    \\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\230\5\208\1\220\1\224\12\227\4\227\4\227\4\227\4\227\4\227\4\227\4\180\7\206\7\143\3\157\3\227\4\0\7\227\4\227\4\231\4\252\1\0\13\227\4\227\4\227\4\227\4\32\13\227\4\227\4\227\4\227\4\227\4\-    \\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\-    \\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\-    \\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\-    \\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\25\1\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\17\1\31\2\233\0\233\0\233\0\-    \\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\43\2\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\80\6\227\4\227\4\-    \\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\227\4\233\0\233\0\216\7\227\4\227\4\227\4\227\4\227\4\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\166\1\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\233\0\-    \\233\0\233\0\233\0\176\1"#+    "\157\0\51\0\59\0\24\5\220\0\161\5\10\4\95\10\65\10\189\10\221\10\172\3\253\10\29\11\61\11\198\3\89\2\51\0\134\5\245\5\50\0\51\0\222\1\3\9\31\9\111\9\184\4\93\11\12\3\133\0\51\0\17\6\108\4\0\0\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\77\1\188\0\9\1\9\1\125\11\91\0\+    \\9\1\9\1\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\133\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\+    \\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\+    \\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\160\1\51\0\121\2\111\3\157\11\140\3\184\2\189\11\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\+    \\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\241\2\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\51\0\+    \\109\8\82\8\51\0\168\8\128\4\212\4\45\1\222\3\238\3\200\8\42\4\190\7\51\0\55\5\221\11\167\9\253\1\55\9\64\2\69\4\85\4\156\4\253\11\29\12\87\9\61\12\17\7\73\6\49\6\93\12\82\3\241\6\125\12\9\1\157\12\189\12\13\1\221\12\51\0\51\0\51\0\4\5\244\4\29\2\9\1\9\1\9\1\9\1\9\1\9\1\+    \\9\1\9\1\9\1\43\2\51\0\51\0\51\0\51\0\145\2\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\51\0\51\0\253\12\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\+    \\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\51\0\51\0\29\13\170\6\9\1\9\1\194\6\199\9\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\164\7\51\0\51\0\51\0\51\0\238\0\16\0\9\1\9\1\+    \\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\18\0\51\0\216\2\230\2\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\99\7\9\1\9\1\9\1\9\1\9\1\+    \\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\109\5\109\1\121\1\61\13\9\1\9\1\9\1\9\1\9\1\9\1\9\1\222\7\248\7\44\3\58\3\9\1\138\6\9\1\9\1\210\6\153\1\93\13\9\1\9\1\9\1\9\1\125\13\9\1\9\1\9\1\9\1\9\1\+    \\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\+    \\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\+    \\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\+    \\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\129\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\121\0\188\1\51\0\51\0\51\0\+    \\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\200\1\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\215\5\51\0\51\0\+    \\253\0\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\9\1\51\0\51\0\5\1\9\1\9\1\9\1\9\1\9\1\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\67\1\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\51\0\+    \\51\0\51\0\51\0\77\1"#  {-# INLINE isUppercase #-} isUppercase :: Char -> Bool@@ -608,88 +614,90 @@     \\0\156\224\255\255\255\255\255\254\255\255\255\255\255\255\255\255\255\255\127\0\0\255\255\255\255\0\0\0\0\0\0\255\255\255\252\255\31\0\0\255\255\255\1\255\7\255\255\255\126\     \\0\0\255\255\255\255\255\3\240\255\248\3\255\255\255\255\191\32\255\255\255\255\255\255\255\128\0\0\255\255\127\0\127\127\127\127\127\127\127\127\255\255\255\255\255\255\255\3\255\255\     \\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\0\0\0\0\128\255\31\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\-    \\255\255\255\255\255\255\255\255\255\255\63\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\192\255\255\255\255\255\255\-    \\3\0\0\255\255\255\255\255\255\0\224\255\255\255\255\255\255\255\255\255\255\255\255\3\0\0\252\255\255\255\7\48\4\255\239\255\255\127\255\255\183\255\63\255\63\0\0\0\0\255\-    \\255\255\255\255\255\255\255\255\255\255\255\255\255\255\7\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\31\120\12\0\191\231\223\-    \\223\255\255\255\123\95\252\253\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\63\255\255\255\253\255\255\247\255\255\255\247\255\255\255\255\255\255\255\255\255\-    \\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\31\0\0\0\0\0\0\0\0\255\255\255\255\255\63\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\-    \\255\255\255\255\255\255\255\255\3\0\255\255\255\255\255\255\255\255\255\255\255\255\255\159\255\255\254\255\255\7\255\255\255\255\255\255\255\255\255\199\255\1\255\255\255\255\255\255\255\255\-    \\15\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\1\0\0\0\0\0\0\255\255\255\255\255\255\7\-    \\0\255\255\255\255\255\255\7\0\240\0\255\255\255\255\71\0\255\255\255\255\255\255\255\255\30\192\0\20\0\0\0\0\254\255\255\7\254\255\255\7\192\255\255\255\255\255\255\255\255\-    \\255\255\127\252\252\252\28\0\0\0\0\255\31\255\255\0\12\0\0\255\255\255\255\255\127\240\143\255\255\255\255\255\255\255\255\255\255\255\255\255\255\0\0\126\0\0\0\0\0\0\-    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\1\0\255\255\255\255\7\0\4\0\0\0\39\0\240\0\255\255\255\255\255\-    \\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\15\0\255\255\127\248\255\255\255\255\255\15\255\255\255\255\255\255\255\127\254\255\31\0\-    \\0\0\0\0\128\0\0\128\1\112\0\0\0\0\0\0\255\255\255\255\255\31\128\63\0\64\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\-    \\255\63\0\0\255\255\255\255\255\15\0\0\255\255\251\255\255\255\159\192\3\0\0\0\0\0\0\0\127\189\255\191\255\1\255\255\255\255\255\255\255\1\0\0\0\0\0\0\0\255\-    \\254\255\255\255\31\254\255\15\255\255\254\255\255\255\31\0\0\0\0\0\0\0\0\255\255\255\255\255\255\31\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\-    \\31\255\255\255\255\255\255\1\0\0\0\0\0\238\159\249\255\255\253\237\227\159\25\192\176\15\0\2\0\236\199\61\214\24\199\255\195\199\29\129\0\0\0\0\0\128\0\0\0\0\-    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\-    \\0\0\0\0\0\0\0\255\255\255\255\255\27\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\63\127\0\0\0\63\0\0\0\0\255\255\255\255\-    \\255\255\255\255\255\255\255\255\255\255\255\255\3\252\255\255\255\255\255\255\255\255\255\255\255\255\255\255\127\0\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\-    \\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\128\0\0\255\31\0\0\0\0\0\0\0\0\0\0\0\0\0\0\223\255\255\255\255\255\255\255\255\255\255\255\255\255\255\-    \\255\255\31\128\0\255\255\63\0\0\0\0\0\255\255\3\0\0\0\0\0\255\255\31\0\0\0\255\255\127\0\127\251\255\255\255\255\127\180\203\0\0\0\191\253\255\255\255\127\123\-    \\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\127\0\191\231\223\223\255\255\255\123\95\252\253\255\255\255\255\255\255\-    \\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\223\255\255\255\255\255\255\255\255\223\100\222\255\235\239\255\255\255\255\255\255\255\239\255\223\225\255\15\0\254\255\239\159\249\255\-    \\255\253\197\227\159\89\128\176\15\0\3\16\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\3\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\-    \\255\255\255\255\255\255\255\255\255\255\255\255\1\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\0\0\0\128\255\252\255\255\255\255\255\255\255\255\255\255\255\-    \\255\249\255\255\255\255\255\255\255\7\235\3\0\0\252\255\255\255\7\255\255\255\255\7\0\255\255\255\31\255\255\255\255\255\255\247\255\0\128\0\0\255\255\0\124\255\255\253\255\255\-    \\255\255\199\1\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\127\0\-    \\255\255\255\255\255\255\255\255\255\255\255\255\255\127\0\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\15\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\-    \\0\0\0\0\0\0\0\0\0\255\255\255\15\0\0\255\255\255\255\255\255\255\255\255\255\223\255\255\255\255\255\255\255\255\223\100\222\255\235\239\255\255\255\255\255\255\255\255\255\255\-    \\255\255\255\7\255\31\255\1\255\67\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\127\111\255\127\242\111\255\255\255\191\153\7\-    \\0\0\0\0\0\0\0\0\0\0\0\255\252\255\255\255\255\255\252\26\0\0\0\255\255\255\63\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\-    \\255\255\255\255\255\3\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\0\0\0\0\0\0\0\0\254\255\255\7\254\255\255\7\0\0\0\0\-    \\0\4\32\4\255\255\127\255\255\255\127\255\15\255\1\0\0\255\255\255\63\31\0\255\255\255\255\255\15\255\255\255\3\0\0\0\0\0\0\239\255\255\255\150\254\247\10\132\234\150\-    \\170\150\247\247\94\255\251\255\15\238\251\255\15\0\0\0\0\0\0\0\0\255\255\255\3\255\255\255\3\255\255\255\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\32\0\0\-    \\0\0\0\223\188\64\215\255\255\251\255\255\255\255\255\255\255\255\255\191\255\255\255\255\0\0\0\255\255\255\255\255\255\15\0\255\255\255\255\255\255\255\255\47\0\0\0\0\0\252\-    \\232\255\255\255\255\255\255\255\255\255\61\127\61\255\255\255\255\255\61\255\255\255\255\61\127\61\255\127\255\255\255\255\255\255\127\249\0\0\255\255\255\255\255\255\255\255\0\60\255\255\-    \\255\255\191\32\255\255\255\255\255\247\127\0\248\224\255\253\127\95\219\255\255\255\255\255\255\255\255\255\255\255\255\255\3\0\0\0\248\255\255\255\255\255\255\255\255\255\255\255\255\255\-    \\63\255\255\255\255\255\255\255\255\255\255\255\255\255\3\0\0\0\0\127\0\248\224\255\253\127\95\219\255\255\255\255\255\255\255\255\255\255\255\255\255\3\0\0\0\248\255\255\255\255\-    \\255\255\255\63\0\0\255\255\255\255\255\255\255\255\252\255\255\255\255\255\255\0\0\0\0\0\255\15\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\-    \\255\255\255\255\255\255\255\255\255\0\224\255\255\255\7\255\255\255\255\255\7\255\255\255\63\255\255\255\255\15\255\62\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\-    \\255\31\255\255\255\255\255\255\1\0\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\63\0\0\255\255\255\255\15\255\255\255\255\15\128\255\255\15\-    \\0\255\255\15\0\255\223\13\0\255\255\255\255\255\255\207\255\255\1\128\16\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\1\255\255\255\255\255\7\255\255\255\255\255\255\255\-    \\255\63\0\0\0\0\0\62\0\255\255\255\255\255\255\255\1\4\0\255\255\255\1\0\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\-    \\255\255\255\0\0\0\0\0\0\255\255\255\3\255\255\255\3\255\255\255\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\255\61\127\61\255\255\255\-    \\255\255\61\255\255\255\255\61\127\61\255\127\255\255\255\255\255\61\255\255\255\255\255\255\255\255\7\0\0\0\0\255\255\0\0\255\255\255\255\255\255\255\255\255\255\63\63\255\255\255\-    \\255\63\63\255\170\255\255\255\63\255\255\255\255\255\255\223\95\220\31\207\15\255\31\220\31\255\255\255\255\255\255\254\255\255\255\127\2\255\255\255\255\255\1\0\0\0\0\255\191\182\-    \\0\255\255\255\135\7\0\238\135\249\255\255\253\109\195\135\25\2\94\0\0\63\0\238\191\251\255\255\253\237\227\191\27\1\0\15\0\0\30\255\223\253\255\255\253\255\227\223\29\96\-    \\39\15\0\0\0\239\223\253\255\255\253\239\227\223\29\96\96\15\0\14\0\255\223\253\255\255\255\255\231\223\93\240\128\15\0\0\252\238\255\127\252\255\255\251\47\127\128\95\255\0\-    \\0\12\0\254\255\255\255\255\255\255\7\127\32\0\0\0\0\0\0\214\247\255\255\175\255\255\59\95\32\0\240\0\0\0\0\255\255\255\255\255\255\239\255\239\31\0\0\0\0\0\-    \\0\255\255\255\255\255\243\0\252\255\255\255\255\191\255\3\0\255\255\255\255\255\255\127\0\0\224\0\252\255\255\255\63\255\1\255\255\255\255\255\231\0\0\0\0\0\222\111\4\224\-    \\0\0\0\254\3\62\31\254\255\255\255\255\255\255\255\255\255\127\224\254\255\255\255\255\255\255\255\255\255\255\247\255\255\255\255\255\255\127\0\255\63\0\0\255\255\127\252\255\255\255\-    \\255\255\255\255\127\5\0\0\56\255\255\60\0\126\126\126\0\127\127\255\255\255\255\255\247\255\3\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\7\0\0\255\255\255\255\255\-    \\0\255\255\255\255\255\255\15\0\255\247\255\247\183\255\251\255\251\27\0\0\0\0\0\0\0\0\255\255\255\255\255\255\127\0\255\255\63\0\255\0\0\0\191\255\255\255\255\255\253\-    \\7\0\0\0\0\0\0\0\0\63\253\255\255\255\255\191\145\255\255\63\0\255\255\127\0\255\255\255\127\0\0\0\0\0\0\0\0\255\255\55\0\255\255\63\0\255\255\255\3\0\-    \\0\0\0\0\0\0\0\255\255\255\255\255\255\255\192\0\0\0\0\0\0\0\0\255\255\255\255\255\255\63\0\255\255\63\0\255\255\7\0\255\255\3\0\0\0\0\0\0\0\0\-    \\0\0\0\0\0\239\159\249\255\255\253\237\227\159\25\129\224\15\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\187\7\0\128\3\-    \\0\0\0\255\255\255\255\255\255\255\255\179\0\0\0\0\0\0\0\255\255\255\255\255\255\255\127\17\0\0\0\0\0\0\0\255\255\255\255\255\255\63\1\0\0\0\0\0\0\0\-    \\0\255\255\255\231\255\7\0\0\127\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\231\127\0\0\255\255\255\255\255\255\255\-    \\255\255\32\0\0\255\255\255\255\255\255\255\255\255\1\255\253\255\255\255\255\127\127\1\0\0\0\0\0\252\255\255\255\252\255\255\254\127\0\0\0\0\0\0\0\0\0\255\255\255\-    \\255\255\255\255\255\127\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\1\255\255\255\127\0\0\255\255\255\255\255\255\255\-    \\255\255\127\0\0\255\255\255\63\0\0\255\255\255\255\255\255\0\0\15\0\0\0\248\255\255\224\255\255\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\-    \\255\255\135\255\255\255\255\255\255\255\128\255\255\0\0\0\0\0\0\0\0\11\0\3\0\255\255\223\255\255\255\223\255\255\127\255\255\255\127\255\255\255\253\255\255\255\253\255\255\247\-    \\15\0\0\0\0\0\0\255\255\255\127\224\7\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\127\255\255\249\219\7\255\255\255\255\255\-    \\255\255\63\0\0\0\128\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\143\8\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\-    \\0\0\0"#+    \\3\252\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\63\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\+    \\0\0\0\0\0\0\0\0\0\0\0\255\255\127\0\255\239\255\255\127\255\255\183\255\63\255\63\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\7\255\255\255\+    \\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\31\120\12\0\191\231\223\223\255\255\255\123\95\252\253\255\255\255\255\255\255\255\255\255\255\+    \\255\255\255\255\255\255\255\255\255\255\255\63\255\255\255\253\255\255\247\255\255\255\247\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\31\0\0\+    \\0\0\0\0\0\0\255\255\255\255\255\63\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\3\0\255\255\255\255\255\255\255\255\+    \\255\255\255\255\255\159\255\255\254\255\255\7\255\255\255\255\255\255\255\255\255\199\255\1\255\255\255\255\255\255\255\255\15\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\+    \\0\0\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\1\0\0\0\0\0\0\255\255\255\255\255\255\7\0\255\255\255\255\255\255\7\0\240\0\255\255\255\255\71\0\255\+    \\255\255\255\255\255\255\255\30\192\0\20\0\0\0\0\254\255\255\7\254\255\255\7\192\255\255\255\255\255\255\255\255\255\255\127\252\252\252\28\0\0\0\0\255\255\255\255\255\255\0\+    \\224\255\255\255\255\255\255\255\255\255\255\255\255\3\0\0\252\255\255\255\7\48\4\255\31\255\255\0\12\0\0\255\255\255\255\255\127\240\143\255\255\255\255\255\255\255\255\255\255\255\+    \\255\255\255\0\0\126\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\1\0\0\0\0\0\0\0\0\+    \\0\0\0\0\255\255\255\255\255\255\255\255\0\0\0\128\255\252\255\255\255\255\255\255\255\255\255\255\255\255\249\255\255\255\255\255\255\255\7\235\3\0\0\252\255\255\255\7\255\255\+    \\255\255\7\0\255\255\255\31\255\255\255\255\255\255\247\255\0\128\0\0\255\255\0\124\255\255\255\255\7\0\4\0\0\0\39\0\240\0\255\255\255\255\255\255\255\255\255\255\255\255\+    \\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\15\0\255\255\127\248\255\255\255\255\255\15\255\255\255\255\255\255\255\127\254\255\31\0\0\0\0\0\128\0\0\+    \\128\1\112\0\0\0\0\0\0\255\255\255\255\255\31\128\63\0\64\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\63\0\0\255\255\255\+    \\255\255\15\0\0\255\255\251\255\255\255\159\192\3\0\0\0\0\0\0\0\127\189\255\191\255\1\255\255\255\255\255\255\255\1\0\0\0\0\0\0\0\255\254\255\255\255\31\254\255\+    \\15\255\255\254\255\255\255\31\0\0\0\0\0\0\0\0\255\255\255\255\255\255\31\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\31\255\255\255\255\255\255\+    \\1\0\0\0\0\0\238\159\249\255\255\253\237\227\159\25\192\176\15\0\2\0\236\199\61\214\24\199\255\195\199\29\129\0\0\0\0\0\128\0\0\0\0\0\0\0\0\0\0\0\+    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\+    \\255\255\255\255\255\27\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\223\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\31\128\0\255\255\63\0\0\0\0\0\255\+    \\255\3\0\0\0\0\0\255\255\31\0\0\0\255\255\127\0\255\255\255\255\255\255\255\255\255\255\255\255\255\127\0\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\+    \\255\255\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\128\0\0\255\31\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\192\255\255\255\255\+    \\255\255\3\0\0\191\231\223\223\255\255\255\123\95\252\253\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\223\255\255\255\255\255\255\255\255\223\100\222\255\+    \\235\239\255\255\255\255\255\255\255\239\255\223\225\255\15\0\254\255\239\159\249\255\255\253\197\227\159\89\128\176\15\0\3\16\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\+    \\255\255\255\255\3\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\1\0\255\255\255\255\255\255\254\255\255\255\127\2\255\255\+    \\255\255\255\1\0\0\0\0\255\191\182\0\255\255\255\135\7\0\255\255\255\255\255\255\255\127\17\0\0\0\0\0\0\0\255\255\255\255\255\255\63\1\0\0\0\0\0\0\0\0\+    \\0\0\0\0\0\0\0\0\255\255\255\255\255\255\63\127\0\0\0\63\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\255\255\127\0\0\255\255\255\255\255\255\255\255\255\255\+    \\255\255\255\255\255\255\15\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\15\0\0\255\255\255\255\255\255\255\255\187\7\0\+    \\128\3\0\0\0\255\255\255\255\255\255\255\255\179\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\63\127\0\0\0\63\0\0\0\0\255\255\255\255\+    \\255\255\255\255\255\255\223\255\255\255\255\255\255\255\255\223\100\222\255\235\239\255\255\255\255\255\255\255\255\255\255\255\255\255\7\255\31\255\1\255\67\0\0\0\0\0\0\0\0\0\+    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\127\111\255\127\242\111\255\255\255\191\153\7\0\0\0\0\0\0\0\0\0\0\0\255\252\255\255\255\255\255\252\+    \\26\0\0\0\255\255\255\63\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\3\255\255\255\255\255\255\255\255\255\255\255\255\255\+    \\255\255\255\255\255\255\255\255\255\255\255\0\0\0\0\0\0\0\0\254\255\255\7\254\255\255\7\0\0\0\0\0\4\32\4\255\255\127\255\255\255\127\255\15\255\1\0\0\255\255\+    \\255\63\31\0\255\255\255\255\255\15\255\255\255\3\0\0\0\0\0\0\239\255\255\255\150\254\247\10\132\234\150\170\150\247\247\94\255\251\255\15\238\251\255\15\0\0\0\0\0\0\+    \\0\0\255\255\255\3\255\255\255\3\255\255\255\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\32\0\0\0\0\0\223\188\64\215\255\255\251\255\255\255\255\255\255\255\255\255\+    \\191\255\255\255\255\0\0\0\255\255\255\255\255\255\15\0\255\255\255\255\255\255\255\255\47\0\0\0\0\0\252\232\255\255\255\255\255\255\255\255\255\61\127\61\255\255\255\255\255\61\+    \\255\255\255\255\61\127\61\255\127\255\255\255\255\255\255\127\249\0\0\255\255\255\255\255\255\255\255\0\60\255\255\255\255\191\32\255\255\255\255\255\247\127\0\248\224\255\253\127\95\219\+    \\255\255\255\255\255\255\255\255\255\255\255\255\255\3\0\0\0\248\255\255\255\255\255\255\255\255\255\255\255\255\255\63\255\255\255\255\255\255\255\255\255\255\255\255\255\3\0\0\0\0\+    \\127\0\248\224\255\253\127\95\219\255\255\255\255\255\255\255\255\255\255\255\255\255\3\0\0\0\248\255\255\255\255\255\255\255\63\0\0\255\255\255\255\255\255\255\255\252\255\255\255\255\+    \\255\255\0\0\0\0\0\255\15\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\0\224\255\255\255\7\255\255\255\255\+    \\255\7\255\255\255\63\255\255\255\255\15\255\62\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\31\255\255\255\255\255\255\1\0\0\0\0\0\255\255\255\255\255\+    \\255\255\255\255\255\255\255\255\255\255\255\255\255\255\63\0\0\255\255\255\255\15\255\255\255\255\15\128\255\255\15\0\255\255\15\0\255\223\13\0\255\255\255\255\255\255\207\255\255\1\+    \\128\16\0\0\0\0\255\255\255\255\255\255\255\255\255\255\255\1\255\255\255\255\255\7\255\255\255\255\255\255\255\255\63\0\0\0\0\0\62\0\255\255\255\255\255\255\255\1\4\0\+    \\255\255\255\1\0\0\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\0\0\0\0\0\0\255\255\255\3\255\255\255\3\255\255\+    \\255\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\255\7\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\63\0\+    \\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\255\61\127\61\255\255\255\255\255\61\255\255\255\255\61\+    \\127\61\255\127\255\255\255\255\255\61\255\255\255\255\255\255\255\255\7\0\0\0\0\255\255\0\0\255\255\255\255\255\255\255\255\255\255\63\63\255\255\255\255\63\63\255\170\255\255\255\+    \\63\255\255\255\255\255\255\223\95\220\31\207\15\255\31\220\31\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\1\0\255\255\255\+    \\255\255\255\255\255\255\255\255\63\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\238\135\249\255\255\253\109\195\135\25\2\94\0\0\63\0\238\191\251\255\255\+    \\253\237\227\191\27\1\0\15\0\0\30\255\223\253\255\255\253\255\227\223\29\96\39\15\0\0\0\239\223\253\255\255\253\239\227\223\29\96\96\15\0\14\0\255\223\253\255\255\255\255\+    \\231\223\93\240\128\15\0\0\252\238\255\127\252\255\255\251\47\127\128\95\255\0\0\12\0\254\255\255\255\255\255\255\7\127\32\0\0\0\0\0\0\214\247\255\255\175\255\255\59\95\+    \\32\0\240\0\0\0\0\255\255\255\255\255\255\239\255\239\31\0\0\0\0\0\0\255\255\255\255\255\243\0\252\255\255\255\255\191\255\3\0\255\255\255\255\255\255\127\0\0\224\0\+    \\252\255\255\255\63\255\1\255\255\255\255\255\231\0\0\0\0\0\222\111\4\224\0\0\0\254\3\62\31\254\255\255\255\255\255\255\255\255\255\127\224\254\255\255\255\255\255\255\255\255\+    \\255\255\247\255\255\255\255\255\255\127\0\255\63\0\0\255\255\127\252\255\255\255\255\255\255\255\127\5\0\0\56\255\255\60\0\126\126\126\0\127\127\255\255\255\255\255\247\255\3\255\+    \\255\255\255\255\255\255\255\255\255\255\255\255\255\255\7\0\0\255\255\255\255\255\0\255\255\255\255\255\255\15\0\255\247\255\247\183\255\251\255\251\27\0\0\0\0\0\0\0\0\255\+    \\255\255\255\255\255\127\0\255\255\63\0\255\0\0\0\191\255\255\255\255\255\253\7\0\0\0\0\0\0\0\0\63\253\255\255\255\255\191\145\255\255\63\0\255\255\127\0\255\255\255\+    \\127\0\0\0\0\0\0\0\0\255\255\55\0\255\255\63\0\255\255\255\3\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\192\0\0\0\0\0\0\0\0\255\255\255\255\255\+    \\255\63\0\255\255\63\0\255\255\7\0\255\255\3\0\0\0\0\0\0\0\0\0\0\0\0\0\239\159\249\255\255\253\237\227\159\25\129\224\15\0\0\0\0\0\0\0\0\0\0\+    \\0\0\0\0\0\0\0\0\0\255\255\255\231\255\7\0\0\127\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\231\127\0\+    \\0\255\255\255\255\255\255\255\255\255\32\0\0\255\255\255\255\255\255\255\255\255\1\255\253\255\255\255\255\127\127\1\0\0\0\0\0\252\255\255\255\252\255\255\254\127\0\0\0\0\+    \\0\0\0\0\0\127\251\255\255\255\255\127\180\203\0\0\0\191\253\255\255\255\127\123\1\0\0\0\0\0\0\0\0\0\0\0\0\255\255\253\255\255\255\255\199\1\0\0\0\0\+    \\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\127\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\+    \\0\255\255\255\255\255\255\255\1\255\255\255\127\0\0\255\255\255\255\255\255\255\255\255\127\0\0\255\255\255\63\0\0\255\255\255\255\255\255\0\0\15\0\0\0\248\255\255\224\255\+    \\255\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\255\255\135\255\255\255\255\255\255\255\128\255\255\0\0\0\0\0\0\0\0\11\0\3\0\255\255\223\+    \\255\255\255\223\255\255\127\255\255\255\127\255\255\255\253\255\255\255\253\255\255\247\15\0\0\0\0\0\0\255\255\255\127\224\7\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\+    \\0\0\0\0\0\0\0\0\0\0\0\127\255\255\249\219\7\255\255\255\255\255\255\255\63\0\0\0\128\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255\255\255\255\255\255\255\+    \\255\143\8\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"#  isAlphabeticOffsetsBitMap :: Ptr Word16 isAlphabeticOffsetsBitMap = Ptr-    "\38\7\82\0\90\0\147\7\122\4\221\9\120\0\95\1\182\0\100\5\253\9\245\3\29\10\61\10\93\10\173\3\236\7\82\0\209\7\161\9\81\0\82\0\48\2\245\8\17\9\65\7\66\3\125\10\157\10\252\0\82\0\189\9\177\4\0\0\55\1\55\1\65\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\159\1\212\0\16\4\55\1\189\10\152\0\-    \\55\1\55\1\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\14\7\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\+    "\69\7\82\0\90\0\178\7\28\1\206\5\120\0\179\2\182\0\122\5\119\10\82\4\151\10\183\10\215\10\10\4\11\8\82\0\240\7\253\9\81\0\82\0\30\2\20\9\48\9\96\7\159\3\247\10\23\11\252\0\82\0\25\10\23\5\0\0\73\1\73\1\43\5\73\1\73\1\73\1\73\1\73\1\73\1\73\1\141\1\212\0\109\4\73\1\55\11\152\0\+    \\73\1\73\1\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\45\7\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\     \\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\-    \\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\242\1\82\0\199\2\204\5\177\7\233\5\221\10\253\10\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\-    \\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\38\3\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\82\0\-    \\39\8\12\8\82\0\98\8\197\4\167\2\127\1\197\3\213\3\157\8\216\8\29\11\82\0\61\11\93\11\125\11\49\0\157\11\115\2\51\4\67\4\225\4\39\9\139\2\144\3\189\11\221\11\90\4\253\11\29\12\175\5\205\6\61\12\55\1\93\12\1\5\21\5\9\6\82\0\82\0\82\0\157\4\141\4\80\2\55\1\55\1\55\1\55\1\55\1\55\1\-    \\55\1\55\1\55\1\94\2\82\0\82\0\82\0\82\0\223\2\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\82\0\82\0\125\12\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\-    \\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\82\0\82\0\157\12\189\12\55\1\55\1\40\4\221\12\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\130\8\82\0\82\0\82\0\82\0\28\1\16\0\55\1\55\1\-    \\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\18\0\82\0\13\3\27\3\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\154\6\55\1\55\1\55\1\55\1\55\1\-    \\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\75\5\191\1\203\1\253\12\55\1\55\1\55\1\55\1\55\1\55\1\55\1\29\13\61\13\98\3\112\3\55\1\97\6\55\1\55\1\174\6\235\1\93\13\55\1\55\1\55\1\55\1\97\7\55\1\55\1\123\7\55\1\55\1\-    \\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\+    \\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\224\1\82\0\211\2\45\3\208\7\74\3\87\11\119\11\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\+    \\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\131\3\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\82\0\+    \\70\8\43\8\82\0\129\8\183\4\149\2\109\1\34\4\50\4\188\8\247\8\151\11\82\0\183\11\215\11\247\11\49\0\23\12\97\2\144\4\160\4\211\4\70\9\121\2\237\3\55\12\103\6\6\6\238\5\87\12\16\3\236\6\119\12\73\1\151\12\183\12\77\1\215\12\82\0\82\0\82\0\3\5\243\4\62\2\73\1\73\1\73\1\73\1\73\1\73\1\+    \\73\1\73\1\73\1\76\2\82\0\82\0\82\0\82\0\235\2\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\82\0\82\0\247\12\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\+    \\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\82\0\82\0\23\13\55\13\73\1\73\1\133\4\87\13\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\161\8\82\0\82\0\82\0\82\0\46\1\16\0\73\1\73\1\+    \\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\18\0\82\0\106\3\120\3\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\185\6\73\1\73\1\73\1\73\1\73\1\+    \\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\97\5\173\1\185\1\119\13\73\1\73\1\73\1\73\1\73\1\73\1\73\1\151\13\183\13\191\3\205\3\73\1\71\6\73\1\73\1\205\6\217\1\215\13\73\1\73\1\73\1\73\1\128\7\73\1\73\1\154\7\73\1\73\1\+    \\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\     \\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\     \\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\-    \\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\248\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\240\0\14\2\82\0\82\0\82\0\-    \\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\26\2\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\154\5\55\1\55\1\-    \\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\55\1\82\0\82\0\51\1\55\1\55\1\55\1\55\1\55\1\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\149\1\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\-    \\82\0\82\0\82\0\159\1"#+    \\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\248\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\240\0\252\1\82\0\82\0\82\0\+    \\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\8\2\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\176\5\82\0\82\0\+    \\61\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\73\1\82\0\82\0\69\1\73\1\73\1\73\1\73\1\73\1\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\131\1\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\82\0\+    \\82\0\82\0\82\0\141\1"# 
lib/Unicode/Internal/Char/DerivedNumericValues.hs view
@@ -1,4 +1,4 @@--- autogenerated from https://www.unicode.org/Public/15.0.0/ucd/extracted/DerivedNumericValues.txt+-- autogenerated from https://www.unicode.org/Public/15.1.0/ucd/extracted/DerivedNumericValues.txt -- | -- Module      : Unicode.Internal.Char.DerivedNumericValues -- Copyright   : (c) 2022 Composewell Technologies and Contributors@@ -664,18 +664,22 @@   '\19971' -> Just 7   '\19975' -> Just 10000   '\19977' -> Just 3+  '\20004' -> Just 2   '\20061' -> Just 9   '\20108' -> Just 2   '\20116' -> Just 5   '\20118' -> Just 4+  '\20140' -> Just 10000000000000000   '\20159' -> Just 100000000   '\20160' -> Just 10   '\20191' -> Just 1000   '\20200' -> Just 3   '\20237' -> Just 5   '\20336' -> Just 100+  '\20457' -> Just 2+  '\20486' -> Just 2   '\20740' -> Just 100000000-  '\20806' -> Just 1000000000000+  '\20806' -> Just 1000000   '\20841' -> Just 2   '\20843' -> Just 8   '\20845' -> Just 6@@ -698,17 +702,23 @@   '\24333' -> Just 2   '\24334' -> Just 3   '\24336' -> Just 2+  '\25296' -> Just 7   '\25342' -> Just 10   '\25420' -> Just 8   '\26578' -> Just 7+  '\27934' -> Just 0   '\28422' -> Just 7   '\29590' -> Just 9   '\30334' -> Just 100+  '\30357' -> Just 200+  '\31213' -> Just 1000000000   '\32902' -> Just 4   '\33836' -> Just 10000   '\36014' -> Just 2   '\36019' -> Just 2   '\36144' -> Just 2+  '\37390' -> Just 9+  '\38057' -> Just 9   '\38433' -> Just 1000   '\38470' -> Just 6   '\38476' -> Just 100
lib/Unicode/Internal/Char/PropList.hs view
@@ -1,4 +1,4 @@--- autogenerated from https://www.unicode.org/Public/15.0.0/ucd/PropList.txt+-- autogenerated from https://www.unicode.org/Public/15.1.0/ucd/PropList.txt -- | -- Module      : Unicode.Internal.Char.PropList -- Copyright   : (c) 2020 Composewell Technologies and Contributors
lib/Unicode/Internal/Char/SpecialCasing/LowerCaseMapping.hs view
@@ -1,4 +1,4 @@--- autogenerated from https://www.unicode.org/Public/15.0.0/ucd/UnicodeData.txt+-- autogenerated from https://www.unicode.org/Public/15.1.0/ucd/UnicodeData.txt -- | -- Module      : Unicode.Internal.Char.SpecialCasing.LowerCaseMapping -- Copyright   : (c) 2022 Composewell Technologies and Contributors
lib/Unicode/Internal/Char/SpecialCasing/TitleCaseMapping.hs view
@@ -1,4 +1,4 @@--- autogenerated from https://www.unicode.org/Public/15.0.0/ucd/UnicodeData.txt+-- autogenerated from https://www.unicode.org/Public/15.1.0/ucd/UnicodeData.txt -- | -- Module      : Unicode.Internal.Char.SpecialCasing.TitleCaseMapping -- Copyright   : (c) 2022 Composewell Technologies and Contributors
lib/Unicode/Internal/Char/SpecialCasing/UpperCaseMapping.hs view
@@ -1,4 +1,4 @@--- autogenerated from https://www.unicode.org/Public/15.0.0/ucd/UnicodeData.txt+-- autogenerated from https://www.unicode.org/Public/15.1.0/ucd/UnicodeData.txt -- | -- Module      : Unicode.Internal.Char.SpecialCasing.UpperCaseMapping -- Copyright   : (c) 2022 Composewell Technologies and Contributors
lib/Unicode/Internal/Char/UnicodeData/CombiningClass.hs view
@@ -1,4 +1,4 @@--- autogenerated from https://www.unicode.org/Public/15.0.0/ucd/UnicodeData.txt+-- autogenerated from https://www.unicode.org/Public/15.1.0/ucd/UnicodeData.txt -- | -- Module      : Unicode.Internal.Char.UnicodeData.CombiningClass -- Copyright   : (c) 2020 Composewell Technologies and Contributors
lib/Unicode/Internal/Char/UnicodeData/Compositions.hs view
@@ -1,4 +1,4 @@--- autogenerated from https://www.unicode.org/Public/15.0.0/ucd/UnicodeData.txt+-- autogenerated from https://www.unicode.org/Public/15.1.0/ucd/UnicodeData.txt -- | -- Module      : Unicode.Internal.Char.UnicodeData.Compositions -- Copyright   : (c) 2020 Composewell Technologies and Contributors
lib/Unicode/Internal/Char/UnicodeData/Decomposable.hs view
@@ -1,4 +1,4 @@--- autogenerated from https://www.unicode.org/Public/15.0.0/ucd/UnicodeData.txt+-- autogenerated from https://www.unicode.org/Public/15.1.0/ucd/UnicodeData.txt -- | -- Module      : Unicode.Internal.Char.UnicodeData.Decomposable -- Copyright   : (c) 2020 Composewell Technologies and Contributors
lib/Unicode/Internal/Char/UnicodeData/DecomposableK.hs view
@@ -1,4 +1,4 @@--- autogenerated from https://www.unicode.org/Public/15.0.0/ucd/UnicodeData.txt+-- autogenerated from https://www.unicode.org/Public/15.1.0/ucd/UnicodeData.txt -- | -- Module      : Unicode.Internal.Char.UnicodeData.DecomposableK -- Copyright   : (c) 2020 Composewell Technologies and Contributors
lib/Unicode/Internal/Char/UnicodeData/Decompositions.hs view
@@ -1,4 +1,4 @@--- autogenerated from https://www.unicode.org/Public/15.0.0/ucd/UnicodeData.txt+-- autogenerated from https://www.unicode.org/Public/15.1.0/ucd/UnicodeData.txt -- | -- Module      : Unicode.Internal.Char.UnicodeData.Decompositions -- Copyright   : (c) 2020 Composewell Technologies and Contributors
lib/Unicode/Internal/Char/UnicodeData/DecompositionsK.hs view
@@ -1,4 +1,4 @@--- autogenerated from https://www.unicode.org/Public/15.0.0/ucd/UnicodeData.txt+-- autogenerated from https://www.unicode.org/Public/15.1.0/ucd/UnicodeData.txt -- | -- Module      : Unicode.Internal.Char.UnicodeData.DecompositionsK -- Copyright   : (c) 2020 Composewell Technologies and Contributors
lib/Unicode/Internal/Char/UnicodeData/DecompositionsK2.hs view
@@ -1,4 +1,4 @@--- autogenerated from https://www.unicode.org/Public/15.0.0/ucd/UnicodeData.txt+-- autogenerated from https://www.unicode.org/Public/15.1.0/ucd/UnicodeData.txt -- | -- Module      : Unicode.Internal.Char.UnicodeData.DecompositionsK2 -- Copyright   : (c) 2020 Composewell Technologies and Contributors
lib/Unicode/Internal/Char/UnicodeData/GeneralCategory.hs view
@@ -1,4 +1,4 @@--- autogenerated from https://www.unicode.org/Public/15.0.0/ucd/UnicodeData.txt+-- autogenerated from https://www.unicode.org/Public/15.1.0/ucd/UnicodeData.txt -- | -- Module      : Unicode.Internal.Char.UnicodeData.GeneralCategory -- Copyright   : (c) 2020 Composewell Technologies and Contributors@@ -339,119 +339,120 @@ generalCategoryOffsets1BitMap :: Ptr Word16 generalCategoryOffsets1BitMap = Ptr     "\8\6\146\4\96\3\96\3\96\3\96\3\6\6\108\1\214\9\146\3\184\6\134\1\96\3\96\3\96\3\96\3\96\3\7\6\127\1\115\11\198\6\146\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\145\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\-    \\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\54\0\44\0\26\8\96\3\96\3\96\3\96\3\96\3\95\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\97\3\249\4\48\4\96\3\96\3\96\3\96\3\48\4\48\4\48\4\48\4\52\4\146\3\96\3\96\3\104\7\96\3\96\3\96\3\+    \\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\54\0\44\0\26\8\96\3\96\3\96\3\96\3\96\3\95\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\97\3\249\4\48\4\96\3\96\3\96\3\96\3\48\4\48\4\48\4\48\4\52\4\86\2\96\3\96\3\104\7\96\3\96\3\96\3\     \\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\-    \\48\4\48\4\50\4\146\3\146\3\146\3\48\4\52\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\146\3\48\4\54\4\48\4\48\4\48\4\48\4\48\4\146\3\48\4\48\4\48\4\50\4\54\4\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\103\3\97\3\103\3\+    \\48\4\48\4\50\4\146\3\146\3\146\3\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\50\4\146\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\103\3\97\3\103\3\     \\96\3\96\3\96\3\96\3\96\3\103\3\96\3\96\3\96\3\96\3\103\3\97\3\103\3\96\3\97\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\144\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\-    \\96\3\146\3\146\3\146\3\146\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\142\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\96\3\96\3\188\9\237\1\-    \\96\3\100\3\96\3\96\3\97\3\96\3\96\3\89\3\96\3\140\3\96\3\140\3\146\3\146\3\146\3\146\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\143\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\-    \\96\3\96\3\96\3\96\3\164\6\146\3\146\3\146\3\182\5\182\5\182\5\182\5\182\5\182\5\96\3\96\3\96\3\140\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\144\3\146\3\96\3\96\3\-    \\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\140\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\144\3\146\3\146\3\146\3\146\3\96\3\96\3\96\3\97\3\146\5\209\2\151\5\20\9\195\5\21\10\96\3\96\3\96\3\140\3\141\3\146\3\96\3\96\3\96\3\96\3\-    \\96\3\142\3\96\3\96\3\96\3\144\3\21\10\174\7\48\4\48\4\48\4\48\4\48\4\48\4\195\1\195\1\223\3\185\10\48\4\48\4\48\4\48\4\176\8\48\4\48\4\48\4\189\7\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\236\3\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\-    \\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\236\3\48\4\234\3\48\4\48\4\48\4\48\4\48\4\48\4\195\1\199\2\9\2\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\-    \\146\3\146\3\146\3\146\3\146\3\146\3\146\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\207\0\146\3\96\3\96\3\96\3\96\3\96\3\96\3\182\5\182\5\148\4\157\4\251\9\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\-    \\146\3\146\3\146\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\207\0\146\3\96\3\96\3\96\3\96\3\143\3\146\3\43\5\146\3\146\3\146\3\40\5\146\3\171\9\146\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\-    \\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\142\3\146\3\96\3\96\3\97\3\172\9\96\3\96\3\96\3\96\3\96\3\142\3\96\3\96\3\96\3\96\3\96\3\141\3\218\2\164\9\21\10\29\9\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\-    \\146\3\146\3\146\3\146\3\146\3\146\3\96\3\96\3\96\3\55\12\146\3\146\3\96\3\96\3\96\3\96\3\96\3\5\6\21\10\63\12\96\3\96\3\104\7\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\-    \\96\3\96\3\141\3\48\4\48\4\48\4\48\4\48\4\48\4\49\4\146\3\96\3\96\3\96\3\96\3\96\3\59\0\37\9\37\9\37\9\37\9\37\9\37\9\37\9\37\9\37\9\37\9\37\9\37\9\37\9\37\7\196\6\146\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\-    \\96\3\96\3\144\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\96\3\96\3\96\3\141\3\96\3\96\3\96\3\96\3\96\3\96\3\145\3\146\3\223\7\92\1\92\1\227\7\117\0\117\0\117\0\117\0\95\4\74\0\74\0\74\0\238\9\243\9\21\10\205\10\146\3\146\3\146\3\-    \\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\142\0\92\1\92\1\92\1\92\1\92\1\92\1\146\0\185\4\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\96\3\96\3\96\3\96\3\96\3\124\5\214\1\246\7\-    \\83\9\199\2\199\2\135\6\146\3\146\3\146\3\146\3\142\0\92\1\92\1\92\1\92\1\144\0\92\1\225\7\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\142\0\92\1\92\1\92\1\92\1\92\1\92\1\146\0\185\4\146\3\-    \\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\96\3\96\3\96\3\123\1\21\10\179\11\80\5\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\-    \\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\83\5\96\3\96\3\98\5\96\3\96\3\189\8\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\4\8\123\5\145\3\48\4\48\4\48\4\49\4\92\1\186\7\48\4\48\4\48\4\92\1\150\0\92\1\48\4\48\4\48\4\48\4\92\1\186\7\-    \\48\4\48\4\48\4\48\4\150\0\92\1\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\236\3\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\17\4\19\4\92\1\92\1\92\1\184\7\48\4\48\4\48\4\48\4\48\4\198\1\-    \\195\1\195\1\195\1\197\1\17\4\195\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\212\5\16\4\16\4\194\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\191\1\195\1\-    \\195\1\195\1\199\1\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\17\4\19\4\92\1\92\1\92\1\184\7\48\4\48\4\48\4\48\4\48\4\198\1\195\1\195\1\195\1\-    \\197\1\17\4\195\1\195\1\105\4\18\1\25\1\122\2\74\0\74\0\74\0\14\1\4\1\21\1\126\2\74\0\74\0\86\4\117\0\117\0\91\4\74\0\74\0\74\0\117\0\117\0\117\0\95\4\74\0\74\0\86\4\117\0\117\0\91\4\74\0\74\0\74\0\117\0\117\0\117\0\95\4\74\0\74\0\126\0\117\0\117\0\117\0\124\0\74\0\74\0\-    \\79\0\88\4\117\0\117\0\122\0\96\3\96\3\96\3\96\3\5\6\146\3\21\10\179\11\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\92\1\92\1\92\1\224\7\96\3\96\3\96\3\96\3\96\3\212\6\144\3\146\3\146\3\-    \\146\3\146\3\146\3\146\3\146\3\146\3\177\2\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\144\3\146\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\-    \\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\145\3\146\3\146\3\146\3\146\3\146\3\146\3\117\0\117\0\117\0\117\0\117\0\117\0\34\1\146\3\74\0\74\0\74\0\74\0\74\0\74\0\42\6\141\0\182\5\182\5\182\5\182\5\182\5\182\5\146\3\146\3\-    \\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\157\4\157\4\157\4\157\4\157\4\157\4\157\4\157\4\157\4\157\4\157\4\157\4\157\4\157\4\157\4\157\4\157\4\157\4\157\4\157\4\46\2\243\1\215\4\6\1\89\4\117\0\28\1\93\4\74\0\74\0\74\0\187\3\25\0\192\0\192\0\192\0\-    \\190\3\185\0\37\9\37\9\37\9\37\9\37\9\37\9\37\9\37\9\37\9\37\9\37\9\37\9\37\9\37\7\196\6\146\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\142\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\-    \\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\97\3\88\3\96\3\97\3\34\5\88\3\96\3\96\3\96\3\70\3\146\1\166\7\146\3\21\10\179\11\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\96\3\236\2\96\3\96\3\96\3\96\3\130\5\16\2\141\9\146\3\146\3\146\3\96\3\96\3\-    \\96\3\96\3\96\3\96\3\9\6\44\4\33\11\146\3\21\10\15\5\74\11\96\3\96\3\26\8\96\3\96\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\117\0\117\0\117\0\117\0\74\0\74\0\74\0\74\0\92\1\92\1\151\0\198\6\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\-    \\146\3\146\3\146\3\146\3\96\3\96\3\96\3\140\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\144\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\-    \\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\146\3\96\3\96\3\96\3\96\3\96\3\96\3\142\3\56\4\117\0\27\1\117\0\27\1\207\11\74\0\101\4\74\0\101\4\135\0\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\117\0\117\0\117\0\117\0\117\0\-    \\117\0\74\0\74\0\74\0\74\0\74\0\74\0\192\0\192\0\192\0\192\0\75\9\228\0\192\0\192\0\192\0\192\0\192\0\192\0\191\0\239\0\192\0\192\0\192\0\192\0\192\0\192\0\22\1\117\0\117\0\117\0\23\1\40\4\74\0\74\0\74\0\74\0\74\0\178\4\181\2\157\4\157\4\157\4\157\4\183\2\215\11\146\3\96\3\96\3\96\3\-    \\106\3\205\0\146\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\164\6\146\3\146\3\146\3\182\5\182\5\182\5\182\5\182\5\182\5\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\-    \\146\3\157\4\157\4\157\4\157\4\157\4\157\4\157\4\157\4\157\4\157\4\158\4\244\3\157\4\157\4\157\4\157\4\157\4\160\4\61\2\48\4\62\2\197\6\146\3\179\2\181\2\157\4\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\38\6\146\3\35\6\135\9\96\3\70\6\97\3\73\6\90\3\96\3\96\3\96\3\96\3\-    \\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\127\9\142\2\132\9\146\3\172\9\96\3\96\3\96\3\96\3\96\3\96\3\96\3\90\5\48\4\48\4\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\236\2\96\3\96\3\96\3\96\3\96\3\96\3\86\2\146\3\146\3\146\3\146\3\96\3\229\6\48\4\252\11\48\4\48\4\-    \\193\10\22\3\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\239\3\48\4\48\4\48\4\97\2\195\1\195\1\205\1\48\4\48\4\48\4\48\4\96\2\193\10\48\4\48\4\48\4\48\4\49\4\146\3\146\3\146\3\48\4\53\4\146\3\146\3\92\1\92\1\92\1\92\1\92\1\92\1\92\1\184\7\48\4\48\4\48\4\48\4\48\4\-    \\48\4\48\4\48\4\48\4\180\7\92\1\92\1\96\3\96\3\104\6\110\6\96\3\96\3\96\3\171\11\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\234\7\92\1\92\1\141\0\92\1\92\1\92\1\92\1\92\1\183\7\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\-    \\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\50\4\146\3\146\3\146\3\146\3\146\3\146\3\243\4\48\4\48\4\48\4\48\4\48\4\52\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\52\4\146\3\48\4\49\4\92\2\48\4\92\2\48\4\92\2\48\4\48\4\48\4\50\4\146\3\96\3\-    \\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\143\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\140\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\-    \\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\80\5\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\103\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\-    \\96\3\8\7\199\2\91\1\92\1\226\7\96\3\96\3\48\4\54\4\117\0\117\0\117\0\117\0\117\0\117\0\117\0\117\0\117\0\117\0\31\1\126\0\192\0\192\0\192\0\192\0\192\0\192\0\192\0\192\0\192\0\192\0\192\0\192\0\192\0\192\0\192\0\192\0\192\0\192\0\240\0\188\3\192\0\192\0\192\0\192\0\192\0\192\0\192\0\192\0\-    \\192\0\192\0\192\0\192\0\193\0\193\0\236\0\192\0\192\0\192\0\192\0\192\0\9\0\0\0\21\0\66\7\62\7\194\0\16\0\189\0\58\7\120\8\125\8\193\0\11\0\192\0\192\0\126\8\192\0\192\0\192\0\192\0\192\0\192\0\242\0\64\7\197\0\192\0\74\0\74\0\74\0\74\0\74\0\74\0\74\0\74\0\83\0\74\0\74\0\74\0\-    \\134\2\134\2\35\10\134\2\140\2\142\2\137\2\146\2\142\2\142\2\143\2\134\2\230\5\192\0\236\0\192\0\192\0\192\0\192\0\192\0\192\0\192\0\186\3\233\5\192\0\152\2\232\0\192\0\192\0\4\0\6\0\192\0\196\0\58\5\53\5\59\5\146\3\146\3\165\1\81\10\96\3\96\3\96\3\105\6\93\1\146\3\96\3\96\3\3\6\157\4\-    \\67\9\9\2\146\3\146\3\96\3\96\3\111\11\9\2\146\3\146\3\146\3\146\3\96\3\96\3\105\6\227\7\146\3\146\3\96\3\96\3\97\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\92\1\92\1\92\1\224\7\96\3\96\3\96\3\96\3\96\3\212\6\144\3\146\3\146\3\146\3\146\3\146\3\146\3\-    \\146\3\146\3\177\2\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\70\1\67\3\68\3\68\3\68\3\68\3\68\3\68\3\11\2\143\11\134\2\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\149\11\146\3\23\8\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\117\0\117\0\117\0\117\0\74\0\74\0\74\0\74\0\-    \\92\1\92\1\151\0\198\6\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\108\8\108\8\108\8\108\8\241\5\150\7\21\10\27\10\116\0\117\0\117\0\88\8\73\0\74\0\74\0\101\8\108\8\108\8\108\8\108\8\2\2\102\0\230\4\109\0\117\0\117\0\118\0\90\4\74\0\74\0\75\0\74\0\217\3\180\1\-    \\157\4\151\6\96\3\96\3\96\3\96\3\118\1\6\6\157\4\157\4\21\10\43\1\1\6\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\33\2\247\3\77\1\89\7\21\10\116\10\199\2\201\2\0\6\96\3\96\3\96\3\157\4\157\4\157\4\233\2\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\-    \\3\6\157\4\174\2\146\3\21\10\101\7\96\3\96\3\96\3\6\6\84\1\68\4\96\3\96\3\3\6\223\2\221\2\225\2\199\2\200\2\96\3\96\3\96\3\38\2\96\3\143\3\96\3\96\3\96\3\139\3\30\6\157\4\96\3\96\3\96\3\96\3\96\3\125\1\157\4\157\4\222\9\157\4\157\4\157\4\188\6\96\3\96\3\96\3\96\3\96\3\-    \\96\3\49\1\156\4\148\5\8\6\96\3\125\4\21\10\117\1\96\3\140\8\38\5\35\5\96\3\96\3\94\3\77\6\18\6\215\1\155\3\147\3\109\3\137\6\21\10\49\10\55\10\24\2\106\3\35\5\96\3\96\3\94\3\116\3\240\7\78\3\230\2\4\10\206\4\37\1\21\10\93\7\146\3\24\2\98\3\93\3\96\3\96\3\94\3\91\3\18\6\-    \\43\3\41\11\145\3\146\3\137\6\21\10\84\2\216\2\49\3\38\5\35\5\96\3\96\3\94\3\91\3\249\6\215\1\127\7\13\2\109\3\137\6\21\10\63\10\146\3\83\3\119\4\103\3\112\3\65\5\119\4\96\3\68\5\160\5\220\0\45\5\146\3\37\1\21\10\185\7\113\2\3\7\99\3\94\3\96\3\96\3\94\3\96\3\139\4\19\2\56\8\-    \\45\6\40\5\137\6\21\10\56\4\143\0\197\8\99\3\94\3\96\3\96\3\94\3\100\3\249\6\154\5\75\3\149\3\63\5\137\6\21\10\131\3\146\3\225\6\99\3\94\3\96\3\96\3\96\3\96\3\112\7\252\7\160\8\27\8\93\1\137\6\21\10\92\1\101\6\49\3\96\3\97\3\236\2\96\3\96\3\93\3\74\6\97\3\213\0\75\8\68\3\-    \\37\1\21\10\72\5\146\3\95\3\96\3\96\3\96\3\96\3\96\3\181\6\59\8\120\1\9\6\21\10\201\5\146\3\146\3\146\3\146\3\112\3\101\3\96\3\96\3\207\4\96\3\181\6\190\2\175\9\7\5\21\10\116\8\146\3\146\3\146\3\146\3\166\8\199\2\171\8\58\2\21\10\80\7\84\7\73\10\96\3\95\3\96\3\96\3\96\3\141\3\-    \\181\2\127\1\49\11\4\6\157\4\181\2\157\4\157\4\157\4\47\7\60\2\190\7\43\4\8\2\146\3\146\3\146\3\146\3\96\3\96\3\96\3\96\3\96\3\72\8\155\4\35\8\21\10\212\9\125\5\40\8\116\7\25\7\144\4\96\3\55\3\55\1\21\10\143\6\117\0\117\0\117\0\117\0\24\1\201\6\74\0\74\0\74\0\74\0\74\0\174\3\-    \\96\3\96\3\100\1\61\5\96\3\96\3\172\1\146\3\96\3\96\3\159\2\146\3\96\3\99\3\161\3\146\3\96\3\96\3\96\3\96\3\96\3\96\3\42\8\221\6\100\9\156\4\111\1\249\2\21\10\179\11\92\1\229\7\85\9\218\9\21\10\179\11\96\3\96\3\96\3\96\3\106\7\96\3\96\3\96\3\96\3\96\3\96\3\145\3\110\7\96\3\-    \\96\3\96\3\96\3\173\2\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\140\3\146\3\96\3\96\3\2\6\90\10\96\3\96\3\96\3\96\3\96\3\96\3\84\10\7\5\205\8\144\5\141\5\226\2\21\10\179\11\21\10\179\11\63\4\221\8\157\4\251\8\157\4\7\5\146\3\146\3\146\3\146\3\146\3\146\3\187\6\96\3\96\3\96\3\-    \\96\3\96\3\151\4\135\5\104\9\141\3\21\10\212\9\47\4\244\3\161\4\196\7\60\3\96\3\96\3\96\3\254\6\132\1\21\10\101\7\96\3\96\3\96\3\96\3\149\4\213\8\254\3\59\4\96\3\96\3\96\3\96\3\64\3\140\5\55\11\60\4\21\10\24\5\21\10\101\7\96\3\96\3\96\3\59\0\74\0\60\5\117\0\117\0\117\0\117\0\-    \\117\0\18\1\199\2\146\3\51\11\157\4\155\4\137\1\138\1\159\1\74\0\74\0\74\0\74\0\74\0\130\2\134\2\134\2\134\2\134\2\134\2\134\2\134\2\184\3\74\0\186\3\74\0\74\0\74\0\131\2\134\2\134\2\134\2\134\2\157\4\157\4\157\4\157\4\157\4\157\4\157\4\157\4\74\0\117\0\126\0\31\1\74\0\117\0\74\0\117\0\-    \\126\0\31\1\74\0\111\4\74\0\117\0\74\0\126\0\74\0\31\12\74\0\31\12\74\0\31\12\98\4\95\0\163\10\157\10\128\0\252\0\74\0\224\5\132\0\72\7\174\5\179\5\135\7\6\4\199\2\251\1\199\2\92\9\145\7\199\2\141\7\243\8\185\5\182\5\171\10\177\10\92\1\25\4\134\2\165\9\241\6\241\6\241\6\241\6\85\2\146\3\-    \\157\4\6\9\1\9\157\4\119\9\146\3\202\3\53\7\132\8\196\3\165\4\171\4\200\0\180\0\100\2\106\2\92\1\92\1\37\9\37\9\37\9\37\9\42\9\244\11\185\10\191\10\227\3\237\3\48\4\48\4\48\4\94\2\231\3\48\4\48\4\48\4\96\2\195\1\117\0\117\0\117\0\117\0\117\0\117\0\74\0\74\0\74\0\74\0\74\0\74\0\-    \\20\0\195\0\12\0\89\0\192\0\192\0\192\0\192\0\192\0\192\0\192\0\192\0\192\0\192\0\192\0\192\0\55\9\60\9\8\12\95\10\74\0\74\0\74\0\74\0\97\4\167\6\96\3\96\3\96\3\96\3\96\3\96\3\96\3\238\1\237\1\11\2\96\3\96\3\97\3\146\3\97\3\97\3\97\3\97\3\97\3\97\3\97\3\97\3\157\4\157\4\-    \\157\4\157\4\218\10\212\10\84\9\89\9\13\4\37\0\199\2\244\10\232\8\199\2\186\1\216\5\146\3\146\3\146\3\146\3\48\4\48\4\48\4\193\7\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\52\4\146\3\116\5\17\4\204\7\208\7\36\9\10\8\223\4\47\9\95\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\-    \\96\3\96\3\97\3\9\3\80\5\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\173\0\96\3\77\2\96\3\96\3\21\10\169\11\146\3\146\3\192\0\192\0\192\0\192\0\192\0\167\2\11\9\10\6\192\0\192\0\192\0\52\2\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\31\7\37\9\82\9\146\3\251\5\254\5\-    \\96\3\96\3\31\8\197\10\182\7\114\2\96\3\96\3\96\3\96\3\96\3\96\3\192\6\146\3\29\7\96\3\96\3\96\3\96\3\96\3\64\3\68\3\166\5\57\4\21\10\179\11\157\4\157\4\147\4\246\5\21\10\101\7\96\3\96\3\3\6\78\9\96\3\96\3\2\6\157\4\254\3\56\4\96\3\96\3\96\3\141\3\188\6\96\3\96\3\96\3\-    \\96\3\96\3\54\3\83\11\198\2\248\10\21\10\205\10\166\0\96\3\21\10\131\4\96\3\96\3\96\3\96\3\96\3\184\6\62\1\146\3\254\5\33\4\21\10\226\10\96\3\96\3\15\3\121\10\96\3\96\3\96\3\96\3\96\3\96\3\152\1\107\11\173\2\146\3\146\3\80\6\96\3\79\11\65\0\146\3\237\2\237\2\237\2\146\3\97\3\97\3\-    \\74\0\74\0\74\0\74\0\74\0\179\3\74\0\193\4\74\0\74\0\74\0\74\0\74\0\74\0\74\0\74\0\74\0\74\0\96\3\96\3\96\3\96\3\109\9\114\9\21\10\179\11\39\12\39\12\39\12\39\12\39\12\39\12\39\12\39\12\39\12\39\12\39\12\39\12\39\12\39\12\39\12\39\12\39\12\39\12\39\12\39\12\39\12\39\12\39\12\39\12\-    \\39\12\39\12\39\12\39\12\39\12\39\12\39\12\39\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\157\4\157\4\86\6\236\1\157\4\157\4\7\11\16\4\13\11\215\7\-    \\156\7\230\1\236\4\158\0\99\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\210\3\244\2\150\7\21\10\27\10\116\0\117\0\117\0\88\8\73\0\74\0\74\0\30\0\21\11\96\3\118\1\96\3\96\3\96\3\96\3\27\11\96\3\96\3\96\3\97\3\236\2\236\2\236\2\27\5\-    \\74\4\29\3\146\3\190\5\224\8\92\1\92\1\92\1\92\1\92\1\154\9\48\4\37\9\37\9\37\9\37\9\37\9\37\9\149\9\187\7\48\4\255\4\48\4\51\4\55\4\146\3\146\3\146\3\146\3\146\3\48\4\48\4\48\4\48\4\48\4\196\10\96\3\96\3\96\3\96\3\227\7\26\8\96\3\96\3\122\5\108\5\96\3\96\3\96\3\96\3\-    \\3\6\21\9\96\3\96\3\96\3\238\2\96\3\96\3\96\3\96\3\142\3\96\3\69\2\146\3\146\3\146\3\146\3\146\3\117\0\117\0\117\0\117\0\117\0\74\0\74\0\74\0\74\0\74\0\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\140\3\21\10\179\11\117\0\117\0\117\0\117\0\33\1\74\0\74\0\74\0\74\0\41\6\-    \\96\3\96\3\96\3\96\3\96\3\96\3\97\3\146\3\96\3\96\3\140\3\146\3\96\3\146\3\146\3\146\3\52\0\134\2\134\2\134\2\134\2\134\2\50\0\167\9\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\140\3\94\3\96\3\96\3\96\3\96\3\98\3\31\5\96\3\96\3\238\2\92\1\96\3\96\3\81\5\150\0\96\3\96\3\-    \\96\3\97\3\231\7\92\1\146\3\146\3\146\3\146\3\146\3\146\3\96\3\96\3\135\4\140\0\62\6\178\2\100\3\95\3\96\3\96\3\140\3\254\9\92\1\230\7\199\2\237\1\96\3\96\3\96\3\152\8\96\3\96\3\96\3\105\6\146\3\146\3\146\3\146\3\96\3\102\6\96\3\96\3\134\6\140\0\200\2\146\3\96\3\96\3\96\3\96\3\-    \\96\3\96\3\140\3\62\4\96\3\96\3\140\3\92\1\96\3\96\3\143\3\92\1\96\3\96\3\144\3\116\6\146\3\142\0\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\124\10\96\3\96\3\96\3\96\3\96\3\96\3\157\4\9\6\221\8\141\0\92\1\18\5\21\10\156\1\11\2\60\3\96\3\96\3\96\3\96\3\96\3\-    \\131\5\60\11\157\6\160\6\96\3\96\3\96\3\145\3\21\10\179\11\146\4\96\3\96\3\96\3\2\6\130\1\9\5\21\10\160\7\146\3\96\3\96\3\96\3\96\3\108\10\146\3\60\3\96\3\96\3\96\3\96\3\96\3\128\5\127\1\191\6\14\9\21\10\0\11\142\0\92\1\226\7\146\3\96\3\96\3\93\3\96\3\96\3\127\5\38\3\101\10\-    \\253\2\146\3\146\3\146\3\146\3\146\3\146\3\146\3\97\3\86\3\96\3\98\3\96\3\23\12\96\3\96\3\96\3\96\3\96\3\2\6\141\5\21\9\21\10\179\11\87\11\38\5\35\5\96\3\96\3\94\3\91\3\93\11\15\8\19\8\45\5\26\8\143\1\252\9\252\9\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\-    \\146\3\146\3\146\3\146\3\146\3\146\3\96\3\96\3\96\3\96\3\96\3\96\3\126\5\157\4\136\10\193\6\21\10\101\11\144\3\146\3\146\3\146\3\96\3\96\3\96\3\96\3\96\3\96\3\141\5\137\5\55\6\146\3\21\10\179\11\146\3\146\3\146\3\146\3\96\3\96\3\96\3\96\3\96\3\96\3\141\5\37\3\149\10\146\3\21\10\179\11\-    \\199\2\196\6\146\3\146\3\96\3\96\3\96\3\96\3\96\3\202\8\128\1\23\12\21\10\179\11\146\3\146\3\146\3\146\3\146\3\146\3\96\3\96\3\96\3\8\7\132\5\58\8\21\10\124\6\97\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\-    \\146\3\146\3\96\3\96\3\96\3\96\3\96\3\127\5\157\4\222\1\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\117\0\117\0\117\0\117\0\74\0\74\0\74\0\74\0\21\10\80\7\228\7\61\5\96\3\94\3\96\3\96\3\96\3\124\5\7\5\128\1\195\6\146\3\21\10\80\7\92\1\226\7\25\11\96\3\-    \\96\3\96\3\180\2\157\4\157\4\219\6\47\8\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\97\3\93\3\96\3\96\3\96\3\96\3\45\7\3\3\175\6\146\3\21\10\179\11\98\3\94\3\96\3\96\3\96\3\121\7\50\6\145\3\21\10\179\11\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\67\8\96\3\-    \\94\3\96\3\96\3\96\3\71\8\135\11\218\8\199\2\21\10\179\11\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\145\3\146\3\92\1\92\1\183\7\236\6\233\6\48\4\54\4\56\4\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\97\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\-    \\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\145\3\96\3\96\3\96\3\97\3\21\10\205\10\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\97\3\21\10\179\11\96\3\96\3\96\3\140\3\229\11\146\3\96\3\96\3\96\3\96\3\96\3\96\3\-    \\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\140\3\146\3\146\3\146\3\146\3\146\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\143\3\96\3\141\3\96\3\145\3\96\3\143\10\28\6\146\3\146\3\146\3\-    \\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\157\4\157\4\157\4\157\4\157\4\251\9\157\4\157\4\7\5\146\3\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\52\4\146\3\146\3\146\3\146\3\146\3\146\3\146\3\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\-    \\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\50\4\146\3\48\4\48\4\48\4\48\4\49\4\92\2\48\4\48\4\48\4\48\4\48\4\48\4\209\1\20\7\24\6\196\9\13\7\161\4\48\4\48\4\48\4\16\7\48\4\48\4\48\4\48\4\48\4\48\4\-    \\48\4\53\4\146\3\146\3\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\204\9\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\92\1\92\1\227\7\146\3\92\1\92\1\227\7\146\3\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\49\4\146\3\92\1\92\1\-    \\92\1\230\7\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\117\0\117\0\117\0\95\4\74\0\74\0\86\4\117\0\117\0\91\4\98\4\74\0\74\0\117\0\117\0\117\0\95\4\74\0\74\0\246\0\204\6\11\1\91\4\169\3\99\4\74\0\117\0\117\0\117\0\95\4\74\0\74\0\-    \\74\0\74\0\77\0\86\4\117\0\117\0\120\0\74\0\74\0\75\0\84\4\117\0\117\0\118\0\74\0\74\0\74\0\82\4\117\0\117\0\117\0\124\0\74\0\74\0\79\0\163\11\21\10\21\10\21\10\21\10\21\10\21\10\74\0\85\0\74\0\38\6\33\6\42\6\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\-    \\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\7\5\157\4\157\4\46\11\52\8\21\9\134\2\134\2\134\2\134\2\134\2\134\2\134\2\164\9\146\3\146\3\146\3\11\2\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\96\3\96\3\96\3\96\3\-    \\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\94\6\92\1\7\5\146\3\146\3\146\3\146\3\146\3\100\3\96\3\96\3\96\3\120\3\95\3\101\3\211\4\125\3\202\4\120\3\200\4\120\3\101\3\101\3\206\4\96\3\93\3\96\3\142\3\28\2\93\3\-    \\96\3\142\3\146\3\146\3\146\3\146\3\146\3\146\3\241\4\146\3\53\4\146\3\48\4\48\4\48\4\48\4\48\4\52\4\48\4\55\4\54\4\146\3\50\4\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\-    \\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\13\10\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\-    \\48\4\89\2\48\4\51\4\48\4\51\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\49\4\90\2\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\54\4\48\4\52\4\55\4\146\3\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\52\4\146\3\-    \\48\4\50\4\48\4\51\4\48\4\55\4\48\4\48\4\48\4\48\4\48\4\189\7\50\4\243\4\48\4\52\4\48\4\55\4\48\4\55\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\192\7\48\4\48\4\48\4\48\4\48\4\48\4\53\4\146\3\146\3\146\3\146\3\-    \\21\10\179\11"#+    \\96\3\146\3\146\3\146\3\146\3\80\5\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\140\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\+    \\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\96\3\96\3\188\9\237\1\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\142\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\+    \\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\97\3\88\3\96\3\97\3\34\5\88\3\96\3\96\3\96\3\70\3\146\1\166\7\146\3\21\10\179\11\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\96\3\236\2\96\3\96\3\96\3\96\3\130\5\16\2\141\9\146\3\146\3\146\3\96\3\100\3\96\3\+    \\96\3\97\3\96\3\96\3\89\3\96\3\140\3\96\3\140\3\146\3\146\3\146\3\146\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\143\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\+    \\96\3\164\6\146\3\146\3\146\3\182\5\182\5\182\5\182\5\182\5\182\5\96\3\96\3\96\3\140\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\144\3\146\3\96\3\96\3\96\3\96\3\96\3\+    \\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\83\5\96\3\96\3\98\5\96\3\96\3\189\8\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\4\8\123\5\145\3\96\3\96\3\96\3\97\3\146\5\209\2\151\5\20\9\195\5\21\10\96\3\96\3\96\3\140\3\141\3\146\3\96\3\96\3\96\3\96\3\96\3\142\3\96\3\+    \\96\3\96\3\144\3\21\10\174\7\48\4\48\4\48\4\48\4\48\4\48\4\195\1\195\1\223\3\185\10\48\4\48\4\48\4\48\4\176\8\48\4\48\4\48\4\189\7\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\236\3\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\+    \\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\236\3\48\4\234\3\48\4\48\4\48\4\48\4\48\4\48\4\195\1\199\2\9\2\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\+    \\146\3\146\3\146\3\146\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\207\0\146\3\96\3\96\3\96\3\96\3\96\3\96\3\182\5\182\5\148\4\157\4\251\9\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\+    \\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\207\0\146\3\96\3\96\3\96\3\96\3\143\3\146\3\43\5\146\3\146\3\146\3\40\5\146\3\171\9\146\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\+    \\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\142\3\146\3\96\3\96\3\97\3\172\9\96\3\96\3\96\3\96\3\96\3\142\3\96\3\96\3\96\3\96\3\96\3\141\3\218\2\164\9\21\10\29\9\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\+    \\146\3\146\3\146\3\96\3\96\3\96\3\55\12\146\3\146\3\96\3\96\3\96\3\96\3\96\3\5\6\21\10\63\12\96\3\96\3\104\7\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\141\3\+    \\48\4\48\4\48\4\48\4\48\4\48\4\49\4\146\3\96\3\96\3\96\3\96\3\96\3\59\0\37\9\37\9\37\9\37\9\37\9\37\9\37\9\37\9\37\9\37\9\37\9\37\9\37\9\37\7\196\6\146\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\144\3\+    \\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\96\3\96\3\96\3\141\3\96\3\96\3\96\3\96\3\96\3\96\3\145\3\146\3\223\7\92\1\92\1\227\7\117\0\117\0\117\0\117\0\95\4\74\0\74\0\74\0\238\9\243\9\21\10\205\10\146\3\146\3\146\3\146\3\146\3\146\3\+    \\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\142\0\92\1\92\1\92\1\92\1\92\1\92\1\146\0\185\4\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\96\3\96\3\96\3\96\3\96\3\124\5\214\1\246\7\83\9\199\2\199\2\+    \\135\6\146\3\146\3\146\3\146\3\142\0\92\1\92\1\92\1\92\1\144\0\92\1\225\7\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\142\0\92\1\92\1\92\1\92\1\92\1\92\1\146\0\185\4\146\3\146\3\146\3\146\3\+    \\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\96\3\96\3\96\3\123\1\21\10\179\11\48\4\48\4\48\4\49\4\92\1\186\7\48\4\48\4\48\4\92\1\150\0\92\1\48\4\48\4\48\4\48\4\92\1\186\7\48\4\48\4\48\4\48\4\+    \\150\0\92\1\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\236\3\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\17\4\19\4\92\1\92\1\92\1\184\7\48\4\48\4\48\4\48\4\48\4\198\1\195\1\195\1\195\1\197\1\+    \\17\4\195\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\212\5\16\4\16\4\194\1\195\1\195\1\195\1\195\1\195\1\195\1\195\1\191\1\195\1\195\1\195\1\199\1\48\4\+    \\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\17\4\19\4\92\1\92\1\92\1\184\7\48\4\48\4\48\4\48\4\48\4\198\1\195\1\195\1\195\1\197\1\17\4\195\1\195\1\+    \\105\4\18\1\25\1\122\2\74\0\74\0\74\0\14\1\4\1\21\1\126\2\74\0\74\0\86\4\117\0\117\0\91\4\74\0\74\0\74\0\117\0\117\0\117\0\95\4\74\0\74\0\86\4\117\0\117\0\91\4\74\0\74\0\74\0\117\0\117\0\117\0\95\4\74\0\74\0\126\0\117\0\117\0\117\0\124\0\74\0\74\0\79\0\88\4\117\0\117\0\+    \\122\0\96\3\96\3\96\3\96\3\5\6\146\3\21\10\179\11\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\92\1\92\1\92\1\224\7\96\3\96\3\96\3\96\3\96\3\212\6\144\3\146\3\146\3\146\3\146\3\146\3\146\3\+    \\146\3\146\3\177\2\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\144\3\146\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\+    \\96\3\96\3\96\3\145\3\146\3\96\3\96\3\3\6\223\2\221\2\225\2\199\2\200\2\96\3\96\3\96\3\38\2\96\3\143\3\96\3\96\3\96\3\139\3\30\6\157\4\96\3\96\3\96\3\96\3\96\3\125\1\157\4\157\4\222\9\157\4\157\4\157\4\157\4\157\4\251\9\157\4\157\4\7\5\146\3\48\4\48\4\48\4\48\4\48\4\48\4\+    \\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\52\4\146\3\146\3\146\3\146\3\146\3\146\3\146\3\182\5\182\5\182\5\182\5\182\5\182\5\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\157\4\157\4\157\4\157\4\157\4\157\4\157\4\157\4\157\4\157\4\157\4\157\4\+    \\157\4\157\4\157\4\157\4\157\4\157\4\157\4\157\4\46\2\243\1\215\4\6\1\89\4\117\0\28\1\93\4\74\0\74\0\74\0\187\3\25\0\192\0\192\0\192\0\190\3\185\0\37\9\37\9\37\9\37\9\37\9\37\9\37\9\37\9\37\9\37\9\37\9\37\9\37\9\37\7\196\6\146\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\+    \\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\142\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\96\3\96\3\96\3\96\3\96\3\96\3\9\6\44\4\33\11\146\3\21\10\15\5\74\11\96\3\96\3\26\8\96\3\96\3\+    \\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\117\0\117\0\117\0\117\0\74\0\74\0\74\0\74\0\92\1\92\1\151\0\198\6\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\96\3\96\3\96\3\140\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\+    \\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\144\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\+    \\96\3\96\3\146\3\96\3\96\3\96\3\96\3\96\3\96\3\142\3\56\4\117\0\27\1\117\0\27\1\207\11\74\0\101\4\74\0\101\4\135\0\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\117\0\117\0\117\0\117\0\117\0\117\0\74\0\74\0\74\0\74\0\74\0\74\0\192\0\192\0\192\0\192\0\75\9\228\0\192\0\192\0\192\0\+    \\192\0\192\0\192\0\191\0\239\0\192\0\192\0\192\0\192\0\192\0\192\0\22\1\117\0\117\0\117\0\23\1\40\4\74\0\74\0\74\0\74\0\74\0\178\4\181\2\157\4\157\4\157\4\157\4\183\2\215\11\146\3\96\3\96\3\96\3\106\3\205\0\146\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\+    \\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\164\6\146\3\146\3\146\3\182\5\182\5\182\5\182\5\182\5\182\5\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\157\4\157\4\157\4\157\4\157\4\157\4\157\4\157\4\157\4\157\4\158\4\244\3\157\4\157\4\157\4\+    \\157\4\157\4\160\4\61\2\48\4\62\2\197\6\146\3\179\2\181\2\157\4\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\38\6\146\3\35\6\135\9\96\3\70\6\97\3\73\6\90\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\127\9\142\2\132\9\146\3\172\9\96\3\96\3\+    \\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\140\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\144\3\146\3\146\3\146\3\146\3\38\6\146\3\35\6\135\9\96\3\70\6\97\3\73\6\90\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\+    \\96\3\96\3\127\9\142\2\132\9\146\3\172\9\96\3\96\3\96\3\96\3\96\3\96\3\96\3\90\5\48\4\48\4\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\236\2\96\3\96\3\96\3\96\3\96\3\96\3\86\2\146\3\146\3\146\3\146\3\96\3\229\6\48\4\252\11\48\4\48\4\193\10\22\3\48\4\48\4\48\4\48\4\48\4\+    \\48\4\48\4\48\4\48\4\239\3\48\4\48\4\48\4\97\2\195\1\195\1\205\1\48\4\48\4\48\4\48\4\96\2\193\10\48\4\48\4\48\4\48\4\49\4\146\3\146\3\146\3\48\4\53\4\146\3\146\3\92\1\92\1\92\1\92\1\92\1\92\1\92\1\184\7\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\180\7\92\1\92\1\+    \\96\3\96\3\104\6\110\6\96\3\96\3\96\3\171\11\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\234\7\92\1\92\1\141\0\92\1\92\1\92\1\92\1\92\1\183\7\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\+    \\48\4\48\4\50\4\146\3\146\3\146\3\146\3\146\3\146\3\243\4\48\4\48\4\48\4\48\4\48\4\52\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\52\4\146\3\48\4\49\4\92\2\48\4\92\2\48\4\92\2\48\4\48\4\48\4\50\4\146\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\+    \\96\3\143\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\140\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\+    \\146\3\146\3\146\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\145\3\146\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\140\3\146\3\146\3\146\3\146\3\146\3\+    \\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\192\0\192\0\192\0\192\0\192\0\192\0\192\0\192\0\192\0\192\0\192\0\192\0\192\0\192\0\192\0\192\0\192\0\192\0\240\0\188\3\192\0\192\0\192\0\192\0\192\0\192\0\192\0\192\0\192\0\192\0\192\0\192\0\193\0\193\0\236\0\+    \\192\0\192\0\192\0\192\0\192\0\9\0\0\0\21\0\66\7\62\7\194\0\16\0\189\0\58\7\120\8\125\8\193\0\11\0\192\0\192\0\126\8\192\0\192\0\192\0\192\0\192\0\192\0\242\0\64\7\197\0\192\0\74\0\74\0\74\0\74\0\74\0\74\0\74\0\74\0\83\0\74\0\74\0\74\0\134\2\134\2\35\10\134\2\140\2\142\2\137\2\+    \\146\2\142\2\142\2\143\2\134\2\230\5\192\0\236\0\192\0\192\0\192\0\192\0\192\0\192\0\192\0\186\3\233\5\192\0\152\2\232\0\192\0\192\0\4\0\6\0\192\0\196\0\58\5\53\5\59\5\146\3\146\3\165\1\81\10\96\3\96\3\96\3\105\6\93\1\146\3\96\3\96\3\3\6\157\4\67\9\9\2\146\3\146\3\96\3\96\3\111\11\+    \\9\2\146\3\146\3\146\3\146\3\96\3\96\3\105\6\227\7\146\3\146\3\96\3\96\3\97\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\92\1\92\1\92\1\224\7\96\3\96\3\96\3\96\3\96\3\212\6\144\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\177\2\96\3\96\3\96\3\96\3\+    \\96\3\96\3\96\3\96\3\96\3\70\1\67\3\68\3\68\3\68\3\68\3\68\3\68\3\11\2\143\11\134\2\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\149\11\146\3\23\8\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\117\0\117\0\117\0\117\0\74\0\74\0\74\0\74\0\92\1\92\1\151\0\198\6\146\3\146\3\146\3\+    \\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\108\8\108\8\108\8\108\8\241\5\150\7\21\10\27\10\116\0\117\0\117\0\88\8\73\0\74\0\74\0\101\8\108\8\108\8\108\8\108\8\2\2\102\0\230\4\109\0\117\0\117\0\118\0\90\4\74\0\74\0\75\0\74\0\217\3\180\1\157\4\151\6\96\3\96\3\96\3\96\3\118\1\+    \\6\6\157\4\157\4\21\10\43\1\1\6\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\33\2\247\3\77\1\89\7\21\10\116\10\199\2\201\2\0\6\96\3\96\3\96\3\157\4\157\4\157\4\233\2\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\3\6\157\4\174\2\146\3\21\10\101\7\96\3\+    \\96\3\96\3\6\6\84\1\68\4\188\6\96\3\96\3\96\3\96\3\96\3\96\3\49\1\156\4\148\5\8\6\96\3\125\4\21\10\117\1\96\3\140\8\38\5\35\5\96\3\96\3\94\3\77\6\18\6\215\1\155\3\147\3\109\3\137\6\21\10\49\10\55\10\24\2\106\3\35\5\96\3\96\3\94\3\116\3\240\7\78\3\230\2\4\10\206\4\37\1\+    \\21\10\93\7\146\3\24\2\98\3\93\3\96\3\96\3\94\3\91\3\18\6\43\3\41\11\145\3\146\3\137\6\21\10\84\2\216\2\49\3\38\5\35\5\96\3\96\3\94\3\91\3\249\6\215\1\127\7\13\2\109\3\137\6\21\10\63\10\146\3\83\3\119\4\103\3\112\3\65\5\119\4\96\3\68\5\160\5\220\0\45\5\146\3\37\1\21\10\185\7\+    \\113\2\3\7\99\3\94\3\96\3\96\3\94\3\96\3\139\4\19\2\56\8\45\6\40\5\137\6\21\10\56\4\143\0\197\8\99\3\94\3\96\3\96\3\94\3\100\3\249\6\154\5\75\3\149\3\63\5\137\6\21\10\131\3\146\3\225\6\99\3\94\3\96\3\96\3\96\3\96\3\112\7\252\7\160\8\27\8\93\1\137\6\21\10\92\1\101\6\49\3\+    \\96\3\97\3\236\2\96\3\96\3\93\3\74\6\97\3\213\0\75\8\68\3\37\1\21\10\72\5\146\3\95\3\96\3\96\3\96\3\96\3\96\3\181\6\59\8\120\1\9\6\21\10\201\5\146\3\146\3\146\3\146\3\112\3\101\3\96\3\96\3\207\4\96\3\181\6\190\2\175\9\7\5\21\10\116\8\146\3\146\3\146\3\146\3\166\8\199\2\171\8\+    \\58\2\21\10\80\7\84\7\73\10\96\3\95\3\96\3\96\3\96\3\141\3\181\2\127\1\49\11\4\6\157\4\181\2\157\4\157\4\157\4\47\7\60\2\190\7\43\4\8\2\146\3\146\3\146\3\146\3\96\3\96\3\96\3\96\3\96\3\72\8\155\4\35\8\21\10\212\9\125\5\40\8\116\7\25\7\144\4\96\3\55\3\55\1\21\10\143\6\117\0\+    \\117\0\117\0\117\0\24\1\201\6\74\0\74\0\74\0\74\0\74\0\174\3\96\3\96\3\103\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\8\7\199\2\91\1\92\1\226\7\96\3\96\3\48\4\54\4\117\0\117\0\117\0\117\0\117\0\117\0\117\0\117\0\117\0\117\0\31\1\126\0\96\3\96\3\100\1\61\5\96\3\96\3\172\1\+    \\146\3\96\3\96\3\159\2\146\3\96\3\99\3\161\3\146\3\96\3\96\3\96\3\96\3\96\3\96\3\42\8\221\6\100\9\156\4\111\1\249\2\21\10\179\11\92\1\229\7\85\9\218\9\21\10\179\11\96\3\96\3\96\3\96\3\106\7\96\3\96\3\96\3\96\3\96\3\96\3\145\3\110\7\96\3\96\3\96\3\96\3\173\2\96\3\96\3\96\3\+    \\96\3\96\3\96\3\96\3\96\3\140\3\146\3\96\3\96\3\2\6\90\10\96\3\96\3\96\3\96\3\96\3\96\3\84\10\7\5\205\8\144\5\141\5\226\2\21\10\179\11\21\10\179\11\63\4\221\8\157\4\251\8\157\4\7\5\146\3\146\3\146\3\146\3\146\3\146\3\187\6\96\3\96\3\96\3\96\3\96\3\151\4\135\5\104\9\141\3\21\10\+    \\212\9\47\4\244\3\161\4\196\7\60\3\96\3\96\3\96\3\254\6\132\1\21\10\101\7\96\3\96\3\96\3\96\3\149\4\213\8\254\3\59\4\96\3\96\3\96\3\96\3\64\3\140\5\55\11\60\4\21\10\24\5\21\10\101\7\96\3\96\3\96\3\59\0\74\0\60\5\117\0\117\0\117\0\117\0\117\0\18\1\199\2\146\3\51\11\157\4\155\4\+    \\137\1\138\1\159\1\74\0\74\0\74\0\74\0\74\0\130\2\134\2\134\2\134\2\134\2\134\2\134\2\134\2\184\3\74\0\186\3\74\0\74\0\74\0\131\2\134\2\134\2\134\2\134\2\157\4\157\4\157\4\157\4\157\4\157\4\157\4\157\4\74\0\117\0\126\0\31\1\74\0\117\0\74\0\117\0\126\0\31\1\74\0\111\4\74\0\117\0\74\0\+    \\126\0\74\0\31\12\74\0\31\12\74\0\31\12\98\4\95\0\163\10\157\10\128\0\252\0\74\0\224\5\132\0\72\7\174\5\179\5\135\7\6\4\199\2\251\1\199\2\92\9\145\7\199\2\141\7\243\8\185\5\182\5\171\10\177\10\92\1\25\4\134\2\165\9\241\6\241\6\241\6\241\6\85\2\146\3\157\4\6\9\1\9\157\4\119\9\146\3\202\3\+    \\53\7\132\8\196\3\165\4\171\4\200\0\180\0\100\2\106\2\92\1\92\1\37\9\37\9\37\9\37\9\42\9\244\11\185\10\191\10\227\3\237\3\48\4\48\4\48\4\94\2\231\3\48\4\48\4\48\4\96\2\195\1\117\0\117\0\117\0\117\0\117\0\117\0\74\0\74\0\74\0\74\0\74\0\74\0\20\0\195\0\12\0\89\0\192\0\192\0\192\0\+    \\192\0\192\0\192\0\192\0\192\0\192\0\192\0\192\0\192\0\55\9\60\9\8\12\95\10\74\0\74\0\74\0\74\0\97\4\167\6\96\3\96\3\96\3\96\3\96\3\96\3\96\3\238\1\237\1\11\2\96\3\96\3\97\3\146\3\97\3\97\3\97\3\97\3\97\3\97\3\97\3\97\3\157\4\157\4\157\4\157\4\218\10\212\10\84\9\89\9\13\4\+    \\37\0\199\2\244\10\232\8\199\2\186\1\216\5\146\3\146\3\146\3\146\3\48\4\48\4\48\4\193\7\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\52\4\146\3\116\5\17\4\204\7\208\7\36\9\10\8\223\4\47\9\95\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\97\3\9\3\80\5\96\3\96\3\+    \\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\173\0\96\3\77\2\96\3\96\3\21\10\169\11\146\3\146\3\192\0\192\0\192\0\192\0\192\0\167\2\11\9\10\6\192\0\192\0\192\0\52\2\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\31\7\37\9\82\9\146\3\251\5\254\5\96\3\96\3\31\8\197\10\182\7\114\2\96\3\+    \\96\3\96\3\96\3\96\3\96\3\192\6\146\3\29\7\96\3\96\3\96\3\96\3\96\3\64\3\68\3\166\5\57\4\21\10\179\11\157\4\157\4\147\4\246\5\21\10\101\7\96\3\96\3\3\6\78\9\96\3\96\3\2\6\157\4\254\3\56\4\96\3\96\3\96\3\141\3\188\6\96\3\96\3\96\3\96\3\96\3\54\3\83\11\198\2\248\10\21\10\+    \\205\10\166\0\96\3\21\10\131\4\96\3\96\3\96\3\96\3\96\3\184\6\62\1\146\3\254\5\33\4\21\10\226\10\96\3\96\3\15\3\121\10\96\3\96\3\96\3\96\3\96\3\96\3\152\1\107\11\173\2\146\3\146\3\80\6\96\3\79\11\65\0\146\3\237\2\237\2\237\2\146\3\97\3\97\3\74\0\74\0\74\0\74\0\74\0\179\3\74\0\+    \\193\4\74\0\74\0\74\0\74\0\74\0\74\0\74\0\74\0\74\0\74\0\96\3\96\3\96\3\96\3\109\9\114\9\21\10\179\11\39\12\39\12\39\12\39\12\39\12\39\12\39\12\39\12\39\12\39\12\39\12\39\12\39\12\39\12\39\12\39\12\39\12\39\12\39\12\39\12\39\12\39\12\39\12\39\12\39\12\39\12\39\12\39\12\39\12\39\12\39\12\+    \\39\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\47\12\157\4\157\4\86\6\236\1\157\4\157\4\7\11\16\4\13\11\215\7\156\7\230\1\236\4\158\0\99\3\96\3\96\3\+    \\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\210\3\244\2\150\7\21\10\27\10\116\0\117\0\117\0\88\8\73\0\74\0\74\0\30\0\21\11\96\3\118\1\96\3\96\3\96\3\96\3\27\11\96\3\96\3\96\3\97\3\236\2\236\2\236\2\27\5\74\4\29\3\146\3\190\5\224\8\92\1\92\1\+    \\92\1\92\1\92\1\154\9\48\4\37\9\37\9\37\9\37\9\37\9\37\9\149\9\187\7\48\4\255\4\48\4\51\4\55\4\146\3\146\3\146\3\146\3\146\3\48\4\48\4\48\4\48\4\48\4\196\10\96\3\96\3\96\3\96\3\227\7\26\8\96\3\96\3\122\5\108\5\96\3\96\3\96\3\96\3\3\6\21\9\96\3\96\3\96\3\238\2\96\3\+    \\96\3\96\3\96\3\142\3\96\3\69\2\146\3\146\3\146\3\146\3\146\3\117\0\117\0\117\0\117\0\117\0\74\0\74\0\74\0\74\0\74\0\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\140\3\21\10\179\11\117\0\117\0\117\0\117\0\33\1\74\0\74\0\74\0\74\0\41\6\96\3\96\3\96\3\96\3\96\3\96\3\97\3\+    \\146\3\96\3\96\3\140\3\146\3\96\3\146\3\146\3\146\3\52\0\134\2\134\2\134\2\134\2\134\2\50\0\167\9\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\140\3\94\3\96\3\96\3\96\3\96\3\98\3\31\5\96\3\96\3\238\2\92\1\96\3\96\3\81\5\150\0\96\3\96\3\96\3\97\3\231\7\92\1\146\3\146\3\146\3\+    \\146\3\146\3\146\3\96\3\96\3\135\4\140\0\62\6\178\2\100\3\95\3\96\3\96\3\140\3\254\9\92\1\230\7\199\2\237\1\96\3\96\3\96\3\152\8\96\3\96\3\96\3\105\6\146\3\146\3\146\3\146\3\96\3\102\6\96\3\96\3\134\6\140\0\200\2\146\3\96\3\96\3\96\3\96\3\96\3\96\3\140\3\62\4\96\3\96\3\140\3\+    \\92\1\96\3\96\3\143\3\92\1\96\3\96\3\144\3\116\6\146\3\142\0\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\145\3\146\3\146\3\146\3\146\3\146\3\146\3\117\0\117\0\117\0\117\0\117\0\117\0\34\1\146\3\74\0\74\0\74\0\74\0\74\0\+    \\74\0\42\6\141\0\124\10\96\3\96\3\96\3\96\3\96\3\96\3\157\4\9\6\221\8\141\0\92\1\18\5\21\10\156\1\11\2\60\3\96\3\96\3\96\3\96\3\96\3\131\5\60\11\157\6\160\6\96\3\96\3\96\3\145\3\21\10\179\11\146\4\96\3\96\3\96\3\2\6\130\1\9\5\21\10\160\7\146\3\96\3\96\3\96\3\96\3\108\10\+    \\146\3\60\3\96\3\96\3\96\3\96\3\96\3\128\5\127\1\191\6\14\9\21\10\0\11\142\0\92\1\226\7\146\3\96\3\96\3\93\3\96\3\96\3\127\5\38\3\101\10\253\2\146\3\146\3\146\3\146\3\146\3\146\3\146\3\97\3\86\3\96\3\98\3\96\3\23\12\96\3\96\3\96\3\96\3\96\3\2\6\141\5\21\9\21\10\179\11\87\11\+    \\38\5\35\5\96\3\96\3\94\3\91\3\93\11\15\8\19\8\45\5\26\8\143\1\252\9\252\9\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\96\3\96\3\96\3\96\3\96\3\96\3\126\5\157\4\136\10\193\6\21\10\101\11\144\3\146\3\146\3\146\3\96\3\96\3\96\3\+    \\96\3\96\3\96\3\141\5\137\5\55\6\146\3\21\10\179\11\146\3\146\3\146\3\146\3\96\3\96\3\96\3\96\3\96\3\96\3\141\5\37\3\149\10\146\3\21\10\179\11\199\2\196\6\146\3\146\3\96\3\96\3\96\3\96\3\96\3\202\8\128\1\23\12\21\10\179\11\146\3\146\3\146\3\146\3\146\3\146\3\96\3\96\3\96\3\8\7\132\5\+    \\58\8\21\10\124\6\97\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\96\3\96\3\96\3\96\3\96\3\127\5\157\4\222\1\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\117\0\117\0\117\0\+    \\117\0\74\0\74\0\74\0\74\0\21\10\80\7\228\7\61\5\96\3\94\3\96\3\96\3\96\3\124\5\7\5\128\1\195\6\146\3\21\10\80\7\92\1\226\7\25\11\96\3\96\3\96\3\180\2\157\4\157\4\219\6\47\8\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\97\3\93\3\96\3\96\3\96\3\96\3\45\7\3\3\175\6\+    \\146\3\21\10\179\11\98\3\94\3\96\3\96\3\96\3\121\7\50\6\145\3\21\10\179\11\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\67\8\96\3\94\3\96\3\96\3\96\3\71\8\135\11\218\8\199\2\21\10\179\11\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\145\3\146\3\92\1\92\1\183\7\+    \\236\6\233\6\48\4\54\4\56\4\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\97\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\145\3\96\3\96\3\96\3\97\3\21\10\+    \\205\10\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\97\3\21\10\179\11\96\3\96\3\96\3\140\3\229\11\146\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\143\3\96\3\141\3\96\3\145\3\96\3\143\10\28\6\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\+    \\146\3\48\4\48\4\48\4\48\4\49\4\92\2\48\4\48\4\48\4\48\4\48\4\48\4\209\1\20\7\24\6\196\9\13\7\161\4\48\4\48\4\48\4\16\7\48\4\48\4\48\4\48\4\48\4\48\4\48\4\53\4\146\3\146\3\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\204\9\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\+    \\146\3\146\3\146\3\146\3\146\3\146\3\146\3\92\1\92\1\227\7\146\3\92\1\92\1\227\7\146\3\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\49\4\146\3\92\1\92\1\92\1\230\7\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\117\0\117\0\117\0\+    \\95\4\74\0\74\0\86\4\117\0\117\0\91\4\98\4\74\0\74\0\117\0\117\0\117\0\95\4\74\0\74\0\246\0\204\6\11\1\91\4\169\3\99\4\74\0\117\0\117\0\117\0\95\4\74\0\74\0\74\0\74\0\77\0\86\4\117\0\117\0\120\0\74\0\74\0\75\0\84\4\117\0\117\0\118\0\74\0\74\0\74\0\82\4\117\0\117\0\117\0\+    \\124\0\74\0\74\0\79\0\163\11\21\10\21\10\21\10\21\10\21\10\21\10\74\0\85\0\74\0\38\6\33\6\42\6\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\7\5\157\4\157\4\46\11\52\8\21\9\134\2\+    \\134\2\134\2\134\2\134\2\134\2\134\2\164\9\146\3\146\3\146\3\11\2\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\96\3\94\6\+    \\92\1\7\5\146\3\146\3\146\3\146\3\146\3\100\3\96\3\96\3\96\3\120\3\95\3\101\3\211\4\125\3\202\4\120\3\200\4\120\3\101\3\101\3\206\4\96\3\93\3\96\3\142\3\28\2\93\3\96\3\142\3\146\3\146\3\146\3\146\3\146\3\146\3\241\4\146\3\53\4\146\3\48\4\48\4\48\4\48\4\48\4\52\4\48\4\55\4\54\4\+    \\146\3\50\4\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\+    \\48\4\48\4\13\10\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\89\2\48\4\51\4\48\4\51\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\49\4\+    \\90\2\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\54\4\48\4\52\4\55\4\146\3\48\4\52\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\146\3\48\4\54\4\48\4\48\4\48\4\48\4\48\4\146\3\48\4\48\4\48\4\50\4\54\4\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\146\3\48\4\+    \\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\52\4\146\3\48\4\50\4\48\4\51\4\48\4\55\4\48\4\48\4\48\4\48\4\48\4\189\7\50\4\243\4\48\4\52\4\48\4\55\4\48\4\55\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\48\4\192\7\+    \\48\4\48\4\48\4\48\4\48\4\48\4\53\4\146\3\146\3\146\3\146\3\21\10\179\11"#  generalCategoryOffsets2BitMap :: Ptr Word16 generalCategoryOffsets2BitMap = Ptr-    "\112\9\149\8\180\8\140\5\159\6\185\6\144\9\176\9\208\9\240\9\16\10\48\10\80\10\112\10\144\10\176\10\208\10\27\5\188\0\92\8\213\3\27\5\232\3\240\10\16\11\174\1\48\11\80\11\112\11\144\11\124\8\176\11\208\11\240\11\81\4\104\7\133\7\235\1\221\1\51\4\129\4\97\4\81\4\202\1\16\12\48\12\80\12\126\0\112\12\64\0\-    \\8\4\129\4\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\102\0\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\-    \\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\-    \\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\94\0\27\5\27\5\27\5\223\2\27\5\144\12\210\8\176\12\208\12\240\12\16\13\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\-    \\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\130\2\48\13\48\13\48\13\48\13\48\13\48\13\48\13\48\13\80\13\80\13\80\13\80\13\80\13\80\13\80\13\80\13\80\13\80\13\80\13\80\13\80\13\80\13\80\13\80\13\80\13\80\13\80\13\80\13\80\13\80\13\80\13\80\13\80\13\27\5\-    \\142\1\45\7\27\5\72\7\112\13\144\13\44\1\176\13\35\3\208\13\240\13\127\6\27\5\16\14\48\14\165\7\80\14\112\14\80\5\231\4\251\4\242\8\144\14\176\14\208\14\240\14\16\15\108\3\48\15\80\15\112\15\236\5\0\0\11\2\144\15\176\15\12\1\208\15\27\5\27\5\27\5\15\3\255\2\255\0\8\1\8\1\8\1\8\1\8\1\8\1\-    \\8\1\8\1\8\1\27\2\27\5\27\5\27\5\27\5\59\2\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\27\5\27\5\240\15\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\-    \\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\27\5\27\5\16\16\12\6\8\1\8\1\36\6\49\9\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\101\6\27\5\27\5\27\5\27\5\48\16\30\0\8\1\8\1\-    \\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\32\0\27\5\105\2\119\2\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\80\16\8\1\8\1\8\1\8\1\8\1\-    \\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\112\16\144\16\176\16\208\16\240\16\16\17\180\4\199\4\48\17\129\4\129\4\13\7\8\1\8\1\8\1\8\1\80\17\112\17\162\2\176\2\8\1\181\3\8\1\8\1\205\5\144\17\67\3\8\1\8\1\85\3\140\3\176\17\8\1\225\7\196\7\208\17\240\17\-    \\129\4\129\4\16\18\48\18\156\0\129\4\80\18\112\18\8\1\8\1\8\1\8\1\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\-    \\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\-    \\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\-    \\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\223\0\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\215\0\108\1\27\5\27\5\27\5\-    \\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\120\1\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\61\5\8\1\8\1\-    \\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\8\1\27\5\27\5\30\8\8\1\8\1\8\1\8\1\8\1\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\66\1\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\27\5\-    \\27\5\27\5\27\5\76\1\112\5\134\5"#+    "\205\9\242\8\17\9\214\5\193\6\219\6\237\9\13\10\125\5\45\10\77\10\109\10\141\10\173\10\205\10\237\10\13\11\0\1\188\0\45\11\255\0\0\1\239\1\77\11\109\11\15\2\141\11\173\11\205\11\237\11\217\8\13\12\45\12\77\12\127\4\197\7\226\7\76\2\62\2\97\4\175\4\143\4\127\4\43\2\109\12\141\12\173\12\126\0\205\12\64\0\+    \\54\4\175\4\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\102\0\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\+    \\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\+    \\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\94\0\0\1\0\1\0\1\64\3\0\1\237\12\47\9\13\13\45\13\77\13\109\13\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\+    \\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\227\2\141\13\141\13\141\13\141\13\141\13\141\13\141\13\141\13\173\13\173\13\173\13\173\13\173\13\173\13\173\13\173\13\173\13\173\13\173\13\173\13\173\13\173\13\173\13\173\13\173\13\173\13\173\13\173\13\173\13\173\13\173\13\173\13\173\13\0\1\+    \\106\7\79\7\0\1\165\7\205\13\237\13\141\1\13\14\132\3\45\14\77\14\161\6\0\1\109\14\141\14\2\8\173\14\205\14\237\14\21\5\41\5\79\9\13\15\45\15\77\15\109\15\141\15\205\3\173\15\205\15\237\15\109\1\0\0\108\2\13\16\45\16\33\1\77\16\0\1\0\1\0\1\112\3\96\3\65\1\74\1\74\1\74\1\74\1\74\1\74\1\+    \\74\1\74\1\74\1\124\2\0\1\0\1\0\1\0\1\156\2\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\0\1\0\1\109\16\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\+    \\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\0\1\0\1\141\16\46\6\74\1\74\1\70\6\142\9\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\135\6\0\1\0\1\0\1\0\1\6\1\30\0\74\1\74\1\+    \\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\32\0\0\1\202\2\216\2\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\173\16\74\1\74\1\74\1\74\1\74\1\+    \\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\154\5\156\0\205\16\237\16\13\17\45\17\226\4\245\4\77\17\175\4\175\4\47\7\74\1\74\1\74\1\74\1\109\17\141\17\3\3\17\3\74\1\22\4\74\1\74\1\78\1\173\17\164\3\74\1\74\1\182\3\237\3\205\17\74\1\62\8\33\8\237\17\13\18\+    \\175\4\175\4\45\18\77\18\109\18\175\4\141\18\173\18\74\1\74\1\74\1\74\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\+    \\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\+    \\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\+    \\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\223\0\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\215\0\205\1\0\1\0\1\0\1\+    \\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\217\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\95\5\0\1\0\1\+    \\21\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\74\1\0\1\0\1\29\1\74\1\74\1\74\1\74\1\74\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\163\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\0\1\+    \\0\1\0\1\0\1\173\1\186\5\208\5"# 
lib/Unicode/Internal/Char/UnicodeData/SimpleLowerCaseMapping.hs view
@@ -1,4 +1,4 @@--- autogenerated from https://www.unicode.org/Public/15.0.0/ucd/UnicodeData.txt+-- autogenerated from https://www.unicode.org/Public/15.1.0/ucd/UnicodeData.txt -- | -- Module      : Unicode.Internal.Char.UnicodeData.SimpleLowerCaseMapping -- Copyright   : (c) 2020 Composewell Technologies and Contributors
lib/Unicode/Internal/Char/UnicodeData/SimpleTitleCaseMapping.hs view
@@ -1,4 +1,4 @@--- autogenerated from https://www.unicode.org/Public/15.0.0/ucd/UnicodeData.txt+-- autogenerated from https://www.unicode.org/Public/15.1.0/ucd/UnicodeData.txt -- | -- Module      : Unicode.Internal.Char.UnicodeData.SimpleTitleCaseMapping -- Copyright   : (c) 2020 Composewell Technologies and Contributors
lib/Unicode/Internal/Char/UnicodeData/SimpleUpperCaseMapping.hs view
@@ -1,4 +1,4 @@--- autogenerated from https://www.unicode.org/Public/15.0.0/ucd/UnicodeData.txt+-- autogenerated from https://www.unicode.org/Public/15.1.0/ucd/UnicodeData.txt -- | -- Module      : Unicode.Internal.Char.UnicodeData.SimpleUpperCaseMapping -- Copyright   : (c) 2020 Composewell Technologies and Contributors
lib/Unicode/Internal/Char/Version.hs view
@@ -13,8 +13,8 @@ import Data.Version (Version, makeVersion)  -- | Version of the Unicode standard used by this package:--- [15.0.0](https://www.unicode.org/versions/Unicode15.0.0/).+-- [15.1.0](https://www.unicode.org/versions/Unicode15.1.0/). -- -- @since 0.3.0 unicodeVersion :: Version-unicodeVersion = makeVersion [15,0,0]+unicodeVersion = makeVersion [15,1,0]
test/ICU/CharSpec.hs view
@@ -26,6 +26,10 @@             "charType"             (GeneralCategory . U.generalCategory)             (GeneralCategory . ICU.toGeneralCategory . ICU.charType)+        checkAndGatherErrors+            "isNoncharacter"+            (GeneralCategory . U.isNoncharacter)+            (GeneralCategory . ICU.isNoncharacter)     -- TODO: other functions     where     ourUnicodeVersion = versionBranch U.unicodeVersion
test/Unicode/CharSpec.hs view
@@ -12,12 +12,6 @@ import Data.Maybe (isJust) import qualified Unicode.Char as UChar import qualified Unicode.Char.General.Blocks as UBlocks--- [TODO] Remove the following qualified imports once isLetter and isSpace---        are removed from Unicode.Char.General-import qualified Unicode.Char.General.Compat as UCharCompat--- [TODO] Remove the following qualified imports once isUpper and isLower---        are removed from Unicode.Char.Case-import qualified Unicode.Char.Case.Compat as UCharCompat import qualified Unicode.Char.Numeric as UNumeric import qualified Unicode.Char.Numeric.Compat as UNumericCompat import qualified Unicode.Internal.Char.UnicodeData.GeneralCategory as UC@@ -134,7 +128,7 @@         Char.chr UC.MaxIsLetter `shouldBe` maxCodePointBy isLetterRef         UC.MaxIsLetter `shouldSatisfy` isPlane0To3       it "Compare to base" do-        UCharCompat.isLetter `shouldBeEqualToV` Char.isLetter+        UChar.isLetter `shouldBeEqualToV` Char.isLetter     it "isMark" do       UChar.isMark `shouldBeEqualToV` Char.isMark     it "isPrint" do@@ -158,7 +152,7 @@         Char.chr UC.MaxIsSpace `shouldBe` maxCodePointBy isSpaceRef         UC.MaxIsSpace `shouldSatisfy` isPlane0To3       it "Compare to base" do-        UCharCompat.isSpace `shouldBeEqualToV` Char.isSpace+        UChar.isSpace `shouldBeEqualToV` Char.isSpace     it "isSymbol" do       UChar.isSymbol `shouldBeEqualToV` Char.isSymbol   describe "Case" do@@ -168,7 +162,7 @@         Char.chr UC.MaxIsLower `shouldBe` maxCodePointBy isLowerRef         UC.MaxIsLower `shouldSatisfy` isPlane0To3       it "Compare to base" do-          UCharCompat.isLower `shouldBeEqualToV` Char.isLower+          UChar.isLower `shouldBeEqualToV` Char.isLower #if MIN_VERSION_base(4,18,0)     it "isLowerCase" do       UChar.isLowerCase `shouldBeEqualToV` Char.isLowerCase@@ -182,7 +176,7 @@         Char.chr UC.MaxIsUpper `shouldBe` maxCodePointBy isUpperRef         UC.MaxIsUpper `shouldSatisfy` isPlane0To3       it "Compare to base" do-        UCharCompat.isUpper `shouldBeEqualToV` Char.isUpper+        UChar.isUpper `shouldBeEqualToV` Char.isUpper #if MIN_VERSION_base(4,18,0)     it "isUpperCase" do       UChar.isUpperCase `shouldBeEqualToV` Char.isUpperCase
unicode-data.cabal view
@@ -1,6 +1,6 @@ cabal-version:       2.2 name:                unicode-data-version:             0.5.0+version:             0.6.0 synopsis:            Access Unicode Character Database (UCD) description:   @unicode-data@ provides Haskell APIs to efficiently access the@@ -9,7 +9,7 @@   .   The Haskell data structures are generated programmatically from the UCD files.   The latest Unicode version supported by this library is-  @<https://www.unicode.org/versions/Unicode15.0.0/ 15.0.0>@.+  @<https://www.unicode.org/versions/Unicode15.1.0/ 15.1.0>@. homepage:            http://github.com/composewell/unicode-data bug-reports:         https://github.com/composewell/unicode-data/issues license:             Apache-2.0