{-# OPTIONS_GHC -w #-}
{-# OPTIONS -fglasgow-exts -cpp #-}
--
-- Ivory parser.
--
-- Copyright (C) 2014, Galois, Inc.
-- All rights reserved.
--

-- TODO
-- types for allocs

module Ivory.Language.Syntax.Concrete.Parser where

import Prelude ()
import Prelude.Compat

import Ivory.Language.Syntax.Concrete.ParseCore
import Ivory.Language.Syntax.Concrete.ParseAST
import Ivory.Language.Syntax.Concrete.Lexer
import Ivory.Language.Syntax.Concrete.Lexeme ( Token(..), Lexeme )
import Ivory.Language.Syntax.Concrete.Location

import Data.Monoid.Compat
import qualified Data.Array as Happy_Data_Array
import qualified GHC.Exts as Happy_GHC_Exts
import Control.Applicative(Applicative(..))
import Control.Monad (ap)

-- parser produced by Happy Version 1.19.5

newtype HappyAbsSyn  = HappyAbsSyn HappyAny
#if __GLASGOW_HASKELL__ >= 607
type HappyAny = Happy_GHC_Exts.Any
#else
type HappyAny = forall a . a
#endif
happyIn5 :: ([GlobalSym]) -> (HappyAbsSyn )
happyIn5 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyIn5 #-}
happyOut5 :: (HappyAbsSyn ) -> ([GlobalSym])
happyOut5 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyOut5 #-}
happyIn6 :: (IncludeDef) -> (HappyAbsSyn )
happyIn6 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyIn6 #-}
happyOut6 :: (HappyAbsSyn ) -> (IncludeDef)
happyOut6 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyOut6 #-}
happyIn7 :: (ConstDef) -> (HappyAbsSyn )
happyIn7 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyIn7 #-}
happyOut7 :: (HappyAbsSyn ) -> (ConstDef)
happyOut7 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyOut7 #-}
happyIn8 :: (ProcDef) -> (HappyAbsSyn )
happyIn8 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyIn8 #-}
happyOut8 :: (HappyAbsSyn ) -> (ProcDef)
happyOut8 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyOut8 #-}
happyIn9 :: (IncludeProc) -> (HappyAbsSyn )
happyIn9 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyIn9 #-}
happyOut9 :: (HappyAbsSyn ) -> (IncludeProc)
happyOut9 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyOut9 #-}
happyIn10 :: (Extern) -> (HappyAbsSyn )
happyIn10 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyIn10 #-}
happyOut10 :: (HappyAbsSyn ) -> (Extern)
happyOut10 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyOut10 #-}
happyIn11 :: ((Type, Var)) -> (HappyAbsSyn )
happyIn11 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyIn11 #-}
happyOut11 :: (HappyAbsSyn ) -> ((Type, Var))
happyOut11 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyOut11 #-}
happyIn12 :: ([(Type, Var)]) -> (HappyAbsSyn )
happyIn12 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyIn12 #-}
happyOut12 :: (HappyAbsSyn ) -> ([(Type, Var)])
happyOut12 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyOut12 #-}
happyIn13 :: ([PrePost]) -> (HappyAbsSyn )
happyIn13 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyIn13 #-}
happyOut13 :: (HappyAbsSyn ) -> ([PrePost])
happyOut13 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyOut13 #-}
happyIn14 :: ([PrePost]) -> (HappyAbsSyn )
happyIn14 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyIn14 #-}
happyOut14 :: (HappyAbsSyn ) -> ([PrePost])
happyOut14 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyOut14 #-}
happyIn15 :: (PrePost) -> (HappyAbsSyn )
happyIn15 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyIn15 #-}
happyOut15 :: (HappyAbsSyn ) -> (PrePost)
happyOut15 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyOut15 #-}
happyIn16 :: (Stmt) -> (HappyAbsSyn )
happyIn16 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyIn16 #-}
happyOut16 :: (HappyAbsSyn ) -> (Stmt)
happyOut16 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyOut16 #-}
happyIn17 :: (Located (String, [Exp])) -> (HappyAbsSyn )
happyIn17 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyIn17 #-}
happyOut17 :: (HappyAbsSyn ) -> (Located (String, [Exp]))
happyOut17 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyOut17 #-}
happyIn18 :: (Stmt) -> (HappyAbsSyn )
happyIn18 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyIn18 #-}
happyOut18 :: (HappyAbsSyn ) -> (Stmt)
happyOut18 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyOut18 #-}
happyIn19 :: ([Stmt]) -> (HappyAbsSyn )
happyIn19 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyIn19 #-}
happyOut19 :: (HappyAbsSyn ) -> ([Stmt])
happyOut19 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyOut19 #-}
happyIn20 :: ([Exp]) -> (HappyAbsSyn )
happyIn20 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyIn20 #-}
happyOut20 :: (HappyAbsSyn ) -> ([Exp])
happyOut20 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyOut20 #-}
happyIn21 :: ([Exp]) -> (HappyAbsSyn )
happyIn21 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyIn21 #-}
happyOut21 :: (HappyAbsSyn ) -> ([Exp])
happyOut21 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyOut21 #-}
happyIn22 :: (StructInit) -> (HappyAbsSyn )
happyIn22 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyIn22 #-}
happyOut22 :: (HappyAbsSyn ) -> (StructInit)
happyOut22 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyOut22 #-}
happyIn23 :: ([(FieldNm, Exp)]) -> (HappyAbsSyn )
happyIn23 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyIn23 #-}
happyOut23 :: (HappyAbsSyn ) -> ([(FieldNm, Exp)])
happyOut23 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyOut23 #-}
happyIn24 :: ((FieldNm, Exp)) -> (HappyAbsSyn )
happyIn24 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyIn24 #-}
happyOut24 :: (HappyAbsSyn ) -> ((FieldNm, Exp))
happyOut24 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyOut24 #-}
happyIn25 :: (Exp) -> (HappyAbsSyn )
happyIn25 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyIn25 #-}
happyOut25 :: (HappyAbsSyn ) -> (Exp)
happyOut25 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyOut25 #-}
happyIn26 :: (Exp) -> (HappyAbsSyn )
happyIn26 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyIn26 #-}
happyOut26 :: (HappyAbsSyn ) -> (Exp)
happyOut26 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyOut26 #-}
happyIn27 :: (TypeDef) -> (HappyAbsSyn )
happyIn27 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyIn27 #-}
happyOut27 :: (HappyAbsSyn ) -> (TypeDef)
happyOut27 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyOut27 #-}
happyIn28 :: (Type) -> (HappyAbsSyn )
happyIn28 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyIn28 #-}
happyOut28 :: (HappyAbsSyn ) -> (Type)
happyOut28 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyOut28 #-}
happyIn29 :: (Type) -> (HappyAbsSyn )
happyIn29 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyIn29 #-}
happyOut29 :: (HappyAbsSyn ) -> (Type)
happyOut29 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyOut29 #-}
happyIn30 :: (Located (Either String Integer)) -> (HappyAbsSyn )
happyIn30 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyIn30 #-}
happyOut30 :: (HappyAbsSyn ) -> (Located (Either String Integer))
happyOut30 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyOut30 #-}
happyIn31 :: (Type) -> (HappyAbsSyn )
happyIn31 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyIn31 #-}
happyOut31 :: (HappyAbsSyn ) -> (Type)
happyOut31 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyOut31 #-}
happyIn32 :: (Located Scope) -> (HappyAbsSyn )
happyIn32 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyIn32 #-}
happyOut32 :: (HappyAbsSyn ) -> (Located Scope)
happyOut32 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyOut32 #-}
happyIn33 :: (Type) -> (HappyAbsSyn )
happyIn33 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyIn33 #-}
happyOut33 :: (HappyAbsSyn ) -> (Type)
happyOut33 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyOut33 #-}
happyIn34 :: (Type) -> (HappyAbsSyn )
happyIn34 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyIn34 #-}
happyOut34 :: (HappyAbsSyn ) -> (Type)
happyOut34 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyOut34 #-}
happyIn35 :: (Type) -> (HappyAbsSyn )
happyIn35 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyIn35 #-}
happyOut35 :: (HappyAbsSyn ) -> (Type)
happyOut35 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyOut35 #-}
happyIn36 :: (Located Scope) -> (HappyAbsSyn )
happyIn36 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyIn36 #-}
happyOut36 :: (HappyAbsSyn ) -> (Located Scope)
happyOut36 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyOut36 #-}
happyIn37 :: (BitTy) -> (HappyAbsSyn )
happyIn37 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyIn37 #-}
happyOut37 :: (HappyAbsSyn ) -> (BitTy)
happyOut37 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyOut37 #-}
happyIn38 :: (StructDef) -> (HappyAbsSyn )
happyIn38 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyIn38 #-}
happyOut38 :: (HappyAbsSyn ) -> (StructDef)
happyOut38 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyOut38 #-}
happyIn39 :: (Located String) -> (HappyAbsSyn )
happyIn39 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyIn39 #-}
happyOut39 :: (HappyAbsSyn ) -> (Located String)
happyOut39 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyOut39 #-}
happyIn40 :: (Field) -> (HappyAbsSyn )
happyIn40 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyIn40 #-}
happyOut40 :: (HappyAbsSyn ) -> (Field)
happyOut40 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyOut40 #-}
happyIn41 :: ([Field]) -> (HappyAbsSyn )
happyIn41 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyIn41 #-}
happyOut41 :: (HappyAbsSyn ) -> ([Field])
happyOut41 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyOut41 #-}
happyIn42 :: (BitDataDef) -> (HappyAbsSyn )
happyIn42 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyIn42 #-}
happyOut42 :: (HappyAbsSyn ) -> (BitDataDef)
happyOut42 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyOut42 #-}
happyIn43 :: ([Constr]) -> (HappyAbsSyn )
happyIn43 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyIn43 #-}
happyOut43 :: (HappyAbsSyn ) -> ([Constr])
happyOut43 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyOut43 #-}
happyIn44 :: (Constr) -> (HappyAbsSyn )
happyIn44 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyIn44 #-}
happyOut44 :: (HappyAbsSyn ) -> (Constr)
happyOut44 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyOut44 #-}
happyIn45 :: ([BitField]) -> (HappyAbsSyn )
happyIn45 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyIn45 #-}
happyOut45 :: (HappyAbsSyn ) -> ([BitField])
happyOut45 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyOut45 #-}
happyIn46 :: ([BitField]) -> (HappyAbsSyn )
happyIn46 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyIn46 #-}
happyOut46 :: (HappyAbsSyn ) -> ([BitField])
happyOut46 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyOut46 #-}
happyIn47 :: (BitField) -> (HappyAbsSyn )
happyIn47 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyIn47 #-}
happyOut47 :: (HappyAbsSyn ) -> (BitField)
happyOut47 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyOut47 #-}
happyIn48 :: ([LayoutItem]) -> (HappyAbsSyn )
happyIn48 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyIn48 #-}
happyOut48 :: (HappyAbsSyn ) -> ([LayoutItem])
happyOut48 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyOut48 #-}
happyIn49 :: ([LayoutItem]) -> (HappyAbsSyn )
happyIn49 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyIn49 #-}
happyOut49 :: (HappyAbsSyn ) -> ([LayoutItem])
happyOut49 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyOut49 #-}
happyIn50 :: (LayoutItem) -> (HappyAbsSyn )
happyIn50 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyIn50 #-}
happyOut50 :: (HappyAbsSyn ) -> (LayoutItem)
happyOut50 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyOut50 #-}
happyIn51 :: (BitLiteral) -> (HappyAbsSyn )
happyIn51 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyIn51 #-}
happyOut51 :: (HappyAbsSyn ) -> (BitLiteral)
happyOut51 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyOut51 #-}
happyIn52 :: (Located String) -> (HappyAbsSyn )
happyIn52 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyIn52 #-}
happyOut52 :: (HappyAbsSyn ) -> (Located String)
happyOut52 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyOut52 #-}
happyIn53 :: (Located String) -> (HappyAbsSyn )
happyIn53 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyIn53 #-}
happyOut53 :: (HappyAbsSyn ) -> (Located String)
happyOut53 x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyOut53 #-}
happyInTok :: (Lexeme) -> (HappyAbsSyn )
happyInTok x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyInTok #-}
happyOutTok :: (HappyAbsSyn ) -> (Lexeme)
happyOutTok x = Happy_GHC_Exts.unsafeCoerce# x
{-# INLINE happyOutTok #-}


happyActOffsets :: HappyAddr
happyActOffsets = HappyA# "\x00\x00\x00\x00\x00\x00\x46\x00\xff\xff\xfd\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x15\x00\x00\x00\x00\x00\x08\x04\x00\x00\x00\x00\x02\x04\x00\x00\x00\x00\xfe\x03\x1f\x00\x55\x01\x55\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\x3b\x04\x1a\x02\xb7\x03\xb3\x03\x29\x04\x18\x02\xc9\x03\x18\x02\x1d\x04\xbf\x03\x00\x00\x00\x00\xf6\xff\xcd\x03\x2e\x03\x2e\x03\x2e\x03\x55\x01\x2e\x03\x18\x00\x2e\x03\x18\x02\x18\x02\x2e\x03\x2e\x03\x2e\x03\x2e\x03\xc2\x03\x00\x00\x18\x02\xb5\x03\x00\x00\x00\x00\x09\x02\x00\x00\xb5\x03\x00\x00\x00\x00\x00\x00\x00\x00\xb5\x03\xb5\x03\xb5\x03\xb5\x03\xb5\x03\xb5\x03\xb5\x03\xb5\x03\xb5\x03\xb5\x03\xb5\x03\xb5\x03\xb5\x03\xb5\x03\xb5\x03\xb5\x03\xb5\x03\xb5\x03\xb5\x03\xb5\x03\xb5\x03\xb5\x03\xb5\x03\xb5\x03\xb5\x03\xb5\x03\xb5\x03\xb5\x03\xb5\x03\xb5\x03\xb5\x03\xb5\x03\xb5\x03\xb5\x03\xb5\x03\xb5\x03\xb5\x03\xb5\x03\xb5\x03\x2e\x03\x2e\x03\x18\x02\x2e\x03\x2e\x03\x2e\x03\xd2\x02\x09\x02\xd2\x02\xb0\x03\x18\x02\xe1\x03\xda\x00\x18\x02\xea\x05\x15\x00\xae\x03\x16\x02\x00\x00\xea\x05\xea\x05\xca\x05\xf6\x03\x00\x00\x2e\x03\xde\x03\x00\x00\xa4\x03\xa0\x03\x8a\x03\x14\x02\x00\x00\x94\x03\x10\x02\x10\x02\x72\x03\x00\x00\x00\x00\x00\x00\x1b\x00\x00\x00\x00\x00\x83\x03\x0e\x02\x2e\x03\x55\x01\xd4\xff\x42\x00\x69\x03\x00\x00\xb4\x03\x2e\x03\x28\x01\x59\x03\xaa\x05\x00\x00\x00\x00\x55\x01\x00\x00\x55\x01\xaf\x03\xb2\x03\x55\x01\x5f\x03\x0c\x02\x9d\x03\x16\x00\x00\x00\x7f\x00\xea\x05\x2e\x03\x2e\x03\x2e\x03\x2e\x03\x2e\x03\x2e\x03\x2e\x03\x2e\x03\x2e\x03\x2e\x03\x2e\x03\x2e\x03\x2e\x03\x2e\x03\x2e\x03\x2e\x03\x2e\x03\x2e\x03\x2e\x03\x2e\x03\x2e\x03\x00\x00\x2e\x03\x2e\x03\x00\x00\x2e\x03\x52\x03\x50\x03\x24\x03\x27\x03\x2e\x03\x00\x00\x00\x00\x22\x03\xd2\x02\x2e\x03\x2e\x03\x2e\x03\x21\x03\x8a\x05\x3c\x00\x3c\x00\x00\x00\x7d\x00\x3c\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\xd2\x02\x05\x04\x00\x00\x00\x00\x1f\x03\x00\x00\x00\x00\x4a\x06\x61\x02\xb2\x02\x81\x02\x1e\x03\x00\x00\xef\x03\xea\x05\x30\x03\x2d\x03\x2e\x03\x2e\x03\xea\x05\x00\x00\x6a\x05\xd9\x03\xc2\x06\xc2\x06\x0a\x06\x2a\x06\x8a\x06\x4a\x06\xa6\x06\xa6\x06\xa6\x06\xa6\x06\x3c\x00\x7d\x00\x7d\x00\x3c\x00\x3c\x00\x6a\x06\x6a\x06\x00\x00\x00\x00\x4a\x05\x00\x00\x2e\x03\x26\x03\x00\x00\x16\x00\x00\x00\x71\x03\x70\x03\x55\x01\x0c\x02\x43\x00\x00\x00\x00\x00\x15\x00\x00\x00\x84\x00\x2f\x03\x10\x03\x00\x00\x00\x00\x68\x00\x15\x00\x28\x05\x00\x00\x00\x00\x00\x00\x00\x00\xe9\x02\xe5\x00\x82\x01\x00\x00\xb8\x00\x00\x00\x00\x00\xe3\x02\x15\x00\x16\x00\x00\x00\xe8\x02\x0c\x02\xea\x05\x2e\x03\x3b\x03\x00\x00\xea\x05\xea\x05\xec\xff\xe4\x02\x00\x00\xc3\x03\x00\x00\xad\x03\x00\x00\x97\x03\x00\x00\x81\x03\x00\x00\x2e\x03\x00\x00\x00\x00\x0c\x02\xe2\x02\xea\x05\xee\x02\x00\x00\xe1\x02\x00\x00\x00\x00\x00\x00\x0c\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6e\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\x3c\x03\x4b\x01\x4b\x01\x42\x00\x9e\x01\x82\x01\x00\x00\x00\x00\x83\x02\x00\x00\x00\x00\x82\x01\x82\x01\x35\x03\x00\x00\x82\x01\x00\x00\xdf\x02\x00\x00\xdd\x02\xa3\x02\x06\x00\x64\x01\x00\x00\xd4\x00\x00\x00\xea\x02\xae\x00\x00\x00\x00\x00\x00\x00\x2e\x03\x00\x00\x64\x01\x24\x00\x00\x00\x61\x00\x00\x00\xf5\x02\xed\x02\x00\x00\xcb\x01\x55\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xb6\x02\x00\x00\x32\x01\x15\x00\x96\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x16\x00\x16\x00\x00\x00\x06\x00\x00\x00\x00\x00\xea\x05\x00\x00\x00\x00\x00\x00\xcb\x01\xb7\x02\x14\x00\xad\x02\xb5\x02\xb4\x02\x2e\x03\x2e\x03\x00\x00\x60\x02\x00\x00\x8b\x00\x00\x00\x3e\x00\x00\x00\x08\x05\xe8\x04\x00\x00\x00\x00\x00\x00\x00\x00"#

happyGotoOffsets :: HappyAddr
happyGotoOffsets = HappyA# "\x07\x03\xf1\x02\xf0\x02\x44\x04\x47\x00\x44\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc6\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x2a\x00\x90\x06\x70\x06\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\x7d\x01\x00\x00\x00\x00\xc1\x02\xc0\x02\x00\x00\xbd\x02\xbb\x02\x00\x00\x00\x00\x00\x00\xda\x02\x00\x00\xfc\x04\xf9\x04\xf7\x04\x50\x06\xf5\x04\xb9\x02\xea\x04\xb8\x02\x4e\x02\xe6\x04\xe3\x04\xd8\x04\xd5\x04\x00\x00\x00\x00\x41\x02\xd7\x02\xd5\x02\x00\x00\xd3\x04\x00\x00\xd3\x02\x00\x00\x00\x00\x00\x00\x00\x00\xd0\x02\xcf\x02\xce\x02\xcd\x02\xbf\x02\xb3\x02\xb0\x02\xaf\x02\xae\x02\x9f\x02\x95\x02\x93\x02\x92\x02\x91\x02\x90\x02\x8f\x02\x80\x02\x7c\x02\x7a\x02\x75\x02\x71\x02\x70\x02\x6f\x02\x6d\x02\x6c\x02\x6a\x02\x69\x02\x68\x02\x67\x02\x66\x02\x63\x02\x62\x02\x5b\x02\x5a\x02\x58\x02\x47\x02\x3d\x02\x3b\x02\x12\x02\xd1\x04\xce\x04\xf1\x01\xc4\x04\xc2\x04\xbf\x04\xe7\x01\xb1\x04\xdd\x01\x00\x00\xd5\x01\x00\x00\x00\x00\xb1\x01\x00\x00\xaf\x01\x00\x00\x4e\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x32\x00\xd0\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa2\x01\x00\x00\x00\x00\x3d\x01\x0c\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xaf\x04\x30\x06\x00\x00\x98\x01\x00\x00\x00\x00\x00\x00\xad\x04\x2e\x01\x00\x00\x00\x00\x00\x00\x00\x00\xd0\x05\x00\x00\xeb\x00\x00\x00\x00\x00\x90\x05\x00\x00\x9c\x01\x00\x00\xbf\x00\x00\x00\x00\x00\x00\x00\xa3\x04\xa0\x04\x9e\x04\x99\x04\x8f\x04\x8d\x04\x8b\x04\x81\x04\x7c\x04\x7a\x04\x77\x04\x6d\x04\x6b\x04\x69\x04\x5b\x04\x56\x04\x4c\x04\x42\x04\x3e\x04\x37\x04\x2a\x04\xa5\x01\x13\x03\xde\x02\x00\x00\xd9\x02\x00\x00\x00\x00\x00\x00\x00\x00\x6e\x02\x00\x00\x9d\x01\x00\x00\x7f\x01\x5f\x02\xc1\x01\xa3\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\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\x7a\x01\x47\x00\x00\x00\x00\x00\x00\x00\x00\x00\x96\x01\x00\x00\x7c\x01\x00\x00\x00\x00\x00\x00\x6c\x01\x47\x00\x00\x00\x00\x00\x00\x00\x6d\x01\x56\x01\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\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x50\x01\x00\x00\x00\x00\xad\x00\x00\x00\x00\x00\x00\x00\x4e\x05\x57\x01\x00\x00\x00\x00\x00\x00\x51\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x4d\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x86\x01\x51\x02\x00\x00\x5d\x03\x00\x00\x00\x00\x00\x00\x43\x01\x64\x00\x00\x00\x00\x00\x27\x00\x00\x00\x91\x00\x00\x00\x00\x00\x00\x00\x00\x00\x92\x00\x00\x00\x00\x00\x47\x00\x6a\x01\x47\x00\x66\x01\x47\x00\x00\x00\x47\x00\x00\x00\x12\x00\x00\x00\x00\x00\x2d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x46\x01\x00\x00\x00\x00\x00\x00\x34\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x89\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\x20\x01\x14\x01\xfb\x00\xe2\x00\x59\x01\x00\x00\xf9\x00\x47\x00\x00\x00\x00\x00\x13\x01\xec\x00\xbe\x00\x00\x00\xbc\x00\x00\x00\x00\x00\x00\x00\x00\x00\xbd\x00\x37\x01\x1d\x00\xb9\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x69\x00\x00\x00\x19\x00\x47\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xac\x01\x2e\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9f\x00\x00\x00\x7c\x00\xd8\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x63\x00\x2f\x00\x00\x00\xfb\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd2\x00\x00\x00\x4d\x00\x00\x00\x00\x00\x00\x00\x67\x00\x49\x00\x00\x00\x00\x00\x00\x00\xb4\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"#

happyDefActions :: HappyAddr
happyDefActions = HappyA# "\xf5\xff\xc6\xff\x00\x00\x4f\xff\x00\x00\x4f\xff\xf6\xff\xf7\xff\xfd\xff\xfc\xff\xfb\xff\xf8\xff\x00\x00\x6c\xff\x6b\xff\x00\x00\xfa\xff\xf9\xff\x50\xff\x6a\xff\x13\xff\x11\xff\x4f\xff\x4f\xff\x4f\xff\x68\xff\x67\xff\x66\xff\x65\xff\x63\xff\x62\xff\x61\xff\x60\xff\x5f\xff\x5e\xff\x5d\xff\x5c\xff\x5b\xff\x52\xff\x51\xff\x00\x00\x00\x00\x00\x00\x64\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd4\xff\xc7\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x4f\xff\xdf\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd2\xff\x00\x00\xd1\xff\xc6\xff\xac\xff\x00\x00\xad\xff\xb6\xff\xb9\xff\xb7\xff\xb8\xff\xb5\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\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\xde\xff\x00\x00\x50\xff\x00\x00\x64\xff\xe2\xff\xe3\xff\x00\x00\x00\x00\xd5\xff\xc1\xff\x00\x00\xc8\xff\x00\x00\x11\xff\x00\x00\x00\x00\xf4\xff\x00\x00\x00\x00\x00\x00\x54\xff\x2b\xff\x2c\xff\x5a\xff\x00\x00\x50\xff\x53\xff\x00\x00\x00\x00\x00\x00\x4f\xff\x00\x00\x00\x00\x00\x00\x58\xff\x00\x00\x00\x00\x4f\xff\x57\xff\x00\x00\x12\xff\x10\xff\x4f\xff\x69\xff\x4f\xff\x00\x00\x00\x00\x4f\xff\x00\x00\x00\x00\x00\x00\x00\x00\xd3\xff\x00\x00\xc2\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\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc6\xff\x00\x00\x00\x00\x54\xff\x00\x00\x00\x00\xdd\xff\x00\x00\x00\x00\x00\x00\xd7\xff\xc6\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xaa\xff\xa8\xff\xae\xff\xa9\xff\xb3\xff\x6f\xff\x70\xff\x71\xff\x72\xff\x6e\xff\x75\xff\x73\xff\x74\xff\x76\xff\x77\xff\x7a\xff\x78\xff\x79\xff\x7c\xff\x7d\xff\x7e\xff\x7f\xff\x80\xff\x81\xff\x82\xff\x83\xff\x84\xff\x85\xff\x86\xff\x87\xff\x88\xff\x89\xff\x8a\xff\x8b\xff\x8c\xff\x8d\xff\x8e\xff\x7b\xff\x8f\xff\x90\xff\x91\xff\x92\xff\x93\xff\x94\xff\xab\xff\x00\x00\x00\x00\xd0\xff\xca\xff\x00\x00\xb4\xff\xc6\xff\xa3\xff\xb6\xff\x99\xff\x98\xff\x00\x00\xc6\xff\x00\x00\xd6\xff\xdb\xff\xd9\xff\x00\x00\x00\x00\xe1\xff\xb2\xff\x00\x00\x00\x00\xa1\xff\xa2\xff\xa7\xff\xa6\xff\xa4\xff\xa5\xff\x9c\xff\x9b\xff\x9d\xff\x9e\xff\x96\xff\x99\xff\x9a\xff\x97\xff\x98\xff\x9f\xff\xa0\xff\xaf\xff\xb0\xff\x00\x00\xc5\xff\xc3\xff\x00\x00\x30\xff\x00\x00\x34\xff\x00\x00\x00\x00\x4f\xff\x00\x00\x00\x00\x2d\xff\x2e\xff\x00\x00\x26\xff\x00\x00\x50\xff\x56\xff\xf3\xff\xeb\xff\x00\x00\x00\x00\x00\x00\x59\xff\x55\xff\xf2\xff\xee\xff\x00\x00\x4f\xff\x00\x00\x2f\xff\x4f\xff\x29\xff\x6d\xff\x00\x00\x00\x00\x00\x00\x33\xff\x00\x00\x00\x00\xc4\xff\x00\x00\x00\x00\xb1\xff\xe0\xff\xdc\xff\x00\x00\x00\x00\xcf\xff\x00\x00\xc6\xff\x00\x00\xc6\xff\x00\x00\xcc\xff\x00\x00\xce\xff\xc1\xff\xc0\xff\xd8\xff\xbb\xff\x00\x00\x95\xff\x25\xff\x23\xff\x20\xff\x31\xff\x32\xff\xef\xff\x00\x00\x28\xff\x2a\xff\x4e\xff\x4d\xff\x4c\xff\x00\x00\x4a\xff\x49\xff\x48\xff\x47\xff\x46\xff\x44\xff\x43\xff\x42\xff\x41\xff\x40\xff\x3f\xff\x3e\xff\x3d\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xed\xff\xc6\xff\x00\x00\x37\xff\x38\xff\x00\x00\x00\x00\x00\x00\x35\xff\x00\x00\x3c\xff\x00\x00\x45\xff\x00\x00\x1a\xff\x00\x00\x00\x00\xc6\xff\x00\x00\xbc\xff\x00\x00\x00\x00\xcd\xff\xcb\xff\xda\xff\x00\x00\xbf\xff\xbd\xff\x00\x00\x24\xff\x00\x00\x1e\xff\x00\x00\x00\x00\x22\xff\x00\x00\x4f\xff\x4b\xff\x3b\xff\x36\xff\x3a\xff\x39\xff\xe8\xff\xf1\xff\x00\x00\x00\x00\x1b\xff\x18\xff\x15\xff\x17\xff\x16\xff\x14\xff\x00\x00\x00\x00\x21\xff\x00\x00\xc9\xff\xbe\xff\xba\xff\x1f\xff\x1d\xff\x1c\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe6\xff\x00\x00\xe9\xff\x4f\xff\x19\xff\x00\x00\xe7\xff\x00\x00\x00\x00\xe4\xff\xe5\xff\xf0\xff"#

happyCheck :: HappyAddr
happyCheck = HappyA# "\xff\xff\x04\x00\x05\x00\x04\x00\x05\x00\x19\x00\x07\x00\x2f\x00\x09\x00\x0a\x00\x04\x00\x05\x00\x0d\x00\x0e\x00\x0f\x00\x10\x00\x11\x00\x12\x00\x13\x00\x14\x00\x15\x00\x16\x00\x17\x00\x18\x00\x19\x00\x04\x00\x05\x00\x05\x00\x04\x00\x05\x00\x0c\x00\x0b\x00\x0c\x00\x4d\x00\x10\x00\x04\x00\x05\x00\x2a\x00\x14\x00\x15\x00\x04\x00\x05\x00\x2f\x00\x07\x00\x13\x00\x09\x00\x0a\x00\x5b\x00\x33\x00\x0d\x00\x0e\x00\x0f\x00\x10\x00\x11\x00\x12\x00\x13\x00\x14\x00\x15\x00\x16\x00\x17\x00\x18\x00\x19\x00\x0c\x00\x12\x00\x13\x00\x2f\x00\x10\x00\x01\x00\x27\x00\x1b\x00\x14\x00\x15\x00\x2f\x00\x5d\x00\x04\x00\x05\x00\x2f\x00\x26\x00\x27\x00\x20\x00\x53\x00\x5b\x00\x0b\x00\x0c\x00\x0d\x00\x0c\x00\x2f\x00\x0a\x00\x5b\x00\x2f\x00\x64\x00\x19\x00\x2f\x00\x14\x00\x15\x00\x30\x00\x48\x00\x2f\x00\x65\x00\x66\x00\x67\x00\x68\x00\x69\x00\x6a\x00\x6b\x00\x6c\x00\x6d\x00\x6e\x00\x6f\x00\x70\x00\x71\x00\x72\x00\x73\x00\x5b\x00\x5e\x00\x0c\x00\x5f\x00\x0c\x00\x2f\x00\x5c\x00\x2f\x00\x33\x00\x5f\x00\x14\x00\x15\x00\x14\x00\x15\x00\x82\x00\x44\x00\x45\x00\x5e\x00\x20\x00\x20\x00\x09\x00\x0a\x00\x8a\x00\x8b\x00\x8c\x00\x8d\x00\x8e\x00\x8f\x00\x90\x00\x91\x00\x04\x00\x05\x00\x72\x00\x73\x00\x30\x00\x30\x00\x98\x00\x2f\x00\x98\x00\x2f\x00\x53\x00\x5c\x00\x5f\x00\x96\x00\x0c\x00\x0c\x00\x63\x00\x62\x00\x5b\x00\x5f\x00\x11\x00\x61\x00\x14\x00\x15\x00\x08\x00\x92\x00\x93\x00\x94\x00\x65\x00\x66\x00\x67\x00\x68\x00\x69\x00\x6a\x00\x6b\x00\x6c\x00\x6d\x00\x6e\x00\x6f\x00\x70\x00\x71\x00\x72\x00\x73\x00\x06\x00\x07\x00\x04\x00\x05\x00\x33\x00\x5e\x00\x2f\x00\x44\x00\x45\x00\x62\x00\x5c\x00\x48\x00\x49\x00\x0e\x00\x82\x00\x4c\x00\x62\x00\x17\x00\x18\x00\x20\x00\x1a\x00\x1b\x00\x8a\x00\x8b\x00\x8c\x00\x8d\x00\x8e\x00\x8f\x00\x90\x00\x91\x00\x1c\x00\x1d\x00\x1e\x00\x5c\x00\x5f\x00\x30\x00\x53\x00\x20\x00\x63\x00\x62\x00\x5e\x00\x2f\x00\x30\x00\x61\x00\x5b\x00\x5c\x00\x2b\x00\x04\x00\x05\x00\x33\x00\x30\x00\x62\x00\x30\x00\x30\x00\x65\x00\x66\x00\x67\x00\x68\x00\x69\x00\x6a\x00\x6b\x00\x6c\x00\x6d\x00\x6e\x00\x6f\x00\x70\x00\x71\x00\x72\x00\x73\x00\x2d\x00\x2e\x00\x2f\x00\x17\x00\x18\x00\x22\x00\x1a\x00\x1b\x00\x0e\x00\x1c\x00\x1d\x00\x1e\x00\x53\x00\x5e\x00\x82\x00\x23\x00\x24\x00\x62\x00\x2f\x00\x30\x00\x5b\x00\x19\x00\x8a\x00\x5e\x00\x8c\x00\x33\x00\x61\x00\x2f\x00\x30\x00\x30\x00\x65\x00\x66\x00\x67\x00\x68\x00\x69\x00\x6a\x00\x6b\x00\x6c\x00\x6d\x00\x6e\x00\x6f\x00\x70\x00\x71\x00\x72\x00\x73\x00\x04\x00\x05\x00\x22\x00\x1c\x00\x1d\x00\x1e\x00\x5e\x00\x1f\x00\x06\x00\x07\x00\x62\x00\x5d\x00\x53\x00\x5f\x00\x82\x00\x2f\x00\x30\x00\x0b\x00\x0c\x00\x1f\x00\x5b\x00\x5c\x00\x8a\x00\x30\x00\x8c\x00\x17\x00\x18\x00\x62\x00\x1a\x00\x1b\x00\x65\x00\x66\x00\x67\x00\x68\x00\x69\x00\x6a\x00\x6b\x00\x6c\x00\x6d\x00\x6e\x00\x6f\x00\x70\x00\x71\x00\x72\x00\x73\x00\x04\x00\x05\x00\x33\x00\x0c\x00\x2f\x00\x30\x00\x22\x00\x29\x00\x2a\x00\x0c\x00\x2f\x00\x14\x00\x15\x00\x2f\x00\x82\x00\x04\x00\x05\x00\x14\x00\x15\x00\x2f\x00\x30\x00\x28\x00\x8a\x00\x22\x00\x8c\x00\x2f\x00\x05\x00\x0e\x00\x1c\x00\x1d\x00\x1e\x00\x0e\x00\x0c\x00\x0e\x00\x53\x00\x2f\x00\x2f\x00\x30\x00\x2f\x00\x2f\x00\x14\x00\x15\x00\x5b\x00\x5c\x00\x2f\x00\x2f\x00\x05\x00\x33\x00\x30\x00\x62\x00\x0f\x00\x06\x00\x65\x00\x66\x00\x67\x00\x68\x00\x69\x00\x6a\x00\x6b\x00\x6c\x00\x6d\x00\x6e\x00\x6f\x00\x70\x00\x71\x00\x72\x00\x73\x00\x2f\x00\x17\x00\x18\x00\x22\x00\x1a\x00\x1b\x00\x04\x00\x05\x00\x0e\x00\x1c\x00\x1d\x00\x1e\x00\x53\x00\x2f\x00\x82\x00\x0e\x00\x2f\x00\x30\x00\x2f\x00\x0c\x00\x5b\x00\x19\x00\x8a\x00\x0e\x00\x8c\x00\x2f\x00\x30\x00\x14\x00\x15\x00\x30\x00\x65\x00\x66\x00\x67\x00\x68\x00\x69\x00\x6a\x00\x6b\x00\x6c\x00\x6d\x00\x6e\x00\x6f\x00\x70\x00\x71\x00\x72\x00\x73\x00\x5b\x00\x5c\x00\x2f\x00\x01\x00\x0c\x00\x03\x00\x04\x00\x05\x00\x2f\x00\x2f\x00\x88\x00\x89\x00\x14\x00\x15\x00\x82\x00\x2c\x00\x2d\x00\x2e\x00\x2f\x00\x0c\x00\x5b\x00\x2f\x00\x8a\x00\x2f\x00\x8c\x00\x74\x00\x75\x00\x76\x00\x77\x00\x78\x00\x79\x00\x7a\x00\x7b\x00\x7c\x00\x7d\x00\x7e\x00\x7f\x00\x80\x00\x81\x00\x2f\x00\x83\x00\x84\x00\x85\x00\x86\x00\x87\x00\x74\x00\x75\x00\x76\x00\x77\x00\x78\x00\x79\x00\x7a\x00\x7b\x00\x7c\x00\x7d\x00\x7e\x00\x7f\x00\x80\x00\x81\x00\x2f\x00\x83\x00\x84\x00\x85\x00\x86\x00\x87\x00\x01\x00\x02\x00\x2f\x00\x04\x00\x05\x00\x06\x00\x04\x00\x05\x00\x04\x00\x05\x00\x04\x00\x05\x00\x2f\x00\x0e\x00\x04\x00\x05\x00\x04\x00\x05\x00\x04\x00\x05\x00\x04\x00\x05\x00\x2f\x00\x0f\x00\x19\x00\x1a\x00\x1b\x00\x1c\x00\x1d\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x23\x00\x24\x00\x25\x00\x26\x00\x27\x00\x28\x00\x29\x00\x2a\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x37\x00\x38\x00\x39\x00\x3a\x00\x3b\x00\x3c\x00\x3d\x00\x3e\x00\x3f\x00\x40\x00\x0f\x00\x42\x00\x0f\x00\x44\x00\x45\x00\x46\x00\x47\x00\x48\x00\x49\x00\x4a\x00\x4b\x00\x4c\x00\x0f\x00\x4e\x00\x4f\x00\x50\x00\x51\x00\x52\x00\x53\x00\x54\x00\x55\x00\x56\x00\x57\x00\x58\x00\x59\x00\x5a\x00\x5b\x00\x04\x00\x05\x00\x0f\x00\x5f\x00\x0f\x00\x0f\x00\x0c\x00\x63\x00\x1c\x00\x1d\x00\x1e\x00\x2f\x00\x0f\x00\x0f\x00\x14\x00\x15\x00\x0f\x00\x0f\x00\x0f\x00\x0f\x00\x0f\x00\x0c\x00\x0f\x00\x0f\x00\x2f\x00\x0f\x00\x0f\x00\x0f\x00\x30\x00\x14\x00\x15\x00\x0f\x00\x04\x00\x05\x00\x04\x00\x05\x00\x0f\x00\x07\x00\x0f\x00\x09\x00\x0a\x00\x2f\x00\x0f\x00\x0d\x00\x0e\x00\x0f\x00\x10\x00\x11\x00\x12\x00\x13\x00\x14\x00\x15\x00\x16\x00\x17\x00\x18\x00\x19\x00\x2f\x00\x0f\x00\x0f\x00\x0f\x00\x0f\x00\x0f\x00\x42\x00\x0f\x00\x44\x00\x45\x00\x46\x00\x47\x00\x48\x00\x49\x00\x4a\x00\x4b\x00\x4c\x00\x0f\x00\x4e\x00\x4f\x00\x50\x00\x51\x00\x52\x00\x53\x00\x54\x00\x04\x00\x05\x00\x57\x00\x58\x00\x59\x00\x5a\x00\x5b\x00\x0f\x00\x0f\x00\x0f\x00\x5f\x00\x61\x00\x0f\x00\x42\x00\x63\x00\x44\x00\x45\x00\x46\x00\x47\x00\x48\x00\x49\x00\x4a\x00\x4b\x00\x4c\x00\x0f\x00\x4e\x00\x4f\x00\x50\x00\x51\x00\x52\x00\x53\x00\x54\x00\x04\x00\x05\x00\x57\x00\x58\x00\x59\x00\x5a\x00\x0f\x00\x0f\x00\x0f\x00\x0f\x00\x5f\x00\x5e\x00\x0f\x00\x0e\x00\x63\x00\x0c\x00\x0f\x00\x2f\x00\x2f\x00\x0f\x00\x0c\x00\x30\x00\x2f\x00\x14\x00\x15\x00\x2f\x00\x00\x00\x30\x00\x14\x00\x15\x00\x42\x00\x2f\x00\x44\x00\x45\x00\x46\x00\x47\x00\x48\x00\x49\x00\x4a\x00\x4b\x00\x4c\x00\x0e\x00\x4e\x00\x4f\x00\x50\x00\x51\x00\x52\x00\x53\x00\x54\x00\x00\x00\x2f\x00\x57\x00\x58\x00\x59\x00\x5a\x00\x2f\x00\x61\x00\x5b\x00\x5b\x00\x5f\x00\x5b\x00\x5d\x00\x42\x00\x63\x00\x44\x00\x45\x00\x46\x00\x47\x00\x48\x00\x49\x00\x4a\x00\x4b\x00\x4c\x00\x0c\x00\x4e\x00\x4f\x00\x50\x00\x51\x00\x52\x00\x53\x00\x54\x00\x14\x00\x15\x00\x57\x00\x58\x00\x59\x00\x5a\x00\x97\x00\x41\x00\x01\x00\x02\x00\x5f\x00\x04\x00\x05\x00\x06\x00\x63\x00\x41\x00\x4d\x00\x95\x00\x5c\x00\x05\x00\x5c\x00\x0e\x00\x01\x00\x5d\x00\x5d\x00\x52\x00\x5d\x00\x2f\x00\x08\x00\x5c\x00\x62\x00\x5d\x00\x19\x00\x1a\x00\x1b\x00\x1c\x00\x1d\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x23\x00\x24\x00\x25\x00\x26\x00\x27\x00\x28\x00\x29\x00\x2a\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x37\x00\x38\x00\x39\x00\x3a\x00\x3b\x00\x3c\x00\x3d\x00\x3e\x00\x3f\x00\x40\x00\x5f\x00\x41\x00\x01\x00\x01\x00\x4d\x00\x17\x00\x18\x00\x48\x00\x1a\x00\x1b\x00\x4b\x00\x4d\x00\x5d\x00\x5d\x00\x4d\x00\x5d\x00\x5d\x00\x23\x00\x53\x00\x5e\x00\x55\x00\x56\x00\x04\x00\x05\x00\x60\x00\x07\x00\x5b\x00\x09\x00\x0a\x00\x2f\x00\x30\x00\x0d\x00\x0e\x00\x0f\x00\x10\x00\x11\x00\x12\x00\x13\x00\x14\x00\x15\x00\x16\x00\x17\x00\x18\x00\x19\x00\x04\x00\x05\x00\x4d\x00\x07\x00\x4d\x00\x09\x00\x0a\x00\x05\x00\x44\x00\x0d\x00\x0e\x00\x0f\x00\x10\x00\x11\x00\x12\x00\x13\x00\x14\x00\x15\x00\x16\x00\x17\x00\x18\x00\x19\x00\x04\x00\x05\x00\x01\x00\x07\x00\x06\x00\x09\x00\x0a\x00\x5f\x00\x05\x00\x0d\x00\x0e\x00\x0f\x00\x10\x00\x11\x00\x12\x00\x13\x00\x14\x00\x15\x00\x16\x00\x17\x00\x18\x00\x19\x00\x04\x00\x05\x00\x60\x00\x07\x00\x48\x00\x09\x00\x0a\x00\x44\x00\x5d\x00\x0d\x00\x0e\x00\x0f\x00\x10\x00\x11\x00\x12\x00\x13\x00\x14\x00\x15\x00\x16\x00\x17\x00\x18\x00\x19\x00\x04\x00\x05\x00\x5e\x00\x07\x00\x4d\x00\x09\x00\x0a\x00\x44\x00\x41\x00\x0d\x00\x0e\x00\x0f\x00\x10\x00\x11\x00\x12\x00\x13\x00\x14\x00\x15\x00\x16\x00\x17\x00\x18\x00\x19\x00\x04\x00\x05\x00\x5e\x00\x07\x00\x19\x00\x09\x00\x0a\x00\x04\x00\x4d\x00\x0d\x00\x0e\x00\x0f\x00\x10\x00\x11\x00\x12\x00\x13\x00\x14\x00\x15\x00\x16\x00\x17\x00\x18\x00\x19\x00\x04\x00\x05\x00\x5e\x00\x07\x00\x5d\x00\x09\x00\x0a\x00\x5b\x00\x44\x00\x0d\x00\x0e\x00\x0f\x00\x10\x00\x11\x00\x12\x00\x13\x00\x14\x00\x15\x00\x16\x00\x17\x00\x18\x00\x19\x00\x5d\x00\x61\x00\x5e\x00\x05\x00\x42\x00\x5b\x00\x44\x00\x45\x00\x46\x00\x47\x00\x48\x00\x49\x00\x4a\x00\x4b\x00\x4c\x00\x05\x00\x4e\x00\x4f\x00\x50\x00\x51\x00\x52\x00\x53\x00\x54\x00\x0c\x00\x5e\x00\x57\x00\x58\x00\x59\x00\x5a\x00\x01\x00\x8a\x00\x14\x00\x15\x00\x5f\x00\x8a\x00\x44\x00\x0c\x00\x63\x00\x01\x00\x02\x00\x03\x00\x04\x00\x05\x00\x0c\x00\x14\x00\x15\x00\x5e\x00\x0c\x00\x4d\x00\x48\x00\xff\xff\x14\x00\x15\x00\xff\xff\xff\xff\x14\x00\x15\x00\x0c\x00\x2f\x00\x16\x00\x17\x00\x18\x00\xff\xff\x1a\x00\x1b\x00\x14\x00\x15\x00\x0c\x00\x5e\x00\xff\xff\x21\x00\x2f\x00\x0c\x00\xff\xff\x25\x00\x14\x00\x15\x00\xff\xff\x2f\x00\xff\xff\x14\x00\x15\x00\x2f\x00\xff\xff\x2f\x00\x30\x00\x0c\x00\x95\x00\x0c\x00\xff\xff\x0c\x00\xff\xff\x2f\x00\xff\xff\x14\x00\x15\x00\x14\x00\x15\x00\x14\x00\x15\x00\x0c\x00\xff\xff\x2f\x00\x0c\x00\xff\xff\x0c\x00\xff\xff\x2f\x00\x14\x00\x15\x00\x0c\x00\x14\x00\x15\x00\x14\x00\x15\x00\xff\xff\xff\xff\xff\xff\x14\x00\x15\x00\x0c\x00\x2f\x00\x0c\x00\x2f\x00\x0c\x00\x2f\x00\xff\xff\xff\xff\x14\x00\x15\x00\x14\x00\x15\x00\x14\x00\x15\x00\x0c\x00\x2f\x00\xff\xff\xff\xff\x2f\x00\x0c\x00\x2f\x00\x0c\x00\x14\x00\x15\x00\x0c\x00\x2f\x00\xff\xff\x14\x00\x15\x00\x14\x00\x15\x00\xff\xff\x14\x00\x15\x00\x0c\x00\x2f\x00\x0c\x00\x2f\x00\x0c\x00\x2f\x00\xff\xff\xff\xff\x14\x00\x15\x00\x14\x00\x15\x00\x14\x00\x15\x00\xff\xff\x2f\x00\xff\xff\xff\xff\x0c\x00\xff\xff\x2f\x00\x0c\x00\x2f\x00\x0c\x00\xff\xff\x2f\x00\x14\x00\x15\x00\xff\xff\x14\x00\x15\x00\x14\x00\x15\x00\x0c\x00\xff\xff\x2f\x00\x0c\x00\x2f\x00\x0c\x00\x2f\x00\x0c\x00\x14\x00\x15\x00\x0c\x00\x14\x00\x15\x00\x14\x00\x15\x00\x14\x00\x15\x00\xff\xff\x14\x00\x15\x00\x2f\x00\x0c\x00\xff\xff\x2f\x00\x0c\x00\x2f\x00\xff\xff\xff\xff\x0c\x00\x14\x00\x15\x00\xff\xff\x14\x00\x15\x00\xff\xff\x2f\x00\x14\x00\x15\x00\x2f\x00\x0c\x00\x2f\x00\x0c\x00\x2f\x00\x0c\x00\xff\xff\x2f\x00\x0c\x00\x14\x00\x15\x00\x14\x00\x15\x00\x14\x00\x15\x00\xff\xff\x14\x00\x15\x00\x2f\x00\xff\xff\xff\xff\x2f\x00\xff\xff\xff\xff\xff\xff\x2f\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x2f\x00\xff\xff\x2f\x00\xff\xff\x2f\x00\xff\xff\x42\x00\x2f\x00\x44\x00\x45\x00\x46\x00\x47\x00\x48\x00\x49\x00\x4a\x00\x4b\x00\x4c\x00\xff\xff\x4e\x00\x4f\x00\x50\x00\x51\x00\x52\x00\x53\x00\x54\x00\xff\xff\xff\xff\x57\x00\x58\x00\x59\x00\x5a\x00\xff\xff\x5c\x00\x17\x00\x18\x00\x5f\x00\x1a\x00\x1b\x00\x42\x00\x63\x00\x44\x00\x45\x00\x46\x00\x47\x00\x48\x00\x49\x00\x4a\x00\x4b\x00\x4c\x00\xff\xff\x4e\x00\x4f\x00\x50\x00\x51\x00\x52\x00\x53\x00\x54\x00\x2f\x00\x30\x00\x57\x00\x58\x00\x59\x00\x5a\x00\xff\xff\x5c\x00\x17\x00\x18\x00\x5f\x00\x1a\x00\x1b\x00\x42\x00\x63\x00\x44\x00\x45\x00\x46\x00\x47\x00\x48\x00\x49\x00\x4a\x00\x4b\x00\x4c\x00\xff\xff\x4e\x00\x4f\x00\x50\x00\x51\x00\x52\x00\x53\x00\x54\x00\x2f\x00\x30\x00\x57\x00\x58\x00\x59\x00\x5a\x00\xff\xff\xff\xff\xff\xff\xff\xff\x5f\x00\xff\xff\x61\x00\xff\xff\x63\x00\x42\x00\x43\x00\x44\x00\x45\x00\x46\x00\x47\x00\x48\x00\x49\x00\x4a\x00\x4b\x00\x4c\x00\xff\xff\x4e\x00\x4f\x00\x50\x00\x51\x00\x52\x00\x53\x00\x54\x00\xff\xff\xff\xff\x57\x00\x58\x00\x59\x00\x5a\x00\xff\xff\xff\xff\x17\x00\x18\x00\x5f\x00\x1a\x00\x1b\x00\x42\x00\x63\x00\x44\x00\x45\x00\x46\x00\x47\x00\x48\x00\x49\x00\x4a\x00\x4b\x00\x4c\x00\xff\xff\x4e\x00\x4f\x00\x50\x00\x51\x00\x52\x00\x53\x00\x54\x00\x2f\x00\x30\x00\x57\x00\x58\x00\x59\x00\x5a\x00\xff\xff\xff\xff\xff\xff\xff\xff\x5f\x00\x60\x00\xff\xff\x42\x00\x63\x00\x44\x00\x45\x00\x46\x00\x47\x00\x48\x00\x49\x00\x4a\x00\x4b\x00\x4c\x00\xff\xff\x4e\x00\x4f\x00\x50\x00\x51\x00\x52\x00\x53\x00\x54\x00\xff\xff\xff\xff\x57\x00\x58\x00\x59\x00\x5a\x00\xff\xff\x5c\x00\x17\x00\x18\x00\x5f\x00\x1a\x00\x1b\x00\x42\x00\x63\x00\x44\x00\x45\x00\x46\x00\x47\x00\x48\x00\x49\x00\x4a\x00\x4b\x00\x4c\x00\xff\xff\x4e\x00\x4f\x00\x50\x00\x51\x00\x52\x00\x53\x00\x54\x00\x2f\x00\x30\x00\x57\x00\x58\x00\x59\x00\x5a\x00\xff\xff\xff\xff\xff\xff\xff\xff\x5f\x00\xff\xff\x61\x00\x42\x00\x63\x00\x44\x00\x45\x00\x46\x00\x47\x00\x48\x00\x49\x00\x4a\x00\x4b\x00\x4c\x00\xff\xff\x4e\x00\x4f\x00\x50\x00\x51\x00\x52\x00\x53\x00\x54\x00\xff\xff\xff\xff\x57\x00\x58\x00\x59\x00\x5a\x00\xff\xff\xff\xff\x5d\x00\xff\xff\x5f\x00\xff\xff\xff\xff\x42\x00\x63\x00\x44\x00\x45\x00\x46\x00\x47\x00\x48\x00\x49\x00\x4a\x00\x4b\x00\x4c\x00\xff\xff\x4e\x00\x4f\x00\x50\x00\x51\x00\x52\x00\x53\x00\x54\x00\xff\xff\xff\xff\x57\x00\x58\x00\x59\x00\x5a\x00\xff\xff\xff\xff\x17\x00\x18\x00\x5f\x00\x1a\x00\x1b\x00\xff\xff\x63\x00\x44\x00\x45\x00\x46\x00\x47\x00\x48\x00\x49\x00\x4a\x00\x4b\x00\x4c\x00\xff\xff\x4e\x00\x4f\x00\x50\x00\x51\x00\x52\x00\x53\x00\x54\x00\x2f\x00\x30\x00\x57\x00\xff\xff\x59\x00\x5a\x00\xff\xff\xff\xff\x17\x00\x18\x00\x5f\x00\x1a\x00\x1b\x00\xff\xff\x63\x00\x44\x00\x45\x00\x46\x00\x47\x00\x48\x00\x49\x00\x4a\x00\x4b\x00\x4c\x00\xff\xff\x4e\x00\x4f\x00\x50\x00\x51\x00\x52\x00\x53\x00\x54\x00\x2f\x00\x30\x00\xff\xff\xff\xff\x59\x00\x5a\x00\xff\xff\xff\xff\x17\x00\x18\x00\x5f\x00\x1a\x00\x1b\x00\xff\xff\x63\x00\x44\x00\x45\x00\x46\x00\x47\x00\x48\x00\x49\x00\x4a\x00\x4b\x00\x4c\x00\xff\xff\x4e\x00\x4f\x00\x50\x00\x51\x00\xff\xff\xff\xff\x54\x00\x2f\x00\x30\x00\xff\xff\xff\xff\x59\x00\x5a\x00\xff\xff\xff\xff\x17\x00\x18\x00\x5f\x00\x1a\x00\x1b\x00\xff\xff\x63\x00\x44\x00\x45\x00\x46\x00\x47\x00\x48\x00\x49\x00\x4a\x00\x4b\x00\x4c\x00\xff\xff\x4e\x00\x4f\x00\x50\x00\x51\x00\xff\xff\xff\xff\xff\xff\x2f\x00\x30\x00\xff\xff\xff\xff\x59\x00\x5a\x00\xff\xff\xff\xff\xff\xff\xff\xff\x5f\x00\xff\xff\xff\xff\xff\xff\x63\x00\x44\x00\x45\x00\x46\x00\x47\x00\x48\x00\x49\x00\x4a\x00\x4b\x00\x4c\x00\xff\xff\x4e\x00\x4f\x00\x50\x00\x51\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x59\x00\x5a\x00\xff\xff\xff\xff\xff\xff\xff\xff\x5f\x00\x44\x00\x45\x00\xff\xff\x63\x00\x48\x00\x49\x00\x4a\x00\x4b\x00\x4c\x00\xff\xff\x4e\x00\x4f\x00\x50\x00\x51\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x59\x00\x5a\x00\xff\xff\xff\xff\xff\xff\xff\xff\x5f\x00\x44\x00\x45\x00\xff\xff\x63\x00\x48\x00\x49\x00\x4a\x00\x4b\x00\x4c\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\x5f\x00\xff\xff\xff\xff\xff\xff\x63\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"#

happyTable :: HappyAddr
happyTable = HappyA# "\x00\x00\x15\x00\x16\x00\x15\x00\x36\x00\x46\x00\x37\x00\xdb\x01\x38\x00\x39\x00\x15\x00\x36\x00\x3a\x00\x3b\x00\x3c\x00\x3d\x00\x3e\x00\x3f\x00\x40\x00\x41\x00\x42\x00\x43\x00\x44\x00\x45\x00\x46\x00\x15\x00\x36\x00\x94\x00\x15\x00\x36\x00\x48\x00\xdf\x01\xe0\x01\xab\x00\xb1\x01\x15\x00\x36\x00\xd7\x01\xbc\x00\x4a\x00\x15\x00\x36\x00\xbc\x01\x37\x00\xd5\x01\x38\x00\x39\x00\xac\x00\x17\x00\x3a\x00\x3b\x00\x3c\x00\x3d\x00\x3e\x00\x3f\x00\x40\x00\x41\x00\x42\x00\x43\x00\x44\x00\x45\x00\x46\x00\x48\x00\xae\x01\xaf\x01\x4b\x00\xbb\x00\xa9\x00\xb9\x01\xa1\x00\xbc\x00\x4a\x00\xb0\x01\x7a\x01\x15\x00\x16\x00\x7e\x01\x7c\x01\x7d\x01\xd8\x01\x18\x00\x90\x00\x31\x00\x32\x00\x33\x00\x48\x00\x7e\x01\xe3\x01\x19\x00\x9f\x00\x91\x00\xaa\x00\xb0\x01\xe9\x01\x4a\x00\x40\x01\x85\x00\x4b\x00\x1a\x00\x1b\x00\x1c\x00\x1d\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x23\x00\x24\x00\x25\x00\x26\x00\x27\x00\x28\x00\x42\x01\xe5\x01\x48\x00\xa7\x00\x48\x00\x34\x00\xb2\x00\x4b\x00\x17\x00\xa7\x00\xea\x01\x4a\x00\xd6\x01\x4a\x00\x29\x00\xbf\x00\xc0\x00\xd5\x01\xd9\x01\x80\x01\xdc\x01\xdd\x01\x2a\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\x15\x00\x16\x00\x27\x00\x28\x00\x40\x01\x40\x01\xff\xff\x4b\x00\xff\xff\x4b\x00\x18\x00\xee\x01\xd4\x00\xbe\x01\x48\x00\x77\x01\xd5\x00\x5a\x01\x19\x00\xa7\x00\x78\x01\x5f\x01\x7b\x01\x4a\x00\xc7\x01\x43\x01\x44\x01\x45\x01\x1a\x00\x1b\x00\x1c\x00\x1d\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x23\x00\x24\x00\x25\x00\x26\x00\x27\x00\x28\x00\x50\x01\xe7\x01\x15\x00\x16\x00\x17\x00\xd3\x01\x4b\x00\xbf\x00\xc0\x00\xd4\x01\x59\x01\xc3\x00\xc4\x00\xb8\x01\x29\x00\xc7\x00\x5a\x01\x52\x01\x0d\x00\x63\x01\x0e\x00\x0f\x00\x2a\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\xc2\x01\x85\x01\x86\x01\x3e\x01\xd4\x00\x40\x01\x18\x00\x3f\x01\xd5\x00\x3f\x01\x5c\x01\x9f\x00\x13\x00\x5d\x01\x19\x00\xea\xff\xbe\x01\x15\x00\x16\x00\x17\x00\x87\x01\xea\xff\xc3\x01\x40\x01\x1a\x00\x1b\x00\x1c\x00\x1d\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x23\x00\x24\x00\x25\x00\x26\x00\x27\x00\x28\x00\xe6\x01\xcc\x01\xcd\x01\x4a\x01\x0d\x00\xa0\x01\x0e\x00\x0f\x00\x9e\x01\xc4\x01\x85\x01\x86\x01\x18\x00\xb5\x01\x29\x00\x4b\x01\x4c\x01\x3f\x01\x9b\x00\x9c\x00\x19\x00\xa1\x01\x89\x00\x27\xff\x8a\x00\x17\x00\x27\xff\x4d\x01\x13\x00\x87\x01\x1a\x00\x1b\x00\x1c\x00\x1d\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x23\x00\x24\x00\x25\x00\x26\x00\x27\x00\x28\x00\x15\x00\x16\x00\xb3\x00\xc5\x01\x85\x01\x86\x01\xb7\x01\xa2\x01\x50\x01\x51\x01\xb8\x01\xda\x00\x18\x00\xdb\x00\x29\x00\x9b\x00\x9c\x00\xdf\x01\xe0\x01\xa5\x01\x19\x00\xec\xff\x89\x00\x87\x01\x8a\x00\x52\x01\x0d\x00\xec\xff\x0e\x00\x0f\x00\x1a\x00\x1b\x00\x1c\x00\x1d\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x23\x00\x24\x00\x25\x00\x26\x00\x27\x00\x28\x00\x15\x00\x16\x00\x17\x00\x48\x00\x9f\x00\x13\x00\xb4\x00\xba\x01\xbb\x01\x48\x00\xa9\x01\x65\x01\x4a\x00\xbc\x01\x29\x00\x15\x00\x36\x00\x69\x01\x4a\x00\x9b\x00\x9c\x00\xaa\x01\x89\x00\xd5\x00\x8a\x00\x81\x01\x94\x00\x72\x01\x9f\x01\x85\x01\x86\x01\x74\x01\x48\x00\x6e\x01\x18\x00\x57\x01\x9b\x00\x9c\x00\x4b\x00\x5d\x01\x6a\x01\x4a\x00\x19\x00\xea\xff\x4b\x00\x5f\x01\x94\x00\x17\x00\x87\x01\xea\xff\x11\x01\x9c\x01\x1a\x00\x1b\x00\x1c\x00\x1d\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x23\x00\x24\x00\x25\x00\x26\x00\x27\x00\x28\x00\x4b\x00\x52\x01\x0d\x00\x9a\x00\x0e\x00\x0f\x00\x15\x00\x16\x00\x70\x01\xa7\x01\x85\x01\x86\x01\x18\x00\x16\x01\x29\x00\x1f\x01\x9b\x00\x9c\x00\x1d\x01\x48\x00\x19\x00\xa7\x00\x89\x00\x28\x01\x8a\x00\x9f\x00\x13\x00\x19\x01\x4a\x00\x87\x01\x1a\x00\x1b\x00\x1c\x00\x1d\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x23\x00\x24\x00\x25\x00\x26\x00\x27\x00\x28\x00\x89\x01\xa9\x01\x45\x01\xcf\x01\x48\x00\xd0\x01\x15\x00\x36\x00\xb6\x00\x1a\x01\xa4\x01\xa5\x01\x1b\x01\x4a\x00\x29\x00\xca\x01\xcb\x01\xcc\x01\xcd\x01\xba\x00\x89\x01\xd7\x00\x89\x00\xd8\x00\x8a\x00\x8a\x01\x8b\x01\x8c\x01\x8d\x01\x8e\x01\x8f\x01\x90\x01\x91\x01\x92\x01\x93\x01\x94\x01\x95\x01\x96\x01\x97\x01\x4b\x00\x98\x01\x99\x01\x9a\x01\x9b\x01\x9c\x01\x8a\x01\x8b\x01\x8c\x01\x8d\x01\x8e\x01\x8f\x01\x90\x01\x91\x01\x92\x01\x93\x01\x94\x01\x95\x01\x96\x01\x97\x01\xdc\x00\x98\x01\x99\x01\x9a\x01\x9b\x01\x9c\x01\x4d\x00\x4e\x00\xde\x00\x15\x00\x36\x00\x4f\x00\x15\x00\x36\x00\xaf\x00\xb0\x00\x15\x00\x16\x00\xe3\x00\x50\x00\x15\x00\x36\x00\x15\x00\x16\x00\x15\x00\x36\x00\x15\x00\x16\x00\xe7\x00\xea\x00\x46\x00\x51\x00\x52\x00\x53\x00\x54\x00\x55\x00\x56\x00\x57\x00\x58\x00\x59\x00\x5a\x00\x5b\x00\x5c\x00\x5d\x00\x5e\x00\x5f\x00\x60\x00\x61\x00\x62\x00\x63\x00\x64\x00\x65\x00\x66\x00\x67\x00\x68\x00\x69\x00\x6a\x00\x6b\x00\x6c\x00\x6d\x00\x6e\x00\x6f\x00\x70\x00\x71\x00\x72\x00\x73\x00\x74\x00\x75\x00\x76\x00\x77\x00\xeb\x00\xbe\x00\xec\x00\xbf\x00\xc0\x00\xc1\x00\xc2\x00\xe1\x00\xc4\x00\xc5\x00\xe2\x00\xc7\x00\xed\x00\xc8\x00\xc9\x00\xca\x00\xcb\x00\xcc\x00\xe3\x00\xce\x00\x7b\x00\x7c\x00\xcf\x00\xd0\x00\xd1\x00\xd2\x00\x7d\x00\xae\xff\xae\xff\xee\x00\xd4\x00\xef\x00\xf0\x00\x48\x00\xd5\x00\x84\x01\x85\x01\x86\x01\x46\x00\xf1\x00\xf2\x00\x1c\x01\x4a\x00\xf3\x00\xf4\x00\xf5\x00\xf6\x00\xf7\x00\x48\x00\xf8\x00\xf9\x00\x80\x00\xfa\x00\xfb\x00\xfc\x00\x87\x01\x20\x01\x4a\x00\xfd\x00\xb3\xff\xb3\xff\x15\x00\x36\x00\xfe\x00\x37\x00\xff\x00\x38\x00\x39\x00\x4b\x00\x00\x01\x3a\x00\x3b\x00\x3c\x00\x3d\x00\x3e\x00\x3f\x00\x40\x00\x41\x00\x42\x00\x43\x00\x44\x00\x45\x00\x46\x00\x4b\x00\x01\x01\x02\x01\x03\x01\x04\x01\x05\x01\xae\xff\x06\x01\xae\xff\xae\xff\xae\xff\xae\xff\xae\xff\xae\xff\xae\xff\xae\xff\xae\xff\x07\x01\xae\xff\xae\xff\xae\xff\xae\xff\xae\xff\xae\xff\xae\xff\xa9\xff\xa9\xff\xae\xff\xae\xff\xae\xff\xae\xff\x90\x00\x08\x01\x09\x01\x0a\x01\xae\xff\xe9\x01\x0b\x01\xb3\xff\xae\xff\xbf\x00\xc0\x00\xb3\xff\xb3\xff\xb3\xff\xb3\xff\xb3\xff\xb3\xff\xb3\xff\x0c\x01\xb3\xff\xb3\xff\xb3\xff\xb3\xff\xb3\xff\xb3\xff\xb3\xff\x15\x00\x36\x00\xb3\xff\xb3\xff\xb3\xff\xb3\xff\x0d\x01\x0e\x01\x0f\x01\x10\x01\xd4\x00\xc7\x01\x11\x01\x13\x01\xd5\x00\x48\x00\x14\x01\x81\x00\x83\x00\x8e\x00\x48\x00\x92\x00\x94\x00\x25\x01\x4a\x00\x96\x00\x03\x00\x97\x00\x26\x01\x4a\x00\xa9\xff\xa5\x00\xbf\x00\xc0\x00\xa9\xff\xa9\xff\xc3\x00\xc4\x00\xa9\xff\xa9\xff\xc7\x00\x04\x00\xa9\xff\xa9\xff\xa9\xff\xa9\xff\xa9\xff\xa9\xff\xa9\xff\x05\x00\x4b\x00\xa9\xff\xa9\xff\xa9\xff\xa9\xff\x4b\x00\xe3\x01\xe1\x01\xe2\x01\xd4\x00\xe6\x01\xc9\x01\xbe\x00\xd5\x00\xbf\x00\xc0\x00\xc1\x00\xc2\x00\xc3\x00\xc4\x00\xc5\x00\xc6\x00\xc7\x00\x48\x00\xc8\x00\xc9\x00\xca\x00\xcb\x00\xcc\x00\xcd\x00\xce\x00\x27\x01\x4a\x00\xcf\x00\xd0\x00\xd1\x00\xd2\x00\xdb\x01\xd1\x01\x4d\x00\x4e\x00\xd4\x00\x15\x00\x36\x00\x4f\x00\xd5\x00\xd2\x01\xb6\x01\xc0\x01\xc1\x01\x94\x00\xc2\x01\x50\x00\xa7\x01\xac\x01\xae\x01\xad\x01\x77\x01\x4b\x00\x7b\x01\x80\x01\x83\x01\x9e\x01\x46\x00\x51\x00\x52\x00\x53\x00\x54\x00\x55\x00\x56\x00\x57\x00\x58\x00\x59\x00\x5a\x00\x5b\x00\x5c\x00\x5d\x00\x5e\x00\x5f\x00\x60\x00\x61\x00\x62\x00\x63\x00\x64\x00\x65\x00\x66\x00\x67\x00\x68\x00\x69\x00\x6a\x00\x6b\x00\x6c\x00\x6d\x00\x6e\x00\x6f\x00\x70\x00\x71\x00\x72\x00\x73\x00\x74\x00\x75\x00\x76\x00\x77\x00\xa7\x00\x5b\x01\x62\x01\x63\x01\x65\x01\x4a\x01\x0d\x00\x78\x00\x0e\x00\x0f\x00\x79\x00\x6c\x01\x70\x01\x72\x01\x6d\x01\x19\x01\x1f\x01\x83\x01\x7a\x00\x23\x01\x7b\x00\x7c\x00\x15\x00\x36\x00\x22\x01\x37\x00\x7d\x00\x38\x00\x39\x00\x4d\x01\x13\x00\x3a\x00\x3b\x00\x3c\x00\x3d\x00\x3e\x00\x3f\x00\x40\x00\x41\x00\x42\x00\x43\x00\x44\x00\x45\x00\x46\x00\x15\x00\x36\x00\x24\x01\x37\x00\x25\x01\x38\x00\x39\x00\xb0\x00\x47\x01\x3a\x00\x3b\x00\x3c\x00\x3d\x00\x3e\x00\x3f\x00\x40\x00\x41\x00\x42\x00\x43\x00\x44\x00\x45\x00\x46\x00\x15\x00\x36\x00\x49\x01\x37\x00\x4a\x01\x38\x00\x39\x00\xa7\x00\x55\x01\x3a\x00\x3b\x00\x3c\x00\x3d\x00\x3e\x00\x3f\x00\x40\x00\x41\x00\x42\x00\x43\x00\x44\x00\x45\x00\x46\x00\x15\x00\x36\x00\x56\x01\x37\x00\xb1\x00\x38\x00\x39\x00\xb8\x00\xb3\x00\x3a\x00\x3b\x00\x3c\x00\x3d\x00\x3e\x00\x3f\x00\x40\x00\x41\x00\x42\x00\x43\x00\x44\x00\x45\x00\x46\x00\x15\x00\x36\x00\xb3\x01\x37\x00\xb6\x00\x38\x00\x39\x00\xb9\x00\xba\x00\x3a\x00\x3b\x00\x3c\x00\x3d\x00\x3e\x00\x3f\x00\x40\x00\x41\x00\x42\x00\x43\x00\x44\x00\x45\x00\x46\x00\x15\x00\x36\x00\xb4\x01\x37\x00\x46\x00\x38\x00\x39\x00\xaf\x00\xd7\x00\x3a\x00\x3b\x00\x3c\x00\x3d\x00\x3e\x00\x3f\x00\x40\x00\x41\x00\x42\x00\x43\x00\x44\x00\x45\x00\x46\x00\x15\x00\x36\x00\x74\x01\x37\x00\xde\x00\x38\x00\x39\x00\x90\x00\x8e\x00\x3a\x00\x3b\x00\x3c\x00\x3d\x00\x3e\x00\x3f\x00\x40\x00\x41\x00\x42\x00\x43\x00\x44\x00\x45\x00\x46\x00\x48\x00\x92\x00\x76\x01\x94\x00\xbe\x00\x96\x00\xbf\x00\xc0\x00\xc1\x00\xc2\x00\xc3\x00\xc4\x00\xc5\x00\xc6\x00\xc7\x00\x94\x00\xc8\x00\xc9\x00\xca\x00\xcb\x00\xcc\x00\xcd\x00\xce\x00\x48\x00\x68\x01\xcf\x00\xd0\x00\xd1\x00\xd2\x00\x9e\x00\x99\x00\x29\x01\x4a\x00\xd4\x00\x9a\x00\xa3\x00\x48\x00\xd5\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x48\x00\x2a\x01\x4a\x00\x6e\x01\x48\x00\xa4\x00\xa5\x00\x00\x00\x2b\x01\x4a\x00\x00\x00\x00\x00\x2c\x01\x4a\x00\x48\x00\x4b\x00\x0b\x00\x0c\x00\x0d\x00\x00\x00\x0e\x00\x0f\x00\x2d\x01\x4a\x00\x48\x00\x16\x01\x00\x00\x10\x00\x4b\x00\x48\x00\x00\x00\x11\x00\x19\x01\x4a\x00\x00\x00\x4b\x00\x00\x00\x2e\x01\x4a\x00\x4b\x00\x00\x00\x12\x00\x13\x00\x48\x00\xdc\x00\x48\x00\x00\x00\x48\x00\x00\x00\x4b\x00\x00\x00\x2f\x01\x4a\x00\x30\x01\x4a\x00\x31\x01\x4a\x00\x48\x00\x00\x00\x4b\x00\x48\x00\x00\x00\x48\x00\x00\x00\x4b\x00\x32\x01\x4a\x00\x48\x00\x33\x01\x4a\x00\x34\x01\x4a\x00\x00\x00\x00\x00\x00\x00\x35\x01\x4a\x00\x48\x00\x4b\x00\x48\x00\x4b\x00\x48\x00\x4b\x00\x00\x00\x00\x00\x36\x01\x4a\x00\x37\x01\x4a\x00\x38\x01\x4a\x00\x48\x00\x4b\x00\x00\x00\x00\x00\x4b\x00\x48\x00\x4b\x00\x48\x00\x39\x01\x4a\x00\x48\x00\x4b\x00\x00\x00\x3a\x01\x4a\x00\x3b\x01\x4a\x00\x00\x00\x3c\x01\x4a\x00\x48\x00\x4b\x00\x48\x00\x4b\x00\x48\x00\x4b\x00\x00\x00\x00\x00\x53\x01\x4a\x00\xad\x00\x4a\x00\xdf\x00\x4a\x00\x00\x00\x4b\x00\x00\x00\x00\x00\x48\x00\x00\x00\x4b\x00\x48\x00\x4b\x00\x48\x00\x00\x00\x4b\x00\xe4\x00\x4a\x00\x00\x00\xe5\x00\x4a\x00\xe6\x00\x4a\x00\x48\x00\x00\x00\x4b\x00\x48\x00\x4b\x00\x48\x00\x4b\x00\x48\x00\xe8\x00\x4a\x00\x48\x00\xe9\x00\x4a\x00\x12\x01\x4a\x00\x49\x00\x4a\x00\x00\x00\x7d\x00\x4a\x00\x4b\x00\x48\x00\x00\x00\x4b\x00\x48\x00\x4b\x00\x00\x00\x00\x00\x48\x00\x7e\x00\x4a\x00\x00\x00\x7f\x00\x4a\x00\x00\x00\x4b\x00\x82\x00\x4a\x00\x4b\x00\x48\x00\x4b\x00\x48\x00\x4b\x00\x48\x00\x00\x00\x4b\x00\x48\x00\x85\x00\x4a\x00\x8a\x00\x4a\x00\x8b\x00\x4a\x00\x00\x00\x8c\x00\x4a\x00\x4b\x00\x00\x00\x00\x00\x4b\x00\x00\x00\x00\x00\x00\x00\x4b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x4b\x00\x00\x00\x4b\x00\x00\x00\x4b\x00\x00\x00\xbe\x00\x4b\x00\xbf\x00\xc0\x00\xc1\x00\xc2\x00\xc3\x00\xc4\x00\xc5\x00\xc6\x00\xc7\x00\x00\x00\xc8\x00\xc9\x00\xca\x00\xcb\x00\xcc\x00\xcd\x00\xce\x00\x00\x00\x00\x00\xcf\x00\xd0\x00\xd1\x00\xd2\x00\x00\x00\xec\x01\xc9\x01\x0d\x00\xd4\x00\x0e\x00\x0f\x00\xbe\x00\xd5\x00\xbf\x00\xc0\x00\xc1\x00\xc2\x00\xc3\x00\xc4\x00\xc5\x00\xc6\x00\xc7\x00\x00\x00\xc8\x00\xc9\x00\xca\x00\xcb\x00\xcc\x00\xcd\x00\xce\x00\x9f\x00\x13\x00\xcf\x00\xd0\x00\xd1\x00\xd2\x00\x00\x00\xed\x01\x60\x01\x0d\x00\xd4\x00\x0e\x00\x0f\x00\xbe\x00\xd5\x00\xbf\x00\xc0\x00\xc1\x00\xc2\x00\xc3\x00\xc4\x00\xc5\x00\xc6\x00\xc7\x00\x00\x00\xc8\x00\xc9\x00\xca\x00\xcb\x00\xcc\x00\xcd\x00\xce\x00\x9f\x00\x13\x00\xcf\x00\xd0\x00\xd1\x00\xd2\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd4\x00\x00\x00\x57\x01\x00\x00\xd5\x00\xbe\x00\x67\x01\xbf\x00\xc0\x00\xc1\x00\xc2\x00\xc3\x00\xc4\x00\xc5\x00\xc6\x00\xc7\x00\x00\x00\xc8\x00\xc9\x00\xca\x00\xcb\x00\xcc\x00\xcd\x00\xce\x00\x00\x00\x00\x00\xcf\x00\xd0\x00\xd1\x00\xd2\x00\x00\x00\x00\x00\x47\x01\x0d\x00\xd4\x00\x0e\x00\x0f\x00\xbe\x00\xd5\x00\xbf\x00\xc0\x00\xc1\x00\xc2\x00\xc3\x00\xc4\x00\xc5\x00\xc6\x00\xc7\x00\x00\x00\xc8\x00\xc9\x00\xca\x00\xcb\x00\xcc\x00\xcd\x00\xce\x00\x9f\x00\x13\x00\xcf\x00\xd0\x00\xd1\x00\xd2\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd4\x00\x69\x01\x00\x00\xbe\x00\xd5\x00\xbf\x00\xc0\x00\xc1\x00\xc2\x00\xc3\x00\xc4\x00\xc5\x00\xc6\x00\xc7\x00\x00\x00\xc8\x00\xc9\x00\xca\x00\xcb\x00\xcc\x00\xcd\x00\xce\x00\x00\x00\x00\x00\xcf\x00\xd0\x00\xd1\x00\xd2\x00\x00\x00\x18\x01\x4e\x01\x0d\x00\xd4\x00\x0e\x00\x0f\x00\xbe\x00\xd5\x00\xbf\x00\xc0\x00\xc1\x00\xc2\x00\xc3\x00\xc4\x00\xc5\x00\xc6\x00\xc7\x00\x00\x00\xc8\x00\xc9\x00\xca\x00\xcb\x00\xcc\x00\xcd\x00\xce\x00\x9f\x00\x13\x00\xcf\x00\xd0\x00\xd1\x00\xd2\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd4\x00\x00\x00\x50\x01\xbe\x00\xd5\x00\xbf\x00\xc0\x00\xc1\x00\xc2\x00\xc3\x00\xc4\x00\xc5\x00\xc6\x00\xc7\x00\x00\x00\xc8\x00\xc9\x00\xca\x00\xcb\x00\xcc\x00\xcd\x00\xce\x00\x00\x00\x00\x00\xcf\x00\xd0\x00\xd1\x00\xd2\x00\x00\x00\x00\x00\xd3\x00\x00\x00\xd4\x00\x00\x00\x00\x00\xbe\x00\xd5\x00\xbf\x00\xc0\x00\xc1\x00\xc2\x00\xc3\x00\xc4\x00\xc5\x00\xc6\x00\xc7\x00\x00\x00\xc8\x00\xc9\x00\xca\x00\xcb\x00\xcc\x00\xcd\x00\xce\x00\x00\x00\x00\x00\xcf\x00\xd0\x00\xd1\x00\xd2\x00\x00\x00\x00\x00\xac\x00\x0d\x00\xd4\x00\x0e\x00\x0f\x00\x00\x00\xd5\x00\xbf\x00\xc0\x00\xc1\x00\xc2\x00\xc3\x00\xc4\x00\xc5\x00\xc6\x00\xc7\x00\x00\x00\xc8\x00\xc9\x00\xca\x00\xcb\x00\xcc\x00\xcd\x00\xce\x00\x9f\x00\x13\x00\xcf\x00\x00\x00\xd1\x00\xd2\x00\x00\x00\x00\x00\x86\x00\x0d\x00\xd4\x00\x0e\x00\x0f\x00\x00\x00\xd5\x00\xbf\x00\xc0\x00\xc1\x00\xc2\x00\xc3\x00\xc4\x00\xc5\x00\xc6\x00\xc7\x00\x00\x00\xc8\x00\xc9\x00\xca\x00\xcb\x00\xcc\x00\xcd\x00\xce\x00\x87\x00\x13\x00\x00\x00\x00\x00\xd1\x00\xd2\x00\x00\x00\x00\x00\x9e\x00\x0d\x00\xd4\x00\x0e\x00\x0f\x00\x00\x00\xd5\x00\xbf\x00\xc0\x00\xc1\x00\xc2\x00\xc3\x00\xc4\x00\xc5\x00\xc6\x00\xc7\x00\x00\x00\xc8\x00\xc9\x00\xca\x00\xcb\x00\x00\x00\x00\x00\xce\x00\x9f\x00\x13\x00\x00\x00\x00\x00\xd1\x00\xd2\x00\x00\x00\x00\x00\xa0\x00\x0d\x00\xd4\x00\x0e\x00\x0f\x00\x00\x00\xd5\x00\xbf\x00\xc0\x00\x00\x00\x00\x00\xc3\x00\xc4\x00\xc5\x00\xc6\x00\xc7\x00\x00\x00\xc8\x00\xc9\x00\xca\x00\xcb\x00\x00\x00\x00\x00\x00\x00\x9f\x00\x13\x00\x00\x00\x00\x00\xd1\x00\xd2\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd4\x00\x00\x00\x00\x00\x00\x00\xd5\x00\xbf\x00\xc0\x00\xc1\x00\xc2\x00\xc3\x00\xc4\x00\xc5\x00\xc6\x00\xc7\x00\x00\x00\xc8\x00\xc9\x00\xca\x00\xcb\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd1\x00\xd2\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd4\x00\xbf\x00\xc0\x00\x00\x00\xd5\x00\xc3\x00\xc4\x00\xc5\x00\xc6\x00\xc7\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\xd1\x00\xd2\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd4\x00\xbf\x00\xc0\x00\x00\x00\xd5\x00\xc3\x00\xc4\x00\xc5\x00\xc6\x00\xc7\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\xd4\x00\x00\x00\x00\x00\x00\x00\xd5\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"#

happyReduceArr = Happy_Data_Array.array (2, 239) [
	(2 , happyReduce_2),
	(3 , happyReduce_3),
	(4 , happyReduce_4),
	(5 , happyReduce_5),
	(6 , happyReduce_6),
	(7 , happyReduce_7),
	(8 , happyReduce_8),
	(9 , happyReduce_9),
	(10 , happyReduce_10),
	(11 , happyReduce_11),
	(12 , happyReduce_12),
	(13 , happyReduce_13),
	(14 , happyReduce_14),
	(15 , happyReduce_15),
	(16 , happyReduce_16),
	(17 , happyReduce_17),
	(18 , happyReduce_18),
	(19 , happyReduce_19),
	(20 , happyReduce_20),
	(21 , happyReduce_21),
	(22 , happyReduce_22),
	(23 , happyReduce_23),
	(24 , happyReduce_24),
	(25 , happyReduce_25),
	(26 , happyReduce_26),
	(27 , happyReduce_27),
	(28 , happyReduce_28),
	(29 , happyReduce_29),
	(30 , happyReduce_30),
	(31 , happyReduce_31),
	(32 , happyReduce_32),
	(33 , happyReduce_33),
	(34 , happyReduce_34),
	(35 , happyReduce_35),
	(36 , happyReduce_36),
	(37 , happyReduce_37),
	(38 , happyReduce_38),
	(39 , happyReduce_39),
	(40 , happyReduce_40),
	(41 , happyReduce_41),
	(42 , happyReduce_42),
	(43 , happyReduce_43),
	(44 , happyReduce_44),
	(45 , happyReduce_45),
	(46 , happyReduce_46),
	(47 , happyReduce_47),
	(48 , happyReduce_48),
	(49 , happyReduce_49),
	(50 , happyReduce_50),
	(51 , happyReduce_51),
	(52 , happyReduce_52),
	(53 , happyReduce_53),
	(54 , happyReduce_54),
	(55 , happyReduce_55),
	(56 , happyReduce_56),
	(57 , happyReduce_57),
	(58 , happyReduce_58),
	(59 , happyReduce_59),
	(60 , happyReduce_60),
	(61 , happyReduce_61),
	(62 , happyReduce_62),
	(63 , happyReduce_63),
	(64 , happyReduce_64),
	(65 , happyReduce_65),
	(66 , happyReduce_66),
	(67 , happyReduce_67),
	(68 , happyReduce_68),
	(69 , happyReduce_69),
	(70 , happyReduce_70),
	(71 , happyReduce_71),
	(72 , happyReduce_72),
	(73 , happyReduce_73),
	(74 , happyReduce_74),
	(75 , happyReduce_75),
	(76 , happyReduce_76),
	(77 , happyReduce_77),
	(78 , happyReduce_78),
	(79 , happyReduce_79),
	(80 , happyReduce_80),
	(81 , happyReduce_81),
	(82 , happyReduce_82),
	(83 , happyReduce_83),
	(84 , happyReduce_84),
	(85 , happyReduce_85),
	(86 , happyReduce_86),
	(87 , happyReduce_87),
	(88 , happyReduce_88),
	(89 , happyReduce_89),
	(90 , happyReduce_90),
	(91 , happyReduce_91),
	(92 , happyReduce_92),
	(93 , happyReduce_93),
	(94 , happyReduce_94),
	(95 , happyReduce_95),
	(96 , happyReduce_96),
	(97 , happyReduce_97),
	(98 , happyReduce_98),
	(99 , happyReduce_99),
	(100 , happyReduce_100),
	(101 , happyReduce_101),
	(102 , happyReduce_102),
	(103 , happyReduce_103),
	(104 , happyReduce_104),
	(105 , happyReduce_105),
	(106 , happyReduce_106),
	(107 , happyReduce_107),
	(108 , happyReduce_108),
	(109 , happyReduce_109),
	(110 , happyReduce_110),
	(111 , happyReduce_111),
	(112 , happyReduce_112),
	(113 , happyReduce_113),
	(114 , happyReduce_114),
	(115 , happyReduce_115),
	(116 , happyReduce_116),
	(117 , happyReduce_117),
	(118 , happyReduce_118),
	(119 , happyReduce_119),
	(120 , happyReduce_120),
	(121 , happyReduce_121),
	(122 , happyReduce_122),
	(123 , happyReduce_123),
	(124 , happyReduce_124),
	(125 , happyReduce_125),
	(126 , happyReduce_126),
	(127 , happyReduce_127),
	(128 , happyReduce_128),
	(129 , happyReduce_129),
	(130 , happyReduce_130),
	(131 , happyReduce_131),
	(132 , happyReduce_132),
	(133 , happyReduce_133),
	(134 , happyReduce_134),
	(135 , happyReduce_135),
	(136 , happyReduce_136),
	(137 , happyReduce_137),
	(138 , happyReduce_138),
	(139 , happyReduce_139),
	(140 , happyReduce_140),
	(141 , happyReduce_141),
	(142 , happyReduce_142),
	(143 , happyReduce_143),
	(144 , happyReduce_144),
	(145 , happyReduce_145),
	(146 , happyReduce_146),
	(147 , happyReduce_147),
	(148 , happyReduce_148),
	(149 , happyReduce_149),
	(150 , happyReduce_150),
	(151 , happyReduce_151),
	(152 , happyReduce_152),
	(153 , happyReduce_153),
	(154 , happyReduce_154),
	(155 , happyReduce_155),
	(156 , happyReduce_156),
	(157 , happyReduce_157),
	(158 , happyReduce_158),
	(159 , happyReduce_159),
	(160 , happyReduce_160),
	(161 , happyReduce_161),
	(162 , happyReduce_162),
	(163 , happyReduce_163),
	(164 , happyReduce_164),
	(165 , happyReduce_165),
	(166 , happyReduce_166),
	(167 , happyReduce_167),
	(168 , happyReduce_168),
	(169 , happyReduce_169),
	(170 , happyReduce_170),
	(171 , happyReduce_171),
	(172 , happyReduce_172),
	(173 , happyReduce_173),
	(174 , happyReduce_174),
	(175 , happyReduce_175),
	(176 , happyReduce_176),
	(177 , happyReduce_177),
	(178 , happyReduce_178),
	(179 , happyReduce_179),
	(180 , happyReduce_180),
	(181 , happyReduce_181),
	(182 , happyReduce_182),
	(183 , happyReduce_183),
	(184 , happyReduce_184),
	(185 , happyReduce_185),
	(186 , happyReduce_186),
	(187 , happyReduce_187),
	(188 , happyReduce_188),
	(189 , happyReduce_189),
	(190 , happyReduce_190),
	(191 , happyReduce_191),
	(192 , happyReduce_192),
	(193 , happyReduce_193),
	(194 , happyReduce_194),
	(195 , happyReduce_195),
	(196 , happyReduce_196),
	(197 , happyReduce_197),
	(198 , happyReduce_198),
	(199 , happyReduce_199),
	(200 , happyReduce_200),
	(201 , happyReduce_201),
	(202 , happyReduce_202),
	(203 , happyReduce_203),
	(204 , happyReduce_204),
	(205 , happyReduce_205),
	(206 , happyReduce_206),
	(207 , happyReduce_207),
	(208 , happyReduce_208),
	(209 , happyReduce_209),
	(210 , happyReduce_210),
	(211 , happyReduce_211),
	(212 , happyReduce_212),
	(213 , happyReduce_213),
	(214 , happyReduce_214),
	(215 , happyReduce_215),
	(216 , happyReduce_216),
	(217 , happyReduce_217),
	(218 , happyReduce_218),
	(219 , happyReduce_219),
	(220 , happyReduce_220),
	(221 , happyReduce_221),
	(222 , happyReduce_222),
	(223 , happyReduce_223),
	(224 , happyReduce_224),
	(225 , happyReduce_225),
	(226 , happyReduce_226),
	(227 , happyReduce_227),
	(228 , happyReduce_228),
	(229 , happyReduce_229),
	(230 , happyReduce_230),
	(231 , happyReduce_231),
	(232 , happyReduce_232),
	(233 , happyReduce_233),
	(234 , happyReduce_234),
	(235 , happyReduce_235),
	(236 , happyReduce_236),
	(237 , happyReduce_237),
	(238 , happyReduce_238),
	(239 , happyReduce_239)
	]

happy_n_terms = 153 :: Int
happy_n_nonterms = 49 :: Int

happyReduce_2 = happySpecReduce_2  0# happyReduction_2
happyReduction_2 happy_x_2
	happy_x_1
	 =  case happyOut5 happy_x_1 of { happy_var_1 -> 
	case happyOut8 happy_x_2 of { happy_var_2 -> 
	happyIn5
		 (GlobalProc     happy_var_2 : happy_var_1
	)}}

happyReduce_3 = happySpecReduce_2  0# happyReduction_3
happyReduction_3 happy_x_2
	happy_x_1
	 =  case happyOut5 happy_x_1 of { happy_var_1 -> 
	case happyOut9 happy_x_2 of { happy_var_2 -> 
	happyIn5
		 (GlobalInclProc happy_var_2 : happy_var_1
	)}}

happyReduce_4 = happySpecReduce_2  0# happyReduction_4
happyReduction_4 happy_x_2
	happy_x_1
	 =  case happyOut5 happy_x_1 of { happy_var_1 -> 
	case happyOut10 happy_x_2 of { happy_var_2 -> 
	happyIn5
		 (GlobalExtern   happy_var_2 : happy_var_1
	)}}

happyReduce_5 = happySpecReduce_2  0# happyReduction_5
happyReduction_5 happy_x_2
	happy_x_1
	 =  case happyOut5 happy_x_1 of { happy_var_1 -> 
	case happyOut38 happy_x_2 of { happy_var_2 -> 
	happyIn5
		 (GlobalStruct   happy_var_2 : happy_var_1
	)}}

happyReduce_6 = happySpecReduce_2  0# happyReduction_6
happyReduction_6 happy_x_2
	happy_x_1
	 =  case happyOut5 happy_x_1 of { happy_var_1 -> 
	case happyOut42 happy_x_2 of { happy_var_2 -> 
	happyIn5
		 (GlobalBitData  happy_var_2 : happy_var_1
	)}}

happyReduce_7 = happySpecReduce_2  0# happyReduction_7
happyReduction_7 happy_x_2
	happy_x_1
	 =  case happyOut5 happy_x_1 of { happy_var_1 -> 
	case happyOut27 happy_x_2 of { happy_var_2 -> 
	happyIn5
		 (GlobalTypeDef  happy_var_2 : happy_var_1
	)}}

happyReduce_8 = happySpecReduce_2  0# happyReduction_8
happyReduction_8 happy_x_2
	happy_x_1
	 =  case happyOut5 happy_x_1 of { happy_var_1 -> 
	case happyOut7 happy_x_2 of { happy_var_2 -> 
	happyIn5
		 (GlobalConstDef happy_var_2 : happy_var_1
	)}}

happyReduce_9 = happySpecReduce_2  0# happyReduction_9
happyReduction_9 happy_x_2
	happy_x_1
	 =  case happyOut5 happy_x_1 of { happy_var_1 -> 
	case happyOut6 happy_x_2 of { happy_var_2 -> 
	happyIn5
		 (GlobalInclude  happy_var_2 : happy_var_1
	)}}

happyReduce_10 = happySpecReduce_0  0# happyReduction_10
happyReduction_10  =  happyIn5
		 ([]
	)

happyReduce_11 = happySpecReduce_2  1# happyReduction_11
happyReduction_11 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "include")) -> 
	case happyOut52 happy_x_2 of { happy_var_2 -> 
	happyIn6
		 (IncludeDef (unLoc happy_var_2) (happy_var_1 <> getLoc happy_var_2)
	)}}

