/export/starexec/sandbox/solver/bin/starexec_run_standard /export/starexec/sandbox/benchmark/theBenchmark.hs /export/starexec/sandbox/output/output_files -------------------------------------------------------------------------------- YES proof of /export/starexec/sandbox/benchmark/theBenchmark.hs # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty H-Termination with start terms of the given HASKELL could be proven: (0) HASKELL (1) LR [EQUIVALENT, 0 ms] (2) HASKELL (3) CR [EQUIVALENT, 0 ms] (4) HASKELL (5) IFR [EQUIVALENT, 0 ms] (6) HASKELL (7) BR [EQUIVALENT, 0 ms] (8) HASKELL (9) COR [EQUIVALENT, 7 ms] (10) HASKELL (11) NumRed [SOUND, 0 ms] (12) HASKELL (13) Narrow [SOUND, 0 ms] (14) AND (15) QDP (16) QDPSizeChangeProof [EQUIVALENT, 0 ms] (17) YES (18) QDP (19) DependencyGraphProof [EQUIVALENT, 0 ms] (20) QDP (21) QDPSizeChangeProof [EQUIVALENT, 0 ms] (22) YES (23) QDP (24) QDPSizeChangeProof [EQUIVALENT, 0 ms] (25) YES (26) QDP (27) QDPSizeChangeProof [EQUIVALENT, 0 ms] (28) YES (29) QDP (30) QDPSizeChangeProof [EQUIVALENT, 0 ms] (31) YES (32) QDP (33) QDPSizeChangeProof [EQUIVALENT, 0 ms] (34) YES (35) QDP (36) QDPSizeChangeProof [EQUIVALENT, 0 ms] (37) YES (38) QDP (39) QDPSizeChangeProof [EQUIVALENT, 0 ms] (40) YES (41) QDP (42) QDPSizeChangeProof [EQUIVALENT, 0 ms] (43) YES (44) QDP (45) DependencyGraphProof [EQUIVALENT, 0 ms] (46) QDP (47) QDPSizeChangeProof [EQUIVALENT, 0 ms] (48) YES (49) QDP (50) QDPSizeChangeProof [EQUIVALENT, 0 ms] (51) YES ---------------------------------------- (0) Obligation: mainModule Main module Maybe where { import qualified List; import qualified Main; import qualified Prelude; } module List where { import qualified Main; import qualified Maybe; import qualified Prelude; elemIndices :: Eq a => a -> [a] -> [Int]; elemIndices x = findIndices (== x); findIndices :: (a -> Bool) -> [a] -> [Int]; findIndices p xs = concatMap (\vv1 ->case vv1 of { (x,i)-> if p x then i : [] else []; _-> []; } ) (zip xs (enumFrom 0)); } module Main where { import qualified List; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (1) LR (EQUIVALENT) Lambda Reductions: The following Lambda expression "\ab->(a,b)" is transformed to "zip0 a b = (a,b); " The following Lambda expression "\vv1->case vv1 of { (x,i) -> if p x then i : [] else []; _ -> []} " is transformed to "findIndices0 p vv1 = case vv1 of { (x,i) -> if p x then i : [] else []; _ -> []} ; " ---------------------------------------- (2) Obligation: mainModule Main module Maybe where { import qualified List; import qualified Main; import qualified Prelude; } module List where { import qualified Main; import qualified Maybe; import qualified Prelude; elemIndices :: Eq a => a -> [a] -> [Int]; elemIndices x = findIndices (== x); findIndices :: (a -> Bool) -> [a] -> [Int]; findIndices p xs = concatMap (findIndices0 p) (zip xs (enumFrom 0)); findIndices0 p vv1 = case vv1 of { (x,i)-> if p x then i : [] else []; _-> []; } ; } module Main where { import qualified List; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (3) CR (EQUIVALENT) Case Reductions: The following Case expression "case vv1 of { (x,i) -> if p x then i : [] else []; _ -> []} " is transformed to "findIndices00 p (x,i) = if p x then i : [] else []; findIndices00 p _ = []; " ---------------------------------------- (4) Obligation: mainModule Main module Maybe where { import qualified List; import qualified Main; import qualified Prelude; } module List where { import qualified Main; import qualified Maybe; import qualified Prelude; elemIndices :: Eq a => a -> [a] -> [Int]; elemIndices x = findIndices (== x); findIndices :: (a -> Bool) -> [a] -> [Int]; findIndices p xs = concatMap (findIndices0 p) (zip xs (enumFrom 0)); findIndices0 p vv1 = findIndices00 p vv1; findIndices00 p (x,i) = if p x then i : [] else []; findIndices00 p _ = []; } module Main where { import qualified List; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (5) IFR (EQUIVALENT) If Reductions: The following If expression "if p x then i : [] else []" is transformed to "findIndices000 i True = i : []; findIndices000 i False = []; " ---------------------------------------- (6) Obligation: mainModule Main module Maybe where { import qualified List; import qualified Main; import qualified Prelude; } module List where { import qualified Main; import qualified Maybe; import qualified Prelude; elemIndices :: Eq a => a -> [a] -> [Int]; elemIndices x = findIndices (== x); findIndices :: (a -> Bool) -> [a] -> [Int]; findIndices p xs = concatMap (findIndices0 p) (zip xs (enumFrom 0)); findIndices0 p vv1 = findIndices00 p vv1; findIndices00 p (x,i) = findIndices000 i (p x); findIndices00 p _ = []; findIndices000 i True = i : []; findIndices000 i False = []; } module Main where { import qualified List; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (7) BR (EQUIVALENT) Replaced joker patterns by fresh variables and removed binding patterns. ---------------------------------------- (8) Obligation: mainModule Main module Maybe where { import qualified List; import qualified Main; import qualified Prelude; } module List where { import qualified Main; import qualified Maybe; import qualified Prelude; elemIndices :: Eq a => a -> [a] -> [Int]; elemIndices x = findIndices (== x); findIndices :: (a -> Bool) -> [a] -> [Int]; findIndices p xs = concatMap (findIndices0 p) (zip xs (enumFrom 0)); findIndices0 p vv1 = findIndices00 p vv1; findIndices00 p (x,i) = findIndices000 i (p x); findIndices00 p wx = []; findIndices000 i True = i : []; findIndices000 i False = []; } module Main where { import qualified List; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (9) COR (EQUIVALENT) Cond Reductions: The following Function with conditions "undefined |Falseundefined; " is transformed to "undefined = undefined1; " "undefined0 True = undefined; " "undefined1 = undefined0 False; " ---------------------------------------- (10) Obligation: mainModule Main module Maybe where { import qualified List; import qualified Main; import qualified Prelude; } module List where { import qualified Main; import qualified Maybe; import qualified Prelude; elemIndices :: Eq a => a -> [a] -> [Int]; elemIndices x = findIndices (== x); findIndices :: (a -> Bool) -> [a] -> [Int]; findIndices p xs = concatMap (findIndices0 p) (zip xs (enumFrom 0)); findIndices0 p vv1 = findIndices00 p vv1; findIndices00 p (x,i) = findIndices000 i (p x); findIndices00 p wx = []; findIndices000 i True = i : []; findIndices000 i False = []; } module Main where { import qualified List; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (11) NumRed (SOUND) Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. ---------------------------------------- (12) Obligation: mainModule Main module Maybe where { import qualified List; import qualified Main; import qualified Prelude; } module List where { import qualified Main; import qualified Maybe; import qualified Prelude; elemIndices :: Eq a => a -> [a] -> [Int]; elemIndices x = findIndices (== x); findIndices :: (a -> Bool) -> [a] -> [Int]; findIndices p xs = concatMap (findIndices0 p) (zip xs (enumFrom (Pos Zero))); findIndices0 p vv1 = findIndices00 p vv1; findIndices00 p (x,i) = findIndices000 i (p x); findIndices00 p wx = []; findIndices000 i True = i : []; findIndices000 i False = []; } module Main where { import qualified List; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (13) Narrow (SOUND) Haskell To QDPs digraph dp_graph { node [outthreshold=100, inthreshold=100];1[label="List.elemIndices",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 3[label="List.elemIndices wy3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 4[label="List.elemIndices wy3 wy4",fontsize=16,color="black",shape="triangle"];4 -> 5[label="",style="solid", color="black", weight=3]; 5[label="List.findIndices (wy3 ==) wy4",fontsize=16,color="black",shape="box"];5 -> 6[label="",style="solid", color="black", weight=3]; 6[label="concatMap (List.findIndices0 (wy3 ==)) (zip wy4 (enumFrom (Pos Zero)))",fontsize=16,color="black",shape="box"];6 -> 7[label="",style="solid", color="black", weight=3]; 7[label="concat . map (List.findIndices0 (wy3 ==))",fontsize=16,color="black",shape="box"];7 -> 8[label="",style="solid", color="black", weight=3]; 8[label="concat (map (List.findIndices0 (wy3 ==)) (zip wy4 (enumFrom (Pos Zero))))",fontsize=16,color="black",shape="box"];8 -> 9[label="",style="solid", color="black", weight=3]; 9[label="foldr (++) [] (map (List.findIndices0 (wy3 ==)) (zip wy4 (enumFrom (Pos Zero))))",fontsize=16,color="black",shape="box"];9 -> 10[label="",style="solid", color="black", weight=3]; 10[label="foldr (++) [] (map (List.findIndices0 (wy3 ==)) (zipWith zip0 wy4 (enumFrom (Pos Zero))))",fontsize=16,color="burlywood",shape="box"];5108[label="wy4/wy40 : wy41",fontsize=10,color="white",style="solid",shape="box"];10 -> 5108[label="",style="solid", color="burlywood", weight=9]; 5108 -> 11[label="",style="solid", color="burlywood", weight=3]; 5109[label="wy4/[]",fontsize=10,color="white",style="solid",shape="box"];10 -> 5109[label="",style="solid", color="burlywood", weight=9]; 5109 -> 12[label="",style="solid", color="burlywood", weight=3]; 11[label="foldr (++) [] (map (List.findIndices0 (wy3 ==)) (zipWith zip0 (wy40 : wy41) (enumFrom (Pos Zero))))",fontsize=16,color="black",shape="box"];11 -> 13[label="",style="solid", color="black", weight=3]; 12[label="foldr (++) [] (map (List.findIndices0 (wy3 ==)) (zipWith zip0 [] (enumFrom (Pos Zero))))",fontsize=16,color="black",shape="box"];12 -> 14[label="",style="solid", color="black", weight=3]; 13[label="foldr (++) [] (map (List.findIndices0 (wy3 ==)) (zipWith zip0 (wy40 : wy41) (numericEnumFrom (Pos Zero))))",fontsize=16,color="black",shape="box"];13 -> 15[label="",style="solid", color="black", weight=3]; 14[label="foldr (++) [] (map (List.findIndices0 (wy3 ==)) [])",fontsize=16,color="black",shape="box"];14 -> 16[label="",style="solid", color="black", weight=3]; 15[label="foldr (++) [] (map (List.findIndices0 (wy3 ==)) (zipWith zip0 (wy40 : wy41) (Pos Zero : (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];15 -> 17[label="",style="solid", color="black", weight=3]; 16[label="foldr (++) [] []",fontsize=16,color="black",shape="triangle"];16 -> 18[label="",style="solid", color="black", weight=3]; 17[label="foldr (++) [] (map (List.findIndices0 (wy3 ==)) (zip0 wy40 (Pos Zero) : zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];17 -> 19[label="",style="solid", color="black", weight=3]; 18[label="[]",fontsize=16,color="green",shape="box"];19[label="foldr (++) [] (List.findIndices0 (wy3 ==) (zip0 wy40 (Pos Zero)) : map (List.findIndices0 (wy3 ==)) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];19 -> 20[label="",style="solid", color="black", weight=3]; 20[label="(++) List.findIndices0 (wy3 ==) (zip0 wy40 (Pos Zero)) foldr (++) [] (map (List.findIndices0 (wy3 ==)) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];20 -> 21[label="",style="solid", color="black", weight=3]; 21[label="(++) List.findIndices00 (wy3 ==) (zip0 wy40 (Pos Zero)) foldr (++) [] (map (List.findIndices0 (wy3 ==)) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];21 -> 22[label="",style="solid", color="black", weight=3]; 22[label="(++) List.findIndices00 (wy3 ==) (wy40,Pos Zero) foldr (++) [] (map (List.findIndices0 (wy3 ==)) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];22 -> 23[label="",style="solid", color="black", weight=3]; 23[label="(++) List.findIndices000 (Pos Zero) (wy3 == wy40) foldr (++) [] (map (List.findIndices0 (wy3 ==)) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];23 -> 24[label="",style="solid", color="black", weight=3]; 24[label="(++) List.findIndices000 (Pos Zero) (primEqFloat wy3 wy40) foldr (++) [] (map (List.findIndices0 (primEqFloat wy3)) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5110[label="wy3/Float wy30 wy31",fontsize=10,color="white",style="solid",shape="box"];24 -> 5110[label="",style="solid", color="burlywood", weight=9]; 5110 -> 25[label="",style="solid", color="burlywood", weight=3]; 25[label="(++) List.findIndices000 (Pos Zero) (primEqFloat (Float wy30 wy31) wy40) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float wy30 wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5111[label="wy40/Float wy400 wy401",fontsize=10,color="white",style="solid",shape="box"];25 -> 5111[label="",style="solid", color="burlywood", weight=9]; 5111 -> 26[label="",style="solid", color="burlywood", weight=3]; 26[label="(++) List.findIndices000 (Pos Zero) (primEqFloat (Float wy30 wy31) (Float wy400 wy401)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float wy30 wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];26 -> 27[label="",style="solid", color="black", weight=3]; 27[label="(++) List.findIndices000 (Pos Zero) (wy30 * wy401 == wy31 * wy400) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float wy30 wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];27 -> 28[label="",style="solid", color="black", weight=3]; 28[label="(++) List.findIndices000 (Pos Zero) (primEqInt (wy30 * wy401) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float wy30 wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];28 -> 29[label="",style="solid", color="black", weight=3]; 29[label="(++) List.findIndices000 (Pos Zero) (primEqInt (primMulInt wy30 wy401) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float wy30 wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5112[label="wy30/Pos wy300",fontsize=10,color="white",style="solid",shape="box"];29 -> 5112[label="",style="solid", color="burlywood", weight=9]; 5112 -> 30[label="",style="solid", color="burlywood", weight=3]; 5113[label="wy30/Neg wy300",fontsize=10,color="white",style="solid",shape="box"];29 -> 5113[label="",style="solid", color="burlywood", weight=9]; 5113 -> 31[label="",style="solid", color="burlywood", weight=3]; 30[label="(++) List.findIndices000 (Pos Zero) (primEqInt (primMulInt (Pos wy300) wy401) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos wy300) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5114[label="wy401/Pos wy4010",fontsize=10,color="white",style="solid",shape="box"];30 -> 5114[label="",style="solid", color="burlywood", weight=9]; 5114 -> 32[label="",style="solid", color="burlywood", weight=3]; 5115[label="wy401/Neg wy4010",fontsize=10,color="white",style="solid",shape="box"];30 -> 5115[label="",style="solid", color="burlywood", weight=9]; 5115 -> 33[label="",style="solid", color="burlywood", weight=3]; 31[label="(++) List.findIndices000 (Pos Zero) (primEqInt (primMulInt (Neg wy300) wy401) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg wy300) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5116[label="wy401/Pos wy4010",fontsize=10,color="white",style="solid",shape="box"];31 -> 5116[label="",style="solid", color="burlywood", weight=9]; 5116 -> 34[label="",style="solid", color="burlywood", weight=3]; 5117[label="wy401/Neg wy4010",fontsize=10,color="white",style="solid",shape="box"];31 -> 5117[label="",style="solid", color="burlywood", weight=9]; 5117 -> 35[label="",style="solid", color="burlywood", weight=3]; 32[label="(++) List.findIndices000 (Pos Zero) (primEqInt (primMulInt (Pos wy300) (Pos wy4010)) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos wy300) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];32 -> 36[label="",style="solid", color="black", weight=3]; 33[label="(++) List.findIndices000 (Pos Zero) (primEqInt (primMulInt (Pos wy300) (Neg wy4010)) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos wy300) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];33 -> 37[label="",style="solid", color="black", weight=3]; 34[label="(++) List.findIndices000 (Pos Zero) (primEqInt (primMulInt (Neg wy300) (Pos wy4010)) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg wy300) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];34 -> 38[label="",style="solid", color="black", weight=3]; 35[label="(++) List.findIndices000 (Pos Zero) (primEqInt (primMulInt (Neg wy300) (Neg wy4010)) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg wy300) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];35 -> 39[label="",style="solid", color="black", weight=3]; 36[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos (primMulNat wy300 wy4010)) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos wy300) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5118[label="wy300/Succ wy3000",fontsize=10,color="white",style="solid",shape="box"];36 -> 5118[label="",style="solid", color="burlywood", weight=9]; 5118 -> 40[label="",style="solid", color="burlywood", weight=3]; 5119[label="wy300/Zero",fontsize=10,color="white",style="solid",shape="box"];36 -> 5119[label="",style="solid", color="burlywood", weight=9]; 5119 -> 41[label="",style="solid", color="burlywood", weight=3]; 37[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg (primMulNat wy300 wy4010)) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos wy300) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5120[label="wy300/Succ wy3000",fontsize=10,color="white",style="solid",shape="box"];37 -> 5120[label="",style="solid", color="burlywood", weight=9]; 5120 -> 42[label="",style="solid", color="burlywood", weight=3]; 5121[label="wy300/Zero",fontsize=10,color="white",style="solid",shape="box"];37 -> 5121[label="",style="solid", color="burlywood", weight=9]; 5121 -> 43[label="",style="solid", color="burlywood", weight=3]; 38[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg (primMulNat wy300 wy4010)) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg wy300) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5122[label="wy300/Succ wy3000",fontsize=10,color="white",style="solid",shape="box"];38 -> 5122[label="",style="solid", color="burlywood", weight=9]; 5122 -> 44[label="",style="solid", color="burlywood", weight=3]; 5123[label="wy300/Zero",fontsize=10,color="white",style="solid",shape="box"];38 -> 5123[label="",style="solid", color="burlywood", weight=9]; 5123 -> 45[label="",style="solid", color="burlywood", weight=3]; 39[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos (primMulNat wy300 wy4010)) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg wy300) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5124[label="wy300/Succ wy3000",fontsize=10,color="white",style="solid",shape="box"];39 -> 5124[label="",style="solid", color="burlywood", weight=9]; 5124 -> 46[label="",style="solid", color="burlywood", weight=3]; 5125[label="wy300/Zero",fontsize=10,color="white",style="solid",shape="box"];39 -> 5125[label="",style="solid", color="burlywood", weight=9]; 5125 -> 47[label="",style="solid", color="burlywood", weight=3]; 40[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos (primMulNat (Succ wy3000) wy4010)) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy3000)) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5126[label="wy4010/Succ wy40100",fontsize=10,color="white",style="solid",shape="box"];40 -> 5126[label="",style="solid", color="burlywood", weight=9]; 5126 -> 48[label="",style="solid", color="burlywood", weight=3]; 5127[label="wy4010/Zero",fontsize=10,color="white",style="solid",shape="box"];40 -> 5127[label="",style="solid", color="burlywood", weight=9]; 5127 -> 49[label="",style="solid", color="burlywood", weight=3]; 41[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos (primMulNat Zero wy4010)) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5128[label="wy4010/Succ wy40100",fontsize=10,color="white",style="solid",shape="box"];41 -> 5128[label="",style="solid", color="burlywood", weight=9]; 5128 -> 50[label="",style="solid", color="burlywood", weight=3]; 5129[label="wy4010/Zero",fontsize=10,color="white",style="solid",shape="box"];41 -> 5129[label="",style="solid", color="burlywood", weight=9]; 5129 -> 51[label="",style="solid", color="burlywood", weight=3]; 42[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg (primMulNat (Succ wy3000) wy4010)) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy3000)) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5130[label="wy4010/Succ wy40100",fontsize=10,color="white",style="solid",shape="box"];42 -> 5130[label="",style="solid", color="burlywood", weight=9]; 5130 -> 52[label="",style="solid", color="burlywood", weight=3]; 5131[label="wy4010/Zero",fontsize=10,color="white",style="solid",shape="box"];42 -> 5131[label="",style="solid", color="burlywood", weight=9]; 5131 -> 53[label="",style="solid", color="burlywood", weight=3]; 43[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg (primMulNat Zero wy4010)) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5132[label="wy4010/Succ wy40100",fontsize=10,color="white",style="solid",shape="box"];43 -> 5132[label="",style="solid", color="burlywood", weight=9]; 5132 -> 54[label="",style="solid", color="burlywood", weight=3]; 5133[label="wy4010/Zero",fontsize=10,color="white",style="solid",shape="box"];43 -> 5133[label="",style="solid", color="burlywood", weight=9]; 5133 -> 55[label="",style="solid", color="burlywood", weight=3]; 44[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg (primMulNat (Succ wy3000) wy4010)) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy3000)) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5134[label="wy4010/Succ wy40100",fontsize=10,color="white",style="solid",shape="box"];44 -> 5134[label="",style="solid", color="burlywood", weight=9]; 5134 -> 56[label="",style="solid", color="burlywood", weight=3]; 5135[label="wy4010/Zero",fontsize=10,color="white",style="solid",shape="box"];44 -> 5135[label="",style="solid", color="burlywood", weight=9]; 5135 -> 57[label="",style="solid", color="burlywood", weight=3]; 45[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg (primMulNat Zero wy4010)) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5136[label="wy4010/Succ wy40100",fontsize=10,color="white",style="solid",shape="box"];45 -> 5136[label="",style="solid", color="burlywood", weight=9]; 5136 -> 58[label="",style="solid", color="burlywood", weight=3]; 5137[label="wy4010/Zero",fontsize=10,color="white",style="solid",shape="box"];45 -> 5137[label="",style="solid", color="burlywood", weight=9]; 5137 -> 59[label="",style="solid", color="burlywood", weight=3]; 46[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos (primMulNat (Succ wy3000) wy4010)) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy3000)) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5138[label="wy4010/Succ wy40100",fontsize=10,color="white",style="solid",shape="box"];46 -> 5138[label="",style="solid", color="burlywood", weight=9]; 5138 -> 60[label="",style="solid", color="burlywood", weight=3]; 5139[label="wy4010/Zero",fontsize=10,color="white",style="solid",shape="box"];46 -> 5139[label="",style="solid", color="burlywood", weight=9]; 5139 -> 61[label="",style="solid", color="burlywood", weight=3]; 47[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos (primMulNat Zero wy4010)) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5140[label="wy4010/Succ wy40100",fontsize=10,color="white",style="solid",shape="box"];47 -> 5140[label="",style="solid", color="burlywood", weight=9]; 5140 -> 62[label="",style="solid", color="burlywood", weight=3]; 5141[label="wy4010/Zero",fontsize=10,color="white",style="solid",shape="box"];47 -> 5141[label="",style="solid", color="burlywood", weight=9]; 5141 -> 63[label="",style="solid", color="burlywood", weight=3]; 48[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos (primMulNat (Succ wy3000) (Succ wy40100))) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy3000)) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];48 -> 64[label="",style="solid", color="black", weight=3]; 49[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos (primMulNat (Succ wy3000) Zero)) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy3000)) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];49 -> 65[label="",style="solid", color="black", weight=3]; 50[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos (primMulNat Zero (Succ wy40100))) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];50 -> 66[label="",style="solid", color="black", weight=3]; 51[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos (primMulNat Zero Zero)) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];51 -> 67[label="",style="solid", color="black", weight=3]; 52[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg (primMulNat (Succ wy3000) (Succ wy40100))) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy3000)) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];52 -> 68[label="",style="solid", color="black", weight=3]; 53[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg (primMulNat (Succ wy3000) Zero)) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy3000)) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];53 -> 69[label="",style="solid", color="black", weight=3]; 54[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg (primMulNat Zero (Succ wy40100))) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];54 -> 70[label="",style="solid", color="black", weight=3]; 55[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg (primMulNat Zero Zero)) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];55 -> 71[label="",style="solid", color="black", weight=3]; 56[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg (primMulNat (Succ wy3000) (Succ wy40100))) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy3000)) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];56 -> 72[label="",style="solid", color="black", weight=3]; 57[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg (primMulNat (Succ wy3000) Zero)) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy3000)) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];57 -> 73[label="",style="solid", color="black", weight=3]; 58[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg (primMulNat Zero (Succ wy40100))) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];58 -> 74[label="",style="solid", color="black", weight=3]; 59[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg (primMulNat Zero Zero)) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];59 -> 75[label="",style="solid", color="black", weight=3]; 60[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos (primMulNat (Succ wy3000) (Succ wy40100))) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy3000)) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];60 -> 76[label="",style="solid", color="black", weight=3]; 61[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos (primMulNat (Succ wy3000) Zero)) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy3000)) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];61 -> 77[label="",style="solid", color="black", weight=3]; 62[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos (primMulNat Zero (Succ wy40100))) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];62 -> 78[label="",style="solid", color="black", weight=3]; 63[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos (primMulNat Zero Zero)) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];63 -> 79[label="",style="solid", color="black", weight=3]; 64 -> 2746[label="",style="dashed", color="red", weight=0]; 64[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos (primPlusNat (primMulNat wy3000 (Succ wy40100)) (Succ wy40100))) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy3000)) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];64 -> 2747[label="",style="dashed", color="magenta", weight=3]; 64 -> 2748[label="",style="dashed", color="magenta", weight=3]; 64 -> 2749[label="",style="dashed", color="magenta", weight=3]; 64 -> 2750[label="",style="dashed", color="magenta", weight=3]; 64 -> 2751[label="",style="dashed", color="magenta", weight=3]; 65 -> 2746[label="",style="dashed", color="red", weight=0]; 65[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy3000)) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];65 -> 2752[label="",style="dashed", color="magenta", weight=3]; 65 -> 2753[label="",style="dashed", color="magenta", weight=3]; 65 -> 2754[label="",style="dashed", color="magenta", weight=3]; 65 -> 2755[label="",style="dashed", color="magenta", weight=3]; 65 -> 2756[label="",style="dashed", color="magenta", weight=3]; 66[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="triangle"];66 -> 83[label="",style="solid", color="black", weight=3]; 67 -> 66[label="",style="dashed", color="red", weight=0]; 67[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];68 -> 2875[label="",style="dashed", color="red", weight=0]; 68[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg (primPlusNat (primMulNat wy3000 (Succ wy40100)) (Succ wy40100))) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy3000)) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];68 -> 2876[label="",style="dashed", color="magenta", weight=3]; 68 -> 2877[label="",style="dashed", color="magenta", weight=3]; 68 -> 2878[label="",style="dashed", color="magenta", weight=3]; 68 -> 2879[label="",style="dashed", color="magenta", weight=3]; 68 -> 2880[label="",style="dashed", color="magenta", weight=3]; 69 -> 2875[label="",style="dashed", color="red", weight=0]; 69[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy3000)) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];69 -> 2881[label="",style="dashed", color="magenta", weight=3]; 69 -> 2882[label="",style="dashed", color="magenta", weight=3]; 69 -> 2883[label="",style="dashed", color="magenta", weight=3]; 69 -> 2884[label="",style="dashed", color="magenta", weight=3]; 69 -> 2885[label="",style="dashed", color="magenta", weight=3]; 70[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="triangle"];70 -> 87[label="",style="solid", color="black", weight=3]; 71 -> 70[label="",style="dashed", color="red", weight=0]; 71[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];72 -> 3008[label="",style="dashed", color="red", weight=0]; 72[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg (primPlusNat (primMulNat wy3000 (Succ wy40100)) (Succ wy40100))) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy3000)) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];72 -> 3009[label="",style="dashed", color="magenta", weight=3]; 72 -> 3010[label="",style="dashed", color="magenta", weight=3]; 72 -> 3011[label="",style="dashed", color="magenta", weight=3]; 72 -> 3012[label="",style="dashed", color="magenta", weight=3]; 72 -> 3013[label="",style="dashed", color="magenta", weight=3]; 73 -> 3008[label="",style="dashed", color="red", weight=0]; 73[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy3000)) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];73 -> 3014[label="",style="dashed", color="magenta", weight=3]; 73 -> 3015[label="",style="dashed", color="magenta", weight=3]; 73 -> 3016[label="",style="dashed", color="magenta", weight=3]; 73 -> 3017[label="",style="dashed", color="magenta", weight=3]; 73 -> 3018[label="",style="dashed", color="magenta", weight=3]; 74[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="triangle"];74 -> 91[label="",style="solid", color="black", weight=3]; 75 -> 74[label="",style="dashed", color="red", weight=0]; 75[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];76 -> 1805[label="",style="dashed", color="red", weight=0]; 76[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos (primPlusNat (primMulNat wy3000 (Succ wy40100)) (Succ wy40100))) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy3000)) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];76 -> 1806[label="",style="dashed", color="magenta", weight=3]; 76 -> 1807[label="",style="dashed", color="magenta", weight=3]; 76 -> 1808[label="",style="dashed", color="magenta", weight=3]; 76 -> 1809[label="",style="dashed", color="magenta", weight=3]; 76 -> 1810[label="",style="dashed", color="magenta", weight=3]; 77 -> 1805[label="",style="dashed", color="red", weight=0]; 77[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy3000)) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];77 -> 1811[label="",style="dashed", color="magenta", weight=3]; 77 -> 1812[label="",style="dashed", color="magenta", weight=3]; 77 -> 1813[label="",style="dashed", color="magenta", weight=3]; 77 -> 1814[label="",style="dashed", color="magenta", weight=3]; 77 -> 1815[label="",style="dashed", color="magenta", weight=3]; 78[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="triangle"];78 -> 95[label="",style="solid", color="black", weight=3]; 79 -> 78[label="",style="dashed", color="red", weight=0]; 79[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (wy31 * wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];2747[label="wy400",fontsize=16,color="green",shape="box"];2748[label="wy3000",fontsize=16,color="green",shape="box"];2749 -> 1932[label="",style="dashed", color="red", weight=0]; 2749[label="primPlusNat (primMulNat wy3000 (Succ wy40100)) (Succ wy40100)",fontsize=16,color="magenta"];2749 -> 2863[label="",style="dashed", color="magenta", weight=3]; 2749 -> 2864[label="",style="dashed", color="magenta", weight=3]; 2750[label="wy31",fontsize=16,color="green",shape="box"];2751[label="wy41",fontsize=16,color="green",shape="box"];2746[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos wy145) (wy78 * wy79)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) wy78))) (zipWith zip0 wy81 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="triangle"];5142[label="wy145/Succ wy1450",fontsize=10,color="white",style="solid",shape="box"];2746 -> 5142[label="",style="solid", color="burlywood", weight=9]; 5142 -> 2865[label="",style="solid", color="burlywood", weight=3]; 5143[label="wy145/Zero",fontsize=10,color="white",style="solid",shape="box"];2746 -> 5143[label="",style="solid", color="burlywood", weight=9]; 5143 -> 2866[label="",style="solid", color="burlywood", weight=3]; 2752[label="wy400",fontsize=16,color="green",shape="box"];2753[label="wy3000",fontsize=16,color="green",shape="box"];2754[label="Zero",fontsize=16,color="green",shape="box"];2755[label="wy31",fontsize=16,color="green",shape="box"];2756[label="wy41",fontsize=16,color="green",shape="box"];83[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (primMulInt wy31 wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5144[label="wy31/Pos wy310",fontsize=10,color="white",style="solid",shape="box"];83 -> 5144[label="",style="solid", color="burlywood", weight=9]; 5144 -> 100[label="",style="solid", color="burlywood", weight=3]; 5145[label="wy31/Neg wy310",fontsize=10,color="white",style="solid",shape="box"];83 -> 5145[label="",style="solid", color="burlywood", weight=9]; 5145 -> 101[label="",style="solid", color="burlywood", weight=3]; 2876 -> 1932[label="",style="dashed", color="red", weight=0]; 2876[label="primPlusNat (primMulNat wy3000 (Succ wy40100)) (Succ wy40100)",fontsize=16,color="magenta"];2876 -> 2996[label="",style="dashed", color="magenta", weight=3]; 2876 -> 2997[label="",style="dashed", color="magenta", weight=3]; 2877[label="wy31",fontsize=16,color="green",shape="box"];2878[label="wy400",fontsize=16,color="green",shape="box"];2879[label="wy3000",fontsize=16,color="green",shape="box"];2880[label="wy41",fontsize=16,color="green",shape="box"];2875[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg wy152) (wy153 * wy154)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy155)) wy153))) (zipWith zip0 wy156 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="triangle"];5146[label="wy152/Succ wy1520",fontsize=10,color="white",style="solid",shape="box"];2875 -> 5146[label="",style="solid", color="burlywood", weight=9]; 5146 -> 2998[label="",style="solid", color="burlywood", weight=3]; 5147[label="wy152/Zero",fontsize=10,color="white",style="solid",shape="box"];2875 -> 5147[label="",style="solid", color="burlywood", weight=9]; 5147 -> 2999[label="",style="solid", color="burlywood", weight=3]; 2881[label="Zero",fontsize=16,color="green",shape="box"];2882[label="wy31",fontsize=16,color="green",shape="box"];2883[label="wy400",fontsize=16,color="green",shape="box"];2884[label="wy3000",fontsize=16,color="green",shape="box"];2885[label="wy41",fontsize=16,color="green",shape="box"];87[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (primMulInt wy31 wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5148[label="wy31/Pos wy310",fontsize=10,color="white",style="solid",shape="box"];87 -> 5148[label="",style="solid", color="burlywood", weight=9]; 5148 -> 106[label="",style="solid", color="burlywood", weight=3]; 5149[label="wy31/Neg wy310",fontsize=10,color="white",style="solid",shape="box"];87 -> 5149[label="",style="solid", color="burlywood", weight=9]; 5149 -> 107[label="",style="solid", color="burlywood", weight=3]; 3009 -> 1932[label="",style="dashed", color="red", weight=0]; 3009[label="primPlusNat (primMulNat wy3000 (Succ wy40100)) (Succ wy40100)",fontsize=16,color="magenta"];3009 -> 3125[label="",style="dashed", color="magenta", weight=3]; 3009 -> 3126[label="",style="dashed", color="magenta", weight=3]; 3010[label="wy41",fontsize=16,color="green",shape="box"];3011[label="wy31",fontsize=16,color="green",shape="box"];3012[label="wy3000",fontsize=16,color="green",shape="box"];3013[label="wy400",fontsize=16,color="green",shape="box"];3008[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg wy157) (wy137 * wy138)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy139)) wy137))) (zipWith zip0 wy140 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="triangle"];5150[label="wy157/Succ wy1570",fontsize=10,color="white",style="solid",shape="box"];3008 -> 5150[label="",style="solid", color="burlywood", weight=9]; 5150 -> 3127[label="",style="solid", color="burlywood", weight=3]; 5151[label="wy157/Zero",fontsize=10,color="white",style="solid",shape="box"];3008 -> 5151[label="",style="solid", color="burlywood", weight=9]; 5151 -> 3128[label="",style="solid", color="burlywood", weight=3]; 3014[label="Zero",fontsize=16,color="green",shape="box"];3015[label="wy41",fontsize=16,color="green",shape="box"];3016[label="wy31",fontsize=16,color="green",shape="box"];3017[label="wy3000",fontsize=16,color="green",shape="box"];3018[label="wy400",fontsize=16,color="green",shape="box"];91[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (primMulInt wy31 wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5152[label="wy31/Pos wy310",fontsize=10,color="white",style="solid",shape="box"];91 -> 5152[label="",style="solid", color="burlywood", weight=9]; 5152 -> 112[label="",style="solid", color="burlywood", weight=3]; 5153[label="wy31/Neg wy310",fontsize=10,color="white",style="solid",shape="box"];91 -> 5153[label="",style="solid", color="burlywood", weight=9]; 5153 -> 113[label="",style="solid", color="burlywood", weight=3]; 1806[label="wy41",fontsize=16,color="green",shape="box"];1807[label="wy400",fontsize=16,color="green",shape="box"];1808[label="wy3000",fontsize=16,color="green",shape="box"];1809[label="wy31",fontsize=16,color="green",shape="box"];1810 -> 1438[label="",style="dashed", color="red", weight=0]; 1810[label="primPlusNat (primMulNat wy3000 (Succ wy40100)) (Succ wy40100)",fontsize=16,color="magenta"];1810 -> 1917[label="",style="dashed", color="magenta", weight=3]; 1810 -> 1918[label="",style="dashed", color="magenta", weight=3]; 1805[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos wy61) (wy41 * wy42)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) wy41))) (zipWith zip0 wy44 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="triangle"];5154[label="wy61/Succ wy610",fontsize=10,color="white",style="solid",shape="box"];1805 -> 5154[label="",style="solid", color="burlywood", weight=9]; 5154 -> 1919[label="",style="solid", color="burlywood", weight=3]; 5155[label="wy61/Zero",fontsize=10,color="white",style="solid",shape="box"];1805 -> 5155[label="",style="solid", color="burlywood", weight=9]; 5155 -> 1920[label="",style="solid", color="burlywood", weight=3]; 1811[label="wy41",fontsize=16,color="green",shape="box"];1812[label="wy400",fontsize=16,color="green",shape="box"];1813[label="wy3000",fontsize=16,color="green",shape="box"];1814[label="wy31",fontsize=16,color="green",shape="box"];1815[label="Zero",fontsize=16,color="green",shape="box"];95[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (primMulInt wy31 wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) wy31))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5156[label="wy31/Pos wy310",fontsize=10,color="white",style="solid",shape="box"];95 -> 5156[label="",style="solid", color="burlywood", weight=9]; 5156 -> 118[label="",style="solid", color="burlywood", weight=3]; 5157[label="wy31/Neg wy310",fontsize=10,color="white",style="solid",shape="box"];95 -> 5157[label="",style="solid", color="burlywood", weight=9]; 5157 -> 119[label="",style="solid", color="burlywood", weight=3]; 2863[label="Succ wy40100",fontsize=16,color="green",shape="box"];2864 -> 1487[label="",style="dashed", color="red", weight=0]; 2864[label="primMulNat wy3000 (Succ wy40100)",fontsize=16,color="magenta"];2864 -> 3000[label="",style="dashed", color="magenta", weight=3]; 2864 -> 3001[label="",style="dashed", color="magenta", weight=3]; 1932[label="primPlusNat wy510 wy40100",fontsize=16,color="burlywood",shape="triangle"];5158[label="wy510/Succ wy5100",fontsize=10,color="white",style="solid",shape="box"];1932 -> 5158[label="",style="solid", color="burlywood", weight=9]; 5158 -> 1947[label="",style="solid", color="burlywood", weight=3]; 5159[label="wy510/Zero",fontsize=10,color="white",style="solid",shape="box"];1932 -> 5159[label="",style="solid", color="burlywood", weight=9]; 5159 -> 1948[label="",style="solid", color="burlywood", weight=3]; 2865[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos (Succ wy1450)) (wy78 * wy79)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) wy78))) (zipWith zip0 wy81 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];2865 -> 3002[label="",style="solid", color="black", weight=3]; 2866[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (wy78 * wy79)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) wy78))) (zipWith zip0 wy81 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];2866 -> 3003[label="",style="solid", color="black", weight=3]; 100[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (primMulInt (Pos wy310) wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5160[label="wy400/Pos wy4000",fontsize=10,color="white",style="solid",shape="box"];100 -> 5160[label="",style="solid", color="burlywood", weight=9]; 5160 -> 127[label="",style="solid", color="burlywood", weight=3]; 5161[label="wy400/Neg wy4000",fontsize=10,color="white",style="solid",shape="box"];100 -> 5161[label="",style="solid", color="burlywood", weight=9]; 5161 -> 128[label="",style="solid", color="burlywood", weight=3]; 101[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (primMulInt (Neg wy310) wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Neg wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5162[label="wy400/Pos wy4000",fontsize=10,color="white",style="solid",shape="box"];101 -> 5162[label="",style="solid", color="burlywood", weight=9]; 5162 -> 129[label="",style="solid", color="burlywood", weight=3]; 5163[label="wy400/Neg wy4000",fontsize=10,color="white",style="solid",shape="box"];101 -> 5163[label="",style="solid", color="burlywood", weight=9]; 5163 -> 130[label="",style="solid", color="burlywood", weight=3]; 2996[label="Succ wy40100",fontsize=16,color="green",shape="box"];2997 -> 1487[label="",style="dashed", color="red", weight=0]; 2997[label="primMulNat wy3000 (Succ wy40100)",fontsize=16,color="magenta"];2997 -> 3129[label="",style="dashed", color="magenta", weight=3]; 2997 -> 3130[label="",style="dashed", color="magenta", weight=3]; 2998[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg (Succ wy1520)) (wy153 * wy154)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy155)) wy153))) (zipWith zip0 wy156 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];2998 -> 3131[label="",style="solid", color="black", weight=3]; 2999[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (wy153 * wy154)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy155)) wy153))) (zipWith zip0 wy156 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];2999 -> 3132[label="",style="solid", color="black", weight=3]; 106[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (primMulInt (Pos wy310) wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5164[label="wy400/Pos wy4000",fontsize=10,color="white",style="solid",shape="box"];106 -> 5164[label="",style="solid", color="burlywood", weight=9]; 5164 -> 138[label="",style="solid", color="burlywood", weight=3]; 5165[label="wy400/Neg wy4000",fontsize=10,color="white",style="solid",shape="box"];106 -> 5165[label="",style="solid", color="burlywood", weight=9]; 5165 -> 139[label="",style="solid", color="burlywood", weight=3]; 107[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (primMulInt (Neg wy310) wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Neg wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5166[label="wy400/Pos wy4000",fontsize=10,color="white",style="solid",shape="box"];107 -> 5166[label="",style="solid", color="burlywood", weight=9]; 5166 -> 140[label="",style="solid", color="burlywood", weight=3]; 5167[label="wy400/Neg wy4000",fontsize=10,color="white",style="solid",shape="box"];107 -> 5167[label="",style="solid", color="burlywood", weight=9]; 5167 -> 141[label="",style="solid", color="burlywood", weight=3]; 3125[label="Succ wy40100",fontsize=16,color="green",shape="box"];3126 -> 1487[label="",style="dashed", color="red", weight=0]; 3126[label="primMulNat wy3000 (Succ wy40100)",fontsize=16,color="magenta"];3126 -> 3151[label="",style="dashed", color="magenta", weight=3]; 3126 -> 3152[label="",style="dashed", color="magenta", weight=3]; 3127[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg (Succ wy1570)) (wy137 * wy138)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy139)) wy137))) (zipWith zip0 wy140 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3127 -> 3153[label="",style="solid", color="black", weight=3]; 3128[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (wy137 * wy138)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy139)) wy137))) (zipWith zip0 wy140 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3128 -> 3154[label="",style="solid", color="black", weight=3]; 112[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (primMulInt (Pos wy310) wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5168[label="wy400/Pos wy4000",fontsize=10,color="white",style="solid",shape="box"];112 -> 5168[label="",style="solid", color="burlywood", weight=9]; 5168 -> 149[label="",style="solid", color="burlywood", weight=3]; 5169[label="wy400/Neg wy4000",fontsize=10,color="white",style="solid",shape="box"];112 -> 5169[label="",style="solid", color="burlywood", weight=9]; 5169 -> 150[label="",style="solid", color="burlywood", weight=3]; 113[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (primMulInt (Neg wy310) wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Neg wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5170[label="wy400/Pos wy4000",fontsize=10,color="white",style="solid",shape="box"];113 -> 5170[label="",style="solid", color="burlywood", weight=9]; 5170 -> 151[label="",style="solid", color="burlywood", weight=3]; 5171[label="wy400/Neg wy4000",fontsize=10,color="white",style="solid",shape="box"];113 -> 5171[label="",style="solid", color="burlywood", weight=9]; 5171 -> 152[label="",style="solid", color="burlywood", weight=3]; 1917[label="wy40100",fontsize=16,color="green",shape="box"];1918 -> 1487[label="",style="dashed", color="red", weight=0]; 1918[label="primMulNat wy3000 (Succ wy40100)",fontsize=16,color="magenta"];1918 -> 1928[label="",style="dashed", color="magenta", weight=3]; 1918 -> 1929[label="",style="dashed", color="magenta", weight=3]; 1438[label="primPlusNat wy51 (Succ wy40100)",fontsize=16,color="burlywood",shape="triangle"];5172[label="wy51/Succ wy510",fontsize=10,color="white",style="solid",shape="box"];1438 -> 5172[label="",style="solid", color="burlywood", weight=9]; 5172 -> 1449[label="",style="solid", color="burlywood", weight=3]; 5173[label="wy51/Zero",fontsize=10,color="white",style="solid",shape="box"];1438 -> 5173[label="",style="solid", color="burlywood", weight=9]; 5173 -> 1450[label="",style="solid", color="burlywood", weight=3]; 1919[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos (Succ wy610)) (wy41 * wy42)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) wy41))) (zipWith zip0 wy44 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];1919 -> 1930[label="",style="solid", color="black", weight=3]; 1920[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (wy41 * wy42)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) wy41))) (zipWith zip0 wy44 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];1920 -> 1931[label="",style="solid", color="black", weight=3]; 118[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (primMulInt (Pos wy310) wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5174[label="wy400/Pos wy4000",fontsize=10,color="white",style="solid",shape="box"];118 -> 5174[label="",style="solid", color="burlywood", weight=9]; 5174 -> 160[label="",style="solid", color="burlywood", weight=3]; 5175[label="wy400/Neg wy4000",fontsize=10,color="white",style="solid",shape="box"];118 -> 5175[label="",style="solid", color="burlywood", weight=9]; 5175 -> 161[label="",style="solid", color="burlywood", weight=3]; 119[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (primMulInt (Neg wy310) wy400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Neg wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5176[label="wy400/Pos wy4000",fontsize=10,color="white",style="solid",shape="box"];119 -> 5176[label="",style="solid", color="burlywood", weight=9]; 5176 -> 162[label="",style="solid", color="burlywood", weight=3]; 5177[label="wy400/Neg wy4000",fontsize=10,color="white",style="solid",shape="box"];119 -> 5177[label="",style="solid", color="burlywood", weight=9]; 5177 -> 163[label="",style="solid", color="burlywood", weight=3]; 3000[label="wy3000",fontsize=16,color="green",shape="box"];3001[label="Succ wy40100",fontsize=16,color="green",shape="box"];1487[label="primMulNat wy310 wy4000",fontsize=16,color="burlywood",shape="triangle"];5178[label="wy310/Succ wy3100",fontsize=10,color="white",style="solid",shape="box"];1487 -> 5178[label="",style="solid", color="burlywood", weight=9]; 5178 -> 1551[label="",style="solid", color="burlywood", weight=3]; 5179[label="wy310/Zero",fontsize=10,color="white",style="solid",shape="box"];1487 -> 5179[label="",style="solid", color="burlywood", weight=9]; 5179 -> 1552[label="",style="solid", color="burlywood", weight=3]; 1947[label="primPlusNat (Succ wy5100) wy40100",fontsize=16,color="burlywood",shape="box"];5180[label="wy40100/Succ wy401000",fontsize=10,color="white",style="solid",shape="box"];1947 -> 5180[label="",style="solid", color="burlywood", weight=9]; 5180 -> 2075[label="",style="solid", color="burlywood", weight=3]; 5181[label="wy40100/Zero",fontsize=10,color="white",style="solid",shape="box"];1947 -> 5181[label="",style="solid", color="burlywood", weight=9]; 5181 -> 2076[label="",style="solid", color="burlywood", weight=3]; 1948[label="primPlusNat Zero wy40100",fontsize=16,color="burlywood",shape="box"];5182[label="wy40100/Succ wy401000",fontsize=10,color="white",style="solid",shape="box"];1948 -> 5182[label="",style="solid", color="burlywood", weight=9]; 5182 -> 2077[label="",style="solid", color="burlywood", weight=3]; 5183[label="wy40100/Zero",fontsize=10,color="white",style="solid",shape="box"];1948 -> 5183[label="",style="solid", color="burlywood", weight=9]; 5183 -> 2078[label="",style="solid", color="burlywood", weight=3]; 3002[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos (Succ wy1450)) (primMulInt wy78 wy79)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) wy78))) (zipWith zip0 wy81 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5184[label="wy78/Pos wy780",fontsize=10,color="white",style="solid",shape="box"];3002 -> 5184[label="",style="solid", color="burlywood", weight=9]; 5184 -> 3133[label="",style="solid", color="burlywood", weight=3]; 5185[label="wy78/Neg wy780",fontsize=10,color="white",style="solid",shape="box"];3002 -> 5185[label="",style="solid", color="burlywood", weight=9]; 5185 -> 3134[label="",style="solid", color="burlywood", weight=3]; 3003[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (primMulInt wy78 wy79)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) wy78))) (zipWith zip0 wy81 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5186[label="wy78/Pos wy780",fontsize=10,color="white",style="solid",shape="box"];3003 -> 5186[label="",style="solid", color="burlywood", weight=9]; 5186 -> 3135[label="",style="solid", color="burlywood", weight=3]; 5187[label="wy78/Neg wy780",fontsize=10,color="white",style="solid",shape="box"];3003 -> 5187[label="",style="solid", color="burlywood", weight=9]; 5187 -> 3136[label="",style="solid", color="burlywood", weight=3]; 127[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (primMulInt (Pos wy310) (Pos wy4000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];127 -> 171[label="",style="solid", color="black", weight=3]; 128[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (primMulInt (Pos wy310) (Neg wy4000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];128 -> 172[label="",style="solid", color="black", weight=3]; 129[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (primMulInt (Neg wy310) (Pos wy4000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Neg wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];129 -> 173[label="",style="solid", color="black", weight=3]; 130[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (primMulInt (Neg wy310) (Neg wy4000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Neg wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];130 -> 174[label="",style="solid", color="black", weight=3]; 3129[label="wy3000",fontsize=16,color="green",shape="box"];3130[label="Succ wy40100",fontsize=16,color="green",shape="box"];3131[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg (Succ wy1520)) (primMulInt wy153 wy154)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy155)) wy153))) (zipWith zip0 wy156 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5188[label="wy153/Pos wy1530",fontsize=10,color="white",style="solid",shape="box"];3131 -> 5188[label="",style="solid", color="burlywood", weight=9]; 5188 -> 3155[label="",style="solid", color="burlywood", weight=3]; 5189[label="wy153/Neg wy1530",fontsize=10,color="white",style="solid",shape="box"];3131 -> 5189[label="",style="solid", color="burlywood", weight=9]; 5189 -> 3156[label="",style="solid", color="burlywood", weight=3]; 3132[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (primMulInt wy153 wy154)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy155)) wy153))) (zipWith zip0 wy156 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5190[label="wy153/Pos wy1530",fontsize=10,color="white",style="solid",shape="box"];3132 -> 5190[label="",style="solid", color="burlywood", weight=9]; 5190 -> 3157[label="",style="solid", color="burlywood", weight=3]; 5191[label="wy153/Neg wy1530",fontsize=10,color="white",style="solid",shape="box"];3132 -> 5191[label="",style="solid", color="burlywood", weight=9]; 5191 -> 3158[label="",style="solid", color="burlywood", weight=3]; 138[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (primMulInt (Pos wy310) (Pos wy4000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];138 -> 182[label="",style="solid", color="black", weight=3]; 139[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (primMulInt (Pos wy310) (Neg wy4000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];139 -> 183[label="",style="solid", color="black", weight=3]; 140[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (primMulInt (Neg wy310) (Pos wy4000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Neg wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];140 -> 184[label="",style="solid", color="black", weight=3]; 141[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (primMulInt (Neg wy310) (Neg wy4000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Neg wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];141 -> 185[label="",style="solid", color="black", weight=3]; 3151[label="wy3000",fontsize=16,color="green",shape="box"];3152[label="Succ wy40100",fontsize=16,color="green",shape="box"];3153[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg (Succ wy1570)) (primMulInt wy137 wy138)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy139)) wy137))) (zipWith zip0 wy140 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5192[label="wy137/Pos wy1370",fontsize=10,color="white",style="solid",shape="box"];3153 -> 5192[label="",style="solid", color="burlywood", weight=9]; 5192 -> 3173[label="",style="solid", color="burlywood", weight=3]; 5193[label="wy137/Neg wy1370",fontsize=10,color="white",style="solid",shape="box"];3153 -> 5193[label="",style="solid", color="burlywood", weight=9]; 5193 -> 3174[label="",style="solid", color="burlywood", weight=3]; 3154[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (primMulInt wy137 wy138)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy139)) wy137))) (zipWith zip0 wy140 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5194[label="wy137/Pos wy1370",fontsize=10,color="white",style="solid",shape="box"];3154 -> 5194[label="",style="solid", color="burlywood", weight=9]; 5194 -> 3175[label="",style="solid", color="burlywood", weight=3]; 5195[label="wy137/Neg wy1370",fontsize=10,color="white",style="solid",shape="box"];3154 -> 5195[label="",style="solid", color="burlywood", weight=9]; 5195 -> 3176[label="",style="solid", color="burlywood", weight=3]; 149[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (primMulInt (Pos wy310) (Pos wy4000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];149 -> 193[label="",style="solid", color="black", weight=3]; 150[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (primMulInt (Pos wy310) (Neg wy4000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];150 -> 194[label="",style="solid", color="black", weight=3]; 151[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (primMulInt (Neg wy310) (Pos wy4000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Neg wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];151 -> 195[label="",style="solid", color="black", weight=3]; 152[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (primMulInt (Neg wy310) (Neg wy4000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Neg wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];152 -> 196[label="",style="solid", color="black", weight=3]; 1928[label="wy3000",fontsize=16,color="green",shape="box"];1929[label="Succ wy40100",fontsize=16,color="green",shape="box"];1449[label="primPlusNat (Succ wy510) (Succ wy40100)",fontsize=16,color="black",shape="box"];1449 -> 1562[label="",style="solid", color="black", weight=3]; 1450[label="primPlusNat Zero (Succ wy40100)",fontsize=16,color="black",shape="box"];1450 -> 1563[label="",style="solid", color="black", weight=3]; 1930[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos (Succ wy610)) (primMulInt wy41 wy42)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) wy41))) (zipWith zip0 wy44 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5196[label="wy41/Pos wy410",fontsize=10,color="white",style="solid",shape="box"];1930 -> 5196[label="",style="solid", color="burlywood", weight=9]; 5196 -> 1943[label="",style="solid", color="burlywood", weight=3]; 5197[label="wy41/Neg wy410",fontsize=10,color="white",style="solid",shape="box"];1930 -> 5197[label="",style="solid", color="burlywood", weight=9]; 5197 -> 1944[label="",style="solid", color="burlywood", weight=3]; 1931[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (primMulInt wy41 wy42)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) wy41))) (zipWith zip0 wy44 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5198[label="wy41/Pos wy410",fontsize=10,color="white",style="solid",shape="box"];1931 -> 5198[label="",style="solid", color="burlywood", weight=9]; 5198 -> 1945[label="",style="solid", color="burlywood", weight=3]; 5199[label="wy41/Neg wy410",fontsize=10,color="white",style="solid",shape="box"];1931 -> 5199[label="",style="solid", color="burlywood", weight=9]; 5199 -> 1946[label="",style="solid", color="burlywood", weight=3]; 160[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (primMulInt (Pos wy310) (Pos wy4000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];160 -> 204[label="",style="solid", color="black", weight=3]; 161[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (primMulInt (Pos wy310) (Neg wy4000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];161 -> 205[label="",style="solid", color="black", weight=3]; 162[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (primMulInt (Neg wy310) (Pos wy4000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Neg wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];162 -> 206[label="",style="solid", color="black", weight=3]; 163[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (primMulInt (Neg wy310) (Neg wy4000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Neg wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];163 -> 207[label="",style="solid", color="black", weight=3]; 1551[label="primMulNat (Succ wy3100) wy4000",fontsize=16,color="burlywood",shape="box"];5200[label="wy4000/Succ wy40000",fontsize=10,color="white",style="solid",shape="box"];1551 -> 5200[label="",style="solid", color="burlywood", weight=9]; 5200 -> 1603[label="",style="solid", color="burlywood", weight=3]; 5201[label="wy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1551 -> 5201[label="",style="solid", color="burlywood", weight=9]; 5201 -> 1604[label="",style="solid", color="burlywood", weight=3]; 1552[label="primMulNat Zero wy4000",fontsize=16,color="burlywood",shape="box"];5202[label="wy4000/Succ wy40000",fontsize=10,color="white",style="solid",shape="box"];1552 -> 5202[label="",style="solid", color="burlywood", weight=9]; 5202 -> 1605[label="",style="solid", color="burlywood", weight=3]; 5203[label="wy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1552 -> 5203[label="",style="solid", color="burlywood", weight=9]; 5203 -> 1606[label="",style="solid", color="burlywood", weight=3]; 2075[label="primPlusNat (Succ wy5100) (Succ wy401000)",fontsize=16,color="black",shape="box"];2075 -> 2201[label="",style="solid", color="black", weight=3]; 2076[label="primPlusNat (Succ wy5100) Zero",fontsize=16,color="black",shape="box"];2076 -> 2202[label="",style="solid", color="black", weight=3]; 2077[label="primPlusNat Zero (Succ wy401000)",fontsize=16,color="black",shape="box"];2077 -> 2203[label="",style="solid", color="black", weight=3]; 2078[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2078 -> 2204[label="",style="solid", color="black", weight=3]; 3133[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos (Succ wy1450)) (primMulInt (Pos wy780) wy79)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy81 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5204[label="wy79/Pos wy790",fontsize=10,color="white",style="solid",shape="box"];3133 -> 5204[label="",style="solid", color="burlywood", weight=9]; 5204 -> 3159[label="",style="solid", color="burlywood", weight=3]; 5205[label="wy79/Neg wy790",fontsize=10,color="white",style="solid",shape="box"];3133 -> 5205[label="",style="solid", color="burlywood", weight=9]; 5205 -> 3160[label="",style="solid", color="burlywood", weight=3]; 3134[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos (Succ wy1450)) (primMulInt (Neg wy780) wy79)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)))) (zipWith zip0 wy81 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5206[label="wy79/Pos wy790",fontsize=10,color="white",style="solid",shape="box"];3134 -> 5206[label="",style="solid", color="burlywood", weight=9]; 5206 -> 3161[label="",style="solid", color="burlywood", weight=3]; 5207[label="wy79/Neg wy790",fontsize=10,color="white",style="solid",shape="box"];3134 -> 5207[label="",style="solid", color="burlywood", weight=9]; 5207 -> 3162[label="",style="solid", color="burlywood", weight=3]; 3135[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (primMulInt (Pos wy780) wy79)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy81 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5208[label="wy79/Pos wy790",fontsize=10,color="white",style="solid",shape="box"];3135 -> 5208[label="",style="solid", color="burlywood", weight=9]; 5208 -> 3163[label="",style="solid", color="burlywood", weight=3]; 5209[label="wy79/Neg wy790",fontsize=10,color="white",style="solid",shape="box"];3135 -> 5209[label="",style="solid", color="burlywood", weight=9]; 5209 -> 3164[label="",style="solid", color="burlywood", weight=3]; 3136[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (primMulInt (Neg wy780) wy79)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)))) (zipWith zip0 wy81 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5210[label="wy79/Pos wy790",fontsize=10,color="white",style="solid",shape="box"];3136 -> 5210[label="",style="solid", color="burlywood", weight=9]; 5210 -> 3165[label="",style="solid", color="burlywood", weight=3]; 5211[label="wy79/Neg wy790",fontsize=10,color="white",style="solid",shape="box"];3136 -> 5211[label="",style="solid", color="burlywood", weight=9]; 5211 -> 3166[label="",style="solid", color="burlywood", weight=3]; 171 -> 3951[label="",style="dashed", color="red", weight=0]; 171[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (Pos (primMulNat wy310 wy4000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];171 -> 3952[label="",style="dashed", color="magenta", weight=3]; 171 -> 3953[label="",style="dashed", color="magenta", weight=3]; 171 -> 3954[label="",style="dashed", color="magenta", weight=3]; 172 -> 4421[label="",style="dashed", color="red", weight=0]; 172[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (Neg (primMulNat wy310 wy4000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];172 -> 4422[label="",style="dashed", color="magenta", weight=3]; 172 -> 4423[label="",style="dashed", color="magenta", weight=3]; 172 -> 4424[label="",style="dashed", color="magenta", weight=3]; 173 -> 4421[label="",style="dashed", color="red", weight=0]; 173[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (Neg (primMulNat wy310 wy4000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Neg wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];173 -> 4425[label="",style="dashed", color="magenta", weight=3]; 173 -> 4426[label="",style="dashed", color="magenta", weight=3]; 173 -> 4427[label="",style="dashed", color="magenta", weight=3]; 174 -> 3951[label="",style="dashed", color="red", weight=0]; 174[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (Pos (primMulNat wy310 wy4000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Neg wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];174 -> 3955[label="",style="dashed", color="magenta", weight=3]; 174 -> 3956[label="",style="dashed", color="magenta", weight=3]; 174 -> 3957[label="",style="dashed", color="magenta", weight=3]; 3155[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg (Succ wy1520)) (primMulInt (Pos wy1530) wy154)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy155)) (Pos wy1530)))) (zipWith zip0 wy156 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5212[label="wy154/Pos wy1540",fontsize=10,color="white",style="solid",shape="box"];3155 -> 5212[label="",style="solid", color="burlywood", weight=9]; 5212 -> 3177[label="",style="solid", color="burlywood", weight=3]; 5213[label="wy154/Neg wy1540",fontsize=10,color="white",style="solid",shape="box"];3155 -> 5213[label="",style="solid", color="burlywood", weight=9]; 5213 -> 3178[label="",style="solid", color="burlywood", weight=3]; 3156[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg (Succ wy1520)) (primMulInt (Neg wy1530) wy154)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy155)) (Neg wy1530)))) (zipWith zip0 wy156 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5214[label="wy154/Pos wy1540",fontsize=10,color="white",style="solid",shape="box"];3156 -> 5214[label="",style="solid", color="burlywood", weight=9]; 5214 -> 3179[label="",style="solid", color="burlywood", weight=3]; 5215[label="wy154/Neg wy1540",fontsize=10,color="white",style="solid",shape="box"];3156 -> 5215[label="",style="solid", color="burlywood", weight=9]; 5215 -> 3180[label="",style="solid", color="burlywood", weight=3]; 3157[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (primMulInt (Pos wy1530) wy154)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy155)) (Pos wy1530)))) (zipWith zip0 wy156 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5216[label="wy154/Pos wy1540",fontsize=10,color="white",style="solid",shape="box"];3157 -> 5216[label="",style="solid", color="burlywood", weight=9]; 5216 -> 3181[label="",style="solid", color="burlywood", weight=3]; 5217[label="wy154/Neg wy1540",fontsize=10,color="white",style="solid",shape="box"];3157 -> 5217[label="",style="solid", color="burlywood", weight=9]; 5217 -> 3182[label="",style="solid", color="burlywood", weight=3]; 3158[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (primMulInt (Neg wy1530) wy154)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy155)) (Neg wy1530)))) (zipWith zip0 wy156 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5218[label="wy154/Pos wy1540",fontsize=10,color="white",style="solid",shape="box"];3158 -> 5218[label="",style="solid", color="burlywood", weight=9]; 5218 -> 3183[label="",style="solid", color="burlywood", weight=3]; 5219[label="wy154/Neg wy1540",fontsize=10,color="white",style="solid",shape="box"];3158 -> 5219[label="",style="solid", color="burlywood", weight=9]; 5219 -> 3184[label="",style="solid", color="burlywood", weight=3]; 182 -> 4328[label="",style="dashed", color="red", weight=0]; 182[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (Pos (primMulNat wy310 wy4000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];182 -> 4329[label="",style="dashed", color="magenta", weight=3]; 182 -> 4330[label="",style="dashed", color="magenta", weight=3]; 182 -> 4331[label="",style="dashed", color="magenta", weight=3]; 183 -> 4079[label="",style="dashed", color="red", weight=0]; 183[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (Neg (primMulNat wy310 wy4000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];183 -> 4080[label="",style="dashed", color="magenta", weight=3]; 183 -> 4081[label="",style="dashed", color="magenta", weight=3]; 183 -> 4082[label="",style="dashed", color="magenta", weight=3]; 184 -> 4079[label="",style="dashed", color="red", weight=0]; 184[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (Neg (primMulNat wy310 wy4000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Neg wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];184 -> 4083[label="",style="dashed", color="magenta", weight=3]; 184 -> 4084[label="",style="dashed", color="magenta", weight=3]; 184 -> 4085[label="",style="dashed", color="magenta", weight=3]; 185 -> 4328[label="",style="dashed", color="red", weight=0]; 185[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (Pos (primMulNat wy310 wy4000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Neg wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];185 -> 4332[label="",style="dashed", color="magenta", weight=3]; 185 -> 4333[label="",style="dashed", color="magenta", weight=3]; 185 -> 4334[label="",style="dashed", color="magenta", weight=3]; 3173[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg (Succ wy1570)) (primMulInt (Pos wy1370) wy138)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy139)) (Pos wy1370)))) (zipWith zip0 wy140 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5220[label="wy138/Pos wy1380",fontsize=10,color="white",style="solid",shape="box"];3173 -> 5220[label="",style="solid", color="burlywood", weight=9]; 5220 -> 3199[label="",style="solid", color="burlywood", weight=3]; 5221[label="wy138/Neg wy1380",fontsize=10,color="white",style="solid",shape="box"];3173 -> 5221[label="",style="solid", color="burlywood", weight=9]; 5221 -> 3200[label="",style="solid", color="burlywood", weight=3]; 3174[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg (Succ wy1570)) (primMulInt (Neg wy1370) wy138)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy139)) (Neg wy1370)))) (zipWith zip0 wy140 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5222[label="wy138/Pos wy1380",fontsize=10,color="white",style="solid",shape="box"];3174 -> 5222[label="",style="solid", color="burlywood", weight=9]; 5222 -> 3201[label="",style="solid", color="burlywood", weight=3]; 5223[label="wy138/Neg wy1380",fontsize=10,color="white",style="solid",shape="box"];3174 -> 5223[label="",style="solid", color="burlywood", weight=9]; 5223 -> 3202[label="",style="solid", color="burlywood", weight=3]; 3175[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (primMulInt (Pos wy1370) wy138)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy139)) (Pos wy1370)))) (zipWith zip0 wy140 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5224[label="wy138/Pos wy1380",fontsize=10,color="white",style="solid",shape="box"];3175 -> 5224[label="",style="solid", color="burlywood", weight=9]; 5224 -> 3203[label="",style="solid", color="burlywood", weight=3]; 5225[label="wy138/Neg wy1380",fontsize=10,color="white",style="solid",shape="box"];3175 -> 5225[label="",style="solid", color="burlywood", weight=9]; 5225 -> 3204[label="",style="solid", color="burlywood", weight=3]; 3176[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (primMulInt (Neg wy1370) wy138)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy139)) (Neg wy1370)))) (zipWith zip0 wy140 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5226[label="wy138/Pos wy1380",fontsize=10,color="white",style="solid",shape="box"];3176 -> 5226[label="",style="solid", color="burlywood", weight=9]; 5226 -> 3205[label="",style="solid", color="burlywood", weight=3]; 5227[label="wy138/Neg wy1380",fontsize=10,color="white",style="solid",shape="box"];3176 -> 5227[label="",style="solid", color="burlywood", weight=9]; 5227 -> 3206[label="",style="solid", color="burlywood", weight=3]; 193 -> 4328[label="",style="dashed", color="red", weight=0]; 193[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (Pos (primMulNat wy310 wy4000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];193 -> 4335[label="",style="dashed", color="magenta", weight=3]; 193 -> 4336[label="",style="dashed", color="magenta", weight=3]; 193 -> 4337[label="",style="dashed", color="magenta", weight=3]; 194 -> 4079[label="",style="dashed", color="red", weight=0]; 194[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (Neg (primMulNat wy310 wy4000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];194 -> 4086[label="",style="dashed", color="magenta", weight=3]; 194 -> 4087[label="",style="dashed", color="magenta", weight=3]; 194 -> 4088[label="",style="dashed", color="magenta", weight=3]; 195 -> 4079[label="",style="dashed", color="red", weight=0]; 195[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (Neg (primMulNat wy310 wy4000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Neg wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];195 -> 4089[label="",style="dashed", color="magenta", weight=3]; 195 -> 4090[label="",style="dashed", color="magenta", weight=3]; 195 -> 4091[label="",style="dashed", color="magenta", weight=3]; 196 -> 4328[label="",style="dashed", color="red", weight=0]; 196[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (Pos (primMulNat wy310 wy4000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Neg wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];196 -> 4338[label="",style="dashed", color="magenta", weight=3]; 196 -> 4339[label="",style="dashed", color="magenta", weight=3]; 196 -> 4340[label="",style="dashed", color="magenta", weight=3]; 1562[label="Succ (Succ (primPlusNat wy510 wy40100))",fontsize=16,color="green",shape="box"];1562 -> 1932[label="",style="dashed", color="green", weight=3]; 1563[label="Succ wy40100",fontsize=16,color="green",shape="box"];1943[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos (Succ wy610)) (primMulInt (Pos wy410) wy42)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy44 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5228[label="wy42/Pos wy420",fontsize=10,color="white",style="solid",shape="box"];1943 -> 5228[label="",style="solid", color="burlywood", weight=9]; 5228 -> 2047[label="",style="solid", color="burlywood", weight=3]; 5229[label="wy42/Neg wy420",fontsize=10,color="white",style="solid",shape="box"];1943 -> 5229[label="",style="solid", color="burlywood", weight=9]; 5229 -> 2048[label="",style="solid", color="burlywood", weight=3]; 1944[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos (Succ wy610)) (primMulInt (Neg wy410) wy42)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)))) (zipWith zip0 wy44 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5230[label="wy42/Pos wy420",fontsize=10,color="white",style="solid",shape="box"];1944 -> 5230[label="",style="solid", color="burlywood", weight=9]; 5230 -> 2049[label="",style="solid", color="burlywood", weight=3]; 5231[label="wy42/Neg wy420",fontsize=10,color="white",style="solid",shape="box"];1944 -> 5231[label="",style="solid", color="burlywood", weight=9]; 5231 -> 2050[label="",style="solid", color="burlywood", weight=3]; 1945[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (primMulInt (Pos wy410) wy42)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy44 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5232[label="wy42/Pos wy420",fontsize=10,color="white",style="solid",shape="box"];1945 -> 5232[label="",style="solid", color="burlywood", weight=9]; 5232 -> 2051[label="",style="solid", color="burlywood", weight=3]; 5233[label="wy42/Neg wy420",fontsize=10,color="white",style="solid",shape="box"];1945 -> 5233[label="",style="solid", color="burlywood", weight=9]; 5233 -> 2052[label="",style="solid", color="burlywood", weight=3]; 1946[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (primMulInt (Neg wy410) wy42)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)))) (zipWith zip0 wy44 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5234[label="wy42/Pos wy420",fontsize=10,color="white",style="solid",shape="box"];1946 -> 5234[label="",style="solid", color="burlywood", weight=9]; 5234 -> 2053[label="",style="solid", color="burlywood", weight=3]; 5235[label="wy42/Neg wy420",fontsize=10,color="white",style="solid",shape="box"];1946 -> 5235[label="",style="solid", color="burlywood", weight=9]; 5235 -> 2054[label="",style="solid", color="burlywood", weight=3]; 204 -> 3951[label="",style="dashed", color="red", weight=0]; 204[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (Pos (primMulNat wy310 wy4000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];204 -> 3958[label="",style="dashed", color="magenta", weight=3]; 204 -> 3959[label="",style="dashed", color="magenta", weight=3]; 204 -> 3960[label="",style="dashed", color="magenta", weight=3]; 205 -> 4421[label="",style="dashed", color="red", weight=0]; 205[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (Neg (primMulNat wy310 wy4000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];205 -> 4428[label="",style="dashed", color="magenta", weight=3]; 205 -> 4429[label="",style="dashed", color="magenta", weight=3]; 205 -> 4430[label="",style="dashed", color="magenta", weight=3]; 206 -> 4421[label="",style="dashed", color="red", weight=0]; 206[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (Neg (primMulNat wy310 wy4000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Neg wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];206 -> 4431[label="",style="dashed", color="magenta", weight=3]; 206 -> 4432[label="",style="dashed", color="magenta", weight=3]; 206 -> 4433[label="",style="dashed", color="magenta", weight=3]; 207 -> 3951[label="",style="dashed", color="red", weight=0]; 207[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (Pos (primMulNat wy310 wy4000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Neg wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];207 -> 3961[label="",style="dashed", color="magenta", weight=3]; 207 -> 3962[label="",style="dashed", color="magenta", weight=3]; 207 -> 3963[label="",style="dashed", color="magenta", weight=3]; 1603[label="primMulNat (Succ wy3100) (Succ wy40000)",fontsize=16,color="black",shape="box"];1603 -> 1634[label="",style="solid", color="black", weight=3]; 1604[label="primMulNat (Succ wy3100) Zero",fontsize=16,color="black",shape="box"];1604 -> 1635[label="",style="solid", color="black", weight=3]; 1605[label="primMulNat Zero (Succ wy40000)",fontsize=16,color="black",shape="box"];1605 -> 1636[label="",style="solid", color="black", weight=3]; 1606[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1606 -> 1637[label="",style="solid", color="black", weight=3]; 2201[label="Succ (Succ (primPlusNat wy5100 wy401000))",fontsize=16,color="green",shape="box"];2201 -> 2300[label="",style="dashed", color="green", weight=3]; 2202[label="Succ wy5100",fontsize=16,color="green",shape="box"];2203[label="Succ wy401000",fontsize=16,color="green",shape="box"];2204[label="Zero",fontsize=16,color="green",shape="box"];3159[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos (Succ wy1450)) (primMulInt (Pos wy780) (Pos wy790))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy81 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3159 -> 3185[label="",style="solid", color="black", weight=3]; 3160[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos (Succ wy1450)) (primMulInt (Pos wy780) (Neg wy790))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy81 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3160 -> 3186[label="",style="solid", color="black", weight=3]; 3161[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos (Succ wy1450)) (primMulInt (Neg wy780) (Pos wy790))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)))) (zipWith zip0 wy81 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3161 -> 3187[label="",style="solid", color="black", weight=3]; 3162[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos (Succ wy1450)) (primMulInt (Neg wy780) (Neg wy790))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)))) (zipWith zip0 wy81 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3162 -> 3188[label="",style="solid", color="black", weight=3]; 3163[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (primMulInt (Pos wy780) (Pos wy790))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy81 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3163 -> 3189[label="",style="solid", color="black", weight=3]; 3164[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (primMulInt (Pos wy780) (Neg wy790))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy81 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3164 -> 3190[label="",style="solid", color="black", weight=3]; 3165[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (primMulInt (Neg wy780) (Pos wy790))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)))) (zipWith zip0 wy81 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3165 -> 3191[label="",style="solid", color="black", weight=3]; 3166[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (primMulInt (Neg wy780) (Neg wy790))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)))) (zipWith zip0 wy81 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3166 -> 3192[label="",style="solid", color="black", weight=3]; 3952[label="Zero",fontsize=16,color="green",shape="box"];3953 -> 1487[label="",style="dashed", color="red", weight=0]; 3953[label="primMulNat wy310 wy4000",fontsize=16,color="magenta"];3954 -> 1986[label="",style="dashed", color="red", weight=0]; 3954[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3951[label="(++) List.findIndices000 (Pos wy125) (primEqInt (Pos Zero) (Pos wy213)) wy212",fontsize=16,color="burlywood",shape="triangle"];5236[label="wy213/Succ wy2130",fontsize=10,color="white",style="solid",shape="box"];3951 -> 5236[label="",style="solid", color="burlywood", weight=9]; 5236 -> 3999[label="",style="solid", color="burlywood", weight=3]; 5237[label="wy213/Zero",fontsize=10,color="white",style="solid",shape="box"];3951 -> 5237[label="",style="solid", color="burlywood", weight=9]; 5237 -> 4000[label="",style="solid", color="burlywood", weight=3]; 4422 -> 4062[label="",style="dashed", color="red", weight=0]; 4422[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4422 -> 4472[label="",style="dashed", color="magenta", weight=3]; 4422 -> 4473[label="",style="dashed", color="magenta", weight=3]; 4423[label="Zero",fontsize=16,color="green",shape="box"];4424 -> 1487[label="",style="dashed", color="red", weight=0]; 4424[label="primMulNat wy310 wy4000",fontsize=16,color="magenta"];4424 -> 4474[label="",style="dashed", color="magenta", weight=3]; 4421[label="(++) List.findIndices000 (Pos wy123) (primEqInt (Pos Zero) (Neg wy229)) wy228",fontsize=16,color="burlywood",shape="triangle"];5238[label="wy229/Succ wy2290",fontsize=10,color="white",style="solid",shape="box"];4421 -> 5238[label="",style="solid", color="burlywood", weight=9]; 5238 -> 4475[label="",style="solid", color="burlywood", weight=3]; 5239[label="wy229/Zero",fontsize=10,color="white",style="solid",shape="box"];4421 -> 5239[label="",style="solid", color="burlywood", weight=9]; 5239 -> 4476[label="",style="solid", color="burlywood", weight=3]; 4425 -> 3821[label="",style="dashed", color="red", weight=0]; 4425[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Neg wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4425 -> 4477[label="",style="dashed", color="magenta", weight=3]; 4425 -> 4478[label="",style="dashed", color="magenta", weight=3]; 4426[label="Zero",fontsize=16,color="green",shape="box"];4427 -> 1487[label="",style="dashed", color="red", weight=0]; 4427[label="primMulNat wy310 wy4000",fontsize=16,color="magenta"];4427 -> 4479[label="",style="dashed", color="magenta", weight=3]; 3955[label="Zero",fontsize=16,color="green",shape="box"];3956 -> 1487[label="",style="dashed", color="red", weight=0]; 3956[label="primMulNat wy310 wy4000",fontsize=16,color="magenta"];3956 -> 4001[label="",style="dashed", color="magenta", weight=3]; 3956 -> 4002[label="",style="dashed", color="magenta", weight=3]; 3957 -> 3821[label="",style="dashed", color="red", weight=0]; 3957[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Neg wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3957 -> 4003[label="",style="dashed", color="magenta", weight=3]; 3957 -> 4004[label="",style="dashed", color="magenta", weight=3]; 3177[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg (Succ wy1520)) (primMulInt (Pos wy1530) (Pos wy1540))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy155)) (Pos wy1530)))) (zipWith zip0 wy156 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3177 -> 3207[label="",style="solid", color="black", weight=3]; 3178[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg (Succ wy1520)) (primMulInt (Pos wy1530) (Neg wy1540))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy155)) (Pos wy1530)))) (zipWith zip0 wy156 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3178 -> 3208[label="",style="solid", color="black", weight=3]; 3179[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg (Succ wy1520)) (primMulInt (Neg wy1530) (Pos wy1540))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy155)) (Neg wy1530)))) (zipWith zip0 wy156 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3179 -> 3209[label="",style="solid", color="black", weight=3]; 3180[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg (Succ wy1520)) (primMulInt (Neg wy1530) (Neg wy1540))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy155)) (Neg wy1530)))) (zipWith zip0 wy156 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3180 -> 3210[label="",style="solid", color="black", weight=3]; 3181[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (primMulInt (Pos wy1530) (Pos wy1540))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy155)) (Pos wy1530)))) (zipWith zip0 wy156 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3181 -> 3211[label="",style="solid", color="black", weight=3]; 3182[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (primMulInt (Pos wy1530) (Neg wy1540))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy155)) (Pos wy1530)))) (zipWith zip0 wy156 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3182 -> 3212[label="",style="solid", color="black", weight=3]; 3183[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (primMulInt (Neg wy1530) (Pos wy1540))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy155)) (Neg wy1530)))) (zipWith zip0 wy156 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3183 -> 3213[label="",style="solid", color="black", weight=3]; 3184[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (primMulInt (Neg wy1530) (Neg wy1540))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy155)) (Neg wy1530)))) (zipWith zip0 wy156 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3184 -> 3214[label="",style="solid", color="black", weight=3]; 4329 -> 4062[label="",style="dashed", color="red", weight=0]; 4329[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4329 -> 4379[label="",style="dashed", color="magenta", weight=3]; 4329 -> 4380[label="",style="dashed", color="magenta", weight=3]; 4330 -> 1487[label="",style="dashed", color="red", weight=0]; 4330[label="primMulNat wy310 wy4000",fontsize=16,color="magenta"];4331[label="Zero",fontsize=16,color="green",shape="box"];4328[label="(++) List.findIndices000 (Pos wy121) (primEqInt (Neg Zero) (Pos wy227)) wy226",fontsize=16,color="burlywood",shape="triangle"];5240[label="wy227/Succ wy2270",fontsize=10,color="white",style="solid",shape="box"];4328 -> 5240[label="",style="solid", color="burlywood", weight=9]; 5240 -> 4381[label="",style="solid", color="burlywood", weight=3]; 5241[label="wy227/Zero",fontsize=10,color="white",style="solid",shape="box"];4328 -> 5241[label="",style="solid", color="burlywood", weight=9]; 5241 -> 4382[label="",style="solid", color="burlywood", weight=3]; 4080[label="Zero",fontsize=16,color="green",shape="box"];4081 -> 4062[label="",style="dashed", color="red", weight=0]; 4081[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4081 -> 4127[label="",style="dashed", color="magenta", weight=3]; 4081 -> 4128[label="",style="dashed", color="magenta", weight=3]; 4082 -> 1487[label="",style="dashed", color="red", weight=0]; 4082[label="primMulNat wy310 wy4000",fontsize=16,color="magenta"];4082 -> 4129[label="",style="dashed", color="magenta", weight=3]; 4079[label="(++) List.findIndices000 (Pos wy119) (primEqInt (Neg Zero) (Neg wy219)) wy218",fontsize=16,color="burlywood",shape="triangle"];5242[label="wy219/Succ wy2190",fontsize=10,color="white",style="solid",shape="box"];4079 -> 5242[label="",style="solid", color="burlywood", weight=9]; 5242 -> 4130[label="",style="solid", color="burlywood", weight=3]; 5243[label="wy219/Zero",fontsize=10,color="white",style="solid",shape="box"];4079 -> 5243[label="",style="solid", color="burlywood", weight=9]; 5243 -> 4131[label="",style="solid", color="burlywood", weight=3]; 4083[label="Zero",fontsize=16,color="green",shape="box"];4084 -> 3821[label="",style="dashed", color="red", weight=0]; 4084[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Neg wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4084 -> 4132[label="",style="dashed", color="magenta", weight=3]; 4084 -> 4133[label="",style="dashed", color="magenta", weight=3]; 4085 -> 1487[label="",style="dashed", color="red", weight=0]; 4085[label="primMulNat wy310 wy4000",fontsize=16,color="magenta"];4085 -> 4134[label="",style="dashed", color="magenta", weight=3]; 4332 -> 3821[label="",style="dashed", color="red", weight=0]; 4332[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Neg wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4332 -> 4383[label="",style="dashed", color="magenta", weight=3]; 4332 -> 4384[label="",style="dashed", color="magenta", weight=3]; 4333 -> 1487[label="",style="dashed", color="red", weight=0]; 4333[label="primMulNat wy310 wy4000",fontsize=16,color="magenta"];4333 -> 4385[label="",style="dashed", color="magenta", weight=3]; 4333 -> 4386[label="",style="dashed", color="magenta", weight=3]; 4334[label="Zero",fontsize=16,color="green",shape="box"];3199[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg (Succ wy1570)) (primMulInt (Pos wy1370) (Pos wy1380))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy139)) (Pos wy1370)))) (zipWith zip0 wy140 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3199 -> 3241[label="",style="solid", color="black", weight=3]; 3200[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg (Succ wy1570)) (primMulInt (Pos wy1370) (Neg wy1380))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy139)) (Pos wy1370)))) (zipWith zip0 wy140 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3200 -> 3242[label="",style="solid", color="black", weight=3]; 3201[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg (Succ wy1570)) (primMulInt (Neg wy1370) (Pos wy1380))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy139)) (Neg wy1370)))) (zipWith zip0 wy140 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3201 -> 3243[label="",style="solid", color="black", weight=3]; 3202[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg (Succ wy1570)) (primMulInt (Neg wy1370) (Neg wy1380))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy139)) (Neg wy1370)))) (zipWith zip0 wy140 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3202 -> 3244[label="",style="solid", color="black", weight=3]; 3203[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (primMulInt (Pos wy1370) (Pos wy1380))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy139)) (Pos wy1370)))) (zipWith zip0 wy140 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3203 -> 3245[label="",style="solid", color="black", weight=3]; 3204[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (primMulInt (Pos wy1370) (Neg wy1380))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy139)) (Pos wy1370)))) (zipWith zip0 wy140 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3204 -> 3246[label="",style="solid", color="black", weight=3]; 3205[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (primMulInt (Neg wy1370) (Pos wy1380))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy139)) (Neg wy1370)))) (zipWith zip0 wy140 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3205 -> 3247[label="",style="solid", color="black", weight=3]; 3206[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (primMulInt (Neg wy1370) (Neg wy1380))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy139)) (Neg wy1370)))) (zipWith zip0 wy140 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3206 -> 3248[label="",style="solid", color="black", weight=3]; 4335 -> 3859[label="",style="dashed", color="red", weight=0]; 4335[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4335 -> 4387[label="",style="dashed", color="magenta", weight=3]; 4335 -> 4388[label="",style="dashed", color="magenta", weight=3]; 4336 -> 1487[label="",style="dashed", color="red", weight=0]; 4336[label="primMulNat wy310 wy4000",fontsize=16,color="magenta"];4337[label="Zero",fontsize=16,color="green",shape="box"];4086[label="Zero",fontsize=16,color="green",shape="box"];4087 -> 3859[label="",style="dashed", color="red", weight=0]; 4087[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4087 -> 4135[label="",style="dashed", color="magenta", weight=3]; 4087 -> 4136[label="",style="dashed", color="magenta", weight=3]; 4088 -> 1487[label="",style="dashed", color="red", weight=0]; 4088[label="primMulNat wy310 wy4000",fontsize=16,color="magenta"];4088 -> 4137[label="",style="dashed", color="magenta", weight=3]; 4089[label="Zero",fontsize=16,color="green",shape="box"];4090 -> 3930[label="",style="dashed", color="red", weight=0]; 4090[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Neg wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4090 -> 4138[label="",style="dashed", color="magenta", weight=3]; 4090 -> 4139[label="",style="dashed", color="magenta", weight=3]; 4091 -> 1487[label="",style="dashed", color="red", weight=0]; 4091[label="primMulNat wy310 wy4000",fontsize=16,color="magenta"];4091 -> 4140[label="",style="dashed", color="magenta", weight=3]; 4338 -> 3930[label="",style="dashed", color="red", weight=0]; 4338[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Neg wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4338 -> 4389[label="",style="dashed", color="magenta", weight=3]; 4338 -> 4390[label="",style="dashed", color="magenta", weight=3]; 4339 -> 1487[label="",style="dashed", color="red", weight=0]; 4339[label="primMulNat wy310 wy4000",fontsize=16,color="magenta"];4339 -> 4391[label="",style="dashed", color="magenta", weight=3]; 4339 -> 4392[label="",style="dashed", color="magenta", weight=3]; 4340[label="Zero",fontsize=16,color="green",shape="box"];2047[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos (Succ wy610)) (primMulInt (Pos wy410) (Pos wy420))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy44 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];2047 -> 2177[label="",style="solid", color="black", weight=3]; 2048[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos (Succ wy610)) (primMulInt (Pos wy410) (Neg wy420))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy44 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];2048 -> 2178[label="",style="solid", color="black", weight=3]; 2049[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos (Succ wy610)) (primMulInt (Neg wy410) (Pos wy420))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)))) (zipWith zip0 wy44 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];2049 -> 2179[label="",style="solid", color="black", weight=3]; 2050[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos (Succ wy610)) (primMulInt (Neg wy410) (Neg wy420))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)))) (zipWith zip0 wy44 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];2050 -> 2180[label="",style="solid", color="black", weight=3]; 2051[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (primMulInt (Pos wy410) (Pos wy420))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy44 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];2051 -> 2181[label="",style="solid", color="black", weight=3]; 2052[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (primMulInt (Pos wy410) (Neg wy420))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy44 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];2052 -> 2182[label="",style="solid", color="black", weight=3]; 2053[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (primMulInt (Neg wy410) (Pos wy420))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)))) (zipWith zip0 wy44 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];2053 -> 2183[label="",style="solid", color="black", weight=3]; 2054[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (primMulInt (Neg wy410) (Neg wy420))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)))) (zipWith zip0 wy44 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];2054 -> 2184[label="",style="solid", color="black", weight=3]; 3958[label="Zero",fontsize=16,color="green",shape="box"];3959 -> 1487[label="",style="dashed", color="red", weight=0]; 3959[label="primMulNat wy310 wy4000",fontsize=16,color="magenta"];3960 -> 3859[label="",style="dashed", color="red", weight=0]; 3960[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3960 -> 4005[label="",style="dashed", color="magenta", weight=3]; 3960 -> 4006[label="",style="dashed", color="magenta", weight=3]; 4428 -> 3859[label="",style="dashed", color="red", weight=0]; 4428[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4428 -> 4480[label="",style="dashed", color="magenta", weight=3]; 4428 -> 4481[label="",style="dashed", color="magenta", weight=3]; 4429[label="Zero",fontsize=16,color="green",shape="box"];4430 -> 1487[label="",style="dashed", color="red", weight=0]; 4430[label="primMulNat wy310 wy4000",fontsize=16,color="magenta"];4430 -> 4482[label="",style="dashed", color="magenta", weight=3]; 4431 -> 3930[label="",style="dashed", color="red", weight=0]; 4431[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Neg wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4431 -> 4483[label="",style="dashed", color="magenta", weight=3]; 4431 -> 4484[label="",style="dashed", color="magenta", weight=3]; 4432[label="Zero",fontsize=16,color="green",shape="box"];4433 -> 1487[label="",style="dashed", color="red", weight=0]; 4433[label="primMulNat wy310 wy4000",fontsize=16,color="magenta"];4433 -> 4485[label="",style="dashed", color="magenta", weight=3]; 3961[label="Zero",fontsize=16,color="green",shape="box"];3962 -> 1487[label="",style="dashed", color="red", weight=0]; 3962[label="primMulNat wy310 wy4000",fontsize=16,color="magenta"];3962 -> 4007[label="",style="dashed", color="magenta", weight=3]; 3962 -> 4008[label="",style="dashed", color="magenta", weight=3]; 3963 -> 3930[label="",style="dashed", color="red", weight=0]; 3963[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Neg wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3963 -> 4009[label="",style="dashed", color="magenta", weight=3]; 3963 -> 4010[label="",style="dashed", color="magenta", weight=3]; 1634 -> 1438[label="",style="dashed", color="red", weight=0]; 1634[label="primPlusNat (primMulNat wy3100 (Succ wy40000)) (Succ wy40000)",fontsize=16,color="magenta"];1634 -> 1732[label="",style="dashed", color="magenta", weight=3]; 1634 -> 1733[label="",style="dashed", color="magenta", weight=3]; 1635[label="Zero",fontsize=16,color="green",shape="box"];1636[label="Zero",fontsize=16,color="green",shape="box"];1637[label="Zero",fontsize=16,color="green",shape="box"];2300 -> 1932[label="",style="dashed", color="red", weight=0]; 2300[label="primPlusNat wy5100 wy401000",fontsize=16,color="magenta"];2300 -> 2321[label="",style="dashed", color="magenta", weight=3]; 2300 -> 2322[label="",style="dashed", color="magenta", weight=3]; 3185 -> 4581[label="",style="dashed", color="red", weight=0]; 3185[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos (Succ wy1450)) (Pos (primMulNat wy780 wy790))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy81 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3185 -> 4582[label="",style="dashed", color="magenta", weight=3]; 3185 -> 4583[label="",style="dashed", color="magenta", weight=3]; 3185 -> 4584[label="",style="dashed", color="magenta", weight=3]; 3185 -> 4585[label="",style="dashed", color="magenta", weight=3]; 3186 -> 4656[label="",style="dashed", color="red", weight=0]; 3186[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos (Succ wy1450)) (Neg (primMulNat wy780 wy790))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy81 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3186 -> 4657[label="",style="dashed", color="magenta", weight=3]; 3186 -> 4658[label="",style="dashed", color="magenta", weight=3]; 3186 -> 4659[label="",style="dashed", color="magenta", weight=3]; 3186 -> 4660[label="",style="dashed", color="magenta", weight=3]; 3187 -> 4656[label="",style="dashed", color="red", weight=0]; 3187[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos (Succ wy1450)) (Neg (primMulNat wy780 wy790))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)))) (zipWith zip0 wy81 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3187 -> 4661[label="",style="dashed", color="magenta", weight=3]; 3187 -> 4662[label="",style="dashed", color="magenta", weight=3]; 3187 -> 4663[label="",style="dashed", color="magenta", weight=3]; 3187 -> 4664[label="",style="dashed", color="magenta", weight=3]; 3188 -> 4581[label="",style="dashed", color="red", weight=0]; 3188[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos (Succ wy1450)) (Pos (primMulNat wy780 wy790))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)))) (zipWith zip0 wy81 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3188 -> 4586[label="",style="dashed", color="magenta", weight=3]; 3188 -> 4587[label="",style="dashed", color="magenta", weight=3]; 3188 -> 4588[label="",style="dashed", color="magenta", weight=3]; 3188 -> 4589[label="",style="dashed", color="magenta", weight=3]; 3189 -> 3951[label="",style="dashed", color="red", weight=0]; 3189[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (Pos (primMulNat wy780 wy790))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy81 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3189 -> 3976[label="",style="dashed", color="magenta", weight=3]; 3189 -> 3977[label="",style="dashed", color="magenta", weight=3]; 3189 -> 3978[label="",style="dashed", color="magenta", weight=3]; 3190 -> 4421[label="",style="dashed", color="red", weight=0]; 3190[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (Neg (primMulNat wy780 wy790))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy81 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3190 -> 4446[label="",style="dashed", color="magenta", weight=3]; 3190 -> 4447[label="",style="dashed", color="magenta", weight=3]; 3190 -> 4448[label="",style="dashed", color="magenta", weight=3]; 3191 -> 4421[label="",style="dashed", color="red", weight=0]; 3191[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (Neg (primMulNat wy780 wy790))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)))) (zipWith zip0 wy81 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3191 -> 4449[label="",style="dashed", color="magenta", weight=3]; 3191 -> 4450[label="",style="dashed", color="magenta", weight=3]; 3191 -> 4451[label="",style="dashed", color="magenta", weight=3]; 3192 -> 3951[label="",style="dashed", color="red", weight=0]; 3192[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (Pos (primMulNat wy780 wy790))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)))) (zipWith zip0 wy81 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3192 -> 3979[label="",style="dashed", color="magenta", weight=3]; 3192 -> 3980[label="",style="dashed", color="magenta", weight=3]; 3192 -> 3981[label="",style="dashed", color="magenta", weight=3]; 1986[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="triangle"];5244[label="wy41/wy410 : wy411",fontsize=10,color="white",style="solid",shape="box"];1986 -> 5244[label="",style="solid", color="burlywood", weight=9]; 5244 -> 2063[label="",style="solid", color="burlywood", weight=3]; 5245[label="wy41/[]",fontsize=10,color="white",style="solid",shape="box"];1986 -> 5245[label="",style="solid", color="burlywood", weight=9]; 5245 -> 2064[label="",style="solid", color="burlywood", weight=3]; 3999[label="(++) List.findIndices000 (Pos wy125) (primEqInt (Pos Zero) (Pos (Succ wy2130))) wy212",fontsize=16,color="black",shape="box"];3999 -> 4048[label="",style="solid", color="black", weight=3]; 4000[label="(++) List.findIndices000 (Pos wy125) (primEqInt (Pos Zero) (Pos Zero)) wy212",fontsize=16,color="black",shape="box"];4000 -> 4049[label="",style="solid", color="black", weight=3]; 4472[label="Zero",fontsize=16,color="green",shape="box"];4473[label="wy41",fontsize=16,color="green",shape="box"];4062[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="triangle"];5246[label="wy411/wy4110 : wy4111",fontsize=10,color="white",style="solid",shape="box"];4062 -> 5246[label="",style="solid", color="burlywood", weight=9]; 5246 -> 4075[label="",style="solid", color="burlywood", weight=3]; 5247[label="wy411/[]",fontsize=10,color="white",style="solid",shape="box"];4062 -> 5247[label="",style="solid", color="burlywood", weight=9]; 5247 -> 4076[label="",style="solid", color="burlywood", weight=3]; 4474[label="wy4000",fontsize=16,color="green",shape="box"];4475[label="(++) List.findIndices000 (Pos wy123) (primEqInt (Pos Zero) (Neg (Succ wy2290))) wy228",fontsize=16,color="black",shape="box"];4475 -> 4527[label="",style="solid", color="black", weight=3]; 4476[label="(++) List.findIndices000 (Pos wy123) (primEqInt (Pos Zero) (Neg Zero)) wy228",fontsize=16,color="black",shape="box"];4476 -> 4528[label="",style="solid", color="black", weight=3]; 4477[label="wy41",fontsize=16,color="green",shape="box"];4478[label="Zero",fontsize=16,color="green",shape="box"];3821[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Neg wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy121 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="triangle"];5248[label="wy411/wy4110 : wy4111",fontsize=10,color="white",style="solid",shape="box"];3821 -> 5248[label="",style="solid", color="burlywood", weight=9]; 5248 -> 3831[label="",style="solid", color="burlywood", weight=3]; 5249[label="wy411/[]",fontsize=10,color="white",style="solid",shape="box"];3821 -> 5249[label="",style="solid", color="burlywood", weight=9]; 5249 -> 3832[label="",style="solid", color="burlywood", weight=3]; 4479[label="wy310",fontsize=16,color="green",shape="box"];4001[label="wy310",fontsize=16,color="green",shape="box"];4002[label="wy4000",fontsize=16,color="green",shape="box"];4003[label="wy41",fontsize=16,color="green",shape="box"];4004[label="Zero",fontsize=16,color="green",shape="box"];3207 -> 4256[label="",style="dashed", color="red", weight=0]; 3207[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg (Succ wy1520)) (Pos (primMulNat wy1530 wy1540))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy155)) (Pos wy1530)))) (zipWith zip0 wy156 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3207 -> 4257[label="",style="dashed", color="magenta", weight=3]; 3207 -> 4258[label="",style="dashed", color="magenta", weight=3]; 3207 -> 4259[label="",style="dashed", color="magenta", weight=3]; 3207 -> 4260[label="",style="dashed", color="magenta", weight=3]; 3208 -> 4181[label="",style="dashed", color="red", weight=0]; 3208[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg (Succ wy1520)) (Neg (primMulNat wy1530 wy1540))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy155)) (Pos wy1530)))) (zipWith zip0 wy156 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3208 -> 4182[label="",style="dashed", color="magenta", weight=3]; 3208 -> 4183[label="",style="dashed", color="magenta", weight=3]; 3208 -> 4184[label="",style="dashed", color="magenta", weight=3]; 3208 -> 4185[label="",style="dashed", color="magenta", weight=3]; 3209 -> 4181[label="",style="dashed", color="red", weight=0]; 3209[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg (Succ wy1520)) (Neg (primMulNat wy1530 wy1540))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy155)) (Neg wy1530)))) (zipWith zip0 wy156 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3209 -> 4186[label="",style="dashed", color="magenta", weight=3]; 3209 -> 4187[label="",style="dashed", color="magenta", weight=3]; 3209 -> 4188[label="",style="dashed", color="magenta", weight=3]; 3209 -> 4189[label="",style="dashed", color="magenta", weight=3]; 3210 -> 4256[label="",style="dashed", color="red", weight=0]; 3210[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg (Succ wy1520)) (Pos (primMulNat wy1530 wy1540))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy155)) (Neg wy1530)))) (zipWith zip0 wy156 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3210 -> 4261[label="",style="dashed", color="magenta", weight=3]; 3210 -> 4262[label="",style="dashed", color="magenta", weight=3]; 3210 -> 4263[label="",style="dashed", color="magenta", weight=3]; 3210 -> 4264[label="",style="dashed", color="magenta", weight=3]; 3211 -> 4328[label="",style="dashed", color="red", weight=0]; 3211[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (Pos (primMulNat wy1530 wy1540))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy155)) (Pos wy1530)))) (zipWith zip0 wy156 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3211 -> 4353[label="",style="dashed", color="magenta", weight=3]; 3211 -> 4354[label="",style="dashed", color="magenta", weight=3]; 3211 -> 4355[label="",style="dashed", color="magenta", weight=3]; 3212 -> 4079[label="",style="dashed", color="red", weight=0]; 3212[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (Neg (primMulNat wy1530 wy1540))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy155)) (Pos wy1530)))) (zipWith zip0 wy156 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3212 -> 4101[label="",style="dashed", color="magenta", weight=3]; 3212 -> 4102[label="",style="dashed", color="magenta", weight=3]; 3212 -> 4103[label="",style="dashed", color="magenta", weight=3]; 3213 -> 4079[label="",style="dashed", color="red", weight=0]; 3213[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (Neg (primMulNat wy1530 wy1540))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy155)) (Neg wy1530)))) (zipWith zip0 wy156 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3213 -> 4104[label="",style="dashed", color="magenta", weight=3]; 3213 -> 4105[label="",style="dashed", color="magenta", weight=3]; 3213 -> 4106[label="",style="dashed", color="magenta", weight=3]; 3214 -> 4328[label="",style="dashed", color="red", weight=0]; 3214[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (Pos (primMulNat wy1530 wy1540))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy155)) (Neg wy1530)))) (zipWith zip0 wy156 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3214 -> 4356[label="",style="dashed", color="magenta", weight=3]; 3214 -> 4357[label="",style="dashed", color="magenta", weight=3]; 3214 -> 4358[label="",style="dashed", color="magenta", weight=3]; 4379[label="Zero",fontsize=16,color="green",shape="box"];4380[label="wy41",fontsize=16,color="green",shape="box"];4381[label="(++) List.findIndices000 (Pos wy121) (primEqInt (Neg Zero) (Pos (Succ wy2270))) wy226",fontsize=16,color="black",shape="box"];4381 -> 4486[label="",style="solid", color="black", weight=3]; 4382[label="(++) List.findIndices000 (Pos wy121) (primEqInt (Neg Zero) (Pos Zero)) wy226",fontsize=16,color="black",shape="box"];4382 -> 4487[label="",style="solid", color="black", weight=3]; 4127[label="Zero",fontsize=16,color="green",shape="box"];4128[label="wy41",fontsize=16,color="green",shape="box"];4129[label="wy4000",fontsize=16,color="green",shape="box"];4130[label="(++) List.findIndices000 (Pos wy119) (primEqInt (Neg Zero) (Neg (Succ wy2190))) wy218",fontsize=16,color="black",shape="box"];4130 -> 4169[label="",style="solid", color="black", weight=3]; 4131[label="(++) List.findIndices000 (Pos wy119) (primEqInt (Neg Zero) (Neg Zero)) wy218",fontsize=16,color="black",shape="box"];4131 -> 4170[label="",style="solid", color="black", weight=3]; 4132[label="wy41",fontsize=16,color="green",shape="box"];4133[label="Zero",fontsize=16,color="green",shape="box"];4134[label="wy310",fontsize=16,color="green",shape="box"];4383[label="wy41",fontsize=16,color="green",shape="box"];4384[label="Zero",fontsize=16,color="green",shape="box"];4385[label="wy310",fontsize=16,color="green",shape="box"];4386[label="wy4000",fontsize=16,color="green",shape="box"];3241 -> 4256[label="",style="dashed", color="red", weight=0]; 3241[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg (Succ wy1570)) (Pos (primMulNat wy1370 wy1380))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy139)) (Pos wy1370)))) (zipWith zip0 wy140 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3241 -> 4265[label="",style="dashed", color="magenta", weight=3]; 3241 -> 4266[label="",style="dashed", color="magenta", weight=3]; 3241 -> 4267[label="",style="dashed", color="magenta", weight=3]; 3241 -> 4268[label="",style="dashed", color="magenta", weight=3]; 3242 -> 4181[label="",style="dashed", color="red", weight=0]; 3242[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg (Succ wy1570)) (Neg (primMulNat wy1370 wy1380))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy139)) (Pos wy1370)))) (zipWith zip0 wy140 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3242 -> 4190[label="",style="dashed", color="magenta", weight=3]; 3242 -> 4191[label="",style="dashed", color="magenta", weight=3]; 3242 -> 4192[label="",style="dashed", color="magenta", weight=3]; 3242 -> 4193[label="",style="dashed", color="magenta", weight=3]; 3243 -> 4181[label="",style="dashed", color="red", weight=0]; 3243[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg (Succ wy1570)) (Neg (primMulNat wy1370 wy1380))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy139)) (Neg wy1370)))) (zipWith zip0 wy140 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3243 -> 4194[label="",style="dashed", color="magenta", weight=3]; 3243 -> 4195[label="",style="dashed", color="magenta", weight=3]; 3243 -> 4196[label="",style="dashed", color="magenta", weight=3]; 3243 -> 4197[label="",style="dashed", color="magenta", weight=3]; 3244 -> 4256[label="",style="dashed", color="red", weight=0]; 3244[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg (Succ wy1570)) (Pos (primMulNat wy1370 wy1380))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy139)) (Neg wy1370)))) (zipWith zip0 wy140 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3244 -> 4269[label="",style="dashed", color="magenta", weight=3]; 3244 -> 4270[label="",style="dashed", color="magenta", weight=3]; 3244 -> 4271[label="",style="dashed", color="magenta", weight=3]; 3244 -> 4272[label="",style="dashed", color="magenta", weight=3]; 3245 -> 4328[label="",style="dashed", color="red", weight=0]; 3245[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (Pos (primMulNat wy1370 wy1380))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy139)) (Pos wy1370)))) (zipWith zip0 wy140 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3245 -> 4359[label="",style="dashed", color="magenta", weight=3]; 3245 -> 4360[label="",style="dashed", color="magenta", weight=3]; 3245 -> 4361[label="",style="dashed", color="magenta", weight=3]; 3246 -> 4079[label="",style="dashed", color="red", weight=0]; 3246[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (Neg (primMulNat wy1370 wy1380))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy139)) (Pos wy1370)))) (zipWith zip0 wy140 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3246 -> 4107[label="",style="dashed", color="magenta", weight=3]; 3246 -> 4108[label="",style="dashed", color="magenta", weight=3]; 3246 -> 4109[label="",style="dashed", color="magenta", weight=3]; 3247 -> 4079[label="",style="dashed", color="red", weight=0]; 3247[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (Neg (primMulNat wy1370 wy1380))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy139)) (Neg wy1370)))) (zipWith zip0 wy140 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3247 -> 4110[label="",style="dashed", color="magenta", weight=3]; 3247 -> 4111[label="",style="dashed", color="magenta", weight=3]; 3247 -> 4112[label="",style="dashed", color="magenta", weight=3]; 3248 -> 4328[label="",style="dashed", color="red", weight=0]; 3248[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Neg Zero) (Pos (primMulNat wy1370 wy1380))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy139)) (Neg wy1370)))) (zipWith zip0 wy140 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3248 -> 4362[label="",style="dashed", color="magenta", weight=3]; 3248 -> 4363[label="",style="dashed", color="magenta", weight=3]; 3248 -> 4364[label="",style="dashed", color="magenta", weight=3]; 4387[label="Zero",fontsize=16,color="green",shape="box"];4388[label="wy41",fontsize=16,color="green",shape="box"];3859[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="triangle"];5250[label="wy411/wy4110 : wy4111",fontsize=10,color="white",style="solid",shape="box"];3859 -> 5250[label="",style="solid", color="burlywood", weight=9]; 5250 -> 3873[label="",style="solid", color="burlywood", weight=3]; 5251[label="wy411/[]",fontsize=10,color="white",style="solid",shape="box"];3859 -> 5251[label="",style="solid", color="burlywood", weight=9]; 5251 -> 3874[label="",style="solid", color="burlywood", weight=3]; 4135[label="Zero",fontsize=16,color="green",shape="box"];4136[label="wy41",fontsize=16,color="green",shape="box"];4137[label="wy4000",fontsize=16,color="green",shape="box"];4138[label="Zero",fontsize=16,color="green",shape="box"];4139[label="wy41",fontsize=16,color="green",shape="box"];3930[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Neg wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy125 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="triangle"];5252[label="wy411/wy4110 : wy4111",fontsize=10,color="white",style="solid",shape="box"];3930 -> 5252[label="",style="solid", color="burlywood", weight=9]; 5252 -> 3944[label="",style="solid", color="burlywood", weight=3]; 5253[label="wy411/[]",fontsize=10,color="white",style="solid",shape="box"];3930 -> 5253[label="",style="solid", color="burlywood", weight=9]; 5253 -> 3945[label="",style="solid", color="burlywood", weight=3]; 4140[label="wy310",fontsize=16,color="green",shape="box"];4389[label="Zero",fontsize=16,color="green",shape="box"];4390[label="wy41",fontsize=16,color="green",shape="box"];4391[label="wy310",fontsize=16,color="green",shape="box"];4392[label="wy4000",fontsize=16,color="green",shape="box"];2177 -> 4581[label="",style="dashed", color="red", weight=0]; 2177[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos (Succ wy610)) (Pos (primMulNat wy410 wy420))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy44 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];2177 -> 4590[label="",style="dashed", color="magenta", weight=3]; 2177 -> 4591[label="",style="dashed", color="magenta", weight=3]; 2177 -> 4592[label="",style="dashed", color="magenta", weight=3]; 2177 -> 4593[label="",style="dashed", color="magenta", weight=3]; 2178 -> 4656[label="",style="dashed", color="red", weight=0]; 2178[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos (Succ wy610)) (Neg (primMulNat wy410 wy420))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy44 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];2178 -> 4665[label="",style="dashed", color="magenta", weight=3]; 2178 -> 4666[label="",style="dashed", color="magenta", weight=3]; 2178 -> 4667[label="",style="dashed", color="magenta", weight=3]; 2178 -> 4668[label="",style="dashed", color="magenta", weight=3]; 2179 -> 4656[label="",style="dashed", color="red", weight=0]; 2179[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos (Succ wy610)) (Neg (primMulNat wy410 wy420))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)))) (zipWith zip0 wy44 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];2179 -> 4669[label="",style="dashed", color="magenta", weight=3]; 2179 -> 4670[label="",style="dashed", color="magenta", weight=3]; 2179 -> 4671[label="",style="dashed", color="magenta", weight=3]; 2179 -> 4672[label="",style="dashed", color="magenta", weight=3]; 2180 -> 4581[label="",style="dashed", color="red", weight=0]; 2180[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos (Succ wy610)) (Pos (primMulNat wy410 wy420))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)))) (zipWith zip0 wy44 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];2180 -> 4594[label="",style="dashed", color="magenta", weight=3]; 2180 -> 4595[label="",style="dashed", color="magenta", weight=3]; 2180 -> 4596[label="",style="dashed", color="magenta", weight=3]; 2180 -> 4597[label="",style="dashed", color="magenta", weight=3]; 2181 -> 3951[label="",style="dashed", color="red", weight=0]; 2181[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (Pos (primMulNat wy410 wy420))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy44 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];2181 -> 3982[label="",style="dashed", color="magenta", weight=3]; 2181 -> 3983[label="",style="dashed", color="magenta", weight=3]; 2181 -> 3984[label="",style="dashed", color="magenta", weight=3]; 2182 -> 4421[label="",style="dashed", color="red", weight=0]; 2182[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (Neg (primMulNat wy410 wy420))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy44 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];2182 -> 4452[label="",style="dashed", color="magenta", weight=3]; 2182 -> 4453[label="",style="dashed", color="magenta", weight=3]; 2182 -> 4454[label="",style="dashed", color="magenta", weight=3]; 2183 -> 4421[label="",style="dashed", color="red", weight=0]; 2183[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (Neg (primMulNat wy410 wy420))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)))) (zipWith zip0 wy44 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];2183 -> 4455[label="",style="dashed", color="magenta", weight=3]; 2183 -> 4456[label="",style="dashed", color="magenta", weight=3]; 2183 -> 4457[label="",style="dashed", color="magenta", weight=3]; 2184 -> 3951[label="",style="dashed", color="red", weight=0]; 2184[label="(++) List.findIndices000 (Pos Zero) (primEqInt (Pos Zero) (Pos (primMulNat wy410 wy420))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)))) (zipWith zip0 wy44 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];2184 -> 3985[label="",style="dashed", color="magenta", weight=3]; 2184 -> 3986[label="",style="dashed", color="magenta", weight=3]; 2184 -> 3987[label="",style="dashed", color="magenta", weight=3]; 4005[label="Zero",fontsize=16,color="green",shape="box"];4006[label="wy41",fontsize=16,color="green",shape="box"];4480[label="Zero",fontsize=16,color="green",shape="box"];4481[label="wy41",fontsize=16,color="green",shape="box"];4482[label="wy4000",fontsize=16,color="green",shape="box"];4483[label="Zero",fontsize=16,color="green",shape="box"];4484[label="wy41",fontsize=16,color="green",shape="box"];4485[label="wy310",fontsize=16,color="green",shape="box"];4007[label="wy310",fontsize=16,color="green",shape="box"];4008[label="wy4000",fontsize=16,color="green",shape="box"];4009[label="Zero",fontsize=16,color="green",shape="box"];4010[label="wy41",fontsize=16,color="green",shape="box"];1732[label="wy40000",fontsize=16,color="green",shape="box"];1733 -> 1487[label="",style="dashed", color="red", weight=0]; 1733[label="primMulNat wy3100 (Succ wy40000)",fontsize=16,color="magenta"];1733 -> 1949[label="",style="dashed", color="magenta", weight=3]; 1733 -> 1950[label="",style="dashed", color="magenta", weight=3]; 2321[label="wy401000",fontsize=16,color="green",shape="box"];2322[label="wy5100",fontsize=16,color="green",shape="box"];4582[label="Zero",fontsize=16,color="green",shape="box"];4583[label="wy1450",fontsize=16,color="green",shape="box"];4584 -> 3216[label="",style="dashed", color="red", weight=0]; 4584[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy81 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4585 -> 1487[label="",style="dashed", color="red", weight=0]; 4585[label="primMulNat wy780 wy790",fontsize=16,color="magenta"];4585 -> 4641[label="",style="dashed", color="magenta", weight=3]; 4585 -> 4642[label="",style="dashed", color="magenta", weight=3]; 4581[label="(++) List.findIndices000 (Pos wy119) (primEqInt (Pos (Succ wy1750)) (Pos wy191)) wy233",fontsize=16,color="burlywood",shape="triangle"];5254[label="wy191/Succ wy1910",fontsize=10,color="white",style="solid",shape="box"];4581 -> 5254[label="",style="solid", color="burlywood", weight=9]; 5254 -> 4643[label="",style="solid", color="burlywood", weight=3]; 5255[label="wy191/Zero",fontsize=10,color="white",style="solid",shape="box"];4581 -> 5255[label="",style="solid", color="burlywood", weight=9]; 5255 -> 4644[label="",style="solid", color="burlywood", weight=3]; 4657 -> 1487[label="",style="dashed", color="red", weight=0]; 4657[label="primMulNat wy780 wy790",fontsize=16,color="magenta"];4657 -> 4716[label="",style="dashed", color="magenta", weight=3]; 4657 -> 4717[label="",style="dashed", color="magenta", weight=3]; 4658[label="Zero",fontsize=16,color="green",shape="box"];4659[label="wy1450",fontsize=16,color="green",shape="box"];4660 -> 3216[label="",style="dashed", color="red", weight=0]; 4660[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy81 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4656[label="(++) List.findIndices000 (Pos wy119) (primEqInt (Pos (Succ wy1750)) (Neg wy192)) wy234",fontsize=16,color="black",shape="triangle"];4656 -> 4718[label="",style="solid", color="black", weight=3]; 4661 -> 1487[label="",style="dashed", color="red", weight=0]; 4661[label="primMulNat wy780 wy790",fontsize=16,color="magenta"];4661 -> 4719[label="",style="dashed", color="magenta", weight=3]; 4661 -> 4720[label="",style="dashed", color="magenta", weight=3]; 4662[label="Zero",fontsize=16,color="green",shape="box"];4663[label="wy1450",fontsize=16,color="green",shape="box"];4664 -> 3222[label="",style="dashed", color="red", weight=0]; 4664[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)))) (zipWith zip0 wy81 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4586[label="Zero",fontsize=16,color="green",shape="box"];4587[label="wy1450",fontsize=16,color="green",shape="box"];4588 -> 3222[label="",style="dashed", color="red", weight=0]; 4588[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)))) (zipWith zip0 wy81 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4589 -> 1487[label="",style="dashed", color="red", weight=0]; 4589[label="primMulNat wy780 wy790",fontsize=16,color="magenta"];4589 -> 4645[label="",style="dashed", color="magenta", weight=3]; 4589 -> 4646[label="",style="dashed", color="magenta", weight=3]; 3976[label="Zero",fontsize=16,color="green",shape="box"];3977 -> 1487[label="",style="dashed", color="red", weight=0]; 3977[label="primMulNat wy780 wy790",fontsize=16,color="magenta"];3977 -> 4013[label="",style="dashed", color="magenta", weight=3]; 3977 -> 4014[label="",style="dashed", color="magenta", weight=3]; 3978 -> 3216[label="",style="dashed", color="red", weight=0]; 3978[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy81 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4446 -> 3216[label="",style="dashed", color="red", weight=0]; 4446[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy81 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4447[label="Zero",fontsize=16,color="green",shape="box"];4448 -> 1487[label="",style="dashed", color="red", weight=0]; 4448[label="primMulNat wy780 wy790",fontsize=16,color="magenta"];4448 -> 4488[label="",style="dashed", color="magenta", weight=3]; 4448 -> 4489[label="",style="dashed", color="magenta", weight=3]; 4449 -> 3222[label="",style="dashed", color="red", weight=0]; 4449[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)))) (zipWith zip0 wy81 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4450[label="Zero",fontsize=16,color="green",shape="box"];4451 -> 1487[label="",style="dashed", color="red", weight=0]; 4451[label="primMulNat wy780 wy790",fontsize=16,color="magenta"];4451 -> 4490[label="",style="dashed", color="magenta", weight=3]; 4451 -> 4491[label="",style="dashed", color="magenta", weight=3]; 3979[label="Zero",fontsize=16,color="green",shape="box"];3980 -> 1487[label="",style="dashed", color="red", weight=0]; 3980[label="primMulNat wy780 wy790",fontsize=16,color="magenta"];3980 -> 4015[label="",style="dashed", color="magenta", weight=3]; 3980 -> 4016[label="",style="dashed", color="magenta", weight=3]; 3981 -> 3222[label="",style="dashed", color="red", weight=0]; 3981[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)))) (zipWith zip0 wy81 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];2063[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 (wy410 : wy411) (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];2063 -> 2193[label="",style="solid", color="black", weight=3]; 2064[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 [] (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];2064 -> 2194[label="",style="solid", color="black", weight=3]; 4048[label="(++) List.findIndices000 (Pos wy125) False wy212",fontsize=16,color="black",shape="triangle"];4048 -> 4056[label="",style="solid", color="black", weight=3]; 4049[label="(++) List.findIndices000 (Pos wy125) True wy212",fontsize=16,color="black",shape="triangle"];4049 -> 4057[label="",style="solid", color="black", weight=3]; 4075[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 (wy4110 : wy4111) (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];4075 -> 4163[label="",style="solid", color="black", weight=3]; 4076[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 [] (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];4076 -> 4164[label="",style="solid", color="black", weight=3]; 4527 -> 4048[label="",style="dashed", color="red", weight=0]; 4527[label="(++) List.findIndices000 (Pos wy123) False wy228",fontsize=16,color="magenta"];4527 -> 4547[label="",style="dashed", color="magenta", weight=3]; 4527 -> 4548[label="",style="dashed", color="magenta", weight=3]; 4528 -> 4049[label="",style="dashed", color="red", weight=0]; 4528[label="(++) List.findIndices000 (Pos wy123) True wy228",fontsize=16,color="magenta"];4528 -> 4549[label="",style="dashed", color="magenta", weight=3]; 4528 -> 4550[label="",style="dashed", color="magenta", weight=3]; 3831[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Neg wy310)))) (zipWith zip0 (wy4110 : wy4111) (numericEnumFrom $! Pos wy121 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3831 -> 3845[label="",style="solid", color="black", weight=3]; 3832[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Neg wy310)))) (zipWith zip0 [] (numericEnumFrom $! Pos wy121 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3832 -> 3846[label="",style="solid", color="black", weight=3]; 4257[label="wy1520",fontsize=16,color="green",shape="box"];4258 -> 1487[label="",style="dashed", color="red", weight=0]; 4258[label="primMulNat wy1530 wy1540",fontsize=16,color="magenta"];4258 -> 4303[label="",style="dashed", color="magenta", weight=3]; 4258 -> 4304[label="",style="dashed", color="magenta", weight=3]; 4259 -> 3216[label="",style="dashed", color="red", weight=0]; 4259[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy155)) (Pos wy1530)))) (zipWith zip0 wy156 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4259 -> 4305[label="",style="dashed", color="magenta", weight=3]; 4259 -> 4306[label="",style="dashed", color="magenta", weight=3]; 4259 -> 4307[label="",style="dashed", color="magenta", weight=3]; 4260[label="Zero",fontsize=16,color="green",shape="box"];4256[label="(++) List.findIndices000 (Pos wy121) (primEqInt (Neg (Succ wy1780)) (Pos wy225)) wy224",fontsize=16,color="black",shape="triangle"];4256 -> 4308[label="",style="solid", color="black", weight=3]; 4182 -> 3216[label="",style="dashed", color="red", weight=0]; 4182[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy155)) (Pos wy1530)))) (zipWith zip0 wy156 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4182 -> 4228[label="",style="dashed", color="magenta", weight=3]; 4182 -> 4229[label="",style="dashed", color="magenta", weight=3]; 4182 -> 4230[label="",style="dashed", color="magenta", weight=3]; 4183[label="wy1520",fontsize=16,color="green",shape="box"];4184 -> 1487[label="",style="dashed", color="red", weight=0]; 4184[label="primMulNat wy1530 wy1540",fontsize=16,color="magenta"];4184 -> 4231[label="",style="dashed", color="magenta", weight=3]; 4184 -> 4232[label="",style="dashed", color="magenta", weight=3]; 4185[label="Zero",fontsize=16,color="green",shape="box"];4181[label="(++) List.findIndices000 (Pos wy121) (primEqInt (Neg (Succ wy1780)) (Neg wy223)) wy222",fontsize=16,color="burlywood",shape="triangle"];5256[label="wy223/Succ wy2230",fontsize=10,color="white",style="solid",shape="box"];4181 -> 5256[label="",style="solid", color="burlywood", weight=9]; 5256 -> 4233[label="",style="solid", color="burlywood", weight=3]; 5257[label="wy223/Zero",fontsize=10,color="white",style="solid",shape="box"];4181 -> 5257[label="",style="solid", color="burlywood", weight=9]; 5257 -> 4234[label="",style="solid", color="burlywood", weight=3]; 4186 -> 3222[label="",style="dashed", color="red", weight=0]; 4186[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy155)) (Neg wy1530)))) (zipWith zip0 wy156 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4186 -> 4235[label="",style="dashed", color="magenta", weight=3]; 4186 -> 4236[label="",style="dashed", color="magenta", weight=3]; 4186 -> 4237[label="",style="dashed", color="magenta", weight=3]; 4187[label="wy1520",fontsize=16,color="green",shape="box"];4188 -> 1487[label="",style="dashed", color="red", weight=0]; 4188[label="primMulNat wy1530 wy1540",fontsize=16,color="magenta"];4188 -> 4238[label="",style="dashed", color="magenta", weight=3]; 4188 -> 4239[label="",style="dashed", color="magenta", weight=3]; 4189[label="Zero",fontsize=16,color="green",shape="box"];4261[label="wy1520",fontsize=16,color="green",shape="box"];4262 -> 1487[label="",style="dashed", color="red", weight=0]; 4262[label="primMulNat wy1530 wy1540",fontsize=16,color="magenta"];4262 -> 4309[label="",style="dashed", color="magenta", weight=3]; 4262 -> 4310[label="",style="dashed", color="magenta", weight=3]; 4263 -> 3222[label="",style="dashed", color="red", weight=0]; 4263[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy155)) (Neg wy1530)))) (zipWith zip0 wy156 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4263 -> 4311[label="",style="dashed", color="magenta", weight=3]; 4263 -> 4312[label="",style="dashed", color="magenta", weight=3]; 4263 -> 4313[label="",style="dashed", color="magenta", weight=3]; 4264[label="Zero",fontsize=16,color="green",shape="box"];4353 -> 3216[label="",style="dashed", color="red", weight=0]; 4353[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy155)) (Pos wy1530)))) (zipWith zip0 wy156 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4353 -> 4393[label="",style="dashed", color="magenta", weight=3]; 4353 -> 4394[label="",style="dashed", color="magenta", weight=3]; 4353 -> 4395[label="",style="dashed", color="magenta", weight=3]; 4354 -> 1487[label="",style="dashed", color="red", weight=0]; 4354[label="primMulNat wy1530 wy1540",fontsize=16,color="magenta"];4354 -> 4396[label="",style="dashed", color="magenta", weight=3]; 4354 -> 4397[label="",style="dashed", color="magenta", weight=3]; 4355[label="Zero",fontsize=16,color="green",shape="box"];4101[label="Zero",fontsize=16,color="green",shape="box"];4102 -> 3216[label="",style="dashed", color="red", weight=0]; 4102[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy155)) (Pos wy1530)))) (zipWith zip0 wy156 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4102 -> 4143[label="",style="dashed", color="magenta", weight=3]; 4102 -> 4144[label="",style="dashed", color="magenta", weight=3]; 4102 -> 4145[label="",style="dashed", color="magenta", weight=3]; 4103 -> 1487[label="",style="dashed", color="red", weight=0]; 4103[label="primMulNat wy1530 wy1540",fontsize=16,color="magenta"];4103 -> 4146[label="",style="dashed", color="magenta", weight=3]; 4103 -> 4147[label="",style="dashed", color="magenta", weight=3]; 4104[label="Zero",fontsize=16,color="green",shape="box"];4105 -> 3222[label="",style="dashed", color="red", weight=0]; 4105[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy155)) (Neg wy1530)))) (zipWith zip0 wy156 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4105 -> 4148[label="",style="dashed", color="magenta", weight=3]; 4105 -> 4149[label="",style="dashed", color="magenta", weight=3]; 4105 -> 4150[label="",style="dashed", color="magenta", weight=3]; 4106 -> 1487[label="",style="dashed", color="red", weight=0]; 4106[label="primMulNat wy1530 wy1540",fontsize=16,color="magenta"];4106 -> 4151[label="",style="dashed", color="magenta", weight=3]; 4106 -> 4152[label="",style="dashed", color="magenta", weight=3]; 4356 -> 3222[label="",style="dashed", color="red", weight=0]; 4356[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy155)) (Neg wy1530)))) (zipWith zip0 wy156 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4356 -> 4398[label="",style="dashed", color="magenta", weight=3]; 4356 -> 4399[label="",style="dashed", color="magenta", weight=3]; 4356 -> 4400[label="",style="dashed", color="magenta", weight=3]; 4357 -> 1487[label="",style="dashed", color="red", weight=0]; 4357[label="primMulNat wy1530 wy1540",fontsize=16,color="magenta"];4357 -> 4401[label="",style="dashed", color="magenta", weight=3]; 4357 -> 4402[label="",style="dashed", color="magenta", weight=3]; 4358[label="Zero",fontsize=16,color="green",shape="box"];4486 -> 4048[label="",style="dashed", color="red", weight=0]; 4486[label="(++) List.findIndices000 (Pos wy121) False wy226",fontsize=16,color="magenta"];4486 -> 4533[label="",style="dashed", color="magenta", weight=3]; 4486 -> 4534[label="",style="dashed", color="magenta", weight=3]; 4487 -> 4049[label="",style="dashed", color="red", weight=0]; 4487[label="(++) List.findIndices000 (Pos wy121) True wy226",fontsize=16,color="magenta"];4487 -> 4535[label="",style="dashed", color="magenta", weight=3]; 4487 -> 4536[label="",style="dashed", color="magenta", weight=3]; 4169 -> 4048[label="",style="dashed", color="red", weight=0]; 4169[label="(++) List.findIndices000 (Pos wy119) False wy218",fontsize=16,color="magenta"];4169 -> 4240[label="",style="dashed", color="magenta", weight=3]; 4169 -> 4241[label="",style="dashed", color="magenta", weight=3]; 4170 -> 4049[label="",style="dashed", color="red", weight=0]; 4170[label="(++) List.findIndices000 (Pos wy119) True wy218",fontsize=16,color="magenta"];4170 -> 4242[label="",style="dashed", color="magenta", weight=3]; 4170 -> 4243[label="",style="dashed", color="magenta", weight=3]; 4265[label="wy1570",fontsize=16,color="green",shape="box"];4266 -> 1487[label="",style="dashed", color="red", weight=0]; 4266[label="primMulNat wy1370 wy1380",fontsize=16,color="magenta"];4266 -> 4314[label="",style="dashed", color="magenta", weight=3]; 4266 -> 4315[label="",style="dashed", color="magenta", weight=3]; 4267 -> 2210[label="",style="dashed", color="red", weight=0]; 4267[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy139)) (Pos wy1370)))) (zipWith zip0 wy140 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4267 -> 4316[label="",style="dashed", color="magenta", weight=3]; 4267 -> 4317[label="",style="dashed", color="magenta", weight=3]; 4267 -> 4318[label="",style="dashed", color="magenta", weight=3]; 4268[label="Zero",fontsize=16,color="green",shape="box"];4190 -> 2210[label="",style="dashed", color="red", weight=0]; 4190[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy139)) (Pos wy1370)))) (zipWith zip0 wy140 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4190 -> 4244[label="",style="dashed", color="magenta", weight=3]; 4190 -> 4245[label="",style="dashed", color="magenta", weight=3]; 4190 -> 4246[label="",style="dashed", color="magenta", weight=3]; 4191[label="wy1570",fontsize=16,color="green",shape="box"];4192 -> 1487[label="",style="dashed", color="red", weight=0]; 4192[label="primMulNat wy1370 wy1380",fontsize=16,color="magenta"];4192 -> 4247[label="",style="dashed", color="magenta", weight=3]; 4192 -> 4248[label="",style="dashed", color="magenta", weight=3]; 4193[label="Zero",fontsize=16,color="green",shape="box"];4194 -> 2248[label="",style="dashed", color="red", weight=0]; 4194[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy139)) (Neg wy1370)))) (zipWith zip0 wy140 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4194 -> 4249[label="",style="dashed", color="magenta", weight=3]; 4194 -> 4250[label="",style="dashed", color="magenta", weight=3]; 4194 -> 4251[label="",style="dashed", color="magenta", weight=3]; 4195[label="wy1570",fontsize=16,color="green",shape="box"];4196 -> 1487[label="",style="dashed", color="red", weight=0]; 4196[label="primMulNat wy1370 wy1380",fontsize=16,color="magenta"];4196 -> 4252[label="",style="dashed", color="magenta", weight=3]; 4196 -> 4253[label="",style="dashed", color="magenta", weight=3]; 4197[label="Zero",fontsize=16,color="green",shape="box"];4269[label="wy1570",fontsize=16,color="green",shape="box"];4270 -> 1487[label="",style="dashed", color="red", weight=0]; 4270[label="primMulNat wy1370 wy1380",fontsize=16,color="magenta"];4270 -> 4319[label="",style="dashed", color="magenta", weight=3]; 4270 -> 4320[label="",style="dashed", color="magenta", weight=3]; 4271 -> 2248[label="",style="dashed", color="red", weight=0]; 4271[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy139)) (Neg wy1370)))) (zipWith zip0 wy140 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4271 -> 4321[label="",style="dashed", color="magenta", weight=3]; 4271 -> 4322[label="",style="dashed", color="magenta", weight=3]; 4271 -> 4323[label="",style="dashed", color="magenta", weight=3]; 4272[label="Zero",fontsize=16,color="green",shape="box"];4359 -> 2210[label="",style="dashed", color="red", weight=0]; 4359[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy139)) (Pos wy1370)))) (zipWith zip0 wy140 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4359 -> 4403[label="",style="dashed", color="magenta", weight=3]; 4359 -> 4404[label="",style="dashed", color="magenta", weight=3]; 4359 -> 4405[label="",style="dashed", color="magenta", weight=3]; 4360 -> 1487[label="",style="dashed", color="red", weight=0]; 4360[label="primMulNat wy1370 wy1380",fontsize=16,color="magenta"];4360 -> 4406[label="",style="dashed", color="magenta", weight=3]; 4360 -> 4407[label="",style="dashed", color="magenta", weight=3]; 4361[label="Zero",fontsize=16,color="green",shape="box"];4107[label="Zero",fontsize=16,color="green",shape="box"];4108 -> 2210[label="",style="dashed", color="red", weight=0]; 4108[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy139)) (Pos wy1370)))) (zipWith zip0 wy140 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4108 -> 4153[label="",style="dashed", color="magenta", weight=3]; 4108 -> 4154[label="",style="dashed", color="magenta", weight=3]; 4108 -> 4155[label="",style="dashed", color="magenta", weight=3]; 4109 -> 1487[label="",style="dashed", color="red", weight=0]; 4109[label="primMulNat wy1370 wy1380",fontsize=16,color="magenta"];4109 -> 4156[label="",style="dashed", color="magenta", weight=3]; 4109 -> 4157[label="",style="dashed", color="magenta", weight=3]; 4110[label="Zero",fontsize=16,color="green",shape="box"];4111 -> 2248[label="",style="dashed", color="red", weight=0]; 4111[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy139)) (Neg wy1370)))) (zipWith zip0 wy140 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4111 -> 4158[label="",style="dashed", color="magenta", weight=3]; 4111 -> 4159[label="",style="dashed", color="magenta", weight=3]; 4111 -> 4160[label="",style="dashed", color="magenta", weight=3]; 4112 -> 1487[label="",style="dashed", color="red", weight=0]; 4112[label="primMulNat wy1370 wy1380",fontsize=16,color="magenta"];4112 -> 4161[label="",style="dashed", color="magenta", weight=3]; 4112 -> 4162[label="",style="dashed", color="magenta", weight=3]; 4362 -> 2248[label="",style="dashed", color="red", weight=0]; 4362[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy139)) (Neg wy1370)))) (zipWith zip0 wy140 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4362 -> 4408[label="",style="dashed", color="magenta", weight=3]; 4362 -> 4409[label="",style="dashed", color="magenta", weight=3]; 4362 -> 4410[label="",style="dashed", color="magenta", weight=3]; 4363 -> 1487[label="",style="dashed", color="red", weight=0]; 4363[label="primMulNat wy1370 wy1380",fontsize=16,color="magenta"];4363 -> 4411[label="",style="dashed", color="magenta", weight=3]; 4363 -> 4412[label="",style="dashed", color="magenta", weight=3]; 4364[label="Zero",fontsize=16,color="green",shape="box"];3873[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 (wy4110 : wy4111) (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3873 -> 3885[label="",style="solid", color="black", weight=3]; 3874[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 [] (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3874 -> 3886[label="",style="solid", color="black", weight=3]; 3944[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Neg wy310)))) (zipWith zip0 (wy4110 : wy4111) (numericEnumFrom $! Pos wy125 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3944 -> 4021[label="",style="solid", color="black", weight=3]; 3945[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Neg wy310)))) (zipWith zip0 [] (numericEnumFrom $! Pos wy125 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3945 -> 4022[label="",style="solid", color="black", weight=3]; 4590[label="Zero",fontsize=16,color="green",shape="box"];4591[label="wy610",fontsize=16,color="green",shape="box"];4592 -> 2210[label="",style="dashed", color="red", weight=0]; 4592[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy44 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4593 -> 1487[label="",style="dashed", color="red", weight=0]; 4593[label="primMulNat wy410 wy420",fontsize=16,color="magenta"];4593 -> 4647[label="",style="dashed", color="magenta", weight=3]; 4593 -> 4648[label="",style="dashed", color="magenta", weight=3]; 4665 -> 1487[label="",style="dashed", color="red", weight=0]; 4665[label="primMulNat wy410 wy420",fontsize=16,color="magenta"];4665 -> 4721[label="",style="dashed", color="magenta", weight=3]; 4665 -> 4722[label="",style="dashed", color="magenta", weight=3]; 4666[label="Zero",fontsize=16,color="green",shape="box"];4667[label="wy610",fontsize=16,color="green",shape="box"];4668 -> 2210[label="",style="dashed", color="red", weight=0]; 4668[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy44 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4669 -> 1487[label="",style="dashed", color="red", weight=0]; 4669[label="primMulNat wy410 wy420",fontsize=16,color="magenta"];4669 -> 4723[label="",style="dashed", color="magenta", weight=3]; 4669 -> 4724[label="",style="dashed", color="magenta", weight=3]; 4670[label="Zero",fontsize=16,color="green",shape="box"];4671[label="wy610",fontsize=16,color="green",shape="box"];4672 -> 2248[label="",style="dashed", color="red", weight=0]; 4672[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)))) (zipWith zip0 wy44 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4594[label="Zero",fontsize=16,color="green",shape="box"];4595[label="wy610",fontsize=16,color="green",shape="box"];4596 -> 2248[label="",style="dashed", color="red", weight=0]; 4596[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)))) (zipWith zip0 wy44 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4597 -> 1487[label="",style="dashed", color="red", weight=0]; 4597[label="primMulNat wy410 wy420",fontsize=16,color="magenta"];4597 -> 4649[label="",style="dashed", color="magenta", weight=3]; 4597 -> 4650[label="",style="dashed", color="magenta", weight=3]; 3982[label="Zero",fontsize=16,color="green",shape="box"];3983 -> 1487[label="",style="dashed", color="red", weight=0]; 3983[label="primMulNat wy410 wy420",fontsize=16,color="magenta"];3983 -> 4017[label="",style="dashed", color="magenta", weight=3]; 3983 -> 4018[label="",style="dashed", color="magenta", weight=3]; 3984 -> 2210[label="",style="dashed", color="red", weight=0]; 3984[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy44 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4452 -> 2210[label="",style="dashed", color="red", weight=0]; 4452[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy44 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4453[label="Zero",fontsize=16,color="green",shape="box"];4454 -> 1487[label="",style="dashed", color="red", weight=0]; 4454[label="primMulNat wy410 wy420",fontsize=16,color="magenta"];4454 -> 4492[label="",style="dashed", color="magenta", weight=3]; 4454 -> 4493[label="",style="dashed", color="magenta", weight=3]; 4455 -> 2248[label="",style="dashed", color="red", weight=0]; 4455[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)))) (zipWith zip0 wy44 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4456[label="Zero",fontsize=16,color="green",shape="box"];4457 -> 1487[label="",style="dashed", color="red", weight=0]; 4457[label="primMulNat wy410 wy420",fontsize=16,color="magenta"];4457 -> 4494[label="",style="dashed", color="magenta", weight=3]; 4457 -> 4495[label="",style="dashed", color="magenta", weight=3]; 3985[label="Zero",fontsize=16,color="green",shape="box"];3986 -> 1487[label="",style="dashed", color="red", weight=0]; 3986[label="primMulNat wy410 wy420",fontsize=16,color="magenta"];3986 -> 4019[label="",style="dashed", color="magenta", weight=3]; 3986 -> 4020[label="",style="dashed", color="magenta", weight=3]; 3987 -> 2248[label="",style="dashed", color="red", weight=0]; 3987[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)))) (zipWith zip0 wy44 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];1949[label="wy3100",fontsize=16,color="green",shape="box"];1950[label="Succ wy40000",fontsize=16,color="green",shape="box"];3216[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy81 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="triangle"];5258[label="wy81/wy810 : wy811",fontsize=10,color="white",style="solid",shape="box"];3216 -> 5258[label="",style="solid", color="burlywood", weight=9]; 5258 -> 3307[label="",style="solid", color="burlywood", weight=3]; 5259[label="wy81/[]",fontsize=10,color="white",style="solid",shape="box"];3216 -> 5259[label="",style="solid", color="burlywood", weight=9]; 5259 -> 3308[label="",style="solid", color="burlywood", weight=3]; 4641[label="wy780",fontsize=16,color="green",shape="box"];4642[label="wy790",fontsize=16,color="green",shape="box"];4643[label="(++) List.findIndices000 (Pos wy119) (primEqInt (Pos (Succ wy1750)) (Pos (Succ wy1910))) wy233",fontsize=16,color="black",shape="box"];4643 -> 4725[label="",style="solid", color="black", weight=3]; 4644[label="(++) List.findIndices000 (Pos wy119) (primEqInt (Pos (Succ wy1750)) (Pos Zero)) wy233",fontsize=16,color="black",shape="box"];4644 -> 4726[label="",style="solid", color="black", weight=3]; 4716[label="wy780",fontsize=16,color="green",shape="box"];4717[label="wy790",fontsize=16,color="green",shape="box"];4718 -> 4048[label="",style="dashed", color="red", weight=0]; 4718[label="(++) List.findIndices000 (Pos wy119) False wy234",fontsize=16,color="magenta"];4718 -> 4849[label="",style="dashed", color="magenta", weight=3]; 4718 -> 4850[label="",style="dashed", color="magenta", weight=3]; 4719[label="wy780",fontsize=16,color="green",shape="box"];4720[label="wy790",fontsize=16,color="green",shape="box"];3222[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)))) (zipWith zip0 wy81 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="triangle"];5260[label="wy81/wy810 : wy811",fontsize=10,color="white",style="solid",shape="box"];3222 -> 5260[label="",style="solid", color="burlywood", weight=9]; 5260 -> 3313[label="",style="solid", color="burlywood", weight=3]; 5261[label="wy81/[]",fontsize=10,color="white",style="solid",shape="box"];3222 -> 5261[label="",style="solid", color="burlywood", weight=9]; 5261 -> 3314[label="",style="solid", color="burlywood", weight=3]; 4645[label="wy780",fontsize=16,color="green",shape="box"];4646[label="wy790",fontsize=16,color="green",shape="box"];4013[label="wy780",fontsize=16,color="green",shape="box"];4014[label="wy790",fontsize=16,color="green",shape="box"];4488[label="wy780",fontsize=16,color="green",shape="box"];4489[label="wy790",fontsize=16,color="green",shape="box"];4490[label="wy780",fontsize=16,color="green",shape="box"];4491[label="wy790",fontsize=16,color="green",shape="box"];4015[label="wy780",fontsize=16,color="green",shape="box"];4016[label="wy790",fontsize=16,color="green",shape="box"];2193[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 (wy410 : wy411) (Pos Zero + fromInt (Pos (Succ Zero)) `seq` numericEnumFrom (Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];2193 -> 2235[label="",style="solid", color="black", weight=3]; 2194[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) [])",fontsize=16,color="black",shape="triangle"];2194 -> 2236[label="",style="solid", color="black", weight=3]; 4056 -> 1640[label="",style="dashed", color="red", weight=0]; 4056[label="(++) [] wy212",fontsize=16,color="magenta"];4056 -> 4065[label="",style="dashed", color="magenta", weight=3]; 4057[label="(++) (Pos wy125 : []) wy212",fontsize=16,color="black",shape="box"];4057 -> 4066[label="",style="solid", color="black", weight=3]; 4163[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 (wy4110 : wy4111) (Pos wy119 + fromInt (Pos (Succ Zero)) `seq` numericEnumFrom (Pos wy119 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];4163 -> 4175[label="",style="solid", color="black", weight=3]; 4164 -> 2194[label="",style="dashed", color="red", weight=0]; 4164[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) [])",fontsize=16,color="magenta"];4547[label="wy123",fontsize=16,color="green",shape="box"];4548[label="wy228",fontsize=16,color="green",shape="box"];4549[label="wy123",fontsize=16,color="green",shape="box"];4550[label="wy228",fontsize=16,color="green",shape="box"];3845[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Neg wy310)))) (zipWith zip0 (wy4110 : wy4111) (Pos wy121 + fromInt (Pos (Succ Zero)) `seq` numericEnumFrom (Pos wy121 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];3845 -> 3855[label="",style="solid", color="black", weight=3]; 3846 -> 2196[label="",style="dashed", color="red", weight=0]; 3846[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Neg wy310)))) [])",fontsize=16,color="magenta"];4303[label="wy1530",fontsize=16,color="green",shape="box"];4304[label="wy1540",fontsize=16,color="green",shape="box"];4305[label="wy155",fontsize=16,color="green",shape="box"];4306[label="wy156",fontsize=16,color="green",shape="box"];4307[label="wy1530",fontsize=16,color="green",shape="box"];4308 -> 4048[label="",style="dashed", color="red", weight=0]; 4308[label="(++) List.findIndices000 (Pos wy121) False wy224",fontsize=16,color="magenta"];4308 -> 4413[label="",style="dashed", color="magenta", weight=3]; 4308 -> 4414[label="",style="dashed", color="magenta", weight=3]; 4228[label="wy155",fontsize=16,color="green",shape="box"];4229[label="wy156",fontsize=16,color="green",shape="box"];4230[label="wy1530",fontsize=16,color="green",shape="box"];4231[label="wy1530",fontsize=16,color="green",shape="box"];4232[label="wy1540",fontsize=16,color="green",shape="box"];4233[label="(++) List.findIndices000 (Pos wy121) (primEqInt (Neg (Succ wy1780)) (Neg (Succ wy2230))) wy222",fontsize=16,color="black",shape="box"];4233 -> 4324[label="",style="solid", color="black", weight=3]; 4234[label="(++) List.findIndices000 (Pos wy121) (primEqInt (Neg (Succ wy1780)) (Neg Zero)) wy222",fontsize=16,color="black",shape="box"];4234 -> 4325[label="",style="solid", color="black", weight=3]; 4235[label="wy155",fontsize=16,color="green",shape="box"];4236[label="wy1530",fontsize=16,color="green",shape="box"];4237[label="wy156",fontsize=16,color="green",shape="box"];4238[label="wy1530",fontsize=16,color="green",shape="box"];4239[label="wy1540",fontsize=16,color="green",shape="box"];4309[label="wy1530",fontsize=16,color="green",shape="box"];4310[label="wy1540",fontsize=16,color="green",shape="box"];4311[label="wy155",fontsize=16,color="green",shape="box"];4312[label="wy1530",fontsize=16,color="green",shape="box"];4313[label="wy156",fontsize=16,color="green",shape="box"];4393[label="wy155",fontsize=16,color="green",shape="box"];4394[label="wy156",fontsize=16,color="green",shape="box"];4395[label="wy1530",fontsize=16,color="green",shape="box"];4396[label="wy1530",fontsize=16,color="green",shape="box"];4397[label="wy1540",fontsize=16,color="green",shape="box"];4143[label="wy155",fontsize=16,color="green",shape="box"];4144[label="wy156",fontsize=16,color="green",shape="box"];4145[label="wy1530",fontsize=16,color="green",shape="box"];4146[label="wy1530",fontsize=16,color="green",shape="box"];4147[label="wy1540",fontsize=16,color="green",shape="box"];4148[label="wy155",fontsize=16,color="green",shape="box"];4149[label="wy1530",fontsize=16,color="green",shape="box"];4150[label="wy156",fontsize=16,color="green",shape="box"];4151[label="wy1530",fontsize=16,color="green",shape="box"];4152[label="wy1540",fontsize=16,color="green",shape="box"];4398[label="wy155",fontsize=16,color="green",shape="box"];4399[label="wy1530",fontsize=16,color="green",shape="box"];4400[label="wy156",fontsize=16,color="green",shape="box"];4401[label="wy1530",fontsize=16,color="green",shape="box"];4402[label="wy1540",fontsize=16,color="green",shape="box"];4533[label="wy121",fontsize=16,color="green",shape="box"];4534[label="wy226",fontsize=16,color="green",shape="box"];4535[label="wy121",fontsize=16,color="green",shape="box"];4536[label="wy226",fontsize=16,color="green",shape="box"];4240[label="wy119",fontsize=16,color="green",shape="box"];4241[label="wy218",fontsize=16,color="green",shape="box"];4242[label="wy119",fontsize=16,color="green",shape="box"];4243[label="wy218",fontsize=16,color="green",shape="box"];4314[label="wy1370",fontsize=16,color="green",shape="box"];4315[label="wy1380",fontsize=16,color="green",shape="box"];4316[label="wy140",fontsize=16,color="green",shape="box"];4317[label="wy1370",fontsize=16,color="green",shape="box"];4318[label="wy139",fontsize=16,color="green",shape="box"];2210[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy44 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="triangle"];5262[label="wy44/wy440 : wy441",fontsize=10,color="white",style="solid",shape="box"];2210 -> 5262[label="",style="solid", color="burlywood", weight=9]; 5262 -> 2239[label="",style="solid", color="burlywood", weight=3]; 5263[label="wy44/[]",fontsize=10,color="white",style="solid",shape="box"];2210 -> 5263[label="",style="solid", color="burlywood", weight=9]; 5263 -> 2240[label="",style="solid", color="burlywood", weight=3]; 4244[label="wy140",fontsize=16,color="green",shape="box"];4245[label="wy1370",fontsize=16,color="green",shape="box"];4246[label="wy139",fontsize=16,color="green",shape="box"];4247[label="wy1370",fontsize=16,color="green",shape="box"];4248[label="wy1380",fontsize=16,color="green",shape="box"];4249[label="wy140",fontsize=16,color="green",shape="box"];4250[label="wy1370",fontsize=16,color="green",shape="box"];4251[label="wy139",fontsize=16,color="green",shape="box"];2248[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)))) (zipWith zip0 wy44 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="triangle"];5264[label="wy44/wy440 : wy441",fontsize=10,color="white",style="solid",shape="box"];2248 -> 5264[label="",style="solid", color="burlywood", weight=9]; 5264 -> 2274[label="",style="solid", color="burlywood", weight=3]; 5265[label="wy44/[]",fontsize=10,color="white",style="solid",shape="box"];2248 -> 5265[label="",style="solid", color="burlywood", weight=9]; 5265 -> 2275[label="",style="solid", color="burlywood", weight=3]; 4252[label="wy1370",fontsize=16,color="green",shape="box"];4253[label="wy1380",fontsize=16,color="green",shape="box"];4319[label="wy1370",fontsize=16,color="green",shape="box"];4320[label="wy1380",fontsize=16,color="green",shape="box"];4321[label="wy140",fontsize=16,color="green",shape="box"];4322[label="wy1370",fontsize=16,color="green",shape="box"];4323[label="wy139",fontsize=16,color="green",shape="box"];4403[label="wy140",fontsize=16,color="green",shape="box"];4404[label="wy1370",fontsize=16,color="green",shape="box"];4405[label="wy139",fontsize=16,color="green",shape="box"];4406[label="wy1370",fontsize=16,color="green",shape="box"];4407[label="wy1380",fontsize=16,color="green",shape="box"];4153[label="wy140",fontsize=16,color="green",shape="box"];4154[label="wy1370",fontsize=16,color="green",shape="box"];4155[label="wy139",fontsize=16,color="green",shape="box"];4156[label="wy1370",fontsize=16,color="green",shape="box"];4157[label="wy1380",fontsize=16,color="green",shape="box"];4158[label="wy140",fontsize=16,color="green",shape="box"];4159[label="wy1370",fontsize=16,color="green",shape="box"];4160[label="wy139",fontsize=16,color="green",shape="box"];4161[label="wy1370",fontsize=16,color="green",shape="box"];4162[label="wy1380",fontsize=16,color="green",shape="box"];4408[label="wy140",fontsize=16,color="green",shape="box"];4409[label="wy1370",fontsize=16,color="green",shape="box"];4410[label="wy139",fontsize=16,color="green",shape="box"];4411[label="wy1370",fontsize=16,color="green",shape="box"];4412[label="wy1380",fontsize=16,color="green",shape="box"];3885[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 (wy4110 : wy4111) (Pos wy123 + fromInt (Pos (Succ Zero)) `seq` numericEnumFrom (Pos wy123 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];3885 -> 3891[label="",style="solid", color="black", weight=3]; 3886 -> 2198[label="",style="dashed", color="red", weight=0]; 3886[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) [])",fontsize=16,color="magenta"];4021[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Neg wy310)))) (zipWith zip0 (wy4110 : wy4111) (Pos wy125 + fromInt (Pos (Succ Zero)) `seq` numericEnumFrom (Pos wy125 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];4021 -> 4050[label="",style="solid", color="black", weight=3]; 4022[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Neg wy310)))) [])",fontsize=16,color="black",shape="box"];4022 -> 4051[label="",style="solid", color="black", weight=3]; 4647[label="wy410",fontsize=16,color="green",shape="box"];4648[label="wy420",fontsize=16,color="green",shape="box"];4721[label="wy410",fontsize=16,color="green",shape="box"];4722[label="wy420",fontsize=16,color="green",shape="box"];4723[label="wy410",fontsize=16,color="green",shape="box"];4724[label="wy420",fontsize=16,color="green",shape="box"];4649[label="wy410",fontsize=16,color="green",shape="box"];4650[label="wy420",fontsize=16,color="green",shape="box"];4017[label="wy410",fontsize=16,color="green",shape="box"];4018[label="wy420",fontsize=16,color="green",shape="box"];4492[label="wy410",fontsize=16,color="green",shape="box"];4493[label="wy420",fontsize=16,color="green",shape="box"];4494[label="wy410",fontsize=16,color="green",shape="box"];4495[label="wy420",fontsize=16,color="green",shape="box"];4019[label="wy410",fontsize=16,color="green",shape="box"];4020[label="wy420",fontsize=16,color="green",shape="box"];3307[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 (wy810 : wy811) (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3307 -> 3416[label="",style="solid", color="black", weight=3]; 3308[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 [] (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3308 -> 3417[label="",style="solid", color="black", weight=3]; 4725 -> 4324[label="",style="dashed", color="red", weight=0]; 4725[label="(++) List.findIndices000 (Pos wy119) (primEqNat wy1750 wy1910) wy233",fontsize=16,color="magenta"];4725 -> 4851[label="",style="dashed", color="magenta", weight=3]; 4725 -> 4852[label="",style="dashed", color="magenta", weight=3]; 4725 -> 4853[label="",style="dashed", color="magenta", weight=3]; 4725 -> 4854[label="",style="dashed", color="magenta", weight=3]; 4726 -> 4048[label="",style="dashed", color="red", weight=0]; 4726[label="(++) List.findIndices000 (Pos wy119) False wy233",fontsize=16,color="magenta"];4726 -> 4855[label="",style="dashed", color="magenta", weight=3]; 4726 -> 4856[label="",style="dashed", color="magenta", weight=3]; 4849[label="wy119",fontsize=16,color="green",shape="box"];4850[label="wy234",fontsize=16,color="green",shape="box"];3313[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)))) (zipWith zip0 (wy810 : wy811) (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3313 -> 3418[label="",style="solid", color="black", weight=3]; 3314[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)))) (zipWith zip0 [] (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3314 -> 3419[label="",style="solid", color="black", weight=3]; 2235[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 (wy410 : wy411) (enforceWHNF (WHNF (Pos Zero + fromInt (Pos (Succ Zero)))) (numericEnumFrom (Pos Zero + fromInt (Pos (Succ Zero)))))))",fontsize=16,color="black",shape="box"];2235 -> 2298[label="",style="solid", color="black", weight=3]; 2236 -> 16[label="",style="dashed", color="red", weight=0]; 2236[label="foldr (++) [] []",fontsize=16,color="magenta"];4065[label="wy212",fontsize=16,color="green",shape="box"];1640[label="(++) [] wy22",fontsize=16,color="black",shape="triangle"];1640 -> 1738[label="",style="solid", color="black", weight=3]; 4066[label="Pos wy125 : [] ++ wy212",fontsize=16,color="green",shape="box"];4066 -> 4077[label="",style="dashed", color="green", weight=3]; 4175[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 (wy4110 : wy4111) (enforceWHNF (WHNF (Pos wy119 + fromInt (Pos (Succ Zero)))) (numericEnumFrom (Pos wy119 + fromInt (Pos (Succ Zero)))))))",fontsize=16,color="black",shape="box"];4175 -> 4254[label="",style="solid", color="black", weight=3]; 3855[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Neg wy310)))) (zipWith zip0 (wy4110 : wy4111) (enforceWHNF (WHNF (Pos wy121 + fromInt (Pos (Succ Zero)))) (numericEnumFrom (Pos wy121 + fromInt (Pos (Succ Zero)))))))",fontsize=16,color="black",shape="box"];3855 -> 3861[label="",style="solid", color="black", weight=3]; 2196[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Neg wy310)))) [])",fontsize=16,color="black",shape="triangle"];2196 -> 2238[label="",style="solid", color="black", weight=3]; 4413[label="wy121",fontsize=16,color="green",shape="box"];4414[label="wy224",fontsize=16,color="green",shape="box"];4324[label="(++) List.findIndices000 (Pos wy121) (primEqNat wy1780 wy2230) wy222",fontsize=16,color="burlywood",shape="triangle"];5266[label="wy1780/Succ wy17800",fontsize=10,color="white",style="solid",shape="box"];4324 -> 5266[label="",style="solid", color="burlywood", weight=9]; 5266 -> 4415[label="",style="solid", color="burlywood", weight=3]; 5267[label="wy1780/Zero",fontsize=10,color="white",style="solid",shape="box"];4324 -> 5267[label="",style="solid", color="burlywood", weight=9]; 5267 -> 4416[label="",style="solid", color="burlywood", weight=3]; 4325 -> 4048[label="",style="dashed", color="red", weight=0]; 4325[label="(++) List.findIndices000 (Pos wy121) False wy222",fontsize=16,color="magenta"];4325 -> 4417[label="",style="dashed", color="magenta", weight=3]; 4325 -> 4418[label="",style="dashed", color="magenta", weight=3]; 2239[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 (wy440 : wy441) (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];2239 -> 2301[label="",style="solid", color="black", weight=3]; 2240[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 [] (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];2240 -> 2302[label="",style="solid", color="black", weight=3]; 2274[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)))) (zipWith zip0 (wy440 : wy441) (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];2274 -> 2313[label="",style="solid", color="black", weight=3]; 2275[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)))) (zipWith zip0 [] (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];2275 -> 2314[label="",style="solid", color="black", weight=3]; 3891[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 (wy4110 : wy4111) (enforceWHNF (WHNF (Pos wy123 + fromInt (Pos (Succ Zero)))) (numericEnumFrom (Pos wy123 + fromInt (Pos (Succ Zero)))))))",fontsize=16,color="black",shape="box"];3891 -> 3904[label="",style="solid", color="black", weight=3]; 2198[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) [])",fontsize=16,color="black",shape="triangle"];2198 -> 2289[label="",style="solid", color="black", weight=3]; 4050[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Neg wy310)))) (zipWith zip0 (wy4110 : wy4111) (enforceWHNF (WHNF (Pos wy125 + fromInt (Pos (Succ Zero)))) (numericEnumFrom (Pos wy125 + fromInt (Pos (Succ Zero)))))))",fontsize=16,color="black",shape="box"];4050 -> 4058[label="",style="solid", color="black", weight=3]; 4051 -> 16[label="",style="dashed", color="red", weight=0]; 4051[label="foldr (++) [] []",fontsize=16,color="magenta"];3416[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 (wy810 : wy811) (Pos Zero + fromInt (Pos (Succ Zero)) `seq` numericEnumFrom (Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];3416 -> 3429[label="",style="solid", color="black", weight=3]; 3417[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) [])",fontsize=16,color="black",shape="triangle"];3417 -> 3430[label="",style="solid", color="black", weight=3]; 4851[label="wy233",fontsize=16,color="green",shape="box"];4852[label="wy1750",fontsize=16,color="green",shape="box"];4853[label="wy1910",fontsize=16,color="green",shape="box"];4854[label="wy119",fontsize=16,color="green",shape="box"];4855[label="wy119",fontsize=16,color="green",shape="box"];4856[label="wy233",fontsize=16,color="green",shape="box"];3418[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)))) (zipWith zip0 (wy810 : wy811) (Pos Zero + fromInt (Pos (Succ Zero)) `seq` numericEnumFrom (Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];3418 -> 3431[label="",style="solid", color="black", weight=3]; 3419[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)))) [])",fontsize=16,color="black",shape="triangle"];3419 -> 3432[label="",style="solid", color="black", weight=3]; 2298[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 (wy410 : wy411) (enforceWHNF (WHNF (primPlusInt (Pos Zero) (fromInt (Pos (Succ Zero))))) (numericEnumFrom (primPlusInt (Pos Zero) (fromInt (Pos (Succ Zero))))))))",fontsize=16,color="black",shape="box"];2298 -> 2319[label="",style="solid", color="black", weight=3]; 1738[label="wy22",fontsize=16,color="green",shape="box"];4077 -> 1640[label="",style="dashed", color="red", weight=0]; 4077[label="[] ++ wy212",fontsize=16,color="magenta"];4077 -> 4165[label="",style="dashed", color="magenta", weight=3]; 4254[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 (wy4110 : wy4111) (enforceWHNF (WHNF (primPlusInt (Pos wy119) (fromInt (Pos (Succ Zero))))) (numericEnumFrom (primPlusInt (Pos wy119) (fromInt (Pos (Succ Zero))))))))",fontsize=16,color="black",shape="box"];4254 -> 4326[label="",style="solid", color="black", weight=3]; 3861[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Neg wy310)))) (zipWith zip0 (wy4110 : wy4111) (enforceWHNF (WHNF (primPlusInt (Pos wy121) (fromInt (Pos (Succ Zero))))) (numericEnumFrom (primPlusInt (Pos wy121) (fromInt (Pos (Succ Zero))))))))",fontsize=16,color="black",shape="box"];3861 -> 3876[label="",style="solid", color="black", weight=3]; 2238 -> 16[label="",style="dashed", color="red", weight=0]; 2238[label="foldr (++) [] []",fontsize=16,color="magenta"];4415[label="(++) List.findIndices000 (Pos wy121) (primEqNat (Succ wy17800) wy2230) wy222",fontsize=16,color="burlywood",shape="box"];5268[label="wy2230/Succ wy22300",fontsize=10,color="white",style="solid",shape="box"];4415 -> 5268[label="",style="solid", color="burlywood", weight=9]; 5268 -> 4496[label="",style="solid", color="burlywood", weight=3]; 5269[label="wy2230/Zero",fontsize=10,color="white",style="solid",shape="box"];4415 -> 5269[label="",style="solid", color="burlywood", weight=9]; 5269 -> 4497[label="",style="solid", color="burlywood", weight=3]; 4416[label="(++) List.findIndices000 (Pos wy121) (primEqNat Zero wy2230) wy222",fontsize=16,color="burlywood",shape="box"];5270[label="wy2230/Succ wy22300",fontsize=10,color="white",style="solid",shape="box"];4416 -> 5270[label="",style="solid", color="burlywood", weight=9]; 5270 -> 4498[label="",style="solid", color="burlywood", weight=3]; 5271[label="wy2230/Zero",fontsize=10,color="white",style="solid",shape="box"];4416 -> 5271[label="",style="solid", color="burlywood", weight=9]; 5271 -> 4499[label="",style="solid", color="burlywood", weight=3]; 4417[label="wy121",fontsize=16,color="green",shape="box"];4418[label="wy222",fontsize=16,color="green",shape="box"];2301[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 (wy440 : wy441) (Pos Zero + fromInt (Pos (Succ Zero)) `seq` numericEnumFrom (Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];2301 -> 2323[label="",style="solid", color="black", weight=3]; 2302[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) [])",fontsize=16,color="black",shape="triangle"];2302 -> 2324[label="",style="solid", color="black", weight=3]; 2313[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)))) (zipWith zip0 (wy440 : wy441) (Pos Zero + fromInt (Pos (Succ Zero)) `seq` numericEnumFrom (Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];2313 -> 2483[label="",style="solid", color="black", weight=3]; 2314[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)))) [])",fontsize=16,color="black",shape="triangle"];2314 -> 2484[label="",style="solid", color="black", weight=3]; 3904[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 (wy4110 : wy4111) (enforceWHNF (WHNF (primPlusInt (Pos wy123) (fromInt (Pos (Succ Zero))))) (numericEnumFrom (primPlusInt (Pos wy123) (fromInt (Pos (Succ Zero))))))))",fontsize=16,color="black",shape="box"];3904 -> 3920[label="",style="solid", color="black", weight=3]; 2289 -> 16[label="",style="dashed", color="red", weight=0]; 2289[label="foldr (++) [] []",fontsize=16,color="magenta"];4058[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Neg wy310)))) (zipWith zip0 (wy4110 : wy4111) (enforceWHNF (WHNF (primPlusInt (Pos wy125) (fromInt (Pos (Succ Zero))))) (numericEnumFrom (primPlusInt (Pos wy125) (fromInt (Pos (Succ Zero))))))))",fontsize=16,color="black",shape="box"];4058 -> 4067[label="",style="solid", color="black", weight=3]; 3429[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 (wy810 : wy811) (enforceWHNF (WHNF (Pos Zero + fromInt (Pos (Succ Zero)))) (numericEnumFrom (Pos Zero + fromInt (Pos (Succ Zero)))))))",fontsize=16,color="black",shape="box"];3429 -> 3443[label="",style="solid", color="black", weight=3]; 3430 -> 16[label="",style="dashed", color="red", weight=0]; 3430[label="foldr (++) [] []",fontsize=16,color="magenta"];3431[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)))) (zipWith zip0 (wy810 : wy811) (enforceWHNF (WHNF (Pos Zero + fromInt (Pos (Succ Zero)))) (numericEnumFrom (Pos Zero + fromInt (Pos (Succ Zero)))))))",fontsize=16,color="black",shape="box"];3431 -> 3444[label="",style="solid", color="black", weight=3]; 3432 -> 16[label="",style="dashed", color="red", weight=0]; 3432[label="foldr (++) [] []",fontsize=16,color="magenta"];2319[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 (wy410 : wy411) (enforceWHNF (WHNF (primPlusInt (Pos Zero) (Pos (Succ Zero)))) (numericEnumFrom (primPlusInt (Pos Zero) (Pos (Succ Zero)))))))",fontsize=16,color="black",shape="box"];2319 -> 2489[label="",style="solid", color="black", weight=3]; 4165[label="wy212",fontsize=16,color="green",shape="box"];4326[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 (wy4110 : wy4111) (enforceWHNF (WHNF (primPlusInt (Pos wy119) (Pos (Succ Zero)))) (numericEnumFrom (primPlusInt (Pos wy119) (Pos (Succ Zero)))))))",fontsize=16,color="black",shape="box"];4326 -> 4419[label="",style="solid", color="black", weight=3]; 3876[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Neg wy310)))) (zipWith zip0 (wy4110 : wy4111) (enforceWHNF (WHNF (primPlusInt (Pos wy121) (Pos (Succ Zero)))) (numericEnumFrom (primPlusInt (Pos wy121) (Pos (Succ Zero)))))))",fontsize=16,color="black",shape="box"];3876 -> 3888[label="",style="solid", color="black", weight=3]; 4496[label="(++) List.findIndices000 (Pos wy121) (primEqNat (Succ wy17800) (Succ wy22300)) wy222",fontsize=16,color="black",shape="box"];4496 -> 4537[label="",style="solid", color="black", weight=3]; 4497[label="(++) List.findIndices000 (Pos wy121) (primEqNat (Succ wy17800) Zero) wy222",fontsize=16,color="black",shape="box"];4497 -> 4538[label="",style="solid", color="black", weight=3]; 4498[label="(++) List.findIndices000 (Pos wy121) (primEqNat Zero (Succ wy22300)) wy222",fontsize=16,color="black",shape="box"];4498 -> 4539[label="",style="solid", color="black", weight=3]; 4499[label="(++) List.findIndices000 (Pos wy121) (primEqNat Zero Zero) wy222",fontsize=16,color="black",shape="box"];4499 -> 4540[label="",style="solid", color="black", weight=3]; 2323[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 (wy440 : wy441) (enforceWHNF (WHNF (Pos Zero + fromInt (Pos (Succ Zero)))) (numericEnumFrom (Pos Zero + fromInt (Pos (Succ Zero)))))))",fontsize=16,color="black",shape="triangle"];2323 -> 2491[label="",style="solid", color="black", weight=3]; 2324 -> 16[label="",style="dashed", color="red", weight=0]; 2324[label="foldr (++) [] []",fontsize=16,color="magenta"];2483[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)))) (zipWith zip0 (wy440 : wy441) (enforceWHNF (WHNF (Pos Zero + fromInt (Pos (Succ Zero)))) (numericEnumFrom (Pos Zero + fromInt (Pos (Succ Zero)))))))",fontsize=16,color="black",shape="triangle"];2483 -> 2630[label="",style="solid", color="black", weight=3]; 2484 -> 16[label="",style="dashed", color="red", weight=0]; 2484[label="foldr (++) [] []",fontsize=16,color="magenta"];3920[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 (wy4110 : wy4111) (enforceWHNF (WHNF (primPlusInt (Pos wy123) (Pos (Succ Zero)))) (numericEnumFrom (primPlusInt (Pos wy123) (Pos (Succ Zero)))))))",fontsize=16,color="black",shape="box"];3920 -> 3927[label="",style="solid", color="black", weight=3]; 4067[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Neg wy310)))) (zipWith zip0 (wy4110 : wy4111) (enforceWHNF (WHNF (primPlusInt (Pos wy125) (Pos (Succ Zero)))) (numericEnumFrom (primPlusInt (Pos wy125) (Pos (Succ Zero)))))))",fontsize=16,color="black",shape="box"];4067 -> 4078[label="",style="solid", color="black", weight=3]; 3443[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 (wy810 : wy811) (enforceWHNF (WHNF (primPlusInt (Pos Zero) (fromInt (Pos (Succ Zero))))) (numericEnumFrom (primPlusInt (Pos Zero) (fromInt (Pos (Succ Zero))))))))",fontsize=16,color="black",shape="box"];3443 -> 3451[label="",style="solid", color="black", weight=3]; 3444[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)))) (zipWith zip0 (wy810 : wy811) (enforceWHNF (WHNF (primPlusInt (Pos Zero) (fromInt (Pos (Succ Zero))))) (numericEnumFrom (primPlusInt (Pos Zero) (fromInt (Pos (Succ Zero))))))))",fontsize=16,color="black",shape="box"];3444 -> 3452[label="",style="solid", color="black", weight=3]; 2489 -> 2647[label="",style="dashed", color="red", weight=0]; 2489[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 (wy410 : wy411) (enforceWHNF (WHNF (Pos (primPlusNat Zero (Succ Zero)))) (numericEnumFrom (Pos (primPlusNat Zero (Succ Zero)))))))",fontsize=16,color="magenta"];2489 -> 2648[label="",style="dashed", color="magenta", weight=3]; 2489 -> 2649[label="",style="dashed", color="magenta", weight=3]; 4419 -> 2647[label="",style="dashed", color="red", weight=0]; 4419[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 (wy4110 : wy4111) (enforceWHNF (WHNF (Pos (primPlusNat wy119 (Succ Zero)))) (numericEnumFrom (Pos (primPlusNat wy119 (Succ Zero)))))))",fontsize=16,color="magenta"];4419 -> 4500[label="",style="dashed", color="magenta", weight=3]; 4419 -> 4501[label="",style="dashed", color="magenta", weight=3]; 4419 -> 4502[label="",style="dashed", color="magenta", weight=3]; 4419 -> 4503[label="",style="dashed", color="magenta", weight=3]; 3888 -> 2650[label="",style="dashed", color="red", weight=0]; 3888[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Neg wy310)))) (zipWith zip0 (wy4110 : wy4111) (enforceWHNF (WHNF (Pos (primPlusNat wy121 (Succ Zero)))) (numericEnumFrom (Pos (primPlusNat wy121 (Succ Zero)))))))",fontsize=16,color="magenta"];3888 -> 3892[label="",style="dashed", color="magenta", weight=3]; 3888 -> 3893[label="",style="dashed", color="magenta", weight=3]; 3888 -> 3894[label="",style="dashed", color="magenta", weight=3]; 3888 -> 3895[label="",style="dashed", color="magenta", weight=3]; 4537 -> 4324[label="",style="dashed", color="red", weight=0]; 4537[label="(++) List.findIndices000 (Pos wy121) (primEqNat wy17800 wy22300) wy222",fontsize=16,color="magenta"];4537 -> 4553[label="",style="dashed", color="magenta", weight=3]; 4537 -> 4554[label="",style="dashed", color="magenta", weight=3]; 4538 -> 4048[label="",style="dashed", color="red", weight=0]; 4538[label="(++) List.findIndices000 (Pos wy121) False wy222",fontsize=16,color="magenta"];4538 -> 4555[label="",style="dashed", color="magenta", weight=3]; 4538 -> 4556[label="",style="dashed", color="magenta", weight=3]; 4539 -> 4048[label="",style="dashed", color="red", weight=0]; 4539[label="(++) List.findIndices000 (Pos wy121) False wy222",fontsize=16,color="magenta"];4539 -> 4557[label="",style="dashed", color="magenta", weight=3]; 4539 -> 4558[label="",style="dashed", color="magenta", weight=3]; 4540 -> 4049[label="",style="dashed", color="red", weight=0]; 4540[label="(++) List.findIndices000 (Pos wy121) True wy222",fontsize=16,color="magenta"];4540 -> 4559[label="",style="dashed", color="magenta", weight=3]; 4540 -> 4560[label="",style="dashed", color="magenta", weight=3]; 2491[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 (wy440 : wy441) (enforceWHNF (WHNF (primPlusInt (Pos Zero) (fromInt (Pos (Succ Zero))))) (numericEnumFrom (primPlusInt (Pos Zero) (fromInt (Pos (Succ Zero))))))))",fontsize=16,color="black",shape="box"];2491 -> 2631[label="",style="solid", color="black", weight=3]; 2630[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)))) (zipWith zip0 (wy440 : wy441) (enforceWHNF (WHNF (primPlusInt (Pos Zero) (fromInt (Pos (Succ Zero))))) (numericEnumFrom (primPlusInt (Pos Zero) (fromInt (Pos (Succ Zero))))))))",fontsize=16,color="black",shape="box"];2630 -> 2641[label="",style="solid", color="black", weight=3]; 3927 -> 2655[label="",style="dashed", color="red", weight=0]; 3927[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 (wy4110 : wy4111) (enforceWHNF (WHNF (Pos (primPlusNat wy123 (Succ Zero)))) (numericEnumFrom (Pos (primPlusNat wy123 (Succ Zero)))))))",fontsize=16,color="magenta"];3927 -> 3932[label="",style="dashed", color="magenta", weight=3]; 3927 -> 3933[label="",style="dashed", color="magenta", weight=3]; 3927 -> 3934[label="",style="dashed", color="magenta", weight=3]; 3927 -> 3935[label="",style="dashed", color="magenta", weight=3]; 4078 -> 4166[label="",style="dashed", color="red", weight=0]; 4078[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Neg wy310)))) (zipWith zip0 (wy4110 : wy4111) (enforceWHNF (WHNF (Pos (primPlusNat wy125 (Succ Zero)))) (numericEnumFrom (Pos (primPlusNat wy125 (Succ Zero)))))))",fontsize=16,color="magenta"];4078 -> 4167[label="",style="dashed", color="magenta", weight=3]; 4078 -> 4168[label="",style="dashed", color="magenta", weight=3]; 3451[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 (wy810 : wy811) (enforceWHNF (WHNF (primPlusInt (Pos Zero) (Pos (Succ Zero)))) (numericEnumFrom (primPlusInt (Pos Zero) (Pos (Succ Zero)))))))",fontsize=16,color="black",shape="box"];3451 -> 3459[label="",style="solid", color="black", weight=3]; 3452[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)))) (zipWith zip0 (wy810 : wy811) (enforceWHNF (WHNF (primPlusInt (Pos Zero) (Pos (Succ Zero)))) (numericEnumFrom (primPlusInt (Pos Zero) (Pos (Succ Zero)))))))",fontsize=16,color="black",shape="box"];3452 -> 3460[label="",style="solid", color="black", weight=3]; 2648 -> 1932[label="",style="dashed", color="red", weight=0]; 2648[label="primPlusNat Zero (Succ Zero)",fontsize=16,color="magenta"];2648 -> 2671[label="",style="dashed", color="magenta", weight=3]; 2648 -> 2672[label="",style="dashed", color="magenta", weight=3]; 2649 -> 1932[label="",style="dashed", color="red", weight=0]; 2649[label="primPlusNat Zero (Succ Zero)",fontsize=16,color="magenta"];2649 -> 2673[label="",style="dashed", color="magenta", weight=3]; 2649 -> 2674[label="",style="dashed", color="magenta", weight=3]; 2647[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 (wy410 : wy411) (enforceWHNF (WHNF (Pos wy120)) (numericEnumFrom (Pos wy119)))))",fontsize=16,color="black",shape="triangle"];2647 -> 2675[label="",style="solid", color="black", weight=3]; 4500 -> 1932[label="",style="dashed", color="red", weight=0]; 4500[label="primPlusNat wy119 (Succ Zero)",fontsize=16,color="magenta"];4500 -> 4541[label="",style="dashed", color="magenta", weight=3]; 4500 -> 4542[label="",style="dashed", color="magenta", weight=3]; 4501[label="wy4110",fontsize=16,color="green",shape="box"];4502 -> 1932[label="",style="dashed", color="red", weight=0]; 4502[label="primPlusNat wy119 (Succ Zero)",fontsize=16,color="magenta"];4502 -> 4543[label="",style="dashed", color="magenta", weight=3]; 4502 -> 4544[label="",style="dashed", color="magenta", weight=3]; 4503[label="wy4111",fontsize=16,color="green",shape="box"];3892 -> 1932[label="",style="dashed", color="red", weight=0]; 3892[label="primPlusNat wy121 (Succ Zero)",fontsize=16,color="magenta"];3892 -> 3905[label="",style="dashed", color="magenta", weight=3]; 3892 -> 3906[label="",style="dashed", color="magenta", weight=3]; 3893[label="wy4110",fontsize=16,color="green",shape="box"];3894[label="wy4111",fontsize=16,color="green",shape="box"];3895 -> 1932[label="",style="dashed", color="red", weight=0]; 3895[label="primPlusNat wy121 (Succ Zero)",fontsize=16,color="magenta"];3895 -> 3907[label="",style="dashed", color="magenta", weight=3]; 3895 -> 3908[label="",style="dashed", color="magenta", weight=3]; 2650[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Neg wy310)))) (zipWith zip0 (wy410 : wy411) (enforceWHNF (WHNF (Pos wy122)) (numericEnumFrom (Pos wy121)))))",fontsize=16,color="black",shape="triangle"];2650 -> 2680[label="",style="solid", color="black", weight=3]; 4553[label="wy17800",fontsize=16,color="green",shape="box"];4554[label="wy22300",fontsize=16,color="green",shape="box"];4555[label="wy121",fontsize=16,color="green",shape="box"];4556[label="wy222",fontsize=16,color="green",shape="box"];4557[label="wy121",fontsize=16,color="green",shape="box"];4558[label="wy222",fontsize=16,color="green",shape="box"];4559[label="wy121",fontsize=16,color="green",shape="box"];4560[label="wy222",fontsize=16,color="green",shape="box"];2631[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 (wy440 : wy441) (enforceWHNF (WHNF (primPlusInt (Pos Zero) (Pos (Succ Zero)))) (numericEnumFrom (primPlusInt (Pos Zero) (Pos (Succ Zero)))))))",fontsize=16,color="black",shape="box"];2631 -> 2653[label="",style="solid", color="black", weight=3]; 2641[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)))) (zipWith zip0 (wy440 : wy441) (enforceWHNF (WHNF (primPlusInt (Pos Zero) (Pos (Succ Zero)))) (numericEnumFrom (primPlusInt (Pos Zero) (Pos (Succ Zero)))))))",fontsize=16,color="black",shape="box"];2641 -> 2654[label="",style="solid", color="black", weight=3]; 3932 -> 1932[label="",style="dashed", color="red", weight=0]; 3932[label="primPlusNat wy123 (Succ Zero)",fontsize=16,color="magenta"];3932 -> 3947[label="",style="dashed", color="magenta", weight=3]; 3932 -> 3948[label="",style="dashed", color="magenta", weight=3]; 3933 -> 1932[label="",style="dashed", color="red", weight=0]; 3933[label="primPlusNat wy123 (Succ Zero)",fontsize=16,color="magenta"];3933 -> 3949[label="",style="dashed", color="magenta", weight=3]; 3933 -> 3950[label="",style="dashed", color="magenta", weight=3]; 3934[label="wy4110",fontsize=16,color="green",shape="box"];3935[label="wy4111",fontsize=16,color="green",shape="box"];2655[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 (wy410 : wy411) (enforceWHNF (WHNF (Pos wy124)) (numericEnumFrom (Pos wy123)))))",fontsize=16,color="black",shape="triangle"];2655 -> 2736[label="",style="solid", color="black", weight=3]; 4167 -> 1932[label="",style="dashed", color="red", weight=0]; 4167[label="primPlusNat wy125 (Succ Zero)",fontsize=16,color="magenta"];4167 -> 4176[label="",style="dashed", color="magenta", weight=3]; 4167 -> 4177[label="",style="dashed", color="magenta", weight=3]; 4168 -> 1932[label="",style="dashed", color="red", weight=0]; 4168[label="primPlusNat wy125 (Succ Zero)",fontsize=16,color="magenta"];4168 -> 4178[label="",style="dashed", color="magenta", weight=3]; 4168 -> 4179[label="",style="dashed", color="magenta", weight=3]; 4166[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Neg wy310)))) (zipWith zip0 (wy4110 : wy4111) (enforceWHNF (WHNF (Pos wy221)) (numericEnumFrom (Pos wy220)))))",fontsize=16,color="black",shape="triangle"];4166 -> 4180[label="",style="solid", color="black", weight=3]; 3459 -> 3467[label="",style="dashed", color="red", weight=0]; 3459[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 (wy810 : wy811) (enforceWHNF (WHNF (Pos (primPlusNat Zero (Succ Zero)))) (numericEnumFrom (Pos (primPlusNat Zero (Succ Zero)))))))",fontsize=16,color="magenta"];3459 -> 3468[label="",style="dashed", color="magenta", weight=3]; 3459 -> 3469[label="",style="dashed", color="magenta", weight=3]; 3460 -> 3470[label="",style="dashed", color="red", weight=0]; 3460[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)))) (zipWith zip0 (wy810 : wy811) (enforceWHNF (WHNF (Pos (primPlusNat Zero (Succ Zero)))) (numericEnumFrom (Pos (primPlusNat Zero (Succ Zero)))))))",fontsize=16,color="magenta"];3460 -> 3471[label="",style="dashed", color="magenta", weight=3]; 3460 -> 3472[label="",style="dashed", color="magenta", weight=3]; 2671[label="Succ Zero",fontsize=16,color="green",shape="box"];2672[label="Zero",fontsize=16,color="green",shape="box"];2673[label="Succ Zero",fontsize=16,color="green",shape="box"];2674[label="Zero",fontsize=16,color="green",shape="box"];2675[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 (wy410 : wy411) (numericEnumFrom (Pos wy119))))",fontsize=16,color="black",shape="box"];2675 -> 2867[label="",style="solid", color="black", weight=3]; 4541[label="Succ Zero",fontsize=16,color="green",shape="box"];4542[label="wy119",fontsize=16,color="green",shape="box"];4543[label="Succ Zero",fontsize=16,color="green",shape="box"];4544[label="wy119",fontsize=16,color="green",shape="box"];3905[label="Succ Zero",fontsize=16,color="green",shape="box"];3906[label="wy121",fontsize=16,color="green",shape="box"];3907[label="Succ Zero",fontsize=16,color="green",shape="box"];3908[label="wy121",fontsize=16,color="green",shape="box"];2680[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Neg wy310)))) (zipWith zip0 (wy410 : wy411) (numericEnumFrom (Pos wy121))))",fontsize=16,color="black",shape="box"];2680 -> 2868[label="",style="solid", color="black", weight=3]; 2653 -> 2723[label="",style="dashed", color="red", weight=0]; 2653[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 (wy440 : wy441) (enforceWHNF (WHNF (Pos (primPlusNat Zero (Succ Zero)))) (numericEnumFrom (Pos (primPlusNat Zero (Succ Zero)))))))",fontsize=16,color="magenta"];2653 -> 2724[label="",style="dashed", color="magenta", weight=3]; 2653 -> 2725[label="",style="dashed", color="magenta", weight=3]; 2654 -> 2726[label="",style="dashed", color="red", weight=0]; 2654[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)))) (zipWith zip0 (wy440 : wy441) (enforceWHNF (WHNF (Pos (primPlusNat Zero (Succ Zero)))) (numericEnumFrom (Pos (primPlusNat Zero (Succ Zero)))))))",fontsize=16,color="magenta"];2654 -> 2727[label="",style="dashed", color="magenta", weight=3]; 2654 -> 2728[label="",style="dashed", color="magenta", weight=3]; 3947[label="Succ Zero",fontsize=16,color="green",shape="box"];3948[label="wy123",fontsize=16,color="green",shape="box"];3949[label="Succ Zero",fontsize=16,color="green",shape="box"];3950[label="wy123",fontsize=16,color="green",shape="box"];2736[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 (wy410 : wy411) (numericEnumFrom (Pos wy123))))",fontsize=16,color="black",shape="box"];2736 -> 3137[label="",style="solid", color="black", weight=3]; 4176[label="Succ Zero",fontsize=16,color="green",shape="box"];4177[label="wy125",fontsize=16,color="green",shape="box"];4178[label="Succ Zero",fontsize=16,color="green",shape="box"];4179[label="wy125",fontsize=16,color="green",shape="box"];4180[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Neg wy310)))) (zipWith zip0 (wy4110 : wy4111) (numericEnumFrom (Pos wy220))))",fontsize=16,color="black",shape="box"];4180 -> 4255[label="",style="solid", color="black", weight=3]; 3468 -> 1932[label="",style="dashed", color="red", weight=0]; 3468[label="primPlusNat Zero (Succ Zero)",fontsize=16,color="magenta"];3468 -> 3473[label="",style="dashed", color="magenta", weight=3]; 3468 -> 3474[label="",style="dashed", color="magenta", weight=3]; 3469 -> 1932[label="",style="dashed", color="red", weight=0]; 3469[label="primPlusNat Zero (Succ Zero)",fontsize=16,color="magenta"];3469 -> 3475[label="",style="dashed", color="magenta", weight=3]; 3469 -> 3476[label="",style="dashed", color="magenta", weight=3]; 3467[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 (wy810 : wy811) (enforceWHNF (WHNF (Pos wy172)) (numericEnumFrom (Pos wy171)))))",fontsize=16,color="black",shape="triangle"];3467 -> 3477[label="",style="solid", color="black", weight=3]; 3471 -> 1932[label="",style="dashed", color="red", weight=0]; 3471[label="primPlusNat Zero (Succ Zero)",fontsize=16,color="magenta"];3471 -> 3478[label="",style="dashed", color="magenta", weight=3]; 3471 -> 3479[label="",style="dashed", color="magenta", weight=3]; 3472 -> 1932[label="",style="dashed", color="red", weight=0]; 3472[label="primPlusNat Zero (Succ Zero)",fontsize=16,color="magenta"];3472 -> 3480[label="",style="dashed", color="magenta", weight=3]; 3472 -> 3481[label="",style="dashed", color="magenta", weight=3]; 3470[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)))) (zipWith zip0 (wy810 : wy811) (enforceWHNF (WHNF (Pos wy174)) (numericEnumFrom (Pos wy173)))))",fontsize=16,color="black",shape="triangle"];3470 -> 3482[label="",style="solid", color="black", weight=3]; 2867[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 (wy410 : wy411) (Pos wy119 : (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];2867 -> 3139[label="",style="solid", color="black", weight=3]; 2868[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Neg wy310)))) (zipWith zip0 (wy410 : wy411) (Pos wy121 : (numericEnumFrom $! Pos wy121 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];2868 -> 3140[label="",style="solid", color="black", weight=3]; 2724 -> 1932[label="",style="dashed", color="red", weight=0]; 2724[label="primPlusNat Zero (Succ Zero)",fontsize=16,color="magenta"];2724 -> 3141[label="",style="dashed", color="magenta", weight=3]; 2724 -> 3142[label="",style="dashed", color="magenta", weight=3]; 2725 -> 1932[label="",style="dashed", color="red", weight=0]; 2725[label="primPlusNat Zero (Succ Zero)",fontsize=16,color="magenta"];2725 -> 3143[label="",style="dashed", color="magenta", weight=3]; 2725 -> 3144[label="",style="dashed", color="magenta", weight=3]; 2723[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 (wy440 : wy441) (enforceWHNF (WHNF (Pos wy142)) (numericEnumFrom (Pos wy141)))))",fontsize=16,color="black",shape="triangle"];2723 -> 3145[label="",style="solid", color="black", weight=3]; 2727 -> 1932[label="",style="dashed", color="red", weight=0]; 2727[label="primPlusNat Zero (Succ Zero)",fontsize=16,color="magenta"];2727 -> 3146[label="",style="dashed", color="magenta", weight=3]; 2727 -> 3147[label="",style="dashed", color="magenta", weight=3]; 2728 -> 1932[label="",style="dashed", color="red", weight=0]; 2728[label="primPlusNat Zero (Succ Zero)",fontsize=16,color="magenta"];2728 -> 3148[label="",style="dashed", color="magenta", weight=3]; 2728 -> 3149[label="",style="dashed", color="magenta", weight=3]; 2726[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)))) (zipWith zip0 (wy440 : wy441) (enforceWHNF (WHNF (Pos wy144)) (numericEnumFrom (Pos wy143)))))",fontsize=16,color="black",shape="triangle"];2726 -> 3150[label="",style="solid", color="black", weight=3]; 3137[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 (wy410 : wy411) (Pos wy123 : (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];3137 -> 3167[label="",style="solid", color="black", weight=3]; 4255[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Neg wy310)))) (zipWith zip0 (wy4110 : wy4111) (Pos wy220 : (numericEnumFrom $! Pos wy220 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];4255 -> 4327[label="",style="solid", color="black", weight=3]; 3473[label="Succ Zero",fontsize=16,color="green",shape="box"];3474[label="Zero",fontsize=16,color="green",shape="box"];3475[label="Succ Zero",fontsize=16,color="green",shape="box"];3476[label="Zero",fontsize=16,color="green",shape="box"];3477[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 (wy810 : wy811) (numericEnumFrom (Pos wy171))))",fontsize=16,color="black",shape="box"];3477 -> 3491[label="",style="solid", color="black", weight=3]; 3478[label="Succ Zero",fontsize=16,color="green",shape="box"];3479[label="Zero",fontsize=16,color="green",shape="box"];3480[label="Succ Zero",fontsize=16,color="green",shape="box"];3481[label="Zero",fontsize=16,color="green",shape="box"];3482[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)))) (zipWith zip0 (wy810 : wy811) (numericEnumFrom (Pos wy173))))",fontsize=16,color="black",shape="box"];3482 -> 3492[label="",style="solid", color="black", weight=3]; 3139[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zip0 wy410 (Pos wy119) : zipWith zip0 wy411 (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3139 -> 3169[label="",style="solid", color="black", weight=3]; 3140[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Neg wy310)))) (zip0 wy410 (Pos wy121) : zipWith zip0 wy411 (numericEnumFrom $! Pos wy121 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3140 -> 3170[label="",style="solid", color="black", weight=3]; 3141[label="Succ Zero",fontsize=16,color="green",shape="box"];3142[label="Zero",fontsize=16,color="green",shape="box"];3143[label="Succ Zero",fontsize=16,color="green",shape="box"];3144[label="Zero",fontsize=16,color="green",shape="box"];3145[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 (wy440 : wy441) (numericEnumFrom (Pos wy141))))",fontsize=16,color="black",shape="box"];3145 -> 3171[label="",style="solid", color="black", weight=3]; 3146[label="Succ Zero",fontsize=16,color="green",shape="box"];3147[label="Zero",fontsize=16,color="green",shape="box"];3148[label="Succ Zero",fontsize=16,color="green",shape="box"];3149[label="Zero",fontsize=16,color="green",shape="box"];3150[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)))) (zipWith zip0 (wy440 : wy441) (numericEnumFrom (Pos wy143))))",fontsize=16,color="black",shape="box"];3150 -> 3172[label="",style="solid", color="black", weight=3]; 3167[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zip0 wy410 (Pos wy123) : zipWith zip0 wy411 (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3167 -> 3193[label="",style="solid", color="black", weight=3]; 4327[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Neg wy310)))) (zip0 wy4110 (Pos wy220) : zipWith zip0 wy4111 (numericEnumFrom $! Pos wy220 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];4327 -> 4420[label="",style="solid", color="black", weight=3]; 3491[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 (wy810 : wy811) (Pos wy171 : (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];3491 -> 3503[label="",style="solid", color="black", weight=3]; 3492[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)))) (zipWith zip0 (wy810 : wy811) (Pos wy173 : (numericEnumFrom $! Pos wy173 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];3492 -> 3504[label="",style="solid", color="black", weight=3]; 3169[label="foldr (++) [] (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310))) (zip0 wy410 (Pos wy119)) : map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3169 -> 3195[label="",style="solid", color="black", weight=3]; 3170[label="foldr (++) [] (List.findIndices0 (primEqFloat (Float (Pos Zero) (Neg wy310))) (zip0 wy410 (Pos wy121)) : map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Neg wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy121 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3170 -> 3196[label="",style="solid", color="black", weight=3]; 3171[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 (wy440 : wy441) (Pos wy141 : (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];3171 -> 3197[label="",style="solid", color="black", weight=3]; 3172[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)))) (zipWith zip0 (wy440 : wy441) (Pos wy143 : (numericEnumFrom $! Pos wy143 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];3172 -> 3198[label="",style="solid", color="black", weight=3]; 3193[label="foldr (++) [] (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310))) (zip0 wy410 (Pos wy123)) : map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3193 -> 3235[label="",style="solid", color="black", weight=3]; 4420[label="foldr (++) [] (List.findIndices0 (primEqFloat (Float (Neg Zero) (Neg wy310))) (zip0 wy4110 (Pos wy220)) : map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Neg wy310)))) (zipWith zip0 wy4111 (numericEnumFrom $! Pos wy220 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];4420 -> 4504[label="",style="solid", color="black", weight=3]; 3503[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zip0 wy810 (Pos wy171) : zipWith zip0 wy811 (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3503 -> 3511[label="",style="solid", color="black", weight=3]; 3504[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)))) (zip0 wy810 (Pos wy173) : zipWith zip0 wy811 (numericEnumFrom $! Pos wy173 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3504 -> 3512[label="",style="solid", color="black", weight=3]; 3195[label="(++) List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310))) (zip0 wy410 (Pos wy119)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3195 -> 3237[label="",style="solid", color="black", weight=3]; 3196[label="(++) List.findIndices0 (primEqFloat (Float (Pos Zero) (Neg wy310))) (zip0 wy410 (Pos wy121)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Neg wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy121 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3196 -> 3238[label="",style="solid", color="black", weight=3]; 3197[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zip0 wy440 (Pos wy141) : zipWith zip0 wy441 (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3197 -> 3239[label="",style="solid", color="black", weight=3]; 3198[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)))) (zip0 wy440 (Pos wy143) : zipWith zip0 wy441 (numericEnumFrom $! Pos wy143 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3198 -> 3240[label="",style="solid", color="black", weight=3]; 3235[label="(++) List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310))) (zip0 wy410 (Pos wy123)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3235 -> 3390[label="",style="solid", color="black", weight=3]; 4504 -> 4545[label="",style="dashed", color="red", weight=0]; 4504[label="(++) List.findIndices0 (primEqFloat (Float (Neg Zero) (Neg wy310))) (zip0 wy4110 (Pos wy220)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Neg wy310)))) (zipWith zip0 wy4111 (numericEnumFrom $! Pos wy220 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4504 -> 4546[label="",style="dashed", color="magenta", weight=3]; 3511[label="foldr (++) [] (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780))) (zip0 wy810 (Pos wy171)) : map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3511 -> 3515[label="",style="solid", color="black", weight=3]; 3512[label="foldr (++) [] (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780))) (zip0 wy810 (Pos wy173)) : map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy173 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3512 -> 3516[label="",style="solid", color="black", weight=3]; 3237[label="(++) List.findIndices00 (primEqFloat (Float (Pos Zero) (Pos wy310))) (zip0 wy410 (Pos wy119)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3237 -> 3392[label="",style="solid", color="black", weight=3]; 3238[label="(++) List.findIndices00 (primEqFloat (Float (Pos Zero) (Neg wy310))) (zip0 wy410 (Pos wy121)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Neg wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy121 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3238 -> 3393[label="",style="solid", color="black", weight=3]; 3239[label="foldr (++) [] (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410))) (zip0 wy440 (Pos wy141)) : map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3239 -> 3394[label="",style="solid", color="black", weight=3]; 3240[label="foldr (++) [] (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410))) (zip0 wy440 (Pos wy143)) : map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy143 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3240 -> 3395[label="",style="solid", color="black", weight=3]; 3390[label="(++) List.findIndices00 (primEqFloat (Float (Neg Zero) (Pos wy310))) (zip0 wy410 (Pos wy123)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3390 -> 3423[label="",style="solid", color="black", weight=3]; 4546 -> 3930[label="",style="dashed", color="red", weight=0]; 4546[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Neg wy310)))) (zipWith zip0 wy4111 (numericEnumFrom $! Pos wy220 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4546 -> 4561[label="",style="dashed", color="magenta", weight=3]; 4546 -> 4562[label="",style="dashed", color="magenta", weight=3]; 4545[label="(++) List.findIndices0 (primEqFloat (Float (Neg Zero) (Neg wy310))) (zip0 wy4110 (Pos wy220)) wy231",fontsize=16,color="black",shape="triangle"];4545 -> 4563[label="",style="solid", color="black", weight=3]; 3515[label="(++) List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780))) (zip0 wy810 (Pos wy171)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3515 -> 3519[label="",style="solid", color="black", weight=3]; 3516[label="(++) List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780))) (zip0 wy810 (Pos wy173)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy173 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3516 -> 3520[label="",style="solid", color="black", weight=3]; 3392[label="(++) List.findIndices00 (primEqFloat (Float (Pos Zero) (Pos wy310))) (wy410,Pos wy119) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3392 -> 3425[label="",style="solid", color="black", weight=3]; 3393[label="(++) List.findIndices00 (primEqFloat (Float (Pos Zero) (Neg wy310))) (wy410,Pos wy121) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Neg wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy121 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3393 -> 3426[label="",style="solid", color="black", weight=3]; 3394[label="(++) List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410))) (zip0 wy440 (Pos wy141)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3394 -> 3427[label="",style="solid", color="black", weight=3]; 3395[label="(++) List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410))) (zip0 wy440 (Pos wy143)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy143 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3395 -> 3428[label="",style="solid", color="black", weight=3]; 3423[label="(++) List.findIndices00 (primEqFloat (Float (Neg Zero) (Pos wy310))) (wy410,Pos wy123) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3423 -> 3437[label="",style="solid", color="black", weight=3]; 4561[label="wy220",fontsize=16,color="green",shape="box"];4562[label="wy4111",fontsize=16,color="green",shape="box"];4563[label="(++) List.findIndices00 (primEqFloat (Float (Neg Zero) (Neg wy310))) (zip0 wy4110 (Pos wy220)) wy231",fontsize=16,color="black",shape="box"];4563 -> 4579[label="",style="solid", color="black", weight=3]; 3519[label="(++) List.findIndices00 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780))) (zip0 wy810 (Pos wy171)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3519 -> 3523[label="",style="solid", color="black", weight=3]; 3520[label="(++) List.findIndices00 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780))) (zip0 wy810 (Pos wy173)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy173 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3520 -> 3524[label="",style="solid", color="black", weight=3]; 3425[label="(++) List.findIndices000 (Pos wy119) (primEqFloat (Float (Pos Zero) (Pos wy310)) wy410) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5272[label="wy410/Float wy4100 wy4101",fontsize=10,color="white",style="solid",shape="box"];3425 -> 5272[label="",style="solid", color="burlywood", weight=9]; 5272 -> 3439[label="",style="solid", color="burlywood", weight=3]; 3426[label="(++) List.findIndices000 (Pos wy121) (primEqFloat (Float (Pos Zero) (Neg wy310)) wy410) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Neg wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy121 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5273[label="wy410/Float wy4100 wy4101",fontsize=10,color="white",style="solid",shape="box"];3426 -> 5273[label="",style="solid", color="burlywood", weight=9]; 5273 -> 3440[label="",style="solid", color="burlywood", weight=3]; 3427[label="(++) List.findIndices00 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410))) (zip0 wy440 (Pos wy141)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3427 -> 3441[label="",style="solid", color="black", weight=3]; 3428[label="(++) List.findIndices00 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410))) (zip0 wy440 (Pos wy143)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy143 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3428 -> 3442[label="",style="solid", color="black", weight=3]; 3437[label="(++) List.findIndices000 (Pos wy123) (primEqFloat (Float (Neg Zero) (Pos wy310)) wy410) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5274[label="wy410/Float wy4100 wy4101",fontsize=10,color="white",style="solid",shape="box"];3437 -> 5274[label="",style="solid", color="burlywood", weight=9]; 5274 -> 3445[label="",style="solid", color="burlywood", weight=3]; 4579[label="(++) List.findIndices00 (primEqFloat (Float (Neg Zero) (Neg wy310))) (wy4110,Pos wy220) wy231",fontsize=16,color="black",shape="box"];4579 -> 4653[label="",style="solid", color="black", weight=3]; 3523[label="(++) List.findIndices00 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780))) (wy810,Pos wy171) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3523 -> 3531[label="",style="solid", color="black", weight=3]; 3524[label="(++) List.findIndices00 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780))) (wy810,Pos wy173) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy173 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3524 -> 3532[label="",style="solid", color="black", weight=3]; 3439[label="(++) List.findIndices000 (Pos wy119) (primEqFloat (Float (Pos Zero) (Pos wy310)) (Float wy4100 wy4101)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3439 -> 3447[label="",style="solid", color="black", weight=3]; 3440[label="(++) List.findIndices000 (Pos wy121) (primEqFloat (Float (Pos Zero) (Neg wy310)) (Float wy4100 wy4101)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Neg wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy121 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3440 -> 3448[label="",style="solid", color="black", weight=3]; 3441[label="(++) List.findIndices00 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410))) (wy440,Pos wy141) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3441 -> 3449[label="",style="solid", color="black", weight=3]; 3442[label="(++) List.findIndices00 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410))) (wy440,Pos wy143) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy143 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3442 -> 3450[label="",style="solid", color="black", weight=3]; 3445[label="(++) List.findIndices000 (Pos wy123) (primEqFloat (Float (Neg Zero) (Pos wy310)) (Float wy4100 wy4101)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3445 -> 3453[label="",style="solid", color="black", weight=3]; 4653[label="(++) List.findIndices000 (Pos wy220) (primEqFloat (Float (Neg Zero) (Neg wy310)) wy4110) wy231",fontsize=16,color="burlywood",shape="box"];5275[label="wy4110/Float wy41100 wy41101",fontsize=10,color="white",style="solid",shape="box"];4653 -> 5275[label="",style="solid", color="burlywood", weight=9]; 5275 -> 4727[label="",style="solid", color="burlywood", weight=3]; 3531[label="(++) List.findIndices000 (Pos wy171) (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)) wy810) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5276[label="wy810/Float wy8100 wy8101",fontsize=10,color="white",style="solid",shape="box"];3531 -> 5276[label="",style="solid", color="burlywood", weight=9]; 5276 -> 3535[label="",style="solid", color="burlywood", weight=3]; 3532[label="(++) List.findIndices000 (Pos wy173) (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)) wy810) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy173 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5277[label="wy810/Float wy8100 wy8101",fontsize=10,color="white",style="solid",shape="box"];3532 -> 5277[label="",style="solid", color="burlywood", weight=9]; 5277 -> 3536[label="",style="solid", color="burlywood", weight=3]; 3447[label="(++) List.findIndices000 (Pos wy119) (Pos Zero * wy4101 == Pos wy310 * wy4100) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3447 -> 3455[label="",style="solid", color="black", weight=3]; 3448[label="(++) List.findIndices000 (Pos wy121) (Pos Zero * wy4101 == Neg wy310 * wy4100) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Neg wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy121 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3448 -> 3456[label="",style="solid", color="black", weight=3]; 3449[label="(++) List.findIndices000 (Pos wy141) (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)) wy440) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5278[label="wy440/Float wy4400 wy4401",fontsize=10,color="white",style="solid",shape="box"];3449 -> 5278[label="",style="solid", color="burlywood", weight=9]; 5278 -> 3457[label="",style="solid", color="burlywood", weight=3]; 3450[label="(++) List.findIndices000 (Pos wy143) (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)) wy440) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy143 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5279[label="wy440/Float wy4400 wy4401",fontsize=10,color="white",style="solid",shape="box"];3450 -> 5279[label="",style="solid", color="burlywood", weight=9]; 5279 -> 3458[label="",style="solid", color="burlywood", weight=3]; 3453[label="(++) List.findIndices000 (Pos wy123) (Neg Zero * wy4101 == Pos wy310 * wy4100) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3453 -> 3461[label="",style="solid", color="black", weight=3]; 4727[label="(++) List.findIndices000 (Pos wy220) (primEqFloat (Float (Neg Zero) (Neg wy310)) (Float wy41100 wy41101)) wy231",fontsize=16,color="black",shape="box"];4727 -> 4857[label="",style="solid", color="black", weight=3]; 3535[label="(++) List.findIndices000 (Pos wy171) (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)) (Float wy8100 wy8101)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3535 -> 3539[label="",style="solid", color="black", weight=3]; 3536[label="(++) List.findIndices000 (Pos wy173) (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)) (Float wy8100 wy8101)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy173 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3536 -> 3540[label="",style="solid", color="black", weight=3]; 3455[label="(++) List.findIndices000 (Pos wy119) (primEqInt (Pos Zero * wy4101) (Pos wy310 * wy4100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3455 -> 3463[label="",style="solid", color="black", weight=3]; 3456[label="(++) List.findIndices000 (Pos wy121) (primEqInt (Pos Zero * wy4101) (Neg wy310 * wy4100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Neg wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy121 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3456 -> 3464[label="",style="solid", color="black", weight=3]; 3457[label="(++) List.findIndices000 (Pos wy141) (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)) (Float wy4400 wy4401)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3457 -> 3465[label="",style="solid", color="black", weight=3]; 3458[label="(++) List.findIndices000 (Pos wy143) (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)) (Float wy4400 wy4401)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy143 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3458 -> 3466[label="",style="solid", color="black", weight=3]; 3461[label="(++) List.findIndices000 (Pos wy123) (primEqInt (Neg Zero * wy4101) (Pos wy310 * wy4100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3461 -> 3483[label="",style="solid", color="black", weight=3]; 4857[label="(++) List.findIndices000 (Pos wy220) (Neg Zero * wy41101 == Neg wy310 * wy41100) wy231",fontsize=16,color="black",shape="box"];4857 -> 4894[label="",style="solid", color="black", weight=3]; 3539[label="(++) List.findIndices000 (Pos wy171) (Pos (Succ wy80) * wy8101 == Pos wy780 * wy8100) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3539 -> 3543[label="",style="solid", color="black", weight=3]; 3540[label="(++) List.findIndices000 (Pos wy173) (Pos (Succ wy80) * wy8101 == Neg wy780 * wy8100) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy173 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3540 -> 3544[label="",style="solid", color="black", weight=3]; 3463[label="(++) List.findIndices000 (Pos wy119) (primEqInt (primMulInt (Pos Zero) wy4101) (Pos wy310 * wy4100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5280[label="wy4101/Pos wy41010",fontsize=10,color="white",style="solid",shape="box"];3463 -> 5280[label="",style="solid", color="burlywood", weight=9]; 5280 -> 3485[label="",style="solid", color="burlywood", weight=3]; 5281[label="wy4101/Neg wy41010",fontsize=10,color="white",style="solid",shape="box"];3463 -> 5281[label="",style="solid", color="burlywood", weight=9]; 5281 -> 3486[label="",style="solid", color="burlywood", weight=3]; 3464[label="(++) List.findIndices000 (Pos wy121) (primEqInt (primMulInt (Pos Zero) wy4101) (Neg wy310 * wy4100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Neg wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy121 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5282[label="wy4101/Pos wy41010",fontsize=10,color="white",style="solid",shape="box"];3464 -> 5282[label="",style="solid", color="burlywood", weight=9]; 5282 -> 3487[label="",style="solid", color="burlywood", weight=3]; 5283[label="wy4101/Neg wy41010",fontsize=10,color="white",style="solid",shape="box"];3464 -> 5283[label="",style="solid", color="burlywood", weight=9]; 5283 -> 3488[label="",style="solid", color="burlywood", weight=3]; 3465[label="(++) List.findIndices000 (Pos wy141) (Neg (Succ wy43) * wy4401 == Pos wy410 * wy4400) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3465 -> 3489[label="",style="solid", color="black", weight=3]; 3466[label="(++) List.findIndices000 (Pos wy143) (Neg (Succ wy43) * wy4401 == Neg wy410 * wy4400) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy143 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3466 -> 3490[label="",style="solid", color="black", weight=3]; 3483[label="(++) List.findIndices000 (Pos wy123) (primEqInt (primMulInt (Neg Zero) wy4101) (Pos wy310 * wy4100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5284[label="wy4101/Pos wy41010",fontsize=10,color="white",style="solid",shape="box"];3483 -> 5284[label="",style="solid", color="burlywood", weight=9]; 5284 -> 3493[label="",style="solid", color="burlywood", weight=3]; 5285[label="wy4101/Neg wy41010",fontsize=10,color="white",style="solid",shape="box"];3483 -> 5285[label="",style="solid", color="burlywood", weight=9]; 5285 -> 3494[label="",style="solid", color="burlywood", weight=3]; 4894[label="(++) List.findIndices000 (Pos wy220) (primEqInt (Neg Zero * wy41101) (Neg wy310 * wy41100)) wy231",fontsize=16,color="black",shape="box"];4894 -> 4899[label="",style="solid", color="black", weight=3]; 3543[label="(++) List.findIndices000 (Pos wy171) (primEqInt (Pos (Succ wy80) * wy8101) (Pos wy780 * wy8100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3543 -> 3581[label="",style="solid", color="black", weight=3]; 3544[label="(++) List.findIndices000 (Pos wy173) (primEqInt (Pos (Succ wy80) * wy8101) (Neg wy780 * wy8100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy173 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3544 -> 3582[label="",style="solid", color="black", weight=3]; 3485[label="(++) List.findIndices000 (Pos wy119) (primEqInt (primMulInt (Pos Zero) (Pos wy41010)) (Pos wy310 * wy4100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3485 -> 3497[label="",style="solid", color="black", weight=3]; 3486[label="(++) List.findIndices000 (Pos wy119) (primEqInt (primMulInt (Pos Zero) (Neg wy41010)) (Pos wy310 * wy4100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3486 -> 3498[label="",style="solid", color="black", weight=3]; 3487[label="(++) List.findIndices000 (Pos wy121) (primEqInt (primMulInt (Pos Zero) (Pos wy41010)) (Neg wy310 * wy4100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Neg wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy121 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3487 -> 3499[label="",style="solid", color="black", weight=3]; 3488[label="(++) List.findIndices000 (Pos wy121) (primEqInt (primMulInt (Pos Zero) (Neg wy41010)) (Neg wy310 * wy4100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Neg wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy121 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3488 -> 3500[label="",style="solid", color="black", weight=3]; 3489[label="(++) List.findIndices000 (Pos wy141) (primEqInt (Neg (Succ wy43) * wy4401) (Pos wy410 * wy4400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3489 -> 3501[label="",style="solid", color="black", weight=3]; 3490[label="(++) List.findIndices000 (Pos wy143) (primEqInt (Neg (Succ wy43) * wy4401) (Neg wy410 * wy4400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy143 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3490 -> 3502[label="",style="solid", color="black", weight=3]; 3493[label="(++) List.findIndices000 (Pos wy123) (primEqInt (primMulInt (Neg Zero) (Pos wy41010)) (Pos wy310 * wy4100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3493 -> 3505[label="",style="solid", color="black", weight=3]; 3494[label="(++) List.findIndices000 (Pos wy123) (primEqInt (primMulInt (Neg Zero) (Neg wy41010)) (Pos wy310 * wy4100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3494 -> 3506[label="",style="solid", color="black", weight=3]; 4899[label="(++) List.findIndices000 (Pos wy220) (primEqInt (primMulInt (Neg Zero) wy41101) (Neg wy310 * wy41100)) wy231",fontsize=16,color="burlywood",shape="box"];5286[label="wy41101/Pos wy411010",fontsize=10,color="white",style="solid",shape="box"];4899 -> 5286[label="",style="solid", color="burlywood", weight=9]; 5286 -> 4904[label="",style="solid", color="burlywood", weight=3]; 5287[label="wy41101/Neg wy411010",fontsize=10,color="white",style="solid",shape="box"];4899 -> 5287[label="",style="solid", color="burlywood", weight=9]; 5287 -> 4905[label="",style="solid", color="burlywood", weight=3]; 3581[label="(++) List.findIndices000 (Pos wy171) (primEqInt (primMulInt (Pos (Succ wy80)) wy8101) (Pos wy780 * wy8100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5288[label="wy8101/Pos wy81010",fontsize=10,color="white",style="solid",shape="box"];3581 -> 5288[label="",style="solid", color="burlywood", weight=9]; 5288 -> 3593[label="",style="solid", color="burlywood", weight=3]; 5289[label="wy8101/Neg wy81010",fontsize=10,color="white",style="solid",shape="box"];3581 -> 5289[label="",style="solid", color="burlywood", weight=9]; 5289 -> 3594[label="",style="solid", color="burlywood", weight=3]; 3582[label="(++) List.findIndices000 (Pos wy173) (primEqInt (primMulInt (Pos (Succ wy80)) wy8101) (Neg wy780 * wy8100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy173 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5290[label="wy8101/Pos wy81010",fontsize=10,color="white",style="solid",shape="box"];3582 -> 5290[label="",style="solid", color="burlywood", weight=9]; 5290 -> 3595[label="",style="solid", color="burlywood", weight=3]; 5291[label="wy8101/Neg wy81010",fontsize=10,color="white",style="solid",shape="box"];3582 -> 5291[label="",style="solid", color="burlywood", weight=9]; 5291 -> 3596[label="",style="solid", color="burlywood", weight=3]; 3497 -> 3509[label="",style="dashed", color="red", weight=0]; 3497[label="(++) List.findIndices000 (Pos wy119) (primEqInt (Pos (primMulNat Zero wy41010)) (Pos wy310 * wy4100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3497 -> 3510[label="",style="dashed", color="magenta", weight=3]; 3498 -> 3513[label="",style="dashed", color="red", weight=0]; 3498[label="(++) List.findIndices000 (Pos wy119) (primEqInt (Neg (primMulNat Zero wy41010)) (Pos wy310 * wy4100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3498 -> 3514[label="",style="dashed", color="magenta", weight=3]; 3499 -> 4950[label="",style="dashed", color="red", weight=0]; 3499[label="(++) List.findIndices000 (Pos wy121) (primEqInt (Pos (primMulNat Zero wy41010)) (Neg wy310 * wy4100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Neg wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy121 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3499 -> 4951[label="",style="dashed", color="magenta", weight=3]; 3499 -> 4952[label="",style="dashed", color="magenta", weight=3]; 3499 -> 4953[label="",style="dashed", color="magenta", weight=3]; 3499 -> 4954[label="",style="dashed", color="magenta", weight=3]; 3500 -> 4916[label="",style="dashed", color="red", weight=0]; 3500[label="(++) List.findIndices000 (Pos wy121) (primEqInt (Neg (primMulNat Zero wy41010)) (Neg wy310 * wy4100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Neg wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy121 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3500 -> 4917[label="",style="dashed", color="magenta", weight=3]; 3500 -> 4918[label="",style="dashed", color="magenta", weight=3]; 3500 -> 4919[label="",style="dashed", color="magenta", weight=3]; 3500 -> 4920[label="",style="dashed", color="magenta", weight=3]; 3501[label="(++) List.findIndices000 (Pos wy141) (primEqInt (primMulInt (Neg (Succ wy43)) wy4401) (Pos wy410 * wy4400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5292[label="wy4401/Pos wy44010",fontsize=10,color="white",style="solid",shape="box"];3501 -> 5292[label="",style="solid", color="burlywood", weight=9]; 5292 -> 3525[label="",style="solid", color="burlywood", weight=3]; 5293[label="wy4401/Neg wy44010",fontsize=10,color="white",style="solid",shape="box"];3501 -> 5293[label="",style="solid", color="burlywood", weight=9]; 5293 -> 3526[label="",style="solid", color="burlywood", weight=3]; 3502[label="(++) List.findIndices000 (Pos wy143) (primEqInt (primMulInt (Neg (Succ wy43)) wy4401) (Neg wy410 * wy4400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy143 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5294[label="wy4401/Pos wy44010",fontsize=10,color="white",style="solid",shape="box"];3502 -> 5294[label="",style="solid", color="burlywood", weight=9]; 5294 -> 3527[label="",style="solid", color="burlywood", weight=3]; 5295[label="wy4401/Neg wy44010",fontsize=10,color="white",style="solid",shape="box"];3502 -> 5295[label="",style="solid", color="burlywood", weight=9]; 5295 -> 3528[label="",style="solid", color="burlywood", weight=3]; 3505 -> 3529[label="",style="dashed", color="red", weight=0]; 3505[label="(++) List.findIndices000 (Pos wy123) (primEqInt (Neg (primMulNat Zero wy41010)) (Pos wy310 * wy4100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3505 -> 3530[label="",style="dashed", color="magenta", weight=3]; 3506 -> 3533[label="",style="dashed", color="red", weight=0]; 3506[label="(++) List.findIndices000 (Pos wy123) (primEqInt (Pos (primMulNat Zero wy41010)) (Pos wy310 * wy4100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3506 -> 3534[label="",style="dashed", color="magenta", weight=3]; 4904[label="(++) List.findIndices000 (Pos wy220) (primEqInt (primMulInt (Neg Zero) (Pos wy411010)) (Neg wy310 * wy41100)) wy231",fontsize=16,color="black",shape="box"];4904 -> 4910[label="",style="solid", color="black", weight=3]; 4905[label="(++) List.findIndices000 (Pos wy220) (primEqInt (primMulInt (Neg Zero) (Neg wy411010)) (Neg wy310 * wy41100)) wy231",fontsize=16,color="black",shape="box"];4905 -> 4911[label="",style="solid", color="black", weight=3]; 3593[label="(++) List.findIndices000 (Pos wy171) (primEqInt (primMulInt (Pos (Succ wy80)) (Pos wy81010)) (Pos wy780 * wy8100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3593 -> 3599[label="",style="solid", color="black", weight=3]; 3594[label="(++) List.findIndices000 (Pos wy171) (primEqInt (primMulInt (Pos (Succ wy80)) (Neg wy81010)) (Pos wy780 * wy8100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3594 -> 3600[label="",style="solid", color="black", weight=3]; 3595[label="(++) List.findIndices000 (Pos wy173) (primEqInt (primMulInt (Pos (Succ wy80)) (Pos wy81010)) (Neg wy780 * wy8100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy173 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3595 -> 3601[label="",style="solid", color="black", weight=3]; 3596[label="(++) List.findIndices000 (Pos wy173) (primEqInt (primMulInt (Pos (Succ wy80)) (Neg wy81010)) (Neg wy780 * wy8100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy173 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3596 -> 3602[label="",style="solid", color="black", weight=3]; 3510 -> 1487[label="",style="dashed", color="red", weight=0]; 3510[label="primMulNat Zero wy41010",fontsize=16,color="magenta"];3510 -> 3545[label="",style="dashed", color="magenta", weight=3]; 3510 -> 3546[label="",style="dashed", color="magenta", weight=3]; 3509[label="(++) List.findIndices000 (Pos wy119) (primEqInt (Pos wy175) (Pos wy310 * wy4100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="triangle"];5296[label="wy175/Succ wy1750",fontsize=10,color="white",style="solid",shape="box"];3509 -> 5296[label="",style="solid", color="burlywood", weight=9]; 5296 -> 3547[label="",style="solid", color="burlywood", weight=3]; 5297[label="wy175/Zero",fontsize=10,color="white",style="solid",shape="box"];3509 -> 5297[label="",style="solid", color="burlywood", weight=9]; 5297 -> 3548[label="",style="solid", color="burlywood", weight=3]; 3514 -> 1487[label="",style="dashed", color="red", weight=0]; 3514[label="primMulNat Zero wy41010",fontsize=16,color="magenta"];3514 -> 3549[label="",style="dashed", color="magenta", weight=3]; 3514 -> 3550[label="",style="dashed", color="magenta", weight=3]; 3513[label="(++) List.findIndices000 (Pos wy119) (primEqInt (Neg wy176) (Pos wy310 * wy4100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="triangle"];5298[label="wy176/Succ wy1760",fontsize=10,color="white",style="solid",shape="box"];3513 -> 5298[label="",style="solid", color="burlywood", weight=9]; 5298 -> 3551[label="",style="solid", color="burlywood", weight=3]; 5299[label="wy176/Zero",fontsize=10,color="white",style="solid",shape="box"];3513 -> 5299[label="",style="solid", color="burlywood", weight=9]; 5299 -> 3552[label="",style="solid", color="burlywood", weight=3]; 4951 -> 3821[label="",style="dashed", color="red", weight=0]; 4951[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Neg wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy121 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4952[label="wy121",fontsize=16,color="green",shape="box"];4953 -> 1487[label="",style="dashed", color="red", weight=0]; 4953[label="primMulNat Zero wy41010",fontsize=16,color="magenta"];4953 -> 4980[label="",style="dashed", color="magenta", weight=3]; 4953 -> 4981[label="",style="dashed", color="magenta", weight=3]; 4954[label="wy4100",fontsize=16,color="green",shape="box"];4950[label="(++) List.findIndices000 (Pos wy220) (primEqInt (Pos wy236) (Neg wy310 * wy41100)) wy231",fontsize=16,color="burlywood",shape="triangle"];5300[label="wy236/Succ wy2360",fontsize=10,color="white",style="solid",shape="box"];4950 -> 5300[label="",style="solid", color="burlywood", weight=9]; 5300 -> 4982[label="",style="solid", color="burlywood", weight=3]; 5301[label="wy236/Zero",fontsize=10,color="white",style="solid",shape="box"];4950 -> 5301[label="",style="solid", color="burlywood", weight=9]; 5301 -> 4983[label="",style="solid", color="burlywood", weight=3]; 4917 -> 1487[label="",style="dashed", color="red", weight=0]; 4917[label="primMulNat Zero wy41010",fontsize=16,color="magenta"];4917 -> 4946[label="",style="dashed", color="magenta", weight=3]; 4917 -> 4947[label="",style="dashed", color="magenta", weight=3]; 4918 -> 3821[label="",style="dashed", color="red", weight=0]; 4918[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Neg wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy121 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4919[label="wy121",fontsize=16,color="green",shape="box"];4920[label="wy4100",fontsize=16,color="green",shape="box"];4916[label="(++) List.findIndices000 (Pos wy220) (primEqInt (Neg wy235) (Neg wy310 * wy41100)) wy231",fontsize=16,color="burlywood",shape="triangle"];5302[label="wy235/Succ wy2350",fontsize=10,color="white",style="solid",shape="box"];4916 -> 5302[label="",style="solid", color="burlywood", weight=9]; 5302 -> 4948[label="",style="solid", color="burlywood", weight=3]; 5303[label="wy235/Zero",fontsize=10,color="white",style="solid",shape="box"];4916 -> 5303[label="",style="solid", color="burlywood", weight=9]; 5303 -> 4949[label="",style="solid", color="burlywood", weight=3]; 3525[label="(++) List.findIndices000 (Pos wy141) (primEqInt (primMulInt (Neg (Succ wy43)) (Pos wy44010)) (Pos wy410 * wy4400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3525 -> 3561[label="",style="solid", color="black", weight=3]; 3526[label="(++) List.findIndices000 (Pos wy141) (primEqInt (primMulInt (Neg (Succ wy43)) (Neg wy44010)) (Pos wy410 * wy4400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3526 -> 3562[label="",style="solid", color="black", weight=3]; 3527[label="(++) List.findIndices000 (Pos wy143) (primEqInt (primMulInt (Neg (Succ wy43)) (Pos wy44010)) (Neg wy410 * wy4400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy143 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3527 -> 3563[label="",style="solid", color="black", weight=3]; 3528[label="(++) List.findIndices000 (Pos wy143) (primEqInt (primMulInt (Neg (Succ wy43)) (Neg wy44010)) (Neg wy410 * wy4400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy143 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3528 -> 3564[label="",style="solid", color="black", weight=3]; 3530 -> 1487[label="",style="dashed", color="red", weight=0]; 3530[label="primMulNat Zero wy41010",fontsize=16,color="magenta"];3530 -> 3565[label="",style="dashed", color="magenta", weight=3]; 3530 -> 3566[label="",style="dashed", color="magenta", weight=3]; 3529[label="(++) List.findIndices000 (Pos wy123) (primEqInt (Neg wy179) (Pos wy310 * wy4100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="triangle"];5304[label="wy179/Succ wy1790",fontsize=10,color="white",style="solid",shape="box"];3529 -> 5304[label="",style="solid", color="burlywood", weight=9]; 5304 -> 3567[label="",style="solid", color="burlywood", weight=3]; 5305[label="wy179/Zero",fontsize=10,color="white",style="solid",shape="box"];3529 -> 5305[label="",style="solid", color="burlywood", weight=9]; 5305 -> 3568[label="",style="solid", color="burlywood", weight=3]; 3534 -> 1487[label="",style="dashed", color="red", weight=0]; 3534[label="primMulNat Zero wy41010",fontsize=16,color="magenta"];3534 -> 3569[label="",style="dashed", color="magenta", weight=3]; 3534 -> 3570[label="",style="dashed", color="magenta", weight=3]; 3533[label="(++) List.findIndices000 (Pos wy123) (primEqInt (Pos wy180) (Pos wy310 * wy4100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="triangle"];5306[label="wy180/Succ wy1800",fontsize=10,color="white",style="solid",shape="box"];3533 -> 5306[label="",style="solid", color="burlywood", weight=9]; 5306 -> 3571[label="",style="solid", color="burlywood", weight=3]; 5307[label="wy180/Zero",fontsize=10,color="white",style="solid",shape="box"];3533 -> 5307[label="",style="solid", color="burlywood", weight=9]; 5307 -> 3572[label="",style="solid", color="burlywood", weight=3]; 4910 -> 4916[label="",style="dashed", color="red", weight=0]; 4910[label="(++) List.findIndices000 (Pos wy220) (primEqInt (Neg (primMulNat Zero wy411010)) (Neg wy310 * wy41100)) wy231",fontsize=16,color="magenta"];4910 -> 4925[label="",style="dashed", color="magenta", weight=3]; 4911 -> 4950[label="",style="dashed", color="red", weight=0]; 4911[label="(++) List.findIndices000 (Pos wy220) (primEqInt (Pos (primMulNat Zero wy411010)) (Neg wy310 * wy41100)) wy231",fontsize=16,color="magenta"];4911 -> 4959[label="",style="dashed", color="magenta", weight=3]; 3599 -> 3605[label="",style="dashed", color="red", weight=0]; 3599[label="(++) List.findIndices000 (Pos wy171) (primEqInt (Pos (primMulNat (Succ wy80) wy81010)) (Pos wy780 * wy8100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3599 -> 3606[label="",style="dashed", color="magenta", weight=3]; 3600 -> 3607[label="",style="dashed", color="red", weight=0]; 3600[label="(++) List.findIndices000 (Pos wy171) (primEqInt (Neg (primMulNat (Succ wy80) wy81010)) (Pos wy780 * wy8100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3600 -> 3608[label="",style="dashed", color="magenta", weight=3]; 3601 -> 4950[label="",style="dashed", color="red", weight=0]; 3601[label="(++) List.findIndices000 (Pos wy173) (primEqInt (Pos (primMulNat (Succ wy80) wy81010)) (Neg wy780 * wy8100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy173 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3601 -> 4960[label="",style="dashed", color="magenta", weight=3]; 3601 -> 4961[label="",style="dashed", color="magenta", weight=3]; 3601 -> 4962[label="",style="dashed", color="magenta", weight=3]; 3601 -> 4963[label="",style="dashed", color="magenta", weight=3]; 3601 -> 4964[label="",style="dashed", color="magenta", weight=3]; 3602 -> 4916[label="",style="dashed", color="red", weight=0]; 3602[label="(++) List.findIndices000 (Pos wy173) (primEqInt (Neg (primMulNat (Succ wy80) wy81010)) (Neg wy780 * wy8100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy173 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3602 -> 4926[label="",style="dashed", color="magenta", weight=3]; 3602 -> 4927[label="",style="dashed", color="magenta", weight=3]; 3602 -> 4928[label="",style="dashed", color="magenta", weight=3]; 3602 -> 4929[label="",style="dashed", color="magenta", weight=3]; 3602 -> 4930[label="",style="dashed", color="magenta", weight=3]; 3545[label="Zero",fontsize=16,color="green",shape="box"];3546[label="wy41010",fontsize=16,color="green",shape="box"];3547[label="(++) List.findIndices000 (Pos wy119) (primEqInt (Pos (Succ wy1750)) (Pos wy310 * wy4100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3547 -> 3583[label="",style="solid", color="black", weight=3]; 3548[label="(++) List.findIndices000 (Pos wy119) (primEqInt (Pos Zero) (Pos wy310 * wy4100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3548 -> 3584[label="",style="solid", color="black", weight=3]; 3549[label="Zero",fontsize=16,color="green",shape="box"];3550[label="wy41010",fontsize=16,color="green",shape="box"];3551[label="(++) List.findIndices000 (Pos wy119) (primEqInt (Neg (Succ wy1760)) (Pos wy310 * wy4100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3551 -> 3585[label="",style="solid", color="black", weight=3]; 3552[label="(++) List.findIndices000 (Pos wy119) (primEqInt (Neg Zero) (Pos wy310 * wy4100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3552 -> 3586[label="",style="solid", color="black", weight=3]; 4980[label="Zero",fontsize=16,color="green",shape="box"];4981[label="wy41010",fontsize=16,color="green",shape="box"];4982[label="(++) List.findIndices000 (Pos wy220) (primEqInt (Pos (Succ wy2360)) (Neg wy310 * wy41100)) wy231",fontsize=16,color="black",shape="box"];4982 -> 5010[label="",style="solid", color="black", weight=3]; 4983[label="(++) List.findIndices000 (Pos wy220) (primEqInt (Pos Zero) (Neg wy310 * wy41100)) wy231",fontsize=16,color="black",shape="box"];4983 -> 5011[label="",style="solid", color="black", weight=3]; 4946[label="Zero",fontsize=16,color="green",shape="box"];4947[label="wy41010",fontsize=16,color="green",shape="box"];4948[label="(++) List.findIndices000 (Pos wy220) (primEqInt (Neg (Succ wy2350)) (Neg wy310 * wy41100)) wy231",fontsize=16,color="black",shape="box"];4948 -> 4984[label="",style="solid", color="black", weight=3]; 4949[label="(++) List.findIndices000 (Pos wy220) (primEqInt (Neg Zero) (Neg wy310 * wy41100)) wy231",fontsize=16,color="black",shape="box"];4949 -> 4985[label="",style="solid", color="black", weight=3]; 3561 -> 3591[label="",style="dashed", color="red", weight=0]; 3561[label="(++) List.findIndices000 (Pos wy141) (primEqInt (Neg (primMulNat (Succ wy43) wy44010)) (Pos wy410 * wy4400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3561 -> 3592[label="",style="dashed", color="magenta", weight=3]; 3562 -> 3597[label="",style="dashed", color="red", weight=0]; 3562[label="(++) List.findIndices000 (Pos wy141) (primEqInt (Pos (primMulNat (Succ wy43) wy44010)) (Pos wy410 * wy4400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3562 -> 3598[label="",style="dashed", color="magenta", weight=3]; 3563 -> 4916[label="",style="dashed", color="red", weight=0]; 3563[label="(++) List.findIndices000 (Pos wy143) (primEqInt (Neg (primMulNat (Succ wy43) wy44010)) (Neg wy410 * wy4400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy143 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3563 -> 4931[label="",style="dashed", color="magenta", weight=3]; 3563 -> 4932[label="",style="dashed", color="magenta", weight=3]; 3563 -> 4933[label="",style="dashed", color="magenta", weight=3]; 3563 -> 4934[label="",style="dashed", color="magenta", weight=3]; 3563 -> 4935[label="",style="dashed", color="magenta", weight=3]; 3564 -> 4950[label="",style="dashed", color="red", weight=0]; 3564[label="(++) List.findIndices000 (Pos wy143) (primEqInt (Pos (primMulNat (Succ wy43) wy44010)) (Neg wy410 * wy4400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy143 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3564 -> 4965[label="",style="dashed", color="magenta", weight=3]; 3564 -> 4966[label="",style="dashed", color="magenta", weight=3]; 3564 -> 4967[label="",style="dashed", color="magenta", weight=3]; 3564 -> 4968[label="",style="dashed", color="magenta", weight=3]; 3564 -> 4969[label="",style="dashed", color="magenta", weight=3]; 3565[label="Zero",fontsize=16,color="green",shape="box"];3566[label="wy41010",fontsize=16,color="green",shape="box"];3567[label="(++) List.findIndices000 (Pos wy123) (primEqInt (Neg (Succ wy1790)) (Pos wy310 * wy4100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3567 -> 3615[label="",style="solid", color="black", weight=3]; 3568[label="(++) List.findIndices000 (Pos wy123) (primEqInt (Neg Zero) (Pos wy310 * wy4100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3568 -> 3616[label="",style="solid", color="black", weight=3]; 3569[label="Zero",fontsize=16,color="green",shape="box"];3570[label="wy41010",fontsize=16,color="green",shape="box"];3571[label="(++) List.findIndices000 (Pos wy123) (primEqInt (Pos (Succ wy1800)) (Pos wy310 * wy4100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3571 -> 3617[label="",style="solid", color="black", weight=3]; 3572[label="(++) List.findIndices000 (Pos wy123) (primEqInt (Pos Zero) (Pos wy310 * wy4100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3572 -> 3618[label="",style="solid", color="black", weight=3]; 4925 -> 1487[label="",style="dashed", color="red", weight=0]; 4925[label="primMulNat Zero wy411010",fontsize=16,color="magenta"];4925 -> 4986[label="",style="dashed", color="magenta", weight=3]; 4925 -> 4987[label="",style="dashed", color="magenta", weight=3]; 4959 -> 1487[label="",style="dashed", color="red", weight=0]; 4959[label="primMulNat Zero wy411010",fontsize=16,color="magenta"];4959 -> 4988[label="",style="dashed", color="magenta", weight=3]; 4959 -> 4989[label="",style="dashed", color="magenta", weight=3]; 3606 -> 1487[label="",style="dashed", color="red", weight=0]; 3606[label="primMulNat (Succ wy80) wy81010",fontsize=16,color="magenta"];3606 -> 3623[label="",style="dashed", color="magenta", weight=3]; 3606 -> 3624[label="",style="dashed", color="magenta", weight=3]; 3605[label="(++) List.findIndices000 (Pos wy171) (primEqInt (Pos wy186) (Pos wy780 * wy8100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="triangle"];5308[label="wy186/Succ wy1860",fontsize=10,color="white",style="solid",shape="box"];3605 -> 5308[label="",style="solid", color="burlywood", weight=9]; 5308 -> 3625[label="",style="solid", color="burlywood", weight=3]; 5309[label="wy186/Zero",fontsize=10,color="white",style="solid",shape="box"];3605 -> 5309[label="",style="solid", color="burlywood", weight=9]; 5309 -> 3626[label="",style="solid", color="burlywood", weight=3]; 3608 -> 1487[label="",style="dashed", color="red", weight=0]; 3608[label="primMulNat (Succ wy80) wy81010",fontsize=16,color="magenta"];3608 -> 3627[label="",style="dashed", color="magenta", weight=3]; 3608 -> 3628[label="",style="dashed", color="magenta", weight=3]; 3607[label="(++) List.findIndices000 (Pos wy171) (primEqInt (Neg wy187) (Pos wy780 * wy8100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="triangle"];5310[label="wy187/Succ wy1870",fontsize=10,color="white",style="solid",shape="box"];3607 -> 5310[label="",style="solid", color="burlywood", weight=9]; 5310 -> 3629[label="",style="solid", color="burlywood", weight=3]; 5311[label="wy187/Zero",fontsize=10,color="white",style="solid",shape="box"];3607 -> 5311[label="",style="solid", color="burlywood", weight=9]; 5311 -> 3630[label="",style="solid", color="burlywood", weight=3]; 4960[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy173 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="triangle"];5312[label="wy811/wy8110 : wy8111",fontsize=10,color="white",style="solid",shape="box"];4960 -> 5312[label="",style="solid", color="burlywood", weight=9]; 5312 -> 4990[label="",style="solid", color="burlywood", weight=3]; 5313[label="wy811/[]",fontsize=10,color="white",style="solid",shape="box"];4960 -> 5313[label="",style="solid", color="burlywood", weight=9]; 5313 -> 4991[label="",style="solid", color="burlywood", weight=3]; 4961[label="wy173",fontsize=16,color="green",shape="box"];4962 -> 1487[label="",style="dashed", color="red", weight=0]; 4962[label="primMulNat (Succ wy80) wy81010",fontsize=16,color="magenta"];4962 -> 4992[label="",style="dashed", color="magenta", weight=3]; 4962 -> 4993[label="",style="dashed", color="magenta", weight=3]; 4963[label="wy780",fontsize=16,color="green",shape="box"];4964[label="wy8100",fontsize=16,color="green",shape="box"];4926 -> 1487[label="",style="dashed", color="red", weight=0]; 4926[label="primMulNat (Succ wy80) wy81010",fontsize=16,color="magenta"];4926 -> 4994[label="",style="dashed", color="magenta", weight=3]; 4926 -> 4995[label="",style="dashed", color="magenta", weight=3]; 4927 -> 4960[label="",style="dashed", color="red", weight=0]; 4927[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy173 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4928[label="wy173",fontsize=16,color="green",shape="box"];4929[label="wy780",fontsize=16,color="green",shape="box"];4930[label="wy8100",fontsize=16,color="green",shape="box"];3583[label="(++) List.findIndices000 (Pos wy119) (primEqInt (Pos (Succ wy1750)) (primMulInt (Pos wy310) wy4100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5314[label="wy4100/Pos wy41000",fontsize=10,color="white",style="solid",shape="box"];3583 -> 5314[label="",style="solid", color="burlywood", weight=9]; 5314 -> 3639[label="",style="solid", color="burlywood", weight=3]; 5315[label="wy4100/Neg wy41000",fontsize=10,color="white",style="solid",shape="box"];3583 -> 5315[label="",style="solid", color="burlywood", weight=9]; 5315 -> 3640[label="",style="solid", color="burlywood", weight=3]; 3584[label="(++) List.findIndices000 (Pos wy119) (primEqInt (Pos Zero) (primMulInt (Pos wy310) wy4100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5316[label="wy4100/Pos wy41000",fontsize=10,color="white",style="solid",shape="box"];3584 -> 5316[label="",style="solid", color="burlywood", weight=9]; 5316 -> 3641[label="",style="solid", color="burlywood", weight=3]; 5317[label="wy4100/Neg wy41000",fontsize=10,color="white",style="solid",shape="box"];3584 -> 5317[label="",style="solid", color="burlywood", weight=9]; 5317 -> 3642[label="",style="solid", color="burlywood", weight=3]; 3585[label="(++) List.findIndices000 (Pos wy119) (primEqInt (Neg (Succ wy1760)) (primMulInt (Pos wy310) wy4100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5318[label="wy4100/Pos wy41000",fontsize=10,color="white",style="solid",shape="box"];3585 -> 5318[label="",style="solid", color="burlywood", weight=9]; 5318 -> 3643[label="",style="solid", color="burlywood", weight=3]; 5319[label="wy4100/Neg wy41000",fontsize=10,color="white",style="solid",shape="box"];3585 -> 5319[label="",style="solid", color="burlywood", weight=9]; 5319 -> 3644[label="",style="solid", color="burlywood", weight=3]; 3586[label="(++) List.findIndices000 (Pos wy119) (primEqInt (Neg Zero) (primMulInt (Pos wy310) wy4100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5320[label="wy4100/Pos wy41000",fontsize=10,color="white",style="solid",shape="box"];3586 -> 5320[label="",style="solid", color="burlywood", weight=9]; 5320 -> 3645[label="",style="solid", color="burlywood", weight=3]; 5321[label="wy4100/Neg wy41000",fontsize=10,color="white",style="solid",shape="box"];3586 -> 5321[label="",style="solid", color="burlywood", weight=9]; 5321 -> 3646[label="",style="solid", color="burlywood", weight=3]; 5010[label="(++) List.findIndices000 (Pos wy220) (primEqInt (Pos (Succ wy2360)) (primMulInt (Neg wy310) wy41100)) wy231",fontsize=16,color="burlywood",shape="box"];5322[label="wy41100/Pos wy411000",fontsize=10,color="white",style="solid",shape="box"];5010 -> 5322[label="",style="solid", color="burlywood", weight=9]; 5322 -> 5028[label="",style="solid", color="burlywood", weight=3]; 5323[label="wy41100/Neg wy411000",fontsize=10,color="white",style="solid",shape="box"];5010 -> 5323[label="",style="solid", color="burlywood", weight=9]; 5323 -> 5029[label="",style="solid", color="burlywood", weight=3]; 5011[label="(++) List.findIndices000 (Pos wy220) (primEqInt (Pos Zero) (primMulInt (Neg wy310) wy41100)) wy231",fontsize=16,color="burlywood",shape="box"];5324[label="wy41100/Pos wy411000",fontsize=10,color="white",style="solid",shape="box"];5011 -> 5324[label="",style="solid", color="burlywood", weight=9]; 5324 -> 5030[label="",style="solid", color="burlywood", weight=3]; 5325[label="wy41100/Neg wy411000",fontsize=10,color="white",style="solid",shape="box"];5011 -> 5325[label="",style="solid", color="burlywood", weight=9]; 5325 -> 5031[label="",style="solid", color="burlywood", weight=3]; 4984[label="(++) List.findIndices000 (Pos wy220) (primEqInt (Neg (Succ wy2350)) (primMulInt (Neg wy310) wy41100)) wy231",fontsize=16,color="burlywood",shape="box"];5326[label="wy41100/Pos wy411000",fontsize=10,color="white",style="solid",shape="box"];4984 -> 5326[label="",style="solid", color="burlywood", weight=9]; 5326 -> 5012[label="",style="solid", color="burlywood", weight=3]; 5327[label="wy41100/Neg wy411000",fontsize=10,color="white",style="solid",shape="box"];4984 -> 5327[label="",style="solid", color="burlywood", weight=9]; 5327 -> 5013[label="",style="solid", color="burlywood", weight=3]; 4985[label="(++) List.findIndices000 (Pos wy220) (primEqInt (Neg Zero) (primMulInt (Neg wy310) wy41100)) wy231",fontsize=16,color="burlywood",shape="box"];5328[label="wy41100/Pos wy411000",fontsize=10,color="white",style="solid",shape="box"];4985 -> 5328[label="",style="solid", color="burlywood", weight=9]; 5328 -> 5014[label="",style="solid", color="burlywood", weight=3]; 5329[label="wy41100/Neg wy411000",fontsize=10,color="white",style="solid",shape="box"];4985 -> 5329[label="",style="solid", color="burlywood", weight=9]; 5329 -> 5015[label="",style="solid", color="burlywood", weight=3]; 3592 -> 1487[label="",style="dashed", color="red", weight=0]; 3592[label="primMulNat (Succ wy43) wy44010",fontsize=16,color="magenta"];3592 -> 3655[label="",style="dashed", color="magenta", weight=3]; 3592 -> 3656[label="",style="dashed", color="magenta", weight=3]; 3591[label="(++) List.findIndices000 (Pos wy141) (primEqInt (Neg wy183) (Pos wy410 * wy4400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="triangle"];5330[label="wy183/Succ wy1830",fontsize=10,color="white",style="solid",shape="box"];3591 -> 5330[label="",style="solid", color="burlywood", weight=9]; 5330 -> 3657[label="",style="solid", color="burlywood", weight=3]; 5331[label="wy183/Zero",fontsize=10,color="white",style="solid",shape="box"];3591 -> 5331[label="",style="solid", color="burlywood", weight=9]; 5331 -> 3658[label="",style="solid", color="burlywood", weight=3]; 3598 -> 1487[label="",style="dashed", color="red", weight=0]; 3598[label="primMulNat (Succ wy43) wy44010",fontsize=16,color="magenta"];3598 -> 3659[label="",style="dashed", color="magenta", weight=3]; 3598 -> 3660[label="",style="dashed", color="magenta", weight=3]; 3597[label="(++) List.findIndices000 (Pos wy141) (primEqInt (Pos wy184) (Pos wy410 * wy4400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="triangle"];5332[label="wy184/Succ wy1840",fontsize=10,color="white",style="solid",shape="box"];3597 -> 5332[label="",style="solid", color="burlywood", weight=9]; 5332 -> 3661[label="",style="solid", color="burlywood", weight=3]; 5333[label="wy184/Zero",fontsize=10,color="white",style="solid",shape="box"];3597 -> 5333[label="",style="solid", color="burlywood", weight=9]; 5333 -> 3662[label="",style="solid", color="burlywood", weight=3]; 4931 -> 1487[label="",style="dashed", color="red", weight=0]; 4931[label="primMulNat (Succ wy43) wy44010",fontsize=16,color="magenta"];4931 -> 4996[label="",style="dashed", color="magenta", weight=3]; 4931 -> 4997[label="",style="dashed", color="magenta", weight=3]; 4932[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy143 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="triangle"];5334[label="wy441/wy4410 : wy4411",fontsize=10,color="white",style="solid",shape="box"];4932 -> 5334[label="",style="solid", color="burlywood", weight=9]; 5334 -> 4998[label="",style="solid", color="burlywood", weight=3]; 5335[label="wy441/[]",fontsize=10,color="white",style="solid",shape="box"];4932 -> 5335[label="",style="solid", color="burlywood", weight=9]; 5335 -> 4999[label="",style="solid", color="burlywood", weight=3]; 4933[label="wy143",fontsize=16,color="green",shape="box"];4934[label="wy410",fontsize=16,color="green",shape="box"];4935[label="wy4400",fontsize=16,color="green",shape="box"];4965 -> 4932[label="",style="dashed", color="red", weight=0]; 4965[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy143 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4966[label="wy143",fontsize=16,color="green",shape="box"];4967 -> 1487[label="",style="dashed", color="red", weight=0]; 4967[label="primMulNat (Succ wy43) wy44010",fontsize=16,color="magenta"];4967 -> 5000[label="",style="dashed", color="magenta", weight=3]; 4967 -> 5001[label="",style="dashed", color="magenta", weight=3]; 4968[label="wy410",fontsize=16,color="green",shape="box"];4969[label="wy4400",fontsize=16,color="green",shape="box"];3615[label="(++) List.findIndices000 (Pos wy123) (primEqInt (Neg (Succ wy1790)) (primMulInt (Pos wy310) wy4100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5336[label="wy4100/Pos wy41000",fontsize=10,color="white",style="solid",shape="box"];3615 -> 5336[label="",style="solid", color="burlywood", weight=9]; 5336 -> 3671[label="",style="solid", color="burlywood", weight=3]; 5337[label="wy4100/Neg wy41000",fontsize=10,color="white",style="solid",shape="box"];3615 -> 5337[label="",style="solid", color="burlywood", weight=9]; 5337 -> 3672[label="",style="solid", color="burlywood", weight=3]; 3616[label="(++) List.findIndices000 (Pos wy123) (primEqInt (Neg Zero) (primMulInt (Pos wy310) wy4100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5338[label="wy4100/Pos wy41000",fontsize=10,color="white",style="solid",shape="box"];3616 -> 5338[label="",style="solid", color="burlywood", weight=9]; 5338 -> 3673[label="",style="solid", color="burlywood", weight=3]; 5339[label="wy4100/Neg wy41000",fontsize=10,color="white",style="solid",shape="box"];3616 -> 5339[label="",style="solid", color="burlywood", weight=9]; 5339 -> 3674[label="",style="solid", color="burlywood", weight=3]; 3617[label="(++) List.findIndices000 (Pos wy123) (primEqInt (Pos (Succ wy1800)) (primMulInt (Pos wy310) wy4100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5340[label="wy4100/Pos wy41000",fontsize=10,color="white",style="solid",shape="box"];3617 -> 5340[label="",style="solid", color="burlywood", weight=9]; 5340 -> 3675[label="",style="solid", color="burlywood", weight=3]; 5341[label="wy4100/Neg wy41000",fontsize=10,color="white",style="solid",shape="box"];3617 -> 5341[label="",style="solid", color="burlywood", weight=9]; 5341 -> 3676[label="",style="solid", color="burlywood", weight=3]; 3618[label="(++) List.findIndices000 (Pos wy123) (primEqInt (Pos Zero) (primMulInt (Pos wy310) wy4100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5342[label="wy4100/Pos wy41000",fontsize=10,color="white",style="solid",shape="box"];3618 -> 5342[label="",style="solid", color="burlywood", weight=9]; 5342 -> 3677[label="",style="solid", color="burlywood", weight=3]; 5343[label="wy4100/Neg wy41000",fontsize=10,color="white",style="solid",shape="box"];3618 -> 5343[label="",style="solid", color="burlywood", weight=9]; 5343 -> 3678[label="",style="solid", color="burlywood", weight=3]; 4986[label="Zero",fontsize=16,color="green",shape="box"];4987[label="wy411010",fontsize=16,color="green",shape="box"];4988[label="Zero",fontsize=16,color="green",shape="box"];4989[label="wy411010",fontsize=16,color="green",shape="box"];3623[label="Succ wy80",fontsize=16,color="green",shape="box"];3624[label="wy81010",fontsize=16,color="green",shape="box"];3625[label="(++) List.findIndices000 (Pos wy171) (primEqInt (Pos (Succ wy1860)) (Pos wy780 * wy8100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3625 -> 3687[label="",style="solid", color="black", weight=3]; 3626[label="(++) List.findIndices000 (Pos wy171) (primEqInt (Pos Zero) (Pos wy780 * wy8100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3626 -> 3688[label="",style="solid", color="black", weight=3]; 3627[label="Succ wy80",fontsize=16,color="green",shape="box"];3628[label="wy81010",fontsize=16,color="green",shape="box"];3629[label="(++) List.findIndices000 (Pos wy171) (primEqInt (Neg (Succ wy1870)) (Pos wy780 * wy8100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3629 -> 3689[label="",style="solid", color="black", weight=3]; 3630[label="(++) List.findIndices000 (Pos wy171) (primEqInt (Neg Zero) (Pos wy780 * wy8100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3630 -> 3690[label="",style="solid", color="black", weight=3]; 4990[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)))) (zipWith zip0 (wy8110 : wy8111) (numericEnumFrom $! Pos wy173 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];4990 -> 5016[label="",style="solid", color="black", weight=3]; 4991[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)))) (zipWith zip0 [] (numericEnumFrom $! Pos wy173 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];4991 -> 5017[label="",style="solid", color="black", weight=3]; 4992[label="Succ wy80",fontsize=16,color="green",shape="box"];4993[label="wy81010",fontsize=16,color="green",shape="box"];4994[label="Succ wy80",fontsize=16,color="green",shape="box"];4995[label="wy81010",fontsize=16,color="green",shape="box"];3639[label="(++) List.findIndices000 (Pos wy119) (primEqInt (Pos (Succ wy1750)) (primMulInt (Pos wy310) (Pos wy41000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3639 -> 3695[label="",style="solid", color="black", weight=3]; 3640[label="(++) List.findIndices000 (Pos wy119) (primEqInt (Pos (Succ wy1750)) (primMulInt (Pos wy310) (Neg wy41000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3640 -> 3696[label="",style="solid", color="black", weight=3]; 3641[label="(++) List.findIndices000 (Pos wy119) (primEqInt (Pos Zero) (primMulInt (Pos wy310) (Pos wy41000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3641 -> 3697[label="",style="solid", color="black", weight=3]; 3642[label="(++) List.findIndices000 (Pos wy119) (primEqInt (Pos Zero) (primMulInt (Pos wy310) (Neg wy41000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3642 -> 3698[label="",style="solid", color="black", weight=3]; 3643[label="(++) List.findIndices000 (Pos wy119) (primEqInt (Neg (Succ wy1760)) (primMulInt (Pos wy310) (Pos wy41000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3643 -> 3699[label="",style="solid", color="black", weight=3]; 3644[label="(++) List.findIndices000 (Pos wy119) (primEqInt (Neg (Succ wy1760)) (primMulInt (Pos wy310) (Neg wy41000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3644 -> 3700[label="",style="solid", color="black", weight=3]; 3645[label="(++) List.findIndices000 (Pos wy119) (primEqInt (Neg Zero) (primMulInt (Pos wy310) (Pos wy41000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3645 -> 3701[label="",style="solid", color="black", weight=3]; 3646[label="(++) List.findIndices000 (Pos wy119) (primEqInt (Neg Zero) (primMulInt (Pos wy310) (Neg wy41000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3646 -> 3702[label="",style="solid", color="black", weight=3]; 5028[label="(++) List.findIndices000 (Pos wy220) (primEqInt (Pos (Succ wy2360)) (primMulInt (Neg wy310) (Pos wy411000))) wy231",fontsize=16,color="black",shape="box"];5028 -> 5038[label="",style="solid", color="black", weight=3]; 5029[label="(++) List.findIndices000 (Pos wy220) (primEqInt (Pos (Succ wy2360)) (primMulInt (Neg wy310) (Neg wy411000))) wy231",fontsize=16,color="black",shape="box"];5029 -> 5039[label="",style="solid", color="black", weight=3]; 5030[label="(++) List.findIndices000 (Pos wy220) (primEqInt (Pos Zero) (primMulInt (Neg wy310) (Pos wy411000))) wy231",fontsize=16,color="black",shape="box"];5030 -> 5040[label="",style="solid", color="black", weight=3]; 5031[label="(++) List.findIndices000 (Pos wy220) (primEqInt (Pos Zero) (primMulInt (Neg wy310) (Neg wy411000))) wy231",fontsize=16,color="black",shape="box"];5031 -> 5041[label="",style="solid", color="black", weight=3]; 5012[label="(++) List.findIndices000 (Pos wy220) (primEqInt (Neg (Succ wy2350)) (primMulInt (Neg wy310) (Pos wy411000))) wy231",fontsize=16,color="black",shape="box"];5012 -> 5032[label="",style="solid", color="black", weight=3]; 5013[label="(++) List.findIndices000 (Pos wy220) (primEqInt (Neg (Succ wy2350)) (primMulInt (Neg wy310) (Neg wy411000))) wy231",fontsize=16,color="black",shape="box"];5013 -> 5033[label="",style="solid", color="black", weight=3]; 5014[label="(++) List.findIndices000 (Pos wy220) (primEqInt (Neg Zero) (primMulInt (Neg wy310) (Pos wy411000))) wy231",fontsize=16,color="black",shape="box"];5014 -> 5034[label="",style="solid", color="black", weight=3]; 5015[label="(++) List.findIndices000 (Pos wy220) (primEqInt (Neg Zero) (primMulInt (Neg wy310) (Neg wy411000))) wy231",fontsize=16,color="black",shape="box"];5015 -> 5035[label="",style="solid", color="black", weight=3]; 3655[label="Succ wy43",fontsize=16,color="green",shape="box"];3656[label="wy44010",fontsize=16,color="green",shape="box"];3657[label="(++) List.findIndices000 (Pos wy141) (primEqInt (Neg (Succ wy1830)) (Pos wy410 * wy4400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3657 -> 3711[label="",style="solid", color="black", weight=3]; 3658[label="(++) List.findIndices000 (Pos wy141) (primEqInt (Neg Zero) (Pos wy410 * wy4400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3658 -> 3712[label="",style="solid", color="black", weight=3]; 3659[label="Succ wy43",fontsize=16,color="green",shape="box"];3660[label="wy44010",fontsize=16,color="green",shape="box"];3661[label="(++) List.findIndices000 (Pos wy141) (primEqInt (Pos (Succ wy1840)) (Pos wy410 * wy4400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3661 -> 3713[label="",style="solid", color="black", weight=3]; 3662[label="(++) List.findIndices000 (Pos wy141) (primEqInt (Pos Zero) (Pos wy410 * wy4400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3662 -> 3714[label="",style="solid", color="black", weight=3]; 4996[label="Succ wy43",fontsize=16,color="green",shape="box"];4997[label="wy44010",fontsize=16,color="green",shape="box"];4998[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)))) (zipWith zip0 (wy4410 : wy4411) (numericEnumFrom $! Pos wy143 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];4998 -> 5018[label="",style="solid", color="black", weight=3]; 4999[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)))) (zipWith zip0 [] (numericEnumFrom $! Pos wy143 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];4999 -> 5019[label="",style="solid", color="black", weight=3]; 5000[label="Succ wy43",fontsize=16,color="green",shape="box"];5001[label="wy44010",fontsize=16,color="green",shape="box"];3671[label="(++) List.findIndices000 (Pos wy123) (primEqInt (Neg (Succ wy1790)) (primMulInt (Pos wy310) (Pos wy41000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3671 -> 3719[label="",style="solid", color="black", weight=3]; 3672[label="(++) List.findIndices000 (Pos wy123) (primEqInt (Neg (Succ wy1790)) (primMulInt (Pos wy310) (Neg wy41000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3672 -> 3720[label="",style="solid", color="black", weight=3]; 3673[label="(++) List.findIndices000 (Pos wy123) (primEqInt (Neg Zero) (primMulInt (Pos wy310) (Pos wy41000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3673 -> 3721[label="",style="solid", color="black", weight=3]; 3674[label="(++) List.findIndices000 (Pos wy123) (primEqInt (Neg Zero) (primMulInt (Pos wy310) (Neg wy41000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3674 -> 3722[label="",style="solid", color="black", weight=3]; 3675[label="(++) List.findIndices000 (Pos wy123) (primEqInt (Pos (Succ wy1800)) (primMulInt (Pos wy310) (Pos wy41000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3675 -> 3723[label="",style="solid", color="black", weight=3]; 3676[label="(++) List.findIndices000 (Pos wy123) (primEqInt (Pos (Succ wy1800)) (primMulInt (Pos wy310) (Neg wy41000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3676 -> 3724[label="",style="solid", color="black", weight=3]; 3677[label="(++) List.findIndices000 (Pos wy123) (primEqInt (Pos Zero) (primMulInt (Pos wy310) (Pos wy41000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3677 -> 3725[label="",style="solid", color="black", weight=3]; 3678[label="(++) List.findIndices000 (Pos wy123) (primEqInt (Pos Zero) (primMulInt (Pos wy310) (Neg wy41000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3678 -> 3726[label="",style="solid", color="black", weight=3]; 3687[label="(++) List.findIndices000 (Pos wy171) (primEqInt (Pos (Succ wy1860)) (primMulInt (Pos wy780) wy8100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5344[label="wy8100/Pos wy81000",fontsize=10,color="white",style="solid",shape="box"];3687 -> 5344[label="",style="solid", color="burlywood", weight=9]; 5344 -> 3735[label="",style="solid", color="burlywood", weight=3]; 5345[label="wy8100/Neg wy81000",fontsize=10,color="white",style="solid",shape="box"];3687 -> 5345[label="",style="solid", color="burlywood", weight=9]; 5345 -> 3736[label="",style="solid", color="burlywood", weight=3]; 3688[label="(++) List.findIndices000 (Pos wy171) (primEqInt (Pos Zero) (primMulInt (Pos wy780) wy8100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5346[label="wy8100/Pos wy81000",fontsize=10,color="white",style="solid",shape="box"];3688 -> 5346[label="",style="solid", color="burlywood", weight=9]; 5346 -> 3737[label="",style="solid", color="burlywood", weight=3]; 5347[label="wy8100/Neg wy81000",fontsize=10,color="white",style="solid",shape="box"];3688 -> 5347[label="",style="solid", color="burlywood", weight=9]; 5347 -> 3738[label="",style="solid", color="burlywood", weight=3]; 3689[label="(++) List.findIndices000 (Pos wy171) (primEqInt (Neg (Succ wy1870)) (primMulInt (Pos wy780) wy8100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5348[label="wy8100/Pos wy81000",fontsize=10,color="white",style="solid",shape="box"];3689 -> 5348[label="",style="solid", color="burlywood", weight=9]; 5348 -> 3739[label="",style="solid", color="burlywood", weight=3]; 5349[label="wy8100/Neg wy81000",fontsize=10,color="white",style="solid",shape="box"];3689 -> 5349[label="",style="solid", color="burlywood", weight=9]; 5349 -> 3740[label="",style="solid", color="burlywood", weight=3]; 3690[label="(++) List.findIndices000 (Pos wy171) (primEqInt (Neg Zero) (primMulInt (Pos wy780) wy8100)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5350[label="wy8100/Pos wy81000",fontsize=10,color="white",style="solid",shape="box"];3690 -> 5350[label="",style="solid", color="burlywood", weight=9]; 5350 -> 3741[label="",style="solid", color="burlywood", weight=3]; 5351[label="wy8100/Neg wy81000",fontsize=10,color="white",style="solid",shape="box"];3690 -> 5351[label="",style="solid", color="burlywood", weight=9]; 5351 -> 3742[label="",style="solid", color="burlywood", weight=3]; 5016[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)))) (zipWith zip0 (wy8110 : wy8111) (Pos wy173 + fromInt (Pos (Succ Zero)) `seq` numericEnumFrom (Pos wy173 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];5016 -> 5036[label="",style="solid", color="black", weight=3]; 5017 -> 3419[label="",style="dashed", color="red", weight=0]; 5017[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)))) [])",fontsize=16,color="magenta"];3695 -> 4581[label="",style="dashed", color="red", weight=0]; 3695[label="(++) List.findIndices000 (Pos wy119) (primEqInt (Pos (Succ wy1750)) (Pos (primMulNat wy310 wy41000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3695 -> 4606[label="",style="dashed", color="magenta", weight=3]; 3695 -> 4607[label="",style="dashed", color="magenta", weight=3]; 3696 -> 4656[label="",style="dashed", color="red", weight=0]; 3696[label="(++) List.findIndices000 (Pos wy119) (primEqInt (Pos (Succ wy1750)) (Neg (primMulNat wy310 wy41000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3696 -> 4681[label="",style="dashed", color="magenta", weight=3]; 3696 -> 4682[label="",style="dashed", color="magenta", weight=3]; 3697 -> 3951[label="",style="dashed", color="red", weight=0]; 3697[label="(++) List.findIndices000 (Pos wy119) (primEqInt (Pos Zero) (Pos (primMulNat wy310 wy41000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3697 -> 3990[label="",style="dashed", color="magenta", weight=3]; 3697 -> 3991[label="",style="dashed", color="magenta", weight=3]; 3697 -> 3992[label="",style="dashed", color="magenta", weight=3]; 3698 -> 4421[label="",style="dashed", color="red", weight=0]; 3698[label="(++) List.findIndices000 (Pos wy119) (primEqInt (Pos Zero) (Neg (primMulNat wy310 wy41000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3698 -> 4458[label="",style="dashed", color="magenta", weight=3]; 3698 -> 4459[label="",style="dashed", color="magenta", weight=3]; 3698 -> 4460[label="",style="dashed", color="magenta", weight=3]; 3699 -> 4256[label="",style="dashed", color="red", weight=0]; 3699[label="(++) List.findIndices000 (Pos wy119) (primEqInt (Neg (Succ wy1760)) (Pos (primMulNat wy310 wy41000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3699 -> 4277[label="",style="dashed", color="magenta", weight=3]; 3699 -> 4278[label="",style="dashed", color="magenta", weight=3]; 3699 -> 4279[label="",style="dashed", color="magenta", weight=3]; 3699 -> 4280[label="",style="dashed", color="magenta", weight=3]; 3700 -> 4181[label="",style="dashed", color="red", weight=0]; 3700[label="(++) List.findIndices000 (Pos wy119) (primEqInt (Neg (Succ wy1760)) (Neg (primMulNat wy310 wy41000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3700 -> 4202[label="",style="dashed", color="magenta", weight=3]; 3700 -> 4203[label="",style="dashed", color="magenta", weight=3]; 3700 -> 4204[label="",style="dashed", color="magenta", weight=3]; 3700 -> 4205[label="",style="dashed", color="magenta", weight=3]; 3701 -> 4328[label="",style="dashed", color="red", weight=0]; 3701[label="(++) List.findIndices000 (Pos wy119) (primEqInt (Neg Zero) (Pos (primMulNat wy310 wy41000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3701 -> 4365[label="",style="dashed", color="magenta", weight=3]; 3701 -> 4366[label="",style="dashed", color="magenta", weight=3]; 3701 -> 4367[label="",style="dashed", color="magenta", weight=3]; 3702 -> 4079[label="",style="dashed", color="red", weight=0]; 3702[label="(++) List.findIndices000 (Pos wy119) (primEqInt (Neg Zero) (Neg (primMulNat wy310 wy41000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3702 -> 4113[label="",style="dashed", color="magenta", weight=3]; 3702 -> 4114[label="",style="dashed", color="magenta", weight=3]; 5038 -> 4656[label="",style="dashed", color="red", weight=0]; 5038[label="(++) List.findIndices000 (Pos wy220) (primEqInt (Pos (Succ wy2360)) (Neg (primMulNat wy310 wy411000))) wy231",fontsize=16,color="magenta"];5038 -> 5058[label="",style="dashed", color="magenta", weight=3]; 5038 -> 5059[label="",style="dashed", color="magenta", weight=3]; 5038 -> 5060[label="",style="dashed", color="magenta", weight=3]; 5038 -> 5061[label="",style="dashed", color="magenta", weight=3]; 5039 -> 4581[label="",style="dashed", color="red", weight=0]; 5039[label="(++) List.findIndices000 (Pos wy220) (primEqInt (Pos (Succ wy2360)) (Pos (primMulNat wy310 wy411000))) wy231",fontsize=16,color="magenta"];5039 -> 5062[label="",style="dashed", color="magenta", weight=3]; 5039 -> 5063[label="",style="dashed", color="magenta", weight=3]; 5039 -> 5064[label="",style="dashed", color="magenta", weight=3]; 5039 -> 5065[label="",style="dashed", color="magenta", weight=3]; 5040 -> 4421[label="",style="dashed", color="red", weight=0]; 5040[label="(++) List.findIndices000 (Pos wy220) (primEqInt (Pos Zero) (Neg (primMulNat wy310 wy411000))) wy231",fontsize=16,color="magenta"];5040 -> 5066[label="",style="dashed", color="magenta", weight=3]; 5040 -> 5067[label="",style="dashed", color="magenta", weight=3]; 5040 -> 5068[label="",style="dashed", color="magenta", weight=3]; 5041 -> 3951[label="",style="dashed", color="red", weight=0]; 5041[label="(++) List.findIndices000 (Pos wy220) (primEqInt (Pos Zero) (Pos (primMulNat wy310 wy411000))) wy231",fontsize=16,color="magenta"];5041 -> 5069[label="",style="dashed", color="magenta", weight=3]; 5041 -> 5070[label="",style="dashed", color="magenta", weight=3]; 5041 -> 5071[label="",style="dashed", color="magenta", weight=3]; 5032 -> 4181[label="",style="dashed", color="red", weight=0]; 5032[label="(++) List.findIndices000 (Pos wy220) (primEqInt (Neg (Succ wy2350)) (Neg (primMulNat wy310 wy411000))) wy231",fontsize=16,color="magenta"];5032 -> 5042[label="",style="dashed", color="magenta", weight=3]; 5032 -> 5043[label="",style="dashed", color="magenta", weight=3]; 5032 -> 5044[label="",style="dashed", color="magenta", weight=3]; 5032 -> 5045[label="",style="dashed", color="magenta", weight=3]; 5033 -> 4256[label="",style="dashed", color="red", weight=0]; 5033[label="(++) List.findIndices000 (Pos wy220) (primEqInt (Neg (Succ wy2350)) (Pos (primMulNat wy310 wy411000))) wy231",fontsize=16,color="magenta"];5033 -> 5046[label="",style="dashed", color="magenta", weight=3]; 5033 -> 5047[label="",style="dashed", color="magenta", weight=3]; 5033 -> 5048[label="",style="dashed", color="magenta", weight=3]; 5033 -> 5049[label="",style="dashed", color="magenta", weight=3]; 5034 -> 4079[label="",style="dashed", color="red", weight=0]; 5034[label="(++) List.findIndices000 (Pos wy220) (primEqInt (Neg Zero) (Neg (primMulNat wy310 wy411000))) wy231",fontsize=16,color="magenta"];5034 -> 5050[label="",style="dashed", color="magenta", weight=3]; 5034 -> 5051[label="",style="dashed", color="magenta", weight=3]; 5034 -> 5052[label="",style="dashed", color="magenta", weight=3]; 5035 -> 4328[label="",style="dashed", color="red", weight=0]; 5035[label="(++) List.findIndices000 (Pos wy220) (primEqInt (Neg Zero) (Pos (primMulNat wy310 wy411000))) wy231",fontsize=16,color="magenta"];5035 -> 5053[label="",style="dashed", color="magenta", weight=3]; 5035 -> 5054[label="",style="dashed", color="magenta", weight=3]; 5035 -> 5055[label="",style="dashed", color="magenta", weight=3]; 3711[label="(++) List.findIndices000 (Pos wy141) (primEqInt (Neg (Succ wy1830)) (primMulInt (Pos wy410) wy4400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5352[label="wy4400/Pos wy44000",fontsize=10,color="white",style="solid",shape="box"];3711 -> 5352[label="",style="solid", color="burlywood", weight=9]; 5352 -> 3794[label="",style="solid", color="burlywood", weight=3]; 5353[label="wy4400/Neg wy44000",fontsize=10,color="white",style="solid",shape="box"];3711 -> 5353[label="",style="solid", color="burlywood", weight=9]; 5353 -> 3795[label="",style="solid", color="burlywood", weight=3]; 3712[label="(++) List.findIndices000 (Pos wy141) (primEqInt (Neg Zero) (primMulInt (Pos wy410) wy4400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5354[label="wy4400/Pos wy44000",fontsize=10,color="white",style="solid",shape="box"];3712 -> 5354[label="",style="solid", color="burlywood", weight=9]; 5354 -> 3796[label="",style="solid", color="burlywood", weight=3]; 5355[label="wy4400/Neg wy44000",fontsize=10,color="white",style="solid",shape="box"];3712 -> 5355[label="",style="solid", color="burlywood", weight=9]; 5355 -> 3797[label="",style="solid", color="burlywood", weight=3]; 3713[label="(++) List.findIndices000 (Pos wy141) (primEqInt (Pos (Succ wy1840)) (primMulInt (Pos wy410) wy4400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5356[label="wy4400/Pos wy44000",fontsize=10,color="white",style="solid",shape="box"];3713 -> 5356[label="",style="solid", color="burlywood", weight=9]; 5356 -> 3798[label="",style="solid", color="burlywood", weight=3]; 5357[label="wy4400/Neg wy44000",fontsize=10,color="white",style="solid",shape="box"];3713 -> 5357[label="",style="solid", color="burlywood", weight=9]; 5357 -> 3799[label="",style="solid", color="burlywood", weight=3]; 3714[label="(++) List.findIndices000 (Pos wy141) (primEqInt (Pos Zero) (primMulInt (Pos wy410) wy4400)) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];5358[label="wy4400/Pos wy44000",fontsize=10,color="white",style="solid",shape="box"];3714 -> 5358[label="",style="solid", color="burlywood", weight=9]; 5358 -> 3800[label="",style="solid", color="burlywood", weight=3]; 5359[label="wy4400/Neg wy44000",fontsize=10,color="white",style="solid",shape="box"];3714 -> 5359[label="",style="solid", color="burlywood", weight=9]; 5359 -> 3801[label="",style="solid", color="burlywood", weight=3]; 5018[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)))) (zipWith zip0 (wy4410 : wy4411) (Pos wy143 + fromInt (Pos (Succ Zero)) `seq` numericEnumFrom (Pos wy143 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];5018 -> 5037[label="",style="solid", color="black", weight=3]; 5019 -> 2314[label="",style="dashed", color="red", weight=0]; 5019[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)))) [])",fontsize=16,color="magenta"];3719 -> 4256[label="",style="dashed", color="red", weight=0]; 3719[label="(++) List.findIndices000 (Pos wy123) (primEqInt (Neg (Succ wy1790)) (Pos (primMulNat wy310 wy41000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3719 -> 4283[label="",style="dashed", color="magenta", weight=3]; 3719 -> 4284[label="",style="dashed", color="magenta", weight=3]; 3719 -> 4285[label="",style="dashed", color="magenta", weight=3]; 3719 -> 4286[label="",style="dashed", color="magenta", weight=3]; 3720 -> 4181[label="",style="dashed", color="red", weight=0]; 3720[label="(++) List.findIndices000 (Pos wy123) (primEqInt (Neg (Succ wy1790)) (Neg (primMulNat wy310 wy41000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3720 -> 4208[label="",style="dashed", color="magenta", weight=3]; 3720 -> 4209[label="",style="dashed", color="magenta", weight=3]; 3720 -> 4210[label="",style="dashed", color="magenta", weight=3]; 3720 -> 4211[label="",style="dashed", color="magenta", weight=3]; 3721 -> 4328[label="",style="dashed", color="red", weight=0]; 3721[label="(++) List.findIndices000 (Pos wy123) (primEqInt (Neg Zero) (Pos (primMulNat wy310 wy41000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3721 -> 4370[label="",style="dashed", color="magenta", weight=3]; 3721 -> 4371[label="",style="dashed", color="magenta", weight=3]; 3721 -> 4372[label="",style="dashed", color="magenta", weight=3]; 3722 -> 4079[label="",style="dashed", color="red", weight=0]; 3722[label="(++) List.findIndices000 (Pos wy123) (primEqInt (Neg Zero) (Neg (primMulNat wy310 wy41000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3722 -> 4118[label="",style="dashed", color="magenta", weight=3]; 3722 -> 4119[label="",style="dashed", color="magenta", weight=3]; 3722 -> 4120[label="",style="dashed", color="magenta", weight=3]; 3723 -> 4581[label="",style="dashed", color="red", weight=0]; 3723[label="(++) List.findIndices000 (Pos wy123) (primEqInt (Pos (Succ wy1800)) (Pos (primMulNat wy310 wy41000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3723 -> 4612[label="",style="dashed", color="magenta", weight=3]; 3723 -> 4613[label="",style="dashed", color="magenta", weight=3]; 3723 -> 4614[label="",style="dashed", color="magenta", weight=3]; 3723 -> 4615[label="",style="dashed", color="magenta", weight=3]; 3724 -> 4656[label="",style="dashed", color="red", weight=0]; 3724[label="(++) List.findIndices000 (Pos wy123) (primEqInt (Pos (Succ wy1800)) (Neg (primMulNat wy310 wy41000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3724 -> 4687[label="",style="dashed", color="magenta", weight=3]; 3724 -> 4688[label="",style="dashed", color="magenta", weight=3]; 3724 -> 4689[label="",style="dashed", color="magenta", weight=3]; 3724 -> 4690[label="",style="dashed", color="magenta", weight=3]; 3725 -> 3951[label="",style="dashed", color="red", weight=0]; 3725[label="(++) List.findIndices000 (Pos wy123) (primEqInt (Pos Zero) (Pos (primMulNat wy310 wy41000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3725 -> 3996[label="",style="dashed", color="magenta", weight=3]; 3725 -> 3997[label="",style="dashed", color="magenta", weight=3]; 3725 -> 3998[label="",style="dashed", color="magenta", weight=3]; 3726 -> 4421[label="",style="dashed", color="red", weight=0]; 3726[label="(++) List.findIndices000 (Pos wy123) (primEqInt (Pos Zero) (Neg (primMulNat wy310 wy41000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3726 -> 4464[label="",style="dashed", color="magenta", weight=3]; 3726 -> 4465[label="",style="dashed", color="magenta", weight=3]; 3735[label="(++) List.findIndices000 (Pos wy171) (primEqInt (Pos (Succ wy1860)) (primMulInt (Pos wy780) (Pos wy81000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3735 -> 4024[label="",style="solid", color="black", weight=3]; 3736[label="(++) List.findIndices000 (Pos wy171) (primEqInt (Pos (Succ wy1860)) (primMulInt (Pos wy780) (Neg wy81000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3736 -> 4025[label="",style="solid", color="black", weight=3]; 3737[label="(++) List.findIndices000 (Pos wy171) (primEqInt (Pos Zero) (primMulInt (Pos wy780) (Pos wy81000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3737 -> 4026[label="",style="solid", color="black", weight=3]; 3738[label="(++) List.findIndices000 (Pos wy171) (primEqInt (Pos Zero) (primMulInt (Pos wy780) (Neg wy81000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3738 -> 4027[label="",style="solid", color="black", weight=3]; 3739[label="(++) List.findIndices000 (Pos wy171) (primEqInt (Neg (Succ wy1870)) (primMulInt (Pos wy780) (Pos wy81000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3739 -> 4028[label="",style="solid", color="black", weight=3]; 3740[label="(++) List.findIndices000 (Pos wy171) (primEqInt (Neg (Succ wy1870)) (primMulInt (Pos wy780) (Neg wy81000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3740 -> 4029[label="",style="solid", color="black", weight=3]; 3741[label="(++) List.findIndices000 (Pos wy171) (primEqInt (Neg Zero) (primMulInt (Pos wy780) (Pos wy81000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3741 -> 4030[label="",style="solid", color="black", weight=3]; 3742[label="(++) List.findIndices000 (Pos wy171) (primEqInt (Neg Zero) (primMulInt (Pos wy780) (Neg wy81000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3742 -> 4031[label="",style="solid", color="black", weight=3]; 5036[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)))) (zipWith zip0 (wy8110 : wy8111) (enforceWHNF (WHNF (Pos wy173 + fromInt (Pos (Succ Zero)))) (numericEnumFrom (Pos wy173 + fromInt (Pos (Succ Zero)))))))",fontsize=16,color="black",shape="box"];5036 -> 5056[label="",style="solid", color="black", weight=3]; 4606 -> 4062[label="",style="dashed", color="red", weight=0]; 4606[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4607 -> 1487[label="",style="dashed", color="red", weight=0]; 4607[label="primMulNat wy310 wy41000",fontsize=16,color="magenta"];4607 -> 4654[label="",style="dashed", color="magenta", weight=3]; 4681 -> 1487[label="",style="dashed", color="red", weight=0]; 4681[label="primMulNat wy310 wy41000",fontsize=16,color="magenta"];4681 -> 4728[label="",style="dashed", color="magenta", weight=3]; 4682 -> 4062[label="",style="dashed", color="red", weight=0]; 4682[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3990[label="wy119",fontsize=16,color="green",shape="box"];3991 -> 1487[label="",style="dashed", color="red", weight=0]; 3991[label="primMulNat wy310 wy41000",fontsize=16,color="magenta"];3991 -> 4729[label="",style="dashed", color="magenta", weight=3]; 3992 -> 4062[label="",style="dashed", color="red", weight=0]; 3992[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4458 -> 4062[label="",style="dashed", color="red", weight=0]; 4458[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4459[label="wy119",fontsize=16,color="green",shape="box"];4460 -> 1487[label="",style="dashed", color="red", weight=0]; 4460[label="primMulNat wy310 wy41000",fontsize=16,color="magenta"];4460 -> 4730[label="",style="dashed", color="magenta", weight=3]; 4277[label="wy1760",fontsize=16,color="green",shape="box"];4278 -> 1487[label="",style="dashed", color="red", weight=0]; 4278[label="primMulNat wy310 wy41000",fontsize=16,color="magenta"];4278 -> 4731[label="",style="dashed", color="magenta", weight=3]; 4279 -> 4062[label="",style="dashed", color="red", weight=0]; 4279[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4280[label="wy119",fontsize=16,color="green",shape="box"];4202 -> 4062[label="",style="dashed", color="red", weight=0]; 4202[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4203[label="wy1760",fontsize=16,color="green",shape="box"];4204 -> 1487[label="",style="dashed", color="red", weight=0]; 4204[label="primMulNat wy310 wy41000",fontsize=16,color="magenta"];4204 -> 4732[label="",style="dashed", color="magenta", weight=3]; 4205[label="wy119",fontsize=16,color="green",shape="box"];4365 -> 4062[label="",style="dashed", color="red", weight=0]; 4365[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4366 -> 1487[label="",style="dashed", color="red", weight=0]; 4366[label="primMulNat wy310 wy41000",fontsize=16,color="magenta"];4366 -> 4733[label="",style="dashed", color="magenta", weight=3]; 4367[label="wy119",fontsize=16,color="green",shape="box"];4113 -> 4062[label="",style="dashed", color="red", weight=0]; 4113[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy119 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4114 -> 1487[label="",style="dashed", color="red", weight=0]; 4114[label="primMulNat wy310 wy41000",fontsize=16,color="magenta"];4114 -> 4734[label="",style="dashed", color="magenta", weight=3]; 5058 -> 1487[label="",style="dashed", color="red", weight=0]; 5058[label="primMulNat wy310 wy411000",fontsize=16,color="magenta"];5058 -> 5082[label="",style="dashed", color="magenta", weight=3]; 5058 -> 5083[label="",style="dashed", color="magenta", weight=3]; 5059[label="wy220",fontsize=16,color="green",shape="box"];5060[label="wy2360",fontsize=16,color="green",shape="box"];5061[label="wy231",fontsize=16,color="green",shape="box"];5062[label="wy220",fontsize=16,color="green",shape="box"];5063[label="wy2360",fontsize=16,color="green",shape="box"];5064[label="wy231",fontsize=16,color="green",shape="box"];5065 -> 1487[label="",style="dashed", color="red", weight=0]; 5065[label="primMulNat wy310 wy411000",fontsize=16,color="magenta"];5065 -> 5084[label="",style="dashed", color="magenta", weight=3]; 5065 -> 5085[label="",style="dashed", color="magenta", weight=3]; 5066[label="wy231",fontsize=16,color="green",shape="box"];5067[label="wy220",fontsize=16,color="green",shape="box"];5068 -> 1487[label="",style="dashed", color="red", weight=0]; 5068[label="primMulNat wy310 wy411000",fontsize=16,color="magenta"];5068 -> 5086[label="",style="dashed", color="magenta", weight=3]; 5068 -> 5087[label="",style="dashed", color="magenta", weight=3]; 5069[label="wy220",fontsize=16,color="green",shape="box"];5070 -> 1487[label="",style="dashed", color="red", weight=0]; 5070[label="primMulNat wy310 wy411000",fontsize=16,color="magenta"];5070 -> 5088[label="",style="dashed", color="magenta", weight=3]; 5070 -> 5089[label="",style="dashed", color="magenta", weight=3]; 5071[label="wy231",fontsize=16,color="green",shape="box"];5042[label="wy231",fontsize=16,color="green",shape="box"];5043[label="wy2350",fontsize=16,color="green",shape="box"];5044 -> 1487[label="",style="dashed", color="red", weight=0]; 5044[label="primMulNat wy310 wy411000",fontsize=16,color="magenta"];5044 -> 5072[label="",style="dashed", color="magenta", weight=3]; 5044 -> 5073[label="",style="dashed", color="magenta", weight=3]; 5045[label="wy220",fontsize=16,color="green",shape="box"];5046[label="wy2350",fontsize=16,color="green",shape="box"];5047 -> 1487[label="",style="dashed", color="red", weight=0]; 5047[label="primMulNat wy310 wy411000",fontsize=16,color="magenta"];5047 -> 5074[label="",style="dashed", color="magenta", weight=3]; 5047 -> 5075[label="",style="dashed", color="magenta", weight=3]; 5048[label="wy231",fontsize=16,color="green",shape="box"];5049[label="wy220",fontsize=16,color="green",shape="box"];5050[label="wy220",fontsize=16,color="green",shape="box"];5051[label="wy231",fontsize=16,color="green",shape="box"];5052 -> 1487[label="",style="dashed", color="red", weight=0]; 5052[label="primMulNat wy310 wy411000",fontsize=16,color="magenta"];5052 -> 5076[label="",style="dashed", color="magenta", weight=3]; 5052 -> 5077[label="",style="dashed", color="magenta", weight=3]; 5053[label="wy231",fontsize=16,color="green",shape="box"];5054 -> 1487[label="",style="dashed", color="red", weight=0]; 5054[label="primMulNat wy310 wy411000",fontsize=16,color="magenta"];5054 -> 5078[label="",style="dashed", color="magenta", weight=3]; 5054 -> 5079[label="",style="dashed", color="magenta", weight=3]; 5055[label="wy220",fontsize=16,color="green",shape="box"];3794[label="(++) List.findIndices000 (Pos wy141) (primEqInt (Neg (Succ wy1830)) (primMulInt (Pos wy410) (Pos wy44000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3794 -> 4505[label="",style="solid", color="black", weight=3]; 3795[label="(++) List.findIndices000 (Pos wy141) (primEqInt (Neg (Succ wy1830)) (primMulInt (Pos wy410) (Neg wy44000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3795 -> 4506[label="",style="solid", color="black", weight=3]; 3796[label="(++) List.findIndices000 (Pos wy141) (primEqInt (Neg Zero) (primMulInt (Pos wy410) (Pos wy44000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3796 -> 4507[label="",style="solid", color="black", weight=3]; 3797[label="(++) List.findIndices000 (Pos wy141) (primEqInt (Neg Zero) (primMulInt (Pos wy410) (Neg wy44000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3797 -> 4508[label="",style="solid", color="black", weight=3]; 3798[label="(++) List.findIndices000 (Pos wy141) (primEqInt (Pos (Succ wy1840)) (primMulInt (Pos wy410) (Pos wy44000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3798 -> 4509[label="",style="solid", color="black", weight=3]; 3799[label="(++) List.findIndices000 (Pos wy141) (primEqInt (Pos (Succ wy1840)) (primMulInt (Pos wy410) (Neg wy44000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3799 -> 4510[label="",style="solid", color="black", weight=3]; 3800[label="(++) List.findIndices000 (Pos wy141) (primEqInt (Pos Zero) (primMulInt (Pos wy410) (Pos wy44000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3800 -> 4511[label="",style="solid", color="black", weight=3]; 3801[label="(++) List.findIndices000 (Pos wy141) (primEqInt (Pos Zero) (primMulInt (Pos wy410) (Neg wy44000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];3801 -> 4512[label="",style="solid", color="black", weight=3]; 5037[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)))) (zipWith zip0 (wy4410 : wy4411) (enforceWHNF (WHNF (Pos wy143 + fromInt (Pos (Succ Zero)))) (numericEnumFrom (Pos wy143 + fromInt (Pos (Succ Zero)))))))",fontsize=16,color="black",shape="box"];5037 -> 5057[label="",style="solid", color="black", weight=3]; 4283[label="wy1790",fontsize=16,color="green",shape="box"];4284 -> 1487[label="",style="dashed", color="red", weight=0]; 4284[label="primMulNat wy310 wy41000",fontsize=16,color="magenta"];4284 -> 4751[label="",style="dashed", color="magenta", weight=3]; 4285 -> 3859[label="",style="dashed", color="red", weight=0]; 4285[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4286[label="wy123",fontsize=16,color="green",shape="box"];4208 -> 3859[label="",style="dashed", color="red", weight=0]; 4208[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4209[label="wy1790",fontsize=16,color="green",shape="box"];4210 -> 1487[label="",style="dashed", color="red", weight=0]; 4210[label="primMulNat wy310 wy41000",fontsize=16,color="magenta"];4210 -> 4752[label="",style="dashed", color="magenta", weight=3]; 4211[label="wy123",fontsize=16,color="green",shape="box"];4370 -> 3859[label="",style="dashed", color="red", weight=0]; 4370[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4371 -> 1487[label="",style="dashed", color="red", weight=0]; 4371[label="primMulNat wy310 wy41000",fontsize=16,color="magenta"];4371 -> 4753[label="",style="dashed", color="magenta", weight=3]; 4372[label="wy123",fontsize=16,color="green",shape="box"];4118[label="wy123",fontsize=16,color="green",shape="box"];4119 -> 3859[label="",style="dashed", color="red", weight=0]; 4119[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4120 -> 1487[label="",style="dashed", color="red", weight=0]; 4120[label="primMulNat wy310 wy41000",fontsize=16,color="magenta"];4120 -> 4754[label="",style="dashed", color="magenta", weight=3]; 4612[label="wy123",fontsize=16,color="green",shape="box"];4613[label="wy1800",fontsize=16,color="green",shape="box"];4614 -> 3859[label="",style="dashed", color="red", weight=0]; 4614[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4615 -> 1487[label="",style="dashed", color="red", weight=0]; 4615[label="primMulNat wy310 wy41000",fontsize=16,color="magenta"];4615 -> 4755[label="",style="dashed", color="magenta", weight=3]; 4687 -> 1487[label="",style="dashed", color="red", weight=0]; 4687[label="primMulNat wy310 wy41000",fontsize=16,color="magenta"];4687 -> 4756[label="",style="dashed", color="magenta", weight=3]; 4688[label="wy123",fontsize=16,color="green",shape="box"];4689[label="wy1800",fontsize=16,color="green",shape="box"];4690 -> 3859[label="",style="dashed", color="red", weight=0]; 4690[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];3996[label="wy123",fontsize=16,color="green",shape="box"];3997 -> 1487[label="",style="dashed", color="red", weight=0]; 3997[label="primMulNat wy310 wy41000",fontsize=16,color="magenta"];3997 -> 4757[label="",style="dashed", color="magenta", weight=3]; 3998 -> 3859[label="",style="dashed", color="red", weight=0]; 3998[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4464 -> 3859[label="",style="dashed", color="red", weight=0]; 4464[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg Zero) (Pos wy310)))) (zipWith zip0 wy411 (numericEnumFrom $! Pos wy123 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4465 -> 1487[label="",style="dashed", color="red", weight=0]; 4465[label="primMulNat wy310 wy41000",fontsize=16,color="magenta"];4465 -> 4758[label="",style="dashed", color="magenta", weight=3]; 4024 -> 4581[label="",style="dashed", color="red", weight=0]; 4024[label="(++) List.findIndices000 (Pos wy171) (primEqInt (Pos (Succ wy1860)) (Pos (primMulNat wy780 wy81000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4024 -> 4633[label="",style="dashed", color="magenta", weight=3]; 4024 -> 4634[label="",style="dashed", color="magenta", weight=3]; 4024 -> 4635[label="",style="dashed", color="magenta", weight=3]; 4024 -> 4636[label="",style="dashed", color="magenta", weight=3]; 4025 -> 4656[label="",style="dashed", color="red", weight=0]; 4025[label="(++) List.findIndices000 (Pos wy171) (primEqInt (Pos (Succ wy1860)) (Neg (primMulNat wy780 wy81000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4025 -> 4704[label="",style="dashed", color="magenta", weight=3]; 4025 -> 4705[label="",style="dashed", color="magenta", weight=3]; 4025 -> 4706[label="",style="dashed", color="magenta", weight=3]; 4025 -> 4707[label="",style="dashed", color="magenta", weight=3]; 4026 -> 3951[label="",style="dashed", color="red", weight=0]; 4026[label="(++) List.findIndices000 (Pos wy171) (primEqInt (Pos Zero) (Pos (primMulNat wy780 wy81000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4026 -> 4759[label="",style="dashed", color="magenta", weight=3]; 4026 -> 4760[label="",style="dashed", color="magenta", weight=3]; 4026 -> 4761[label="",style="dashed", color="magenta", weight=3]; 4027 -> 4421[label="",style="dashed", color="red", weight=0]; 4027[label="(++) List.findIndices000 (Pos wy171) (primEqInt (Pos Zero) (Neg (primMulNat wy780 wy81000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4027 -> 4466[label="",style="dashed", color="magenta", weight=3]; 4027 -> 4467[label="",style="dashed", color="magenta", weight=3]; 4027 -> 4468[label="",style="dashed", color="magenta", weight=3]; 4028 -> 4256[label="",style="dashed", color="red", weight=0]; 4028[label="(++) List.findIndices000 (Pos wy171) (primEqInt (Neg (Succ wy1870)) (Pos (primMulNat wy780 wy81000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4028 -> 4287[label="",style="dashed", color="magenta", weight=3]; 4028 -> 4288[label="",style="dashed", color="magenta", weight=3]; 4028 -> 4289[label="",style="dashed", color="magenta", weight=3]; 4028 -> 4290[label="",style="dashed", color="magenta", weight=3]; 4029 -> 4181[label="",style="dashed", color="red", weight=0]; 4029[label="(++) List.findIndices000 (Pos wy171) (primEqInt (Neg (Succ wy1870)) (Neg (primMulNat wy780 wy81000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4029 -> 4212[label="",style="dashed", color="magenta", weight=3]; 4029 -> 4213[label="",style="dashed", color="magenta", weight=3]; 4029 -> 4214[label="",style="dashed", color="magenta", weight=3]; 4029 -> 4215[label="",style="dashed", color="magenta", weight=3]; 4030 -> 4328[label="",style="dashed", color="red", weight=0]; 4030[label="(++) List.findIndices000 (Pos wy171) (primEqInt (Neg Zero) (Pos (primMulNat wy780 wy81000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4030 -> 4373[label="",style="dashed", color="magenta", weight=3]; 4030 -> 4374[label="",style="dashed", color="magenta", weight=3]; 4030 -> 4375[label="",style="dashed", color="magenta", weight=3]; 4031 -> 4079[label="",style="dashed", color="red", weight=0]; 4031[label="(++) List.findIndices000 (Pos wy171) (primEqInt (Neg Zero) (Neg (primMulNat wy780 wy81000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4031 -> 4121[label="",style="dashed", color="magenta", weight=3]; 4031 -> 4122[label="",style="dashed", color="magenta", weight=3]; 4031 -> 4123[label="",style="dashed", color="magenta", weight=3]; 5056[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)))) (zipWith zip0 (wy8110 : wy8111) (enforceWHNF (WHNF (primPlusInt (Pos wy173) (fromInt (Pos (Succ Zero))))) (numericEnumFrom (primPlusInt (Pos wy173) (fromInt (Pos (Succ Zero))))))))",fontsize=16,color="black",shape="box"];5056 -> 5080[label="",style="solid", color="black", weight=3]; 4654[label="wy41000",fontsize=16,color="green",shape="box"];4728[label="wy41000",fontsize=16,color="green",shape="box"];4729[label="wy41000",fontsize=16,color="green",shape="box"];4730[label="wy41000",fontsize=16,color="green",shape="box"];4731[label="wy41000",fontsize=16,color="green",shape="box"];4732[label="wy41000",fontsize=16,color="green",shape="box"];4733[label="wy41000",fontsize=16,color="green",shape="box"];4734[label="wy41000",fontsize=16,color="green",shape="box"];5082[label="wy310",fontsize=16,color="green",shape="box"];5083[label="wy411000",fontsize=16,color="green",shape="box"];5084[label="wy310",fontsize=16,color="green",shape="box"];5085[label="wy411000",fontsize=16,color="green",shape="box"];5086[label="wy310",fontsize=16,color="green",shape="box"];5087[label="wy411000",fontsize=16,color="green",shape="box"];5088[label="wy310",fontsize=16,color="green",shape="box"];5089[label="wy411000",fontsize=16,color="green",shape="box"];5072[label="wy310",fontsize=16,color="green",shape="box"];5073[label="wy411000",fontsize=16,color="green",shape="box"];5074[label="wy310",fontsize=16,color="green",shape="box"];5075[label="wy411000",fontsize=16,color="green",shape="box"];5076[label="wy310",fontsize=16,color="green",shape="box"];5077[label="wy411000",fontsize=16,color="green",shape="box"];5078[label="wy310",fontsize=16,color="green",shape="box"];5079[label="wy411000",fontsize=16,color="green",shape="box"];4505 -> 4256[label="",style="dashed", color="red", weight=0]; 4505[label="(++) List.findIndices000 (Pos wy141) (primEqInt (Neg (Succ wy1830)) (Pos (primMulNat wy410 wy44000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4505 -> 4765[label="",style="dashed", color="magenta", weight=3]; 4505 -> 4766[label="",style="dashed", color="magenta", weight=3]; 4505 -> 4767[label="",style="dashed", color="magenta", weight=3]; 4505 -> 4768[label="",style="dashed", color="magenta", weight=3]; 4506 -> 4181[label="",style="dashed", color="red", weight=0]; 4506[label="(++) List.findIndices000 (Pos wy141) (primEqInt (Neg (Succ wy1830)) (Neg (primMulNat wy410 wy44000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4506 -> 4769[label="",style="dashed", color="magenta", weight=3]; 4506 -> 4770[label="",style="dashed", color="magenta", weight=3]; 4506 -> 4771[label="",style="dashed", color="magenta", weight=3]; 4506 -> 4772[label="",style="dashed", color="magenta", weight=3]; 4507 -> 4328[label="",style="dashed", color="red", weight=0]; 4507[label="(++) List.findIndices000 (Pos wy141) (primEqInt (Neg Zero) (Pos (primMulNat wy410 wy44000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4507 -> 4773[label="",style="dashed", color="magenta", weight=3]; 4507 -> 4774[label="",style="dashed", color="magenta", weight=3]; 4507 -> 4775[label="",style="dashed", color="magenta", weight=3]; 4508 -> 4079[label="",style="dashed", color="red", weight=0]; 4508[label="(++) List.findIndices000 (Pos wy141) (primEqInt (Neg Zero) (Neg (primMulNat wy410 wy44000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4508 -> 4776[label="",style="dashed", color="magenta", weight=3]; 4508 -> 4777[label="",style="dashed", color="magenta", weight=3]; 4508 -> 4778[label="",style="dashed", color="magenta", weight=3]; 4509 -> 4581[label="",style="dashed", color="red", weight=0]; 4509[label="(++) List.findIndices000 (Pos wy141) (primEqInt (Pos (Succ wy1840)) (Pos (primMulNat wy410 wy44000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4509 -> 4625[label="",style="dashed", color="magenta", weight=3]; 4509 -> 4626[label="",style="dashed", color="magenta", weight=3]; 4509 -> 4627[label="",style="dashed", color="magenta", weight=3]; 4509 -> 4628[label="",style="dashed", color="magenta", weight=3]; 4510 -> 4656[label="",style="dashed", color="red", weight=0]; 4510[label="(++) List.findIndices000 (Pos wy141) (primEqInt (Pos (Succ wy1840)) (Neg (primMulNat wy410 wy44000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4510 -> 4712[label="",style="dashed", color="magenta", weight=3]; 4510 -> 4713[label="",style="dashed", color="magenta", weight=3]; 4510 -> 4714[label="",style="dashed", color="magenta", weight=3]; 4510 -> 4715[label="",style="dashed", color="magenta", weight=3]; 4511 -> 3951[label="",style="dashed", color="red", weight=0]; 4511[label="(++) List.findIndices000 (Pos wy141) (primEqInt (Pos Zero) (Pos (primMulNat wy410 wy44000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4511 -> 4779[label="",style="dashed", color="magenta", weight=3]; 4511 -> 4780[label="",style="dashed", color="magenta", weight=3]; 4511 -> 4781[label="",style="dashed", color="magenta", weight=3]; 4512 -> 4421[label="",style="dashed", color="red", weight=0]; 4512[label="(++) List.findIndices000 (Pos wy141) (primEqInt (Pos Zero) (Neg (primMulNat wy410 wy44000))) foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4512 -> 4782[label="",style="dashed", color="magenta", weight=3]; 4512 -> 4783[label="",style="dashed", color="magenta", weight=3]; 4512 -> 4784[label="",style="dashed", color="magenta", weight=3]; 5057[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)))) (zipWith zip0 (wy4410 : wy4411) (enforceWHNF (WHNF (primPlusInt (Pos wy143) (fromInt (Pos (Succ Zero))))) (numericEnumFrom (primPlusInt (Pos wy143) (fromInt (Pos (Succ Zero))))))))",fontsize=16,color="black",shape="box"];5057 -> 5081[label="",style="solid", color="black", weight=3]; 4751[label="wy41000",fontsize=16,color="green",shape="box"];4752[label="wy41000",fontsize=16,color="green",shape="box"];4753[label="wy41000",fontsize=16,color="green",shape="box"];4754[label="wy41000",fontsize=16,color="green",shape="box"];4755[label="wy41000",fontsize=16,color="green",shape="box"];4756[label="wy41000",fontsize=16,color="green",shape="box"];4757[label="wy41000",fontsize=16,color="green",shape="box"];4758[label="wy41000",fontsize=16,color="green",shape="box"];4633[label="wy171",fontsize=16,color="green",shape="box"];4634[label="wy1860",fontsize=16,color="green",shape="box"];4635[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="triangle"];5360[label="wy811/wy8110 : wy8111",fontsize=10,color="white",style="solid",shape="box"];4635 -> 5360[label="",style="solid", color="burlywood", weight=9]; 5360 -> 4805[label="",style="solid", color="burlywood", weight=3]; 5361[label="wy811/[]",fontsize=10,color="white",style="solid",shape="box"];4635 -> 5361[label="",style="solid", color="burlywood", weight=9]; 5361 -> 4806[label="",style="solid", color="burlywood", weight=3]; 4636 -> 1487[label="",style="dashed", color="red", weight=0]; 4636[label="primMulNat wy780 wy81000",fontsize=16,color="magenta"];4636 -> 4807[label="",style="dashed", color="magenta", weight=3]; 4636 -> 4808[label="",style="dashed", color="magenta", weight=3]; 4704 -> 1487[label="",style="dashed", color="red", weight=0]; 4704[label="primMulNat wy780 wy81000",fontsize=16,color="magenta"];4704 -> 4809[label="",style="dashed", color="magenta", weight=3]; 4704 -> 4810[label="",style="dashed", color="magenta", weight=3]; 4705[label="wy171",fontsize=16,color="green",shape="box"];4706[label="wy1860",fontsize=16,color="green",shape="box"];4707 -> 4635[label="",style="dashed", color="red", weight=0]; 4707[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4759[label="wy171",fontsize=16,color="green",shape="box"];4760 -> 1487[label="",style="dashed", color="red", weight=0]; 4760[label="primMulNat wy780 wy81000",fontsize=16,color="magenta"];4760 -> 4858[label="",style="dashed", color="magenta", weight=3]; 4760 -> 4859[label="",style="dashed", color="magenta", weight=3]; 4761 -> 4635[label="",style="dashed", color="red", weight=0]; 4761[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4466 -> 4635[label="",style="dashed", color="red", weight=0]; 4466[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4467[label="wy171",fontsize=16,color="green",shape="box"];4468 -> 1487[label="",style="dashed", color="red", weight=0]; 4468[label="primMulNat wy780 wy81000",fontsize=16,color="magenta"];4468 -> 4811[label="",style="dashed", color="magenta", weight=3]; 4468 -> 4812[label="",style="dashed", color="magenta", weight=3]; 4287[label="wy1870",fontsize=16,color="green",shape="box"];4288 -> 1487[label="",style="dashed", color="red", weight=0]; 4288[label="primMulNat wy780 wy81000",fontsize=16,color="magenta"];4288 -> 4813[label="",style="dashed", color="magenta", weight=3]; 4288 -> 4814[label="",style="dashed", color="magenta", weight=3]; 4289 -> 4635[label="",style="dashed", color="red", weight=0]; 4289[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4290[label="wy171",fontsize=16,color="green",shape="box"];4212 -> 4635[label="",style="dashed", color="red", weight=0]; 4212[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4213[label="wy1870",fontsize=16,color="green",shape="box"];4214 -> 1487[label="",style="dashed", color="red", weight=0]; 4214[label="primMulNat wy780 wy81000",fontsize=16,color="magenta"];4214 -> 4815[label="",style="dashed", color="magenta", weight=3]; 4214 -> 4816[label="",style="dashed", color="magenta", weight=3]; 4215[label="wy171",fontsize=16,color="green",shape="box"];4373 -> 4635[label="",style="dashed", color="red", weight=0]; 4373[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4374 -> 1487[label="",style="dashed", color="red", weight=0]; 4374[label="primMulNat wy780 wy81000",fontsize=16,color="magenta"];4374 -> 4817[label="",style="dashed", color="magenta", weight=3]; 4374 -> 4818[label="",style="dashed", color="magenta", weight=3]; 4375[label="wy171",fontsize=16,color="green",shape="box"];4121[label="wy171",fontsize=16,color="green",shape="box"];4122 -> 4635[label="",style="dashed", color="red", weight=0]; 4122[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 wy811 (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4123 -> 1487[label="",style="dashed", color="red", weight=0]; 4123[label="primMulNat wy780 wy81000",fontsize=16,color="magenta"];4123 -> 4819[label="",style="dashed", color="magenta", weight=3]; 4123 -> 4820[label="",style="dashed", color="magenta", weight=3]; 5080[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)))) (zipWith zip0 (wy8110 : wy8111) (enforceWHNF (WHNF (primPlusInt (Pos wy173) (Pos (Succ Zero)))) (numericEnumFrom (primPlusInt (Pos wy173) (Pos (Succ Zero)))))))",fontsize=16,color="black",shape="box"];5080 -> 5090[label="",style="solid", color="black", weight=3]; 4765[label="wy1830",fontsize=16,color="green",shape="box"];4766 -> 1487[label="",style="dashed", color="red", weight=0]; 4766[label="primMulNat wy410 wy44000",fontsize=16,color="magenta"];4766 -> 4862[label="",style="dashed", color="magenta", weight=3]; 4766 -> 4863[label="",style="dashed", color="magenta", weight=3]; 4767 -> 4627[label="",style="dashed", color="red", weight=0]; 4767[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4768[label="wy141",fontsize=16,color="green",shape="box"];4769 -> 4627[label="",style="dashed", color="red", weight=0]; 4769[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4770[label="wy1830",fontsize=16,color="green",shape="box"];4771 -> 1487[label="",style="dashed", color="red", weight=0]; 4771[label="primMulNat wy410 wy44000",fontsize=16,color="magenta"];4771 -> 4864[label="",style="dashed", color="magenta", weight=3]; 4771 -> 4865[label="",style="dashed", color="magenta", weight=3]; 4772[label="wy141",fontsize=16,color="green",shape="box"];4773 -> 4627[label="",style="dashed", color="red", weight=0]; 4773[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4774 -> 1487[label="",style="dashed", color="red", weight=0]; 4774[label="primMulNat wy410 wy44000",fontsize=16,color="magenta"];4774 -> 4866[label="",style="dashed", color="magenta", weight=3]; 4774 -> 4867[label="",style="dashed", color="magenta", weight=3]; 4775[label="wy141",fontsize=16,color="green",shape="box"];4776[label="wy141",fontsize=16,color="green",shape="box"];4777 -> 4627[label="",style="dashed", color="red", weight=0]; 4777[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4778 -> 1487[label="",style="dashed", color="red", weight=0]; 4778[label="primMulNat wy410 wy44000",fontsize=16,color="magenta"];4778 -> 4868[label="",style="dashed", color="magenta", weight=3]; 4778 -> 4869[label="",style="dashed", color="magenta", weight=3]; 4625[label="wy141",fontsize=16,color="green",shape="box"];4626[label="wy1840",fontsize=16,color="green",shape="box"];4627[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="triangle"];5362[label="wy441/wy4410 : wy4411",fontsize=10,color="white",style="solid",shape="box"];4627 -> 5362[label="",style="solid", color="burlywood", weight=9]; 5362 -> 4837[label="",style="solid", color="burlywood", weight=3]; 5363[label="wy441/[]",fontsize=10,color="white",style="solid",shape="box"];4627 -> 5363[label="",style="solid", color="burlywood", weight=9]; 5363 -> 4838[label="",style="solid", color="burlywood", weight=3]; 4628 -> 1487[label="",style="dashed", color="red", weight=0]; 4628[label="primMulNat wy410 wy44000",fontsize=16,color="magenta"];4628 -> 4839[label="",style="dashed", color="magenta", weight=3]; 4628 -> 4840[label="",style="dashed", color="magenta", weight=3]; 4712 -> 1487[label="",style="dashed", color="red", weight=0]; 4712[label="primMulNat wy410 wy44000",fontsize=16,color="magenta"];4712 -> 4841[label="",style="dashed", color="magenta", weight=3]; 4712 -> 4842[label="",style="dashed", color="magenta", weight=3]; 4713[label="wy141",fontsize=16,color="green",shape="box"];4714[label="wy1840",fontsize=16,color="green",shape="box"];4715 -> 4627[label="",style="dashed", color="red", weight=0]; 4715[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4779[label="wy141",fontsize=16,color="green",shape="box"];4780 -> 1487[label="",style="dashed", color="red", weight=0]; 4780[label="primMulNat wy410 wy44000",fontsize=16,color="magenta"];4780 -> 4870[label="",style="dashed", color="magenta", weight=3]; 4780 -> 4871[label="",style="dashed", color="magenta", weight=3]; 4781 -> 4627[label="",style="dashed", color="red", weight=0]; 4781[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4782 -> 4627[label="",style="dashed", color="red", weight=0]; 4782[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 wy441 (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];4783[label="wy141",fontsize=16,color="green",shape="box"];4784 -> 1487[label="",style="dashed", color="red", weight=0]; 4784[label="primMulNat wy410 wy44000",fontsize=16,color="magenta"];4784 -> 4872[label="",style="dashed", color="magenta", weight=3]; 4784 -> 4873[label="",style="dashed", color="magenta", weight=3]; 5081[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)))) (zipWith zip0 (wy4410 : wy4411) (enforceWHNF (WHNF (primPlusInt (Pos wy143) (Pos (Succ Zero)))) (numericEnumFrom (primPlusInt (Pos wy143) (Pos (Succ Zero)))))))",fontsize=16,color="black",shape="box"];5081 -> 5091[label="",style="solid", color="black", weight=3]; 4805[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 (wy8110 : wy8111) (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];4805 -> 4886[label="",style="solid", color="black", weight=3]; 4806[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 [] (numericEnumFrom $! Pos wy171 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];4806 -> 4887[label="",style="solid", color="black", weight=3]; 4807[label="wy780",fontsize=16,color="green",shape="box"];4808[label="wy81000",fontsize=16,color="green",shape="box"];4809[label="wy780",fontsize=16,color="green",shape="box"];4810[label="wy81000",fontsize=16,color="green",shape="box"];4858[label="wy780",fontsize=16,color="green",shape="box"];4859[label="wy81000",fontsize=16,color="green",shape="box"];4811[label="wy780",fontsize=16,color="green",shape="box"];4812[label="wy81000",fontsize=16,color="green",shape="box"];4813[label="wy780",fontsize=16,color="green",shape="box"];4814[label="wy81000",fontsize=16,color="green",shape="box"];4815[label="wy780",fontsize=16,color="green",shape="box"];4816[label="wy81000",fontsize=16,color="green",shape="box"];4817[label="wy780",fontsize=16,color="green",shape="box"];4818[label="wy81000",fontsize=16,color="green",shape="box"];4819[label="wy780",fontsize=16,color="green",shape="box"];4820[label="wy81000",fontsize=16,color="green",shape="box"];5090 -> 3470[label="",style="dashed", color="red", weight=0]; 5090[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Neg wy780)))) (zipWith zip0 (wy8110 : wy8111) (enforceWHNF (WHNF (Pos (primPlusNat wy173 (Succ Zero)))) (numericEnumFrom (Pos (primPlusNat wy173 (Succ Zero)))))))",fontsize=16,color="magenta"];5090 -> 5092[label="",style="dashed", color="magenta", weight=3]; 5090 -> 5093[label="",style="dashed", color="magenta", weight=3]; 5090 -> 5094[label="",style="dashed", color="magenta", weight=3]; 5090 -> 5095[label="",style="dashed", color="magenta", weight=3]; 4862[label="wy410",fontsize=16,color="green",shape="box"];4863[label="wy44000",fontsize=16,color="green",shape="box"];4864[label="wy410",fontsize=16,color="green",shape="box"];4865[label="wy44000",fontsize=16,color="green",shape="box"];4866[label="wy410",fontsize=16,color="green",shape="box"];4867[label="wy44000",fontsize=16,color="green",shape="box"];4868[label="wy410",fontsize=16,color="green",shape="box"];4869[label="wy44000",fontsize=16,color="green",shape="box"];4837[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 (wy4410 : wy4411) (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];4837 -> 4890[label="",style="solid", color="black", weight=3]; 4838[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 [] (numericEnumFrom $! Pos wy141 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];4838 -> 4891[label="",style="solid", color="black", weight=3]; 4839[label="wy410",fontsize=16,color="green",shape="box"];4840[label="wy44000",fontsize=16,color="green",shape="box"];4841[label="wy410",fontsize=16,color="green",shape="box"];4842[label="wy44000",fontsize=16,color="green",shape="box"];4870[label="wy410",fontsize=16,color="green",shape="box"];4871[label="wy44000",fontsize=16,color="green",shape="box"];4872[label="wy410",fontsize=16,color="green",shape="box"];4873[label="wy44000",fontsize=16,color="green",shape="box"];5091 -> 2726[label="",style="dashed", color="red", weight=0]; 5091[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Neg wy410)))) (zipWith zip0 (wy4410 : wy4411) (enforceWHNF (WHNF (Pos (primPlusNat wy143 (Succ Zero)))) (numericEnumFrom (Pos (primPlusNat wy143 (Succ Zero)))))))",fontsize=16,color="magenta"];5091 -> 5096[label="",style="dashed", color="magenta", weight=3]; 5091 -> 5097[label="",style="dashed", color="magenta", weight=3]; 5091 -> 5098[label="",style="dashed", color="magenta", weight=3]; 5091 -> 5099[label="",style="dashed", color="magenta", weight=3]; 4886[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 (wy8110 : wy8111) (Pos wy171 + fromInt (Pos (Succ Zero)) `seq` numericEnumFrom (Pos wy171 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];4886 -> 4895[label="",style="solid", color="black", weight=3]; 4887 -> 3417[label="",style="dashed", color="red", weight=0]; 4887[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) [])",fontsize=16,color="magenta"];5092 -> 1932[label="",style="dashed", color="red", weight=0]; 5092[label="primPlusNat wy173 (Succ Zero)",fontsize=16,color="magenta"];5092 -> 5100[label="",style="dashed", color="magenta", weight=3]; 5092 -> 5101[label="",style="dashed", color="magenta", weight=3]; 5093[label="wy8111",fontsize=16,color="green",shape="box"];5094 -> 1932[label="",style="dashed", color="red", weight=0]; 5094[label="primPlusNat wy173 (Succ Zero)",fontsize=16,color="magenta"];5094 -> 5102[label="",style="dashed", color="magenta", weight=3]; 5094 -> 5103[label="",style="dashed", color="magenta", weight=3]; 5095[label="wy8110",fontsize=16,color="green",shape="box"];4890[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 (wy4410 : wy4411) (Pos wy141 + fromInt (Pos (Succ Zero)) `seq` numericEnumFrom (Pos wy141 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];4890 -> 4897[label="",style="solid", color="black", weight=3]; 4891 -> 2302[label="",style="dashed", color="red", weight=0]; 4891[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) [])",fontsize=16,color="magenta"];5096[label="wy4410",fontsize=16,color="green",shape="box"];5097 -> 1932[label="",style="dashed", color="red", weight=0]; 5097[label="primPlusNat wy143 (Succ Zero)",fontsize=16,color="magenta"];5097 -> 5104[label="",style="dashed", color="magenta", weight=3]; 5097 -> 5105[label="",style="dashed", color="magenta", weight=3]; 5098 -> 1932[label="",style="dashed", color="red", weight=0]; 5098[label="primPlusNat wy143 (Succ Zero)",fontsize=16,color="magenta"];5098 -> 5106[label="",style="dashed", color="magenta", weight=3]; 5098 -> 5107[label="",style="dashed", color="magenta", weight=3]; 5099[label="wy4411",fontsize=16,color="green",shape="box"];4895[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 (wy8110 : wy8111) (enforceWHNF (WHNF (Pos wy171 + fromInt (Pos (Succ Zero)))) (numericEnumFrom (Pos wy171 + fromInt (Pos (Succ Zero)))))))",fontsize=16,color="black",shape="box"];4895 -> 4900[label="",style="solid", color="black", weight=3]; 5100[label="Succ Zero",fontsize=16,color="green",shape="box"];5101[label="wy173",fontsize=16,color="green",shape="box"];5102[label="Succ Zero",fontsize=16,color="green",shape="box"];5103[label="wy173",fontsize=16,color="green",shape="box"];4897[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 (wy4410 : wy4411) (enforceWHNF (WHNF (Pos wy141 + fromInt (Pos (Succ Zero)))) (numericEnumFrom (Pos wy141 + fromInt (Pos (Succ Zero)))))))",fontsize=16,color="black",shape="box"];4897 -> 4902[label="",style="solid", color="black", weight=3]; 5104[label="Succ Zero",fontsize=16,color="green",shape="box"];5105[label="wy143",fontsize=16,color="green",shape="box"];5106[label="Succ Zero",fontsize=16,color="green",shape="box"];5107[label="wy143",fontsize=16,color="green",shape="box"];4900[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 (wy8110 : wy8111) (enforceWHNF (WHNF (primPlusInt (Pos wy171) (fromInt (Pos (Succ Zero))))) (numericEnumFrom (primPlusInt (Pos wy171) (fromInt (Pos (Succ Zero))))))))",fontsize=16,color="black",shape="box"];4900 -> 4906[label="",style="solid", color="black", weight=3]; 4902[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 (wy4410 : wy4411) (enforceWHNF (WHNF (primPlusInt (Pos wy141) (fromInt (Pos (Succ Zero))))) (numericEnumFrom (primPlusInt (Pos wy141) (fromInt (Pos (Succ Zero))))))))",fontsize=16,color="black",shape="box"];4902 -> 4908[label="",style="solid", color="black", weight=3]; 4906[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 (wy8110 : wy8111) (enforceWHNF (WHNF (primPlusInt (Pos wy171) (Pos (Succ Zero)))) (numericEnumFrom (primPlusInt (Pos wy171) (Pos (Succ Zero)))))))",fontsize=16,color="black",shape="box"];4906 -> 4912[label="",style="solid", color="black", weight=3]; 4908[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 (wy4410 : wy4411) (enforceWHNF (WHNF (primPlusInt (Pos wy141) (Pos (Succ Zero)))) (numericEnumFrom (primPlusInt (Pos wy141) (Pos (Succ Zero)))))))",fontsize=16,color="black",shape="box"];4908 -> 4914[label="",style="solid", color="black", weight=3]; 4912 -> 3467[label="",style="dashed", color="red", weight=0]; 4912[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Pos (Succ wy80)) (Pos wy780)))) (zipWith zip0 (wy8110 : wy8111) (enforceWHNF (WHNF (Pos (primPlusNat wy171 (Succ Zero)))) (numericEnumFrom (Pos (primPlusNat wy171 (Succ Zero)))))))",fontsize=16,color="magenta"];4912 -> 5002[label="",style="dashed", color="magenta", weight=3]; 4912 -> 5003[label="",style="dashed", color="magenta", weight=3]; 4912 -> 5004[label="",style="dashed", color="magenta", weight=3]; 4912 -> 5005[label="",style="dashed", color="magenta", weight=3]; 4914 -> 2723[label="",style="dashed", color="red", weight=0]; 4914[label="foldr (++) [] (map (List.findIndices0 (primEqFloat (Float (Neg (Succ wy43)) (Pos wy410)))) (zipWith zip0 (wy4410 : wy4411) (enforceWHNF (WHNF (Pos (primPlusNat wy141 (Succ Zero)))) (numericEnumFrom (Pos (primPlusNat wy141 (Succ Zero)))))))",fontsize=16,color="magenta"];4914 -> 5006[label="",style="dashed", color="magenta", weight=3]; 4914 -> 5007[label="",style="dashed", color="magenta", weight=3]; 4914 -> 5008[label="",style="dashed", color="magenta", weight=3]; 4914 -> 5009[label="",style="dashed", color="magenta", weight=3]; 5002 -> 1932[label="",style="dashed", color="red", weight=0]; 5002[label="primPlusNat wy171 (Succ Zero)",fontsize=16,color="magenta"];5002 -> 5020[label="",style="dashed", color="magenta", weight=3]; 5002 -> 5021[label="",style="dashed", color="magenta", weight=3]; 5003 -> 1932[label="",style="dashed", color="red", weight=0]; 5003[label="primPlusNat wy171 (Succ Zero)",fontsize=16,color="magenta"];5003 -> 5022[label="",style="dashed", color="magenta", weight=3]; 5003 -> 5023[label="",style="dashed", color="magenta", weight=3]; 5004[label="wy8111",fontsize=16,color="green",shape="box"];5005[label="wy8110",fontsize=16,color="green",shape="box"];5006[label="wy4410",fontsize=16,color="green",shape="box"];5007 -> 1932[label="",style="dashed", color="red", weight=0]; 5007[label="primPlusNat wy141 (Succ Zero)",fontsize=16,color="magenta"];5007 -> 5024[label="",style="dashed", color="magenta", weight=3]; 5007 -> 5025[label="",style="dashed", color="magenta", weight=3]; 5008 -> 1932[label="",style="dashed", color="red", weight=0]; 5008[label="primPlusNat wy141 (Succ Zero)",fontsize=16,color="magenta"];5008 -> 5026[label="",style="dashed", color="magenta", weight=3]; 5008 -> 5027[label="",style="dashed", color="magenta", weight=3]; 5009[label="wy4411",fontsize=16,color="green",shape="box"];5020[label="Succ Zero",fontsize=16,color="green",shape="box"];5021[label="wy171",fontsize=16,color="green",shape="box"];5022[label="Succ Zero",fontsize=16,color="green",shape="box"];5023[label="wy171",fontsize=16,color="green",shape="box"];5024[label="Succ Zero",fontsize=16,color="green",shape="box"];5025[label="wy141",fontsize=16,color="green",shape="box"];5026[label="Succ Zero",fontsize=16,color="green",shape="box"];5027[label="wy141",fontsize=16,color="green",shape="box"];} ---------------------------------------- (14) Complex Obligation (AND) ---------------------------------------- (15) Obligation: Q DP problem: The TRS P consists of the following rules: new_foldr12(wy80, wy780, Float(wy8100, Neg(wy81010)), wy811, wy174, wy173) -> new_foldr11(wy80, wy780, wy811, wy173) new_foldr12(wy80, wy780, Float(wy8100, Pos(wy81010)), :(wy8110, wy8111), wy174, wy173) -> new_foldr12(wy80, wy780, wy8110, wy8111, new_primPlusNat0(wy173, Succ(Zero)), new_primPlusNat0(wy173, Succ(Zero))) new_foldr11(wy80, wy780, :(wy8110, wy8111), wy173) -> new_foldr12(wy80, wy780, wy8110, wy8111, new_primPlusNat0(wy173, Succ(Zero)), new_primPlusNat0(wy173, Succ(Zero))) The TRS R consists of the following rules: new_primPlusNat0(Succ(wy5100), Zero) -> Succ(wy5100) new_primPlusNat0(Zero, Succ(wy401000)) -> Succ(wy401000) new_primPlusNat0(Succ(wy5100), Succ(wy401000)) -> Succ(Succ(new_primPlusNat0(wy5100, wy401000))) new_primPlusNat0(Zero, Zero) -> Zero The set Q consists of the following terms: new_primPlusNat0(Succ(x0), Succ(x1)) new_primPlusNat0(Succ(x0), Zero) new_primPlusNat0(Zero, Succ(x0)) new_primPlusNat0(Zero, Zero) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (16) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_foldr11(wy80, wy780, :(wy8110, wy8111), wy173) -> new_foldr12(wy80, wy780, wy8110, wy8111, new_primPlusNat0(wy173, Succ(Zero)), new_primPlusNat0(wy173, Succ(Zero))) The graph contains the following edges 1 >= 1, 2 >= 2, 3 > 3, 3 > 4 *new_foldr12(wy80, wy780, Float(wy8100, Pos(wy81010)), :(wy8110, wy8111), wy174, wy173) -> new_foldr12(wy80, wy780, wy8110, wy8111, new_primPlusNat0(wy173, Succ(Zero)), new_primPlusNat0(wy173, Succ(Zero))) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_foldr12(wy80, wy780, Float(wy8100, Neg(wy81010)), wy811, wy174, wy173) -> new_foldr11(wy80, wy780, wy811, wy173) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 6 >= 4 ---------------------------------------- (17) YES ---------------------------------------- (18) Obligation: Q DP problem: The TRS P consists of the following rules: new_psPs0(wy123, Succ(wy1790), wy310, Pos(wy41000), wy411) -> new_foldr(wy310, wy411, wy123) new_foldr(wy310, :(wy4110, wy4111), wy123) -> new_foldr0(wy310, wy4110, wy4111, new_primPlusNat0(wy123, Succ(Zero)), new_primPlusNat0(wy123, Succ(Zero))) new_psPs0(wy123, Succ(wy1790), wy310, Neg(wy41000), wy411) -> new_foldr(wy310, wy411, wy123) new_psPs0(wy123, Zero, wy310, Pos(wy41000), wy411) -> new_foldr(wy310, wy411, wy123) new_foldr0(wy310, Float(wy4100, Pos(wy41010)), wy411, wy124, wy123) -> new_psPs0(wy123, new_primMulNat0(Zero, wy41010), wy310, wy4100, wy411) new_psPs1(wy123, Zero, wy310, Pos(wy41000), wy411) -> new_foldr(wy310, wy411, wy123) new_psPs1(wy123, Zero, wy310, Neg(wy41000), wy411) -> new_foldr(wy310, wy411, wy123) new_foldr0(wy310, Float(wy4100, Neg(wy41010)), wy411, wy124, wy123) -> new_psPs1(wy123, new_primMulNat0(Zero, wy41010), wy310, wy4100, wy411) new_psPs1(wy123, Succ(wy1800), wy310, Pos(wy41000), wy411) -> new_foldr(wy310, wy411, wy123) new_psPs1(wy123, Succ(wy1800), wy310, Neg(wy41000), wy411) -> new_foldr(wy310, wy411, wy123) new_psPs0(wy123, Zero, wy310, Neg(wy41000), wy411) -> new_foldr(wy310, wy411, wy123) The TRS R consists of the following rules: new_primPlusNat0(Succ(wy5100), Zero) -> Succ(wy5100) new_primPlusNat0(Zero, Succ(wy401000)) -> Succ(wy401000) new_primMulNat0(Zero, Zero) -> Zero new_primPlusNat0(Succ(wy5100), Succ(wy401000)) -> Succ(Succ(new_primPlusNat0(wy5100, wy401000))) new_primPlusNat0(Zero, Zero) -> Zero new_primMulNat0(Succ(wy3100), Succ(wy40000)) -> new_primPlusNat1(new_primMulNat0(wy3100, Succ(wy40000)), wy40000) new_primPlusNat1(Succ(wy510), wy40100) -> Succ(Succ(new_primPlusNat0(wy510, wy40100))) new_primMulNat0(Succ(wy3100), Zero) -> Zero new_primMulNat0(Zero, Succ(wy40000)) -> Zero new_primPlusNat1(Zero, wy40100) -> Succ(wy40100) The set Q consists of the following terms: new_primPlusNat0(Succ(x0), Succ(x1)) new_primMulNat0(Succ(x0), Succ(x1)) new_primMulNat0(Zero, Succ(x0)) new_primMulNat0(Zero, Zero) new_primMulNat0(Succ(x0), Zero) new_primPlusNat0(Succ(x0), Zero) new_primPlusNat1(Zero, x0) new_primPlusNat0(Zero, Succ(x0)) new_primPlusNat0(Zero, Zero) new_primPlusNat1(Succ(x0), x1) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (19) DependencyGraphProof (EQUIVALENT) The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 1 SCC with 4 less nodes. ---------------------------------------- (20) Obligation: Q DP problem: The TRS P consists of the following rules: new_foldr0(wy310, Float(wy4100, Pos(wy41010)), wy411, wy124, wy123) -> new_psPs0(wy123, new_primMulNat0(Zero, wy41010), wy310, wy4100, wy411) new_psPs0(wy123, Zero, wy310, Pos(wy41000), wy411) -> new_foldr(wy310, wy411, wy123) new_foldr(wy310, :(wy4110, wy4111), wy123) -> new_foldr0(wy310, wy4110, wy4111, new_primPlusNat0(wy123, Succ(Zero)), new_primPlusNat0(wy123, Succ(Zero))) new_foldr0(wy310, Float(wy4100, Neg(wy41010)), wy411, wy124, wy123) -> new_psPs1(wy123, new_primMulNat0(Zero, wy41010), wy310, wy4100, wy411) new_psPs1(wy123, Zero, wy310, Pos(wy41000), wy411) -> new_foldr(wy310, wy411, wy123) new_psPs1(wy123, Zero, wy310, Neg(wy41000), wy411) -> new_foldr(wy310, wy411, wy123) new_psPs0(wy123, Zero, wy310, Neg(wy41000), wy411) -> new_foldr(wy310, wy411, wy123) The TRS R consists of the following rules: new_primPlusNat0(Succ(wy5100), Zero) -> Succ(wy5100) new_primPlusNat0(Zero, Succ(wy401000)) -> Succ(wy401000) new_primMulNat0(Zero, Zero) -> Zero new_primPlusNat0(Succ(wy5100), Succ(wy401000)) -> Succ(Succ(new_primPlusNat0(wy5100, wy401000))) new_primPlusNat0(Zero, Zero) -> Zero new_primMulNat0(Succ(wy3100), Succ(wy40000)) -> new_primPlusNat1(new_primMulNat0(wy3100, Succ(wy40000)), wy40000) new_primPlusNat1(Succ(wy510), wy40100) -> Succ(Succ(new_primPlusNat0(wy510, wy40100))) new_primMulNat0(Succ(wy3100), Zero) -> Zero new_primMulNat0(Zero, Succ(wy40000)) -> Zero new_primPlusNat1(Zero, wy40100) -> Succ(wy40100) The set Q consists of the following terms: new_primPlusNat0(Succ(x0), Succ(x1)) new_primMulNat0(Succ(x0), Succ(x1)) new_primMulNat0(Zero, Succ(x0)) new_primMulNat0(Zero, Zero) new_primMulNat0(Succ(x0), Zero) new_primPlusNat0(Succ(x0), Zero) new_primPlusNat1(Zero, x0) new_primPlusNat0(Zero, Succ(x0)) new_primPlusNat0(Zero, Zero) new_primPlusNat1(Succ(x0), x1) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (21) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_foldr(wy310, :(wy4110, wy4111), wy123) -> new_foldr0(wy310, wy4110, wy4111, new_primPlusNat0(wy123, Succ(Zero)), new_primPlusNat0(wy123, Succ(Zero))) The graph contains the following edges 1 >= 1, 2 > 2, 2 > 3 *new_foldr0(wy310, Float(wy4100, Pos(wy41010)), wy411, wy124, wy123) -> new_psPs0(wy123, new_primMulNat0(Zero, wy41010), wy310, wy4100, wy411) The graph contains the following edges 5 >= 1, 1 >= 3, 2 > 4, 3 >= 5 *new_foldr0(wy310, Float(wy4100, Neg(wy41010)), wy411, wy124, wy123) -> new_psPs1(wy123, new_primMulNat0(Zero, wy41010), wy310, wy4100, wy411) The graph contains the following edges 5 >= 1, 1 >= 3, 2 > 4, 3 >= 5 *new_psPs0(wy123, Zero, wy310, Pos(wy41000), wy411) -> new_foldr(wy310, wy411, wy123) The graph contains the following edges 3 >= 1, 5 >= 2, 1 >= 3 *new_psPs0(wy123, Zero, wy310, Neg(wy41000), wy411) -> new_foldr(wy310, wy411, wy123) The graph contains the following edges 3 >= 1, 5 >= 2, 1 >= 3 *new_psPs1(wy123, Zero, wy310, Pos(wy41000), wy411) -> new_foldr(wy310, wy411, wy123) The graph contains the following edges 3 >= 1, 5 >= 2, 1 >= 3 *new_psPs1(wy123, Zero, wy310, Neg(wy41000), wy411) -> new_foldr(wy310, wy411, wy123) The graph contains the following edges 3 >= 1, 5 >= 2, 1 >= 3 ---------------------------------------- (22) YES ---------------------------------------- (23) Obligation: Q DP problem: The TRS P consists of the following rules: new_foldr14(wy80, wy780, Float(wy8100, Pos(wy81010)), wy811, wy172, wy171) -> new_psPs6(wy171, new_primMulNat0(Succ(wy80), wy81010), wy780, wy8100, wy80, wy811) new_psPs6(wy171, Succ(wy1860), wy780, Pos(wy81000), wy80, :(wy8110, wy8111)) -> new_foldr14(wy80, wy780, wy8110, wy8111, new_primPlusNat0(wy171, Succ(Zero)), new_primPlusNat0(wy171, Succ(Zero))) new_psPs6(wy171, Succ(wy1860), wy780, Neg(wy81000), wy80, wy811) -> new_foldr13(wy80, wy780, wy811, wy171) new_psPs7(wy171, Succ(wy1870), wy780, Neg(wy81000), wy80, wy811) -> new_foldr13(wy80, wy780, wy811, wy171) new_psPs7(wy171, Succ(wy1870), wy780, Pos(wy81000), wy80, wy811) -> new_foldr13(wy80, wy780, wy811, wy171) new_psPs7(wy171, Zero, wy780, Pos(wy81000), wy80, wy811) -> new_foldr13(wy80, wy780, wy811, wy171) new_foldr13(wy80, wy780, :(wy8110, wy8111), wy171) -> new_foldr14(wy80, wy780, wy8110, wy8111, new_primPlusNat0(wy171, Succ(Zero)), new_primPlusNat0(wy171, Succ(Zero))) new_psPs6(wy171, Zero, wy780, Pos(wy81000), wy80, wy811) -> new_foldr13(wy80, wy780, wy811, wy171) new_foldr14(wy80, wy780, Float(wy8100, Neg(wy81010)), wy811, wy172, wy171) -> new_psPs7(wy171, new_primMulNat0(Succ(wy80), wy81010), wy780, wy8100, wy80, wy811) new_psPs6(wy171, Zero, wy780, Neg(wy81000), wy80, wy811) -> new_foldr13(wy80, wy780, wy811, wy171) new_psPs7(wy171, Zero, wy780, Neg(wy81000), wy80, wy811) -> new_foldr13(wy80, wy780, wy811, wy171) The TRS R consists of the following rules: new_primPlusNat0(Succ(wy5100), Zero) -> Succ(wy5100) new_primPlusNat0(Zero, Succ(wy401000)) -> Succ(wy401000) new_primMulNat0(Zero, Zero) -> Zero new_primPlusNat0(Succ(wy5100), Succ(wy401000)) -> Succ(Succ(new_primPlusNat0(wy5100, wy401000))) new_primPlusNat0(Zero, Zero) -> Zero new_primMulNat0(Succ(wy3100), Succ(wy40000)) -> new_primPlusNat1(new_primMulNat0(wy3100, Succ(wy40000)), wy40000) new_primPlusNat1(Succ(wy510), wy40100) -> Succ(Succ(new_primPlusNat0(wy510, wy40100))) new_primMulNat0(Succ(wy3100), Zero) -> Zero new_primMulNat0(Zero, Succ(wy40000)) -> Zero new_primPlusNat1(Zero, wy40100) -> Succ(wy40100) The set Q consists of the following terms: new_primPlusNat0(Succ(x0), Succ(x1)) new_primMulNat0(Succ(x0), Succ(x1)) new_primMulNat0(Zero, Succ(x0)) new_primMulNat0(Zero, Zero) new_primMulNat0(Succ(x0), Zero) new_primPlusNat0(Succ(x0), Zero) new_primPlusNat1(Zero, x0) new_primPlusNat0(Zero, Succ(x0)) new_primPlusNat0(Zero, Zero) new_primPlusNat1(Succ(x0), x1) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (24) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_psPs6(wy171, Succ(wy1860), wy780, Pos(wy81000), wy80, :(wy8110, wy8111)) -> new_foldr14(wy80, wy780, wy8110, wy8111, new_primPlusNat0(wy171, Succ(Zero)), new_primPlusNat0(wy171, Succ(Zero))) The graph contains the following edges 5 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_foldr13(wy80, wy780, :(wy8110, wy8111), wy171) -> new_foldr14(wy80, wy780, wy8110, wy8111, new_primPlusNat0(wy171, Succ(Zero)), new_primPlusNat0(wy171, Succ(Zero))) The graph contains the following edges 1 >= 1, 2 >= 2, 3 > 3, 3 > 4 *new_foldr14(wy80, wy780, Float(wy8100, Pos(wy81010)), wy811, wy172, wy171) -> new_psPs6(wy171, new_primMulNat0(Succ(wy80), wy81010), wy780, wy8100, wy80, wy811) The graph contains the following edges 6 >= 1, 2 >= 3, 3 > 4, 1 >= 5, 4 >= 6 *new_foldr14(wy80, wy780, Float(wy8100, Neg(wy81010)), wy811, wy172, wy171) -> new_psPs7(wy171, new_primMulNat0(Succ(wy80), wy81010), wy780, wy8100, wy80, wy811) The graph contains the following edges 6 >= 1, 2 >= 3, 3 > 4, 1 >= 5, 4 >= 6 *new_psPs6(wy171, Succ(wy1860), wy780, Neg(wy81000), wy80, wy811) -> new_foldr13(wy80, wy780, wy811, wy171) The graph contains the following edges 5 >= 1, 3 >= 2, 6 >= 3, 1 >= 4 *new_psPs6(wy171, Zero, wy780, Pos(wy81000), wy80, wy811) -> new_foldr13(wy80, wy780, wy811, wy171) The graph contains the following edges 5 >= 1, 3 >= 2, 6 >= 3, 1 >= 4 *new_psPs6(wy171, Zero, wy780, Neg(wy81000), wy80, wy811) -> new_foldr13(wy80, wy780, wy811, wy171) The graph contains the following edges 5 >= 1, 3 >= 2, 6 >= 3, 1 >= 4 *new_psPs7(wy171, Succ(wy1870), wy780, Neg(wy81000), wy80, wy811) -> new_foldr13(wy80, wy780, wy811, wy171) The graph contains the following edges 5 >= 1, 3 >= 2, 6 >= 3, 1 >= 4 *new_psPs7(wy171, Succ(wy1870), wy780, Pos(wy81000), wy80, wy811) -> new_foldr13(wy80, wy780, wy811, wy171) The graph contains the following edges 5 >= 1, 3 >= 2, 6 >= 3, 1 >= 4 *new_psPs7(wy171, Zero, wy780, Pos(wy81000), wy80, wy811) -> new_foldr13(wy80, wy780, wy811, wy171) The graph contains the following edges 5 >= 1, 3 >= 2, 6 >= 3, 1 >= 4 *new_psPs7(wy171, Zero, wy780, Neg(wy81000), wy80, wy811) -> new_foldr13(wy80, wy780, wy811, wy171) The graph contains the following edges 5 >= 1, 3 >= 2, 6 >= 3, 1 >= 4 ---------------------------------------- (25) YES ---------------------------------------- (26) Obligation: Q DP problem: The TRS P consists of the following rules: new_foldr10(wy310, Float(wy4100, Pos(wy41010)), wy411, wy122, wy121) -> new_foldr9(wy310, wy411, wy121) new_foldr10(wy310, Float(wy4100, Neg(wy41010)), wy411, wy122, wy121) -> new_foldr9(wy310, wy411, wy121) new_foldr9(wy310, :(wy4110, wy4111), wy121) -> new_foldr10(wy310, wy4110, wy4111, new_primPlusNat0(wy121, Succ(Zero)), new_primPlusNat0(wy121, Succ(Zero))) The TRS R consists of the following rules: new_primPlusNat0(Succ(wy5100), Zero) -> Succ(wy5100) new_primPlusNat0(Zero, Succ(wy401000)) -> Succ(wy401000) new_primPlusNat0(Succ(wy5100), Succ(wy401000)) -> Succ(Succ(new_primPlusNat0(wy5100, wy401000))) new_primPlusNat0(Zero, Zero) -> Zero The set Q consists of the following terms: new_primPlusNat0(Succ(x0), Succ(x1)) new_primPlusNat0(Succ(x0), Zero) new_primPlusNat0(Zero, Succ(x0)) new_primPlusNat0(Zero, Zero) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (27) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_foldr9(wy310, :(wy4110, wy4111), wy121) -> new_foldr10(wy310, wy4110, wy4111, new_primPlusNat0(wy121, Succ(Zero)), new_primPlusNat0(wy121, Succ(Zero))) The graph contains the following edges 1 >= 1, 2 > 2, 2 > 3 *new_foldr10(wy310, Float(wy4100, Pos(wy41010)), wy411, wy122, wy121) -> new_foldr9(wy310, wy411, wy121) The graph contains the following edges 1 >= 1, 3 >= 2, 5 >= 3 *new_foldr10(wy310, Float(wy4100, Neg(wy41010)), wy411, wy122, wy121) -> new_foldr9(wy310, wy411, wy121) The graph contains the following edges 1 >= 1, 3 >= 2, 5 >= 3 ---------------------------------------- (28) YES ---------------------------------------- (29) Obligation: Q DP problem: The TRS P consists of the following rules: new_psPs(wy121, Succ(wy17800), Succ(wy22300), wy222) -> new_psPs(wy121, wy17800, wy22300, wy222) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (30) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_psPs(wy121, Succ(wy17800), Succ(wy22300), wy222) -> new_psPs(wy121, wy17800, wy22300, wy222) The graph contains the following edges 1 >= 1, 2 > 2, 3 > 3, 4 >= 4 ---------------------------------------- (31) YES ---------------------------------------- (32) Obligation: Q DP problem: The TRS P consists of the following rules: new_foldr5(wy310, :(wy4110, wy4111), wy125) -> new_foldr6(wy310, wy4110, wy4111, new_primPlusNat0(wy125, Succ(Zero)), new_primPlusNat0(wy125, Succ(Zero))) new_foldr6(wy310, wy4110, wy4111, wy221, wy220) -> new_foldr5(wy310, wy4111, wy220) The TRS R consists of the following rules: new_primPlusNat0(Succ(wy5100), Zero) -> Succ(wy5100) new_primPlusNat0(Zero, Succ(wy401000)) -> Succ(wy401000) new_primPlusNat0(Succ(wy5100), Succ(wy401000)) -> Succ(Succ(new_primPlusNat0(wy5100, wy401000))) new_primPlusNat0(Zero, Zero) -> Zero The set Q consists of the following terms: new_primPlusNat0(Succ(x0), Succ(x1)) new_primPlusNat0(Succ(x0), Zero) new_primPlusNat0(Zero, Succ(x0)) new_primPlusNat0(Zero, Zero) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (33) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_foldr6(wy310, wy4110, wy4111, wy221, wy220) -> new_foldr5(wy310, wy4111, wy220) The graph contains the following edges 1 >= 1, 3 >= 2, 5 >= 3 *new_foldr5(wy310, :(wy4110, wy4111), wy125) -> new_foldr6(wy310, wy4110, wy4111, new_primPlusNat0(wy125, Succ(Zero)), new_primPlusNat0(wy125, Succ(Zero))) The graph contains the following edges 1 >= 1, 2 > 2, 2 > 3 ---------------------------------------- (34) YES ---------------------------------------- (35) Obligation: Q DP problem: The TRS P consists of the following rules: new_foldr8(wy43, wy410, Float(wy4400, Pos(wy44010)), :(wy4410, wy4411), wy144, wy143) -> new_foldr8(wy43, wy410, wy4410, wy4411, new_primPlusNat0(wy143, Succ(Zero)), new_primPlusNat0(wy143, Succ(Zero))) new_foldr7(wy43, wy410, :(wy4410, wy4411), wy143) -> new_foldr8(wy43, wy410, wy4410, wy4411, new_primPlusNat0(wy143, Succ(Zero)), new_primPlusNat0(wy143, Succ(Zero))) new_foldr8(wy43, wy410, Float(wy4400, Neg(wy44010)), wy441, wy144, wy143) -> new_foldr7(wy43, wy410, wy441, wy143) The TRS R consists of the following rules: new_primPlusNat0(Succ(wy5100), Zero) -> Succ(wy5100) new_primPlusNat0(Zero, Succ(wy401000)) -> Succ(wy401000) new_primPlusNat0(Succ(wy5100), Succ(wy401000)) -> Succ(Succ(new_primPlusNat0(wy5100, wy401000))) new_primPlusNat0(Zero, Zero) -> Zero The set Q consists of the following terms: new_primPlusNat0(Succ(x0), Succ(x1)) new_primPlusNat0(Succ(x0), Zero) new_primPlusNat0(Zero, Succ(x0)) new_primPlusNat0(Zero, Zero) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (36) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_foldr8(wy43, wy410, Float(wy4400, Pos(wy44010)), :(wy4410, wy4411), wy144, wy143) -> new_foldr8(wy43, wy410, wy4410, wy4411, new_primPlusNat0(wy143, Succ(Zero)), new_primPlusNat0(wy143, Succ(Zero))) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_foldr8(wy43, wy410, Float(wy4400, Neg(wy44010)), wy441, wy144, wy143) -> new_foldr7(wy43, wy410, wy441, wy143) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 6 >= 4 *new_foldr7(wy43, wy410, :(wy4410, wy4411), wy143) -> new_foldr8(wy43, wy410, wy4410, wy4411, new_primPlusNat0(wy143, Succ(Zero)), new_primPlusNat0(wy143, Succ(Zero))) The graph contains the following edges 1 >= 1, 2 >= 2, 3 > 3, 3 > 4 ---------------------------------------- (37) YES ---------------------------------------- (38) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMulNat(Succ(wy3100), Succ(wy40000)) -> new_primMulNat(wy3100, Succ(wy40000)) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (39) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primMulNat(Succ(wy3100), Succ(wy40000)) -> new_primMulNat(wy3100, Succ(wy40000)) The graph contains the following edges 1 > 1, 2 >= 2 ---------------------------------------- (40) YES ---------------------------------------- (41) Obligation: Q DP problem: The TRS P consists of the following rules: new_psPs3(wy141, Zero, wy410, Neg(wy44000), wy43, wy441) -> new_foldr1(wy43, wy410, wy441, wy141) new_foldr2(wy43, wy410, Float(wy4400, Neg(wy44010)), wy441, wy142, wy141) -> new_psPs3(wy141, new_primMulNat0(Succ(wy43), wy44010), wy410, wy4400, wy43, wy441) new_foldr2(wy43, wy410, Float(wy4400, Pos(wy44010)), wy441, wy142, wy141) -> new_psPs2(wy141, new_primMulNat0(Succ(wy43), wy44010), wy410, wy4400, wy43, wy441) new_psPs2(wy141, Zero, wy410, Neg(wy44000), wy43, wy441) -> new_foldr1(wy43, wy410, wy441, wy141) new_foldr1(wy43, wy410, :(wy4410, wy4411), wy141) -> new_foldr2(wy43, wy410, wy4410, wy4411, new_primPlusNat0(wy141, Succ(Zero)), new_primPlusNat0(wy141, Succ(Zero))) new_psPs3(wy141, Succ(wy1840), wy410, Neg(wy44000), wy43, wy441) -> new_foldr1(wy43, wy410, wy441, wy141) new_psPs2(wy141, Succ(wy1830), wy410, Pos(wy44000), wy43, wy441) -> new_foldr1(wy43, wy410, wy441, wy141) new_psPs2(wy141, Succ(wy1830), wy410, Neg(wy44000), wy43, wy441) -> new_foldr1(wy43, wy410, wy441, wy141) new_psPs2(wy141, Zero, wy410, Pos(wy44000), wy43, wy441) -> new_foldr1(wy43, wy410, wy441, wy141) new_psPs3(wy141, Succ(wy1840), wy410, Pos(wy44000), wy43, :(wy4410, wy4411)) -> new_foldr2(wy43, wy410, wy4410, wy4411, new_primPlusNat0(wy141, Succ(Zero)), new_primPlusNat0(wy141, Succ(Zero))) new_psPs3(wy141, Zero, wy410, Pos(wy44000), wy43, wy441) -> new_foldr1(wy43, wy410, wy441, wy141) The TRS R consists of the following rules: new_primPlusNat0(Succ(wy5100), Zero) -> Succ(wy5100) new_primPlusNat0(Zero, Succ(wy401000)) -> Succ(wy401000) new_primMulNat0(Zero, Zero) -> Zero new_primPlusNat0(Succ(wy5100), Succ(wy401000)) -> Succ(Succ(new_primPlusNat0(wy5100, wy401000))) new_primPlusNat0(Zero, Zero) -> Zero new_primMulNat0(Succ(wy3100), Succ(wy40000)) -> new_primPlusNat1(new_primMulNat0(wy3100, Succ(wy40000)), wy40000) new_primPlusNat1(Succ(wy510), wy40100) -> Succ(Succ(new_primPlusNat0(wy510, wy40100))) new_primMulNat0(Succ(wy3100), Zero) -> Zero new_primMulNat0(Zero, Succ(wy40000)) -> Zero new_primPlusNat1(Zero, wy40100) -> Succ(wy40100) The set Q consists of the following terms: new_primPlusNat0(Succ(x0), Succ(x1)) new_primMulNat0(Succ(x0), Succ(x1)) new_primMulNat0(Zero, Succ(x0)) new_primMulNat0(Zero, Zero) new_primMulNat0(Succ(x0), Zero) new_primPlusNat0(Succ(x0), Zero) new_primPlusNat1(Zero, x0) new_primPlusNat0(Zero, Succ(x0)) new_primPlusNat0(Zero, Zero) new_primPlusNat1(Succ(x0), x1) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (42) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_foldr1(wy43, wy410, :(wy4410, wy4411), wy141) -> new_foldr2(wy43, wy410, wy4410, wy4411, new_primPlusNat0(wy141, Succ(Zero)), new_primPlusNat0(wy141, Succ(Zero))) The graph contains the following edges 1 >= 1, 2 >= 2, 3 > 3, 3 > 4 *new_foldr2(wy43, wy410, Float(wy4400, Neg(wy44010)), wy441, wy142, wy141) -> new_psPs3(wy141, new_primMulNat0(Succ(wy43), wy44010), wy410, wy4400, wy43, wy441) The graph contains the following edges 6 >= 1, 2 >= 3, 3 > 4, 1 >= 5, 4 >= 6 *new_psPs3(wy141, Succ(wy1840), wy410, Pos(wy44000), wy43, :(wy4410, wy4411)) -> new_foldr2(wy43, wy410, wy4410, wy4411, new_primPlusNat0(wy141, Succ(Zero)), new_primPlusNat0(wy141, Succ(Zero))) The graph contains the following edges 5 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_foldr2(wy43, wy410, Float(wy4400, Pos(wy44010)), wy441, wy142, wy141) -> new_psPs2(wy141, new_primMulNat0(Succ(wy43), wy44010), wy410, wy4400, wy43, wy441) The graph contains the following edges 6 >= 1, 2 >= 3, 3 > 4, 1 >= 5, 4 >= 6 *new_psPs3(wy141, Zero, wy410, Neg(wy44000), wy43, wy441) -> new_foldr1(wy43, wy410, wy441, wy141) The graph contains the following edges 5 >= 1, 3 >= 2, 6 >= 3, 1 >= 4 *new_psPs3(wy141, Succ(wy1840), wy410, Neg(wy44000), wy43, wy441) -> new_foldr1(wy43, wy410, wy441, wy141) The graph contains the following edges 5 >= 1, 3 >= 2, 6 >= 3, 1 >= 4 *new_psPs3(wy141, Zero, wy410, Pos(wy44000), wy43, wy441) -> new_foldr1(wy43, wy410, wy441, wy141) The graph contains the following edges 5 >= 1, 3 >= 2, 6 >= 3, 1 >= 4 *new_psPs2(wy141, Zero, wy410, Neg(wy44000), wy43, wy441) -> new_foldr1(wy43, wy410, wy441, wy141) The graph contains the following edges 5 >= 1, 3 >= 2, 6 >= 3, 1 >= 4 *new_psPs2(wy141, Succ(wy1830), wy410, Pos(wy44000), wy43, wy441) -> new_foldr1(wy43, wy410, wy441, wy141) The graph contains the following edges 5 >= 1, 3 >= 2, 6 >= 3, 1 >= 4 *new_psPs2(wy141, Succ(wy1830), wy410, Neg(wy44000), wy43, wy441) -> new_foldr1(wy43, wy410, wy441, wy141) The graph contains the following edges 5 >= 1, 3 >= 2, 6 >= 3, 1 >= 4 *new_psPs2(wy141, Zero, wy410, Pos(wy44000), wy43, wy441) -> new_foldr1(wy43, wy410, wy441, wy141) The graph contains the following edges 5 >= 1, 3 >= 2, 6 >= 3, 1 >= 4 ---------------------------------------- (43) YES ---------------------------------------- (44) Obligation: Q DP problem: The TRS P consists of the following rules: new_foldr4(wy310, Float(wy4100, Pos(wy41010)), wy411, wy120, wy119) -> new_psPs4(wy119, new_primMulNat0(Zero, wy41010), wy310, wy4100, wy411) new_psPs5(wy119, Zero, wy310, Neg(wy41000), wy411) -> new_foldr3(wy310, wy411, wy119) new_foldr3(wy310, :(wy4110, wy4111), wy119) -> new_foldr4(wy310, wy4110, wy4111, new_primPlusNat0(wy119, Succ(Zero)), new_primPlusNat0(wy119, Succ(Zero))) new_psPs5(wy119, Succ(wy1760), wy310, Pos(wy41000), wy411) -> new_foldr3(wy310, wy411, wy119) new_psPs4(wy119, Zero, wy310, Neg(wy41000), wy411) -> new_foldr3(wy310, wy411, wy119) new_psPs5(wy119, Succ(wy1760), wy310, Neg(wy41000), wy411) -> new_foldr3(wy310, wy411, wy119) new_psPs4(wy119, Succ(wy1750), wy310, Neg(wy41000), wy411) -> new_foldr3(wy310, wy411, wy119) new_psPs4(wy119, Succ(wy1750), wy310, Pos(wy41000), wy411) -> new_foldr3(wy310, wy411, wy119) new_foldr4(wy310, Float(wy4100, Neg(wy41010)), wy411, wy120, wy119) -> new_psPs5(wy119, new_primMulNat0(Zero, wy41010), wy310, wy4100, wy411) new_psPs4(wy119, Zero, wy310, Pos(wy41000), wy411) -> new_foldr3(wy310, wy411, wy119) new_psPs5(wy119, Zero, wy310, Pos(wy41000), wy411) -> new_foldr3(wy310, wy411, wy119) The TRS R consists of the following rules: new_primPlusNat0(Succ(wy5100), Zero) -> Succ(wy5100) new_primPlusNat0(Zero, Succ(wy401000)) -> Succ(wy401000) new_primMulNat0(Zero, Zero) -> Zero new_primPlusNat0(Succ(wy5100), Succ(wy401000)) -> Succ(Succ(new_primPlusNat0(wy5100, wy401000))) new_primPlusNat0(Zero, Zero) -> Zero new_primMulNat0(Succ(wy3100), Succ(wy40000)) -> new_primPlusNat1(new_primMulNat0(wy3100, Succ(wy40000)), wy40000) new_primPlusNat1(Succ(wy510), wy40100) -> Succ(Succ(new_primPlusNat0(wy510, wy40100))) new_primMulNat0(Succ(wy3100), Zero) -> Zero new_primMulNat0(Zero, Succ(wy40000)) -> Zero new_primPlusNat1(Zero, wy40100) -> Succ(wy40100) The set Q consists of the following terms: new_primPlusNat0(Succ(x0), Succ(x1)) new_primMulNat0(Succ(x0), Succ(x1)) new_primMulNat0(Zero, Succ(x0)) new_primMulNat0(Zero, Zero) new_primMulNat0(Succ(x0), Zero) new_primPlusNat0(Succ(x0), Zero) new_primPlusNat1(Zero, x0) new_primPlusNat0(Zero, Succ(x0)) new_primPlusNat0(Zero, Zero) new_primPlusNat1(Succ(x0), x1) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (45) DependencyGraphProof (EQUIVALENT) The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 1 SCC with 4 less nodes. ---------------------------------------- (46) Obligation: Q DP problem: The TRS P consists of the following rules: new_psPs4(wy119, Zero, wy310, Neg(wy41000), wy411) -> new_foldr3(wy310, wy411, wy119) new_foldr3(wy310, :(wy4110, wy4111), wy119) -> new_foldr4(wy310, wy4110, wy4111, new_primPlusNat0(wy119, Succ(Zero)), new_primPlusNat0(wy119, Succ(Zero))) new_foldr4(wy310, Float(wy4100, Pos(wy41010)), wy411, wy120, wy119) -> new_psPs4(wy119, new_primMulNat0(Zero, wy41010), wy310, wy4100, wy411) new_psPs4(wy119, Zero, wy310, Pos(wy41000), wy411) -> new_foldr3(wy310, wy411, wy119) new_foldr4(wy310, Float(wy4100, Neg(wy41010)), wy411, wy120, wy119) -> new_psPs5(wy119, new_primMulNat0(Zero, wy41010), wy310, wy4100, wy411) new_psPs5(wy119, Zero, wy310, Neg(wy41000), wy411) -> new_foldr3(wy310, wy411, wy119) new_psPs5(wy119, Zero, wy310, Pos(wy41000), wy411) -> new_foldr3(wy310, wy411, wy119) The TRS R consists of the following rules: new_primPlusNat0(Succ(wy5100), Zero) -> Succ(wy5100) new_primPlusNat0(Zero, Succ(wy401000)) -> Succ(wy401000) new_primMulNat0(Zero, Zero) -> Zero new_primPlusNat0(Succ(wy5100), Succ(wy401000)) -> Succ(Succ(new_primPlusNat0(wy5100, wy401000))) new_primPlusNat0(Zero, Zero) -> Zero new_primMulNat0(Succ(wy3100), Succ(wy40000)) -> new_primPlusNat1(new_primMulNat0(wy3100, Succ(wy40000)), wy40000) new_primPlusNat1(Succ(wy510), wy40100) -> Succ(Succ(new_primPlusNat0(wy510, wy40100))) new_primMulNat0(Succ(wy3100), Zero) -> Zero new_primMulNat0(Zero, Succ(wy40000)) -> Zero new_primPlusNat1(Zero, wy40100) -> Succ(wy40100) The set Q consists of the following terms: new_primPlusNat0(Succ(x0), Succ(x1)) new_primMulNat0(Succ(x0), Succ(x1)) new_primMulNat0(Zero, Succ(x0)) new_primMulNat0(Zero, Zero) new_primMulNat0(Succ(x0), Zero) new_primPlusNat0(Succ(x0), Zero) new_primPlusNat1(Zero, x0) new_primPlusNat0(Zero, Succ(x0)) new_primPlusNat0(Zero, Zero) new_primPlusNat1(Succ(x0), x1) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (47) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_foldr3(wy310, :(wy4110, wy4111), wy119) -> new_foldr4(wy310, wy4110, wy4111, new_primPlusNat0(wy119, Succ(Zero)), new_primPlusNat0(wy119, Succ(Zero))) The graph contains the following edges 1 >= 1, 2 > 2, 2 > 3 *new_foldr4(wy310, Float(wy4100, Pos(wy41010)), wy411, wy120, wy119) -> new_psPs4(wy119, new_primMulNat0(Zero, wy41010), wy310, wy4100, wy411) The graph contains the following edges 5 >= 1, 1 >= 3, 2 > 4, 3 >= 5 *new_foldr4(wy310, Float(wy4100, Neg(wy41010)), wy411, wy120, wy119) -> new_psPs5(wy119, new_primMulNat0(Zero, wy41010), wy310, wy4100, wy411) The graph contains the following edges 5 >= 1, 1 >= 3, 2 > 4, 3 >= 5 *new_psPs4(wy119, Zero, wy310, Neg(wy41000), wy411) -> new_foldr3(wy310, wy411, wy119) The graph contains the following edges 3 >= 1, 5 >= 2, 1 >= 3 *new_psPs4(wy119, Zero, wy310, Pos(wy41000), wy411) -> new_foldr3(wy310, wy411, wy119) The graph contains the following edges 3 >= 1, 5 >= 2, 1 >= 3 *new_psPs5(wy119, Zero, wy310, Neg(wy41000), wy411) -> new_foldr3(wy310, wy411, wy119) The graph contains the following edges 3 >= 1, 5 >= 2, 1 >= 3 *new_psPs5(wy119, Zero, wy310, Pos(wy41000), wy411) -> new_foldr3(wy310, wy411, wy119) The graph contains the following edges 3 >= 1, 5 >= 2, 1 >= 3 ---------------------------------------- (48) YES ---------------------------------------- (49) Obligation: Q DP problem: The TRS P consists of the following rules: new_primPlusNat(Succ(wy5100), Succ(wy401000)) -> new_primPlusNat(wy5100, wy401000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (50) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primPlusNat(Succ(wy5100), Succ(wy401000)) -> new_primPlusNat(wy5100, wy401000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (51) YES