!9A             ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a bcdefghij k lmnopqrstuvwxyz{|}~        !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~                                      !"#$%&' ( ) *+,-./01234 5 6 7 8 9 : ; < = >?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmn o p qrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~                                  ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~                                                                                                                                                                   ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~                                                                                                                                                                   ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~                                                                                                                                                                   ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~                            ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~                                                                                                                                 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ![!\!]!^!_!`!a!b!c!d!e!f!g!h!i!j!k!l!m!n!o!p!q!r!s!t!u!v!w!x!y!z!{!|!}!~!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~""""""""""""""""                         !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVW X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x yz{#|#}#~###################################################$D%(C) 2013 Richard EisenbergBSD-style (see LICENSE) Ryan Scott experimental non-portableNone%&',-.=>?FHSUVXgkRV * singletons Similar to +*, but for two-parameter type constructors.+ singletons:Wrapper for converting the normal type-level arrow into a /. For example, given: data Nat = Zero | Succ Nat type family Map (a :: a ~> b) (a :: [a]) :: [b] Map f '[] = '[] Map f (x ': xs) = Apply f x ': Map f xs We can write: #Map (TyCon1 Succ) [Zero, Succ Zero], singletonsWorkhorse for the +A, etc., types. This can be used directly in place of any of the TyConN$ types, but it will work only with  monomorphicB types. When GHC#14645 is fixed, this should fully supersede the TyConN types.- singletonsAn infix synonym for .. singletonsType level function application/ singletonspSomething of kind `a ~> b` is a defunctionalized type function that is not necessarily generative or injective.0 singletonsRepresentation of the kind of a type-level function. The difference between term-level arrows and this type-level arrow is that at the term level applications can be unsaturated, whereas at the type level all applications have to be fully saturated.1 singletonsA 1 wraps up a 9 instance for explicit handling.3 singletonsAn existentially-quantified singleton. This type is useful when you want a singleton type, but there is no way of knowing, at compile-time, what the type index will be. To make use of this type, you will generally have to use a pattern-match: ofoo :: Bool -> ... foo b = case toSing b of SomeSing sb -> {- fancy dependently-typed code with sb -};An example like the one above may be easier to write using \.5 singletonsThe 5 class is a kind class. It classifies all kinds for which singletons are defined. The class supports converting between a singleton type and the base (unrefined) type which it is built from.For a 5@ instance to be well behaved, it should obey the following laws: 8 . 7 "a 3 (\x -> \ x 7) "a  4The final law can also be expressed in terms of the G pattern synonym: (\(G sing) -> G sing) "a  6 singletons6Get a base type from the promoted kind. For example,  Demote Bool will be the type Bool8. Rarely, the type and kind do not match. For example,  Demote Nat is Natural.7 singletons-Convert a singleton to its unrefined version.8 singletonsHConvert an unrefined type to an existentially-quantified singleton type.9 singletonsA 9 constraint is essentially an implicitly-passed singleton. If you need to satisfy this constraint with an explicit singleton, please see [ or the ; pattern synonym.: singletons;Produce the singleton explicitly. You will likely need the ScopedTypeVariables0 extension to use this method the way you want.; singletons'The singleton kind-indexed data family.< singletons Force GHC to unify the kinds of a and b . Note that  SameKind a b is different from KindOf a ~ KindOf b in that the former makes the kinds unify immediately, whereas the latter is a proposition that GHC considers as possibly false.= singletons=Convenient synonym to refer to the kind of a type variable: type KindOf (a :: k) = kG singletonsnAn explicitly bidirectional pattern synonym for going between a singleton and the corresponding demoted term.As an  expression5: this takes a singleton to its demoted (base) type.:t FromSing \@Bool!FromSing \@Bool :: Sing a -> BoolFromSing SFalseFalseAs a pattern8: It extracts a singleton from its demoted (base) type.  singAnd ::  ->  -> 3  singAnd (G singBool1) (G singBool2) = 3 (singBool1 %&& singBool2) instead of writing it with \: singAnd bool1 bool2 = \ bool1 $ singBool1 -> \ bool2 $ singBool2 -> 3 (singBool1 %&& singBool2) H singletonsDAn explicitly bidirectional pattern synonym for implicit singletons.As an  expression: Constructs a singleton Sing a( given a implicit singleton constraint SingI a.As a pattern: Matches on an explicit Sing a witness bringing an implicit SingI a constraint into scope.I singletonsGet an implicit singleton (a 9 instance) from an explicit one.J singletonsAn infix synonym for ?K singletonsUse this function when passing a function on singletons as a higher-order function. You will need visible type application to get this to work. For example: Wfalses = sMap (singFun1 @NotSym0 sNot) (STrue `SCons` STrue `SCons` SNil)There are a family of  singFun...? functions, keyed by the number of parameters of the function.S singletonsThis is the inverse of K, and likewise for the other  unSingFun... functions.[ singletonsRConvenience function for creating a context with an implicit singleton available.\ singletons Convert a normal datatype (like D) to a singleton for that datatype, passing it into a continuation.] singletonsyA convenience function useful when we need to name a singleton value multiple times. Without this function, each use of :d could potentially refer to a different singleton, and one has to use type signatures (often with ScopedTypeVariables#) to ensure that they are the same.^ singletonsA convenience function that names a singleton satisfying a certain property. If the singleton does not satisfy the property, then the function returns X. The property is expressed in terms of the underlying representation of the singleton._ singletons7Allows creation of a singleton when a proxy is at hand.` singletons&Allows creation of a singleton when a proxy# is at hand.a singletonsvA convenience function that takes a type as input and demotes it to its value-level counterpart as output. This uses 5 and 9 behind the scenes, so a = 7 :.*This function is intended to be used with TypeApplications. For example: demote @TrueTrue#demote @(Nothing :: Maybe Ordering)Nothing singletonsNote that this instance's 87 implementation crucially relies on the fact that the 5 instances for k1 and k2 both satisfy the 5 laws. If they don't, 8 might produce strange results!\ singletonsThe original datatype singletonsFunction expecting a singletonR !"#$%&'()*+,-./0123456789:;>?<=@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a-9 /0J9 (C) 2013 Richard EisenbergBSD-style (see LICENSE) Ryan Scott experimental non-portableNone &'-.>HSUVX_+b singletonsMembers of the b "kind" class support decidable equality. Instances of this class are generated alongside singleton definitions for datatypes that derive an  instance.c singletons>Compute a proof or disproof of equality, given two singletons.d singletonsA d about a type a0 is either a proof of existence or a proof that a cannot exist.e singletons Witness for af singletonsProof that no a existsg singletons,Because we can never create a value of type ", a function that type-checks at  a -> Void shows that objects of type a% can never exist. Thus, we say that a is g bcdefg bcgdefc4 Safe-Hcj singletonsThis class (which users should never see) is to be instantiated in order to use an otherwise-unused data constructor, such as the "kind-inference" data constructor for defunctionalization symbols.jkjk&None ,-.12=?HVc[     'None1=?@AFMSX_u singletonsGenerate a new Unique singletonsMis a valid Haskell infix data constructor (i.e., does it begin with a colon?) singletonsIs an identifier a legal data constructor name in Haskell? That is, is its first character an uppercase letter (prefix) or a colon (infix)? singletonsIs an identifier uppercase?"Note that this will always return   for infix names, since the concept of upper- and lower-case doesn't make sense for non-alphabetic characters. If you want to check if a name is legal as a data constructor, use the  function.! singletons Convert a " to a #.$ singletonsTNon capture-avoiding substitution. (If you want capture-avoiding substitution, use substTy from !Language.Haskell.TH.Desugar.Subst.% singletonsLDecompose an applied type into its individual components. For example, this: Either Int Char would be unfolded to this: Either :| [Int, Char] & singletonsCall ' first to ensure we have a (# in the type namespace, then call ).H*+,-./0123456789:;<=>?@ABCDEF!GHI$JKLMNOP%QRSTUVWXYZ[\]&^_`abcdefghi(Noneyj singletonsIf a k. begins with one or more underscores, return l (us, rest), where us9 contain all of the underscores at the beginning of the k and rest contains the remainder of the k. Otherwise, return .umnopqrstuvwxyz{|}~j)None{*None|%+None1>HMV|,NoneJM}+ -None}.None}/None~      0(C) 2018 Ryan ScottBSD-style (see LICENSE) Ryan Scott experimental non-portableNone1NoneJP_2(C) 2018 Ryan ScottBSD-style (see LICENSE) Ryan Scott experimental non-portableNoneX singletonsDoes not contain variable singletonsThe variable itself singletons(Type app, variable only in last argument singletons.Type app, variable other than in last argument singletons Forall type singletonsIs this data type a non-vanilla data type? Here, "non-vanilla" refers to any data type that cannot be expressed using Haskell98 syntax. For instance, this GADT: ?data Foo :: Type -> Type where MkFoo :: forall a. a -> Foo a *Is equivalent to this Haskell98 data type: data Foo a = MkFoo a +However, the following GADT is non-vanilla: 9data Bar :: Type -> Type where MkBar :: Int -> Bar Int USince there is no equivalent Haskell98 data type. The closest you could get is this: $data Bar a = (a ~ Int) => MkBar Int ,Which requires language extensions to write.HA data type is a non-vanilla if one of the following conditions are met: >A constructor has any existentially quantified type variables.A constructor has a context.AWe care about this because some derivable stock classes, such as 7, forbid derived instances for non-vanilla data types. singletonsVariable to look for singletons How to fold singletonsType to process !"#$%3(C) 2015 Richard EisenbergBSD-style (see LICENSE) Ryan Scott experimental non-portableNoneX&'4None( singletonsThe original2 constructors (for inferring the instance context) singletonsThe  singletons constructors)*+(,-./5(C) 2018 Ryan ScottBSD-style (see LICENSE) Ryan Scott experimental non-portableNoneXB06(C) 2017 Ryan ScottBSD-style (see LICENSE) Ryan Scott experimental non-portableNoneX51 singletonsqParenthesize an infix constructor name if it is being applied as a prefix function (e.g., data Amp a = (:&) a a)2 singletonsTurn a context like (3 a, 3 b) into (ShowSing a, ShowSing b),. This is necessary for standalone-derived 3 instances for singleton types.427(C) 2015 Richard EisenbergBSD-style (see LICENSE) Ryan Scott experimental non-portableNone5 singletons#Make a *non-singleton* Ord instance58(C) 2018 Ryan ScottBSD-style (see LICENSE) Ryan Scott experimental non-portableNoneX69(C) 2018 Ryan ScottBSD-style (see LICENSE) Ryan Scott experimental non-portableNoneX789:;:(C) 2015 Richard EisenbergBSD-style (see LICENSE) Ryan Scott experimental non-portableNone<;(C) 2015 Richard EisenbergBSD-style (see LICENSE) Ryan Scott experimental non-portableNone=<(C) 2015 Richard EisenbergBSD-style (see LICENSE) Ryan Scott experimental non-portableNonePX> singletons Split up a [DDec] into its pieces, extracting ?! instances from deriving clauses@ singletons"The deriving strategy, if present. singletonsThe class being derived (e.g., :), possibly applied to some number of arguments (e.g.,  C Int Bool). singletonsl ctx if ctx was provided via StandaloneDeriving.  if using a deriving clause. singletons$The data type argument to the class. singletons<The original data type information (e.g., its constructors).ABCDEFGHIJK>LMN@O=NoneP_` l singletonsoGenerate promoted definitions from a type that is already defined. This is generally only useful with classes.m singletonsKPromote every declaration given to the type level, retaining the originals.n singletonsPromote each declaration, discarding the originals. Note that a promoted datatype uses the same definition as an original datatype, so this will not work with datatypes. Classes, instances, and functions are all fine.p singletonsProduce instances for (==)+ (type-level equality) from the given typesq singletonsProduce instances for POrd from the given typesr singletonsProduce an instance for POrd from the given types singletonsProduce instances for PBounded from the given typest singletonsProduce an instance for PBounded from the given typeu singletonsProduce instances for PEnum from the given typesv singletonsProduce an instance for PEnum from the given typew singletonsProduce instances for PShow from the given typesx singletonsProduce an instance for PShow from the given typey singletonsProduce an instance for (==)* (type-level equality) from the given typeP singletonseinstantiations for class tyvars (Nothing for default decls) See Note [Promoted class method kinds]!lmnopqrstuvwxyQRSTUVWXPYZ[\]^_`ab>NoneJPz singletonstGenerate singleton definitions from a type that is already defined. For example, the singletons package itself uses 2$(genSingletons [''Bool, ''Maybe, ''Either, ''[]]))to generate singletons for Prelude types.{ singletonskMake promoted and singleton versions of all declarations given, retaining the original declarations. See  >https://github.com/goldfirere/singletons/blob/master/README.md for further explanation.| singletonsMake promoted and singleton versions of all declarations given, discarding the original declarations. Note that a singleton based on a datatype needs the original datatype, so this will fail if it sees any datatype declarations. Classes, instances, and functions are all fine.} singletonsCreate instances of SEq and type-level (==) for each type in the list~ singletonsCreate instance of SEq and type-level (==) for the given type singletonsCreate instances of SEq (only -- no instance for (==), which SEq0 generally relies on) for each type in the list singletonsCreate instances of SEq (only -- no instance for (==), which SEq) generally relies on) for the given type singletonsCreate instances of SDecide for each type in the list. singletonsCreate instance of SDecide for the given type. singletonsCreate instances of SOrd for the given types singletonsCreate instance of SOrd for the given type singletonsCreate instances of SBounded for the given types singletonsCreate instance of SBounded for the given type singletonsCreate instances of SEnum for the given types singletonsCreate instance of SEnum for the given type singletonsCreate instance of SShow for the given type(Not to be confused with showShowInstance.) singletonsCreate instances of SShow for the given types(Not to be confused with c.)d singletonsCreate instance of 3 for the given singleton type(Not to be confused with .)c singletonsCreate instances of 3 for the given singleton types(Not to be confused with .)e singletonsIf given a non-empty list of p, construct a case expression that brings singleton equality constraints into scope via pattern-matching. See "Note [Singling pattern signatures].f singletonsthe result kind, if known)z{|}~gdchijklmnopqrsetuvwxfyz?None&'-.=>?HSUVXf;{|}~ (C) 2017 Ryan ScottBSD-style (see LICENSE) Ryan Scott experimental non-portableNone&'-.HVXf;;(C) 2013 Richard EisenbergBSD-style (see LICENSE) Ryan Scott experimental non-portableNone&'-.HSVXH;H;(C) 2017 Ryan ScottBSD-style (see LICENSE) Ryan Scott experimental non-portableNone&'-.HSUVXk singletonsUnicode shorthand for . singletonsA dependent pair. singletons2Project the first element out of a dependent pair. singletons3Project the second element out of a dependent pair.!In an ideal setting, the type of  would be closer to:  :: ; (sig ::  s t) -> t @@ ProjSigma1 sig But promoting v to a type family is not a simple task. Instead, we do the next-best thing, which is to use Church-style elimination. singletons Map across a  value in a dependent fashion. singletonsZip two ( values together in a dependent fashion.  4-(C) 2013-2014 Richard Eisenberg, Jan StolarekBSD-style (see LICENSE) Ryan Scott experimental non-portableNone&'-.2HUVXk1 singletonsConjunction of singletons5 singletonsDisjunction of singletons= singletonsNegation of a singletonD singletonsConditional over singletons ;"#$%&'./012345:;<=BCD ;D=15 "'.0BC234:;<#$%&/132352:;(C) 2013 Richard EisenbergBSD-style (see LICENSE) Ryan Scott experimental non-portableNone&'-.8>HSUVXkG singletonsA sensible way to compute Boolean equality for types of any kind. Note that this definition is slightly different from the '(DTE.==)' type family from Data.Type.Equality in basek, as '(DTE.==)' attempts to distinguish applications of type constructors from other types. As a result, a == a does not reduce to  for every a, but G a a does reduce to  for every a-. The latter behavior is more desirable for  singletons/' purposes, so we use it instead of '(DTE.==)'.H singletonsThe promoted analogue of H. If you supply no definition for '(==)', then it defaults to a use of G.K singletonsThe singleton analogue of . Unlike the definition for c, it is required that instances define a body for '(%==)'. You may also supply a body for '(%/=)'.L singletonsBoolean equality on singletonsM singletons!Boolean disequality on singletonsGHIJKLMNOPQRSTUVHIJKLMGTUVQRSNOPI4J4L4M4QRTU(C) 2013 Richard EisenbergBSD-style (see LICENSE) Ryan Scott experimental non-portableNone&'-=?FHSUVX"F singletons A variant of  whose underlying  is restricted to kind  rep (for some  rep). singletons#A choice of singleton for the kind  rep (for some  rep0), an instantiation of which is the famous kind .LConceivably, one could generalize this instance to `Sing :: k -> Type` for any kind k, and remove all other ; instances. We don't adopt this design, however, since it is far more convenient in practice to work with explicit singleton values than s (for instance, Ms are more difficult to pattern match on, and require extra runtime checks).>We cannot produce explicit singleton values for everything in  rep6, however, since it is an open kind, so we reach for  in this one particular case.;;(C) 2013 Richard EisenbergBSD-style (see LICENSE) Ryan Scott experimental non-portableNone&'-./18=>?HUVX$= ;    =  ;   4444@(C) 2014 Richard EisenbergBSD-style (see LICENSE) Ryan Scott experimental non-portableNone&',-.1=>?HSUVXk? M singletonsThe promotion of 3. This version is more poly-kinded for easier use.N singletonsKind-restricted synonym for ; for SymbolsO singletonsKind-restricted synonym for ; for NatsR singletonsGiven a singleton for Nat, call something requiring a KnownNat instance.S singletonsGiven a singleton for Symbol, call something requiring a  KnownSymbol instance.T singletonsThe promotion of 3. This version is more poly-kinded for easier use.W singletonsThe singleton for X singletonsThe promotion of .[ singletonsThe singleton for .] singletonsThe singleton for .^ singletons'The singleton analogue of '(TN.^)' for s.b singletonsThe singleton analogue of 2Note that, because of historical reasons in GHC's  API, * is incompatible (unification-wise) with  and the H, K, , and  instances for . (a  b) ~ 'True does not imply anything about a  b or any other H /  relationships.(Be aware that " in the paragraph above refers to  from the  typeclass, exported from Data.Singletons.Prelude.Ord, and not the  from  GHC.TypeNats*. The latter is simply a type alias for (a  b) ~ 'True.)pThis is provided here for the sake of completeness and for compatibility with libraries with APIs built around . New code should use +, exposed through this library through the  and  instances for .*;>QP?MNORSTUVWXYZ[\]^_`abcde^8_`b4cd(C) 2017 Ryan ScottBSD-style (see LICENSE) Ryan Scott experimental non-portableNone&',-.1=?HSXq`f singletons8In addition to the promoted and singled versions of the 3 class that  singletons< provides, it is also useful to be able to directly define 3f instances for singleton types themselves. Doing so is almost entirely straightforward, as a derived 3 instance does 90 percent of the work. The last 10 percent getting the right instance context is a bit tricky, and that's where f comes into play.sAs an example, let's consider the singleton type for lists. We want to write an instance with the following shape: 0deriving instance ??? => Show (Sing (x :: [k])) )To figure out what should go in place of ???=, observe that we require the type of each field to also be 34 instances. In other words, we need something like (Show (Sing (a :: k)))4. But this isn't quite right, as the type variable a4 doesn't appear in the instance head. In fact, this aP type is really referring to an existentially quantified type variable in the C constructor, so it doesn't make sense to try and use it like this. Luckily, the QuantifiedConstraintse language extension provides a solution to this problem. This lets you write a context of the form  (forall a. Show (Sing (a :: k)))/, which demands that there be an instance for Show (Sing (a :: k))" that is parametric in the use of a'. Thus, our final instance looks like: Mderiving instance (forall a. Show (Sing (a :: k))) => Show (Sing (x :: [k])) HBecause that quantified constraint is somewhat lengthy, we provide the fT type synonym as a convenient shorthand. Thus, the above instance is equivalent to: 7deriving instance ShowSing k => Show (Sing (x :: [k])) When singling a derived 3 instance,  singletons will also derive a 35 instance for the corresponding singleton type using f. In other words, if you give  singletons a derived 38 instance, then you'll receive the following in return: A promoted (PShow ) instance A singled (SShow ) instanceA 3 instance for the singleton typeWhat a bargain!ff(C) 2014 Richard EisenbergBSD-style (see LICENSE) Ryan Scott experimental non-portableNone&',-.HVXkj} singletonsThis bogus instance is helpful for people who want to define functions over Symbols that will only be used at the type level or as singletons. singletons This bogus  instance is helpful for people who want to define functions over Nats that will only be used at the type level or as singletons. A correct SNum instance for Nat singletons exists. singletonsAdapted from GHC's source code.ZCompute the logarithm of a number in the given base, rounded down to the closest integer. H;QPMNORSTUVWXYZ[\]^_`abcdeH;QPONRSMWT[X]^bUVYZ\_`acde7777-(C) 2013-2014 Richard Eisenberg, Jan StolarekBSD-style (see LICENSE) Ryan Scott experimental non-portableNone&'-.HSVXp(0 ;0; (C) 2014 Richard EisenbergBSD-style (see LICENSE) Ryan Scott experimental non-portableNone&'-./8>HUVXs&      !"HIJKL&     HL !"IJK  6 6 7 !(C) 2014 Jan StolarekBSD-style (see LICENSE)%Jan Stolarek (jan.stolarek@p.lodz.pl) experimental non-portableNone&'-.HUVXwB./0QRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~BQRS.0TVWYZ[XU\]^_`abcdef/ghlmnopqrwxyz{|}~stuvijkS5W Y0Z0\deo p q wxz{ A(C) 2018 Ryan ScottBSD-style (see LICENSE) Ryan Scott experimental non-portableNone&'-./18=?HUVX}=8      !"#$%&'()*+     ,-./0123456789:;<=>?@ABCDEFGHIJK LMNOP!Q"R#$S%T&'()*+,-./01234U5V67W8X9:Y;Z<[=\]>^?@_A`BCaDbEFcGdHIeJfKgLMhNiOjPkQRlSmTnUoVpWXqYrZs[t\u]v^_w`xabycz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrsdefghijklmnoptuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a$311 4 44 4!"'4+145@Alp(C) 2018 Ryan ScottBSD-style (see LICENSE) Ryan Scott experimental non-portableNone&'-./18=?HUVXJ !"#$%&qrstuvwxyz{|}~ srqt$%&!"#{|}xyzuvw~ q1r4s4uvxy{|(C) 2016 Richard EisenbergBSD-style (see LICENSE) Ryan Scott experimental non-portableNone&'-.HUVX&TVWXYghlmnopqrstuvwxy&TVWXYghlmnopqrstuvwxy 1((C) 2014 Jan Stolarek, Richard EisenbergBSD-style (see LICENSE)%Jan Stolarek (jan.stolarek@p.lodz.pl) experimental non-portableNone&'-./8>HUVXl%%B(C) 2018 Ryan ScottBSD-style (see LICENSE) Ryan Scott experimental non-portableNone&'-./18=?HUVXTbcdefghijklmnopqrstuvwxyz{|}~;      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQR6C-(C) 2013-2014 Richard Eisenberg, Jan StolarekBSD-style (see LICENSE) Ryan Scott experimental non-portableNone&'-.>HSUVXjSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ [ \] ^ _ `abcdefg hi!jk"l#mn$o%&'()*+,-.p/q0rs1t2uv3w4xy5z6{|7}8~9:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefg h i j k lmnopqrstuvwxyz{|}~ 5*9 %'*,   (C) 2017 Ryan ScottBSD-style (see LICENSE) Ryan Scott experimental non-portableNone&'-./18HUVXfi singletons*GHC currently has no notion of type-level !*s, so we fake them with single-character s. singletonsThe shows7 functions return a function that prepends the output  to an existing R. This allows constant-time concatenation of results using function composition.& singletons"B, but with an extra underscore so that its promoted counterpart () will not clash with the Show class.<&<&(C) 2018 Ryan ScottBSD-style (see LICENSE) Ryan Scott experimental non-portableNone&'-./18=?HUVXqTG;NPOQRSTUVWXYZ[{|}~GRSTUNPOQ;~{[XYZVW|}D(C) 2016 Richard EisenbergBSD-style (see LICENSE) Ryan Scott experimental non-portableNone &'-.HVX{0#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQR-(C) 2013-2014 Richard Eisenberg, Jan StolarekBSD-style (see LICENSE) Ryan Scott experimental non-portableNone&'-.HSVX׃! ;             !;              (C) 2018 Ryan ScottBSD-style (see LICENSE) Ryan Scott experimental non-portableNone&'-./18=?HUVXڎ E H J Q G L M R S U T O P K N F I V f e b Y [ X ] ^ c d ` a \ _ W Z g h i j k l m n o p q r s t u v w x y z { | } ~  V f e b Y [ X ] ^ c d ` a \ _ W Z E H J Q G L M R S U T O P K N F I ~  { | } x y z v w t u r s o p q m n k l i j g h (C) 2018 Ryan ScottBSD-style (see LICENSE)'Richard Eisenberg (rae@cs.brynmawr.edu) experimental non-portableNone&'-./1FHVXU ; ;(C) 2018 Ryan ScottBSD-style (see LICENSE)'Richard Eisenberg (rae@cs.brynmawr.edu) experimental non-portableNone&'-./1=?HUVX ;  ;  (C) 2018 Ryan ScottBSD-style (see LICENSE) Ryan Scott experimental non-portableNone&'-./18=?HUVXW4 Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d w x y z { | } ~  4 V W X Y Z Q R S T U w x y z { | b c d ` a ] ^ _ [ \ } ~  (C) 2018 Ryan ScottBSD-style (see LICENSE) Ryan Scott experimental non-portableNone&'-./18=?HUVXqk;  RSk;  SR -(C) 2013-2014 Richard Eisenberg, Jan StolarekBSD-style (see LICENSE) Ryan Scott experimental non-portableNoneV5";RSabcdef      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~ Q S R U T L H M K J P O b d c f e ] Y ^ \ [ a ` g h i j k l m n o p q r s t u x y z { | } ~  y z ";S,+*) ` O a PR&$%-#" [ J \ K ^ M! Y H ] L e T f U c R d S y z )%&$("#. ' b Q ' (*/012   3456        +! ,789:;fed/0123456 t u r sabc=>BCD?@A-.EFGH ~  x y zIJK { | } i j g h m n k lYZ[\VWX]^_`abc def789<=>ghijklm:;<STU o p q  pqrvwxstuyz{|}~?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvnoLMNOPQR wxyz{|}~!(C) 2018 Ryan ScottBSD-style (see LICENSE) Ryan Scott experimental non-portableNone&'-./8=?HUVXHZ\[]^_`abcdefghij^_`aZ\[]hijdefgbc(C) 2016 Richard EisenbergBSD-style (see LICENSE) Ryan Scott experimental non-portableNone&'-./HUVX;      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~;wvyz{|}~uopqsrtnihmlkjx;<=>?@     678345012-./*+,'()$%&!"# ABQRSNOPKLMFGHIJCDETUVcdefgWXYZ[\]^_`ab9:"(C) 2017 Ryan ScottBSD-style (see LICENSE) Ryan Scott experimental non-portableNone&'-./HVXr (C) 2018 Ryan ScottBSD-style (see LICENSE) Ryan Scott experimental non-portableNone&'-./8=?HUVXM ;       !"#'()456789:;<=noprxyz M     ;  r 'p(o)n xyz!"#456789:;<=(C) 2018 Ryan ScottBSD-style (see LICENSE) Ryan Scott experimental non-portableNone&'-./8=?HUVX$%&*+,-./0123>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmt~ U T Z Y [ \ ] ^ _ x  Y T x Z U +lt*m  3d,k-j.i/h0g1f2e$%& ] ^ _ [ \ @AB~>?  bcCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a114 (C) 2013 Richard EisenbergBSD-style (see LICENSE) Ryan Scott experimental non-portableNone&',-.1FHUVXgqX !"#$%&'()*+,-./0123456789:;>?<=@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a_`abcdefghijklmnX;>?J9:5678=<1234IH[\G_a`]^0/+*)('&%$,.-KLMNOPQRSTUVWXYZFEDCBA@#"! mnjklhiefgbcd_`a_ ` ef(C) 2013 Richard EisenbergBSD-style (see LICENSE) Ryan Scott experimental non-portableNoneV4y singletons The function y generates a case expression where each right-hand side is identical. This may be useful if the type-checker requires knowledge of which constructor is used to satisfy equality or type-class constraints, but where each constructor is treated the same.z singletons The function z generates a case expression where each right-hand side is identical. This may be useful if the type-checker requires knowledge of which constructor is used to satisfy equality or type-class constraints, but where each constructor is treated the same. For z , unlike yJ, the scrutinee is a singleton. But make sure to pass in the name of the original datatype, preferring ''Maybe over ''SMaybe.y singletons-The head of the type of the scrutinee. (Like ''Maybe or ''Bool.) singletons*The scrutinee, in a Template Haskell quote singletons%The body, in a Template Haskell quotez singletons>The head of the type the scrutinee's type is based on. (Like ''Maybe or ''Bool.) singletons*The scrutinee, in a Template Haskell quote singletons%The body, in a Template Haskell quote !"#$%&'()*+,-./0123456789:;>?<=@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefgjklmnopqrstuvwxyz{|}~1DHIJKLMTUV    MUVWX\]Wopqr      !"#$%&NPOQRSTUXYZ[ E H J Q G L M R S U T O P K N F I V f e b Y [ X ] ^ c d ` a \ _ W Z Q R S T U V W X Y Z b c d_`abcdefghijklmnyz2{|zmnolpy}~qrstuvwxyz;HIJD1KLM bcgdef  V f e b Y [ X ] ^ c d ` a \ _ W Z E H J Q G L M R S U T O P K N F IRSTUNPOQ V W X Y Z Q R S T U     W34MWUVX]\TUV   $%&!"# [XYZ b c dopqrjk#(C) 2018 Ryan ScottBSD-style (see LICENSE) Ryan Scott experimental non-portableNone&'-.=?EHUVXkS { singletonsA drop-in replacement for S*. This also exists at the value-level as .| singletons Convert a ~ to a T from  GHC.TypeLits.~ singletons A type-level  which uses  as its text kind. singletonsA value-level  which uses U as its text type. singletons%A description of a custom type error.This is a variation on T; that is parameterized over what text type is used in the % constructor. Instantiating it with U gives you , and instantiating it with  gives you ~. singletonsShow the text as is. singletonsPretty print the type. ShowType :: k -> ErrorMessage singletons4Put two pieces of error message next to each other. singletons8Stack two pieces of error message on top of each other. singletons Convert an  into a human-readable k. singletonsThe value-level counterpart to {.-Note that this is not quite as expressive as {,, as it is unable to print the contents of % constructors (it will simply print "<type>" in their place). singletonsThe singleton for .-Note that this is not quite as expressive as {, as it is unable to handle  constructors at all.;{|}~{~;}|6565 (C) 2013 Richard EisenbergBSD-style (see LICENSE) Ryan Scott experimental non-portableNoneVV!  !"#$%&'()*+,-./0123456789:;>?<=@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a./012345:;<=BCDGHIJKLMNOPQRSTUVMTUVWXYZ[\]^_`a      !"HIJKLRSTUVWXYZ\abcdeghijklmnopqstuwxyz{|     !"#$%&+@ABlrxyz    "#$%&')/0123456789=>VWXYZ[\]^_`abc|}~   &)*+,&NPOQRSTUVWXYZ[ E O Q G H J L M R S U T V ` b X Y [ ] ^ c d f e g h i j k l m n o p q t u x y z { | } Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d_`abcdefghijklmnw;D=15.0MWT[X]^RSTUNPOQ r     +l V b X Y [ ] ^ c d f e E Q G H J L M R S U T V W X Y Z Q R S T UTVWYZXU\RS,+*) ` O& )%&$"# '        &BC234:;</UVYZ\_`a[XYZVW$%&!"#xyz @AB o p q { | } x y z m n k l i j g h b c d ` a ] ^ _ [ \ghlmnopqwxyz{|stuijkabc=>ed/0123456 t u YZ[\VWX]^_`abc789 |}~$(C) 2013 Richard EisenbergBSD-style (see LICENSE) Ryan Scott experimental non-portableNone.HV| singletonsIProduce a representation and singleton for the collection of types given. A datatype Rep is created, with one constructor per type in the declared universe. When this type is promoted by the singletons library, the constructors become full types in *&, not just promoted data constructors. For example, )$(singletonStar [''Nat, ''Bool, ''Maybe])generates the following: @data Rep = Nat | Bool | Maybe Rep deriving (Eq, Ord, Read, Show)$and its singleton. However, because Rep is promoted to *0, the singleton is perhaps slightly unexpected: ndata instance Sing (a :: *) where SNat :: Sing Nat SBool :: Sing Bool SMaybe :: Sing a -> Sing (Maybe a)The unexpected part is that Nat, Bool, and Maybe above are the real Nat, Bool, and Maybe&, not just promoted data constructors."Please note that this function is very$ experimental. Use at your own risk. singletonsA list of Template Haskell Name s for types  !"#$%&'()*+,-./0123456789:;>?<=@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefgjklmnopqrstuvwxyz{|}~"#$%&'./012345:;<=BCDGHIJKLMNOPQRSTUV    MUVWX\]Wopqr      !"#$%&NPOQRSTUXYZ[ E H J Q G L M R S U T O P K N F I V f e b Y [ X ] ^ c d ` a \ _ W Z Q R S T U V W X Y Z b c d_`abcdefghijklmnyzVEFGEHIJKLJKMEFNEFOEFPEFQEFRSTUVWXEYZE[\EH]EF^E_`E_`EabEacEdeEdfEdgEdhEij%k%l%m%n%o%p%q%r%s%t%u%v%w%x%y%z%{%|%}%~%%%%%%%%%%%%%%%%%%%%%%%%%%%|%%%%%%%%%%%%%%%%%%%%%%%  ==============>>>>>>>>>>>>>>>>>???????????????????????????????????????????????????? ? ? ? ? ???????????????????? ?!?"?#??$???????%?&?'?(?)?*?+ , - . / 0 123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<:=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~@@@@@@@@@@@@@@@@@@@@@@@@@      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~\     AAAAAAAAAAA A!A"A#A$A%A&A'A(A)A*A+A,A-A.A/A0A1A2A3A4A5A6A7A8A9A:A;A<A=A>A?A@AAABACADAEAFAGAHAIAJAKALAMANAOAPAQARASATAUAVAWAXAYAZA[A\A]A^A_A`AaAbAcAdAeAfAgAhAiAjAkAlAmAnAoApAqArAsAtAuAvAwAxAyAzA{A|A}A~AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZ      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB B B B B BBBBBBBBBBBBBBBBBBBBBCCCCCCCC C!C"C#C$C%C&C'C(C)C*C+C,C-C.C/C0C1C2C3C4C5C6C7C8C9C:C;C<C=C>C?C@CACBCCCDCECFCGCHCICJCKCLCMCNCOCPCQCRCSCTCUCVCWCXCYCZC[C\C]C^C_CCC`CaCbCcCdCeCfCgChCiCjCkClCmCnCoCpCqCrCsCtCuCvCwCxCyCzC{C|C}C~CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC C C C C CCCCCCCCCCCCCCCCCCC C!C"C#C$C%C&C'C(C)C*C+C,C-C.C/C0C1C2C3C4C5C6C7C8C9C:C;C<C=C>C?C@CACBCCCDCECFCGCHCICJCKCLCMCNCOCPCQCRCSCTCUCVCWCXCYCZC[C\C]C^C_C`CaCbCcCdCeCfCgChCiCjCkClCmCnCoCpCqCrCsCtCuCvCwCxCyCzC{C|C}C~CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~=                                  ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~                                                                                                                                                                   ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~                                                                                                                                                                   ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~                                                                                                                                  =                                  ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P  Q R S T U  V  W  X  Y  Z  [  \  ]  ^  _  `  a  b  c  d e f g h i j k l m n o p q r s t u v  w  x  y  z  {  |  }  ~                                              ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~       =                                                                                                                                  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~            !"#$%&'()*+,-.!/!0!1!2!3!4!5!6!7!8!9!:!;!<!=!>!?!@!A!B!C!D!E!F!G!H!I!J!K!L!M!N!O!P!Q!R!S!T!U!V!W!X!Y!Z![!\!]!^!_!`!a!b!c!d!e!f!g!h!i!j!k!l!m!n!o!p!q!r!s!t!u!v!w!x!y!z!{!|!} y~-H,)+*J/.I WLRQNMSUT w"OP0Y68:1Z\]  ^_`abcjk     opqB9;=C#$Q g &%"!'S*ED)IHJG+VXWYF iZ      !"#$%&'()*+   D j,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~ B h""""""""""""""""                         !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmn o p q r s t u v w x y z { | } ~                  ###################################=###################$EJKE%%%%%%%%%%%J&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& & & & & & &&&&&&&&&&&&&&&&&&&&&&& & &!&"&#&$&%&&&'&(')'*'+',JK-'./01/02'3'4'5/6789:/;<'='>'?'@'A'B'C'D'E'F'G'H'I'J'K'L'M'N'O'P'Q'R'S'T'U'V'W'X'Y'Z'['\']'^'_'`'a'b'c'd'e'f'g'h'i'j'k'l'm'n'o'p'q'r's't'u'v'w'x'y'z'{'|(}E~E(((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((()))**+++++++++++++,,,,,, , , , , ---.//////////////0 1!1"2#2$2%2&2'2(E)*2+2,2-2.2/202122232425262738394:4;4<4=4>4?4@4A5B6C6DEiE6F7G8H9I9J9K9L9M:N;O<PJQ<R<S<T<U<V<W<X<Y<Z<[<\<]<^<_<`<a=b=c=d=e=f=g=h=i=j=k=l=m=n=o=p=q=r=s=t>u>v>w>x>y>>z>{>|>}>~>>>>>>>>>>>>>????????????????????????????????????? s? ?? ?? ?? ????????????? c?)JKEEJJKJKEEEEFEFEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA A A A A AAAAAAAAAAAAAAAAAAA A!A"A#A$A%A&A'A(A)A*A+A,A-A.A/A0A1A2A3A4A5A6A7A8A9A:A;A<A=A>A?A@AAABACADAEAFAGAHAIAJAKALAMANAOAPAQARASATAUAVAWAXAYAZA[A\A]A^A_A`AaAbAcAdAeAfAgAhAiAjAkAlAmAnAoApAqArAsAtAuAvAwAxAyAzA{A|A}A~AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA A A A A AAAAAAAAAAAAAAAAAAA A!A"A#A$A%A&A'A(A)A*A+A,A-A.A/A0A1A2A3A4A5A6A7A8A9A:A;A<A=A>A?A@AAABACADAEAFAGAHAIAJAKALAMANAOAPAQARASATAUAVAWAXAYAZA[A\A]A^A_A`AaAbAcAdAeAfAgAhAiAjAkAlAmAnAoApAqArAsAtAuAvAwAxAyAzA{A|A}A~AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA A A A A AAAAAAAAAAAAAAAAAAA A!A"A#A$A%A&A'A(A)A*A+A,A-A.A/A0A1A2A3A4A5A6A7A8A9A:A;A<A=A>A?A@AAABACADAEAFAGAHAIAJAKALAMANAOAPAQARASATAUAVAWAXAYAZA[A\A]A^A_A`AaAbAcAdAeAfAgAhAiAjAkAlAmAnBoBpBqBrBsBtBuBvBwBxByBzB{B|B}B~BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB B B B B BBBBBBBBBBBBBBBBBBB B!B"B#B$B%B&B'B(B)B*B+B,B-B.B/B0B1B2B3B4B5B6B7B8B9B:B;B<B=B>B?B@BABBBCBDBEBFBGBHBIBJBKBLBMBNBOBPBQBRBSBTBUBVBWBXBYBZB[B\B]B^B_B`BaBbBcBdBeBfBgBhBiBjBkBlBmBnBoBpBqBrBsBtBuBvBwBxByBzB{B|B}B~BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB B B B B BBBBBBBBBBBBBBBBBBB B!B"B#B$B%B&B'B(B)B*B+B,B-B.B/B0B1B2B3B4B5B6B7B8B9B:B;B<B=B>B?B@BABBBCBDBEBFBGBHBIBJBKBLBMBNBOBPBQBRBSBTBUBVBWBXBYBZB[B\B]B^B_C`CaCbCcCdCeCfCgChCiCjCkClCmCnCoCpCqCrCsCtCuCvCwCxCyCzC{C|C}C~CCCCCCCCCCCCCCCCCCCCCCCCCCCCCC xCCC tC |C {C C C vC uC C C C C C C yC zC zC C CC }C ~C yCCCC0CCCCC CC CCCCCCCCCCCCCCCCCCCC CC CC CC C CC C CC C CC CC C CC CC C CC CC C CC CC C CC C CC CC C CC C CC CC>CCC CCCCCCCCC<CCC CCCCCCCCCCC CC CC CC C CC CC CC CCCCCCCC CC CC C CC CC CCCCCCCCCCCCCCCCCCCCCCCCCC C C C C CCCCCCCCCCCCCCCCCCC C!C"C C#C C$C C%C&C'C(C)C*C+C,C-C.C/C0C1C2C3C4C5C6C7C8C9C:C;C<C=C>C?C@CACBCC:CCC8CC CCC CDCECFCGCHCICJCKCLCMCNCOCPCQCRCSCTCUCVCWCXCYCZC[C\C]C^C_C`CaCbCcCdCeCfCgChCiCjCkClCmCnCoCpCqCrCsCtCuCvCwCxCyCzC{C|C}C~CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC C C C C CCCCCCCCCCCCCCCCCCC C!C"C#C$C%C&C'C(C)C*C+C,C-C.C/C0C1C2C3C4C5C6C7C8C9C:C;C<C=C>C?C@CACBCCCDCECFCGCHCICJCKCLCMCNCOCPCQCRCSCTCUCVCWCXCYCZC[C\C]C^C_C`CaCbCcCdCeCfCgChCiCjCkClCmCnCoCpCqCrCsCtCuCvCwCxCyCzC{C|C}C~CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC C C C C CCCCCCCCCCCCCCCCCCC C!C"C#C$C%C&C'C(C)C*C+C,C-C.C/C0C1C2C3C4C5C6C7C8C9C:C;C<C=C>C?C@CACBCCCDCECFCGCHCICJCKCLCMCNCOCPCQCRCSCTCUCVCWCXCYCZC\C]C^C_C`CaCbCcCdCeCfCgChCiCjCkClCmCnCoCpCqCrCsCtCuCvCwCxCyCzC{C|C}C~CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC C C C C CCCCCCCCCCCCCCCCCCC C!C"C#C$C%C&C'C(C)C*C+C,C-C.C/C0C1C2C3C4C5C6C7C8C9C:C;C<C=C>C?C@CACBCCCDCECFCGCHCICJCKCLCMCNCOCPCQCRCSCTCUCVCWCXCYCZC[C\C]C^C_C`CaCbCcCdCeCfCgChCiCjCkClCmCnCoCpCqCrCsCtCuCvCwCxCyCzC{C|C}C~CCCC iC nC mCC C C jC C C C C C C C C eC fC C C kC lC dCCC hCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCJKEiDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD D D D D DDDDDDDDDDDDDDDDDDD D!D"D#D$D%D&D'D(D)D*D+D,D-D.D/D0D1D2D3D4D5D6D7D8D9D:D;D<D=D>D?D@DADBDCDDDEDFDGDHDIDJDKDLDMDNDODPDQDRDSDTDUDVDWDXDYDZD[D\D]D^D_D`DaDbDcDdDeDfDgDhDiDjDkDlDmDnDoDpDqDrDsDtDuDvDwDxDyDzD{D|D}D~DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEHEHsingletons-2.5-inplaceData.Singletons.TypeLitsData.Singletons.Prelude.BoolData.Singletons.Prelude.OrdData.Singletons.Prelude.MaybeData.Singletons.Prelude.EitherData.Singletons.Prelude.Const!Data.Singletons.Prelude.SemigroupData.Singletons.Decide#Data.Singletons.Prelude.ApplicativeData.SingletonsData.Singletons.PreludeData.Singletons.Prelude.Void&Data.Singletons.SuppressUnusedWarningsData.Singletons.THData.Singletons.Prelude.Tuple Data.Singletons.Prelude.Identity%Data.Singletons.Prelude.List.NonEmptyData.Singletons.Prelude.ListData.Singletons.SigmaData.Singletons.Prelude.EqData.Singletons.TypeRepTYPEData.Singletons.ShowSingData.Singletons.Prelude.NumData.Singletons.Prelude.BaseData.Singletons.Prelude.MonadData.Singletons.Prelude.Functor Data.Singletons.Prelude.FunctionData.Singletons.Prelude.EnumData.Singletons.Prelude.MonoidData.Singletons.Prelude.Show Data.Singletons.Prelude.Foldable#Data.Singletons.Prelude.Traversable!Data.Singletons.Prelude.Monad.Zip Data.Singletons.Prelude.IsStringData.Singletons.TypeErrorData.Singletons.CustomStarData.Singletons.InternalData.Singletons.SyntaxData.Singletons.UtilData.Singletons.NamesData.Singletons.Single.FixityData.Singletons.Promote.TypeData.Singletons.Promote.MonadData.Singletons.Single.MonadData.Singletons.Single.TypeData.Singletons.Promote.EqData.Singletons.Promote.DefunData.Singletons.Single.DefunData.Singletons.Single.DataData.Singletons.Deriving.UtilData.Singletons.Deriving.InferData.Singletons.Single.Eq$Data.Singletons.Deriving.TraversableData.Singletons.Deriving.ShowData.Singletons.Deriving.Ord!Data.Singletons.Deriving.Foldable Data.Singletons.Deriving.FunctorData.Singletons.Deriving.Enum Data.Singletons.Deriving.BoundedData.Singletons.PartitionData.Singletons.PromoteData.Singletons.Single!Data.Singletons.Prelude.Instances!Data.Singletons.TypeLits.Internal&Data.Singletons.Prelude.Monad.Internal*Data.Singletons.Prelude.Semigroup.Internal%Data.Singletons.Prelude.List.Internal4Data.Singletons.Prelude.List.Internal.Disambiguationbase GHC.TypeNatsKnownNat GHC.TypeLits KnownSymbolghc-prim GHC.TypesNatSymbol^<=?DivModLog2bool_thenCmpmaybe_either_GetConstoption_ Data.VoidVoidData.Functor.ConstConst symbolValnatVal Data.ProxyProxyData.Type.EqualityRefl:~:Data.Type.BoolIf&&||NotGHC.ShowShowS SingFunction8 SingFunction7 SingFunction6 SingFunction5 SingFunction4 SingFunction3 SingFunction2 SingFunction1TyCon8TyCon7TyCon6TyCon5TyCon4TyCon3TyCon2TyCon1TyCon@@Apply~>TyFun SingInstanceSomeSingSingKindDemotefromSingtoSingSingIsingSingSameKindKindOfSLambda applySingSLambda8SLambda7SLambda6SLambda5SLambda4SLambda3SLambda2FromSing singInstancesingFun1singFun2singFun3singFun4singFun5singFun6singFun7singFun8 unSingFun1 unSingFun2 unSingFun3 unSingFun4 unSingFun5 unSingFun6 unSingFun7 unSingFun8 withSingI withSomeSingwithSingsingThat singByProxy singByProxy#demoteSDecide%~DecisionProved DisprovedRefuted$fTestCoercionkSing$fTestEqualitykSingSuppressUnusedWarningssuppressUnusedWarnings genPromotionspromote promoteOnlygenDefunSymbolspromoteEqInstancespromoteOrdInstancespromoteOrdInstancepromoteBoundedInstancespromoteBoundedInstancepromoteEnumInstancespromoteEnumInstancepromoteShowInstancespromoteShowInstancepromoteEqInstance genSingletons singletonssingletonsOnlysingEqInstancessingEqInstancesingEqInstancesOnlysingEqInstanceOnlysingDecideInstancessingDecideInstancesingOrdInstancessingOrdInstancesingBoundedInstancessingBoundedInstancesingEnumInstancessingEnumInstancesingShowInstancesingShowInstancesSTuple0 Tuple0Sym0 SOrderingGTSym0EQSym0LTSym0SBoolTrueSym0 FalseSym0 SIdentity IdentitySym0 IdentitySym1 RunIdentityRunIdentitySym0RunIdentitySym1STuple7 Tuple7Sym0 Tuple7Sym1 Tuple7Sym2 Tuple7Sym3 Tuple7Sym4 Tuple7Sym5 Tuple7Sym6 Tuple7Sym7STuple6 Tuple6Sym0 Tuple6Sym1 Tuple6Sym2 Tuple6Sym3 Tuple6Sym4 Tuple6Sym5 Tuple6Sym6STuple5 Tuple5Sym0 Tuple5Sym1 Tuple5Sym2 Tuple5Sym3 Tuple5Sym4 Tuple5Sym5STuple4 Tuple4Sym0 Tuple4Sym1 Tuple4Sym2 Tuple4Sym3 Tuple4Sym4STuple3 Tuple3Sym0 Tuple3Sym1 Tuple3Sym2 Tuple3Sym3STuple2 Tuple2Sym0 Tuple2Sym1 Tuple2Sym2SVoid SNonEmpty:|@#@$:|@#@$$:|@#@$$$SEither RightSym0 RightSym1LeftSym0LeftSym1SList:@#@$:@#@$$:@#@$$$NilSym0SMaybeJustSym0JustSym1 NothingSym0SLTSEQSGTSFalseSTrue sRunIdentity:%|SLeftSRightSNilSConsSNothingSJustAbsurd AbsurdSym0 AbsurdSym1sAbsurd$fSingI->AbsurdSym0$$fSuppressUnusedWarnings->AbsurdSym0UncurryFstSndCurrySwap UncurrySym0 UncurrySym1 UncurrySym2FstSym0FstSym1SndSym0SndSym1 CurrySym0 CurrySym1 CurrySym2 CurrySym3SwapSym0SwapSym1sSwapsCurrysSndsFstsUncurry$fSingI->SwapSym0"$fSuppressUnusedWarnings->SwapSym0$fSingI->CurrySym2#$fSuppressUnusedWarnings->CurrySym2$fSingI->CurrySym1#$fSuppressUnusedWarnings->CurrySym1$fSingI->CurrySym0#$fSuppressUnusedWarnings->CurrySym0$fSingI->SndSym0!$fSuppressUnusedWarnings->SndSym0$fSingI->FstSym0!$fSuppressUnusedWarnings->FstSym0$fSingI->UncurrySym1%$fSuppressUnusedWarnings->UncurrySym1$fSingI->UncurrySym0%$fSuppressUnusedWarnings->UncurrySym0ΣSigma:&: projSigma1 projSigma2mapSigmazipSigmaΣSym0ΣSym1ΣSym2 $fSuppressUnusedWarnings->ΣSym1 $fSuppressUnusedWarnings->ΣSym0Bool_ Bool_Sym0 Bool_Sym1 Bool_Sym2 Bool_Sym3sBool_$fSingI->Bool_Sym2#$fSuppressUnusedWarnings->Bool_Sym2$fSingI->Bool_Sym1#$fSuppressUnusedWarnings->Bool_Sym1$fSingI->Bool_Sym0#$fSuppressUnusedWarnings->Bool_Sym0 Otherwise OtherwiseSym0 sOtherwise%&&&&@#@$&&@#@$$&&@#@$$$%||$fSingI->&&@#@$$!$fSuppressUnusedWarnings->&&@#@$$$fSingI->&&@#@$ $fSuppressUnusedWarnings->&&@#@$||@#@$||@#@$$||@#@$$$sNot$fSingI->||@#@$$!$fSuppressUnusedWarnings->||@#@$$$fSingI->||@#@$ $fSuppressUnusedWarnings->||@#@$NotSym0NotSym1sIf$fSingI->NotSym0!$fSuppressUnusedWarnings->NotSym0 DefaultEqPEq==/=SEq%==%/= DefaultEqSym0 DefaultEqSym1 DefaultEqSym2/=@#@$/=@#@$$/=@#@$$$==@#@$==@#@$$==@#@$$$!$fSuppressUnusedWarnings->==@#@$$ $fSuppressUnusedWarnings->==@#@$!$fSuppressUnusedWarnings->/=@#@$$ $fSuppressUnusedWarnings->/=@#@$'$fSuppressUnusedWarnings->DefaultEqSym1'$fSuppressUnusedWarnings->DefaultEqSym0$fSingI->/=@#@$$$fSingI->/=@#@$$fSingI->==@#@$$$fSingI->==@#@$$fSEq() $fSEqOrdering $fSEqBool $fSEqIdentity $fSEq(,,,,,,) $fSEq(,,,,,) $fSEq(,,,,) $fSEq(,,,) $fSEq(,,)$fSEq(,) $fSEqVoid $fSEqNonEmpty $fSEqEither$fSEq[] $fSEqMaybe $fPEqMaybe$fPEq[] $fPEqEither $fPEqNonEmpty $fPEqVoid$fPEq(,) $fPEq(,,) $fPEq(,,,) $fPEq(,,,,) $fPEq(,,,,,) $fPEq(,,,,,,) $fPEqIdentity $fPEqBool $fPEqOrdering$fPEq()SomeTypeRepTYPESTypeRep $fSDecideTYPE $fSEqTYPE $fPEqTYPE $fSingITYPEa$fSingKindTYPE$fShowSomeTypeRepTYPE$fOrdSomeTypeRepTYPE$fEqSomeTypeRepTYPE$fEqSing $fOrdSing $fShowSingSOrdsCompare%<%<=%>%>=sMaxsMinPOrdCompare<<=>>=MaxMinMinSym0MinSym1MinSym2MaxSym0MaxSym1MaxSym2>=@#@$>=@#@$$>=@#@$$$>@#@$>@#@$$>@#@$$$<=@#@$<=@#@$$<=@#@$$$<@#@$<@#@$$<@#@$$$ CompareSym0 CompareSym1 CompareSym2 Comparing ComparingSym0 ComparingSym1 ComparingSym2 ComparingSym3 sComparingQ$fSuppressUnusedWarnings->Let6989586621679380835Scrutinee_6989586621679380725Sym1Q$fSuppressUnusedWarnings->Let6989586621679380835Scrutinee_6989586621679380725Sym05$fSuppressUnusedWarnings->Min_6989586621679380957Sym05$fSuppressUnusedWarnings->Min_6989586621679380957Sym15$fSuppressUnusedWarnings->Max_6989586621679380939Sym05$fSuppressUnusedWarnings->Max_6989586621679380939Sym1:$fSuppressUnusedWarnings->TFHelper_6989586621679380921Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621679380921Sym1:$fSuppressUnusedWarnings->TFHelper_6989586621679380903Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621679380903Sym1:$fSuppressUnusedWarnings->TFHelper_6989586621679380885Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621679380885Sym1:$fSuppressUnusedWarnings->TFHelper_6989586621679380867Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621679380867Sym19$fSuppressUnusedWarnings->Compare_6989586621679380849Sym09$fSuppressUnusedWarnings->Compare_6989586621679380849Sym1 $fSuppressUnusedWarnings-><=@#@$!$fSuppressUnusedWarnings-><=@#@$$%$fSuppressUnusedWarnings->CompareSym0%$fSuppressUnusedWarnings->CompareSym1!$fSuppressUnusedWarnings->MinSym1!$fSuppressUnusedWarnings->MinSym0!$fSuppressUnusedWarnings->MaxSym1!$fSuppressUnusedWarnings->MaxSym0!$fSuppressUnusedWarnings->>=@#@$$ $fSuppressUnusedWarnings->>=@#@$ $fSuppressUnusedWarnings->>@#@$$$fSuppressUnusedWarnings->>@#@$Q$fSuppressUnusedWarnings->Let6989586621679380949Scrutinee_6989586621679380739Sym1Q$fSuppressUnusedWarnings->Let6989586621679380949Scrutinee_6989586621679380739Sym0Q$fSuppressUnusedWarnings->Let6989586621679380931Scrutinee_6989586621679380737Sym1Q$fSuppressUnusedWarnings->Let6989586621679380931Scrutinee_6989586621679380737Sym0Q$fSuppressUnusedWarnings->Let6989586621679380840Scrutinee_6989586621679380727Sym1Q$fSuppressUnusedWarnings->Let6989586621679380840Scrutinee_6989586621679380727Sym0 $fSuppressUnusedWarnings-><@#@$$$fSuppressUnusedWarnings-><@#@$Q$fSuppressUnusedWarnings->Let6989586621679380913Scrutinee_6989586621679380735Sym1Q$fSuppressUnusedWarnings->Let6989586621679380913Scrutinee_6989586621679380735Sym0Q$fSuppressUnusedWarnings->Let6989586621679380895Scrutinee_6989586621679380733Sym1Q$fSuppressUnusedWarnings->Let6989586621679380895Scrutinee_6989586621679380733Sym0Q$fSuppressUnusedWarnings->Let6989586621679380877Scrutinee_6989586621679380731Sym1Q$fSuppressUnusedWarnings->Let6989586621679380877Scrutinee_6989586621679380731Sym0Q$fSuppressUnusedWarnings->Let6989586621679380859Scrutinee_6989586621679380729Sym1Q$fSuppressUnusedWarnings->Let6989586621679380859Scrutinee_6989586621679380729Sym0'$fSuppressUnusedWarnings->ComparingSym2'$fSuppressUnusedWarnings->ComparingSym1'$fSuppressUnusedWarnings->ComparingSym0$fSingI->MinSym1$fSingI->MinSym0$fSingI->MaxSym1$fSingI->MaxSym0$fSingI->>=@#@$$$fSingI->>=@#@$$fSingI->>@#@$$$fSingI->>@#@$$fSingI-><=@#@$$$fSingI-><=@#@$$fSingI-><@#@$$$fSingI-><@#@$$fSingI->CompareSym1$fSingI->CompareSym0$fSingI->ComparingSym2$fSingI->ComparingSym1$fSingI->ComparingSym0SDownDownSym0DownSym1$fSingI->TyCon$fSingIDownDown$fSingKindDown$fSingI->DownSym0"$fSuppressUnusedWarnings->DownSym0 $fSDecideDown $fSEqDown $fSOrdDown9$fSuppressUnusedWarnings->Compare_6989586621679390407Sym1 $fPOrdDown9$fSuppressUnusedWarnings->Compare_6989586621679390407Sym0 $fPEqDownThenCmp ThenCmpSym0 ThenCmpSym1 ThenCmpSym2sThenCmp$fSingI->ThenCmpSym1%$fSuppressUnusedWarnings->ThenCmpSym1$fSingI->ThenCmpSym0%$fSuppressUnusedWarnings->ThenCmpSym0$fSOrd()$fSOrdOrdering $fSOrdBool$fSOrdIdentity$fSOrd(,,,,,,) $fSOrd(,,,,,) $fSOrd(,,,,) $fSOrd(,,,) $fSOrd(,,) $fSOrd(,) $fSOrdVoid$fSOrdNonEmpty $fSOrdEither$fSOrd[] $fSOrdMaybe9$fSuppressUnusedWarnings->Compare_6989586621679391598Sym1 $fPOrdMaybe9$fSuppressUnusedWarnings->Compare_6989586621679391598Sym09$fSuppressUnusedWarnings->Compare_6989586621679391632Sym1$fPOrd[]9$fSuppressUnusedWarnings->Compare_6989586621679391632Sym09$fSuppressUnusedWarnings->Compare_6989586621679391678Sym1 $fPOrdEither9$fSuppressUnusedWarnings->Compare_6989586621679391678Sym09$fSuppressUnusedWarnings->Compare_6989586621679391707Sym1$fPOrdNonEmpty9$fSuppressUnusedWarnings->Compare_6989586621679391707Sym09$fSuppressUnusedWarnings->Compare_6989586621679391721Sym1 $fPOrdVoid9$fSuppressUnusedWarnings->Compare_6989586621679391721Sym09$fSuppressUnusedWarnings->Compare_6989586621679391749Sym1 $fPOrd(,)9$fSuppressUnusedWarnings->Compare_6989586621679391749Sym09$fSuppressUnusedWarnings->Compare_6989586621679391790Sym1 $fPOrd(,,)9$fSuppressUnusedWarnings->Compare_6989586621679391790Sym09$fSuppressUnusedWarnings->Compare_6989586621679391842Sym1 $fPOrd(,,,)9$fSuppressUnusedWarnings->Compare_6989586621679391842Sym09$fSuppressUnusedWarnings->Compare_6989586621679391905Sym1 $fPOrd(,,,,)9$fSuppressUnusedWarnings->Compare_6989586621679391905Sym09$fSuppressUnusedWarnings->Compare_6989586621679391979Sym1 $fPOrd(,,,,,)9$fSuppressUnusedWarnings->Compare_6989586621679391979Sym09$fSuppressUnusedWarnings->Compare_6989586621679392064Sym1$fPOrd(,,,,,,)9$fSuppressUnusedWarnings->Compare_6989586621679392064Sym09$fSuppressUnusedWarnings->Compare_6989586621679392097Sym1$fPOrdIdentity9$fSuppressUnusedWarnings->Compare_6989586621679392097Sym09$fSuppressUnusedWarnings->Compare_6989586621679392109Sym1 $fPOrdBool9$fSuppressUnusedWarnings->Compare_6989586621679392109Sym09$fSuppressUnusedWarnings->Compare_6989586621679392119Sym1$fPOrdOrdering9$fSuppressUnusedWarnings->Compare_6989586621679392119Sym09$fSuppressUnusedWarnings->Compare_6989586621679392129Sym1$fPOrd()9$fSuppressUnusedWarnings->Compare_6989586621679392129Sym0ErrorSSymbolSNatSSym withKnownNatwithKnownSymbolErrorWithoutStackTrace ErrorSym0 ErrorSym1sError UndefinedErrorWithoutStackTraceSym0ErrorWithoutStackTraceSym1sErrorWithoutStackTrace UndefinedSym0 sUndefined%^^@#@$^@#@$$^@#@$$$%<=?<=?@#@$<=?@#@$$ <=?@#@$$$ShowSing $fShowSing0 $fShowSing1 $fShowSing2 $fShowSing3 $fShowSing4 $fShowSing5 $fShowSing6 $fShowSing7 $fShowSing8 $fShowSing9 $fShowSing10 $fShowSing11 $fShowSing12 $fShowSing13 $fShowSing14 $fShowSing15 $fShowSymbol$fMonoidSymbol$fSemigroupSymbol$fIsStringSymbol $fOrdSymbol $fEqSymbol $fShowNat $fEnumNat$fOrdNat$fEqNat$fNumNatKnownSymbolSym0KnownSymbolSym1 KnownNatSym0 KnownNatSym1sLog2&$fSuppressUnusedWarnings->KnownNatSym0)$fSuppressUnusedWarnings->KnownSymbolSym0Log2Sym0Log2Sym1sDiv$fSingI->Log2Sym0"$fSuppressUnusedWarnings->Log2Sym0DivSym0DivSym1DivSym2sMod$fSingI->DivSym1!$fSuppressUnusedWarnings->DivSym1$fSingI->DivSym0!$fSuppressUnusedWarnings->DivSym0ModSym0ModSym1ModSym2$fSingI->ModSym1!$fSuppressUnusedWarnings->ModSym1$fSingI->ModSym0!$fSuppressUnusedWarnings->ModSym0QuotRemDivModQuotRem QuotRemSym0 QuotRemSym1 QuotRemSym2 DivModSym0 DivModSym1 DivModSym2QuotSym0QuotSym1QuotSym2RemSym0RemSym1RemSym2sDivModsQuotRemsQuotsRem!$fSuppressUnusedWarnings->RemSym1!$fSuppressUnusedWarnings->RemSym0"$fSuppressUnusedWarnings->QuotSym1"$fSuppressUnusedWarnings->QuotSym0$$fSuppressUnusedWarnings->DivModSym1$$fSuppressUnusedWarnings->DivModSym0%$fSuppressUnusedWarnings->QuotRemSym1%$fSuppressUnusedWarnings->QuotRemSym0Maybe_ Maybe_Sym0 Maybe_Sym1 Maybe_Sym2 Maybe_Sym3sMaybe_$fSingI->Maybe_Sym2$$fSuppressUnusedWarnings->Maybe_Sym2$fSingI->Maybe_Sym1$$fSuppressUnusedWarnings->Maybe_Sym1$fSingI->Maybe_Sym0$$fSuppressUnusedWarnings->Maybe_Sym0IsJust IsNothingFromJust FromMaybe MaybeToList ListToMaybe CatMaybesMapMaybe IsJustSym0 IsJustSym1 IsNothingSym0 IsNothingSym1 FromJustSym0 FromJustSym1 FromMaybeSym0 FromMaybeSym1 FromMaybeSym2MaybeToListSym0MaybeToListSym1ListToMaybeSym0ListToMaybeSym1 CatMaybesSym0 CatMaybesSym1 MapMaybeSym0 MapMaybeSym1 MapMaybeSym2 sMapMaybe sCatMaybes sListToMaybe sMaybeToList sFromMaybe sFromJust sIsNothingsIsJustQ$fSuppressUnusedWarnings->Let6989586621679495994Scrutinee_6989586621679495851Sym2Q$fSuppressUnusedWarnings->Let6989586621679495994Scrutinee_6989586621679495851Sym1Q$fSuppressUnusedWarnings->Let6989586621679495994Scrutinee_6989586621679495851Sym0$fSingI->MapMaybeSym1$fSingI->MapMaybeSym0&$fSuppressUnusedWarnings->MapMaybeSym0&$fSuppressUnusedWarnings->MapMaybeSym16$fSuppressUnusedWarnings->Let6989586621679495990RsSym26$fSuppressUnusedWarnings->Let6989586621679495990RsSym16$fSuppressUnusedWarnings->Let6989586621679495990RsSym0$fSingI->CatMaybesSym0'$fSuppressUnusedWarnings->CatMaybesSym0$fSingI->ListToMaybeSym0)$fSuppressUnusedWarnings->ListToMaybeSym0$fSingI->MaybeToListSym0)$fSuppressUnusedWarnings->MaybeToListSym0$fSingI->FromMaybeSym1'$fSuppressUnusedWarnings->FromMaybeSym1$fSingI->FromMaybeSym0'$fSuppressUnusedWarnings->FromMaybeSym0$fSingI->FromJustSym0&$fSuppressUnusedWarnings->FromJustSym0$fSingI->IsNothingSym0'$fSuppressUnusedWarnings->IsNothingSym0$fSingI->IsJustSym0$$fSuppressUnusedWarnings->IsJustSym0SNum%+%-%*sNegatesAbssSignum sFromIntegerPNum+-*NegateAbsSignum FromIntegerFromIntegerSym0FromIntegerSym1 SignumSym0 SignumSym1AbsSym0AbsSym1 NegateSym0 NegateSym1*@#@$*@#@$$*@#@$$$-@#@$-@#@$$-@#@$$$+@#@$+@#@$$+@#@$$$8$fSuppressUnusedWarnings->Negate_6989586621679506065Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621679506057Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621679506057Sym1$$fSuppressUnusedWarnings->NegateSym0$fSuppressUnusedWarnings->-@#@$ $fSuppressUnusedWarnings->-@#@$$$fSuppressUnusedWarnings->+@#@$ $fSuppressUnusedWarnings->+@#@$$)$fSuppressUnusedWarnings->FromIntegerSym0$$fSuppressUnusedWarnings->SignumSym0!$fSuppressUnusedWarnings->AbsSym0 $fSuppressUnusedWarnings->*@#@$$$fSuppressUnusedWarnings->*@#@$:$fSuppressUnusedWarnings->TFHelper_6989586621679506095Sym1:$fSuppressUnusedWarnings->TFHelper_6989586621679506095Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621679506107Sym1:$fSuppressUnusedWarnings->TFHelper_6989586621679506107Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621679506119Sym1:$fSuppressUnusedWarnings->TFHelper_6989586621679506119Sym08$fSuppressUnusedWarnings->Negate_6989586621679506127Sym05$fSuppressUnusedWarnings->Abs_6989586621679506134Sym08$fSuppressUnusedWarnings->Signum_6989586621679506141Sym0 $fPNumDown=$fSuppressUnusedWarnings->FromInteger_6989586621679506148Sym0 $fSNumNat$fSingI->FromIntegerSym0$fSingI->SignumSym0$fSingI->AbsSym0$fSingI->NegateSym0$fSingI->*@#@$$$fSingI->*@#@$$fSingI->-@#@$$$fSingI->-@#@$$fSingI->+@#@$$$fSingI->+@#@$ $fSNumDown $fPNumNatSubtract SubtractSym0 SubtractSym1 SubtractSym2 sSubtract$fSingI->SubtractSym1&$fSuppressUnusedWarnings->SubtractSym1$fSingI->SubtractSym0&$fSuppressUnusedWarnings->SubtractSym0FoldrMap++IdAsTypeOf:.Flip$$!UntilSeq FoldrSym0 FoldrSym1 FoldrSym2 FoldrSym3MapSym0MapSym1MapSym2++@#@$++@#@$$++@#@$$$IdSym0IdSym1 AsTypeOfSym0 AsTypeOfSym1 AsTypeOfSym2 ConstSym0 ConstSym1 ConstSym2.@#@$.@#@$$.@#@$$$.@#@$$$$FlipSym0FlipSym1FlipSym2FlipSym3$@#@$$@#@$$$@#@$$$$!@#@$$!@#@$$$!@#@$$$ UntilSym0 UntilSym1 UntilSym2 UntilSym3SeqSym0SeqSym1SeqSym2sSeqsUntil%$!%$sFlip%.sConst sAsTypeOfsId%++sMapsFoldrQ$fSuppressUnusedWarnings->Let6989586621679521054Scrutinee_6989586621679520973Sym3Q$fSuppressUnusedWarnings->Let6989586621679521054Scrutinee_6989586621679520973Sym2Q$fSuppressUnusedWarnings->Let6989586621679521054Scrutinee_6989586621679520973Sym1Q$fSuppressUnusedWarnings->Let6989586621679521054Scrutinee_6989586621679520973Sym06$fSuppressUnusedWarnings->Let6989586621679521047GoSym36$fSuppressUnusedWarnings->Let6989586621679521047GoSym26$fSuppressUnusedWarnings->Let6989586621679521047GoSym16$fSuppressUnusedWarnings->Let6989586621679521047GoSym06$fSuppressUnusedWarnings->Let6989586621679521068VxSym16$fSuppressUnusedWarnings->Let6989586621679521068VxSym08$fSuppressUnusedWarnings->Lambda_6989586621679521097Sym38$fSuppressUnusedWarnings->Lambda_6989586621679521097Sym28$fSuppressUnusedWarnings->Lambda_6989586621679521097Sym18$fSuppressUnusedWarnings->Lambda_6989586621679521097Sym06$fSuppressUnusedWarnings->Let6989586621679521149GoSym36$fSuppressUnusedWarnings->Let6989586621679521149GoSym26$fSuppressUnusedWarnings->Let6989586621679521149GoSym16$fSuppressUnusedWarnings->Let6989586621679521149GoSym0$fSingI->SeqSym1!$fSuppressUnusedWarnings->SeqSym1$fSingI->SeqSym0!$fSuppressUnusedWarnings->SeqSym0$fSingI->UntilSym2#$fSuppressUnusedWarnings->UntilSym2$fSingI->UntilSym1#$fSuppressUnusedWarnings->UntilSym1$fSingI->UntilSym0#$fSuppressUnusedWarnings->UntilSym0$fSingI->$!@#@$$!$fSuppressUnusedWarnings->$!@#@$$$fSingI->$!@#@$ $fSuppressUnusedWarnings->$!@#@$$fSingI->$@#@$$ $fSuppressUnusedWarnings->$@#@$$$fSingI->$@#@$$fSuppressUnusedWarnings->$@#@$$fSingI->FlipSym2"$fSuppressUnusedWarnings->FlipSym2$fSingI->FlipSym1"$fSuppressUnusedWarnings->FlipSym1$fSingI->FlipSym0"$fSuppressUnusedWarnings->FlipSym0$fSingI->.@#@$$$!$fSuppressUnusedWarnings->.@#@$$$$fSingI->.@#@$$ $fSuppressUnusedWarnings->.@#@$$$fSingI->.@#@$$fSuppressUnusedWarnings->.@#@$$fSingI->ConstSym1#$fSuppressUnusedWarnings->ConstSym1$fSingI->ConstSym0#$fSuppressUnusedWarnings->ConstSym0$fSingI->AsTypeOfSym1&$fSuppressUnusedWarnings->AsTypeOfSym1$fSingI->AsTypeOfSym0&$fSuppressUnusedWarnings->AsTypeOfSym0$fSingI->IdSym0 $fSuppressUnusedWarnings->IdSym0$fSingI->++@#@$$$fSingI->++@#@$ $fSuppressUnusedWarnings->++@#@$!$fSuppressUnusedWarnings->++@#@$$$fSingI->MapSym1$fSingI->MapSym0!$fSuppressUnusedWarnings->MapSym0!$fSuppressUnusedWarnings->MapSym1$fSingI->FoldrSym2#$fSuppressUnusedWarnings->FoldrSym2$fSingI->FoldrSym1#$fSuppressUnusedWarnings->FoldrSym1$fSingI->FoldrSym0#$fSuppressUnusedWarnings->FoldrSym0 SMonadPlussMzerosMplus SAlternativesEmpty%<|>SMonad%>>=%>>sReturnsFail SApplicativesPure%<*>sLiftA2%*>%<*SFunctorsFmap%<$ PMonadPlusMzeroMplus MplusSym0 MplusSym1 MplusSym2 MzeroSym0 PAlternativeEmpty<|><|>@#@$<|>@#@$$ <|>@#@$$$ EmptySym0PMonad>>=>>ReturnFailFailSym0FailSym1 ReturnSym0 ReturnSym1>>@#@$>>@#@$$>>@#@$$$>>=@#@$>>=@#@$$ >>=@#@$$$ PApplicativePure<*>LiftA2*><*<*@#@$<*@#@$$<*@#@$$$*>@#@$*>@#@$$*>@#@$$$ LiftA2Sym0 LiftA2Sym1 LiftA2Sym2 LiftA2Sym3<*>@#@$<*>@#@$$ <*>@#@$$$PureSym0PureSym1PFunctorFmap<$<$@#@$<$@#@$$<$@#@$$$FmapSym0FmapSym1FmapSym2<**>LiftALiftA3Join=<<WhenLiftMLiftM2LiftM3LiftM4LiftM5ApGuard<**>@#@$ <**>@#@$$ <**>@#@$$$ LiftASym0 LiftASym1 LiftASym2 LiftA3Sym0 LiftA3Sym1 LiftA3Sym2 LiftA3Sym3JoinSym0JoinSym1=<<@#@$=<<@#@$$ =<<@#@$$$WhenSym0WhenSym1WhenSym2 LiftMSym0 LiftMSym1 LiftMSym2 LiftM2Sym0 LiftM2Sym1 LiftM2Sym2 LiftM2Sym3 LiftM3Sym0 LiftM3Sym1 LiftM3Sym2 LiftM3Sym3 LiftM3Sym4 LiftM4Sym0 LiftM4Sym1 LiftM4Sym2 LiftM4Sym3 LiftM4Sym4 LiftM4Sym5 LiftM5Sym0 LiftM5Sym1 LiftM5Sym2 LiftM5Sym3 LiftM5Sym4 LiftM5Sym5 LiftM5Sym6ApSym0ApSym1ApSym2 GuardSym0 GuardSym1sGuardsApsLiftM5sLiftM4sLiftM3sLiftM2sLiftMsWhen%=<<sJoinsLiftA3sLiftA%<**><&><$>$><&>@#@$<&>@#@$$ <&>@#@$$$<$>@#@$<$>@#@$$ <$>@#@$$$$>@#@$$>@#@$$$>@#@$$$VoidSym0VoidSym1sVoid%$>%<$>%<&>$fSingI->VoidSym0"$fSuppressUnusedWarnings->VoidSym0$fSingI->$>@#@$$!$fSuppressUnusedWarnings->$>@#@$$$fSingI->$>@#@$ $fSuppressUnusedWarnings->$>@#@$$fSingI-><$>@#@$$"$fSuppressUnusedWarnings-><$>@#@$$$fSingI-><$>@#@$!$fSuppressUnusedWarnings-><$>@#@$$fSingI-><&>@#@$$"$fSuppressUnusedWarnings-><&>@#@$$$fSingI-><&>@#@$!$fSuppressUnusedWarnings-><&>@#@$8$fSuppressUnusedWarnings->Lambda_6989586621679714617Sym38$fSuppressUnusedWarnings->Lambda_6989586621679714617Sym28$fSuppressUnusedWarnings->Lambda_6989586621679714617Sym18$fSuppressUnusedWarnings->Lambda_6989586621679714617Sym06$fSuppressUnusedWarnings->Fmap_6989586621679714627Sym16$fSuppressUnusedWarnings->Fmap_6989586621679714627Sym08$fSuppressUnusedWarnings->Lambda_6989586621679714638Sym38$fSuppressUnusedWarnings->Lambda_6989586621679714638Sym28$fSuppressUnusedWarnings->Lambda_6989586621679714638Sym18$fSuppressUnusedWarnings->Lambda_6989586621679714638Sym08$fSuppressUnusedWarnings->Lambda_6989586621679714646Sym38$fSuppressUnusedWarnings->Lambda_6989586621679714646Sym28$fSuppressUnusedWarnings->Lambda_6989586621679714646Sym1 $fSFunctor(,)8$fSuppressUnusedWarnings->Lambda_6989586621679714646Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621679714656Sym1 $fPFunctor(,):$fSuppressUnusedWarnings->TFHelper_6989586621679714656Sym06$fSuppressUnusedWarnings->Fmap_6989586621679714668Sym16$fSuppressUnusedWarnings->Fmap_6989586621679714668Sym08$fSuppressUnusedWarnings->Lambda_6989586621679714678Sym28$fSuppressUnusedWarnings->Lambda_6989586621679714678Sym1$fSFunctorDown8$fSuppressUnusedWarnings->Lambda_6989586621679714678Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621679714687Sym1$fPFunctorDown:$fSuppressUnusedWarnings->TFHelper_6989586621679714687Sym0On&OnSym0OnSym1OnSym2OnSym3OnSym4&@#@$&@#@$$&@#@$$$%&sOn8$fSuppressUnusedWarnings->Lambda_6989586621679729458Sym58$fSuppressUnusedWarnings->Lambda_6989586621679729458Sym48$fSuppressUnusedWarnings->Lambda_6989586621679729458Sym38$fSuppressUnusedWarnings->Lambda_6989586621679729458Sym28$fSuppressUnusedWarnings->Lambda_6989586621679729458Sym18$fSuppressUnusedWarnings->Lambda_6989586621679729458Sym0$fSingI->&@#@$$ $fSuppressUnusedWarnings->&@#@$$$fSingI->&@#@$$fSuppressUnusedWarnings->&@#@$$fSingI->OnSym3 $fSuppressUnusedWarnings->OnSym3$fSingI->OnSym2 $fSuppressUnusedWarnings->OnSym2$fSingI->OnSym1 $fSuppressUnusedWarnings->OnSym1$fSingI->OnSym0 $fSuppressUnusedWarnings->OnSym0SBounded sMinBound sMaxBoundPBoundedMinBoundMaxBound MaxBoundSym0 MinBoundSym0 $fSBounded()$fSBoundedOrdering$fSBoundedBool$fSBoundedIdentity$fSBounded(,,,,,,)$fSBounded(,,,,,)$fSBounded(,,,,)$fSBounded(,,,)$fSBounded(,,) $fSBounded(,) $fPBounded(,)$fPBounded(,,)$fPBounded(,,,)$fPBounded(,,,,)$fPBounded(,,,,,)$fPBounded(,,,,,,)$fPBoundedIdentity$fPBoundedBool$fPBoundedOrdering $fPBounded()SEnumsSuccsPredsToEnum sFromEnum sEnumFromTosEnumFromThenToPEnumSuccPredToEnumFromEnum EnumFromToEnumFromThenToEnumFromThenToSym0EnumFromThenToSym1EnumFromThenToSym2EnumFromThenToSym3EnumFromToSym0EnumFromToSym1EnumFromToSym2 FromEnumSym0 FromEnumSym1 ToEnumSym0 ToEnumSym1PredSym0PredSym1SuccSym0SuccSym1Q$fSuppressUnusedWarnings->Let6989586621679740214Scrutinee_6989586621679740138Sym5Q$fSuppressUnusedWarnings->Let6989586621679740214Scrutinee_6989586621679740138Sym4Q$fSuppressUnusedWarnings->Let6989586621679740214Scrutinee_6989586621679740138Sym3Q$fSuppressUnusedWarnings->Let6989586621679740214Scrutinee_6989586621679740138Sym2Q$fSuppressUnusedWarnings->Let6989586621679740214Scrutinee_6989586621679740138Sym1Q$fSuppressUnusedWarnings->Let6989586621679740214Scrutinee_6989586621679740138Sym09$fSuppressUnusedWarnings->Let6989586621679740224DeltaSym59$fSuppressUnusedWarnings->Let6989586621679740224DeltaSym49$fSuppressUnusedWarnings->Let6989586621679740224DeltaSym39$fSuppressUnusedWarnings->Let6989586621679740224DeltaSym29$fSuppressUnusedWarnings->Let6989586621679740224DeltaSym19$fSuppressUnusedWarnings->Let6989586621679740224DeltaSym06$fSuppressUnusedWarnings->Let6989586621679740224Y'Sym56$fSuppressUnusedWarnings->Let6989586621679740224Y'Sym46$fSuppressUnusedWarnings->Let6989586621679740224Y'Sym36$fSuppressUnusedWarnings->Let6989586621679740224Y'Sym26$fSuppressUnusedWarnings->Let6989586621679740224Y'Sym16$fSuppressUnusedWarnings->Let6989586621679740224Y'Sym09$fSuppressUnusedWarnings->Let6989586621679740224Go_dnSym69$fSuppressUnusedWarnings->Let6989586621679740224Go_dnSym59$fSuppressUnusedWarnings->Let6989586621679740224Go_dnSym49$fSuppressUnusedWarnings->Let6989586621679740224Go_dnSym39$fSuppressUnusedWarnings->Let6989586621679740224Go_dnSym29$fSuppressUnusedWarnings->Let6989586621679740224Go_dnSym19$fSuppressUnusedWarnings->Let6989586621679740224Go_dnSym0Q$fSuppressUnusedWarnings->Let6989586621679740271Scrutinee_6989586621679740128Sym5Q$fSuppressUnusedWarnings->Let6989586621679740271Scrutinee_6989586621679740128Sym4Q$fSuppressUnusedWarnings->Let6989586621679740271Scrutinee_6989586621679740128Sym3Q$fSuppressUnusedWarnings->Let6989586621679740271Scrutinee_6989586621679740128Sym2Q$fSuppressUnusedWarnings->Let6989586621679740271Scrutinee_6989586621679740128Sym1Q$fSuppressUnusedWarnings->Let6989586621679740271Scrutinee_6989586621679740128Sym09$fSuppressUnusedWarnings->Let6989586621679740281DeltaSym59$fSuppressUnusedWarnings->Let6989586621679740281DeltaSym49$fSuppressUnusedWarnings->Let6989586621679740281DeltaSym39$fSuppressUnusedWarnings->Let6989586621679740281DeltaSym29$fSuppressUnusedWarnings->Let6989586621679740281DeltaSym19$fSuppressUnusedWarnings->Let6989586621679740281DeltaSym06$fSuppressUnusedWarnings->Let6989586621679740281Y'Sym56$fSuppressUnusedWarnings->Let6989586621679740281Y'Sym46$fSuppressUnusedWarnings->Let6989586621679740281Y'Sym36$fSuppressUnusedWarnings->Let6989586621679740281Y'Sym26$fSuppressUnusedWarnings->Let6989586621679740281Y'Sym16$fSuppressUnusedWarnings->Let6989586621679740281Y'Sym09$fSuppressUnusedWarnings->Let6989586621679740281Go_upSym69$fSuppressUnusedWarnings->Let6989586621679740281Go_upSym59$fSuppressUnusedWarnings->Let6989586621679740281Go_upSym49$fSuppressUnusedWarnings->Let6989586621679740281Go_upSym39$fSuppressUnusedWarnings->Let6989586621679740281Go_upSym29$fSuppressUnusedWarnings->Let6989586621679740281Go_upSym19$fSuppressUnusedWarnings->Let6989586621679740281Go_upSym0Q$fSuppressUnusedWarnings->Let6989586621679740348Scrutinee_6989586621679740114Sym4Q$fSuppressUnusedWarnings->Let6989586621679740348Scrutinee_6989586621679740114Sym3Q$fSuppressUnusedWarnings->Let6989586621679740348Scrutinee_6989586621679740114Sym2Q$fSuppressUnusedWarnings->Let6989586621679740348Scrutinee_6989586621679740114Sym1Q$fSuppressUnusedWarnings->Let6989586621679740348Scrutinee_6989586621679740114Sym06$fSuppressUnusedWarnings->Let6989586621679740340GoSym46$fSuppressUnusedWarnings->Let6989586621679740340GoSym36$fSuppressUnusedWarnings->Let6989586621679740340GoSym26$fSuppressUnusedWarnings->Let6989586621679740340GoSym16$fSuppressUnusedWarnings->Let6989586621679740340GoSym0$fSingI->EfdtNatDnSym2'$fSuppressUnusedWarnings->EfdtNatDnSym2$fSingI->EfdtNatDnSym1'$fSuppressUnusedWarnings->EfdtNatDnSym1$fSingI->EfdtNatDnSym0'$fSuppressUnusedWarnings->EfdtNatDnSym0$fSingI->EfdtNatUpSym2'$fSuppressUnusedWarnings->EfdtNatUpSym2$fSingI->EfdtNatUpSym1'$fSuppressUnusedWarnings->EfdtNatUpSym1$fSingI->EfdtNatUpSym0'$fSuppressUnusedWarnings->EfdtNatUpSym0$fSingI->EfdtNatSym2%$fSuppressUnusedWarnings->EfdtNatSym2$fSingI->EfdtNatSym1%$fSuppressUnusedWarnings->EfdtNatSym1$fSingI->EfdtNatSym0%$fSuppressUnusedWarnings->EfdtNatSym0$fSingI->EftNatSym1$$fSuppressUnusedWarnings->EftNatSym1$fSingI->EftNatSym0$$fSuppressUnusedWarnings->EftNatSym08$fSuppressUnusedWarnings->Lambda_6989586621679740384Sym18$fSuppressUnusedWarnings->Lambda_6989586621679740384Sym0@$fSuppressUnusedWarnings->EnumFromThenTo_6989586621679740427Sym0@$fSuppressUnusedWarnings->EnumFromThenTo_6989586621679740427Sym1@$fSuppressUnusedWarnings->EnumFromThenTo_6989586621679740427Sym2<$fSuppressUnusedWarnings->EnumFromTo_6989586621679740411Sym0<$fSuppressUnusedWarnings->EnumFromTo_6989586621679740411Sym16$fSuppressUnusedWarnings->Pred_6989586621679740400Sym06$fSuppressUnusedWarnings->Succ_6989586621679740391Sym0,$fSuppressUnusedWarnings->EnumFromThenToSym0,$fSuppressUnusedWarnings->EnumFromThenToSym1,$fSuppressUnusedWarnings->EnumFromThenToSym2($fSuppressUnusedWarnings->EnumFromToSym0($fSuppressUnusedWarnings->EnumFromToSym1&$fSuppressUnusedWarnings->FromEnumSym0$$fSuppressUnusedWarnings->ToEnumSym0"$fSuppressUnusedWarnings->PredSym0"$fSuppressUnusedWarnings->SuccSym06$fSuppressUnusedWarnings->Succ_6989586621679740436Sym06$fSuppressUnusedWarnings->Pred_6989586621679740443Sym08$fSuppressUnusedWarnings->ToEnum_6989586621679740450Sym0:$fSuppressUnusedWarnings->FromEnum_6989586621679740457Sym0<$fSuppressUnusedWarnings->EnumFromTo_6989586621679740472Sym1<$fSuppressUnusedWarnings->EnumFromTo_6989586621679740472Sym0@$fSuppressUnusedWarnings->EnumFromThenTo_6989586621679740494Sym2@$fSuppressUnusedWarnings->EnumFromThenTo_6989586621679740494Sym1 $fPEnumNat@$fSuppressUnusedWarnings->EnumFromThenTo_6989586621679740494Sym0$fSingI->EnumFromThenToSym2$fSingI->EnumFromThenToSym1$fSingI->EnumFromThenToSym0$fSingI->EnumFromToSym1$fSingI->EnumFromToSym0$fSingI->FromEnumSym0$fSingI->ToEnumSym0$fSingI->PredSym0$fSingI->SuccSym0 $fSEnumNat $fSEnumBool8$fSuppressUnusedWarnings->ToEnum_6989586621679763963Sym0 $fPEnumBool:$fSuppressUnusedWarnings->FromEnum_6989586621679763969Sym0$fSEnumOrdering8$fSuppressUnusedWarnings->ToEnum_6989586621679763987Sym0$fPEnumOrdering:$fSuppressUnusedWarnings->FromEnum_6989586621679763993Sym0 $fSEnum()8$fSuppressUnusedWarnings->ToEnum_6989586621679764004Sym0 $fPEnum():$fSuppressUnusedWarnings->FromEnum_6989586621679764010Sym0 SSemigroup%<>sSconcat PSemigroup<>Sconcat SconcatSym0 SconcatSym1<>@#@$<>@#@$$<>@#@$$$SWrappedMonoidWrapMonoidSym0WrapMonoidSym1UnwrapMonoidSym0UnwrapMonoidSym1SLastLastSym0LastSym1GetLast GetLastSym0 GetLastSym1SFirst FirstSym0 FirstSym1GetFirst GetFirstSym0 GetFirstSym1SMaxGetMax GetMaxSym0 GetMaxSym1SMinGetMin GetMinSym0 GetMinSym1SProduct ProductSym0 ProductSym1 GetProductGetProductSym0GetProductSym1SSumSumSym0SumSym1GetSum GetSumSym0 GetSumSym1SAnyAnySym0AnySym1GetAny GetAnySym0 GetAnySym1SAllAllSym0AllSym1GetAll GetAllSym0 GetAllSym1SDualDualSym0DualSym1GetDual GetDualSym0 GetDualSym1SOption OptionSym0 OptionSym1 GetOption GetOptionSym0 GetOptionSym1 SWrapMonoid sUnwrapMonoidsGetLast sGetFirstsGetMaxsGetMin sGetProductsGetSumsGetAnysGetAllsGetDual sGetOption TransposeHeadLastTailInit DropWhileEnd IsSuffixOfReverse Intercalate Intersperse Subsequences PermutationsFoldl1' Intersect IntersectBy IsInfixOfScanl1ScanlScanrScanr1UnfoldrInitsTails IsPrefixOfNub ElemIndex FindIndex ElemIndices FindIndicesZipZip3ZipWithZipWith3UnzipUnzip3Unzip4Unzip5Unzip6Unzip7UnlinesUnwords\\DeleteUnionUnionByDeleteFirstsByDeleteBySortSortByInsertInsertByFilter TakeWhile DropWhileGroupGroupBySpanBreakSplitAtTakeDropLookup Partition Replicate!!NubBy GenericLength TransposeSym0 TransposeSym1HeadSym0HeadSym1TailSym0TailSym1InitSym0InitSym1DropWhileEndSym0DropWhileEndSym1DropWhileEndSym2IsSuffixOfSym0IsSuffixOfSym1IsSuffixOfSym2 ReverseSym0 ReverseSym1IntercalateSym0IntercalateSym1IntercalateSym2IntersperseSym0IntersperseSym1IntersperseSym2SubsequencesSym0SubsequencesSym1PermutationsSym0PermutationsSym1 Foldl1'Sym0 Foldl1'Sym1 Foldl1'Sym2 IntersectSym0 IntersectSym1 IntersectSym2IntersectBySym0IntersectBySym1IntersectBySym2IntersectBySym3 IsInfixOfSym0 IsInfixOfSym1 IsInfixOfSym2 Scanl1Sym0 Scanl1Sym1 Scanl1Sym2 ScanlSym0 ScanlSym1 ScanlSym2 ScanlSym3 ScanrSym0 ScanrSym1 ScanrSym2 ScanrSym3 Scanr1Sym0 Scanr1Sym1 Scanr1Sym2 UnfoldrSym0 UnfoldrSym1 UnfoldrSym2 InitsSym0 InitsSym1 TailsSym0 TailsSym1IsPrefixOfSym0IsPrefixOfSym1IsPrefixOfSym2NubSym0NubSym1 ElemIndexSym0 ElemIndexSym1 ElemIndexSym2 FindIndexSym0 FindIndexSym1 FindIndexSym2ElemIndicesSym0ElemIndicesSym1ElemIndicesSym2FindIndicesSym0FindIndicesSym1FindIndicesSym2ZipSym0ZipSym1ZipSym2Zip3Sym0Zip3Sym1Zip3Sym2Zip3Sym3 ZipWithSym0 ZipWithSym1 ZipWithSym2 ZipWithSym3 ZipWith3Sym0 ZipWith3Sym1 ZipWith3Sym2 ZipWith3Sym3 ZipWith3Sym4 UnzipSym0 UnzipSym1 Unzip3Sym0 Unzip3Sym1 Unzip4Sym0 Unzip4Sym1 Unzip5Sym0 Unzip5Sym1 Unzip6Sym0 Unzip6Sym1 Unzip7Sym0 Unzip7Sym1 UnlinesSym0 UnlinesSym1 UnwordsSym0 UnwordsSym1\\@#@$\\@#@$$\\@#@$$$ DeleteSym0 DeleteSym1 DeleteSym2 UnionSym0 UnionSym1 UnionSym2 UnionBySym0 UnionBySym1 UnionBySym2 UnionBySym3DeleteFirstsBySym0DeleteFirstsBySym1DeleteFirstsBySym2DeleteFirstsBySym3 DeleteBySym0 DeleteBySym1 DeleteBySym2 DeleteBySym3SortSym0SortSym1 SortBySym0 SortBySym1 SortBySym2 InsertSym0 InsertSym1 InsertSym2 InsertBySym0 InsertBySym1 InsertBySym2 InsertBySym3 FilterSym0 FilterSym1 FilterSym2 TakeWhileSym0 TakeWhileSym1 TakeWhileSym2 DropWhileSym0 DropWhileSym1 DropWhileSym2 GroupSym0 GroupSym1 GroupBySym0 GroupBySym1 GroupBySym2SpanSym0SpanSym1SpanSym2 BreakSym0 BreakSym1 BreakSym2 SplitAtSym0 SplitAtSym1 SplitAtSym2TakeSym0TakeSym1TakeSym2DropSym0DropSym1DropSym2 LookupSym0 LookupSym1 LookupSym2 PartitionSym0 PartitionSym1 PartitionSym2 ReplicateSym0 ReplicateSym1 ReplicateSym2!!@#@$!!@#@$$!!@#@$$$ NubBySym0 NubBySym1 NubBySym2GenericLengthSym0GenericLengthSym1sGenericLengthsNubBy%!! sReplicate sPartitionsLookupsDropsTakesSplitAtsBreaksSpansGroupBysGroup sDropWhile sTakeWhilesFilter sInsertBysInsertsSortBysSort sDeleteBysDeleteFirstsBysUnionBysUnionsDelete%\\sUnwordssUnlinessUnzip7sUnzip6sUnzip5sUnzip4sUnzip3sUnzip sZipWith3sZipWithsZip3sZip sFindIndices sElemIndices sFindIndex sElemIndexsNub sIsPrefixOfsTailssInitssUnfoldrsScanr1sScanrsScanlsScanl1 sIsInfixOf sIntersectBy sIntersectsFoldl1' sPermutations sSubsequences sIntersperse sIntercalatesReverse sIsSuffixOf sDropWhileEndsInitsTailsLastsHead sTranspose StripPrefixZip4Zip5Zip6Zip7ZipWith4ZipWith5ZipWith6ZipWith7 GenericTake GenericDropGenericSplitAt GenericIndexGenericReplicateStripPrefixSym0StripPrefixSym1StripPrefixSym2Zip4Sym0Zip4Sym1Zip4Sym2Zip4Sym3Zip4Sym4Zip5Sym0Zip5Sym1Zip5Sym2Zip5Sym3Zip5Sym4Zip5Sym5Zip6Sym0Zip6Sym1Zip6Sym2Zip6Sym3Zip6Sym4Zip6Sym5Zip6Sym6Zip7Sym0Zip7Sym1Zip7Sym2Zip7Sym3Zip7Sym4Zip7Sym5Zip7Sym6Zip7Sym7 ZipWith4Sym0 ZipWith4Sym1 ZipWith4Sym2 ZipWith4Sym3 ZipWith4Sym4 ZipWith4Sym5 ZipWith5Sym0 ZipWith5Sym1 ZipWith5Sym2 ZipWith5Sym3 ZipWith5Sym4 ZipWith5Sym5 ZipWith5Sym6 ZipWith6Sym0 ZipWith6Sym1 ZipWith6Sym2 ZipWith6Sym3 ZipWith6Sym4 ZipWith6Sym5 ZipWith6Sym6 ZipWith6Sym7 ZipWith7Sym0 ZipWith7Sym1 ZipWith7Sym2 ZipWith7Sym3 ZipWith7Sym4 ZipWith7Sym5 ZipWith7Sym6 ZipWith7Sym7 ZipWith7Sym8GenericTakeSym0GenericTakeSym1GenericTakeSym2GenericDropSym0GenericDropSym1GenericDropSym2GenericSplitAtSym0GenericSplitAtSym1GenericSplitAtSym2GenericIndexSym0GenericIndexSym1GenericIndexSym2GenericReplicateSym0GenericReplicateSym1GenericReplicateSym2SCharSymbolSSShow sShowsPrecsShow_ sShowListPShow ShowsPrecShow_ShowList ShowListSym0 ShowListSym1 ShowListSym2 Show_Sym0 Show_Sym1 ShowsPrecSym0 ShowsPrecSym1 ShowsPrecSym2 ShowsPrecSym3Shows ShowListWith ShowParenShowCharShowCommaSpace ShowString ShowSpaceAppPrecAppPrec1 ShowsSym0 ShowsSym1 ShowsSym2ShowListWithSym0ShowListWithSym1ShowListWithSym2ShowListWithSym3 ShowParenSym0 ShowParenSym1 ShowParenSym2 ShowCharSym0 ShowCharSym1 ShowCharSym2ShowCommaSpaceSym0ShowCommaSpaceSym1ShowStringSym0ShowStringSym1ShowStringSym2 ShowSpaceSym0 ShowSpaceSym1 AppPrecSym0 AppPrec1Sym0 sAppPrec1sAppPrec sShowSpace sShowStringsShowCommaSpace sShowChar sShowParen sShowListWithsShows8$fSuppressUnusedWarnings->Lambda_6989586621680262447Sym18$fSuppressUnusedWarnings->Lambda_6989586621680262447Sym09$fSuppressUnusedWarnings->Let6989586621680262521ShowlSym49$fSuppressUnusedWarnings->Let6989586621680262521ShowlSym39$fSuppressUnusedWarnings->Let6989586621680262521ShowlSym29$fSuppressUnusedWarnings->Let6989586621680262521ShowlSym19$fSuppressUnusedWarnings->Let6989586621680262521ShowlSym0$fSingI->ShowSpaceSym0'$fSuppressUnusedWarnings->ShowSpaceSym0$fSingI->ShowStringSym1($fSuppressUnusedWarnings->ShowStringSym1$fSingI->ShowStringSym0($fSuppressUnusedWarnings->ShowStringSym0$fSingI->ShowCommaSpaceSym0,$fSuppressUnusedWarnings->ShowCommaSpaceSym0$fSingI->ShowCharSym1&$fSuppressUnusedWarnings->ShowCharSym1$fSingI->ShowCharSym0&$fSuppressUnusedWarnings->ShowCharSym08$fSuppressUnusedWarnings->Lambda_6989586621680262500Sym38$fSuppressUnusedWarnings->Lambda_6989586621680262500Sym28$fSuppressUnusedWarnings->Lambda_6989586621680262500Sym18$fSuppressUnusedWarnings->Lambda_6989586621680262500Sym0$fSingI->ShowParenSym2'$fSuppressUnusedWarnings->ShowParenSym2$fSingI->ShowParenSym1'$fSuppressUnusedWarnings->ShowParenSym1$fSingI->ShowParenSym0'$fSuppressUnusedWarnings->ShowParenSym0$fSingI->Show_tupleSym1($fSuppressUnusedWarnings->Show_tupleSym1$fSingI->Show_tupleSym0($fSuppressUnusedWarnings->Show_tupleSym0$fSingI->ShowListWithSym2*$fSuppressUnusedWarnings->ShowListWithSym2$fSingI->ShowListWithSym1*$fSuppressUnusedWarnings->ShowListWithSym1$fSingI->ShowListWithSym0*$fSuppressUnusedWarnings->ShowListWithSym0:$fSuppressUnusedWarnings->ShowList_6989586621680262581Sym0:$fSuppressUnusedWarnings->ShowList_6989586621680262581Sym17$fSuppressUnusedWarnings->Show__6989586621680262570Sym0;$fSuppressUnusedWarnings->ShowsPrec_6989586621680262561Sym0;$fSuppressUnusedWarnings->ShowsPrec_6989586621680262561Sym1;$fSuppressUnusedWarnings->ShowsPrec_6989586621680262561Sym2#$fSuppressUnusedWarnings->Show_Sym0'$fSuppressUnusedWarnings->ShowsPrecSym0'$fSuppressUnusedWarnings->ShowsPrecSym1'$fSuppressUnusedWarnings->ShowsPrecSym2#$fSuppressUnusedWarnings->ShowsSym0#$fSuppressUnusedWarnings->ShowsSym1&$fSuppressUnusedWarnings->ShowListSym1&$fSuppressUnusedWarnings->ShowListSym0;$fSuppressUnusedWarnings->ShowsPrec_6989586621680262600Sym2;$fSuppressUnusedWarnings->ShowsPrec_6989586621680262600Sym1 $fPShow[];$fSuppressUnusedWarnings->ShowsPrec_6989586621680262600Sym0;$fSuppressUnusedWarnings->ShowsPrec_6989586621680262620Sym2;$fSuppressUnusedWarnings->ShowsPrec_6989586621680262620Sym1 $fPShowSymbol;$fSuppressUnusedWarnings->ShowsPrec_6989586621680262620Sym0;$fSuppressUnusedWarnings->ShowsPrec_6989586621680262637Sym2;$fSuppressUnusedWarnings->ShowsPrec_6989586621680262637Sym1 $fPShow(,);$fSuppressUnusedWarnings->ShowsPrec_6989586621680262637Sym0;$fSuppressUnusedWarnings->ShowsPrec_6989586621680262655Sym2;$fSuppressUnusedWarnings->ShowsPrec_6989586621680262655Sym1 $fPShow(,,);$fSuppressUnusedWarnings->ShowsPrec_6989586621680262655Sym0;$fSuppressUnusedWarnings->ShowsPrec_6989586621680262674Sym2;$fSuppressUnusedWarnings->ShowsPrec_6989586621680262674Sym1 $fPShow(,,,);$fSuppressUnusedWarnings->ShowsPrec_6989586621680262674Sym0;$fSuppressUnusedWarnings->ShowsPrec_6989586621680262694Sym2;$fSuppressUnusedWarnings->ShowsPrec_6989586621680262694Sym1 $fPShow(,,,,);$fSuppressUnusedWarnings->ShowsPrec_6989586621680262694Sym0;$fSuppressUnusedWarnings->ShowsPrec_6989586621680262715Sym2;$fSuppressUnusedWarnings->ShowsPrec_6989586621680262715Sym1$fPShow(,,,,,);$fSuppressUnusedWarnings->ShowsPrec_6989586621680262715Sym0;$fSuppressUnusedWarnings->ShowsPrec_6989586621680262737Sym2;$fSuppressUnusedWarnings->ShowsPrec_6989586621680262737Sym1$fPShow(,,,,,,);$fSuppressUnusedWarnings->ShowsPrec_6989586621680262737Sym0$fSingI->ShowListSym1$fSingI->ShowListSym0$fSingI->Show_Sym0$fSingI->ShowsPrecSym2$fSingI->ShowsPrecSym1$fSingI->ShowsPrecSym0$fSShow(,,,,,,)$fSShow(,,,,,) $fSShow(,,,,) $fSShow(,,,) $fSShow(,,) $fSShow(,) $fSShowSymbol $fSShow[]$fSingI->ShowsSym1$fSingI->ShowsSym0show_ $fSShowNat $fPShowNat&$fSuppressUnusedWarnings->ShowsNatSym0&$fSuppressUnusedWarnings->ShowsNatSym1$fSShowOrdering $fSShowBool$fSShowNonEmpty $fSShowEither $fSShowMaybe $fSShow();$fSuppressUnusedWarnings->ShowsPrec_6989586621680280669Sym2;$fSuppressUnusedWarnings->ShowsPrec_6989586621680280669Sym1 $fPShow();$fSuppressUnusedWarnings->ShowsPrec_6989586621680280669Sym0;$fSuppressUnusedWarnings->ShowsPrec_6989586621680280706Sym2;$fSuppressUnusedWarnings->ShowsPrec_6989586621680280706Sym1 $fPShowMaybe;$fSuppressUnusedWarnings->ShowsPrec_6989586621680280706Sym0;$fSuppressUnusedWarnings->ShowsPrec_6989586621680280760Sym2;$fSuppressUnusedWarnings->ShowsPrec_6989586621680280760Sym1 $fPShowEither;$fSuppressUnusedWarnings->ShowsPrec_6989586621680280760Sym0;$fSuppressUnusedWarnings->ShowsPrec_6989586621680280794Sym2;$fSuppressUnusedWarnings->ShowsPrec_6989586621680280794Sym1$fPShowNonEmpty;$fSuppressUnusedWarnings->ShowsPrec_6989586621680280794Sym0;$fSuppressUnusedWarnings->ShowsPrec_6989586621680280820Sym2;$fSuppressUnusedWarnings->ShowsPrec_6989586621680280820Sym1 $fPShowBool;$fSuppressUnusedWarnings->ShowsPrec_6989586621680280820Sym0;$fSuppressUnusedWarnings->ShowsPrec_6989586621680280847Sym2;$fSuppressUnusedWarnings->ShowsPrec_6989586621680280847Sym1$fPShowOrdering;$fSuppressUnusedWarnings->ShowsPrec_6989586621680280847Sym0 $fSShowVoid;$fSuppressUnusedWarnings->ShowsPrec_6989586621680280875Sym2;$fSuppressUnusedWarnings->ShowsPrec_6989586621680280875Sym1 $fPShowVoid;$fSuppressUnusedWarnings->ShowsPrec_6989586621680280875Sym0SMonoidsMemptysMappendsMconcatPMonoidMemptyMappendMconcat MconcatSym0 MconcatSym1 MappendSym0 MappendSym1 MappendSym2 MemptySym09$fSuppressUnusedWarnings->Mappend_6989586621680329928Sym19$fSuppressUnusedWarnings->Mappend_6989586621680329928Sym09$fSuppressUnusedWarnings->Mconcat_6989586621680329938Sym0%$fSuppressUnusedWarnings->MappendSym0%$fSuppressUnusedWarnings->MappendSym1%$fSuppressUnusedWarnings->MconcatSym0 $fPMonoid[]8$fSuppressUnusedWarnings->Lambda_6989586621680329961Sym0 $fPMonoid-> $fPMonoid()9$fSuppressUnusedWarnings->Mconcat_6989586621680329976Sym0 $fPMonoid(,) $fPMonoid(,,)$fPMonoid(,,,)$fPMonoid(,,,,)$fPMonoidOrdering$fPMonoidMaybe$fPMonoidSymbol$fSingI->MconcatSym0$fSingI->MappendSym1$fSingI->MappendSym0$fSMonoidSymbol$fSMonoidMaybe$fSMonoidOrdering$fSMonoid(,,,,)$fSMonoid(,,,) $fSMonoid(,,) $fSMonoid(,) $fSMonoid() $fSMonoid-> $fSMonoid[]$fSingILastLast$fSingKindLast$fSingI->TyCon0$fSingIFirstFirst$fSingKindFirst&$fSuppressUnusedWarnings->GetFirstSym0$fSingI->FirstSym0#$fSuppressUnusedWarnings->FirstSym0%$fSuppressUnusedWarnings->GetLastSym0$fSingI->LastSym0"$fSuppressUnusedWarnings->LastSym0 $fSEqLast $fSEqFirst $fPEqFirst $fPEqLast $fSDecideLast$fSDecideFirst $fSOrdLast $fSOrdFirst9$fSuppressUnusedWarnings->Compare_6989586621680335083Sym1 $fPOrdFirst9$fSuppressUnusedWarnings->Compare_6989586621680335083Sym09$fSuppressUnusedWarnings->Compare_6989586621680335104Sym1 $fPOrdLast9$fSuppressUnusedWarnings->Compare_6989586621680335104Sym0 $fSShowLast $fSShowFirst;$fSuppressUnusedWarnings->ShowsPrec_6989586621680336368Sym2;$fSuppressUnusedWarnings->ShowsPrec_6989586621680336368Sym1 $fPShowFirst;$fSuppressUnusedWarnings->ShowsPrec_6989586621680336368Sym0;$fSuppressUnusedWarnings->ShowsPrec_6989586621680336397Sym2;$fSuppressUnusedWarnings->ShowsPrec_6989586621680336397Sym1 $fPShowLast;$fSuppressUnusedWarnings->ShowsPrec_6989586621680336397Sym0 $fSMonoidLast$fSFunctorLast$fSApplicativeLast$fSMonoidFirst$fSFunctorFirst$fSApplicativeFirst $fSMonoidDown$fSMonoidProduct $fSMonoidSum $fSMonoidAny $fSMonoidAll $fSMonoidDual $fPMonoidDual $fPMonoidAll $fPMonoidAny $fPMonoidSum$fPMonoidProduct9$fSuppressUnusedWarnings->Mappend_6989586621680339544Sym1 $fPMonoidDown9$fSuppressUnusedWarnings->Mappend_6989586621680339544Sym06$fSuppressUnusedWarnings->Pure_6989586621680339554Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680339565Sym1$fPApplicativeFirst:$fSuppressUnusedWarnings->TFHelper_6989586621680339565Sym06$fSuppressUnusedWarnings->Fmap_6989586621680339577Sym16$fSuppressUnusedWarnings->Fmap_6989586621680339577Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680339589Sym1$fPFunctorFirst:$fSuppressUnusedWarnings->TFHelper_6989586621680339589Sym0Q$fSuppressUnusedWarnings->Let6989586621680339602Scrutinee_6989586621680339388Sym2Q$fSuppressUnusedWarnings->Let6989586621680339602Scrutinee_6989586621680339388Sym1Q$fSuppressUnusedWarnings->Let6989586621680339602Scrutinee_6989586621680339388Sym08$fSuppressUnusedWarnings->Lambda_6989586621680339599Sym28$fSuppressUnusedWarnings->Lambda_6989586621680339599Sym1 $fSMonadFirst8$fSuppressUnusedWarnings->Lambda_6989586621680339599Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680339616Sym1 $fPMonadFirst:$fSuppressUnusedWarnings->TFHelper_6989586621680339616Sym0$fSSemigroupFirst5$fSuppressUnusedWarnings->Let6989586621680339626ASym0:$fSuppressUnusedWarnings->TFHelper_6989586621680339630Sym1$fPSemigroupFirst:$fSuppressUnusedWarnings->TFHelper_6989586621680339630Sym0$fPMonoidFirst6$fSuppressUnusedWarnings->Pure_6989586621680339642Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680339653Sym1$fPApplicativeLast:$fSuppressUnusedWarnings->TFHelper_6989586621680339653Sym06$fSuppressUnusedWarnings->Fmap_6989586621680339665Sym16$fSuppressUnusedWarnings->Fmap_6989586621680339665Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680339677Sym1$fPFunctorLast:$fSuppressUnusedWarnings->TFHelper_6989586621680339677Sym0Q$fSuppressUnusedWarnings->Let6989586621680339690Scrutinee_6989586621680339395Sym2Q$fSuppressUnusedWarnings->Let6989586621680339690Scrutinee_6989586621680339395Sym1Q$fSuppressUnusedWarnings->Let6989586621680339690Scrutinee_6989586621680339395Sym08$fSuppressUnusedWarnings->Lambda_6989586621680339687Sym28$fSuppressUnusedWarnings->Lambda_6989586621680339687Sym1 $fSMonadLast8$fSuppressUnusedWarnings->Lambda_6989586621680339687Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680339704Sym1 $fPMonadLast:$fSuppressUnusedWarnings->TFHelper_6989586621680339704Sym0$fSSemigroupLast5$fSuppressUnusedWarnings->Let6989586621680339714BSym0:$fSuppressUnusedWarnings->TFHelper_6989586621680339718Sym1$fPSemigroupLast:$fSuppressUnusedWarnings->TFHelper_6989586621680339718Sym0 $fPMonoidLastEither_ Either_Sym0 Either_Sym1 Either_Sym2 Either_Sym3sEither_$fSingI->Either_Sym2%$fSuppressUnusedWarnings->Either_Sym2$fSingI->Either_Sym1%$fSuppressUnusedWarnings->Either_Sym1$fSingI->Either_Sym0%$fSuppressUnusedWarnings->Either_Sym0LeftsRightsPartitionEithersIsLeftIsRight LeftsSym0 LeftsSym1 RightsSym0 RightsSym1 IsLeftSym0 IsLeftSym1 IsRightSym0 IsRightSym1sIsRightsIsLeftsPartitionEitherssRightssLefts9$fSuppressUnusedWarnings->Let6989586621680434577RightSym29$fSuppressUnusedWarnings->Let6989586621680434577RightSym19$fSuppressUnusedWarnings->Let6989586621680434577RightSym08$fSuppressUnusedWarnings->Let6989586621680434577LeftSym28$fSuppressUnusedWarnings->Let6989586621680434577LeftSym18$fSuppressUnusedWarnings->Let6989586621680434577LeftSym0$fSingI->IsRightSym0%$fSuppressUnusedWarnings->IsRightSym0$fSingI->IsLeftSym0$$fSuppressUnusedWarnings->IsLeftSym0$fSingI->PartitionEithersSym0.$fSuppressUnusedWarnings->PartitionEithersSym0$fSingI->RightsSym0$$fSuppressUnusedWarnings->RightsSym0$fSingI->LeftsSym0#$fSuppressUnusedWarnings->LeftsSym0 $fSMonoidEndo$fSSemigroupEndo:$fSuppressUnusedWarnings->TFHelper_6989586621680443047Sym1$fPSemigroupEndo:$fSuppressUnusedWarnings->TFHelper_6989586621680443047Sym0 $fPMonoidEndo)$fSuppressUnusedWarnings->MaxInternalSym0)$fSuppressUnusedWarnings->MinInternalSym0$fSMonoidMinInternal$fSMonoidMaxInternal5$fSuppressUnusedWarnings->Let6989586621680444514MSym15$fSuppressUnusedWarnings->Let6989586621680444514MSym05$fSuppressUnusedWarnings->Let6989586621680444514NSym15$fSuppressUnusedWarnings->Let6989586621680444514NSym0Q$fSuppressUnusedWarnings->Let6989586621680444519Scrutinee_6989586621680444482Sym1Q$fSuppressUnusedWarnings->Let6989586621680444519Scrutinee_6989586621680444482Sym0$fSSemigroupMaxInternal:$fSuppressUnusedWarnings->TFHelper_6989586621680444527Sym1$fPSemigroupMaxInternal:$fSuppressUnusedWarnings->TFHelper_6989586621680444527Sym0$fPMonoidMaxInternal5$fSuppressUnusedWarnings->Let6989586621680444541MSym15$fSuppressUnusedWarnings->Let6989586621680444541MSym05$fSuppressUnusedWarnings->Let6989586621680444541NSym15$fSuppressUnusedWarnings->Let6989586621680444541NSym0Q$fSuppressUnusedWarnings->Let6989586621680444546Scrutinee_6989586621680444484Sym1Q$fSuppressUnusedWarnings->Let6989586621680444546Scrutinee_6989586621680444484Sym0$fSSemigroupMinInternal:$fSuppressUnusedWarnings->TFHelper_6989586621680444554Sym1$fPSemigroupMinInternal:$fSuppressUnusedWarnings->TFHelper_6989586621680444554Sym0$fPMonoidMinInternal SFoldablesFoldsFoldMapsFoldr'sFoldlsFoldl'sFoldr1sFoldl1sToListsNullsLengthsElemsMaximumsMinimumsSumsProduct PFoldableFoldFoldMapFoldr'FoldlFoldl'Foldr1Foldl1ToListNullLengthElemMaximumMinimumSumProduct MinimumSym0 MinimumSym1 MaximumSym0 MaximumSym1ElemSym0ElemSym1ElemSym2 LengthSym0 LengthSym1NullSym0NullSym1 ToListSym0 ToListSym1 Foldl1Sym0 Foldl1Sym1 Foldl1Sym2 Foldr1Sym0 Foldr1Sym1 Foldr1Sym2 Foldl'Sym0 Foldl'Sym1 Foldl'Sym2 Foldl'Sym3 FoldlSym0 FoldlSym1 FoldlSym2 FoldlSym3 Foldr'Sym0 Foldr'Sym1 Foldr'Sym2 Foldr'Sym3 FoldMapSym0 FoldMapSym1 FoldMapSym2FoldSym0FoldSym1FoldrMFoldlMFor_ Traverse_ForM_MapM_ SequenceA_ Sequence_MsumAsumConcat ConcatMapAndOrAnyAll MaximumBy MinimumByNotElemFind FoldrMSym0 FoldrMSym1 FoldrMSym2 FoldrMSym3 FoldlMSym0 FoldlMSym1 FoldlMSym2 FoldlMSym3For_Sym0For_Sym1For_Sym2 Traverse_Sym0 Traverse_Sym1 Traverse_Sym2 ForM_Sym0 ForM_Sym1 ForM_Sym2 MapM_Sym0 MapM_Sym1 MapM_Sym2SequenceA_Sym0SequenceA_Sym1 Sequence_Sym0 Sequence_Sym1MsumSym0MsumSym1AsumSym0AsumSym1 ConcatSym0 ConcatSym1 ConcatMapSym0 ConcatMapSym1 ConcatMapSym2AndSym0AndSym1OrSym0OrSym1AnySym2AllSym2 MaximumBySym0 MaximumBySym1 MaximumBySym2 MinimumBySym0 MinimumBySym1 MinimumBySym2 NotElemSym0 NotElemSym1 NotElemSym2FindSym0FindSym1FindSym2sFindsNotElem sMinimumBy sMaximumBysAllsAnysOrsAnd sConcatMapsConcatsAsumsMsum sSequence_ sSequenceA_sMapM_sForM_ sTraverse_sFor_sFoldlMsFoldrMQ$fSuppressUnusedWarnings->Let6989586621680453099Scrutinee_6989586621680452984Sym2Q$fSuppressUnusedWarnings->Let6989586621680453099Scrutinee_6989586621680452984Sym1Q$fSuppressUnusedWarnings->Let6989586621680453099Scrutinee_6989586621680452984Sym08$fSuppressUnusedWarnings->Lambda_6989586621680453096Sym28$fSuppressUnusedWarnings->Lambda_6989586621680453096Sym18$fSuppressUnusedWarnings->Lambda_6989586621680453096Sym0Q$fSuppressUnusedWarnings->Let6989586621680453141Scrutinee_6989586621680452980Sym3Q$fSuppressUnusedWarnings->Let6989586621680453141Scrutinee_6989586621680452980Sym2Q$fSuppressUnusedWarnings->Let6989586621680453141Scrutinee_6989586621680452980Sym1Q$fSuppressUnusedWarnings->Let6989586621680453141Scrutinee_6989586621680452980Sym08$fSuppressUnusedWarnings->Let6989586621680453132Min'Sym38$fSuppressUnusedWarnings->Let6989586621680453132Min'Sym28$fSuppressUnusedWarnings->Let6989586621680453132Min'Sym18$fSuppressUnusedWarnings->Let6989586621680453132Min'Sym0Q$fSuppressUnusedWarnings->Let6989586621680453166Scrutinee_6989586621680452978Sym3Q$fSuppressUnusedWarnings->Let6989586621680453166Scrutinee_6989586621680452978Sym2Q$fSuppressUnusedWarnings->Let6989586621680453166Scrutinee_6989586621680452978Sym1Q$fSuppressUnusedWarnings->Let6989586621680453166Scrutinee_6989586621680452978Sym08$fSuppressUnusedWarnings->Let6989586621680453157Max'Sym38$fSuppressUnusedWarnings->Let6989586621680453157Max'Sym28$fSuppressUnusedWarnings->Let6989586621680453157Max'Sym18$fSuppressUnusedWarnings->Let6989586621680453157Max'Sym06$fSuppressUnusedWarnings->Let6989586621680453311F'Sym56$fSuppressUnusedWarnings->Let6989586621680453311F'Sym46$fSuppressUnusedWarnings->Let6989586621680453311F'Sym36$fSuppressUnusedWarnings->Let6989586621680453311F'Sym26$fSuppressUnusedWarnings->Let6989586621680453311F'Sym16$fSuppressUnusedWarnings->Let6989586621680453311F'Sym06$fSuppressUnusedWarnings->Let6989586621680453333F'Sym56$fSuppressUnusedWarnings->Let6989586621680453333F'Sym46$fSuppressUnusedWarnings->Let6989586621680453333F'Sym36$fSuppressUnusedWarnings->Let6989586621680453333F'Sym26$fSuppressUnusedWarnings->Let6989586621680453333F'Sym16$fSuppressUnusedWarnings->Let6989586621680453333F'Sym06$fSuppressUnusedWarnings->Let6989586621680453459F'Sym56$fSuppressUnusedWarnings->Let6989586621680453459F'Sym46$fSuppressUnusedWarnings->Let6989586621680453459F'Sym36$fSuppressUnusedWarnings->Let6989586621680453459F'Sym26$fSuppressUnusedWarnings->Let6989586621680453459F'Sym16$fSuppressUnusedWarnings->Let6989586621680453459F'Sym06$fSuppressUnusedWarnings->Let6989586621680453514F'Sym56$fSuppressUnusedWarnings->Let6989586621680453514F'Sym46$fSuppressUnusedWarnings->Let6989586621680453514F'Sym36$fSuppressUnusedWarnings->Let6989586621680453514F'Sym26$fSuppressUnusedWarnings->Let6989586621680453514F'Sym16$fSuppressUnusedWarnings->Let6989586621680453514F'Sym06$fSuppressUnusedWarnings->Let6989586621680453541MfSym36$fSuppressUnusedWarnings->Let6989586621680453541MfSym26$fSuppressUnusedWarnings->Let6989586621680453541MfSym16$fSuppressUnusedWarnings->Let6989586621680453541MfSym06$fSuppressUnusedWarnings->Let6989586621680453566MfSym36$fSuppressUnusedWarnings->Let6989586621680453566MfSym26$fSuppressUnusedWarnings->Let6989586621680453566MfSym16$fSuppressUnusedWarnings->Let6989586621680453566MfSym08$fSuppressUnusedWarnings->Lambda_6989586621680453599Sym28$fSuppressUnusedWarnings->Lambda_6989586621680453599Sym18$fSuppressUnusedWarnings->Lambda_6989586621680453599Sym08$fSuppressUnusedWarnings->Lambda_6989586621680453620Sym28$fSuppressUnusedWarnings->Lambda_6989586621680453620Sym18$fSuppressUnusedWarnings->Lambda_6989586621680453620Sym09$fSuppressUnusedWarnings->Product_6989586621680453702Sym05$fSuppressUnusedWarnings->Sum_6989586621680453689Sym09$fSuppressUnusedWarnings->Minimum_6989586621680453676Sym09$fSuppressUnusedWarnings->Maximum_6989586621680453663Sym06$fSuppressUnusedWarnings->Elem_6989586621680453649Sym06$fSuppressUnusedWarnings->Elem_6989586621680453649Sym18$fSuppressUnusedWarnings->Length_6989586621680453634Sym06$fSuppressUnusedWarnings->Null_6989586621680453612Sym08$fSuppressUnusedWarnings->ToList_6989586621680453591Sym08$fSuppressUnusedWarnings->Foldl1_6989586621680453581Sym08$fSuppressUnusedWarnings->Foldl1_6989586621680453581Sym18$fSuppressUnusedWarnings->Foldr1_6989586621680453556Sym08$fSuppressUnusedWarnings->Foldr1_6989586621680453556Sym18$fSuppressUnusedWarnings->Foldl'_6989586621680453530Sym08$fSuppressUnusedWarnings->Foldl'_6989586621680453530Sym18$fSuppressUnusedWarnings->Foldl'_6989586621680453530Sym27$fSuppressUnusedWarnings->Foldl_6989586621680453500Sym07$fSuppressUnusedWarnings->Foldl_6989586621680453500Sym17$fSuppressUnusedWarnings->Foldl_6989586621680453500Sym28$fSuppressUnusedWarnings->Foldr'_6989586621680453475Sym08$fSuppressUnusedWarnings->Foldr'_6989586621680453475Sym18$fSuppressUnusedWarnings->Foldr'_6989586621680453475Sym27$fSuppressUnusedWarnings->Foldr_6989586621680453445Sym07$fSuppressUnusedWarnings->Foldr_6989586621680453445Sym17$fSuppressUnusedWarnings->Foldr_6989586621680453445Sym29$fSuppressUnusedWarnings->FoldMap_6989586621680453421Sym09$fSuppressUnusedWarnings->FoldMap_6989586621680453421Sym16$fSuppressUnusedWarnings->Fold_6989586621680453408Sym0$$fSuppressUnusedWarnings->Foldl'Sym0$$fSuppressUnusedWarnings->Foldl'Sym1$$fSuppressUnusedWarnings->Foldl'Sym2#$fSuppressUnusedWarnings->FoldlSym0#$fSuppressUnusedWarnings->FoldlSym1#$fSuppressUnusedWarnings->FoldlSym2%$fSuppressUnusedWarnings->FoldMapSym0%$fSuppressUnusedWarnings->FoldMapSym1!$fSuppressUnusedWarnings->AnySym0!$fSuppressUnusedWarnings->AnySym1%$fSuppressUnusedWarnings->ProductSym0!$fSuppressUnusedWarnings->SumSym0%$fSuppressUnusedWarnings->MinimumSym0%$fSuppressUnusedWarnings->MaximumSym0"$fSuppressUnusedWarnings->ElemSym1"$fSuppressUnusedWarnings->ElemSym0%$fSuppressUnusedWarnings->NotElemSym1%$fSuppressUnusedWarnings->NotElemSym0$$fSuppressUnusedWarnings->LengthSym0"$fSuppressUnusedWarnings->NullSym0$$fSuppressUnusedWarnings->ToListSym0$$fSuppressUnusedWarnings->Foldl1Sym1$$fSuppressUnusedWarnings->Foldl1Sym0'$fSuppressUnusedWarnings->MaximumBySym1'$fSuppressUnusedWarnings->MaximumBySym0'$fSuppressUnusedWarnings->MinimumBySym1'$fSuppressUnusedWarnings->MinimumBySym0$$fSuppressUnusedWarnings->Foldr1Sym1$$fSuppressUnusedWarnings->Foldr1Sym0$$fSuppressUnusedWarnings->FoldrMSym2$$fSuppressUnusedWarnings->FoldrMSym1$$fSuppressUnusedWarnings->FoldrMSym0$$fSuppressUnusedWarnings->Foldr'Sym2$$fSuppressUnusedWarnings->Foldr'Sym1$$fSuppressUnusedWarnings->Foldr'Sym0$$fSuppressUnusedWarnings->FoldlMSym2$$fSuppressUnusedWarnings->FoldlMSym1$$fSuppressUnusedWarnings->FoldlMSym0'$fSuppressUnusedWarnings->Traverse_Sym1'$fSuppressUnusedWarnings->Traverse_Sym0"$fSuppressUnusedWarnings->For_Sym1"$fSuppressUnusedWarnings->For_Sym0#$fSuppressUnusedWarnings->MapM_Sym1#$fSuppressUnusedWarnings->MapM_Sym0#$fSuppressUnusedWarnings->ForM_Sym1#$fSuppressUnusedWarnings->ForM_Sym0($fSuppressUnusedWarnings->SequenceA_Sym0'$fSuppressUnusedWarnings->Sequence_Sym0"$fSuppressUnusedWarnings->AsumSym0"$fSuppressUnusedWarnings->MsumSym08$fSuppressUnusedWarnings->Lambda_6989586621680453237Sym28$fSuppressUnusedWarnings->Lambda_6989586621680453237Sym18$fSuppressUnusedWarnings->Lambda_6989586621680453237Sym0$$fSuppressUnusedWarnings->ConcatSym08$fSuppressUnusedWarnings->Lambda_6989586621680453224Sym38$fSuppressUnusedWarnings->Lambda_6989586621680453224Sym28$fSuppressUnusedWarnings->Lambda_6989586621680453224Sym18$fSuppressUnusedWarnings->Lambda_6989586621680453224Sym0'$fSuppressUnusedWarnings->ConcatMapSym1'$fSuppressUnusedWarnings->ConcatMapSym0Q$fSuppressUnusedWarnings->Let6989586621680453695Scrutinee_6989586621680452967Sym0Q$fSuppressUnusedWarnings->Let6989586621680453682Scrutinee_6989586621680452964Sym0Q$fSuppressUnusedWarnings->Let6989586621680453669Scrutinee_6989586621680452961Sym0Q$fSuppressUnusedWarnings->Let6989586621680453656Scrutinee_6989586621680452958Sym0Q$fSuppressUnusedWarnings->Let6989586621680453489Scrutinee_6989586621680452938Sym2Q$fSuppressUnusedWarnings->Let6989586621680453489Scrutinee_6989586621680452938Sym1Q$fSuppressUnusedWarnings->Let6989586621680453489Scrutinee_6989586621680452938Sym0Q$fSuppressUnusedWarnings->Let6989586621680453434Scrutinee_6989586621680452935Sym2Q$fSuppressUnusedWarnings->Let6989586621680453434Scrutinee_6989586621680452935Sym1Q$fSuppressUnusedWarnings->Let6989586621680453434Scrutinee_6989586621680452935Sym0!$fSuppressUnusedWarnings->AndSym0Q$fSuppressUnusedWarnings->Let6989586621680453212Scrutinee_6989586621680452970Sym0 $fSuppressUnusedWarnings->OrSym0Q$fSuppressUnusedWarnings->Let6989586621680453203Scrutinee_6989586621680452972Sym0Q$fSuppressUnusedWarnings->Let6989586621680453193Scrutinee_6989586621680452974Sym1Q$fSuppressUnusedWarnings->Let6989586621680453193Scrutinee_6989586621680452974Sym0!$fSuppressUnusedWarnings->AllSym1!$fSuppressUnusedWarnings->AllSym0Q$fSuppressUnusedWarnings->Let6989586621680453180Scrutinee_6989586621680452976Sym1Q$fSuppressUnusedWarnings->Let6989586621680453180Scrutinee_6989586621680452976Sym0"$fSuppressUnusedWarnings->FindSym1"$fSuppressUnusedWarnings->FindSym0Q$fSuppressUnusedWarnings->Let6989586621680453095Scrutinee_6989586621680452982Sym1Q$fSuppressUnusedWarnings->Let6989586621680453095Scrutinee_6989586621680452982Sym0"$fSuppressUnusedWarnings->FoldSym09$fSuppressUnusedWarnings->FoldMap_6989586621680453720Sym19$fSuppressUnusedWarnings->FoldMap_6989586621680453720Sym07$fSuppressUnusedWarnings->Foldr_6989586621680453737Sym27$fSuppressUnusedWarnings->Foldr_6989586621680453737Sym17$fSuppressUnusedWarnings->Foldr_6989586621680453737Sym07$fSuppressUnusedWarnings->Foldl_6989586621680453755Sym27$fSuppressUnusedWarnings->Foldl_6989586621680453755Sym1$fPFoldableMaybe7$fSuppressUnusedWarnings->Foldl_6989586621680453755Sym06$fSuppressUnusedWarnings->Elem_6989586621680453772Sym16$fSuppressUnusedWarnings->Elem_6989586621680453772Sym07$fSuppressUnusedWarnings->Foldl_6989586621680453794Sym27$fSuppressUnusedWarnings->Foldl_6989586621680453794Sym17$fSuppressUnusedWarnings->Foldl_6989586621680453794Sym08$fSuppressUnusedWarnings->Foldl'_6989586621680453817Sym28$fSuppressUnusedWarnings->Foldl'_6989586621680453817Sym18$fSuppressUnusedWarnings->Foldl'_6989586621680453817Sym08$fSuppressUnusedWarnings->Foldl1_6989586621680453834Sym18$fSuppressUnusedWarnings->Foldl1_6989586621680453834Sym07$fSuppressUnusedWarnings->Foldr_6989586621680453856Sym27$fSuppressUnusedWarnings->Foldr_6989586621680453856Sym17$fSuppressUnusedWarnings->Foldr_6989586621680453856Sym08$fSuppressUnusedWarnings->Foldr1_6989586621680453873Sym18$fSuppressUnusedWarnings->Foldr1_6989586621680453873Sym08$fSuppressUnusedWarnings->Length_6989586621680453883Sym09$fSuppressUnusedWarnings->Maximum_6989586621680453892Sym09$fSuppressUnusedWarnings->Minimum_6989586621680453901Sym06$fSuppressUnusedWarnings->Null_6989586621680453910Sym09$fSuppressUnusedWarnings->Product_6989586621680453919Sym05$fSuppressUnusedWarnings->Sum_6989586621680453928Sym0 $fPFoldable[]8$fSuppressUnusedWarnings->ToList_6989586621680453937Sym07$fSuppressUnusedWarnings->Foldr_6989586621680453953Sym27$fSuppressUnusedWarnings->Foldr_6989586621680453953Sym17$fSuppressUnusedWarnings->Foldr_6989586621680453953Sym07$fSuppressUnusedWarnings->Foldl_6989586621680453971Sym27$fSuppressUnusedWarnings->Foldl_6989586621680453971Sym17$fSuppressUnusedWarnings->Foldl_6989586621680453971Sym08$fSuppressUnusedWarnings->Foldl1_6989586621680453985Sym18$fSuppressUnusedWarnings->Foldl1_6989586621680453985Sym06$fSuppressUnusedWarnings->Let6989586621680453996GoSym56$fSuppressUnusedWarnings->Let6989586621680453996GoSym46$fSuppressUnusedWarnings->Let6989586621680453996GoSym36$fSuppressUnusedWarnings->Let6989586621680453996GoSym26$fSuppressUnusedWarnings->Let6989586621680453996GoSym16$fSuppressUnusedWarnings->Let6989586621680453996GoSym08$fSuppressUnusedWarnings->Foldr1_6989586621680454011Sym18$fSuppressUnusedWarnings->Foldr1_6989586621680454011Sym09$fSuppressUnusedWarnings->FoldMap_6989586621680454024Sym19$fSuppressUnusedWarnings->FoldMap_6989586621680454024Sym06$fSuppressUnusedWarnings->Fold_6989586621680454033Sym0$fPFoldableNonEmpty8$fSuppressUnusedWarnings->ToList_6989586621680454041Sym09$fSuppressUnusedWarnings->FoldMap_6989586621680454052Sym19$fSuppressUnusedWarnings->FoldMap_6989586621680454052Sym07$fSuppressUnusedWarnings->Foldr_6989586621680454069Sym27$fSuppressUnusedWarnings->Foldr_6989586621680454069Sym17$fSuppressUnusedWarnings->Foldr_6989586621680454069Sym08$fSuppressUnusedWarnings->Length_6989586621680454077Sym0$fPFoldableEither6$fSuppressUnusedWarnings->Null_6989586621680454086Sym09$fSuppressUnusedWarnings->FoldMap_6989586621680454097Sym19$fSuppressUnusedWarnings->FoldMap_6989586621680454097Sym06$fSuppressUnusedWarnings->Elem_6989586621680454109Sym16$fSuppressUnusedWarnings->Elem_6989586621680454109Sym07$fSuppressUnusedWarnings->Foldl_6989586621680454125Sym27$fSuppressUnusedWarnings->Foldl_6989586621680454125Sym17$fSuppressUnusedWarnings->Foldl_6989586621680454125Sym08$fSuppressUnusedWarnings->Foldl'_6989586621680454142Sym28$fSuppressUnusedWarnings->Foldl'_6989586621680454142Sym18$fSuppressUnusedWarnings->Foldl'_6989586621680454142Sym08$fSuppressUnusedWarnings->Foldl1_6989586621680454154Sym18$fSuppressUnusedWarnings->Foldl1_6989586621680454154Sym07$fSuppressUnusedWarnings->Foldr_6989586621680454170Sym27$fSuppressUnusedWarnings->Foldr_6989586621680454170Sym17$fSuppressUnusedWarnings->Foldr_6989586621680454170Sym08$fSuppressUnusedWarnings->Foldr'_6989586621680454193Sym28$fSuppressUnusedWarnings->Foldr'_6989586621680454193Sym18$fSuppressUnusedWarnings->Foldr'_6989586621680454193Sym08$fSuppressUnusedWarnings->Foldr1_6989586621680454205Sym18$fSuppressUnusedWarnings->Foldr1_6989586621680454205Sym08$fSuppressUnusedWarnings->Length_6989586621680454212Sym09$fSuppressUnusedWarnings->Maximum_6989586621680454219Sym09$fSuppressUnusedWarnings->Minimum_6989586621680454226Sym06$fSuppressUnusedWarnings->Null_6989586621680454232Sym09$fSuppressUnusedWarnings->Product_6989586621680454239Sym05$fSuppressUnusedWarnings->Sum_6989586621680454246Sym0$fPFoldableDual8$fSuppressUnusedWarnings->ToList_6989586621680454253Sym09$fSuppressUnusedWarnings->FoldMap_6989586621680454264Sym19$fSuppressUnusedWarnings->FoldMap_6989586621680454264Sym06$fSuppressUnusedWarnings->Elem_6989586621680454276Sym16$fSuppressUnusedWarnings->Elem_6989586621680454276Sym07$fSuppressUnusedWarnings->Foldl_6989586621680454292Sym27$fSuppressUnusedWarnings->Foldl_6989586621680454292Sym17$fSuppressUnusedWarnings->Foldl_6989586621680454292Sym08$fSuppressUnusedWarnings->Foldl'_6989586621680454309Sym28$fSuppressUnusedWarnings->Foldl'_6989586621680454309Sym18$fSuppressUnusedWarnings->Foldl'_6989586621680454309Sym08$fSuppressUnusedWarnings->Foldl1_6989586621680454321Sym18$fSuppressUnusedWarnings->Foldl1_6989586621680454321Sym07$fSuppressUnusedWarnings->Foldr_6989586621680454337Sym27$fSuppressUnusedWarnings->Foldr_6989586621680454337Sym17$fSuppressUnusedWarnings->Foldr_6989586621680454337Sym08$fSuppressUnusedWarnings->Foldr'_6989586621680454360Sym28$fSuppressUnusedWarnings->Foldr'_6989586621680454360Sym18$fSuppressUnusedWarnings->Foldr'_6989586621680454360Sym08$fSuppressUnusedWarnings->Foldr1_6989586621680454372Sym18$fSuppressUnusedWarnings->Foldr1_6989586621680454372Sym08$fSuppressUnusedWarnings->Length_6989586621680454379Sym09$fSuppressUnusedWarnings->Maximum_6989586621680454386Sym09$fSuppressUnusedWarnings->Minimum_6989586621680454393Sym06$fSuppressUnusedWarnings->Null_6989586621680454399Sym09$fSuppressUnusedWarnings->Product_6989586621680454406Sym05$fSuppressUnusedWarnings->Sum_6989586621680454413Sym0$fPFoldableSum8$fSuppressUnusedWarnings->ToList_6989586621680454420Sym09$fSuppressUnusedWarnings->FoldMap_6989586621680454431Sym19$fSuppressUnusedWarnings->FoldMap_6989586621680454431Sym06$fSuppressUnusedWarnings->Elem_6989586621680454443Sym16$fSuppressUnusedWarnings->Elem_6989586621680454443Sym07$fSuppressUnusedWarnings->Foldl_6989586621680454459Sym27$fSuppressUnusedWarnings->Foldl_6989586621680454459Sym17$fSuppressUnusedWarnings->Foldl_6989586621680454459Sym08$fSuppressUnusedWarnings->Foldl'_6989586621680454476Sym28$fSuppressUnusedWarnings->Foldl'_6989586621680454476Sym18$fSuppressUnusedWarnings->Foldl'_6989586621680454476Sym08$fSuppressUnusedWarnings->Foldl1_6989586621680454488Sym18$fSuppressUnusedWarnings->Foldl1_6989586621680454488Sym07$fSuppressUnusedWarnings->Foldr_6989586621680454504Sym27$fSuppressUnusedWarnings->Foldr_6989586621680454504Sym17$fSuppressUnusedWarnings->Foldr_6989586621680454504Sym08$fSuppressUnusedWarnings->Foldr'_6989586621680454527Sym28$fSuppressUnusedWarnings->Foldr'_6989586621680454527Sym18$fSuppressUnusedWarnings->Foldr'_6989586621680454527Sym08$fSuppressUnusedWarnings->Foldr1_6989586621680454539Sym18$fSuppressUnusedWarnings->Foldr1_6989586621680454539Sym08$fSuppressUnusedWarnings->Length_6989586621680454546Sym09$fSuppressUnusedWarnings->Maximum_6989586621680454553Sym09$fSuppressUnusedWarnings->Minimum_6989586621680454560Sym06$fSuppressUnusedWarnings->Null_6989586621680454566Sym09$fSuppressUnusedWarnings->Product_6989586621680454573Sym05$fSuppressUnusedWarnings->Sum_6989586621680454580Sym0$fPFoldableProduct8$fSuppressUnusedWarnings->ToList_6989586621680454587Sym0$fSingI->ProductSym0$fSingI->SumSym0$fSingI->MinimumSym0$fSingI->MaximumSym0$fSingI->ElemSym1$fSingI->ElemSym0$fSingI->LengthSym0$fSingI->NullSym0$fSingI->ToListSym0$fSingI->Foldl1Sym1$fSingI->Foldl1Sym0$fSingI->Foldr1Sym1$fSingI->Foldr1Sym0$fSingI->Foldl'Sym2$fSingI->Foldl'Sym1$fSingI->Foldl'Sym0$fSingI->FoldlSym2$fSingI->FoldlSym1$fSingI->FoldlSym0$fSingI->Foldr'Sym2$fSingI->Foldr'Sym1$fSingI->Foldr'Sym0$fSingI->FoldMapSym1$fSingI->FoldMapSym0$fSingI->FoldSym0$fSFoldableProduct$fSFoldableSum$fSFoldableDual$fSFoldableEither$fSFoldableNonEmpty $fSFoldable[]$fSFoldableMaybe$fSingI->FoldrMSym2$fSingI->FoldrMSym1$fSingI->FoldrMSym0$fSingI->FoldlMSym2$fSingI->FoldlMSym1$fSingI->FoldlMSym0$fSingI->For_Sym1$fSingI->For_Sym0$fSingI->Traverse_Sym1$fSingI->Traverse_Sym0$fSingI->ForM_Sym1$fSingI->ForM_Sym0$fSingI->MapM_Sym1$fSingI->MapM_Sym0$fSingI->SequenceA_Sym0$fSingI->Sequence_Sym0$fSingI->MsumSym0$fSingI->AsumSym0$fSingI->ConcatSym0$fSingI->ConcatMapSym1$fSingI->ConcatMapSym0$fSingI->AndSym0$fSingI->OrSym0$fSingI->AnySym1$fSingI->AnySym0$fSingI->AllSym1$fSingI->AllSym0$fSingI->MaximumBySym1$fSingI->MaximumBySym0$fSingI->MinimumBySym1$fSingI->MinimumBySym0$fSingI->NotElemSym1$fSingI->NotElemSym0$fSingI->FindSym1$fSingI->FindSym08$fSuppressUnusedWarnings->Lambda_6989586621680535039Sym38$fSuppressUnusedWarnings->Lambda_6989586621680535039Sym28$fSuppressUnusedWarnings->Lambda_6989586621680535039Sym18$fSuppressUnusedWarnings->Lambda_6989586621680535039Sym09$fSuppressUnusedWarnings->FoldMap_6989586621680535049Sym19$fSuppressUnusedWarnings->FoldMap_6989586621680535049Sym08$fSuppressUnusedWarnings->Lambda_6989586621680535063Sym58$fSuppressUnusedWarnings->Lambda_6989586621680535063Sym48$fSuppressUnusedWarnings->Lambda_6989586621680535063Sym38$fSuppressUnusedWarnings->Lambda_6989586621680535063Sym28$fSuppressUnusedWarnings->Lambda_6989586621680535063Sym1$fSFoldable(,)8$fSuppressUnusedWarnings->Lambda_6989586621680535063Sym07$fSuppressUnusedWarnings->Foldr_6989586621680535078Sym27$fSuppressUnusedWarnings->Foldr_6989586621680535078Sym1$fPFoldable(,)7$fSuppressUnusedWarnings->Foldr_6989586621680535078Sym09$fSuppressUnusedWarnings->FoldMap_6989586621680535091Sym19$fSuppressUnusedWarnings->FoldMap_6989586621680535091Sym08$fSuppressUnusedWarnings->Lambda_6989586621680535104Sym48$fSuppressUnusedWarnings->Lambda_6989586621680535104Sym38$fSuppressUnusedWarnings->Lambda_6989586621680535104Sym28$fSuppressUnusedWarnings->Lambda_6989586621680535104Sym1$fSFoldableFirst8$fSuppressUnusedWarnings->Lambda_6989586621680535104Sym07$fSuppressUnusedWarnings->Foldr_6989586621680535118Sym27$fSuppressUnusedWarnings->Foldr_6989586621680535118Sym1$fPFoldableFirst7$fSuppressUnusedWarnings->Foldr_6989586621680535118Sym09$fSuppressUnusedWarnings->FoldMap_6989586621680535131Sym19$fSuppressUnusedWarnings->FoldMap_6989586621680535131Sym08$fSuppressUnusedWarnings->Lambda_6989586621680535144Sym48$fSuppressUnusedWarnings->Lambda_6989586621680535144Sym38$fSuppressUnusedWarnings->Lambda_6989586621680535144Sym28$fSuppressUnusedWarnings->Lambda_6989586621680535144Sym1$fSFoldableLast8$fSuppressUnusedWarnings->Lambda_6989586621680535144Sym07$fSuppressUnusedWarnings->Foldr_6989586621680535158Sym27$fSuppressUnusedWarnings->Foldr_6989586621680535158Sym1$fPFoldableLast7$fSuppressUnusedWarnings->Foldr_6989586621680535158Sym0$fSMonadIdentity$fSApplicativeIdentity$fSFoldableIdentity$fSShowIdentity$fSSemigroupIdentity$fSNumIdentity$fSMonoidIdentity$fSEnumIdentity6$fSuppressUnusedWarnings->Succ_6989586621680678782Sym06$fSuppressUnusedWarnings->Pred_6989586621680678789Sym08$fSuppressUnusedWarnings->ToEnum_6989586621680678796Sym0:$fSuppressUnusedWarnings->FromEnum_6989586621680678803Sym0<$fSuppressUnusedWarnings->EnumFromTo_6989586621680678814Sym1<$fSuppressUnusedWarnings->EnumFromTo_6989586621680678814Sym0@$fSuppressUnusedWarnings->EnumFromThenTo_6989586621680678830Sym2@$fSuppressUnusedWarnings->EnumFromThenTo_6989586621680678830Sym1$fPEnumIdentity@$fSuppressUnusedWarnings->EnumFromThenTo_6989586621680678830Sym0$fPMonoidIdentity:$fSuppressUnusedWarnings->TFHelper_6989586621680678845Sym1:$fSuppressUnusedWarnings->TFHelper_6989586621680678845Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680678857Sym1:$fSuppressUnusedWarnings->TFHelper_6989586621680678857Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680678869Sym1:$fSuppressUnusedWarnings->TFHelper_6989586621680678869Sym08$fSuppressUnusedWarnings->Negate_6989586621680678877Sym05$fSuppressUnusedWarnings->Abs_6989586621680678884Sym08$fSuppressUnusedWarnings->Signum_6989586621680678891Sym0$fPNumIdentity=$fSuppressUnusedWarnings->FromInteger_6989586621680678898Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680678909Sym1$fPSemigroupIdentity:$fSuppressUnusedWarnings->TFHelper_6989586621680678909Sym0;$fSuppressUnusedWarnings->ShowsPrec_6989586621680678927Sym2;$fSuppressUnusedWarnings->ShowsPrec_6989586621680678927Sym1$fPShowIdentity;$fSuppressUnusedWarnings->ShowsPrec_6989586621680678927Sym06$fSuppressUnusedWarnings->Fmap_6989586621680678940Sym16$fSuppressUnusedWarnings->Fmap_6989586621680678940Sym08$fSuppressUnusedWarnings->Lambda_6989586621680678950Sym28$fSuppressUnusedWarnings->Lambda_6989586621680678950Sym1$fSFunctorIdentity8$fSuppressUnusedWarnings->Lambda_6989586621680678950Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680678959Sym1$fPFunctorIdentity:$fSuppressUnusedWarnings->TFHelper_6989586621680678959Sym09$fSuppressUnusedWarnings->FoldMap_6989586621680678971Sym19$fSuppressUnusedWarnings->FoldMap_6989586621680678971Sym06$fSuppressUnusedWarnings->Elem_6989586621680678983Sym16$fSuppressUnusedWarnings->Elem_6989586621680678983Sym07$fSuppressUnusedWarnings->Foldl_6989586621680678999Sym27$fSuppressUnusedWarnings->Foldl_6989586621680678999Sym17$fSuppressUnusedWarnings->Foldl_6989586621680678999Sym08$fSuppressUnusedWarnings->Foldl'_6989586621680679016Sym28$fSuppressUnusedWarnings->Foldl'_6989586621680679016Sym18$fSuppressUnusedWarnings->Foldl'_6989586621680679016Sym08$fSuppressUnusedWarnings->Foldl1_6989586621680679028Sym18$fSuppressUnusedWarnings->Foldl1_6989586621680679028Sym07$fSuppressUnusedWarnings->Foldr_6989586621680679044Sym27$fSuppressUnusedWarnings->Foldr_6989586621680679044Sym17$fSuppressUnusedWarnings->Foldr_6989586621680679044Sym08$fSuppressUnusedWarnings->Foldr'_6989586621680679067Sym28$fSuppressUnusedWarnings->Foldr'_6989586621680679067Sym18$fSuppressUnusedWarnings->Foldr'_6989586621680679067Sym08$fSuppressUnusedWarnings->Foldr1_6989586621680679079Sym18$fSuppressUnusedWarnings->Foldr1_6989586621680679079Sym08$fSuppressUnusedWarnings->Length_6989586621680679086Sym09$fSuppressUnusedWarnings->Maximum_6989586621680679093Sym09$fSuppressUnusedWarnings->Minimum_6989586621680679100Sym06$fSuppressUnusedWarnings->Null_6989586621680679106Sym09$fSuppressUnusedWarnings->Product_6989586621680679113Sym05$fSuppressUnusedWarnings->Sum_6989586621680679120Sym0$fPFoldableIdentity8$fSuppressUnusedWarnings->ToList_6989586621680679127Sym06$fSuppressUnusedWarnings->Pure_6989586621680679136Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680679147Sym1:$fSuppressUnusedWarnings->TFHelper_6989586621680679147Sym08$fSuppressUnusedWarnings->LiftA2_6989586621680679163Sym28$fSuppressUnusedWarnings->LiftA2_6989586621680679163Sym1$fPApplicativeIdentity8$fSuppressUnusedWarnings->LiftA2_6989586621680679163Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680679176Sym1$fPMonadIdentity:$fSuppressUnusedWarnings->TFHelper_6989586621680679176Sym0SConst sGetConst$fSingIConstConst$fSingKindConst GetConstSym0 GetConstSym1&$fSuppressUnusedWarnings->GetConstSym0$fSDecideConst $fSEqConst$fSApplicativeConst $fSShowConst$fSSemigroupConst $fSNumConst$fSMonoidConst $fSEnumConst $fSOrdConst$fSBoundedConst$fPBoundedConst9$fSuppressUnusedWarnings->Compare_6989586621680714223Sym1 $fPOrdConst9$fSuppressUnusedWarnings->Compare_6989586621680714223Sym06$fSuppressUnusedWarnings->Succ_6989586621680714231Sym06$fSuppressUnusedWarnings->Pred_6989586621680714238Sym08$fSuppressUnusedWarnings->ToEnum_6989586621680714245Sym0:$fSuppressUnusedWarnings->FromEnum_6989586621680714252Sym0<$fSuppressUnusedWarnings->EnumFromTo_6989586621680714263Sym1<$fSuppressUnusedWarnings->EnumFromTo_6989586621680714263Sym0@$fSuppressUnusedWarnings->EnumFromThenTo_6989586621680714279Sym2@$fSuppressUnusedWarnings->EnumFromThenTo_6989586621680714279Sym1 $fPEnumConst@$fSuppressUnusedWarnings->EnumFromThenTo_6989586621680714279Sym0$fPMonoidConst:$fSuppressUnusedWarnings->TFHelper_6989586621680714294Sym1:$fSuppressUnusedWarnings->TFHelper_6989586621680714294Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680714306Sym1:$fSuppressUnusedWarnings->TFHelper_6989586621680714306Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680714318Sym1:$fSuppressUnusedWarnings->TFHelper_6989586621680714318Sym08$fSuppressUnusedWarnings->Negate_6989586621680714326Sym05$fSuppressUnusedWarnings->Abs_6989586621680714333Sym08$fSuppressUnusedWarnings->Signum_6989586621680714340Sym0 $fPNumConst=$fSuppressUnusedWarnings->FromInteger_6989586621680714347Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680714358Sym1$fPSemigroupConst:$fSuppressUnusedWarnings->TFHelper_6989586621680714358Sym0;$fSuppressUnusedWarnings->ShowsPrec_6989586621680714376Sym2;$fSuppressUnusedWarnings->ShowsPrec_6989586621680714376Sym1 $fPShowConst;$fSuppressUnusedWarnings->ShowsPrec_6989586621680714376Sym08$fSuppressUnusedWarnings->Lambda_6989586621680714387Sym28$fSuppressUnusedWarnings->Lambda_6989586621680714387Sym18$fSuppressUnusedWarnings->Lambda_6989586621680714387Sym06$fSuppressUnusedWarnings->Fmap_6989586621680714396Sym16$fSuppressUnusedWarnings->Fmap_6989586621680714396Sym08$fSuppressUnusedWarnings->Lambda_6989586621680714406Sym28$fSuppressUnusedWarnings->Lambda_6989586621680714406Sym1$fSFunctorConst8$fSuppressUnusedWarnings->Lambda_6989586621680714406Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680714415Sym1$fPFunctorConst:$fSuppressUnusedWarnings->TFHelper_6989586621680714415Sym08$fSuppressUnusedWarnings->Lambda_6989586621680714425Sym28$fSuppressUnusedWarnings->Lambda_6989586621680714425Sym18$fSuppressUnusedWarnings->Lambda_6989586621680714425Sym09$fSuppressUnusedWarnings->FoldMap_6989586621680714434Sym19$fSuppressUnusedWarnings->FoldMap_6989586621680714434Sym08$fSuppressUnusedWarnings->Lambda_6989586621680714447Sym48$fSuppressUnusedWarnings->Lambda_6989586621680714447Sym38$fSuppressUnusedWarnings->Lambda_6989586621680714447Sym28$fSuppressUnusedWarnings->Lambda_6989586621680714447Sym1$fSFoldableConst8$fSuppressUnusedWarnings->Lambda_6989586621680714447Sym07$fSuppressUnusedWarnings->Foldr_6989586621680714461Sym27$fSuppressUnusedWarnings->Foldr_6989586621680714461Sym1$fPFoldableConst7$fSuppressUnusedWarnings->Foldr_6989586621680714461Sym06$fSuppressUnusedWarnings->Pure_6989586621680714469Sym08$fSuppressUnusedWarnings->LiftA2_6989586621680714483Sym28$fSuppressUnusedWarnings->LiftA2_6989586621680714483Sym18$fSuppressUnusedWarnings->LiftA2_6989586621680714483Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680714496Sym1$fPApplicativeConst:$fSuppressUnusedWarnings->TFHelper_6989586621680714496Sym0 $fPEqConst STraversable sTraverse sSequenceAsMapM sSequence PTraversableTraverse SequenceAMapMSequence SequenceSym0 SequenceSym1MapMSym0MapMSym1MapMSym2 SequenceASym0 SequenceASym1 TraverseSym0 TraverseSym1 TraverseSym2:$fSuppressUnusedWarnings->Sequence_6989586621680751063Sym06$fSuppressUnusedWarnings->MapM_6989586621680751053Sym06$fSuppressUnusedWarnings->MapM_6989586621680751053Sym1;$fSuppressUnusedWarnings->SequenceA_6989586621680751038Sym0:$fSuppressUnusedWarnings->Traverse_6989586621680751028Sym0:$fSuppressUnusedWarnings->Traverse_6989586621680751028Sym1'$fSuppressUnusedWarnings->SequenceASym0&$fSuppressUnusedWarnings->TraverseSym0&$fSuppressUnusedWarnings->TraverseSym1&$fSuppressUnusedWarnings->SequenceSym0"$fSuppressUnusedWarnings->MapMSym1"$fSuppressUnusedWarnings->MapMSym0$fSingI->SequenceSym0$fSingI->MapMSym1$fSingI->MapMSym0$fSingI->SequenceASym0$fSingI->TraverseSym1$fSingI->TraverseSym0ForForM MapAccumL MapAccumR FmapDefaultFoldMapDefaultForSym0ForSym1ForSym2ForMSym0ForMSym1ForMSym2 MapAccumLSym0 MapAccumLSym1 MapAccumLSym2 MapAccumLSym3 MapAccumRSym0 MapAccumRSym1 MapAccumRSym2 MapAccumRSym3FmapDefaultSym0FmapDefaultSym1FmapDefaultSym2FoldMapDefaultSym0FoldMapDefaultSym1FoldMapDefaultSym2sFoldMapDefault sFmapDefault sMapAccumR sMapAccumLsForMsFor$fSTraversableIdentity$fSTraversableLast$fSTraversableFirst$fSTraversableProduct$fSTraversableSum$fSTraversableDual$fSTraversableConst$fSTraversable(,)$fSTraversableEither$fSTraversableNonEmpty$fSTraversable[]$fSTraversableMaybe;$fSuppressUnusedWarnings->Let6989586621680757066MkConstSym2;$fSuppressUnusedWarnings->Let6989586621680757066MkConstSym1;$fSuppressUnusedWarnings->Let6989586621680757066MkConstSym0Q$fSuppressUnusedWarnings->Let6989586621680757074Scrutinee_6989586621680756666Sym1Q$fSuppressUnusedWarnings->Let6989586621680757074Scrutinee_6989586621680756666Sym0Q$fSuppressUnusedWarnings->Let6989586621680757087Scrutinee_6989586621680756663Sym1Q$fSuppressUnusedWarnings->Let6989586621680757087Scrutinee_6989586621680756663Sym0Q$fSuppressUnusedWarnings->Let6989586621680757103Scrutinee_6989586621680756659Sym2Q$fSuppressUnusedWarnings->Let6989586621680757103Scrutinee_6989586621680756659Sym1Q$fSuppressUnusedWarnings->Let6989586621680757103Scrutinee_6989586621680756659Sym0Q$fSuppressUnusedWarnings->Let6989586621680757120Scrutinee_6989586621680756655Sym2Q$fSuppressUnusedWarnings->Let6989586621680757120Scrutinee_6989586621680756655Sym1Q$fSuppressUnusedWarnings->Let6989586621680757120Scrutinee_6989586621680756655Sym0$fSingI->FoldMapDefaultSym1,$fSuppressUnusedWarnings->FoldMapDefaultSym1$fSingI->FoldMapDefaultSym0,$fSuppressUnusedWarnings->FoldMapDefaultSym0$fSingI->FmapDefaultSym1)$fSuppressUnusedWarnings->FmapDefaultSym1$fSingI->FmapDefaultSym0)$fSuppressUnusedWarnings->FmapDefaultSym0$fSingI->MapAccumRSym2'$fSuppressUnusedWarnings->MapAccumRSym2$fSingI->MapAccumRSym1'$fSuppressUnusedWarnings->MapAccumRSym1$fSingI->MapAccumRSym0'$fSuppressUnusedWarnings->MapAccumRSym0$fSingI->MapAccumLSym2'$fSuppressUnusedWarnings->MapAccumLSym2$fSingI->MapAccumLSym1'$fSuppressUnusedWarnings->MapAccumLSym1$fSingI->MapAccumLSym0'$fSuppressUnusedWarnings->MapAccumLSym0$fSingI->ForMSym1"$fSuppressUnusedWarnings->ForMSym1$fSingI->ForMSym0"$fSuppressUnusedWarnings->ForMSym0$fSingI->ForSym1!$fSuppressUnusedWarnings->ForSym1$fSingI->ForSym0!$fSuppressUnusedWarnings->ForSym0:$fSuppressUnusedWarnings->Traverse_6989586621680757157Sym1$fPTraversableMaybe:$fSuppressUnusedWarnings->Traverse_6989586621680757157Sym0:$fSuppressUnusedWarnings->Traverse_6989586621680757171Sym1$fPTraversable[]:$fSuppressUnusedWarnings->Traverse_6989586621680757171Sym0:$fSuppressUnusedWarnings->Traverse_6989586621680757184Sym1$fPTraversableNonEmpty:$fSuppressUnusedWarnings->Traverse_6989586621680757184Sym0:$fSuppressUnusedWarnings->Traverse_6989586621680757198Sym1$fPTraversableEither:$fSuppressUnusedWarnings->Traverse_6989586621680757198Sym0:$fSuppressUnusedWarnings->Traverse_6989586621680757211Sym1$fPTraversable(,):$fSuppressUnusedWarnings->Traverse_6989586621680757211Sym0:$fSuppressUnusedWarnings->Traverse_6989586621680757223Sym1$fPTraversableConst:$fSuppressUnusedWarnings->Traverse_6989586621680757223Sym0:$fSuppressUnusedWarnings->Traverse_6989586621680757235Sym1$fPTraversableDual:$fSuppressUnusedWarnings->Traverse_6989586621680757235Sym0:$fSuppressUnusedWarnings->Traverse_6989586621680757247Sym1$fPTraversableSum:$fSuppressUnusedWarnings->Traverse_6989586621680757247Sym0:$fSuppressUnusedWarnings->Traverse_6989586621680757259Sym1$fPTraversableProduct:$fSuppressUnusedWarnings->Traverse_6989586621680757259Sym0:$fSuppressUnusedWarnings->Traverse_6989586621680757271Sym1$fPTraversableFirst:$fSuppressUnusedWarnings->Traverse_6989586621680757271Sym0:$fSuppressUnusedWarnings->Traverse_6989586621680757283Sym1$fPTraversableLast:$fSuppressUnusedWarnings->Traverse_6989586621680757283Sym0:$fSuppressUnusedWarnings->Traverse_6989586621680757295Sym1$fPTraversableIdentity:$fSuppressUnusedWarnings->Traverse_6989586621680757295Sym05$fSuppressUnusedWarnings->Let6989586621680757308VSym25$fSuppressUnusedWarnings->Let6989586621680757308VSym15$fSuppressUnusedWarnings->Let6989586621680757308VSym06$fSuppressUnusedWarnings->Let6989586621680757308S'Sym26$fSuppressUnusedWarnings->Let6989586621680757308S'Sym16$fSuppressUnusedWarnings->Let6989586621680757308S'Sym0I$fSuppressUnusedWarnings->Let6989586621680757308X_6989586621680757309Sym2I$fSuppressUnusedWarnings->Let6989586621680757308X_6989586621680757309Sym1I$fSuppressUnusedWarnings->Let6989586621680757308X_6989586621680757309Sym08$fSuppressUnusedWarnings->Lambda_6989586621680757305Sym28$fSuppressUnusedWarnings->Lambda_6989586621680757305Sym1$fSFunctorStateL8$fSuppressUnusedWarnings->Lambda_6989586621680757305Sym06$fSuppressUnusedWarnings->Fmap_6989586621680757338Sym1$fPFunctorStateL6$fSuppressUnusedWarnings->Fmap_6989586621680757338Sym08$fSuppressUnusedWarnings->Lambda_6989586621680757345Sym18$fSuppressUnusedWarnings->Lambda_6989586621680757345Sym06$fSuppressUnusedWarnings->Pure_6989586621680757352Sym05$fSuppressUnusedWarnings->Let6989586621680757364FSym25$fSuppressUnusedWarnings->Let6989586621680757364FSym15$fSuppressUnusedWarnings->Let6989586621680757364FSym06$fSuppressUnusedWarnings->Let6989586621680757364S'Sym26$fSuppressUnusedWarnings->Let6989586621680757364S'Sym16$fSuppressUnusedWarnings->Let6989586621680757364S'Sym0I$fSuppressUnusedWarnings->Let6989586621680757364X_6989586621680757365Sym2I$fSuppressUnusedWarnings->Let6989586621680757364X_6989586621680757365Sym1I$fSuppressUnusedWarnings->Let6989586621680757364X_6989586621680757365Sym05$fSuppressUnusedWarnings->Let6989586621680757364VSym25$fSuppressUnusedWarnings->Let6989586621680757364VSym15$fSuppressUnusedWarnings->Let6989586621680757364VSym07$fSuppressUnusedWarnings->Let6989586621680757364S''Sym27$fSuppressUnusedWarnings->Let6989586621680757364S''Sym17$fSuppressUnusedWarnings->Let6989586621680757364S''Sym0I$fSuppressUnusedWarnings->Let6989586621680757364X_6989586621680757371Sym2I$fSuppressUnusedWarnings->Let6989586621680757364X_6989586621680757371Sym1I$fSuppressUnusedWarnings->Let6989586621680757364X_6989586621680757371Sym08$fSuppressUnusedWarnings->Lambda_6989586621680757361Sym28$fSuppressUnusedWarnings->Lambda_6989586621680757361Sym18$fSuppressUnusedWarnings->Lambda_6989586621680757361Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680757417Sym1:$fSuppressUnusedWarnings->TFHelper_6989586621680757417Sym05$fSuppressUnusedWarnings->Let6989586621680757433XSym35$fSuppressUnusedWarnings->Let6989586621680757433XSym25$fSuppressUnusedWarnings->Let6989586621680757433XSym15$fSuppressUnusedWarnings->Let6989586621680757433XSym06$fSuppressUnusedWarnings->Let6989586621680757433S'Sym36$fSuppressUnusedWarnings->Let6989586621680757433S'Sym26$fSuppressUnusedWarnings->Let6989586621680757433S'Sym16$fSuppressUnusedWarnings->Let6989586621680757433S'Sym0I$fSuppressUnusedWarnings->Let6989586621680757433X_6989586621680757434Sym3I$fSuppressUnusedWarnings->Let6989586621680757433X_6989586621680757434Sym2I$fSuppressUnusedWarnings->Let6989586621680757433X_6989586621680757434Sym1I$fSuppressUnusedWarnings->Let6989586621680757433X_6989586621680757434Sym05$fSuppressUnusedWarnings->Let6989586621680757433YSym35$fSuppressUnusedWarnings->Let6989586621680757433YSym25$fSuppressUnusedWarnings->Let6989586621680757433YSym15$fSuppressUnusedWarnings->Let6989586621680757433YSym07$fSuppressUnusedWarnings->Let6989586621680757433S''Sym37$fSuppressUnusedWarnings->Let6989586621680757433S''Sym27$fSuppressUnusedWarnings->Let6989586621680757433S''Sym17$fSuppressUnusedWarnings->Let6989586621680757433S''Sym0I$fSuppressUnusedWarnings->Let6989586621680757433X_6989586621680757440Sym3I$fSuppressUnusedWarnings->Let6989586621680757433X_6989586621680757440Sym2I$fSuppressUnusedWarnings->Let6989586621680757433X_6989586621680757440Sym1I$fSuppressUnusedWarnings->Let6989586621680757433X_6989586621680757440Sym08$fSuppressUnusedWarnings->Lambda_6989586621680757430Sym38$fSuppressUnusedWarnings->Lambda_6989586621680757430Sym28$fSuppressUnusedWarnings->Lambda_6989586621680757430Sym1$fSApplicativeStateL8$fSuppressUnusedWarnings->Lambda_6989586621680757430Sym08$fSuppressUnusedWarnings->LiftA2_6989586621680757494Sym28$fSuppressUnusedWarnings->LiftA2_6989586621680757494Sym1$fPApplicativeStateL8$fSuppressUnusedWarnings->LiftA2_6989586621680757494Sym05$fSuppressUnusedWarnings->Let6989586621680757508VSym25$fSuppressUnusedWarnings->Let6989586621680757508VSym15$fSuppressUnusedWarnings->Let6989586621680757508VSym06$fSuppressUnusedWarnings->Let6989586621680757508S'Sym26$fSuppressUnusedWarnings->Let6989586621680757508S'Sym16$fSuppressUnusedWarnings->Let6989586621680757508S'Sym0I$fSuppressUnusedWarnings->Let6989586621680757508X_6989586621680757509Sym2I$fSuppressUnusedWarnings->Let6989586621680757508X_6989586621680757509Sym1I$fSuppressUnusedWarnings->Let6989586621680757508X_6989586621680757509Sym08$fSuppressUnusedWarnings->Lambda_6989586621680757505Sym28$fSuppressUnusedWarnings->Lambda_6989586621680757505Sym1$fSFunctorStateR8$fSuppressUnusedWarnings->Lambda_6989586621680757505Sym06$fSuppressUnusedWarnings->Fmap_6989586621680757538Sym1$fPFunctorStateR6$fSuppressUnusedWarnings->Fmap_6989586621680757538Sym08$fSuppressUnusedWarnings->Lambda_6989586621680757545Sym18$fSuppressUnusedWarnings->Lambda_6989586621680757545Sym06$fSuppressUnusedWarnings->Pure_6989586621680757552Sym05$fSuppressUnusedWarnings->Let6989586621680757564VSym25$fSuppressUnusedWarnings->Let6989586621680757564VSym15$fSuppressUnusedWarnings->Let6989586621680757564VSym06$fSuppressUnusedWarnings->Let6989586621680757564S'Sym26$fSuppressUnusedWarnings->Let6989586621680757564S'Sym16$fSuppressUnusedWarnings->Let6989586621680757564S'Sym0I$fSuppressUnusedWarnings->Let6989586621680757564X_6989586621680757565Sym2I$fSuppressUnusedWarnings->Let6989586621680757564X_6989586621680757565Sym1I$fSuppressUnusedWarnings->Let6989586621680757564X_6989586621680757565Sym05$fSuppressUnusedWarnings->Let6989586621680757564FSym25$fSuppressUnusedWarnings->Let6989586621680757564FSym15$fSuppressUnusedWarnings->Let6989586621680757564FSym07$fSuppressUnusedWarnings->Let6989586621680757564S''Sym27$fSuppressUnusedWarnings->Let6989586621680757564S''Sym17$fSuppressUnusedWarnings->Let6989586621680757564S''Sym0I$fSuppressUnusedWarnings->Let6989586621680757564X_6989586621680757571Sym2I$fSuppressUnusedWarnings->Let6989586621680757564X_6989586621680757571Sym1I$fSuppressUnusedWarnings->Let6989586621680757564X_6989586621680757571Sym08$fSuppressUnusedWarnings->Lambda_6989586621680757561Sym28$fSuppressUnusedWarnings->Lambda_6989586621680757561Sym18$fSuppressUnusedWarnings->Lambda_6989586621680757561Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680757617Sym1:$fSuppressUnusedWarnings->TFHelper_6989586621680757617Sym05$fSuppressUnusedWarnings->Let6989586621680757633YSym35$fSuppressUnusedWarnings->Let6989586621680757633YSym25$fSuppressUnusedWarnings->Let6989586621680757633YSym15$fSuppressUnusedWarnings->Let6989586621680757633YSym06$fSuppressUnusedWarnings->Let6989586621680757633S'Sym36$fSuppressUnusedWarnings->Let6989586621680757633S'Sym26$fSuppressUnusedWarnings->Let6989586621680757633S'Sym16$fSuppressUnusedWarnings->Let6989586621680757633S'Sym0I$fSuppressUnusedWarnings->Let6989586621680757633X_6989586621680757634Sym3I$fSuppressUnusedWarnings->Let6989586621680757633X_6989586621680757634Sym2I$fSuppressUnusedWarnings->Let6989586621680757633X_6989586621680757634Sym1I$fSuppressUnusedWarnings->Let6989586621680757633X_6989586621680757634Sym05$fSuppressUnusedWarnings->Let6989586621680757633XSym35$fSuppressUnusedWarnings->Let6989586621680757633XSym25$fSuppressUnusedWarnings->Let6989586621680757633XSym15$fSuppressUnusedWarnings->Let6989586621680757633XSym07$fSuppressUnusedWarnings->Let6989586621680757633S''Sym37$fSuppressUnusedWarnings->Let6989586621680757633S''Sym27$fSuppressUnusedWarnings->Let6989586621680757633S''Sym17$fSuppressUnusedWarnings->Let6989586621680757633S''Sym0I$fSuppressUnusedWarnings->Let6989586621680757633X_6989586621680757640Sym3I$fSuppressUnusedWarnings->Let6989586621680757633X_6989586621680757640Sym2I$fSuppressUnusedWarnings->Let6989586621680757633X_6989586621680757640Sym1I$fSuppressUnusedWarnings->Let6989586621680757633X_6989586621680757640Sym08$fSuppressUnusedWarnings->Lambda_6989586621680757630Sym38$fSuppressUnusedWarnings->Lambda_6989586621680757630Sym28$fSuppressUnusedWarnings->Lambda_6989586621680757630Sym1$fSApplicativeStateR8$fSuppressUnusedWarnings->Lambda_6989586621680757630Sym08$fSuppressUnusedWarnings->LiftA2_6989586621680757694Sym28$fSuppressUnusedWarnings->LiftA2_6989586621680757694Sym1$fPApplicativeStateR8$fSuppressUnusedWarnings->LiftA2_6989586621680757694Sym0SArgArgSym0ArgSym1ArgSym2 $fSingIArgArg $fSingKindArg$fSingI->ArgSym1!$fSuppressUnusedWarnings->ArgSym1$fSingI->ArgSym0!$fSuppressUnusedWarnings->ArgSym0$fSShowWrappedMonoid $fSShowMax $fSShowMin$fSShowProduct $fSShowSum $fSShowAny $fSShowAll $fSShowDual $fSShowOption;$fSuppressUnusedWarnings->ShowsPrec_6989586621680868292Sym2;$fSuppressUnusedWarnings->ShowsPrec_6989586621680868292Sym1 $fPShowOption;$fSuppressUnusedWarnings->ShowsPrec_6989586621680868292Sym0;$fSuppressUnusedWarnings->ShowsPrec_6989586621680868321Sym2;$fSuppressUnusedWarnings->ShowsPrec_6989586621680868321Sym1 $fPShowDual;$fSuppressUnusedWarnings->ShowsPrec_6989586621680868321Sym0;$fSuppressUnusedWarnings->ShowsPrec_6989586621680868347Sym2;$fSuppressUnusedWarnings->ShowsPrec_6989586621680868347Sym1 $fPShowAll;$fSuppressUnusedWarnings->ShowsPrec_6989586621680868347Sym0;$fSuppressUnusedWarnings->ShowsPrec_6989586621680868373Sym2;$fSuppressUnusedWarnings->ShowsPrec_6989586621680868373Sym1 $fPShowAny;$fSuppressUnusedWarnings->ShowsPrec_6989586621680868373Sym0;$fSuppressUnusedWarnings->ShowsPrec_6989586621680868402Sym2;$fSuppressUnusedWarnings->ShowsPrec_6989586621680868402Sym1 $fPShowSum;$fSuppressUnusedWarnings->ShowsPrec_6989586621680868402Sym0;$fSuppressUnusedWarnings->ShowsPrec_6989586621680868431Sym2;$fSuppressUnusedWarnings->ShowsPrec_6989586621680868431Sym1$fPShowProduct;$fSuppressUnusedWarnings->ShowsPrec_6989586621680868431Sym0;$fSuppressUnusedWarnings->ShowsPrec_6989586621680868460Sym2;$fSuppressUnusedWarnings->ShowsPrec_6989586621680868460Sym1 $fPShowMin;$fSuppressUnusedWarnings->ShowsPrec_6989586621680868460Sym0;$fSuppressUnusedWarnings->ShowsPrec_6989586621680868489Sym2;$fSuppressUnusedWarnings->ShowsPrec_6989586621680868489Sym1 $fPShowMax;$fSuppressUnusedWarnings->ShowsPrec_6989586621680868489Sym0;$fSuppressUnusedWarnings->ShowsPrec_6989586621680868518Sym2;$fSuppressUnusedWarnings->ShowsPrec_6989586621680868518Sym1;$fSuppressUnusedWarnings->ShowsPrec_6989586621680868518Sym0;$fSuppressUnusedWarnings->ShowsPrec_6989586621680868547Sym2;$fSuppressUnusedWarnings->ShowsPrec_6989586621680868547Sym1;$fSuppressUnusedWarnings->ShowsPrec_6989586621680868547Sym0;$fSuppressUnusedWarnings->ShowsPrec_6989586621680868576Sym2;$fSuppressUnusedWarnings->ShowsPrec_6989586621680868576Sym1$fPShowWrappedMonoid;$fSuppressUnusedWarnings->ShowsPrec_6989586621680868576Sym0$fSTraversableOption$fSFoldableOption$fSMonoidOption$fSSemigroupOption$fSMonadPlusOption$fSMonadOption$fSFunctorOption$fSApplicativeOption$fSEnumWrappedMonoid$fSMonoidWrappedMonoid$fSSemigroupWrappedMonoid $fSEnumLast $fSEnumFirst$fSTraversableArg $fSShowArg$fSEqArg$fSTraversableMax$fSFoldableMax $fSNumMax $fSMonoidMax$fSSemigroupMax $fSMonadMax $fSEnumMax$fSApplicativeMax$fSTraversableMin$fSFoldableMin $fSNumMin $fSMonoidMin$fSSemigroupMin $fSMonadMin $fSEnumMin$fSApplicativeMin$fPMonadPlusOption6$fSuppressUnusedWarnings->Pure_6989586621680884991Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680885001Sym1:$fSuppressUnusedWarnings->TFHelper_6989586621680885001Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680885012Sym1:$fSuppressUnusedWarnings->TFHelper_6989586621680885012Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680885024Sym1:$fSuppressUnusedWarnings->TFHelper_6989586621680885024Sym08$fSuppressUnusedWarnings->LiftA2_6989586621680885040Sym28$fSuppressUnusedWarnings->LiftA2_6989586621680885040Sym1$fPApplicativeMin8$fSuppressUnusedWarnings->LiftA2_6989586621680885040Sym06$fSuppressUnusedWarnings->Succ_6989586621680885049Sym06$fSuppressUnusedWarnings->Pred_6989586621680885056Sym08$fSuppressUnusedWarnings->ToEnum_6989586621680885065Sym0:$fSuppressUnusedWarnings->FromEnum_6989586621680885072Sym0<$fSuppressUnusedWarnings->EnumFromTo_6989586621680885083Sym1<$fSuppressUnusedWarnings->EnumFromTo_6989586621680885083Sym0@$fSuppressUnusedWarnings->EnumFromThenTo_6989586621680885099Sym2@$fSuppressUnusedWarnings->EnumFromThenTo_6989586621680885099Sym1 $fPEnumMin@$fSuppressUnusedWarnings->EnumFromThenTo_6989586621680885099Sym06$fSuppressUnusedWarnings->Fmap_6989586621680885112Sym16$fSuppressUnusedWarnings->Fmap_6989586621680885112Sym08$fSuppressUnusedWarnings->Lambda_6989586621680885122Sym28$fSuppressUnusedWarnings->Lambda_6989586621680885122Sym1 $fSFunctorMin8$fSuppressUnusedWarnings->Lambda_6989586621680885122Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680885131Sym1 $fPFunctorMin:$fSuppressUnusedWarnings->TFHelper_6989586621680885131Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680885147Sym1:$fSuppressUnusedWarnings->TFHelper_6989586621680885147Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680885159Sym1 $fPMonadMin:$fSuppressUnusedWarnings->TFHelper_6989586621680885159Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680885171Sym1$fPSemigroupMin:$fSuppressUnusedWarnings->TFHelper_6989586621680885171Sym0 $fPMonoidMin:$fSuppressUnusedWarnings->TFHelper_6989586621680885185Sym1:$fSuppressUnusedWarnings->TFHelper_6989586621680885185Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680885197Sym1:$fSuppressUnusedWarnings->TFHelper_6989586621680885197Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680885209Sym1:$fSuppressUnusedWarnings->TFHelper_6989586621680885209Sym08$fSuppressUnusedWarnings->Negate_6989586621680885217Sym05$fSuppressUnusedWarnings->Abs_6989586621680885224Sym08$fSuppressUnusedWarnings->Signum_6989586621680885231Sym0 $fPNumMin=$fSuppressUnusedWarnings->FromInteger_6989586621680885240Sym09$fSuppressUnusedWarnings->FoldMap_6989586621680885251Sym19$fSuppressUnusedWarnings->FoldMap_6989586621680885251Sym07$fSuppressUnusedWarnings->Foldr_6989586621680885267Sym27$fSuppressUnusedWarnings->Foldr_6989586621680885267Sym1$fPFoldableMin7$fSuppressUnusedWarnings->Foldr_6989586621680885267Sym0:$fSuppressUnusedWarnings->Traverse_6989586621680885280Sym1$fPTraversableMin:$fSuppressUnusedWarnings->Traverse_6989586621680885280Sym06$fSuppressUnusedWarnings->Pure_6989586621680885290Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680885300Sym1:$fSuppressUnusedWarnings->TFHelper_6989586621680885300Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680885311Sym1:$fSuppressUnusedWarnings->TFHelper_6989586621680885311Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680885323Sym1:$fSuppressUnusedWarnings->TFHelper_6989586621680885323Sym08$fSuppressUnusedWarnings->LiftA2_6989586621680885339Sym28$fSuppressUnusedWarnings->LiftA2_6989586621680885339Sym1$fPApplicativeMax8$fSuppressUnusedWarnings->LiftA2_6989586621680885339Sym06$fSuppressUnusedWarnings->Succ_6989586621680885348Sym06$fSuppressUnusedWarnings->Pred_6989586621680885355Sym08$fSuppressUnusedWarnings->ToEnum_6989586621680885364Sym0:$fSuppressUnusedWarnings->FromEnum_6989586621680885371Sym0<$fSuppressUnusedWarnings->EnumFromTo_6989586621680885382Sym1<$fSuppressUnusedWarnings->EnumFromTo_6989586621680885382Sym0@$fSuppressUnusedWarnings->EnumFromThenTo_6989586621680885398Sym2@$fSuppressUnusedWarnings->EnumFromThenTo_6989586621680885398Sym1 $fPEnumMax@$fSuppressUnusedWarnings->EnumFromThenTo_6989586621680885398Sym06$fSuppressUnusedWarnings->Fmap_6989586621680885411Sym16$fSuppressUnusedWarnings->Fmap_6989586621680885411Sym08$fSuppressUnusedWarnings->Lambda_6989586621680885421Sym28$fSuppressUnusedWarnings->Lambda_6989586621680885421Sym1 $fSFunctorMax8$fSuppressUnusedWarnings->Lambda_6989586621680885421Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680885430Sym1 $fPFunctorMax:$fSuppressUnusedWarnings->TFHelper_6989586621680885430Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680885446Sym1:$fSuppressUnusedWarnings->TFHelper_6989586621680885446Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680885458Sym1 $fPMonadMax:$fSuppressUnusedWarnings->TFHelper_6989586621680885458Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680885470Sym1$fPSemigroupMax:$fSuppressUnusedWarnings->TFHelper_6989586621680885470Sym0 $fPMonoidMax:$fSuppressUnusedWarnings->TFHelper_6989586621680885484Sym1:$fSuppressUnusedWarnings->TFHelper_6989586621680885484Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680885496Sym1:$fSuppressUnusedWarnings->TFHelper_6989586621680885496Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680885508Sym1:$fSuppressUnusedWarnings->TFHelper_6989586621680885508Sym08$fSuppressUnusedWarnings->Negate_6989586621680885516Sym05$fSuppressUnusedWarnings->Abs_6989586621680885523Sym08$fSuppressUnusedWarnings->Signum_6989586621680885530Sym0 $fPNumMax=$fSuppressUnusedWarnings->FromInteger_6989586621680885539Sym09$fSuppressUnusedWarnings->FoldMap_6989586621680885550Sym19$fSuppressUnusedWarnings->FoldMap_6989586621680885550Sym07$fSuppressUnusedWarnings->Foldr_6989586621680885566Sym27$fSuppressUnusedWarnings->Foldr_6989586621680885566Sym1$fPFoldableMax7$fSuppressUnusedWarnings->Foldr_6989586621680885566Sym0:$fSuppressUnusedWarnings->Traverse_6989586621680885579Sym1$fPTraversableMax:$fSuppressUnusedWarnings->Traverse_6989586621680885579Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680885591Sym1$fPEqArg:$fSuppressUnusedWarnings->TFHelper_6989586621680885591Sym08$fSuppressUnusedWarnings->Lambda_6989586621680885602Sym38$fSuppressUnusedWarnings->Lambda_6989586621680885602Sym28$fSuppressUnusedWarnings->Lambda_6989586621680885602Sym18$fSuppressUnusedWarnings->Lambda_6989586621680885602Sym06$fSuppressUnusedWarnings->Fmap_6989586621680885612Sym16$fSuppressUnusedWarnings->Fmap_6989586621680885612Sym08$fSuppressUnusedWarnings->Lambda_6989586621680885623Sym38$fSuppressUnusedWarnings->Lambda_6989586621680885623Sym28$fSuppressUnusedWarnings->Lambda_6989586621680885623Sym18$fSuppressUnusedWarnings->Lambda_6989586621680885623Sym08$fSuppressUnusedWarnings->Lambda_6989586621680885631Sym38$fSuppressUnusedWarnings->Lambda_6989586621680885631Sym28$fSuppressUnusedWarnings->Lambda_6989586621680885631Sym1 $fSFunctorArg8$fSuppressUnusedWarnings->Lambda_6989586621680885631Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680885641Sym1 $fPFunctorArg:$fSuppressUnusedWarnings->TFHelper_6989586621680885641Sym09$fSuppressUnusedWarnings->Compare_6989586621680885653Sym19$fSuppressUnusedWarnings->Compare_6989586621680885653Sym05$fSuppressUnusedWarnings->Let6989586621680885669XSym55$fSuppressUnusedWarnings->Let6989586621680885669XSym45$fSuppressUnusedWarnings->Let6989586621680885669XSym35$fSuppressUnusedWarnings->Let6989586621680885669XSym25$fSuppressUnusedWarnings->Let6989586621680885669XSym15$fSuppressUnusedWarnings->Let6989586621680885669XSym05$fSuppressUnusedWarnings->Let6989586621680885669YSym55$fSuppressUnusedWarnings->Let6989586621680885669YSym45$fSuppressUnusedWarnings->Let6989586621680885669YSym35$fSuppressUnusedWarnings->Let6989586621680885669YSym25$fSuppressUnusedWarnings->Let6989586621680885669YSym15$fSuppressUnusedWarnings->Let6989586621680885669YSym05$fSuppressUnusedWarnings->Min_6989586621680885688Sym15$fSuppressUnusedWarnings->Min_6989586621680885688Sym05$fSuppressUnusedWarnings->Let6989586621680885704XSym55$fSuppressUnusedWarnings->Let6989586621680885704XSym45$fSuppressUnusedWarnings->Let6989586621680885704XSym35$fSuppressUnusedWarnings->Let6989586621680885704XSym25$fSuppressUnusedWarnings->Let6989586621680885704XSym15$fSuppressUnusedWarnings->Let6989586621680885704XSym05$fSuppressUnusedWarnings->Let6989586621680885704YSym55$fSuppressUnusedWarnings->Let6989586621680885704YSym45$fSuppressUnusedWarnings->Let6989586621680885704YSym35$fSuppressUnusedWarnings->Let6989586621680885704YSym25$fSuppressUnusedWarnings->Let6989586621680885704YSym15$fSuppressUnusedWarnings->Let6989586621680885704YSym0 $fSOrdArg5$fSuppressUnusedWarnings->Max_6989586621680885723Sym1 $fPOrdArg5$fSuppressUnusedWarnings->Max_6989586621680885723Sym0;$fSuppressUnusedWarnings->ShowsPrec_6989586621680885742Sym2;$fSuppressUnusedWarnings->ShowsPrec_6989586621680885742Sym1 $fPShowArg;$fSuppressUnusedWarnings->ShowsPrec_6989586621680885742Sym08$fSuppressUnusedWarnings->Lambda_6989586621680885754Sym38$fSuppressUnusedWarnings->Lambda_6989586621680885754Sym28$fSuppressUnusedWarnings->Lambda_6989586621680885754Sym18$fSuppressUnusedWarnings->Lambda_6989586621680885754Sym09$fSuppressUnusedWarnings->FoldMap_6989586621680885764Sym19$fSuppressUnusedWarnings->FoldMap_6989586621680885764Sym08$fSuppressUnusedWarnings->Lambda_6989586621680885778Sym58$fSuppressUnusedWarnings->Lambda_6989586621680885778Sym48$fSuppressUnusedWarnings->Lambda_6989586621680885778Sym38$fSuppressUnusedWarnings->Lambda_6989586621680885778Sym28$fSuppressUnusedWarnings->Lambda_6989586621680885778Sym1$fSFoldableArg8$fSuppressUnusedWarnings->Lambda_6989586621680885778Sym07$fSuppressUnusedWarnings->Foldr_6989586621680885793Sym27$fSuppressUnusedWarnings->Foldr_6989586621680885793Sym1$fPFoldableArg7$fSuppressUnusedWarnings->Foldr_6989586621680885793Sym0:$fSuppressUnusedWarnings->Traverse_6989586621680885807Sym1$fPTraversableArg:$fSuppressUnusedWarnings->Traverse_6989586621680885807Sym06$fSuppressUnusedWarnings->Pure_6989586621680885815Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680885825Sym1:$fSuppressUnusedWarnings->TFHelper_6989586621680885825Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680885836Sym1:$fSuppressUnusedWarnings->TFHelper_6989586621680885836Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680885848Sym1:$fSuppressUnusedWarnings->TFHelper_6989586621680885848Sym08$fSuppressUnusedWarnings->LiftA2_6989586621680885864Sym28$fSuppressUnusedWarnings->LiftA2_6989586621680885864Sym18$fSuppressUnusedWarnings->LiftA2_6989586621680885864Sym06$fSuppressUnusedWarnings->Succ_6989586621680885873Sym06$fSuppressUnusedWarnings->Pred_6989586621680885880Sym08$fSuppressUnusedWarnings->ToEnum_6989586621680885889Sym0:$fSuppressUnusedWarnings->FromEnum_6989586621680885896Sym0<$fSuppressUnusedWarnings->EnumFromTo_6989586621680885907Sym1<$fSuppressUnusedWarnings->EnumFromTo_6989586621680885907Sym0@$fSuppressUnusedWarnings->EnumFromThenTo_6989586621680885923Sym2@$fSuppressUnusedWarnings->EnumFromThenTo_6989586621680885923Sym1 $fPEnumFirst@$fSuppressUnusedWarnings->EnumFromThenTo_6989586621680885923Sym06$fSuppressUnusedWarnings->Fmap_6989586621680885936Sym16$fSuppressUnusedWarnings->Fmap_6989586621680885936Sym08$fSuppressUnusedWarnings->Lambda_6989586621680885946Sym28$fSuppressUnusedWarnings->Lambda_6989586621680885946Sym18$fSuppressUnusedWarnings->Lambda_6989586621680885946Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680885955Sym1:$fSuppressUnusedWarnings->TFHelper_6989586621680885955Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680885971Sym1:$fSuppressUnusedWarnings->TFHelper_6989586621680885971Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680885983Sym1:$fSuppressUnusedWarnings->TFHelper_6989586621680885983Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680885994Sym1:$fSuppressUnusedWarnings->TFHelper_6989586621680885994Sym09$fSuppressUnusedWarnings->FoldMap_6989586621680886006Sym19$fSuppressUnusedWarnings->FoldMap_6989586621680886006Sym07$fSuppressUnusedWarnings->Foldr_6989586621680886022Sym27$fSuppressUnusedWarnings->Foldr_6989586621680886022Sym17$fSuppressUnusedWarnings->Foldr_6989586621680886022Sym0:$fSuppressUnusedWarnings->Traverse_6989586621680886035Sym1:$fSuppressUnusedWarnings->Traverse_6989586621680886035Sym06$fSuppressUnusedWarnings->Pure_6989586621680886043Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680886053Sym1:$fSuppressUnusedWarnings->TFHelper_6989586621680886053Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680886064Sym1:$fSuppressUnusedWarnings->TFHelper_6989586621680886064Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680886076Sym1:$fSuppressUnusedWarnings->TFHelper_6989586621680886076Sym08$fSuppressUnusedWarnings->LiftA2_6989586621680886092Sym28$fSuppressUnusedWarnings->LiftA2_6989586621680886092Sym18$fSuppressUnusedWarnings->LiftA2_6989586621680886092Sym06$fSuppressUnusedWarnings->Succ_6989586621680886101Sym06$fSuppressUnusedWarnings->Pred_6989586621680886108Sym08$fSuppressUnusedWarnings->ToEnum_6989586621680886117Sym0:$fSuppressUnusedWarnings->FromEnum_6989586621680886124Sym0<$fSuppressUnusedWarnings->EnumFromTo_6989586621680886135Sym1<$fSuppressUnusedWarnings->EnumFromTo_6989586621680886135Sym0@$fSuppressUnusedWarnings->EnumFromThenTo_6989586621680886151Sym2@$fSuppressUnusedWarnings->EnumFromThenTo_6989586621680886151Sym1 $fPEnumLast@$fSuppressUnusedWarnings->EnumFromThenTo_6989586621680886151Sym06$fSuppressUnusedWarnings->Fmap_6989586621680886164Sym16$fSuppressUnusedWarnings->Fmap_6989586621680886164Sym08$fSuppressUnusedWarnings->Lambda_6989586621680886174Sym28$fSuppressUnusedWarnings->Lambda_6989586621680886174Sym18$fSuppressUnusedWarnings->Lambda_6989586621680886174Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680886183Sym1:$fSuppressUnusedWarnings->TFHelper_6989586621680886183Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680886199Sym1:$fSuppressUnusedWarnings->TFHelper_6989586621680886199Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680886211Sym1:$fSuppressUnusedWarnings->TFHelper_6989586621680886211Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680886222Sym1:$fSuppressUnusedWarnings->TFHelper_6989586621680886222Sym09$fSuppressUnusedWarnings->FoldMap_6989586621680886234Sym19$fSuppressUnusedWarnings->FoldMap_6989586621680886234Sym07$fSuppressUnusedWarnings->Foldr_6989586621680886250Sym27$fSuppressUnusedWarnings->Foldr_6989586621680886250Sym17$fSuppressUnusedWarnings->Foldr_6989586621680886250Sym0:$fSuppressUnusedWarnings->Traverse_6989586621680886263Sym1:$fSuppressUnusedWarnings->Traverse_6989586621680886263Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680886275Sym1$fPSemigroupWrappedMonoid:$fSuppressUnusedWarnings->TFHelper_6989586621680886275Sym0$fPMonoidWrappedMonoid6$fSuppressUnusedWarnings->Succ_6989586621680886285Sym06$fSuppressUnusedWarnings->Pred_6989586621680886292Sym08$fSuppressUnusedWarnings->ToEnum_6989586621680886301Sym0:$fSuppressUnusedWarnings->FromEnum_6989586621680886308Sym0<$fSuppressUnusedWarnings->EnumFromTo_6989586621680886319Sym1<$fSuppressUnusedWarnings->EnumFromTo_6989586621680886319Sym0@$fSuppressUnusedWarnings->EnumFromThenTo_6989586621680886335Sym2@$fSuppressUnusedWarnings->EnumFromThenTo_6989586621680886335Sym1$fPEnumWrappedMonoid@$fSuppressUnusedWarnings->EnumFromThenTo_6989586621680886335Sym0$fSAlternativeOption5$fSuppressUnusedWarnings->Let6989586621680886348ASym0:$fSuppressUnusedWarnings->TFHelper_6989586621680886352Sym1$fPAlternativeOption:$fSuppressUnusedWarnings->TFHelper_6989586621680886352Sym06$fSuppressUnusedWarnings->Pure_6989586621680886360Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680886371Sym1:$fSuppressUnusedWarnings->TFHelper_6989586621680886371Sym08$fSuppressUnusedWarnings->LiftA2_6989586621680886387Sym28$fSuppressUnusedWarnings->LiftA2_6989586621680886387Sym18$fSuppressUnusedWarnings->LiftA2_6989586621680886387Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680886399Sym1$fPApplicativeOption:$fSuppressUnusedWarnings->TFHelper_6989586621680886399Sym06$fSuppressUnusedWarnings->Fmap_6989586621680886411Sym16$fSuppressUnusedWarnings->Fmap_6989586621680886411Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680886423Sym1$fPFunctorOption:$fSuppressUnusedWarnings->TFHelper_6989586621680886423Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680886435Sym1:$fSuppressUnusedWarnings->TFHelper_6989586621680886435Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680886451Sym1$fPMonadOption:$fSuppressUnusedWarnings->TFHelper_6989586621680886451Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621680886463Sym1$fPSemigroupOption:$fSuppressUnusedWarnings->TFHelper_6989586621680886463Sym0$fPMonoidOption9$fSuppressUnusedWarnings->FoldMap_6989586621680886477Sym1$fPFoldableOption9$fSuppressUnusedWarnings->FoldMap_6989586621680886477Sym0:$fSuppressUnusedWarnings->Traverse_6989586621680886489Sym1$fPTraversableOption:$fSuppressUnusedWarnings->Traverse_6989586621680886489Sym0Option_sOption_$fSingI->Option_Sym2%$fSuppressUnusedWarnings->Option_Sym2$fSingI->Option_Sym1%$fSuppressUnusedWarnings->Option_Sym1$fSingI->Option_Sym0%$fSuppressUnusedWarnings->Option_Sym0 SMonadZipsMzip sMzipWithsMunzip PMonadZipMzipMzipWithMunzip MunzipSym0 MunzipSym1 MzipWithSym0 MzipWithSym1 MzipWithSym2 MzipWithSym3MzipSym0MzipSym1MzipSym28$fSuppressUnusedWarnings->Munzip_6989586621681075722Sym0:$fSuppressUnusedWarnings->MzipWith_6989586621681075713Sym0:$fSuppressUnusedWarnings->MzipWith_6989586621681075713Sym1:$fSuppressUnusedWarnings->MzipWith_6989586621681075713Sym26$fSuppressUnusedWarnings->Mzip_6989586621681075697Sym06$fSuppressUnusedWarnings->Mzip_6989586621681075697Sym1&$fSuppressUnusedWarnings->MzipWithSym0&$fSuppressUnusedWarnings->MzipWithSym1&$fSuppressUnusedWarnings->MzipWithSym2"$fSuppressUnusedWarnings->MzipSym0"$fSuppressUnusedWarnings->MzipSym1$$fSuppressUnusedWarnings->MunzipSym06$fSuppressUnusedWarnings->Mzip_6989586621681075772Sym16$fSuppressUnusedWarnings->Mzip_6989586621681075772Sym0:$fSuppressUnusedWarnings->MzipWith_6989586621681075794Sym2:$fSuppressUnusedWarnings->MzipWith_6989586621681075794Sym1:$fSuppressUnusedWarnings->MzipWith_6989586621681075794Sym0 $fPMonadZip[]8$fSuppressUnusedWarnings->Munzip_6989586621681075805Sym0:$fSuppressUnusedWarnings->MzipWith_6989586621681075826Sym2:$fSuppressUnusedWarnings->MzipWith_6989586621681075826Sym1:$fSuppressUnusedWarnings->MzipWith_6989586621681075826Sym0$fPMonadZipIdentity8$fSuppressUnusedWarnings->Munzip_6989586621681075836Sym0:$fSuppressUnusedWarnings->MzipWith_6989586621681075857Sym2:$fSuppressUnusedWarnings->MzipWith_6989586621681075857Sym1$fPMonadZipDual:$fSuppressUnusedWarnings->MzipWith_6989586621681075857Sym0:$fSuppressUnusedWarnings->MzipWith_6989586621681075880Sym2:$fSuppressUnusedWarnings->MzipWith_6989586621681075880Sym1$fPMonadZipSum:$fSuppressUnusedWarnings->MzipWith_6989586621681075880Sym0:$fSuppressUnusedWarnings->MzipWith_6989586621681075903Sym2:$fSuppressUnusedWarnings->MzipWith_6989586621681075903Sym1$fPMonadZipProduct:$fSuppressUnusedWarnings->MzipWith_6989586621681075903Sym0:$fSuppressUnusedWarnings->MzipWith_6989586621681075926Sym2:$fSuppressUnusedWarnings->MzipWith_6989586621681075926Sym1$fPMonadZipMaybe:$fSuppressUnusedWarnings->MzipWith_6989586621681075926Sym0:$fSuppressUnusedWarnings->MzipWith_6989586621681075949Sym2:$fSuppressUnusedWarnings->MzipWith_6989586621681075949Sym1$fPMonadZipFirst:$fSuppressUnusedWarnings->MzipWith_6989586621681075949Sym0:$fSuppressUnusedWarnings->MzipWith_6989586621681075972Sym2:$fSuppressUnusedWarnings->MzipWith_6989586621681075972Sym1$fPMonadZipLast:$fSuppressUnusedWarnings->MzipWith_6989586621681075972Sym0$fSingI->MunzipSym0$fSingI->MzipWithSym2$fSingI->MzipWithSym1$fSingI->MzipWithSym0$fSingI->MzipSym1$fSingI->MzipSym0$fSMonadZipLast$fSMonadZipFirst$fSMonadZipMaybe$fSMonadZipProduct$fSMonadZipSum$fSMonadZipDual$fSMonadZipIdentity $fSMonadZip[]XorUnfoldUncons NonEmpty_Cons<| GroupAllWith1SortWithFromList GroupWith1Group1GroupBy1 GroupAllWith GroupWithXorSym0XorSym1 UnfoldSym0 UnfoldSym1 UnconsSym0 UnconsSym1 NonEmpty_Sym0 NonEmpty_Sym1ConsSym0ConsSym1ConsSym2<|@#@$<|@#@$$<|@#@$$$GroupAllWith1Sym0GroupAllWith1Sym1GroupAllWith1Sym2 SortWithSym0 SortWithSym1 SortWithSym2 FromListSym0 FromListSym1GroupWith1Sym0GroupWith1Sym1GroupWith1Sym2 Group1Sym0 Group1Sym1 GroupBy1Sym0 GroupBy1Sym1 GroupBy1Sym2GroupAllWithSym0GroupAllWithSym1GroupAllWithSym2 GroupWithSym0 GroupWithSym1 GroupWithSym2 sGroupWith sGroupAllWith sGroupBy1sGroup1 sGroupWith1 sFromList sSortWithsGroupAllWith1%<|sCons sNonEmpty_sUnconssUnfoldsXor8$fSuppressUnusedWarnings->Lambda_6989586621681108842Sym38$fSuppressUnusedWarnings->Lambda_6989586621681108842Sym28$fSuppressUnusedWarnings->Lambda_6989586621681108842Sym18$fSuppressUnusedWarnings->Lambda_6989586621681108842Sym06$fSuppressUnusedWarnings->Let6989586621681108860BsSym26$fSuppressUnusedWarnings->Let6989586621681108860BsSym16$fSuppressUnusedWarnings->Let6989586621681108860BsSym06$fSuppressUnusedWarnings->Let6989586621681108860AsSym26$fSuppressUnusedWarnings->Let6989586621681108860AsSym16$fSuppressUnusedWarnings->Let6989586621681108860AsSym0I$fSuppressUnusedWarnings->Let6989586621681108860X_6989586621681108861Sym2I$fSuppressUnusedWarnings->Let6989586621681108860X_6989586621681108861Sym1I$fSuppressUnusedWarnings->Let6989586621681108860X_6989586621681108861Sym06$fSuppressUnusedWarnings->Let6989586621681108947ZsSym46$fSuppressUnusedWarnings->Let6989586621681108947ZsSym36$fSuppressUnusedWarnings->Let6989586621681108947ZsSym26$fSuppressUnusedWarnings->Let6989586621681108947ZsSym16$fSuppressUnusedWarnings->Let6989586621681108947ZsSym06$fSuppressUnusedWarnings->Let6989586621681108947YsSym46$fSuppressUnusedWarnings->Let6989586621681108947YsSym36$fSuppressUnusedWarnings->Let6989586621681108947YsSym26$fSuppressUnusedWarnings->Let6989586621681108947YsSym16$fSuppressUnusedWarnings->Let6989586621681108947YsSym0I$fSuppressUnusedWarnings->Let6989586621681108947X_6989586621681108948Sym4I$fSuppressUnusedWarnings->Let6989586621681108947X_6989586621681108948Sym3I$fSuppressUnusedWarnings->Let6989586621681108947X_6989586621681108948Sym2I$fSuppressUnusedWarnings->Let6989586621681108947X_6989586621681108948Sym1I$fSuppressUnusedWarnings->Let6989586621681108947X_6989586621681108948Sym06$fSuppressUnusedWarnings->Let6989586621681109000ZsSym26$fSuppressUnusedWarnings->Let6989586621681109000ZsSym16$fSuppressUnusedWarnings->Let6989586621681109000ZsSym06$fSuppressUnusedWarnings->Let6989586621681109000YsSym26$fSuppressUnusedWarnings->Let6989586621681109000YsSym16$fSuppressUnusedWarnings->Let6989586621681109000YsSym0I$fSuppressUnusedWarnings->Let6989586621681109000X_6989586621681109001Sym2I$fSuppressUnusedWarnings->Let6989586621681109000X_6989586621681109001Sym1I$fSuppressUnusedWarnings->Let6989586621681109000X_6989586621681109001Sym0Q$fSuppressUnusedWarnings->Let6989586621681109280Scrutinee_6989586621681107629Sym2Q$fSuppressUnusedWarnings->Let6989586621681109280Scrutinee_6989586621681107629Sym1Q$fSuppressUnusedWarnings->Let6989586621681109280Scrutinee_6989586621681107629Sym06$fSuppressUnusedWarnings->Let6989586621681109274GoSym26$fSuppressUnusedWarnings->Let6989586621681109274GoSym16$fSuppressUnusedWarnings->Let6989586621681109274GoSym0Q$fSuppressUnusedWarnings->Let6989586621681109289Scrutinee_6989586621681107625Sym1Q$fSuppressUnusedWarnings->Let6989586621681109289Scrutinee_6989586621681107625Sym0Q$fSuppressUnusedWarnings->Let6989586621681109311Scrutinee_6989586621681107615Sym1Q$fSuppressUnusedWarnings->Let6989586621681109311Scrutinee_6989586621681107615Sym08$fSuppressUnusedWarnings->Let6989586621681109324Xor'Sym38$fSuppressUnusedWarnings->Let6989586621681109324Xor'Sym28$fSuppressUnusedWarnings->Let6989586621681109324Xor'Sym18$fSuppressUnusedWarnings->Let6989586621681109324Xor'Sym0$fSingI->NubBySym1#$fSuppressUnusedWarnings->NubBySym1$fSingI->NubBySym0#$fSuppressUnusedWarnings->NubBySym0$fSingI->NubSym0!$fSuppressUnusedWarnings->NubSym0$fSingI->UnzipSym0#$fSuppressUnusedWarnings->UnzipSym0$fSingI->ZipWithSym2%$fSuppressUnusedWarnings->ZipWithSym2$fSingI->ZipWithSym1%$fSuppressUnusedWarnings->ZipWithSym1$fSingI->ZipWithSym0%$fSuppressUnusedWarnings->ZipWithSym0$fSingI->ZipSym1!$fSuppressUnusedWarnings->ZipSym1$fSMonadZipNonEmpty$fSingI->ZipSym0!$fSuppressUnusedWarnings->ZipSym0$fSingI->!!@#@$$!$fSuppressUnusedWarnings->!!@#@$$$fSingI->!!@#@$ $fSuppressUnusedWarnings->!!@#@$$fSingI->IsPrefixOfSym1($fSuppressUnusedWarnings->IsPrefixOfSym1$fSingI->IsPrefixOfSym0($fSuppressUnusedWarnings->IsPrefixOfSym0$fSingI->GroupBySym1$fSingI->GroupBySym0%$fSuppressUnusedWarnings->GroupBySym0%$fSuppressUnusedWarnings->GroupBySym16$fSuppressUnusedWarnings->Let6989586621681108937GoSym26$fSuppressUnusedWarnings->Let6989586621681108937GoSym36$fSuppressUnusedWarnings->Let6989586621681108937GoSym16$fSuppressUnusedWarnings->Let6989586621681108937GoSym0$fSingI->GroupWithSym1'$fSuppressUnusedWarnings->GroupWithSym1$fSingI->GroupWithSym0'$fSuppressUnusedWarnings->GroupWithSym0$fSingI->GroupAllWithSym1*$fSuppressUnusedWarnings->GroupAllWithSym1$fSingI->GroupAllWithSym0*$fSuppressUnusedWarnings->GroupAllWithSym0$fSingI->GroupBy1Sym1&$fSuppressUnusedWarnings->GroupBy1Sym1$fSingI->GroupBy1Sym0&$fSuppressUnusedWarnings->GroupBy1Sym0$fSingI->Group1Sym0$$fSuppressUnusedWarnings->Group1Sym0$fSingI->GroupWith1Sym1($fSuppressUnusedWarnings->GroupWith1Sym1$fSingI->GroupWith1Sym0($fSuppressUnusedWarnings->GroupWith1Sym0$fSingI->GroupSym0#$fSuppressUnusedWarnings->GroupSym0$fSingI->IntersperseSym1)$fSuppressUnusedWarnings->IntersperseSym1$fSingI->IntersperseSym0)$fSuppressUnusedWarnings->IntersperseSym0$fSingI->TakeSym1"$fSuppressUnusedWarnings->TakeSym1$fSingI->TakeSym0"$fSuppressUnusedWarnings->TakeSym0$fSingI->DropSym1"$fSuppressUnusedWarnings->DropSym1$fSingI->DropSym0"$fSuppressUnusedWarnings->DropSym0$fSingI->SplitAtSym1%$fSuppressUnusedWarnings->SplitAtSym1$fSingI->SplitAtSym0%$fSuppressUnusedWarnings->SplitAtSym0$fSingI->TakeWhileSym1'$fSuppressUnusedWarnings->TakeWhileSym1$fSingI->TakeWhileSym0'$fSuppressUnusedWarnings->TakeWhileSym0$fSingI->DropWhileSym1'$fSuppressUnusedWarnings->DropWhileSym1$fSingI->DropWhileSym0'$fSuppressUnusedWarnings->DropWhileSym0$fSingI->SpanSym1"$fSuppressUnusedWarnings->SpanSym1$fSingI->SpanSym0"$fSuppressUnusedWarnings->SpanSym0$fSingI->BreakSym1#$fSuppressUnusedWarnings->BreakSym1$fSingI->BreakSym0#$fSuppressUnusedWarnings->BreakSym0$fSingI->FilterSym1$$fSuppressUnusedWarnings->FilterSym1$fSingI->FilterSym0$$fSuppressUnusedWarnings->FilterSym0$fSingI->PartitionSym1'$fSuppressUnusedWarnings->PartitionSym1$fSingI->PartitionSym0'$fSuppressUnusedWarnings->PartitionSym0$fSingI->FromListSym0&$fSuppressUnusedWarnings->FromListSym0$fSingI->LiftSym1"$fSuppressUnusedWarnings->LiftSym1$fSingI->LiftSym0"$fSuppressUnusedWarnings->LiftSym0$fSingI->ReverseSym0%$fSuppressUnusedWarnings->ReverseSym0$fSingI->SortBySym1$$fSuppressUnusedWarnings->SortBySym1$fSingI->SortBySym0$$fSuppressUnusedWarnings->SortBySym0$fSingI->SortWithSym1&$fSuppressUnusedWarnings->SortWithSym1$fSingI->SortWithSym0&$fSuppressUnusedWarnings->SortWithSym0$fSingI->GroupAllWith1Sym1+$fSuppressUnusedWarnings->GroupAllWith1Sym1$fSingI->GroupAllWith1Sym0+$fSuppressUnusedWarnings->GroupAllWith1Sym0$fSingI->InitsSym0#$fSuppressUnusedWarnings->InitsSym0$fSingI->TailsSym0#$fSuppressUnusedWarnings->TailsSym0$fSingI->InsertSym1$$fSuppressUnusedWarnings->InsertSym1$fSingI->InsertSym0$$fSuppressUnusedWarnings->InsertSym0$fSingI->ScanlSym2#$fSuppressUnusedWarnings->ScanlSym2$fSingI->ScanlSym1#$fSuppressUnusedWarnings->ScanlSym1$fSingI->ScanlSym0#$fSuppressUnusedWarnings->ScanlSym0$fSingI->ScanrSym2#$fSuppressUnusedWarnings->ScanrSym2$fSingI->ScanrSym1#$fSuppressUnusedWarnings->ScanrSym1$fSingI->ScanrSym0#$fSuppressUnusedWarnings->ScanrSym0$fSingI->Scanl1Sym1$$fSuppressUnusedWarnings->Scanl1Sym1$fSingI->Scanl1Sym0$$fSuppressUnusedWarnings->Scanl1Sym0$fSingI->Scanr1Sym1$$fSuppressUnusedWarnings->Scanr1Sym1$fSingI->Scanr1Sym0$$fSuppressUnusedWarnings->Scanr1Sym0$fSingI->SortSym0"$fSuppressUnusedWarnings->SortSym0$fSingI-><|@#@$$!$fSuppressUnusedWarnings-><|@#@$$$fSingI-><|@#@$ $fSuppressUnusedWarnings-><|@#@$$fSingI->ConsSym1"$fSuppressUnusedWarnings->ConsSym1$fSingI->ConsSym0"$fSuppressUnusedWarnings->ConsSym0$fSingI->InitSym0"$fSuppressUnusedWarnings->InitSym0$fSingI->TailSym0"$fSuppressUnusedWarnings->TailSym0$fSingI->HeadSym0"$fSuppressUnusedWarnings->HeadSym0$fSingI->UnfoldrSym1%$fSuppressUnusedWarnings->UnfoldrSym1$fSingI->UnfoldrSym0%$fSuppressUnusedWarnings->UnfoldrSym0$fSingI->NonEmpty_Sym0'$fSuppressUnusedWarnings->NonEmpty_Sym0$fSingI->UnconsSym0$$fSuppressUnusedWarnings->UnconsSym0$fSingI->UnfoldSym1$fSingI->UnfoldSym0$$fSuppressUnusedWarnings->UnfoldSym0$$fSuppressUnusedWarnings->UnfoldSym1$fSingI->XorSym0!$fSuppressUnusedWarnings->XorSym0$fSingI->FmapSym1"$fSuppressUnusedWarnings->FmapSym1$fSingI->FmapSym0"$fSuppressUnusedWarnings->FmapSym0$fSingI->TransposeSym0'$fSuppressUnusedWarnings->TransposeSym06$fSuppressUnusedWarnings->Mzip_6989586621681109360Sym16$fSuppressUnusedWarnings->Mzip_6989586621681109360Sym0:$fSuppressUnusedWarnings->MzipWith_6989586621681109382Sym2:$fSuppressUnusedWarnings->MzipWith_6989586621681109382Sym1:$fSuppressUnusedWarnings->MzipWith_6989586621681109382Sym0$fPMonadZipNonEmpty8$fSuppressUnusedWarnings->Munzip_6989586621681109393Sym0 SIsString sFromString PIsString FromStringFromStringSym0FromStringSym1$fPIsStringSymbol($fSuppressUnusedWarnings->FromStringSym0$fPIsStringConst<$fSuppressUnusedWarnings->FromString_6989586621681200289Sym0$fPIsStringIdentity<$fSuppressUnusedWarnings->FromString_6989586621681200296Sym0$fSIsStringSymbol$fSingI->FromStringSym0$fSIsStringIdentity$fSIsStringConstOptional OptionalSym0 OptionalSym1 sOptional$fSApplicativeDown$fSApplicative(,)$fSingI->OptionalSym0&$fSuppressUnusedWarnings->OptionalSym06$fSuppressUnusedWarnings->Pure_6989586621681202656Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621681202669Sym1:$fSuppressUnusedWarnings->TFHelper_6989586621681202669Sym08$fSuppressUnusedWarnings->LiftA2_6989586621681202687Sym28$fSuppressUnusedWarnings->LiftA2_6989586621681202687Sym1$fPApplicative(,)8$fSuppressUnusedWarnings->LiftA2_6989586621681202687Sym06$fSuppressUnusedWarnings->Pure_6989586621681202698Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621681202709Sym1$fPApplicativeDown:$fSuppressUnusedWarnings->TFHelper_6989586621681202709Sym0FilterM<=<>=> MapAndUnzipMZipWithM ZipWithM_ ReplicateM ReplicateM_Unless<$!>Mfilter FilterMSym0 FilterMSym1 FilterMSym2<=<@#@$<=<@#@$$ <=<@#@$$$>=>@#@$>=>@#@$$ >=>@#@$$$MapAndUnzipMSym0MapAndUnzipMSym1MapAndUnzipMSym2 ZipWithMSym0 ZipWithMSym1 ZipWithMSym2 ZipWithMSym3 ZipWithM_Sym0 ZipWithM_Sym1 ZipWithM_Sym2 ZipWithM_Sym3ReplicateMSym0ReplicateMSym1ReplicateMSym2ReplicateM_Sym0ReplicateM_Sym1ReplicateM_Sym2 UnlessSym0 UnlessSym1 UnlessSym2<$!>@#@$ <$!>@#@$$ <$!>@#@$$$ MfilterSym0 MfilterSym1 MfilterSym2sMfilter%<$!>sUnless sReplicateM_ sReplicateM sZipWithM_ sZipWithM sMapAndUnzipM%>=>%<=<sFilterM $fSMonadDownQ$fSuppressUnusedWarnings->Let6989586621681211648Scrutinee_6989586621681211402Sym2Q$fSuppressUnusedWarnings->Let6989586621681211648Scrutinee_6989586621681211402Sym1Q$fSuppressUnusedWarnings->Let6989586621681211648Scrutinee_6989586621681211402Sym08$fSuppressUnusedWarnings->Lambda_6989586621681211645Sym28$fSuppressUnusedWarnings->Lambda_6989586621681211645Sym18$fSuppressUnusedWarnings->Lambda_6989586621681211645Sym05$fSuppressUnusedWarnings->Let6989586621681211668ZSym25$fSuppressUnusedWarnings->Let6989586621681211668ZSym15$fSuppressUnusedWarnings->Let6989586621681211668ZSym08$fSuppressUnusedWarnings->Lambda_6989586621681211665Sym28$fSuppressUnusedWarnings->Lambda_6989586621681211665Sym18$fSuppressUnusedWarnings->Lambda_6989586621681211665Sym08$fSuppressUnusedWarnings->Let6989586621681211691LoopSym28$fSuppressUnusedWarnings->Let6989586621681211691LoopSym18$fSuppressUnusedWarnings->Let6989586621681211691LoopSym08$fSuppressUnusedWarnings->Let6989586621681211710LoopSym28$fSuppressUnusedWarnings->Let6989586621681211710LoopSym18$fSuppressUnusedWarnings->Let6989586621681211710LoopSym08$fSuppressUnusedWarnings->Lambda_6989586621681211782Sym38$fSuppressUnusedWarnings->Lambda_6989586621681211782Sym28$fSuppressUnusedWarnings->Lambda_6989586621681211782Sym18$fSuppressUnusedWarnings->Lambda_6989586621681211782Sym08$fSuppressUnusedWarnings->Lambda_6989586621681211816Sym38$fSuppressUnusedWarnings->Lambda_6989586621681211816Sym28$fSuppressUnusedWarnings->Lambda_6989586621681211816Sym18$fSuppressUnusedWarnings->Lambda_6989586621681211816Sym08$fSuppressUnusedWarnings->Lambda_6989586621681211813Sym28$fSuppressUnusedWarnings->Lambda_6989586621681211813Sym18$fSuppressUnusedWarnings->Lambda_6989586621681211813Sym0$fSingI->MfilterSym1%$fSuppressUnusedWarnings->MfilterSym1$fSingI->MfilterSym0%$fSuppressUnusedWarnings->MfilterSym0$fSingI-><$!>@#@$$#$fSuppressUnusedWarnings-><$!>@#@$$$fSingI-><$!>@#@$"$fSuppressUnusedWarnings-><$!>@#@$$fSingI->UnlessSym1$$fSuppressUnusedWarnings->UnlessSym1$fSingI->UnlessSym0$$fSuppressUnusedWarnings->UnlessSym0$fSingI->ReplicateM_Sym1)$fSuppressUnusedWarnings->ReplicateM_Sym1$fSingI->ReplicateM_Sym0)$fSuppressUnusedWarnings->ReplicateM_Sym0$fSingI->ReplicateMSym1($fSuppressUnusedWarnings->ReplicateMSym1$fSingI->ReplicateMSym0($fSuppressUnusedWarnings->ReplicateMSym0$fSingI->FoldM_Sym2$$fSuppressUnusedWarnings->FoldM_Sym2$fSingI->FoldM_Sym1$$fSuppressUnusedWarnings->FoldM_Sym1$fSingI->FoldM_Sym0$$fSuppressUnusedWarnings->FoldM_Sym0$fSingI->FoldMSym2#$fSuppressUnusedWarnings->FoldMSym2$fSingI->FoldMSym1#$fSuppressUnusedWarnings->FoldMSym1$fSingI->FoldMSym0#$fSuppressUnusedWarnings->FoldMSym0$fSingI->ZipWithM_Sym2'$fSuppressUnusedWarnings->ZipWithM_Sym2$fSingI->ZipWithM_Sym1'$fSuppressUnusedWarnings->ZipWithM_Sym1$fSingI->ZipWithM_Sym0'$fSuppressUnusedWarnings->ZipWithM_Sym0$fSingI->ZipWithMSym2&$fSuppressUnusedWarnings->ZipWithMSym2$fSingI->ZipWithMSym1&$fSuppressUnusedWarnings->ZipWithMSym1$fSingI->ZipWithMSym0&$fSuppressUnusedWarnings->ZipWithMSym0$fSingI->MapAndUnzipMSym1*$fSuppressUnusedWarnings->MapAndUnzipMSym1$fSingI->MapAndUnzipMSym0*$fSuppressUnusedWarnings->MapAndUnzipMSym0$fSingI->>=>@#@$$$#$fSuppressUnusedWarnings->>=>@#@$$$$fSingI->>=>@#@$$"$fSuppressUnusedWarnings->>=>@#@$$$fSingI->>=>@#@$!$fSuppressUnusedWarnings->>=>@#@$$fSingI-><=<@#@$$$#$fSuppressUnusedWarnings-><=<@#@$$$$fSingI-><=<@#@$$"$fSuppressUnusedWarnings-><=<@#@$$$fSingI-><=<@#@$!$fSuppressUnusedWarnings-><=<@#@$$fSingI->FilterMSym1%$fSuppressUnusedWarnings->FilterMSym1$fSingI->FilterMSym0%$fSuppressUnusedWarnings->FilterMSym0Q$fSuppressUnusedWarnings->Let6989586621681211838Scrutinee_6989586621681211404Sym2Q$fSuppressUnusedWarnings->Let6989586621681211838Scrutinee_6989586621681211404Sym1Q$fSuppressUnusedWarnings->Let6989586621681211838Scrutinee_6989586621681211404Sym0 $fSMonad(,):$fSuppressUnusedWarnings->TFHelper_6989586621681211849Sym1 $fPMonad(,):$fSuppressUnusedWarnings->TFHelper_6989586621681211849Sym0:$fSuppressUnusedWarnings->TFHelper_6989586621681211861Sym1 $fPMonadDown:$fSuppressUnusedWarnings->TFHelper_6989586621681211861Sym0$fMonoidSomeSing$fSemigroupSomeSing $fNumSomeSing$fEnumSomeSing$fBoundedSomeSing $fOrdSomeSing $fEqSomeSing$fShowSomeSing@@@#@$@@@#@$$@@@#@$$$ ApplySym0 ApplySym1 ApplySym2~>@#@$~>@#@$$~>@#@$$$ KindOfSym0 KindOfSym1 SameKindSym0 SameKindSym1 SameKindSym2 DemoteSym0 DemoteSym1$$fSuppressUnusedWarnings->DemoteSym0&$fSuppressUnusedWarnings->SameKindSym1&$fSuppressUnusedWarnings->SameKindSym0$$fSuppressUnusedWarnings->KindOfSym0!$fSuppressUnusedWarnings->~>@#@$$ $fSuppressUnusedWarnings->~>@#@$#$fSuppressUnusedWarnings->ApplySym1#$fSuppressUnusedWarnings->ApplySym0!$fSuppressUnusedWarnings->@@@#@$$ $fSuppressUnusedWarnings->@@@#@$casessCases TypeErrorConvertPErrorMessage SErrorMessage PErrorMessage ErrorMessage ErrorMessage'TextShowType:<>::$$:SText SShowType:%<>::%$$:showErrorMessage typeError sTypeError$fSingIErrorMessage':$$:$fSingIErrorMessage':<>:$fSingIErrorMessage'ShowType$fSingIErrorMessage'Text$fSingKindErrorMessage' TypeErrorSym0 TypeErrorSym1:$$:@#@$ :$$:@#@$$ :$$:@#@$$$:<>:@#@$ :<>:@#@$$ :<>:@#@$$$ ShowTypeSym0 ShowTypeSym1TextSym0TextSym1$fSingI->TyCon1$fSingI->TyCon2$fSingI->TyCon3$fSingI->TyCon4$fSingI->TextSym0"$fSuppressUnusedWarnings->TextSym0$fSingI->ShowTypeSym0&$fSuppressUnusedWarnings->ShowTypeSym0$fSingI->:<>:@#@$$#$fSuppressUnusedWarnings->:<>:@#@$$$fSingI->:<>:@#@$"$fSuppressUnusedWarnings->:<>:@#@$$fSingI->:$$:@#@$$#$fSuppressUnusedWarnings->:$$:@#@$$$fSingI->:$$:@#@$"$fSuppressUnusedWarnings->:$$:@#@$$fSingI->TypeErrorSym0'$fSuppressUnusedWarnings->TypeErrorSym0 singletonStarGHC.BaseidBool GHC.MaybeNothing $fSingKind-> ApplyTyConDIDon'tInstantiate applySing8 applySing7 applySing6 applySing5 applySing4 applySing3 applySing2 GHC.ClassesEqDerivedShowDecl DerivedEqDecl DerivedDeclded_declded_type ded_mb_cxt ULetDecEnv ALetDecEnv LetDecEnv lde_bound_kvs lde_proms lde_infix lde_types lde_defns ULetDecRHS ALetDecRHS LetDecRHSUValue UFunctionAValue AFunctionIfAnn Unannotated AnnotatedAnnotationFlagADClauseADMatchADPatADWildPaADSigPaADBangPa ADTildePaADConPaADVarPaADLitPaADExpADSigEADLetEADCaseEADLamEADAppEADLitEADConEADVarE AInstDecl AClassDecl UInstDecl UClassDeclInstDeclid_methsid_sigs id_arg_tysid_nameid_cxt ClassDeclcd_ldecd_fdscd_tvbscd_namecd_cxt FamilyInfoClosedOpenTypeFamilyDeclgetTypeFamilyDeclClosedTypeFamilyDeclOpenTypeFamilyDecl TySynDeclDataDeclSingDSigPaInfos PromDPatInfosprom_dpat_sig_kvsprom_dpat_vars VarPromotions valueBinding typeBinding infixDeclemptyLetDecEnvbuildLetDecEnv qNewUniqueisInfixDataCon isDataConNameisUpcaseFalse predToTypeOth-desugar-1.9-6a6b3da8860218cad56d3b87db142e71439c71db72af9c2b5c4aa11d68dc4af7Language.Haskell.TH.Desugar.ASTDPredDType substType unfoldTypedsReifyTypeNameInfo!Language.Haskell.TH.Desugar.ReifylookupTypeNameWithLocalstemplate-haskellLanguage.Haskell.TH.SyntaxName Language.Haskell.TH.Desugar.CoredsReifyQWithAuxQWArunQWA basicTypesboundedBasicTypesenumBasicTypessemigroupBasicTypesmonoidBasicTypesqReportWarning qReportError checkForRepcheckForRepInDeclstysOfConFieldsextractNameArgsextractNameTypes extractNameupcase toUpcaseStrnoPrefix prefixConName prefixName suffixNameuniquePrefixesextractTvbKindextractTvbName tvbToTypeinferMaybeKindTVresultSigToMaybeKindravel countArgs noExactTyVars substKind substPred subst_tvbcuskifyfoldType foldTypeTvbsfoldPred foldPredTvbsbuildDataDTvbsfoldExpisFunTy orIfEmpty multiCase wrapDesugarcomp1comp2evalWithoutAux evalForAux evalForPair addBinding addElement concatMapMlistifyfstOf3liftFstliftSndsnocView partitionWithpartitionWithMpartitionLetDecs zipWith3M mapAndUnzip3M isHsLettersplitUnderscoresStringJustboolNameandName compareName minBoundName maxBoundNametyEqNamerepNamenilNameconsNamelistNametyFunArrowName applyName symbolNamenatName typeRepName stringNameeqNameordName boundedName orderingNamesingFamilyName singIName singMethName toSingName fromSingName demoteNamesingKindClassName sEqClassName sEqMethNamesIfName sconsNamesnilName strueNamesomeSingTypeNamesomeSingDataName sListNamesDecideClassNamesDecideMethName provedName disprovedNamereflName equalityName applySingNamesuppressClassNamesuppressMethodName thenCmpName sameKindNametyFromIntegerName tyNegateNamesFromIntegerName sNegateName errorName foldlName cmpEQName cmpLTName cmpGTNamesingletonsToEnumNamesingletonsFromEnumNameenumNamesingletonsEnumName equalsNameconstraintNameshowName showCharName showParenName showSpaceName showsPrecNameshowStringName showSingName composeNamegtNameshowCommaSpaceNametyFromStringNamesFromStringName foldableName foldMapName memptyName mappendName foldrName functorNamefmapName replaceNametraversableName traverseNamepureNameapName liftA2NamesingPkg mk_name_tc mk_name_d mk_name_vmkTupleTypeNamemkTupleDataNamepromoteValNameLhspromoteValNameLhsPrefix promoteValRhs promoteTySympromoteClassNamemkTyName mkTyConName falseTySym trueTySymboolKiandTySymsingDataConName singTyConName singClassName singValName singFamilysingKindConstraintapplymkListE foldApplymkEqPredmodifyConNameDPred singInfixDeclsingFixityDeclarationsingFixityDeclarations promoteTypepromoteUnraveledLetBindPrM allLocalsemitDecs emitDecsM lambdaBindletBind lookupVarE forallBindallBoundKindVarspromoteM promoteM_ promoteMDecsSgMbindLets bindContext askContext lookupConE wrapSingFun wrapUnSingFunsingM singDecsMsingTypesingPred singPredRecmkEqTypeInstance defunInfodefunTypeDeclsbuildDefunSymsbuildDefunSymsClosedTypeFamilyDbuildDefunSymsOpenTypeFamilyDbuildDefunSymsTypeFamilyHeadbuildDefunSymsTySynDbuildDefunSymsDataDdefunReifyFixitydefunctionalize dropTvbKindbuildTyFunArrowbuildTyFunArrow_maybe ravelTyFun singDefuns singDataDsingCtorft_trivft_var ft_ty_app ft_bad_app ft_forallisNonVanillaDataTypeGHC.EnumEnumfunctorLikeTraverse FFoldTypeFT DerivDescisTyFamilyNamefunctorLikeValidityChecksdeepSubtypesContainingfoldDataConArgsgetDVarTName_maybe mkSimpleLam mkSimpleLam2mkSimpleConClauseisFunctorLikeClassNameinferConstraintsinferConstraintsDefmkEqualityInstanceEqualityClassDesc sEqClassDescsDecideClassDescmkEqMethClausemkEmptyEqMethClausemkDecideMethClausemkEmptyDecideMethClausemkTraversableInstanceparenInfixConNamemkShowSingContextShowmkShowInstance mkOrdInstancemkFoldableInstanceReplacer ImmediateNestedreplacemkFunctorInstancemkEnumInstancemkBoundedInstance partitionDecsOrdpartitionDerivingPartitionedDecsPDecspd_derived_show_decspd_derived_eq_decspd_closed_type_family_decspd_open_type_family_decspd_ty_syn_decs pd_data_decspd_instance_decs pd_class_decs pd_let_decs partitionDecpartitionClassDecpartitionInstanceDecisStockOrDefault promoteMethodpromoteInstance promoteInfo promoteDecspromoteDataDecspromoteLetDecspromoteDataDecpromoteClassDecpromoteInstanceDecpromoteLetDecEnvpromoteInfixDeclpromoteLetDecRHS promoteClause promoteMatch promotePat promoteExp promoteLitExp promoteLitPatpromoteDerivedEqDecshowSingInstancesshowSingInstance mkSigPaCaseE singMatchsingEqualityInstancesingInfosingTopLevelDecs buildDataLets buildMethLets singClassD singInstD singLetDecEnv singTySig singLetDecRHS singClausesingPatsingExpsingDerivedEqDecs sEqToSDecidesingDerivedShowDecs isExceptionsingLit maybeSigTIdentitySym0KindInferenceRunIdentitySym0KindInferenceTuple7Sym0KindInferenceTuple7Sym1KindInferenceTuple7Sym2KindInferenceTuple7Sym3KindInferenceTuple7Sym4KindInferenceTuple7Sym5KindInferenceTuple7Sym6KindInferenceTuple6Sym0KindInferenceTuple6Sym1KindInferenceTuple6Sym2KindInferenceTuple6Sym3KindInferenceTuple6Sym4KindInferenceTuple6Sym5KindInferenceTuple5Sym0KindInferenceTuple5Sym1KindInferenceTuple5Sym2KindInferenceTuple5Sym3KindInferenceTuple5Sym4KindInferenceTuple4Sym0KindInferenceTuple4Sym1KindInferenceTuple4Sym2KindInferenceTuple4Sym3KindInferenceTuple3Sym0KindInferenceTuple3Sym1KindInferenceTuple3Sym2KindInferenceTuple2Sym0KindInferenceTuple2Sym1KindInference ::|@#@$### ::|@#@$$###RightSym0KindInferenceLeftSym0KindInference ::@#@$### ::@#@$$###JustSym0KindInferenceFoldlSym0KindInferenceFoldlSym1KindInferenceFoldlSym2KindInferenceLet6989586621679322372LgoLet6989586621679322372LgoSym0*Let6989586621679322372LgoSym0KindInferenceLet6989586621679322372LgoSym1*Let6989586621679322372LgoSym1KindInferenceLet6989586621679322372LgoSym2*Let6989586621679322372LgoSym2KindInferenceLet6989586621679322372LgoSym3*Let6989586621679322372LgoSym3KindInferenceLet6989586621679322372LgoSym4*Let6989586621679322372LgoSym4KindInferenceLet6989586621679322372LgoSym5TrueData.Typeable.Internal SomeTypeRepTypeRepGHC.PrimTYPE RuntimeRep D:R:SingTYPE0TypeGHC.ErrerrorerrorWithoutStackTrace undefinedCmpNatGHC.NumNumgenLog2Lambda_6989586621679545224Lambda_6989586621679545227Lambda_6989586621679545257Lambda_6989586621679545260Lambda_6989586621679545263Lambda_6989586621679545266Lambda_6989586621679545269Lambda_6989586621679545337Lambda_6989586621679545340Lambda_6989586621679545343Lambda_6989586621679545346Lambda_6989586621679545395Lambda_6989586621679545398Lambda_6989586621679545401Lambda_6989586621679545434Lambda_6989586621679545437Lambda_6989586621679545457Case_6989586621679545470Lambda_6989586621679545510TFHelper_6989586621679545540TFHelper_6989586621679545576LiftA2_6989586621679545594TFHelper_6989586621679545607TFHelper_6989586621679545623Lambda_6989586621679545645Case_6989586621679545648TFHelper_6989586621679545657Return_6989586621679545667Fail_6989586621679545674Mzero_6989586621679545685Mplus_6989586621679545699Fmap_6989586621679608136Lambda_6989586621679608147TFHelper_6989586621679608156Fmap_6989586621679608169Lambda_6989586621679608180TFHelper_6989586621679608190Fmap_6989586621679608204Lambda_6989586621679608216TFHelper_6989586621679608226Lambda_6989586621679608236Fmap_6989586621679608247Lambda_6989586621679608257Lambda_6989586621679608266TFHelper_6989586621679608275Pure_6989586621679608285TFHelper_6989586621679608297LiftA2_6989586621679608313TFHelper_6989586621679608327Pure_6989586621679608335TFHelper_6989586621679608350LiftA2_6989586621679608372Pure_6989586621679608381TFHelper_6989586621679608396LiftA2_6989586621679608418TFHelper_6989586621679608435Pure_6989586621679608445TFHelper_6989586621679608457TFHelper_6989586621679608469TFHelper_6989586621679608485Fail_6989586621679608492Case_6989586621679608519Case_6989586621679608526TFHelper_6989586621679608538TFHelper_6989586621679608550Fail_6989586621679608557TFHelper_6989586621679608569Empty_6989586621679608573TFHelper_6989586621679608585Empty_6989586621679608589TFHelper_6989586621679608603Mplus_6989586621679545699Sym0*Mplus_6989586621679545699Sym0KindInferenceMplus_6989586621679545699Sym1*Mplus_6989586621679545699Sym1KindInferenceMplus_6989586621679545699Sym2Mzero_6989586621679545685Sym0MplusSym0KindInferenceMplusSym1KindInference :<|>@#@$### :<|>@#@$$###Fail_6989586621679545674Sym0)Fail_6989586621679545674Sym0KindInferenceFail_6989586621679545674Sym1Return_6989586621679545667Sym0+Return_6989586621679545667Sym0KindInferenceReturn_6989586621679545667Sym1 TFHelper_6989586621679545657Sym0-TFHelper_6989586621679545657Sym0KindInference TFHelper_6989586621679545657Sym1-TFHelper_6989586621679545657Sym1KindInference TFHelper_6989586621679545657Sym2Lambda_6989586621679545645Sym0+Lambda_6989586621679545645Sym0KindInferenceLambda_6989586621679545645Sym1+Lambda_6989586621679545645Sym1KindInferenceLambda_6989586621679545645Sym2+Lambda_6989586621679545645Sym2KindInferenceLambda_6989586621679545645Sym3FailSym0KindInferenceReturnSym0KindInference :>>@#@$### :>>@#@$$### :>>=@#@$### :>>=@#@$$### TFHelper_6989586621679545623Sym0-TFHelper_6989586621679545623Sym0KindInference TFHelper_6989586621679545623Sym1-TFHelper_6989586621679545623Sym1KindInference TFHelper_6989586621679545623Sym2 TFHelper_6989586621679545607Sym0-TFHelper_6989586621679545607Sym0KindInference TFHelper_6989586621679545607Sym1-TFHelper_6989586621679545607Sym1KindInference TFHelper_6989586621679545607Sym2LiftA2_6989586621679545594Sym0+LiftA2_6989586621679545594Sym0KindInferenceLiftA2_6989586621679545594Sym1+LiftA2_6989586621679545594Sym1KindInferenceLiftA2_6989586621679545594Sym2+LiftA2_6989586621679545594Sym2KindInferenceLiftA2_6989586621679545594Sym3 TFHelper_6989586621679545576Sym0-TFHelper_6989586621679545576Sym0KindInference TFHelper_6989586621679545576Sym1-TFHelper_6989586621679545576Sym1KindInference TFHelper_6989586621679545576Sym2 :<*@#@$### :<*@#@$$### :*>@#@$### :*>@#@$$###LiftA2Sym0KindInferenceLiftA2Sym1KindInferenceLiftA2Sym2KindInference :<*>@#@$### :<*>@#@$$###PureSym0KindInference TFHelper_6989586621679545540Sym0-TFHelper_6989586621679545540Sym0KindInference TFHelper_6989586621679545540Sym1-TFHelper_6989586621679545540Sym1KindInference TFHelper_6989586621679545540Sym2 :<$@#@$### :<$@#@$$###FmapSym0KindInferenceFmapSym1KindInference :<**>@#@$### :<**>@#@$$###LiftASym0KindInferenceLiftASym1KindInferenceLiftA3Sym0KindInferenceLiftA3Sym1KindInferenceLiftA3Sym2KindInferenceLiftA3Sym3KindInference LiftA3Sym4JoinSym0KindInference :=<<@#@$### :=<<@#@$$###WhenSym0KindInferenceWhenSym1KindInferenceLiftMSym0KindInferenceLiftMSym1KindInferenceLiftM2Sym0KindInferenceLiftM2Sym1KindInferenceLiftM2Sym2KindInferenceLiftM3Sym0KindInferenceLiftM3Sym1KindInferenceLiftM3Sym2KindInferenceLiftM3Sym3KindInferenceLiftM4Sym0KindInferenceLiftM4Sym1KindInferenceLiftM4Sym2KindInferenceLiftM4Sym3KindInferenceLiftM4Sym4KindInferenceLiftM5Sym0KindInferenceLiftM5Sym1KindInferenceLiftM5Sym2KindInferenceLiftM5Sym3KindInferenceLiftM5Sym4KindInferenceLiftM5Sym5KindInferenceApSym0KindInferenceApSym1KindInferenceGuardSym0KindInferenceLambda_6989586621679545510Sym0+Lambda_6989586621679545510Sym0KindInferenceLambda_6989586621679545510Sym1+Lambda_6989586621679545510Sym1KindInferenceLambda_6989586621679545510Sym2+Lambda_6989586621679545510Sym2KindInferenceLambda_6989586621679545510Sym3+Lambda_6989586621679545510Sym3KindInferenceLambda_6989586621679545510Sym4Lambda_6989586621679545457Sym0+Lambda_6989586621679545457Sym0KindInferenceLambda_6989586621679545457Sym1+Lambda_6989586621679545457Sym1KindInferenceLambda_6989586621679545457Sym2+Lambda_6989586621679545457Sym2KindInferenceLambda_6989586621679545457Sym3Lambda_6989586621679545434Sym0+Lambda_6989586621679545434Sym0KindInferenceLambda_6989586621679545434Sym1+Lambda_6989586621679545434Sym1KindInferenceLambda_6989586621679545434Sym2+Lambda_6989586621679545434Sym2KindInferenceLambda_6989586621679545434Sym3+Lambda_6989586621679545434Sym3KindInferenceLambda_6989586621679545434Sym4Lambda_6989586621679545437Sym0+Lambda_6989586621679545437Sym0KindInferenceLambda_6989586621679545437Sym1+Lambda_6989586621679545437Sym1KindInferenceLambda_6989586621679545437Sym2+Lambda_6989586621679545437Sym2KindInferenceLambda_6989586621679545437Sym3+Lambda_6989586621679545437Sym3KindInferenceLambda_6989586621679545437Sym4+Lambda_6989586621679545437Sym4KindInferenceLambda_6989586621679545437Sym5Lambda_6989586621679545395Sym0+Lambda_6989586621679545395Sym0KindInferenceLambda_6989586621679545395Sym1+Lambda_6989586621679545395Sym1KindInferenceLambda_6989586621679545395Sym2+Lambda_6989586621679545395Sym2KindInferenceLambda_6989586621679545395Sym3+Lambda_6989586621679545395Sym3KindInferenceLambda_6989586621679545395Sym4+Lambda_6989586621679545395Sym4KindInferenceLambda_6989586621679545395Sym5Lambda_6989586621679545398Sym0+Lambda_6989586621679545398Sym0KindInferenceLambda_6989586621679545398Sym1+Lambda_6989586621679545398Sym1KindInferenceLambda_6989586621679545398Sym2+Lambda_6989586621679545398Sym2KindInferenceLambda_6989586621679545398Sym3+Lambda_6989586621679545398Sym3KindInferenceLambda_6989586621679545398Sym4+Lambda_6989586621679545398Sym4KindInferenceLambda_6989586621679545398Sym5+Lambda_6989586621679545398Sym5KindInferenceLambda_6989586621679545398Sym6Lambda_6989586621679545401Sym0+Lambda_6989586621679545401Sym0KindInferenceLambda_6989586621679545401Sym1+Lambda_6989586621679545401Sym1KindInferenceLambda_6989586621679545401Sym2+Lambda_6989586621679545401Sym2KindInferenceLambda_6989586621679545401Sym3+Lambda_6989586621679545401Sym3KindInferenceLambda_6989586621679545401Sym4+Lambda_6989586621679545401Sym4KindInferenceLambda_6989586621679545401Sym5+Lambda_6989586621679545401Sym5KindInferenceLambda_6989586621679545401Sym6+Lambda_6989586621679545401Sym6KindInferenceLambda_6989586621679545401Sym7Lambda_6989586621679545337Sym0+Lambda_6989586621679545337Sym0KindInferenceLambda_6989586621679545337Sym1+Lambda_6989586621679545337Sym1KindInferenceLambda_6989586621679545337Sym2+Lambda_6989586621679545337Sym2KindInferenceLambda_6989586621679545337Sym3+Lambda_6989586621679545337Sym3KindInferenceLambda_6989586621679545337Sym4+Lambda_6989586621679545337Sym4KindInferenceLambda_6989586621679545337Sym5+Lambda_6989586621679545337Sym5KindInferenceLambda_6989586621679545337Sym6Lambda_6989586621679545340Sym0+Lambda_6989586621679545340Sym0KindInferenceLambda_6989586621679545340Sym1+Lambda_6989586621679545340Sym1KindInferenceLambda_6989586621679545340Sym2+Lambda_6989586621679545340Sym2KindInferenceLambda_6989586621679545340Sym3+Lambda_6989586621679545340Sym3KindInferenceLambda_6989586621679545340Sym4+Lambda_6989586621679545340Sym4KindInferenceLambda_6989586621679545340Sym5+Lambda_6989586621679545340Sym5KindInferenceLambda_6989586621679545340Sym6+Lambda_6989586621679545340Sym6KindInferenceLambda_6989586621679545340Sym7Lambda_6989586621679545343Sym0+Lambda_6989586621679545343Sym0KindInferenceLambda_6989586621679545343Sym1+Lambda_6989586621679545343Sym1KindInferenceLambda_6989586621679545343Sym2+Lambda_6989586621679545343Sym2KindInferenceLambda_6989586621679545343Sym3+Lambda_6989586621679545343Sym3KindInferenceLambda_6989586621679545343Sym4+Lambda_6989586621679545343Sym4KindInferenceLambda_6989586621679545343Sym5+Lambda_6989586621679545343Sym5KindInferenceLambda_6989586621679545343Sym6+Lambda_6989586621679545343Sym6KindInferenceLambda_6989586621679545343Sym7+Lambda_6989586621679545343Sym7KindInferenceLambda_6989586621679545343Sym8Lambda_6989586621679545346Sym0+Lambda_6989586621679545346Sym0KindInferenceLambda_6989586621679545346Sym1+Lambda_6989586621679545346Sym1KindInferenceLambda_6989586621679545346Sym2+Lambda_6989586621679545346Sym2KindInferenceLambda_6989586621679545346Sym3+Lambda_6989586621679545346Sym3KindInferenceLambda_6989586621679545346Sym4+Lambda_6989586621679545346Sym4KindInferenceLambda_6989586621679545346Sym5+Lambda_6989586621679545346Sym5KindInferenceLambda_6989586621679545346Sym6+Lambda_6989586621679545346Sym6KindInferenceLambda_6989586621679545346Sym7+Lambda_6989586621679545346Sym7KindInferenceLambda_6989586621679545346Sym8+Lambda_6989586621679545346Sym8KindInferenceLambda_6989586621679545346Sym9Lambda_6989586621679545257Sym0+Lambda_6989586621679545257Sym0KindInferenceLambda_6989586621679545257Sym1+Lambda_6989586621679545257Sym1KindInferenceLambda_6989586621679545257Sym2+Lambda_6989586621679545257Sym2KindInferenceLambda_6989586621679545257Sym3+Lambda_6989586621679545257Sym3KindInferenceLambda_6989586621679545257Sym4+Lambda_6989586621679545257Sym4KindInferenceLambda_6989586621679545257Sym5+Lambda_6989586621679545257Sym5KindInferenceLambda_6989586621679545257Sym6+Lambda_6989586621679545257Sym6KindInferenceLambda_6989586621679545257Sym7Lambda_6989586621679545260Sym0+Lambda_6989586621679545260Sym0KindInferenceLambda_6989586621679545260Sym1+Lambda_6989586621679545260Sym1KindInferenceLambda_6989586621679545260Sym2+Lambda_6989586621679545260Sym2KindInferenceLambda_6989586621679545260Sym3+Lambda_6989586621679545260Sym3KindInferenceLambda_6989586621679545260Sym4+Lambda_6989586621679545260Sym4KindInferenceLambda_6989586621679545260Sym5+Lambda_6989586621679545260Sym5KindInferenceLambda_6989586621679545260Sym6+Lambda_6989586621679545260Sym6KindInferenceLambda_6989586621679545260Sym7+Lambda_6989586621679545260Sym7KindInferenceLambda_6989586621679545260Sym8Lambda_6989586621679545263Sym0+Lambda_6989586621679545263Sym0KindInferenceLambda_6989586621679545263Sym1+Lambda_6989586621679545263Sym1KindInferenceLambda_6989586621679545263Sym2+Lambda_6989586621679545263Sym2KindInferenceLambda_6989586621679545263Sym3+Lambda_6989586621679545263Sym3KindInferenceLambda_6989586621679545263Sym4+Lambda_6989586621679545263Sym4KindInferenceLambda_6989586621679545263Sym5+Lambda_6989586621679545263Sym5KindInferenceLambda_6989586621679545263Sym6+Lambda_6989586621679545263Sym6KindInferenceLambda_6989586621679545263Sym7+Lambda_6989586621679545263Sym7KindInferenceLambda_6989586621679545263Sym8+Lambda_6989586621679545263Sym8KindInferenceLambda_6989586621679545263Sym9Lambda_6989586621679545266Sym0+Lambda_6989586621679545266Sym0KindInferenceLambda_6989586621679545266Sym1+Lambda_6989586621679545266Sym1KindInferenceLambda_6989586621679545266Sym2+Lambda_6989586621679545266Sym2KindInferenceLambda_6989586621679545266Sym3+Lambda_6989586621679545266Sym3KindInferenceLambda_6989586621679545266Sym4+Lambda_6989586621679545266Sym4KindInferenceLambda_6989586621679545266Sym5+Lambda_6989586621679545266Sym5KindInferenceLambda_6989586621679545266Sym6+Lambda_6989586621679545266Sym6KindInferenceLambda_6989586621679545266Sym7+Lambda_6989586621679545266Sym7KindInferenceLambda_6989586621679545266Sym8+Lambda_6989586621679545266Sym8KindInferenceLambda_6989586621679545266Sym9+Lambda_6989586621679545266Sym9KindInferenceLambda_6989586621679545266Sym10Lambda_6989586621679545269Sym0+Lambda_6989586621679545269Sym0KindInferenceLambda_6989586621679545269Sym1+Lambda_6989586621679545269Sym1KindInferenceLambda_6989586621679545269Sym2+Lambda_6989586621679545269Sym2KindInferenceLambda_6989586621679545269Sym3+Lambda_6989586621679545269Sym3KindInferenceLambda_6989586621679545269Sym4+Lambda_6989586621679545269Sym4KindInferenceLambda_6989586621679545269Sym5+Lambda_6989586621679545269Sym5KindInferenceLambda_6989586621679545269Sym6+Lambda_6989586621679545269Sym6KindInferenceLambda_6989586621679545269Sym7+Lambda_6989586621679545269Sym7KindInferenceLambda_6989586621679545269Sym8+Lambda_6989586621679545269Sym8KindInferenceLambda_6989586621679545269Sym9+Lambda_6989586621679545269Sym9KindInferenceLambda_6989586621679545269Sym10,Lambda_6989586621679545269Sym10KindInferenceLambda_6989586621679545269Sym11Lambda_6989586621679545224Sym0+Lambda_6989586621679545224Sym0KindInferenceLambda_6989586621679545224Sym1+Lambda_6989586621679545224Sym1KindInferenceLambda_6989586621679545224Sym2+Lambda_6989586621679545224Sym2KindInferenceLambda_6989586621679545224Sym3Lambda_6989586621679545227Sym0+Lambda_6989586621679545227Sym0KindInferenceLambda_6989586621679545227Sym1+Lambda_6989586621679545227Sym1KindInferenceLambda_6989586621679545227Sym2+Lambda_6989586621679545227Sym2KindInferenceLambda_6989586621679545227Sym3+Lambda_6989586621679545227Sym3KindInferenceLambda_6989586621679545227Sym4 TFHelper_6989586621679608603Sym0-TFHelper_6989586621679608603Sym0KindInference TFHelper_6989586621679608603Sym1-TFHelper_6989586621679608603Sym1KindInference TFHelper_6989586621679608603Sym2Empty_6989586621679608589Sym0 TFHelper_6989586621679608585Sym0-TFHelper_6989586621679608585Sym0KindInference TFHelper_6989586621679608585Sym1-TFHelper_6989586621679608585Sym1KindInference TFHelper_6989586621679608585Sym2Let6989586621679608581LLet6989586621679608581LSym0(Let6989586621679608581LSym0KindInferenceLet6989586621679608581LSym1Empty_6989586621679608573Sym0 TFHelper_6989586621679608569Sym0-TFHelper_6989586621679608569Sym0KindInference TFHelper_6989586621679608569Sym1-TFHelper_6989586621679608569Sym1KindInference TFHelper_6989586621679608569Sym2Fail_6989586621679608557Sym0)Fail_6989586621679608557Sym0KindInferenceFail_6989586621679608557Sym1 TFHelper_6989586621679608550Sym0-TFHelper_6989586621679608550Sym0KindInference TFHelper_6989586621679608550Sym1-TFHelper_6989586621679608550Sym1KindInference TFHelper_6989586621679608550Sym2 TFHelper_6989586621679608538Sym0-TFHelper_6989586621679608538Sym0KindInference TFHelper_6989586621679608538Sym1-TFHelper_6989586621679608538Sym1KindInference TFHelper_6989586621679608538Sym2+Let6989586621679608502X_6989586621679608503Let6989586621679608502BsLet6989586621679608502BLet6989586621679608502Bs'Let6989586621679608502ToList/Let6989586621679608502X_6989586621679608503Sym0@#@$### :<>@#@$$###WrapMonoidSym0KindInference UnwrapMonoidUnwrapMonoidSym0KindInferenceLastSym0KindInferenceGetLastSym0KindInferenceFirstSym0KindInferenceGetFirstSym0KindInferenceMaxSym0KindInferenceGetMaxSym0KindInferenceMinSym0KindInferenceGetMinSym0KindInferenceProductSym0KindInferenceGetProductSym0KindInferenceSumSym0KindInferenceGetSumSym0KindInferenceAnySym0KindInferenceGetAnySym0KindInferenceAllSym0KindInferenceGetAllSym0KindInferenceDualSym0KindInferenceGetDualSym0KindInferenceOptionSym0KindInferenceGetOptionSym0KindInference MaxBound_6989586621679825615Sym0 MinBound_6989586621679825613Sym0 MaxBound_6989586621679825608Sym0 MinBound_6989586621679825606Sym0 MaxBound_6989586621679825601Sym0 MinBound_6989586621679825599Sym0 MaxBound_6989586621679825594Sym0 MinBound_6989586621679825592Sym0 MaxBound_6989586621679825587Sym0 MinBound_6989586621679825585Sym0 MaxBound_6989586621679825580Sym0 MinBound_6989586621679825578Sym0 MaxBound_6989586621679825573Sym0 MinBound_6989586621679825571Sym0 MaxBound_6989586621679825566Sym0 MinBound_6989586621679825564Sym0 MaxBound_6989586621679825562Sym0 MinBound_6989586621679825560Sym0 MaxBound_6989586621679825558Sym0 MinBound_6989586621679825556Sym0Compare_6989586621679829842Sym0,Compare_6989586621679829842Sym0KindInferenceCompare_6989586621679829842Sym1,Compare_6989586621679829842Sym1KindInferenceCompare_6989586621679829842Sym2Compare_6989586621679829821Sym0,Compare_6989586621679829821Sym0KindInferenceCompare_6989586621679829821Sym1,Compare_6989586621679829821Sym1KindInferenceCompare_6989586621679829821Sym2Compare_6989586621679829800Sym0,Compare_6989586621679829800Sym0KindInferenceCompare_6989586621679829800Sym1,Compare_6989586621679829800Sym1KindInferenceCompare_6989586621679829800Sym2Compare_6989586621679829779Sym0,Compare_6989586621679829779Sym0KindInferenceCompare_6989586621679829779Sym1,Compare_6989586621679829779Sym1KindInferenceCompare_6989586621679829779Sym2Compare_6989586621679829758Sym0,Compare_6989586621679829758Sym0KindInferenceCompare_6989586621679829758Sym1,Compare_6989586621679829758Sym1KindInferenceCompare_6989586621679829758Sym2Compare_6989586621679829737Sym0,Compare_6989586621679829737Sym0KindInferenceCompare_6989586621679829737Sym1,Compare_6989586621679829737Sym1KindInferenceCompare_6989586621679829737Sym2Compare_6989586621679829716Sym0,Compare_6989586621679829716Sym0KindInferenceCompare_6989586621679829716Sym1,Compare_6989586621679829716Sym1KindInferenceCompare_6989586621679829716Sym2Compare_6989586621679829695Sym0,Compare_6989586621679829695Sym0KindInferenceCompare_6989586621679829695Sym1,Compare_6989586621679829695Sym1KindInferenceCompare_6989586621679829695Sym2Compare_6989586621679829677Sym0,Compare_6989586621679829677Sym0KindInferenceCompare_6989586621679829677Sym1,Compare_6989586621679829677Sym1KindInferenceCompare_6989586621679829677Sym2Compare_6989586621679829659Sym0,Compare_6989586621679829659Sym0KindInferenceCompare_6989586621679829659Sym1,Compare_6989586621679829659Sym1KindInferenceCompare_6989586621679829659Sym2Compare_6989586621679829638Sym0,Compare_6989586621679829638Sym0KindInferenceCompare_6989586621679829638Sym1,Compare_6989586621679829638Sym1KindInferenceCompare_6989586621679829638Sym2Max_Min_#FromInteger_6989586621679838370Sym00FromInteger_6989586621679838370Sym0KindInference#FromInteger_6989586621679838370Sym1Signum_6989586621679838363Sym0+Signum_6989586621679838363Sym0KindInferenceSignum_6989586621679838363Sym1Abs_6989586621679838356Sym0(Abs_6989586621679838356Sym0KindInferenceAbs_6989586621679838356Sym1Negate_6989586621679838349Sym0+Negate_6989586621679838349Sym0KindInferenceNegate_6989586621679838349Sym1 TFHelper_6989586621679838341Sym0-TFHelper_6989586621679838341Sym0KindInference TFHelper_6989586621679838341Sym1-TFHelper_6989586621679838341Sym1KindInference TFHelper_6989586621679838341Sym2 TFHelper_6989586621679838329Sym0-TFHelper_6989586621679838329Sym0KindInference TFHelper_6989586621679838329Sym1-TFHelper_6989586621679838329Sym1KindInference TFHelper_6989586621679838329Sym2 TFHelper_6989586621679838317Sym0-TFHelper_6989586621679838317Sym0KindInference TFHelper_6989586621679838317Sym1-TFHelper_6989586621679838317Sym1KindInference TFHelper_6989586621679838317Sym2 TFHelper_6989586621679838305Sym0-TFHelper_6989586621679838305Sym0KindInference TFHelper_6989586621679838305Sym1-TFHelper_6989586621679838305Sym1KindInference TFHelper_6989586621679838305Sym2 TFHelper_6989586621679838293Sym0-TFHelper_6989586621679838293Sym0KindInference TFHelper_6989586621679838293Sym1-TFHelper_6989586621679838293Sym1KindInference TFHelper_6989586621679838293Sym2 TFHelper_6989586621679838281Sym0-TFHelper_6989586621679838281Sym0KindInference TFHelper_6989586621679838281Sym1-TFHelper_6989586621679838281Sym1KindInference TFHelper_6989586621679838281Sym2Lambda_6989586621679838272Sym0+Lambda_6989586621679838272Sym0KindInferenceLambda_6989586621679838272Sym1+Lambda_6989586621679838272Sym1KindInferenceLambda_6989586621679838272Sym2+Lambda_6989586621679838272Sym2KindInferenceLambda_6989586621679838272Sym3Fmap_6989586621679838262Sym0)Fmap_6989586621679838262Sym0KindInferenceFmap_6989586621679838262Sym1)Fmap_6989586621679838262Sym1KindInferenceFmap_6989586621679838262Sym2 TFHelper_6989586621679838250Sym0-TFHelper_6989586621679838250Sym0KindInference TFHelper_6989586621679838250Sym1-TFHelper_6989586621679838250Sym1KindInference TFHelper_6989586621679838250Sym2Pure_6989586621679838239Sym0)Pure_6989586621679838239Sym0KindInferencePure_6989586621679838239Sym1#FromInteger_6989586621679838230Sym00FromInteger_6989586621679838230Sym0KindInference#FromInteger_6989586621679838230Sym1Signum_6989586621679838223Sym0+Signum_6989586621679838223Sym0KindInferenceSignum_6989586621679838223Sym1Abs_6989586621679838216Sym0(Abs_6989586621679838216Sym0KindInferenceAbs_6989586621679838216Sym1Negate_6989586621679838209Sym0+Negate_6989586621679838209Sym0KindInferenceNegate_6989586621679838209Sym1 TFHelper_6989586621679838201Sym0-TFHelper_6989586621679838201Sym0KindInference TFHelper_6989586621679838201Sym1-TFHelper_6989586621679838201Sym1KindInference TFHelper_6989586621679838201Sym2 TFHelper_6989586621679838189Sym0-TFHelper_6989586621679838189Sym0KindInference TFHelper_6989586621679838189Sym1-TFHelper_6989586621679838189Sym1KindInference TFHelper_6989586621679838189Sym2 TFHelper_6989586621679838177Sym0-TFHelper_6989586621679838177Sym0KindInference TFHelper_6989586621679838177Sym1-TFHelper_6989586621679838177Sym1KindInference TFHelper_6989586621679838177Sym2 TFHelper_6989586621679838165Sym0-TFHelper_6989586621679838165Sym0KindInference TFHelper_6989586621679838165Sym1-TFHelper_6989586621679838165Sym1KindInference TFHelper_6989586621679838165Sym2 TFHelper_6989586621679838153Sym0-TFHelper_6989586621679838153Sym0KindInference TFHelper_6989586621679838153Sym1-TFHelper_6989586621679838153Sym1KindInference TFHelper_6989586621679838153Sym2 TFHelper_6989586621679838141Sym0-TFHelper_6989586621679838141Sym0KindInference TFHelper_6989586621679838141Sym1-TFHelper_6989586621679838141Sym1KindInference TFHelper_6989586621679838141Sym2Lambda_6989586621679838132Sym0+Lambda_6989586621679838132Sym0KindInferenceLambda_6989586621679838132Sym1+Lambda_6989586621679838132Sym1KindInferenceLambda_6989586621679838132Sym2+Lambda_6989586621679838132Sym2KindInferenceLambda_6989586621679838132Sym3Fmap_6989586621679838122Sym0)Fmap_6989586621679838122Sym0KindInferenceFmap_6989586621679838122Sym1)Fmap_6989586621679838122Sym1KindInferenceFmap_6989586621679838122Sym2 TFHelper_6989586621679838110Sym0-TFHelper_6989586621679838110Sym0KindInference TFHelper_6989586621679838110Sym1-TFHelper_6989586621679838110Sym1KindInference TFHelper_6989586621679838110Sym2Pure_6989586621679838099Sym0)Pure_6989586621679838099Sym0KindInferencePure_6989586621679838099Sym1 TFHelper_6989586621679838089Sym0-TFHelper_6989586621679838089Sym0KindInference TFHelper_6989586621679838089Sym1-TFHelper_6989586621679838089Sym1KindInference TFHelper_6989586621679838089Sym2 TFHelper_6989586621679838077Sym0-TFHelper_6989586621679838077Sym0KindInference TFHelper_6989586621679838077Sym1-TFHelper_6989586621679838077Sym1KindInference TFHelper_6989586621679838077Sym2 TFHelper_6989586621679838065Sym0-TFHelper_6989586621679838065Sym0KindInference TFHelper_6989586621679838065Sym1-TFHelper_6989586621679838065Sym1KindInference TFHelper_6989586621679838065Sym2 TFHelper_6989586621679838053Sym0-TFHelper_6989586621679838053Sym0KindInference TFHelper_6989586621679838053Sym1-TFHelper_6989586621679838053Sym1KindInference TFHelper_6989586621679838053Sym2 TFHelper_6989586621679838041Sym0-TFHelper_6989586621679838041Sym0KindInference TFHelper_6989586621679838041Sym1-TFHelper_6989586621679838041Sym1KindInference TFHelper_6989586621679838041Sym2Lambda_6989586621679838032Sym0+Lambda_6989586621679838032Sym0KindInferenceLambda_6989586621679838032Sym1+Lambda_6989586621679838032Sym1KindInferenceLambda_6989586621679838032Sym2+Lambda_6989586621679838032Sym2KindInferenceLambda_6989586621679838032Sym3Fmap_6989586621679838022Sym0)Fmap_6989586621679838022Sym0KindInferenceFmap_6989586621679838022Sym1)Fmap_6989586621679838022Sym1KindInferenceFmap_6989586621679838022Sym2 TFHelper_6989586621679838010Sym0-TFHelper_6989586621679838010Sym0KindInference TFHelper_6989586621679838010Sym1-TFHelper_6989586621679838010Sym1KindInference TFHelper_6989586621679838010Sym2Pure_6989586621679837999Sym0)Pure_6989586621679837999Sym0KindInferencePure_6989586621679837999Sym1min_max_Product_Sum_Any_All_Max_Sym0Max_Sym0KindInferenceMax_Sym1Max_Sym1KindInferenceMax_Sym2Min_Sym0Min_Sym0KindInferenceMin_Sym1Min_Sym1KindInferenceMin_Sym2sMin_sMax_all_any_sum_product_ Product_Sym0Product_Sym0KindInference Product_Sym1Sum_Sym0Sum_Sym0KindInferenceSum_Sym1Any_Sym0Any_Sym0KindInferenceAny_Sym1All_Sym0All_Sym0KindInferenceAll_Sym1sAll_sAny_sSum_ sProduct_Case_6989586621679949308Case_6989586621679949322Case_6989586621679949334Case_6989586621679949381Case_6989586621679949404Case_6989586621679949418Case_6989586621679949432Case_6989586621679949457Case_6989586621679949466Case_6989586621679949473Case_6989586621679949500Case_6989586621679949509Case_6989586621679949516Case_6989586621679949541Case_6989586621679949548Case_6989586621679949576Case_6989586621679949590Case_6989586621679949605Case_6989586621679949637Case_6989586621679949674Lambda_6989586621679949747Case_6989586621679949751Lambda_6989586621679949776Case_6989586621679949780Lambda_6989586621679949803Case_6989586621679949807Lambda_6989586621679949828Case_6989586621679949832Lambda_6989586621679949851Case_6989586621679949855Lambda_6989586621679949872Case_6989586621679949876Lambda_6989586621679949949Case_6989586621679949952Case_6989586621679950015Case_6989586621679950029Case_6989586621679950036Case_6989586621679950050Case_6989586621679950079Case_6989586621679950087Case_6989586621679950095Case_6989586621679950103Case_6989586621679950143Case_6989586621679950151Case_6989586621679950159Case_6989586621679950167Case_6989586621679950202Case_6989586621679950223Case_6989586621679950237Lambda_6989586621679950284Case_6989586621679950380Case_6989586621679950410Case_6989586621679950497Case_6989586621679950509Case_6989586621679950544Lambda_6989586621679950625Case_6989586621679950634Case_6989586621680078983Case_6989586621680078989Case_6989586621680078991NonEmptySubsequences PrependToAllSelectElem_byTransposeSym0KindInferenceHeadSym0KindInferenceTailSym0KindInferenceInitSym0KindInferenceDropWhileEndSym0KindInferenceDropWhileEndSym1KindInferenceNullSym0KindInferenceIsSuffixOfSym0KindInferenceIsSuffixOfSym1KindInferenceReverseSym0KindInferenceIntercalateSym0KindInferenceIntercalateSym1KindInferenceIntersperseSym0KindInferenceIntersperseSym1KindInferenceSubsequencesSym0KindInferenceNonEmptySubsequencesSym0%NonEmptySubsequencesSym0KindInferenceNonEmptySubsequencesSym1PrependToAllSym0PrependToAllSym0KindInferencePrependToAllSym1PrependToAllSym1KindInferencePrependToAllSym2PermutationsSym0KindInferenceFoldl1'Sym0KindInferenceFoldl1'Sym1KindInferenceFoldl'Sym0KindInferenceFoldl'Sym1KindInferenceFoldl'Sym2KindInferenceMinimumSym0KindInferenceMaximumSym0KindInferenceMinimumBySym0KindInferenceMinimumBySym1KindInferenceMaximumBySym0KindInferenceMaximumBySym1KindInferenceFoldl1Sym0KindInferenceFoldl1Sym1KindInferenceFoldr1Sym0KindInferenceFoldr1Sym1KindInferenceConcatSym0KindInferenceConcatMapSym0KindInferenceConcatMapSym1KindInferenceAndSym0KindInferenceOrSym0KindInferenceAllSym1KindInferenceIntersectSym0KindInferenceIntersectSym1KindInferenceIntersectBySym0KindInferenceIntersectBySym1KindInferenceIntersectBySym2KindInferenceIsInfixOfSym0KindInferenceIsInfixOfSym1KindInferenceAnySym1KindInferenceScanl1Sym0KindInferenceScanl1Sym1KindInferenceScanlSym0KindInferenceScanlSym1KindInferenceScanlSym2KindInferenceScanrSym0KindInferenceScanrSym1KindInferenceScanrSym2KindInferenceScanr1Sym0KindInferenceScanr1Sym1KindInferenceMapAccumLSym0KindInferenceMapAccumLSym1KindInferenceMapAccumLSym2KindInferenceMapAccumRSym0KindInferenceMapAccumRSym1KindInferenceMapAccumRSym2KindInferenceUnfoldrSym0KindInferenceUnfoldrSym1KindInferenceInitsSym0KindInferenceTailsSym0KindInferenceIsPrefixOfSym0KindInferenceIsPrefixOfSym1KindInferenceNubSym0KindInferenceElemSym0KindInferenceElemSym1KindInferenceNotElemSym0KindInferenceNotElemSym1KindInferenceElemIndexSym0KindInferenceElemIndexSym1KindInferenceFindIndexSym0KindInferenceFindIndexSym1KindInferenceElemIndicesSym0KindInferenceElemIndicesSym1KindInferenceFindIndicesSym0KindInferenceFindIndicesSym1KindInferenceZipSym0KindInferenceZipSym1KindInferenceZip3Sym0KindInferenceZip3Sym1KindInferenceZip3Sym2KindInferenceZipWithSym0KindInferenceZipWithSym1KindInferenceZipWithSym2KindInferenceZipWith3Sym0KindInferenceZipWith3Sym1KindInferenceZipWith3Sym2KindInferenceZipWith3Sym3KindInferenceUnzipSym0KindInferenceUnzip3Sym0KindInferenceUnzip4Sym0KindInferenceUnzip5Sym0KindInferenceUnzip6Sym0KindInferenceUnzip7Sym0KindInferenceUnlinesSym0KindInferenceUnwordsSym0KindInference :\\@#@$### :\\@#@$$###DeleteSym0KindInferenceDeleteSym1KindInferenceUnionSym0KindInferenceUnionSym1KindInferenceUnionBySym0KindInferenceUnionBySym1KindInferenceUnionBySym2KindInferenceDeleteFirstsBySym0KindInferenceDeleteFirstsBySym1KindInferenceDeleteFirstsBySym2KindInferenceDeleteBySym0KindInferenceDeleteBySym1KindInferenceDeleteBySym2KindInferenceSortSym0KindInferenceSortBySym0KindInferenceSortBySym1KindInferenceInsertSym0KindInferenceInsertSym1KindInferenceInsertBySym0KindInferenceInsertBySym1KindInferenceInsertBySym2KindInferenceFindSym0KindInferenceFindSym1KindInferenceFilterSym0KindInferenceFilterSym1KindInferenceTakeWhileSym0KindInferenceTakeWhileSym1KindInferenceDropWhileSym0KindInferenceDropWhileSym1KindInferenceGroupSym0KindInferenceGroupBySym0KindInferenceGroupBySym1KindInferenceSpanSym0KindInferenceSpanSym1KindInferenceBreakSym0KindInferenceBreakSym1KindInferenceSplitAtSym0KindInferenceSplitAtSym1KindInferenceTakeSym0KindInferenceTakeSym1KindInferenceDropSym0KindInferenceDropSym1KindInferenceLookupSym0KindInferenceLookupSym1KindInferencePartitionSym0KindInferencePartitionSym1KindInference SelectSym0SelectSym0KindInference SelectSym1SelectSym1KindInference SelectSym2SelectSym2KindInference SelectSym3LengthSym0KindInferenceReplicateSym0KindInferenceReplicateSym1KindInference :!!@#@$### :!!@#@$$###NubBySym0KindInferenceNubBySym1KindInference Elem_bySym0Elem_bySym0KindInference Elem_bySym1Elem_bySym1KindInference Elem_bySym2Elem_bySym2KindInference Elem_bySym3GenericLengthSym0KindInferenceLet6989586621679950647Init'Let6989586621679950647Init'Sym0,Let6989586621679950647Init'Sym0KindInferenceLet6989586621679950647Init'Sym1,Let6989586621679950647Init'Sym1KindInferenceLet6989586621679950647Init'Sym2,Let6989586621679950647Init'Sym2KindInferenceLet6989586621679950647Init'Sym3,Let6989586621679950647Init'Sym3KindInferenceLet6989586621679950647Init'Sym4Lambda_6989586621679950625Sym0+Lambda_6989586621679950625Sym0KindInferenceLambda_6989586621679950625Sym1+Lambda_6989586621679950625Sym1KindInferenceLambda_6989586621679950625Sym2+Lambda_6989586621679950625Sym2KindInferenceLambda_6989586621679950625Sym3+Lambda_6989586621679950625Sym3KindInferenceLambda_6989586621679950625Sym43Let6989586621679950629Scrutinee_69895866216799406977Let6989586621679950629Scrutinee_6989586621679940697Sym0DLet6989586621679950629Scrutinee_6989586621679940697Sym0KindInference7Let6989586621679950629Scrutinee_6989586621679940697Sym1DLet6989586621679950629Scrutinee_6989586621679940697Sym1KindInference7Let6989586621679950629Scrutinee_6989586621679940697Sym2DLet6989586621679950629Scrutinee_6989586621679940697Sym2KindInference7Let6989586621679950629Scrutinee_6989586621679940697Sym3DLet6989586621679950629Scrutinee_6989586621679940697Sym3KindInference7Let6989586621679950629Scrutinee_6989586621679940697Sym4Let6989586621679950599RevLet6989586621679950599RevSym0*Let6989586621679950599RevSym0KindInferenceLet6989586621679950599RevSym1*Let6989586621679950599RevSym1KindInferenceLet6989586621679950599RevSym2*Let6989586621679950599RevSym2KindInferenceLet6989586621679950599RevSym3Let6989586621679950571FLet6989586621679950571FSym0(Let6989586621679950571FSym0KindInferenceLet6989586621679950571FSym1(Let6989586621679950571FSym1KindInferenceLet6989586621679950571FSym2(Let6989586621679950571FSym2KindInferenceLet6989586621679950571FSym3(Let6989586621679950571FSym3KindInferenceLet6989586621679950571FSym4Let6989586621679950465PermsLet6989586621679950465PermsSym0,Let6989586621679950465PermsSym0KindInferenceLet6989586621679950465PermsSym1,Let6989586621679950465PermsSym1KindInferenceLet6989586621679950465PermsSym2,Let6989586621679950465PermsSym2KindInferenceLet6989586621679950465PermsSym3 Let6989586621679950474Interleave!Let6989586621679950474Interleave'$Let6989586621679950474InterleaveSym01Let6989586621679950474InterleaveSym0KindInference$Let6989586621679950474InterleaveSym11Let6989586621679950474InterleaveSym1KindInference$Let6989586621679950474InterleaveSym21Let6989586621679950474InterleaveSym2KindInference$Let6989586621679950474InterleaveSym31Let6989586621679950474InterleaveSym3KindInference$Let6989586621679950474InterleaveSym41Let6989586621679950474InterleaveSym4KindInference$Let6989586621679950474InterleaveSym51Let6989586621679950474InterleaveSym5KindInference$Let6989586621679950474InterleaveSym6%Let6989586621679950474Interleave'Sym02Let6989586621679950474Interleave'Sym0KindInference%Let6989586621679950474Interleave'Sym12Let6989586621679950474Interleave'Sym1KindInference%Let6989586621679950474Interleave'Sym22Let6989586621679950474Interleave'Sym2KindInference%Let6989586621679950474Interleave'Sym32Let6989586621679950474Interleave'Sym3KindInference%Let6989586621679950474Interleave'Sym42Let6989586621679950474Interleave'Sym4KindInference%Let6989586621679950474Interleave'Sym52Let6989586621679950474Interleave'Sym5KindInference%Let6989586621679950474Interleave'Sym62Let6989586621679950474Interleave'Sym6KindInference%Let6989586621679950474Interleave'Sym7+Let6989586621679950539X_6989586621679950540Let6989586621679950539Zs/Let6989586621679950539X_6989586621679950540Sym0