happyReduce_12 = happyReduce 4# 2# happyReduction_12
happyReduction_12 (happy_x_4 `HappyStk`
	happy_x_3 `HappyStk`
	happy_x_2 `HappyStk`
	happy_x_1 `HappyStk`
	happyRest)
	 = case happyOut52 happy_x_1 of { happy_var_1 -> 
	case happyOut25 happy_x_3 of { happy_var_3 -> 
	happyIn7
		 (ConstDef (unLoc happy_var_1) happy_var_3 Nothing   (getLoc happy_var_1 <> getLoc happy_var_3)
	) `HappyStk` happyRest}}

happyReduce_13 = happyReduce 5# 2# happyReduction_13
happyReduction_13 (happy_x_5 `HappyStk`
	happy_x_4 `HappyStk`
	happy_x_3 `HappyStk`
	happy_x_2 `HappyStk`
	happy_x_1 `HappyStk`
	happyRest)
	 = case happyOut28 happy_x_1 of { happy_var_1 -> 
	case happyOut52 happy_x_2 of { happy_var_2 -> 
	case happyOut25 happy_x_4 of { happy_var_4 -> 
	happyIn7
		 (ConstDef (unLoc happy_var_2) happy_var_4 (Just happy_var_1) (mconcat [ getLoc happy_var_1
                                                                       , getLoc happy_var_2
                                                                       , getLoc happy_var_4])
	) `HappyStk` happyRest}}}

