From 0166b27ee45f24fb60d79498a5d15b4f316191f3 Mon Sep 17 00:00:00 2001 From: aarne Date: Fri, 27 Feb 2004 07:43:52 +0000 Subject: [PATCH] Started with unions. --- src/GF/Compile/Compile.hs | 4 + src/GF/Compile/GetGrammar.hs | 2 +- src/GF/Compile/MkUnion.hs | 19 + src/GF/Grammar/ReservedWords.hs | 4 +- src/GF/Infra/Modules.hs | 5 + src/GF/Infra/ReadFiles.hs | 7 +- src/GF/Source/AbsGF.hs | 6 + src/GF/Source/GF.cf | 6 + src/GF/Source/LexGF.hs | 2 +- src/GF/Source/ParGF.hs | 2418 +++++++++++++++--------------- src/GF/Source/PrintGF.hs | 11 +- src/GF/Source/SkelGF.hs | 9 + src/GF/Source/SourceToGrammar.hs | 11 + src/Today.hs | 2 +- 14 files changed, 1324 insertions(+), 1182 deletions(-) create mode 100644 src/GF/Compile/MkUnion.hs diff --git a/src/GF/Compile/Compile.hs b/src/GF/Compile/Compile.hs index 77d9db11c..9d80f6a05 100644 --- a/src/GF/Compile/Compile.hs +++ b/src/GF/Compile/Compile.hs @@ -10,6 +10,7 @@ import Modules import ReadFiles import ShellState import MkResource +import MkUnion -- the main compiler passes import GetGrammar @@ -177,6 +178,9 @@ makeSourceModule opts env@(k,gr,can) mo@(i,mi) = case mi of mos = modules gr --- putp " type checking reused" $ ioeErr $ showCheckModule mos mo2 return $ (k,mo2) + MTUnion ty imps -> do + mo' <- ioeErr $ makeUnion gr i ty imps + compileSourceModule opts env mo' _ -> compileSourceModule opts env mo _ -> compileSourceModule opts env mo where diff --git a/src/GF/Compile/GetGrammar.hs b/src/GF/Compile/GetGrammar.hs index ef9e0944f..3b9acd9d6 100644 --- a/src/GF/Compile/GetGrammar.hs +++ b/src/GF/Compile/GetGrammar.hs @@ -79,5 +79,5 @@ oldLexer = map change . L.tokens where (L.PT p (L.TS s)) | elem s new -> (L.PT p (L.TV (init s ++ "Z"))) _ -> t new = words $ "abstract concrete interface incomplete " ++ - "instance out open resource reuse transfer with where" + "instance out open resource reuse transfer union with where" diff --git a/src/GF/Compile/MkUnion.hs b/src/GF/Compile/MkUnion.hs new file mode 100644 index 000000000..f612b92b6 --- /dev/null +++ b/src/GF/Compile/MkUnion.hs @@ -0,0 +1,19 @@ +module MkUnion (makeUnion) where + +import Grammar +import Ident +import Modules +import Macros +import PrGrammar + +import Operations + +import Monad + +-- building union of modules +-- AR 21/8/2002 -- 22/6/2003 for GF with modules + +makeUnion :: SourceGrammar -> Ident -> ModuleType Ident -> [(Ident,[Ident])] -> + Err SourceModule +makeUnion gr m ty imps = do + Bad "Sorry: unions not yet implemented" diff --git a/src/GF/Grammar/ReservedWords.hs b/src/GF/Grammar/ReservedWords.hs index 43738989f..8d654525a 100644 --- a/src/GF/Grammar/ReservedWords.hs +++ b/src/GF/Grammar/ReservedWords.hs @@ -13,8 +13,8 @@ isResWord s = isInTree s resWordTree resWordTree :: BTree resWordTree = -- mapTree fst $ sorted2tree $ flip zip (repeat ()) $ sort allReservedWords - B "let" (B "concrete" (B "Tok" (B "Str" (B "PType" (B "Lin" N N) N) (B "Strs" N N)) (B "case" (B "abstract" (B "Type" N N) N) (B "cat" N N))) (B "fun" (B "flags" (B "def" (B "data" N N) N) (B "fn" N N)) (B "in" (B "grammar" N N) (B "include" N N)))) (B "pattern" (B "of" (B "lindef" (B "lincat" (B "lin" N N) N) (B "lintype" N N)) (B "out" (B "oper" (B "open" N N) N) (B "param" N N))) (B "strs" (B "resource" (B "printname" (B "pre" N N) N) (B "reuse" N N)) (B "transfer" (B "table" N N) (B "variants" N N)))) - +-- nowadays obtained from LexGF.hs + B "let" (B "data" (B "Type" (B "Str" (B "PType" (B "Lin" N N) N) (B "Tok" (B "Strs" N N) N)) (B "cat" (B "case" (B "abstract" N N) N) (B "concrete" N N))) (B "in" (B "fn" (B "flags" (B "def" N N) N) (B "grammar" (B "fun" N N) N)) (B "instance" (B "incomplete" (B "include" N N) N) (B "interface" N N)))) (B "pre" (B "open" (B "lindef" (B "lincat" (B "lin" N N) N) (B "of" (B "lintype" N N) N)) (B "param" (B "out" (B "oper" N N) N) (B "pattern" N N))) (B "transfer" (B "reuse" (B "resource" (B "printname" N N) N) (B "table" (B "strs" N N) N)) (B "where" (B "variants" (B "union" N N) N) (B "with" N N)))) isResWordGFC :: String -> Bool isResWordGFC s = isInTree s $ diff --git a/src/GF/Infra/Modules.hs b/src/GF/Infra/Modules.hs index 45933e126..b43eb7b4d 100644 --- a/src/GF/Infra/Modules.hs +++ b/src/GF/Infra/Modules.hs @@ -44,6 +44,7 @@ data ModuleType i = | MTInterface | MTInstance i | MTReuse (MReuseType i) + | MTUnion (ModuleType i) [(i,[i])] --- not meant to be recursive deriving (Eq,Show) data MReuseType i = MRInterface i | MRInstance i i | MRResource i @@ -245,21 +246,25 @@ lookupInfo mo i = lookupTree show i (jments mo) isModAbs m = case mtype m of MTAbstract -> True +---- MTUnion t -> isModAbs t _ -> False isModRes m = case mtype m of MTResource -> True MTReuse _ -> True +---- MTUnion t -> isModRes t --- maybe not needed, since eliminated early MTInterface -> True --- MTInstance _ -> True _ -> False isModCnc m = case mtype m of MTConcrete _ -> True +---- MTUnion t -> isModCnc t _ -> False isModTrans m = case mtype m of MTTransfer _ _ -> True +---- MTUnion t -> isModTrans t _ -> False sameMType m n = case (m,n) of diff --git a/src/GF/Infra/ReadFiles.hs b/src/GF/Infra/ReadFiles.hs index 7b95141c7..06205e350 100644 --- a/src/GF/Infra/ReadFiles.hs +++ b/src/GF/Infra/ReadFiles.hs @@ -181,16 +181,21 @@ importsOfFile = getModuleHeader . -- analyse into mod header filter (not . spec) . -- ignore keywords and special symbols unqual . -- take away qualifiers + unrestr . -- take away union restrictions takeWhile (not . term) . -- read until curly or semic lexs . -- analyse into lexical tokens unComm -- ignore comments before the headed line where term = flip elem ["{",";"] - spec = flip elem ["of", "open","in",":", "->","=", "(", ")",",","**"] + spec = flip elem ["of", "open","in",":", "->","=", "(", ")",",","**","union"] unqual ws = case ws of "(":q:ws' -> unqual ws' w:ws' -> w:unqual ws' _ -> ws + unrestr ws = case ws of + "[":ws' -> unrestr $ tail $ dropWhile (/="]") ws' + w:ws' -> w:unrestr ws' + _ -> ws getModuleHeader :: [String] -> ModuleHeader -- with, reuse getModuleHeader ws = case ws of diff --git a/src/GF/Source/AbsGF.hs b/src/GF/Source/AbsGF.hs index 28313c5ce..d8115df26 100644 --- a/src/GF/Source/AbsGF.hs +++ b/src/GF/Source/AbsGF.hs @@ -41,6 +41,7 @@ data ModBody = MBody Extend Opens [TopDef] | MWith Ident [Open] | MReuse Ident + | MUnion [Included] deriving (Eq,Ord,Show) data Extend = @@ -70,6 +71,11 @@ data QualOpen = | QOInterface deriving (Eq,Ord,Show) +data Included = + IAll Ident + | ISome Ident [Ident] + deriving (Eq,Ord,Show) + data Def = DDecl [Ident] Exp | DDef [Ident] Exp diff --git a/src/GF/Source/GF.cf b/src/GF/Source/GF.cf index 1edf8adb7..682debc9d 100644 --- a/src/GF/Source/GF.cf +++ b/src/GF/Source/GF.cf @@ -41,6 +41,7 @@ MTTransfer. ModType ::= "transfer" Ident ":" Open "->" Open ; MBody. ModBody ::= Extend Opens "{" [TopDef] "}" ; MWith. ModBody ::= Ident "with" [Open] ; MReuse. ModBody ::= "reuse" Ident ; +MUnion. ModBody ::= "union" [Included] ; separator TopDef "" ; @@ -62,6 +63,11 @@ QOCompl. QualOpen ::= ; QOIncompl. QualOpen ::= "incomplete" ; QOInterface. QualOpen ::= "interface" ; +separator Included "," ; + +IAll. Included ::= Ident ; +ISome. Included ::= Ident "[" [Ident] "]" ; + -- definitions after the $oper$ keywords DDecl. Def ::= [Ident] ":" Exp ; diff --git a/src/GF/Source/LexGF.hs b/src/GF/Source/LexGF.hs index e27e5b861..68dab65dd 100644 --- a/src/GF/Source/LexGF.hs +++ b/src/GF/Source/LexGF.hs @@ -55,7 +55,7 @@ tokens_scan = load_scan (tokens_acts,stop_act) tokens_lx eitherResIdent :: (String -> Tok) -> String -> Tok eitherResIdent tv s = if isResWord s then (TS s) else (tv s) where isResWord s = isInTree s $ - B "interface" (B "data" (B "Type" (B "Str" (B "PType" (B "Lin" N N) N) (B "Tok" (B "Strs" N N) N)) (B "cat" (B "case" (B "abstract" N N) N) (B "concrete" N N))) (B "grammar" (B "fn" (B "flags" (B "def" N N) N) (B "fun" N N)) (B "incomplete" (B "include" (B "in" N N) N) (B "instance" N N)))) (B "pattern" (B "of" (B "lincat" (B "lin" (B "let" N N) N) (B "lintype" (B "lindef" N N) N)) (B "out" (B "oper" (B "open" N N) N) (B "param" N N))) (B "strs" (B "resource" (B "printname" (B "pre" N N) N) (B "reuse" N N)) (B "variants" (B "transfer" (B "table" N N) N) (B "with" N N)))) + B "let" (B "data" (B "Type" (B "Str" (B "PType" (B "Lin" N N) N) (B "Tok" (B "Strs" N N) N)) (B "cat" (B "case" (B "abstract" N N) N) (B "concrete" N N))) (B "in" (B "fn" (B "flags" (B "def" N N) N) (B "grammar" (B "fun" N N) N)) (B "instance" (B "incomplete" (B "include" N N) N) (B "interface" N N)))) (B "pre" (B "open" (B "lindef" (B "lincat" (B "lin" N N) N) (B "of" (B "lintype" N N) N)) (B "param" (B "out" (B "oper" N N) N) (B "pattern" N N))) (B "transfer" (B "reuse" (B "resource" (B "printname" N N) N) (B "table" (B "strs" N N) N)) (B "where" (B "variants" (B "union" N N) N) (B "with" N N)))) data BTree = N | B String BTree BTree deriving (Show) diff --git a/src/GF/Source/ParGF.hs b/src/GF/Source/ParGF.hs index 377906fe3..0f53808d4 100644 --- a/src/GF/Source/ParGF.hs +++ b/src/GF/Source/ParGF.hs @@ -140,148 +140,148 @@ happyIn27 x = unsafeCoerce# x happyOut27 :: (HappyAbsSyn t7 t8 t9 t10) -> (QualOpen) happyOut27 x = unsafeCoerce# x {-# INLINE happyOut27 #-} -happyIn28 :: (Def) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn28 :: ([Included]) -> (HappyAbsSyn t7 t8 t9 t10) happyIn28 x = unsafeCoerce# x {-# INLINE happyIn28 #-} -happyOut28 :: (HappyAbsSyn t7 t8 t9 t10) -> (Def) +happyOut28 :: (HappyAbsSyn t7 t8 t9 t10) -> ([Included]) happyOut28 x = unsafeCoerce# x {-# INLINE happyOut28 #-} -happyIn29 :: (TopDef) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn29 :: (Included) -> (HappyAbsSyn t7 t8 t9 t10) happyIn29 x = unsafeCoerce# x {-# INLINE happyIn29 #-} -happyOut29 :: (HappyAbsSyn t7 t8 t9 t10) -> (TopDef) +happyOut29 :: (HappyAbsSyn t7 t8 t9 t10) -> (Included) happyOut29 x = unsafeCoerce# x {-# INLINE happyOut29 #-} -happyIn30 :: (CatDef) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn30 :: (Def) -> (HappyAbsSyn t7 t8 t9 t10) happyIn30 x = unsafeCoerce# x {-# INLINE happyIn30 #-} -happyOut30 :: (HappyAbsSyn t7 t8 t9 t10) -> (CatDef) +happyOut30 :: (HappyAbsSyn t7 t8 t9 t10) -> (Def) happyOut30 x = unsafeCoerce# x {-# INLINE happyOut30 #-} -happyIn31 :: (FunDef) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn31 :: (TopDef) -> (HappyAbsSyn t7 t8 t9 t10) happyIn31 x = unsafeCoerce# x {-# INLINE happyIn31 #-} -happyOut31 :: (HappyAbsSyn t7 t8 t9 t10) -> (FunDef) +happyOut31 :: (HappyAbsSyn t7 t8 t9 t10) -> (TopDef) happyOut31 x = unsafeCoerce# x {-# INLINE happyOut31 #-} -happyIn32 :: (DataDef) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn32 :: (CatDef) -> (HappyAbsSyn t7 t8 t9 t10) happyIn32 x = unsafeCoerce# x {-# INLINE happyIn32 #-} -happyOut32 :: (HappyAbsSyn t7 t8 t9 t10) -> (DataDef) +happyOut32 :: (HappyAbsSyn t7 t8 t9 t10) -> (CatDef) happyOut32 x = unsafeCoerce# x {-# INLINE happyOut32 #-} -happyIn33 :: (DataConstr) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn33 :: (FunDef) -> (HappyAbsSyn t7 t8 t9 t10) happyIn33 x = unsafeCoerce# x {-# INLINE happyIn33 #-} -happyOut33 :: (HappyAbsSyn t7 t8 t9 t10) -> (DataConstr) +happyOut33 :: (HappyAbsSyn t7 t8 t9 t10) -> (FunDef) happyOut33 x = unsafeCoerce# x {-# INLINE happyOut33 #-} -happyIn34 :: ([DataConstr]) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn34 :: (DataDef) -> (HappyAbsSyn t7 t8 t9 t10) happyIn34 x = unsafeCoerce# x {-# INLINE happyIn34 #-} -happyOut34 :: (HappyAbsSyn t7 t8 t9 t10) -> ([DataConstr]) +happyOut34 :: (HappyAbsSyn t7 t8 t9 t10) -> (DataDef) happyOut34 x = unsafeCoerce# x {-# INLINE happyOut34 #-} -happyIn35 :: (ParDef) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn35 :: (DataConstr) -> (HappyAbsSyn t7 t8 t9 t10) happyIn35 x = unsafeCoerce# x {-# INLINE happyIn35 #-} -happyOut35 :: (HappyAbsSyn t7 t8 t9 t10) -> (ParDef) +happyOut35 :: (HappyAbsSyn t7 t8 t9 t10) -> (DataConstr) happyOut35 x = unsafeCoerce# x {-# INLINE happyOut35 #-} -happyIn36 :: (ParConstr) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn36 :: ([DataConstr]) -> (HappyAbsSyn t7 t8 t9 t10) happyIn36 x = unsafeCoerce# x {-# INLINE happyIn36 #-} -happyOut36 :: (HappyAbsSyn t7 t8 t9 t10) -> (ParConstr) +happyOut36 :: (HappyAbsSyn t7 t8 t9 t10) -> ([DataConstr]) happyOut36 x = unsafeCoerce# x {-# INLINE happyOut36 #-} -happyIn37 :: (PrintDef) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn37 :: (ParDef) -> (HappyAbsSyn t7 t8 t9 t10) happyIn37 x = unsafeCoerce# x {-# INLINE happyIn37 #-} -happyOut37 :: (HappyAbsSyn t7 t8 t9 t10) -> (PrintDef) +happyOut37 :: (HappyAbsSyn t7 t8 t9 t10) -> (ParDef) happyOut37 x = unsafeCoerce# x {-# INLINE happyOut37 #-} -happyIn38 :: (FlagDef) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn38 :: (ParConstr) -> (HappyAbsSyn t7 t8 t9 t10) happyIn38 x = unsafeCoerce# x {-# INLINE happyIn38 #-} -happyOut38 :: (HappyAbsSyn t7 t8 t9 t10) -> (FlagDef) +happyOut38 :: (HappyAbsSyn t7 t8 t9 t10) -> (ParConstr) happyOut38 x = unsafeCoerce# x {-# INLINE happyOut38 #-} -happyIn39 :: ([Def]) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn39 :: (PrintDef) -> (HappyAbsSyn t7 t8 t9 t10) happyIn39 x = unsafeCoerce# x {-# INLINE happyIn39 #-} -happyOut39 :: (HappyAbsSyn t7 t8 t9 t10) -> ([Def]) +happyOut39 :: (HappyAbsSyn t7 t8 t9 t10) -> (PrintDef) happyOut39 x = unsafeCoerce# x {-# INLINE happyOut39 #-} -happyIn40 :: ([CatDef]) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn40 :: (FlagDef) -> (HappyAbsSyn t7 t8 t9 t10) happyIn40 x = unsafeCoerce# x {-# INLINE happyIn40 #-} -happyOut40 :: (HappyAbsSyn t7 t8 t9 t10) -> ([CatDef]) +happyOut40 :: (HappyAbsSyn t7 t8 t9 t10) -> (FlagDef) happyOut40 x = unsafeCoerce# x {-# INLINE happyOut40 #-} -happyIn41 :: ([FunDef]) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn41 :: ([Def]) -> (HappyAbsSyn t7 t8 t9 t10) happyIn41 x = unsafeCoerce# x {-# INLINE happyIn41 #-} -happyOut41 :: (HappyAbsSyn t7 t8 t9 t10) -> ([FunDef]) +happyOut41 :: (HappyAbsSyn t7 t8 t9 t10) -> ([Def]) happyOut41 x = unsafeCoerce# x {-# INLINE happyOut41 #-} -happyIn42 :: ([DataDef]) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn42 :: ([CatDef]) -> (HappyAbsSyn t7 t8 t9 t10) happyIn42 x = unsafeCoerce# x {-# INLINE happyIn42 #-} -happyOut42 :: (HappyAbsSyn t7 t8 t9 t10) -> ([DataDef]) +happyOut42 :: (HappyAbsSyn t7 t8 t9 t10) -> ([CatDef]) happyOut42 x = unsafeCoerce# x {-# INLINE happyOut42 #-} -happyIn43 :: ([ParDef]) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn43 :: ([FunDef]) -> (HappyAbsSyn t7 t8 t9 t10) happyIn43 x = unsafeCoerce# x {-# INLINE happyIn43 #-} -happyOut43 :: (HappyAbsSyn t7 t8 t9 t10) -> ([ParDef]) +happyOut43 :: (HappyAbsSyn t7 t8 t9 t10) -> ([FunDef]) happyOut43 x = unsafeCoerce# x {-# INLINE happyOut43 #-} -happyIn44 :: ([PrintDef]) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn44 :: ([DataDef]) -> (HappyAbsSyn t7 t8 t9 t10) happyIn44 x = unsafeCoerce# x {-# INLINE happyIn44 #-} -happyOut44 :: (HappyAbsSyn t7 t8 t9 t10) -> ([PrintDef]) +happyOut44 :: (HappyAbsSyn t7 t8 t9 t10) -> ([DataDef]) happyOut44 x = unsafeCoerce# x {-# INLINE happyOut44 #-} -happyIn45 :: ([FlagDef]) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn45 :: ([ParDef]) -> (HappyAbsSyn t7 t8 t9 t10) happyIn45 x = unsafeCoerce# x {-# INLINE happyIn45 #-} -happyOut45 :: (HappyAbsSyn t7 t8 t9 t10) -> ([FlagDef]) +happyOut45 :: (HappyAbsSyn t7 t8 t9 t10) -> ([ParDef]) happyOut45 x = unsafeCoerce# x {-# INLINE happyOut45 #-} -happyIn46 :: ([ParConstr]) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn46 :: ([PrintDef]) -> (HappyAbsSyn t7 t8 t9 t10) happyIn46 x = unsafeCoerce# x {-# INLINE happyIn46 #-} -happyOut46 :: (HappyAbsSyn t7 t8 t9 t10) -> ([ParConstr]) +happyOut46 :: (HappyAbsSyn t7 t8 t9 t10) -> ([PrintDef]) happyOut46 x = unsafeCoerce# x {-# INLINE happyOut46 #-} -happyIn47 :: ([Ident]) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn47 :: ([FlagDef]) -> (HappyAbsSyn t7 t8 t9 t10) happyIn47 x = unsafeCoerce# x {-# INLINE happyIn47 #-} -happyOut47 :: (HappyAbsSyn t7 t8 t9 t10) -> ([Ident]) +happyOut47 :: (HappyAbsSyn t7 t8 t9 t10) -> ([FlagDef]) happyOut47 x = unsafeCoerce# x {-# INLINE happyOut47 #-} -happyIn48 :: (LocDef) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn48 :: ([ParConstr]) -> (HappyAbsSyn t7 t8 t9 t10) happyIn48 x = unsafeCoerce# x {-# INLINE happyIn48 #-} -happyOut48 :: (HappyAbsSyn t7 t8 t9 t10) -> (LocDef) +happyOut48 :: (HappyAbsSyn t7 t8 t9 t10) -> ([ParConstr]) happyOut48 x = unsafeCoerce# x {-# INLINE happyOut48 #-} -happyIn49 :: ([LocDef]) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn49 :: ([Ident]) -> (HappyAbsSyn t7 t8 t9 t10) happyIn49 x = unsafeCoerce# x {-# INLINE happyIn49 #-} -happyOut49 :: (HappyAbsSyn t7 t8 t9 t10) -> ([LocDef]) +happyOut49 :: (HappyAbsSyn t7 t8 t9 t10) -> ([Ident]) happyOut49 x = unsafeCoerce# x {-# INLINE happyOut49 #-} -happyIn50 :: (Exp) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn50 :: (LocDef) -> (HappyAbsSyn t7 t8 t9 t10) happyIn50 x = unsafeCoerce# x {-# INLINE happyIn50 #-} -happyOut50 :: (HappyAbsSyn t7 t8 t9 t10) -> (Exp) +happyOut50 :: (HappyAbsSyn t7 t8 t9 t10) -> (LocDef) happyOut50 x = unsafeCoerce# x {-# INLINE happyOut50 #-} -happyIn51 :: (Exp) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn51 :: ([LocDef]) -> (HappyAbsSyn t7 t8 t9 t10) happyIn51 x = unsafeCoerce# x {-# INLINE happyIn51 #-} -happyOut51 :: (HappyAbsSyn t7 t8 t9 t10) -> (Exp) +happyOut51 :: (HappyAbsSyn t7 t8 t9 t10) -> ([LocDef]) happyOut51 x = unsafeCoerce# x {-# INLINE happyOut51 #-} happyIn52 :: (Exp) -> (HappyAbsSyn t7 t8 t9 t10) @@ -302,180 +302,192 @@ happyIn54 x = unsafeCoerce# x happyOut54 :: (HappyAbsSyn t7 t8 t9 t10) -> (Exp) happyOut54 x = unsafeCoerce# x {-# INLINE happyOut54 #-} -happyIn55 :: ([Exp]) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn55 :: (Exp) -> (HappyAbsSyn t7 t8 t9 t10) happyIn55 x = unsafeCoerce# x {-# INLINE happyIn55 #-} -happyOut55 :: (HappyAbsSyn t7 t8 t9 t10) -> ([Exp]) +happyOut55 :: (HappyAbsSyn t7 t8 t9 t10) -> (Exp) happyOut55 x = unsafeCoerce# x {-# INLINE happyOut55 #-} -happyIn56 :: (Patt) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn56 :: (Exp) -> (HappyAbsSyn t7 t8 t9 t10) happyIn56 x = unsafeCoerce# x {-# INLINE happyIn56 #-} -happyOut56 :: (HappyAbsSyn t7 t8 t9 t10) -> (Patt) +happyOut56 :: (HappyAbsSyn t7 t8 t9 t10) -> (Exp) happyOut56 x = unsafeCoerce# x {-# INLINE happyOut56 #-} -happyIn57 :: (Patt) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn57 :: ([Exp]) -> (HappyAbsSyn t7 t8 t9 t10) happyIn57 x = unsafeCoerce# x {-# INLINE happyIn57 #-} -happyOut57 :: (HappyAbsSyn t7 t8 t9 t10) -> (Patt) +happyOut57 :: (HappyAbsSyn t7 t8 t9 t10) -> ([Exp]) happyOut57 x = unsafeCoerce# x {-# INLINE happyOut57 #-} -happyIn58 :: (PattAss) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn58 :: (Patt) -> (HappyAbsSyn t7 t8 t9 t10) happyIn58 x = unsafeCoerce# x {-# INLINE happyIn58 #-} -happyOut58 :: (HappyAbsSyn t7 t8 t9 t10) -> (PattAss) +happyOut58 :: (HappyAbsSyn t7 t8 t9 t10) -> (Patt) happyOut58 x = unsafeCoerce# x {-# INLINE happyOut58 #-} -happyIn59 :: (Label) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn59 :: (Patt) -> (HappyAbsSyn t7 t8 t9 t10) happyIn59 x = unsafeCoerce# x {-# INLINE happyIn59 #-} -happyOut59 :: (HappyAbsSyn t7 t8 t9 t10) -> (Label) +happyOut59 :: (HappyAbsSyn t7 t8 t9 t10) -> (Patt) happyOut59 x = unsafeCoerce# x {-# INLINE happyOut59 #-} -happyIn60 :: (Sort) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn60 :: (PattAss) -> (HappyAbsSyn t7 t8 t9 t10) happyIn60 x = unsafeCoerce# x {-# INLINE happyIn60 #-} -happyOut60 :: (HappyAbsSyn t7 t8 t9 t10) -> (Sort) +happyOut60 :: (HappyAbsSyn t7 t8 t9 t10) -> (PattAss) happyOut60 x = unsafeCoerce# x {-# INLINE happyOut60 #-} -happyIn61 :: ([PattAss]) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn61 :: (Label) -> (HappyAbsSyn t7 t8 t9 t10) happyIn61 x = unsafeCoerce# x {-# INLINE happyIn61 #-} -happyOut61 :: (HappyAbsSyn t7 t8 t9 t10) -> ([PattAss]) +happyOut61 :: (HappyAbsSyn t7 t8 t9 t10) -> (Label) happyOut61 x = unsafeCoerce# x {-# INLINE happyOut61 #-} -happyIn62 :: (PattAlt) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn62 :: (Sort) -> (HappyAbsSyn t7 t8 t9 t10) happyIn62 x = unsafeCoerce# x {-# INLINE happyIn62 #-} -happyOut62 :: (HappyAbsSyn t7 t8 t9 t10) -> (PattAlt) +happyOut62 :: (HappyAbsSyn t7 t8 t9 t10) -> (Sort) happyOut62 x = unsafeCoerce# x {-# INLINE happyOut62 #-} -happyIn63 :: ([Patt]) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn63 :: ([PattAss]) -> (HappyAbsSyn t7 t8 t9 t10) happyIn63 x = unsafeCoerce# x {-# INLINE happyIn63 #-} -happyOut63 :: (HappyAbsSyn t7 t8 t9 t10) -> ([Patt]) +happyOut63 :: (HappyAbsSyn t7 t8 t9 t10) -> ([PattAss]) happyOut63 x = unsafeCoerce# x {-# INLINE happyOut63 #-} -happyIn64 :: ([PattAlt]) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn64 :: (PattAlt) -> (HappyAbsSyn t7 t8 t9 t10) happyIn64 x = unsafeCoerce# x {-# INLINE happyIn64 #-} -happyOut64 :: (HappyAbsSyn t7 t8 t9 t10) -> ([PattAlt]) +happyOut64 :: (HappyAbsSyn t7 t8 t9 t10) -> (PattAlt) happyOut64 x = unsafeCoerce# x {-# INLINE happyOut64 #-} -happyIn65 :: (Bind) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn65 :: ([Patt]) -> (HappyAbsSyn t7 t8 t9 t10) happyIn65 x = unsafeCoerce# x {-# INLINE happyIn65 #-} -happyOut65 :: (HappyAbsSyn t7 t8 t9 t10) -> (Bind) +happyOut65 :: (HappyAbsSyn t7 t8 t9 t10) -> ([Patt]) happyOut65 x = unsafeCoerce# x {-# INLINE happyOut65 #-} -happyIn66 :: ([Bind]) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn66 :: ([PattAlt]) -> (HappyAbsSyn t7 t8 t9 t10) happyIn66 x = unsafeCoerce# x {-# INLINE happyIn66 #-} -happyOut66 :: (HappyAbsSyn t7 t8 t9 t10) -> ([Bind]) +happyOut66 :: (HappyAbsSyn t7 t8 t9 t10) -> ([PattAlt]) happyOut66 x = unsafeCoerce# x {-# INLINE happyOut66 #-} -happyIn67 :: (Decl) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn67 :: (Bind) -> (HappyAbsSyn t7 t8 t9 t10) happyIn67 x = unsafeCoerce# x {-# INLINE happyIn67 #-} -happyOut67 :: (HappyAbsSyn t7 t8 t9 t10) -> (Decl) +happyOut67 :: (HappyAbsSyn t7 t8 t9 t10) -> (Bind) happyOut67 x = unsafeCoerce# x {-# INLINE happyOut67 #-} -happyIn68 :: (TupleComp) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn68 :: ([Bind]) -> (HappyAbsSyn t7 t8 t9 t10) happyIn68 x = unsafeCoerce# x {-# INLINE happyIn68 #-} -happyOut68 :: (HappyAbsSyn t7 t8 t9 t10) -> (TupleComp) +happyOut68 :: (HappyAbsSyn t7 t8 t9 t10) -> ([Bind]) happyOut68 x = unsafeCoerce# x {-# INLINE happyOut68 #-} -happyIn69 :: (PattTupleComp) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn69 :: (Decl) -> (HappyAbsSyn t7 t8 t9 t10) happyIn69 x = unsafeCoerce# x {-# INLINE happyIn69 #-} -happyOut69 :: (HappyAbsSyn t7 t8 t9 t10) -> (PattTupleComp) +happyOut69 :: (HappyAbsSyn t7 t8 t9 t10) -> (Decl) happyOut69 x = unsafeCoerce# x {-# INLINE happyOut69 #-} -happyIn70 :: ([TupleComp]) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn70 :: (TupleComp) -> (HappyAbsSyn t7 t8 t9 t10) happyIn70 x = unsafeCoerce# x {-# INLINE happyIn70 #-} -happyOut70 :: (HappyAbsSyn t7 t8 t9 t10) -> ([TupleComp]) +happyOut70 :: (HappyAbsSyn t7 t8 t9 t10) -> (TupleComp) happyOut70 x = unsafeCoerce# x {-# INLINE happyOut70 #-} -happyIn71 :: ([PattTupleComp]) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn71 :: (PattTupleComp) -> (HappyAbsSyn t7 t8 t9 t10) happyIn71 x = unsafeCoerce# x {-# INLINE happyIn71 #-} -happyOut71 :: (HappyAbsSyn t7 t8 t9 t10) -> ([PattTupleComp]) +happyOut71 :: (HappyAbsSyn t7 t8 t9 t10) -> (PattTupleComp) happyOut71 x = unsafeCoerce# x {-# INLINE happyOut71 #-} -happyIn72 :: (Case) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn72 :: ([TupleComp]) -> (HappyAbsSyn t7 t8 t9 t10) happyIn72 x = unsafeCoerce# x {-# INLINE happyIn72 #-} -happyOut72 :: (HappyAbsSyn t7 t8 t9 t10) -> (Case) +happyOut72 :: (HappyAbsSyn t7 t8 t9 t10) -> ([TupleComp]) happyOut72 x = unsafeCoerce# x {-# INLINE happyOut72 #-} -happyIn73 :: ([Case]) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn73 :: ([PattTupleComp]) -> (HappyAbsSyn t7 t8 t9 t10) happyIn73 x = unsafeCoerce# x {-# INLINE happyIn73 #-} -happyOut73 :: (HappyAbsSyn t7 t8 t9 t10) -> ([Case]) +happyOut73 :: (HappyAbsSyn t7 t8 t9 t10) -> ([PattTupleComp]) happyOut73 x = unsafeCoerce# x {-# INLINE happyOut73 #-} -happyIn74 :: (Equation) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn74 :: (Case) -> (HappyAbsSyn t7 t8 t9 t10) happyIn74 x = unsafeCoerce# x {-# INLINE happyIn74 #-} -happyOut74 :: (HappyAbsSyn t7 t8 t9 t10) -> (Equation) +happyOut74 :: (HappyAbsSyn t7 t8 t9 t10) -> (Case) happyOut74 x = unsafeCoerce# x {-# INLINE happyOut74 #-} -happyIn75 :: ([Equation]) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn75 :: ([Case]) -> (HappyAbsSyn t7 t8 t9 t10) happyIn75 x = unsafeCoerce# x {-# INLINE happyIn75 #-} -happyOut75 :: (HappyAbsSyn t7 t8 t9 t10) -> ([Equation]) +happyOut75 :: (HappyAbsSyn t7 t8 t9 t10) -> ([Case]) happyOut75 x = unsafeCoerce# x {-# INLINE happyOut75 #-} -happyIn76 :: (Altern) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn76 :: (Equation) -> (HappyAbsSyn t7 t8 t9 t10) happyIn76 x = unsafeCoerce# x {-# INLINE happyIn76 #-} -happyOut76 :: (HappyAbsSyn t7 t8 t9 t10) -> (Altern) +happyOut76 :: (HappyAbsSyn t7 t8 t9 t10) -> (Equation) happyOut76 x = unsafeCoerce# x {-# INLINE happyOut76 #-} -happyIn77 :: ([Altern]) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn77 :: ([Equation]) -> (HappyAbsSyn t7 t8 t9 t10) happyIn77 x = unsafeCoerce# x {-# INLINE happyIn77 #-} -happyOut77 :: (HappyAbsSyn t7 t8 t9 t10) -> ([Altern]) +happyOut77 :: (HappyAbsSyn t7 t8 t9 t10) -> ([Equation]) happyOut77 x = unsafeCoerce# x {-# INLINE happyOut77 #-} -happyIn78 :: (DDecl) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn78 :: (Altern) -> (HappyAbsSyn t7 t8 t9 t10) happyIn78 x = unsafeCoerce# x {-# INLINE happyIn78 #-} -happyOut78 :: (HappyAbsSyn t7 t8 t9 t10) -> (DDecl) +happyOut78 :: (HappyAbsSyn t7 t8 t9 t10) -> (Altern) happyOut78 x = unsafeCoerce# x {-# INLINE happyOut78 #-} -happyIn79 :: ([DDecl]) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn79 :: ([Altern]) -> (HappyAbsSyn t7 t8 t9 t10) happyIn79 x = unsafeCoerce# x {-# INLINE happyIn79 #-} -happyOut79 :: (HappyAbsSyn t7 t8 t9 t10) -> ([DDecl]) +happyOut79 :: (HappyAbsSyn t7 t8 t9 t10) -> ([Altern]) happyOut79 x = unsafeCoerce# x {-# INLINE happyOut79 #-} -happyIn80 :: (OldGrammar) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn80 :: (DDecl) -> (HappyAbsSyn t7 t8 t9 t10) happyIn80 x = unsafeCoerce# x {-# INLINE happyIn80 #-} -happyOut80 :: (HappyAbsSyn t7 t8 t9 t10) -> (OldGrammar) +happyOut80 :: (HappyAbsSyn t7 t8 t9 t10) -> (DDecl) happyOut80 x = unsafeCoerce# x {-# INLINE happyOut80 #-} -happyIn81 :: (Include) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn81 :: ([DDecl]) -> (HappyAbsSyn t7 t8 t9 t10) happyIn81 x = unsafeCoerce# x {-# INLINE happyIn81 #-} -happyOut81 :: (HappyAbsSyn t7 t8 t9 t10) -> (Include) +happyOut81 :: (HappyAbsSyn t7 t8 t9 t10) -> ([DDecl]) happyOut81 x = unsafeCoerce# x {-# INLINE happyOut81 #-} -happyIn82 :: (FileName) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn82 :: (OldGrammar) -> (HappyAbsSyn t7 t8 t9 t10) happyIn82 x = unsafeCoerce# x {-# INLINE happyIn82 #-} -happyOut82 :: (HappyAbsSyn t7 t8 t9 t10) -> (FileName) +happyOut82 :: (HappyAbsSyn t7 t8 t9 t10) -> (OldGrammar) happyOut82 x = unsafeCoerce# x {-# INLINE happyOut82 #-} -happyIn83 :: ([FileName]) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn83 :: (Include) -> (HappyAbsSyn t7 t8 t9 t10) happyIn83 x = unsafeCoerce# x {-# INLINE happyIn83 #-} -happyOut83 :: (HappyAbsSyn t7 t8 t9 t10) -> ([FileName]) +happyOut83 :: (HappyAbsSyn t7 t8 t9 t10) -> (Include) happyOut83 x = unsafeCoerce# x {-# INLINE happyOut83 #-} +happyIn84 :: (FileName) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn84 x = unsafeCoerce# x +{-# INLINE happyIn84 #-} +happyOut84 :: (HappyAbsSyn t7 t8 t9 t10) -> (FileName) +happyOut84 x = unsafeCoerce# x +{-# INLINE happyOut84 #-} +happyIn85 :: ([FileName]) -> (HappyAbsSyn t7 t8 t9 t10) +happyIn85 x = unsafeCoerce# x +{-# INLINE happyIn85 #-} +happyOut85 :: (HappyAbsSyn t7 t8 t9 t10) -> ([FileName]) +happyOut85 x = unsafeCoerce# x +{-# INLINE happyOut85 #-} happyInTok :: Token -> (HappyAbsSyn t7 t8 t9 t10) happyInTok x = unsafeCoerce# x {-# INLINE happyInTok #-} @@ -484,21 +496,21 @@ happyOutTok x = unsafeCoerce# x {-# INLINE happyOutTok #-} happyActOffsets :: HappyAddr -happyActOffsets = HappyA# "\x00\x00\xb1\x01\xa1\x04\x84\x00\x8a\x04\x00\x00\xc0\x04\x00\x00\x00\x00\x00\x00\x00\x00\xc8\x04\xd0\x00\xa3\x01\x84\x04\x00\x00\xc6\x04\x86\x04\x18\x00\x6b\x00\x00\x00\x84\x00\xfd\xff\x86\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x84\x00\xc9\x04\x10\x00\xc7\x04\xc5\x04\x06\x01\xc4\x04\x00\x00\x00\x00\x00\x00\x79\x04\x00\x00\x68\x00\x0c\x00\x6b\x04\x82\x04\x00\x00\x76\x04\x6c\x01\xbf\x04\xbd\x04\xb8\x04\x72\x04\x72\x04\x72\x04\x72\x04\x72\x04\x72\x04\x00\x00\x68\x00\x00\x00\xb6\x04\x00\x00\x68\x00\x68\x00\x68\x00\x88\x04\x84\x00\x00\x00\xb5\x04\x3c\x01\x4e\x00\x6b\x00\x84\x00\x84\x00\xac\x04\x99\x00\xb4\x04\x85\x04\x6d\x04\x3c\x01\x71\x04\x00\x00\x00\x00\xa2\x04\x9f\x04\xff\xff\x00\x00\x9e\x04\x98\x04\x93\x04\x15\x01\x92\x04\x00\x00\xbe\x01\x99\x04\x8e\x04\x56\x04\x47\x01\x96\x04\x84\x00\x9a\x00\x9a\x00\x9a\x00\x84\x00\x84\x00\x84\x00\x91\x04\x80\x04\x65\x00\xfd\x00\x00\x00\x52\x04\x00\x00\x00\x00\x0c\x04\x29\x04\x00\x00\x00\x00\x00\x00\xe6\x00\xe6\x00\xe6\x00\x00\x00\x00\x00\x00\x00\x29\x04\x29\x04\x51\x04\x84\x00\x00\x00\x00\x00\x22\x04\x00\x00\x00\x00\x84\x00\x84\x00\x42\x04\x84\x00\xff\xff\x4d\x04\x46\x04\x00\x00\x00\x00\x3c\x01\x45\x04\x32\x04\x30\x04\xe6\x03\x3c\x01\x3c\x01\x00\x00\x28\x04\x84\x00\xda\x03\x84\x00\x84\x00\x15\x04\x14\x04\x10\x04\x04\x04\x5f\x01\x00\x00\x00\x00\x05\x04\xfd\x03\x0e\x04\x00\x04\x3c\x01\xfc\x03\x00\x00\xbc\x03\xbc\x03\xbc\x03\xbc\x03\xbc\x03\xbc\x03\xbc\x03\xbc\x03\xbc\x03\xbc\x03\xbc\x03\xbc\x03\xf4\xff\xbc\x03\x00\x00\x00\x00\x00\x00\x68\x00\x00\x00\xfb\x03\x00\x00\x00\x00\xca\x03\xc8\x03\x00\x00\xd5\xff\xfa\x03\xce\x03\x2b\x00\x00\x00\xb3\x03\xa3\x03\xa3\x03\xa3\x03\x2e\x00\x00\x00\x77\x01\xe8\x03\x00\x00\x29\x00\xd3\x03\x00\x00\xdf\x03\x7a\x03\x7a\x03\x00\x00\xdd\x03\xd2\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcf\x03\x00\x00\xcb\x03\xcd\x03\xcc\x03\x00\x00\x00\x00\xc0\x03\xbf\x03\x00\x00\x00\x00\xbe\x03\x00\x00\x00\x00\x69\x01\xba\x03\x00\x00\x3c\x01\x84\x00\x3c\x01\x00\x00\x76\x03\x00\x00\x84\x00\x84\x00\xb9\x03\x00\x00\x00\x00\x00\x00\x82\x03\x00\x00\x9f\x03\x97\x03\xa1\x03\x79\x02\x9d\x03\x9c\x03\x8e\x03\x00\x00\x3c\x01\x84\x00\x00\x00\x4a\x03\x3c\x01\x00\x00\x00\x00\x84\x00\x7f\x03\x00\x00\x00\x00\x7d\x03\x79\x03\x00\x00\x8b\x03\x00\x00\x8a\x03\x00\x00\xf8\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x00\x00\x00\x00\x00\x00\x00\x00\x37\x03\x3c\x01\x00\x00\x00\x00\x00\x00\x3c\x01\x84\x00\x84\x00\x62\x03\x7b\x03\x77\x03\x00\x00\x3c\x01\x00\x00\x00\x00\x00\x00\x00\x00\x32\x03\x1f\x00\x32\x03\x32\x03\x32\x03\x32\x03\x84\x00\x32\x03\x32\x03\x2d\x00\x00\x00\x00\x00\x84\x00\x32\x03\x84\x00\x84\x00\x32\x03\x5b\x03\x00\x00\x53\x03\xe3\x00\x00\x00\x00\x00\x00\x00\x4b\x03\x1e\x00\x00\x00\x1e\x00\x4e\x03\x08\x03\x00\x00\x43\x03\x11\x03\x00\x00\x04\x03\x00\x00\x00\x00\x1e\x00\x84\x00\x00\x00\x3b\x03\x00\x00\x00\x00\x00\x00\x00\x00\x2b\x03\x00\x00\xfe\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x03\x0d\x03\x00\x00\x00\x00\x00\x00\x00\x00\x18\x00\x00\x00\x00\x00\x00\x00\x84\x00\x84\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x07\x03\xc6\x02\xc6\x02\xc6\x02\xc6\x02\x1f\x00\x84\x00\x00\x00\x00\x00\xf9\x00\xc5\x01\x00\x00\x1e\x00\x06\x03\xc2\x02\x00\x00\x00\x00\xc2\x02\x00\x00\x00\x00\x00\x00\xf6\x02\x00\x00\x00\x00\x84\x00\xef\x02\x00\x00\xe3\x02\xe1\x02\xd6\x02\xd5\x02\x00\x00\x84\x02\x84\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\x02\x00\x00\x76\x02\xba\x00\x1e\x00\x1e\x00\xad\x02\x9b\x02\x00\x00\x00\x00\x00\x00"# +happyActOffsets = HappyA# "\x00\x00\xee\xff\x87\x04\xd2\x00\x66\x04\x00\x00\x97\x04\x00\x00\x00\x00\x00\x00\x00\x00\x9a\x04\x31\x01\x26\x00\x4d\x04\x00\x00\x91\x04\x4e\x04\x50\x00\x5b\x00\x00\x00\xd2\x00\x90\x00\x4e\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd2\x00\x92\x04\x12\x00\x90\x04\x85\x04\xb3\x01\x84\x04\x00\x00\x00\x00\x00\x00\x30\x04\x00\x00\x11\x01\x0c\x00\xae\x04\x2c\x04\x00\x00\x26\x04\xb9\x00\x6c\x04\x68\x04\x5f\x04\x1b\x04\x1b\x04\x1b\x04\x1b\x04\x1b\x04\x1b\x04\x00\x00\x11\x01\x00\x00\x52\x04\x00\x00\x11\x01\x11\x01\x11\x01\xbf\x04\xd2\x00\x00\x00\x53\x04\x63\x00\x91\x00\x5b\x00\xd2\x00\xd2\x00\x48\x04\x81\x01\x50\x04\x15\x04\x07\x04\x63\x00\x0d\x04\x00\x00\x00\x00\x36\x04\x39\x04\xf9\xff\x00\x00\x38\x04\x33\x04\x1f\x04\x24\x02\x2f\x04\x00\x00\x98\x00\x29\x04\x22\x04\xe0\x03\xc7\x02\x0f\x04\xd2\x00\x02\x01\x02\x01\x02\x01\xd2\x00\xd2\x00\xd2\x00\x24\x04\x10\x04\xfa\xff\x92\x01\x00\x00\xd7\x03\x00\x00\x00\x00\xdc\x03\xca\x03\x00\x00\x00\x00\x00\x00\x72\x01\x72\x01\x72\x01\x00\x00\x00\x00\x00\x00\xca\x03\xca\x03\x09\x04\xd2\x00\x00\x00\x00\x00\x00\x00\xc6\x03\x00\x00\xd2\x00\xd2\x00\xfa\x03\xd2\x00\xf9\xff\x06\x04\xf1\x03\x00\x00\x00\x00\x63\x00\xcf\x03\xf9\x03\xf8\x03\xb5\x03\x63\x00\x63\x00\x00\x00\xf7\x03\xd2\x00\xb1\x03\xd2\x00\xd2\x00\xf6\x03\xe4\x03\xde\x03\xd8\x03\x14\x00\x00\x00\x00\x00\xd5\x03\xcb\x03\xda\x03\xd6\x03\x63\x00\xd4\x03\x00\x00\x89\x03\x89\x03\x89\x03\x89\x03\x89\x03\x89\x03\x89\x03\x89\x03\x89\x03\x89\x03\x89\x03\x89\x03\x5f\x01\x89\x03\x00\x00\x00\x00\x00\x00\x11\x01\x00\x00\xc9\x03\x00\x00\x00\x00\x98\x03\x97\x03\x00\x00\x64\x04\xc4\x03\xa2\x03\x1d\x00\x00\x00\x7f\x03\x6e\x03\x6e\x03\x6e\x03\x6e\x03\x22\x00\x00\x00\xc6\x01\xb4\x03\x00\x00\x8c\x00\xb2\x03\x00\x00\xa6\x03\x5c\x03\x5c\x03\x00\x00\xa1\x03\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9e\x03\x00\x00\x86\x03\x91\x03\x8b\x03\x00\x00\x00\x00\x81\x03\x80\x03\x00\x00\x00\x00\x6c\x03\x00\x00\x00\x00\xe8\x00\x73\x03\x00\x00\x63\x00\xd2\x00\x63\x00\x00\x00\x2e\x03\x00\x00\xd2\x00\xd2\x00\x60\x03\x00\x00\x00\x00\x00\x00\x34\x03\x00\x00\x51\x03\x3e\x03\x43\x03\x61\x02\x39\x03\x44\x03\x3a\x03\x00\x00\x63\x00\xd2\x00\x00\x00\xf7\x02\x63\x00\x00\x00\x00\x00\xd2\x00\x0c\x03\x00\x00\x00\x00\x1d\x03\x11\x03\x00\x00\x31\x03\x00\x00\x27\x03\x00\x00\x1a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1a\x03\x00\x00\x00\x00\x00\x00\x00\x00\xc5\x02\x63\x00\x00\x00\x00\x00\x00\x00\x63\x00\xd2\x00\xd2\x00\xf1\x02\x02\x03\x06\x03\x00\x00\x63\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc1\x02\x51\x01\xc1\x02\xc1\x02\xc1\x02\xc1\x02\xd2\x00\xc1\x02\xc1\x02\x1b\x00\x00\x00\x00\x00\xd2\x00\xc1\x02\xd2\x00\xd2\x00\xc1\x02\xf6\x02\x00\x00\xe9\x02\x17\x01\x00\x00\x00\x00\xec\x02\x00\x00\xe6\x02\x00\x00\xeb\x02\x1a\x00\x00\x00\x1a\x00\xe4\x02\xa7\x02\x00\x00\xdb\x02\xb0\x02\x00\x00\x96\x02\x96\x02\x96\x02\x00\x00\x00\x00\x1a\x00\xd2\x00\x00\x00\xc8\x02\x00\x00\x00\x00\x00\x00\x00\x00\xc4\x02\x00\x00\x9b\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xbc\x02\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x50\x00\x00\x00\x00\x00\x00\x00\xd2\x00\xd2\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xb1\x02\x6f\x02\x6f\x02\x6f\x02\x6f\x02\x51\x01\xd2\x00\x00\x00\x00\x00\x2a\x00\xaa\x02\x00\x00\x56\x02\x00\x00\x1a\x00\xa6\x02\x5d\x02\x00\x00\x00\x00\x00\x00\x5d\x02\x00\x00\x00\x00\x00\x00\x9e\x02\x00\x00\x00\x00\xd2\x00\x97\x02\x00\x00\x88\x02\x8e\x02\x8c\x02\x84\x02\x00\x00\x3f\x02\x3f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x00\x00\x36\x02\xcc\x01\x1a\x00\x1a\x00\x69\x02\x5a\x02\x00\x00\x00\x00\x00\x00"# happyGotoOffsets :: HappyAddr -happyGotoOffsets = HappyA# "\x64\x02\xaf\x00\xdf\x01\x2f\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xb5\x02\x00\x00\x00\x00\x00\x00\x00\x00\xfb\x02\x2b\x02\x24\x02\x00\x00\x04\x02\x4b\x00\x9e\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1d\x04\x00\x00\xe2\x02\x00\x00\x00\x00\x39\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x87\x02\x03\x00\x00\x00\x83\x02\x72\x02\x00\x00\x00\x00\x64\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x5f\x02\x4d\x02\x42\x02\x3f\x02\x3d\x02\x00\x00\x0b\x00\x00\x00\x00\x00\x00\x00\x09\x00\x07\x00\x05\x00\xe9\x01\x6d\x02\x00\x00\x00\x00\x8b\x01\x0b\x04\x15\x02\x5b\x02\xf9\x03\x00\x00\x00\x00\x00\x00\x00\x00\x9f\x02\x8c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x47\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf1\x01\x00\x00\x00\x00\xed\x03\x61\x02\x4f\x02\x09\x02\xdb\x03\xc9\x03\xb7\x03\x00\x00\x00\x00\x0f\x00\xf7\x02\x00\x00\x49\x01\x00\x00\x00\x00\xfb\x01\x01\x01\x00\x00\x00\x00\x00\x00\xb5\x02\xb5\x02\xb5\x02\x00\x00\x00\x00\x00\x00\x76\x00\xdc\x01\x00\x00\xab\x03\x00\x00\x00\x00\xd8\x01\x00\x00\x00\x00\xe3\x01\x99\x03\x00\x00\x87\x03\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x44\x04\x00\x00\x00\x00\x00\x00\xeb\x01\xf5\x01\xa9\x01\x00\x00\x00\x00\x75\x03\xd4\x00\x69\x03\x57\x03\x00\x00\x00\x00\x00\x00\x00\x00\x41\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\xd1\x03\x8d\x03\x83\x04\xc7\x00\x6a\x04\x81\x04\x62\x04\x7e\x04\x6f\x04\x68\x04\x49\x03\x65\x04\x61\x04\x4e\x04\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\xba\x01\xc1\x01\xae\x01\x8e\x01\xd6\x00\x00\x00\x3b\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x04\x4f\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x37\x01\x00\x00\x00\x00\x00\x00\xf2\x01\x00\x00\x00\x00\x9d\x01\x45\x03\x3a\x02\x00\x00\x7d\x01\x00\x00\x49\x02\x31\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x33\x03\x00\x00\x56\x01\x58\x01\x00\x00\x00\x00\x27\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x48\x01\x36\x01\x00\x00\x00\x00\x00\x00\x95\x01\x15\x03\x03\x03\x00\x00\x00\x00\x00\x00\x00\x00\x92\x01\x00\x00\x00\x00\x00\x00\x00\x00\x40\x01\xf7\x00\x42\x01\x4c\x03\xab\x00\x35\x01\xf1\x02\x3e\x04\x80\x01\x88\x01\x00\x00\x00\x00\xe5\x02\xef\x01\xd3\x02\xc1\x02\x3f\x04\x00\x00\x00\x00\x00\x00\x0d\x01\x00\x00\x00\x00\x00\x00\x00\x00\xba\x02\x00\x00\xda\x00\x00\x00\x03\x01\x00\x00\x00\x00\x00\x00\xd7\x00\xd2\x00\x00\x00\x00\x00\xb1\x00\xaf\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x91\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x19\x02\x00\x00\x00\x00\x00\x00\x0e\x01\xa3\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1d\x02\xc9\x00\x7a\x00\x86\x01\xf7\x00\x91\x02\x00\x00\x00\x00\x00\x00\x72\x00\x00\x00\x8a\x00\x00\x00\x23\x04\x00\x00\x00\x00\x1a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x02\x21\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x59\x00\x00\x00\x00\x00\x00\x00\x17\x00\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"# +happyGotoOffsets = HappyA# "\x1d\x02\x2c\x00\xc0\x01\x8f\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5d\x03\x00\x00\x00\x00\x00\x00\x00\x00\x42\x02\x83\x02\xc5\x01\x00\x00\x39\x02\x61\x00\x5b\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x83\x04\x00\x00\xe7\x01\x00\x00\x00\x00\x49\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x67\x02\x03\x00\x00\x00\x55\x02\x54\x02\x00\x00\x00\x00\x15\x00\x00\x00\x00\x00\x00\x00\x53\x02\x52\x02\x51\x02\x50\x02\x4f\x02\x4d\x02\x00\x00\x0b\x00\x00\x00\x00\x00\x00\x00\x09\x00\x07\x00\x05\x00\x2b\x02\xbb\x02\x00\x00\x00\x00\xad\x01\x6f\x04\xff\x00\xa9\x02\x5d\x04\x00\x00\x00\x00\x00\x00\x00\x00\xa3\x01\x28\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x47\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3d\x02\x00\x00\x00\x00\x4b\x04\x19\x03\x05\x03\x07\x02\x37\x04\x2b\x04\x19\x04\x00\x00\x00\x00\x16\x00\x69\x01\x00\x00\x7e\x01\x00\x00\x00\x00\x12\x02\x63\x01\x00\x00\x00\x00\x00\x00\x5d\x03\x5d\x03\x5d\x03\x00\x00\x00\x00\x00\x00\x7e\x00\x0d\x02\x00\x00\x05\x04\x00\x00\x00\x00\x00\x00\xf7\x01\x00\x00\x17\x02\xf3\x03\x00\x00\xe7\x03\x44\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x04\x00\x00\x00\x00\x00\x00\xb4\x00\xb8\x03\xff\x01\x00\x00\x00\x00\xd3\x03\x33\x01\xc1\x03\xaf\x03\x00\x00\x00\x00\x00\x00\x00\x00\x6f\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf4\x01\x00\x00\x00\x00\x40\x02\x64\x01\xb9\x04\x16\x01\x0b\x01\xb7\x04\xa5\x04\xa1\x04\x81\x04\x80\x04\xa6\x01\x55\x04\xb5\x02\x54\x04\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x78\x01\x00\x00\x00\x00\x00\x00\x00\x00\xd4\x01\xde\x01\xef\x01\xca\x01\xb9\x01\x8c\x01\x00\x00\xe9\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x2e\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x41\x01\x00\x00\x00\x00\x00\x00\x65\x01\x00\x00\x00\x00\xe2\x01\x9b\x03\x29\x02\x00\x00\x74\x01\x00\x00\x95\x02\x89\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc4\x00\x8f\x03\x00\x00\x68\x01\xbf\x01\x00\x00\x00\x00\x7d\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x97\x00\x72\x03\x00\x00\x00\x00\x00\x00\xec\x01\x69\x03\x57\x03\x00\x00\x00\x00\x00\x00\x00\x00\xc8\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\x00\x0e\x00\x13\x00\xab\x01\xc2\x00\x45\x01\x4b\x03\x1c\x00\x86\x01\x57\x01\x00\x00\x00\x00\x37\x03\xee\x00\x25\x03\x13\x03\xe6\x00\x00\x00\x00\x00\x00\x00\x35\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa5\x01\x00\x00\x2b\x01\x00\x00\x27\x01\x00\x00\x00\x00\x00\x00\x2c\x01\xa7\x00\x23\x00\xe4\x00\x00\x00\x00\x00\xfa\x00\xff\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x8a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x71\x02\x00\x00\x00\x00\x00\x00\x48\x00\xf3\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x00\xcb\x00\xbf\x00\x19\x01\x0e\x00\xe1\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6d\x00\x00\x00\x25\x00\x00\x00\x93\x02\x00\x00\x00\x00\x00\x00\x7b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x57\x02\x2b\x00\x00\x00\x00\x00\x29\x00\x00\x00\x00\x00\x1e\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x31\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"# happyDefActions :: HappyAddr -happyDefActions = HappyA# "\xf6\xff\xd3\xff\x29\xff\x00\x00\x00\x00\xfb\xff\x93\xff\x8f\xff\x8e\xff\x85\xff\x81\xff\x78\xff\x73\xff\x68\xff\x00\x00\x90\xff\x00\x00\x96\xff\x46\xff\x00\x00\x8d\xff\x3f\xff\x46\xff\x00\x00\x54\xff\x52\xff\x51\xff\x53\xff\x55\xff\x00\x00\x00\x00\x96\xff\x00\x00\x00\x00\x00\x00\x00\x00\xfa\xff\xf9\xff\xf8\xff\x00\x00\xdf\xff\x00\x00\x00\x00\x00\x00\x00\x00\xd2\xff\x00\x00\xd3\xff\xf5\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf4\xff\x26\xff\x27\xff\x00\x00\x28\xff\x00\x00\x00\x00\x00\x00\x2a\xff\x67\xff\x93\xff\x00\x00\x96\xff\x00\x00\x00\x00\x67\xff\x00\x00\x9b\xff\x00\x00\x95\xff\x00\x00\x96\xff\x35\xff\x00\x00\x77\xff\x48\xff\x45\xff\x00\x00\x46\xff\x47\xff\x41\xff\x3e\xff\x00\x00\x00\x00\x00\x00\x8c\xff\x93\xff\x00\x00\x00\x00\x00\x00\x9b\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\xff\x00\x00\x00\x00\x79\xff\x96\xff\x57\xff\x84\xff\x00\x00\x96\xff\x6d\xff\x6e\xff\x6f\xff\x75\xff\x76\xff\x74\xff\x70\xff\x8a\xff\x92\xff\x00\x00\x00\x00\x00\x00\x00\x00\x86\xff\x8b\xff\x00\x00\x91\xff\x89\xff\x3f\xff\x00\x00\x00\x00\x00\x00\x46\xff\x00\x00\x63\xff\x5f\xff\x60\xff\x4c\xff\x00\x00\x34\xff\x00\x00\x50\xff\x00\x00\x3c\xff\x64\xff\x00\x00\x00\x00\x96\xff\x00\x00\x00\x00\x00\x00\x66\xff\x00\x00\x00\x00\x9b\xff\x59\xff\x4d\xff\x4a\xff\x00\x00\x38\xff\x00\x00\x00\x00\x00\x00\xde\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x23\xff\x25\xff\x24\xff\x21\xff\x22\xff\x00\x00\xe7\xff\xe6\xff\x00\x00\x00\x00\xe8\xff\xdc\xff\x00\x00\x00\x00\x00\x00\xf2\xff\xd8\xff\x00\x00\x00\x00\x00\x00\x00\x00\x20\xff\x9b\xff\x00\x00\xc6\xff\x00\x00\x00\x00\xbd\xff\x00\x00\x00\x00\x00\x00\xbb\xff\xb0\xff\x00\x00\xc5\xff\xc4\xff\xbc\xff\xc2\xff\xc3\xff\xc1\xff\x00\x00\xc9\xff\x00\x00\x00\x00\x00\x00\xbe\xff\xc8\xff\x00\x00\x00\x00\xc7\xff\x2c\xff\x00\x00\xca\xff\x7c\xff\x63\xff\x00\x00\x7f\xff\x00\x00\x00\x00\x00\x00\x5b\xff\x00\x00\x7a\xff\x67\xff\x31\xff\x99\xff\x98\xff\x94\xff\x6b\xff\x00\x00\x40\xff\x3b\xff\x00\x00\x00\x00\x9b\xff\x00\x00\x4f\xff\x00\x00\x69\xff\x35\xff\x00\x00\x4b\xff\x00\x00\x00\x00\x44\xff\x72\xff\x00\x00\x00\x00\x41\xff\x3d\xff\x00\x00\x00\x00\x88\xff\x00\x00\x9a\xff\x00\x00\x56\xff\x9b\xff\x6a\xff\x83\xff\x43\xff\x82\xff\x87\xff\x71\xff\x00\x00\x61\xff\x36\xff\x33\xff\x5e\xff\x50\xff\x00\x00\x62\xff\x5c\xff\x5d\xff\x3c\xff\x00\x00\x00\x00\x00\x00\x30\xff\x00\x00\x65\xff\x61\xff\x49\xff\x39\xff\x37\xff\x7e\xff\xaa\xff\xba\xff\xa6\xff\xb5\xff\xa0\xff\x00\x00\x00\x00\xa8\xff\xa4\xff\x9e\xff\xbf\xff\xc0\xff\x00\x00\xa2\xff\x00\x00\x00\x00\xac\xff\x00\x00\xd6\xff\x00\x00\xd1\xff\xe4\xff\xe5\xff\xe0\xff\x00\x00\xdb\xff\xdd\xff\xdb\xff\x00\x00\x00\x00\xe1\xff\xda\xff\x00\x00\xdf\xff\x00\x00\xd0\xff\xcf\xff\x00\x00\x00\x00\xab\xff\xce\xff\xcd\xff\xa1\xff\xae\xff\x2c\xff\x9d\xff\xb2\xff\x00\x00\xa3\xff\xa7\xff\xb9\xff\xad\xff\x9f\xff\xb7\xff\xb4\xff\xb8\xff\xa5\xff\x2d\xff\x2b\xff\x46\xff\xa9\xff\x5a\xff\x7b\xff\x31\xff\x00\x00\x97\xff\x6c\xff\x3a\xff\x58\xff\x4e\xff\x7d\xff\x32\xff\x2f\xff\x00\x00\xb5\xff\x00\x00\x00\x00\x9e\xff\xaf\xff\x00\x00\xcc\xff\xe3\xff\x00\x00\x00\x00\xd7\xff\xdb\xff\x00\x00\xf0\xff\xd9\xff\xe2\xff\x00\x00\xd5\xff\xcb\xff\x9c\xff\x00\x00\xb6\xff\xb3\xff\x00\x00\x00\x00\xb1\xff\x00\x00\x00\x00\xef\xff\x00\x00\xf3\xff\xf0\xff\x00\x00\xd4\xff\x2e\xff\xec\xff\xf1\xff\xee\xff\xed\xff\xeb\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xea\xff\xe9\xff"# +happyDefActions = HappyA# "\xf6\xff\xd2\xff\x23\xff\x00\x00\x00\x00\xfb\xff\x8d\xff\x89\xff\x88\xff\x7f\xff\x7b\xff\x72\xff\x6d\xff\x62\xff\x00\x00\x8a\xff\x00\x00\x90\xff\x40\xff\x00\x00\x87\xff\x39\xff\x40\xff\x00\x00\x4e\xff\x4c\xff\x4b\xff\x4d\xff\x4f\xff\x00\x00\x00\x00\x90\xff\x00\x00\x00\x00\x00\x00\x00\x00\xfa\xff\xf9\xff\xf8\xff\x00\x00\xde\xff\x00\x00\x00\x00\x00\x00\x00\x00\xd1\xff\x00\x00\xd2\xff\xf5\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf4\xff\x20\xff\x21\xff\x00\x00\x22\xff\x00\x00\x00\x00\x00\x00\x24\xff\x61\xff\x8d\xff\x00\x00\x90\xff\x00\x00\x00\x00\x61\xff\x00\x00\x95\xff\x00\x00\x8f\xff\x00\x00\x90\xff\x2f\xff\x00\x00\x71\xff\x42\xff\x3f\xff\x00\x00\x40\xff\x41\xff\x3b\xff\x38\xff\x00\x00\x00\x00\x00\x00\x86\xff\x8d\xff\x00\x00\x00\x00\x00\x00\x95\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7a\xff\x00\x00\x00\x00\x73\xff\x90\xff\x51\xff\x7e\xff\x00\x00\x90\xff\x67\xff\x68\xff\x69\xff\x6f\xff\x70\xff\x6e\xff\x6a\xff\x84\xff\x8c\xff\x00\x00\x00\x00\x00\x00\x00\x00\x80\xff\x85\xff\x8b\xff\x00\x00\x83\xff\x39\xff\x00\x00\x00\x00\x00\x00\x40\xff\x00\x00\x5d\xff\x59\xff\x5a\xff\x46\xff\x00\x00\x2e\xff\x00\x00\x4a\xff\x00\x00\x36\xff\x5e\xff\x00\x00\x00\x00\x90\xff\x00\x00\x00\x00\x00\x00\x60\xff\x00\x00\x00\x00\x95\xff\x53\xff\x47\xff\x44\xff\x00\x00\x32\xff\x00\x00\x00\x00\x00\x00\xdd\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1d\xff\x1f\xff\x1e\xff\x1b\xff\x1c\xff\x00\x00\xe7\xff\xe6\xff\x00\x00\x00\x00\xe8\xff\xdb\xff\x00\x00\x00\x00\x00\x00\xf2\xff\xd7\xff\x00\x00\xcd\xff\x00\x00\x00\x00\x00\x00\x1a\xff\x95\xff\x00\x00\xc0\xff\x00\x00\x00\x00\xb7\xff\x00\x00\x00\x00\x00\x00\xb5\xff\xaa\xff\x00\x00\xbf\xff\xbe\xff\xb6\xff\xbc\xff\xbd\xff\xbb\xff\x00\x00\xc3\xff\x00\x00\x00\x00\x00\x00\xb8\xff\xc2\xff\x00\x00\x00\x00\xc1\xff\x26\xff\x00\x00\xc4\xff\x76\xff\x5d\xff\x00\x00\x79\xff\x00\x00\x00\x00\x00\x00\x55\xff\x00\x00\x74\xff\x61\xff\x2b\xff\x93\xff\x92\xff\x8e\xff\x65\xff\x00\x00\x3a\xff\x35\xff\x00\x00\x00\x00\x95\xff\x00\x00\x49\xff\x00\x00\x63\xff\x2f\xff\x00\x00\x45\xff\x00\x00\x00\x00\x3e\xff\x6c\xff\x00\x00\x00\x00\x3b\xff\x37\xff\x00\x00\x00\x00\x82\xff\x00\x00\x94\xff\x00\x00\x50\xff\x95\xff\x64\xff\x7d\xff\x3d\xff\x7c\xff\x81\xff\x6b\xff\x00\x00\x5b\xff\x30\xff\x2d\xff\x58\xff\x4a\xff\x00\x00\x5c\xff\x56\xff\x57\xff\x36\xff\x00\x00\x00\x00\x00\x00\x2a\xff\x00\x00\x5f\xff\x5b\xff\x43\xff\x33\xff\x31\xff\x78\xff\xa4\xff\xb4\xff\xa0\xff\xaf\xff\x9a\xff\x00\x00\x00\x00\xa2\xff\x9e\xff\x98\xff\xb9\xff\xba\xff\x00\x00\x9c\xff\x00\x00\x00\x00\xa6\xff\x00\x00\xd5\xff\x00\x00\xd0\xff\xe4\xff\xe5\xff\xca\xff\xdf\xff\xcc\xff\xe0\xff\x00\x00\xda\xff\xdc\xff\xda\xff\x00\x00\x00\x00\xe1\xff\xd9\xff\x00\x00\xde\xff\xcd\xff\x00\x00\x00\x00\xcf\xff\xce\xff\x00\x00\x00\x00\xa5\xff\xc8\xff\xc7\xff\x9b\xff\xa8\xff\x26\xff\x97\xff\xac\xff\x00\x00\x9d\xff\xa1\xff\xb3\xff\xa7\xff\x99\xff\xb1\xff\xae\xff\xb2\xff\x9f\xff\x27\xff\x25\xff\x40\xff\xa3\xff\x54\xff\x75\xff\x2b\xff\x00\x00\x91\xff\x66\xff\x34\xff\x52\xff\x48\xff\x77\xff\x2c\xff\x29\xff\x00\x00\xaf\xff\x00\x00\x00\x00\x98\xff\xa9\xff\x00\x00\xc6\xff\xe3\xff\x00\x00\x00\x00\xcb\xff\x00\x00\xd6\xff\xda\xff\x00\x00\xf0\xff\xd8\xff\xe2\xff\xc9\xff\x00\x00\xd4\xff\xc5\xff\x96\xff\x00\x00\xb0\xff\xad\xff\x00\x00\x00\x00\xab\xff\x00\x00\x00\x00\xef\xff\x00\x00\xf3\xff\xf0\xff\x00\x00\xd3\xff\x28\xff\xec\xff\xf1\xff\xee\xff\xed\xff\xeb\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xea\xff\xe9\xff"# happyCheck :: HappyAddr -happyCheck = HappyA# "\xff\xff\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x01\x00\x00\x00\x00\x00\x0a\x00\x00\x00\x15\x00\x03\x00\x00\x00\x40\x00\x19\x00\x00\x00\x19\x00\x25\x00\x00\x00\x03\x00\x47\x00\x05\x00\x0d\x00\x2b\x00\x0f\x00\x00\x00\x03\x00\x05\x00\x05\x00\x0d\x00\x12\x00\x0f\x00\x10\x00\x12\x00\x09\x00\x02\x00\x0d\x00\x15\x00\x0f\x00\x10\x00\x07\x00\x19\x00\x05\x00\x05\x00\x09\x00\x1d\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x47\x00\x24\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x2a\x00\x34\x00\x47\x00\x2d\x00\x47\x00\x00\x00\x3a\x00\x3b\x00\x32\x00\x00\x00\x4b\x00\x4c\x00\x4b\x00\x4c\x00\x4b\x00\x03\x00\x4b\x00\x05\x00\x4b\x00\x3d\x00\x4b\x00\x47\x00\x4c\x00\x41\x00\x42\x00\x0d\x00\x44\x00\x0f\x00\x10\x00\x47\x00\x48\x00\x49\x00\x4a\x00\x15\x00\x0b\x00\x47\x00\x47\x00\x48\x00\x49\x00\x4a\x00\x06\x00\x1d\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x46\x00\x24\x00\x0b\x00\x47\x00\x47\x00\x00\x00\x13\x00\x2a\x00\x0e\x00\x00\x00\x2d\x00\x00\x00\x01\x00\x02\x00\x1a\x00\x32\x00\x3a\x00\x3b\x00\x1b\x00\x1c\x00\x3a\x00\x3b\x00\x03\x00\x16\x00\x05\x00\x00\x00\x3d\x00\x00\x00\x01\x00\x02\x00\x41\x00\x42\x00\x0d\x00\x44\x00\x0f\x00\x10\x00\x47\x00\x48\x00\x49\x00\x4a\x00\x15\x00\x10\x00\x02\x00\x12\x00\x03\x00\x28\x00\x05\x00\x07\x00\x1d\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x0d\x00\x24\x00\x0f\x00\x10\x00\x00\x00\x47\x00\x31\x00\x2a\x00\x47\x00\x48\x00\x00\x00\x47\x00\x48\x00\x38\x00\x06\x00\x32\x00\x1d\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x31\x00\x24\x00\x43\x00\x44\x00\x3d\x00\x13\x00\x12\x00\x38\x00\x41\x00\x42\x00\x00\x00\x44\x00\x00\x00\x1f\x00\x47\x00\x48\x00\x49\x00\x4a\x00\x43\x00\x44\x00\x26\x00\x00\x00\x03\x00\x00\x00\x05\x00\x00\x00\x3d\x00\x08\x00\x48\x00\x00\x00\x41\x00\x42\x00\x0d\x00\x44\x00\x0f\x00\x10\x00\x47\x00\x48\x00\x49\x00\x4a\x00\x0e\x00\x1f\x00\x2d\x00\x12\x00\x03\x00\x10\x00\x05\x00\x12\x00\x26\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x0d\x00\x3a\x00\x0f\x00\x10\x00\x00\x00\x01\x00\x02\x00\x03\x00\x02\x00\x28\x00\x29\x00\x2a\x00\x06\x00\x03\x00\x00\x00\x05\x00\x00\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x03\x00\x0d\x00\x05\x00\x0f\x00\x10\x00\x00\x00\x01\x00\x02\x00\x03\x00\x2f\x00\x0d\x00\x31\x00\x0f\x00\x10\x00\x47\x00\x48\x00\x49\x00\x4a\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x0b\x00\x14\x00\x2b\x00\x0e\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x28\x00\x29\x00\x2a\x00\x35\x00\x47\x00\x48\x00\x49\x00\x4a\x00\x00\x00\x01\x00\x02\x00\x03\x00\x00\x00\x00\x00\x01\x00\x02\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x2f\x00\x47\x00\x03\x00\x00\x00\x05\x00\x00\x00\x35\x00\x47\x00\x48\x00\x49\x00\x4a\x00\x00\x00\x00\x00\x3c\x00\x04\x00\x10\x00\x47\x00\x48\x00\x49\x00\x4a\x00\x0a\x00\x0b\x00\x45\x00\x46\x00\x19\x00\x00\x00\x17\x00\x00\x00\x01\x00\x02\x00\x19\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x2f\x00\x21\x00\x03\x00\x04\x00\x05\x00\x23\x00\x35\x00\x31\x00\x32\x00\x0a\x00\x0b\x00\x0c\x00\x03\x00\x3c\x00\x05\x00\x10\x00\x28\x00\x28\x00\x29\x00\x2a\x00\x0b\x00\x16\x00\x45\x00\x46\x00\x19\x00\x10\x00\x03\x00\x33\x00\x05\x00\x00\x00\x36\x00\x48\x00\x00\x00\x0a\x00\x19\x00\x47\x00\x48\x00\x49\x00\x00\x00\x10\x00\x00\x00\x31\x00\x32\x00\x00\x00\x01\x00\x02\x00\x00\x00\x37\x00\x19\x00\x39\x00\x00\x00\x01\x00\x02\x00\x00\x00\x01\x00\x02\x00\x2c\x00\x41\x00\x42\x00\x2f\x00\x1c\x00\x00\x00\x01\x00\x02\x00\x00\x00\x01\x00\x02\x00\x1d\x00\x24\x00\x1d\x00\x47\x00\x48\x00\x49\x00\x00\x00\x01\x00\x02\x00\x09\x00\x27\x00\x00\x00\x27\x00\x47\x00\x48\x00\x49\x00\x28\x00\x29\x00\x2a\x00\x13\x00\x14\x00\x4c\x00\x16\x00\x17\x00\x18\x00\x31\x00\x32\x00\x47\x00\x48\x00\x49\x00\x00\x00\x37\x00\x31\x00\x39\x00\x07\x00\x31\x00\x32\x00\x0a\x00\x04\x00\x38\x00\x11\x00\x41\x00\x42\x00\x31\x00\x32\x00\x12\x00\x31\x00\x32\x00\x3e\x00\x37\x00\x40\x00\x39\x00\x37\x00\x00\x00\x39\x00\x31\x00\x32\x00\x00\x00\x2c\x00\x41\x00\x42\x00\x2f\x00\x41\x00\x42\x00\x00\x00\x01\x00\x02\x00\x03\x00\x3e\x00\x45\x00\x40\x00\x25\x00\x00\x00\x27\x00\x28\x00\x29\x00\x00\x00\x2b\x00\x00\x00\x00\x00\x01\x00\x02\x00\x00\x00\x01\x00\x02\x00\x33\x00\x34\x00\x35\x00\x36\x00\x04\x00\x02\x00\x39\x00\x16\x00\x3b\x00\x3c\x00\x0a\x00\x3e\x00\x00\x00\x01\x00\x02\x00\x03\x00\x43\x00\x00\x00\x01\x00\x02\x00\x03\x00\x1e\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x2f\x00\x28\x00\x25\x00\x00\x00\x01\x00\x28\x00\x35\x00\x00\x00\x01\x00\x02\x00\x03\x00\x00\x00\x33\x00\x3c\x00\x3d\x00\x36\x00\x3f\x00\x31\x00\x00\x00\x01\x00\x31\x00\x32\x00\x49\x00\x4a\x00\x38\x00\x00\x00\x01\x00\x02\x00\x03\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x2f\x00\x2b\x00\x2c\x00\x2d\x00\x1a\x00\x1b\x00\x35\x00\x00\x00\x01\x00\x02\x00\x00\x00\x35\x00\x00\x00\x3c\x00\x3d\x00\x00\x00\x3f\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x2f\x00\x00\x00\x01\x00\x02\x00\x03\x00\x00\x00\x35\x00\x00\x00\x01\x00\x02\x00\x03\x00\x3a\x00\x3b\x00\x3c\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x2f\x00\x00\x00\x01\x00\x02\x00\x03\x00\x00\x00\x35\x00\x00\x00\x01\x00\x02\x00\x03\x00\x3a\x00\x3b\x00\x3c\x00\x04\x00\x05\x00\x00\x00\x31\x00\x32\x00\x00\x00\x01\x00\x02\x00\x03\x00\x37\x00\x00\x00\x39\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x2f\x00\x30\x00\x2b\x00\x2c\x00\x2d\x00\x04\x00\x35\x00\x00\x00\x01\x00\x02\x00\x03\x00\x0a\x00\x35\x00\x3c\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x2f\x00\x30\x00\x2b\x00\x2c\x00\x2d\x00\x0c\x00\x35\x00\x00\x00\x01\x00\x02\x00\x03\x00\x0e\x00\x35\x00\x3c\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x2f\x00\x30\x00\x00\x00\x00\x00\x00\x00\x06\x00\x35\x00\x00\x00\x01\x00\x02\x00\x03\x00\x07\x00\x08\x00\x3c\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x2f\x00\x00\x00\x01\x00\x02\x00\x03\x00\x06\x00\x35\x00\x00\x00\x01\x00\x02\x00\x03\x00\x43\x00\x00\x00\x3c\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x2f\x00\x00\x00\x01\x00\x02\x00\x03\x00\x05\x00\x35\x00\x28\x00\x29\x00\x2a\x00\x10\x00\x47\x00\x12\x00\x3c\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x2f\x00\x00\x00\x01\x00\x02\x00\x03\x00\x01\x00\x35\x00\x04\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x2f\x00\x3c\x00\x2b\x00\x2c\x00\x00\x00\x02\x00\x35\x00\x00\x00\x01\x00\x02\x00\x03\x00\x06\x00\x35\x00\x3c\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x2f\x00\x00\x00\x01\x00\x02\x00\x03\x00\x06\x00\x35\x00\x00\x00\x01\x00\x02\x00\x03\x00\x00\x00\x06\x00\x3c\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x2f\x00\x00\x00\x01\x00\x02\x00\x03\x00\x01\x00\x35\x00\x47\x00\x28\x00\x29\x00\x2a\x00\x47\x00\x07\x00\x3c\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x2f\x00\x00\x00\x01\x00\x02\x00\x03\x00\x0c\x00\x35\x00\x0b\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x2f\x00\x3c\x00\x2b\x00\x28\x00\x29\x00\x2a\x00\x35\x00\x00\x00\x01\x00\x02\x00\x03\x00\x2d\x00\x35\x00\x3c\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x2f\x00\x00\x00\x01\x00\x02\x00\x03\x00\x0c\x00\x35\x00\x00\x00\x01\x00\x02\x00\x03\x00\x02\x00\x2d\x00\x3c\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x2f\x00\x00\x00\x01\x00\x02\x00\x03\x00\x00\x00\x35\x00\x47\x00\x00\x00\x0a\x00\x03\x00\x47\x00\x02\x00\x3c\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x2f\x00\x00\x00\x01\x00\x02\x00\x03\x00\x08\x00\x35\x00\x02\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x2f\x00\x3c\x00\x2b\x00\x1c\x00\x1a\x00\x1b\x00\x35\x00\x00\x00\x01\x00\x02\x00\x03\x00\x24\x00\x35\x00\x3c\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x2f\x00\x00\x00\x01\x00\x02\x00\x03\x00\x47\x00\x35\x00\x04\x00\x01\x00\x1b\x00\x47\x00\x06\x00\x04\x00\x3c\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x2f\x00\x00\x00\x01\x00\x02\x00\x03\x00\x0e\x00\x35\x00\x00\x00\x04\x00\x04\x00\x11\x00\x47\x00\x04\x00\x3c\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x2f\x00\x00\x00\x01\x00\x02\x00\x03\x00\x01\x00\x35\x00\x02\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x2f\x00\x3c\x00\x19\x00\x06\x00\x11\x00\x0a\x00\x35\x00\x00\x00\x01\x00\x02\x00\x03\x00\x2d\x00\x23\x00\x3c\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x2f\x00\x00\x00\x01\x00\x02\x00\x03\x00\x02\x00\x35\x00\x47\x00\x04\x00\x01\x00\x01\x00\x47\x00\x02\x00\x3c\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x2f\x00\x00\x00\x01\x00\x02\x00\x03\x00\x01\x00\x35\x00\x02\x00\x01\x00\x00\x00\x07\x00\x01\x00\x01\x00\x3c\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x2f\x00\x00\x00\x01\x00\x02\x00\x03\x00\x02\x00\x35\x00\x02\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x2f\x00\x3c\x00\x17\x00\x01\x00\x47\x00\x38\x00\x35\x00\x00\x00\x01\x00\x02\x00\x03\x00\x23\x00\x21\x00\x3c\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x2f\x00\x00\x00\x01\x00\x02\x00\x03\x00\x03\x00\x35\x00\x37\x00\x04\x00\x37\x00\x07\x00\x47\x00\x04\x00\x3c\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x2f\x00\x00\x00\x01\x00\x02\x00\x03\x00\x01\x00\x35\x00\x0c\x00\x0e\x00\x16\x00\x04\x00\x01\x00\x01\x00\x3c\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x2f\x00\x00\x00\x01\x00\x02\x00\x03\x00\x47\x00\x35\x00\x00\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x2f\x00\x3c\x00\x07\x00\x08\x00\x04\x00\x47\x00\x35\x00\x00\x00\x01\x00\x02\x00\x03\x00\x01\x00\x04\x00\x3c\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x2f\x00\x00\x00\x01\x00\x02\x00\x00\x00\x00\x00\x35\x00\x00\x00\x01\x00\x02\x00\x00\x00\x01\x00\x02\x00\x3c\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x2f\x00\x08\x00\x00\x00\x00\x00\x03\x00\x0b\x00\x35\x00\x00\x00\x15\x00\x49\x00\x18\x00\x06\x00\x16\x00\x3c\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x2f\x00\x20\x00\x22\x00\x00\x00\x00\x00\x15\x00\x35\x00\x00\x00\x28\x00\x28\x00\x00\x00\x47\x00\x00\x00\x3c\x00\x31\x00\x1e\x00\x20\x00\x00\x00\x47\x00\x1e\x00\x31\x00\x38\x00\x25\x00\x31\x00\x28\x00\x28\x00\x25\x00\x38\x00\x15\x00\x28\x00\x38\x00\x15\x00\x00\x00\x1e\x00\x1e\x00\x00\x00\x18\x00\x00\x00\x15\x00\x20\x00\x25\x00\x25\x00\x20\x00\x28\x00\x28\x00\x0b\x00\x22\x00\x28\x00\x23\x00\x20\x00\x28\x00\x26\x00\x28\x00\x15\x00\x03\x00\x07\x00\x15\x00\x28\x00\x15\x00\x47\x00\x04\x00\x30\x00\x31\x00\x47\x00\x20\x00\x06\x00\x0e\x00\x20\x00\x0a\x00\x20\x00\x11\x00\x07\x00\x28\x00\x08\x00\x37\x00\x28\x00\x3f\x00\x28\x00\x0a\x00\x25\x00\x43\x00\x27\x00\x28\x00\x29\x00\x2d\x00\x2b\x00\x47\x00\x01\x00\x0a\x00\x01\x00\x03\x00\x47\x00\x02\x00\x33\x00\x34\x00\x35\x00\x36\x00\x02\x00\x01\x00\x39\x00\x4c\x00\x3b\x00\x3c\x00\x4c\x00\x3e\x00\x03\x00\x03\x00\x47\x00\x03\x00\x43\x00\x03\x00\x47\x00\x08\x00\x2e\x00\x4c\x00\x47\x00\x12\x00\x0b\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff"# +happyCheck = HappyA# "\xff\xff\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x01\x00\x00\x00\x01\x00\x02\x00\x03\x00\x19\x00\x00\x00\x1a\x00\x03\x00\x00\x00\x03\x00\x04\x00\x05\x00\x2c\x00\x06\x00\x00\x00\x2f\x00\x0a\x00\x05\x00\x05\x00\x0d\x00\x0e\x00\x00\x00\x10\x00\x00\x00\x09\x00\x05\x00\x13\x00\x0b\x00\x16\x00\x00\x00\x02\x00\x19\x00\x1b\x00\x09\x00\x06\x00\x00\x00\x06\x00\x0a\x00\x09\x00\x10\x00\x1a\x00\x12\x00\x25\x00\x13\x00\x14\x00\x2d\x00\x16\x00\x17\x00\x18\x00\x13\x00\x24\x00\x48\x00\x48\x00\x12\x00\x00\x00\x37\x00\x2a\x00\x00\x00\x00\x00\x01\x00\x02\x00\x03\x00\x36\x00\x2a\x00\x4d\x00\x4e\x00\x4d\x00\x4e\x00\x4d\x00\x03\x00\x4d\x00\x05\x00\x4d\x00\x49\x00\x4d\x00\x4d\x00\x48\x00\x0b\x00\x48\x00\x49\x00\x4a\x00\x0f\x00\x10\x00\x00\x00\x48\x00\x48\x00\x47\x00\x15\x00\x03\x00\x0c\x00\x05\x00\x19\x00\x48\x00\x00\x00\x46\x00\x1d\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x10\x00\x24\x00\x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\x2a\x00\x00\x00\x19\x00\x2d\x00\x00\x00\x37\x00\x3c\x00\x3d\x00\x32\x00\x3c\x00\x3d\x00\x18\x00\x3e\x00\x1c\x00\x1d\x00\x00\x00\x01\x00\x02\x00\x03\x00\x3d\x00\x02\x00\x47\x00\x48\x00\x41\x00\x42\x00\x07\x00\x03\x00\x45\x00\x05\x00\x00\x00\x48\x00\x49\x00\x4a\x00\x4b\x00\x0b\x00\x3c\x00\x3d\x00\x07\x00\x0f\x00\x10\x00\x0a\x00\x48\x00\x49\x00\x15\x00\x15\x00\x00\x00\x2a\x00\x19\x00\x12\x00\x48\x00\x49\x00\x4a\x00\x1d\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x00\x00\x24\x00\x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\x2a\x00\x15\x00\x16\x00\x2d\x00\x00\x00\x37\x00\x2a\x00\x00\x00\x32\x00\x00\x00\x01\x00\x02\x00\x3e\x00\x00\x00\x01\x00\x02\x00\x00\x00\x35\x00\x00\x00\x3d\x00\x38\x00\x47\x00\x48\x00\x41\x00\x42\x00\x4a\x00\x03\x00\x45\x00\x05\x00\x48\x00\x48\x00\x49\x00\x4a\x00\x4b\x00\x0b\x00\x2a\x00\x12\x00\x00\x00\x0f\x00\x10\x00\x21\x00\x00\x00\x2c\x00\x00\x00\x15\x00\x2f\x00\x35\x00\x28\x00\x03\x00\x38\x00\x05\x00\x00\x00\x1d\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x0d\x00\x24\x00\x33\x00\x10\x00\x19\x00\x00\x00\x33\x00\x2a\x00\x17\x00\x3a\x00\x00\x00\x01\x00\x19\x00\x3a\x00\x23\x00\x32\x00\x03\x00\x4d\x00\x05\x00\x22\x00\x45\x00\x46\x00\x00\x00\x12\x00\x0b\x00\x20\x00\x3d\x00\x2a\x00\x0f\x00\x10\x00\x41\x00\x42\x00\x27\x00\x00\x00\x45\x00\x2a\x00\x00\x00\x48\x00\x49\x00\x4a\x00\x4b\x00\x0d\x00\x1d\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x1a\x00\x24\x00\x00\x00\x00\x00\x01\x00\x02\x00\x00\x00\x1b\x00\x1c\x00\x00\x00\x24\x00\x48\x00\x49\x00\x4a\x00\x00\x00\x03\x00\x2a\x00\x05\x00\x21\x00\x1f\x00\x08\x00\x0e\x00\x10\x00\x0b\x00\x12\x00\x28\x00\x3d\x00\x0f\x00\x10\x00\x29\x00\x41\x00\x42\x00\x00\x00\x2f\x00\x45\x00\x31\x00\x14\x00\x48\x00\x49\x00\x4a\x00\x4b\x00\x20\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x03\x00\x27\x00\x05\x00\x00\x00\x2a\x00\x48\x00\x49\x00\x33\x00\x0b\x00\x2a\x00\x2b\x00\x2c\x00\x0f\x00\x10\x00\x3a\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x00\x00\x00\x00\x01\x00\x02\x00\x03\x00\x45\x00\x46\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x00\x00\x03\x00\x1f\x00\x05\x00\x00\x00\x48\x00\x49\x00\x4a\x00\x4b\x00\x0b\x00\x00\x00\x1b\x00\x29\x00\x0f\x00\x10\x00\x02\x00\x25\x00\x0d\x00\x00\x00\x0f\x00\x07\x00\x25\x00\x2b\x00\x4a\x00\x00\x00\x2a\x00\x2b\x00\x2c\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x03\x00\x2d\x00\x05\x00\x33\x00\x48\x00\x49\x00\x4a\x00\x4b\x00\x0b\x00\x12\x00\x3a\x00\x37\x00\x0f\x00\x10\x00\x00\x00\x1e\x00\x00\x00\x00\x00\x48\x00\x2a\x00\x2b\x00\x2c\x00\x00\x00\x26\x00\x00\x00\x01\x00\x02\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x10\x00\x03\x00\x12\x00\x05\x00\x00\x00\x48\x00\x49\x00\x4a\x00\x4b\x00\x0b\x00\x00\x00\x01\x00\x02\x00\x0f\x00\x10\x00\x1e\x00\x00\x00\x01\x00\x1c\x00\x1d\x00\x03\x00\x00\x00\x05\x00\x26\x00\x2a\x00\x2b\x00\x2c\x00\x0a\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x10\x00\x2a\x00\x2b\x00\x2c\x00\x48\x00\x49\x00\x4a\x00\x4b\x00\x00\x00\x19\x00\x33\x00\x34\x00\x00\x00\x01\x00\x02\x00\x11\x00\x39\x00\x00\x00\x3b\x00\x00\x00\x01\x00\x02\x00\x00\x00\x01\x00\x02\x00\x00\x00\x43\x00\x44\x00\x33\x00\x34\x00\x00\x00\x01\x00\x02\x00\x00\x00\x39\x00\x2d\x00\x3b\x00\x48\x00\x49\x00\x4a\x00\x4b\x00\x00\x00\x01\x00\x02\x00\x43\x00\x44\x00\x15\x00\x16\x00\x3a\x00\x00\x00\x01\x00\x02\x00\x03\x00\x4b\x00\x4c\x00\x00\x00\x48\x00\x49\x00\x4a\x00\x2a\x00\x2b\x00\x2c\x00\x02\x00\x33\x00\x34\x00\x00\x00\x01\x00\x02\x00\x03\x00\x39\x00\x33\x00\x3b\x00\x04\x00\x33\x00\x34\x00\x04\x00\x05\x00\x3a\x00\x0a\x00\x43\x00\x44\x00\x33\x00\x34\x00\x00\x00\x01\x00\x02\x00\x40\x00\x39\x00\x42\x00\x3b\x00\x0c\x00\x0d\x00\x33\x00\x34\x00\x2d\x00\x2e\x00\x2f\x00\x43\x00\x44\x00\x00\x00\x01\x00\x02\x00\x03\x00\x00\x00\x37\x00\x40\x00\x00\x00\x42\x00\x00\x00\x18\x00\x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\x00\x00\x01\x00\x02\x00\x03\x00\x00\x00\x37\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3e\x00\x3f\x00\x00\x00\x41\x00\x19\x00\x04\x00\x00\x00\x33\x00\x34\x00\x07\x00\x08\x00\x06\x00\x0c\x00\x39\x00\x23\x00\x3b\x00\x04\x00\x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\x0a\x00\x2a\x00\x2b\x00\x2c\x00\x06\x00\x37\x00\x00\x00\x01\x00\x02\x00\x03\x00\x0e\x00\x2d\x00\x3e\x00\x3f\x00\x43\x00\x41\x00\x25\x00\x00\x00\x27\x00\x28\x00\x29\x00\x37\x00\x2b\x00\x05\x00\x00\x00\x01\x00\x02\x00\x03\x00\x48\x00\x04\x00\x33\x00\x34\x00\x35\x00\x36\x00\x01\x00\x06\x00\x39\x00\x02\x00\x3b\x00\x3c\x00\x00\x00\x3e\x00\x00\x00\x01\x00\x02\x00\x03\x00\x43\x00\x07\x00\x08\x00\x20\x00\x06\x00\x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\x27\x00\x06\x00\x48\x00\x2a\x00\x01\x00\x37\x00\x00\x00\x01\x00\x02\x00\x03\x00\x3c\x00\x3d\x00\x3e\x00\x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\x00\x00\x0c\x00\x48\x00\x07\x00\x0e\x00\x37\x00\x00\x00\x01\x00\x02\x00\x03\x00\x3c\x00\x3d\x00\x3e\x00\x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\x32\x00\x2d\x00\x0d\x00\x02\x00\x04\x00\x37\x00\x00\x00\x01\x00\x02\x00\x03\x00\x0a\x00\x0e\x00\x3e\x00\x0d\x00\x20\x00\x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\x32\x00\x27\x00\x2d\x00\x48\x00\x2a\x00\x37\x00\x00\x00\x01\x00\x02\x00\x03\x00\x0a\x00\x02\x00\x3e\x00\x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\x32\x00\x03\x00\x48\x00\x0a\x00\x08\x00\x37\x00\x00\x00\x01\x00\x02\x00\x03\x00\x0b\x00\x02\x00\x3e\x00\x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\x00\x00\x01\x00\x02\x00\x03\x00\x01\x00\x37\x00\x00\x00\x01\x00\x02\x00\x03\x00\x48\x00\x04\x00\x3e\x00\x1b\x00\x48\x00\x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\x00\x00\x01\x00\x02\x00\x03\x00\x06\x00\x37\x00\x00\x00\x01\x00\x02\x00\x03\x00\x11\x00\x04\x00\x3e\x00\x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\x00\x00\x01\x00\x02\x00\x03\x00\x0c\x00\x37\x00\x04\x00\x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\x3e\x00\x2d\x00\x2e\x00\x2f\x00\x04\x00\x37\x00\x00\x00\x01\x00\x02\x00\x03\x00\x02\x00\x37\x00\x3e\x00\x04\x00\x48\x00\x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\x01\x00\x2d\x00\x2e\x00\x2f\x00\x06\x00\x37\x00\x00\x00\x01\x00\x02\x00\x03\x00\x11\x00\x37\x00\x3e\x00\x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\x00\x00\x01\x00\x02\x00\x03\x00\x0a\x00\x37\x00\x00\x00\x01\x00\x02\x00\x03\x00\x2d\x00\x02\x00\x3e\x00\x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\x00\x00\x01\x00\x02\x00\x03\x00\x01\x00\x37\x00\x00\x00\x01\x00\x02\x00\x00\x00\x01\x00\x02\x00\x3e\x00\x48\x00\x04\x00\x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\x00\x00\x01\x00\x02\x00\x03\x00\x01\x00\x37\x00\x02\x00\x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\x3e\x00\x2d\x00\x2e\x00\x01\x00\x07\x00\x37\x00\x00\x00\x01\x00\x02\x00\x03\x00\x02\x00\x37\x00\x3e\x00\x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\x00\x00\x01\x00\x02\x00\x03\x00\x01\x00\x37\x00\x01\x00\x33\x00\x02\x00\x48\x00\x33\x00\x34\x00\x3e\x00\x02\x00\x3a\x00\x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\x00\x00\x01\x00\x02\x00\x03\x00\x01\x00\x37\x00\x01\x00\x48\x00\x38\x00\x00\x00\x01\x00\x02\x00\x3e\x00\x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\x00\x00\x01\x00\x02\x00\x03\x00\x23\x00\x37\x00\x03\x00\x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\x3e\x00\x37\x00\x37\x00\x07\x00\x48\x00\x37\x00\x00\x00\x01\x00\x02\x00\x03\x00\x08\x00\x04\x00\x3e\x00\x04\x00\x01\x00\x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\x16\x00\x04\x00\x0e\x00\x0c\x00\x01\x00\x37\x00\x00\x00\x01\x00\x02\x00\x03\x00\x33\x00\x34\x00\x3e\x00\x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\x00\x00\x01\x00\x02\x00\x03\x00\x01\x00\x37\x00\x48\x00\x01\x00\x04\x00\x04\x00\x48\x00\x0d\x00\x3e\x00\x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\x00\x00\x01\x00\x02\x00\x03\x00\x03\x00\x37\x00\x00\x00\x01\x00\x02\x00\x48\x00\x06\x00\x16\x00\x3e\x00\x48\x00\x04\x00\x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\x00\x00\x01\x00\x02\x00\x03\x00\x0d\x00\x37\x00\x48\x00\x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\x3e\x00\x4a\x00\x03\x00\x48\x00\x07\x00\x37\x00\x00\x00\x01\x00\x02\x00\x03\x00\x06\x00\x11\x00\x3e\x00\x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\x00\x00\x01\x00\x02\x00\x03\x00\x0c\x00\x37\x00\x0a\x00\x33\x00\x07\x00\x0a\x00\x08\x00\x2d\x00\x3e\x00\x37\x00\x3a\x00\x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\x00\x00\x01\x00\x02\x00\x03\x00\x48\x00\x37\x00\x01\x00\x0a\x00\x01\x00\x00\x00\x00\x00\x03\x00\x3e\x00\x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\x00\x00\x01\x00\x02\x00\x03\x00\x02\x00\x37\x00\x48\x00\x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\x3e\x00\x02\x00\x17\x00\x17\x00\x01\x00\x37\x00\x00\x00\x01\x00\x02\x00\x03\x00\x4d\x00\x48\x00\x3e\x00\x22\x00\x22\x00\x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\x4d\x00\x2a\x00\x2a\x00\x00\x00\x00\x00\x37\x00\x00\x00\x01\x00\x02\x00\x03\x00\x03\x00\x03\x00\x3e\x00\x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\x00\x00\x01\x00\x02\x00\x03\x00\x03\x00\x37\x00\x03\x00\x48\x00\x17\x00\x17\x00\x08\x00\x4d\x00\x3e\x00\x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\x00\x00\x22\x00\x22\x00\x40\x00\x00\x00\x37\x00\x0d\x00\x44\x00\x12\x00\x2a\x00\x2a\x00\x48\x00\x3e\x00\x48\x00\xff\xff\x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\x2e\x00\xff\xff\x00\x00\x17\x00\x00\x00\x37\x00\xff\xff\x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\x3e\x00\xff\xff\x22\x00\xff\xff\x20\x00\x37\x00\xff\xff\xff\xff\xff\xff\xff\xff\x2a\x00\x27\x00\x3e\x00\x17\x00\x2a\x00\x17\x00\x23\x00\xff\xff\xff\xff\x26\x00\xff\xff\xff\xff\xff\xff\xff\xff\x22\x00\xff\xff\x22\x00\xff\xff\xff\xff\x30\x00\x31\x00\xff\xff\x2a\x00\xff\xff\x2a\x00\x25\x00\xff\xff\x27\x00\x28\x00\x29\x00\xff\xff\x2b\x00\xff\xff\xff\xff\x3f\x00\xff\xff\xff\xff\xff\xff\x43\x00\x33\x00\x34\x00\x35\x00\x36\x00\xff\xff\xff\xff\x39\x00\xff\xff\x3b\x00\x3c\x00\xff\xff\x3e\x00\xff\xff\xff\xff\xff\xff\xff\xff\x43\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff"# happyTable :: HappyAddr -happyTable = HappyA# "\x00\x00\x3a\x00\x3b\x00\x3a\x00\x3b\x00\x3a\x00\x3b\x00\x3a\x00\x3b\x00\x3a\x00\x3b\x00\x3a\x00\x3b\x00\x3a\x00\x52\x00\x70\x00\xa6\x01\xc6\x00\x56\x00\x4f\x00\x48\x01\xca\x00\x57\x00\x48\x01\x57\x00\xd6\x00\x9a\x01\x12\x00\x06\x00\x13\x00\xc7\x00\xd7\x00\xc8\x00\xa3\x01\x70\x00\x4b\x01\x72\x01\x14\x00\xac\x01\x15\x00\x16\x00\xad\x01\xa4\x01\x45\x01\x48\x00\x17\x00\x15\x00\x16\x00\x46\x01\x57\x00\x66\x01\x4b\x01\x51\x01\x18\x00\x19\x00\x1a\x00\x1b\x00\x1c\x00\x1d\x00\x06\x00\x1e\x00\x19\x00\x1a\x00\x1b\x00\x1c\x00\x1d\x00\x1f\x00\x71\x00\x06\x00\x61\x00\x06\x00\x52\x00\x53\x00\x0c\x01\x20\x00\x52\x00\x3c\x00\xcd\x00\x3c\x00\x3d\x00\xb8\x00\x12\x00\xb9\x00\x13\x00\xba\x00\x21\x00\xbc\x00\x06\x00\xff\xff\x22\x00\x23\x00\x14\x00\x24\x00\x15\x00\x16\x00\x06\x00\x25\x00\x26\x00\x27\x00\x17\x00\xa7\x01\x06\x00\x06\x00\x25\x00\x26\x00\x27\x00\x30\x00\x18\x00\x19\x00\x1a\x00\x1b\x00\x1c\x00\x1d\x00\x52\x01\x1e\x00\x3f\x00\x06\x00\x06\x00\x4a\x00\x2b\x00\x1f\x00\x5d\x00\x94\x01\x61\x00\x8c\x00\x8d\x00\x8e\x00\x73\x00\x20\x00\x53\x00\x88\x00\x40\x00\x41\x00\x53\x00\x54\x00\x12\x00\xa9\x00\x13\x00\x48\x01\x21\x00\x8c\x00\x8d\x00\x8e\x00\x22\x00\x23\x00\x14\x00\x24\x00\x15\x00\x16\x00\x06\x00\x25\x00\x26\x00\x27\x00\x17\x00\x8e\x01\x9b\x00\x55\x01\x12\x00\x16\x01\x47\x00\x9c\x00\x18\x00\x19\x00\x1a\x00\x1b\x00\x1c\x00\x1d\x00\x14\x00\x1e\x00\x15\x00\x16\x00\xe3\x00\x06\x00\x8f\x00\x1f\x00\x06\x00\x25\x00\x48\x01\x06\x00\x25\x00\x90\x00\x2a\x00\x20\x00\x18\x00\x19\x00\x1a\x00\x1b\x00\x1c\x00\x1d\x00\x8f\x00\x1e\x00\x91\x00\x23\x01\x21\x00\x2b\x00\x87\x01\x90\x00\x22\x00\x23\x00\xe3\x00\x24\x00\x95\x01\xe4\x00\x06\x00\x25\x00\x26\x00\x27\x00\x91\x00\x92\x00\x6a\x01\x88\x01\x12\x00\x4a\x00\x47\x00\x48\x01\x21\x00\x42\xff\x84\x01\x48\x01\x22\x00\x23\x00\x14\x00\x24\x00\x15\x00\x16\x00\x06\x00\x25\x00\x26\x00\x27\x00\x89\x01\xe4\x00\xab\x01\x49\x01\x12\x00\x54\x01\x47\x00\x55\x01\xe5\x00\x19\x00\x1a\x00\x1b\x00\x1c\x00\x1d\x00\x14\x00\xac\x01\x15\x00\x16\x00\x43\x00\x07\x00\x08\x00\x09\x00\x91\x01\x4b\x00\x4c\x00\xfb\x00\x92\x01\x70\x00\x4a\x00\x47\x00\x8c\x01\x19\x00\x1a\x00\x1b\x00\x1c\x00\x1d\x00\x46\x00\x48\x00\x47\x00\x15\x00\x16\x00\x06\x00\x07\x00\x08\x00\x09\x00\x5a\x01\x48\x00\x5b\x01\x15\x00\x16\x00\x06\x00\x25\x00\x26\x00\x27\x00\x19\x00\x1a\x00\x1b\x00\x1c\x00\x1d\x00\x84\x00\x58\x01\x6f\x01\x85\x00\x19\x00\x1a\x00\x1b\x00\x1c\x00\x1d\x00\x4b\x00\x4c\x00\x17\x01\x0f\x00\x06\x00\x25\x00\x26\x00\x27\x00\x06\x00\x07\x00\x08\x00\x09\x00\x69\x01\xee\x00\x8d\x00\x8e\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x2d\x01\x70\x01\x94\x00\xea\x00\x95\x00\xe7\x00\x0f\x00\x06\x00\x25\x00\x26\x00\x27\x00\x4a\x00\x19\x01\x10\x00\x7d\x00\x96\x00\x06\x00\x25\x00\x26\x00\x27\x00\x7e\x00\x7f\x00\x2e\x01\x7e\x01\x97\x00\x21\x01\xeb\x00\xee\x00\x8d\x00\x8e\x00\xe8\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x2d\x01\x72\x01\x94\x00\x7d\x00\x95\x00\x6e\x01\x0f\x00\xa1\x00\x7a\x01\x7e\x00\xf6\x00\x63\xff\x94\x00\x10\x00\x95\x00\x96\x00\x03\x01\x4b\x00\x4c\x00\x62\x00\xf6\x00\x63\xff\x2e\x01\x2f\x01\x97\x00\x96\x00\x94\x00\x04\x01\x95\x00\x31\x01\x7b\x01\x37\x01\xd8\x00\x7e\x00\x97\x00\x06\x00\x25\x00\x26\x00\x62\x01\x96\x00\x62\x01\xa1\x00\xa2\x00\xa0\x00\x8d\x00\x8e\x00\x4b\x01\xa3\x00\x97\x00\xa4\x00\x8c\x00\x8d\x00\x8e\x00\xee\x00\x8d\x00\x8e\x00\x2d\x00\xa5\x00\x20\x01\x2e\x00\xd9\x00\xee\x00\x8d\x00\x8e\x00\xee\x00\x8d\x00\x8e\x00\x63\x01\x66\x01\x63\x01\x06\x00\x25\x00\x26\x00\xee\x00\x8d\x00\x8e\x00\x65\x00\x93\x01\x4c\x01\x64\x01\x06\x00\x25\x00\x26\x00\x4b\x00\x4c\x00\x62\x00\x66\x00\x67\x00\xf7\xff\x68\x00\x69\x00\x6a\x00\xa1\x00\xa2\x00\x06\x00\x25\x00\x26\x00\x4d\x01\xa3\x00\x8f\x00\xa4\x00\x48\xff\xa1\x00\xfe\x00\x48\xff\x90\x01\x73\x01\x4e\x01\xa5\x00\xa6\x00\xa1\x00\xa2\x00\x6e\x00\xa1\x00\xa2\x00\xff\x00\xa3\x00\x79\x01\xa4\x00\xa3\x00\x12\x01\xa4\x00\xa1\x00\xfe\x00\x15\x01\x2d\x00\xa5\x00\x34\x01\x2e\x00\xa5\x00\xef\x00\x06\x00\x07\x00\x08\x00\x09\x00\xff\x00\x6b\x00\x00\x01\xab\x00\x02\x01\xac\x00\xad\x00\xae\x00\x4a\x00\xaf\x00\x7f\x00\x8c\x00\x8d\x00\x8e\x00\xee\x00\x8d\x00\x8e\x00\xb0\x00\xb1\x00\xb2\x00\xb3\x00\x7d\x00\x18\x01\xb4\x00\xa9\x00\xb5\x00\xb6\x00\x7e\x00\xb7\x00\x06\x00\x07\x00\x08\x00\x09\x00\xb8\x00\x06\x00\x07\x00\x08\x00\x09\x00\xd2\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x10\x01\x03\x01\x60\x01\x9f\x00\x5b\x00\xd4\x00\x0f\x00\x5d\x00\x07\x00\x08\x00\x09\x00\x6b\x01\x04\x01\x10\x00\x58\x00\x05\x01\x11\x01\x8f\x00\x5a\x00\x5b\x00\xa1\x00\x01\x01\x27\x00\x28\x00\xf4\x00\x5d\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x57\x00\x0a\x00\x0b\x00\x77\x00\x6c\x01\x96\x01\x0f\x00\xee\x00\x8d\x00\x8e\x00\xbd\x00\x0f\x00\xbe\x00\x10\x00\x58\x00\xbf\x00\x59\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x5e\x00\x06\x00\x07\x00\x08\x00\x09\x00\xc0\x00\x0f\x00\x06\x00\x07\x00\x08\x00\x09\x00\x53\x00\x7f\x01\x10\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x5e\x00\x06\x00\x07\x00\x08\x00\x09\x00\xc1\x00\x0f\x00\x06\x00\x07\x00\x08\x00\x09\x00\x53\x00\x5f\x00\x10\x00\x2e\x00\x2f\x00\xc2\x00\xa1\x00\xa2\x00\x06\x00\x07\x00\x08\x00\x09\x00\xa3\x00\x31\x00\x32\x01\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x9d\x00\x30\x01\x0a\x00\x0b\x00\x78\x00\x28\x01\x0f\x00\x06\x00\x07\x00\x08\x00\x09\x00\x7e\x00\x0f\x00\x10\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x9d\x00\x9e\x00\x0a\x00\x0b\x00\x79\x00\x32\x00\x0f\x00\x06\x00\x07\x00\x08\x00\x09\x00\x41\x00\x0f\x00\x10\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x9d\x00\xa8\x00\x51\x00\x4a\x00\x9b\x01\xaf\x01\x0f\x00\x06\x00\x07\x00\x08\x00\x09\x00\x9c\x01\xa5\x01\x10\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x98\x01\x06\x00\x07\x00\x08\x00\x09\x00\xb0\x01\x0f\x00\x43\x00\x07\x00\x08\x00\x09\x00\xaa\x01\x48\x01\x10\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x92\x01\x06\x00\x07\x00\x08\x00\x09\x00\xa9\x01\x0f\x00\x4b\x00\x4c\x00\x97\x00\x56\x01\x06\x00\x55\x01\x10\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x7d\x01\x06\x00\x07\x00\x08\x00\x09\x00\xa0\x01\x0f\x00\x9f\x01\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x86\x01\x10\x00\x0a\x00\x6b\x00\x4a\x00\xa1\x01\x0f\x00\x06\x00\x07\x00\x08\x00\x09\x00\xa2\x01\x0f\x00\x10\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x5e\x01\x06\x00\x07\x00\x08\x00\x09\x00\xa3\x01\x0f\x00\x43\x00\x07\x00\x08\x00\x09\x00\x61\x00\x9a\x01\x10\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x5f\x01\x06\x00\x07\x00\x08\x00\x09\x00\x8e\x01\x0f\x00\x06\x00\x4b\x00\x4c\x00\x4d\x00\x06\x00\x98\x01\x10\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x61\x01\x06\x00\x07\x00\x08\x00\x09\x00\x81\x01\x0f\x00\x82\x01\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x68\x01\x10\x00\x6e\x00\x4b\x00\x4c\x00\x62\x00\x0f\x00\x06\x00\x07\x00\x08\x00\x09\x00\x83\x01\x0f\x00\x10\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x77\x01\x06\x00\x07\x00\x08\x00\x09\x00\x84\x01\x0f\x00\x43\x00\x07\x00\x08\x00\x09\x00\x86\x01\x8b\x01\x10\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x78\x01\x06\x00\x07\x00\x08\x00\x09\x00\xd8\x00\x0f\x00\x06\x00\x6b\x01\x8c\x01\x58\x01\x06\x00\x54\x01\x10\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x1f\x01\x06\x00\x07\x00\x08\x00\x09\x00\x5c\x01\x0f\x00\x5d\x01\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x22\x01\x10\x00\x44\x00\xd9\x00\x6c\x01\x6d\x01\x0f\x00\x06\x00\x07\x00\x08\x00\x09\x00\xda\x00\x0f\x00\x10\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x33\x01\x06\x00\x07\x00\x08\x00\x09\x00\x06\x00\x0f\x00\x75\x01\x76\x01\x77\x01\x06\x00\x1d\x01\x7d\x01\x10\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\xf9\x00\x06\x00\x07\x00\x08\x00\x09\x00\x1e\x01\x0f\x00\xe7\x00\x1b\x01\x1c\x01\x1f\x01\x06\x00\x25\x01\x10\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\xfa\x00\x06\x00\x07\x00\x08\x00\x09\x00\x26\x01\x0f\x00\x27\x01\x0a\x00\x0b\x00\x0c\x00\x0d\x00\xfc\x00\x10\x00\xe8\x00\x29\x01\x2a\x01\x2b\x01\x0f\x00\x06\x00\x07\x00\x08\x00\x09\x00\x2c\x01\xe9\x00\x10\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x0d\x01\x06\x00\x07\x00\x08\x00\x09\x00\x2d\x01\x0f\x00\x06\x00\x36\x01\x37\x01\x39\x01\x06\x00\x3a\x01\x10\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x0f\x01\x06\x00\x07\x00\x08\x00\x09\x00\x3b\x01\x0f\x00\x3c\x01\x3e\x01\xea\x00\x3d\x01\x3f\x01\x44\x01\x10\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x13\x01\x06\x00\x07\x00\x08\x00\x09\x00\x40\x01\x0f\x00\x43\x01\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x74\x00\x10\x00\xeb\x00\x47\x01\x06\x00\x50\x01\x0f\x00\x06\x00\x07\x00\x08\x00\x09\x00\x53\x01\xec\x00\x10\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x75\x00\x06\x00\x07\x00\x08\x00\x09\x00\xc6\x00\x0f\x00\xcb\x00\xee\x00\xcc\x00\xcd\x00\x06\x00\xf1\x00\x10\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x76\x00\x06\x00\x07\x00\x08\x00\x09\x00\xf2\x00\x0f\x00\xf4\x00\x85\x00\xf3\x00\xf7\x00\xf8\x00\xf9\x00\x10\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x7a\x00\x06\x00\x07\x00\x08\x00\x09\x00\x06\x00\x0f\x00\x9b\x01\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x9c\x00\x10\x00\x9c\x01\x9d\x01\xfe\x00\x06\x00\x0f\x00\x06\x00\x07\x00\x08\x00\x09\x00\x08\x01\x07\x01\x10\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x5e\x00\x8c\x00\x8d\x00\x8e\x00\x4a\x00\xce\x00\x0f\x00\x8c\x00\x8d\x00\x8e\x00\x8c\x00\x8d\x00\x8e\x00\x10\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x50\x00\x09\x01\xce\x00\x4a\x00\x0c\x01\x0b\x01\x0f\x00\x4a\x00\xcf\x00\x26\x00\xe0\x00\x15\x01\x0f\x01\x10\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x5d\x01\x67\x01\x4a\x00\x4a\x00\xcf\x00\x0f\x00\xce\x00\xe2\x00\xd1\x00\xce\x00\x06\x00\x4a\x00\x10\x00\x8f\x00\xd2\x00\xd0\x00\xce\x00\x06\x00\xd2\x00\x8f\x00\x47\x01\x40\x01\x8f\x00\xd1\x00\xd4\x00\x41\x01\xf4\x00\xcf\x00\xd4\x00\x09\x01\xcf\x00\xce\x00\xd2\x00\xd2\x00\xce\x00\xe0\x00\xce\x00\xcf\x00\xd7\x00\xd3\x00\xde\x00\xdb\x00\xd4\x00\xd4\x00\x6d\x00\xe1\x00\xd1\x00\x34\x00\xdc\x00\xd1\x00\x35\x00\xe2\x00\xcf\x00\x74\x00\x81\x00\xcf\x00\xd1\x00\xcf\x00\x06\x00\x7c\x00\x36\x00\x37\x00\x06\x00\xdd\x00\x82\x00\x83\x00\xdf\x00\x87\x00\xe6\x00\x86\x00\x88\x00\xd1\x00\x8a\x00\x8c\x00\xd1\x00\x38\x00\xd1\x00\x8b\x00\xab\x00\x39\x00\xac\x00\xad\x00\xae\x00\x99\x00\xaf\x00\x06\x00\x9a\x00\x7e\x00\xbc\x00\xa8\x00\x06\x00\xc4\x00\xb0\x00\xb1\x00\xb2\x00\xb3\x00\xc5\x00\x3a\x00\xb4\x00\xff\xff\xb5\x00\xb6\x00\xff\xff\xb7\x00\x43\x00\x49\x00\x06\x00\x4a\x00\xb8\x00\x50\x00\x06\x00\x64\x00\x2a\x00\xff\xff\x06\x00\x6e\x00\x6d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"# +happyTable = HappyA# "\x00\x00\x3a\x00\x3b\x00\x3a\x00\x3b\x00\x3a\x00\x3b\x00\x3a\x00\x3b\x00\x3a\x00\x3b\x00\x3a\x00\x3b\x00\x3a\x00\x43\x00\x07\x00\x08\x00\x09\x00\x57\x00\xe8\x00\x73\x00\x4f\x00\x70\x00\x94\x00\x7d\x00\x95\x00\x2d\x00\x30\x00\x4a\x00\x2e\x00\x7e\x00\x4c\x01\x6c\x01\xf7\x00\x5d\xff\x4a\x00\x96\x00\x49\x01\x55\x01\x4c\x01\x2b\x00\xb0\x01\x5d\xff\xac\x01\x9a\x01\x97\x00\xe9\x00\x65\x00\x9b\x01\x49\x01\x2a\x00\xaf\x01\xad\x01\x96\x01\xe1\x00\x59\x01\x74\x01\x66\x00\x67\x00\x75\x01\x68\x00\x69\x00\x6a\x00\x2b\x00\x6d\x01\x06\x00\x06\x00\xb5\x01\x52\x00\x0f\x00\xe3\x00\x52\x00\x06\x00\x07\x00\x08\x00\x09\x00\x71\x00\x8f\x01\x3c\x00\xce\x00\x3c\x00\x3d\x00\xb8\x00\x12\x00\xb9\x00\x13\x00\xba\x00\x76\x01\xbc\x00\xff\xff\x06\x00\x14\x00\x06\x00\x25\x00\x26\x00\x15\x00\x16\x00\x52\x00\x06\x00\x06\x00\x56\x01\x17\x00\x94\x00\x5d\x00\x95\x00\x57\x00\x06\x00\x71\x01\x6b\x00\x18\x00\x19\x00\x1a\x00\x1b\x00\x1c\x00\x1d\x00\x96\x00\x1e\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x2e\x01\x1f\x00\xa3\x01\x97\x00\x61\x00\x4a\x00\x0f\x00\x53\x00\x0d\x01\x20\x00\x53\x00\x88\x00\xa9\x00\x10\x00\x72\x01\x9f\x01\x06\x00\x07\x00\x08\x00\x09\x00\x21\x00\x46\x01\x2f\x01\x84\x01\x22\x00\x23\x00\x47\x01\x12\x00\x24\x00\x13\x00\x4a\x00\x06\x00\x25\x00\x26\x00\x27\x00\x14\x00\x53\x00\x54\x00\x42\xff\x15\x00\x16\x00\x42\xff\x06\x00\x25\x00\x56\x00\x17\x00\x4e\x01\x17\x01\x57\x00\x6e\x00\x06\x00\x25\x00\x26\x00\x18\x00\x19\x00\x1a\x00\x1b\x00\x1c\x00\x1d\x00\x03\x01\x1e\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x2e\x01\x1f\x00\x90\x01\x50\x01\x61\x00\x9d\x01\x0f\x00\x04\x01\xe4\x00\x20\x00\x8c\x00\x8d\x00\x8e\x00\x10\x00\x8c\x00\x8d\x00\x8e\x00\x9e\x01\x05\x01\x49\x01\x21\x00\x81\x01\x2f\x01\x30\x01\x22\x00\x23\x00\x8a\x01\x12\x00\x24\x00\x13\x00\x06\x00\x06\x00\x25\x00\x26\x00\x27\x00\x14\x00\x04\x01\xb6\x01\xeb\x00\x15\x00\x16\x00\xe5\x00\x8e\x01\x2d\x00\xcf\x00\x17\x00\x2e\x00\x05\x01\x70\x01\x94\x00\x06\x01\x95\x00\x4a\x00\x18\x00\x19\x00\x1a\x00\x1b\x00\x1c\x00\x1d\x00\xf7\x00\x1e\x00\x8f\x00\x96\x00\xec\x00\x49\x01\x8f\x00\x1f\x00\xd0\x00\x90\x00\x9f\x00\x5b\x00\x97\x00\x79\x01\x78\x01\x20\x00\x12\x00\xf7\xff\x47\x00\x63\x01\x91\x00\x24\x01\x4a\x00\x8d\x01\x14\x00\xd3\x00\x21\x00\xd2\x00\x15\x00\x16\x00\x22\x00\x23\x00\x66\x01\xe4\x00\x24\x00\xd5\x00\x68\x01\x06\x00\x25\x00\x26\x00\x27\x00\x3f\x00\x18\x00\x19\x00\x1a\x00\x1b\x00\x1c\x00\x1d\x00\xe1\x00\x1e\x00\x94\x01\x8c\x00\x8d\x00\x8e\x00\x49\x01\x40\x00\x41\x00\x4a\x00\xe2\x00\x06\x00\x25\x00\x26\x00\x4a\x00\x12\x00\xe3\x00\x47\x00\xe5\x00\x69\x01\x3c\xff\x91\x01\x58\x01\x14\x00\x59\x01\xe6\x00\x21\x00\x15\x00\x16\x00\x9c\x01\x22\x00\x23\x00\x6f\x01\x60\x01\x24\x00\x61\x01\x5e\x01\x06\x00\x25\x00\x26\x00\x27\x00\xd3\x00\x19\x00\x1a\x00\x1b\x00\x1c\x00\x1d\x00\x70\x00\x41\x01\x78\x01\x68\x01\xd5\x00\x06\x00\x25\x00\x8f\x00\x48\x00\x4b\x00\x4c\x00\xfc\x00\x15\x00\x16\x00\x90\x00\x4a\x00\xe8\x00\x8c\x00\x8d\x00\x8e\x00\x22\x01\x43\x00\x07\x00\x08\x00\x09\x00\x91\x00\x92\x00\x19\x00\x1a\x00\x1b\x00\x1c\x00\x1d\x00\x32\x01\x12\x00\x69\x01\x47\x00\xc6\x00\x06\x00\x25\x00\x26\x00\x27\x00\x14\x00\x1a\x01\xe9\x00\x6a\x01\x15\x00\x16\x00\x9b\x00\xd7\x00\xc7\x00\xd9\x00\xc8\x00\x9c\x00\xea\x00\xd8\x00\x38\x01\x49\x01\x4b\x00\x4c\x00\x18\x01\x19\x00\x1a\x00\x1b\x00\x1c\x00\x1d\x00\x70\x00\x6e\x00\x47\x00\x8f\x00\x06\x00\x25\x00\x26\x00\x27\x00\x48\x00\x4a\x01\xf5\x00\x0f\x00\x15\x00\x16\x00\x4a\x00\xda\x00\x49\x01\xd9\x00\x06\x00\x4b\x00\x4c\x00\x62\x00\x71\x01\x6c\x01\xa0\x00\x8d\x00\x8e\x00\x19\x00\x1a\x00\x1b\x00\x1c\x00\x1d\x00\x5a\x01\x46\x00\x59\x01\x47\x00\x4c\x01\x06\x00\x25\x00\x26\x00\x27\x00\x48\x00\xef\x00\x8d\x00\x8e\x00\x15\x00\x16\x00\xda\x00\x5a\x00\x5b\x00\x72\x01\x73\x01\x94\x00\x4d\x01\x95\x00\xdb\x00\x4b\x00\x4c\x00\x97\x00\x7e\x00\x19\x00\x1a\x00\x1b\x00\x1c\x00\x1d\x00\x96\x00\x4b\x00\x4c\x00\x62\x00\x06\x00\x25\x00\x26\x00\x27\x00\x51\x01\x97\x00\xa1\x00\xa2\x00\xef\x00\x8d\x00\x8e\x00\x52\x01\xa3\x00\x4a\x00\xa4\x00\x8c\x00\x8d\x00\x8e\x00\xef\x00\x8d\x00\x8e\x00\x4e\x01\xa5\x00\xa6\x00\xa1\x00\xa2\x00\xef\x00\x8d\x00\x8e\x00\x13\x01\xa3\x00\xb4\x01\xa4\x00\x06\x00\x25\x00\x26\x00\x27\x00\xef\x00\x8d\x00\x8e\x00\xa5\x00\x21\x01\x4f\x01\x50\x01\xb5\x01\x06\x00\x07\x00\x08\x00\x09\x00\x27\x00\x28\x00\x16\x01\x06\x00\x25\x00\x26\x00\x4b\x00\x4c\x00\x4d\x00\x19\x01\xa1\x00\xa2\x00\x06\x00\x07\x00\x08\x00\x09\x00\xa3\x00\x8f\x00\xa4\x00\x7d\x00\xa1\x00\xff\x00\x2e\x00\x2f\x00\x48\x01\x7e\x00\xa5\x00\x35\x01\xa1\x00\xa2\x00\xef\x00\x8d\x00\x8e\x00\x00\x01\xa3\x00\x7f\x01\xa4\x00\x84\x00\x85\x00\xa1\x00\xff\x00\x0a\x00\x0b\x00\x77\x00\xa5\x00\xf0\x00\x06\x00\x07\x00\x08\x00\x09\x00\x7f\x00\x0f\x00\x00\x01\xeb\x00\x01\x01\x61\x00\xa9\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x11\x01\x43\x00\x07\x00\x08\x00\x09\x00\xbd\x00\x0f\x00\xbe\x00\xbf\x00\xc0\x00\xc1\x00\xc2\x00\x31\x00\x10\x00\x58\x00\xa4\x01\x12\x01\xec\x00\x98\x01\x51\x00\xa1\x00\xa2\x00\xa5\x01\xae\x01\xb8\x01\x32\x00\xa3\x00\xed\x00\x33\x01\x29\x01\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x57\x00\x7e\x00\x4b\x00\x4c\x00\x62\x00\xb9\x01\x0f\x00\x5d\x00\x07\x00\x08\x00\x09\x00\x41\x00\x44\x00\x10\x00\x58\x00\xb3\x01\x59\x00\xab\x00\x4a\x00\xac\x00\xad\x00\xae\x00\x0f\x00\xaf\x00\xb2\x01\x5d\x00\x07\x00\x08\x00\x09\x00\x06\x00\xa8\x01\xb0\x00\xb1\x00\xb2\x00\xb3\x00\xa9\x01\xab\x01\xb4\x00\xaa\x01\xb5\x00\xb6\x00\xa4\x01\xb7\x00\x06\x00\x07\x00\x08\x00\x09\x00\xb8\x00\xa5\x01\xa6\x01\xd3\x00\xac\x01\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x5e\x00\x42\x01\xa3\x01\x06\x00\xd5\x00\x96\x01\x0f\x00\x06\x00\x07\x00\x08\x00\x09\x00\x53\x00\x85\x01\x10\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x5e\x00\x4a\x00\x99\x01\x06\x00\xa1\x01\x87\x01\x0f\x00\x06\x00\x07\x00\x08\x00\x09\x00\x53\x00\x5f\x00\x10\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x9d\x00\x31\x01\x89\x01\x88\x01\x8c\x01\x7d\x00\x0f\x00\x06\x00\x07\x00\x08\x00\x09\x00\x7e\x00\x8a\x01\x10\x00\x7f\x00\xd3\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x9d\x00\x9e\x00\xd4\x00\x93\x01\x06\x00\xd5\x00\x0f\x00\x06\x00\x07\x00\x08\x00\x09\x00\x94\x01\x58\x01\x10\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x9d\x00\xa8\x00\x5c\x01\x06\x00\x5d\x01\x62\x01\x0f\x00\x06\x00\x07\x00\x08\x00\x09\x00\x5e\x01\x63\x01\x10\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\xa1\x01\x06\x00\x07\x00\x08\x00\x09\x00\x7c\x01\x0f\x00\x06\x00\x07\x00\x08\x00\x09\x00\x06\x00\x7b\x01\x10\x00\x7d\x01\x06\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x9b\x01\x06\x00\x07\x00\x08\x00\x09\x00\x1e\x01\x0f\x00\x06\x00\x07\x00\x08\x00\x09\x00\x20\x01\x83\x01\x10\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x83\x01\x06\x00\x07\x00\x08\x00\x09\x00\x1f\x01\x0f\x00\x1c\x01\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x8c\x01\x10\x00\x0a\x00\x0b\x00\x78\x00\x1d\x01\x0f\x00\x06\x00\x07\x00\x08\x00\x09\x00\x28\x01\x0f\x00\x10\x00\x26\x01\x06\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x64\x01\x27\x01\x0a\x00\x0b\x00\x79\x00\x2a\x01\x0f\x00\x06\x00\x07\x00\x08\x00\x09\x00\x2b\x01\x0f\x00\x10\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x65\x01\x06\x00\x07\x00\x08\x00\x09\x00\x2c\x01\x0f\x00\x43\x00\x07\x00\x08\x00\x09\x00\x2d\x01\x2e\x01\x10\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x67\x01\x06\x00\x07\x00\x08\x00\x09\x00\x38\x01\x0f\x00\x8c\x00\x8d\x00\x8e\x00\xef\x00\x8d\x00\x8e\x00\x10\x00\x06\x00\x37\x01\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x6e\x01\x06\x00\x07\x00\x08\x00\x09\x00\x3a\x01\x0f\x00\x3b\x01\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x7d\x01\x10\x00\x0a\x00\x6b\x00\x3c\x01\x3e\x01\x0f\x00\x06\x00\x07\x00\x08\x00\x09\x00\x3d\x01\x0f\x00\x10\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x7e\x01\x06\x00\x07\x00\x08\x00\x09\x00\x3f\x01\x0f\x00\x40\x01\x8f\x00\x41\x01\x06\x00\xa1\x00\x80\x01\x10\x00\x44\x01\xf5\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x20\x01\x06\x00\x07\x00\x08\x00\x09\x00\x45\x01\x0f\x00\x48\x01\x06\x00\x54\x01\xef\x00\x8d\x00\x8e\x00\x10\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x23\x01\x06\x00\x07\x00\x08\x00\x09\x00\x57\x01\x0f\x00\xc6\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x34\x01\x10\x00\xcc\x00\xcd\x00\xce\x00\x06\x00\x0f\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x01\xef\x00\x10\x00\xf2\x00\xf3\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\xfa\x00\xf4\x00\xf8\x00\xf5\x00\x84\x00\xf9\x00\x0f\x00\x06\x00\x07\x00\x08\x00\x09\x00\xa1\x00\x02\x01\x10\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\xfb\x00\x06\x00\x07\x00\x08\x00\x09\x00\xfa\x00\x0f\x00\x06\x00\x09\x01\xff\x00\x08\x01\x06\x00\x0c\x01\x10\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\xfd\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0d\x01\x0f\x00\x8c\x00\x8d\x00\x8e\x00\x06\x00\x16\x01\x10\x01\x10\x00\x06\x00\x7c\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x01\x06\x00\x07\x00\x08\x00\x09\x00\x6d\x00\x0f\x00\x06\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x10\x01\x10\x00\x26\x00\x74\x00\x06\x00\x81\x00\x0f\x00\x06\x00\x07\x00\x08\x00\x09\x00\x82\x00\x86\x00\x10\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x14\x01\x06\x00\x07\x00\x08\x00\x09\x00\x83\x00\x0f\x00\x87\x00\x8f\x00\x88\x00\x8b\x00\x8a\x00\x99\x00\x10\x00\x8c\x00\x0a\x01\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x74\x00\x06\x00\x07\x00\x08\x00\x09\x00\x06\x00\x0f\x00\x9a\x00\x7e\x00\xbc\x00\xcf\x00\xcf\x00\xa8\x00\x10\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x75\x00\x06\x00\x07\x00\x08\x00\x09\x00\xc4\x00\x0f\x00\x06\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x76\x00\x10\x00\xc5\x00\xd0\x00\xd0\x00\x3a\x00\x0f\x00\x06\x00\x07\x00\x08\x00\x09\x00\xff\xff\x06\x00\x10\x00\xd1\x00\xd8\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x7a\x00\xff\xff\xd2\x00\xd2\x00\xcf\x00\xcf\x00\x0f\x00\x06\x00\x07\x00\x08\x00\x09\x00\x43\x00\x49\x00\x10\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x9c\x00\x06\x00\x07\x00\x08\x00\x09\x00\x4a\x00\x0f\x00\x50\x00\x06\x00\xd0\x00\xd0\x00\x64\x00\xff\xff\x10\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x5e\x00\xcf\x00\xdc\x00\xdd\x00\xca\x00\x4a\x00\x0f\x00\x6d\x00\xcb\x00\x6e\x00\xd2\x00\xd2\x00\x06\x00\x10\x00\x06\x00\x00\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x50\x00\x2a\x00\x00\x00\xcf\x00\xd0\x00\xcf\x00\x0f\x00\x00\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x10\x00\x00\x00\xde\x00\x00\x00\xd3\x00\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd2\x00\xdf\x00\x10\x00\xd0\x00\xd5\x00\xd0\x00\x34\x00\x00\x00\x00\x00\x35\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\x00\x00\x00\xe7\x00\x00\x00\x00\x00\x36\x00\x37\x00\x00\x00\xd2\x00\x00\x00\xd2\x00\xab\x00\x00\x00\xac\x00\xad\x00\xae\x00\x00\x00\xaf\x00\x00\x00\x00\x00\x38\x00\x00\x00\x00\x00\x00\x00\x39\x00\xb0\x00\xb1\x00\xb2\x00\xb3\x00\x00\x00\x00\x00\xb4\x00\x00\x00\xb5\x00\xb6\x00\x00\x00\xb7\x00\x00\x00\x00\x00\x00\x00\x00\x00\xb8\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"# -happyReduceArr = array (4, 223) [ +happyReduceArr = array (4, 229) [ (4 , happyReduce_4), (5 , happyReduce_5), (6 , happyReduce_6), @@ -718,11 +730,17 @@ happyReduceArr = array (4, 223) [ (220 , happyReduce_220), (221 , happyReduce_221), (222 , happyReduce_222), - (223 , happyReduce_223) + (223 , happyReduce_223), + (224 , happyReduce_224), + (225 , happyReduce_225), + (226 , happyReduce_226), + (227 , happyReduce_227), + (228 , happyReduce_228), + (229 , happyReduce_229) ] -happy_n_terms = 77 :: Int -happy_n_nonterms = 77 :: Int +happy_n_terms = 78 :: Int +happy_n_nonterms = 79 :: Int happyReduce_4 = happySpecReduce_1 0# happyReduction_4 happyReduction_4 happy_x_1 @@ -987,47 +1005,55 @@ happyReduction_31 happy_x_2 (MReuse happy_var_2 )} -happyReduce_32 = happySpecReduce_0 14# happyReduction_32 -happyReduction_32 = happyIn21 +happyReduce_32 = happySpecReduce_2 13# happyReduction_32 +happyReduction_32 happy_x_2 + happy_x_1 + = case happyOut28 happy_x_2 of { happy_var_2 -> + happyIn20 + (MUnion happy_var_2 + )} + +happyReduce_33 = happySpecReduce_0 14# happyReduction_33 +happyReduction_33 = happyIn21 ([] ) -happyReduce_33 = happySpecReduce_2 14# happyReduction_33 -happyReduction_33 happy_x_2 +happyReduce_34 = happySpecReduce_2 14# happyReduction_34 +happyReduction_34 happy_x_2 happy_x_1 = case happyOut21 happy_x_1 of { happy_var_1 -> - case happyOut29 happy_x_2 of { happy_var_2 -> + case happyOut31 happy_x_2 of { happy_var_2 -> happyIn21 (flip (:) happy_var_1 happy_var_2 )}} -happyReduce_34 = happySpecReduce_2 15# happyReduction_34 -happyReduction_34 happy_x_2 +happyReduce_35 = happySpecReduce_2 15# happyReduction_35 +happyReduction_35 happy_x_2 happy_x_1 = case happyOut7 happy_x_1 of { happy_var_1 -> happyIn22 (Ext happy_var_1 )} -happyReduce_35 = happySpecReduce_0 15# happyReduction_35 -happyReduction_35 = happyIn22 +happyReduce_36 = happySpecReduce_0 15# happyReduction_36 +happyReduction_36 = happyIn22 (NoExt ) -happyReduce_36 = happySpecReduce_0 16# happyReduction_36 -happyReduction_36 = happyIn23 +happyReduce_37 = happySpecReduce_0 16# happyReduction_37 +happyReduction_37 = happyIn23 ([] ) -happyReduce_37 = happySpecReduce_1 16# happyReduction_37 -happyReduction_37 happy_x_1 +happyReduce_38 = happySpecReduce_1 16# happyReduction_38 +happyReduction_38 happy_x_1 = case happyOut25 happy_x_1 of { happy_var_1 -> happyIn23 ((:[]) happy_var_1 )} -happyReduce_38 = happySpecReduce_3 16# happyReduction_38 -happyReduction_38 happy_x_3 +happyReduce_39 = happySpecReduce_3 16# happyReduction_39 +happyReduction_39 happy_x_3 happy_x_2 happy_x_1 = case happyOut25 happy_x_1 of { happy_var_1 -> @@ -1036,13 +1062,13 @@ happyReduction_38 happy_x_3 ((:) happy_var_1 happy_var_3 )}} -happyReduce_39 = happySpecReduce_0 17# happyReduction_39 -happyReduction_39 = happyIn24 +happyReduce_40 = happySpecReduce_0 17# happyReduction_40 +happyReduction_40 = happyIn24 (NoOpens ) -happyReduce_40 = happySpecReduce_3 17# happyReduction_40 -happyReduction_40 happy_x_3 +happyReduce_41 = happySpecReduce_3 17# happyReduction_41 +happyReduction_41 happy_x_3 happy_x_2 happy_x_1 = case happyOut23 happy_x_2 of { happy_var_2 -> @@ -1050,15 +1076,15 @@ happyReduction_40 happy_x_3 (Opens happy_var_2 )} -happyReduce_41 = happySpecReduce_1 18# happyReduction_41 -happyReduction_41 happy_x_1 +happyReduce_42 = happySpecReduce_1 18# happyReduction_42 +happyReduction_42 happy_x_1 = case happyOut7 happy_x_1 of { happy_var_1 -> happyIn25 (OName happy_var_1 )} -happyReduce_42 = happyReduce 4# 18# happyReduction_42 -happyReduction_42 (happy_x_4 `HappyStk` +happyReduce_43 = happyReduce 4# 18# happyReduction_43 +happyReduction_43 (happy_x_4 `HappyStk` happy_x_3 `HappyStk` happy_x_2 `HappyStk` happy_x_1 `HappyStk` @@ -1069,8 +1095,8 @@ happyReduction_42 (happy_x_4 `HappyStk` (OQualQO happy_var_2 happy_var_3 ) `HappyStk` happyRest}} -happyReduce_43 = happyReduce 6# 18# happyReduction_43 -happyReduction_43 (happy_x_6 `HappyStk` +happyReduce_44 = happyReduce 6# 18# happyReduction_44 +happyReduction_44 (happy_x_6 `HappyStk` happy_x_5 `HappyStk` happy_x_4 `HappyStk` happy_x_3 `HappyStk` @@ -1084,291 +1110,332 @@ happyReduction_43 (happy_x_6 `HappyStk` (OQual happy_var_2 happy_var_3 happy_var_5 ) `HappyStk` happyRest}}} -happyReduce_44 = happySpecReduce_0 19# happyReduction_44 -happyReduction_44 = happyIn26 +happyReduce_45 = happySpecReduce_0 19# happyReduction_45 +happyReduction_45 = happyIn26 (CMCompl ) -happyReduce_45 = happySpecReduce_1 19# happyReduction_45 -happyReduction_45 happy_x_1 +happyReduce_46 = happySpecReduce_1 19# happyReduction_46 +happyReduction_46 happy_x_1 = happyIn26 (CMIncompl ) -happyReduce_46 = happySpecReduce_0 20# happyReduction_46 -happyReduction_46 = happyIn27 +happyReduce_47 = happySpecReduce_0 20# happyReduction_47 +happyReduction_47 = happyIn27 (QOCompl ) -happyReduce_47 = happySpecReduce_1 20# happyReduction_47 -happyReduction_47 happy_x_1 - = happyIn27 - (QOIncompl - ) - happyReduce_48 = happySpecReduce_1 20# happyReduction_48 happyReduction_48 happy_x_1 + = happyIn27 + (QOIncompl + ) + +happyReduce_49 = happySpecReduce_1 20# happyReduction_49 +happyReduction_49 happy_x_1 = happyIn27 (QOInterface ) -happyReduce_49 = happySpecReduce_3 21# happyReduction_49 -happyReduction_49 happy_x_3 +happyReduce_50 = happySpecReduce_0 21# happyReduction_50 +happyReduction_50 = happyIn28 + ([] + ) + +happyReduce_51 = happySpecReduce_1 21# happyReduction_51 +happyReduction_51 happy_x_1 + = case happyOut29 happy_x_1 of { happy_var_1 -> + happyIn28 + ((:[]) happy_var_1 + )} + +happyReduce_52 = happySpecReduce_3 21# happyReduction_52 +happyReduction_52 happy_x_3 happy_x_2 happy_x_1 - = case happyOut47 happy_x_1 of { happy_var_1 -> - case happyOut54 happy_x_3 of { happy_var_3 -> + = case happyOut29 happy_x_1 of { happy_var_1 -> + case happyOut28 happy_x_3 of { happy_var_3 -> happyIn28 - (DDecl happy_var_1 happy_var_3 + ((:) happy_var_1 happy_var_3 )}} -happyReduce_50 = happySpecReduce_3 21# happyReduction_50 -happyReduction_50 happy_x_3 - happy_x_2 - happy_x_1 - = case happyOut47 happy_x_1 of { happy_var_1 -> - case happyOut54 happy_x_3 of { happy_var_3 -> - happyIn28 - (DDef happy_var_1 happy_var_3 - )}} +happyReduce_53 = happySpecReduce_1 22# happyReduction_53 +happyReduction_53 happy_x_1 + = case happyOut7 happy_x_1 of { happy_var_1 -> + happyIn29 + (IAll happy_var_1 + )} -happyReduce_51 = happyReduce 4# 21# happyReduction_51 -happyReduction_51 (happy_x_4 `HappyStk` +happyReduce_54 = happyReduce 4# 22# happyReduction_54 +happyReduction_54 (happy_x_4 `HappyStk` happy_x_3 `HappyStk` happy_x_2 `HappyStk` happy_x_1 `HappyStk` happyRest) = case happyOut7 happy_x_1 of { happy_var_1 -> - case happyOut63 happy_x_2 of { happy_var_2 -> - case happyOut54 happy_x_4 of { happy_var_4 -> - happyIn28 + case happyOut49 happy_x_3 of { happy_var_3 -> + happyIn29 + (ISome happy_var_1 happy_var_3 + ) `HappyStk` happyRest}} + +happyReduce_55 = happySpecReduce_3 23# happyReduction_55 +happyReduction_55 happy_x_3 + happy_x_2 + happy_x_1 + = case happyOut49 happy_x_1 of { happy_var_1 -> + case happyOut56 happy_x_3 of { happy_var_3 -> + happyIn30 + (DDecl happy_var_1 happy_var_3 + )}} + +happyReduce_56 = happySpecReduce_3 23# happyReduction_56 +happyReduction_56 happy_x_3 + happy_x_2 + happy_x_1 + = case happyOut49 happy_x_1 of { happy_var_1 -> + case happyOut56 happy_x_3 of { happy_var_3 -> + happyIn30 + (DDef happy_var_1 happy_var_3 + )}} + +happyReduce_57 = happyReduce 4# 23# happyReduction_57 +happyReduction_57 (happy_x_4 `HappyStk` + happy_x_3 `HappyStk` + happy_x_2 `HappyStk` + happy_x_1 `HappyStk` + happyRest) + = case happyOut7 happy_x_1 of { happy_var_1 -> + case happyOut65 happy_x_2 of { happy_var_2 -> + case happyOut56 happy_x_4 of { happy_var_4 -> + happyIn30 (DPatt happy_var_1 happy_var_2 happy_var_4 ) `HappyStk` happyRest}}} -happyReduce_52 = happyReduce 5# 21# happyReduction_52 -happyReduction_52 (happy_x_5 `HappyStk` +happyReduce_58 = happyReduce 5# 23# happyReduction_58 +happyReduction_58 (happy_x_5 `HappyStk` happy_x_4 `HappyStk` happy_x_3 `HappyStk` happy_x_2 `HappyStk` happy_x_1 `HappyStk` happyRest) - = case happyOut47 happy_x_1 of { happy_var_1 -> - case happyOut54 happy_x_3 of { happy_var_3 -> - case happyOut54 happy_x_5 of { happy_var_5 -> - happyIn28 + = case happyOut49 happy_x_1 of { happy_var_1 -> + case happyOut56 happy_x_3 of { happy_var_3 -> + case happyOut56 happy_x_5 of { happy_var_5 -> + happyIn30 (DFull happy_var_1 happy_var_3 happy_var_5 ) `HappyStk` happyRest}}} -happyReduce_53 = happySpecReduce_2 22# happyReduction_53 -happyReduction_53 happy_x_2 +happyReduce_59 = happySpecReduce_2 24# happyReduction_59 +happyReduction_59 happy_x_2 happy_x_1 - = case happyOut40 happy_x_2 of { happy_var_2 -> - happyIn29 + = case happyOut42 happy_x_2 of { happy_var_2 -> + happyIn31 (DefCat happy_var_2 )} -happyReduce_54 = happySpecReduce_2 22# happyReduction_54 -happyReduction_54 happy_x_2 +happyReduce_60 = happySpecReduce_2 24# happyReduction_60 +happyReduction_60 happy_x_2 happy_x_1 - = case happyOut41 happy_x_2 of { happy_var_2 -> - happyIn29 + = case happyOut43 happy_x_2 of { happy_var_2 -> + happyIn31 (DefFun happy_var_2 )} -happyReduce_55 = happySpecReduce_2 22# happyReduction_55 -happyReduction_55 happy_x_2 +happyReduce_61 = happySpecReduce_2 24# happyReduction_61 +happyReduction_61 happy_x_2 happy_x_1 - = case happyOut39 happy_x_2 of { happy_var_2 -> - happyIn29 + = case happyOut41 happy_x_2 of { happy_var_2 -> + happyIn31 (DefDef happy_var_2 )} -happyReduce_56 = happySpecReduce_2 22# happyReduction_56 -happyReduction_56 happy_x_2 +happyReduce_62 = happySpecReduce_2 24# happyReduction_62 +happyReduction_62 happy_x_2 happy_x_1 - = case happyOut42 happy_x_2 of { happy_var_2 -> - happyIn29 + = case happyOut44 happy_x_2 of { happy_var_2 -> + happyIn31 (DefData happy_var_2 )} -happyReduce_57 = happySpecReduce_2 22# happyReduction_57 -happyReduction_57 happy_x_2 +happyReduce_63 = happySpecReduce_2 24# happyReduction_63 +happyReduction_63 happy_x_2 happy_x_1 - = case happyOut39 happy_x_2 of { happy_var_2 -> - happyIn29 + = case happyOut41 happy_x_2 of { happy_var_2 -> + happyIn31 (DefTrans happy_var_2 )} -happyReduce_58 = happySpecReduce_2 22# happyReduction_58 -happyReduction_58 happy_x_2 +happyReduce_64 = happySpecReduce_2 24# happyReduction_64 +happyReduction_64 happy_x_2 happy_x_1 - = case happyOut43 happy_x_2 of { happy_var_2 -> - happyIn29 + = case happyOut45 happy_x_2 of { happy_var_2 -> + happyIn31 (DefPar happy_var_2 )} -happyReduce_59 = happySpecReduce_2 22# happyReduction_59 -happyReduction_59 happy_x_2 +happyReduce_65 = happySpecReduce_2 24# happyReduction_65 +happyReduction_65 happy_x_2 happy_x_1 - = case happyOut39 happy_x_2 of { happy_var_2 -> - happyIn29 + = case happyOut41 happy_x_2 of { happy_var_2 -> + happyIn31 (DefOper happy_var_2 )} -happyReduce_60 = happySpecReduce_2 22# happyReduction_60 -happyReduction_60 happy_x_2 +happyReduce_66 = happySpecReduce_2 24# happyReduction_66 +happyReduction_66 happy_x_2 happy_x_1 - = case happyOut44 happy_x_2 of { happy_var_2 -> - happyIn29 + = case happyOut46 happy_x_2 of { happy_var_2 -> + happyIn31 (DefLincat happy_var_2 )} -happyReduce_61 = happySpecReduce_2 22# happyReduction_61 -happyReduction_61 happy_x_2 +happyReduce_67 = happySpecReduce_2 24# happyReduction_67 +happyReduction_67 happy_x_2 happy_x_1 - = case happyOut39 happy_x_2 of { happy_var_2 -> - happyIn29 + = case happyOut41 happy_x_2 of { happy_var_2 -> + happyIn31 (DefLindef happy_var_2 )} -happyReduce_62 = happySpecReduce_2 22# happyReduction_62 -happyReduction_62 happy_x_2 +happyReduce_68 = happySpecReduce_2 24# happyReduction_68 +happyReduction_68 happy_x_2 happy_x_1 - = case happyOut39 happy_x_2 of { happy_var_2 -> - happyIn29 + = case happyOut41 happy_x_2 of { happy_var_2 -> + happyIn31 (DefLin happy_var_2 )} -happyReduce_63 = happySpecReduce_3 22# happyReduction_63 -happyReduction_63 happy_x_3 +happyReduce_69 = happySpecReduce_3 24# happyReduction_69 +happyReduction_69 happy_x_3 happy_x_2 happy_x_1 - = case happyOut44 happy_x_3 of { happy_var_3 -> - happyIn29 + = case happyOut46 happy_x_3 of { happy_var_3 -> + happyIn31 (DefPrintCat happy_var_3 )} -happyReduce_64 = happySpecReduce_3 22# happyReduction_64 -happyReduction_64 happy_x_3 - happy_x_2 - happy_x_1 - = case happyOut44 happy_x_3 of { happy_var_3 -> - happyIn29 - (DefPrintFun happy_var_3 - )} - -happyReduce_65 = happySpecReduce_2 22# happyReduction_65 -happyReduction_65 happy_x_2 - happy_x_1 - = case happyOut45 happy_x_2 of { happy_var_2 -> - happyIn29 - (DefFlag happy_var_2 - )} - -happyReduce_66 = happySpecReduce_2 22# happyReduction_66 -happyReduction_66 happy_x_2 - happy_x_1 - = case happyOut44 happy_x_2 of { happy_var_2 -> - happyIn29 - (DefPrintOld happy_var_2 - )} - -happyReduce_67 = happySpecReduce_2 22# happyReduction_67 -happyReduction_67 happy_x_2 - happy_x_1 - = case happyOut39 happy_x_2 of { happy_var_2 -> - happyIn29 - (DefLintype happy_var_2 - )} - -happyReduce_68 = happySpecReduce_2 22# happyReduction_68 -happyReduction_68 happy_x_2 - happy_x_1 - = case happyOut39 happy_x_2 of { happy_var_2 -> - happyIn29 - (DefPattern happy_var_2 - )} - -happyReduce_69 = happySpecReduce_2 23# happyReduction_69 -happyReduction_69 happy_x_2 - happy_x_1 - = case happyOut7 happy_x_1 of { happy_var_1 -> - case happyOut79 happy_x_2 of { happy_var_2 -> - happyIn30 - (CatDef happy_var_1 (reverse happy_var_2) - )}} - happyReduce_70 = happySpecReduce_3 24# happyReduction_70 happyReduction_70 happy_x_3 happy_x_2 happy_x_1 - = case happyOut47 happy_x_1 of { happy_var_1 -> - case happyOut54 happy_x_3 of { happy_var_3 -> + = case happyOut46 happy_x_3 of { happy_var_3 -> happyIn31 - (FunDef happy_var_1 happy_var_3 - )}} + (DefPrintFun happy_var_3 + )} -happyReduce_71 = happySpecReduce_3 25# happyReduction_71 -happyReduction_71 happy_x_3 - happy_x_2 +happyReduce_71 = happySpecReduce_2 24# happyReduction_71 +happyReduction_71 happy_x_2 + happy_x_1 + = case happyOut47 happy_x_2 of { happy_var_2 -> + happyIn31 + (DefFlag happy_var_2 + )} + +happyReduce_72 = happySpecReduce_2 24# happyReduction_72 +happyReduction_72 happy_x_2 + happy_x_1 + = case happyOut46 happy_x_2 of { happy_var_2 -> + happyIn31 + (DefPrintOld happy_var_2 + )} + +happyReduce_73 = happySpecReduce_2 24# happyReduction_73 +happyReduction_73 happy_x_2 + happy_x_1 + = case happyOut41 happy_x_2 of { happy_var_2 -> + happyIn31 + (DefLintype happy_var_2 + )} + +happyReduce_74 = happySpecReduce_2 24# happyReduction_74 +happyReduction_74 happy_x_2 + happy_x_1 + = case happyOut41 happy_x_2 of { happy_var_2 -> + happyIn31 + (DefPattern happy_var_2 + )} + +happyReduce_75 = happySpecReduce_2 25# happyReduction_75 +happyReduction_75 happy_x_2 happy_x_1 = case happyOut7 happy_x_1 of { happy_var_1 -> - case happyOut34 happy_x_3 of { happy_var_3 -> + case happyOut81 happy_x_2 of { happy_var_2 -> happyIn32 - (DataDef happy_var_1 happy_var_3 + (CatDef happy_var_1 (reverse happy_var_2) )}} -happyReduce_72 = happySpecReduce_1 26# happyReduction_72 -happyReduction_72 happy_x_1 - = case happyOut7 happy_x_1 of { happy_var_1 -> - happyIn33 - (DataId happy_var_1 - )} - -happyReduce_73 = happySpecReduce_3 26# happyReduction_73 -happyReduction_73 happy_x_3 - happy_x_2 - happy_x_1 - = case happyOut7 happy_x_1 of { happy_var_1 -> - case happyOut7 happy_x_3 of { happy_var_3 -> - happyIn33 - (DataQId happy_var_1 happy_var_3 - )}} - -happyReduce_74 = happySpecReduce_0 27# happyReduction_74 -happyReduction_74 = happyIn34 - ([] - ) - -happyReduce_75 = happySpecReduce_1 27# happyReduction_75 -happyReduction_75 happy_x_1 - = case happyOut33 happy_x_1 of { happy_var_1 -> - happyIn34 - ((:[]) happy_var_1 - )} - -happyReduce_76 = happySpecReduce_3 27# happyReduction_76 +happyReduce_76 = happySpecReduce_3 26# happyReduction_76 happyReduction_76 happy_x_3 happy_x_2 happy_x_1 - = case happyOut33 happy_x_1 of { happy_var_1 -> - case happyOut34 happy_x_3 of { happy_var_3 -> - happyIn34 - ((:) happy_var_1 happy_var_3 + = case happyOut49 happy_x_1 of { happy_var_1 -> + case happyOut56 happy_x_3 of { happy_var_3 -> + happyIn33 + (FunDef happy_var_1 happy_var_3 )}} -happyReduce_77 = happySpecReduce_3 28# happyReduction_77 +happyReduce_77 = happySpecReduce_3 27# happyReduction_77 happyReduction_77 happy_x_3 happy_x_2 happy_x_1 = case happyOut7 happy_x_1 of { happy_var_1 -> - case happyOut46 happy_x_3 of { happy_var_3 -> + case happyOut36 happy_x_3 of { happy_var_3 -> + happyIn34 + (DataDef happy_var_1 happy_var_3 + )}} + +happyReduce_78 = happySpecReduce_1 28# happyReduction_78 +happyReduction_78 happy_x_1 + = case happyOut7 happy_x_1 of { happy_var_1 -> happyIn35 + (DataId happy_var_1 + )} + +happyReduce_79 = happySpecReduce_3 28# happyReduction_79 +happyReduction_79 happy_x_3 + happy_x_2 + happy_x_1 + = case happyOut7 happy_x_1 of { happy_var_1 -> + case happyOut7 happy_x_3 of { happy_var_3 -> + happyIn35 + (DataQId happy_var_1 happy_var_3 + )}} + +happyReduce_80 = happySpecReduce_0 29# happyReduction_80 +happyReduction_80 = happyIn36 + ([] + ) + +happyReduce_81 = happySpecReduce_1 29# happyReduction_81 +happyReduction_81 happy_x_1 + = case happyOut35 happy_x_1 of { happy_var_1 -> + happyIn36 + ((:[]) happy_var_1 + )} + +happyReduce_82 = happySpecReduce_3 29# happyReduction_82 +happyReduction_82 happy_x_3 + happy_x_2 + happy_x_1 + = case happyOut35 happy_x_1 of { happy_var_1 -> + case happyOut36 happy_x_3 of { happy_var_3 -> + happyIn36 + ((:) happy_var_1 happy_var_3 + )}} + +happyReduce_83 = happySpecReduce_3 30# happyReduction_83 +happyReduction_83 happy_x_3 + happy_x_2 + happy_x_1 + = case happyOut7 happy_x_1 of { happy_var_1 -> + case happyOut48 happy_x_3 of { happy_var_3 -> + happyIn37 (ParDef happy_var_1 happy_var_3 )}} -happyReduce_78 = happyReduce 6# 28# happyReduction_78 -happyReduction_78 (happy_x_6 `HappyStk` +happyReduce_84 = happyReduce 6# 30# happyReduction_84 +happyReduction_84 (happy_x_6 `HappyStk` happy_x_5 `HappyStk` happy_x_4 `HappyStk` happy_x_3 `HappyStk` @@ -1377,110 +1444,74 @@ happyReduction_78 (happy_x_6 `HappyStk` happyRest) = case happyOut7 happy_x_1 of { happy_var_1 -> case happyOut7 happy_x_5 of { happy_var_5 -> - happyIn35 + happyIn37 (ParDefIndir happy_var_1 happy_var_5 ) `HappyStk` happyRest}} -happyReduce_79 = happySpecReduce_1 28# happyReduction_79 -happyReduction_79 happy_x_1 +happyReduce_85 = happySpecReduce_1 30# happyReduction_85 +happyReduction_85 happy_x_1 = case happyOut7 happy_x_1 of { happy_var_1 -> - happyIn35 + happyIn37 (ParDefAbs happy_var_1 )} -happyReduce_80 = happySpecReduce_2 29# happyReduction_80 -happyReduction_80 happy_x_2 +happyReduce_86 = happySpecReduce_2 31# happyReduction_86 +happyReduction_86 happy_x_2 happy_x_1 = case happyOut7 happy_x_1 of { happy_var_1 -> - case happyOut79 happy_x_2 of { happy_var_2 -> - happyIn36 + case happyOut81 happy_x_2 of { happy_var_2 -> + happyIn38 (ParConstr happy_var_1 (reverse happy_var_2) )}} -happyReduce_81 = happySpecReduce_3 30# happyReduction_81 -happyReduction_81 happy_x_3 +happyReduce_87 = happySpecReduce_3 32# happyReduction_87 +happyReduction_87 happy_x_3 happy_x_2 happy_x_1 - = case happyOut47 happy_x_1 of { happy_var_1 -> - case happyOut54 happy_x_3 of { happy_var_3 -> - happyIn37 + = case happyOut49 happy_x_1 of { happy_var_1 -> + case happyOut56 happy_x_3 of { happy_var_3 -> + happyIn39 (PrintDef happy_var_1 happy_var_3 )}} -happyReduce_82 = happySpecReduce_3 31# happyReduction_82 -happyReduction_82 happy_x_3 +happyReduce_88 = happySpecReduce_3 33# happyReduction_88 +happyReduction_88 happy_x_3 happy_x_2 happy_x_1 = case happyOut7 happy_x_1 of { happy_var_1 -> case happyOut7 happy_x_3 of { happy_var_3 -> - happyIn38 + happyIn40 (FlagDef happy_var_1 happy_var_3 )}} -happyReduce_83 = happySpecReduce_2 32# happyReduction_83 -happyReduction_83 happy_x_2 - happy_x_1 - = case happyOut28 happy_x_1 of { happy_var_1 -> - happyIn39 - ((:[]) happy_var_1 - )} - -happyReduce_84 = happySpecReduce_3 32# happyReduction_84 -happyReduction_84 happy_x_3 - happy_x_2 - happy_x_1 - = case happyOut28 happy_x_1 of { happy_var_1 -> - case happyOut39 happy_x_3 of { happy_var_3 -> - happyIn39 - ((:) happy_var_1 happy_var_3 - )}} - -happyReduce_85 = happySpecReduce_2 33# happyReduction_85 -happyReduction_85 happy_x_2 +happyReduce_89 = happySpecReduce_2 34# happyReduction_89 +happyReduction_89 happy_x_2 happy_x_1 = case happyOut30 happy_x_1 of { happy_var_1 -> - happyIn40 - ((:[]) happy_var_1 - )} - -happyReduce_86 = happySpecReduce_3 33# happyReduction_86 -happyReduction_86 happy_x_3 - happy_x_2 - happy_x_1 - = case happyOut30 happy_x_1 of { happy_var_1 -> - case happyOut40 happy_x_3 of { happy_var_3 -> - happyIn40 - ((:) happy_var_1 happy_var_3 - )}} - -happyReduce_87 = happySpecReduce_2 34# happyReduction_87 -happyReduction_87 happy_x_2 - happy_x_1 - = case happyOut31 happy_x_1 of { happy_var_1 -> happyIn41 ((:[]) happy_var_1 )} -happyReduce_88 = happySpecReduce_3 34# happyReduction_88 -happyReduction_88 happy_x_3 +happyReduce_90 = happySpecReduce_3 34# happyReduction_90 +happyReduction_90 happy_x_3 happy_x_2 happy_x_1 - = case happyOut31 happy_x_1 of { happy_var_1 -> + = case happyOut30 happy_x_1 of { happy_var_1 -> case happyOut41 happy_x_3 of { happy_var_3 -> happyIn41 ((:) happy_var_1 happy_var_3 )}} -happyReduce_89 = happySpecReduce_2 35# happyReduction_89 -happyReduction_89 happy_x_2 +happyReduce_91 = happySpecReduce_2 35# happyReduction_91 +happyReduction_91 happy_x_2 happy_x_1 = case happyOut32 happy_x_1 of { happy_var_1 -> happyIn42 ((:[]) happy_var_1 )} -happyReduce_90 = happySpecReduce_3 35# happyReduction_90 -happyReduction_90 happy_x_3 +happyReduce_92 = happySpecReduce_3 35# happyReduction_92 +happyReduction_92 happy_x_3 happy_x_2 happy_x_1 = case happyOut32 happy_x_1 of { happy_var_1 -> @@ -1489,141 +1520,121 @@ happyReduction_90 happy_x_3 ((:) happy_var_1 happy_var_3 )}} -happyReduce_91 = happySpecReduce_2 36# happyReduction_91 -happyReduction_91 happy_x_2 +happyReduce_93 = happySpecReduce_2 36# happyReduction_93 +happyReduction_93 happy_x_2 happy_x_1 - = case happyOut35 happy_x_1 of { happy_var_1 -> + = case happyOut33 happy_x_1 of { happy_var_1 -> happyIn43 ((:[]) happy_var_1 )} -happyReduce_92 = happySpecReduce_3 36# happyReduction_92 -happyReduction_92 happy_x_3 +happyReduce_94 = happySpecReduce_3 36# happyReduction_94 +happyReduction_94 happy_x_3 happy_x_2 happy_x_1 - = case happyOut35 happy_x_1 of { happy_var_1 -> + = case happyOut33 happy_x_1 of { happy_var_1 -> case happyOut43 happy_x_3 of { happy_var_3 -> happyIn43 ((:) happy_var_1 happy_var_3 )}} -happyReduce_93 = happySpecReduce_2 37# happyReduction_93 -happyReduction_93 happy_x_2 +happyReduce_95 = happySpecReduce_2 37# happyReduction_95 +happyReduction_95 happy_x_2 happy_x_1 - = case happyOut37 happy_x_1 of { happy_var_1 -> + = case happyOut34 happy_x_1 of { happy_var_1 -> happyIn44 ((:[]) happy_var_1 )} -happyReduce_94 = happySpecReduce_3 37# happyReduction_94 -happyReduction_94 happy_x_3 +happyReduce_96 = happySpecReduce_3 37# happyReduction_96 +happyReduction_96 happy_x_3 happy_x_2 happy_x_1 - = case happyOut37 happy_x_1 of { happy_var_1 -> + = case happyOut34 happy_x_1 of { happy_var_1 -> case happyOut44 happy_x_3 of { happy_var_3 -> happyIn44 ((:) happy_var_1 happy_var_3 )}} -happyReduce_95 = happySpecReduce_2 38# happyReduction_95 -happyReduction_95 happy_x_2 +happyReduce_97 = happySpecReduce_2 38# happyReduction_97 +happyReduction_97 happy_x_2 happy_x_1 - = case happyOut38 happy_x_1 of { happy_var_1 -> + = case happyOut37 happy_x_1 of { happy_var_1 -> happyIn45 ((:[]) happy_var_1 )} -happyReduce_96 = happySpecReduce_3 38# happyReduction_96 -happyReduction_96 happy_x_3 +happyReduce_98 = happySpecReduce_3 38# happyReduction_98 +happyReduction_98 happy_x_3 happy_x_2 happy_x_1 - = case happyOut38 happy_x_1 of { happy_var_1 -> + = case happyOut37 happy_x_1 of { happy_var_1 -> case happyOut45 happy_x_3 of { happy_var_3 -> happyIn45 ((:) happy_var_1 happy_var_3 )}} -happyReduce_97 = happySpecReduce_0 39# happyReduction_97 -happyReduction_97 = happyIn46 - ([] - ) - -happyReduce_98 = happySpecReduce_1 39# happyReduction_98 -happyReduction_98 happy_x_1 - = case happyOut36 happy_x_1 of { happy_var_1 -> +happyReduce_99 = happySpecReduce_2 39# happyReduction_99 +happyReduction_99 happy_x_2 + happy_x_1 + = case happyOut39 happy_x_1 of { happy_var_1 -> happyIn46 ((:[]) happy_var_1 )} -happyReduce_99 = happySpecReduce_3 39# happyReduction_99 -happyReduction_99 happy_x_3 +happyReduce_100 = happySpecReduce_3 39# happyReduction_100 +happyReduction_100 happy_x_3 happy_x_2 happy_x_1 - = case happyOut36 happy_x_1 of { happy_var_1 -> + = case happyOut39 happy_x_1 of { happy_var_1 -> case happyOut46 happy_x_3 of { happy_var_3 -> happyIn46 ((:) happy_var_1 happy_var_3 )}} -happyReduce_100 = happySpecReduce_1 40# happyReduction_100 -happyReduction_100 happy_x_1 - = case happyOut7 happy_x_1 of { happy_var_1 -> +happyReduce_101 = happySpecReduce_2 40# happyReduction_101 +happyReduction_101 happy_x_2 + happy_x_1 + = case happyOut40 happy_x_1 of { happy_var_1 -> happyIn47 ((:[]) happy_var_1 )} -happyReduce_101 = happySpecReduce_3 40# happyReduction_101 -happyReduction_101 happy_x_3 +happyReduce_102 = happySpecReduce_3 40# happyReduction_102 +happyReduction_102 happy_x_3 happy_x_2 happy_x_1 - = case happyOut7 happy_x_1 of { happy_var_1 -> + = case happyOut40 happy_x_1 of { happy_var_1 -> case happyOut47 happy_x_3 of { happy_var_3 -> happyIn47 ((:) happy_var_1 happy_var_3 )}} -happyReduce_102 = happySpecReduce_3 41# happyReduction_102 -happyReduction_102 happy_x_3 - happy_x_2 - happy_x_1 - = case happyOut47 happy_x_1 of { happy_var_1 -> - case happyOut54 happy_x_3 of { happy_var_3 -> - happyIn48 - (LDDecl happy_var_1 happy_var_3 - )}} - -happyReduce_103 = happySpecReduce_3 41# happyReduction_103 -happyReduction_103 happy_x_3 - happy_x_2 - happy_x_1 - = case happyOut47 happy_x_1 of { happy_var_1 -> - case happyOut54 happy_x_3 of { happy_var_3 -> - happyIn48 - (LDDef happy_var_1 happy_var_3 - )}} - -happyReduce_104 = happyReduce 5# 41# happyReduction_104 -happyReduction_104 (happy_x_5 `HappyStk` - happy_x_4 `HappyStk` - happy_x_3 `HappyStk` - happy_x_2 `HappyStk` - happy_x_1 `HappyStk` - happyRest) - = case happyOut47 happy_x_1 of { happy_var_1 -> - case happyOut54 happy_x_3 of { happy_var_3 -> - case happyOut54 happy_x_5 of { happy_var_5 -> - happyIn48 - (LDFull happy_var_1 happy_var_3 happy_var_5 - ) `HappyStk` happyRest}}} - -happyReduce_105 = happySpecReduce_0 42# happyReduction_105 -happyReduction_105 = happyIn49 +happyReduce_103 = happySpecReduce_0 41# happyReduction_103 +happyReduction_103 = happyIn48 ([] ) +happyReduce_104 = happySpecReduce_1 41# happyReduction_104 +happyReduction_104 happy_x_1 + = case happyOut38 happy_x_1 of { happy_var_1 -> + happyIn48 + ((:[]) happy_var_1 + )} + +happyReduce_105 = happySpecReduce_3 41# happyReduction_105 +happyReduction_105 happy_x_3 + happy_x_2 + happy_x_1 + = case happyOut38 happy_x_1 of { happy_var_1 -> + case happyOut48 happy_x_3 of { happy_var_3 -> + happyIn48 + ((:) happy_var_1 happy_var_3 + )}} + happyReduce_106 = happySpecReduce_1 42# happyReduction_106 happyReduction_106 happy_x_1 - = case happyOut48 happy_x_1 of { happy_var_1 -> + = case happyOut7 happy_x_1 of { happy_var_1 -> happyIn49 ((:[]) happy_var_1 )} @@ -1632,150 +1643,206 @@ happyReduce_107 = happySpecReduce_3 42# happyReduction_107 happyReduction_107 happy_x_3 happy_x_2 happy_x_1 - = case happyOut48 happy_x_1 of { happy_var_1 -> + = case happyOut7 happy_x_1 of { happy_var_1 -> case happyOut49 happy_x_3 of { happy_var_3 -> happyIn49 ((:) happy_var_1 happy_var_3 )}} -happyReduce_108 = happySpecReduce_1 43# happyReduction_108 -happyReduction_108 happy_x_1 - = case happyOut7 happy_x_1 of { happy_var_1 -> +happyReduce_108 = happySpecReduce_3 43# happyReduction_108 +happyReduction_108 happy_x_3 + happy_x_2 + happy_x_1 + = case happyOut49 happy_x_1 of { happy_var_1 -> + case happyOut56 happy_x_3 of { happy_var_3 -> happyIn50 - (EIdent happy_var_1 - )} + (LDDecl happy_var_1 happy_var_3 + )}} happyReduce_109 = happySpecReduce_3 43# happyReduction_109 happyReduction_109 happy_x_3 happy_x_2 happy_x_1 - = case happyOut7 happy_x_2 of { happy_var_2 -> + = case happyOut49 happy_x_1 of { happy_var_1 -> + case happyOut56 happy_x_3 of { happy_var_3 -> happyIn50 + (LDDef happy_var_1 happy_var_3 + )}} + +happyReduce_110 = happyReduce 5# 43# happyReduction_110 +happyReduction_110 (happy_x_5 `HappyStk` + happy_x_4 `HappyStk` + happy_x_3 `HappyStk` + happy_x_2 `HappyStk` + happy_x_1 `HappyStk` + happyRest) + = case happyOut49 happy_x_1 of { happy_var_1 -> + case happyOut56 happy_x_3 of { happy_var_3 -> + case happyOut56 happy_x_5 of { happy_var_5 -> + happyIn50 + (LDFull happy_var_1 happy_var_3 happy_var_5 + ) `HappyStk` happyRest}}} + +happyReduce_111 = happySpecReduce_0 44# happyReduction_111 +happyReduction_111 = happyIn51 + ([] + ) + +happyReduce_112 = happySpecReduce_1 44# happyReduction_112 +happyReduction_112 happy_x_1 + = case happyOut50 happy_x_1 of { happy_var_1 -> + happyIn51 + ((:[]) happy_var_1 + )} + +happyReduce_113 = happySpecReduce_3 44# happyReduction_113 +happyReduction_113 happy_x_3 + happy_x_2 + happy_x_1 + = case happyOut50 happy_x_1 of { happy_var_1 -> + case happyOut51 happy_x_3 of { happy_var_3 -> + happyIn51 + ((:) happy_var_1 happy_var_3 + )}} + +happyReduce_114 = happySpecReduce_1 45# happyReduction_114 +happyReduction_114 happy_x_1 + = case happyOut7 happy_x_1 of { happy_var_1 -> + happyIn52 + (EIdent happy_var_1 + )} + +happyReduce_115 = happySpecReduce_3 45# happyReduction_115 +happyReduction_115 happy_x_3 + happy_x_2 + happy_x_1 + = case happyOut7 happy_x_2 of { happy_var_2 -> + happyIn52 (EConstr happy_var_2 )} -happyReduce_110 = happySpecReduce_3 43# happyReduction_110 -happyReduction_110 happy_x_3 - happy_x_2 - happy_x_1 - = case happyOut7 happy_x_2 of { happy_var_2 -> - happyIn50 - (ECons happy_var_2 - )} - -happyReduce_111 = happySpecReduce_1 43# happyReduction_111 -happyReduction_111 happy_x_1 - = case happyOut60 happy_x_1 of { happy_var_1 -> - happyIn50 - (ESort happy_var_1 - )} - -happyReduce_112 = happySpecReduce_1 43# happyReduction_112 -happyReduction_112 happy_x_1 - = case happyOut8 happy_x_1 of { happy_var_1 -> - happyIn50 - (EString happy_var_1 - )} - -happyReduce_113 = happySpecReduce_1 43# happyReduction_113 -happyReduction_113 happy_x_1 - = case happyOut9 happy_x_1 of { happy_var_1 -> - happyIn50 - (EInt happy_var_1 - )} - -happyReduce_114 = happySpecReduce_1 43# happyReduction_114 -happyReduction_114 happy_x_1 - = happyIn50 - (EMeta - ) - -happyReduce_115 = happySpecReduce_2 43# happyReduction_115 -happyReduction_115 happy_x_2 - happy_x_1 - = happyIn50 - (EEmpty - ) - -happyReduce_116 = happySpecReduce_3 43# happyReduction_116 +happyReduce_116 = happySpecReduce_3 45# happyReduction_116 happyReduction_116 happy_x_3 + happy_x_2 + happy_x_1 + = case happyOut7 happy_x_2 of { happy_var_2 -> + happyIn52 + (ECons happy_var_2 + )} + +happyReduce_117 = happySpecReduce_1 45# happyReduction_117 +happyReduction_117 happy_x_1 + = case happyOut62 happy_x_1 of { happy_var_1 -> + happyIn52 + (ESort happy_var_1 + )} + +happyReduce_118 = happySpecReduce_1 45# happyReduction_118 +happyReduction_118 happy_x_1 + = case happyOut8 happy_x_1 of { happy_var_1 -> + happyIn52 + (EString happy_var_1 + )} + +happyReduce_119 = happySpecReduce_1 45# happyReduction_119 +happyReduction_119 happy_x_1 + = case happyOut9 happy_x_1 of { happy_var_1 -> + happyIn52 + (EInt happy_var_1 + )} + +happyReduce_120 = happySpecReduce_1 45# happyReduction_120 +happyReduction_120 happy_x_1 + = happyIn52 + (EMeta + ) + +happyReduce_121 = happySpecReduce_2 45# happyReduction_121 +happyReduction_121 happy_x_2 + happy_x_1 + = happyIn52 + (EEmpty + ) + +happyReduce_122 = happySpecReduce_3 45# happyReduction_122 +happyReduction_122 happy_x_3 happy_x_2 happy_x_1 = case happyOut8 happy_x_2 of { happy_var_2 -> - happyIn50 + happyIn52 (EStrings happy_var_2 )} -happyReduce_117 = happySpecReduce_3 43# happyReduction_117 -happyReduction_117 happy_x_3 +happyReduce_123 = happySpecReduce_3 45# happyReduction_123 +happyReduction_123 happy_x_3 happy_x_2 happy_x_1 - = case happyOut49 happy_x_2 of { happy_var_2 -> - happyIn50 + = case happyOut51 happy_x_2 of { happy_var_2 -> + happyIn52 (ERecord happy_var_2 )} -happyReduce_118 = happySpecReduce_3 43# happyReduction_118 -happyReduction_118 happy_x_3 +happyReduce_124 = happySpecReduce_3 45# happyReduction_124 +happyReduction_124 happy_x_3 happy_x_2 happy_x_1 - = case happyOut70 happy_x_2 of { happy_var_2 -> - happyIn50 + = case happyOut72 happy_x_2 of { happy_var_2 -> + happyIn52 (ETuple happy_var_2 )} -happyReduce_119 = happyReduce 4# 43# happyReduction_119 -happyReduction_119 (happy_x_4 `HappyStk` +happyReduce_125 = happyReduce 4# 45# happyReduction_125 +happyReduction_125 (happy_x_4 `HappyStk` happy_x_3 `HappyStk` happy_x_2 `HappyStk` happy_x_1 `HappyStk` happyRest) = case happyOut7 happy_x_3 of { happy_var_3 -> - happyIn50 + happyIn52 (EIndir happy_var_3 ) `HappyStk` happyRest} -happyReduce_120 = happyReduce 5# 43# happyReduction_120 -happyReduction_120 (happy_x_5 `HappyStk` +happyReduce_126 = happyReduce 5# 45# happyReduction_126 +happyReduction_126 (happy_x_5 `HappyStk` happy_x_4 `HappyStk` happy_x_3 `HappyStk` happy_x_2 `HappyStk` happy_x_1 `HappyStk` happyRest) - = case happyOut54 happy_x_2 of { happy_var_2 -> - case happyOut54 happy_x_4 of { happy_var_4 -> - happyIn50 + = case happyOut56 happy_x_2 of { happy_var_2 -> + case happyOut56 happy_x_4 of { happy_var_4 -> + happyIn52 (ETyped happy_var_2 happy_var_4 ) `HappyStk` happyRest}} -happyReduce_121 = happySpecReduce_3 43# happyReduction_121 -happyReduction_121 happy_x_3 +happyReduce_127 = happySpecReduce_3 45# happyReduction_127 +happyReduction_127 happy_x_3 happy_x_2 happy_x_1 - = case happyOut54 happy_x_2 of { happy_var_2 -> - happyIn50 + = case happyOut56 happy_x_2 of { happy_var_2 -> + happyIn52 (happy_var_2 )} -happyReduce_122 = happySpecReduce_1 43# happyReduction_122 -happyReduction_122 happy_x_1 +happyReduce_128 = happySpecReduce_1 45# happyReduction_128 +happyReduction_128 happy_x_1 = case happyOut10 happy_x_1 of { happy_var_1 -> - happyIn50 + happyIn52 (ELString happy_var_1 )} -happyReduce_123 = happySpecReduce_3 44# happyReduction_123 -happyReduction_123 happy_x_3 +happyReduce_129 = happySpecReduce_3 46# happyReduction_129 +happyReduction_129 happy_x_3 happy_x_2 happy_x_1 - = case happyOut51 happy_x_1 of { happy_var_1 -> - case happyOut59 happy_x_3 of { happy_var_3 -> - happyIn51 + = case happyOut53 happy_x_1 of { happy_var_1 -> + case happyOut61 happy_x_3 of { happy_var_3 -> + happyIn53 (EProj happy_var_1 happy_var_3 )}} -happyReduce_124 = happyReduce 5# 44# happyReduction_124 -happyReduction_124 (happy_x_5 `HappyStk` +happyReduce_130 = happyReduce 5# 46# happyReduction_130 +happyReduction_130 (happy_x_5 `HappyStk` happy_x_4 `HappyStk` happy_x_3 `HappyStk` happy_x_2 `HappyStk` @@ -1783,12 +1850,12 @@ happyReduction_124 (happy_x_5 `HappyStk` happyRest) = case happyOut7 happy_x_2 of { happy_var_2 -> case happyOut7 happy_x_4 of { happy_var_4 -> - happyIn51 + happyIn53 (EQConstr happy_var_2 happy_var_4 ) `HappyStk` happyRest}} -happyReduce_125 = happyReduce 5# 44# happyReduction_125 -happyReduction_125 (happy_x_5 `HappyStk` +happyReduce_131 = happyReduce 5# 46# happyReduction_131 +happyReduction_131 (happy_x_5 `HappyStk` happy_x_4 `HappyStk` happy_x_3 `HappyStk` happy_x_2 `HappyStk` @@ -1796,689 +1863,657 @@ happyReduction_125 (happy_x_5 `HappyStk` happyRest) = case happyOut7 happy_x_2 of { happy_var_2 -> case happyOut7 happy_x_4 of { happy_var_4 -> - happyIn51 + happyIn53 (EQCons happy_var_2 happy_var_4 ) `HappyStk` happyRest}} -happyReduce_126 = happySpecReduce_1 44# happyReduction_126 -happyReduction_126 happy_x_1 - = case happyOut50 happy_x_1 of { happy_var_1 -> - happyIn51 +happyReduce_132 = happySpecReduce_1 46# happyReduction_132 +happyReduction_132 happy_x_1 + = case happyOut52 happy_x_1 of { happy_var_1 -> + happyIn53 (happy_var_1 )} -happyReduce_127 = happySpecReduce_2 45# happyReduction_127 -happyReduction_127 happy_x_2 +happyReduce_133 = happySpecReduce_2 47# happyReduction_133 +happyReduction_133 happy_x_2 happy_x_1 - = case happyOut52 happy_x_1 of { happy_var_1 -> - case happyOut51 happy_x_2 of { happy_var_2 -> - happyIn52 + = case happyOut54 happy_x_1 of { happy_var_1 -> + case happyOut53 happy_x_2 of { happy_var_2 -> + happyIn54 (EApp happy_var_1 happy_var_2 )}} -happyReduce_128 = happyReduce 4# 45# happyReduction_128 -happyReduction_128 (happy_x_4 `HappyStk` - happy_x_3 `HappyStk` - happy_x_2 `HappyStk` - happy_x_1 `HappyStk` - happyRest) - = case happyOut73 happy_x_3 of { happy_var_3 -> - happyIn52 - (ETable happy_var_3 - ) `HappyStk` happyRest} - -happyReduce_129 = happyReduce 5# 45# happyReduction_129 -happyReduction_129 (happy_x_5 `HappyStk` - happy_x_4 `HappyStk` - happy_x_3 `HappyStk` - happy_x_2 `HappyStk` - happy_x_1 `HappyStk` - happyRest) - = case happyOut50 happy_x_2 of { happy_var_2 -> - case happyOut73 happy_x_4 of { happy_var_4 -> - happyIn52 - (ETTable happy_var_2 happy_var_4 - ) `HappyStk` happyRest}} - -happyReduce_130 = happyReduce 6# 45# happyReduction_130 -happyReduction_130 (happy_x_6 `HappyStk` - happy_x_5 `HappyStk` - happy_x_4 `HappyStk` - happy_x_3 `HappyStk` - happy_x_2 `HappyStk` - happy_x_1 `HappyStk` - happyRest) - = case happyOut54 happy_x_2 of { happy_var_2 -> - case happyOut73 happy_x_5 of { happy_var_5 -> - happyIn52 - (ECase happy_var_2 happy_var_5 - ) `HappyStk` happyRest}} - -happyReduce_131 = happyReduce 4# 45# happyReduction_131 -happyReduction_131 (happy_x_4 `HappyStk` - happy_x_3 `HappyStk` - happy_x_2 `HappyStk` - happy_x_1 `HappyStk` - happyRest) - = case happyOut55 happy_x_3 of { happy_var_3 -> - happyIn52 - (EVariants happy_var_3 - ) `HappyStk` happyRest} - -happyReduce_132 = happyReduce 6# 45# happyReduction_132 -happyReduction_132 (happy_x_6 `HappyStk` - happy_x_5 `HappyStk` - happy_x_4 `HappyStk` - happy_x_3 `HappyStk` - happy_x_2 `HappyStk` - happy_x_1 `HappyStk` - happyRest) - = case happyOut54 happy_x_3 of { happy_var_3 -> - case happyOut77 happy_x_5 of { happy_var_5 -> - happyIn52 - (EPre happy_var_3 happy_var_5 - ) `HappyStk` happyRest}} - -happyReduce_133 = happyReduce 4# 45# happyReduction_133 -happyReduction_133 (happy_x_4 `HappyStk` - happy_x_3 `HappyStk` - happy_x_2 `HappyStk` - happy_x_1 `HappyStk` - happyRest) - = case happyOut55 happy_x_3 of { happy_var_3 -> - happyIn52 - (EStrs happy_var_3 - ) `HappyStk` happyRest} - -happyReduce_134 = happySpecReduce_3 45# happyReduction_134 -happyReduction_134 happy_x_3 - happy_x_2 - happy_x_1 - = case happyOut7 happy_x_1 of { happy_var_1 -> - case happyOut50 happy_x_3 of { happy_var_3 -> - happyIn52 - (EConAt happy_var_1 happy_var_3 - )}} - -happyReduce_135 = happySpecReduce_1 45# happyReduction_135 -happyReduction_135 happy_x_1 - = case happyOut51 happy_x_1 of { happy_var_1 -> - happyIn52 - (happy_var_1 - )} - -happyReduce_136 = happySpecReduce_2 45# happyReduction_136 -happyReduction_136 happy_x_2 - happy_x_1 - = case happyOut7 happy_x_2 of { happy_var_2 -> - happyIn52 - (ELin happy_var_2 - )} - -happyReduce_137 = happySpecReduce_3 46# happyReduction_137 -happyReduction_137 happy_x_3 - happy_x_2 - happy_x_1 - = case happyOut53 happy_x_1 of { happy_var_1 -> - case happyOut52 happy_x_3 of { happy_var_3 -> - happyIn53 - (ESelect happy_var_1 happy_var_3 - )}} - -happyReduce_138 = happySpecReduce_3 46# happyReduction_138 -happyReduction_138 happy_x_3 - happy_x_2 - happy_x_1 - = case happyOut53 happy_x_1 of { happy_var_1 -> - case happyOut52 happy_x_3 of { happy_var_3 -> - happyIn53 - (ETupTyp happy_var_1 happy_var_3 - )}} - -happyReduce_139 = happySpecReduce_3 46# happyReduction_139 -happyReduction_139 happy_x_3 - happy_x_2 - happy_x_1 - = case happyOut53 happy_x_1 of { happy_var_1 -> - case happyOut52 happy_x_3 of { happy_var_3 -> - happyIn53 - (EExtend happy_var_1 happy_var_3 - )}} - -happyReduce_140 = happySpecReduce_1 46# happyReduction_140 -happyReduction_140 happy_x_1 - = case happyOut52 happy_x_1 of { happy_var_1 -> - happyIn53 - (happy_var_1 - )} - -happyReduce_141 = happyReduce 4# 47# happyReduction_141 -happyReduction_141 (happy_x_4 `HappyStk` - happy_x_3 `HappyStk` - happy_x_2 `HappyStk` - happy_x_1 `HappyStk` - happyRest) - = case happyOut66 happy_x_2 of { happy_var_2 -> - case happyOut54 happy_x_4 of { happy_var_4 -> - happyIn54 - (EAbstr happy_var_2 happy_var_4 - ) `HappyStk` happyRest}} - -happyReduce_142 = happyReduce 5# 47# happyReduction_142 -happyReduction_142 (happy_x_5 `HappyStk` - happy_x_4 `HappyStk` - happy_x_3 `HappyStk` - happy_x_2 `HappyStk` - happy_x_1 `HappyStk` - happyRest) - = case happyOut66 happy_x_3 of { happy_var_3 -> - case happyOut54 happy_x_5 of { happy_var_5 -> - happyIn54 - (ECTable happy_var_3 happy_var_5 - ) `HappyStk` happyRest}} - -happyReduce_143 = happySpecReduce_3 47# happyReduction_143 -happyReduction_143 happy_x_3 - happy_x_2 - happy_x_1 - = case happyOut67 happy_x_1 of { happy_var_1 -> - case happyOut54 happy_x_3 of { happy_var_3 -> - happyIn54 - (EProd happy_var_1 happy_var_3 - )}} - -happyReduce_144 = happySpecReduce_3 47# happyReduction_144 -happyReduction_144 happy_x_3 - happy_x_2 - happy_x_1 - = case happyOut53 happy_x_1 of { happy_var_1 -> - case happyOut54 happy_x_3 of { happy_var_3 -> - happyIn54 - (ETType happy_var_1 happy_var_3 - )}} - -happyReduce_145 = happySpecReduce_3 47# happyReduction_145 -happyReduction_145 happy_x_3 - happy_x_2 - happy_x_1 - = case happyOut53 happy_x_1 of { happy_var_1 -> - case happyOut54 happy_x_3 of { happy_var_3 -> - happyIn54 - (EConcat happy_var_1 happy_var_3 - )}} - -happyReduce_146 = happySpecReduce_3 47# happyReduction_146 -happyReduction_146 happy_x_3 - happy_x_2 - happy_x_1 - = case happyOut53 happy_x_1 of { happy_var_1 -> - case happyOut54 happy_x_3 of { happy_var_3 -> - happyIn54 - (EGlue happy_var_1 happy_var_3 - )}} - -happyReduce_147 = happyReduce 6# 47# happyReduction_147 -happyReduction_147 (happy_x_6 `HappyStk` - happy_x_5 `HappyStk` - happy_x_4 `HappyStk` - happy_x_3 `HappyStk` - happy_x_2 `HappyStk` - happy_x_1 `HappyStk` - happyRest) - = case happyOut49 happy_x_3 of { happy_var_3 -> - case happyOut54 happy_x_6 of { happy_var_6 -> - happyIn54 - (ELet happy_var_3 happy_var_6 - ) `HappyStk` happyRest}} - -happyReduce_148 = happyReduce 4# 47# happyReduction_148 -happyReduction_148 (happy_x_4 `HappyStk` - happy_x_3 `HappyStk` - happy_x_2 `HappyStk` - happy_x_1 `HappyStk` - happyRest) - = case happyOut49 happy_x_2 of { happy_var_2 -> - case happyOut54 happy_x_4 of { happy_var_4 -> - happyIn54 - (ELetb happy_var_2 happy_var_4 - ) `HappyStk` happyRest}} - -happyReduce_149 = happyReduce 5# 47# happyReduction_149 -happyReduction_149 (happy_x_5 `HappyStk` - happy_x_4 `HappyStk` - happy_x_3 `HappyStk` - happy_x_2 `HappyStk` - happy_x_1 `HappyStk` - happyRest) - = case happyOut53 happy_x_1 of { happy_var_1 -> - case happyOut49 happy_x_4 of { happy_var_4 -> - happyIn54 - (EWhere happy_var_1 happy_var_4 - ) `HappyStk` happyRest}} - -happyReduce_150 = happyReduce 4# 47# happyReduction_150 -happyReduction_150 (happy_x_4 `HappyStk` +happyReduce_134 = happyReduce 4# 47# happyReduction_134 +happyReduction_134 (happy_x_4 `HappyStk` happy_x_3 `HappyStk` happy_x_2 `HappyStk` happy_x_1 `HappyStk` happyRest) = case happyOut75 happy_x_3 of { happy_var_3 -> happyIn54 - (EEqs happy_var_3 + (ETable happy_var_3 ) `HappyStk` happyRest} -happyReduce_151 = happySpecReduce_1 47# happyReduction_151 -happyReduction_151 happy_x_1 +happyReduce_135 = happyReduce 5# 47# happyReduction_135 +happyReduction_135 (happy_x_5 `HappyStk` + happy_x_4 `HappyStk` + happy_x_3 `HappyStk` + happy_x_2 `HappyStk` + happy_x_1 `HappyStk` + happyRest) + = case happyOut52 happy_x_2 of { happy_var_2 -> + case happyOut75 happy_x_4 of { happy_var_4 -> + happyIn54 + (ETTable happy_var_2 happy_var_4 + ) `HappyStk` happyRest}} + +happyReduce_136 = happyReduce 6# 47# happyReduction_136 +happyReduction_136 (happy_x_6 `HappyStk` + happy_x_5 `HappyStk` + happy_x_4 `HappyStk` + happy_x_3 `HappyStk` + happy_x_2 `HappyStk` + happy_x_1 `HappyStk` + happyRest) + = case happyOut56 happy_x_2 of { happy_var_2 -> + case happyOut75 happy_x_5 of { happy_var_5 -> + happyIn54 + (ECase happy_var_2 happy_var_5 + ) `HappyStk` happyRest}} + +happyReduce_137 = happyReduce 4# 47# happyReduction_137 +happyReduction_137 (happy_x_4 `HappyStk` + happy_x_3 `HappyStk` + happy_x_2 `HappyStk` + happy_x_1 `HappyStk` + happyRest) + = case happyOut57 happy_x_3 of { happy_var_3 -> + happyIn54 + (EVariants happy_var_3 + ) `HappyStk` happyRest} + +happyReduce_138 = happyReduce 6# 47# happyReduction_138 +happyReduction_138 (happy_x_6 `HappyStk` + happy_x_5 `HappyStk` + happy_x_4 `HappyStk` + happy_x_3 `HappyStk` + happy_x_2 `HappyStk` + happy_x_1 `HappyStk` + happyRest) + = case happyOut56 happy_x_3 of { happy_var_3 -> + case happyOut79 happy_x_5 of { happy_var_5 -> + happyIn54 + (EPre happy_var_3 happy_var_5 + ) `HappyStk` happyRest}} + +happyReduce_139 = happyReduce 4# 47# happyReduction_139 +happyReduction_139 (happy_x_4 `HappyStk` + happy_x_3 `HappyStk` + happy_x_2 `HappyStk` + happy_x_1 `HappyStk` + happyRest) + = case happyOut57 happy_x_3 of { happy_var_3 -> + happyIn54 + (EStrs happy_var_3 + ) `HappyStk` happyRest} + +happyReduce_140 = happySpecReduce_3 47# happyReduction_140 +happyReduction_140 happy_x_3 + happy_x_2 + happy_x_1 + = case happyOut7 happy_x_1 of { happy_var_1 -> + case happyOut52 happy_x_3 of { happy_var_3 -> + happyIn54 + (EConAt happy_var_1 happy_var_3 + )}} + +happyReduce_141 = happySpecReduce_1 47# happyReduction_141 +happyReduction_141 happy_x_1 = case happyOut53 happy_x_1 of { happy_var_1 -> happyIn54 (happy_var_1 )} -happyReduce_152 = happySpecReduce_0 48# happyReduction_152 -happyReduction_152 = happyIn55 - ([] - ) - -happyReduce_153 = happySpecReduce_1 48# happyReduction_153 -happyReduction_153 happy_x_1 - = case happyOut54 happy_x_1 of { happy_var_1 -> - happyIn55 - ((:[]) happy_var_1 - )} - -happyReduce_154 = happySpecReduce_3 48# happyReduction_154 -happyReduction_154 happy_x_3 - happy_x_2 - happy_x_1 - = case happyOut54 happy_x_1 of { happy_var_1 -> - case happyOut55 happy_x_3 of { happy_var_3 -> - happyIn55 - ((:) happy_var_1 happy_var_3 - )}} - -happyReduce_155 = happySpecReduce_1 49# happyReduction_155 -happyReduction_155 happy_x_1 - = happyIn56 - (PW - ) - -happyReduce_156 = happySpecReduce_1 49# happyReduction_156 -happyReduction_156 happy_x_1 - = case happyOut7 happy_x_1 of { happy_var_1 -> - happyIn56 - (PV happy_var_1 - )} - -happyReduce_157 = happySpecReduce_3 49# happyReduction_157 -happyReduction_157 happy_x_3 - happy_x_2 +happyReduce_142 = happySpecReduce_2 47# happyReduction_142 +happyReduction_142 happy_x_2 happy_x_1 = case happyOut7 happy_x_2 of { happy_var_2 -> - happyIn56 - (PCon happy_var_2 + happyIn54 + (ELin happy_var_2 )} -happyReduce_158 = happySpecReduce_3 49# happyReduction_158 -happyReduction_158 happy_x_3 +happyReduce_143 = happySpecReduce_3 48# happyReduction_143 +happyReduction_143 happy_x_3 happy_x_2 happy_x_1 - = case happyOut7 happy_x_1 of { happy_var_1 -> - case happyOut7 happy_x_3 of { happy_var_3 -> - happyIn56 - (PQ happy_var_1 happy_var_3 + = case happyOut55 happy_x_1 of { happy_var_1 -> + case happyOut54 happy_x_3 of { happy_var_3 -> + happyIn55 + (ESelect happy_var_1 happy_var_3 )}} -happyReduce_159 = happySpecReduce_1 49# happyReduction_159 -happyReduction_159 happy_x_1 - = case happyOut9 happy_x_1 of { happy_var_1 -> - happyIn56 - (PInt happy_var_1 - )} - -happyReduce_160 = happySpecReduce_1 49# happyReduction_160 -happyReduction_160 happy_x_1 - = case happyOut8 happy_x_1 of { happy_var_1 -> - happyIn56 - (PStr happy_var_1 - )} - -happyReduce_161 = happySpecReduce_3 49# happyReduction_161 -happyReduction_161 happy_x_3 +happyReduce_144 = happySpecReduce_3 48# happyReduction_144 +happyReduction_144 happy_x_3 happy_x_2 happy_x_1 - = case happyOut61 happy_x_2 of { happy_var_2 -> - happyIn56 - (PR happy_var_2 - )} - -happyReduce_162 = happySpecReduce_3 49# happyReduction_162 -happyReduction_162 happy_x_3 - happy_x_2 - happy_x_1 - = case happyOut71 happy_x_2 of { happy_var_2 -> - happyIn56 - (PTup happy_var_2 - )} - -happyReduce_163 = happySpecReduce_3 49# happyReduction_163 -happyReduction_163 happy_x_3 - happy_x_2 - happy_x_1 - = case happyOut57 happy_x_2 of { happy_var_2 -> - happyIn56 - (happy_var_2 - )} - -happyReduce_164 = happySpecReduce_2 50# happyReduction_164 -happyReduction_164 happy_x_2 - happy_x_1 - = case happyOut7 happy_x_1 of { happy_var_1 -> - case happyOut63 happy_x_2 of { happy_var_2 -> - happyIn57 - (PC happy_var_1 happy_var_2 + = case happyOut55 happy_x_1 of { happy_var_1 -> + case happyOut54 happy_x_3 of { happy_var_3 -> + happyIn55 + (ETupTyp happy_var_1 happy_var_3 )}} -happyReduce_165 = happyReduce 4# 50# happyReduction_165 -happyReduction_165 (happy_x_4 `HappyStk` +happyReduce_145 = happySpecReduce_3 48# happyReduction_145 +happyReduction_145 happy_x_3 + happy_x_2 + happy_x_1 + = case happyOut55 happy_x_1 of { happy_var_1 -> + case happyOut54 happy_x_3 of { happy_var_3 -> + happyIn55 + (EExtend happy_var_1 happy_var_3 + )}} + +happyReduce_146 = happySpecReduce_1 48# happyReduction_146 +happyReduction_146 happy_x_1 + = case happyOut54 happy_x_1 of { happy_var_1 -> + happyIn55 + (happy_var_1 + )} + +happyReduce_147 = happyReduce 4# 49# happyReduction_147 +happyReduction_147 (happy_x_4 `HappyStk` happy_x_3 `HappyStk` happy_x_2 `HappyStk` happy_x_1 `HappyStk` happyRest) - = case happyOut7 happy_x_1 of { happy_var_1 -> - case happyOut7 happy_x_3 of { happy_var_3 -> - case happyOut63 happy_x_4 of { happy_var_4 -> - happyIn57 - (PQC happy_var_1 happy_var_3 happy_var_4 - ) `HappyStk` happyRest}}} + = case happyOut68 happy_x_2 of { happy_var_2 -> + case happyOut56 happy_x_4 of { happy_var_4 -> + happyIn56 + (EAbstr happy_var_2 happy_var_4 + ) `HappyStk` happyRest}} -happyReduce_166 = happySpecReduce_1 50# happyReduction_166 -happyReduction_166 happy_x_1 +happyReduce_148 = happyReduce 5# 49# happyReduction_148 +happyReduction_148 (happy_x_5 `HappyStk` + happy_x_4 `HappyStk` + happy_x_3 `HappyStk` + happy_x_2 `HappyStk` + happy_x_1 `HappyStk` + happyRest) + = case happyOut68 happy_x_3 of { happy_var_3 -> + case happyOut56 happy_x_5 of { happy_var_5 -> + happyIn56 + (ECTable happy_var_3 happy_var_5 + ) `HappyStk` happyRest}} + +happyReduce_149 = happySpecReduce_3 49# happyReduction_149 +happyReduction_149 happy_x_3 + happy_x_2 + happy_x_1 + = case happyOut69 happy_x_1 of { happy_var_1 -> + case happyOut56 happy_x_3 of { happy_var_3 -> + happyIn56 + (EProd happy_var_1 happy_var_3 + )}} + +happyReduce_150 = happySpecReduce_3 49# happyReduction_150 +happyReduction_150 happy_x_3 + happy_x_2 + happy_x_1 + = case happyOut55 happy_x_1 of { happy_var_1 -> + case happyOut56 happy_x_3 of { happy_var_3 -> + happyIn56 + (ETType happy_var_1 happy_var_3 + )}} + +happyReduce_151 = happySpecReduce_3 49# happyReduction_151 +happyReduction_151 happy_x_3 + happy_x_2 + happy_x_1 + = case happyOut55 happy_x_1 of { happy_var_1 -> + case happyOut56 happy_x_3 of { happy_var_3 -> + happyIn56 + (EConcat happy_var_1 happy_var_3 + )}} + +happyReduce_152 = happySpecReduce_3 49# happyReduction_152 +happyReduction_152 happy_x_3 + happy_x_2 + happy_x_1 + = case happyOut55 happy_x_1 of { happy_var_1 -> + case happyOut56 happy_x_3 of { happy_var_3 -> + happyIn56 + (EGlue happy_var_1 happy_var_3 + )}} + +happyReduce_153 = happyReduce 6# 49# happyReduction_153 +happyReduction_153 (happy_x_6 `HappyStk` + happy_x_5 `HappyStk` + happy_x_4 `HappyStk` + happy_x_3 `HappyStk` + happy_x_2 `HappyStk` + happy_x_1 `HappyStk` + happyRest) + = case happyOut51 happy_x_3 of { happy_var_3 -> + case happyOut56 happy_x_6 of { happy_var_6 -> + happyIn56 + (ELet happy_var_3 happy_var_6 + ) `HappyStk` happyRest}} + +happyReduce_154 = happyReduce 4# 49# happyReduction_154 +happyReduction_154 (happy_x_4 `HappyStk` + happy_x_3 `HappyStk` + happy_x_2 `HappyStk` + happy_x_1 `HappyStk` + happyRest) + = case happyOut51 happy_x_2 of { happy_var_2 -> + case happyOut56 happy_x_4 of { happy_var_4 -> + happyIn56 + (ELetb happy_var_2 happy_var_4 + ) `HappyStk` happyRest}} + +happyReduce_155 = happyReduce 5# 49# happyReduction_155 +happyReduction_155 (happy_x_5 `HappyStk` + happy_x_4 `HappyStk` + happy_x_3 `HappyStk` + happy_x_2 `HappyStk` + happy_x_1 `HappyStk` + happyRest) + = case happyOut55 happy_x_1 of { happy_var_1 -> + case happyOut51 happy_x_4 of { happy_var_4 -> + happyIn56 + (EWhere happy_var_1 happy_var_4 + ) `HappyStk` happyRest}} + +happyReduce_156 = happyReduce 4# 49# happyReduction_156 +happyReduction_156 (happy_x_4 `HappyStk` + happy_x_3 `HappyStk` + happy_x_2 `HappyStk` + happy_x_1 `HappyStk` + happyRest) + = case happyOut77 happy_x_3 of { happy_var_3 -> + happyIn56 + (EEqs happy_var_3 + ) `HappyStk` happyRest} + +happyReduce_157 = happySpecReduce_1 49# happyReduction_157 +happyReduction_157 happy_x_1 + = case happyOut55 happy_x_1 of { happy_var_1 -> + happyIn56 + (happy_var_1 + )} + +happyReduce_158 = happySpecReduce_0 50# happyReduction_158 +happyReduction_158 = happyIn57 + ([] + ) + +happyReduce_159 = happySpecReduce_1 50# happyReduction_159 +happyReduction_159 happy_x_1 = case happyOut56 happy_x_1 of { happy_var_1 -> happyIn57 - (happy_var_1 + ((:[]) happy_var_1 + )} + +happyReduce_160 = happySpecReduce_3 50# happyReduction_160 +happyReduction_160 happy_x_3 + happy_x_2 + happy_x_1 + = case happyOut56 happy_x_1 of { happy_var_1 -> + case happyOut57 happy_x_3 of { happy_var_3 -> + happyIn57 + ((:) happy_var_1 happy_var_3 + )}} + +happyReduce_161 = happySpecReduce_1 51# happyReduction_161 +happyReduction_161 happy_x_1 + = happyIn58 + (PW + ) + +happyReduce_162 = happySpecReduce_1 51# happyReduction_162 +happyReduction_162 happy_x_1 + = case happyOut7 happy_x_1 of { happy_var_1 -> + happyIn58 + (PV happy_var_1 + )} + +happyReduce_163 = happySpecReduce_3 51# happyReduction_163 +happyReduction_163 happy_x_3 + happy_x_2 + happy_x_1 + = case happyOut7 happy_x_2 of { happy_var_2 -> + happyIn58 + (PCon happy_var_2 + )} + +happyReduce_164 = happySpecReduce_3 51# happyReduction_164 +happyReduction_164 happy_x_3 + happy_x_2 + happy_x_1 + = case happyOut7 happy_x_1 of { happy_var_1 -> + case happyOut7 happy_x_3 of { happy_var_3 -> + happyIn58 + (PQ happy_var_1 happy_var_3 + )}} + +happyReduce_165 = happySpecReduce_1 51# happyReduction_165 +happyReduction_165 happy_x_1 + = case happyOut9 happy_x_1 of { happy_var_1 -> + happyIn58 + (PInt happy_var_1 + )} + +happyReduce_166 = happySpecReduce_1 51# happyReduction_166 +happyReduction_166 happy_x_1 + = case happyOut8 happy_x_1 of { happy_var_1 -> + happyIn58 + (PStr happy_var_1 )} happyReduce_167 = happySpecReduce_3 51# happyReduction_167 happyReduction_167 happy_x_3 happy_x_2 happy_x_1 - = case happyOut47 happy_x_1 of { happy_var_1 -> - case happyOut57 happy_x_3 of { happy_var_3 -> + = case happyOut63 happy_x_2 of { happy_var_2 -> happyIn58 + (PR happy_var_2 + )} + +happyReduce_168 = happySpecReduce_3 51# happyReduction_168 +happyReduction_168 happy_x_3 + happy_x_2 + happy_x_1 + = case happyOut73 happy_x_2 of { happy_var_2 -> + happyIn58 + (PTup happy_var_2 + )} + +happyReduce_169 = happySpecReduce_3 51# happyReduction_169 +happyReduction_169 happy_x_3 + happy_x_2 + happy_x_1 + = case happyOut59 happy_x_2 of { happy_var_2 -> + happyIn58 + (happy_var_2 + )} + +happyReduce_170 = happySpecReduce_2 52# happyReduction_170 +happyReduction_170 happy_x_2 + happy_x_1 + = case happyOut7 happy_x_1 of { happy_var_1 -> + case happyOut65 happy_x_2 of { happy_var_2 -> + happyIn59 + (PC happy_var_1 happy_var_2 + )}} + +happyReduce_171 = happyReduce 4# 52# happyReduction_171 +happyReduction_171 (happy_x_4 `HappyStk` + happy_x_3 `HappyStk` + happy_x_2 `HappyStk` + happy_x_1 `HappyStk` + happyRest) + = case happyOut7 happy_x_1 of { happy_var_1 -> + case happyOut7 happy_x_3 of { happy_var_3 -> + case happyOut65 happy_x_4 of { happy_var_4 -> + happyIn59 + (PQC happy_var_1 happy_var_3 happy_var_4 + ) `HappyStk` happyRest}}} + +happyReduce_172 = happySpecReduce_1 52# happyReduction_172 +happyReduction_172 happy_x_1 + = case happyOut58 happy_x_1 of { happy_var_1 -> + happyIn59 + (happy_var_1 + )} + +happyReduce_173 = happySpecReduce_3 53# happyReduction_173 +happyReduction_173 happy_x_3 + happy_x_2 + happy_x_1 + = case happyOut49 happy_x_1 of { happy_var_1 -> + case happyOut59 happy_x_3 of { happy_var_3 -> + happyIn60 (PA happy_var_1 happy_var_3 )}} -happyReduce_168 = happySpecReduce_1 52# happyReduction_168 -happyReduction_168 happy_x_1 +happyReduce_174 = happySpecReduce_1 54# happyReduction_174 +happyReduction_174 happy_x_1 = case happyOut7 happy_x_1 of { happy_var_1 -> - happyIn59 + happyIn61 (LIdent happy_var_1 )} -happyReduce_169 = happySpecReduce_2 52# happyReduction_169 -happyReduction_169 happy_x_2 +happyReduce_175 = happySpecReduce_2 54# happyReduction_175 +happyReduction_175 happy_x_2 happy_x_1 = case happyOut9 happy_x_2 of { happy_var_2 -> - happyIn59 + happyIn61 (LVar happy_var_2 )} -happyReduce_170 = happySpecReduce_1 53# happyReduction_170 -happyReduction_170 happy_x_1 - = happyIn60 +happyReduce_176 = happySpecReduce_1 55# happyReduction_176 +happyReduction_176 happy_x_1 + = happyIn62 (Sort_Type ) -happyReduce_171 = happySpecReduce_1 53# happyReduction_171 -happyReduction_171 happy_x_1 - = happyIn60 +happyReduce_177 = happySpecReduce_1 55# happyReduction_177 +happyReduction_177 happy_x_1 + = happyIn62 (Sort_PType ) -happyReduce_172 = happySpecReduce_1 53# happyReduction_172 -happyReduction_172 happy_x_1 - = happyIn60 +happyReduce_178 = happySpecReduce_1 55# happyReduction_178 +happyReduction_178 happy_x_1 + = happyIn62 (Sort_Tok ) -happyReduce_173 = happySpecReduce_1 53# happyReduction_173 -happyReduction_173 happy_x_1 - = happyIn60 +happyReduce_179 = happySpecReduce_1 55# happyReduction_179 +happyReduction_179 happy_x_1 + = happyIn62 (Sort_Str ) -happyReduce_174 = happySpecReduce_1 53# happyReduction_174 -happyReduction_174 happy_x_1 - = happyIn60 +happyReduce_180 = happySpecReduce_1 55# happyReduction_180 +happyReduction_180 happy_x_1 + = happyIn62 (Sort_Strs ) -happyReduce_175 = happySpecReduce_0 54# happyReduction_175 -happyReduction_175 = happyIn61 +happyReduce_181 = happySpecReduce_0 56# happyReduction_181 +happyReduction_181 = happyIn63 ([] ) -happyReduce_176 = happySpecReduce_1 54# happyReduction_176 -happyReduction_176 happy_x_1 - = case happyOut58 happy_x_1 of { happy_var_1 -> - happyIn61 +happyReduce_182 = happySpecReduce_1 56# happyReduction_182 +happyReduction_182 happy_x_1 + = case happyOut60 happy_x_1 of { happy_var_1 -> + happyIn63 ((:[]) happy_var_1 )} -happyReduce_177 = happySpecReduce_3 54# happyReduction_177 -happyReduction_177 happy_x_3 +happyReduce_183 = happySpecReduce_3 56# happyReduction_183 +happyReduction_183 happy_x_3 happy_x_2 happy_x_1 - = case happyOut58 happy_x_1 of { happy_var_1 -> - case happyOut61 happy_x_3 of { happy_var_3 -> - happyIn61 + = case happyOut60 happy_x_1 of { happy_var_1 -> + case happyOut63 happy_x_3 of { happy_var_3 -> + happyIn63 ((:) happy_var_1 happy_var_3 )}} -happyReduce_178 = happySpecReduce_1 55# happyReduction_178 -happyReduction_178 happy_x_1 - = case happyOut57 happy_x_1 of { happy_var_1 -> - happyIn62 +happyReduce_184 = happySpecReduce_1 57# happyReduction_184 +happyReduction_184 happy_x_1 + = case happyOut59 happy_x_1 of { happy_var_1 -> + happyIn64 (AltP happy_var_1 )} -happyReduce_179 = happySpecReduce_1 56# happyReduction_179 -happyReduction_179 happy_x_1 - = case happyOut56 happy_x_1 of { happy_var_1 -> - happyIn63 +happyReduce_185 = happySpecReduce_1 58# happyReduction_185 +happyReduction_185 happy_x_1 + = case happyOut58 happy_x_1 of { happy_var_1 -> + happyIn65 ((:[]) happy_var_1 )} -happyReduce_180 = happySpecReduce_2 56# happyReduction_180 -happyReduction_180 happy_x_2 +happyReduce_186 = happySpecReduce_2 58# happyReduction_186 +happyReduction_186 happy_x_2 happy_x_1 - = case happyOut56 happy_x_1 of { happy_var_1 -> - case happyOut63 happy_x_2 of { happy_var_2 -> - happyIn63 + = case happyOut58 happy_x_1 of { happy_var_1 -> + case happyOut65 happy_x_2 of { happy_var_2 -> + happyIn65 ((:) happy_var_1 happy_var_2 )}} -happyReduce_181 = happySpecReduce_1 57# happyReduction_181 -happyReduction_181 happy_x_1 - = case happyOut62 happy_x_1 of { happy_var_1 -> - happyIn64 - ((:[]) happy_var_1 - )} - -happyReduce_182 = happySpecReduce_3 57# happyReduction_182 -happyReduction_182 happy_x_3 - happy_x_2 - happy_x_1 - = case happyOut62 happy_x_1 of { happy_var_1 -> - case happyOut64 happy_x_3 of { happy_var_3 -> - happyIn64 - ((:) happy_var_1 happy_var_3 - )}} - -happyReduce_183 = happySpecReduce_1 58# happyReduction_183 -happyReduction_183 happy_x_1 - = case happyOut7 happy_x_1 of { happy_var_1 -> - happyIn65 - (BIdent happy_var_1 - )} - -happyReduce_184 = happySpecReduce_1 58# happyReduction_184 -happyReduction_184 happy_x_1 - = happyIn65 - (BWild - ) - -happyReduce_185 = happySpecReduce_0 59# happyReduction_185 -happyReduction_185 = happyIn66 - ([] - ) - -happyReduce_186 = happySpecReduce_1 59# happyReduction_186 -happyReduction_186 happy_x_1 - = case happyOut65 happy_x_1 of { happy_var_1 -> +happyReduce_187 = happySpecReduce_1 59# happyReduction_187 +happyReduction_187 happy_x_1 + = case happyOut64 happy_x_1 of { happy_var_1 -> happyIn66 ((:[]) happy_var_1 )} -happyReduce_187 = happySpecReduce_3 59# happyReduction_187 -happyReduction_187 happy_x_3 +happyReduce_188 = happySpecReduce_3 59# happyReduction_188 +happyReduction_188 happy_x_3 happy_x_2 happy_x_1 - = case happyOut65 happy_x_1 of { happy_var_1 -> + = case happyOut64 happy_x_1 of { happy_var_1 -> case happyOut66 happy_x_3 of { happy_var_3 -> happyIn66 ((:) happy_var_1 happy_var_3 )}} -happyReduce_188 = happyReduce 5# 60# happyReduction_188 -happyReduction_188 (happy_x_5 `HappyStk` +happyReduce_189 = happySpecReduce_1 60# happyReduction_189 +happyReduction_189 happy_x_1 + = case happyOut7 happy_x_1 of { happy_var_1 -> + happyIn67 + (BIdent happy_var_1 + )} + +happyReduce_190 = happySpecReduce_1 60# happyReduction_190 +happyReduction_190 happy_x_1 + = happyIn67 + (BWild + ) + +happyReduce_191 = happySpecReduce_0 61# happyReduction_191 +happyReduction_191 = happyIn68 + ([] + ) + +happyReduce_192 = happySpecReduce_1 61# happyReduction_192 +happyReduction_192 happy_x_1 + = case happyOut67 happy_x_1 of { happy_var_1 -> + happyIn68 + ((:[]) happy_var_1 + )} + +happyReduce_193 = happySpecReduce_3 61# happyReduction_193 +happyReduction_193 happy_x_3 + happy_x_2 + happy_x_1 + = case happyOut67 happy_x_1 of { happy_var_1 -> + case happyOut68 happy_x_3 of { happy_var_3 -> + happyIn68 + ((:) happy_var_1 happy_var_3 + )}} + +happyReduce_194 = happyReduce 5# 62# happyReduction_194 +happyReduction_194 (happy_x_5 `HappyStk` happy_x_4 `HappyStk` happy_x_3 `HappyStk` happy_x_2 `HappyStk` happy_x_1 `HappyStk` happyRest) - = case happyOut66 happy_x_2 of { happy_var_2 -> - case happyOut54 happy_x_4 of { happy_var_4 -> - happyIn67 + = case happyOut68 happy_x_2 of { happy_var_2 -> + case happyOut56 happy_x_4 of { happy_var_4 -> + happyIn69 (DDec happy_var_2 happy_var_4 ) `HappyStk` happyRest}} -happyReduce_189 = happySpecReduce_1 60# happyReduction_189 -happyReduction_189 happy_x_1 - = case happyOut52 happy_x_1 of { happy_var_1 -> - happyIn67 +happyReduce_195 = happySpecReduce_1 62# happyReduction_195 +happyReduction_195 happy_x_1 + = case happyOut54 happy_x_1 of { happy_var_1 -> + happyIn69 (DExp happy_var_1 )} -happyReduce_190 = happySpecReduce_1 61# happyReduction_190 -happyReduction_190 happy_x_1 - = case happyOut54 happy_x_1 of { happy_var_1 -> - happyIn68 +happyReduce_196 = happySpecReduce_1 63# happyReduction_196 +happyReduction_196 happy_x_1 + = case happyOut56 happy_x_1 of { happy_var_1 -> + happyIn70 (TComp happy_var_1 )} -happyReduce_191 = happySpecReduce_1 62# happyReduction_191 -happyReduction_191 happy_x_1 - = case happyOut57 happy_x_1 of { happy_var_1 -> - happyIn69 +happyReduce_197 = happySpecReduce_1 64# happyReduction_197 +happyReduction_197 happy_x_1 + = case happyOut59 happy_x_1 of { happy_var_1 -> + happyIn71 (PTComp happy_var_1 )} -happyReduce_192 = happySpecReduce_0 63# happyReduction_192 -happyReduction_192 = happyIn70 +happyReduce_198 = happySpecReduce_0 65# happyReduction_198 +happyReduction_198 = happyIn72 ([] ) -happyReduce_193 = happySpecReduce_1 63# happyReduction_193 -happyReduction_193 happy_x_1 - = case happyOut68 happy_x_1 of { happy_var_1 -> - happyIn70 - ((:[]) happy_var_1 - )} - -happyReduce_194 = happySpecReduce_3 63# happyReduction_194 -happyReduction_194 happy_x_3 - happy_x_2 - happy_x_1 - = case happyOut68 happy_x_1 of { happy_var_1 -> - case happyOut70 happy_x_3 of { happy_var_3 -> - happyIn70 - ((:) happy_var_1 happy_var_3 - )}} - -happyReduce_195 = happySpecReduce_0 64# happyReduction_195 -happyReduction_195 = happyIn71 - ([] - ) - -happyReduce_196 = happySpecReduce_1 64# happyReduction_196 -happyReduction_196 happy_x_1 - = case happyOut69 happy_x_1 of { happy_var_1 -> - happyIn71 - ((:[]) happy_var_1 - )} - -happyReduce_197 = happySpecReduce_3 64# happyReduction_197 -happyReduction_197 happy_x_3 - happy_x_2 - happy_x_1 - = case happyOut69 happy_x_1 of { happy_var_1 -> - case happyOut71 happy_x_3 of { happy_var_3 -> - happyIn71 - ((:) happy_var_1 happy_var_3 - )}} - -happyReduce_198 = happySpecReduce_3 65# happyReduction_198 -happyReduction_198 happy_x_3 - happy_x_2 - happy_x_1 - = case happyOut64 happy_x_1 of { happy_var_1 -> - case happyOut54 happy_x_3 of { happy_var_3 -> - happyIn72 - (Case happy_var_1 happy_var_3 - )}} - -happyReduce_199 = happySpecReduce_1 66# happyReduction_199 +happyReduce_199 = happySpecReduce_1 65# happyReduction_199 happyReduction_199 happy_x_1 - = case happyOut72 happy_x_1 of { happy_var_1 -> + = case happyOut70 happy_x_1 of { happy_var_1 -> + happyIn72 + ((:[]) happy_var_1 + )} + +happyReduce_200 = happySpecReduce_3 65# happyReduction_200 +happyReduction_200 happy_x_3 + happy_x_2 + happy_x_1 + = case happyOut70 happy_x_1 of { happy_var_1 -> + case happyOut72 happy_x_3 of { happy_var_3 -> + happyIn72 + ((:) happy_var_1 happy_var_3 + )}} + +happyReduce_201 = happySpecReduce_0 66# happyReduction_201 +happyReduction_201 = happyIn73 + ([] + ) + +happyReduce_202 = happySpecReduce_1 66# happyReduction_202 +happyReduction_202 happy_x_1 + = case happyOut71 happy_x_1 of { happy_var_1 -> happyIn73 ((:[]) happy_var_1 )} -happyReduce_200 = happySpecReduce_3 66# happyReduction_200 -happyReduction_200 happy_x_3 +happyReduce_203 = happySpecReduce_3 66# happyReduction_203 +happyReduction_203 happy_x_3 happy_x_2 happy_x_1 - = case happyOut72 happy_x_1 of { happy_var_1 -> + = case happyOut71 happy_x_1 of { happy_var_1 -> case happyOut73 happy_x_3 of { happy_var_3 -> happyIn73 ((:) happy_var_1 happy_var_3 )}} -happyReduce_201 = happySpecReduce_3 67# happyReduction_201 -happyReduction_201 happy_x_3 +happyReduce_204 = happySpecReduce_3 67# happyReduction_204 +happyReduction_204 happy_x_3 happy_x_2 happy_x_1 - = case happyOut63 happy_x_1 of { happy_var_1 -> - case happyOut54 happy_x_3 of { happy_var_3 -> + = case happyOut66 happy_x_1 of { happy_var_1 -> + case happyOut56 happy_x_3 of { happy_var_3 -> happyIn74 - (Equ happy_var_1 happy_var_3 + (Case happy_var_1 happy_var_3 )}} -happyReduce_202 = happySpecReduce_0 68# happyReduction_202 -happyReduction_202 = happyIn75 - ([] - ) - -happyReduce_203 = happySpecReduce_1 68# happyReduction_203 -happyReduction_203 happy_x_1 +happyReduce_205 = happySpecReduce_1 68# happyReduction_205 +happyReduction_205 happy_x_1 = case happyOut74 happy_x_1 of { happy_var_1 -> happyIn75 ((:[]) happy_var_1 )} -happyReduce_204 = happySpecReduce_3 68# happyReduction_204 -happyReduction_204 happy_x_3 +happyReduce_206 = happySpecReduce_3 68# happyReduction_206 +happyReduction_206 happy_x_3 happy_x_2 happy_x_1 = case happyOut74 happy_x_1 of { happy_var_1 -> @@ -2487,30 +2522,30 @@ happyReduction_204 happy_x_3 ((:) happy_var_1 happy_var_3 )}} -happyReduce_205 = happySpecReduce_3 69# happyReduction_205 -happyReduction_205 happy_x_3 +happyReduce_207 = happySpecReduce_3 69# happyReduction_207 +happyReduction_207 happy_x_3 happy_x_2 happy_x_1 - = case happyOut54 happy_x_1 of { happy_var_1 -> - case happyOut54 happy_x_3 of { happy_var_3 -> + = case happyOut65 happy_x_1 of { happy_var_1 -> + case happyOut56 happy_x_3 of { happy_var_3 -> happyIn76 - (Alt happy_var_1 happy_var_3 + (Equ happy_var_1 happy_var_3 )}} -happyReduce_206 = happySpecReduce_0 70# happyReduction_206 -happyReduction_206 = happyIn77 +happyReduce_208 = happySpecReduce_0 70# happyReduction_208 +happyReduction_208 = happyIn77 ([] ) -happyReduce_207 = happySpecReduce_1 70# happyReduction_207 -happyReduction_207 happy_x_1 +happyReduce_209 = happySpecReduce_1 70# happyReduction_209 +happyReduction_209 happy_x_1 = case happyOut76 happy_x_1 of { happy_var_1 -> happyIn77 ((:[]) happy_var_1 )} -happyReduce_208 = happySpecReduce_3 70# happyReduction_208 -happyReduction_208 happy_x_3 +happyReduce_210 = happySpecReduce_3 70# happyReduction_210 +happyReduction_210 happy_x_3 happy_x_2 happy_x_1 = case happyOut76 happy_x_1 of { happy_var_1 -> @@ -2519,129 +2554,161 @@ happyReduction_208 happy_x_3 ((:) happy_var_1 happy_var_3 )}} -happyReduce_209 = happyReduce 5# 71# happyReduction_209 -happyReduction_209 (happy_x_5 `HappyStk` +happyReduce_211 = happySpecReduce_3 71# happyReduction_211 +happyReduction_211 happy_x_3 + happy_x_2 + happy_x_1 + = case happyOut56 happy_x_1 of { happy_var_1 -> + case happyOut56 happy_x_3 of { happy_var_3 -> + happyIn78 + (Alt happy_var_1 happy_var_3 + )}} + +happyReduce_212 = happySpecReduce_0 72# happyReduction_212 +happyReduction_212 = happyIn79 + ([] + ) + +happyReduce_213 = happySpecReduce_1 72# happyReduction_213 +happyReduction_213 happy_x_1 + = case happyOut78 happy_x_1 of { happy_var_1 -> + happyIn79 + ((:[]) happy_var_1 + )} + +happyReduce_214 = happySpecReduce_3 72# happyReduction_214 +happyReduction_214 happy_x_3 + happy_x_2 + happy_x_1 + = case happyOut78 happy_x_1 of { happy_var_1 -> + case happyOut79 happy_x_3 of { happy_var_3 -> + happyIn79 + ((:) happy_var_1 happy_var_3 + )}} + +happyReduce_215 = happyReduce 5# 73# happyReduction_215 +happyReduction_215 (happy_x_5 `HappyStk` happy_x_4 `HappyStk` happy_x_3 `HappyStk` happy_x_2 `HappyStk` happy_x_1 `HappyStk` happyRest) - = case happyOut66 happy_x_2 of { happy_var_2 -> - case happyOut54 happy_x_4 of { happy_var_4 -> - happyIn78 + = case happyOut68 happy_x_2 of { happy_var_2 -> + case happyOut56 happy_x_4 of { happy_var_4 -> + happyIn80 (DDDec happy_var_2 happy_var_4 ) `HappyStk` happyRest}} -happyReduce_210 = happySpecReduce_1 71# happyReduction_210 -happyReduction_210 happy_x_1 - = case happyOut50 happy_x_1 of { happy_var_1 -> - happyIn78 +happyReduce_216 = happySpecReduce_1 73# happyReduction_216 +happyReduction_216 happy_x_1 + = case happyOut52 happy_x_1 of { happy_var_1 -> + happyIn80 (DDExp happy_var_1 )} -happyReduce_211 = happySpecReduce_0 72# happyReduction_211 -happyReduction_211 = happyIn79 +happyReduce_217 = happySpecReduce_0 74# happyReduction_217 +happyReduction_217 = happyIn81 ([] ) -happyReduce_212 = happySpecReduce_2 72# happyReduction_212 -happyReduction_212 happy_x_2 - happy_x_1 - = case happyOut79 happy_x_1 of { happy_var_1 -> - case happyOut78 happy_x_2 of { happy_var_2 -> - happyIn79 - (flip (:) happy_var_1 happy_var_2 - )}} - -happyReduce_213 = happySpecReduce_2 73# happyReduction_213 -happyReduction_213 happy_x_2 - happy_x_1 - = case happyOut81 happy_x_1 of { happy_var_1 -> - case happyOut21 happy_x_2 of { happy_var_2 -> - happyIn80 - (OldGr happy_var_1 (reverse happy_var_2) - )}} - -happyReduce_214 = happySpecReduce_0 74# happyReduction_214 -happyReduction_214 = happyIn81 - (NoIncl - ) - -happyReduce_215 = happySpecReduce_2 74# happyReduction_215 -happyReduction_215 happy_x_2 - happy_x_1 - = case happyOut83 happy_x_2 of { happy_var_2 -> - happyIn81 - (Incl happy_var_2 - )} - -happyReduce_216 = happySpecReduce_1 75# happyReduction_216 -happyReduction_216 happy_x_1 - = case happyOut8 happy_x_1 of { happy_var_1 -> - happyIn82 - (FString happy_var_1 - )} - -happyReduce_217 = happySpecReduce_1 75# happyReduction_217 -happyReduction_217 happy_x_1 - = case happyOut7 happy_x_1 of { happy_var_1 -> - happyIn82 - (FIdent happy_var_1 - )} - -happyReduce_218 = happySpecReduce_2 75# happyReduction_218 +happyReduce_218 = happySpecReduce_2 74# happyReduction_218 happyReduction_218 happy_x_2 happy_x_1 - = case happyOut82 happy_x_2 of { happy_var_2 -> - happyIn82 - (FSlash happy_var_2 - )} + = case happyOut81 happy_x_1 of { happy_var_1 -> + case happyOut80 happy_x_2 of { happy_var_2 -> + happyIn81 + (flip (:) happy_var_1 happy_var_2 + )}} happyReduce_219 = happySpecReduce_2 75# happyReduction_219 happyReduction_219 happy_x_2 happy_x_1 - = case happyOut82 happy_x_2 of { happy_var_2 -> + = case happyOut83 happy_x_1 of { happy_var_1 -> + case happyOut21 happy_x_2 of { happy_var_2 -> happyIn82 + (OldGr happy_var_1 (reverse happy_var_2) + )}} + +happyReduce_220 = happySpecReduce_0 76# happyReduction_220 +happyReduction_220 = happyIn83 + (NoIncl + ) + +happyReduce_221 = happySpecReduce_2 76# happyReduction_221 +happyReduction_221 happy_x_2 + happy_x_1 + = case happyOut85 happy_x_2 of { happy_var_2 -> + happyIn83 + (Incl happy_var_2 + )} + +happyReduce_222 = happySpecReduce_1 77# happyReduction_222 +happyReduction_222 happy_x_1 + = case happyOut8 happy_x_1 of { happy_var_1 -> + happyIn84 + (FString happy_var_1 + )} + +happyReduce_223 = happySpecReduce_1 77# happyReduction_223 +happyReduction_223 happy_x_1 + = case happyOut7 happy_x_1 of { happy_var_1 -> + happyIn84 + (FIdent happy_var_1 + )} + +happyReduce_224 = happySpecReduce_2 77# happyReduction_224 +happyReduction_224 happy_x_2 + happy_x_1 + = case happyOut84 happy_x_2 of { happy_var_2 -> + happyIn84 + (FSlash happy_var_2 + )} + +happyReduce_225 = happySpecReduce_2 77# happyReduction_225 +happyReduction_225 happy_x_2 + happy_x_1 + = case happyOut84 happy_x_2 of { happy_var_2 -> + happyIn84 (FDot happy_var_2 )} -happyReduce_220 = happySpecReduce_2 75# happyReduction_220 -happyReduction_220 happy_x_2 +happyReduce_226 = happySpecReduce_2 77# happyReduction_226 +happyReduction_226 happy_x_2 happy_x_1 - = case happyOut82 happy_x_2 of { happy_var_2 -> - happyIn82 + = case happyOut84 happy_x_2 of { happy_var_2 -> + happyIn84 (FMinus happy_var_2 )} -happyReduce_221 = happySpecReduce_2 75# happyReduction_221 -happyReduction_221 happy_x_2 +happyReduce_227 = happySpecReduce_2 77# happyReduction_227 +happyReduction_227 happy_x_2 happy_x_1 = case happyOut7 happy_x_1 of { happy_var_1 -> - case happyOut82 happy_x_2 of { happy_var_2 -> - happyIn82 + case happyOut84 happy_x_2 of { happy_var_2 -> + happyIn84 (FAddId happy_var_1 happy_var_2 )}} -happyReduce_222 = happySpecReduce_2 76# happyReduction_222 -happyReduction_222 happy_x_2 +happyReduce_228 = happySpecReduce_2 78# happyReduction_228 +happyReduction_228 happy_x_2 happy_x_1 - = case happyOut82 happy_x_1 of { happy_var_1 -> - happyIn83 + = case happyOut84 happy_x_1 of { happy_var_1 -> + happyIn85 ((:[]) happy_var_1 )} -happyReduce_223 = happySpecReduce_3 76# happyReduction_223 -happyReduction_223 happy_x_3 +happyReduce_229 = happySpecReduce_3 78# happyReduction_229 +happyReduction_229 happy_x_3 happy_x_2 happy_x_1 - = case happyOut82 happy_x_1 of { happy_var_1 -> - case happyOut83 happy_x_3 of { happy_var_3 -> - happyIn83 + = case happyOut84 happy_x_1 of { happy_var_1 -> + case happyOut85 happy_x_3 of { happy_var_3 -> + happyIn85 ((:) happy_var_1 happy_var_3 )}} happyNewToken action sts stk [] = - happyDoAction 76# (error "reading EOF!") action sts stk [] + happyDoAction 77# (error "reading EOF!") action sts stk [] happyNewToken action sts stk (tk:tks) = let cont i = happyDoAction i tk action sts stk tks in @@ -2656,10 +2723,10 @@ happyNewToken action sts stk (tk:tks) = PT _ (TS "->") -> cont 8#; PT _ (TS "**") -> cont 9#; PT _ (TS ",") -> cont 10#; - PT _ (TS ".") -> cont 11#; - PT _ (TS "|") -> cont 12#; - PT _ (TS "[") -> cont 13#; - PT _ (TS "]") -> cont 14#; + PT _ (TS "[") -> cont 11#; + PT _ (TS "]") -> cont 12#; + PT _ (TS ".") -> cont 13#; + PT _ (TS "|") -> cont 14#; PT _ (TS "?") -> cont 15#; PT _ (TS "<") -> cont 16#; PT _ (TS ">") -> cont 17#; @@ -2713,14 +2780,15 @@ happyNewToken action sts stk (tk:tks) = PT _ (TS "strs") -> cont 65#; PT _ (TS "table") -> cont 66#; PT _ (TS "transfer") -> cont 67#; - PT _ (TS "variants") -> cont 68#; - PT _ (TS "where") -> cont 69#; - PT _ (TS "with") -> cont 70#; - PT _ (TV happy_dollar_dollar) -> cont 71#; - PT _ (TL happy_dollar_dollar) -> cont 72#; - PT _ (TI happy_dollar_dollar) -> cont 73#; - PT _ (T_LString happy_dollar_dollar) -> cont 74#; - _ -> cont 75#; + PT _ (TS "union") -> cont 68#; + PT _ (TS "variants") -> cont 69#; + PT _ (TS "where") -> cont 70#; + PT _ (TS "with") -> cont 71#; + PT _ (TV happy_dollar_dollar) -> cont 72#; + PT _ (TL happy_dollar_dollar) -> cont 73#; + PT _ (TI happy_dollar_dollar) -> cont 74#; + PT _ (T_LString happy_dollar_dollar) -> cont 75#; + _ -> cont 76#; _ -> happyError tks } @@ -2735,9 +2803,9 @@ pGrammar tks = happyThen (happyParse 0# tks) (\x -> happyReturn (happyOut11 x)) pModDef tks = happyThen (happyParse 1# tks) (\x -> happyReturn (happyOut13 x)) -pOldGrammar tks = happyThen (happyParse 2# tks) (\x -> happyReturn (happyOut80 x)) +pOldGrammar tks = happyThen (happyParse 2# tks) (\x -> happyReturn (happyOut82 x)) -pExp tks = happyThen (happyParse 3# tks) (\x -> happyReturn (happyOut54 x)) +pExp tks = happyThen (happyParse 3# tks) (\x -> happyReturn (happyOut56 x)) happySeq = happyDontSeq @@ -2753,7 +2821,7 @@ happyError ts = myLexer = tokens {-# LINE 1 "GenericTemplate.hs" #-} --- $Id: ParGF.hs,v 1.1 2003/11/11 16:44:26 aarne Exp $ +-- $Id: ParGF.hs,v 1.2 2004/02/27 08:43:52 aarne Exp $ diff --git a/src/GF/Source/PrintGF.hs b/src/GF/Source/PrintGF.hs index aa5909e33..b06e09a1b 100644 --- a/src/GF/Source/PrintGF.hs +++ b/src/GF/Source/PrintGF.hs @@ -134,7 +134,7 @@ instance Print ModBody where MBody extend opens topdefs -> prPrec i 0 (concat [prt 0 extend , prt 0 opens , ["{"] , prt 0 topdefs , ["}"]]) MWith id opens -> prPrec i 0 (concat [prt 0 id , ["with"] , prt 0 opens]) MReuse id -> prPrec i 0 (concat [["reuse"] , prt 0 id]) - + MUnion includeds -> prPrec i 0 (concat [["union"] , prt 0 includeds]) instance Print Extend where prt i e = case e of @@ -171,6 +171,15 @@ instance Print QualOpen where QOIncompl -> prPrec i 0 (concat [["incomplete"]]) QOInterface -> prPrec i 0 (concat [["interface"]]) +instance Print Included where + prt i e = case e of + IAll id -> prPrec i 0 (concat [prt 0 id]) + ISome id ids -> prPrec i 0 (concat [prt 0 id , ["["] , prt 0 ids , ["]"]]) + + prtList es = case es of + [] -> (concat []) + [x] -> (concat [prt 0 x]) + x:xs -> (concat [prt 0 x , [","] , prt 0 xs]) instance Print Def where prt i e = case e of diff --git a/src/GF/Source/SkelGF.hs b/src/GF/Source/SkelGF.hs index 11e5d10a6..0a1924359 100644 --- a/src/GF/Source/SkelGF.hs +++ b/src/GF/Source/SkelGF.hs @@ -61,6 +61,7 @@ transModBody x = case x of MBody extend opens topdefs -> failure x MWith id opens -> failure x MReuse id -> failure x + MUnion includeds -> failure x transExtend :: Extend -> Result @@ -95,6 +96,12 @@ transQualOpen x = case x of QOInterface -> failure x +transIncluded :: Included -> Result +transIncluded x = case x of + IAll id -> failure x + ISome id ids -> failure x + + transDef :: Def -> Result transDef x = case x of DDecl ids exp -> failure x @@ -209,6 +216,8 @@ transExp x = case x of EConcat exp0 exp -> failure x EGlue exp0 exp -> failure x ELet locdefs exp -> failure x + ELetb locdefs exp -> failure x + EWhere exp locdefs -> failure x EEqs equations -> failure x ELString lstring -> failure x ELin id -> failure x diff --git a/src/GF/Source/SourceToGrammar.hs b/src/GF/Source/SourceToGrammar.hs index 5e085b199..9834fb0cf 100644 --- a/src/GF/Source/SourceToGrammar.hs +++ b/src/GF/Source/SourceToGrammar.hs @@ -76,6 +76,11 @@ transModDef x = case x of return (id',GM.ModMod (GM.Module mtyp' mstat' flags' extends' opens' defs')) MReuse _ -> do return (id', GM.ModMod (GM.Module mtyp' mstat' [] Nothing [] NT)) + MUnion imps -> do + imps' <- mapM transIncluded imps + return (id', + GM.ModMod (GM.Module (GM.MTUnion mtyp' imps') mstat' [] Nothing [] NT)) + MWith m opens -> do m' <- transIdent m opens' <- mapM transOpen opens @@ -154,6 +159,12 @@ transQualOpen x = case x of QOInterface -> return GM.OQInterface QOIncompl -> return GM.OQIncomplete +transIncluded :: Included -> Err (Ident,[Ident]) +transIncluded x = case x of + IAll i -> liftM (flip (curry id) []) $ transIdent i + ISome i ids -> liftM2 (curry id) (transIdent i) (mapM transIdent ids) + + transAbsDef :: TopDef -> Err (Either [(Ident, G.Info)] [GO.Option]) transAbsDef x = case x of DefCat catdefs -> do diff --git a/src/Today.hs b/src/Today.hs index 111c0f8bf..521ca1186 100644 --- a/src/Today.hs +++ b/src/Today.hs @@ -1 +1 @@ -module Today where today = "Thu Feb 26 16:08:20 CET 2004" +module Today where today = "Fri Feb 27 09:29:09 CET 2004"