happyReduce_14 = happyReduce 9# 3# happyReduction_14
happyReduction_14 (happy_x_9 `HappyStk`
	happy_x_8 `HappyStk`
	happy_x_7 `HappyStk`
	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 happyOut28 happy_x_1 of { happy_var_1 -> 
	case happyOut52 happy_x_2 of { happy_var_2 -> 
	case happyOut12 happy_x_4 of { happy_var_4 -> 
	case happyOut19 happy_x_7 of { happy_var_7 -> 
	case happyOut13 happy_x_9 of { happy_var_9 -> 
	happyIn8
		 (ProcDef happy_var_1 (unLoc happy_var_2) (reverse happy_var_4) (reverse happy_var_7) happy_var_9 (mconcat [ getLoc happy_var_1
                                                                  , getLoc happy_var_2
                                                                  , getLoc happy_var_7
                                                                  , getLoc happy_var_9
                                                                  ])
	) `HappyStk` happyRest}}}}}

happyReduce_15 = happyReduce 13# 4# happyReduction_15
happyReduction_15 (happy_x_13 `HappyStk`
	happy_x_12 `HappyStk`
	happy_x_11 `HappyStk`
	happy_x_10 `HappyStk`
	happy_x_9 `HappyStk`
	happy_x_8 `HappyStk`
	happy_x_7 `HappyStk`
	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 happyOut52 happy_x_3 of { happy_var_3 -> 
	case happyOut52 happy_x_5 of { happy_var_5 -> 
	case happyOut52 happy_x_7 of { happy_var_7 -> 
	case happyOut28 happy_x_9 of { happy_var_9 -> 
	case happyOut52 happy_x_10 of { happy_var_10 -> 
	case happyOut12 happy_x_12 of { happy_var_12 -> 
	happyIn9
		 (IncludeProc happy_var_9 (unLoc happy_var_10) (reverse happy_var_12) (unLoc happy_var_3 ++ ('.':unLoc happy_var_5), unLoc happy_var_7)
        (mconcat [ getLoc happy_var_3
                 , getLoc happy_var_7
                 , getLoc happy_var_10
                 ])
	) `HappyStk` happyRest}}}}}}

happyReduce_16 = happyReduce 6# 5# happyReduction_16
happyReduction_16 (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 happyOut52 happy_x_2 of { happy_var_2 -> 
	case happyOut52 happy_x_4 of { happy_var_4 -> 
	case happyOut28 happy_x_5 of { happy_var_5 -> 
	case happyOut52 happy_x_6 of { happy_var_6 -> 
	happyIn10
		 (Extern (unLoc happy_var_6) (unLoc happy_var_2 ++ ('.' : unLoc happy_var_4)) happy_var_5
             (mconcat [ getLoc happy_var_2, getLoc happy_var_4, getLoc happy_var_6])
	) `HappyStk` happyRest}}}}

happyReduce_17 = happySpecReduce_2  6# happyReduction_17
happyReduction_17 happy_x_2
	happy_x_1
	 =  case happyOut28 happy_x_1 of { happy_var_1 -> 
	case happyOut52 happy_x_2 of { happy_var_2 -> 
	happyIn11
		 ((happy_var_1, unLoc happy_var_2)
	)}}

happyReduce_18 = happySpecReduce_3  7# happyReduction_18
happyReduction_18 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOut12 happy_x_1 of { happy_var_1 -> 
	case happyOut11 happy_x_3 of { happy_var_3 -> 
	happyIn12
		 (happy_var_3 : happy_var_1
	)}}

happyReduce_19 = happySpecReduce_2  7# happyReduction_19
happyReduction_19 happy_x_2
	happy_x_1
	 =  case happyOut12 happy_x_1 of { happy_var_1 -> 
	happyIn12
		 (happy_var_1
	)}

happyReduce_20 = happySpecReduce_1  7# happyReduction_20
happyReduction_20 happy_x_1
	 =  case happyOut11 happy_x_1 of { happy_var_1 -> 
	happyIn12
		 ([happy_var_1]
	)}

happyReduce_21 = happySpecReduce_0  7# happyReduction_21
happyReduction_21  =  happyIn12
		 ([]
	)

happyReduce_22 = happySpecReduce_3  8# happyReduction_22
happyReduction_22 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOut14 happy_x_2 of { happy_var_2 -> 
	happyIn13
		 (reverse happy_var_2
	)}

happyReduce_23 = happySpecReduce_0  8# happyReduction_23
happyReduction_23  =  happyIn13
		 ([]
	)

happyReduce_24 = happySpecReduce_3  9# happyReduction_24
happyReduction_24 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOut14 happy_x_1 of { happy_var_1 -> 
	case happyOut15 happy_x_2 of { happy_var_2 -> 
	happyIn14
		 (happy_var_2 : happy_var_1
	)}}

happyReduce_25 = happySpecReduce_2  9# happyReduction_25
happyReduction_25 happy_x_2
	happy_x_1
	 =  case happyOut15 happy_x_1 of { happy_var_1 -> 
	happyIn14
		 ([happy_var_1]
	)}

happyReduce_26 = happyReduce 4# 10# happyReduction_26
happyReduction_26 (happy_x_4 `HappyStk`
	happy_x_3 `HappyStk`
	happy_x_2 `HappyStk`
	happy_x_1 `HappyStk`
	happyRest)
	 = case happyOut25 happy_x_3 of { happy_var_3 -> 
	happyIn15
		 (PreCond  happy_var_3
	) `HappyStk` happyRest}

happyReduce_27 = happyReduce 4# 10# happyReduction_27
happyReduction_27 (happy_x_4 `HappyStk`
	happy_x_3 `HappyStk`
	happy_x_2 `HappyStk`
	happy_x_1 `HappyStk`
	happyRest)
	 = case happyOut25 happy_x_3 of { happy_var_3 -> 
	happyIn15
		 (PostCond happy_var_3
	) `HappyStk` happyRest}

happyReduce_28 = happySpecReduce_2  11# happyReduction_28
happyReduction_28 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "assert")) -> 
	case happyOut25 happy_x_2 of { happy_var_2 -> 
	happyIn16
		 (LocStmt (atBin (Assert happy_var_2) happy_var_1 happy_var_2)
	)}}

happyReduce_29 = happySpecReduce_2  11# happyReduction_29
happyReduction_29 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "assume")) -> 
	case happyOut25 happy_x_2 of { happy_var_2 -> 
	happyIn16
		 (LocStmt (atBin (Assume happy_var_2) happy_var_1 happy_var_2)
	)}}

happyReduce_30 = happyReduce 4# 11# happyReduction_30
happyReduction_30 (happy_x_4 `HappyStk`
	happy_x_3 `HappyStk`
	happy_x_2 `HappyStk`
	happy_x_1 `HappyStk`
	happyRest)
	 = case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "let")) -> 
	case happyOut52 happy_x_2 of { happy_var_2 -> 
	case happyOut25 happy_x_4 of { happy_var_4 -> 
	happyIn16
		 (LocStmt (atList (Assign (unLoc happy_var_2) happy_var_4 Nothing)
                                      [ happy_var_1, getLoc happy_var_2, getLoc happy_var_4 ])
	) `HappyStk` happyRest}}}

happyReduce_31 = happyReduce 5# 11# happyReduction_31
happyReduction_31 (happy_x_5 `HappyStk`
	happy_x_4 `HappyStk`
	happy_x_3 `HappyStk`
	happy_x_2 `HappyStk`
	happy_x_1 `HappyStk`
	happyRest)
	 = case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "let")) -> 
	case happyOut28 happy_x_2 of { happy_var_2 -> 
	case happyOut52 happy_x_3 of { happy_var_3 -> 
	case happyOut25 happy_x_5 of { happy_var_5 -> 
	happyIn16
		 (LocStmt (atList (Assign (unLoc happy_var_3) happy_var_5 (Just happy_var_2))
                                                    [ happy_var_1, getLoc happy_var_2, getLoc happy_var_3, getLoc happy_var_5])
	) `HappyStk` happyRest}}}}

happyReduce_32 = happySpecReduce_1  11# happyReduction_32
happyReduction_32 happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "return")) -> 
	happyIn16
		 (LocStmt (ReturnVoid `at` happy_var_1)
	)}

happyReduce_33 = happySpecReduce_2  11# happyReduction_33
happyReduction_33 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "return")) -> 
	case happyOut25 happy_x_2 of { happy_var_2 -> 
	happyIn16
		 (LocStmt (atBin (Return happy_var_2) happy_var_1 happy_var_2)
	)}}

happyReduce_34 = happySpecReduce_3  11# happyReduction_34
happyReduction_34 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "alloc")) -> 
	case happyOut52 happy_x_3 of { happy_var_3 -> 
	happyIn16
		 (LocStmt (atBin (AllocRef (AllocBase (unLoc happy_var_3) Nothing))
                                               happy_var_1 happy_var_3)
	)}}

happyReduce_35 = happyReduce 5# 11# happyReduction_35
happyReduction_35 (happy_x_5 `HappyStk`
	happy_x_4 `HappyStk`
	happy_x_3 `HappyStk`
	happy_x_2 `HappyStk`
	happy_x_1 `HappyStk`
	happyRest)
	 = case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "alloc")) -> 
	case happyOut52 happy_x_3 of { happy_var_3 -> 
	case happyOut25 happy_x_5 of { happy_var_5 -> 
	happyIn16
		 (LocStmt (atList (AllocRef (AllocBase (unLoc happy_var_3) (Just happy_var_5)))
                                               [happy_var_1, getLoc happy_var_3, getLoc happy_var_5])
	) `HappyStk` happyRest}}}

happyReduce_36 = happyReduce 4# 11# happyReduction_36
happyReduction_36 (happy_x_4 `HappyStk`
	happy_x_3 `HappyStk`
	happy_x_2 `HappyStk`
	happy_x_1 `HappyStk`
	happyRest)
	 = case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "alloc")) -> 
	case happyOut52 happy_x_2 of { happy_var_2 -> 
	happyIn16
		 (LocStmt (atBin (AllocRef (AllocArr (unLoc happy_var_2) []))
                                               happy_var_1 happy_var_2)
	) `HappyStk` happyRest}}

happyReduce_37 = happyReduce 8# 11# happyReduction_37
happyReduction_37 (happy_x_8 `HappyStk`
	happy_x_7 `HappyStk`
	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 happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "alloc")) -> 
	case happyOut52 happy_x_2 of { happy_var_2 -> 
	case happyOut21 happy_x_7 of { happy_var_7 -> 
	happyIn16
		 (LocStmt (atList (AllocRef (AllocArr (unLoc happy_var_2) (reverse happy_var_7)))
                                               [ happy_var_1, getLoc happy_var_2, getLoc happy_var_7])
	) `HappyStk` happyRest}}}

happyReduce_38 = happyReduce 4# 11# happyReduction_38
happyReduction_38 (happy_x_4 `HappyStk`
	happy_x_3 `HappyStk`
	happy_x_2 `HappyStk`
	happy_x_1 `HappyStk`
	happyRest)
	 = case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "alloc")) -> 
	case happyOut52 happy_x_2 of { happy_var_2 -> 
	happyIn16
		 (LocStmt (atBin (AllocRef (AllocStruct (unLoc happy_var_2) Empty))
                                               happy_var_1 happy_var_2)
	) `HappyStk` happyRest}}

happyReduce_39 = happyReduce 6# 11# happyReduction_39
happyReduction_39 (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 happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "alloc")) -> 
	case happyOut52 happy_x_2 of { happy_var_2 -> 
	case happyOut22 happy_x_6 of { happy_var_6 -> 
	happyIn16
		 (LocStmt (atBin (AllocRef (AllocStruct (unLoc happy_var_2) happy_var_6))
                                               happy_var_1 happy_var_2)
	) `HappyStk` happyRest}}}

happyReduce_40 = happySpecReduce_3  11# happyReduction_40
happyReduction_40 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "memcpy")) -> 
	case happyOut52 happy_x_2 of { happy_var_2 -> 
	case happyOut52 happy_x_3 of { happy_var_3 -> 
	happyIn16
		 (LocStmt (atList (RefCopy (ExpVar (unLoc happy_var_2)) (ExpVar (unLoc happy_var_3)))
                                               [happy_var_1, getLoc happy_var_2, getLoc happy_var_3])
	)}}}

happyReduce_41 = happyReduce 4# 11# happyReduction_41
happyReduction_41 (happy_x_4 `HappyStk`
	happy_x_3 `HappyStk`
	happy_x_2 `HappyStk`
	happy_x_1 `HappyStk`
	happyRest)
	 = case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "store")) -> 
	case happyOut25 happy_x_2 of { happy_var_2 -> 
	case happyOut25 happy_x_4 of { happy_var_4 -> 
	happyIn16
		 (LocStmt (atList (Store happy_var_2 happy_var_4) [happy_var_1, getLoc happy_var_2, getLoc happy_var_4])
	) `HappyStk` happyRest}}}

happyReduce_42 = happySpecReduce_2  11# happyReduction_42
happyReduction_42 happy_x_2
	happy_x_1
	 =  case happyOut52 happy_x_1 of { happy_var_1 -> 
	case happyOut20 happy_x_2 of { happy_var_2 -> 
	happyIn16
		 (LocStmt (atBin (NoBindCall (unLoc happy_var_1) happy_var_2) happy_var_1 happy_var_2)
	)}}

happyReduce_43 = happySpecReduce_1  11# happyReduction_43
happyReduction_43 happy_x_1
	 =  case happyOut17 happy_x_1 of { happy_var_1 -> 
	happyIn16
		 (LocStmt ((IvoryMacroStmt Nothing (unLoc happy_var_1)) `at` getLoc happy_var_1)
	)}

happyReduce_44 = happySpecReduce_3  11# happyReduction_44
happyReduction_44 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOut52 happy_x_1 of { happy_var_1 -> 
	case happyOut17 happy_x_3 of { happy_var_3 -> 
	happyIn16
		 (LocStmt (atBin (IvoryMacroStmt (Just (unLoc happy_var_1)) (unLoc happy_var_3))
                                               happy_var_1 happy_var_3)
	)}}

happyReduce_45 = happySpecReduce_1  11# happyReduction_45
happyReduction_45 happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "break")) -> 
	happyIn16
		 (LocStmt (Break `at` happy_var_1)
	)}

happyReduce_46 = happySpecReduce_2  12# happyReduction_46
happyReduction_46 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokSym "$")) -> 
	case happyOut52 happy_x_2 of { happy_var_2 -> 
	happyIn17
		 (atBin (unLoc happy_var_2, []) happy_var_1 (getLoc happy_var_2)
	)}}

happyReduce_47 = happySpecReduce_3  12# happyReduction_47
happyReduction_47 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokSym "$")) -> 
	case happyOut52 happy_x_2 of { happy_var_2 -> 
	case happyOut20 happy_x_3 of { happy_var_3 -> 
	happyIn17
		 (atList (unLoc happy_var_2, happy_var_3) [happy_var_1, getLoc happy_var_2, getLoc happy_var_3]
	)}}}

happyReduce_48 = happyReduce 5# 13# happyReduction_48
happyReduction_48 (happy_x_5 `HappyStk`
	happy_x_4 `HappyStk`
	happy_x_3 `HappyStk`
	happy_x_2 `HappyStk`
	happy_x_1 `HappyStk`
	happyRest)
	 = case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "map")) -> 
	case happyOut52 happy_x_2 of { happy_var_2 -> 
	case happyOut19 happy_x_4 of { happy_var_4 -> 
	happyIn18
		 (LocStmt (atList (MapArr (unLoc happy_var_2) (reverse happy_var_4))
                                                        [happy_var_1, getLoc happy_var_2, getLoc happy_var_4])
	) `HappyStk` happyRest}}}

happyReduce_49 = happyReduce 6# 13# happyReduction_49
happyReduction_49 (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 happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "upTo")) -> 
	case happyOut25 happy_x_2 of { happy_var_2 -> 
	case happyOut52 happy_x_3 of { happy_var_3 -> 
	case happyOut19 happy_x_5 of { happy_var_5 -> 
	happyIn18
		 (LocStmt (atList (UpTo happy_var_2 (unLoc happy_var_3) (reverse happy_var_5))
                                                        [happy_var_1, getLoc happy_var_2, getLoc happy_var_3, getLoc happy_var_5])
	) `HappyStk` happyRest}}}}

happyReduce_50 = happyReduce 7# 13# happyReduction_50
happyReduction_50 (happy_x_7 `HappyStk`
	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 happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "upFromTo")) -> 
	case happyOut25 happy_x_2 of { happy_var_2 -> 
	case happyOut25 happy_x_3 of { happy_var_3 -> 
	case happyOut52 happy_x_4 of { happy_var_4 -> 
	case happyOut19 happy_x_6 of { happy_var_6 -> 
	happyIn18
		 (LocStmt (atList (UpFromTo happy_var_2 happy_var_3 (unLoc happy_var_4) (reverse happy_var_6))
                                                        [happy_var_1, getLoc happy_var_2, getLoc happy_var_3, getLoc happy_var_4, getLoc happy_var_6])
	) `HappyStk` happyRest}}}}}

happyReduce_51 = happyReduce 6# 13# happyReduction_51
happyReduction_51 (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 happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "downFrom")) -> 
	case happyOut25 happy_x_2 of { happy_var_2 -> 
	case happyOut52 happy_x_3 of { happy_var_3 -> 
	case happyOut19 happy_x_5 of { happy_var_5 -> 
	happyIn18
		 (LocStmt (atList (DownFrom happy_var_2 (unLoc happy_var_3) (reverse happy_var_5))
                                                        [happy_var_1, getLoc happy_var_2, getLoc happy_var_3, getLoc happy_var_5])
	) `HappyStk` happyRest}}}}

happyReduce_52 = happyReduce 7# 13# happyReduction_52
happyReduction_52 (happy_x_7 `HappyStk`
	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 happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "downFromTo")) -> 
	case happyOut25 happy_x_2 of { happy_var_2 -> 
	case happyOut25 happy_x_3 of { happy_var_3 -> 
	case happyOut52 happy_x_4 of { happy_var_4 -> 
	case happyOut19 happy_x_6 of { happy_var_6 -> 
	happyIn18
		 (LocStmt (atList (DownFromTo happy_var_2 happy_var_3 (unLoc happy_var_4) (reverse happy_var_6))
                                                        [happy_var_1, getLoc happy_var_2, getLoc happy_var_3, getLoc happy_var_4, getLoc happy_var_6])
	) `HappyStk` happyRest}}}}}

happyReduce_53 = happyReduce 4# 13# happyReduction_53
happyReduction_53 (happy_x_4 `HappyStk`
	happy_x_3 `HappyStk`
	happy_x_2 `HappyStk`
	happy_x_1 `HappyStk`
	happyRest)
	 = case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "forever")) -> 
	case happyOutTok happy_x_2 of { (Located happy_var_2 (TokBrack "{")) -> 
	case happyOut19 happy_x_3 of { happy_var_3 -> 
	happyIn18
		 (LocStmt (atBin (Forever (reverse happy_var_3)) happy_var_1 happy_var_2)
	) `HappyStk` happyRest}}}

happyReduce_54 = happyReduce 9# 13# happyReduction_54
happyReduction_54 (happy_x_9 `HappyStk`
	happy_x_8 `HappyStk`
	happy_x_7 `HappyStk`
	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 happyOut25 happy_x_2 of { happy_var_2 -> 
	case happyOut19 happy_x_4 of { happy_var_4 -> 
	case happyOut19 happy_x_8 of { happy_var_8 -> 
	happyIn18
		 (LocStmt (atList (IfTE happy_var_2 (reverse happy_var_4) (reverse happy_var_8))
                                                        [ getLoc happy_var_2, getLoc happy_var_4, getLoc happy_var_8 ])
	) `HappyStk` happyRest}}}

happyReduce_55 = happySpecReduce_3  14# happyReduction_55
happyReduction_55 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOut19 happy_x_1 of { happy_var_1 -> 
	case happyOut16 happy_x_2 of { happy_var_2 -> 
	happyIn19
		 (happy_var_2 : happy_var_1
	)}}

happyReduce_56 = happySpecReduce_2  14# happyReduction_56
happyReduction_56 happy_x_2
	happy_x_1
	 =  case happyOut19 happy_x_1 of { happy_var_1 -> 
	case happyOut18 happy_x_2 of { happy_var_2 -> 
	happyIn19
		 (happy_var_2 : happy_var_1
	)}}

happyReduce_57 = happySpecReduce_0  14# happyReduction_57
happyReduction_57  =  happyIn19
		 ([]
	)

happyReduce_58 = happySpecReduce_3  15# happyReduction_58
happyReduction_58 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOut21 happy_x_2 of { happy_var_2 -> 
	happyIn20
		 (reverse happy_var_2
	)}

happyReduce_59 = happySpecReduce_3  16# happyReduction_59
happyReduction_59 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOut21 happy_x_1 of { happy_var_1 -> 
	case happyOut25 happy_x_3 of { happy_var_3 -> 
	happyIn21
		 (happy_var_3 : happy_var_1
	)}}

happyReduce_60 = happySpecReduce_2  16# happyReduction_60
happyReduction_60 happy_x_2
	happy_x_1
	 =  case happyOut21 happy_x_1 of { happy_var_1 -> 
	happyIn21
		 (happy_var_1
	)}

happyReduce_61 = happySpecReduce_1  16# happyReduction_61
happyReduction_61 happy_x_1
	 =  case happyOut25 happy_x_1 of { happy_var_1 -> 
	happyIn21
		 ([happy_var_1]
	)}

happyReduce_62 = happySpecReduce_0  16# happyReduction_62
happyReduction_62  =  happyIn21
		 ([]
	)

happyReduce_63 = happySpecReduce_1  17# happyReduction_63
happyReduction_63 happy_x_1
	 =  case happyOut17 happy_x_1 of { happy_var_1 -> 
	happyIn22
		 (MacroInit (unLoc happy_var_1)
	)}

happyReduce_64 = happySpecReduce_3  17# happyReduction_64
happyReduction_64 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOut23 happy_x_2 of { happy_var_2 -> 
	happyIn22
		 (FieldInits happy_var_2
	)}

happyReduce_65 = happySpecReduce_3  18# happyReduction_65
happyReduction_65 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOut23 happy_x_1 of { happy_var_1 -> 
	case happyOut24 happy_x_3 of { happy_var_3 -> 
	happyIn23
		 (happy_var_3 : happy_var_1
	)}}

happyReduce_66 = happySpecReduce_2  18# happyReduction_66
happyReduction_66 happy_x_2
	happy_x_1
	 =  case happyOut23 happy_x_1 of { happy_var_1 -> 
	happyIn23
		 (happy_var_1
	)}

happyReduce_67 = happySpecReduce_1  18# happyReduction_67
happyReduction_67 happy_x_1
	 =  case happyOut24 happy_x_1 of { happy_var_1 -> 
	happyIn23
		 ([happy_var_1]
	)}

happyReduce_68 = happySpecReduce_0  18# happyReduction_68
happyReduction_68  =  happyIn23
		 ([]
	)

happyReduce_69 = happySpecReduce_3  19# happyReduction_69
happyReduction_69 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOut52 happy_x_1 of { happy_var_1 -> 
	case happyOut25 happy_x_3 of { happy_var_3 -> 
	happyIn24
		 ((unLoc happy_var_1, happy_var_3)
	)}}

happyReduce_70 = happySpecReduce_1  20# happyReduction_70
happyReduction_70 happy_x_1
	 =  case happyOutTok happy_x_1 of { (happy_var_1@Located { locValue = TokInteger _ }) -> 
	happyIn25
		 (let TokInteger i = unLoc happy_var_1 in
                           LocExp (ExpLit (LitInteger i) `at` happy_var_1)
	)}

happyReduce_71 = happySpecReduce_1  20# happyReduction_71
happyReduction_71 happy_x_1
	 =  case happyOutTok happy_x_1 of { (happy_var_1@Located { locValue = TokString _  }) -> 
	happyIn25
		 (let TokString s = unLoc happy_var_1 in
                           LocExp (ExpLit (LitString s) `at` happy_var_1)
	)}

happyReduce_72 = happySpecReduce_1  20# happyReduction_72
happyReduction_72 happy_x_1
	 =  case happyOutTok happy_x_1 of { (happy_var_1@Located { locValue = TokFloat   _ }) -> 
	happyIn25
		 (let TokFloat f = unLoc happy_var_1 in
                           LocExp (ExpLit (LitFloat f) `at` happy_var_1)
	)}

happyReduce_73 = happySpecReduce_1  20# happyReduction_73
happyReduction_73 happy_x_1
	 =  case happyOut52 happy_x_1 of { happy_var_1 -> 
	happyIn25
		 (LocExp ((ExpVar (unLoc happy_var_1)) `at` happy_var_1)
	)}

happyReduce_74 = happySpecReduce_1  20# happyReduction_74
happyReduction_74 happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "return")) -> 
	happyIn25
		 (LocExp (ExpRet `at` happy_var_1)
	)}

happyReduce_75 = happySpecReduce_3  20# happyReduction_75
happyReduction_75 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOut25 happy_x_2 of { happy_var_2 -> 
	happyIn25
		 (happy_var_2
	)}

happyReduce_76 = happySpecReduce_2  20# happyReduction_76
happyReduction_76 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokSym "*")) -> 
	case happyOut25 happy_x_2 of { happy_var_2 -> 
	happyIn25
		 (LocExp (atBin (ExpDeref happy_var_2) happy_var_1 happy_var_2)
	)}}

happyReduce_77 = happySpecReduce_3  20# happyReduction_77
happyReduction_77 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOut25 happy_x_1 of { happy_var_1 -> 
	case happyOut25 happy_x_3 of { happy_var_3 -> 
	happyIn25
		 (LocExp (atBin (ExpArray happy_var_1 happy_var_3) happy_var_1 happy_var_3)
	)}}

happyReduce_78 = happyReduce 4# 20# happyReduction_78
happyReduction_78 (happy_x_4 `HappyStk`
	happy_x_3 `HappyStk`
	happy_x_2 `HappyStk`
	happy_x_1 `HappyStk`
	happyRest)
	 = case happyOut25 happy_x_1 of { happy_var_1 -> 
	case happyOut25 happy_x_3 of { happy_var_3 -> 
	happyIn25
		 (LocExp (atBin (ExpDeref (ExpArray happy_var_1 happy_var_3)) happy_var_1 happy_var_3)
	) `HappyStk` happyRest}}

happyReduce_79 = happySpecReduce_3  20# happyReduction_79
happyReduction_79 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOut25 happy_x_1 of { happy_var_1 -> 
	case happyOut25 happy_x_3 of { happy_var_3 -> 
	happyIn25
		 (LocExp (atBin (ExpStruct happy_var_1 happy_var_3) happy_var_1 happy_var_3)
	)}}

happyReduce_80 = happySpecReduce_3  20# happyReduction_80
happyReduction_80 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOut25 happy_x_1 of { happy_var_1 -> 
	case happyOut25 happy_x_3 of { happy_var_3 -> 
	happyIn25
		 (LocExp (atBin (ExpDeref (ExpStruct happy_var_1 happy_var_3)) happy_var_1 happy_var_3)
	)}}

happyReduce_81 = happySpecReduce_2  20# happyReduction_81
happyReduction_81 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokSym "&")) -> 
	case happyOut52 happy_x_2 of { happy_var_2 -> 
	happyIn25
		 (LocExp (atBin (ExpAddrOf (unLoc happy_var_2)) happy_var_1 happy_var_2)
	)}}

happyReduce_82 = happySpecReduce_1  20# happyReduction_82
happyReduction_82 happy_x_1
	 =  case happyOut26 happy_x_1 of { happy_var_1 -> 
	happyIn25
		 (happy_var_1
	)}

happyReduce_83 = happySpecReduce_1  20# happyReduction_83
happyReduction_83 happy_x_1
	 =  case happyOut17 happy_x_1 of { happy_var_1 -> 
	happyIn25
		 (LocExp (IvoryMacroExp `fmap` happy_var_1)
	)}

happyReduce_84 = happySpecReduce_2  20# happyReduction_84
happyReduction_84 happy_x_2
	happy_x_1
	 =  case happyOut52 happy_x_1 of { happy_var_1 -> 
	case happyOut20 happy_x_2 of { happy_var_2 -> 
	happyIn25
		 (LocExp (atBin (ExpCall (unLoc happy_var_1) happy_var_2) happy_var_1 happy_var_2)
	)}}

happyReduce_85 = happySpecReduce_2  20# happyReduction_85
happyReduction_85 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokSym "!")) -> 
	case happyOut25 happy_x_2 of { happy_var_2 -> 
	happyIn25
		 (LocExp (atBin (ExpOp NotOp [happy_var_2]) happy_var_1 happy_var_2)
	)}}

happyReduce_86 = happySpecReduce_2  20# happyReduction_86
happyReduction_86 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokSym "-")) -> 
	case happyOut25 happy_x_2 of { happy_var_2 -> 
	happyIn25
		 (LocExp (atBin (ExpOp NegateOp [happy_var_2]) happy_var_1 happy_var_2)
	)}}

happyReduce_87 = happySpecReduce_2  20# happyReduction_87
happyReduction_87 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokSym "~")) -> 
	case happyOut25 happy_x_2 of { happy_var_2 -> 
	happyIn25
		 (LocExp (atBin (ExpOp BitComplementOp [happy_var_2]) happy_var_1 happy_var_2)
	)}}

happyReduce_88 = happySpecReduce_3  20# happyReduction_88
happyReduction_88 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOut25 happy_x_1 of { happy_var_1 -> 
	case happyOut25 happy_x_3 of { happy_var_3 -> 
	happyIn25
		 (LocExp (atBin (ExpOp OrOp [happy_var_1, happy_var_3]) happy_var_1 happy_var_3)
	)}}

happyReduce_89 = happySpecReduce_3  20# happyReduction_89
happyReduction_89 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOut25 happy_x_1 of { happy_var_1 -> 
	case happyOut25 happy_x_3 of { happy_var_3 -> 
	happyIn25
		 (LocExp (atBin (ExpOp AndOp [happy_var_1, happy_var_3]) happy_var_1 happy_var_3)
	)}}

happyReduce_90 = happySpecReduce_3  20# happyReduction_90
happyReduction_90 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOut25 happy_x_1 of { happy_var_1 -> 
	case happyOut25 happy_x_3 of { happy_var_3 -> 
	happyIn25
		 (LocExp (atBin (ExpOp BitOrOp [happy_var_1, happy_var_3]) happy_var_1 happy_var_3)
	)}}

happyReduce_91 = happySpecReduce_3  20# happyReduction_91
happyReduction_91 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOut25 happy_x_1 of { happy_var_1 -> 
	case happyOut25 happy_x_3 of { happy_var_3 -> 
	happyIn25
		 (LocExp (atBin (ExpOp BitXorOp [happy_var_1, happy_var_3]) happy_var_1 happy_var_3)
	)}}

happyReduce_92 = happySpecReduce_3  20# happyReduction_92
happyReduction_92 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOut25 happy_x_1 of { happy_var_1 -> 
	case happyOut25 happy_x_3 of { happy_var_3 -> 
	happyIn25
		 (LocExp (atBin (ExpOp BitAndOp [happy_var_1, happy_var_3]) happy_var_1 happy_var_3)
	)}}

happyReduce_93 = happySpecReduce_3  20# happyReduction_93
happyReduction_93 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOut25 happy_x_1 of { happy_var_1 -> 
	case happyOut25 happy_x_3 of { happy_var_3 -> 
	happyIn25
		 (LocExp (atBin (ExpOp BitShiftLOp [happy_var_1, happy_var_3]) happy_var_1 happy_var_3)
	)}}

happyReduce_94 = happySpecReduce_3  20# happyReduction_94
happyReduction_94 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOut25 happy_x_1 of { happy_var_1 -> 
	case happyOut25 happy_x_3 of { happy_var_3 -> 
	happyIn25
		 (LocExp (atBin (ExpOp BitShiftROp [happy_var_1, happy_var_3]) happy_var_1 happy_var_3)
	)}}

happyReduce_95 = happySpecReduce_3  20# happyReduction_95
happyReduction_95 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOut25 happy_x_1 of { happy_var_1 -> 
	case happyOut25 happy_x_3 of { happy_var_3 -> 
	happyIn25
		 (LocExp (atBin (ExpOp EqOp [happy_var_1, happy_var_3]) happy_var_1 happy_var_3)
	)}}

happyReduce_96 = happySpecReduce_3  20# happyReduction_96
happyReduction_96 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOut25 happy_x_1 of { happy_var_1 -> 
	case happyOut25 happy_x_3 of { happy_var_3 -> 
	happyIn25
		 (LocExp (atBin (ExpOp NeqOp [happy_var_1, happy_var_3]) happy_var_1 happy_var_3)
	)}}

happyReduce_97 = happySpecReduce_3  20# happyReduction_97
happyReduction_97 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOut25 happy_x_1 of { happy_var_1 -> 
	case happyOut25 happy_x_3 of { happy_var_3 -> 
	happyIn25
		 (LocExp (atBin (ExpOp (LtOp False) [happy_var_1, happy_var_3]) happy_var_1 happy_var_3)
	)}}

happyReduce_98 = happySpecReduce_3  20# happyReduction_98
happyReduction_98 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOut25 happy_x_1 of { happy_var_1 -> 
	case happyOut25 happy_x_3 of { happy_var_3 -> 
	happyIn25
		 (LocExp (atBin (ExpOp (LtOp True) [happy_var_1, happy_var_3] ) happy_var_1 happy_var_3)
	)}}

happyReduce_99 = happySpecReduce_3  20# happyReduction_99
happyReduction_99 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOut25 happy_x_1 of { happy_var_1 -> 
	case happyOut25 happy_x_3 of { happy_var_3 -> 
	happyIn25
		 (LocExp (atBin (ExpOp (GtOp False) [happy_var_1, happy_var_3]) happy_var_1 happy_var_3)
	)}}

happyReduce_100 = happySpecReduce_3  20# happyReduction_100
happyReduction_100 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOut25 happy_x_1 of { happy_var_1 -> 
	case happyOut25 happy_x_3 of { happy_var_3 -> 
	happyIn25
		 (LocExp (atBin (ExpOp (GtOp True) [happy_var_1, happy_var_3] ) happy_var_1 happy_var_3)
	)}}

happyReduce_101 = happySpecReduce_3  20# happyReduction_101
happyReduction_101 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOut25 happy_x_1 of { happy_var_1 -> 
	case happyOut25 happy_x_3 of { happy_var_3 -> 
	happyIn25
		 (LocExp (atBin (ExpOp AddOp [happy_var_1, happy_var_3]) happy_var_1 happy_var_3)
	)}}

happyReduce_102 = happySpecReduce_3  20# happyReduction_102
happyReduction_102 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOut25 happy_x_1 of { happy_var_1 -> 
	case happyOut25 happy_x_3 of { happy_var_3 -> 
	happyIn25
		 (LocExp (atBin (ExpOp SubOp [happy_var_1, happy_var_3]) happy_var_1 happy_var_3)
	)}}

happyReduce_103 = happySpecReduce_3  20# happyReduction_103
happyReduction_103 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOut25 happy_x_1 of { happy_var_1 -> 
	case happyOut25 happy_x_3 of { happy_var_3 -> 
	happyIn25
		 (LocExp (atBin (ExpOp MulOp [happy_var_1, happy_var_3]) happy_var_1 happy_var_3)
	)}}

happyReduce_104 = happySpecReduce_3  20# happyReduction_104
happyReduction_104 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOut25 happy_x_1 of { happy_var_1 -> 
	case happyOut25 happy_x_3 of { happy_var_3 -> 
	happyIn25
		 (LocExp (atBin (ExpOp DivOp [happy_var_1, happy_var_3]) happy_var_1 happy_var_3)
	)}}

happyReduce_105 = happySpecReduce_3  20# happyReduction_105
happyReduction_105 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOut25 happy_x_1 of { happy_var_1 -> 
	case happyOut25 happy_x_3 of { happy_var_3 -> 
	happyIn25
		 (LocExp (atBin (ExpOp ModOp [happy_var_1, happy_var_3]) happy_var_1 happy_var_3)
	)}}

happyReduce_106 = happyReduce 5# 20# happyReduction_106
happyReduction_106 (happy_x_5 `HappyStk`
	happy_x_4 `HappyStk`
	happy_x_3 `HappyStk`
	happy_x_2 `HappyStk`
	happy_x_1 `HappyStk`
	happyRest)
	 = case happyOut25 happy_x_1 of { happy_var_1 -> 
	case happyOut25 happy_x_3 of { happy_var_3 -> 
	case happyOut25 happy_x_5 of { happy_var_5 -> 
	happyIn25
		 (LocExp ((ExpOp CondOp [happy_var_1, happy_var_3, happy_var_5]) `at` (getLoc [happy_var_1, happy_var_3, happy_var_5]))
	) `HappyStk` happyRest}}}

happyReduce_107 = happySpecReduce_2  21# happyReduction_107
happyReduction_107 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "abs")) -> 
	case happyOut20 happy_x_2 of { happy_var_2 -> 
	happyIn26
		 (LocExp (atBin (ExpOp AbsOp happy_var_2) happy_var_1 happy_var_2)
	)}}

happyReduce_108 = happySpecReduce_2  21# happyReduction_108
happyReduction_108 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "signum")) -> 
	case happyOut20 happy_x_2 of { happy_var_2 -> 
	happyIn26
		 (LocExp (atBin (ExpOp SignumOp happy_var_2) happy_var_1 happy_var_2)
	)}}

happyReduce_109 = happySpecReduce_2  21# happyReduction_109
happyReduction_109 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "exp")) -> 
	case happyOut20 happy_x_2 of { happy_var_2 -> 
	happyIn26
		 (LocExp (atBin (ExpOp FExpOp happy_var_2) happy_var_1 happy_var_2)
	)}}

happyReduce_110 = happySpecReduce_2  21# happyReduction_110
happyReduction_110 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "sqrt")) -> 
	case happyOut20 happy_x_2 of { happy_var_2 -> 
	happyIn26
		 (LocExp (atBin (ExpOp FSqrtOp happy_var_2) happy_var_1 happy_var_2)
	)}}

happyReduce_111 = happySpecReduce_2  21# happyReduction_111
happyReduction_111 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "log")) -> 
	case happyOut20 happy_x_2 of { happy_var_2 -> 
	happyIn26
		 (LocExp (atBin (ExpOp FLogOp happy_var_2) happy_var_1 happy_var_2)
	)}}

happyReduce_112 = happySpecReduce_2  21# happyReduction_112
happyReduction_112 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "pow")) -> 
	case happyOut20 happy_x_2 of { happy_var_2 -> 
	happyIn26
		 (LocExp (atBin (ExpOp FPowOp happy_var_2) happy_var_1 happy_var_2)
	)}}

happyReduce_113 = happySpecReduce_2  21# happyReduction_113
happyReduction_113 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "sin")) -> 
	case happyOut20 happy_x_2 of { happy_var_2 -> 
	happyIn26
		 (LocExp (atBin (ExpOp FSinOp happy_var_2) happy_var_1 happy_var_2)
	)}}

happyReduce_114 = happySpecReduce_2  21# happyReduction_114
happyReduction_114 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "cos")) -> 
	case happyOut20 happy_x_2 of { happy_var_2 -> 
	happyIn26
		 (LocExp (atBin (ExpOp FCosOp happy_var_2) happy_var_1 happy_var_2)
	)}}

happyReduce_115 = happySpecReduce_2  21# happyReduction_115
happyReduction_115 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "tan")) -> 
	case happyOut20 happy_x_2 of { happy_var_2 -> 
	happyIn26
		 (LocExp (atBin (ExpOp FTanOp happy_var_2) happy_var_1 happy_var_2)
	)}}

happyReduce_116 = happySpecReduce_2  21# happyReduction_116
happyReduction_116 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "asin")) -> 
	case happyOut20 happy_x_2 of { happy_var_2 -> 
	happyIn26
		 (LocExp (atBin (ExpOp FAsinOp happy_var_2) happy_var_1 happy_var_2)
	)}}

happyReduce_117 = happySpecReduce_2  21# happyReduction_117
happyReduction_117 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "acos")) -> 
	case happyOut20 happy_x_2 of { happy_var_2 -> 
	happyIn26
		 (LocExp (atBin (ExpOp FAcosOp happy_var_2) happy_var_1 happy_var_2)
	)}}

happyReduce_118 = happySpecReduce_2  21# happyReduction_118
happyReduction_118 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "atan")) -> 
	case happyOut20 happy_x_2 of { happy_var_2 -> 
	happyIn26
		 (LocExp (atBin (ExpOp FAtanOp happy_var_2) happy_var_1 happy_var_2)
	)}}

happyReduce_119 = happySpecReduce_2  21# happyReduction_119
happyReduction_119 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "atan2")) -> 
	case happyOut20 happy_x_2 of { happy_var_2 -> 
	happyIn26
		 (LocExp (atBin (ExpOp FAtan2Op happy_var_2) happy_var_1 happy_var_2)
	)}}

happyReduce_120 = happySpecReduce_2  21# happyReduction_120
happyReduction_120 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "sinh")) -> 
	case happyOut20 happy_x_2 of { happy_var_2 -> 
	happyIn26
		 (LocExp (atBin (ExpOp FSinhOp happy_var_2) happy_var_1 happy_var_2)
	)}}

happyReduce_121 = happySpecReduce_2  21# happyReduction_121
happyReduction_121 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "cosh")) -> 
	case happyOut20 happy_x_2 of { happy_var_2 -> 
	happyIn26
		 (LocExp (atBin (ExpOp FCoshOp happy_var_2) happy_var_1 happy_var_2)
	)}}

happyReduce_122 = happySpecReduce_2  21# happyReduction_122
happyReduction_122 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "tanh")) -> 
	case happyOut20 happy_x_2 of { happy_var_2 -> 
	happyIn26
		 (LocExp (atBin (ExpOp FTanhOp happy_var_2) happy_var_1 happy_var_2)
	)}}

happyReduce_123 = happySpecReduce_2  21# happyReduction_123
happyReduction_123 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "asinh")) -> 
	case happyOut20 happy_x_2 of { happy_var_2 -> 
	happyIn26
		 (LocExp (atBin (ExpOp FAsinhOp happy_var_2) happy_var_1 happy_var_2)
	)}}

happyReduce_124 = happySpecReduce_2  21# happyReduction_124
happyReduction_124 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "acosh")) -> 
	case happyOut20 happy_x_2 of { happy_var_2 -> 
	happyIn26
		 (LocExp (atBin (ExpOp FAcoshOp happy_var_2) happy_var_1 happy_var_2)
	)}}

happyReduce_125 = happySpecReduce_2  21# happyReduction_125
happyReduction_125 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "atanh")) -> 
	case happyOut20 happy_x_2 of { happy_var_2 -> 
	happyIn26
		 (LocExp (atBin (ExpOp FAtanhOp happy_var_2) happy_var_1 happy_var_2)
	)}}

happyReduce_126 = happySpecReduce_2  21# happyReduction_126
happyReduction_126 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "isnan")) -> 
	case happyOut20 happy_x_2 of { happy_var_2 -> 
	happyIn26
		 (LocExp (atBin (ExpOp IsNanOp happy_var_2) happy_var_1 happy_var_2)
	)}}

happyReduce_127 = happySpecReduce_2  21# happyReduction_127
happyReduction_127 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "isinf")) -> 
	case happyOut20 happy_x_2 of { happy_var_2 -> 
	happyIn26
		 (LocExp (atBin (ExpOp IsInfOp happy_var_2) happy_var_1 happy_var_2)
	)}}

happyReduce_128 = happySpecReduce_2  21# happyReduction_128
happyReduction_128 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "round")) -> 
	case happyOut20 happy_x_2 of { happy_var_2 -> 
	happyIn26
		 (LocExp (atBin (ExpOp RoundFOp happy_var_2) happy_var_1 happy_var_2)
	)}}

happyReduce_129 = happySpecReduce_2  21# happyReduction_129
happyReduction_129 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "ceil")) -> 
	case happyOut20 happy_x_2 of { happy_var_2 -> 
	happyIn26
		 (LocExp (atBin (ExpOp CeilFOp happy_var_2) happy_var_1 happy_var_2)
	)}}

happyReduce_130 = happySpecReduce_2  21# happyReduction_130
happyReduction_130 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "floor")) -> 
	case happyOut20 happy_x_2 of { happy_var_2 -> 
	happyIn26
		 (LocExp (atBin (ExpOp FloorFOp happy_var_2) happy_var_1 happy_var_2)
	)}}

happyReduce_131 = happySpecReduce_2  21# happyReduction_131
happyReduction_131 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "const")) -> 
	case happyOut20 happy_x_2 of { happy_var_2 -> 
	happyIn26
		 (LocExp (atBin (ExpOp ConstRefOp happy_var_2) happy_var_1 happy_var_2)
	)}}

happyReduce_132 = happySpecReduce_2  21# happyReduction_132
happyReduction_132 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "div")) -> 
	case happyOut20 happy_x_2 of { happy_var_2 -> 
	happyIn26
		 (LocExp (atBin (ExpOp EucDivOp happy_var_2) happy_var_1 happy_var_2)
	)}}

happyReduce_133 = happySpecReduce_2  21# happyReduction_133
happyReduction_133 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "castWith")) -> 
	case happyOut20 happy_x_2 of { happy_var_2 -> 
	happyIn26
		 (LocExp (atBin (ExpOp CastWith happy_var_2) happy_var_1 happy_var_2)
	)}}

happyReduce_134 = happySpecReduce_2  21# happyReduction_134
happyReduction_134 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "safeCast")) -> 
	case happyOut20 happy_x_2 of { happy_var_2 -> 
	happyIn26
		 (LocExp (atBin (ExpOp SafeCast happy_var_2) happy_var_1 happy_var_2)
	)}}

happyReduce_135 = happySpecReduce_2  21# happyReduction_135
happyReduction_135 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "bitCast")) -> 
	case happyOut20 happy_x_2 of { happy_var_2 -> 
	happyIn26
		 (LocExp (atBin (ExpOp BitCast happy_var_2) happy_var_1 happy_var_2)
	)}}

happyReduce_136 = happySpecReduce_2  21# happyReduction_136
happyReduction_136 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "twosCompCast")) -> 
	case happyOut20 happy_x_2 of { happy_var_2 -> 
	happyIn26
		 (LocExp (atBin (ExpOp TwosCompCast happy_var_2) happy_var_1 happy_var_2)
	)}}

happyReduce_137 = happySpecReduce_2  21# happyReduction_137
happyReduction_137 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "twosCompRep")) -> 
	case happyOut20 happy_x_2 of { happy_var_2 -> 
	happyIn26
		 (LocExp (atBin (ExpOp TwosCompRep happy_var_2) happy_var_1 happy_var_2)
	)}}

happyReduce_138 = happySpecReduce_2  21# happyReduction_138
happyReduction_138 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "toIx")) -> 
	case happyOut20 happy_x_2 of { happy_var_2 -> 
	happyIn26
		 (LocExp (atBin (ExpOp ToIx happy_var_2) happy_var_1 happy_var_2)
	)}}

happyReduce_139 = happySpecReduce_2  21# happyReduction_139
happyReduction_139 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "fromIx")) -> 
	case happyOut20 happy_x_2 of { happy_var_2 -> 
	happyIn26
		 (LocExp (atBin (ExpOp FromIx happy_var_2) happy_var_1 happy_var_2)
	)}}

happyReduce_140 = happySpecReduce_2  21# happyReduction_140
happyReduction_140 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "ixSize")) -> 
	case happyOut20 happy_x_2 of { happy_var_2 -> 
	happyIn26
		 (LocExp (atBin (ExpOp IxSize happy_var_2) happy_var_1 happy_var_2)
	)}}

happyReduce_141 = happySpecReduce_2  21# happyReduction_141
happyReduction_141 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "arrayLen")) -> 
	case happyOut20 happy_x_2 of { happy_var_2 -> 
	happyIn26
		 (LocExp (atBin (ExpOp ArrayLen happy_var_2) happy_var_1 happy_var_2)
	)}}

happyReduce_142 = happySpecReduce_2  21# happyReduction_142
happyReduction_142 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "sizeOf")) -> 
	case happyOut20 happy_x_2 of { happy_var_2 -> 
	happyIn26
		 (LocExp (atBin (ExpOp SizeOf happy_var_2) happy_var_1 happy_var_2)
	)}}

happyReduce_143 = happySpecReduce_2  21# happyReduction_143
happyReduction_143 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "nullPtr")) -> 
	case happyOut20 happy_x_2 of { happy_var_2 -> 
	happyIn26
		 (LocExp (atBin (ExpOp NullPtr happy_var_2) happy_var_1 happy_var_2)
	)}}

happyReduce_144 = happySpecReduce_2  21# happyReduction_144
happyReduction_144 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "refToPtr")) -> 
	case happyOut20 happy_x_2 of { happy_var_2 -> 
	happyIn26
		 (LocExp (atBin (ExpOp RefToPtr happy_var_2) happy_var_1 happy_var_2)
	)}}

happyReduce_145 = happySpecReduce_2  21# happyReduction_145
happyReduction_145 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "toCArray")) -> 
	case happyOut20 happy_x_2 of { happy_var_2 -> 
	happyIn26
		 (LocExp (atBin (ExpOp ToCArray happy_var_2) happy_var_1 happy_var_2)
	)}}

happyReduce_146 = happyReduce 5# 22# happyReduction_146
happyReduction_146 (happy_x_5 `HappyStk`
	happy_x_4 `HappyStk`
	happy_x_3 `HappyStk`
	happy_x_2 `HappyStk`
	happy_x_1 `HappyStk`
	happyRest)
	 = case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "type")) -> 
	case happyOut53 happy_x_2 of { happy_var_2 -> 
	case happyOut28 happy_x_4 of { happy_var_4 -> 
	happyIn27
		 (TypeDef (unLoc happy_var_2) happy_var_4 (mconcat [happy_var_1, getLoc happy_var_2, getLoc happy_var_4])
	) `HappyStk` happyRest}}}

happyReduce_147 = happySpecReduce_1  23# happyReduction_147
happyReduction_147 happy_x_1
	 =  case happyOut29 happy_x_1 of { happy_var_1 -> 
	happyIn28
		 (happy_var_1
	)}

happyReduce_148 = happySpecReduce_1  23# happyReduction_148
happyReduction_148 happy_x_1
	 =  case happyOut31 happy_x_1 of { happy_var_1 -> 
	happyIn28
		 (happy_var_1
	)}

happyReduce_149 = happySpecReduce_1  23# happyReduction_149
happyReduction_149 happy_x_1
	 =  case happyOut53 happy_x_1 of { happy_var_1 -> 
	happyIn28
		 (LocTy (TySynonym (unLoc happy_var_1) `at` happy_var_1)
	)}

happyReduce_150 = happySpecReduce_3  23# happyReduction_150
happyReduction_150 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOut28 happy_x_2 of { happy_var_2 -> 
	happyIn28
		 (happy_var_2
	)}

happyReduce_151 = happySpecReduce_1  24# happyReduction_151
happyReduction_151 happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "bool")) -> 
	happyIn29
		 (LocTy (TyBool `at` getLoc happy_var_1)
	)}

happyReduce_152 = happySpecReduce_1  24# happyReduction_152
happyReduction_152 happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "char")) -> 
	happyIn29
		 (LocTy (TyChar `at` getLoc happy_var_1)
	)}

happyReduce_153 = happySpecReduce_1  24# happyReduction_153
happyReduction_153 happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "float")) -> 
	happyIn29
		 (LocTy (TyFloat `at` getLoc happy_var_1)
	)}

happyReduce_154 = happySpecReduce_1  24# happyReduction_154
happyReduction_154 happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "double")) -> 
	happyIn29
		 (LocTy (TyDouble `at` getLoc happy_var_1)
	)}

happyReduce_155 = happySpecReduce_1  24# happyReduction_155
happyReduction_155 happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "string")) -> 
	happyIn29
		 (LocTy (TyString `at` getLoc happy_var_1)
	)}

happyReduce_156 = happySpecReduce_1  24# happyReduction_156
happyReduction_156 happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "void")) -> 
	happyIn29
		 (LocTy (TyVoid `at` getLoc happy_var_1)
	)}

happyReduce_157 = happySpecReduce_1  24# happyReduction_157
happyReduction_157 happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "int8_t")) -> 
	happyIn29
		 (LocTy ((TyInt Int8) `at` getLoc happy_var_1)
	)}

happyReduce_158 = happySpecReduce_1  24# happyReduction_158
happyReduction_158 happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "int16_t")) -> 
	happyIn29
		 (LocTy ((TyInt Int16) `at` getLoc happy_var_1)
	)}

happyReduce_159 = happySpecReduce_1  24# happyReduction_159
happyReduction_159 happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "int32_t")) -> 
	happyIn29
		 (LocTy ((TyInt Int32) `at` getLoc happy_var_1)
	)}

happyReduce_160 = happySpecReduce_1  24# happyReduction_160
happyReduction_160 happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "int64_t")) -> 
	happyIn29
		 (LocTy ((TyInt Int64) `at` getLoc happy_var_1)
	)}

happyReduce_161 = happySpecReduce_1  24# happyReduction_161
happyReduction_161 happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "uint8_t")) -> 
	happyIn29
		 (LocTy ((TyWord Word8) `at` getLoc happy_var_1)
	)}

happyReduce_162 = happySpecReduce_1  24# happyReduction_162
happyReduction_162 happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "uint16_t")) -> 
	happyIn29
		 (LocTy ((TyWord Word16) `at` getLoc happy_var_1)
	)}

happyReduce_163 = happySpecReduce_1  24# happyReduction_163
happyReduction_163 happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "uint32_t")) -> 
	happyIn29
		 (LocTy ((TyWord Word32) `at` getLoc happy_var_1)
	)}

happyReduce_164 = happySpecReduce_1  24# happyReduction_164
happyReduction_164 happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "uint64_t")) -> 
	happyIn29
		 (LocTy ((TyWord Word64) `at` getLoc happy_var_1)
	)}

happyReduce_165 = happySpecReduce_2  24# happyReduction_165
happyReduction_165 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "ix_t")) -> 
	case happyOutTok happy_x_2 of { (happy_var_2@Located { locValue = TokInteger _ }) -> 
	happyIn29
		 (let TokInteger i = unLoc happy_var_2 in
                                LocTy (atBin (TyIx i) happy_var_1 happy_var_2)
	)}}

happyReduce_166 = happySpecReduce_2  25# happyReduction_166
happyReduction_166 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_2 of { (happy_var_2@Located { locValue = TokTyIdent _ }) -> 
	happyIn30
		 (let TokTyIdent i = unLoc happy_var_2 in
             Left i `at` happy_var_2
	)}

happyReduce_167 = happySpecReduce_1  25# happyReduction_167
happyReduction_167 happy_x_1
	 =  case happyOutTok happy_x_1 of { (happy_var_1@Located { locValue = TokInteger _ }) -> 
	happyIn30
		 (let TokInteger i = unLoc happy_var_1 in
             Right i `at` happy_var_1
	)}

happyReduce_168 = happySpecReduce_3  26# happyReduction_168
happyReduction_168 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOut32 happy_x_1 of { happy_var_1 -> 
	case happyOut28 happy_x_3 of { happy_var_3 -> 
	happyIn31
		 (LocTy (atBin (TyRef (unLoc happy_var_1) happy_var_3) happy_var_1 happy_var_3)
	)}}

happyReduce_169 = happyReduce 4# 26# happyReduction_169
happyReduction_169 (happy_x_4 `HappyStk`
	happy_x_3 `HappyStk`
	happy_x_2 `HappyStk`
	happy_x_1 `HappyStk`
	happyRest)
	 = case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "const")) -> 
	case happyOut32 happy_x_2 of { happy_var_2 -> 
	case happyOut28 happy_x_4 of { happy_var_4 -> 
	happyIn31
		 (LocTy (atList (TyConstRef (unLoc happy_var_2) happy_var_4)
                                                 [happy_var_1, getLoc happy_var_2, getLoc happy_var_4])
	) `HappyStk` happyRest}}}

happyReduce_170 = happyReduce 4# 26# happyReduction_170
happyReduction_170 (happy_x_4 `HappyStk`
	happy_x_3 `HappyStk`
	happy_x_2 `HappyStk`
	happy_x_1 `HappyStk`
	happyRest)
	 = case happyOut28 happy_x_1 of { happy_var_1 -> 
	case happyOut30 happy_x_3 of { happy_var_3 -> 
	happyIn31
		 (LocTy (atBin (TyArray happy_var_1 (unLoc happy_var_3)) happy_var_1 happy_var_3)
	) `HappyStk` happyRest}}

happyReduce_171 = happySpecReduce_2  26# happyReduction_171
happyReduction_171 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "struct")) -> 
	case happyOut39 happy_x_2 of { happy_var_2 -> 
	happyIn31
		 (LocTy (atBin (TyStruct (unLoc happy_var_2)) happy_var_1 happy_var_2)
	)}}

happyReduce_172 = happySpecReduce_2  26# happyReduction_172
happyReduction_172 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokSym "&")) -> 
	case happyOut28 happy_x_2 of { happy_var_2 -> 
	happyIn31
		 (LocTy (atBin (TyStored happy_var_2) happy_var_1 happy_var_2)
	)}}

happyReduce_173 = happySpecReduce_1  27# happyReduction_173
happyReduction_173 happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "S")) -> 
	happyIn32
		 (Stack Nothing `at` happy_var_1
	)}

happyReduce_174 = happySpecReduce_1  27# happyReduction_174
happyReduction_174 happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "G")) -> 
	happyIn32
		 (Global `at` happy_var_1
	)}

happyReduce_175 = happySpecReduce_1  27# happyReduction_175
happyReduction_175 happy_x_1
	 =  case happyOut52 happy_x_1 of { happy_var_1 -> 
	happyIn32
		 (PolyMem (Just (unLoc happy_var_1)) `at` (getLoc happy_var_1)
	)}

happyReduce_176 = happySpecReduce_0  27# happyReduction_176
happyReduction_176  =  happyIn32
		 (PolyMem Nothing `at` NoLoc
	)

happyReduce_177 = happySpecReduce_1  28# happyReduction_177
happyReduction_177 happy_x_1
	 =  case happyOut34 happy_x_1 of { happy_var_1 -> 
	happyIn33
		 (happy_var_1
	)}

happyReduce_178 = happySpecReduce_1  28# happyReduction_178
happyReduction_178 happy_x_1
	 =  case happyOut35 happy_x_1 of { happy_var_1 -> 
	happyIn33
		 (happy_var_1
	)}

happyReduce_179 = happySpecReduce_1  28# happyReduction_179
happyReduction_179 happy_x_1
	 =  case happyOut53 happy_x_1 of { happy_var_1 -> 
	happyIn33
		 (LocTy (TySynonym (unLoc happy_var_1) `at` happy_var_1)
	)}

happyReduce_180 = happySpecReduce_3  28# happyReduction_180
happyReduction_180 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOut33 happy_x_2 of { happy_var_2 -> 
	happyIn33
		 (happy_var_2
	)}

happyReduce_181 = happySpecReduce_1  29# happyReduction_181
happyReduction_181 happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "IBool")) -> 
	happyIn34
		 (LocTy (TyBool `at` getLoc happy_var_1)
	)}

happyReduce_182 = happySpecReduce_1  29# happyReduction_182
happyReduction_182 happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "IChar")) -> 
	happyIn34
		 (LocTy (TyChar `at` getLoc happy_var_1)
	)}

happyReduce_183 = happySpecReduce_1  29# happyReduction_183
happyReduction_183 happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "IFloat")) -> 
	happyIn34
		 (LocTy (TyFloat `at` getLoc happy_var_1)
	)}

happyReduce_184 = happySpecReduce_1  29# happyReduction_184
happyReduction_184 happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "IDouble")) -> 
	happyIn34
		 (LocTy (TyDouble `at` getLoc happy_var_1)
	)}

happyReduce_185 = happySpecReduce_1  29# happyReduction_185
happyReduction_185 happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "IString")) -> 
	happyIn34
		 (LocTy (TyString `at` getLoc happy_var_1)
	)}

happyReduce_186 = happySpecReduce_2  29# happyReduction_186
happyReduction_186 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokBrack "(")) -> 
	happyIn34
		 (LocTy (TyVoid `at` getLoc happy_var_1)
	)}

happyReduce_187 = happySpecReduce_1  29# happyReduction_187
happyReduction_187 happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "Sint8")) -> 
	happyIn34
		 (LocTy ((TyInt Int8) `at` getLoc happy_var_1)
	)}

happyReduce_188 = happySpecReduce_1  29# happyReduction_188
happyReduction_188 happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "Sint16")) -> 
	happyIn34
		 (LocTy ((TyInt Int16) `at` getLoc happy_var_1)
	)}

happyReduce_189 = happySpecReduce_1  29# happyReduction_189
happyReduction_189 happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "Sint32")) -> 
	happyIn34
		 (LocTy ((TyInt Int32)`at` getLoc happy_var_1)
	)}

happyReduce_190 = happySpecReduce_1  29# happyReduction_190
happyReduction_190 happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "Sint64")) -> 
	happyIn34
		 (LocTy ((TyInt Int64) `at` getLoc happy_var_1)
	)}

happyReduce_191 = happySpecReduce_1  29# happyReduction_191
happyReduction_191 happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "Uint8")) -> 
	happyIn34
		 (LocTy ((TyWord Word8) `at` getLoc happy_var_1)
	)}

happyReduce_192 = happySpecReduce_1  29# happyReduction_192
happyReduction_192 happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "Uint16")) -> 
	happyIn34
		 (LocTy ((TyWord Word16) `at` getLoc happy_var_1)
	)}

happyReduce_193 = happySpecReduce_1  29# happyReduction_193
happyReduction_193 happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "Uint32")) -> 
	happyIn34
		 (LocTy ((TyWord Word32) `at` getLoc happy_var_1)
	)}

happyReduce_194 = happySpecReduce_1  29# happyReduction_194
happyReduction_194 happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "Uint64")) -> 
	happyIn34
		 (LocTy ((TyWord Word64) `at` getLoc happy_var_1)
	)}

happyReduce_195 = happySpecReduce_2  29# happyReduction_195
happyReduction_195 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "Ix")) -> 
	case happyOutTok happy_x_2 of { (happy_var_2@Located { locValue = TokInteger _ }) -> 
	happyIn34
		 (let TokInteger i = unLoc happy_var_2 in
                              LocTy (atBin (TyIx i) happy_var_1 happy_var_2)
	)}}

happyReduce_196 = happySpecReduce_3  30# happyReduction_196
happyReduction_196 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "Ref")) -> 
	case happyOut36 happy_x_2 of { happy_var_2 -> 
	case happyOut33 happy_x_3 of { happy_var_3 -> 
	happyIn35
		 (LocTy (atList (TyRef (unLoc happy_var_2) happy_var_3) [ getLoc happy_var_1
                                                                  , getLoc happy_var_2
                                                                  , getLoc happy_var_3 ])
	)}}}

happyReduce_197 = happySpecReduce_3  30# happyReduction_197
happyReduction_197 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "ConstRef")) -> 
	case happyOut36 happy_x_2 of { happy_var_2 -> 
	case happyOut33 happy_x_3 of { happy_var_3 -> 
	happyIn35
		 (LocTy (atList (TyConstRef (unLoc happy_var_2) happy_var_3) [ getLoc happy_var_1
                                                                       , getLoc happy_var_2
                                                                       , getLoc happy_var_3 ])
	)}}}

happyReduce_198 = happySpecReduce_3  30# happyReduction_198
happyReduction_198 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "Array")) -> 
	case happyOut30 happy_x_2 of { happy_var_2 -> 
	case happyOut33 happy_x_3 of { happy_var_3 -> 
	happyIn35
		 (LocTy (atList (TyArray happy_var_3 (unLoc happy_var_2))
                                [ getLoc happy_var_1, getLoc happy_var_2, getLoc happy_var_3])
	)}}}

happyReduce_199 = happySpecReduce_2  30# happyReduction_199
happyReduction_199 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "Struct")) -> 
	case happyOut39 happy_x_2 of { happy_var_2 -> 
	happyIn35
		 (LocTy (atBin (TyStruct (unLoc happy_var_2)) happy_var_1 happy_var_2)
	)}}

happyReduce_200 = happySpecReduce_2  30# happyReduction_200
happyReduction_200 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "Stored")) -> 
	case happyOut33 happy_x_2 of { happy_var_2 -> 
	happyIn35
		 (LocTy (atBin (TyStored happy_var_2) happy_var_1 happy_var_2)
	)}}

happyReduce_201 = happySpecReduce_2  31# happyReduction_201
happyReduction_201 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "Stack")) -> 
	case happyOut53 happy_x_2 of { happy_var_2 -> 
	happyIn36
		 (atBin (Stack (Just (unLoc happy_var_2))) happy_var_1 happy_var_2
	)}}

happyReduce_202 = happySpecReduce_1  31# happyReduction_202
happyReduction_202 happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "Global")) -> 
	happyIn36
		 (Global `at` happy_var_1
	)}

happyReduce_203 = happySpecReduce_1  32# happyReduction_203
happyReduction_203 happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "Bit")) -> 
	happyIn37
		 (LocBitTy (Bit `at` happy_var_1)
	)}

happyReduce_204 = happySpecReduce_2  32# happyReduction_204
happyReduction_204 happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "Bits")) -> 
	case happyOutTok happy_x_2 of { (happy_var_2@Located { locValue = TokInteger _ }) -> 
	happyIn37
		 (let TokInteger i = unLoc happy_var_2 in
                                 LocBitTy (atBin (Bits i) happy_var_1 happy_var_2)
	)}}

happyReduce_205 = happySpecReduce_3  32# happyReduction_205
happyReduction_205 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "BitArray")) -> 
	case happyOutTok happy_x_2 of { (happy_var_2@Located { locValue = TokInteger _ }) -> 
	case happyOut37 happy_x_3 of { happy_var_3 -> 
	happyIn37
		 (let TokInteger i = unLoc happy_var_2 in
                                 LocBitTy (atList (BitArray i happy_var_3) [ getLoc happy_var_1
                                                                  , getLoc happy_var_2
                                                                  , getLoc happy_var_3 ])
	)}}}

happyReduce_206 = happySpecReduce_3  32# happyReduction_206
happyReduction_206 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOut37 happy_x_2 of { happy_var_2 -> 
	happyIn37
		 (happy_var_2
	)}

happyReduce_207 = happySpecReduce_1  32# happyReduction_207
happyReduction_207 happy_x_1
	 =  case happyOut53 happy_x_1 of { happy_var_1 -> 
	happyIn37
		 (LocBitTy (BitTySynonym `fmap` happy_var_1)
	)}

happyReduce_208 = happyReduce 5# 33# happyReduction_208
happyReduction_208 (happy_x_5 `HappyStk`
	happy_x_4 `HappyStk`
	happy_x_3 `HappyStk`
	happy_x_2 `HappyStk`
	happy_x_1 `HappyStk`
	happyRest)
	 = case happyOut39 happy_x_2 of { happy_var_2 -> 
	case happyOut41 happy_x_4 of { happy_var_4 -> 
	happyIn38
		 (StructDef (unLoc happy_var_2) (reverse happy_var_4) (getLoc happy_var_2)
	) `HappyStk` happyRest}}

happyReduce_209 = happyReduce 4# 33# happyReduction_209
happyReduction_209 (happy_x_4 `HappyStk`
	happy_x_3 `HappyStk`
	happy_x_2 `HappyStk`
	happy_x_1 `HappyStk`
	happyRest)
	 = case happyOut39 happy_x_3 of { happy_var_3 -> 
	case happyOutTok happy_x_4 of { (happy_var_4@Located { locValue = TokString _  }) -> 
	happyIn38
		 (let TokString f = unLoc happy_var_4 in
                                       AbstractDef (unLoc happy_var_3) (filter (/= '"') f) (getLoc happy_var_3)
	) `HappyStk` happyRest}}

happyReduce_210 = happyReduce 4# 33# happyReduction_210
happyReduction_210 (happy_x_4 `HappyStk`
	happy_x_3 `HappyStk`
	happy_x_2 `HappyStk`
	happy_x_1 `HappyStk`
	happyRest)
	 = case happyOut39 happy_x_3 of { happy_var_3 -> 
	case happyOutTok happy_x_4 of { (happy_var_4@Located { locValue = TokInteger _ }) -> 
	happyIn38
		 (let TokInteger i = unLoc happy_var_4 in
                                       StringDef (unLoc happy_var_3) i (getLoc happy_var_3)
	) `HappyStk` happyRest}}

happyReduce_211 = happySpecReduce_1  34# happyReduction_211
happyReduction_211 happy_x_1
	 =  case happyOut53 happy_x_1 of { happy_var_1 -> 
	happyIn39
		 (happy_var_1
	)}

happyReduce_212 = happySpecReduce_1  34# happyReduction_212
happyReduction_212 happy_x_1
	 =  case happyOut52 happy_x_1 of { happy_var_1 -> 
	happyIn39
		 (happy_var_1
	)}

happyReduce_213 = happySpecReduce_3  35# happyReduction_213
happyReduction_213 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOut52 happy_x_1 of { happy_var_1 -> 
	case happyOut33 happy_x_3 of { happy_var_3 -> 
	happyIn40
		 (Field (unLoc happy_var_1) happy_var_3 (getLoc happy_var_1 <> getLoc happy_var_3)
	)}}

happyReduce_214 = happySpecReduce_2  35# happyReduction_214
happyReduction_214 happy_x_2
	happy_x_1
	 =  case happyOut28 happy_x_1 of { happy_var_1 -> 
	case happyOut52 happy_x_2 of { happy_var_2 -> 
	happyIn40
		 (Field (unLoc happy_var_2) happy_var_1 (getLoc happy_var_1 <> getLoc happy_var_2)
	)}}

happyReduce_215 = happySpecReduce_3  36# happyReduction_215
happyReduction_215 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOut41 happy_x_1 of { happy_var_1 -> 
	case happyOut40 happy_x_3 of { happy_var_3 -> 
	happyIn41
		 (happy_var_3 : happy_var_1
	)}}

happyReduce_216 = happySpecReduce_2  36# happyReduction_216
happyReduction_216 happy_x_2
	happy_x_1
	 =  case happyOut41 happy_x_1 of { happy_var_1 -> 
	happyIn41
		 (happy_var_1
	)}

happyReduce_217 = happySpecReduce_1  36# happyReduction_217
happyReduction_217 happy_x_1
	 =  case happyOut40 happy_x_1 of { happy_var_1 -> 
	happyIn41
		 ([happy_var_1]
	)}

happyReduce_218 = happyReduce 6# 37# happyReduction_218
happyReduction_218 (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 happyOutTok happy_x_1 of { (Located happy_var_1 (TokReserved "bitdata")) -> 
	case happyOut53 happy_x_2 of { happy_var_2 -> 
	case happyOutTok happy_x_3 of { (Located happy_var_3 (TokSym "::")) -> 
	case happyOut37 happy_x_4 of { happy_var_4 -> 
	case happyOut43 happy_x_6 of { happy_var_6 -> 
	happyIn42
		 (BitDataDef (unLoc happy_var_2) happy_var_4 (reverse happy_var_6)
                            (mconcat [ getLoc happy_var_1, getLoc happy_var_2, getLoc happy_var_3, getLoc happy_var_6 ])
	) `HappyStk` happyRest}}}}}

happyReduce_219 = happySpecReduce_3  38# happyReduction_219
happyReduction_219 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOut43 happy_x_1 of { happy_var_1 -> 
	case happyOut44 happy_x_3 of { happy_var_3 -> 
	happyIn43
		 (happy_var_3 : happy_var_1
	)}}

happyReduce_220 = happySpecReduce_1  38# happyReduction_220
happyReduction_220 happy_x_1
	 =  case happyOut44 happy_x_1 of { happy_var_1 -> 
	happyIn43
		 ([happy_var_1]
	)}

happyReduce_221 = happySpecReduce_3  39# happyReduction_221
happyReduction_221 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOut52 happy_x_1 of { happy_var_1 -> 
	case happyOut45 happy_x_2 of { happy_var_2 -> 
	case happyOut48 happy_x_3 of { happy_var_3 -> 
	happyIn44
		 (Constr (unLoc happy_var_1) happy_var_2 happy_var_3
                                       (mconcat [ getLoc happy_var_1, getLoc happy_var_2 ])
	)}}}

happyReduce_222 = happySpecReduce_3  40# happyReduction_222
happyReduction_222 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOut46 happy_x_2 of { happy_var_2 -> 
	happyIn45
		 (reverse happy_var_2
	)}

happyReduce_223 = happySpecReduce_0  40# happyReduction_223
happyReduction_223  =  happyIn45
		 ([]
	)

happyReduce_224 = happySpecReduce_3  41# happyReduction_224
happyReduction_224 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOut46 happy_x_1 of { happy_var_1 -> 
	case happyOut47 happy_x_3 of { happy_var_3 -> 
	happyIn46
		 (happy_var_3 : happy_var_1
	)}}

happyReduce_225 = happySpecReduce_1  41# happyReduction_225
happyReduction_225 happy_x_1
	 =  case happyOut47 happy_x_1 of { happy_var_1 -> 
	happyIn46
		 ([happy_var_1]
	)}

happyReduce_226 = happySpecReduce_3  42# happyReduction_226
happyReduction_226 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOut52 happy_x_1 of { happy_var_1 -> 
	case happyOut37 happy_x_3 of { happy_var_3 -> 
	happyIn47
		 (BitField (Just (unLoc happy_var_1)) happy_var_3 (getLoc happy_var_1 <> getLoc happy_var_3)
	)}}

happyReduce_227 = happySpecReduce_3  42# happyReduction_227
happyReduction_227 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (Located happy_var_1 (TokSym "_")) -> 
	case happyOut37 happy_x_3 of { happy_var_3 -> 
	happyIn47
		 (BitField Nothing   happy_var_3 (happy_var_1 <> getLoc happy_var_3)
	)}}

happyReduce_228 = happySpecReduce_2  43# happyReduction_228
happyReduction_228 happy_x_2
	happy_x_1
	 =  case happyOut49 happy_x_2 of { happy_var_2 -> 
	happyIn48
		 (reverse happy_var_2
	)}

happyReduce_229 = happySpecReduce_0  43# happyReduction_229
happyReduction_229  =  happyIn48
		 ([]
	)

happyReduce_230 = happySpecReduce_3  44# happyReduction_230
happyReduction_230 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOut49 happy_x_1 of { happy_var_1 -> 
	case happyOut50 happy_x_3 of { happy_var_3 -> 
	happyIn49
		 (happy_var_3 : happy_var_1
	)}}

happyReduce_231 = happySpecReduce_1  44# happyReduction_231
happyReduction_231 happy_x_1
	 =  case happyOut50 happy_x_1 of { happy_var_1 -> 
	happyIn49
		 ([happy_var_1]
	)}

happyReduce_232 = happySpecReduce_1  45# happyReduction_232
happyReduction_232 happy_x_1
	 =  case happyOut52 happy_x_1 of { happy_var_1 -> 
	happyIn50
		 (LayoutField (unLoc happy_var_1)
	)}

happyReduce_233 = happySpecReduce_1  45# happyReduction_233
happyReduction_233 happy_x_1
	 =  case happyOutTok happy_x_1 of { (happy_var_1@Located { locValue = TokInteger _ }) -> 
	happyIn50
		 (let TokInteger i = unLoc happy_var_1 in
                 LayoutConst (BitLitUnknown i)
	)}

happyReduce_234 = happySpecReduce_1  45# happyReduction_234
happyReduction_234 happy_x_1
	 =  case happyOut51 happy_x_1 of { happy_var_1 -> 
	happyIn50
		 (LayoutConst happy_var_1
	)}

happyReduce_235 = happySpecReduce_1  46# happyReduction_235
happyReduction_235 happy_x_1
	 =  case happyOutTok happy_x_1 of { (happy_var_1@Located { locValue = TokBitLit _  }) -> 
	happyIn51
		 (let TokBitLit bl = unLoc happy_var_1 in
                      BitLitKnown (fst bl) (snd bl)
	)}

happyReduce_236 = happySpecReduce_1  47# happyReduction_236
happyReduction_236 happy_x_1
	 =  case happyOutTok happy_x_1 of { (happy_var_1@Located { locValue = TokIdent _   }) -> 
	happyIn52
		 (let TokIdent i = unLoc happy_var_1 in
                                  i `at` happy_var_1
	)}

happyReduce_237 = happySpecReduce_3  47# happyReduction_237
happyReduction_237 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (happy_var_1@Located { locValue = TokTyIdent _ }) -> 
	case happyOutTok happy_x_3 of { (happy_var_3@Located { locValue = TokIdent _   }) -> 
	happyIn52
		 (let TokTyIdent t = unLoc happy_var_1 in
                                  let TokIdent i   = unLoc happy_var_3 in
                                  atBin (t ++ '.':i) happy_var_1 happy_var_3
	)}}

happyReduce_238 = happySpecReduce_1  48# happyReduction_238
happyReduction_238 happy_x_1
	 =  case happyOutTok happy_x_1 of { (happy_var_1@Located { locValue = TokTyIdent _ }) -> 
	happyIn53
		 (let TokTyIdent t = unLoc happy_var_1 in
                                    t `at` happy_var_1
	)}

happyReduce_239 = happySpecReduce_3  48# happyReduction_239
happyReduction_239 happy_x_3
	happy_x_2
	happy_x_1
	 =  case happyOutTok happy_x_1 of { (happy_var_1@Located { locValue = TokTyIdent _ }) -> 
	case happyOutTok happy_x_3 of { (happy_var_3@Located { locValue = TokTyIdent _ }) -> 
	happyIn53
		 (let TokTyIdent t0 = unLoc happy_var_1 in
                                    let TokTyIdent t1 = unLoc happy_var_3 in
                                    atBin (t0 ++ '.':t1) happy_var_1 happy_var_3
	)}}

happyNewToken action sts stk
	= lexer(\tk -> 
	let cont i = happyDoAction i tk action sts stk in
	case tk of {
	Located mempty TokEOF -> happyDoAction 152# tk action sts stk;
	happy_dollar_dollar@Located { locValue = TokInteger _ } -> cont 1#;
	happy_dollar_dollar@Located { locValue = TokFloat   _ } -> cont 2#;
	happy_dollar_dollar@Located { locValue = TokBitLit _  } -> cont 3#;
	happy_dollar_dollar@Located { locValue = TokIdent _   } -> cont 4#;
	happy_dollar_dollar@Located { locValue = TokTyIdent _ } -> cont 5#;
	happy_dollar_dollar@Located { locValue = TokString _  } -> cont 6#;
	Located happy_dollar_dollar (TokReserved "if") -> cont 7#;
	Located happy_dollar_dollar (TokReserved "else") -> cont 8#;
	Located happy_dollar_dollar (TokReserved "assert") -> cont 9#;
	Located happy_dollar_dollar (TokReserved "assume") -> cont 10#;
	Located happy_dollar_dollar (TokReserved "pre") -> cont 11#;
	Located happy_dollar_dollar (TokReserved "post") -> cont 12#;
	Located happy_dollar_dollar (TokReserved "let") -> cont 13#;
	Located happy_dollar_dollar (TokReserved "return") -> cont 14#;
	Located happy_dollar_dollar (TokReserved "alloc") -> cont 15#;
	Located happy_dollar_dollar (TokReserved "store") -> cont 16#;
	Located happy_dollar_dollar (TokReserved "memcpy") -> cont 17#;
	Located happy_dollar_dollar (TokReserved "map") -> cont 18#;
	Located happy_dollar_dollar (TokReserved "upTo") -> cont 19#;
	Located happy_dollar_dollar (TokReserved "upFromTo") -> cont 20#;
	Located happy_dollar_dollar (TokReserved "downFrom") -> cont 21#;
	Located happy_dollar_dollar (TokReserved "downFromTo") -> cont 22#;
	Located happy_dollar_dollar (TokReserved "forever") -> cont 23#;
	Located happy_dollar_dollar (TokReserved "break") -> cont 24#;
	Located happy_dollar_dollar (TokSym "$") -> cont 25#;
	Located happy_dollar_dollar (TokReserved "abs") -> cont 26#;
	Located happy_dollar_dollar (TokReserved "signum") -> cont 27#;
	Located happy_dollar_dollar (TokReserved "exp") -> cont 28#;
	Located happy_dollar_dollar (TokReserved "sqrt") -> cont 29#;
	Located happy_dollar_dollar (TokReserved "log") -> cont 30#;
	Located happy_dollar_dollar (TokReserved "pow") -> cont 31#;
	Located happy_dollar_dollar (TokReserved "div") -> cont 32#;
	Located happy_dollar_dollar (TokReserved "sin") -> cont 33#;
	Located happy_dollar_dollar (TokReserved "cos") -> cont 34#;
	Located happy_dollar_dollar (TokReserved "tan") -> cont 35#;
	Located happy_dollar_dollar (TokReserved "asin") -> cont 36#;
	Located happy_dollar_dollar (TokReserved "acos") -> cont 37#;
	Located happy_dollar_dollar (TokReserved "atan") -> cont 38#;
	Located happy_dollar_dollar (TokReserved "atan2") -> cont 39#;
	Located happy_dollar_dollar (TokReserved "sinh") -> cont 40#;
	Located happy_dollar_dollar (TokReserved "cosh") -> cont 41#;
	Located happy_dollar_dollar (TokReserved "tanh") -> cont 42#;
	Located happy_dollar_dollar (TokReserved "asinh") -> cont 43#;
	Located happy_dollar_dollar (TokReserved "acosh") -> cont 44#;
	Located happy_dollar_dollar (TokReserved "atanh") -> cont 45#;
	Located happy_dollar_dollar (TokReserved "isnan") -> cont 46#;
	Located happy_dollar_dollar (TokReserved "isinf") -> cont 47#;
	Located happy_dollar_dollar (TokReserved "round") -> cont 48#;
	Located happy_dollar_dollar (TokReserved "ceil") -> cont 49#;
	Located happy_dollar_dollar (TokReserved "floor") -> cont 50#;
	Located happy_dollar_dollar (TokReserved "const") -> cont 51#;
	Located happy_dollar_dollar (TokReserved "safeCast") -> cont 52#;
	Located happy_dollar_dollar (TokReserved "bitCast") -> cont 53#;
	Located happy_dollar_dollar (TokReserved "castWith") -> cont 54#;
	Located happy_dollar_dollar (TokReserved "twosCompCast") -> cont 55#;
	Located happy_dollar_dollar (TokReserved "twosCompRep") -> cont 56#;
	Located happy_dollar_dollar (TokReserved "fromIx") -> cont 57#;
	Located happy_dollar_dollar (TokReserved "ixSize") -> cont 58#;
	Located happy_dollar_dollar (TokReserved "toIx") -> cont 59#;
	Located happy_dollar_dollar (TokReserved "toCArray") -> cont 60#;
	Located happy_dollar_dollar (TokReserved "arrayLen") -> cont 61#;
	Located happy_dollar_dollar (TokReserved "sizeOf") -> cont 62#;
	Located happy_dollar_dollar (TokReserved "nullPtr") -> cont 63#;
	Located happy_dollar_dollar (TokReserved "refToPtr") -> cont 64#;
	Located happy_dollar_dollar (TokSym "::") -> cont 65#;
	Located happy_dollar_dollar (TokSym "?") -> cont 66#;
	Located happy_dollar_dollar (TokSym ":") -> cont 67#;
	Located happy_dollar_dollar (TokSym ".") -> cont 68#;
	Located happy_dollar_dollar (TokSym "->") -> cont 69#;
	Located happy_dollar_dollar (TokSym "==") -> cont 70#;
	Located happy_dollar_dollar (TokSym "!=") -> cont 71#;
	Located happy_dollar_dollar (TokSym "*") -> cont 72#;
	Located happy_dollar_dollar (TokSym "/") -> cont 73#;
	Located happy_dollar_dollar (TokSym "+") -> cont 74#;
	Located happy_dollar_dollar (TokSym "-") -> cont 75#;
	Located happy_dollar_dollar (TokSym "%") -> cont 76#;
	Located happy_dollar_dollar (TokSym "=") -> cont 77#;
	Located happy_dollar_dollar (TokSym "<") -> cont 78#;
	Located happy_dollar_dollar (TokSym "<=") -> cont 79#;
	Located happy_dollar_dollar (TokSym ">=") -> cont 80#;
	Located happy_dollar_dollar (TokSym ">") -> cont 81#;
	Located happy_dollar_dollar (TokSym "|") -> cont 82#;
	Located happy_dollar_dollar (TokSym "&") -> cont 83#;
	Located happy_dollar_dollar (TokSym "^") -> cont 84#;
	Located happy_dollar_dollar (TokSym "~") -> cont 85#;
	Located happy_dollar_dollar (TokSym "!") -> cont 86#;
	Located happy_dollar_dollar (TokSym "&&") -> cont 87#;
	Located happy_dollar_dollar (TokSym "||") -> cont 88#;
	Located happy_dollar_dollar (TokSym "<<") -> cont 89#;
	Located happy_dollar_dollar (TokSym ">>") -> cont 90#;
	Located happy_dollar_dollar (TokBrack "(") -> cont 91#;
	Located happy_dollar_dollar (TokBrack ")") -> cont 92#;
	Located happy_dollar_dollar (TokBrack "{") -> cont 93#;
	Located happy_dollar_dollar (TokBrack "}") -> cont 94#;
	Located happy_dollar_dollar (TokBrack "[") -> cont 95#;
	Located happy_dollar_dollar (TokBrack "]") -> cont 96#;
	Located happy_dollar_dollar (TokSep ";") -> cont 97#;
	Located happy_dollar_dollar (TokSep ",") -> cont 98#;
	Located happy_dollar_dollar (TokSym "@") -> cont 99#;
	Located happy_dollar_dollar (TokSym "<-") -> cont 100#;
	Located happy_dollar_dollar (TokReserved "bool") -> cont 101#;
	Located happy_dollar_dollar (TokReserved "char") -> cont 102#;
	Located happy_dollar_dollar (TokReserved "float") -> cont 103#;
	Located happy_dollar_dollar (TokReserved "double") -> cont 104#;
	Located happy_dollar_dollar (TokReserved "void") -> cont 105#;
	Located happy_dollar_dollar (TokReserved "int8_t") -> cont 106#;
	Located happy_dollar_dollar (TokReserved "int16_t") -> cont 107#;
	Located happy_dollar_dollar (TokReserved "int32_t") -> cont 108#;
	Located happy_dollar_dollar (TokReserved "int64_t") -> cont 109#;
	Located happy_dollar_dollar (TokReserved "uint8_t") -> cont 110#;
	Located happy_dollar_dollar (TokReserved "uint16_t") -> cont 111#;
	Located happy_dollar_dollar (TokReserved "uint32_t") -> cont 112#;
	Located happy_dollar_dollar (TokReserved "uint64_t") -> cont 113#;
	Located happy_dollar_dollar (TokReserved "S") -> cont 114#;
	Located happy_dollar_dollar (TokReserved "G") -> cont 115#;
	Located happy_dollar_dollar (TokReserved "IBool") -> cont 116#;
	Located happy_dollar_dollar (TokReserved "IChar") -> cont 117#;
	Located happy_dollar_dollar (TokReserved "IFloat") -> cont 118#;
	Located happy_dollar_dollar (TokReserved "IDouble") -> cont 119#;
	Located happy_dollar_dollar (TokReserved "IString") -> cont 120#;
	Located happy_dollar_dollar (TokReserved "Sint8") -> cont 121#;
	Located happy_dollar_dollar (TokReserved "Sint16") -> cont 122#;
	Located happy_dollar_dollar (TokReserved "Sint32") -> cont 123#;
	Located happy_dollar_dollar (TokReserved "Sint64") -> cont 124#;
	Located happy_dollar_dollar (TokReserved "Uint8") -> cont 125#;
	Located happy_dollar_dollar (TokReserved "Uint16") -> cont 126#;
	Located happy_dollar_dollar (TokReserved "Uint32") -> cont 127#;
	Located happy_dollar_dollar (TokReserved "Uint64") -> cont 128#;
	Located happy_dollar_dollar (TokReserved "Ix") -> cont 129#;
	Located happy_dollar_dollar (TokReserved "ix_t") -> cont 130#;
	Located happy_dollar_dollar (TokReserved "Ref") -> cont 131#;
	Located happy_dollar_dollar (TokReserved "ConstRef") -> cont 132#;
	Located happy_dollar_dollar (TokReserved "Array") -> cont 133#;
	Located happy_dollar_dollar (TokReserved "Struct") -> cont 134#;
	Located happy_dollar_dollar (TokReserved "Stored") -> cont 135#;
	Located happy_dollar_dollar (TokReserved "Stack") -> cont 136#;
	Located happy_dollar_dollar (TokReserved "Global") -> cont 137#;
	Located happy_dollar_dollar (TokReserved "struct") -> cont 138#;
	Located happy_dollar_dollar (TokReserved "abstract") -> cont 139#;
	Located happy_dollar_dollar (TokReserved "string") -> cont 140#;
	Located happy_dollar_dollar (TokReserved "type") -> cont 141#;
	Located happy_dollar_dollar (TokReserved "include") -> cont 142#;
	Located happy_dollar_dollar (TokReserved "import") -> cont 143#;
	Located happy_dollar_dollar (TokReserved "extern") -> cont 144#;
	Located happy_dollar_dollar (TokReserved "bitdata") -> cont 145#;
	Located happy_dollar_dollar (TokReserved "Bit") -> cont 146#;
	Located happy_dollar_dollar (TokReserved "Bits") -> cont 147#;
	Located happy_dollar_dollar (TokReserved "BitArray") -> cont 148#;
	Located happy_dollar_dollar (TokReserved "as") -> cont 149#;
	Located happy_dollar_dollar (TokSym "_") -> cont 150#;
	Located happy_dollar_dollar (TokSym "#") -> cont 151#;
	_ -> happyError' tk
	})

happyError_ 152# tk = happyError' tk
happyError_ _ tk = happyError' tk

happyThen :: () => Parser a -> (a -> Parser b) -> Parser b
happyThen = ((>>=))
happyReturn :: () => a -> Parser a
happyReturn = (return)
happyThen1 = happyThen
happyReturn1 :: () => a -> Parser a
happyReturn1 = happyReturn
happyError' :: () => (Lexeme) -> Parser a
happyError' tk = parseError tk

topParser = happySomeParser where
  happySomeParser = happyThen (happyParse 0#) (\x -> happyReturn (happyOut5 x))

stmtsParser = happySomeParser where
  happySomeParser = happyThen (happyParse 1#) (\x -> happyReturn (happyOut19 x))

happySeq = happyDontSeq



{-# LINE 1 "templates/GenericTemplate.hs" #-}
{-# LINE 1 "templates/GenericTemplate.hs" #-}
{-# LINE 1 "<built-in>" #-}
{-# LINE 1 "<command-line>" #-}
{-# LINE 11 "<command-line>" #-}
# 1 "/usr/include/stdc-predef.h" 1 3 4

# 17 "/usr/include/stdc-predef.h" 3 4










































{-# LINE 11 "<command-line>" #-}
{-# LINE 1 "/opt/ghc/7.10.3/lib/ghc-7.10.3/include/ghcversion.h" #-}

















{-# LINE 11 "<command-line>" #-}
{-# LINE 1 "templates/GenericTemplate.hs" #-}
-- Id: GenericTemplate.hs,v 1.26 2005/01/14 14:47:22 simonmar Exp 

{-# LINE 13 "templates/GenericTemplate.hs" #-}





-- Do not remove this comment. Required to fix CPP parsing when using GCC and a clang-compiled alex.
#if __GLASGOW_HASKELL__ > 706
#define LT(n,m) ((Happy_GHC_Exts.tagToEnum# (n Happy_GHC_Exts.<# m)) :: Bool)
#define GTE(n,m) ((Happy_GHC_Exts.tagToEnum# (n Happy_GHC_Exts.>=# m)) :: Bool)
#define EQ(n,m) ((Happy_GHC_Exts.tagToEnum# (n Happy_GHC_Exts.==# m)) :: Bool)
#else
#define LT(n,m) (n Happy_GHC_Exts.<# m)
#define GTE(n,m) (n Happy_GHC_Exts.>=# m)
#define EQ(n,m) (n Happy_GHC_Exts.==# m)
#endif
{-# LINE 46 "templates/GenericTemplate.hs" #-}


data Happy_IntList = HappyCons Happy_GHC_Exts.Int# Happy_IntList





{-# LINE 67 "templates/GenericTemplate.hs" #-}

{-# LINE 77 "templates/GenericTemplate.hs" #-}

{-# LINE 86 "templates/GenericTemplate.hs" #-}

infixr 9 `HappyStk`
data HappyStk a = HappyStk a (HappyStk a)

-----------------------------------------------------------------------------
-- starting the parse

happyParse start_state = happyNewToken start_state notHappyAtAll notHappyAtAll

-----------------------------------------------------------------------------
-- Accepting the parse

-- If the current token is 0#, it means we've just accepted a partial
-- parse (a %partial parser).  We must ignore the saved token on the top of
-- the stack in this case.
happyAccept 0# tk st sts (_ `HappyStk` ans `HappyStk` _) =
        happyReturn1 ans
happyAccept j tk st sts (HappyStk ans _) = 
        (happyTcHack j (happyTcHack st)) (happyReturn1 ans)

-----------------------------------------------------------------------------
-- Arrays only: do the next action



happyDoAction i tk st
        = {- nothing -}


          case action of
                0#           -> {- nothing -}
                                     happyFail i tk st
                -1#          -> {- nothing -}
                                     happyAccept i tk st
                n | LT(n,(0# :: Happy_GHC_Exts.Int#)) -> {- nothing -}

                                                   (happyReduceArr Happy_Data_Array.! rule) i tk st
                                                   where rule = (Happy_GHC_Exts.I# ((Happy_GHC_Exts.negateInt# ((n Happy_GHC_Exts.+# (1# :: Happy_GHC_Exts.Int#))))))
                n                 -> {- nothing -}


                                     happyShift new_state i tk st
                                     where new_state = (n Happy_GHC_Exts.-# (1# :: Happy_GHC_Exts.Int#))
   where off    = indexShortOffAddr happyActOffsets st
         off_i  = (off Happy_GHC_Exts.+# i)
         check  = if GTE(off_i,(0# :: Happy_GHC_Exts.Int#))
                  then EQ(indexShortOffAddr happyCheck off_i, i)
                  else False
         action
          | check     = indexShortOffAddr happyTable off_i
          | otherwise = indexShortOffAddr happyDefActions st


indexShortOffAddr (HappyA# arr) off =
        Happy_GHC_Exts.narrow16Int# i
  where
        i = Happy_GHC_Exts.word2Int# (Happy_GHC_Exts.or# (Happy_GHC_Exts.uncheckedShiftL# high 8#) low)
        high = Happy_GHC_Exts.int2Word# (Happy_GHC_Exts.ord# (Happy_GHC_Exts.indexCharOffAddr# arr (off' Happy_GHC_Exts.+# 1#)))
        low  = Happy_GHC_Exts.int2Word# (Happy_GHC_Exts.ord# (Happy_GHC_Exts.indexCharOffAddr# arr off'))
        off' = off Happy_GHC_Exts.*# 2#





data HappyAddr = HappyA# Happy_GHC_Exts.Addr#




-----------------------------------------------------------------------------
-- HappyState data type (not arrays)

{-# LINE 170 "templates/GenericTemplate.hs" #-}

-----------------------------------------------------------------------------
-- Shifting a token

happyShift new_state 0# tk st sts stk@(x `HappyStk` _) =
     let i = (case Happy_GHC_Exts.unsafeCoerce# x of { (Happy_GHC_Exts.I# (i)) -> i }) in
--     trace "shifting the error token" $
     happyDoAction i tk new_state (HappyCons (st) (sts)) (stk)

happyShift new_state i tk st sts stk =
     happyNewToken new_state (HappyCons (st) (sts)) ((happyInTok (tk))`HappyStk`stk)

-- happyReduce is specialised for the common cases.

happySpecReduce_0 i fn 0# tk st sts stk
     = happyFail 0# tk st sts stk
happySpecReduce_0 nt fn j tk st@((action)) sts stk
     = happyGoto nt j tk st (HappyCons (st) (sts)) (fn `HappyStk` stk)

happySpecReduce_1 i fn 0# tk st sts stk
     = happyFail 0# tk st sts stk
happySpecReduce_1 nt fn j tk _ sts@((HappyCons (st@(action)) (_))) (v1`HappyStk`stk')
     = let r = fn v1 in
       happySeq r (happyGoto nt j tk st sts (r `HappyStk` stk'))

happySpecReduce_2 i fn 0# tk st sts stk
     = happyFail 0# tk st sts stk
happySpecReduce_2 nt fn j tk _ (HappyCons (_) (sts@((HappyCons (st@(action)) (_))))) (v1`HappyStk`v2`HappyStk`stk')
     = let r = fn v1 v2 in
       happySeq r (happyGoto nt j tk st sts (r `HappyStk` stk'))

happySpecReduce_3 i fn 0# tk st sts stk
     = happyFail 0# tk st sts stk
happySpecReduce_3 nt fn j tk _ (HappyCons (_) ((HappyCons (_) (sts@((HappyCons (st@(action)) (_))))))) (v1`HappyStk`v2`HappyStk`v3`HappyStk`stk')
     = let r = fn v1 v2 v3 in
       happySeq r (happyGoto nt j tk st sts (r `HappyStk` stk'))

happyReduce k i fn 0# tk st sts stk
     = happyFail 0# tk st sts stk
happyReduce k nt fn j tk st sts stk
     = case happyDrop (k Happy_GHC_Exts.-# (1# :: Happy_GHC_Exts.Int#)) sts of
         sts1@((HappyCons (st1@(action)) (_))) ->
                let r = fn stk in  -- it doesn't hurt to always seq here...
                happyDoSeq r (happyGoto nt j tk st1 sts1 r)

happyMonadReduce k nt fn 0# tk st sts stk
     = happyFail 0# tk st sts stk
happyMonadReduce k nt fn j tk st sts stk =
      case happyDrop k (HappyCons (st) (sts)) of
        sts1@((HappyCons (st1@(action)) (_))) ->
          let drop_stk = happyDropStk k stk in
          happyThen1 (fn stk tk) (\r -> happyGoto nt j tk st1 sts1 (r `HappyStk` drop_stk))

happyMonad2Reduce k nt fn 0# tk st sts stk
     = happyFail 0# tk st sts stk
happyMonad2Reduce k nt fn j tk st sts stk =
      case happyDrop k (HappyCons (st) (sts)) of
        sts1@((HappyCons (st1@(action)) (_))) ->
         let drop_stk = happyDropStk k stk

             off = indexShortOffAddr happyGotoOffsets st1
             off_i = (off Happy_GHC_Exts.+# nt)
             new_state = indexShortOffAddr happyTable off_i



          in
          happyThen1 (fn stk tk) (\r -> happyNewToken new_state sts1 (r `HappyStk` drop_stk))

happyDrop 0# l = l
happyDrop n (HappyCons (_) (t)) = happyDrop (n Happy_GHC_Exts.-# (1# :: Happy_GHC_Exts.Int#)) t

happyDropStk 0# l = l
happyDropStk n (x `HappyStk` xs) = happyDropStk (n Happy_GHC_Exts.-# (1#::Happy_GHC_Exts.Int#)) xs

-----------------------------------------------------------------------------
-- Moving to a new state after a reduction


happyGoto nt j tk st = 
   {- nothing -}
   happyDoAction j tk new_state
   where off = indexShortOffAddr happyGotoOffsets st
         off_i = (off Happy_GHC_Exts.+# nt)
         new_state = indexShortOffAddr happyTable off_i




-----------------------------------------------------------------------------
-- Error recovery (0# is the error token)

-- parse error if we are in recovery and we fail again
happyFail 0# tk old_st _ stk@(x `HappyStk` _) =
     let i = (case Happy_GHC_Exts.unsafeCoerce# x of { (Happy_GHC_Exts.I# (i)) -> i }) in
--      trace "failing" $ 
        happyError_ i tk

{-  We don't need state discarding for our restricted implementation of
    "error".  In fact, it can cause some bogus parses, so I've disabled it
    for now --SDM

-- discard a state
happyFail  0# tk old_st (HappyCons ((action)) (sts)) 
                                                (saved_tok `HappyStk` _ `HappyStk` stk) =
--      trace ("discarding state, depth " ++ show (length stk))  $
        happyDoAction 0# tk action sts ((saved_tok`HappyStk`stk))
-}

-- Enter error recovery: generate an error token,
--                       save the old token and carry on.
happyFail  i tk (action) sts stk =
--      trace "entering error recovery" $
        happyDoAction 0# tk action sts ( (Happy_GHC_Exts.unsafeCoerce# (Happy_GHC_Exts.I# (i))) `HappyStk` stk)

-- Internal happy errors:

notHappyAtAll :: a
notHappyAtAll = error "Internal Happy error\n"

-----------------------------------------------------------------------------
-- Hack to get the typechecker to accept our action functions


happyTcHack :: Happy_GHC_Exts.Int# -> a -> a
happyTcHack x y = y
{-# INLINE happyTcHack #-}


-----------------------------------------------------------------------------
-- Seq-ing.  If the --strict flag is given, then Happy emits 
--      happySeq = happyDoSeq
-- otherwise it emits
--      happySeq = happyDontSeq

happyDoSeq, happyDontSeq :: a -> b -> b
happyDoSeq   a b = a `seq` b
happyDontSeq a b = b

-----------------------------------------------------------------------------
-- Don't inline any functions from the template.  GHC has a nasty habit
-- of deciding to inline happyGoto everywhere, which increases the size of
-- the generated parser quite a bit.


{-# NOINLINE happyDoAction #-}
{-# NOINLINE happyTable #-}
{-# NOINLINE happyCheck #-}
{-# NOINLINE happyActOffsets #-}
{-# NOINLINE happyGotoOffsets #-}
{-# NOINLINE happyDefActions #-}

{-# NOINLINE happyShift #-}
{-# NOINLINE happySpecReduce_0 #-}
{-# NOINLINE happySpecReduce_1 #-}
{-# NOINLINE happySpecReduce_2 #-}
{-# NOINLINE happySpecReduce_3 #-}
{-# NOINLINE happyReduce #-}
{-# NOINLINE happyMonadReduce #-}
{-# NOINLINE happyGoto #-}
{-# NOINLINE happyFail #-}

-- end of Happy Template.