/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: 794c25de1cacf0d048858bcd21c9a779e1221865 marcel 20200619 unpublished dirty H-Termination with start terms of the given HASKELL could be proven: (0) HASKELL (1) CR [EQUIVALENT, 0 ms] (2) HASKELL (3) IFR [EQUIVALENT, 0 ms] (4) HASKELL (5) BR [EQUIVALENT, 0 ms] (6) HASKELL (7) COR [EQUIVALENT, 10 ms] (8) HASKELL (9) LetRed [EQUIVALENT, 0 ms] (10) HASKELL (11) NumRed [SOUND, 12 ms] (12) HASKELL (13) Narrow [SOUND, 0 ms] (14) AND (15) QDP (16) QDPSizeChangeProof [EQUIVALENT, 0 ms] (17) YES (18) QDP (19) QDPSizeChangeProof [EQUIVALENT, 40 ms] (20) YES (21) QDP (22) QDPSizeChangeProof [EQUIVALENT, 65 ms] (23) YES (24) QDP (25) QDPSizeChangeProof [EQUIVALENT, 0 ms] (26) YES (27) QDP (28) QDPSizeChangeProof [EQUIVALENT, 0 ms] (29) YES (30) QDP (31) QDPSizeChangeProof [EQUIVALENT, 0 ms] (32) YES ---------------------------------------- (0) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (1) CR (EQUIVALENT) Case Reductions: The following Case expression "case compare x y of { EQ -> o; LT -> LT; GT -> GT} " is transformed to "primCompAux0 o EQ = o; primCompAux0 o LT = LT; primCompAux0 o GT = GT; " ---------------------------------------- (2) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (3) IFR (EQUIVALENT) If Reductions: The following If expression "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" is transformed to "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); primDivNatS0 x y False = Zero; " The following If expression "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" is transformed to "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); primModNatS0 x y False = Succ x; " ---------------------------------------- (4) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (5) BR (EQUIVALENT) Replaced joker patterns by fresh variables and removed binding patterns. ---------------------------------------- (6) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (7) COR (EQUIVALENT) Cond Reductions: The following Function with conditions "absReal x|x >= 0x|otherwise`negate` x; " is transformed to "absReal x = absReal2 x; " "absReal0 x True = `negate` x; " "absReal1 x True = x; absReal1 x False = absReal0 x otherwise; " "absReal2 x = absReal1 x (x >= 0); " The following Function with conditions "gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); " is transformed to "gcd' x zx = gcd'2 x zx; gcd' x y = gcd'0 x y; " "gcd'0 x y = gcd' y (x `rem` y); " "gcd'1 True x zx = x; gcd'1 zy zz vuu = gcd'0 zz vuu; " "gcd'2 x zx = gcd'1 (zx == 0) x zx; gcd'2 vuv vuw = gcd'0 vuv vuw; " The following Function with conditions "gcd 0 0 = error []; gcd x y = gcd' (abs x) (abs y) where { gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); } ; " is transformed to "gcd vux vuy = gcd3 vux vuy; gcd x y = gcd0 x y; " "gcd0 x y = gcd' (abs x) (abs y) where { gcd' x zx = gcd'2 x zx; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x zx = x; gcd'1 zy zz vuu = gcd'0 zz vuu; ; gcd'2 x zx = gcd'1 (zx == 0) x zx; gcd'2 vuv vuw = gcd'0 vuv vuw; } ; " "gcd1 True vux vuy = error []; gcd1 vuz vvu vvv = gcd0 vvu vvv; " "gcd2 True vux vuy = gcd1 (vuy == 0) vux vuy; gcd2 vvw vvx vvy = gcd0 vvx vvy; " "gcd3 vux vuy = gcd2 (vux == 0) vux vuy; gcd3 vvz vwu = gcd0 vvz vwu; " The following Function with conditions "undefined |Falseundefined; " is transformed to "undefined = undefined1; " "undefined0 True = undefined; " "undefined1 = undefined0 False; " The following Function with conditions "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { d = gcd x y; } ; " is transformed to "reduce x y = reduce2 x y; " "reduce2 x y = reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } ; " The following Function with conditions "compare x y|x == yEQ|x <= yLT|otherwiseGT; " is transformed to "compare x y = compare3 x y; " "compare1 x y True = LT; compare1 x y False = compare0 x y otherwise; " "compare2 x y True = EQ; compare2 x y False = compare1 x y (x <= y); " "compare0 x y True = GT; " "compare3 x y = compare2 x y (x == y); " ---------------------------------------- (8) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (9) LetRed (EQUIVALENT) Let/Where Reductions: The bindings of the following Let/Where expression "gcd' (abs x) (abs y) where { gcd' x zx = gcd'2 x zx; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x zx = x; gcd'1 zy zz vuu = gcd'0 zz vuu; ; gcd'2 x zx = gcd'1 (zx == 0) x zx; gcd'2 vuv vuw = gcd'0 vuv vuw; } " are unpacked to the following functions on top level "gcd0Gcd'1 True x zx = x; gcd0Gcd'1 zy zz vuu = gcd0Gcd'0 zz vuu; " "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); " "gcd0Gcd' x zx = gcd0Gcd'2 x zx; gcd0Gcd' x y = gcd0Gcd'0 x y; " "gcd0Gcd'2 x zx = gcd0Gcd'1 (zx == 0) x zx; gcd0Gcd'2 vuv vuw = gcd0Gcd'0 vuv vuw; " The bindings of the following Let/Where expression "reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } " are unpacked to the following functions on top level "reduce2D vwv vww = gcd vwv vww; " "reduce2Reduce0 vwv vww x y True = x `quot` reduce2D vwv vww :% (y `quot` reduce2D vwv vww); " "reduce2Reduce1 vwv vww x y True = error []; reduce2Reduce1 vwv vww x y False = reduce2Reduce0 vwv vww x y otherwise; " ---------------------------------------- (10) Obligation: mainModule Main module Main where { 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 Main where { import qualified Prelude; } ---------------------------------------- (13) Narrow (SOUND) Haskell To QDPs digraph dp_graph { node [outthreshold=100, inthreshold=100];1[label="(<)",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 3[label="(<) vwx3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 4[label="(<) vwx3 vwx4",fontsize=16,color="black",shape="triangle"];4 -> 5[label="",style="solid", color="black", weight=3]; 5[label="compare vwx3 vwx4 == LT",fontsize=16,color="black",shape="box"];5 -> 6[label="",style="solid", color="black", weight=3]; 6[label="compare3 vwx3 vwx4 == LT",fontsize=16,color="black",shape="box"];6 -> 7[label="",style="solid", color="black", weight=3]; 7[label="compare2 vwx3 vwx4 (vwx3 == vwx4) == LT",fontsize=16,color="burlywood",shape="box"];2665[label="vwx3/Nothing",fontsize=10,color="white",style="solid",shape="box"];7 -> 2665[label="",style="solid", color="burlywood", weight=9]; 2665 -> 8[label="",style="solid", color="burlywood", weight=3]; 2666[label="vwx3/Just vwx30",fontsize=10,color="white",style="solid",shape="box"];7 -> 2666[label="",style="solid", color="burlywood", weight=9]; 2666 -> 9[label="",style="solid", color="burlywood", weight=3]; 8[label="compare2 Nothing vwx4 (Nothing == vwx4) == LT",fontsize=16,color="burlywood",shape="box"];2667[label="vwx4/Nothing",fontsize=10,color="white",style="solid",shape="box"];8 -> 2667[label="",style="solid", color="burlywood", weight=9]; 2667 -> 10[label="",style="solid", color="burlywood", weight=3]; 2668[label="vwx4/Just vwx40",fontsize=10,color="white",style="solid",shape="box"];8 -> 2668[label="",style="solid", color="burlywood", weight=9]; 2668 -> 11[label="",style="solid", color="burlywood", weight=3]; 9[label="compare2 (Just vwx30) vwx4 (Just vwx30 == vwx4) == LT",fontsize=16,color="burlywood",shape="box"];2669[label="vwx4/Nothing",fontsize=10,color="white",style="solid",shape="box"];9 -> 2669[label="",style="solid", color="burlywood", weight=9]; 2669 -> 12[label="",style="solid", color="burlywood", weight=3]; 2670[label="vwx4/Just vwx40",fontsize=10,color="white",style="solid",shape="box"];9 -> 2670[label="",style="solid", color="burlywood", weight=9]; 2670 -> 13[label="",style="solid", color="burlywood", weight=3]; 10[label="compare2 Nothing Nothing (Nothing == Nothing) == LT",fontsize=16,color="black",shape="box"];10 -> 14[label="",style="solid", color="black", weight=3]; 11[label="compare2 Nothing (Just vwx40) (Nothing == Just vwx40) == LT",fontsize=16,color="black",shape="box"];11 -> 15[label="",style="solid", color="black", weight=3]; 12[label="compare2 (Just vwx30) Nothing (Just vwx30 == Nothing) == LT",fontsize=16,color="black",shape="box"];12 -> 16[label="",style="solid", color="black", weight=3]; 13[label="compare2 (Just vwx30) (Just vwx40) (Just vwx30 == Just vwx40) == LT",fontsize=16,color="black",shape="box"];13 -> 17[label="",style="solid", color="black", weight=3]; 14[label="compare2 Nothing Nothing True == LT",fontsize=16,color="black",shape="box"];14 -> 18[label="",style="solid", color="black", weight=3]; 15[label="compare2 Nothing (Just vwx40) False == LT",fontsize=16,color="black",shape="box"];15 -> 19[label="",style="solid", color="black", weight=3]; 16[label="compare2 (Just vwx30) Nothing False == LT",fontsize=16,color="black",shape="box"];16 -> 20[label="",style="solid", color="black", weight=3]; 17 -> 21[label="",style="dashed", color="red", weight=0]; 17[label="compare2 (Just vwx30) (Just vwx40) (vwx30 == vwx40) == LT",fontsize=16,color="magenta"];17 -> 22[label="",style="dashed", color="magenta", weight=3]; 17 -> 23[label="",style="dashed", color="magenta", weight=3]; 17 -> 24[label="",style="dashed", color="magenta", weight=3]; 18[label="EQ == LT",fontsize=16,color="black",shape="box"];18 -> 25[label="",style="solid", color="black", weight=3]; 19[label="compare1 Nothing (Just vwx40) (Nothing <= Just vwx40) == LT",fontsize=16,color="black",shape="box"];19 -> 26[label="",style="solid", color="black", weight=3]; 20[label="compare1 (Just vwx30) Nothing (Just vwx30 <= Nothing) == LT",fontsize=16,color="black",shape="box"];20 -> 27[label="",style="solid", color="black", weight=3]; 22[label="vwx30",fontsize=16,color="green",shape="box"];23[label="vwx30 == vwx40",fontsize=16,color="blue",shape="box"];2671[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];23 -> 2671[label="",style="solid", color="blue", weight=9]; 2671 -> 28[label="",style="solid", color="blue", weight=3]; 2672[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];23 -> 2672[label="",style="solid", color="blue", weight=9]; 2672 -> 29[label="",style="solid", color="blue", weight=3]; 2673[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];23 -> 2673[label="",style="solid", color="blue", weight=9]; 2673 -> 30[label="",style="solid", color="blue", weight=3]; 2674[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];23 -> 2674[label="",style="solid", color="blue", weight=9]; 2674 -> 31[label="",style="solid", color="blue", weight=3]; 2675[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];23 -> 2675[label="",style="solid", color="blue", weight=9]; 2675 -> 32[label="",style="solid", color="blue", weight=3]; 2676[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];23 -> 2676[label="",style="solid", color="blue", weight=9]; 2676 -> 33[label="",style="solid", color="blue", weight=3]; 2677[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];23 -> 2677[label="",style="solid", color="blue", weight=9]; 2677 -> 34[label="",style="solid", color="blue", weight=3]; 2678[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];23 -> 2678[label="",style="solid", color="blue", weight=9]; 2678 -> 35[label="",style="solid", color="blue", weight=3]; 2679[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];23 -> 2679[label="",style="solid", color="blue", weight=9]; 2679 -> 36[label="",style="solid", color="blue", weight=3]; 2680[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];23 -> 2680[label="",style="solid", color="blue", weight=9]; 2680 -> 37[label="",style="solid", color="blue", weight=3]; 2681[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];23 -> 2681[label="",style="solid", color="blue", weight=9]; 2681 -> 38[label="",style="solid", color="blue", weight=3]; 2682[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];23 -> 2682[label="",style="solid", color="blue", weight=9]; 2682 -> 39[label="",style="solid", color="blue", weight=3]; 2683[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];23 -> 2683[label="",style="solid", color="blue", weight=9]; 2683 -> 40[label="",style="solid", color="blue", weight=3]; 2684[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];23 -> 2684[label="",style="solid", color="blue", weight=9]; 2684 -> 41[label="",style="solid", color="blue", weight=3]; 24[label="vwx40",fontsize=16,color="green",shape="box"];21[label="compare2 (Just vwx9) (Just vwx10) vwx11 == LT",fontsize=16,color="burlywood",shape="triangle"];2685[label="vwx11/False",fontsize=10,color="white",style="solid",shape="box"];21 -> 2685[label="",style="solid", color="burlywood", weight=9]; 2685 -> 42[label="",style="solid", color="burlywood", weight=3]; 2686[label="vwx11/True",fontsize=10,color="white",style="solid",shape="box"];21 -> 2686[label="",style="solid", color="burlywood", weight=9]; 2686 -> 43[label="",style="solid", color="burlywood", weight=3]; 25[label="False",fontsize=16,color="green",shape="box"];26[label="compare1 Nothing (Just vwx40) True == LT",fontsize=16,color="black",shape="box"];26 -> 44[label="",style="solid", color="black", weight=3]; 27[label="compare1 (Just vwx30) Nothing False == LT",fontsize=16,color="black",shape="box"];27 -> 45[label="",style="solid", color="black", weight=3]; 28[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2687[label="vwx30/False",fontsize=10,color="white",style="solid",shape="box"];28 -> 2687[label="",style="solid", color="burlywood", weight=9]; 2687 -> 46[label="",style="solid", color="burlywood", weight=3]; 2688[label="vwx30/True",fontsize=10,color="white",style="solid",shape="box"];28 -> 2688[label="",style="solid", color="burlywood", weight=9]; 2688 -> 47[label="",style="solid", color="burlywood", weight=3]; 29[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2689[label="vwx30/LT",fontsize=10,color="white",style="solid",shape="box"];29 -> 2689[label="",style="solid", color="burlywood", weight=9]; 2689 -> 48[label="",style="solid", color="burlywood", weight=3]; 2690[label="vwx30/EQ",fontsize=10,color="white",style="solid",shape="box"];29 -> 2690[label="",style="solid", color="burlywood", weight=9]; 2690 -> 49[label="",style="solid", color="burlywood", weight=3]; 2691[label="vwx30/GT",fontsize=10,color="white",style="solid",shape="box"];29 -> 2691[label="",style="solid", color="burlywood", weight=9]; 2691 -> 50[label="",style="solid", color="burlywood", weight=3]; 30[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2692[label="vwx30/Integer vwx300",fontsize=10,color="white",style="solid",shape="box"];30 -> 2692[label="",style="solid", color="burlywood", weight=9]; 2692 -> 51[label="",style="solid", color="burlywood", weight=3]; 31[label="vwx30 == vwx40",fontsize=16,color="black",shape="triangle"];31 -> 52[label="",style="solid", color="black", weight=3]; 32[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2693[label="vwx30/vwx300 : vwx301",fontsize=10,color="white",style="solid",shape="box"];32 -> 2693[label="",style="solid", color="burlywood", weight=9]; 2693 -> 53[label="",style="solid", color="burlywood", weight=3]; 2694[label="vwx30/[]",fontsize=10,color="white",style="solid",shape="box"];32 -> 2694[label="",style="solid", color="burlywood", weight=9]; 2694 -> 54[label="",style="solid", color="burlywood", weight=3]; 33[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2695[label="vwx30/Left vwx300",fontsize=10,color="white",style="solid",shape="box"];33 -> 2695[label="",style="solid", color="burlywood", weight=9]; 2695 -> 55[label="",style="solid", color="burlywood", weight=3]; 2696[label="vwx30/Right vwx300",fontsize=10,color="white",style="solid",shape="box"];33 -> 2696[label="",style="solid", color="burlywood", weight=9]; 2696 -> 56[label="",style="solid", color="burlywood", weight=3]; 34[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2697[label="vwx30/()",fontsize=10,color="white",style="solid",shape="box"];34 -> 2697[label="",style="solid", color="burlywood", weight=9]; 2697 -> 57[label="",style="solid", color="burlywood", weight=3]; 35[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2698[label="vwx30/vwx300 :% vwx301",fontsize=10,color="white",style="solid",shape="box"];35 -> 2698[label="",style="solid", color="burlywood", weight=9]; 2698 -> 58[label="",style="solid", color="burlywood", weight=3]; 36[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2699[label="vwx30/(vwx300,vwx301)",fontsize=10,color="white",style="solid",shape="box"];36 -> 2699[label="",style="solid", color="burlywood", weight=9]; 2699 -> 59[label="",style="solid", color="burlywood", weight=3]; 37[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2700[label="vwx30/Nothing",fontsize=10,color="white",style="solid",shape="box"];37 -> 2700[label="",style="solid", color="burlywood", weight=9]; 2700 -> 60[label="",style="solid", color="burlywood", weight=3]; 2701[label="vwx30/Just vwx300",fontsize=10,color="white",style="solid",shape="box"];37 -> 2701[label="",style="solid", color="burlywood", weight=9]; 2701 -> 61[label="",style="solid", color="burlywood", weight=3]; 38[label="vwx30 == vwx40",fontsize=16,color="black",shape="triangle"];38 -> 62[label="",style="solid", color="black", weight=3]; 39[label="vwx30 == vwx40",fontsize=16,color="black",shape="triangle"];39 -> 63[label="",style="solid", color="black", weight=3]; 40[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2702[label="vwx30/(vwx300,vwx301,vwx302)",fontsize=10,color="white",style="solid",shape="box"];40 -> 2702[label="",style="solid", color="burlywood", weight=9]; 2702 -> 64[label="",style="solid", color="burlywood", weight=3]; 41[label="vwx30 == vwx40",fontsize=16,color="black",shape="triangle"];41 -> 65[label="",style="solid", color="black", weight=3]; 42[label="compare2 (Just vwx9) (Just vwx10) False == LT",fontsize=16,color="black",shape="box"];42 -> 66[label="",style="solid", color="black", weight=3]; 43[label="compare2 (Just vwx9) (Just vwx10) True == LT",fontsize=16,color="black",shape="box"];43 -> 67[label="",style="solid", color="black", weight=3]; 44 -> 29[label="",style="dashed", color="red", weight=0]; 44[label="LT == LT",fontsize=16,color="magenta"];44 -> 68[label="",style="dashed", color="magenta", weight=3]; 44 -> 69[label="",style="dashed", color="magenta", weight=3]; 45 -> 29[label="",style="dashed", color="red", weight=0]; 45[label="compare0 (Just vwx30) Nothing otherwise == LT",fontsize=16,color="magenta"];45 -> 70[label="",style="dashed", color="magenta", weight=3]; 45 -> 71[label="",style="dashed", color="magenta", weight=3]; 46[label="False == vwx40",fontsize=16,color="burlywood",shape="box"];2703[label="vwx40/False",fontsize=10,color="white",style="solid",shape="box"];46 -> 2703[label="",style="solid", color="burlywood", weight=9]; 2703 -> 72[label="",style="solid", color="burlywood", weight=3]; 2704[label="vwx40/True",fontsize=10,color="white",style="solid",shape="box"];46 -> 2704[label="",style="solid", color="burlywood", weight=9]; 2704 -> 73[label="",style="solid", color="burlywood", weight=3]; 47[label="True == vwx40",fontsize=16,color="burlywood",shape="box"];2705[label="vwx40/False",fontsize=10,color="white",style="solid",shape="box"];47 -> 2705[label="",style="solid", color="burlywood", weight=9]; 2705 -> 74[label="",style="solid", color="burlywood", weight=3]; 2706[label="vwx40/True",fontsize=10,color="white",style="solid",shape="box"];47 -> 2706[label="",style="solid", color="burlywood", weight=9]; 2706 -> 75[label="",style="solid", color="burlywood", weight=3]; 48[label="LT == vwx40",fontsize=16,color="burlywood",shape="box"];2707[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];48 -> 2707[label="",style="solid", color="burlywood", weight=9]; 2707 -> 76[label="",style="solid", color="burlywood", weight=3]; 2708[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];48 -> 2708[label="",style="solid", color="burlywood", weight=9]; 2708 -> 77[label="",style="solid", color="burlywood", weight=3]; 2709[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];48 -> 2709[label="",style="solid", color="burlywood", weight=9]; 2709 -> 78[label="",style="solid", color="burlywood", weight=3]; 49[label="EQ == vwx40",fontsize=16,color="burlywood",shape="box"];2710[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];49 -> 2710[label="",style="solid", color="burlywood", weight=9]; 2710 -> 79[label="",style="solid", color="burlywood", weight=3]; 2711[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];49 -> 2711[label="",style="solid", color="burlywood", weight=9]; 2711 -> 80[label="",style="solid", color="burlywood", weight=3]; 2712[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];49 -> 2712[label="",style="solid", color="burlywood", weight=9]; 2712 -> 81[label="",style="solid", color="burlywood", weight=3]; 50[label="GT == vwx40",fontsize=16,color="burlywood",shape="box"];2713[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];50 -> 2713[label="",style="solid", color="burlywood", weight=9]; 2713 -> 82[label="",style="solid", color="burlywood", weight=3]; 2714[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];50 -> 2714[label="",style="solid", color="burlywood", weight=9]; 2714 -> 83[label="",style="solid", color="burlywood", weight=3]; 2715[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];50 -> 2715[label="",style="solid", color="burlywood", weight=9]; 2715 -> 84[label="",style="solid", color="burlywood", weight=3]; 51[label="Integer vwx300 == vwx40",fontsize=16,color="burlywood",shape="box"];2716[label="vwx40/Integer vwx400",fontsize=10,color="white",style="solid",shape="box"];51 -> 2716[label="",style="solid", color="burlywood", weight=9]; 2716 -> 85[label="",style="solid", color="burlywood", weight=3]; 52[label="primEqChar vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];2717[label="vwx30/Char vwx300",fontsize=10,color="white",style="solid",shape="box"];52 -> 2717[label="",style="solid", color="burlywood", weight=9]; 2717 -> 86[label="",style="solid", color="burlywood", weight=3]; 53[label="vwx300 : vwx301 == vwx40",fontsize=16,color="burlywood",shape="box"];2718[label="vwx40/vwx400 : vwx401",fontsize=10,color="white",style="solid",shape="box"];53 -> 2718[label="",style="solid", color="burlywood", weight=9]; 2718 -> 87[label="",style="solid", color="burlywood", weight=3]; 2719[label="vwx40/[]",fontsize=10,color="white",style="solid",shape="box"];53 -> 2719[label="",style="solid", color="burlywood", weight=9]; 2719 -> 88[label="",style="solid", color="burlywood", weight=3]; 54[label="[] == vwx40",fontsize=16,color="burlywood",shape="box"];2720[label="vwx40/vwx400 : vwx401",fontsize=10,color="white",style="solid",shape="box"];54 -> 2720[label="",style="solid", color="burlywood", weight=9]; 2720 -> 89[label="",style="solid", color="burlywood", weight=3]; 2721[label="vwx40/[]",fontsize=10,color="white",style="solid",shape="box"];54 -> 2721[label="",style="solid", color="burlywood", weight=9]; 2721 -> 90[label="",style="solid", color="burlywood", weight=3]; 55[label="Left vwx300 == vwx40",fontsize=16,color="burlywood",shape="box"];2722[label="vwx40/Left vwx400",fontsize=10,color="white",style="solid",shape="box"];55 -> 2722[label="",style="solid", color="burlywood", weight=9]; 2722 -> 91[label="",style="solid", color="burlywood", weight=3]; 2723[label="vwx40/Right vwx400",fontsize=10,color="white",style="solid",shape="box"];55 -> 2723[label="",style="solid", color="burlywood", weight=9]; 2723 -> 92[label="",style="solid", color="burlywood", weight=3]; 56[label="Right vwx300 == vwx40",fontsize=16,color="burlywood",shape="box"];2724[label="vwx40/Left vwx400",fontsize=10,color="white",style="solid",shape="box"];56 -> 2724[label="",style="solid", color="burlywood", weight=9]; 2724 -> 93[label="",style="solid", color="burlywood", weight=3]; 2725[label="vwx40/Right vwx400",fontsize=10,color="white",style="solid",shape="box"];56 -> 2725[label="",style="solid", color="burlywood", weight=9]; 2725 -> 94[label="",style="solid", color="burlywood", weight=3]; 57[label="() == vwx40",fontsize=16,color="burlywood",shape="box"];2726[label="vwx40/()",fontsize=10,color="white",style="solid",shape="box"];57 -> 2726[label="",style="solid", color="burlywood", weight=9]; 2726 -> 95[label="",style="solid", color="burlywood", weight=3]; 58[label="vwx300 :% vwx301 == vwx40",fontsize=16,color="burlywood",shape="box"];2727[label="vwx40/vwx400 :% vwx401",fontsize=10,color="white",style="solid",shape="box"];58 -> 2727[label="",style="solid", color="burlywood", weight=9]; 2727 -> 96[label="",style="solid", color="burlywood", weight=3]; 59[label="(vwx300,vwx301) == vwx40",fontsize=16,color="burlywood",shape="box"];2728[label="vwx40/(vwx400,vwx401)",fontsize=10,color="white",style="solid",shape="box"];59 -> 2728[label="",style="solid", color="burlywood", weight=9]; 2728 -> 97[label="",style="solid", color="burlywood", weight=3]; 60[label="Nothing == vwx40",fontsize=16,color="burlywood",shape="box"];2729[label="vwx40/Nothing",fontsize=10,color="white",style="solid",shape="box"];60 -> 2729[label="",style="solid", color="burlywood", weight=9]; 2729 -> 98[label="",style="solid", color="burlywood", weight=3]; 2730[label="vwx40/Just vwx400",fontsize=10,color="white",style="solid",shape="box"];60 -> 2730[label="",style="solid", color="burlywood", weight=9]; 2730 -> 99[label="",style="solid", color="burlywood", weight=3]; 61[label="Just vwx300 == vwx40",fontsize=16,color="burlywood",shape="box"];2731[label="vwx40/Nothing",fontsize=10,color="white",style="solid",shape="box"];61 -> 2731[label="",style="solid", color="burlywood", weight=9]; 2731 -> 100[label="",style="solid", color="burlywood", weight=3]; 2732[label="vwx40/Just vwx400",fontsize=10,color="white",style="solid",shape="box"];61 -> 2732[label="",style="solid", color="burlywood", weight=9]; 2732 -> 101[label="",style="solid", color="burlywood", weight=3]; 62[label="primEqDouble vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];2733[label="vwx30/Double vwx300 vwx301",fontsize=10,color="white",style="solid",shape="box"];62 -> 2733[label="",style="solid", color="burlywood", weight=9]; 2733 -> 102[label="",style="solid", color="burlywood", weight=3]; 63[label="primEqInt vwx30 vwx40",fontsize=16,color="burlywood",shape="triangle"];2734[label="vwx30/Pos vwx300",fontsize=10,color="white",style="solid",shape="box"];63 -> 2734[label="",style="solid", color="burlywood", weight=9]; 2734 -> 103[label="",style="solid", color="burlywood", weight=3]; 2735[label="vwx30/Neg vwx300",fontsize=10,color="white",style="solid",shape="box"];63 -> 2735[label="",style="solid", color="burlywood", weight=9]; 2735 -> 104[label="",style="solid", color="burlywood", weight=3]; 64[label="(vwx300,vwx301,vwx302) == vwx40",fontsize=16,color="burlywood",shape="box"];2736[label="vwx40/(vwx400,vwx401,vwx402)",fontsize=10,color="white",style="solid",shape="box"];64 -> 2736[label="",style="solid", color="burlywood", weight=9]; 2736 -> 105[label="",style="solid", color="burlywood", weight=3]; 65[label="primEqFloat vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];2737[label="vwx30/Float vwx300 vwx301",fontsize=10,color="white",style="solid",shape="box"];65 -> 2737[label="",style="solid", color="burlywood", weight=9]; 2737 -> 106[label="",style="solid", color="burlywood", weight=3]; 66 -> 29[label="",style="dashed", color="red", weight=0]; 66[label="compare1 (Just vwx9) (Just vwx10) (Just vwx9 <= Just vwx10) == LT",fontsize=16,color="magenta"];66 -> 107[label="",style="dashed", color="magenta", weight=3]; 66 -> 108[label="",style="dashed", color="magenta", weight=3]; 67 -> 29[label="",style="dashed", color="red", weight=0]; 67[label="EQ == LT",fontsize=16,color="magenta"];67 -> 109[label="",style="dashed", color="magenta", weight=3]; 67 -> 110[label="",style="dashed", color="magenta", weight=3]; 68[label="LT",fontsize=16,color="green",shape="box"];69[label="LT",fontsize=16,color="green",shape="box"];70[label="compare0 (Just vwx30) Nothing otherwise",fontsize=16,color="black",shape="box"];70 -> 111[label="",style="solid", color="black", weight=3]; 71[label="LT",fontsize=16,color="green",shape="box"];72[label="False == False",fontsize=16,color="black",shape="box"];72 -> 112[label="",style="solid", color="black", weight=3]; 73[label="False == True",fontsize=16,color="black",shape="box"];73 -> 113[label="",style="solid", color="black", weight=3]; 74[label="True == False",fontsize=16,color="black",shape="box"];74 -> 114[label="",style="solid", color="black", weight=3]; 75[label="True == True",fontsize=16,color="black",shape="box"];75 -> 115[label="",style="solid", color="black", weight=3]; 76[label="LT == LT",fontsize=16,color="black",shape="box"];76 -> 116[label="",style="solid", color="black", weight=3]; 77[label="LT == EQ",fontsize=16,color="black",shape="box"];77 -> 117[label="",style="solid", color="black", weight=3]; 78[label="LT == GT",fontsize=16,color="black",shape="box"];78 -> 118[label="",style="solid", color="black", weight=3]; 79[label="EQ == LT",fontsize=16,color="black",shape="box"];79 -> 119[label="",style="solid", color="black", weight=3]; 80[label="EQ == EQ",fontsize=16,color="black",shape="box"];80 -> 120[label="",style="solid", color="black", weight=3]; 81[label="EQ == GT",fontsize=16,color="black",shape="box"];81 -> 121[label="",style="solid", color="black", weight=3]; 82[label="GT == LT",fontsize=16,color="black",shape="box"];82 -> 122[label="",style="solid", color="black", weight=3]; 83[label="GT == EQ",fontsize=16,color="black",shape="box"];83 -> 123[label="",style="solid", color="black", weight=3]; 84[label="GT == GT",fontsize=16,color="black",shape="box"];84 -> 124[label="",style="solid", color="black", weight=3]; 85[label="Integer vwx300 == Integer vwx400",fontsize=16,color="black",shape="box"];85 -> 125[label="",style="solid", color="black", weight=3]; 86[label="primEqChar (Char vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];2738[label="vwx40/Char vwx400",fontsize=10,color="white",style="solid",shape="box"];86 -> 2738[label="",style="solid", color="burlywood", weight=9]; 2738 -> 126[label="",style="solid", color="burlywood", weight=3]; 87[label="vwx300 : vwx301 == vwx400 : vwx401",fontsize=16,color="black",shape="box"];87 -> 127[label="",style="solid", color="black", weight=3]; 88[label="vwx300 : vwx301 == []",fontsize=16,color="black",shape="box"];88 -> 128[label="",style="solid", color="black", weight=3]; 89[label="[] == vwx400 : vwx401",fontsize=16,color="black",shape="box"];89 -> 129[label="",style="solid", color="black", weight=3]; 90[label="[] == []",fontsize=16,color="black",shape="box"];90 -> 130[label="",style="solid", color="black", weight=3]; 91[label="Left vwx300 == Left vwx400",fontsize=16,color="black",shape="box"];91 -> 131[label="",style="solid", color="black", weight=3]; 92[label="Left vwx300 == Right vwx400",fontsize=16,color="black",shape="box"];92 -> 132[label="",style="solid", color="black", weight=3]; 93[label="Right vwx300 == Left vwx400",fontsize=16,color="black",shape="box"];93 -> 133[label="",style="solid", color="black", weight=3]; 94[label="Right vwx300 == Right vwx400",fontsize=16,color="black",shape="box"];94 -> 134[label="",style="solid", color="black", weight=3]; 95[label="() == ()",fontsize=16,color="black",shape="box"];95 -> 135[label="",style="solid", color="black", weight=3]; 96[label="vwx300 :% vwx301 == vwx400 :% vwx401",fontsize=16,color="black",shape="box"];96 -> 136[label="",style="solid", color="black", weight=3]; 97[label="(vwx300,vwx301) == (vwx400,vwx401)",fontsize=16,color="black",shape="box"];97 -> 137[label="",style="solid", color="black", weight=3]; 98[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];98 -> 138[label="",style="solid", color="black", weight=3]; 99[label="Nothing == Just vwx400",fontsize=16,color="black",shape="box"];99 -> 139[label="",style="solid", color="black", weight=3]; 100[label="Just vwx300 == Nothing",fontsize=16,color="black",shape="box"];100 -> 140[label="",style="solid", color="black", weight=3]; 101[label="Just vwx300 == Just vwx400",fontsize=16,color="black",shape="box"];101 -> 141[label="",style="solid", color="black", weight=3]; 102[label="primEqDouble (Double vwx300 vwx301) vwx40",fontsize=16,color="burlywood",shape="box"];2739[label="vwx40/Double vwx400 vwx401",fontsize=10,color="white",style="solid",shape="box"];102 -> 2739[label="",style="solid", color="burlywood", weight=9]; 2739 -> 142[label="",style="solid", color="burlywood", weight=3]; 103[label="primEqInt (Pos vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];2740[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];103 -> 2740[label="",style="solid", color="burlywood", weight=9]; 2740 -> 143[label="",style="solid", color="burlywood", weight=3]; 2741[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];103 -> 2741[label="",style="solid", color="burlywood", weight=9]; 2741 -> 144[label="",style="solid", color="burlywood", weight=3]; 104[label="primEqInt (Neg vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];2742[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];104 -> 2742[label="",style="solid", color="burlywood", weight=9]; 2742 -> 145[label="",style="solid", color="burlywood", weight=3]; 2743[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];104 -> 2743[label="",style="solid", color="burlywood", weight=9]; 2743 -> 146[label="",style="solid", color="burlywood", weight=3]; 105[label="(vwx300,vwx301,vwx302) == (vwx400,vwx401,vwx402)",fontsize=16,color="black",shape="box"];105 -> 147[label="",style="solid", color="black", weight=3]; 106[label="primEqFloat (Float vwx300 vwx301) vwx40",fontsize=16,color="burlywood",shape="box"];2744[label="vwx40/Float vwx400 vwx401",fontsize=10,color="white",style="solid",shape="box"];106 -> 2744[label="",style="solid", color="burlywood", weight=9]; 2744 -> 148[label="",style="solid", color="burlywood", weight=3]; 107 -> 1676[label="",style="dashed", color="red", weight=0]; 107[label="compare1 (Just vwx9) (Just vwx10) (Just vwx9 <= Just vwx10)",fontsize=16,color="magenta"];107 -> 1677[label="",style="dashed", color="magenta", weight=3]; 107 -> 1678[label="",style="dashed", color="magenta", weight=3]; 107 -> 1679[label="",style="dashed", color="magenta", weight=3]; 108[label="LT",fontsize=16,color="green",shape="box"];109[label="EQ",fontsize=16,color="green",shape="box"];110[label="LT",fontsize=16,color="green",shape="box"];111[label="compare0 (Just vwx30) Nothing True",fontsize=16,color="black",shape="box"];111 -> 150[label="",style="solid", color="black", weight=3]; 112[label="True",fontsize=16,color="green",shape="box"];113[label="False",fontsize=16,color="green",shape="box"];114[label="False",fontsize=16,color="green",shape="box"];115[label="True",fontsize=16,color="green",shape="box"];116[label="True",fontsize=16,color="green",shape="box"];117[label="False",fontsize=16,color="green",shape="box"];118[label="False",fontsize=16,color="green",shape="box"];119[label="False",fontsize=16,color="green",shape="box"];120[label="True",fontsize=16,color="green",shape="box"];121[label="False",fontsize=16,color="green",shape="box"];122[label="False",fontsize=16,color="green",shape="box"];123[label="False",fontsize=16,color="green",shape="box"];124[label="True",fontsize=16,color="green",shape="box"];125 -> 63[label="",style="dashed", color="red", weight=0]; 125[label="primEqInt vwx300 vwx400",fontsize=16,color="magenta"];125 -> 151[label="",style="dashed", color="magenta", weight=3]; 125 -> 152[label="",style="dashed", color="magenta", weight=3]; 126[label="primEqChar (Char vwx300) (Char vwx400)",fontsize=16,color="black",shape="box"];126 -> 153[label="",style="solid", color="black", weight=3]; 127 -> 231[label="",style="dashed", color="red", weight=0]; 127[label="vwx300 == vwx400 && vwx301 == vwx401",fontsize=16,color="magenta"];127 -> 232[label="",style="dashed", color="magenta", weight=3]; 127 -> 233[label="",style="dashed", color="magenta", weight=3]; 128[label="False",fontsize=16,color="green",shape="box"];129[label="False",fontsize=16,color="green",shape="box"];130[label="True",fontsize=16,color="green",shape="box"];131[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];2745[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];131 -> 2745[label="",style="solid", color="blue", weight=9]; 2745 -> 165[label="",style="solid", color="blue", weight=3]; 2746[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];131 -> 2746[label="",style="solid", color="blue", weight=9]; 2746 -> 166[label="",style="solid", color="blue", weight=3]; 2747[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];131 -> 2747[label="",style="solid", color="blue", weight=9]; 2747 -> 167[label="",style="solid", color="blue", weight=3]; 2748[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];131 -> 2748[label="",style="solid", color="blue", weight=9]; 2748 -> 168[label="",style="solid", color="blue", weight=3]; 2749[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];131 -> 2749[label="",style="solid", color="blue", weight=9]; 2749 -> 169[label="",style="solid", color="blue", weight=3]; 2750[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];131 -> 2750[label="",style="solid", color="blue", weight=9]; 2750 -> 170[label="",style="solid", color="blue", weight=3]; 2751[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];131 -> 2751[label="",style="solid", color="blue", weight=9]; 2751 -> 171[label="",style="solid", color="blue", weight=3]; 2752[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];131 -> 2752[label="",style="solid", color="blue", weight=9]; 2752 -> 172[label="",style="solid", color="blue", weight=3]; 2753[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];131 -> 2753[label="",style="solid", color="blue", weight=9]; 2753 -> 173[label="",style="solid", color="blue", weight=3]; 2754[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];131 -> 2754[label="",style="solid", color="blue", weight=9]; 2754 -> 174[label="",style="solid", color="blue", weight=3]; 2755[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];131 -> 2755[label="",style="solid", color="blue", weight=9]; 2755 -> 175[label="",style="solid", color="blue", weight=3]; 2756[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];131 -> 2756[label="",style="solid", color="blue", weight=9]; 2756 -> 176[label="",style="solid", color="blue", weight=3]; 2757[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];131 -> 2757[label="",style="solid", color="blue", weight=9]; 2757 -> 177[label="",style="solid", color="blue", weight=3]; 2758[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];131 -> 2758[label="",style="solid", color="blue", weight=9]; 2758 -> 178[label="",style="solid", color="blue", weight=3]; 132[label="False",fontsize=16,color="green",shape="box"];133[label="False",fontsize=16,color="green",shape="box"];134[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];2759[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];134 -> 2759[label="",style="solid", color="blue", weight=9]; 2759 -> 179[label="",style="solid", color="blue", weight=3]; 2760[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];134 -> 2760[label="",style="solid", color="blue", weight=9]; 2760 -> 180[label="",style="solid", color="blue", weight=3]; 2761[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];134 -> 2761[label="",style="solid", color="blue", weight=9]; 2761 -> 181[label="",style="solid", color="blue", weight=3]; 2762[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];134 -> 2762[label="",style="solid", color="blue", weight=9]; 2762 -> 182[label="",style="solid", color="blue", weight=3]; 2763[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];134 -> 2763[label="",style="solid", color="blue", weight=9]; 2763 -> 183[label="",style="solid", color="blue", weight=3]; 2764[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];134 -> 2764[label="",style="solid", color="blue", weight=9]; 2764 -> 184[label="",style="solid", color="blue", weight=3]; 2765[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];134 -> 2765[label="",style="solid", color="blue", weight=9]; 2765 -> 185[label="",style="solid", color="blue", weight=3]; 2766[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];134 -> 2766[label="",style="solid", color="blue", weight=9]; 2766 -> 186[label="",style="solid", color="blue", weight=3]; 2767[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];134 -> 2767[label="",style="solid", color="blue", weight=9]; 2767 -> 187[label="",style="solid", color="blue", weight=3]; 2768[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];134 -> 2768[label="",style="solid", color="blue", weight=9]; 2768 -> 188[label="",style="solid", color="blue", weight=3]; 2769[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];134 -> 2769[label="",style="solid", color="blue", weight=9]; 2769 -> 189[label="",style="solid", color="blue", weight=3]; 2770[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];134 -> 2770[label="",style="solid", color="blue", weight=9]; 2770 -> 190[label="",style="solid", color="blue", weight=3]; 2771[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];134 -> 2771[label="",style="solid", color="blue", weight=9]; 2771 -> 191[label="",style="solid", color="blue", weight=3]; 2772[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];134 -> 2772[label="",style="solid", color="blue", weight=9]; 2772 -> 192[label="",style="solid", color="blue", weight=3]; 135[label="True",fontsize=16,color="green",shape="box"];136 -> 231[label="",style="dashed", color="red", weight=0]; 136[label="vwx300 == vwx400 && vwx301 == vwx401",fontsize=16,color="magenta"];136 -> 234[label="",style="dashed", color="magenta", weight=3]; 136 -> 235[label="",style="dashed", color="magenta", weight=3]; 137 -> 231[label="",style="dashed", color="red", weight=0]; 137[label="vwx300 == vwx400 && vwx301 == vwx401",fontsize=16,color="magenta"];137 -> 236[label="",style="dashed", color="magenta", weight=3]; 137 -> 237[label="",style="dashed", color="magenta", weight=3]; 138[label="True",fontsize=16,color="green",shape="box"];139[label="False",fontsize=16,color="green",shape="box"];140[label="False",fontsize=16,color="green",shape="box"];141[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];2773[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];141 -> 2773[label="",style="solid", color="blue", weight=9]; 2773 -> 193[label="",style="solid", color="blue", weight=3]; 2774[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];141 -> 2774[label="",style="solid", color="blue", weight=9]; 2774 -> 194[label="",style="solid", color="blue", weight=3]; 2775[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];141 -> 2775[label="",style="solid", color="blue", weight=9]; 2775 -> 195[label="",style="solid", color="blue", weight=3]; 2776[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];141 -> 2776[label="",style="solid", color="blue", weight=9]; 2776 -> 196[label="",style="solid", color="blue", weight=3]; 2777[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];141 -> 2777[label="",style="solid", color="blue", weight=9]; 2777 -> 197[label="",style="solid", color="blue", weight=3]; 2778[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];141 -> 2778[label="",style="solid", color="blue", weight=9]; 2778 -> 198[label="",style="solid", color="blue", weight=3]; 2779[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];141 -> 2779[label="",style="solid", color="blue", weight=9]; 2779 -> 199[label="",style="solid", color="blue", weight=3]; 2780[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];141 -> 2780[label="",style="solid", color="blue", weight=9]; 2780 -> 200[label="",style="solid", color="blue", weight=3]; 2781[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];141 -> 2781[label="",style="solid", color="blue", weight=9]; 2781 -> 201[label="",style="solid", color="blue", weight=3]; 2782[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];141 -> 2782[label="",style="solid", color="blue", weight=9]; 2782 -> 202[label="",style="solid", color="blue", weight=3]; 2783[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];141 -> 2783[label="",style="solid", color="blue", weight=9]; 2783 -> 203[label="",style="solid", color="blue", weight=3]; 2784[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];141 -> 2784[label="",style="solid", color="blue", weight=9]; 2784 -> 204[label="",style="solid", color="blue", weight=3]; 2785[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];141 -> 2785[label="",style="solid", color="blue", weight=9]; 2785 -> 205[label="",style="solid", color="blue", weight=3]; 2786[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];141 -> 2786[label="",style="solid", color="blue", weight=9]; 2786 -> 206[label="",style="solid", color="blue", weight=3]; 142[label="primEqDouble (Double vwx300 vwx301) (Double vwx400 vwx401)",fontsize=16,color="black",shape="box"];142 -> 207[label="",style="solid", color="black", weight=3]; 143[label="primEqInt (Pos (Succ vwx3000)) vwx40",fontsize=16,color="burlywood",shape="box"];2787[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];143 -> 2787[label="",style="solid", color="burlywood", weight=9]; 2787 -> 208[label="",style="solid", color="burlywood", weight=3]; 2788[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];143 -> 2788[label="",style="solid", color="burlywood", weight=9]; 2788 -> 209[label="",style="solid", color="burlywood", weight=3]; 144[label="primEqInt (Pos Zero) vwx40",fontsize=16,color="burlywood",shape="box"];2789[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];144 -> 2789[label="",style="solid", color="burlywood", weight=9]; 2789 -> 210[label="",style="solid", color="burlywood", weight=3]; 2790[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];144 -> 2790[label="",style="solid", color="burlywood", weight=9]; 2790 -> 211[label="",style="solid", color="burlywood", weight=3]; 145[label="primEqInt (Neg (Succ vwx3000)) vwx40",fontsize=16,color="burlywood",shape="box"];2791[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];145 -> 2791[label="",style="solid", color="burlywood", weight=9]; 2791 -> 212[label="",style="solid", color="burlywood", weight=3]; 2792[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];145 -> 2792[label="",style="solid", color="burlywood", weight=9]; 2792 -> 213[label="",style="solid", color="burlywood", weight=3]; 146[label="primEqInt (Neg Zero) vwx40",fontsize=16,color="burlywood",shape="box"];2793[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];146 -> 2793[label="",style="solid", color="burlywood", weight=9]; 2793 -> 214[label="",style="solid", color="burlywood", weight=3]; 2794[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];146 -> 2794[label="",style="solid", color="burlywood", weight=9]; 2794 -> 215[label="",style="solid", color="burlywood", weight=3]; 147 -> 231[label="",style="dashed", color="red", weight=0]; 147[label="vwx300 == vwx400 && vwx301 == vwx401 && vwx302 == vwx402",fontsize=16,color="magenta"];147 -> 238[label="",style="dashed", color="magenta", weight=3]; 147 -> 239[label="",style="dashed", color="magenta", weight=3]; 148[label="primEqFloat (Float vwx300 vwx301) (Float vwx400 vwx401)",fontsize=16,color="black",shape="box"];148 -> 216[label="",style="solid", color="black", weight=3]; 1677[label="Just vwx9",fontsize=16,color="green",shape="box"];1678[label="Just vwx9 <= Just vwx10",fontsize=16,color="black",shape="box"];1678 -> 1684[label="",style="solid", color="black", weight=3]; 1679[label="Just vwx10",fontsize=16,color="green",shape="box"];1676[label="compare1 vwx90 vwx100 vwx50",fontsize=16,color="burlywood",shape="triangle"];2795[label="vwx50/False",fontsize=10,color="white",style="solid",shape="box"];1676 -> 2795[label="",style="solid", color="burlywood", weight=9]; 2795 -> 1685[label="",style="solid", color="burlywood", weight=3]; 2796[label="vwx50/True",fontsize=10,color="white",style="solid",shape="box"];1676 -> 2796[label="",style="solid", color="burlywood", weight=9]; 2796 -> 1686[label="",style="solid", color="burlywood", weight=3]; 150[label="GT",fontsize=16,color="green",shape="box"];151[label="vwx300",fontsize=16,color="green",shape="box"];152[label="vwx400",fontsize=16,color="green",shape="box"];153[label="primEqNat vwx300 vwx400",fontsize=16,color="burlywood",shape="triangle"];2797[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];153 -> 2797[label="",style="solid", color="burlywood", weight=9]; 2797 -> 227[label="",style="solid", color="burlywood", weight=3]; 2798[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];153 -> 2798[label="",style="solid", color="burlywood", weight=9]; 2798 -> 228[label="",style="solid", color="burlywood", weight=3]; 232[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];2799[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];232 -> 2799[label="",style="solid", color="blue", weight=9]; 2799 -> 244[label="",style="solid", color="blue", weight=3]; 2800[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];232 -> 2800[label="",style="solid", color="blue", weight=9]; 2800 -> 245[label="",style="solid", color="blue", weight=3]; 2801[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];232 -> 2801[label="",style="solid", color="blue", weight=9]; 2801 -> 246[label="",style="solid", color="blue", weight=3]; 2802[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];232 -> 2802[label="",style="solid", color="blue", weight=9]; 2802 -> 247[label="",style="solid", color="blue", weight=3]; 2803[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];232 -> 2803[label="",style="solid", color="blue", weight=9]; 2803 -> 248[label="",style="solid", color="blue", weight=3]; 2804[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];232 -> 2804[label="",style="solid", color="blue", weight=9]; 2804 -> 249[label="",style="solid", color="blue", weight=3]; 2805[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];232 -> 2805[label="",style="solid", color="blue", weight=9]; 2805 -> 250[label="",style="solid", color="blue", weight=3]; 2806[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];232 -> 2806[label="",style="solid", color="blue", weight=9]; 2806 -> 251[label="",style="solid", color="blue", weight=3]; 2807[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];232 -> 2807[label="",style="solid", color="blue", weight=9]; 2807 -> 252[label="",style="solid", color="blue", weight=3]; 2808[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];232 -> 2808[label="",style="solid", color="blue", weight=9]; 2808 -> 253[label="",style="solid", color="blue", weight=3]; 2809[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];232 -> 2809[label="",style="solid", color="blue", weight=9]; 2809 -> 254[label="",style="solid", color="blue", weight=3]; 2810[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];232 -> 2810[label="",style="solid", color="blue", weight=9]; 2810 -> 255[label="",style="solid", color="blue", weight=3]; 2811[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];232 -> 2811[label="",style="solid", color="blue", weight=9]; 2811 -> 256[label="",style="solid", color="blue", weight=3]; 2812[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];232 -> 2812[label="",style="solid", color="blue", weight=9]; 2812 -> 257[label="",style="solid", color="blue", weight=3]; 233 -> 32[label="",style="dashed", color="red", weight=0]; 233[label="vwx301 == vwx401",fontsize=16,color="magenta"];233 -> 258[label="",style="dashed", color="magenta", weight=3]; 233 -> 259[label="",style="dashed", color="magenta", weight=3]; 231[label="vwx23 && vwx24",fontsize=16,color="burlywood",shape="triangle"];2813[label="vwx23/False",fontsize=10,color="white",style="solid",shape="box"];231 -> 2813[label="",style="solid", color="burlywood", weight=9]; 2813 -> 260[label="",style="solid", color="burlywood", weight=3]; 2814[label="vwx23/True",fontsize=10,color="white",style="solid",shape="box"];231 -> 2814[label="",style="solid", color="burlywood", weight=9]; 2814 -> 261[label="",style="solid", color="burlywood", weight=3]; 165 -> 28[label="",style="dashed", color="red", weight=0]; 165[label="vwx300 == vwx400",fontsize=16,color="magenta"];165 -> 262[label="",style="dashed", color="magenta", weight=3]; 165 -> 263[label="",style="dashed", color="magenta", weight=3]; 166 -> 29[label="",style="dashed", color="red", weight=0]; 166[label="vwx300 == vwx400",fontsize=16,color="magenta"];166 -> 264[label="",style="dashed", color="magenta", weight=3]; 166 -> 265[label="",style="dashed", color="magenta", weight=3]; 167 -> 30[label="",style="dashed", color="red", weight=0]; 167[label="vwx300 == vwx400",fontsize=16,color="magenta"];167 -> 266[label="",style="dashed", color="magenta", weight=3]; 167 -> 267[label="",style="dashed", color="magenta", weight=3]; 168 -> 31[label="",style="dashed", color="red", weight=0]; 168[label="vwx300 == vwx400",fontsize=16,color="magenta"];168 -> 268[label="",style="dashed", color="magenta", weight=3]; 168 -> 269[label="",style="dashed", color="magenta", weight=3]; 169 -> 32[label="",style="dashed", color="red", weight=0]; 169[label="vwx300 == vwx400",fontsize=16,color="magenta"];169 -> 270[label="",style="dashed", color="magenta", weight=3]; 169 -> 271[label="",style="dashed", color="magenta", weight=3]; 170 -> 33[label="",style="dashed", color="red", weight=0]; 170[label="vwx300 == vwx400",fontsize=16,color="magenta"];170 -> 272[label="",style="dashed", color="magenta", weight=3]; 170 -> 273[label="",style="dashed", color="magenta", weight=3]; 171 -> 34[label="",style="dashed", color="red", weight=0]; 171[label="vwx300 == vwx400",fontsize=16,color="magenta"];171 -> 274[label="",style="dashed", color="magenta", weight=3]; 171 -> 275[label="",style="dashed", color="magenta", weight=3]; 172 -> 35[label="",style="dashed", color="red", weight=0]; 172[label="vwx300 == vwx400",fontsize=16,color="magenta"];172 -> 276[label="",style="dashed", color="magenta", weight=3]; 172 -> 277[label="",style="dashed", color="magenta", weight=3]; 173 -> 36[label="",style="dashed", color="red", weight=0]; 173[label="vwx300 == vwx400",fontsize=16,color="magenta"];173 -> 278[label="",style="dashed", color="magenta", weight=3]; 173 -> 279[label="",style="dashed", color="magenta", weight=3]; 174 -> 37[label="",style="dashed", color="red", weight=0]; 174[label="vwx300 == vwx400",fontsize=16,color="magenta"];174 -> 280[label="",style="dashed", color="magenta", weight=3]; 174 -> 281[label="",style="dashed", color="magenta", weight=3]; 175 -> 38[label="",style="dashed", color="red", weight=0]; 175[label="vwx300 == vwx400",fontsize=16,color="magenta"];175 -> 282[label="",style="dashed", color="magenta", weight=3]; 175 -> 283[label="",style="dashed", color="magenta", weight=3]; 176 -> 39[label="",style="dashed", color="red", weight=0]; 176[label="vwx300 == vwx400",fontsize=16,color="magenta"];176 -> 284[label="",style="dashed", color="magenta", weight=3]; 176 -> 285[label="",style="dashed", color="magenta", weight=3]; 177 -> 40[label="",style="dashed", color="red", weight=0]; 177[label="vwx300 == vwx400",fontsize=16,color="magenta"];177 -> 286[label="",style="dashed", color="magenta", weight=3]; 177 -> 287[label="",style="dashed", color="magenta", weight=3]; 178 -> 41[label="",style="dashed", color="red", weight=0]; 178[label="vwx300 == vwx400",fontsize=16,color="magenta"];178 -> 288[label="",style="dashed", color="magenta", weight=3]; 178 -> 289[label="",style="dashed", color="magenta", weight=3]; 179 -> 28[label="",style="dashed", color="red", weight=0]; 179[label="vwx300 == vwx400",fontsize=16,color="magenta"];179 -> 290[label="",style="dashed", color="magenta", weight=3]; 179 -> 291[label="",style="dashed", color="magenta", weight=3]; 180 -> 29[label="",style="dashed", color="red", weight=0]; 180[label="vwx300 == vwx400",fontsize=16,color="magenta"];180 -> 292[label="",style="dashed", color="magenta", weight=3]; 180 -> 293[label="",style="dashed", color="magenta", weight=3]; 181 -> 30[label="",style="dashed", color="red", weight=0]; 181[label="vwx300 == vwx400",fontsize=16,color="magenta"];181 -> 294[label="",style="dashed", color="magenta", weight=3]; 181 -> 295[label="",style="dashed", color="magenta", weight=3]; 182 -> 31[label="",style="dashed", color="red", weight=0]; 182[label="vwx300 == vwx400",fontsize=16,color="magenta"];182 -> 296[label="",style="dashed", color="magenta", weight=3]; 182 -> 297[label="",style="dashed", color="magenta", weight=3]; 183 -> 32[label="",style="dashed", color="red", weight=0]; 183[label="vwx300 == vwx400",fontsize=16,color="magenta"];183 -> 298[label="",style="dashed", color="magenta", weight=3]; 183 -> 299[label="",style="dashed", color="magenta", weight=3]; 184 -> 33[label="",style="dashed", color="red", weight=0]; 184[label="vwx300 == vwx400",fontsize=16,color="magenta"];184 -> 300[label="",style="dashed", color="magenta", weight=3]; 184 -> 301[label="",style="dashed", color="magenta", weight=3]; 185 -> 34[label="",style="dashed", color="red", weight=0]; 185[label="vwx300 == vwx400",fontsize=16,color="magenta"];185 -> 302[label="",style="dashed", color="magenta", weight=3]; 185 -> 303[label="",style="dashed", color="magenta", weight=3]; 186 -> 35[label="",style="dashed", color="red", weight=0]; 186[label="vwx300 == vwx400",fontsize=16,color="magenta"];186 -> 304[label="",style="dashed", color="magenta", weight=3]; 186 -> 305[label="",style="dashed", color="magenta", weight=3]; 187 -> 36[label="",style="dashed", color="red", weight=0]; 187[label="vwx300 == vwx400",fontsize=16,color="magenta"];187 -> 306[label="",style="dashed", color="magenta", weight=3]; 187 -> 307[label="",style="dashed", color="magenta", weight=3]; 188 -> 37[label="",style="dashed", color="red", weight=0]; 188[label="vwx300 == vwx400",fontsize=16,color="magenta"];188 -> 308[label="",style="dashed", color="magenta", weight=3]; 188 -> 309[label="",style="dashed", color="magenta", weight=3]; 189 -> 38[label="",style="dashed", color="red", weight=0]; 189[label="vwx300 == vwx400",fontsize=16,color="magenta"];189 -> 310[label="",style="dashed", color="magenta", weight=3]; 189 -> 311[label="",style="dashed", color="magenta", weight=3]; 190 -> 39[label="",style="dashed", color="red", weight=0]; 190[label="vwx300 == vwx400",fontsize=16,color="magenta"];190 -> 312[label="",style="dashed", color="magenta", weight=3]; 190 -> 313[label="",style="dashed", color="magenta", weight=3]; 191 -> 40[label="",style="dashed", color="red", weight=0]; 191[label="vwx300 == vwx400",fontsize=16,color="magenta"];191 -> 314[label="",style="dashed", color="magenta", weight=3]; 191 -> 315[label="",style="dashed", color="magenta", weight=3]; 192 -> 41[label="",style="dashed", color="red", weight=0]; 192[label="vwx300 == vwx400",fontsize=16,color="magenta"];192 -> 316[label="",style="dashed", color="magenta", weight=3]; 192 -> 317[label="",style="dashed", color="magenta", weight=3]; 234[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];2815[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];234 -> 2815[label="",style="solid", color="blue", weight=9]; 2815 -> 318[label="",style="solid", color="blue", weight=3]; 2816[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];234 -> 2816[label="",style="solid", color="blue", weight=9]; 2816 -> 319[label="",style="solid", color="blue", weight=3]; 235[label="vwx301 == vwx401",fontsize=16,color="blue",shape="box"];2817[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];235 -> 2817[label="",style="solid", color="blue", weight=9]; 2817 -> 320[label="",style="solid", color="blue", weight=3]; 2818[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];235 -> 2818[label="",style="solid", color="blue", weight=9]; 2818 -> 321[label="",style="solid", color="blue", weight=3]; 236[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];2819[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];236 -> 2819[label="",style="solid", color="blue", weight=9]; 2819 -> 322[label="",style="solid", color="blue", weight=3]; 2820[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];236 -> 2820[label="",style="solid", color="blue", weight=9]; 2820 -> 323[label="",style="solid", color="blue", weight=3]; 2821[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];236 -> 2821[label="",style="solid", color="blue", weight=9]; 2821 -> 324[label="",style="solid", color="blue", weight=3]; 2822[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];236 -> 2822[label="",style="solid", color="blue", weight=9]; 2822 -> 325[label="",style="solid", color="blue", weight=3]; 2823[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];236 -> 2823[label="",style="solid", color="blue", weight=9]; 2823 -> 326[label="",style="solid", color="blue", weight=3]; 2824[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];236 -> 2824[label="",style="solid", color="blue", weight=9]; 2824 -> 327[label="",style="solid", color="blue", weight=3]; 2825[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];236 -> 2825[label="",style="solid", color="blue", weight=9]; 2825 -> 328[label="",style="solid", color="blue", weight=3]; 2826[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];236 -> 2826[label="",style="solid", color="blue", weight=9]; 2826 -> 329[label="",style="solid", color="blue", weight=3]; 2827[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];236 -> 2827[label="",style="solid", color="blue", weight=9]; 2827 -> 330[label="",style="solid", color="blue", weight=3]; 2828[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];236 -> 2828[label="",style="solid", color="blue", weight=9]; 2828 -> 331[label="",style="solid", color="blue", weight=3]; 2829[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];236 -> 2829[label="",style="solid", color="blue", weight=9]; 2829 -> 332[label="",style="solid", color="blue", weight=3]; 2830[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];236 -> 2830[label="",style="solid", color="blue", weight=9]; 2830 -> 333[label="",style="solid", color="blue", weight=3]; 2831[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];236 -> 2831[label="",style="solid", color="blue", weight=9]; 2831 -> 334[label="",style="solid", color="blue", weight=3]; 2832[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];236 -> 2832[label="",style="solid", color="blue", weight=9]; 2832 -> 335[label="",style="solid", color="blue", weight=3]; 237[label="vwx301 == vwx401",fontsize=16,color="blue",shape="box"];2833[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];237 -> 2833[label="",style="solid", color="blue", weight=9]; 2833 -> 336[label="",style="solid", color="blue", weight=3]; 2834[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];237 -> 2834[label="",style="solid", color="blue", weight=9]; 2834 -> 337[label="",style="solid", color="blue", weight=3]; 2835[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];237 -> 2835[label="",style="solid", color="blue", weight=9]; 2835 -> 338[label="",style="solid", color="blue", weight=3]; 2836[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];237 -> 2836[label="",style="solid", color="blue", weight=9]; 2836 -> 339[label="",style="solid", color="blue", weight=3]; 2837[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];237 -> 2837[label="",style="solid", color="blue", weight=9]; 2837 -> 340[label="",style="solid", color="blue", weight=3]; 2838[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];237 -> 2838[label="",style="solid", color="blue", weight=9]; 2838 -> 341[label="",style="solid", color="blue", weight=3]; 2839[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];237 -> 2839[label="",style="solid", color="blue", weight=9]; 2839 -> 342[label="",style="solid", color="blue", weight=3]; 2840[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];237 -> 2840[label="",style="solid", color="blue", weight=9]; 2840 -> 343[label="",style="solid", color="blue", weight=3]; 2841[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];237 -> 2841[label="",style="solid", color="blue", weight=9]; 2841 -> 344[label="",style="solid", color="blue", weight=3]; 2842[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];237 -> 2842[label="",style="solid", color="blue", weight=9]; 2842 -> 345[label="",style="solid", color="blue", weight=3]; 2843[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];237 -> 2843[label="",style="solid", color="blue", weight=9]; 2843 -> 346[label="",style="solid", color="blue", weight=3]; 2844[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];237 -> 2844[label="",style="solid", color="blue", weight=9]; 2844 -> 347[label="",style="solid", color="blue", weight=3]; 2845[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];237 -> 2845[label="",style="solid", color="blue", weight=9]; 2845 -> 348[label="",style="solid", color="blue", weight=3]; 2846[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];237 -> 2846[label="",style="solid", color="blue", weight=9]; 2846 -> 349[label="",style="solid", color="blue", weight=3]; 193 -> 28[label="",style="dashed", color="red", weight=0]; 193[label="vwx300 == vwx400",fontsize=16,color="magenta"];193 -> 350[label="",style="dashed", color="magenta", weight=3]; 193 -> 351[label="",style="dashed", color="magenta", weight=3]; 194 -> 29[label="",style="dashed", color="red", weight=0]; 194[label="vwx300 == vwx400",fontsize=16,color="magenta"];194 -> 352[label="",style="dashed", color="magenta", weight=3]; 194 -> 353[label="",style="dashed", color="magenta", weight=3]; 195 -> 30[label="",style="dashed", color="red", weight=0]; 195[label="vwx300 == vwx400",fontsize=16,color="magenta"];195 -> 354[label="",style="dashed", color="magenta", weight=3]; 195 -> 355[label="",style="dashed", color="magenta", weight=3]; 196 -> 31[label="",style="dashed", color="red", weight=0]; 196[label="vwx300 == vwx400",fontsize=16,color="magenta"];196 -> 356[label="",style="dashed", color="magenta", weight=3]; 196 -> 357[label="",style="dashed", color="magenta", weight=3]; 197 -> 32[label="",style="dashed", color="red", weight=0]; 197[label="vwx300 == vwx400",fontsize=16,color="magenta"];197 -> 358[label="",style="dashed", color="magenta", weight=3]; 197 -> 359[label="",style="dashed", color="magenta", weight=3]; 198 -> 33[label="",style="dashed", color="red", weight=0]; 198[label="vwx300 == vwx400",fontsize=16,color="magenta"];198 -> 360[label="",style="dashed", color="magenta", weight=3]; 198 -> 361[label="",style="dashed", color="magenta", weight=3]; 199 -> 34[label="",style="dashed", color="red", weight=0]; 199[label="vwx300 == vwx400",fontsize=16,color="magenta"];199 -> 362[label="",style="dashed", color="magenta", weight=3]; 199 -> 363[label="",style="dashed", color="magenta", weight=3]; 200 -> 35[label="",style="dashed", color="red", weight=0]; 200[label="vwx300 == vwx400",fontsize=16,color="magenta"];200 -> 364[label="",style="dashed", color="magenta", weight=3]; 200 -> 365[label="",style="dashed", color="magenta", weight=3]; 201 -> 36[label="",style="dashed", color="red", weight=0]; 201[label="vwx300 == vwx400",fontsize=16,color="magenta"];201 -> 366[label="",style="dashed", color="magenta", weight=3]; 201 -> 367[label="",style="dashed", color="magenta", weight=3]; 202 -> 37[label="",style="dashed", color="red", weight=0]; 202[label="vwx300 == vwx400",fontsize=16,color="magenta"];202 -> 368[label="",style="dashed", color="magenta", weight=3]; 202 -> 369[label="",style="dashed", color="magenta", weight=3]; 203 -> 38[label="",style="dashed", color="red", weight=0]; 203[label="vwx300 == vwx400",fontsize=16,color="magenta"];203 -> 370[label="",style="dashed", color="magenta", weight=3]; 203 -> 371[label="",style="dashed", color="magenta", weight=3]; 204 -> 39[label="",style="dashed", color="red", weight=0]; 204[label="vwx300 == vwx400",fontsize=16,color="magenta"];204 -> 372[label="",style="dashed", color="magenta", weight=3]; 204 -> 373[label="",style="dashed", color="magenta", weight=3]; 205 -> 40[label="",style="dashed", color="red", weight=0]; 205[label="vwx300 == vwx400",fontsize=16,color="magenta"];205 -> 374[label="",style="dashed", color="magenta", weight=3]; 205 -> 375[label="",style="dashed", color="magenta", weight=3]; 206 -> 41[label="",style="dashed", color="red", weight=0]; 206[label="vwx300 == vwx400",fontsize=16,color="magenta"];206 -> 376[label="",style="dashed", color="magenta", weight=3]; 206 -> 377[label="",style="dashed", color="magenta", weight=3]; 207 -> 39[label="",style="dashed", color="red", weight=0]; 207[label="vwx300 * vwx401 == vwx301 * vwx400",fontsize=16,color="magenta"];207 -> 378[label="",style="dashed", color="magenta", weight=3]; 207 -> 379[label="",style="dashed", color="magenta", weight=3]; 208[label="primEqInt (Pos (Succ vwx3000)) (Pos vwx400)",fontsize=16,color="burlywood",shape="box"];2847[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];208 -> 2847[label="",style="solid", color="burlywood", weight=9]; 2847 -> 380[label="",style="solid", color="burlywood", weight=3]; 2848[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];208 -> 2848[label="",style="solid", color="burlywood", weight=9]; 2848 -> 381[label="",style="solid", color="burlywood", weight=3]; 209[label="primEqInt (Pos (Succ vwx3000)) (Neg vwx400)",fontsize=16,color="black",shape="box"];209 -> 382[label="",style="solid", color="black", weight=3]; 210[label="primEqInt (Pos Zero) (Pos vwx400)",fontsize=16,color="burlywood",shape="box"];2849[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];210 -> 2849[label="",style="solid", color="burlywood", weight=9]; 2849 -> 383[label="",style="solid", color="burlywood", weight=3]; 2850[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];210 -> 2850[label="",style="solid", color="burlywood", weight=9]; 2850 -> 384[label="",style="solid", color="burlywood", weight=3]; 211[label="primEqInt (Pos Zero) (Neg vwx400)",fontsize=16,color="burlywood",shape="box"];2851[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];211 -> 2851[label="",style="solid", color="burlywood", weight=9]; 2851 -> 385[label="",style="solid", color="burlywood", weight=3]; 2852[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];211 -> 2852[label="",style="solid", color="burlywood", weight=9]; 2852 -> 386[label="",style="solid", color="burlywood", weight=3]; 212[label="primEqInt (Neg (Succ vwx3000)) (Pos vwx400)",fontsize=16,color="black",shape="box"];212 -> 387[label="",style="solid", color="black", weight=3]; 213[label="primEqInt (Neg (Succ vwx3000)) (Neg vwx400)",fontsize=16,color="burlywood",shape="box"];2853[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];213 -> 2853[label="",style="solid", color="burlywood", weight=9]; 2853 -> 388[label="",style="solid", color="burlywood", weight=3]; 2854[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];213 -> 2854[label="",style="solid", color="burlywood", weight=9]; 2854 -> 389[label="",style="solid", color="burlywood", weight=3]; 214[label="primEqInt (Neg Zero) (Pos vwx400)",fontsize=16,color="burlywood",shape="box"];2855[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];214 -> 2855[label="",style="solid", color="burlywood", weight=9]; 2855 -> 390[label="",style="solid", color="burlywood", weight=3]; 2856[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];214 -> 2856[label="",style="solid", color="burlywood", weight=9]; 2856 -> 391[label="",style="solid", color="burlywood", weight=3]; 215[label="primEqInt (Neg Zero) (Neg vwx400)",fontsize=16,color="burlywood",shape="box"];2857[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];215 -> 2857[label="",style="solid", color="burlywood", weight=9]; 2857 -> 392[label="",style="solid", color="burlywood", weight=3]; 2858[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];215 -> 2858[label="",style="solid", color="burlywood", weight=9]; 2858 -> 393[label="",style="solid", color="burlywood", weight=3]; 238[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];2859[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];238 -> 2859[label="",style="solid", color="blue", weight=9]; 2859 -> 394[label="",style="solid", color="blue", weight=3]; 2860[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];238 -> 2860[label="",style="solid", color="blue", weight=9]; 2860 -> 395[label="",style="solid", color="blue", weight=3]; 2861[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];238 -> 2861[label="",style="solid", color="blue", weight=9]; 2861 -> 396[label="",style="solid", color="blue", weight=3]; 2862[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];238 -> 2862[label="",style="solid", color="blue", weight=9]; 2862 -> 397[label="",style="solid", color="blue", weight=3]; 2863[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];238 -> 2863[label="",style="solid", color="blue", weight=9]; 2863 -> 398[label="",style="solid", color="blue", weight=3]; 2864[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];238 -> 2864[label="",style="solid", color="blue", weight=9]; 2864 -> 399[label="",style="solid", color="blue", weight=3]; 2865[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];238 -> 2865[label="",style="solid", color="blue", weight=9]; 2865 -> 400[label="",style="solid", color="blue", weight=3]; 2866[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];238 -> 2866[label="",style="solid", color="blue", weight=9]; 2866 -> 401[label="",style="solid", color="blue", weight=3]; 2867[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];238 -> 2867[label="",style="solid", color="blue", weight=9]; 2867 -> 402[label="",style="solid", color="blue", weight=3]; 2868[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];238 -> 2868[label="",style="solid", color="blue", weight=9]; 2868 -> 403[label="",style="solid", color="blue", weight=3]; 2869[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];238 -> 2869[label="",style="solid", color="blue", weight=9]; 2869 -> 404[label="",style="solid", color="blue", weight=3]; 2870[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];238 -> 2870[label="",style="solid", color="blue", weight=9]; 2870 -> 405[label="",style="solid", color="blue", weight=3]; 2871[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];238 -> 2871[label="",style="solid", color="blue", weight=9]; 2871 -> 406[label="",style="solid", color="blue", weight=3]; 2872[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];238 -> 2872[label="",style="solid", color="blue", weight=9]; 2872 -> 407[label="",style="solid", color="blue", weight=3]; 239 -> 231[label="",style="dashed", color="red", weight=0]; 239[label="vwx301 == vwx401 && vwx302 == vwx402",fontsize=16,color="magenta"];239 -> 408[label="",style="dashed", color="magenta", weight=3]; 239 -> 409[label="",style="dashed", color="magenta", weight=3]; 216 -> 39[label="",style="dashed", color="red", weight=0]; 216[label="vwx300 * vwx401 == vwx301 * vwx400",fontsize=16,color="magenta"];216 -> 410[label="",style="dashed", color="magenta", weight=3]; 216 -> 411[label="",style="dashed", color="magenta", weight=3]; 1684[label="vwx9 <= vwx10",fontsize=16,color="blue",shape="box"];2873[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1684 -> 2873[label="",style="solid", color="blue", weight=9]; 2873 -> 1687[label="",style="solid", color="blue", weight=3]; 2874[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1684 -> 2874[label="",style="solid", color="blue", weight=9]; 2874 -> 1688[label="",style="solid", color="blue", weight=3]; 2875[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1684 -> 2875[label="",style="solid", color="blue", weight=9]; 2875 -> 1689[label="",style="solid", color="blue", weight=3]; 2876[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1684 -> 2876[label="",style="solid", color="blue", weight=9]; 2876 -> 1690[label="",style="solid", color="blue", weight=3]; 2877[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1684 -> 2877[label="",style="solid", color="blue", weight=9]; 2877 -> 1691[label="",style="solid", color="blue", weight=3]; 2878[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1684 -> 2878[label="",style="solid", color="blue", weight=9]; 2878 -> 1692[label="",style="solid", color="blue", weight=3]; 2879[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1684 -> 2879[label="",style="solid", color="blue", weight=9]; 2879 -> 1693[label="",style="solid", color="blue", weight=3]; 2880[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1684 -> 2880[label="",style="solid", color="blue", weight=9]; 2880 -> 1694[label="",style="solid", color="blue", weight=3]; 2881[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1684 -> 2881[label="",style="solid", color="blue", weight=9]; 2881 -> 1695[label="",style="solid", color="blue", weight=3]; 2882[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1684 -> 2882[label="",style="solid", color="blue", weight=9]; 2882 -> 1696[label="",style="solid", color="blue", weight=3]; 2883[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1684 -> 2883[label="",style="solid", color="blue", weight=9]; 2883 -> 1697[label="",style="solid", color="blue", weight=3]; 2884[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1684 -> 2884[label="",style="solid", color="blue", weight=9]; 2884 -> 1698[label="",style="solid", color="blue", weight=3]; 2885[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1684 -> 2885[label="",style="solid", color="blue", weight=9]; 2885 -> 1699[label="",style="solid", color="blue", weight=3]; 2886[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1684 -> 2886[label="",style="solid", color="blue", weight=9]; 2886 -> 1700[label="",style="solid", color="blue", weight=3]; 1685[label="compare1 vwx90 vwx100 False",fontsize=16,color="black",shape="box"];1685 -> 1701[label="",style="solid", color="black", weight=3]; 1686[label="compare1 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];1686 -> 1702[label="",style="solid", color="black", weight=3]; 227[label="primEqNat (Succ vwx3000) vwx400",fontsize=16,color="burlywood",shape="box"];2887[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];227 -> 2887[label="",style="solid", color="burlywood", weight=9]; 2887 -> 428[label="",style="solid", color="burlywood", weight=3]; 2888[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];227 -> 2888[label="",style="solid", color="burlywood", weight=9]; 2888 -> 429[label="",style="solid", color="burlywood", weight=3]; 228[label="primEqNat Zero vwx400",fontsize=16,color="burlywood",shape="box"];2889[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];228 -> 2889[label="",style="solid", color="burlywood", weight=9]; 2889 -> 430[label="",style="solid", color="burlywood", weight=3]; 2890[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];228 -> 2890[label="",style="solid", color="burlywood", weight=9]; 2890 -> 431[label="",style="solid", color="burlywood", weight=3]; 244 -> 28[label="",style="dashed", color="red", weight=0]; 244[label="vwx300 == vwx400",fontsize=16,color="magenta"];244 -> 432[label="",style="dashed", color="magenta", weight=3]; 244 -> 433[label="",style="dashed", color="magenta", weight=3]; 245 -> 29[label="",style="dashed", color="red", weight=0]; 245[label="vwx300 == vwx400",fontsize=16,color="magenta"];245 -> 434[label="",style="dashed", color="magenta", weight=3]; 245 -> 435[label="",style="dashed", color="magenta", weight=3]; 246 -> 30[label="",style="dashed", color="red", weight=0]; 246[label="vwx300 == vwx400",fontsize=16,color="magenta"];246 -> 436[label="",style="dashed", color="magenta", weight=3]; 246 -> 437[label="",style="dashed", color="magenta", weight=3]; 247 -> 31[label="",style="dashed", color="red", weight=0]; 247[label="vwx300 == vwx400",fontsize=16,color="magenta"];247 -> 438[label="",style="dashed", color="magenta", weight=3]; 247 -> 439[label="",style="dashed", color="magenta", weight=3]; 248 -> 32[label="",style="dashed", color="red", weight=0]; 248[label="vwx300 == vwx400",fontsize=16,color="magenta"];248 -> 440[label="",style="dashed", color="magenta", weight=3]; 248 -> 441[label="",style="dashed", color="magenta", weight=3]; 249 -> 33[label="",style="dashed", color="red", weight=0]; 249[label="vwx300 == vwx400",fontsize=16,color="magenta"];249 -> 442[label="",style="dashed", color="magenta", weight=3]; 249 -> 443[label="",style="dashed", color="magenta", weight=3]; 250 -> 34[label="",style="dashed", color="red", weight=0]; 250[label="vwx300 == vwx400",fontsize=16,color="magenta"];250 -> 444[label="",style="dashed", color="magenta", weight=3]; 250 -> 445[label="",style="dashed", color="magenta", weight=3]; 251 -> 35[label="",style="dashed", color="red", weight=0]; 251[label="vwx300 == vwx400",fontsize=16,color="magenta"];251 -> 446[label="",style="dashed", color="magenta", weight=3]; 251 -> 447[label="",style="dashed", color="magenta", weight=3]; 252 -> 36[label="",style="dashed", color="red", weight=0]; 252[label="vwx300 == vwx400",fontsize=16,color="magenta"];252 -> 448[label="",style="dashed", color="magenta", weight=3]; 252 -> 449[label="",style="dashed", color="magenta", weight=3]; 253 -> 37[label="",style="dashed", color="red", weight=0]; 253[label="vwx300 == vwx400",fontsize=16,color="magenta"];253 -> 450[label="",style="dashed", color="magenta", weight=3]; 253 -> 451[label="",style="dashed", color="magenta", weight=3]; 254 -> 38[label="",style="dashed", color="red", weight=0]; 254[label="vwx300 == vwx400",fontsize=16,color="magenta"];254 -> 452[label="",style="dashed", color="magenta", weight=3]; 254 -> 453[label="",style="dashed", color="magenta", weight=3]; 255 -> 39[label="",style="dashed", color="red", weight=0]; 255[label="vwx300 == vwx400",fontsize=16,color="magenta"];255 -> 454[label="",style="dashed", color="magenta", weight=3]; 255 -> 455[label="",style="dashed", color="magenta", weight=3]; 256 -> 40[label="",style="dashed", color="red", weight=0]; 256[label="vwx300 == vwx400",fontsize=16,color="magenta"];256 -> 456[label="",style="dashed", color="magenta", weight=3]; 256 -> 457[label="",style="dashed", color="magenta", weight=3]; 257 -> 41[label="",style="dashed", color="red", weight=0]; 257[label="vwx300 == vwx400",fontsize=16,color="magenta"];257 -> 458[label="",style="dashed", color="magenta", weight=3]; 257 -> 459[label="",style="dashed", color="magenta", weight=3]; 258[label="vwx301",fontsize=16,color="green",shape="box"];259[label="vwx401",fontsize=16,color="green",shape="box"];260[label="False && vwx24",fontsize=16,color="black",shape="box"];260 -> 460[label="",style="solid", color="black", weight=3]; 261[label="True && vwx24",fontsize=16,color="black",shape="box"];261 -> 461[label="",style="solid", color="black", weight=3]; 262[label="vwx300",fontsize=16,color="green",shape="box"];263[label="vwx400",fontsize=16,color="green",shape="box"];264[label="vwx300",fontsize=16,color="green",shape="box"];265[label="vwx400",fontsize=16,color="green",shape="box"];266[label="vwx300",fontsize=16,color="green",shape="box"];267[label="vwx400",fontsize=16,color="green",shape="box"];268[label="vwx300",fontsize=16,color="green",shape="box"];269[label="vwx400",fontsize=16,color="green",shape="box"];270[label="vwx300",fontsize=16,color="green",shape="box"];271[label="vwx400",fontsize=16,color="green",shape="box"];272[label="vwx300",fontsize=16,color="green",shape="box"];273[label="vwx400",fontsize=16,color="green",shape="box"];274[label="vwx300",fontsize=16,color="green",shape="box"];275[label="vwx400",fontsize=16,color="green",shape="box"];276[label="vwx300",fontsize=16,color="green",shape="box"];277[label="vwx400",fontsize=16,color="green",shape="box"];278[label="vwx300",fontsize=16,color="green",shape="box"];279[label="vwx400",fontsize=16,color="green",shape="box"];280[label="vwx300",fontsize=16,color="green",shape="box"];281[label="vwx400",fontsize=16,color="green",shape="box"];282[label="vwx300",fontsize=16,color="green",shape="box"];283[label="vwx400",fontsize=16,color="green",shape="box"];284[label="vwx300",fontsize=16,color="green",shape="box"];285[label="vwx400",fontsize=16,color="green",shape="box"];286[label="vwx300",fontsize=16,color="green",shape="box"];287[label="vwx400",fontsize=16,color="green",shape="box"];288[label="vwx300",fontsize=16,color="green",shape="box"];289[label="vwx400",fontsize=16,color="green",shape="box"];290[label="vwx300",fontsize=16,color="green",shape="box"];291[label="vwx400",fontsize=16,color="green",shape="box"];292[label="vwx300",fontsize=16,color="green",shape="box"];293[label="vwx400",fontsize=16,color="green",shape="box"];294[label="vwx300",fontsize=16,color="green",shape="box"];295[label="vwx400",fontsize=16,color="green",shape="box"];296[label="vwx300",fontsize=16,color="green",shape="box"];297[label="vwx400",fontsize=16,color="green",shape="box"];298[label="vwx300",fontsize=16,color="green",shape="box"];299[label="vwx400",fontsize=16,color="green",shape="box"];300[label="vwx300",fontsize=16,color="green",shape="box"];301[label="vwx400",fontsize=16,color="green",shape="box"];302[label="vwx300",fontsize=16,color="green",shape="box"];303[label="vwx400",fontsize=16,color="green",shape="box"];304[label="vwx300",fontsize=16,color="green",shape="box"];305[label="vwx400",fontsize=16,color="green",shape="box"];306[label="vwx300",fontsize=16,color="green",shape="box"];307[label="vwx400",fontsize=16,color="green",shape="box"];308[label="vwx300",fontsize=16,color="green",shape="box"];309[label="vwx400",fontsize=16,color="green",shape="box"];310[label="vwx300",fontsize=16,color="green",shape="box"];311[label="vwx400",fontsize=16,color="green",shape="box"];312[label="vwx300",fontsize=16,color="green",shape="box"];313[label="vwx400",fontsize=16,color="green",shape="box"];314[label="vwx300",fontsize=16,color="green",shape="box"];315[label="vwx400",fontsize=16,color="green",shape="box"];316[label="vwx300",fontsize=16,color="green",shape="box"];317[label="vwx400",fontsize=16,color="green",shape="box"];318 -> 30[label="",style="dashed", color="red", weight=0]; 318[label="vwx300 == vwx400",fontsize=16,color="magenta"];318 -> 462[label="",style="dashed", color="magenta", weight=3]; 318 -> 463[label="",style="dashed", color="magenta", weight=3]; 319 -> 39[label="",style="dashed", color="red", weight=0]; 319[label="vwx300 == vwx400",fontsize=16,color="magenta"];319 -> 464[label="",style="dashed", color="magenta", weight=3]; 319 -> 465[label="",style="dashed", color="magenta", weight=3]; 320 -> 30[label="",style="dashed", color="red", weight=0]; 320[label="vwx301 == vwx401",fontsize=16,color="magenta"];320 -> 466[label="",style="dashed", color="magenta", weight=3]; 320 -> 467[label="",style="dashed", color="magenta", weight=3]; 321 -> 39[label="",style="dashed", color="red", weight=0]; 321[label="vwx301 == vwx401",fontsize=16,color="magenta"];321 -> 468[label="",style="dashed", color="magenta", weight=3]; 321 -> 469[label="",style="dashed", color="magenta", weight=3]; 322 -> 28[label="",style="dashed", color="red", weight=0]; 322[label="vwx300 == vwx400",fontsize=16,color="magenta"];322 -> 470[label="",style="dashed", color="magenta", weight=3]; 322 -> 471[label="",style="dashed", color="magenta", weight=3]; 323 -> 29[label="",style="dashed", color="red", weight=0]; 323[label="vwx300 == vwx400",fontsize=16,color="magenta"];323 -> 472[label="",style="dashed", color="magenta", weight=3]; 323 -> 473[label="",style="dashed", color="magenta", weight=3]; 324 -> 30[label="",style="dashed", color="red", weight=0]; 324[label="vwx300 == vwx400",fontsize=16,color="magenta"];324 -> 474[label="",style="dashed", color="magenta", weight=3]; 324 -> 475[label="",style="dashed", color="magenta", weight=3]; 325 -> 31[label="",style="dashed", color="red", weight=0]; 325[label="vwx300 == vwx400",fontsize=16,color="magenta"];325 -> 476[label="",style="dashed", color="magenta", weight=3]; 325 -> 477[label="",style="dashed", color="magenta", weight=3]; 326 -> 32[label="",style="dashed", color="red", weight=0]; 326[label="vwx300 == vwx400",fontsize=16,color="magenta"];326 -> 478[label="",style="dashed", color="magenta", weight=3]; 326 -> 479[label="",style="dashed", color="magenta", weight=3]; 327 -> 33[label="",style="dashed", color="red", weight=0]; 327[label="vwx300 == vwx400",fontsize=16,color="magenta"];327 -> 480[label="",style="dashed", color="magenta", weight=3]; 327 -> 481[label="",style="dashed", color="magenta", weight=3]; 328 -> 34[label="",style="dashed", color="red", weight=0]; 328[label="vwx300 == vwx400",fontsize=16,color="magenta"];328 -> 482[label="",style="dashed", color="magenta", weight=3]; 328 -> 483[label="",style="dashed", color="magenta", weight=3]; 329 -> 35[label="",style="dashed", color="red", weight=0]; 329[label="vwx300 == vwx400",fontsize=16,color="magenta"];329 -> 484[label="",style="dashed", color="magenta", weight=3]; 329 -> 485[label="",style="dashed", color="magenta", weight=3]; 330 -> 36[label="",style="dashed", color="red", weight=0]; 330[label="vwx300 == vwx400",fontsize=16,color="magenta"];330 -> 486[label="",style="dashed", color="magenta", weight=3]; 330 -> 487[label="",style="dashed", color="magenta", weight=3]; 331 -> 37[label="",style="dashed", color="red", weight=0]; 331[label="vwx300 == vwx400",fontsize=16,color="magenta"];331 -> 488[label="",style="dashed", color="magenta", weight=3]; 331 -> 489[label="",style="dashed", color="magenta", weight=3]; 332 -> 38[label="",style="dashed", color="red", weight=0]; 332[label="vwx300 == vwx400",fontsize=16,color="magenta"];332 -> 490[label="",style="dashed", color="magenta", weight=3]; 332 -> 491[label="",style="dashed", color="magenta", weight=3]; 333 -> 39[label="",style="dashed", color="red", weight=0]; 333[label="vwx300 == vwx400",fontsize=16,color="magenta"];333 -> 492[label="",style="dashed", color="magenta", weight=3]; 333 -> 493[label="",style="dashed", color="magenta", weight=3]; 334 -> 40[label="",style="dashed", color="red", weight=0]; 334[label="vwx300 == vwx400",fontsize=16,color="magenta"];334 -> 494[label="",style="dashed", color="magenta", weight=3]; 334 -> 495[label="",style="dashed", color="magenta", weight=3]; 335 -> 41[label="",style="dashed", color="red", weight=0]; 335[label="vwx300 == vwx400",fontsize=16,color="magenta"];335 -> 496[label="",style="dashed", color="magenta", weight=3]; 335 -> 497[label="",style="dashed", color="magenta", weight=3]; 336 -> 28[label="",style="dashed", color="red", weight=0]; 336[label="vwx301 == vwx401",fontsize=16,color="magenta"];336 -> 498[label="",style="dashed", color="magenta", weight=3]; 336 -> 499[label="",style="dashed", color="magenta", weight=3]; 337 -> 29[label="",style="dashed", color="red", weight=0]; 337[label="vwx301 == vwx401",fontsize=16,color="magenta"];337 -> 500[label="",style="dashed", color="magenta", weight=3]; 337 -> 501[label="",style="dashed", color="magenta", weight=3]; 338 -> 30[label="",style="dashed", color="red", weight=0]; 338[label="vwx301 == vwx401",fontsize=16,color="magenta"];338 -> 502[label="",style="dashed", color="magenta", weight=3]; 338 -> 503[label="",style="dashed", color="magenta", weight=3]; 339 -> 31[label="",style="dashed", color="red", weight=0]; 339[label="vwx301 == vwx401",fontsize=16,color="magenta"];339 -> 504[label="",style="dashed", color="magenta", weight=3]; 339 -> 505[label="",style="dashed", color="magenta", weight=3]; 340 -> 32[label="",style="dashed", color="red", weight=0]; 340[label="vwx301 == vwx401",fontsize=16,color="magenta"];340 -> 506[label="",style="dashed", color="magenta", weight=3]; 340 -> 507[label="",style="dashed", color="magenta", weight=3]; 341 -> 33[label="",style="dashed", color="red", weight=0]; 341[label="vwx301 == vwx401",fontsize=16,color="magenta"];341 -> 508[label="",style="dashed", color="magenta", weight=3]; 341 -> 509[label="",style="dashed", color="magenta", weight=3]; 342 -> 34[label="",style="dashed", color="red", weight=0]; 342[label="vwx301 == vwx401",fontsize=16,color="magenta"];342 -> 510[label="",style="dashed", color="magenta", weight=3]; 342 -> 511[label="",style="dashed", color="magenta", weight=3]; 343 -> 35[label="",style="dashed", color="red", weight=0]; 343[label="vwx301 == vwx401",fontsize=16,color="magenta"];343 -> 512[label="",style="dashed", color="magenta", weight=3]; 343 -> 513[label="",style="dashed", color="magenta", weight=3]; 344 -> 36[label="",style="dashed", color="red", weight=0]; 344[label="vwx301 == vwx401",fontsize=16,color="magenta"];344 -> 514[label="",style="dashed", color="magenta", weight=3]; 344 -> 515[label="",style="dashed", color="magenta", weight=3]; 345 -> 37[label="",style="dashed", color="red", weight=0]; 345[label="vwx301 == vwx401",fontsize=16,color="magenta"];345 -> 516[label="",style="dashed", color="magenta", weight=3]; 345 -> 517[label="",style="dashed", color="magenta", weight=3]; 346 -> 38[label="",style="dashed", color="red", weight=0]; 346[label="vwx301 == vwx401",fontsize=16,color="magenta"];346 -> 518[label="",style="dashed", color="magenta", weight=3]; 346 -> 519[label="",style="dashed", color="magenta", weight=3]; 347 -> 39[label="",style="dashed", color="red", weight=0]; 347[label="vwx301 == vwx401",fontsize=16,color="magenta"];347 -> 520[label="",style="dashed", color="magenta", weight=3]; 347 -> 521[label="",style="dashed", color="magenta", weight=3]; 348 -> 40[label="",style="dashed", color="red", weight=0]; 348[label="vwx301 == vwx401",fontsize=16,color="magenta"];348 -> 522[label="",style="dashed", color="magenta", weight=3]; 348 -> 523[label="",style="dashed", color="magenta", weight=3]; 349 -> 41[label="",style="dashed", color="red", weight=0]; 349[label="vwx301 == vwx401",fontsize=16,color="magenta"];349 -> 524[label="",style="dashed", color="magenta", weight=3]; 349 -> 525[label="",style="dashed", color="magenta", weight=3]; 350[label="vwx300",fontsize=16,color="green",shape="box"];351[label="vwx400",fontsize=16,color="green",shape="box"];352[label="vwx300",fontsize=16,color="green",shape="box"];353[label="vwx400",fontsize=16,color="green",shape="box"];354[label="vwx300",fontsize=16,color="green",shape="box"];355[label="vwx400",fontsize=16,color="green",shape="box"];356[label="vwx300",fontsize=16,color="green",shape="box"];357[label="vwx400",fontsize=16,color="green",shape="box"];358[label="vwx300",fontsize=16,color="green",shape="box"];359[label="vwx400",fontsize=16,color="green",shape="box"];360[label="vwx300",fontsize=16,color="green",shape="box"];361[label="vwx400",fontsize=16,color="green",shape="box"];362[label="vwx300",fontsize=16,color="green",shape="box"];363[label="vwx400",fontsize=16,color="green",shape="box"];364[label="vwx300",fontsize=16,color="green",shape="box"];365[label="vwx400",fontsize=16,color="green",shape="box"];366[label="vwx300",fontsize=16,color="green",shape="box"];367[label="vwx400",fontsize=16,color="green",shape="box"];368[label="vwx300",fontsize=16,color="green",shape="box"];369[label="vwx400",fontsize=16,color="green",shape="box"];370[label="vwx300",fontsize=16,color="green",shape="box"];371[label="vwx400",fontsize=16,color="green",shape="box"];372[label="vwx300",fontsize=16,color="green",shape="box"];373[label="vwx400",fontsize=16,color="green",shape="box"];374[label="vwx300",fontsize=16,color="green",shape="box"];375[label="vwx400",fontsize=16,color="green",shape="box"];376[label="vwx300",fontsize=16,color="green",shape="box"];377[label="vwx400",fontsize=16,color="green",shape="box"];378[label="vwx300 * vwx401",fontsize=16,color="black",shape="triangle"];378 -> 526[label="",style="solid", color="black", weight=3]; 379 -> 378[label="",style="dashed", color="red", weight=0]; 379[label="vwx301 * vwx400",fontsize=16,color="magenta"];379 -> 527[label="",style="dashed", color="magenta", weight=3]; 379 -> 528[label="",style="dashed", color="magenta", weight=3]; 380[label="primEqInt (Pos (Succ vwx3000)) (Pos (Succ vwx4000))",fontsize=16,color="black",shape="box"];380 -> 529[label="",style="solid", color="black", weight=3]; 381[label="primEqInt (Pos (Succ vwx3000)) (Pos Zero)",fontsize=16,color="black",shape="box"];381 -> 530[label="",style="solid", color="black", weight=3]; 382[label="False",fontsize=16,color="green",shape="box"];383[label="primEqInt (Pos Zero) (Pos (Succ vwx4000))",fontsize=16,color="black",shape="box"];383 -> 531[label="",style="solid", color="black", weight=3]; 384[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];384 -> 532[label="",style="solid", color="black", weight=3]; 385[label="primEqInt (Pos Zero) (Neg (Succ vwx4000))",fontsize=16,color="black",shape="box"];385 -> 533[label="",style="solid", color="black", weight=3]; 386[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];386 -> 534[label="",style="solid", color="black", weight=3]; 387[label="False",fontsize=16,color="green",shape="box"];388[label="primEqInt (Neg (Succ vwx3000)) (Neg (Succ vwx4000))",fontsize=16,color="black",shape="box"];388 -> 535[label="",style="solid", color="black", weight=3]; 389[label="primEqInt (Neg (Succ vwx3000)) (Neg Zero)",fontsize=16,color="black",shape="box"];389 -> 536[label="",style="solid", color="black", weight=3]; 390[label="primEqInt (Neg Zero) (Pos (Succ vwx4000))",fontsize=16,color="black",shape="box"];390 -> 537[label="",style="solid", color="black", weight=3]; 391[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];391 -> 538[label="",style="solid", color="black", weight=3]; 392[label="primEqInt (Neg Zero) (Neg (Succ vwx4000))",fontsize=16,color="black",shape="box"];392 -> 539[label="",style="solid", color="black", weight=3]; 393[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];393 -> 540[label="",style="solid", color="black", weight=3]; 394 -> 28[label="",style="dashed", color="red", weight=0]; 394[label="vwx300 == vwx400",fontsize=16,color="magenta"];394 -> 541[label="",style="dashed", color="magenta", weight=3]; 394 -> 542[label="",style="dashed", color="magenta", weight=3]; 395 -> 29[label="",style="dashed", color="red", weight=0]; 395[label="vwx300 == vwx400",fontsize=16,color="magenta"];395 -> 543[label="",style="dashed", color="magenta", weight=3]; 395 -> 544[label="",style="dashed", color="magenta", weight=3]; 396 -> 30[label="",style="dashed", color="red", weight=0]; 396[label="vwx300 == vwx400",fontsize=16,color="magenta"];396 -> 545[label="",style="dashed", color="magenta", weight=3]; 396 -> 546[label="",style="dashed", color="magenta", weight=3]; 397 -> 31[label="",style="dashed", color="red", weight=0]; 397[label="vwx300 == vwx400",fontsize=16,color="magenta"];397 -> 547[label="",style="dashed", color="magenta", weight=3]; 397 -> 548[label="",style="dashed", color="magenta", weight=3]; 398 -> 32[label="",style="dashed", color="red", weight=0]; 398[label="vwx300 == vwx400",fontsize=16,color="magenta"];398 -> 549[label="",style="dashed", color="magenta", weight=3]; 398 -> 550[label="",style="dashed", color="magenta", weight=3]; 399 -> 33[label="",style="dashed", color="red", weight=0]; 399[label="vwx300 == vwx400",fontsize=16,color="magenta"];399 -> 551[label="",style="dashed", color="magenta", weight=3]; 399 -> 552[label="",style="dashed", color="magenta", weight=3]; 400 -> 34[label="",style="dashed", color="red", weight=0]; 400[label="vwx300 == vwx400",fontsize=16,color="magenta"];400 -> 553[label="",style="dashed", color="magenta", weight=3]; 400 -> 554[label="",style="dashed", color="magenta", weight=3]; 401 -> 35[label="",style="dashed", color="red", weight=0]; 401[label="vwx300 == vwx400",fontsize=16,color="magenta"];401 -> 555[label="",style="dashed", color="magenta", weight=3]; 401 -> 556[label="",style="dashed", color="magenta", weight=3]; 402 -> 36[label="",style="dashed", color="red", weight=0]; 402[label="vwx300 == vwx400",fontsize=16,color="magenta"];402 -> 557[label="",style="dashed", color="magenta", weight=3]; 402 -> 558[label="",style="dashed", color="magenta", weight=3]; 403 -> 37[label="",style="dashed", color="red", weight=0]; 403[label="vwx300 == vwx400",fontsize=16,color="magenta"];403 -> 559[label="",style="dashed", color="magenta", weight=3]; 403 -> 560[label="",style="dashed", color="magenta", weight=3]; 404 -> 38[label="",style="dashed", color="red", weight=0]; 404[label="vwx300 == vwx400",fontsize=16,color="magenta"];404 -> 561[label="",style="dashed", color="magenta", weight=3]; 404 -> 562[label="",style="dashed", color="magenta", weight=3]; 405 -> 39[label="",style="dashed", color="red", weight=0]; 405[label="vwx300 == vwx400",fontsize=16,color="magenta"];405 -> 563[label="",style="dashed", color="magenta", weight=3]; 405 -> 564[label="",style="dashed", color="magenta", weight=3]; 406 -> 40[label="",style="dashed", color="red", weight=0]; 406[label="vwx300 == vwx400",fontsize=16,color="magenta"];406 -> 565[label="",style="dashed", color="magenta", weight=3]; 406 -> 566[label="",style="dashed", color="magenta", weight=3]; 407 -> 41[label="",style="dashed", color="red", weight=0]; 407[label="vwx300 == vwx400",fontsize=16,color="magenta"];407 -> 567[label="",style="dashed", color="magenta", weight=3]; 407 -> 568[label="",style="dashed", color="magenta", weight=3]; 408[label="vwx301 == vwx401",fontsize=16,color="blue",shape="box"];2891[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];408 -> 2891[label="",style="solid", color="blue", weight=9]; 2891 -> 569[label="",style="solid", color="blue", weight=3]; 2892[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];408 -> 2892[label="",style="solid", color="blue", weight=9]; 2892 -> 570[label="",style="solid", color="blue", weight=3]; 2893[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];408 -> 2893[label="",style="solid", color="blue", weight=9]; 2893 -> 571[label="",style="solid", color="blue", weight=3]; 2894[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];408 -> 2894[label="",style="solid", color="blue", weight=9]; 2894 -> 572[label="",style="solid", color="blue", weight=3]; 2895[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];408 -> 2895[label="",style="solid", color="blue", weight=9]; 2895 -> 573[label="",style="solid", color="blue", weight=3]; 2896[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];408 -> 2896[label="",style="solid", color="blue", weight=9]; 2896 -> 574[label="",style="solid", color="blue", weight=3]; 2897[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];408 -> 2897[label="",style="solid", color="blue", weight=9]; 2897 -> 575[label="",style="solid", color="blue", weight=3]; 2898[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];408 -> 2898[label="",style="solid", color="blue", weight=9]; 2898 -> 576[label="",style="solid", color="blue", weight=3]; 2899[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];408 -> 2899[label="",style="solid", color="blue", weight=9]; 2899 -> 577[label="",style="solid", color="blue", weight=3]; 2900[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];408 -> 2900[label="",style="solid", color="blue", weight=9]; 2900 -> 578[label="",style="solid", color="blue", weight=3]; 2901[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];408 -> 2901[label="",style="solid", color="blue", weight=9]; 2901 -> 579[label="",style="solid", color="blue", weight=3]; 2902[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];408 -> 2902[label="",style="solid", color="blue", weight=9]; 2902 -> 580[label="",style="solid", color="blue", weight=3]; 2903[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];408 -> 2903[label="",style="solid", color="blue", weight=9]; 2903 -> 581[label="",style="solid", color="blue", weight=3]; 2904[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];408 -> 2904[label="",style="solid", color="blue", weight=9]; 2904 -> 582[label="",style="solid", color="blue", weight=3]; 409[label="vwx302 == vwx402",fontsize=16,color="blue",shape="box"];2905[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];409 -> 2905[label="",style="solid", color="blue", weight=9]; 2905 -> 583[label="",style="solid", color="blue", weight=3]; 2906[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];409 -> 2906[label="",style="solid", color="blue", weight=9]; 2906 -> 584[label="",style="solid", color="blue", weight=3]; 2907[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];409 -> 2907[label="",style="solid", color="blue", weight=9]; 2907 -> 585[label="",style="solid", color="blue", weight=3]; 2908[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];409 -> 2908[label="",style="solid", color="blue", weight=9]; 2908 -> 586[label="",style="solid", color="blue", weight=3]; 2909[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];409 -> 2909[label="",style="solid", color="blue", weight=9]; 2909 -> 587[label="",style="solid", color="blue", weight=3]; 2910[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];409 -> 2910[label="",style="solid", color="blue", weight=9]; 2910 -> 588[label="",style="solid", color="blue", weight=3]; 2911[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];409 -> 2911[label="",style="solid", color="blue", weight=9]; 2911 -> 589[label="",style="solid", color="blue", weight=3]; 2912[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];409 -> 2912[label="",style="solid", color="blue", weight=9]; 2912 -> 590[label="",style="solid", color="blue", weight=3]; 2913[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];409 -> 2913[label="",style="solid", color="blue", weight=9]; 2913 -> 591[label="",style="solid", color="blue", weight=3]; 2914[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];409 -> 2914[label="",style="solid", color="blue", weight=9]; 2914 -> 592[label="",style="solid", color="blue", weight=3]; 2915[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];409 -> 2915[label="",style="solid", color="blue", weight=9]; 2915 -> 593[label="",style="solid", color="blue", weight=3]; 2916[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];409 -> 2916[label="",style="solid", color="blue", weight=9]; 2916 -> 594[label="",style="solid", color="blue", weight=3]; 2917[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];409 -> 2917[label="",style="solid", color="blue", weight=9]; 2917 -> 595[label="",style="solid", color="blue", weight=3]; 2918[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];409 -> 2918[label="",style="solid", color="blue", weight=9]; 2918 -> 596[label="",style="solid", color="blue", weight=3]; 410 -> 378[label="",style="dashed", color="red", weight=0]; 410[label="vwx300 * vwx401",fontsize=16,color="magenta"];410 -> 597[label="",style="dashed", color="magenta", weight=3]; 410 -> 598[label="",style="dashed", color="magenta", weight=3]; 411 -> 378[label="",style="dashed", color="red", weight=0]; 411[label="vwx301 * vwx400",fontsize=16,color="magenta"];411 -> 599[label="",style="dashed", color="magenta", weight=3]; 411 -> 600[label="",style="dashed", color="magenta", weight=3]; 1687[label="vwx9 <= vwx10",fontsize=16,color="black",shape="triangle"];1687 -> 1703[label="",style="solid", color="black", weight=3]; 1688[label="vwx9 <= vwx10",fontsize=16,color="black",shape="triangle"];1688 -> 1704[label="",style="solid", color="black", weight=3]; 1689[label="vwx9 <= vwx10",fontsize=16,color="burlywood",shape="triangle"];2919[label="vwx9/(vwx90,vwx91)",fontsize=10,color="white",style="solid",shape="box"];1689 -> 2919[label="",style="solid", color="burlywood", weight=9]; 2919 -> 1705[label="",style="solid", color="burlywood", weight=3]; 1690[label="vwx9 <= vwx10",fontsize=16,color="black",shape="triangle"];1690 -> 1706[label="",style="solid", color="black", weight=3]; 1691[label="vwx9 <= vwx10",fontsize=16,color="black",shape="triangle"];1691 -> 1707[label="",style="solid", color="black", weight=3]; 1692[label="vwx9 <= vwx10",fontsize=16,color="burlywood",shape="triangle"];2920[label="vwx9/Nothing",fontsize=10,color="white",style="solid",shape="box"];1692 -> 2920[label="",style="solid", color="burlywood", weight=9]; 2920 -> 1708[label="",style="solid", color="burlywood", weight=3]; 2921[label="vwx9/Just vwx90",fontsize=10,color="white",style="solid",shape="box"];1692 -> 2921[label="",style="solid", color="burlywood", weight=9]; 2921 -> 1709[label="",style="solid", color="burlywood", weight=3]; 1693[label="vwx9 <= vwx10",fontsize=16,color="burlywood",shape="triangle"];2922[label="vwx9/False",fontsize=10,color="white",style="solid",shape="box"];1693 -> 2922[label="",style="solid", color="burlywood", weight=9]; 2922 -> 1710[label="",style="solid", color="burlywood", weight=3]; 2923[label="vwx9/True",fontsize=10,color="white",style="solid",shape="box"];1693 -> 2923[label="",style="solid", color="burlywood", weight=9]; 2923 -> 1711[label="",style="solid", color="burlywood", weight=3]; 1694[label="vwx9 <= vwx10",fontsize=16,color="black",shape="triangle"];1694 -> 1712[label="",style="solid", color="black", weight=3]; 1695[label="vwx9 <= vwx10",fontsize=16,color="burlywood",shape="triangle"];2924[label="vwx9/Left vwx90",fontsize=10,color="white",style="solid",shape="box"];1695 -> 2924[label="",style="solid", color="burlywood", weight=9]; 2924 -> 1713[label="",style="solid", color="burlywood", weight=3]; 2925[label="vwx9/Right vwx90",fontsize=10,color="white",style="solid",shape="box"];1695 -> 2925[label="",style="solid", color="burlywood", weight=9]; 2925 -> 1714[label="",style="solid", color="burlywood", weight=3]; 1696[label="vwx9 <= vwx10",fontsize=16,color="burlywood",shape="triangle"];2926[label="vwx9/(vwx90,vwx91,vwx92)",fontsize=10,color="white",style="solid",shape="box"];1696 -> 2926[label="",style="solid", color="burlywood", weight=9]; 2926 -> 1715[label="",style="solid", color="burlywood", weight=3]; 1697[label="vwx9 <= vwx10",fontsize=16,color="black",shape="triangle"];1697 -> 1716[label="",style="solid", color="black", weight=3]; 1698[label="vwx9 <= vwx10",fontsize=16,color="burlywood",shape="triangle"];2927[label="vwx9/LT",fontsize=10,color="white",style="solid",shape="box"];1698 -> 2927[label="",style="solid", color="burlywood", weight=9]; 2927 -> 1717[label="",style="solid", color="burlywood", weight=3]; 2928[label="vwx9/EQ",fontsize=10,color="white",style="solid",shape="box"];1698 -> 2928[label="",style="solid", color="burlywood", weight=9]; 2928 -> 1718[label="",style="solid", color="burlywood", weight=3]; 2929[label="vwx9/GT",fontsize=10,color="white",style="solid",shape="box"];1698 -> 2929[label="",style="solid", color="burlywood", weight=9]; 2929 -> 1719[label="",style="solid", color="burlywood", weight=3]; 1699[label="vwx9 <= vwx10",fontsize=16,color="black",shape="triangle"];1699 -> 1720[label="",style="solid", color="black", weight=3]; 1700[label="vwx9 <= vwx10",fontsize=16,color="black",shape="triangle"];1700 -> 1721[label="",style="solid", color="black", weight=3]; 1701[label="compare0 vwx90 vwx100 otherwise",fontsize=16,color="black",shape="box"];1701 -> 1722[label="",style="solid", color="black", weight=3]; 1702[label="LT",fontsize=16,color="green",shape="box"];428[label="primEqNat (Succ vwx3000) (Succ vwx4000)",fontsize=16,color="black",shape="box"];428 -> 621[label="",style="solid", color="black", weight=3]; 429[label="primEqNat (Succ vwx3000) Zero",fontsize=16,color="black",shape="box"];429 -> 622[label="",style="solid", color="black", weight=3]; 430[label="primEqNat Zero (Succ vwx4000)",fontsize=16,color="black",shape="box"];430 -> 623[label="",style="solid", color="black", weight=3]; 431[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];431 -> 624[label="",style="solid", color="black", weight=3]; 432[label="vwx300",fontsize=16,color="green",shape="box"];433[label="vwx400",fontsize=16,color="green",shape="box"];434[label="vwx300",fontsize=16,color="green",shape="box"];435[label="vwx400",fontsize=16,color="green",shape="box"];436[label="vwx300",fontsize=16,color="green",shape="box"];437[label="vwx400",fontsize=16,color="green",shape="box"];438[label="vwx300",fontsize=16,color="green",shape="box"];439[label="vwx400",fontsize=16,color="green",shape="box"];440[label="vwx300",fontsize=16,color="green",shape="box"];441[label="vwx400",fontsize=16,color="green",shape="box"];442[label="vwx300",fontsize=16,color="green",shape="box"];443[label="vwx400",fontsize=16,color="green",shape="box"];444[label="vwx300",fontsize=16,color="green",shape="box"];445[label="vwx400",fontsize=16,color="green",shape="box"];446[label="vwx300",fontsize=16,color="green",shape="box"];447[label="vwx400",fontsize=16,color="green",shape="box"];448[label="vwx300",fontsize=16,color="green",shape="box"];449[label="vwx400",fontsize=16,color="green",shape="box"];450[label="vwx300",fontsize=16,color="green",shape="box"];451[label="vwx400",fontsize=16,color="green",shape="box"];452[label="vwx300",fontsize=16,color="green",shape="box"];453[label="vwx400",fontsize=16,color="green",shape="box"];454[label="vwx300",fontsize=16,color="green",shape="box"];455[label="vwx400",fontsize=16,color="green",shape="box"];456[label="vwx300",fontsize=16,color="green",shape="box"];457[label="vwx400",fontsize=16,color="green",shape="box"];458[label="vwx300",fontsize=16,color="green",shape="box"];459[label="vwx400",fontsize=16,color="green",shape="box"];460[label="False",fontsize=16,color="green",shape="box"];461[label="vwx24",fontsize=16,color="green",shape="box"];462[label="vwx300",fontsize=16,color="green",shape="box"];463[label="vwx400",fontsize=16,color="green",shape="box"];464[label="vwx300",fontsize=16,color="green",shape="box"];465[label="vwx400",fontsize=16,color="green",shape="box"];466[label="vwx301",fontsize=16,color="green",shape="box"];467[label="vwx401",fontsize=16,color="green",shape="box"];468[label="vwx301",fontsize=16,color="green",shape="box"];469[label="vwx401",fontsize=16,color="green",shape="box"];470[label="vwx300",fontsize=16,color="green",shape="box"];471[label="vwx400",fontsize=16,color="green",shape="box"];472[label="vwx300",fontsize=16,color="green",shape="box"];473[label="vwx400",fontsize=16,color="green",shape="box"];474[label="vwx300",fontsize=16,color="green",shape="box"];475[label="vwx400",fontsize=16,color="green",shape="box"];476[label="vwx300",fontsize=16,color="green",shape="box"];477[label="vwx400",fontsize=16,color="green",shape="box"];478[label="vwx300",fontsize=16,color="green",shape="box"];479[label="vwx400",fontsize=16,color="green",shape="box"];480[label="vwx300",fontsize=16,color="green",shape="box"];481[label="vwx400",fontsize=16,color="green",shape="box"];482[label="vwx300",fontsize=16,color="green",shape="box"];483[label="vwx400",fontsize=16,color="green",shape="box"];484[label="vwx300",fontsize=16,color="green",shape="box"];485[label="vwx400",fontsize=16,color="green",shape="box"];486[label="vwx300",fontsize=16,color="green",shape="box"];487[label="vwx400",fontsize=16,color="green",shape="box"];488[label="vwx300",fontsize=16,color="green",shape="box"];489[label="vwx400",fontsize=16,color="green",shape="box"];490[label="vwx300",fontsize=16,color="green",shape="box"];491[label="vwx400",fontsize=16,color="green",shape="box"];492[label="vwx300",fontsize=16,color="green",shape="box"];493[label="vwx400",fontsize=16,color="green",shape="box"];494[label="vwx300",fontsize=16,color="green",shape="box"];495[label="vwx400",fontsize=16,color="green",shape="box"];496[label="vwx300",fontsize=16,color="green",shape="box"];497[label="vwx400",fontsize=16,color="green",shape="box"];498[label="vwx301",fontsize=16,color="green",shape="box"];499[label="vwx401",fontsize=16,color="green",shape="box"];500[label="vwx301",fontsize=16,color="green",shape="box"];501[label="vwx401",fontsize=16,color="green",shape="box"];502[label="vwx301",fontsize=16,color="green",shape="box"];503[label="vwx401",fontsize=16,color="green",shape="box"];504[label="vwx301",fontsize=16,color="green",shape="box"];505[label="vwx401",fontsize=16,color="green",shape="box"];506[label="vwx301",fontsize=16,color="green",shape="box"];507[label="vwx401",fontsize=16,color="green",shape="box"];508[label="vwx301",fontsize=16,color="green",shape="box"];509[label="vwx401",fontsize=16,color="green",shape="box"];510[label="vwx301",fontsize=16,color="green",shape="box"];511[label="vwx401",fontsize=16,color="green",shape="box"];512[label="vwx301",fontsize=16,color="green",shape="box"];513[label="vwx401",fontsize=16,color="green",shape="box"];514[label="vwx301",fontsize=16,color="green",shape="box"];515[label="vwx401",fontsize=16,color="green",shape="box"];516[label="vwx301",fontsize=16,color="green",shape="box"];517[label="vwx401",fontsize=16,color="green",shape="box"];518[label="vwx301",fontsize=16,color="green",shape="box"];519[label="vwx401",fontsize=16,color="green",shape="box"];520[label="vwx301",fontsize=16,color="green",shape="box"];521[label="vwx401",fontsize=16,color="green",shape="box"];522[label="vwx301",fontsize=16,color="green",shape="box"];523[label="vwx401",fontsize=16,color="green",shape="box"];524[label="vwx301",fontsize=16,color="green",shape="box"];525[label="vwx401",fontsize=16,color="green",shape="box"];526[label="primMulInt vwx300 vwx401",fontsize=16,color="burlywood",shape="triangle"];2930[label="vwx300/Pos vwx3000",fontsize=10,color="white",style="solid",shape="box"];526 -> 2930[label="",style="solid", color="burlywood", weight=9]; 2930 -> 625[label="",style="solid", color="burlywood", weight=3]; 2931[label="vwx300/Neg vwx3000",fontsize=10,color="white",style="solid",shape="box"];526 -> 2931[label="",style="solid", color="burlywood", weight=9]; 2931 -> 626[label="",style="solid", color="burlywood", weight=3]; 527[label="vwx400",fontsize=16,color="green",shape="box"];528[label="vwx301",fontsize=16,color="green",shape="box"];529 -> 153[label="",style="dashed", color="red", weight=0]; 529[label="primEqNat vwx3000 vwx4000",fontsize=16,color="magenta"];529 -> 627[label="",style="dashed", color="magenta", weight=3]; 529 -> 628[label="",style="dashed", color="magenta", weight=3]; 530[label="False",fontsize=16,color="green",shape="box"];531[label="False",fontsize=16,color="green",shape="box"];532[label="True",fontsize=16,color="green",shape="box"];533[label="False",fontsize=16,color="green",shape="box"];534[label="True",fontsize=16,color="green",shape="box"];535 -> 153[label="",style="dashed", color="red", weight=0]; 535[label="primEqNat vwx3000 vwx4000",fontsize=16,color="magenta"];535 -> 629[label="",style="dashed", color="magenta", weight=3]; 535 -> 630[label="",style="dashed", color="magenta", weight=3]; 536[label="False",fontsize=16,color="green",shape="box"];537[label="False",fontsize=16,color="green",shape="box"];538[label="True",fontsize=16,color="green",shape="box"];539[label="False",fontsize=16,color="green",shape="box"];540[label="True",fontsize=16,color="green",shape="box"];541[label="vwx300",fontsize=16,color="green",shape="box"];542[label="vwx400",fontsize=16,color="green",shape="box"];543[label="vwx300",fontsize=16,color="green",shape="box"];544[label="vwx400",fontsize=16,color="green",shape="box"];545[label="vwx300",fontsize=16,color="green",shape="box"];546[label="vwx400",fontsize=16,color="green",shape="box"];547[label="vwx300",fontsize=16,color="green",shape="box"];548[label="vwx400",fontsize=16,color="green",shape="box"];549[label="vwx300",fontsize=16,color="green",shape="box"];550[label="vwx400",fontsize=16,color="green",shape="box"];551[label="vwx300",fontsize=16,color="green",shape="box"];552[label="vwx400",fontsize=16,color="green",shape="box"];553[label="vwx300",fontsize=16,color="green",shape="box"];554[label="vwx400",fontsize=16,color="green",shape="box"];555[label="vwx300",fontsize=16,color="green",shape="box"];556[label="vwx400",fontsize=16,color="green",shape="box"];557[label="vwx300",fontsize=16,color="green",shape="box"];558[label="vwx400",fontsize=16,color="green",shape="box"];559[label="vwx300",fontsize=16,color="green",shape="box"];560[label="vwx400",fontsize=16,color="green",shape="box"];561[label="vwx300",fontsize=16,color="green",shape="box"];562[label="vwx400",fontsize=16,color="green",shape="box"];563[label="vwx300",fontsize=16,color="green",shape="box"];564[label="vwx400",fontsize=16,color="green",shape="box"];565[label="vwx300",fontsize=16,color="green",shape="box"];566[label="vwx400",fontsize=16,color="green",shape="box"];567[label="vwx300",fontsize=16,color="green",shape="box"];568[label="vwx400",fontsize=16,color="green",shape="box"];569 -> 28[label="",style="dashed", color="red", weight=0]; 569[label="vwx301 == vwx401",fontsize=16,color="magenta"];569 -> 631[label="",style="dashed", color="magenta", weight=3]; 569 -> 632[label="",style="dashed", color="magenta", weight=3]; 570 -> 29[label="",style="dashed", color="red", weight=0]; 570[label="vwx301 == vwx401",fontsize=16,color="magenta"];570 -> 633[label="",style="dashed", color="magenta", weight=3]; 570 -> 634[label="",style="dashed", color="magenta", weight=3]; 571 -> 30[label="",style="dashed", color="red", weight=0]; 571[label="vwx301 == vwx401",fontsize=16,color="magenta"];571 -> 635[label="",style="dashed", color="magenta", weight=3]; 571 -> 636[label="",style="dashed", color="magenta", weight=3]; 572 -> 31[label="",style="dashed", color="red", weight=0]; 572[label="vwx301 == vwx401",fontsize=16,color="magenta"];572 -> 637[label="",style="dashed", color="magenta", weight=3]; 572 -> 638[label="",style="dashed", color="magenta", weight=3]; 573 -> 32[label="",style="dashed", color="red", weight=0]; 573[label="vwx301 == vwx401",fontsize=16,color="magenta"];573 -> 639[label="",style="dashed", color="magenta", weight=3]; 573 -> 640[label="",style="dashed", color="magenta", weight=3]; 574 -> 33[label="",style="dashed", color="red", weight=0]; 574[label="vwx301 == vwx401",fontsize=16,color="magenta"];574 -> 641[label="",style="dashed", color="magenta", weight=3]; 574 -> 642[label="",style="dashed", color="magenta", weight=3]; 575 -> 34[label="",style="dashed", color="red", weight=0]; 575[label="vwx301 == vwx401",fontsize=16,color="magenta"];575 -> 643[label="",style="dashed", color="magenta", weight=3]; 575 -> 644[label="",style="dashed", color="magenta", weight=3]; 576 -> 35[label="",style="dashed", color="red", weight=0]; 576[label="vwx301 == vwx401",fontsize=16,color="magenta"];576 -> 645[label="",style="dashed", color="magenta", weight=3]; 576 -> 646[label="",style="dashed", color="magenta", weight=3]; 577 -> 36[label="",style="dashed", color="red", weight=0]; 577[label="vwx301 == vwx401",fontsize=16,color="magenta"];577 -> 647[label="",style="dashed", color="magenta", weight=3]; 577 -> 648[label="",style="dashed", color="magenta", weight=3]; 578 -> 37[label="",style="dashed", color="red", weight=0]; 578[label="vwx301 == vwx401",fontsize=16,color="magenta"];578 -> 649[label="",style="dashed", color="magenta", weight=3]; 578 -> 650[label="",style="dashed", color="magenta", weight=3]; 579 -> 38[label="",style="dashed", color="red", weight=0]; 579[label="vwx301 == vwx401",fontsize=16,color="magenta"];579 -> 651[label="",style="dashed", color="magenta", weight=3]; 579 -> 652[label="",style="dashed", color="magenta", weight=3]; 580 -> 39[label="",style="dashed", color="red", weight=0]; 580[label="vwx301 == vwx401",fontsize=16,color="magenta"];580 -> 653[label="",style="dashed", color="magenta", weight=3]; 580 -> 654[label="",style="dashed", color="magenta", weight=3]; 581 -> 40[label="",style="dashed", color="red", weight=0]; 581[label="vwx301 == vwx401",fontsize=16,color="magenta"];581 -> 655[label="",style="dashed", color="magenta", weight=3]; 581 -> 656[label="",style="dashed", color="magenta", weight=3]; 582 -> 41[label="",style="dashed", color="red", weight=0]; 582[label="vwx301 == vwx401",fontsize=16,color="magenta"];582 -> 657[label="",style="dashed", color="magenta", weight=3]; 582 -> 658[label="",style="dashed", color="magenta", weight=3]; 583 -> 28[label="",style="dashed", color="red", weight=0]; 583[label="vwx302 == vwx402",fontsize=16,color="magenta"];583 -> 659[label="",style="dashed", color="magenta", weight=3]; 583 -> 660[label="",style="dashed", color="magenta", weight=3]; 584 -> 29[label="",style="dashed", color="red", weight=0]; 584[label="vwx302 == vwx402",fontsize=16,color="magenta"];584 -> 661[label="",style="dashed", color="magenta", weight=3]; 584 -> 662[label="",style="dashed", color="magenta", weight=3]; 585 -> 30[label="",style="dashed", color="red", weight=0]; 585[label="vwx302 == vwx402",fontsize=16,color="magenta"];585 -> 663[label="",style="dashed", color="magenta", weight=3]; 585 -> 664[label="",style="dashed", color="magenta", weight=3]; 586 -> 31[label="",style="dashed", color="red", weight=0]; 586[label="vwx302 == vwx402",fontsize=16,color="magenta"];586 -> 665[label="",style="dashed", color="magenta", weight=3]; 586 -> 666[label="",style="dashed", color="magenta", weight=3]; 587 -> 32[label="",style="dashed", color="red", weight=0]; 587[label="vwx302 == vwx402",fontsize=16,color="magenta"];587 -> 667[label="",style="dashed", color="magenta", weight=3]; 587 -> 668[label="",style="dashed", color="magenta", weight=3]; 588 -> 33[label="",style="dashed", color="red", weight=0]; 588[label="vwx302 == vwx402",fontsize=16,color="magenta"];588 -> 669[label="",style="dashed", color="magenta", weight=3]; 588 -> 670[label="",style="dashed", color="magenta", weight=3]; 589 -> 34[label="",style="dashed", color="red", weight=0]; 589[label="vwx302 == vwx402",fontsize=16,color="magenta"];589 -> 671[label="",style="dashed", color="magenta", weight=3]; 589 -> 672[label="",style="dashed", color="magenta", weight=3]; 590 -> 35[label="",style="dashed", color="red", weight=0]; 590[label="vwx302 == vwx402",fontsize=16,color="magenta"];590 -> 673[label="",style="dashed", color="magenta", weight=3]; 590 -> 674[label="",style="dashed", color="magenta", weight=3]; 591 -> 36[label="",style="dashed", color="red", weight=0]; 591[label="vwx302 == vwx402",fontsize=16,color="magenta"];591 -> 675[label="",style="dashed", color="magenta", weight=3]; 591 -> 676[label="",style="dashed", color="magenta", weight=3]; 592 -> 37[label="",style="dashed", color="red", weight=0]; 592[label="vwx302 == vwx402",fontsize=16,color="magenta"];592 -> 677[label="",style="dashed", color="magenta", weight=3]; 592 -> 678[label="",style="dashed", color="magenta", weight=3]; 593 -> 38[label="",style="dashed", color="red", weight=0]; 593[label="vwx302 == vwx402",fontsize=16,color="magenta"];593 -> 679[label="",style="dashed", color="magenta", weight=3]; 593 -> 680[label="",style="dashed", color="magenta", weight=3]; 594 -> 39[label="",style="dashed", color="red", weight=0]; 594[label="vwx302 == vwx402",fontsize=16,color="magenta"];594 -> 681[label="",style="dashed", color="magenta", weight=3]; 594 -> 682[label="",style="dashed", color="magenta", weight=3]; 595 -> 40[label="",style="dashed", color="red", weight=0]; 595[label="vwx302 == vwx402",fontsize=16,color="magenta"];595 -> 683[label="",style="dashed", color="magenta", weight=3]; 595 -> 684[label="",style="dashed", color="magenta", weight=3]; 596 -> 41[label="",style="dashed", color="red", weight=0]; 596[label="vwx302 == vwx402",fontsize=16,color="magenta"];596 -> 685[label="",style="dashed", color="magenta", weight=3]; 596 -> 686[label="",style="dashed", color="magenta", weight=3]; 597[label="vwx401",fontsize=16,color="green",shape="box"];598[label="vwx300",fontsize=16,color="green",shape="box"];599[label="vwx400",fontsize=16,color="green",shape="box"];600[label="vwx301",fontsize=16,color="green",shape="box"];1703[label="compare vwx9 vwx10 /= GT",fontsize=16,color="black",shape="box"];1703 -> 1723[label="",style="solid", color="black", weight=3]; 1704[label="compare vwx9 vwx10 /= GT",fontsize=16,color="black",shape="box"];1704 -> 1724[label="",style="solid", color="black", weight=3]; 1705[label="(vwx90,vwx91) <= vwx10",fontsize=16,color="burlywood",shape="box"];2932[label="vwx10/(vwx100,vwx101)",fontsize=10,color="white",style="solid",shape="box"];1705 -> 2932[label="",style="solid", color="burlywood", weight=9]; 2932 -> 1725[label="",style="solid", color="burlywood", weight=3]; 1706[label="compare vwx9 vwx10 /= GT",fontsize=16,color="black",shape="box"];1706 -> 1726[label="",style="solid", color="black", weight=3]; 1707[label="compare vwx9 vwx10 /= GT",fontsize=16,color="black",shape="box"];1707 -> 1727[label="",style="solid", color="black", weight=3]; 1708[label="Nothing <= vwx10",fontsize=16,color="burlywood",shape="box"];2933[label="vwx10/Nothing",fontsize=10,color="white",style="solid",shape="box"];1708 -> 2933[label="",style="solid", color="burlywood", weight=9]; 2933 -> 1728[label="",style="solid", color="burlywood", weight=3]; 2934[label="vwx10/Just vwx100",fontsize=10,color="white",style="solid",shape="box"];1708 -> 2934[label="",style="solid", color="burlywood", weight=9]; 2934 -> 1729[label="",style="solid", color="burlywood", weight=3]; 1709[label="Just vwx90 <= vwx10",fontsize=16,color="burlywood",shape="box"];2935[label="vwx10/Nothing",fontsize=10,color="white",style="solid",shape="box"];1709 -> 2935[label="",style="solid", color="burlywood", weight=9]; 2935 -> 1730[label="",style="solid", color="burlywood", weight=3]; 2936[label="vwx10/Just vwx100",fontsize=10,color="white",style="solid",shape="box"];1709 -> 2936[label="",style="solid", color="burlywood", weight=9]; 2936 -> 1731[label="",style="solid", color="burlywood", weight=3]; 1710[label="False <= vwx10",fontsize=16,color="burlywood",shape="box"];2937[label="vwx10/False",fontsize=10,color="white",style="solid",shape="box"];1710 -> 2937[label="",style="solid", color="burlywood", weight=9]; 2937 -> 1732[label="",style="solid", color="burlywood", weight=3]; 2938[label="vwx10/True",fontsize=10,color="white",style="solid",shape="box"];1710 -> 2938[label="",style="solid", color="burlywood", weight=9]; 2938 -> 1733[label="",style="solid", color="burlywood", weight=3]; 1711[label="True <= vwx10",fontsize=16,color="burlywood",shape="box"];2939[label="vwx10/False",fontsize=10,color="white",style="solid",shape="box"];1711 -> 2939[label="",style="solid", color="burlywood", weight=9]; 2939 -> 1734[label="",style="solid", color="burlywood", weight=3]; 2940[label="vwx10/True",fontsize=10,color="white",style="solid",shape="box"];1711 -> 2940[label="",style="solid", color="burlywood", weight=9]; 2940 -> 1735[label="",style="solid", color="burlywood", weight=3]; 1712[label="compare vwx9 vwx10 /= GT",fontsize=16,color="black",shape="box"];1712 -> 1736[label="",style="solid", color="black", weight=3]; 1713[label="Left vwx90 <= vwx10",fontsize=16,color="burlywood",shape="box"];2941[label="vwx10/Left vwx100",fontsize=10,color="white",style="solid",shape="box"];1713 -> 2941[label="",style="solid", color="burlywood", weight=9]; 2941 -> 1737[label="",style="solid", color="burlywood", weight=3]; 2942[label="vwx10/Right vwx100",fontsize=10,color="white",style="solid",shape="box"];1713 -> 2942[label="",style="solid", color="burlywood", weight=9]; 2942 -> 1738[label="",style="solid", color="burlywood", weight=3]; 1714[label="Right vwx90 <= vwx10",fontsize=16,color="burlywood",shape="box"];2943[label="vwx10/Left vwx100",fontsize=10,color="white",style="solid",shape="box"];1714 -> 2943[label="",style="solid", color="burlywood", weight=9]; 2943 -> 1739[label="",style="solid", color="burlywood", weight=3]; 2944[label="vwx10/Right vwx100",fontsize=10,color="white",style="solid",shape="box"];1714 -> 2944[label="",style="solid", color="burlywood", weight=9]; 2944 -> 1740[label="",style="solid", color="burlywood", weight=3]; 1715[label="(vwx90,vwx91,vwx92) <= vwx10",fontsize=16,color="burlywood",shape="box"];2945[label="vwx10/(vwx100,vwx101,vwx102)",fontsize=10,color="white",style="solid",shape="box"];1715 -> 2945[label="",style="solid", color="burlywood", weight=9]; 2945 -> 1741[label="",style="solid", color="burlywood", weight=3]; 1716[label="compare vwx9 vwx10 /= GT",fontsize=16,color="black",shape="box"];1716 -> 1742[label="",style="solid", color="black", weight=3]; 1717[label="LT <= vwx10",fontsize=16,color="burlywood",shape="box"];2946[label="vwx10/LT",fontsize=10,color="white",style="solid",shape="box"];1717 -> 2946[label="",style="solid", color="burlywood", weight=9]; 2946 -> 1743[label="",style="solid", color="burlywood", weight=3]; 2947[label="vwx10/EQ",fontsize=10,color="white",style="solid",shape="box"];1717 -> 2947[label="",style="solid", color="burlywood", weight=9]; 2947 -> 1744[label="",style="solid", color="burlywood", weight=3]; 2948[label="vwx10/GT",fontsize=10,color="white",style="solid",shape="box"];1717 -> 2948[label="",style="solid", color="burlywood", weight=9]; 2948 -> 1745[label="",style="solid", color="burlywood", weight=3]; 1718[label="EQ <= vwx10",fontsize=16,color="burlywood",shape="box"];2949[label="vwx10/LT",fontsize=10,color="white",style="solid",shape="box"];1718 -> 2949[label="",style="solid", color="burlywood", weight=9]; 2949 -> 1746[label="",style="solid", color="burlywood", weight=3]; 2950[label="vwx10/EQ",fontsize=10,color="white",style="solid",shape="box"];1718 -> 2950[label="",style="solid", color="burlywood", weight=9]; 2950 -> 1747[label="",style="solid", color="burlywood", weight=3]; 2951[label="vwx10/GT",fontsize=10,color="white",style="solid",shape="box"];1718 -> 2951[label="",style="solid", color="burlywood", weight=9]; 2951 -> 1748[label="",style="solid", color="burlywood", weight=3]; 1719[label="GT <= vwx10",fontsize=16,color="burlywood",shape="box"];2952[label="vwx10/LT",fontsize=10,color="white",style="solid",shape="box"];1719 -> 2952[label="",style="solid", color="burlywood", weight=9]; 2952 -> 1749[label="",style="solid", color="burlywood", weight=3]; 2953[label="vwx10/EQ",fontsize=10,color="white",style="solid",shape="box"];1719 -> 2953[label="",style="solid", color="burlywood", weight=9]; 2953 -> 1750[label="",style="solid", color="burlywood", weight=3]; 2954[label="vwx10/GT",fontsize=10,color="white",style="solid",shape="box"];1719 -> 2954[label="",style="solid", color="burlywood", weight=9]; 2954 -> 1751[label="",style="solid", color="burlywood", weight=3]; 1720[label="compare vwx9 vwx10 /= GT",fontsize=16,color="black",shape="box"];1720 -> 1752[label="",style="solid", color="black", weight=3]; 1721[label="compare vwx9 vwx10 /= GT",fontsize=16,color="black",shape="box"];1721 -> 1753[label="",style="solid", color="black", weight=3]; 1722[label="compare0 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];1722 -> 1754[label="",style="solid", color="black", weight=3]; 621 -> 153[label="",style="dashed", color="red", weight=0]; 621[label="primEqNat vwx3000 vwx4000",fontsize=16,color="magenta"];621 -> 719[label="",style="dashed", color="magenta", weight=3]; 621 -> 720[label="",style="dashed", color="magenta", weight=3]; 622[label="False",fontsize=16,color="green",shape="box"];623[label="False",fontsize=16,color="green",shape="box"];624[label="True",fontsize=16,color="green",shape="box"];625[label="primMulInt (Pos vwx3000) vwx401",fontsize=16,color="burlywood",shape="box"];2955[label="vwx401/Pos vwx4010",fontsize=10,color="white",style="solid",shape="box"];625 -> 2955[label="",style="solid", color="burlywood", weight=9]; 2955 -> 721[label="",style="solid", color="burlywood", weight=3]; 2956[label="vwx401/Neg vwx4010",fontsize=10,color="white",style="solid",shape="box"];625 -> 2956[label="",style="solid", color="burlywood", weight=9]; 2956 -> 722[label="",style="solid", color="burlywood", weight=3]; 626[label="primMulInt (Neg vwx3000) vwx401",fontsize=16,color="burlywood",shape="box"];2957[label="vwx401/Pos vwx4010",fontsize=10,color="white",style="solid",shape="box"];626 -> 2957[label="",style="solid", color="burlywood", weight=9]; 2957 -> 723[label="",style="solid", color="burlywood", weight=3]; 2958[label="vwx401/Neg vwx4010",fontsize=10,color="white",style="solid",shape="box"];626 -> 2958[label="",style="solid", color="burlywood", weight=9]; 2958 -> 724[label="",style="solid", color="burlywood", weight=3]; 627[label="vwx3000",fontsize=16,color="green",shape="box"];628[label="vwx4000",fontsize=16,color="green",shape="box"];629[label="vwx3000",fontsize=16,color="green",shape="box"];630[label="vwx4000",fontsize=16,color="green",shape="box"];631[label="vwx301",fontsize=16,color="green",shape="box"];632[label="vwx401",fontsize=16,color="green",shape="box"];633[label="vwx301",fontsize=16,color="green",shape="box"];634[label="vwx401",fontsize=16,color="green",shape="box"];635[label="vwx301",fontsize=16,color="green",shape="box"];636[label="vwx401",fontsize=16,color="green",shape="box"];637[label="vwx301",fontsize=16,color="green",shape="box"];638[label="vwx401",fontsize=16,color="green",shape="box"];639[label="vwx301",fontsize=16,color="green",shape="box"];640[label="vwx401",fontsize=16,color="green",shape="box"];641[label="vwx301",fontsize=16,color="green",shape="box"];642[label="vwx401",fontsize=16,color="green",shape="box"];643[label="vwx301",fontsize=16,color="green",shape="box"];644[label="vwx401",fontsize=16,color="green",shape="box"];645[label="vwx301",fontsize=16,color="green",shape="box"];646[label="vwx401",fontsize=16,color="green",shape="box"];647[label="vwx301",fontsize=16,color="green",shape="box"];648[label="vwx401",fontsize=16,color="green",shape="box"];649[label="vwx301",fontsize=16,color="green",shape="box"];650[label="vwx401",fontsize=16,color="green",shape="box"];651[label="vwx301",fontsize=16,color="green",shape="box"];652[label="vwx401",fontsize=16,color="green",shape="box"];653[label="vwx301",fontsize=16,color="green",shape="box"];654[label="vwx401",fontsize=16,color="green",shape="box"];655[label="vwx301",fontsize=16,color="green",shape="box"];656[label="vwx401",fontsize=16,color="green",shape="box"];657[label="vwx301",fontsize=16,color="green",shape="box"];658[label="vwx401",fontsize=16,color="green",shape="box"];659[label="vwx302",fontsize=16,color="green",shape="box"];660[label="vwx402",fontsize=16,color="green",shape="box"];661[label="vwx302",fontsize=16,color="green",shape="box"];662[label="vwx402",fontsize=16,color="green",shape="box"];663[label="vwx302",fontsize=16,color="green",shape="box"];664[label="vwx402",fontsize=16,color="green",shape="box"];665[label="vwx302",fontsize=16,color="green",shape="box"];666[label="vwx402",fontsize=16,color="green",shape="box"];667[label="vwx302",fontsize=16,color="green",shape="box"];668[label="vwx402",fontsize=16,color="green",shape="box"];669[label="vwx302",fontsize=16,color="green",shape="box"];670[label="vwx402",fontsize=16,color="green",shape="box"];671[label="vwx302",fontsize=16,color="green",shape="box"];672[label="vwx402",fontsize=16,color="green",shape="box"];673[label="vwx302",fontsize=16,color="green",shape="box"];674[label="vwx402",fontsize=16,color="green",shape="box"];675[label="vwx302",fontsize=16,color="green",shape="box"];676[label="vwx402",fontsize=16,color="green",shape="box"];677[label="vwx302",fontsize=16,color="green",shape="box"];678[label="vwx402",fontsize=16,color="green",shape="box"];679[label="vwx302",fontsize=16,color="green",shape="box"];680[label="vwx402",fontsize=16,color="green",shape="box"];681[label="vwx302",fontsize=16,color="green",shape="box"];682[label="vwx402",fontsize=16,color="green",shape="box"];683[label="vwx302",fontsize=16,color="green",shape="box"];684[label="vwx402",fontsize=16,color="green",shape="box"];685[label="vwx302",fontsize=16,color="green",shape="box"];686[label="vwx402",fontsize=16,color="green",shape="box"];1723 -> 1755[label="",style="dashed", color="red", weight=0]; 1723[label="not (compare vwx9 vwx10 == GT)",fontsize=16,color="magenta"];1723 -> 1756[label="",style="dashed", color="magenta", weight=3]; 1724 -> 1755[label="",style="dashed", color="red", weight=0]; 1724[label="not (compare vwx9 vwx10 == GT)",fontsize=16,color="magenta"];1724 -> 1757[label="",style="dashed", color="magenta", weight=3]; 1725[label="(vwx90,vwx91) <= (vwx100,vwx101)",fontsize=16,color="black",shape="box"];1725 -> 1764[label="",style="solid", color="black", weight=3]; 1726 -> 1755[label="",style="dashed", color="red", weight=0]; 1726[label="not (compare vwx9 vwx10 == GT)",fontsize=16,color="magenta"];1726 -> 1758[label="",style="dashed", color="magenta", weight=3]; 1727 -> 1755[label="",style="dashed", color="red", weight=0]; 1727[label="not (compare vwx9 vwx10 == GT)",fontsize=16,color="magenta"];1727 -> 1759[label="",style="dashed", color="magenta", weight=3]; 1728[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];1728 -> 1765[label="",style="solid", color="black", weight=3]; 1729[label="Nothing <= Just vwx100",fontsize=16,color="black",shape="box"];1729 -> 1766[label="",style="solid", color="black", weight=3]; 1730[label="Just vwx90 <= Nothing",fontsize=16,color="black",shape="box"];1730 -> 1767[label="",style="solid", color="black", weight=3]; 1731[label="Just vwx90 <= Just vwx100",fontsize=16,color="black",shape="box"];1731 -> 1768[label="",style="solid", color="black", weight=3]; 1732[label="False <= False",fontsize=16,color="black",shape="box"];1732 -> 1769[label="",style="solid", color="black", weight=3]; 1733[label="False <= True",fontsize=16,color="black",shape="box"];1733 -> 1770[label="",style="solid", color="black", weight=3]; 1734[label="True <= False",fontsize=16,color="black",shape="box"];1734 -> 1771[label="",style="solid", color="black", weight=3]; 1735[label="True <= True",fontsize=16,color="black",shape="box"];1735 -> 1772[label="",style="solid", color="black", weight=3]; 1736 -> 1755[label="",style="dashed", color="red", weight=0]; 1736[label="not (compare vwx9 vwx10 == GT)",fontsize=16,color="magenta"];1736 -> 1760[label="",style="dashed", color="magenta", weight=3]; 1737[label="Left vwx90 <= Left vwx100",fontsize=16,color="black",shape="box"];1737 -> 1773[label="",style="solid", color="black", weight=3]; 1738[label="Left vwx90 <= Right vwx100",fontsize=16,color="black",shape="box"];1738 -> 1774[label="",style="solid", color="black", weight=3]; 1739[label="Right vwx90 <= Left vwx100",fontsize=16,color="black",shape="box"];1739 -> 1775[label="",style="solid", color="black", weight=3]; 1740[label="Right vwx90 <= Right vwx100",fontsize=16,color="black",shape="box"];1740 -> 1776[label="",style="solid", color="black", weight=3]; 1741[label="(vwx90,vwx91,vwx92) <= (vwx100,vwx101,vwx102)",fontsize=16,color="black",shape="box"];1741 -> 1777[label="",style="solid", color="black", weight=3]; 1742 -> 1755[label="",style="dashed", color="red", weight=0]; 1742[label="not (compare vwx9 vwx10 == GT)",fontsize=16,color="magenta"];1742 -> 1761[label="",style="dashed", color="magenta", weight=3]; 1743[label="LT <= LT",fontsize=16,color="black",shape="box"];1743 -> 1778[label="",style="solid", color="black", weight=3]; 1744[label="LT <= EQ",fontsize=16,color="black",shape="box"];1744 -> 1779[label="",style="solid", color="black", weight=3]; 1745[label="LT <= GT",fontsize=16,color="black",shape="box"];1745 -> 1780[label="",style="solid", color="black", weight=3]; 1746[label="EQ <= LT",fontsize=16,color="black",shape="box"];1746 -> 1781[label="",style="solid", color="black", weight=3]; 1747[label="EQ <= EQ",fontsize=16,color="black",shape="box"];1747 -> 1782[label="",style="solid", color="black", weight=3]; 1748[label="EQ <= GT",fontsize=16,color="black",shape="box"];1748 -> 1783[label="",style="solid", color="black", weight=3]; 1749[label="GT <= LT",fontsize=16,color="black",shape="box"];1749 -> 1784[label="",style="solid", color="black", weight=3]; 1750[label="GT <= EQ",fontsize=16,color="black",shape="box"];1750 -> 1785[label="",style="solid", color="black", weight=3]; 1751[label="GT <= GT",fontsize=16,color="black",shape="box"];1751 -> 1786[label="",style="solid", color="black", weight=3]; 1752 -> 1755[label="",style="dashed", color="red", weight=0]; 1752[label="not (compare vwx9 vwx10 == GT)",fontsize=16,color="magenta"];1752 -> 1762[label="",style="dashed", color="magenta", weight=3]; 1753 -> 1755[label="",style="dashed", color="red", weight=0]; 1753[label="not (compare vwx9 vwx10 == GT)",fontsize=16,color="magenta"];1753 -> 1763[label="",style="dashed", color="magenta", weight=3]; 1754[label="GT",fontsize=16,color="green",shape="box"];719[label="vwx3000",fontsize=16,color="green",shape="box"];720[label="vwx4000",fontsize=16,color="green",shape="box"];721[label="primMulInt (Pos vwx3000) (Pos vwx4010)",fontsize=16,color="black",shape="box"];721 -> 757[label="",style="solid", color="black", weight=3]; 722[label="primMulInt (Pos vwx3000) (Neg vwx4010)",fontsize=16,color="black",shape="box"];722 -> 758[label="",style="solid", color="black", weight=3]; 723[label="primMulInt (Neg vwx3000) (Pos vwx4010)",fontsize=16,color="black",shape="box"];723 -> 759[label="",style="solid", color="black", weight=3]; 724[label="primMulInt (Neg vwx3000) (Neg vwx4010)",fontsize=16,color="black",shape="box"];724 -> 760[label="",style="solid", color="black", weight=3]; 1756 -> 29[label="",style="dashed", color="red", weight=0]; 1756[label="compare vwx9 vwx10 == GT",fontsize=16,color="magenta"];1756 -> 1787[label="",style="dashed", color="magenta", weight=3]; 1756 -> 1788[label="",style="dashed", color="magenta", weight=3]; 1755[label="not vwx51",fontsize=16,color="burlywood",shape="triangle"];2959[label="vwx51/False",fontsize=10,color="white",style="solid",shape="box"];1755 -> 2959[label="",style="solid", color="burlywood", weight=9]; 2959 -> 1789[label="",style="solid", color="burlywood", weight=3]; 2960[label="vwx51/True",fontsize=10,color="white",style="solid",shape="box"];1755 -> 2960[label="",style="solid", color="burlywood", weight=9]; 2960 -> 1790[label="",style="solid", color="burlywood", weight=3]; 1757 -> 29[label="",style="dashed", color="red", weight=0]; 1757[label="compare vwx9 vwx10 == GT",fontsize=16,color="magenta"];1757 -> 1791[label="",style="dashed", color="magenta", weight=3]; 1757 -> 1792[label="",style="dashed", color="magenta", weight=3]; 1764 -> 1858[label="",style="dashed", color="red", weight=0]; 1764[label="vwx90 < vwx100 || vwx90 == vwx100 && vwx91 <= vwx101",fontsize=16,color="magenta"];1764 -> 1859[label="",style="dashed", color="magenta", weight=3]; 1764 -> 1860[label="",style="dashed", color="magenta", weight=3]; 1758 -> 29[label="",style="dashed", color="red", weight=0]; 1758[label="compare vwx9 vwx10 == GT",fontsize=16,color="magenta"];1758 -> 1793[label="",style="dashed", color="magenta", weight=3]; 1758 -> 1794[label="",style="dashed", color="magenta", weight=3]; 1759 -> 29[label="",style="dashed", color="red", weight=0]; 1759[label="compare vwx9 vwx10 == GT",fontsize=16,color="magenta"];1759 -> 1795[label="",style="dashed", color="magenta", weight=3]; 1759 -> 1796[label="",style="dashed", color="magenta", weight=3]; 1765[label="True",fontsize=16,color="green",shape="box"];1766[label="True",fontsize=16,color="green",shape="box"];1767[label="False",fontsize=16,color="green",shape="box"];1768[label="vwx90 <= vwx100",fontsize=16,color="blue",shape="box"];2961[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1768 -> 2961[label="",style="solid", color="blue", weight=9]; 2961 -> 1810[label="",style="solid", color="blue", weight=3]; 2962[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1768 -> 2962[label="",style="solid", color="blue", weight=9]; 2962 -> 1811[label="",style="solid", color="blue", weight=3]; 2963[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1768 -> 2963[label="",style="solid", color="blue", weight=9]; 2963 -> 1812[label="",style="solid", color="blue", weight=3]; 2964[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1768 -> 2964[label="",style="solid", color="blue", weight=9]; 2964 -> 1813[label="",style="solid", color="blue", weight=3]; 2965[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1768 -> 2965[label="",style="solid", color="blue", weight=9]; 2965 -> 1814[label="",style="solid", color="blue", weight=3]; 2966[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1768 -> 2966[label="",style="solid", color="blue", weight=9]; 2966 -> 1815[label="",style="solid", color="blue", weight=3]; 2967[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1768 -> 2967[label="",style="solid", color="blue", weight=9]; 2967 -> 1816[label="",style="solid", color="blue", weight=3]; 2968[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1768 -> 2968[label="",style="solid", color="blue", weight=9]; 2968 -> 1817[label="",style="solid", color="blue", weight=3]; 2969[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1768 -> 2969[label="",style="solid", color="blue", weight=9]; 2969 -> 1818[label="",style="solid", color="blue", weight=3]; 2970[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1768 -> 2970[label="",style="solid", color="blue", weight=9]; 2970 -> 1819[label="",style="solid", color="blue", weight=3]; 2971[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1768 -> 2971[label="",style="solid", color="blue", weight=9]; 2971 -> 1820[label="",style="solid", color="blue", weight=3]; 2972[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1768 -> 2972[label="",style="solid", color="blue", weight=9]; 2972 -> 1821[label="",style="solid", color="blue", weight=3]; 2973[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1768 -> 2973[label="",style="solid", color="blue", weight=9]; 2973 -> 1822[label="",style="solid", color="blue", weight=3]; 2974[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1768 -> 2974[label="",style="solid", color="blue", weight=9]; 2974 -> 1823[label="",style="solid", color="blue", weight=3]; 1769[label="True",fontsize=16,color="green",shape="box"];1770[label="True",fontsize=16,color="green",shape="box"];1771[label="False",fontsize=16,color="green",shape="box"];1772[label="True",fontsize=16,color="green",shape="box"];1760 -> 29[label="",style="dashed", color="red", weight=0]; 1760[label="compare vwx9 vwx10 == GT",fontsize=16,color="magenta"];1760 -> 1797[label="",style="dashed", color="magenta", weight=3]; 1760 -> 1798[label="",style="dashed", color="magenta", weight=3]; 1773[label="vwx90 <= vwx100",fontsize=16,color="blue",shape="box"];2975[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1773 -> 2975[label="",style="solid", color="blue", weight=9]; 2975 -> 1824[label="",style="solid", color="blue", weight=3]; 2976[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1773 -> 2976[label="",style="solid", color="blue", weight=9]; 2976 -> 1825[label="",style="solid", color="blue", weight=3]; 2977[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1773 -> 2977[label="",style="solid", color="blue", weight=9]; 2977 -> 1826[label="",style="solid", color="blue", weight=3]; 2978[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1773 -> 2978[label="",style="solid", color="blue", weight=9]; 2978 -> 1827[label="",style="solid", color="blue", weight=3]; 2979[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1773 -> 2979[label="",style="solid", color="blue", weight=9]; 2979 -> 1828[label="",style="solid", color="blue", weight=3]; 2980[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1773 -> 2980[label="",style="solid", color="blue", weight=9]; 2980 -> 1829[label="",style="solid", color="blue", weight=3]; 2981[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1773 -> 2981[label="",style="solid", color="blue", weight=9]; 2981 -> 1830[label="",style="solid", color="blue", weight=3]; 2982[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1773 -> 2982[label="",style="solid", color="blue", weight=9]; 2982 -> 1831[label="",style="solid", color="blue", weight=3]; 2983[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1773 -> 2983[label="",style="solid", color="blue", weight=9]; 2983 -> 1832[label="",style="solid", color="blue", weight=3]; 2984[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1773 -> 2984[label="",style="solid", color="blue", weight=9]; 2984 -> 1833[label="",style="solid", color="blue", weight=3]; 2985[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1773 -> 2985[label="",style="solid", color="blue", weight=9]; 2985 -> 1834[label="",style="solid", color="blue", weight=3]; 2986[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1773 -> 2986[label="",style="solid", color="blue", weight=9]; 2986 -> 1835[label="",style="solid", color="blue", weight=3]; 2987[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1773 -> 2987[label="",style="solid", color="blue", weight=9]; 2987 -> 1836[label="",style="solid", color="blue", weight=3]; 2988[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1773 -> 2988[label="",style="solid", color="blue", weight=9]; 2988 -> 1837[label="",style="solid", color="blue", weight=3]; 1774[label="True",fontsize=16,color="green",shape="box"];1775[label="False",fontsize=16,color="green",shape="box"];1776[label="vwx90 <= vwx100",fontsize=16,color="blue",shape="box"];2989[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1776 -> 2989[label="",style="solid", color="blue", weight=9]; 2989 -> 1838[label="",style="solid", color="blue", weight=3]; 2990[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1776 -> 2990[label="",style="solid", color="blue", weight=9]; 2990 -> 1839[label="",style="solid", color="blue", weight=3]; 2991[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1776 -> 2991[label="",style="solid", color="blue", weight=9]; 2991 -> 1840[label="",style="solid", color="blue", weight=3]; 2992[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1776 -> 2992[label="",style="solid", color="blue", weight=9]; 2992 -> 1841[label="",style="solid", color="blue", weight=3]; 2993[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1776 -> 2993[label="",style="solid", color="blue", weight=9]; 2993 -> 1842[label="",style="solid", color="blue", weight=3]; 2994[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1776 -> 2994[label="",style="solid", color="blue", weight=9]; 2994 -> 1843[label="",style="solid", color="blue", weight=3]; 2995[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1776 -> 2995[label="",style="solid", color="blue", weight=9]; 2995 -> 1844[label="",style="solid", color="blue", weight=3]; 2996[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1776 -> 2996[label="",style="solid", color="blue", weight=9]; 2996 -> 1845[label="",style="solid", color="blue", weight=3]; 2997[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1776 -> 2997[label="",style="solid", color="blue", weight=9]; 2997 -> 1846[label="",style="solid", color="blue", weight=3]; 2998[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1776 -> 2998[label="",style="solid", color="blue", weight=9]; 2998 -> 1847[label="",style="solid", color="blue", weight=3]; 2999[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1776 -> 2999[label="",style="solid", color="blue", weight=9]; 2999 -> 1848[label="",style="solid", color="blue", weight=3]; 3000[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1776 -> 3000[label="",style="solid", color="blue", weight=9]; 3000 -> 1849[label="",style="solid", color="blue", weight=3]; 3001[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1776 -> 3001[label="",style="solid", color="blue", weight=9]; 3001 -> 1850[label="",style="solid", color="blue", weight=3]; 3002[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1776 -> 3002[label="",style="solid", color="blue", weight=9]; 3002 -> 1851[label="",style="solid", color="blue", weight=3]; 1777 -> 1858[label="",style="dashed", color="red", weight=0]; 1777[label="vwx90 < vwx100 || vwx90 == vwx100 && (vwx91 < vwx101 || vwx91 == vwx101 && vwx92 <= vwx102)",fontsize=16,color="magenta"];1777 -> 1861[label="",style="dashed", color="magenta", weight=3]; 1777 -> 1862[label="",style="dashed", color="magenta", weight=3]; 1761 -> 29[label="",style="dashed", color="red", weight=0]; 1761[label="compare vwx9 vwx10 == GT",fontsize=16,color="magenta"];1761 -> 1799[label="",style="dashed", color="magenta", weight=3]; 1761 -> 1800[label="",style="dashed", color="magenta", weight=3]; 1778[label="True",fontsize=16,color="green",shape="box"];1779[label="True",fontsize=16,color="green",shape="box"];1780[label="True",fontsize=16,color="green",shape="box"];1781[label="False",fontsize=16,color="green",shape="box"];1782[label="True",fontsize=16,color="green",shape="box"];1783[label="True",fontsize=16,color="green",shape="box"];1784[label="False",fontsize=16,color="green",shape="box"];1785[label="False",fontsize=16,color="green",shape="box"];1786[label="True",fontsize=16,color="green",shape="box"];1762 -> 29[label="",style="dashed", color="red", weight=0]; 1762[label="compare vwx9 vwx10 == GT",fontsize=16,color="magenta"];1762 -> 1801[label="",style="dashed", color="magenta", weight=3]; 1762 -> 1802[label="",style="dashed", color="magenta", weight=3]; 1763 -> 29[label="",style="dashed", color="red", weight=0]; 1763[label="compare vwx9 vwx10 == GT",fontsize=16,color="magenta"];1763 -> 1803[label="",style="dashed", color="magenta", weight=3]; 1763 -> 1804[label="",style="dashed", color="magenta", weight=3]; 757[label="Pos (primMulNat vwx3000 vwx4010)",fontsize=16,color="green",shape="box"];757 -> 826[label="",style="dashed", color="green", weight=3]; 758[label="Neg (primMulNat vwx3000 vwx4010)",fontsize=16,color="green",shape="box"];758 -> 827[label="",style="dashed", color="green", weight=3]; 759[label="Neg (primMulNat vwx3000 vwx4010)",fontsize=16,color="green",shape="box"];759 -> 828[label="",style="dashed", color="green", weight=3]; 760[label="Pos (primMulNat vwx3000 vwx4010)",fontsize=16,color="green",shape="box"];760 -> 829[label="",style="dashed", color="green", weight=3]; 1787[label="compare vwx9 vwx10",fontsize=16,color="burlywood",shape="triangle"];3003[label="vwx9/vwx90 :% vwx91",fontsize=10,color="white",style="solid",shape="box"];1787 -> 3003[label="",style="solid", color="burlywood", weight=9]; 3003 -> 1852[label="",style="solid", color="burlywood", weight=3]; 1788[label="GT",fontsize=16,color="green",shape="box"];1789[label="not False",fontsize=16,color="black",shape="box"];1789 -> 1853[label="",style="solid", color="black", weight=3]; 1790[label="not True",fontsize=16,color="black",shape="box"];1790 -> 1854[label="",style="solid", color="black", weight=3]; 1791[label="compare vwx9 vwx10",fontsize=16,color="burlywood",shape="triangle"];3004[label="vwx9/Integer vwx90",fontsize=10,color="white",style="solid",shape="box"];1791 -> 3004[label="",style="solid", color="burlywood", weight=9]; 3004 -> 1855[label="",style="solid", color="burlywood", weight=3]; 1792[label="GT",fontsize=16,color="green",shape="box"];1859[label="vwx90 < vwx100",fontsize=16,color="blue",shape="box"];3005[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1859 -> 3005[label="",style="solid", color="blue", weight=9]; 3005 -> 1865[label="",style="solid", color="blue", weight=3]; 3006[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1859 -> 3006[label="",style="solid", color="blue", weight=9]; 3006 -> 1866[label="",style="solid", color="blue", weight=3]; 3007[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1859 -> 3007[label="",style="solid", color="blue", weight=9]; 3007 -> 1867[label="",style="solid", color="blue", weight=3]; 3008[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1859 -> 3008[label="",style="solid", color="blue", weight=9]; 3008 -> 1868[label="",style="solid", color="blue", weight=3]; 3009[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1859 -> 3009[label="",style="solid", color="blue", weight=9]; 3009 -> 1869[label="",style="solid", color="blue", weight=3]; 3010[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1859 -> 3010[label="",style="solid", color="blue", weight=9]; 3010 -> 1870[label="",style="solid", color="blue", weight=3]; 3011[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1859 -> 3011[label="",style="solid", color="blue", weight=9]; 3011 -> 1871[label="",style="solid", color="blue", weight=3]; 3012[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1859 -> 3012[label="",style="solid", color="blue", weight=9]; 3012 -> 1872[label="",style="solid", color="blue", weight=3]; 3013[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1859 -> 3013[label="",style="solid", color="blue", weight=9]; 3013 -> 1873[label="",style="solid", color="blue", weight=3]; 3014[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1859 -> 3014[label="",style="solid", color="blue", weight=9]; 3014 -> 1874[label="",style="solid", color="blue", weight=3]; 3015[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1859 -> 3015[label="",style="solid", color="blue", weight=9]; 3015 -> 1875[label="",style="solid", color="blue", weight=3]; 3016[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1859 -> 3016[label="",style="solid", color="blue", weight=9]; 3016 -> 1876[label="",style="solid", color="blue", weight=3]; 3017[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1859 -> 3017[label="",style="solid", color="blue", weight=9]; 3017 -> 1877[label="",style="solid", color="blue", weight=3]; 3018[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1859 -> 3018[label="",style="solid", color="blue", weight=9]; 3018 -> 1878[label="",style="solid", color="blue", weight=3]; 1860 -> 231[label="",style="dashed", color="red", weight=0]; 1860[label="vwx90 == vwx100 && vwx91 <= vwx101",fontsize=16,color="magenta"];1860 -> 1879[label="",style="dashed", color="magenta", weight=3]; 1860 -> 1880[label="",style="dashed", color="magenta", weight=3]; 1858[label="vwx56 || vwx57",fontsize=16,color="burlywood",shape="triangle"];3019[label="vwx56/False",fontsize=10,color="white",style="solid",shape="box"];1858 -> 3019[label="",style="solid", color="burlywood", weight=9]; 3019 -> 1881[label="",style="solid", color="burlywood", weight=3]; 3020[label="vwx56/True",fontsize=10,color="white",style="solid",shape="box"];1858 -> 3020[label="",style="solid", color="burlywood", weight=9]; 3020 -> 1882[label="",style="solid", color="burlywood", weight=3]; 1793[label="compare vwx9 vwx10",fontsize=16,color="burlywood",shape="triangle"];3021[label="vwx9/vwx90 : vwx91",fontsize=10,color="white",style="solid",shape="box"];1793 -> 3021[label="",style="solid", color="burlywood", weight=9]; 3021 -> 1883[label="",style="solid", color="burlywood", weight=3]; 3022[label="vwx9/[]",fontsize=10,color="white",style="solid",shape="box"];1793 -> 3022[label="",style="solid", color="burlywood", weight=9]; 3022 -> 1884[label="",style="solid", color="burlywood", weight=3]; 1794[label="GT",fontsize=16,color="green",shape="box"];1795[label="compare vwx9 vwx10",fontsize=16,color="black",shape="triangle"];1795 -> 1885[label="",style="solid", color="black", weight=3]; 1796[label="GT",fontsize=16,color="green",shape="box"];1810 -> 1687[label="",style="dashed", color="red", weight=0]; 1810[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1810 -> 1886[label="",style="dashed", color="magenta", weight=3]; 1810 -> 1887[label="",style="dashed", color="magenta", weight=3]; 1811 -> 1688[label="",style="dashed", color="red", weight=0]; 1811[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1811 -> 1888[label="",style="dashed", color="magenta", weight=3]; 1811 -> 1889[label="",style="dashed", color="magenta", weight=3]; 1812 -> 1689[label="",style="dashed", color="red", weight=0]; 1812[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1812 -> 1890[label="",style="dashed", color="magenta", weight=3]; 1812 -> 1891[label="",style="dashed", color="magenta", weight=3]; 1813 -> 1690[label="",style="dashed", color="red", weight=0]; 1813[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1813 -> 1892[label="",style="dashed", color="magenta", weight=3]; 1813 -> 1893[label="",style="dashed", color="magenta", weight=3]; 1814 -> 1691[label="",style="dashed", color="red", weight=0]; 1814[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1814 -> 1894[label="",style="dashed", color="magenta", weight=3]; 1814 -> 1895[label="",style="dashed", color="magenta", weight=3]; 1815 -> 1692[label="",style="dashed", color="red", weight=0]; 1815[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1815 -> 1896[label="",style="dashed", color="magenta", weight=3]; 1815 -> 1897[label="",style="dashed", color="magenta", weight=3]; 1816 -> 1693[label="",style="dashed", color="red", weight=0]; 1816[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1816 -> 1898[label="",style="dashed", color="magenta", weight=3]; 1816 -> 1899[label="",style="dashed", color="magenta", weight=3]; 1817 -> 1694[label="",style="dashed", color="red", weight=0]; 1817[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1817 -> 1900[label="",style="dashed", color="magenta", weight=3]; 1817 -> 1901[label="",style="dashed", color="magenta", weight=3]; 1818 -> 1695[label="",style="dashed", color="red", weight=0]; 1818[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1818 -> 1902[label="",style="dashed", color="magenta", weight=3]; 1818 -> 1903[label="",style="dashed", color="magenta", weight=3]; 1819 -> 1696[label="",style="dashed", color="red", weight=0]; 1819[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1819 -> 1904[label="",style="dashed", color="magenta", weight=3]; 1819 -> 1905[label="",style="dashed", color="magenta", weight=3]; 1820 -> 1697[label="",style="dashed", color="red", weight=0]; 1820[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1820 -> 1906[label="",style="dashed", color="magenta", weight=3]; 1820 -> 1907[label="",style="dashed", color="magenta", weight=3]; 1821 -> 1698[label="",style="dashed", color="red", weight=0]; 1821[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1821 -> 1908[label="",style="dashed", color="magenta", weight=3]; 1821 -> 1909[label="",style="dashed", color="magenta", weight=3]; 1822 -> 1699[label="",style="dashed", color="red", weight=0]; 1822[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1822 -> 1910[label="",style="dashed", color="magenta", weight=3]; 1822 -> 1911[label="",style="dashed", color="magenta", weight=3]; 1823 -> 1700[label="",style="dashed", color="red", weight=0]; 1823[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1823 -> 1912[label="",style="dashed", color="magenta", weight=3]; 1823 -> 1913[label="",style="dashed", color="magenta", weight=3]; 1797[label="compare vwx9 vwx10",fontsize=16,color="burlywood",shape="triangle"];3023[label="vwx9/()",fontsize=10,color="white",style="solid",shape="box"];1797 -> 3023[label="",style="solid", color="burlywood", weight=9]; 3023 -> 1914[label="",style="solid", color="burlywood", weight=3]; 1798[label="GT",fontsize=16,color="green",shape="box"];1824 -> 1687[label="",style="dashed", color="red", weight=0]; 1824[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1824 -> 1915[label="",style="dashed", color="magenta", weight=3]; 1824 -> 1916[label="",style="dashed", color="magenta", weight=3]; 1825 -> 1688[label="",style="dashed", color="red", weight=0]; 1825[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1825 -> 1917[label="",style="dashed", color="magenta", weight=3]; 1825 -> 1918[label="",style="dashed", color="magenta", weight=3]; 1826 -> 1689[label="",style="dashed", color="red", weight=0]; 1826[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1826 -> 1919[label="",style="dashed", color="magenta", weight=3]; 1826 -> 1920[label="",style="dashed", color="magenta", weight=3]; 1827 -> 1690[label="",style="dashed", color="red", weight=0]; 1827[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1827 -> 1921[label="",style="dashed", color="magenta", weight=3]; 1827 -> 1922[label="",style="dashed", color="magenta", weight=3]; 1828 -> 1691[label="",style="dashed", color="red", weight=0]; 1828[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1828 -> 1923[label="",style="dashed", color="magenta", weight=3]; 1828 -> 1924[label="",style="dashed", color="magenta", weight=3]; 1829 -> 1692[label="",style="dashed", color="red", weight=0]; 1829[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1829 -> 1925[label="",style="dashed", color="magenta", weight=3]; 1829 -> 1926[label="",style="dashed", color="magenta", weight=3]; 1830 -> 1693[label="",style="dashed", color="red", weight=0]; 1830[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1830 -> 1927[label="",style="dashed", color="magenta", weight=3]; 1830 -> 1928[label="",style="dashed", color="magenta", weight=3]; 1831 -> 1694[label="",style="dashed", color="red", weight=0]; 1831[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1831 -> 1929[label="",style="dashed", color="magenta", weight=3]; 1831 -> 1930[label="",style="dashed", color="magenta", weight=3]; 1832 -> 1695[label="",style="dashed", color="red", weight=0]; 1832[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1832 -> 1931[label="",style="dashed", color="magenta", weight=3]; 1832 -> 1932[label="",style="dashed", color="magenta", weight=3]; 1833 -> 1696[label="",style="dashed", color="red", weight=0]; 1833[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1833 -> 1933[label="",style="dashed", color="magenta", weight=3]; 1833 -> 1934[label="",style="dashed", color="magenta", weight=3]; 1834 -> 1697[label="",style="dashed", color="red", weight=0]; 1834[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1834 -> 1935[label="",style="dashed", color="magenta", weight=3]; 1834 -> 1936[label="",style="dashed", color="magenta", weight=3]; 1835 -> 1698[label="",style="dashed", color="red", weight=0]; 1835[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1835 -> 1937[label="",style="dashed", color="magenta", weight=3]; 1835 -> 1938[label="",style="dashed", color="magenta", weight=3]; 1836 -> 1699[label="",style="dashed", color="red", weight=0]; 1836[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1836 -> 1939[label="",style="dashed", color="magenta", weight=3]; 1836 -> 1940[label="",style="dashed", color="magenta", weight=3]; 1837 -> 1700[label="",style="dashed", color="red", weight=0]; 1837[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1837 -> 1941[label="",style="dashed", color="magenta", weight=3]; 1837 -> 1942[label="",style="dashed", color="magenta", weight=3]; 1838 -> 1687[label="",style="dashed", color="red", weight=0]; 1838[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1838 -> 1943[label="",style="dashed", color="magenta", weight=3]; 1838 -> 1944[label="",style="dashed", color="magenta", weight=3]; 1839 -> 1688[label="",style="dashed", color="red", weight=0]; 1839[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1839 -> 1945[label="",style="dashed", color="magenta", weight=3]; 1839 -> 1946[label="",style="dashed", color="magenta", weight=3]; 1840 -> 1689[label="",style="dashed", color="red", weight=0]; 1840[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1840 -> 1947[label="",style="dashed", color="magenta", weight=3]; 1840 -> 1948[label="",style="dashed", color="magenta", weight=3]; 1841 -> 1690[label="",style="dashed", color="red", weight=0]; 1841[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1841 -> 1949[label="",style="dashed", color="magenta", weight=3]; 1841 -> 1950[label="",style="dashed", color="magenta", weight=3]; 1842 -> 1691[label="",style="dashed", color="red", weight=0]; 1842[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1842 -> 1951[label="",style="dashed", color="magenta", weight=3]; 1842 -> 1952[label="",style="dashed", color="magenta", weight=3]; 1843 -> 1692[label="",style="dashed", color="red", weight=0]; 1843[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1843 -> 1953[label="",style="dashed", color="magenta", weight=3]; 1843 -> 1954[label="",style="dashed", color="magenta", weight=3]; 1844 -> 1693[label="",style="dashed", color="red", weight=0]; 1844[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1844 -> 1955[label="",style="dashed", color="magenta", weight=3]; 1844 -> 1956[label="",style="dashed", color="magenta", weight=3]; 1845 -> 1694[label="",style="dashed", color="red", weight=0]; 1845[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1845 -> 1957[label="",style="dashed", color="magenta", weight=3]; 1845 -> 1958[label="",style="dashed", color="magenta", weight=3]; 1846 -> 1695[label="",style="dashed", color="red", weight=0]; 1846[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1846 -> 1959[label="",style="dashed", color="magenta", weight=3]; 1846 -> 1960[label="",style="dashed", color="magenta", weight=3]; 1847 -> 1696[label="",style="dashed", color="red", weight=0]; 1847[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1847 -> 1961[label="",style="dashed", color="magenta", weight=3]; 1847 -> 1962[label="",style="dashed", color="magenta", weight=3]; 1848 -> 1697[label="",style="dashed", color="red", weight=0]; 1848[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1848 -> 1963[label="",style="dashed", color="magenta", weight=3]; 1848 -> 1964[label="",style="dashed", color="magenta", weight=3]; 1849 -> 1698[label="",style="dashed", color="red", weight=0]; 1849[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1849 -> 1965[label="",style="dashed", color="magenta", weight=3]; 1849 -> 1966[label="",style="dashed", color="magenta", weight=3]; 1850 -> 1699[label="",style="dashed", color="red", weight=0]; 1850[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1850 -> 1967[label="",style="dashed", color="magenta", weight=3]; 1850 -> 1968[label="",style="dashed", color="magenta", weight=3]; 1851 -> 1700[label="",style="dashed", color="red", weight=0]; 1851[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1851 -> 1969[label="",style="dashed", color="magenta", weight=3]; 1851 -> 1970[label="",style="dashed", color="magenta", weight=3]; 1861[label="vwx90 < vwx100",fontsize=16,color="blue",shape="box"];3024[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1861 -> 3024[label="",style="solid", color="blue", weight=9]; 3024 -> 1971[label="",style="solid", color="blue", weight=3]; 3025[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1861 -> 3025[label="",style="solid", color="blue", weight=9]; 3025 -> 1972[label="",style="solid", color="blue", weight=3]; 3026[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1861 -> 3026[label="",style="solid", color="blue", weight=9]; 3026 -> 1973[label="",style="solid", color="blue", weight=3]; 3027[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1861 -> 3027[label="",style="solid", color="blue", weight=9]; 3027 -> 1974[label="",style="solid", color="blue", weight=3]; 3028[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1861 -> 3028[label="",style="solid", color="blue", weight=9]; 3028 -> 1975[label="",style="solid", color="blue", weight=3]; 3029[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1861 -> 3029[label="",style="solid", color="blue", weight=9]; 3029 -> 1976[label="",style="solid", color="blue", weight=3]; 3030[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1861 -> 3030[label="",style="solid", color="blue", weight=9]; 3030 -> 1977[label="",style="solid", color="blue", weight=3]; 3031[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1861 -> 3031[label="",style="solid", color="blue", weight=9]; 3031 -> 1978[label="",style="solid", color="blue", weight=3]; 3032[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1861 -> 3032[label="",style="solid", color="blue", weight=9]; 3032 -> 1979[label="",style="solid", color="blue", weight=3]; 3033[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1861 -> 3033[label="",style="solid", color="blue", weight=9]; 3033 -> 1980[label="",style="solid", color="blue", weight=3]; 3034[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1861 -> 3034[label="",style="solid", color="blue", weight=9]; 3034 -> 1981[label="",style="solid", color="blue", weight=3]; 3035[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1861 -> 3035[label="",style="solid", color="blue", weight=9]; 3035 -> 1982[label="",style="solid", color="blue", weight=3]; 3036[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1861 -> 3036[label="",style="solid", color="blue", weight=9]; 3036 -> 1983[label="",style="solid", color="blue", weight=3]; 3037[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1861 -> 3037[label="",style="solid", color="blue", weight=9]; 3037 -> 1984[label="",style="solid", color="blue", weight=3]; 1862 -> 231[label="",style="dashed", color="red", weight=0]; 1862[label="vwx90 == vwx100 && (vwx91 < vwx101 || vwx91 == vwx101 && vwx92 <= vwx102)",fontsize=16,color="magenta"];1862 -> 1985[label="",style="dashed", color="magenta", weight=3]; 1862 -> 1986[label="",style="dashed", color="magenta", weight=3]; 1799[label="compare vwx9 vwx10",fontsize=16,color="black",shape="triangle"];1799 -> 1987[label="",style="solid", color="black", weight=3]; 1800[label="GT",fontsize=16,color="green",shape="box"];1801[label="compare vwx9 vwx10",fontsize=16,color="black",shape="triangle"];1801 -> 1988[label="",style="solid", color="black", weight=3]; 1802[label="GT",fontsize=16,color="green",shape="box"];1803[label="compare vwx9 vwx10",fontsize=16,color="black",shape="triangle"];1803 -> 1989[label="",style="solid", color="black", weight=3]; 1804[label="GT",fontsize=16,color="green",shape="box"];826[label="primMulNat vwx3000 vwx4010",fontsize=16,color="burlywood",shape="triangle"];3038[label="vwx3000/Succ vwx30000",fontsize=10,color="white",style="solid",shape="box"];826 -> 3038[label="",style="solid", color="burlywood", weight=9]; 3038 -> 968[label="",style="solid", color="burlywood", weight=3]; 3039[label="vwx3000/Zero",fontsize=10,color="white",style="solid",shape="box"];826 -> 3039[label="",style="solid", color="burlywood", weight=9]; 3039 -> 969[label="",style="solid", color="burlywood", weight=3]; 827 -> 826[label="",style="dashed", color="red", weight=0]; 827[label="primMulNat vwx3000 vwx4010",fontsize=16,color="magenta"];827 -> 970[label="",style="dashed", color="magenta", weight=3]; 828 -> 826[label="",style="dashed", color="red", weight=0]; 828[label="primMulNat vwx3000 vwx4010",fontsize=16,color="magenta"];828 -> 971[label="",style="dashed", color="magenta", weight=3]; 829 -> 826[label="",style="dashed", color="red", weight=0]; 829[label="primMulNat vwx3000 vwx4010",fontsize=16,color="magenta"];829 -> 972[label="",style="dashed", color="magenta", weight=3]; 829 -> 973[label="",style="dashed", color="magenta", weight=3]; 1852[label="compare (vwx90 :% vwx91) vwx10",fontsize=16,color="burlywood",shape="box"];3040[label="vwx10/vwx100 :% vwx101",fontsize=10,color="white",style="solid",shape="box"];1852 -> 3040[label="",style="solid", color="burlywood", weight=9]; 3040 -> 1990[label="",style="solid", color="burlywood", weight=3]; 1853[label="True",fontsize=16,color="green",shape="box"];1854[label="False",fontsize=16,color="green",shape="box"];1855[label="compare (Integer vwx90) vwx10",fontsize=16,color="burlywood",shape="box"];3041[label="vwx10/Integer vwx100",fontsize=10,color="white",style="solid",shape="box"];1855 -> 3041[label="",style="solid", color="burlywood", weight=9]; 3041 -> 1991[label="",style="solid", color="burlywood", weight=3]; 1865[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];1865 -> 1992[label="",style="solid", color="black", weight=3]; 1866[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];1866 -> 1993[label="",style="solid", color="black", weight=3]; 1867[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];1867 -> 1994[label="",style="solid", color="black", weight=3]; 1868[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];1868 -> 1995[label="",style="solid", color="black", weight=3]; 1869[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];1869 -> 1996[label="",style="solid", color="black", weight=3]; 1870 -> 4[label="",style="dashed", color="red", weight=0]; 1870[label="vwx90 < vwx100",fontsize=16,color="magenta"];1870 -> 1997[label="",style="dashed", color="magenta", weight=3]; 1870 -> 1998[label="",style="dashed", color="magenta", weight=3]; 1871[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];1871 -> 1999[label="",style="solid", color="black", weight=3]; 1872[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];1872 -> 2000[label="",style="solid", color="black", weight=3]; 1873[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];1873 -> 2001[label="",style="solid", color="black", weight=3]; 1874[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];1874 -> 2002[label="",style="solid", color="black", weight=3]; 1875[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];1875 -> 2003[label="",style="solid", color="black", weight=3]; 1876[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];1876 -> 2004[label="",style="solid", color="black", weight=3]; 1877[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];1877 -> 2005[label="",style="solid", color="black", weight=3]; 1878[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];1878 -> 2006[label="",style="solid", color="black", weight=3]; 1879[label="vwx90 == vwx100",fontsize=16,color="blue",shape="box"];3042[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1879 -> 3042[label="",style="solid", color="blue", weight=9]; 3042 -> 2007[label="",style="solid", color="blue", weight=3]; 3043[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1879 -> 3043[label="",style="solid", color="blue", weight=9]; 3043 -> 2008[label="",style="solid", color="blue", weight=3]; 3044[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1879 -> 3044[label="",style="solid", color="blue", weight=9]; 3044 -> 2009[label="",style="solid", color="blue", weight=3]; 3045[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1879 -> 3045[label="",style="solid", color="blue", weight=9]; 3045 -> 2010[label="",style="solid", color="blue", weight=3]; 3046[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1879 -> 3046[label="",style="solid", color="blue", weight=9]; 3046 -> 2011[label="",style="solid", color="blue", weight=3]; 3047[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1879 -> 3047[label="",style="solid", color="blue", weight=9]; 3047 -> 2012[label="",style="solid", color="blue", weight=3]; 3048[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1879 -> 3048[label="",style="solid", color="blue", weight=9]; 3048 -> 2013[label="",style="solid", color="blue", weight=3]; 3049[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1879 -> 3049[label="",style="solid", color="blue", weight=9]; 3049 -> 2014[label="",style="solid", color="blue", weight=3]; 3050[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1879 -> 3050[label="",style="solid", color="blue", weight=9]; 3050 -> 2015[label="",style="solid", color="blue", weight=3]; 3051[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1879 -> 3051[label="",style="solid", color="blue", weight=9]; 3051 -> 2016[label="",style="solid", color="blue", weight=3]; 3052[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1879 -> 3052[label="",style="solid", color="blue", weight=9]; 3052 -> 2017[label="",style="solid", color="blue", weight=3]; 3053[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1879 -> 3053[label="",style="solid", color="blue", weight=9]; 3053 -> 2018[label="",style="solid", color="blue", weight=3]; 3054[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1879 -> 3054[label="",style="solid", color="blue", weight=9]; 3054 -> 2019[label="",style="solid", color="blue", weight=3]; 3055[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1879 -> 3055[label="",style="solid", color="blue", weight=9]; 3055 -> 2020[label="",style="solid", color="blue", weight=3]; 1880[label="vwx91 <= vwx101",fontsize=16,color="blue",shape="box"];3056[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1880 -> 3056[label="",style="solid", color="blue", weight=9]; 3056 -> 2021[label="",style="solid", color="blue", weight=3]; 3057[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1880 -> 3057[label="",style="solid", color="blue", weight=9]; 3057 -> 2022[label="",style="solid", color="blue", weight=3]; 3058[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1880 -> 3058[label="",style="solid", color="blue", weight=9]; 3058 -> 2023[label="",style="solid", color="blue", weight=3]; 3059[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1880 -> 3059[label="",style="solid", color="blue", weight=9]; 3059 -> 2024[label="",style="solid", color="blue", weight=3]; 3060[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1880 -> 3060[label="",style="solid", color="blue", weight=9]; 3060 -> 2025[label="",style="solid", color="blue", weight=3]; 3061[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1880 -> 3061[label="",style="solid", color="blue", weight=9]; 3061 -> 2026[label="",style="solid", color="blue", weight=3]; 3062[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1880 -> 3062[label="",style="solid", color="blue", weight=9]; 3062 -> 2027[label="",style="solid", color="blue", weight=3]; 3063[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1880 -> 3063[label="",style="solid", color="blue", weight=9]; 3063 -> 2028[label="",style="solid", color="blue", weight=3]; 3064[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1880 -> 3064[label="",style="solid", color="blue", weight=9]; 3064 -> 2029[label="",style="solid", color="blue", weight=3]; 3065[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1880 -> 3065[label="",style="solid", color="blue", weight=9]; 3065 -> 2030[label="",style="solid", color="blue", weight=3]; 3066[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1880 -> 3066[label="",style="solid", color="blue", weight=9]; 3066 -> 2031[label="",style="solid", color="blue", weight=3]; 3067[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1880 -> 3067[label="",style="solid", color="blue", weight=9]; 3067 -> 2032[label="",style="solid", color="blue", weight=3]; 3068[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1880 -> 3068[label="",style="solid", color="blue", weight=9]; 3068 -> 2033[label="",style="solid", color="blue", weight=3]; 3069[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1880 -> 3069[label="",style="solid", color="blue", weight=9]; 3069 -> 2034[label="",style="solid", color="blue", weight=3]; 1881[label="False || vwx57",fontsize=16,color="black",shape="box"];1881 -> 2035[label="",style="solid", color="black", weight=3]; 1882[label="True || vwx57",fontsize=16,color="black",shape="box"];1882 -> 2036[label="",style="solid", color="black", weight=3]; 1883[label="compare (vwx90 : vwx91) vwx10",fontsize=16,color="burlywood",shape="box"];3070[label="vwx10/vwx100 : vwx101",fontsize=10,color="white",style="solid",shape="box"];1883 -> 3070[label="",style="solid", color="burlywood", weight=9]; 3070 -> 2037[label="",style="solid", color="burlywood", weight=3]; 3071[label="vwx10/[]",fontsize=10,color="white",style="solid",shape="box"];1883 -> 3071[label="",style="solid", color="burlywood", weight=9]; 3071 -> 2038[label="",style="solid", color="burlywood", weight=3]; 1884[label="compare [] vwx10",fontsize=16,color="burlywood",shape="box"];3072[label="vwx10/vwx100 : vwx101",fontsize=10,color="white",style="solid",shape="box"];1884 -> 3072[label="",style="solid", color="burlywood", weight=9]; 3072 -> 2039[label="",style="solid", color="burlywood", weight=3]; 3073[label="vwx10/[]",fontsize=10,color="white",style="solid",shape="box"];1884 -> 3073[label="",style="solid", color="burlywood", weight=9]; 3073 -> 2040[label="",style="solid", color="burlywood", weight=3]; 1885[label="primCmpFloat vwx9 vwx10",fontsize=16,color="burlywood",shape="box"];3074[label="vwx9/Float vwx90 vwx91",fontsize=10,color="white",style="solid",shape="box"];1885 -> 3074[label="",style="solid", color="burlywood", weight=9]; 3074 -> 2041[label="",style="solid", color="burlywood", weight=3]; 1886[label="vwx90",fontsize=16,color="green",shape="box"];1887[label="vwx100",fontsize=16,color="green",shape="box"];1888[label="vwx90",fontsize=16,color="green",shape="box"];1889[label="vwx100",fontsize=16,color="green",shape="box"];1890[label="vwx90",fontsize=16,color="green",shape="box"];1891[label="vwx100",fontsize=16,color="green",shape="box"];1892[label="vwx90",fontsize=16,color="green",shape="box"];1893[label="vwx100",fontsize=16,color="green",shape="box"];1894[label="vwx90",fontsize=16,color="green",shape="box"];1895[label="vwx100",fontsize=16,color="green",shape="box"];1896[label="vwx90",fontsize=16,color="green",shape="box"];1897[label="vwx100",fontsize=16,color="green",shape="box"];1898[label="vwx90",fontsize=16,color="green",shape="box"];1899[label="vwx100",fontsize=16,color="green",shape="box"];1900[label="vwx90",fontsize=16,color="green",shape="box"];1901[label="vwx100",fontsize=16,color="green",shape="box"];1902[label="vwx90",fontsize=16,color="green",shape="box"];1903[label="vwx100",fontsize=16,color="green",shape="box"];1904[label="vwx90",fontsize=16,color="green",shape="box"];1905[label="vwx100",fontsize=16,color="green",shape="box"];1906[label="vwx90",fontsize=16,color="green",shape="box"];1907[label="vwx100",fontsize=16,color="green",shape="box"];1908[label="vwx90",fontsize=16,color="green",shape="box"];1909[label="vwx100",fontsize=16,color="green",shape="box"];1910[label="vwx90",fontsize=16,color="green",shape="box"];1911[label="vwx100",fontsize=16,color="green",shape="box"];1912[label="vwx90",fontsize=16,color="green",shape="box"];1913[label="vwx100",fontsize=16,color="green",shape="box"];1914[label="compare () vwx10",fontsize=16,color="burlywood",shape="box"];3075[label="vwx10/()",fontsize=10,color="white",style="solid",shape="box"];1914 -> 3075[label="",style="solid", color="burlywood", weight=9]; 3075 -> 2042[label="",style="solid", color="burlywood", weight=3]; 1915[label="vwx90",fontsize=16,color="green",shape="box"];1916[label="vwx100",fontsize=16,color="green",shape="box"];1917[label="vwx90",fontsize=16,color="green",shape="box"];1918[label="vwx100",fontsize=16,color="green",shape="box"];1919[label="vwx90",fontsize=16,color="green",shape="box"];1920[label="vwx100",fontsize=16,color="green",shape="box"];1921[label="vwx90",fontsize=16,color="green",shape="box"];1922[label="vwx100",fontsize=16,color="green",shape="box"];1923[label="vwx90",fontsize=16,color="green",shape="box"];1924[label="vwx100",fontsize=16,color="green",shape="box"];1925[label="vwx90",fontsize=16,color="green",shape="box"];1926[label="vwx100",fontsize=16,color="green",shape="box"];1927[label="vwx90",fontsize=16,color="green",shape="box"];1928[label="vwx100",fontsize=16,color="green",shape="box"];1929[label="vwx90",fontsize=16,color="green",shape="box"];1930[label="vwx100",fontsize=16,color="green",shape="box"];1931[label="vwx90",fontsize=16,color="green",shape="box"];1932[label="vwx100",fontsize=16,color="green",shape="box"];1933[label="vwx90",fontsize=16,color="green",shape="box"];1934[label="vwx100",fontsize=16,color="green",shape="box"];1935[label="vwx90",fontsize=16,color="green",shape="box"];1936[label="vwx100",fontsize=16,color="green",shape="box"];1937[label="vwx90",fontsize=16,color="green",shape="box"];1938[label="vwx100",fontsize=16,color="green",shape="box"];1939[label="vwx90",fontsize=16,color="green",shape="box"];1940[label="vwx100",fontsize=16,color="green",shape="box"];1941[label="vwx90",fontsize=16,color="green",shape="box"];1942[label="vwx100",fontsize=16,color="green",shape="box"];1943[label="vwx90",fontsize=16,color="green",shape="box"];1944[label="vwx100",fontsize=16,color="green",shape="box"];1945[label="vwx90",fontsize=16,color="green",shape="box"];1946[label="vwx100",fontsize=16,color="green",shape="box"];1947[label="vwx90",fontsize=16,color="green",shape="box"];1948[label="vwx100",fontsize=16,color="green",shape="box"];1949[label="vwx90",fontsize=16,color="green",shape="box"];1950[label="vwx100",fontsize=16,color="green",shape="box"];1951[label="vwx90",fontsize=16,color="green",shape="box"];1952[label="vwx100",fontsize=16,color="green",shape="box"];1953[label="vwx90",fontsize=16,color="green",shape="box"];1954[label="vwx100",fontsize=16,color="green",shape="box"];1955[label="vwx90",fontsize=16,color="green",shape="box"];1956[label="vwx100",fontsize=16,color="green",shape="box"];1957[label="vwx90",fontsize=16,color="green",shape="box"];1958[label="vwx100",fontsize=16,color="green",shape="box"];1959[label="vwx90",fontsize=16,color="green",shape="box"];1960[label="vwx100",fontsize=16,color="green",shape="box"];1961[label="vwx90",fontsize=16,color="green",shape="box"];1962[label="vwx100",fontsize=16,color="green",shape="box"];1963[label="vwx90",fontsize=16,color="green",shape="box"];1964[label="vwx100",fontsize=16,color="green",shape="box"];1965[label="vwx90",fontsize=16,color="green",shape="box"];1966[label="vwx100",fontsize=16,color="green",shape="box"];1967[label="vwx90",fontsize=16,color="green",shape="box"];1968[label="vwx100",fontsize=16,color="green",shape="box"];1969[label="vwx90",fontsize=16,color="green",shape="box"];1970[label="vwx100",fontsize=16,color="green",shape="box"];1971 -> 1865[label="",style="dashed", color="red", weight=0]; 1971[label="vwx90 < vwx100",fontsize=16,color="magenta"];1971 -> 2043[label="",style="dashed", color="magenta", weight=3]; 1971 -> 2044[label="",style="dashed", color="magenta", weight=3]; 1972 -> 1866[label="",style="dashed", color="red", weight=0]; 1972[label="vwx90 < vwx100",fontsize=16,color="magenta"];1972 -> 2045[label="",style="dashed", color="magenta", weight=3]; 1972 -> 2046[label="",style="dashed", color="magenta", weight=3]; 1973 -> 1867[label="",style="dashed", color="red", weight=0]; 1973[label="vwx90 < vwx100",fontsize=16,color="magenta"];1973 -> 2047[label="",style="dashed", color="magenta", weight=3]; 1973 -> 2048[label="",style="dashed", color="magenta", weight=3]; 1974 -> 1868[label="",style="dashed", color="red", weight=0]; 1974[label="vwx90 < vwx100",fontsize=16,color="magenta"];1974 -> 2049[label="",style="dashed", color="magenta", weight=3]; 1974 -> 2050[label="",style="dashed", color="magenta", weight=3]; 1975 -> 1869[label="",style="dashed", color="red", weight=0]; 1975[label="vwx90 < vwx100",fontsize=16,color="magenta"];1975 -> 2051[label="",style="dashed", color="magenta", weight=3]; 1975 -> 2052[label="",style="dashed", color="magenta", weight=3]; 1976 -> 4[label="",style="dashed", color="red", weight=0]; 1976[label="vwx90 < vwx100",fontsize=16,color="magenta"];1976 -> 2053[label="",style="dashed", color="magenta", weight=3]; 1976 -> 2054[label="",style="dashed", color="magenta", weight=3]; 1977 -> 1871[label="",style="dashed", color="red", weight=0]; 1977[label="vwx90 < vwx100",fontsize=16,color="magenta"];1977 -> 2055[label="",style="dashed", color="magenta", weight=3]; 1977 -> 2056[label="",style="dashed", color="magenta", weight=3]; 1978 -> 1872[label="",style="dashed", color="red", weight=0]; 1978[label="vwx90 < vwx100",fontsize=16,color="magenta"];1978 -> 2057[label="",style="dashed", color="magenta", weight=3]; 1978 -> 2058[label="",style="dashed", color="magenta", weight=3]; 1979 -> 1873[label="",style="dashed", color="red", weight=0]; 1979[label="vwx90 < vwx100",fontsize=16,color="magenta"];1979 -> 2059[label="",style="dashed", color="magenta", weight=3]; 1979 -> 2060[label="",style="dashed", color="magenta", weight=3]; 1980 -> 1874[label="",style="dashed", color="red", weight=0]; 1980[label="vwx90 < vwx100",fontsize=16,color="magenta"];1980 -> 2061[label="",style="dashed", color="magenta", weight=3]; 1980 -> 2062[label="",style="dashed", color="magenta", weight=3]; 1981 -> 1875[label="",style="dashed", color="red", weight=0]; 1981[label="vwx90 < vwx100",fontsize=16,color="magenta"];1981 -> 2063[label="",style="dashed", color="magenta", weight=3]; 1981 -> 2064[label="",style="dashed", color="magenta", weight=3]; 1982 -> 1876[label="",style="dashed", color="red", weight=0]; 1982[label="vwx90 < vwx100",fontsize=16,color="magenta"];1982 -> 2065[label="",style="dashed", color="magenta", weight=3]; 1982 -> 2066[label="",style="dashed", color="magenta", weight=3]; 1983 -> 1877[label="",style="dashed", color="red", weight=0]; 1983[label="vwx90 < vwx100",fontsize=16,color="magenta"];1983 -> 2067[label="",style="dashed", color="magenta", weight=3]; 1983 -> 2068[label="",style="dashed", color="magenta", weight=3]; 1984 -> 1878[label="",style="dashed", color="red", weight=0]; 1984[label="vwx90 < vwx100",fontsize=16,color="magenta"];1984 -> 2069[label="",style="dashed", color="magenta", weight=3]; 1984 -> 2070[label="",style="dashed", color="magenta", weight=3]; 1985[label="vwx90 == vwx100",fontsize=16,color="blue",shape="box"];3076[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1985 -> 3076[label="",style="solid", color="blue", weight=9]; 3076 -> 2071[label="",style="solid", color="blue", weight=3]; 3077[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1985 -> 3077[label="",style="solid", color="blue", weight=9]; 3077 -> 2072[label="",style="solid", color="blue", weight=3]; 3078[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1985 -> 3078[label="",style="solid", color="blue", weight=9]; 3078 -> 2073[label="",style="solid", color="blue", weight=3]; 3079[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1985 -> 3079[label="",style="solid", color="blue", weight=9]; 3079 -> 2074[label="",style="solid", color="blue", weight=3]; 3080[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1985 -> 3080[label="",style="solid", color="blue", weight=9]; 3080 -> 2075[label="",style="solid", color="blue", weight=3]; 3081[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1985 -> 3081[label="",style="solid", color="blue", weight=9]; 3081 -> 2076[label="",style="solid", color="blue", weight=3]; 3082[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1985 -> 3082[label="",style="solid", color="blue", weight=9]; 3082 -> 2077[label="",style="solid", color="blue", weight=3]; 3083[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1985 -> 3083[label="",style="solid", color="blue", weight=9]; 3083 -> 2078[label="",style="solid", color="blue", weight=3]; 3084[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1985 -> 3084[label="",style="solid", color="blue", weight=9]; 3084 -> 2079[label="",style="solid", color="blue", weight=3]; 3085[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1985 -> 3085[label="",style="solid", color="blue", weight=9]; 3085 -> 2080[label="",style="solid", color="blue", weight=3]; 3086[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1985 -> 3086[label="",style="solid", color="blue", weight=9]; 3086 -> 2081[label="",style="solid", color="blue", weight=3]; 3087[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1985 -> 3087[label="",style="solid", color="blue", weight=9]; 3087 -> 2082[label="",style="solid", color="blue", weight=3]; 3088[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1985 -> 3088[label="",style="solid", color="blue", weight=9]; 3088 -> 2083[label="",style="solid", color="blue", weight=3]; 3089[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1985 -> 3089[label="",style="solid", color="blue", weight=9]; 3089 -> 2084[label="",style="solid", color="blue", weight=3]; 1986 -> 1858[label="",style="dashed", color="red", weight=0]; 1986[label="vwx91 < vwx101 || vwx91 == vwx101 && vwx92 <= vwx102",fontsize=16,color="magenta"];1986 -> 2085[label="",style="dashed", color="magenta", weight=3]; 1986 -> 2086[label="",style="dashed", color="magenta", weight=3]; 1987[label="primCmpChar vwx9 vwx10",fontsize=16,color="burlywood",shape="box"];3090[label="vwx9/Char vwx90",fontsize=10,color="white",style="solid",shape="box"];1987 -> 3090[label="",style="solid", color="burlywood", weight=9]; 3090 -> 2087[label="",style="solid", color="burlywood", weight=3]; 1988[label="primCmpInt vwx9 vwx10",fontsize=16,color="burlywood",shape="triangle"];3091[label="vwx9/Pos vwx90",fontsize=10,color="white",style="solid",shape="box"];1988 -> 3091[label="",style="solid", color="burlywood", weight=9]; 3091 -> 2088[label="",style="solid", color="burlywood", weight=3]; 3092[label="vwx9/Neg vwx90",fontsize=10,color="white",style="solid",shape="box"];1988 -> 3092[label="",style="solid", color="burlywood", weight=9]; 3092 -> 2089[label="",style="solid", color="burlywood", weight=3]; 1989[label="primCmpDouble vwx9 vwx10",fontsize=16,color="burlywood",shape="box"];3093[label="vwx9/Double vwx90 vwx91",fontsize=10,color="white",style="solid",shape="box"];1989 -> 3093[label="",style="solid", color="burlywood", weight=9]; 3093 -> 2090[label="",style="solid", color="burlywood", weight=3]; 968[label="primMulNat (Succ vwx30000) vwx4010",fontsize=16,color="burlywood",shape="box"];3094[label="vwx4010/Succ vwx40100",fontsize=10,color="white",style="solid",shape="box"];968 -> 3094[label="",style="solid", color="burlywood", weight=9]; 3094 -> 1075[label="",style="solid", color="burlywood", weight=3]; 3095[label="vwx4010/Zero",fontsize=10,color="white",style="solid",shape="box"];968 -> 3095[label="",style="solid", color="burlywood", weight=9]; 3095 -> 1076[label="",style="solid", color="burlywood", weight=3]; 969[label="primMulNat Zero vwx4010",fontsize=16,color="burlywood",shape="box"];3096[label="vwx4010/Succ vwx40100",fontsize=10,color="white",style="solid",shape="box"];969 -> 3096[label="",style="solid", color="burlywood", weight=9]; 3096 -> 1077[label="",style="solid", color="burlywood", weight=3]; 3097[label="vwx4010/Zero",fontsize=10,color="white",style="solid",shape="box"];969 -> 3097[label="",style="solid", color="burlywood", weight=9]; 3097 -> 1078[label="",style="solid", color="burlywood", weight=3]; 970[label="vwx4010",fontsize=16,color="green",shape="box"];971[label="vwx3000",fontsize=16,color="green",shape="box"];972[label="vwx4010",fontsize=16,color="green",shape="box"];973[label="vwx3000",fontsize=16,color="green",shape="box"];1990[label="compare (vwx90 :% vwx91) (vwx100 :% vwx101)",fontsize=16,color="black",shape="box"];1990 -> 2091[label="",style="solid", color="black", weight=3]; 1991[label="compare (Integer vwx90) (Integer vwx100)",fontsize=16,color="black",shape="box"];1991 -> 2092[label="",style="solid", color="black", weight=3]; 1992 -> 29[label="",style="dashed", color="red", weight=0]; 1992[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];1992 -> 2093[label="",style="dashed", color="magenta", weight=3]; 1992 -> 2094[label="",style="dashed", color="magenta", weight=3]; 1993 -> 29[label="",style="dashed", color="red", weight=0]; 1993[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];1993 -> 2095[label="",style="dashed", color="magenta", weight=3]; 1993 -> 2096[label="",style="dashed", color="magenta", weight=3]; 1994 -> 29[label="",style="dashed", color="red", weight=0]; 1994[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];1994 -> 2097[label="",style="dashed", color="magenta", weight=3]; 1994 -> 2098[label="",style="dashed", color="magenta", weight=3]; 1995 -> 29[label="",style="dashed", color="red", weight=0]; 1995[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];1995 -> 2099[label="",style="dashed", color="magenta", weight=3]; 1995 -> 2100[label="",style="dashed", color="magenta", weight=3]; 1996 -> 29[label="",style="dashed", color="red", weight=0]; 1996[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];1996 -> 2101[label="",style="dashed", color="magenta", weight=3]; 1996 -> 2102[label="",style="dashed", color="magenta", weight=3]; 1997[label="vwx90",fontsize=16,color="green",shape="box"];1998[label="vwx100",fontsize=16,color="green",shape="box"];1999 -> 29[label="",style="dashed", color="red", weight=0]; 1999[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];1999 -> 2103[label="",style="dashed", color="magenta", weight=3]; 1999 -> 2104[label="",style="dashed", color="magenta", weight=3]; 2000 -> 29[label="",style="dashed", color="red", weight=0]; 2000[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];2000 -> 2105[label="",style="dashed", color="magenta", weight=3]; 2000 -> 2106[label="",style="dashed", color="magenta", weight=3]; 2001 -> 29[label="",style="dashed", color="red", weight=0]; 2001[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];2001 -> 2107[label="",style="dashed", color="magenta", weight=3]; 2001 -> 2108[label="",style="dashed", color="magenta", weight=3]; 2002 -> 29[label="",style="dashed", color="red", weight=0]; 2002[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];2002 -> 2109[label="",style="dashed", color="magenta", weight=3]; 2002 -> 2110[label="",style="dashed", color="magenta", weight=3]; 2003 -> 29[label="",style="dashed", color="red", weight=0]; 2003[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];2003 -> 2111[label="",style="dashed", color="magenta", weight=3]; 2003 -> 2112[label="",style="dashed", color="magenta", weight=3]; 2004 -> 29[label="",style="dashed", color="red", weight=0]; 2004[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];2004 -> 2113[label="",style="dashed", color="magenta", weight=3]; 2004 -> 2114[label="",style="dashed", color="magenta", weight=3]; 2005 -> 29[label="",style="dashed", color="red", weight=0]; 2005[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];2005 -> 2115[label="",style="dashed", color="magenta", weight=3]; 2005 -> 2116[label="",style="dashed", color="magenta", weight=3]; 2006 -> 29[label="",style="dashed", color="red", weight=0]; 2006[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];2006 -> 2117[label="",style="dashed", color="magenta", weight=3]; 2006 -> 2118[label="",style="dashed", color="magenta", weight=3]; 2007 -> 35[label="",style="dashed", color="red", weight=0]; 2007[label="vwx90 == vwx100",fontsize=16,color="magenta"];2007 -> 2119[label="",style="dashed", color="magenta", weight=3]; 2007 -> 2120[label="",style="dashed", color="magenta", weight=3]; 2008 -> 30[label="",style="dashed", color="red", weight=0]; 2008[label="vwx90 == vwx100",fontsize=16,color="magenta"];2008 -> 2121[label="",style="dashed", color="magenta", weight=3]; 2008 -> 2122[label="",style="dashed", color="magenta", weight=3]; 2009 -> 36[label="",style="dashed", color="red", weight=0]; 2009[label="vwx90 == vwx100",fontsize=16,color="magenta"];2009 -> 2123[label="",style="dashed", color="magenta", weight=3]; 2009 -> 2124[label="",style="dashed", color="magenta", weight=3]; 2010 -> 32[label="",style="dashed", color="red", weight=0]; 2010[label="vwx90 == vwx100",fontsize=16,color="magenta"];2010 -> 2125[label="",style="dashed", color="magenta", weight=3]; 2010 -> 2126[label="",style="dashed", color="magenta", weight=3]; 2011 -> 41[label="",style="dashed", color="red", weight=0]; 2011[label="vwx90 == vwx100",fontsize=16,color="magenta"];2011 -> 2127[label="",style="dashed", color="magenta", weight=3]; 2011 -> 2128[label="",style="dashed", color="magenta", weight=3]; 2012 -> 37[label="",style="dashed", color="red", weight=0]; 2012[label="vwx90 == vwx100",fontsize=16,color="magenta"];2012 -> 2129[label="",style="dashed", color="magenta", weight=3]; 2012 -> 2130[label="",style="dashed", color="magenta", weight=3]; 2013 -> 28[label="",style="dashed", color="red", weight=0]; 2013[label="vwx90 == vwx100",fontsize=16,color="magenta"];2013 -> 2131[label="",style="dashed", color="magenta", weight=3]; 2013 -> 2132[label="",style="dashed", color="magenta", weight=3]; 2014 -> 34[label="",style="dashed", color="red", weight=0]; 2014[label="vwx90 == vwx100",fontsize=16,color="magenta"];2014 -> 2133[label="",style="dashed", color="magenta", weight=3]; 2014 -> 2134[label="",style="dashed", color="magenta", weight=3]; 2015 -> 33[label="",style="dashed", color="red", weight=0]; 2015[label="vwx90 == vwx100",fontsize=16,color="magenta"];2015 -> 2135[label="",style="dashed", color="magenta", weight=3]; 2015 -> 2136[label="",style="dashed", color="magenta", weight=3]; 2016 -> 40[label="",style="dashed", color="red", weight=0]; 2016[label="vwx90 == vwx100",fontsize=16,color="magenta"];2016 -> 2137[label="",style="dashed", color="magenta", weight=3]; 2016 -> 2138[label="",style="dashed", color="magenta", weight=3]; 2017 -> 31[label="",style="dashed", color="red", weight=0]; 2017[label="vwx90 == vwx100",fontsize=16,color="magenta"];2017 -> 2139[label="",style="dashed", color="magenta", weight=3]; 2017 -> 2140[label="",style="dashed", color="magenta", weight=3]; 2018 -> 29[label="",style="dashed", color="red", weight=0]; 2018[label="vwx90 == vwx100",fontsize=16,color="magenta"];2018 -> 2141[label="",style="dashed", color="magenta", weight=3]; 2018 -> 2142[label="",style="dashed", color="magenta", weight=3]; 2019 -> 39[label="",style="dashed", color="red", weight=0]; 2019[label="vwx90 == vwx100",fontsize=16,color="magenta"];2019 -> 2143[label="",style="dashed", color="magenta", weight=3]; 2019 -> 2144[label="",style="dashed", color="magenta", weight=3]; 2020 -> 38[label="",style="dashed", color="red", weight=0]; 2020[label="vwx90 == vwx100",fontsize=16,color="magenta"];2020 -> 2145[label="",style="dashed", color="magenta", weight=3]; 2020 -> 2146[label="",style="dashed", color="magenta", weight=3]; 2021 -> 1687[label="",style="dashed", color="red", weight=0]; 2021[label="vwx91 <= vwx101",fontsize=16,color="magenta"];2021 -> 2147[label="",style="dashed", color="magenta", weight=3]; 2021 -> 2148[label="",style="dashed", color="magenta", weight=3]; 2022 -> 1688[label="",style="dashed", color="red", weight=0]; 2022[label="vwx91 <= vwx101",fontsize=16,color="magenta"];2022 -> 2149[label="",style="dashed", color="magenta", weight=3]; 2022 -> 2150[label="",style="dashed", color="magenta", weight=3]; 2023 -> 1689[label="",style="dashed", color="red", weight=0]; 2023[label="vwx91 <= vwx101",fontsize=16,color="magenta"];2023 -> 2151[label="",style="dashed", color="magenta", weight=3]; 2023 -> 2152[label="",style="dashed", color="magenta", weight=3]; 2024 -> 1690[label="",style="dashed", color="red", weight=0]; 2024[label="vwx91 <= vwx101",fontsize=16,color="magenta"];2024 -> 2153[label="",style="dashed", color="magenta", weight=3]; 2024 -> 2154[label="",style="dashed", color="magenta", weight=3]; 2025 -> 1691[label="",style="dashed", color="red", weight=0]; 2025[label="vwx91 <= vwx101",fontsize=16,color="magenta"];2025 -> 2155[label="",style="dashed", color="magenta", weight=3]; 2025 -> 2156[label="",style="dashed", color="magenta", weight=3]; 2026 -> 1692[label="",style="dashed", color="red", weight=0]; 2026[label="vwx91 <= vwx101",fontsize=16,color="magenta"];2026 -> 2157[label="",style="dashed", color="magenta", weight=3]; 2026 -> 2158[label="",style="dashed", color="magenta", weight=3]; 2027 -> 1693[label="",style="dashed", color="red", weight=0]; 2027[label="vwx91 <= vwx101",fontsize=16,color="magenta"];2027 -> 2159[label="",style="dashed", color="magenta", weight=3]; 2027 -> 2160[label="",style="dashed", color="magenta", weight=3]; 2028 -> 1694[label="",style="dashed", color="red", weight=0]; 2028[label="vwx91 <= vwx101",fontsize=16,color="magenta"];2028 -> 2161[label="",style="dashed", color="magenta", weight=3]; 2028 -> 2162[label="",style="dashed", color="magenta", weight=3]; 2029 -> 1695[label="",style="dashed", color="red", weight=0]; 2029[label="vwx91 <= vwx101",fontsize=16,color="magenta"];2029 -> 2163[label="",style="dashed", color="magenta", weight=3]; 2029 -> 2164[label="",style="dashed", color="magenta", weight=3]; 2030 -> 1696[label="",style="dashed", color="red", weight=0]; 2030[label="vwx91 <= vwx101",fontsize=16,color="magenta"];2030 -> 2165[label="",style="dashed", color="magenta", weight=3]; 2030 -> 2166[label="",style="dashed", color="magenta", weight=3]; 2031 -> 1697[label="",style="dashed", color="red", weight=0]; 2031[label="vwx91 <= vwx101",fontsize=16,color="magenta"];2031 -> 2167[label="",style="dashed", color="magenta", weight=3]; 2031 -> 2168[label="",style="dashed", color="magenta", weight=3]; 2032 -> 1698[label="",style="dashed", color="red", weight=0]; 2032[label="vwx91 <= vwx101",fontsize=16,color="magenta"];2032 -> 2169[label="",style="dashed", color="magenta", weight=3]; 2032 -> 2170[label="",style="dashed", color="magenta", weight=3]; 2033 -> 1699[label="",style="dashed", color="red", weight=0]; 2033[label="vwx91 <= vwx101",fontsize=16,color="magenta"];2033 -> 2171[label="",style="dashed", color="magenta", weight=3]; 2033 -> 2172[label="",style="dashed", color="magenta", weight=3]; 2034 -> 1700[label="",style="dashed", color="red", weight=0]; 2034[label="vwx91 <= vwx101",fontsize=16,color="magenta"];2034 -> 2173[label="",style="dashed", color="magenta", weight=3]; 2034 -> 2174[label="",style="dashed", color="magenta", weight=3]; 2035[label="vwx57",fontsize=16,color="green",shape="box"];2036[label="True",fontsize=16,color="green",shape="box"];2037[label="compare (vwx90 : vwx91) (vwx100 : vwx101)",fontsize=16,color="black",shape="box"];2037 -> 2175[label="",style="solid", color="black", weight=3]; 2038[label="compare (vwx90 : vwx91) []",fontsize=16,color="black",shape="box"];2038 -> 2176[label="",style="solid", color="black", weight=3]; 2039[label="compare [] (vwx100 : vwx101)",fontsize=16,color="black",shape="box"];2039 -> 2177[label="",style="solid", color="black", weight=3]; 2040[label="compare [] []",fontsize=16,color="black",shape="box"];2040 -> 2178[label="",style="solid", color="black", weight=3]; 2041[label="primCmpFloat (Float vwx90 vwx91) vwx10",fontsize=16,color="burlywood",shape="box"];3098[label="vwx91/Pos vwx910",fontsize=10,color="white",style="solid",shape="box"];2041 -> 3098[label="",style="solid", color="burlywood", weight=9]; 3098 -> 2179[label="",style="solid", color="burlywood", weight=3]; 3099[label="vwx91/Neg vwx910",fontsize=10,color="white",style="solid",shape="box"];2041 -> 3099[label="",style="solid", color="burlywood", weight=9]; 3099 -> 2180[label="",style="solid", color="burlywood", weight=3]; 2042[label="compare () ()",fontsize=16,color="black",shape="box"];2042 -> 2181[label="",style="solid", color="black", weight=3]; 2043[label="vwx100",fontsize=16,color="green",shape="box"];2044[label="vwx90",fontsize=16,color="green",shape="box"];2045[label="vwx100",fontsize=16,color="green",shape="box"];2046[label="vwx90",fontsize=16,color="green",shape="box"];2047[label="vwx100",fontsize=16,color="green",shape="box"];2048[label="vwx90",fontsize=16,color="green",shape="box"];2049[label="vwx100",fontsize=16,color="green",shape="box"];2050[label="vwx90",fontsize=16,color="green",shape="box"];2051[label="vwx100",fontsize=16,color="green",shape="box"];2052[label="vwx90",fontsize=16,color="green",shape="box"];2053[label="vwx90",fontsize=16,color="green",shape="box"];2054[label="vwx100",fontsize=16,color="green",shape="box"];2055[label="vwx100",fontsize=16,color="green",shape="box"];2056[label="vwx90",fontsize=16,color="green",shape="box"];2057[label="vwx100",fontsize=16,color="green",shape="box"];2058[label="vwx90",fontsize=16,color="green",shape="box"];2059[label="vwx100",fontsize=16,color="green",shape="box"];2060[label="vwx90",fontsize=16,color="green",shape="box"];2061[label="vwx100",fontsize=16,color="green",shape="box"];2062[label="vwx90",fontsize=16,color="green",shape="box"];2063[label="vwx100",fontsize=16,color="green",shape="box"];2064[label="vwx90",fontsize=16,color="green",shape="box"];2065[label="vwx100",fontsize=16,color="green",shape="box"];2066[label="vwx90",fontsize=16,color="green",shape="box"];2067[label="vwx100",fontsize=16,color="green",shape="box"];2068[label="vwx90",fontsize=16,color="green",shape="box"];2069[label="vwx100",fontsize=16,color="green",shape="box"];2070[label="vwx90",fontsize=16,color="green",shape="box"];2071 -> 35[label="",style="dashed", color="red", weight=0]; 2071[label="vwx90 == vwx100",fontsize=16,color="magenta"];2071 -> 2182[label="",style="dashed", color="magenta", weight=3]; 2071 -> 2183[label="",style="dashed", color="magenta", weight=3]; 2072 -> 30[label="",style="dashed", color="red", weight=0]; 2072[label="vwx90 == vwx100",fontsize=16,color="magenta"];2072 -> 2184[label="",style="dashed", color="magenta", weight=3]; 2072 -> 2185[label="",style="dashed", color="magenta", weight=3]; 2073 -> 36[label="",style="dashed", color="red", weight=0]; 2073[label="vwx90 == vwx100",fontsize=16,color="magenta"];2073 -> 2186[label="",style="dashed", color="magenta", weight=3]; 2073 -> 2187[label="",style="dashed", color="magenta", weight=3]; 2074 -> 32[label="",style="dashed", color="red", weight=0]; 2074[label="vwx90 == vwx100",fontsize=16,color="magenta"];2074 -> 2188[label="",style="dashed", color="magenta", weight=3]; 2074 -> 2189[label="",style="dashed", color="magenta", weight=3]; 2075 -> 41[label="",style="dashed", color="red", weight=0]; 2075[label="vwx90 == vwx100",fontsize=16,color="magenta"];2075 -> 2190[label="",style="dashed", color="magenta", weight=3]; 2075 -> 2191[label="",style="dashed", color="magenta", weight=3]; 2076 -> 37[label="",style="dashed", color="red", weight=0]; 2076[label="vwx90 == vwx100",fontsize=16,color="magenta"];2076 -> 2192[label="",style="dashed", color="magenta", weight=3]; 2076 -> 2193[label="",style="dashed", color="magenta", weight=3]; 2077 -> 28[label="",style="dashed", color="red", weight=0]; 2077[label="vwx90 == vwx100",fontsize=16,color="magenta"];2077 -> 2194[label="",style="dashed", color="magenta", weight=3]; 2077 -> 2195[label="",style="dashed", color="magenta", weight=3]; 2078 -> 34[label="",style="dashed", color="red", weight=0]; 2078[label="vwx90 == vwx100",fontsize=16,color="magenta"];2078 -> 2196[label="",style="dashed", color="magenta", weight=3]; 2078 -> 2197[label="",style="dashed", color="magenta", weight=3]; 2079 -> 33[label="",style="dashed", color="red", weight=0]; 2079[label="vwx90 == vwx100",fontsize=16,color="magenta"];2079 -> 2198[label="",style="dashed", color="magenta", weight=3]; 2079 -> 2199[label="",style="dashed", color="magenta", weight=3]; 2080 -> 40[label="",style="dashed", color="red", weight=0]; 2080[label="vwx90 == vwx100",fontsize=16,color="magenta"];2080 -> 2200[label="",style="dashed", color="magenta", weight=3]; 2080 -> 2201[label="",style="dashed", color="magenta", weight=3]; 2081 -> 31[label="",style="dashed", color="red", weight=0]; 2081[label="vwx90 == vwx100",fontsize=16,color="magenta"];2081 -> 2202[label="",style="dashed", color="magenta", weight=3]; 2081 -> 2203[label="",style="dashed", color="magenta", weight=3]; 2082 -> 29[label="",style="dashed", color="red", weight=0]; 2082[label="vwx90 == vwx100",fontsize=16,color="magenta"];2082 -> 2204[label="",style="dashed", color="magenta", weight=3]; 2082 -> 2205[label="",style="dashed", color="magenta", weight=3]; 2083 -> 39[label="",style="dashed", color="red", weight=0]; 2083[label="vwx90 == vwx100",fontsize=16,color="magenta"];2083 -> 2206[label="",style="dashed", color="magenta", weight=3]; 2083 -> 2207[label="",style="dashed", color="magenta", weight=3]; 2084 -> 38[label="",style="dashed", color="red", weight=0]; 2084[label="vwx90 == vwx100",fontsize=16,color="magenta"];2084 -> 2208[label="",style="dashed", color="magenta", weight=3]; 2084 -> 2209[label="",style="dashed", color="magenta", weight=3]; 2085[label="vwx91 < vwx101",fontsize=16,color="blue",shape="box"];3100[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2085 -> 3100[label="",style="solid", color="blue", weight=9]; 3100 -> 2210[label="",style="solid", color="blue", weight=3]; 3101[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2085 -> 3101[label="",style="solid", color="blue", weight=9]; 3101 -> 2211[label="",style="solid", color="blue", weight=3]; 3102[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2085 -> 3102[label="",style="solid", color="blue", weight=9]; 3102 -> 2212[label="",style="solid", color="blue", weight=3]; 3103[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2085 -> 3103[label="",style="solid", color="blue", weight=9]; 3103 -> 2213[label="",style="solid", color="blue", weight=3]; 3104[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2085 -> 3104[label="",style="solid", color="blue", weight=9]; 3104 -> 2214[label="",style="solid", color="blue", weight=3]; 3105[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2085 -> 3105[label="",style="solid", color="blue", weight=9]; 3105 -> 2215[label="",style="solid", color="blue", weight=3]; 3106[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2085 -> 3106[label="",style="solid", color="blue", weight=9]; 3106 -> 2216[label="",style="solid", color="blue", weight=3]; 3107[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2085 -> 3107[label="",style="solid", color="blue", weight=9]; 3107 -> 2217[label="",style="solid", color="blue", weight=3]; 3108[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2085 -> 3108[label="",style="solid", color="blue", weight=9]; 3108 -> 2218[label="",style="solid", color="blue", weight=3]; 3109[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2085 -> 3109[label="",style="solid", color="blue", weight=9]; 3109 -> 2219[label="",style="solid", color="blue", weight=3]; 3110[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2085 -> 3110[label="",style="solid", color="blue", weight=9]; 3110 -> 2220[label="",style="solid", color="blue", weight=3]; 3111[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2085 -> 3111[label="",style="solid", color="blue", weight=9]; 3111 -> 2221[label="",style="solid", color="blue", weight=3]; 3112[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2085 -> 3112[label="",style="solid", color="blue", weight=9]; 3112 -> 2222[label="",style="solid", color="blue", weight=3]; 3113[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2085 -> 3113[label="",style="solid", color="blue", weight=9]; 3113 -> 2223[label="",style="solid", color="blue", weight=3]; 2086 -> 231[label="",style="dashed", color="red", weight=0]; 2086[label="vwx91 == vwx101 && vwx92 <= vwx102",fontsize=16,color="magenta"];2086 -> 2224[label="",style="dashed", color="magenta", weight=3]; 2086 -> 2225[label="",style="dashed", color="magenta", weight=3]; 2087[label="primCmpChar (Char vwx90) vwx10",fontsize=16,color="burlywood",shape="box"];3114[label="vwx10/Char vwx100",fontsize=10,color="white",style="solid",shape="box"];2087 -> 3114[label="",style="solid", color="burlywood", weight=9]; 3114 -> 2226[label="",style="solid", color="burlywood", weight=3]; 2088[label="primCmpInt (Pos vwx90) vwx10",fontsize=16,color="burlywood",shape="box"];3115[label="vwx90/Succ vwx900",fontsize=10,color="white",style="solid",shape="box"];2088 -> 3115[label="",style="solid", color="burlywood", weight=9]; 3115 -> 2227[label="",style="solid", color="burlywood", weight=3]; 3116[label="vwx90/Zero",fontsize=10,color="white",style="solid",shape="box"];2088 -> 3116[label="",style="solid", color="burlywood", weight=9]; 3116 -> 2228[label="",style="solid", color="burlywood", weight=3]; 2089[label="primCmpInt (Neg vwx90) vwx10",fontsize=16,color="burlywood",shape="box"];3117[label="vwx90/Succ vwx900",fontsize=10,color="white",style="solid",shape="box"];2089 -> 3117[label="",style="solid", color="burlywood", weight=9]; 3117 -> 2229[label="",style="solid", color="burlywood", weight=3]; 3118[label="vwx90/Zero",fontsize=10,color="white",style="solid",shape="box"];2089 -> 3118[label="",style="solid", color="burlywood", weight=9]; 3118 -> 2230[label="",style="solid", color="burlywood", weight=3]; 2090[label="primCmpDouble (Double vwx90 vwx91) vwx10",fontsize=16,color="burlywood",shape="box"];3119[label="vwx91/Pos vwx910",fontsize=10,color="white",style="solid",shape="box"];2090 -> 3119[label="",style="solid", color="burlywood", weight=9]; 3119 -> 2231[label="",style="solid", color="burlywood", weight=3]; 3120[label="vwx91/Neg vwx910",fontsize=10,color="white",style="solid",shape="box"];2090 -> 3120[label="",style="solid", color="burlywood", weight=9]; 3120 -> 2232[label="",style="solid", color="burlywood", weight=3]; 1075[label="primMulNat (Succ vwx30000) (Succ vwx40100)",fontsize=16,color="black",shape="box"];1075 -> 1221[label="",style="solid", color="black", weight=3]; 1076[label="primMulNat (Succ vwx30000) Zero",fontsize=16,color="black",shape="box"];1076 -> 1222[label="",style="solid", color="black", weight=3]; 1077[label="primMulNat Zero (Succ vwx40100)",fontsize=16,color="black",shape="box"];1077 -> 1223[label="",style="solid", color="black", weight=3]; 1078[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1078 -> 1224[label="",style="solid", color="black", weight=3]; 2091[label="compare (vwx90 * vwx101) (vwx100 * vwx91)",fontsize=16,color="blue",shape="box"];3121[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2091 -> 3121[label="",style="solid", color="blue", weight=9]; 3121 -> 2233[label="",style="solid", color="blue", weight=3]; 3122[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2091 -> 3122[label="",style="solid", color="blue", weight=9]; 3122 -> 2234[label="",style="solid", color="blue", weight=3]; 2092 -> 1988[label="",style="dashed", color="red", weight=0]; 2092[label="primCmpInt vwx90 vwx100",fontsize=16,color="magenta"];2092 -> 2235[label="",style="dashed", color="magenta", weight=3]; 2092 -> 2236[label="",style="dashed", color="magenta", weight=3]; 2093 -> 1787[label="",style="dashed", color="red", weight=0]; 2093[label="compare vwx90 vwx100",fontsize=16,color="magenta"];2093 -> 2237[label="",style="dashed", color="magenta", weight=3]; 2093 -> 2238[label="",style="dashed", color="magenta", weight=3]; 2094[label="LT",fontsize=16,color="green",shape="box"];2095 -> 1791[label="",style="dashed", color="red", weight=0]; 2095[label="compare vwx90 vwx100",fontsize=16,color="magenta"];2095 -> 2239[label="",style="dashed", color="magenta", weight=3]; 2095 -> 2240[label="",style="dashed", color="magenta", weight=3]; 2096[label="LT",fontsize=16,color="green",shape="box"];2097[label="compare vwx90 vwx100",fontsize=16,color="black",shape="triangle"];2097 -> 2241[label="",style="solid", color="black", weight=3]; 2098[label="LT",fontsize=16,color="green",shape="box"];2099 -> 1793[label="",style="dashed", color="red", weight=0]; 2099[label="compare vwx90 vwx100",fontsize=16,color="magenta"];2099 -> 2242[label="",style="dashed", color="magenta", weight=3]; 2099 -> 2243[label="",style="dashed", color="magenta", weight=3]; 2100[label="LT",fontsize=16,color="green",shape="box"];2101 -> 1795[label="",style="dashed", color="red", weight=0]; 2101[label="compare vwx90 vwx100",fontsize=16,color="magenta"];2101 -> 2244[label="",style="dashed", color="magenta", weight=3]; 2101 -> 2245[label="",style="dashed", color="magenta", weight=3]; 2102[label="LT",fontsize=16,color="green",shape="box"];2103[label="compare vwx90 vwx100",fontsize=16,color="black",shape="triangle"];2103 -> 2246[label="",style="solid", color="black", weight=3]; 2104[label="LT",fontsize=16,color="green",shape="box"];2105 -> 1797[label="",style="dashed", color="red", weight=0]; 2105[label="compare vwx90 vwx100",fontsize=16,color="magenta"];2105 -> 2247[label="",style="dashed", color="magenta", weight=3]; 2105 -> 2248[label="",style="dashed", color="magenta", weight=3]; 2106[label="LT",fontsize=16,color="green",shape="box"];2107[label="compare vwx90 vwx100",fontsize=16,color="black",shape="triangle"];2107 -> 2249[label="",style="solid", color="black", weight=3]; 2108[label="LT",fontsize=16,color="green",shape="box"];2109[label="compare vwx90 vwx100",fontsize=16,color="black",shape="triangle"];2109 -> 2250[label="",style="solid", color="black", weight=3]; 2110[label="LT",fontsize=16,color="green",shape="box"];2111 -> 1799[label="",style="dashed", color="red", weight=0]; 2111[label="compare vwx90 vwx100",fontsize=16,color="magenta"];2111 -> 2251[label="",style="dashed", color="magenta", weight=3]; 2111 -> 2252[label="",style="dashed", color="magenta", weight=3]; 2112[label="LT",fontsize=16,color="green",shape="box"];2113[label="compare vwx90 vwx100",fontsize=16,color="black",shape="triangle"];2113 -> 2253[label="",style="solid", color="black", weight=3]; 2114[label="LT",fontsize=16,color="green",shape="box"];2115 -> 1801[label="",style="dashed", color="red", weight=0]; 2115[label="compare vwx90 vwx100",fontsize=16,color="magenta"];2115 -> 2254[label="",style="dashed", color="magenta", weight=3]; 2115 -> 2255[label="",style="dashed", color="magenta", weight=3]; 2116[label="LT",fontsize=16,color="green",shape="box"];2117 -> 1803[label="",style="dashed", color="red", weight=0]; 2117[label="compare vwx90 vwx100",fontsize=16,color="magenta"];2117 -> 2256[label="",style="dashed", color="magenta", weight=3]; 2117 -> 2257[label="",style="dashed", color="magenta", weight=3]; 2118[label="LT",fontsize=16,color="green",shape="box"];2119[label="vwx90",fontsize=16,color="green",shape="box"];2120[label="vwx100",fontsize=16,color="green",shape="box"];2121[label="vwx90",fontsize=16,color="green",shape="box"];2122[label="vwx100",fontsize=16,color="green",shape="box"];2123[label="vwx90",fontsize=16,color="green",shape="box"];2124[label="vwx100",fontsize=16,color="green",shape="box"];2125[label="vwx90",fontsize=16,color="green",shape="box"];2126[label="vwx100",fontsize=16,color="green",shape="box"];2127[label="vwx90",fontsize=16,color="green",shape="box"];2128[label="vwx100",fontsize=16,color="green",shape="box"];2129[label="vwx90",fontsize=16,color="green",shape="box"];2130[label="vwx100",fontsize=16,color="green",shape="box"];2131[label="vwx90",fontsize=16,color="green",shape="box"];2132[label="vwx100",fontsize=16,color="green",shape="box"];2133[label="vwx90",fontsize=16,color="green",shape="box"];2134[label="vwx100",fontsize=16,color="green",shape="box"];2135[label="vwx90",fontsize=16,color="green",shape="box"];2136[label="vwx100",fontsize=16,color="green",shape="box"];2137[label="vwx90",fontsize=16,color="green",shape="box"];2138[label="vwx100",fontsize=16,color="green",shape="box"];2139[label="vwx90",fontsize=16,color="green",shape="box"];2140[label="vwx100",fontsize=16,color="green",shape="box"];2141[label="vwx90",fontsize=16,color="green",shape="box"];2142[label="vwx100",fontsize=16,color="green",shape="box"];2143[label="vwx90",fontsize=16,color="green",shape="box"];2144[label="vwx100",fontsize=16,color="green",shape="box"];2145[label="vwx90",fontsize=16,color="green",shape="box"];2146[label="vwx100",fontsize=16,color="green",shape="box"];2147[label="vwx91",fontsize=16,color="green",shape="box"];2148[label="vwx101",fontsize=16,color="green",shape="box"];2149[label="vwx91",fontsize=16,color="green",shape="box"];2150[label="vwx101",fontsize=16,color="green",shape="box"];2151[label="vwx91",fontsize=16,color="green",shape="box"];2152[label="vwx101",fontsize=16,color="green",shape="box"];2153[label="vwx91",fontsize=16,color="green",shape="box"];2154[label="vwx101",fontsize=16,color="green",shape="box"];2155[label="vwx91",fontsize=16,color="green",shape="box"];2156[label="vwx101",fontsize=16,color="green",shape="box"];2157[label="vwx91",fontsize=16,color="green",shape="box"];2158[label="vwx101",fontsize=16,color="green",shape="box"];2159[label="vwx91",fontsize=16,color="green",shape="box"];2160[label="vwx101",fontsize=16,color="green",shape="box"];2161[label="vwx91",fontsize=16,color="green",shape="box"];2162[label="vwx101",fontsize=16,color="green",shape="box"];2163[label="vwx91",fontsize=16,color="green",shape="box"];2164[label="vwx101",fontsize=16,color="green",shape="box"];2165[label="vwx91",fontsize=16,color="green",shape="box"];2166[label="vwx101",fontsize=16,color="green",shape="box"];2167[label="vwx91",fontsize=16,color="green",shape="box"];2168[label="vwx101",fontsize=16,color="green",shape="box"];2169[label="vwx91",fontsize=16,color="green",shape="box"];2170[label="vwx101",fontsize=16,color="green",shape="box"];2171[label="vwx91",fontsize=16,color="green",shape="box"];2172[label="vwx101",fontsize=16,color="green",shape="box"];2173[label="vwx91",fontsize=16,color="green",shape="box"];2174[label="vwx101",fontsize=16,color="green",shape="box"];2175 -> 2258[label="",style="dashed", color="red", weight=0]; 2175[label="primCompAux vwx90 vwx100 (compare vwx91 vwx101)",fontsize=16,color="magenta"];2175 -> 2259[label="",style="dashed", color="magenta", weight=3]; 2176[label="GT",fontsize=16,color="green",shape="box"];2177[label="LT",fontsize=16,color="green",shape="box"];2178[label="EQ",fontsize=16,color="green",shape="box"];2179[label="primCmpFloat (Float vwx90 (Pos vwx910)) vwx10",fontsize=16,color="burlywood",shape="box"];3123[label="vwx10/Float vwx100 vwx101",fontsize=10,color="white",style="solid",shape="box"];2179 -> 3123[label="",style="solid", color="burlywood", weight=9]; 3123 -> 2260[label="",style="solid", color="burlywood", weight=3]; 2180[label="primCmpFloat (Float vwx90 (Neg vwx910)) vwx10",fontsize=16,color="burlywood",shape="box"];3124[label="vwx10/Float vwx100 vwx101",fontsize=10,color="white",style="solid",shape="box"];2180 -> 3124[label="",style="solid", color="burlywood", weight=9]; 3124 -> 2261[label="",style="solid", color="burlywood", weight=3]; 2181[label="EQ",fontsize=16,color="green",shape="box"];2182[label="vwx90",fontsize=16,color="green",shape="box"];2183[label="vwx100",fontsize=16,color="green",shape="box"];2184[label="vwx90",fontsize=16,color="green",shape="box"];2185[label="vwx100",fontsize=16,color="green",shape="box"];2186[label="vwx90",fontsize=16,color="green",shape="box"];2187[label="vwx100",fontsize=16,color="green",shape="box"];2188[label="vwx90",fontsize=16,color="green",shape="box"];2189[label="vwx100",fontsize=16,color="green",shape="box"];2190[label="vwx90",fontsize=16,color="green",shape="box"];2191[label="vwx100",fontsize=16,color="green",shape="box"];2192[label="vwx90",fontsize=16,color="green",shape="box"];2193[label="vwx100",fontsize=16,color="green",shape="box"];2194[label="vwx90",fontsize=16,color="green",shape="box"];2195[label="vwx100",fontsize=16,color="green",shape="box"];2196[label="vwx90",fontsize=16,color="green",shape="box"];2197[label="vwx100",fontsize=16,color="green",shape="box"];2198[label="vwx90",fontsize=16,color="green",shape="box"];2199[label="vwx100",fontsize=16,color="green",shape="box"];2200[label="vwx90",fontsize=16,color="green",shape="box"];2201[label="vwx100",fontsize=16,color="green",shape="box"];2202[label="vwx90",fontsize=16,color="green",shape="box"];2203[label="vwx100",fontsize=16,color="green",shape="box"];2204[label="vwx90",fontsize=16,color="green",shape="box"];2205[label="vwx100",fontsize=16,color="green",shape="box"];2206[label="vwx90",fontsize=16,color="green",shape="box"];2207[label="vwx100",fontsize=16,color="green",shape="box"];2208[label="vwx90",fontsize=16,color="green",shape="box"];2209[label="vwx100",fontsize=16,color="green",shape="box"];2210 -> 1865[label="",style="dashed", color="red", weight=0]; 2210[label="vwx91 < vwx101",fontsize=16,color="magenta"];2210 -> 2262[label="",style="dashed", color="magenta", weight=3]; 2210 -> 2263[label="",style="dashed", color="magenta", weight=3]; 2211 -> 1866[label="",style="dashed", color="red", weight=0]; 2211[label="vwx91 < vwx101",fontsize=16,color="magenta"];2211 -> 2264[label="",style="dashed", color="magenta", weight=3]; 2211 -> 2265[label="",style="dashed", color="magenta", weight=3]; 2212 -> 1867[label="",style="dashed", color="red", weight=0]; 2212[label="vwx91 < vwx101",fontsize=16,color="magenta"];2212 -> 2266[label="",style="dashed", color="magenta", weight=3]; 2212 -> 2267[label="",style="dashed", color="magenta", weight=3]; 2213 -> 1868[label="",style="dashed", color="red", weight=0]; 2213[label="vwx91 < vwx101",fontsize=16,color="magenta"];2213 -> 2268[label="",style="dashed", color="magenta", weight=3]; 2213 -> 2269[label="",style="dashed", color="magenta", weight=3]; 2214 -> 1869[label="",style="dashed", color="red", weight=0]; 2214[label="vwx91 < vwx101",fontsize=16,color="magenta"];2214 -> 2270[label="",style="dashed", color="magenta", weight=3]; 2214 -> 2271[label="",style="dashed", color="magenta", weight=3]; 2215 -> 4[label="",style="dashed", color="red", weight=0]; 2215[label="vwx91 < vwx101",fontsize=16,color="magenta"];2215 -> 2272[label="",style="dashed", color="magenta", weight=3]; 2215 -> 2273[label="",style="dashed", color="magenta", weight=3]; 2216 -> 1871[label="",style="dashed", color="red", weight=0]; 2216[label="vwx91 < vwx101",fontsize=16,color="magenta"];2216 -> 2274[label="",style="dashed", color="magenta", weight=3]; 2216 -> 2275[label="",style="dashed", color="magenta", weight=3]; 2217 -> 1872[label="",style="dashed", color="red", weight=0]; 2217[label="vwx91 < vwx101",fontsize=16,color="magenta"];2217 -> 2276[label="",style="dashed", color="magenta", weight=3]; 2217 -> 2277[label="",style="dashed", color="magenta", weight=3]; 2218 -> 1873[label="",style="dashed", color="red", weight=0]; 2218[label="vwx91 < vwx101",fontsize=16,color="magenta"];2218 -> 2278[label="",style="dashed", color="magenta", weight=3]; 2218 -> 2279[label="",style="dashed", color="magenta", weight=3]; 2219 -> 1874[label="",style="dashed", color="red", weight=0]; 2219[label="vwx91 < vwx101",fontsize=16,color="magenta"];2219 -> 2280[label="",style="dashed", color="magenta", weight=3]; 2219 -> 2281[label="",style="dashed", color="magenta", weight=3]; 2220 -> 1875[label="",style="dashed", color="red", weight=0]; 2220[label="vwx91 < vwx101",fontsize=16,color="magenta"];2220 -> 2282[label="",style="dashed", color="magenta", weight=3]; 2220 -> 2283[label="",style="dashed", color="magenta", weight=3]; 2221 -> 1876[label="",style="dashed", color="red", weight=0]; 2221[label="vwx91 < vwx101",fontsize=16,color="magenta"];2221 -> 2284[label="",style="dashed", color="magenta", weight=3]; 2221 -> 2285[label="",style="dashed", color="magenta", weight=3]; 2222 -> 1877[label="",style="dashed", color="red", weight=0]; 2222[label="vwx91 < vwx101",fontsize=16,color="magenta"];2222 -> 2286[label="",style="dashed", color="magenta", weight=3]; 2222 -> 2287[label="",style="dashed", color="magenta", weight=3]; 2223 -> 1878[label="",style="dashed", color="red", weight=0]; 2223[label="vwx91 < vwx101",fontsize=16,color="magenta"];2223 -> 2288[label="",style="dashed", color="magenta", weight=3]; 2223 -> 2289[label="",style="dashed", color="magenta", weight=3]; 2224[label="vwx91 == vwx101",fontsize=16,color="blue",shape="box"];3125[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2224 -> 3125[label="",style="solid", color="blue", weight=9]; 3125 -> 2290[label="",style="solid", color="blue", weight=3]; 3126[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2224 -> 3126[label="",style="solid", color="blue", weight=9]; 3126 -> 2291[label="",style="solid", color="blue", weight=3]; 3127[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2224 -> 3127[label="",style="solid", color="blue", weight=9]; 3127 -> 2292[label="",style="solid", color="blue", weight=3]; 3128[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2224 -> 3128[label="",style="solid", color="blue", weight=9]; 3128 -> 2293[label="",style="solid", color="blue", weight=3]; 3129[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2224 -> 3129[label="",style="solid", color="blue", weight=9]; 3129 -> 2294[label="",style="solid", color="blue", weight=3]; 3130[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2224 -> 3130[label="",style="solid", color="blue", weight=9]; 3130 -> 2295[label="",style="solid", color="blue", weight=3]; 3131[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2224 -> 3131[label="",style="solid", color="blue", weight=9]; 3131 -> 2296[label="",style="solid", color="blue", weight=3]; 3132[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2224 -> 3132[label="",style="solid", color="blue", weight=9]; 3132 -> 2297[label="",style="solid", color="blue", weight=3]; 3133[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2224 -> 3133[label="",style="solid", color="blue", weight=9]; 3133 -> 2298[label="",style="solid", color="blue", weight=3]; 3134[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2224 -> 3134[label="",style="solid", color="blue", weight=9]; 3134 -> 2299[label="",style="solid", color="blue", weight=3]; 3135[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2224 -> 3135[label="",style="solid", color="blue", weight=9]; 3135 -> 2300[label="",style="solid", color="blue", weight=3]; 3136[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2224 -> 3136[label="",style="solid", color="blue", weight=9]; 3136 -> 2301[label="",style="solid", color="blue", weight=3]; 3137[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2224 -> 3137[label="",style="solid", color="blue", weight=9]; 3137 -> 2302[label="",style="solid", color="blue", weight=3]; 3138[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2224 -> 3138[label="",style="solid", color="blue", weight=9]; 3138 -> 2303[label="",style="solid", color="blue", weight=3]; 2225[label="vwx92 <= vwx102",fontsize=16,color="blue",shape="box"];3139[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2225 -> 3139[label="",style="solid", color="blue", weight=9]; 3139 -> 2304[label="",style="solid", color="blue", weight=3]; 3140[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2225 -> 3140[label="",style="solid", color="blue", weight=9]; 3140 -> 2305[label="",style="solid", color="blue", weight=3]; 3141[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2225 -> 3141[label="",style="solid", color="blue", weight=9]; 3141 -> 2306[label="",style="solid", color="blue", weight=3]; 3142[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2225 -> 3142[label="",style="solid", color="blue", weight=9]; 3142 -> 2307[label="",style="solid", color="blue", weight=3]; 3143[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2225 -> 3143[label="",style="solid", color="blue", weight=9]; 3143 -> 2308[label="",style="solid", color="blue", weight=3]; 3144[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2225 -> 3144[label="",style="solid", color="blue", weight=9]; 3144 -> 2309[label="",style="solid", color="blue", weight=3]; 3145[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2225 -> 3145[label="",style="solid", color="blue", weight=9]; 3145 -> 2310[label="",style="solid", color="blue", weight=3]; 3146[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2225 -> 3146[label="",style="solid", color="blue", weight=9]; 3146 -> 2311[label="",style="solid", color="blue", weight=3]; 3147[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2225 -> 3147[label="",style="solid", color="blue", weight=9]; 3147 -> 2312[label="",style="solid", color="blue", weight=3]; 3148[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2225 -> 3148[label="",style="solid", color="blue", weight=9]; 3148 -> 2313[label="",style="solid", color="blue", weight=3]; 3149[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2225 -> 3149[label="",style="solid", color="blue", weight=9]; 3149 -> 2314[label="",style="solid", color="blue", weight=3]; 3150[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2225 -> 3150[label="",style="solid", color="blue", weight=9]; 3150 -> 2315[label="",style="solid", color="blue", weight=3]; 3151[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2225 -> 3151[label="",style="solid", color="blue", weight=9]; 3151 -> 2316[label="",style="solid", color="blue", weight=3]; 3152[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2225 -> 3152[label="",style="solid", color="blue", weight=9]; 3152 -> 2317[label="",style="solid", color="blue", weight=3]; 2226[label="primCmpChar (Char vwx90) (Char vwx100)",fontsize=16,color="black",shape="box"];2226 -> 2318[label="",style="solid", color="black", weight=3]; 2227[label="primCmpInt (Pos (Succ vwx900)) vwx10",fontsize=16,color="burlywood",shape="box"];3153[label="vwx10/Pos vwx100",fontsize=10,color="white",style="solid",shape="box"];2227 -> 3153[label="",style="solid", color="burlywood", weight=9]; 3153 -> 2319[label="",style="solid", color="burlywood", weight=3]; 3154[label="vwx10/Neg vwx100",fontsize=10,color="white",style="solid",shape="box"];2227 -> 3154[label="",style="solid", color="burlywood", weight=9]; 3154 -> 2320[label="",style="solid", color="burlywood", weight=3]; 2228[label="primCmpInt (Pos Zero) vwx10",fontsize=16,color="burlywood",shape="box"];3155[label="vwx10/Pos vwx100",fontsize=10,color="white",style="solid",shape="box"];2228 -> 3155[label="",style="solid", color="burlywood", weight=9]; 3155 -> 2321[label="",style="solid", color="burlywood", weight=3]; 3156[label="vwx10/Neg vwx100",fontsize=10,color="white",style="solid",shape="box"];2228 -> 3156[label="",style="solid", color="burlywood", weight=9]; 3156 -> 2322[label="",style="solid", color="burlywood", weight=3]; 2229[label="primCmpInt (Neg (Succ vwx900)) vwx10",fontsize=16,color="burlywood",shape="box"];3157[label="vwx10/Pos vwx100",fontsize=10,color="white",style="solid",shape="box"];2229 -> 3157[label="",style="solid", color="burlywood", weight=9]; 3157 -> 2323[label="",style="solid", color="burlywood", weight=3]; 3158[label="vwx10/Neg vwx100",fontsize=10,color="white",style="solid",shape="box"];2229 -> 3158[label="",style="solid", color="burlywood", weight=9]; 3158 -> 2324[label="",style="solid", color="burlywood", weight=3]; 2230[label="primCmpInt (Neg Zero) vwx10",fontsize=16,color="burlywood",shape="box"];3159[label="vwx10/Pos vwx100",fontsize=10,color="white",style="solid",shape="box"];2230 -> 3159[label="",style="solid", color="burlywood", weight=9]; 3159 -> 2325[label="",style="solid", color="burlywood", weight=3]; 3160[label="vwx10/Neg vwx100",fontsize=10,color="white",style="solid",shape="box"];2230 -> 3160[label="",style="solid", color="burlywood", weight=9]; 3160 -> 2326[label="",style="solid", color="burlywood", weight=3]; 2231[label="primCmpDouble (Double vwx90 (Pos vwx910)) vwx10",fontsize=16,color="burlywood",shape="box"];3161[label="vwx10/Double vwx100 vwx101",fontsize=10,color="white",style="solid",shape="box"];2231 -> 3161[label="",style="solid", color="burlywood", weight=9]; 3161 -> 2327[label="",style="solid", color="burlywood", weight=3]; 2232[label="primCmpDouble (Double vwx90 (Neg vwx910)) vwx10",fontsize=16,color="burlywood",shape="box"];3162[label="vwx10/Double vwx100 vwx101",fontsize=10,color="white",style="solid",shape="box"];2232 -> 3162[label="",style="solid", color="burlywood", weight=9]; 3162 -> 2328[label="",style="solid", color="burlywood", weight=3]; 1221 -> 1321[label="",style="dashed", color="red", weight=0]; 1221[label="primPlusNat (primMulNat vwx30000 (Succ vwx40100)) (Succ vwx40100)",fontsize=16,color="magenta"];1221 -> 1322[label="",style="dashed", color="magenta", weight=3]; 1222[label="Zero",fontsize=16,color="green",shape="box"];1223[label="Zero",fontsize=16,color="green",shape="box"];1224[label="Zero",fontsize=16,color="green",shape="box"];2233 -> 1791[label="",style="dashed", color="red", weight=0]; 2233[label="compare (vwx90 * vwx101) (vwx100 * vwx91)",fontsize=16,color="magenta"];2233 -> 2329[label="",style="dashed", color="magenta", weight=3]; 2233 -> 2330[label="",style="dashed", color="magenta", weight=3]; 2234 -> 1801[label="",style="dashed", color="red", weight=0]; 2234[label="compare (vwx90 * vwx101) (vwx100 * vwx91)",fontsize=16,color="magenta"];2234 -> 2331[label="",style="dashed", color="magenta", weight=3]; 2234 -> 2332[label="",style="dashed", color="magenta", weight=3]; 2235[label="vwx90",fontsize=16,color="green",shape="box"];2236[label="vwx100",fontsize=16,color="green",shape="box"];2237[label="vwx90",fontsize=16,color="green",shape="box"];2238[label="vwx100",fontsize=16,color="green",shape="box"];2239[label="vwx90",fontsize=16,color="green",shape="box"];2240[label="vwx100",fontsize=16,color="green",shape="box"];2241[label="compare3 vwx90 vwx100",fontsize=16,color="black",shape="box"];2241 -> 2333[label="",style="solid", color="black", weight=3]; 2242[label="vwx90",fontsize=16,color="green",shape="box"];2243[label="vwx100",fontsize=16,color="green",shape="box"];2244[label="vwx90",fontsize=16,color="green",shape="box"];2245[label="vwx100",fontsize=16,color="green",shape="box"];2246[label="compare3 vwx90 vwx100",fontsize=16,color="black",shape="box"];2246 -> 2334[label="",style="solid", color="black", weight=3]; 2247[label="vwx90",fontsize=16,color="green",shape="box"];2248[label="vwx100",fontsize=16,color="green",shape="box"];2249[label="compare3 vwx90 vwx100",fontsize=16,color="black",shape="box"];2249 -> 2335[label="",style="solid", color="black", weight=3]; 2250[label="compare3 vwx90 vwx100",fontsize=16,color="black",shape="box"];2250 -> 2336[label="",style="solid", color="black", weight=3]; 2251[label="vwx90",fontsize=16,color="green",shape="box"];2252[label="vwx100",fontsize=16,color="green",shape="box"];2253[label="compare3 vwx90 vwx100",fontsize=16,color="black",shape="box"];2253 -> 2337[label="",style="solid", color="black", weight=3]; 2254[label="vwx90",fontsize=16,color="green",shape="box"];2255[label="vwx100",fontsize=16,color="green",shape="box"];2256[label="vwx90",fontsize=16,color="green",shape="box"];2257[label="vwx100",fontsize=16,color="green",shape="box"];2259 -> 1793[label="",style="dashed", color="red", weight=0]; 2259[label="compare vwx91 vwx101",fontsize=16,color="magenta"];2259 -> 2338[label="",style="dashed", color="magenta", weight=3]; 2259 -> 2339[label="",style="dashed", color="magenta", weight=3]; 2258[label="primCompAux vwx90 vwx100 vwx58",fontsize=16,color="black",shape="triangle"];2258 -> 2340[label="",style="solid", color="black", weight=3]; 2260[label="primCmpFloat (Float vwx90 (Pos vwx910)) (Float vwx100 vwx101)",fontsize=16,color="burlywood",shape="box"];3163[label="vwx101/Pos vwx1010",fontsize=10,color="white",style="solid",shape="box"];2260 -> 3163[label="",style="solid", color="burlywood", weight=9]; 3163 -> 2341[label="",style="solid", color="burlywood", weight=3]; 3164[label="vwx101/Neg vwx1010",fontsize=10,color="white",style="solid",shape="box"];2260 -> 3164[label="",style="solid", color="burlywood", weight=9]; 3164 -> 2342[label="",style="solid", color="burlywood", weight=3]; 2261[label="primCmpFloat (Float vwx90 (Neg vwx910)) (Float vwx100 vwx101)",fontsize=16,color="burlywood",shape="box"];3165[label="vwx101/Pos vwx1010",fontsize=10,color="white",style="solid",shape="box"];2261 -> 3165[label="",style="solid", color="burlywood", weight=9]; 3165 -> 2343[label="",style="solid", color="burlywood", weight=3]; 3166[label="vwx101/Neg vwx1010",fontsize=10,color="white",style="solid",shape="box"];2261 -> 3166[label="",style="solid", color="burlywood", weight=9]; 3166 -> 2344[label="",style="solid", color="burlywood", weight=3]; 2262[label="vwx101",fontsize=16,color="green",shape="box"];2263[label="vwx91",fontsize=16,color="green",shape="box"];2264[label="vwx101",fontsize=16,color="green",shape="box"];2265[label="vwx91",fontsize=16,color="green",shape="box"];2266[label="vwx101",fontsize=16,color="green",shape="box"];2267[label="vwx91",fontsize=16,color="green",shape="box"];2268[label="vwx101",fontsize=16,color="green",shape="box"];2269[label="vwx91",fontsize=16,color="green",shape="box"];2270[label="vwx101",fontsize=16,color="green",shape="box"];2271[label="vwx91",fontsize=16,color="green",shape="box"];2272[label="vwx91",fontsize=16,color="green",shape="box"];2273[label="vwx101",fontsize=16,color="green",shape="box"];2274[label="vwx101",fontsize=16,color="green",shape="box"];2275[label="vwx91",fontsize=16,color="green",shape="box"];2276[label="vwx101",fontsize=16,color="green",shape="box"];2277[label="vwx91",fontsize=16,color="green",shape="box"];2278[label="vwx101",fontsize=16,color="green",shape="box"];2279[label="vwx91",fontsize=16,color="green",shape="box"];2280[label="vwx101",fontsize=16,color="green",shape="box"];2281[label="vwx91",fontsize=16,color="green",shape="box"];2282[label="vwx101",fontsize=16,color="green",shape="box"];2283[label="vwx91",fontsize=16,color="green",shape="box"];2284[label="vwx101",fontsize=16,color="green",shape="box"];2285[label="vwx91",fontsize=16,color="green",shape="box"];2286[label="vwx101",fontsize=16,color="green",shape="box"];2287[label="vwx91",fontsize=16,color="green",shape="box"];2288[label="vwx101",fontsize=16,color="green",shape="box"];2289[label="vwx91",fontsize=16,color="green",shape="box"];2290 -> 35[label="",style="dashed", color="red", weight=0]; 2290[label="vwx91 == vwx101",fontsize=16,color="magenta"];2290 -> 2345[label="",style="dashed", color="magenta", weight=3]; 2290 -> 2346[label="",style="dashed", color="magenta", weight=3]; 2291 -> 30[label="",style="dashed", color="red", weight=0]; 2291[label="vwx91 == vwx101",fontsize=16,color="magenta"];2291 -> 2347[label="",style="dashed", color="magenta", weight=3]; 2291 -> 2348[label="",style="dashed", color="magenta", weight=3]; 2292 -> 36[label="",style="dashed", color="red", weight=0]; 2292[label="vwx91 == vwx101",fontsize=16,color="magenta"];2292 -> 2349[label="",style="dashed", color="magenta", weight=3]; 2292 -> 2350[label="",style="dashed", color="magenta", weight=3]; 2293 -> 32[label="",style="dashed", color="red", weight=0]; 2293[label="vwx91 == vwx101",fontsize=16,color="magenta"];2293 -> 2351[label="",style="dashed", color="magenta", weight=3]; 2293 -> 2352[label="",style="dashed", color="magenta", weight=3]; 2294 -> 41[label="",style="dashed", color="red", weight=0]; 2294[label="vwx91 == vwx101",fontsize=16,color="magenta"];2294 -> 2353[label="",style="dashed", color="magenta", weight=3]; 2294 -> 2354[label="",style="dashed", color="magenta", weight=3]; 2295 -> 37[label="",style="dashed", color="red", weight=0]; 2295[label="vwx91 == vwx101",fontsize=16,color="magenta"];2295 -> 2355[label="",style="dashed", color="magenta", weight=3]; 2295 -> 2356[label="",style="dashed", color="magenta", weight=3]; 2296 -> 28[label="",style="dashed", color="red", weight=0]; 2296[label="vwx91 == vwx101",fontsize=16,color="magenta"];2296 -> 2357[label="",style="dashed", color="magenta", weight=3]; 2296 -> 2358[label="",style="dashed", color="magenta", weight=3]; 2297 -> 34[label="",style="dashed", color="red", weight=0]; 2297[label="vwx91 == vwx101",fontsize=16,color="magenta"];2297 -> 2359[label="",style="dashed", color="magenta", weight=3]; 2297 -> 2360[label="",style="dashed", color="magenta", weight=3]; 2298 -> 33[label="",style="dashed", color="red", weight=0]; 2298[label="vwx91 == vwx101",fontsize=16,color="magenta"];2298 -> 2361[label="",style="dashed", color="magenta", weight=3]; 2298 -> 2362[label="",style="dashed", color="magenta", weight=3]; 2299 -> 40[label="",style="dashed", color="red", weight=0]; 2299[label="vwx91 == vwx101",fontsize=16,color="magenta"];2299 -> 2363[label="",style="dashed", color="magenta", weight=3]; 2299 -> 2364[label="",style="dashed", color="magenta", weight=3]; 2300 -> 31[label="",style="dashed", color="red", weight=0]; 2300[label="vwx91 == vwx101",fontsize=16,color="magenta"];2300 -> 2365[label="",style="dashed", color="magenta", weight=3]; 2300 -> 2366[label="",style="dashed", color="magenta", weight=3]; 2301 -> 29[label="",style="dashed", color="red", weight=0]; 2301[label="vwx91 == vwx101",fontsize=16,color="magenta"];2301 -> 2367[label="",style="dashed", color="magenta", weight=3]; 2301 -> 2368[label="",style="dashed", color="magenta", weight=3]; 2302 -> 39[label="",style="dashed", color="red", weight=0]; 2302[label="vwx91 == vwx101",fontsize=16,color="magenta"];2302 -> 2369[label="",style="dashed", color="magenta", weight=3]; 2302 -> 2370[label="",style="dashed", color="magenta", weight=3]; 2303 -> 38[label="",style="dashed", color="red", weight=0]; 2303[label="vwx91 == vwx101",fontsize=16,color="magenta"];2303 -> 2371[label="",style="dashed", color="magenta", weight=3]; 2303 -> 2372[label="",style="dashed", color="magenta", weight=3]; 2304 -> 1687[label="",style="dashed", color="red", weight=0]; 2304[label="vwx92 <= vwx102",fontsize=16,color="magenta"];2304 -> 2373[label="",style="dashed", color="magenta", weight=3]; 2304 -> 2374[label="",style="dashed", color="magenta", weight=3]; 2305 -> 1688[label="",style="dashed", color="red", weight=0]; 2305[label="vwx92 <= vwx102",fontsize=16,color="magenta"];2305 -> 2375[label="",style="dashed", color="magenta", weight=3]; 2305 -> 2376[label="",style="dashed", color="magenta", weight=3]; 2306 -> 1689[label="",style="dashed", color="red", weight=0]; 2306[label="vwx92 <= vwx102",fontsize=16,color="magenta"];2306 -> 2377[label="",style="dashed", color="magenta", weight=3]; 2306 -> 2378[label="",style="dashed", color="magenta", weight=3]; 2307 -> 1690[label="",style="dashed", color="red", weight=0]; 2307[label="vwx92 <= vwx102",fontsize=16,color="magenta"];2307 -> 2379[label="",style="dashed", color="magenta", weight=3]; 2307 -> 2380[label="",style="dashed", color="magenta", weight=3]; 2308 -> 1691[label="",style="dashed", color="red", weight=0]; 2308[label="vwx92 <= vwx102",fontsize=16,color="magenta"];2308 -> 2381[label="",style="dashed", color="magenta", weight=3]; 2308 -> 2382[label="",style="dashed", color="magenta", weight=3]; 2309 -> 1692[label="",style="dashed", color="red", weight=0]; 2309[label="vwx92 <= vwx102",fontsize=16,color="magenta"];2309 -> 2383[label="",style="dashed", color="magenta", weight=3]; 2309 -> 2384[label="",style="dashed", color="magenta", weight=3]; 2310 -> 1693[label="",style="dashed", color="red", weight=0]; 2310[label="vwx92 <= vwx102",fontsize=16,color="magenta"];2310 -> 2385[label="",style="dashed", color="magenta", weight=3]; 2310 -> 2386[label="",style="dashed", color="magenta", weight=3]; 2311 -> 1694[label="",style="dashed", color="red", weight=0]; 2311[label="vwx92 <= vwx102",fontsize=16,color="magenta"];2311 -> 2387[label="",style="dashed", color="magenta", weight=3]; 2311 -> 2388[label="",style="dashed", color="magenta", weight=3]; 2312 -> 1695[label="",style="dashed", color="red", weight=0]; 2312[label="vwx92 <= vwx102",fontsize=16,color="magenta"];2312 -> 2389[label="",style="dashed", color="magenta", weight=3]; 2312 -> 2390[label="",style="dashed", color="magenta", weight=3]; 2313 -> 1696[label="",style="dashed", color="red", weight=0]; 2313[label="vwx92 <= vwx102",fontsize=16,color="magenta"];2313 -> 2391[label="",style="dashed", color="magenta", weight=3]; 2313 -> 2392[label="",style="dashed", color="magenta", weight=3]; 2314 -> 1697[label="",style="dashed", color="red", weight=0]; 2314[label="vwx92 <= vwx102",fontsize=16,color="magenta"];2314 -> 2393[label="",style="dashed", color="magenta", weight=3]; 2314 -> 2394[label="",style="dashed", color="magenta", weight=3]; 2315 -> 1698[label="",style="dashed", color="red", weight=0]; 2315[label="vwx92 <= vwx102",fontsize=16,color="magenta"];2315 -> 2395[label="",style="dashed", color="magenta", weight=3]; 2315 -> 2396[label="",style="dashed", color="magenta", weight=3]; 2316 -> 1699[label="",style="dashed", color="red", weight=0]; 2316[label="vwx92 <= vwx102",fontsize=16,color="magenta"];2316 -> 2397[label="",style="dashed", color="magenta", weight=3]; 2316 -> 2398[label="",style="dashed", color="magenta", weight=3]; 2317 -> 1700[label="",style="dashed", color="red", weight=0]; 2317[label="vwx92 <= vwx102",fontsize=16,color="magenta"];2317 -> 2399[label="",style="dashed", color="magenta", weight=3]; 2317 -> 2400[label="",style="dashed", color="magenta", weight=3]; 2318[label="primCmpNat vwx90 vwx100",fontsize=16,color="burlywood",shape="triangle"];3167[label="vwx90/Succ vwx900",fontsize=10,color="white",style="solid",shape="box"];2318 -> 3167[label="",style="solid", color="burlywood", weight=9]; 3167 -> 2401[label="",style="solid", color="burlywood", weight=3]; 3168[label="vwx90/Zero",fontsize=10,color="white",style="solid",shape="box"];2318 -> 3168[label="",style="solid", color="burlywood", weight=9]; 3168 -> 2402[label="",style="solid", color="burlywood", weight=3]; 2319[label="primCmpInt (Pos (Succ vwx900)) (Pos vwx100)",fontsize=16,color="black",shape="box"];2319 -> 2403[label="",style="solid", color="black", weight=3]; 2320[label="primCmpInt (Pos (Succ vwx900)) (Neg vwx100)",fontsize=16,color="black",shape="box"];2320 -> 2404[label="",style="solid", color="black", weight=3]; 2321[label="primCmpInt (Pos Zero) (Pos vwx100)",fontsize=16,color="burlywood",shape="box"];3169[label="vwx100/Succ vwx1000",fontsize=10,color="white",style="solid",shape="box"];2321 -> 3169[label="",style="solid", color="burlywood", weight=9]; 3169 -> 2405[label="",style="solid", color="burlywood", weight=3]; 3170[label="vwx100/Zero",fontsize=10,color="white",style="solid",shape="box"];2321 -> 3170[label="",style="solid", color="burlywood", weight=9]; 3170 -> 2406[label="",style="solid", color="burlywood", weight=3]; 2322[label="primCmpInt (Pos Zero) (Neg vwx100)",fontsize=16,color="burlywood",shape="box"];3171[label="vwx100/Succ vwx1000",fontsize=10,color="white",style="solid",shape="box"];2322 -> 3171[label="",style="solid", color="burlywood", weight=9]; 3171 -> 2407[label="",style="solid", color="burlywood", weight=3]; 3172[label="vwx100/Zero",fontsize=10,color="white",style="solid",shape="box"];2322 -> 3172[label="",style="solid", color="burlywood", weight=9]; 3172 -> 2408[label="",style="solid", color="burlywood", weight=3]; 2323[label="primCmpInt (Neg (Succ vwx900)) (Pos vwx100)",fontsize=16,color="black",shape="box"];2323 -> 2409[label="",style="solid", color="black", weight=3]; 2324[label="primCmpInt (Neg (Succ vwx900)) (Neg vwx100)",fontsize=16,color="black",shape="box"];2324 -> 2410[label="",style="solid", color="black", weight=3]; 2325[label="primCmpInt (Neg Zero) (Pos vwx100)",fontsize=16,color="burlywood",shape="box"];3173[label="vwx100/Succ vwx1000",fontsize=10,color="white",style="solid",shape="box"];2325 -> 3173[label="",style="solid", color="burlywood", weight=9]; 3173 -> 2411[label="",style="solid", color="burlywood", weight=3]; 3174[label="vwx100/Zero",fontsize=10,color="white",style="solid",shape="box"];2325 -> 3174[label="",style="solid", color="burlywood", weight=9]; 3174 -> 2412[label="",style="solid", color="burlywood", weight=3]; 2326[label="primCmpInt (Neg Zero) (Neg vwx100)",fontsize=16,color="burlywood",shape="box"];3175[label="vwx100/Succ vwx1000",fontsize=10,color="white",style="solid",shape="box"];2326 -> 3175[label="",style="solid", color="burlywood", weight=9]; 3175 -> 2413[label="",style="solid", color="burlywood", weight=3]; 3176[label="vwx100/Zero",fontsize=10,color="white",style="solid",shape="box"];2326 -> 3176[label="",style="solid", color="burlywood", weight=9]; 3176 -> 2414[label="",style="solid", color="burlywood", weight=3]; 2327[label="primCmpDouble (Double vwx90 (Pos vwx910)) (Double vwx100 vwx101)",fontsize=16,color="burlywood",shape="box"];3177[label="vwx101/Pos vwx1010",fontsize=10,color="white",style="solid",shape="box"];2327 -> 3177[label="",style="solid", color="burlywood", weight=9]; 3177 -> 2415[label="",style="solid", color="burlywood", weight=3]; 3178[label="vwx101/Neg vwx1010",fontsize=10,color="white",style="solid",shape="box"];2327 -> 3178[label="",style="solid", color="burlywood", weight=9]; 3178 -> 2416[label="",style="solid", color="burlywood", weight=3]; 2328[label="primCmpDouble (Double vwx90 (Neg vwx910)) (Double vwx100 vwx101)",fontsize=16,color="burlywood",shape="box"];3179[label="vwx101/Pos vwx1010",fontsize=10,color="white",style="solid",shape="box"];2328 -> 3179[label="",style="solid", color="burlywood", weight=9]; 3179 -> 2417[label="",style="solid", color="burlywood", weight=3]; 3180[label="vwx101/Neg vwx1010",fontsize=10,color="white",style="solid",shape="box"];2328 -> 3180[label="",style="solid", color="burlywood", weight=9]; 3180 -> 2418[label="",style="solid", color="burlywood", weight=3]; 1322 -> 826[label="",style="dashed", color="red", weight=0]; 1322[label="primMulNat vwx30000 (Succ vwx40100)",fontsize=16,color="magenta"];1322 -> 1413[label="",style="dashed", color="magenta", weight=3]; 1322 -> 1414[label="",style="dashed", color="magenta", weight=3]; 1321[label="primPlusNat vwx33 (Succ vwx40100)",fontsize=16,color="burlywood",shape="triangle"];3181[label="vwx33/Succ vwx330",fontsize=10,color="white",style="solid",shape="box"];1321 -> 3181[label="",style="solid", color="burlywood", weight=9]; 3181 -> 1415[label="",style="solid", color="burlywood", weight=3]; 3182[label="vwx33/Zero",fontsize=10,color="white",style="solid",shape="box"];1321 -> 3182[label="",style="solid", color="burlywood", weight=9]; 3182 -> 1416[label="",style="solid", color="burlywood", weight=3]; 2329[label="vwx90 * vwx101",fontsize=16,color="burlywood",shape="triangle"];3183[label="vwx90/Integer vwx900",fontsize=10,color="white",style="solid",shape="box"];2329 -> 3183[label="",style="solid", color="burlywood", weight=9]; 3183 -> 2419[label="",style="solid", color="burlywood", weight=3]; 2330 -> 2329[label="",style="dashed", color="red", weight=0]; 2330[label="vwx100 * vwx91",fontsize=16,color="magenta"];2330 -> 2420[label="",style="dashed", color="magenta", weight=3]; 2330 -> 2421[label="",style="dashed", color="magenta", weight=3]; 2331 -> 378[label="",style="dashed", color="red", weight=0]; 2331[label="vwx90 * vwx101",fontsize=16,color="magenta"];2331 -> 2422[label="",style="dashed", color="magenta", weight=3]; 2331 -> 2423[label="",style="dashed", color="magenta", weight=3]; 2332 -> 378[label="",style="dashed", color="red", weight=0]; 2332[label="vwx100 * vwx91",fontsize=16,color="magenta"];2332 -> 2424[label="",style="dashed", color="magenta", weight=3]; 2332 -> 2425[label="",style="dashed", color="magenta", weight=3]; 2333 -> 2426[label="",style="dashed", color="red", weight=0]; 2333[label="compare2 vwx90 vwx100 (vwx90 == vwx100)",fontsize=16,color="magenta"];2333 -> 2427[label="",style="dashed", color="magenta", weight=3]; 2334 -> 2428[label="",style="dashed", color="red", weight=0]; 2334[label="compare2 vwx90 vwx100 (vwx90 == vwx100)",fontsize=16,color="magenta"];2334 -> 2429[label="",style="dashed", color="magenta", weight=3]; 2335 -> 2430[label="",style="dashed", color="red", weight=0]; 2335[label="compare2 vwx90 vwx100 (vwx90 == vwx100)",fontsize=16,color="magenta"];2335 -> 2431[label="",style="dashed", color="magenta", weight=3]; 2336 -> 2432[label="",style="dashed", color="red", weight=0]; 2336[label="compare2 vwx90 vwx100 (vwx90 == vwx100)",fontsize=16,color="magenta"];2336 -> 2433[label="",style="dashed", color="magenta", weight=3]; 2337 -> 2434[label="",style="dashed", color="red", weight=0]; 2337[label="compare2 vwx90 vwx100 (vwx90 == vwx100)",fontsize=16,color="magenta"];2337 -> 2435[label="",style="dashed", color="magenta", weight=3]; 2338[label="vwx91",fontsize=16,color="green",shape="box"];2339[label="vwx101",fontsize=16,color="green",shape="box"];2340 -> 2436[label="",style="dashed", color="red", weight=0]; 2340[label="primCompAux0 vwx58 (compare vwx90 vwx100)",fontsize=16,color="magenta"];2340 -> 2437[label="",style="dashed", color="magenta", weight=3]; 2340 -> 2438[label="",style="dashed", color="magenta", weight=3]; 2341[label="primCmpFloat (Float vwx90 (Pos vwx910)) (Float vwx100 (Pos vwx1010))",fontsize=16,color="black",shape="box"];2341 -> 2439[label="",style="solid", color="black", weight=3]; 2342[label="primCmpFloat (Float vwx90 (Pos vwx910)) (Float vwx100 (Neg vwx1010))",fontsize=16,color="black",shape="box"];2342 -> 2440[label="",style="solid", color="black", weight=3]; 2343[label="primCmpFloat (Float vwx90 (Neg vwx910)) (Float vwx100 (Pos vwx1010))",fontsize=16,color="black",shape="box"];2343 -> 2441[label="",style="solid", color="black", weight=3]; 2344[label="primCmpFloat (Float vwx90 (Neg vwx910)) (Float vwx100 (Neg vwx1010))",fontsize=16,color="black",shape="box"];2344 -> 2442[label="",style="solid", color="black", weight=3]; 2345[label="vwx91",fontsize=16,color="green",shape="box"];2346[label="vwx101",fontsize=16,color="green",shape="box"];2347[label="vwx91",fontsize=16,color="green",shape="box"];2348[label="vwx101",fontsize=16,color="green",shape="box"];2349[label="vwx91",fontsize=16,color="green",shape="box"];2350[label="vwx101",fontsize=16,color="green",shape="box"];2351[label="vwx91",fontsize=16,color="green",shape="box"];2352[label="vwx101",fontsize=16,color="green",shape="box"];2353[label="vwx91",fontsize=16,color="green",shape="box"];2354[label="vwx101",fontsize=16,color="green",shape="box"];2355[label="vwx91",fontsize=16,color="green",shape="box"];2356[label="vwx101",fontsize=16,color="green",shape="box"];2357[label="vwx91",fontsize=16,color="green",shape="box"];2358[label="vwx101",fontsize=16,color="green",shape="box"];2359[label="vwx91",fontsize=16,color="green",shape="box"];2360[label="vwx101",fontsize=16,color="green",shape="box"];2361[label="vwx91",fontsize=16,color="green",shape="box"];2362[label="vwx101",fontsize=16,color="green",shape="box"];2363[label="vwx91",fontsize=16,color="green",shape="box"];2364[label="vwx101",fontsize=16,color="green",shape="box"];2365[label="vwx91",fontsize=16,color="green",shape="box"];2366[label="vwx101",fontsize=16,color="green",shape="box"];2367[label="vwx91",fontsize=16,color="green",shape="box"];2368[label="vwx101",fontsize=16,color="green",shape="box"];2369[label="vwx91",fontsize=16,color="green",shape="box"];2370[label="vwx101",fontsize=16,color="green",shape="box"];2371[label="vwx91",fontsize=16,color="green",shape="box"];2372[label="vwx101",fontsize=16,color="green",shape="box"];2373[label="vwx92",fontsize=16,color="green",shape="box"];2374[label="vwx102",fontsize=16,color="green",shape="box"];2375[label="vwx92",fontsize=16,color="green",shape="box"];2376[label="vwx102",fontsize=16,color="green",shape="box"];2377[label="vwx92",fontsize=16,color="green",shape="box"];2378[label="vwx102",fontsize=16,color="green",shape="box"];2379[label="vwx92",fontsize=16,color="green",shape="box"];2380[label="vwx102",fontsize=16,color="green",shape="box"];2381[label="vwx92",fontsize=16,color="green",shape="box"];2382[label="vwx102",fontsize=16,color="green",shape="box"];2383[label="vwx92",fontsize=16,color="green",shape="box"];2384[label="vwx102",fontsize=16,color="green",shape="box"];2385[label="vwx92",fontsize=16,color="green",shape="box"];2386[label="vwx102",fontsize=16,color="green",shape="box"];2387[label="vwx92",fontsize=16,color="green",shape="box"];2388[label="vwx102",fontsize=16,color="green",shape="box"];2389[label="vwx92",fontsize=16,color="green",shape="box"];2390[label="vwx102",fontsize=16,color="green",shape="box"];2391[label="vwx92",fontsize=16,color="green",shape="box"];2392[label="vwx102",fontsize=16,color="green",shape="box"];2393[label="vwx92",fontsize=16,color="green",shape="box"];2394[label="vwx102",fontsize=16,color="green",shape="box"];2395[label="vwx92",fontsize=16,color="green",shape="box"];2396[label="vwx102",fontsize=16,color="green",shape="box"];2397[label="vwx92",fontsize=16,color="green",shape="box"];2398[label="vwx102",fontsize=16,color="green",shape="box"];2399[label="vwx92",fontsize=16,color="green",shape="box"];2400[label="vwx102",fontsize=16,color="green",shape="box"];2401[label="primCmpNat (Succ vwx900) vwx100",fontsize=16,color="burlywood",shape="box"];3184[label="vwx100/Succ vwx1000",fontsize=10,color="white",style="solid",shape="box"];2401 -> 3184[label="",style="solid", color="burlywood", weight=9]; 3184 -> 2443[label="",style="solid", color="burlywood", weight=3]; 3185[label="vwx100/Zero",fontsize=10,color="white",style="solid",shape="box"];2401 -> 3185[label="",style="solid", color="burlywood", weight=9]; 3185 -> 2444[label="",style="solid", color="burlywood", weight=3]; 2402[label="primCmpNat Zero vwx100",fontsize=16,color="burlywood",shape="box"];3186[label="vwx100/Succ vwx1000",fontsize=10,color="white",style="solid",shape="box"];2402 -> 3186[label="",style="solid", color="burlywood", weight=9]; 3186 -> 2445[label="",style="solid", color="burlywood", weight=3]; 3187[label="vwx100/Zero",fontsize=10,color="white",style="solid",shape="box"];2402 -> 3187[label="",style="solid", color="burlywood", weight=9]; 3187 -> 2446[label="",style="solid", color="burlywood", weight=3]; 2403 -> 2318[label="",style="dashed", color="red", weight=0]; 2403[label="primCmpNat (Succ vwx900) vwx100",fontsize=16,color="magenta"];2403 -> 2447[label="",style="dashed", color="magenta", weight=3]; 2403 -> 2448[label="",style="dashed", color="magenta", weight=3]; 2404[label="GT",fontsize=16,color="green",shape="box"];2405[label="primCmpInt (Pos Zero) (Pos (Succ vwx1000))",fontsize=16,color="black",shape="box"];2405 -> 2449[label="",style="solid", color="black", weight=3]; 2406[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2406 -> 2450[label="",style="solid", color="black", weight=3]; 2407[label="primCmpInt (Pos Zero) (Neg (Succ vwx1000))",fontsize=16,color="black",shape="box"];2407 -> 2451[label="",style="solid", color="black", weight=3]; 2408[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2408 -> 2452[label="",style="solid", color="black", weight=3]; 2409[label="LT",fontsize=16,color="green",shape="box"];2410 -> 2318[label="",style="dashed", color="red", weight=0]; 2410[label="primCmpNat vwx100 (Succ vwx900)",fontsize=16,color="magenta"];2410 -> 2453[label="",style="dashed", color="magenta", weight=3]; 2410 -> 2454[label="",style="dashed", color="magenta", weight=3]; 2411[label="primCmpInt (Neg Zero) (Pos (Succ vwx1000))",fontsize=16,color="black",shape="box"];2411 -> 2455[label="",style="solid", color="black", weight=3]; 2412[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2412 -> 2456[label="",style="solid", color="black", weight=3]; 2413[label="primCmpInt (Neg Zero) (Neg (Succ vwx1000))",fontsize=16,color="black",shape="box"];2413 -> 2457[label="",style="solid", color="black", weight=3]; 2414[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2414 -> 2458[label="",style="solid", color="black", weight=3]; 2415[label="primCmpDouble (Double vwx90 (Pos vwx910)) (Double vwx100 (Pos vwx1010))",fontsize=16,color="black",shape="box"];2415 -> 2459[label="",style="solid", color="black", weight=3]; 2416[label="primCmpDouble (Double vwx90 (Pos vwx910)) (Double vwx100 (Neg vwx1010))",fontsize=16,color="black",shape="box"];2416 -> 2460[label="",style="solid", color="black", weight=3]; 2417[label="primCmpDouble (Double vwx90 (Neg vwx910)) (Double vwx100 (Pos vwx1010))",fontsize=16,color="black",shape="box"];2417 -> 2461[label="",style="solid", color="black", weight=3]; 2418[label="primCmpDouble (Double vwx90 (Neg vwx910)) (Double vwx100 (Neg vwx1010))",fontsize=16,color="black",shape="box"];2418 -> 2462[label="",style="solid", color="black", weight=3]; 1413[label="Succ vwx40100",fontsize=16,color="green",shape="box"];1414[label="vwx30000",fontsize=16,color="green",shape="box"];1415[label="primPlusNat (Succ vwx330) (Succ vwx40100)",fontsize=16,color="black",shape="box"];1415 -> 1461[label="",style="solid", color="black", weight=3]; 1416[label="primPlusNat Zero (Succ vwx40100)",fontsize=16,color="black",shape="box"];1416 -> 1462[label="",style="solid", color="black", weight=3]; 2419[label="Integer vwx900 * vwx101",fontsize=16,color="burlywood",shape="box"];3188[label="vwx101/Integer vwx1010",fontsize=10,color="white",style="solid",shape="box"];2419 -> 3188[label="",style="solid", color="burlywood", weight=9]; 3188 -> 2463[label="",style="solid", color="burlywood", weight=3]; 2420[label="vwx91",fontsize=16,color="green",shape="box"];2421[label="vwx100",fontsize=16,color="green",shape="box"];2422[label="vwx101",fontsize=16,color="green",shape="box"];2423[label="vwx90",fontsize=16,color="green",shape="box"];2424[label="vwx91",fontsize=16,color="green",shape="box"];2425[label="vwx100",fontsize=16,color="green",shape="box"];2427 -> 36[label="",style="dashed", color="red", weight=0]; 2427[label="vwx90 == vwx100",fontsize=16,color="magenta"];2427 -> 2464[label="",style="dashed", color="magenta", weight=3]; 2427 -> 2465[label="",style="dashed", color="magenta", weight=3]; 2426[label="compare2 vwx90 vwx100 vwx59",fontsize=16,color="burlywood",shape="triangle"];3189[label="vwx59/False",fontsize=10,color="white",style="solid",shape="box"];2426 -> 3189[label="",style="solid", color="burlywood", weight=9]; 3189 -> 2466[label="",style="solid", color="burlywood", weight=3]; 3190[label="vwx59/True",fontsize=10,color="white",style="solid",shape="box"];2426 -> 3190[label="",style="solid", color="burlywood", weight=9]; 3190 -> 2467[label="",style="solid", color="burlywood", weight=3]; 2429 -> 28[label="",style="dashed", color="red", weight=0]; 2429[label="vwx90 == vwx100",fontsize=16,color="magenta"];2429 -> 2468[label="",style="dashed", color="magenta", weight=3]; 2429 -> 2469[label="",style="dashed", color="magenta", weight=3]; 2428[label="compare2 vwx90 vwx100 vwx60",fontsize=16,color="burlywood",shape="triangle"];3191[label="vwx60/False",fontsize=10,color="white",style="solid",shape="box"];2428 -> 3191[label="",style="solid", color="burlywood", weight=9]; 3191 -> 2470[label="",style="solid", color="burlywood", weight=3]; 3192[label="vwx60/True",fontsize=10,color="white",style="solid",shape="box"];2428 -> 3192[label="",style="solid", color="burlywood", weight=9]; 3192 -> 2471[label="",style="solid", color="burlywood", weight=3]; 2431 -> 33[label="",style="dashed", color="red", weight=0]; 2431[label="vwx90 == vwx100",fontsize=16,color="magenta"];2431 -> 2472[label="",style="dashed", color="magenta", weight=3]; 2431 -> 2473[label="",style="dashed", color="magenta", weight=3]; 2430[label="compare2 vwx90 vwx100 vwx61",fontsize=16,color="burlywood",shape="triangle"];3193[label="vwx61/False",fontsize=10,color="white",style="solid",shape="box"];2430 -> 3193[label="",style="solid", color="burlywood", weight=9]; 3193 -> 2474[label="",style="solid", color="burlywood", weight=3]; 3194[label="vwx61/True",fontsize=10,color="white",style="solid",shape="box"];2430 -> 3194[label="",style="solid", color="burlywood", weight=9]; 3194 -> 2475[label="",style="solid", color="burlywood", weight=3]; 2433 -> 40[label="",style="dashed", color="red", weight=0]; 2433[label="vwx90 == vwx100",fontsize=16,color="magenta"];2433 -> 2476[label="",style="dashed", color="magenta", weight=3]; 2433 -> 2477[label="",style="dashed", color="magenta", weight=3]; 2432[label="compare2 vwx90 vwx100 vwx62",fontsize=16,color="burlywood",shape="triangle"];3195[label="vwx62/False",fontsize=10,color="white",style="solid",shape="box"];2432 -> 3195[label="",style="solid", color="burlywood", weight=9]; 3195 -> 2478[label="",style="solid", color="burlywood", weight=3]; 3196[label="vwx62/True",fontsize=10,color="white",style="solid",shape="box"];2432 -> 3196[label="",style="solid", color="burlywood", weight=9]; 3196 -> 2479[label="",style="solid", color="burlywood", weight=3]; 2435 -> 29[label="",style="dashed", color="red", weight=0]; 2435[label="vwx90 == vwx100",fontsize=16,color="magenta"];2435 -> 2480[label="",style="dashed", color="magenta", weight=3]; 2435 -> 2481[label="",style="dashed", color="magenta", weight=3]; 2434[label="compare2 vwx90 vwx100 vwx63",fontsize=16,color="burlywood",shape="triangle"];3197[label="vwx63/False",fontsize=10,color="white",style="solid",shape="box"];2434 -> 3197[label="",style="solid", color="burlywood", weight=9]; 3197 -> 2482[label="",style="solid", color="burlywood", weight=3]; 3198[label="vwx63/True",fontsize=10,color="white",style="solid",shape="box"];2434 -> 3198[label="",style="solid", color="burlywood", weight=9]; 3198 -> 2483[label="",style="solid", color="burlywood", weight=3]; 2437[label="vwx58",fontsize=16,color="green",shape="box"];2438[label="compare vwx90 vwx100",fontsize=16,color="blue",shape="box"];3199[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2438 -> 3199[label="",style="solid", color="blue", weight=9]; 3199 -> 2484[label="",style="solid", color="blue", weight=3]; 3200[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2438 -> 3200[label="",style="solid", color="blue", weight=9]; 3200 -> 2485[label="",style="solid", color="blue", weight=3]; 3201[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2438 -> 3201[label="",style="solid", color="blue", weight=9]; 3201 -> 2486[label="",style="solid", color="blue", weight=3]; 3202[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2438 -> 3202[label="",style="solid", color="blue", weight=9]; 3202 -> 2487[label="",style="solid", color="blue", weight=3]; 3203[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2438 -> 3203[label="",style="solid", color="blue", weight=9]; 3203 -> 2488[label="",style="solid", color="blue", weight=3]; 3204[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2438 -> 3204[label="",style="solid", color="blue", weight=9]; 3204 -> 2489[label="",style="solid", color="blue", weight=3]; 3205[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2438 -> 3205[label="",style="solid", color="blue", weight=9]; 3205 -> 2490[label="",style="solid", color="blue", weight=3]; 3206[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2438 -> 3206[label="",style="solid", color="blue", weight=9]; 3206 -> 2491[label="",style="solid", color="blue", weight=3]; 3207[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2438 -> 3207[label="",style="solid", color="blue", weight=9]; 3207 -> 2492[label="",style="solid", color="blue", weight=3]; 3208[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2438 -> 3208[label="",style="solid", color="blue", weight=9]; 3208 -> 2493[label="",style="solid", color="blue", weight=3]; 3209[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2438 -> 3209[label="",style="solid", color="blue", weight=9]; 3209 -> 2494[label="",style="solid", color="blue", weight=3]; 3210[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2438 -> 3210[label="",style="solid", color="blue", weight=9]; 3210 -> 2495[label="",style="solid", color="blue", weight=3]; 3211[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2438 -> 3211[label="",style="solid", color="blue", weight=9]; 3211 -> 2496[label="",style="solid", color="blue", weight=3]; 3212[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2438 -> 3212[label="",style="solid", color="blue", weight=9]; 3212 -> 2497[label="",style="solid", color="blue", weight=3]; 2436[label="primCompAux0 vwx67 vwx68",fontsize=16,color="burlywood",shape="triangle"];3213[label="vwx68/LT",fontsize=10,color="white",style="solid",shape="box"];2436 -> 3213[label="",style="solid", color="burlywood", weight=9]; 3213 -> 2498[label="",style="solid", color="burlywood", weight=3]; 3214[label="vwx68/EQ",fontsize=10,color="white",style="solid",shape="box"];2436 -> 3214[label="",style="solid", color="burlywood", weight=9]; 3214 -> 2499[label="",style="solid", color="burlywood", weight=3]; 3215[label="vwx68/GT",fontsize=10,color="white",style="solid",shape="box"];2436 -> 3215[label="",style="solid", color="burlywood", weight=9]; 3215 -> 2500[label="",style="solid", color="burlywood", weight=3]; 2439 -> 1801[label="",style="dashed", color="red", weight=0]; 2439[label="compare (vwx90 * Pos vwx1010) (Pos vwx910 * vwx100)",fontsize=16,color="magenta"];2439 -> 2501[label="",style="dashed", color="magenta", weight=3]; 2439 -> 2502[label="",style="dashed", color="magenta", weight=3]; 2440 -> 1801[label="",style="dashed", color="red", weight=0]; 2440[label="compare (vwx90 * Pos vwx1010) (Neg vwx910 * vwx100)",fontsize=16,color="magenta"];2440 -> 2503[label="",style="dashed", color="magenta", weight=3]; 2440 -> 2504[label="",style="dashed", color="magenta", weight=3]; 2441 -> 1801[label="",style="dashed", color="red", weight=0]; 2441[label="compare (vwx90 * Neg vwx1010) (Pos vwx910 * vwx100)",fontsize=16,color="magenta"];2441 -> 2505[label="",style="dashed", color="magenta", weight=3]; 2441 -> 2506[label="",style="dashed", color="magenta", weight=3]; 2442 -> 1801[label="",style="dashed", color="red", weight=0]; 2442[label="compare (vwx90 * Neg vwx1010) (Neg vwx910 * vwx100)",fontsize=16,color="magenta"];2442 -> 2507[label="",style="dashed", color="magenta", weight=3]; 2442 -> 2508[label="",style="dashed", color="magenta", weight=3]; 2443[label="primCmpNat (Succ vwx900) (Succ vwx1000)",fontsize=16,color="black",shape="box"];2443 -> 2509[label="",style="solid", color="black", weight=3]; 2444[label="primCmpNat (Succ vwx900) Zero",fontsize=16,color="black",shape="box"];2444 -> 2510[label="",style="solid", color="black", weight=3]; 2445[label="primCmpNat Zero (Succ vwx1000)",fontsize=16,color="black",shape="box"];2445 -> 2511[label="",style="solid", color="black", weight=3]; 2446[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];2446 -> 2512[label="",style="solid", color="black", weight=3]; 2447[label="Succ vwx900",fontsize=16,color="green",shape="box"];2448[label="vwx100",fontsize=16,color="green",shape="box"];2449 -> 2318[label="",style="dashed", color="red", weight=0]; 2449[label="primCmpNat Zero (Succ vwx1000)",fontsize=16,color="magenta"];2449 -> 2513[label="",style="dashed", color="magenta", weight=3]; 2449 -> 2514[label="",style="dashed", color="magenta", weight=3]; 2450[label="EQ",fontsize=16,color="green",shape="box"];2451[label="GT",fontsize=16,color="green",shape="box"];2452[label="EQ",fontsize=16,color="green",shape="box"];2453[label="vwx100",fontsize=16,color="green",shape="box"];2454[label="Succ vwx900",fontsize=16,color="green",shape="box"];2455[label="LT",fontsize=16,color="green",shape="box"];2456[label="EQ",fontsize=16,color="green",shape="box"];2457 -> 2318[label="",style="dashed", color="red", weight=0]; 2457[label="primCmpNat (Succ vwx1000) Zero",fontsize=16,color="magenta"];2457 -> 2515[label="",style="dashed", color="magenta", weight=3]; 2457 -> 2516[label="",style="dashed", color="magenta", weight=3]; 2458[label="EQ",fontsize=16,color="green",shape="box"];2459 -> 1801[label="",style="dashed", color="red", weight=0]; 2459[label="compare (vwx90 * Pos vwx1010) (Pos vwx910 * vwx100)",fontsize=16,color="magenta"];2459 -> 2517[label="",style="dashed", color="magenta", weight=3]; 2459 -> 2518[label="",style="dashed", color="magenta", weight=3]; 2460 -> 1801[label="",style="dashed", color="red", weight=0]; 2460[label="compare (vwx90 * Pos vwx1010) (Neg vwx910 * vwx100)",fontsize=16,color="magenta"];2460 -> 2519[label="",style="dashed", color="magenta", weight=3]; 2460 -> 2520[label="",style="dashed", color="magenta", weight=3]; 2461 -> 1801[label="",style="dashed", color="red", weight=0]; 2461[label="compare (vwx90 * Neg vwx1010) (Pos vwx910 * vwx100)",fontsize=16,color="magenta"];2461 -> 2521[label="",style="dashed", color="magenta", weight=3]; 2461 -> 2522[label="",style="dashed", color="magenta", weight=3]; 2462 -> 1801[label="",style="dashed", color="red", weight=0]; 2462[label="compare (vwx90 * Neg vwx1010) (Neg vwx910 * vwx100)",fontsize=16,color="magenta"];2462 -> 2523[label="",style="dashed", color="magenta", weight=3]; 2462 -> 2524[label="",style="dashed", color="magenta", weight=3]; 1461[label="Succ (Succ (primPlusNat vwx330 vwx40100))",fontsize=16,color="green",shape="box"];1461 -> 1525[label="",style="dashed", color="green", weight=3]; 1462[label="Succ vwx40100",fontsize=16,color="green",shape="box"];2463[label="Integer vwx900 * Integer vwx1010",fontsize=16,color="black",shape="box"];2463 -> 2525[label="",style="solid", color="black", weight=3]; 2464[label="vwx90",fontsize=16,color="green",shape="box"];2465[label="vwx100",fontsize=16,color="green",shape="box"];2466[label="compare2 vwx90 vwx100 False",fontsize=16,color="black",shape="box"];2466 -> 2526[label="",style="solid", color="black", weight=3]; 2467[label="compare2 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];2467 -> 2527[label="",style="solid", color="black", weight=3]; 2468[label="vwx90",fontsize=16,color="green",shape="box"];2469[label="vwx100",fontsize=16,color="green",shape="box"];2470[label="compare2 vwx90 vwx100 False",fontsize=16,color="black",shape="box"];2470 -> 2528[label="",style="solid", color="black", weight=3]; 2471[label="compare2 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];2471 -> 2529[label="",style="solid", color="black", weight=3]; 2472[label="vwx90",fontsize=16,color="green",shape="box"];2473[label="vwx100",fontsize=16,color="green",shape="box"];2474[label="compare2 vwx90 vwx100 False",fontsize=16,color="black",shape="box"];2474 -> 2530[label="",style="solid", color="black", weight=3]; 2475[label="compare2 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];2475 -> 2531[label="",style="solid", color="black", weight=3]; 2476[label="vwx90",fontsize=16,color="green",shape="box"];2477[label="vwx100",fontsize=16,color="green",shape="box"];2478[label="compare2 vwx90 vwx100 False",fontsize=16,color="black",shape="box"];2478 -> 2532[label="",style="solid", color="black", weight=3]; 2479[label="compare2 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];2479 -> 2533[label="",style="solid", color="black", weight=3]; 2480[label="vwx90",fontsize=16,color="green",shape="box"];2481[label="vwx100",fontsize=16,color="green",shape="box"];2482[label="compare2 vwx90 vwx100 False",fontsize=16,color="black",shape="box"];2482 -> 2534[label="",style="solid", color="black", weight=3]; 2483[label="compare2 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];2483 -> 2535[label="",style="solid", color="black", weight=3]; 2484 -> 1787[label="",style="dashed", color="red", weight=0]; 2484[label="compare vwx90 vwx100",fontsize=16,color="magenta"];2484 -> 2536[label="",style="dashed", color="magenta", weight=3]; 2484 -> 2537[label="",style="dashed", color="magenta", weight=3]; 2485 -> 1791[label="",style="dashed", color="red", weight=0]; 2485[label="compare vwx90 vwx100",fontsize=16,color="magenta"];2485 -> 2538[label="",style="dashed", color="magenta", weight=3]; 2485 -> 2539[label="",style="dashed", color="magenta", weight=3]; 2486 -> 2097[label="",style="dashed", color="red", weight=0]; 2486[label="compare vwx90 vwx100",fontsize=16,color="magenta"];2486 -> 2540[label="",style="dashed", color="magenta", weight=3]; 2486 -> 2541[label="",style="dashed", color="magenta", weight=3]; 2487 -> 1793[label="",style="dashed", color="red", weight=0]; 2487[label="compare vwx90 vwx100",fontsize=16,color="magenta"];2487 -> 2542[label="",style="dashed", color="magenta", weight=3]; 2487 -> 2543[label="",style="dashed", color="magenta", weight=3]; 2488 -> 1795[label="",style="dashed", color="red", weight=0]; 2488[label="compare vwx90 vwx100",fontsize=16,color="magenta"];2488 -> 2544[label="",style="dashed", color="magenta", weight=3]; 2488 -> 2545[label="",style="dashed", color="magenta", weight=3]; 2489[label="compare vwx90 vwx100",fontsize=16,color="black",shape="box"];2489 -> 2546[label="",style="solid", color="black", weight=3]; 2490 -> 2103[label="",style="dashed", color="red", weight=0]; 2490[label="compare vwx90 vwx100",fontsize=16,color="magenta"];2490 -> 2547[label="",style="dashed", color="magenta", weight=3]; 2490 -> 2548[label="",style="dashed", color="magenta", weight=3]; 2491 -> 1797[label="",style="dashed", color="red", weight=0]; 2491[label="compare vwx90 vwx100",fontsize=16,color="magenta"];2491 -> 2549[label="",style="dashed", color="magenta", weight=3]; 2491 -> 2550[label="",style="dashed", color="magenta", weight=3]; 2492 -> 2107[label="",style="dashed", color="red", weight=0]; 2492[label="compare vwx90 vwx100",fontsize=16,color="magenta"];2492 -> 2551[label="",style="dashed", color="magenta", weight=3]; 2492 -> 2552[label="",style="dashed", color="magenta", weight=3]; 2493 -> 2109[label="",style="dashed", color="red", weight=0]; 2493[label="compare vwx90 vwx100",fontsize=16,color="magenta"];2493 -> 2553[label="",style="dashed", color="magenta", weight=3]; 2493 -> 2554[label="",style="dashed", color="magenta", weight=3]; 2494 -> 1799[label="",style="dashed", color="red", weight=0]; 2494[label="compare vwx90 vwx100",fontsize=16,color="magenta"];2494 -> 2555[label="",style="dashed", color="magenta", weight=3]; 2494 -> 2556[label="",style="dashed", color="magenta", weight=3]; 2495 -> 2113[label="",style="dashed", color="red", weight=0]; 2495[label="compare vwx90 vwx100",fontsize=16,color="magenta"];2495 -> 2557[label="",style="dashed", color="magenta", weight=3]; 2495 -> 2558[label="",style="dashed", color="magenta", weight=3]; 2496 -> 1801[label="",style="dashed", color="red", weight=0]; 2496[label="compare vwx90 vwx100",fontsize=16,color="magenta"];2496 -> 2559[label="",style="dashed", color="magenta", weight=3]; 2496 -> 2560[label="",style="dashed", color="magenta", weight=3]; 2497 -> 1803[label="",style="dashed", color="red", weight=0]; 2497[label="compare vwx90 vwx100",fontsize=16,color="magenta"];2497 -> 2561[label="",style="dashed", color="magenta", weight=3]; 2497 -> 2562[label="",style="dashed", color="magenta", weight=3]; 2498[label="primCompAux0 vwx67 LT",fontsize=16,color="black",shape="box"];2498 -> 2563[label="",style="solid", color="black", weight=3]; 2499[label="primCompAux0 vwx67 EQ",fontsize=16,color="black",shape="box"];2499 -> 2564[label="",style="solid", color="black", weight=3]; 2500[label="primCompAux0 vwx67 GT",fontsize=16,color="black",shape="box"];2500 -> 2565[label="",style="solid", color="black", weight=3]; 2501 -> 378[label="",style="dashed", color="red", weight=0]; 2501[label="vwx90 * Pos vwx1010",fontsize=16,color="magenta"];2501 -> 2566[label="",style="dashed", color="magenta", weight=3]; 2501 -> 2567[label="",style="dashed", color="magenta", weight=3]; 2502 -> 378[label="",style="dashed", color="red", weight=0]; 2502[label="Pos vwx910 * vwx100",fontsize=16,color="magenta"];2502 -> 2568[label="",style="dashed", color="magenta", weight=3]; 2502 -> 2569[label="",style="dashed", color="magenta", weight=3]; 2503 -> 378[label="",style="dashed", color="red", weight=0]; 2503[label="vwx90 * Pos vwx1010",fontsize=16,color="magenta"];2503 -> 2570[label="",style="dashed", color="magenta", weight=3]; 2503 -> 2571[label="",style="dashed", color="magenta", weight=3]; 2504 -> 378[label="",style="dashed", color="red", weight=0]; 2504[label="Neg vwx910 * vwx100",fontsize=16,color="magenta"];2504 -> 2572[label="",style="dashed", color="magenta", weight=3]; 2504 -> 2573[label="",style="dashed", color="magenta", weight=3]; 2505 -> 378[label="",style="dashed", color="red", weight=0]; 2505[label="vwx90 * Neg vwx1010",fontsize=16,color="magenta"];2505 -> 2574[label="",style="dashed", color="magenta", weight=3]; 2505 -> 2575[label="",style="dashed", color="magenta", weight=3]; 2506 -> 378[label="",style="dashed", color="red", weight=0]; 2506[label="Pos vwx910 * vwx100",fontsize=16,color="magenta"];2506 -> 2576[label="",style="dashed", color="magenta", weight=3]; 2506 -> 2577[label="",style="dashed", color="magenta", weight=3]; 2507 -> 378[label="",style="dashed", color="red", weight=0]; 2507[label="vwx90 * Neg vwx1010",fontsize=16,color="magenta"];2507 -> 2578[label="",style="dashed", color="magenta", weight=3]; 2507 -> 2579[label="",style="dashed", color="magenta", weight=3]; 2508 -> 378[label="",style="dashed", color="red", weight=0]; 2508[label="Neg vwx910 * vwx100",fontsize=16,color="magenta"];2508 -> 2580[label="",style="dashed", color="magenta", weight=3]; 2508 -> 2581[label="",style="dashed", color="magenta", weight=3]; 2509 -> 2318[label="",style="dashed", color="red", weight=0]; 2509[label="primCmpNat vwx900 vwx1000",fontsize=16,color="magenta"];2509 -> 2582[label="",style="dashed", color="magenta", weight=3]; 2509 -> 2583[label="",style="dashed", color="magenta", weight=3]; 2510[label="GT",fontsize=16,color="green",shape="box"];2511[label="LT",fontsize=16,color="green",shape="box"];2512[label="EQ",fontsize=16,color="green",shape="box"];2513[label="Zero",fontsize=16,color="green",shape="box"];2514[label="Succ vwx1000",fontsize=16,color="green",shape="box"];2515[label="Succ vwx1000",fontsize=16,color="green",shape="box"];2516[label="Zero",fontsize=16,color="green",shape="box"];2517 -> 378[label="",style="dashed", color="red", weight=0]; 2517[label="vwx90 * Pos vwx1010",fontsize=16,color="magenta"];2517 -> 2584[label="",style="dashed", color="magenta", weight=3]; 2517 -> 2585[label="",style="dashed", color="magenta", weight=3]; 2518 -> 378[label="",style="dashed", color="red", weight=0]; 2518[label="Pos vwx910 * vwx100",fontsize=16,color="magenta"];2518 -> 2586[label="",style="dashed", color="magenta", weight=3]; 2518 -> 2587[label="",style="dashed", color="magenta", weight=3]; 2519 -> 378[label="",style="dashed", color="red", weight=0]; 2519[label="vwx90 * Pos vwx1010",fontsize=16,color="magenta"];2519 -> 2588[label="",style="dashed", color="magenta", weight=3]; 2519 -> 2589[label="",style="dashed", color="magenta", weight=3]; 2520 -> 378[label="",style="dashed", color="red", weight=0]; 2520[label="Neg vwx910 * vwx100",fontsize=16,color="magenta"];2520 -> 2590[label="",style="dashed", color="magenta", weight=3]; 2520 -> 2591[label="",style="dashed", color="magenta", weight=3]; 2521 -> 378[label="",style="dashed", color="red", weight=0]; 2521[label="vwx90 * Neg vwx1010",fontsize=16,color="magenta"];2521 -> 2592[label="",style="dashed", color="magenta", weight=3]; 2521 -> 2593[label="",style="dashed", color="magenta", weight=3]; 2522 -> 378[label="",style="dashed", color="red", weight=0]; 2522[label="Pos vwx910 * vwx100",fontsize=16,color="magenta"];2522 -> 2594[label="",style="dashed", color="magenta", weight=3]; 2522 -> 2595[label="",style="dashed", color="magenta", weight=3]; 2523 -> 378[label="",style="dashed", color="red", weight=0]; 2523[label="vwx90 * Neg vwx1010",fontsize=16,color="magenta"];2523 -> 2596[label="",style="dashed", color="magenta", weight=3]; 2523 -> 2597[label="",style="dashed", color="magenta", weight=3]; 2524 -> 378[label="",style="dashed", color="red", weight=0]; 2524[label="Neg vwx910 * vwx100",fontsize=16,color="magenta"];2524 -> 2598[label="",style="dashed", color="magenta", weight=3]; 2524 -> 2599[label="",style="dashed", color="magenta", weight=3]; 1525[label="primPlusNat vwx330 vwx40100",fontsize=16,color="burlywood",shape="triangle"];3216[label="vwx330/Succ vwx3300",fontsize=10,color="white",style="solid",shape="box"];1525 -> 3216[label="",style="solid", color="burlywood", weight=9]; 3216 -> 1601[label="",style="solid", color="burlywood", weight=3]; 3217[label="vwx330/Zero",fontsize=10,color="white",style="solid",shape="box"];1525 -> 3217[label="",style="solid", color="burlywood", weight=9]; 3217 -> 1602[label="",style="solid", color="burlywood", weight=3]; 2525[label="Integer (primMulInt vwx900 vwx1010)",fontsize=16,color="green",shape="box"];2525 -> 2600[label="",style="dashed", color="green", weight=3]; 2526 -> 2601[label="",style="dashed", color="red", weight=0]; 2526[label="compare1 vwx90 vwx100 (vwx90 <= vwx100)",fontsize=16,color="magenta"];2526 -> 2602[label="",style="dashed", color="magenta", weight=3]; 2527[label="EQ",fontsize=16,color="green",shape="box"];2528 -> 2603[label="",style="dashed", color="red", weight=0]; 2528[label="compare1 vwx90 vwx100 (vwx90 <= vwx100)",fontsize=16,color="magenta"];2528 -> 2604[label="",style="dashed", color="magenta", weight=3]; 2529[label="EQ",fontsize=16,color="green",shape="box"];2530 -> 2605[label="",style="dashed", color="red", weight=0]; 2530[label="compare1 vwx90 vwx100 (vwx90 <= vwx100)",fontsize=16,color="magenta"];2530 -> 2606[label="",style="dashed", color="magenta", weight=3]; 2531[label="EQ",fontsize=16,color="green",shape="box"];2532 -> 2607[label="",style="dashed", color="red", weight=0]; 2532[label="compare1 vwx90 vwx100 (vwx90 <= vwx100)",fontsize=16,color="magenta"];2532 -> 2608[label="",style="dashed", color="magenta", weight=3]; 2533[label="EQ",fontsize=16,color="green",shape="box"];2534 -> 2609[label="",style="dashed", color="red", weight=0]; 2534[label="compare1 vwx90 vwx100 (vwx90 <= vwx100)",fontsize=16,color="magenta"];2534 -> 2610[label="",style="dashed", color="magenta", weight=3]; 2535[label="EQ",fontsize=16,color="green",shape="box"];2536[label="vwx90",fontsize=16,color="green",shape="box"];2537[label="vwx100",fontsize=16,color="green",shape="box"];2538[label="vwx90",fontsize=16,color="green",shape="box"];2539[label="vwx100",fontsize=16,color="green",shape="box"];2540[label="vwx100",fontsize=16,color="green",shape="box"];2541[label="vwx90",fontsize=16,color="green",shape="box"];2542[label="vwx90",fontsize=16,color="green",shape="box"];2543[label="vwx100",fontsize=16,color="green",shape="box"];2544[label="vwx90",fontsize=16,color="green",shape="box"];2545[label="vwx100",fontsize=16,color="green",shape="box"];2546[label="compare3 vwx90 vwx100",fontsize=16,color="black",shape="box"];2546 -> 2611[label="",style="solid", color="black", weight=3]; 2547[label="vwx100",fontsize=16,color="green",shape="box"];2548[label="vwx90",fontsize=16,color="green",shape="box"];2549[label="vwx90",fontsize=16,color="green",shape="box"];2550[label="vwx100",fontsize=16,color="green",shape="box"];2551[label="vwx100",fontsize=16,color="green",shape="box"];2552[label="vwx90",fontsize=16,color="green",shape="box"];2553[label="vwx100",fontsize=16,color="green",shape="box"];2554[label="vwx90",fontsize=16,color="green",shape="box"];2555[label="vwx90",fontsize=16,color="green",shape="box"];2556[label="vwx100",fontsize=16,color="green",shape="box"];2557[label="vwx100",fontsize=16,color="green",shape="box"];2558[label="vwx90",fontsize=16,color="green",shape="box"];2559[label="vwx90",fontsize=16,color="green",shape="box"];2560[label="vwx100",fontsize=16,color="green",shape="box"];2561[label="vwx90",fontsize=16,color="green",shape="box"];2562[label="vwx100",fontsize=16,color="green",shape="box"];2563[label="LT",fontsize=16,color="green",shape="box"];2564[label="vwx67",fontsize=16,color="green",shape="box"];2565[label="GT",fontsize=16,color="green",shape="box"];2566[label="Pos vwx1010",fontsize=16,color="green",shape="box"];2567[label="vwx90",fontsize=16,color="green",shape="box"];2568[label="vwx100",fontsize=16,color="green",shape="box"];2569[label="Pos vwx910",fontsize=16,color="green",shape="box"];2570[label="Pos vwx1010",fontsize=16,color="green",shape="box"];2571[label="vwx90",fontsize=16,color="green",shape="box"];2572[label="vwx100",fontsize=16,color="green",shape="box"];2573[label="Neg vwx910",fontsize=16,color="green",shape="box"];2574[label="Neg vwx1010",fontsize=16,color="green",shape="box"];2575[label="vwx90",fontsize=16,color="green",shape="box"];2576[label="vwx100",fontsize=16,color="green",shape="box"];2577[label="Pos vwx910",fontsize=16,color="green",shape="box"];2578[label="Neg vwx1010",fontsize=16,color="green",shape="box"];2579[label="vwx90",fontsize=16,color="green",shape="box"];2580[label="vwx100",fontsize=16,color="green",shape="box"];2581[label="Neg vwx910",fontsize=16,color="green",shape="box"];2582[label="vwx900",fontsize=16,color="green",shape="box"];2583[label="vwx1000",fontsize=16,color="green",shape="box"];2584[label="Pos vwx1010",fontsize=16,color="green",shape="box"];2585[label="vwx90",fontsize=16,color="green",shape="box"];2586[label="vwx100",fontsize=16,color="green",shape="box"];2587[label="Pos vwx910",fontsize=16,color="green",shape="box"];2588[label="Pos vwx1010",fontsize=16,color="green",shape="box"];2589[label="vwx90",fontsize=16,color="green",shape="box"];2590[label="vwx100",fontsize=16,color="green",shape="box"];2591[label="Neg vwx910",fontsize=16,color="green",shape="box"];2592[label="Neg vwx1010",fontsize=16,color="green",shape="box"];2593[label="vwx90",fontsize=16,color="green",shape="box"];2594[label="vwx100",fontsize=16,color="green",shape="box"];2595[label="Pos vwx910",fontsize=16,color="green",shape="box"];2596[label="Neg vwx1010",fontsize=16,color="green",shape="box"];2597[label="vwx90",fontsize=16,color="green",shape="box"];2598[label="vwx100",fontsize=16,color="green",shape="box"];2599[label="Neg vwx910",fontsize=16,color="green",shape="box"];1601[label="primPlusNat (Succ vwx3300) vwx40100",fontsize=16,color="burlywood",shape="box"];3218[label="vwx40100/Succ vwx401000",fontsize=10,color="white",style="solid",shape="box"];1601 -> 3218[label="",style="solid", color="burlywood", weight=9]; 3218 -> 1615[label="",style="solid", color="burlywood", weight=3]; 3219[label="vwx40100/Zero",fontsize=10,color="white",style="solid",shape="box"];1601 -> 3219[label="",style="solid", color="burlywood", weight=9]; 3219 -> 1616[label="",style="solid", color="burlywood", weight=3]; 1602[label="primPlusNat Zero vwx40100",fontsize=16,color="burlywood",shape="box"];3220[label="vwx40100/Succ vwx401000",fontsize=10,color="white",style="solid",shape="box"];1602 -> 3220[label="",style="solid", color="burlywood", weight=9]; 3220 -> 1617[label="",style="solid", color="burlywood", weight=3]; 3221[label="vwx40100/Zero",fontsize=10,color="white",style="solid",shape="box"];1602 -> 3221[label="",style="solid", color="burlywood", weight=9]; 3221 -> 1618[label="",style="solid", color="burlywood", weight=3]; 2600 -> 526[label="",style="dashed", color="red", weight=0]; 2600[label="primMulInt vwx900 vwx1010",fontsize=16,color="magenta"];2600 -> 2612[label="",style="dashed", color="magenta", weight=3]; 2600 -> 2613[label="",style="dashed", color="magenta", weight=3]; 2602 -> 1689[label="",style="dashed", color="red", weight=0]; 2602[label="vwx90 <= vwx100",fontsize=16,color="magenta"];2602 -> 2614[label="",style="dashed", color="magenta", weight=3]; 2602 -> 2615[label="",style="dashed", color="magenta", weight=3]; 2601[label="compare1 vwx90 vwx100 vwx69",fontsize=16,color="burlywood",shape="triangle"];3222[label="vwx69/False",fontsize=10,color="white",style="solid",shape="box"];2601 -> 3222[label="",style="solid", color="burlywood", weight=9]; 3222 -> 2616[label="",style="solid", color="burlywood", weight=3]; 3223[label="vwx69/True",fontsize=10,color="white",style="solid",shape="box"];2601 -> 3223[label="",style="solid", color="burlywood", weight=9]; 3223 -> 2617[label="",style="solid", color="burlywood", weight=3]; 2604 -> 1693[label="",style="dashed", color="red", weight=0]; 2604[label="vwx90 <= vwx100",fontsize=16,color="magenta"];2604 -> 2618[label="",style="dashed", color="magenta", weight=3]; 2604 -> 2619[label="",style="dashed", color="magenta", weight=3]; 2603[label="compare1 vwx90 vwx100 vwx70",fontsize=16,color="burlywood",shape="triangle"];3224[label="vwx70/False",fontsize=10,color="white",style="solid",shape="box"];2603 -> 3224[label="",style="solid", color="burlywood", weight=9]; 3224 -> 2620[label="",style="solid", color="burlywood", weight=3]; 3225[label="vwx70/True",fontsize=10,color="white",style="solid",shape="box"];2603 -> 3225[label="",style="solid", color="burlywood", weight=9]; 3225 -> 2621[label="",style="solid", color="burlywood", weight=3]; 2606 -> 1695[label="",style="dashed", color="red", weight=0]; 2606[label="vwx90 <= vwx100",fontsize=16,color="magenta"];2606 -> 2622[label="",style="dashed", color="magenta", weight=3]; 2606 -> 2623[label="",style="dashed", color="magenta", weight=3]; 2605[label="compare1 vwx90 vwx100 vwx71",fontsize=16,color="burlywood",shape="triangle"];3226[label="vwx71/False",fontsize=10,color="white",style="solid",shape="box"];2605 -> 3226[label="",style="solid", color="burlywood", weight=9]; 3226 -> 2624[label="",style="solid", color="burlywood", weight=3]; 3227[label="vwx71/True",fontsize=10,color="white",style="solid",shape="box"];2605 -> 3227[label="",style="solid", color="burlywood", weight=9]; 3227 -> 2625[label="",style="solid", color="burlywood", weight=3]; 2608 -> 1696[label="",style="dashed", color="red", weight=0]; 2608[label="vwx90 <= vwx100",fontsize=16,color="magenta"];2608 -> 2626[label="",style="dashed", color="magenta", weight=3]; 2608 -> 2627[label="",style="dashed", color="magenta", weight=3]; 2607[label="compare1 vwx90 vwx100 vwx72",fontsize=16,color="burlywood",shape="triangle"];3228[label="vwx72/False",fontsize=10,color="white",style="solid",shape="box"];2607 -> 3228[label="",style="solid", color="burlywood", weight=9]; 3228 -> 2628[label="",style="solid", color="burlywood", weight=3]; 3229[label="vwx72/True",fontsize=10,color="white",style="solid",shape="box"];2607 -> 3229[label="",style="solid", color="burlywood", weight=9]; 3229 -> 2629[label="",style="solid", color="burlywood", weight=3]; 2610 -> 1698[label="",style="dashed", color="red", weight=0]; 2610[label="vwx90 <= vwx100",fontsize=16,color="magenta"];2610 -> 2630[label="",style="dashed", color="magenta", weight=3]; 2610 -> 2631[label="",style="dashed", color="magenta", weight=3]; 2609[label="compare1 vwx90 vwx100 vwx73",fontsize=16,color="burlywood",shape="triangle"];3230[label="vwx73/False",fontsize=10,color="white",style="solid",shape="box"];2609 -> 3230[label="",style="solid", color="burlywood", weight=9]; 3230 -> 2632[label="",style="solid", color="burlywood", weight=3]; 3231[label="vwx73/True",fontsize=10,color="white",style="solid",shape="box"];2609 -> 3231[label="",style="solid", color="burlywood", weight=9]; 3231 -> 2633[label="",style="solid", color="burlywood", weight=3]; 2611 -> 2634[label="",style="dashed", color="red", weight=0]; 2611[label="compare2 vwx90 vwx100 (vwx90 == vwx100)",fontsize=16,color="magenta"];2611 -> 2635[label="",style="dashed", color="magenta", weight=3]; 1615[label="primPlusNat (Succ vwx3300) (Succ vwx401000)",fontsize=16,color="black",shape="box"];1615 -> 1643[label="",style="solid", color="black", weight=3]; 1616[label="primPlusNat (Succ vwx3300) Zero",fontsize=16,color="black",shape="box"];1616 -> 1644[label="",style="solid", color="black", weight=3]; 1617[label="primPlusNat Zero (Succ vwx401000)",fontsize=16,color="black",shape="box"];1617 -> 1645[label="",style="solid", color="black", weight=3]; 1618[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];1618 -> 1646[label="",style="solid", color="black", weight=3]; 2612[label="vwx1010",fontsize=16,color="green",shape="box"];2613[label="vwx900",fontsize=16,color="green",shape="box"];2614[label="vwx90",fontsize=16,color="green",shape="box"];2615[label="vwx100",fontsize=16,color="green",shape="box"];2616[label="compare1 vwx90 vwx100 False",fontsize=16,color="black",shape="box"];2616 -> 2636[label="",style="solid", color="black", weight=3]; 2617[label="compare1 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];2617 -> 2637[label="",style="solid", color="black", weight=3]; 2618[label="vwx90",fontsize=16,color="green",shape="box"];2619[label="vwx100",fontsize=16,color="green",shape="box"];2620[label="compare1 vwx90 vwx100 False",fontsize=16,color="black",shape="box"];2620 -> 2638[label="",style="solid", color="black", weight=3]; 2621[label="compare1 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];2621 -> 2639[label="",style="solid", color="black", weight=3]; 2622[label="vwx90",fontsize=16,color="green",shape="box"];2623[label="vwx100",fontsize=16,color="green",shape="box"];2624[label="compare1 vwx90 vwx100 False",fontsize=16,color="black",shape="box"];2624 -> 2640[label="",style="solid", color="black", weight=3]; 2625[label="compare1 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];2625 -> 2641[label="",style="solid", color="black", weight=3]; 2626[label="vwx90",fontsize=16,color="green",shape="box"];2627[label="vwx100",fontsize=16,color="green",shape="box"];2628[label="compare1 vwx90 vwx100 False",fontsize=16,color="black",shape="box"];2628 -> 2642[label="",style="solid", color="black", weight=3]; 2629[label="compare1 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];2629 -> 2643[label="",style="solid", color="black", weight=3]; 2630[label="vwx90",fontsize=16,color="green",shape="box"];2631[label="vwx100",fontsize=16,color="green",shape="box"];2632[label="compare1 vwx90 vwx100 False",fontsize=16,color="black",shape="box"];2632 -> 2644[label="",style="solid", color="black", weight=3]; 2633[label="compare1 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];2633 -> 2645[label="",style="solid", color="black", weight=3]; 2635 -> 37[label="",style="dashed", color="red", weight=0]; 2635[label="vwx90 == vwx100",fontsize=16,color="magenta"];2635 -> 2646[label="",style="dashed", color="magenta", weight=3]; 2635 -> 2647[label="",style="dashed", color="magenta", weight=3]; 2634[label="compare2 vwx90 vwx100 vwx74",fontsize=16,color="burlywood",shape="triangle"];3232[label="vwx74/False",fontsize=10,color="white",style="solid",shape="box"];2634 -> 3232[label="",style="solid", color="burlywood", weight=9]; 3232 -> 2648[label="",style="solid", color="burlywood", weight=3]; 3233[label="vwx74/True",fontsize=10,color="white",style="solid",shape="box"];2634 -> 3233[label="",style="solid", color="burlywood", weight=9]; 3233 -> 2649[label="",style="solid", color="burlywood", weight=3]; 1643[label="Succ (Succ (primPlusNat vwx3300 vwx401000))",fontsize=16,color="green",shape="box"];1643 -> 1661[label="",style="dashed", color="green", weight=3]; 1644[label="Succ vwx3300",fontsize=16,color="green",shape="box"];1645[label="Succ vwx401000",fontsize=16,color="green",shape="box"];1646[label="Zero",fontsize=16,color="green",shape="box"];2636[label="compare0 vwx90 vwx100 otherwise",fontsize=16,color="black",shape="box"];2636 -> 2650[label="",style="solid", color="black", weight=3]; 2637[label="LT",fontsize=16,color="green",shape="box"];2638[label="compare0 vwx90 vwx100 otherwise",fontsize=16,color="black",shape="box"];2638 -> 2651[label="",style="solid", color="black", weight=3]; 2639[label="LT",fontsize=16,color="green",shape="box"];2640[label="compare0 vwx90 vwx100 otherwise",fontsize=16,color="black",shape="box"];2640 -> 2652[label="",style="solid", color="black", weight=3]; 2641[label="LT",fontsize=16,color="green",shape="box"];2642[label="compare0 vwx90 vwx100 otherwise",fontsize=16,color="black",shape="box"];2642 -> 2653[label="",style="solid", color="black", weight=3]; 2643[label="LT",fontsize=16,color="green",shape="box"];2644[label="compare0 vwx90 vwx100 otherwise",fontsize=16,color="black",shape="box"];2644 -> 2654[label="",style="solid", color="black", weight=3]; 2645[label="LT",fontsize=16,color="green",shape="box"];2646[label="vwx90",fontsize=16,color="green",shape="box"];2647[label="vwx100",fontsize=16,color="green",shape="box"];2648[label="compare2 vwx90 vwx100 False",fontsize=16,color="black",shape="box"];2648 -> 2655[label="",style="solid", color="black", weight=3]; 2649[label="compare2 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];2649 -> 2656[label="",style="solid", color="black", weight=3]; 1661 -> 1525[label="",style="dashed", color="red", weight=0]; 1661[label="primPlusNat vwx3300 vwx401000",fontsize=16,color="magenta"];1661 -> 1669[label="",style="dashed", color="magenta", weight=3]; 1661 -> 1670[label="",style="dashed", color="magenta", weight=3]; 2650[label="compare0 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];2650 -> 2657[label="",style="solid", color="black", weight=3]; 2651[label="compare0 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];2651 -> 2658[label="",style="solid", color="black", weight=3]; 2652[label="compare0 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];2652 -> 2659[label="",style="solid", color="black", weight=3]; 2653[label="compare0 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];2653 -> 2660[label="",style="solid", color="black", weight=3]; 2654[label="compare0 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];2654 -> 2661[label="",style="solid", color="black", weight=3]; 2655 -> 1676[label="",style="dashed", color="red", weight=0]; 2655[label="compare1 vwx90 vwx100 (vwx90 <= vwx100)",fontsize=16,color="magenta"];2655 -> 2662[label="",style="dashed", color="magenta", weight=3]; 2656[label="EQ",fontsize=16,color="green",shape="box"];1669[label="vwx3300",fontsize=16,color="green",shape="box"];1670[label="vwx401000",fontsize=16,color="green",shape="box"];2657[label="GT",fontsize=16,color="green",shape="box"];2658[label="GT",fontsize=16,color="green",shape="box"];2659[label="GT",fontsize=16,color="green",shape="box"];2660[label="GT",fontsize=16,color="green",shape="box"];2661[label="GT",fontsize=16,color="green",shape="box"];2662 -> 1692[label="",style="dashed", color="red", weight=0]; 2662[label="vwx90 <= vwx100",fontsize=16,color="magenta"];2662 -> 2663[label="",style="dashed", color="magenta", weight=3]; 2662 -> 2664[label="",style="dashed", color="magenta", weight=3]; 2663[label="vwx90",fontsize=16,color="green",shape="box"];2664[label="vwx100",fontsize=16,color="green",shape="box"];} ---------------------------------------- (14) Complex Obligation (AND) ---------------------------------------- (15) Obligation: Q DP problem: The TRS P consists of the following rules: new_primCmpNat(Succ(vwx900), Succ(vwx1000)) -> new_primCmpNat(vwx900, vwx1000) R is empty. Q is empty. 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_primCmpNat(Succ(vwx900), Succ(vwx1000)) -> new_primCmpNat(vwx900, vwx1000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (17) YES ---------------------------------------- (18) Obligation: Q DP problem: The TRS P consists of the following rules: new_esEs2(Just(vwx300), Just(vwx400), app(app(ty_@2, hg), hh)) -> new_esEs1(vwx300, vwx400, hg, hh) new_esEs0(Left(vwx300), Left(vwx400), app(app(ty_@2, cf), cg), cc) -> new_esEs1(vwx300, vwx400, cf, cg) new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), gb, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs3(vwx301, vwx401, ha, hb, hc) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(ty_Either, bah), bba), baf, bag) -> new_esEs0(vwx300, vwx400, bah, bba) new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), gb, app(app(ty_Either, gd), ge)) -> new_esEs0(vwx301, vwx401, gd, ge) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, app(app(ty_Either, bcb), bcc), bag) -> new_esEs0(vwx301, vwx401, bcb, bcc) new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(ty_Either, fa), fb), eh) -> new_esEs0(vwx300, vwx400, fa, fb) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, baf, app(app(ty_Either, bdc), bdd)) -> new_esEs0(vwx302, vwx402, bdc, bdd) new_esEs(:(vwx300, vwx301), :(vwx400, vwx401), app(app(ty_@2, bc), bd)) -> new_esEs1(vwx300, vwx400, bc, bd) new_esEs2(Just(vwx300), Just(vwx400), app(ty_[], hd)) -> new_esEs(vwx300, vwx400, hd) new_esEs0(Left(vwx300), Left(vwx400), app(ty_Maybe, da), cc) -> new_esEs2(vwx300, vwx400, da) new_esEs2(Just(vwx300), Just(vwx400), app(app(app(ty_@3, bab), bac), bad)) -> new_esEs3(vwx300, vwx400, bab, bac, bad) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(app(ty_@3, bbe), bbf), bbg), baf, bag) -> new_esEs3(vwx300, vwx400, bbe, bbf, bbg) new_esEs(:(vwx300, vwx301), :(vwx400, vwx401), app(app(app(ty_@3, bf), bg), bh)) -> new_esEs3(vwx300, vwx400, bf, bg, bh) new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), app(ty_[], eg), eh) -> new_esEs(vwx300, vwx400, eg) new_esEs0(Right(vwx300), Right(vwx400), de, app(app(ty_Either, dg), dh)) -> new_esEs0(vwx300, vwx400, dg, dh) new_esEs(:(vwx300, vwx301), :(vwx400, vwx401), ca) -> new_esEs(vwx301, vwx401, ca) new_esEs2(Just(vwx300), Just(vwx400), app(ty_Maybe, baa)) -> new_esEs2(vwx300, vwx400, baa) new_esEs(:(vwx300, vwx301), :(vwx400, vwx401), app(ty_[], h)) -> new_esEs(vwx300, vwx400, h) new_esEs0(Right(vwx300), Right(vwx400), de, app(ty_[], df)) -> new_esEs(vwx300, vwx400, df) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, baf, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs3(vwx302, vwx402, bdh, bea, beb) new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), gb, app(ty_Maybe, gh)) -> new_esEs2(vwx301, vwx401, gh) new_esEs0(Right(vwx300), Right(vwx400), de, app(ty_Maybe, ec)) -> new_esEs2(vwx300, vwx400, ec) new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), app(ty_Maybe, ff), eh) -> new_esEs2(vwx300, vwx400, ff) new_esEs(:(vwx300, vwx301), :(vwx400, vwx401), app(ty_Maybe, be)) -> new_esEs2(vwx300, vwx400, be) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(ty_@2, bbb), bbc), baf, bag) -> new_esEs1(vwx300, vwx400, bbb, bbc) new_esEs0(Left(vwx300), Left(vwx400), app(app(ty_Either, cd), ce), cc) -> new_esEs0(vwx300, vwx400, cd, ce) new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(app(ty_@3, fg), fh), ga), eh) -> new_esEs3(vwx300, vwx400, fg, fh, ga) new_esEs0(Left(vwx300), Left(vwx400), app(app(app(ty_@3, db), dc), dd), cc) -> new_esEs3(vwx300, vwx400, db, dc, dd) new_esEs2(Just(vwx300), Just(vwx400), app(app(ty_Either, he), hf)) -> new_esEs0(vwx300, vwx400, he, hf) new_esEs0(Right(vwx300), Right(vwx400), de, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs3(vwx300, vwx400, ed, ee, ef) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, app(app(app(ty_@3, bcg), bch), bda), bag) -> new_esEs3(vwx301, vwx401, bcg, bch, bda) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, app(ty_[], bca), bag) -> new_esEs(vwx301, vwx401, bca) new_esEs0(Right(vwx300), Right(vwx400), de, app(app(ty_@2, ea), eb)) -> new_esEs1(vwx300, vwx400, ea, eb) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, app(app(ty_@2, bcd), bce), bag) -> new_esEs1(vwx301, vwx401, bcd, bce) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, baf, app(ty_[], bdb)) -> new_esEs(vwx302, vwx402, bdb) new_esEs(:(vwx300, vwx301), :(vwx400, vwx401), app(app(ty_Either, ba), bb)) -> new_esEs0(vwx300, vwx400, ba, bb) new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(ty_@2, fc), fd), eh) -> new_esEs1(vwx300, vwx400, fc, fd) new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), gb, app(ty_[], gc)) -> new_esEs(vwx301, vwx401, gc) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, baf, app(ty_Maybe, bdg)) -> new_esEs2(vwx302, vwx402, bdg) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(ty_[], bae), baf, bag) -> new_esEs(vwx300, vwx400, bae) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, baf, app(app(ty_@2, bde), bdf)) -> new_esEs1(vwx302, vwx402, bde, bdf) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(ty_Maybe, bbd), baf, bag) -> new_esEs2(vwx300, vwx400, bbd) new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), gb, app(app(ty_@2, gf), gg)) -> new_esEs1(vwx301, vwx401, gf, gg) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, app(ty_Maybe, bcf), bag) -> new_esEs2(vwx301, vwx401, bcf) new_esEs0(Left(vwx300), Left(vwx400), app(ty_[], cb), cc) -> new_esEs(vwx300, vwx400, cb) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (19) 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_esEs(:(vwx300, vwx301), :(vwx400, vwx401), app(ty_Maybe, be)) -> new_esEs2(vwx300, vwx400, be) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(Just(vwx300), Just(vwx400), app(ty_Maybe, baa)) -> new_esEs2(vwx300, vwx400, baa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(:(vwx300, vwx301), :(vwx400, vwx401), app(app(ty_Either, ba), bb)) -> new_esEs0(vwx300, vwx400, ba, bb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(Just(vwx300), Just(vwx400), app(app(ty_Either, he), hf)) -> new_esEs0(vwx300, vwx400, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(:(vwx300, vwx301), :(vwx400, vwx401), app(app(ty_@2, bc), bd)) -> new_esEs1(vwx300, vwx400, bc, bd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(Just(vwx300), Just(vwx400), app(app(ty_@2, hg), hh)) -> new_esEs1(vwx300, vwx400, hg, hh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(:(vwx300, vwx301), :(vwx400, vwx401), app(app(app(ty_@3, bf), bg), bh)) -> new_esEs3(vwx300, vwx400, bf, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(Just(vwx300), Just(vwx400), app(app(app(ty_@3, bab), bac), bad)) -> new_esEs3(vwx300, vwx400, bab, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(Just(vwx300), Just(vwx400), app(ty_[], hd)) -> new_esEs(vwx300, vwx400, hd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), gb, app(ty_Maybe, gh)) -> new_esEs2(vwx301, vwx401, gh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), app(ty_Maybe, ff), eh) -> new_esEs2(vwx300, vwx400, ff) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), gb, app(app(ty_Either, gd), ge)) -> new_esEs0(vwx301, vwx401, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(ty_Either, fa), fb), eh) -> new_esEs0(vwx300, vwx400, fa, fb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(ty_@2, fc), fd), eh) -> new_esEs1(vwx300, vwx400, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), gb, app(app(ty_@2, gf), gg)) -> new_esEs1(vwx301, vwx401, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), gb, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs3(vwx301, vwx401, ha, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(app(ty_@3, fg), fh), ga), eh) -> new_esEs3(vwx300, vwx400, fg, fh, ga) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), app(ty_[], eg), eh) -> new_esEs(vwx300, vwx400, eg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), gb, app(ty_[], gc)) -> new_esEs(vwx301, vwx401, gc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, baf, app(ty_Maybe, bdg)) -> new_esEs2(vwx302, vwx402, bdg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(ty_Maybe, bbd), baf, bag) -> new_esEs2(vwx300, vwx400, bbd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, app(ty_Maybe, bcf), bag) -> new_esEs2(vwx301, vwx401, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(Left(vwx300), Left(vwx400), app(ty_Maybe, da), cc) -> new_esEs2(vwx300, vwx400, da) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(Right(vwx300), Right(vwx400), de, app(ty_Maybe, ec)) -> new_esEs2(vwx300, vwx400, ec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(ty_Either, bah), bba), baf, bag) -> new_esEs0(vwx300, vwx400, bah, bba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, app(app(ty_Either, bcb), bcc), bag) -> new_esEs0(vwx301, vwx401, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, baf, app(app(ty_Either, bdc), bdd)) -> new_esEs0(vwx302, vwx402, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs0(Right(vwx300), Right(vwx400), de, app(app(ty_Either, dg), dh)) -> new_esEs0(vwx300, vwx400, dg, dh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(Left(vwx300), Left(vwx400), app(app(ty_Either, cd), ce), cc) -> new_esEs0(vwx300, vwx400, cd, ce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(ty_@2, bbb), bbc), baf, bag) -> new_esEs1(vwx300, vwx400, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, app(app(ty_@2, bcd), bce), bag) -> new_esEs1(vwx301, vwx401, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, baf, app(app(ty_@2, bde), bdf)) -> new_esEs1(vwx302, vwx402, bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(app(ty_@3, bbe), bbf), bbg), baf, bag) -> new_esEs3(vwx300, vwx400, bbe, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, baf, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs3(vwx302, vwx402, bdh, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, app(app(app(ty_@3, bcg), bch), bda), bag) -> new_esEs3(vwx301, vwx401, bcg, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, app(ty_[], bca), bag) -> new_esEs(vwx301, vwx401, bca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, baf, app(ty_[], bdb)) -> new_esEs(vwx302, vwx402, bdb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(ty_[], bae), baf, bag) -> new_esEs(vwx300, vwx400, bae) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(Left(vwx300), Left(vwx400), app(app(ty_@2, cf), cg), cc) -> new_esEs1(vwx300, vwx400, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(Right(vwx300), Right(vwx400), de, app(app(ty_@2, ea), eb)) -> new_esEs1(vwx300, vwx400, ea, eb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(Left(vwx300), Left(vwx400), app(app(app(ty_@3, db), dc), dd), cc) -> new_esEs3(vwx300, vwx400, db, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(Right(vwx300), Right(vwx400), de, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs3(vwx300, vwx400, ed, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs0(Right(vwx300), Right(vwx400), de, app(ty_[], df)) -> new_esEs(vwx300, vwx400, df) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(Left(vwx300), Left(vwx400), app(ty_[], cb), cc) -> new_esEs(vwx300, vwx400, cb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(:(vwx300, vwx301), :(vwx400, vwx401), ca) -> new_esEs(vwx301, vwx401, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs(:(vwx300, vwx301), :(vwx400, vwx401), app(ty_[], h)) -> new_esEs(vwx300, vwx400, h) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 ---------------------------------------- (20) YES ---------------------------------------- (21) Obligation: Q DP problem: The TRS P consists of the following rules: new_compare1(vwx90, vwx100, h, ba) -> new_compare2(vwx90, vwx100, new_esEs5(vwx90, vwx100, h, ba), h, ba) new_ltEs0(:(vwx90, vwx91), :(vwx100, vwx101), de) -> new_primCompAux(vwx90, vwx100, new_compare0(vwx91, vwx101, de), de) new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), app(app(ty_@2, hd), he), hf, hg) -> new_lt0(vwx90, vwx100, hd, he) new_primCompAux(vwx90, vwx100, vwx58, app(ty_Maybe, bde)) -> new_compare22(vwx90, vwx100, new_esEs8(vwx90, vwx100, bde), bde) new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, app(ty_[], hh)), hf), hg)) -> new_lt1(vwx90, vwx100, hh) new_ltEs(@2(vwx90, vwx91), @2(vwx100, vwx101), cb, app(ty_[], ce)) -> new_ltEs0(vwx91, vwx101, ce) new_ltEs1(Just(vwx90), Just(vwx100), app(app(app(ty_@3, ed), ee), ef)) -> new_ltEs3(vwx90, vwx100, ed, ee, ef) new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), bag, hf, app(ty_[], bcc)) -> new_ltEs0(vwx92, vwx102, bcc) new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, bag), app(ty_Maybe, bbc)), hg)) -> new_lt(vwx91, vwx101, bbc) new_compare22(vwx90, vwx100, False, bde) -> new_ltEs1(vwx90, vwx100, bde) new_esEs4(Just(vwx90), Just(vwx100), False, app(ty_Maybe, app(ty_[], dh))) -> new_ltEs0(vwx90, vwx100, dh) new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, app(app(ty_@2, hd), he)), hf), hg)) -> new_lt0(vwx90, vwx100, hd, he) new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, bag), hf), app(app(ty_@2, bca), bcb))) -> new_ltEs(vwx92, vwx102, bca, bcb) new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), bag, app(ty_Maybe, bbc), hg) -> new_lt(vwx91, vwx101, bbc) new_ltEs(@2(vwx90, vwx91), @2(vwx100, vwx101), app(ty_Maybe, bd), bb) -> new_lt(vwx90, vwx100, bd) new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), bag, hf, app(app(ty_@2, bca), bcb)) -> new_ltEs(vwx92, vwx102, bca, bcb) new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), bag, hf, app(app(app(ty_@3, bcg), bch), bda)) -> new_ltEs3(vwx92, vwx102, bcg, bch, bda) new_ltEs2(Right(vwx90), Right(vwx100), gb, app(app(ty_@2, gc), gd)) -> new_ltEs(vwx90, vwx100, gc, gd) new_esEs4(Just(vwx90), Just(vwx100), False, app(ty_Maybe, app(app(app(ty_@3, ed), ee), ef))) -> new_ltEs3(vwx90, vwx100, ed, ee, ef) new_compare4(vwx90, vwx100, bg, bh, ca) -> new_compare21(vwx90, vwx100, new_esEs7(vwx90, vwx100, bg, bh, ca), bg, bh, ca) new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), bag, app(app(ty_@2, bah), bba), hg) -> new_lt0(vwx91, vwx101, bah, bba) new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, app(ty_Maybe, baa)), hf), hg)) -> new_lt(vwx90, vwx100, baa) new_esEs4(Left(vwx90), Left(vwx100), False, app(app(ty_Either, app(ty_[], fb)), fa)) -> new_ltEs0(vwx90, vwx100, fb) new_ltEs2(Right(vwx90), Right(vwx100), gb, app(app(app(ty_@3, ha), hb), hc)) -> new_ltEs3(vwx90, vwx100, ha, hb, hc) new_ltEs(@2(vwx90, vwx91), @2(vwx100, vwx101), app(app(app(ty_@3, bg), bh), ca), bb) -> new_compare21(vwx90, vwx100, new_esEs7(vwx90, vwx100, bg, bh, ca), bg, bh, ca) new_esEs4(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, app(app(app(ty_@3, bg), bh), ca)), bb)) -> new_compare21(vwx90, vwx100, new_esEs7(vwx90, vwx100, bg, bh, ca), bg, bh, ca) new_ltEs2(Right(vwx90), Right(vwx100), gb, app(ty_Maybe, gf)) -> new_ltEs1(vwx90, vwx100, gf) new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, bag), app(ty_[], bbb)), hg)) -> new_lt1(vwx91, vwx101, bbb) new_esEs4(Left(vwx90), Left(vwx100), False, app(app(ty_Either, app(app(ty_@2, eg), eh)), fa)) -> new_ltEs(vwx90, vwx100, eg, eh) new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, bag), hf), app(app(app(ty_@3, bcg), bch), bda))) -> new_ltEs3(vwx92, vwx102, bcg, bch, bda) new_ltEs(@2(vwx90, vwx91), @2(vwx100, vwx101), cb, app(app(ty_@2, cc), cd)) -> new_ltEs(vwx91, vwx101, cc, cd) new_esEs4(Right(vwx90), Right(vwx100), False, app(app(ty_Either, gb), app(app(ty_@2, gc), gd))) -> new_ltEs(vwx90, vwx100, gc, gd) new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, app(app(ty_Either, bab), bac)), hf), hg)) -> new_lt2(vwx90, vwx100, bab, bac) new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), app(app(app(ty_@3, bad), bae), baf), hf, hg) -> new_lt3(vwx90, vwx100, bad, bae, baf) new_esEs4(Left(vwx90), Left(vwx100), False, app(app(ty_Either, app(app(app(ty_@3, fg), fh), ga)), fa)) -> new_ltEs3(vwx90, vwx100, fg, fh, ga) new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, bag), app(app(app(ty_@3, bbf), bbg), bbh)), hg)) -> new_lt3(vwx91, vwx101, bbf, bbg, bbh) new_esEs4(Right(vwx90), Right(vwx100), False, app(app(ty_Either, gb), app(ty_Maybe, gf))) -> new_ltEs1(vwx90, vwx100, gf) new_ltEs1(Just(vwx90), Just(vwx100), app(ty_Maybe, ea)) -> new_ltEs1(vwx90, vwx100, ea) new_esEs4(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, app(app(ty_@2, h), ba)), bb)) -> new_compare2(vwx90, vwx100, new_esEs5(vwx90, vwx100, h, ba), h, ba) new_ltEs2(Left(vwx90), Left(vwx100), app(ty_Maybe, fc), fa) -> new_ltEs1(vwx90, vwx100, fc) new_esEs4(Just(vwx90), Just(vwx100), False, app(ty_Maybe, app(app(ty_Either, eb), ec))) -> new_ltEs2(vwx90, vwx100, eb, ec) new_ltEs(@2(vwx90, vwx91), @2(vwx100, vwx101), app(ty_[], bc), bb) -> new_compare(vwx90, vwx100, bc) new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), app(app(ty_Either, bab), bac), hf, hg) -> new_lt2(vwx90, vwx100, bab, bac) new_esEs4(:(vwx90, vwx91), :(vwx100, vwx101), False, app(ty_[], de)) -> new_primCompAux(vwx90, vwx100, new_compare0(vwx91, vwx101, de), de) new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, bag), app(app(ty_Either, bbd), bbe)), hg)) -> new_lt2(vwx91, vwx101, bbd, bbe) new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, bag), hf), app(app(ty_Either, bce), bcf))) -> new_ltEs2(vwx92, vwx102, bce, bcf) new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), app(ty_Maybe, baa), hf, hg) -> new_lt(vwx90, vwx100, baa) new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, bag), hf), app(ty_[], bcc))) -> new_ltEs0(vwx92, vwx102, bcc) new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), bag, hf, app(ty_Maybe, bcd)) -> new_ltEs1(vwx92, vwx102, bcd) new_compare3(vwx90, vwx100, be, bf) -> new_compare20(vwx90, vwx100, new_esEs6(vwx90, vwx100, be, bf), be, bf) new_esEs4(Right(vwx90), Right(vwx100), False, app(app(ty_Either, gb), app(app(app(ty_@3, ha), hb), hc))) -> new_ltEs3(vwx90, vwx100, ha, hb, hc) new_ltEs(@2(vwx90, vwx91), @2(vwx100, vwx101), app(app(ty_@2, h), ba), bb) -> new_compare2(vwx90, vwx100, new_esEs5(vwx90, vwx100, h, ba), h, ba) new_lt3(vwx90, vwx100, bg, bh, ca) -> new_compare21(vwx90, vwx100, new_esEs7(vwx90, vwx100, bg, bh, ca), bg, bh, ca) new_esEs4(Just(vwx90), Just(vwx100), False, app(ty_Maybe, app(app(ty_@2, df), dg))) -> new_ltEs(vwx90, vwx100, df, dg) new_primCompAux(vwx90, vwx100, vwx58, app(app(app(ty_@3, bdh), bea), beb)) -> new_compare4(vwx90, vwx100, bdh, bea, beb) new_ltEs(@2(vwx90, vwx91), @2(vwx100, vwx101), cb, app(app(ty_Either, cg), da)) -> new_ltEs2(vwx91, vwx101, cg, da) new_esEs4(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, cb), app(app(ty_@2, cc), cd))) -> new_ltEs(vwx91, vwx101, cc, cd) new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), bag, app(app(ty_Either, bbd), bbe), hg) -> new_lt2(vwx91, vwx101, bbd, bbe) new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, bag), app(app(ty_@2, bah), bba)), hg)) -> new_lt0(vwx91, vwx101, bah, bba) new_esEs4(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, cb), app(ty_[], ce))) -> new_ltEs0(vwx91, vwx101, ce) new_ltEs2(Left(vwx90), Left(vwx100), app(app(app(ty_@3, fg), fh), ga), fa) -> new_ltEs3(vwx90, vwx100, fg, fh, ga) new_compare(:(vwx90, vwx91), :(vwx100, vwx101), de) -> new_primCompAux(vwx90, vwx100, new_compare0(vwx91, vwx101, de), de) new_esEs4(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, app(ty_Maybe, bd)), bb)) -> new_lt(vwx90, vwx100, bd) new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), bag, app(ty_[], bbb), hg) -> new_lt1(vwx91, vwx101, bbb) new_ltEs2(Right(vwx90), Right(vwx100), gb, app(app(ty_Either, gg), gh)) -> new_ltEs2(vwx90, vwx100, gg, gh) new_compare21(vwx90, vwx100, False, bg, bh, ca) -> new_ltEs3(vwx90, vwx100, bg, bh, ca) new_esEs4(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, cb), app(ty_Maybe, cf))) -> new_ltEs1(vwx91, vwx101, cf) new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, bag), hf), app(ty_Maybe, bcd))) -> new_ltEs1(vwx92, vwx102, bcd) new_esEs4(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, cb), app(app(ty_Either, cg), da))) -> new_ltEs2(vwx91, vwx101, cg, da) new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), bag, hf, app(app(ty_Either, bce), bcf)) -> new_ltEs2(vwx92, vwx102, bce, bcf) new_esEs4(Left(vwx90), Left(vwx100), False, app(app(ty_Either, app(app(ty_Either, fd), ff)), fa)) -> new_ltEs2(vwx90, vwx100, fd, ff) new_primCompAux(vwx90, vwx100, vwx58, app(ty_[], bdd)) -> new_compare(vwx90, vwx100, bdd) new_ltEs2(Left(vwx90), Left(vwx100), app(ty_[], fb), fa) -> new_ltEs0(vwx90, vwx100, fb) new_esEs4(Just(vwx90), Just(vwx100), False, app(ty_Maybe, app(ty_Maybe, ea))) -> new_ltEs1(vwx90, vwx100, ea) new_lt2(vwx90, vwx100, be, bf) -> new_compare20(vwx90, vwx100, new_esEs6(vwx90, vwx100, be, bf), be, bf) new_esEs4(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, app(app(ty_Either, be), bf)), bb)) -> new_compare20(vwx90, vwx100, new_esEs6(vwx90, vwx100, be, bf), be, bf) new_lt(Just(vwx30), Just(vwx40), bec) -> new_esEs4(vwx30, vwx40, new_esEs9(vwx30, vwx40, bec), bec) new_ltEs(@2(vwx90, vwx91), @2(vwx100, vwx101), cb, app(app(app(ty_@3, db), dc), dd)) -> new_ltEs3(vwx91, vwx101, db, dc, dd) new_ltEs(@2(vwx90, vwx91), @2(vwx100, vwx101), app(app(ty_Either, be), bf), bb) -> new_compare20(vwx90, vwx100, new_esEs6(vwx90, vwx100, be, bf), be, bf) new_ltEs0(:(vwx90, vwx91), :(vwx100, vwx101), de) -> new_compare(vwx91, vwx101, de) new_lt0(vwx90, vwx100, h, ba) -> new_compare2(vwx90, vwx100, new_esEs5(vwx90, vwx100, h, ba), h, ba) new_esEs4(:(vwx90, vwx91), :(vwx100, vwx101), False, app(ty_[], de)) -> new_compare(vwx91, vwx101, de) new_compare(:(vwx90, vwx91), :(vwx100, vwx101), de) -> new_compare(vwx91, vwx101, de) new_esEs4(Left(vwx90), Left(vwx100), False, app(app(ty_Either, app(ty_Maybe, fc)), fa)) -> new_ltEs1(vwx90, vwx100, fc) new_compare20(vwx90, vwx100, False, be, bf) -> new_ltEs2(vwx90, vwx100, be, bf) new_compare2(vwx90, vwx100, False, h, ba) -> new_ltEs(vwx90, vwx100, h, ba) new_ltEs1(Just(vwx90), Just(vwx100), app(ty_[], dh)) -> new_ltEs0(vwx90, vwx100, dh) new_ltEs2(Left(vwx90), Left(vwx100), app(app(ty_Either, fd), ff), fa) -> new_ltEs2(vwx90, vwx100, fd, ff) new_primCompAux(vwx90, vwx100, vwx58, app(app(ty_Either, bdf), bdg)) -> new_compare3(vwx90, vwx100, bdf, bdg) new_ltEs2(Left(vwx90), Left(vwx100), app(app(ty_@2, eg), eh), fa) -> new_ltEs(vwx90, vwx100, eg, eh) new_esEs4(Right(vwx90), Right(vwx100), False, app(app(ty_Either, gb), app(ty_[], ge))) -> new_ltEs0(vwx90, vwx100, ge) new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, app(app(app(ty_@3, bad), bae), baf)), hf), hg)) -> new_lt3(vwx90, vwx100, bad, bae, baf) new_ltEs1(Just(vwx90), Just(vwx100), app(app(ty_@2, df), dg)) -> new_ltEs(vwx90, vwx100, df, dg) new_lt1(vwx90, vwx100, bc) -> new_compare(vwx90, vwx100, bc) new_primCompAux(vwx90, vwx100, vwx58, app(app(ty_@2, bdb), bdc)) -> new_compare1(vwx90, vwx100, bdb, bdc) new_ltEs(@2(vwx90, vwx91), @2(vwx100, vwx101), cb, app(ty_Maybe, cf)) -> new_ltEs1(vwx91, vwx101, cf) new_esEs4(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, app(ty_[], bc)), bb)) -> new_compare(vwx90, vwx100, bc) new_esEs4(Right(vwx90), Right(vwx100), False, app(app(ty_Either, gb), app(app(ty_Either, gg), gh))) -> new_ltEs2(vwx90, vwx100, gg, gh) new_ltEs1(Just(vwx90), Just(vwx100), app(app(ty_Either, eb), ec)) -> new_ltEs2(vwx90, vwx100, eb, ec) new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), bag, app(app(app(ty_@3, bbf), bbg), bbh), hg) -> new_lt3(vwx91, vwx101, bbf, bbg, bbh) new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), app(ty_[], hh), hf, hg) -> new_lt1(vwx90, vwx100, hh) new_esEs4(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, cb), app(app(app(ty_@3, db), dc), dd))) -> new_ltEs3(vwx91, vwx101, db, dc, dd) new_ltEs2(Right(vwx90), Right(vwx100), gb, app(ty_[], ge)) -> new_ltEs0(vwx90, vwx100, ge) The TRS R consists of the following rules: new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(vwx900)), Pos(vwx100)) -> LT new_esEs26(vwx91, vwx101, app(ty_Ratio, cce)) -> new_esEs19(vwx91, vwx101, cce) new_esEs23(vwx90, vwx100, app(ty_[], bc)) -> new_esEs17(vwx90, vwx100, bc) new_ltEs15(Right(vwx90), Right(vwx100), gb, ty_Float) -> new_ltEs8(vwx90, vwx100) new_pePe(True, vwx57) -> True new_compare11(vwx90, vwx100, True, bde) -> LT new_ltEs15(Right(vwx90), Right(vwx100), gb, ty_Bool) -> new_ltEs14(vwx90, vwx100) new_compare111(vwx90, vwx100, True, bg, bh, ca) -> LT new_esEs27(vwx300, vwx400, ty_Char) -> new_esEs16(vwx300, vwx400) new_esEs8(Just(vwx300), Just(vwx400), ty_Bool) -> new_esEs14(vwx300, vwx400) new_ltEs15(Right(vwx90), Right(vwx100), gb, ty_Double) -> new_ltEs5(vwx90, vwx100) new_esEs28(vwx301, vwx401, ty_Float) -> new_esEs22(vwx301, vwx401) new_esEs8(Just(vwx300), Just(vwx400), app(app(ty_@2, dad), dae)) -> new_esEs5(vwx300, vwx400, dad, dae) new_lt5(vwx90, vwx100, ty_Int) -> new_lt17(vwx90, vwx100) new_ltEs13(Just(vwx90), Just(vwx100), app(ty_Maybe, ea)) -> new_ltEs13(vwx90, vwx100, ea) new_ltEs12(vwx9, vwx10, de) -> new_not(new_esEs10(new_compare0(vwx9, vwx10, de), GT)) new_esEs12(vwx301, vwx401, ty_Char) -> new_esEs16(vwx301, vwx401) new_ltEs19(vwx92, vwx102, app(app(ty_Either, bce), bcf)) -> new_ltEs15(vwx92, vwx102, bce, bcf) new_esEs9(vwx30, vwx40, ty_Ordering) -> new_esEs10(vwx30, vwx40) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare14(vwx90, vwx100, True, h, ba) -> LT new_ltEs19(vwx92, vwx102, ty_Ordering) -> new_ltEs9(vwx92, vwx102) new_primCmpInt(Pos(Zero), Neg(Succ(vwx1000))) -> GT new_esEs11(vwx300, vwx400, app(ty_Ratio, bfb)) -> new_esEs19(vwx300, vwx400, bfb) new_esEs12(vwx301, vwx401, ty_Integer) -> new_esEs15(vwx301, vwx401) new_esEs18(@0, @0) -> True new_compare12(Float(vwx90, Neg(vwx910)), Float(vwx100, Neg(vwx1010))) -> new_compare10(new_sr0(vwx90, Neg(vwx1010)), new_sr0(Neg(vwx910), vwx100)) new_lt5(vwx90, vwx100, ty_Bool) -> new_lt11(vwx90, vwx100) new_primCmpInt(Neg(Succ(vwx900)), Neg(vwx100)) -> new_primCmpNat0(vwx100, Succ(vwx900)) new_compare113(vwx90, vwx100, False, be, bf) -> GT new_ltEs19(vwx92, vwx102, app(ty_[], bcc)) -> new_ltEs12(vwx92, vwx102, bcc) new_ltEs20(vwx9, vwx10, ty_Ordering) -> new_ltEs9(vwx9, vwx10) new_ltEs9(LT, LT) -> True new_ltEs13(Just(vwx90), Just(vwx100), ty_Char) -> new_ltEs17(vwx90, vwx100) new_ltEs15(Left(vwx90), Left(vwx100), ty_Char, fa) -> new_ltEs17(vwx90, vwx100) new_esEs25(vwx90, vwx100, app(app(ty_@2, hd), he)) -> new_esEs5(vwx90, vwx100, hd, he) new_esEs11(vwx300, vwx400, app(app(app(ty_@3, bff), bfg), bfh)) -> new_esEs7(vwx300, vwx400, bff, bfg, bfh) new_esEs21(vwx30, vwx40) -> new_primEqInt(vwx30, vwx40) new_lt19(vwx90, vwx100, app(app(ty_@2, hd), he)) -> new_lt4(vwx90, vwx100, hd, he) new_ltEs15(Right(vwx90), Right(vwx100), gb, app(app(ty_@2, gc), gd)) -> new_ltEs10(vwx90, vwx100, gc, gd) new_primEqInt(Pos(Succ(vwx3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vwx4000))) -> False new_esEs9(vwx30, vwx40, app(ty_Ratio, cbc)) -> new_esEs19(vwx30, vwx40, cbc) new_esEs28(vwx301, vwx401, ty_@0) -> new_esEs18(vwx301, vwx401) new_esEs31(vwx300, vwx400, app(app(app(ty_@3, dca), dcb), dcc)) -> new_esEs7(vwx300, vwx400, dca, dcb, dcc) new_compare16(vwx90, vwx100, ty_@0) -> new_compare6(vwx90, vwx100) new_ltEs20(vwx9, vwx10, ty_@0) -> new_ltEs4(vwx9, vwx10) new_lt10(Just(vwx30), Nothing, bec) -> new_esEs10(GT, LT) new_ltEs19(vwx92, vwx102, ty_Bool) -> new_ltEs14(vwx92, vwx102) new_esEs5(@2(vwx300, vwx301), @2(vwx400, vwx401), cbd, cbe) -> new_asAs(new_esEs27(vwx300, vwx400, cbd), new_esEs28(vwx301, vwx401, cbe)) new_esEs27(vwx300, vwx400, app(ty_[], ccg)) -> new_esEs17(vwx300, vwx400, ccg) new_esEs13(vwx302, vwx402, app(app(ty_Either, bhd), bhe)) -> new_esEs6(vwx302, vwx402, bhd, bhe) new_ltEs15(Left(vwx90), Left(vwx100), app(app(ty_Either, fd), ff), fa) -> new_ltEs15(vwx90, vwx100, fd, ff) new_primEqNat0(Succ(vwx3000), Succ(vwx4000)) -> new_primEqNat0(vwx3000, vwx4000) new_esEs31(vwx300, vwx400, app(app(ty_@2, dbf), dbg)) -> new_esEs5(vwx300, vwx400, dbf, dbg) new_esEs27(vwx300, vwx400, ty_Integer) -> new_esEs15(vwx300, vwx400) new_esEs10(GT, GT) -> True new_esEs31(vwx300, vwx400, ty_Bool) -> new_esEs14(vwx300, vwx400) new_esEs13(vwx302, vwx402, app(ty_[], bhc)) -> new_esEs17(vwx302, vwx402, bhc) new_esEs6(Left(vwx300), Left(vwx400), ty_Bool, cbb) -> new_esEs14(vwx300, vwx400) new_compare16(vwx90, vwx100, app(ty_Maybe, bde)) -> new_compare26(vwx90, vwx100, new_esEs8(vwx90, vwx100, bde), bde) new_not(True) -> False new_esEs9(vwx30, vwx40, app(app(app(ty_@3, bed), bee), bef)) -> new_esEs7(vwx30, vwx40, bed, bee, bef) new_esEs25(vwx90, vwx100, ty_Bool) -> new_esEs14(vwx90, vwx100) new_ltEs19(vwx92, vwx102, ty_Double) -> new_ltEs5(vwx92, vwx102) new_ltEs20(vwx9, vwx10, app(app(ty_@2, cb), bb)) -> new_ltEs10(vwx9, vwx10, cb, bb) new_lt5(vwx90, vwx100, ty_Float) -> new_lt9(vwx90, vwx100) new_primCompAux00(vwx67, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_ltEs20(vwx9, vwx10, app(ty_[], de)) -> new_ltEs12(vwx9, vwx10, de) new_ltEs5(vwx9, vwx10) -> new_not(new_esEs10(new_compare7(vwx9, vwx10), GT)) new_esEs28(vwx301, vwx401, ty_Int) -> new_esEs21(vwx301, vwx401) new_esEs25(vwx90, vwx100, ty_Ordering) -> new_esEs10(vwx90, vwx100) new_esEs6(Left(vwx300), Left(vwx400), app(ty_[], cfc), cbb) -> new_esEs17(vwx300, vwx400, cfc) new_esEs28(vwx301, vwx401, app(ty_Maybe, ceg)) -> new_esEs8(vwx301, vwx401, ceg) new_esEs26(vwx91, vwx101, ty_Integer) -> new_esEs15(vwx91, vwx101) new_compare26(vwx90, vwx100, False, bde) -> new_compare11(vwx90, vwx100, new_ltEs13(vwx90, vwx100, bde), bde) new_esEs25(vwx90, vwx100, app(app(app(ty_@3, bad), bae), baf)) -> new_esEs7(vwx90, vwx100, bad, bae, baf) new_ltEs19(vwx92, vwx102, ty_Float) -> new_ltEs8(vwx92, vwx102) new_lt20(vwx91, vwx101, ty_Ordering) -> new_lt16(vwx91, vwx101) new_esEs6(Left(vwx300), Left(vwx400), ty_Ordering, cbb) -> new_esEs10(vwx300, vwx400) new_esEs13(vwx302, vwx402, ty_@0) -> new_esEs18(vwx302, vwx402) new_primEqNat0(Succ(vwx3000), Zero) -> False new_primEqNat0(Zero, Succ(vwx4000)) -> False new_ltEs20(vwx9, vwx10, ty_Int) -> new_ltEs18(vwx9, vwx10) new_compare112(vwx90, vwx100, False) -> GT new_esEs31(vwx300, vwx400, ty_Ordering) -> new_esEs10(vwx300, vwx400) new_esEs26(vwx91, vwx101, ty_Ordering) -> new_esEs10(vwx91, vwx101) new_esEs23(vwx90, vwx100, ty_@0) -> new_esEs18(vwx90, vwx100) new_esEs8(Just(vwx300), Just(vwx400), ty_Ordering) -> new_esEs10(vwx300, vwx400) new_compare16(vwx90, vwx100, app(app(ty_Either, bdf), bdg)) -> new_compare18(vwx90, vwx100, bdf, bdg) new_ltEs20(vwx9, vwx10, ty_Bool) -> new_ltEs14(vwx9, vwx10) new_ltEs19(vwx92, vwx102, ty_@0) -> new_ltEs4(vwx92, vwx102) new_primCompAux00(vwx67, GT) -> GT new_esEs14(False, True) -> False new_esEs14(True, False) -> False new_esEs10(EQ, EQ) -> True new_compare110(vwx90, vwx100, True) -> LT new_lt10(Nothing, Nothing, bec) -> False new_esEs13(vwx302, vwx402, ty_Float) -> new_esEs22(vwx302, vwx402) new_ltEs7(vwx9, vwx10, cae) -> new_not(new_esEs10(new_compare8(vwx9, vwx10, cae), GT)) new_esEs12(vwx301, vwx401, app(ty_Ratio, bgd)) -> new_esEs19(vwx301, vwx401, bgd) new_lt19(vwx90, vwx100, app(app(app(ty_@3, bad), bae), baf)) -> new_lt14(vwx90, vwx100, bad, bae, baf) new_lt14(vwx90, vwx100, bg, bh, ca) -> new_esEs10(new_compare13(vwx90, vwx100, bg, bh, ca), LT) new_compare16(vwx90, vwx100, app(app(app(ty_@3, bdh), bea), beb)) -> new_compare13(vwx90, vwx100, bdh, bea, beb) new_compare12(Float(vwx90, Pos(vwx910)), Float(vwx100, Pos(vwx1010))) -> new_compare10(new_sr0(vwx90, Pos(vwx1010)), new_sr0(Pos(vwx910), vwx100)) new_esEs6(Right(vwx300), Right(vwx400), cba, ty_Char) -> new_esEs16(vwx300, vwx400) new_lt19(vwx90, vwx100, ty_@0) -> new_lt12(vwx90, vwx100) new_primCmpInt(Pos(Succ(vwx900)), Neg(vwx100)) -> GT new_lt5(vwx90, vwx100, app(app(ty_Either, be), bf)) -> new_lt13(vwx90, vwx100, be, bf) new_ltEs20(vwx9, vwx10, ty_Double) -> new_ltEs5(vwx9, vwx10) new_esEs26(vwx91, vwx101, ty_Char) -> new_esEs16(vwx91, vwx101) new_primPlusNat1(Succ(vwx3300), Succ(vwx401000)) -> Succ(Succ(new_primPlusNat1(vwx3300, vwx401000))) new_primCmpNat0(Zero, Succ(vwx1000)) -> LT new_esEs10(LT, EQ) -> False new_esEs10(EQ, LT) -> False new_lt20(vwx91, vwx101, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_lt14(vwx91, vwx101, bbf, bbg, bbh) new_esEs26(vwx91, vwx101, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_esEs7(vwx91, vwx101, bbf, bbg, bbh) new_esEs6(Right(vwx300), Right(vwx400), cba, ty_Integer) -> new_esEs15(vwx300, vwx400) new_ltEs13(Just(vwx90), Just(vwx100), app(app(app(ty_@3, ed), ee), ef)) -> new_ltEs16(vwx90, vwx100, ed, ee, ef) new_lt20(vwx91, vwx101, ty_@0) -> new_lt12(vwx91, vwx101) new_ltEs19(vwx92, vwx102, ty_Integer) -> new_ltEs6(vwx92, vwx102) new_ltEs15(Right(vwx90), Left(vwx100), gb, fa) -> False new_sr(Integer(vwx900), Integer(vwx1010)) -> Integer(new_primMulInt(vwx900, vwx1010)) new_primCmpNat0(Succ(vwx900), Zero) -> GT new_lt19(vwx90, vwx100, app(ty_Ratio, ccd)) -> new_lt6(vwx90, vwx100, ccd) new_esEs8(Just(vwx300), Just(vwx400), ty_Float) -> new_esEs22(vwx300, vwx400) new_ltEs11(vwx91, vwx101, app(app(ty_Either, cg), da)) -> new_ltEs15(vwx91, vwx101, cg, da) new_esEs6(Left(vwx300), Left(vwx400), ty_Int, cbb) -> new_esEs21(vwx300, vwx400) new_esEs6(Right(vwx300), Right(vwx400), cba, ty_@0) -> new_esEs18(vwx300, vwx400) new_compare16(vwx90, vwx100, app(ty_[], bdd)) -> new_compare0(vwx90, vwx100, bdd) new_pePe(False, vwx57) -> vwx57 new_ltEs20(vwx9, vwx10, app(ty_Maybe, ccb)) -> new_ltEs13(vwx9, vwx10, ccb) new_esEs23(vwx90, vwx100, app(ty_Maybe, bd)) -> new_esEs8(vwx90, vwx100, bd) new_ltEs15(Left(vwx90), Left(vwx100), app(ty_[], fb), fa) -> new_ltEs12(vwx90, vwx100, fb) new_ltEs18(vwx9, vwx10) -> new_not(new_esEs10(new_compare10(vwx9, vwx10), GT)) new_esEs26(vwx91, vwx101, ty_Bool) -> new_esEs14(vwx91, vwx101) new_lt15(vwx90, vwx100) -> new_esEs10(new_compare19(vwx90, vwx100), LT) new_esEs26(vwx91, vwx101, app(app(ty_@2, bah), bba)) -> new_esEs5(vwx91, vwx101, bah, bba) new_esEs25(vwx90, vwx100, app(ty_Ratio, ccd)) -> new_esEs19(vwx90, vwx100, ccd) new_ltEs19(vwx92, vwx102, app(app(ty_@2, bca), bcb)) -> new_ltEs10(vwx92, vwx102, bca, bcb) new_esEs17([], [], cah) -> True new_esEs9(vwx30, vwx40, app(app(ty_@2, cbd), cbe)) -> new_esEs5(vwx30, vwx40, cbd, cbe) new_esEs6(Right(vwx300), Right(vwx400), cba, ty_Float) -> new_esEs22(vwx300, vwx400) new_ltEs15(Right(vwx90), Right(vwx100), gb, ty_@0) -> new_ltEs4(vwx90, vwx100) new_compare23(vwx90, vwx100, True, h, ba) -> EQ new_ltEs11(vwx91, vwx101, app(app(app(ty_@3, db), dc), dd)) -> new_ltEs16(vwx91, vwx101, db, dc, dd) new_esEs25(vwx90, vwx100, ty_Int) -> new_esEs21(vwx90, vwx100) new_esEs28(vwx301, vwx401, ty_Char) -> new_esEs16(vwx301, vwx401) new_ltEs20(vwx9, vwx10, ty_Float) -> new_ltEs8(vwx9, vwx10) new_primEqInt(Pos(Zero), Neg(Succ(vwx4000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vwx4000))) -> False new_esEs8(Just(vwx300), Just(vwx400), app(ty_Ratio, dac)) -> new_esEs19(vwx300, vwx400, dac) new_ltEs14(True, True) -> True new_ltEs16(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), bag, hf, hg) -> new_pePe(new_lt19(vwx90, vwx100, bag), new_asAs(new_esEs25(vwx90, vwx100, bag), new_pePe(new_lt20(vwx91, vwx101, hf), new_asAs(new_esEs26(vwx91, vwx101, hf), new_ltEs19(vwx92, vwx102, hg))))) new_esEs12(vwx301, vwx401, ty_Ordering) -> new_esEs10(vwx301, vwx401) new_ltEs15(Right(vwx90), Right(vwx100), gb, app(app(ty_Either, gg), gh)) -> new_ltEs15(vwx90, vwx100, gg, gh) new_esEs13(vwx302, vwx402, app(app(ty_@2, bhg), bhh)) -> new_esEs5(vwx302, vwx402, bhg, bhh) new_ltEs19(vwx92, vwx102, ty_Int) -> new_ltEs18(vwx92, vwx102) new_esEs13(vwx302, vwx402, ty_Bool) -> new_esEs14(vwx302, vwx402) new_lt18(vwx90, vwx100) -> new_esEs10(new_compare7(vwx90, vwx100), LT) new_esEs25(vwx90, vwx100, app(ty_Maybe, baa)) -> new_esEs8(vwx90, vwx100, baa) new_primEqInt(Neg(Succ(vwx3000)), Neg(Succ(vwx4000))) -> new_primEqNat0(vwx3000, vwx4000) new_ltEs10(@2(vwx90, vwx91), @2(vwx100, vwx101), cb, bb) -> new_pePe(new_lt5(vwx90, vwx100, cb), new_asAs(new_esEs23(vwx90, vwx100, cb), new_ltEs11(vwx91, vwx101, bb))) new_esEs6(Right(vwx300), Right(vwx400), cba, app(app(ty_@2, cha), chb)) -> new_esEs5(vwx300, vwx400, cha, chb) new_primCmpInt(Neg(Zero), Pos(Succ(vwx1000))) -> LT new_esEs8(Just(vwx300), Just(vwx400), app(app(app(ty_@3, dag), dah), dba)) -> new_esEs7(vwx300, vwx400, dag, dah, dba) new_ltEs20(vwx9, vwx10, ty_Char) -> new_ltEs17(vwx9, vwx10) new_primMulInt(Pos(vwx3000), Pos(vwx4010)) -> Pos(new_primMulNat0(vwx3000, vwx4010)) new_compare16(vwx90, vwx100, app(ty_Ratio, cca)) -> new_compare8(vwx90, vwx100, cca) new_ltEs15(Left(vwx90), Right(vwx100), gb, fa) -> True new_ltEs15(Right(vwx90), Right(vwx100), gb, ty_Int) -> new_ltEs18(vwx90, vwx100) new_esEs28(vwx301, vwx401, ty_Double) -> new_esEs20(vwx301, vwx401) new_esEs6(Left(vwx300), Left(vwx400), app(app(ty_Either, cfd), cfe), cbb) -> new_esEs6(vwx300, vwx400, cfd, cfe) new_esEs12(vwx301, vwx401, ty_Float) -> new_esEs22(vwx301, vwx401) new_esEs28(vwx301, vwx401, ty_Bool) -> new_esEs14(vwx301, vwx401) new_esEs27(vwx300, vwx400, app(ty_Ratio, cdb)) -> new_esEs19(vwx300, vwx400, cdb) new_esEs23(vwx90, vwx100, ty_Int) -> new_esEs21(vwx90, vwx100) new_primMulNat0(Succ(vwx30000), Zero) -> Zero new_primMulNat0(Zero, Succ(vwx40100)) -> Zero new_compare25(vwx90, vwx100, False) -> new_compare110(vwx90, vwx100, new_ltEs9(vwx90, vwx100)) new_primPlusNat0(Zero, vwx40100) -> Succ(vwx40100) new_ltEs9(GT, EQ) -> False new_lt10(Just(vwx30), Just(vwx40), bec) -> new_esEs24(vwx30, vwx40, new_esEs9(vwx30, vwx40, bec), bec) new_compare24(vwx90, vwx100, False, bg, bh, ca) -> new_compare111(vwx90, vwx100, new_ltEs16(vwx90, vwx100, bg, bh, ca), bg, bh, ca) new_ltEs13(Just(vwx90), Just(vwx100), ty_@0) -> new_ltEs4(vwx90, vwx100) new_ltEs13(Just(vwx90), Just(vwx100), app(ty_[], dh)) -> new_ltEs12(vwx90, vwx100, dh) new_lt7(vwx90, vwx100) -> new_esEs10(new_compare9(vwx90, vwx100), LT) new_esEs11(vwx300, vwx400, app(app(ty_@2, bfc), bfd)) -> new_esEs5(vwx300, vwx400, bfc, bfd) new_compare26(vwx90, vwx100, True, bde) -> EQ new_esEs31(vwx300, vwx400, ty_@0) -> new_esEs18(vwx300, vwx400) new_ltEs19(vwx92, vwx102, ty_Char) -> new_ltEs17(vwx92, vwx102) new_esEs31(vwx300, vwx400, ty_Double) -> new_esEs20(vwx300, vwx400) new_esEs12(vwx301, vwx401, ty_Int) -> new_esEs21(vwx301, vwx401) new_ltEs13(Just(vwx90), Just(vwx100), ty_Int) -> new_ltEs18(vwx90, vwx100) new_esEs28(vwx301, vwx401, app(ty_[], cea)) -> new_esEs17(vwx301, vwx401, cea) new_ltEs15(Right(vwx90), Right(vwx100), gb, app(app(app(ty_@3, ha), hb), hc)) -> new_ltEs16(vwx90, vwx100, ha, hb, hc) new_ltEs15(Right(vwx90), Right(vwx100), gb, ty_Ordering) -> new_ltEs9(vwx90, vwx100) new_esEs6(Right(vwx300), Right(vwx400), cba, app(app(app(ty_@3, chd), che), chf)) -> new_esEs7(vwx300, vwx400, chd, che, chf) new_lt5(vwx90, vwx100, app(ty_Ratio, caf)) -> new_lt6(vwx90, vwx100, caf) new_compare7(Double(vwx90, Neg(vwx910)), Double(vwx100, Neg(vwx1010))) -> new_compare10(new_sr0(vwx90, Neg(vwx1010)), new_sr0(Neg(vwx910), vwx100)) new_compare18(vwx90, vwx100, be, bf) -> new_compare28(vwx90, vwx100, new_esEs6(vwx90, vwx100, be, bf), be, bf) new_ltEs11(vwx91, vwx101, ty_Float) -> new_ltEs8(vwx91, vwx101) new_primPlusNat1(Succ(vwx3300), Zero) -> Succ(vwx3300) new_primPlusNat1(Zero, Succ(vwx401000)) -> Succ(vwx401000) new_lt20(vwx91, vwx101, app(ty_Ratio, cce)) -> new_lt6(vwx91, vwx101, cce) new_esEs11(vwx300, vwx400, app(app(ty_Either, beh), bfa)) -> new_esEs6(vwx300, vwx400, beh, bfa) new_esEs23(vwx90, vwx100, ty_Float) -> new_esEs22(vwx90, vwx100) new_lt5(vwx90, vwx100, app(ty_Maybe, bd)) -> new_lt10(vwx90, vwx100, bd) new_esEs23(vwx90, vwx100, app(app(ty_@2, h), ba)) -> new_esEs5(vwx90, vwx100, h, ba) new_lt10(Nothing, Just(vwx40), bec) -> new_esEs10(LT, LT) new_esEs6(Left(vwx300), Left(vwx400), app(app(ty_@2, cfg), cfh), cbb) -> new_esEs5(vwx300, vwx400, cfg, cfh) new_ltEs9(GT, GT) -> True new_esEs12(vwx301, vwx401, app(ty_Maybe, bgg)) -> new_esEs8(vwx301, vwx401, bgg) new_esEs8(Just(vwx300), Just(vwx400), app(ty_Maybe, daf)) -> new_esEs8(vwx300, vwx400, daf) new_esEs8(Just(vwx300), Just(vwx400), ty_Int) -> new_esEs21(vwx300, vwx400) new_esEs17(:(vwx300, vwx301), :(vwx400, vwx401), cah) -> new_asAs(new_esEs31(vwx300, vwx400, cah), new_esEs17(vwx301, vwx401, cah)) new_esEs23(vwx90, vwx100, app(app(app(ty_@3, bg), bh), ca)) -> new_esEs7(vwx90, vwx100, bg, bh, ca) new_ltEs15(Right(vwx90), Right(vwx100), gb, ty_Integer) -> new_ltEs6(vwx90, vwx100) new_ltEs20(vwx9, vwx10, app(app(app(ty_@3, bag), hf), hg)) -> new_ltEs16(vwx9, vwx10, bag, hf, hg) new_esEs23(vwx90, vwx100, ty_Ordering) -> new_esEs10(vwx90, vwx100) new_esEs12(vwx301, vwx401, app(app(ty_Either, bgb), bgc)) -> new_esEs6(vwx301, vwx401, bgb, bgc) new_primCompAux0(vwx90, vwx100, vwx58, de) -> new_primCompAux00(vwx58, new_compare16(vwx90, vwx100, de)) new_primMulInt(Neg(vwx3000), Neg(vwx4010)) -> Pos(new_primMulNat0(vwx3000, vwx4010)) new_primCmpInt(Pos(Zero), Pos(Succ(vwx1000))) -> new_primCmpNat0(Zero, Succ(vwx1000)) new_esEs14(True, True) -> True new_ltEs13(Just(vwx90), Just(vwx100), ty_Bool) -> new_ltEs14(vwx90, vwx100) new_esEs13(vwx302, vwx402, app(ty_Maybe, caa)) -> new_esEs8(vwx302, vwx402, caa) new_ltEs13(Just(vwx90), Just(vwx100), ty_Double) -> new_ltEs5(vwx90, vwx100) new_esEs9(vwx30, vwx40, ty_Float) -> new_esEs22(vwx30, vwx40) new_ltEs15(Left(vwx90), Left(vwx100), ty_Float, fa) -> new_ltEs8(vwx90, vwx100) new_esEs28(vwx301, vwx401, ty_Integer) -> new_esEs15(vwx301, vwx401) new_lt20(vwx91, vwx101, app(ty_Maybe, bbc)) -> new_lt10(vwx91, vwx101, bbc) new_esEs11(vwx300, vwx400, ty_Ordering) -> new_esEs10(vwx300, vwx400) new_ltEs13(Just(vwx90), Just(vwx100), ty_Ordering) -> new_ltEs9(vwx90, vwx100) new_compare9(Integer(vwx90), Integer(vwx100)) -> new_primCmpInt(vwx90, vwx100) new_esEs12(vwx301, vwx401, app(app(ty_@2, bge), bgf)) -> new_esEs5(vwx301, vwx401, bge, bgf) new_esEs13(vwx302, vwx402, ty_Int) -> new_esEs21(vwx302, vwx402) new_esEs6(Right(vwx300), Right(vwx400), cba, app(ty_Maybe, chc)) -> new_esEs8(vwx300, vwx400, chc) new_esEs12(vwx301, vwx401, app(app(app(ty_@3, bgh), bha), bhb)) -> new_esEs7(vwx301, vwx401, bgh, bha, bhb) new_lt8(vwx90, vwx100, bc) -> new_esEs10(new_compare0(vwx90, vwx100, bc), LT) new_esEs10(LT, LT) -> True new_lt19(vwx90, vwx100, ty_Bool) -> new_lt11(vwx90, vwx100) new_compare8(:%(vwx90, vwx91), :%(vwx100, vwx101), ty_Int) -> new_compare10(new_sr0(vwx90, vwx101), new_sr0(vwx100, vwx91)) new_compare7(Double(vwx90, Pos(vwx910)), Double(vwx100, Pos(vwx1010))) -> new_compare10(new_sr0(vwx90, Pos(vwx1010)), new_sr0(Pos(vwx910), vwx100)) new_ltEs13(Just(vwx90), Just(vwx100), app(app(ty_@2, df), dg)) -> new_ltEs10(vwx90, vwx100, df, dg) new_ltEs11(vwx91, vwx101, app(ty_Ratio, cag)) -> new_ltEs7(vwx91, vwx101, cag) new_esEs23(vwx90, vwx100, app(app(ty_Either, be), bf)) -> new_esEs6(vwx90, vwx100, be, bf) new_ltEs20(vwx9, vwx10, app(app(ty_Either, gb), fa)) -> new_ltEs15(vwx9, vwx10, gb, fa) new_compare112(vwx90, vwx100, True) -> LT new_lt19(vwx90, vwx100, app(ty_Maybe, baa)) -> new_lt10(vwx90, vwx100, baa) new_lt20(vwx91, vwx101, ty_Bool) -> new_lt11(vwx91, vwx101) new_esEs27(vwx300, vwx400, ty_Bool) -> new_esEs14(vwx300, vwx400) new_ltEs11(vwx91, vwx101, ty_Char) -> new_ltEs17(vwx91, vwx101) new_esEs26(vwx91, vwx101, ty_@0) -> new_esEs18(vwx91, vwx101) new_compare113(vwx90, vwx100, True, be, bf) -> LT new_compare8(:%(vwx90, vwx91), :%(vwx100, vwx101), ty_Integer) -> new_compare9(new_sr(vwx90, vwx101), new_sr(vwx100, vwx91)) new_compare11(vwx90, vwx100, False, bde) -> GT new_lt9(vwx90, vwx100) -> new_esEs10(new_compare12(vwx90, vwx100), LT) new_compare16(vwx90, vwx100, ty_Integer) -> new_compare9(vwx90, vwx100) new_esEs11(vwx300, vwx400, ty_Float) -> new_esEs22(vwx300, vwx400) new_esEs27(vwx300, vwx400, app(app(ty_@2, cdc), cdd)) -> new_esEs5(vwx300, vwx400, cdc, cdd) new_compare16(vwx90, vwx100, ty_Int) -> new_compare10(vwx90, vwx100) new_primMulInt(Pos(vwx3000), Neg(vwx4010)) -> Neg(new_primMulNat0(vwx3000, vwx4010)) new_primMulInt(Neg(vwx3000), Pos(vwx4010)) -> Neg(new_primMulNat0(vwx3000, vwx4010)) new_esEs13(vwx302, vwx402, app(app(app(ty_@3, cab), cac), cad)) -> new_esEs7(vwx302, vwx402, cab, cac, cad) new_lt20(vwx91, vwx101, app(app(ty_Either, bbd), bbe)) -> new_lt13(vwx91, vwx101, bbd, bbe) new_lt13(vwx90, vwx100, be, bf) -> new_esEs10(new_compare18(vwx90, vwx100, be, bf), LT) new_esEs8(Nothing, Nothing, cbf) -> True new_esEs31(vwx300, vwx400, app(ty_[], dbb)) -> new_esEs17(vwx300, vwx400, dbb) new_ltEs4(vwx9, vwx10) -> new_not(new_esEs10(new_compare6(vwx9, vwx10), GT)) new_esEs6(Right(vwx300), Right(vwx400), cba, app(app(ty_Either, cgf), cgg)) -> new_esEs6(vwx300, vwx400, cgf, cgg) new_ltEs8(vwx9, vwx10) -> new_not(new_esEs10(new_compare12(vwx9, vwx10), GT)) new_compare13(vwx90, vwx100, bg, bh, ca) -> new_compare24(vwx90, vwx100, new_esEs7(vwx90, vwx100, bg, bh, ca), bg, bh, ca) new_compare19(Char(vwx90), Char(vwx100)) -> new_primCmpNat0(vwx90, vwx100) new_esEs8(Just(vwx300), Just(vwx400), ty_Char) -> new_esEs16(vwx300, vwx400) new_esEs13(vwx302, vwx402, ty_Ordering) -> new_esEs10(vwx302, vwx402) new_compare16(vwx90, vwx100, ty_Float) -> new_compare12(vwx90, vwx100) new_ltEs15(Left(vwx90), Left(vwx100), ty_Double, fa) -> new_ltEs5(vwx90, vwx100) new_compare111(vwx90, vwx100, False, bg, bh, ca) -> GT new_esEs8(Nothing, Just(vwx400), cbf) -> False new_esEs8(Just(vwx300), Nothing, cbf) -> False new_esEs6(Right(vwx300), Right(vwx400), cba, ty_Bool) -> new_esEs14(vwx300, vwx400) new_compare28(vwx90, vwx100, False, be, bf) -> new_compare113(vwx90, vwx100, new_ltEs15(vwx90, vwx100, be, bf), be, bf) new_ltEs19(vwx92, vwx102, app(app(app(ty_@3, bcg), bch), bda)) -> new_ltEs16(vwx92, vwx102, bcg, bch, bda) new_lt19(vwx90, vwx100, ty_Float) -> new_lt9(vwx90, vwx100) new_compare24(vwx90, vwx100, True, bg, bh, ca) -> EQ new_ltEs15(Left(vwx90), Left(vwx100), ty_Integer, fa) -> new_ltEs6(vwx90, vwx100) new_esEs29(vwx300, vwx400, ty_Integer) -> new_esEs15(vwx300, vwx400) new_ltEs13(Just(vwx90), Just(vwx100), ty_Integer) -> new_ltEs6(vwx90, vwx100) new_esEs28(vwx301, vwx401, app(app(app(ty_@3, ceh), cfa), cfb)) -> new_esEs7(vwx301, vwx401, ceh, cfa, cfb) new_esEs30(vwx301, vwx401, ty_Integer) -> new_esEs15(vwx301, vwx401) new_esEs26(vwx91, vwx101, ty_Int) -> new_esEs21(vwx91, vwx101) new_lt6(vwx90, vwx100, caf) -> new_esEs10(new_compare8(vwx90, vwx100, caf), LT) new_esEs25(vwx90, vwx100, ty_Char) -> new_esEs16(vwx90, vwx100) new_esEs15(Integer(vwx300), Integer(vwx400)) -> new_primEqInt(vwx300, vwx400) new_ltEs13(Just(vwx90), Just(vwx100), ty_Float) -> new_ltEs8(vwx90, vwx100) new_compare0([], :(vwx100, vwx101), de) -> LT new_asAs(True, vwx24) -> vwx24 new_ltEs11(vwx91, vwx101, app(ty_Maybe, cf)) -> new_ltEs13(vwx91, vwx101, cf) new_esEs25(vwx90, vwx100, app(ty_[], hh)) -> new_esEs17(vwx90, vwx100, hh) new_esEs6(Left(vwx300), Left(vwx400), app(ty_Ratio, cff), cbb) -> new_esEs19(vwx300, vwx400, cff) new_esEs9(vwx30, vwx40, app(app(ty_Either, cba), cbb)) -> new_esEs6(vwx30, vwx40, cba, cbb) new_esEs9(vwx30, vwx40, ty_@0) -> new_esEs18(vwx30, vwx40) new_ltEs15(Left(vwx90), Left(vwx100), ty_Bool, fa) -> new_ltEs14(vwx90, vwx100) new_compare17(vwx90, vwx100) -> new_compare27(vwx90, vwx100, new_esEs14(vwx90, vwx100)) new_lt20(vwx91, vwx101, ty_Float) -> new_lt9(vwx91, vwx101) new_esEs6(Left(vwx300), Right(vwx400), cba, cbb) -> False new_esEs6(Right(vwx300), Left(vwx400), cba, cbb) -> False new_esEs16(Char(vwx300), Char(vwx400)) -> new_primEqNat0(vwx300, vwx400) new_lt11(vwx90, vwx100) -> new_esEs10(new_compare17(vwx90, vwx100), LT) new_esEs26(vwx91, vwx101, ty_Float) -> new_esEs22(vwx91, vwx101) new_esEs13(vwx302, vwx402, app(ty_Ratio, bhf)) -> new_esEs19(vwx302, vwx402, bhf) new_esEs11(vwx300, vwx400, ty_@0) -> new_esEs18(vwx300, vwx400) new_ltEs6(vwx9, vwx10) -> new_not(new_esEs10(new_compare9(vwx9, vwx10), GT)) new_lt20(vwx91, vwx101, ty_Int) -> new_lt17(vwx91, vwx101) new_compare15(vwx90, vwx100) -> new_compare25(vwx90, vwx100, new_esEs10(vwx90, vwx100)) new_primCmpInt(Pos(Succ(vwx900)), Pos(vwx100)) -> new_primCmpNat0(Succ(vwx900), vwx100) new_esEs9(vwx30, vwx40, app(ty_[], cah)) -> new_esEs17(vwx30, vwx40, cah) new_lt16(vwx90, vwx100) -> new_esEs10(new_compare15(vwx90, vwx100), LT) new_ltEs15(Right(vwx90), Right(vwx100), gb, ty_Char) -> new_ltEs17(vwx90, vwx100) new_compare110(vwx90, vwx100, False) -> GT new_esEs6(Right(vwx300), Right(vwx400), cba, app(ty_Ratio, cgh)) -> new_esEs19(vwx300, vwx400, cgh) new_primCompAux00(vwx67, EQ) -> vwx67 new_compare0([], [], de) -> EQ new_esEs11(vwx300, vwx400, app(ty_Maybe, bfe)) -> new_esEs8(vwx300, vwx400, bfe) new_esEs25(vwx90, vwx100, ty_Integer) -> new_esEs15(vwx90, vwx100) new_ltEs15(Right(vwx90), Right(vwx100), gb, app(ty_Maybe, gf)) -> new_ltEs13(vwx90, vwx100, gf) new_esEs9(vwx30, vwx40, ty_Int) -> new_esEs21(vwx30, vwx40) new_primMulNat0(Zero, Zero) -> Zero new_esEs27(vwx300, vwx400, app(ty_Maybe, cde)) -> new_esEs8(vwx300, vwx400, cde) new_compare23(vwx90, vwx100, False, h, ba) -> new_compare14(vwx90, vwx100, new_ltEs10(vwx90, vwx100, h, ba), h, ba) new_ltEs13(Nothing, Nothing, ccb) -> True new_ltEs13(Just(vwx90), Nothing, ccb) -> False new_ltEs15(Right(vwx90), Right(vwx100), gb, app(ty_Ratio, cbh)) -> new_ltEs7(vwx90, vwx100, cbh) new_esEs26(vwx91, vwx101, ty_Double) -> new_esEs20(vwx91, vwx101) new_ltEs19(vwx92, vwx102, app(ty_Ratio, ccf)) -> new_ltEs7(vwx92, vwx102, ccf) new_compare16(vwx90, vwx100, ty_Ordering) -> new_compare15(vwx90, vwx100) new_lt19(vwx90, vwx100, ty_Int) -> new_lt17(vwx90, vwx100) new_esEs26(vwx91, vwx101, app(app(ty_Either, bbd), bbe)) -> new_esEs6(vwx91, vwx101, bbd, bbe) new_esEs11(vwx300, vwx400, ty_Int) -> new_esEs21(vwx300, vwx400) new_esEs8(Just(vwx300), Just(vwx400), app(ty_[], chh)) -> new_esEs17(vwx300, vwx400, chh) new_lt19(vwx90, vwx100, app(ty_[], hh)) -> new_lt8(vwx90, vwx100, hh) new_esEs31(vwx300, vwx400, ty_Char) -> new_esEs16(vwx300, vwx400) new_esEs9(vwx30, vwx40, app(ty_Maybe, cbf)) -> new_esEs8(vwx30, vwx40, cbf) new_esEs6(Left(vwx300), Left(vwx400), ty_Char, cbb) -> new_esEs16(vwx300, vwx400) new_ltEs19(vwx92, vwx102, app(ty_Maybe, bcd)) -> new_ltEs13(vwx92, vwx102, bcd) new_esEs26(vwx91, vwx101, app(ty_Maybe, bbc)) -> new_esEs8(vwx91, vwx101, bbc) new_esEs6(Right(vwx300), Right(vwx400), cba, ty_Double) -> new_esEs20(vwx300, vwx400) new_lt12(vwx90, vwx100) -> new_esEs10(new_compare6(vwx90, vwx100), LT) new_ltEs15(Left(vwx90), Left(vwx100), app(ty_Maybe, fc), fa) -> new_ltEs13(vwx90, vwx100, fc) new_esEs8(Just(vwx300), Just(vwx400), app(app(ty_Either, daa), dab)) -> new_esEs6(vwx300, vwx400, daa, dab) new_lt5(vwx90, vwx100, ty_Double) -> new_lt18(vwx90, vwx100) new_lt5(vwx90, vwx100, ty_Ordering) -> new_lt16(vwx90, vwx100) new_esEs31(vwx300, vwx400, app(app(ty_Either, dbc), dbd)) -> new_esEs6(vwx300, vwx400, dbc, dbd) new_ltEs14(False, True) -> True new_esEs8(Just(vwx300), Just(vwx400), ty_Integer) -> new_esEs15(vwx300, vwx400) new_lt20(vwx91, vwx101, ty_Integer) -> new_lt7(vwx91, vwx101) new_esEs27(vwx300, vwx400, ty_Double) -> new_esEs20(vwx300, vwx400) new_esEs31(vwx300, vwx400, ty_Integer) -> new_esEs15(vwx300, vwx400) new_esEs23(vwx90, vwx100, ty_Bool) -> new_esEs14(vwx90, vwx100) new_esEs6(Left(vwx300), Left(vwx400), ty_Integer, cbb) -> new_esEs15(vwx300, vwx400) new_esEs19(:%(vwx300, vwx301), :%(vwx400, vwx401), cbc) -> new_asAs(new_esEs29(vwx300, vwx400, cbc), new_esEs30(vwx301, vwx401, cbc)) new_esEs25(vwx90, vwx100, app(app(ty_Either, bab), bac)) -> new_esEs6(vwx90, vwx100, bab, bac) new_esEs20(Double(vwx300, vwx301), Double(vwx400, vwx401)) -> new_esEs21(new_sr0(vwx300, vwx401), new_sr0(vwx301, vwx400)) new_lt5(vwx90, vwx100, app(app(app(ty_@3, bg), bh), ca)) -> new_lt14(vwx90, vwx100, bg, bh, ca) new_ltEs9(GT, LT) -> False new_lt5(vwx90, vwx100, ty_@0) -> new_lt12(vwx90, vwx100) new_esEs25(vwx90, vwx100, ty_Float) -> new_esEs22(vwx90, vwx100) new_esEs12(vwx301, vwx401, ty_@0) -> new_esEs18(vwx301, vwx401) new_primEqInt(Neg(Succ(vwx3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vwx4000))) -> False new_lt19(vwx90, vwx100, ty_Integer) -> new_lt7(vwx90, vwx100) new_lt19(vwx90, vwx100, app(app(ty_Either, bab), bac)) -> new_lt13(vwx90, vwx100, bab, bac) new_compare16(vwx90, vwx100, ty_Char) -> new_compare19(vwx90, vwx100) new_primEqInt(Pos(Succ(vwx3000)), Pos(Succ(vwx4000))) -> new_primEqNat0(vwx3000, vwx4000) new_ltEs9(EQ, GT) -> True new_esEs28(vwx301, vwx401, app(ty_Ratio, ced)) -> new_esEs19(vwx301, vwx401, ced) new_ltEs13(Just(vwx90), Just(vwx100), app(app(ty_Either, eb), ec)) -> new_ltEs15(vwx90, vwx100, eb, ec) new_esEs12(vwx301, vwx401, ty_Bool) -> new_esEs14(vwx301, vwx401) new_esEs27(vwx300, vwx400, ty_Int) -> new_esEs21(vwx300, vwx400) new_compare5(vwx90, vwx100, h, ba) -> new_compare23(vwx90, vwx100, new_esEs5(vwx90, vwx100, h, ba), h, ba) new_primEqInt(Pos(Succ(vwx3000)), Neg(vwx400)) -> False new_primEqInt(Neg(Succ(vwx3000)), Pos(vwx400)) -> False new_esEs14(False, False) -> True new_ltEs20(vwx9, vwx10, app(ty_Ratio, cae)) -> new_ltEs7(vwx9, vwx10, cae) new_esEs22(Float(vwx300, vwx301), Float(vwx400, vwx401)) -> new_esEs21(new_sr0(vwx300, vwx401), new_sr0(vwx301, vwx400)) new_esEs7(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bed, bee, bef) -> new_asAs(new_esEs11(vwx300, vwx400, bed), new_asAs(new_esEs12(vwx301, vwx401, bee), new_esEs13(vwx302, vwx402, bef))) new_esEs23(vwx90, vwx100, app(ty_Ratio, caf)) -> new_esEs19(vwx90, vwx100, caf) new_primCmpInt(Neg(Zero), Neg(Succ(vwx1000))) -> new_primCmpNat0(Succ(vwx1000), Zero) new_esEs26(vwx91, vwx101, app(ty_[], bbb)) -> new_esEs17(vwx91, vwx101, bbb) new_esEs31(vwx300, vwx400, ty_Float) -> new_esEs22(vwx300, vwx400) new_lt19(vwx90, vwx100, ty_Double) -> new_lt18(vwx90, vwx100) new_compare12(Float(vwx90, Pos(vwx910)), Float(vwx100, Neg(vwx1010))) -> new_compare10(new_sr0(vwx90, Pos(vwx1010)), new_sr0(Neg(vwx910), vwx100)) new_compare12(Float(vwx90, Neg(vwx910)), Float(vwx100, Pos(vwx1010))) -> new_compare10(new_sr0(vwx90, Neg(vwx1010)), new_sr0(Pos(vwx910), vwx100)) new_esEs6(Left(vwx300), Left(vwx400), ty_Float, cbb) -> new_esEs22(vwx300, vwx400) new_esEs6(Right(vwx300), Right(vwx400), cba, ty_Ordering) -> new_esEs10(vwx300, vwx400) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs11(vwx300, vwx400, ty_Char) -> new_esEs16(vwx300, vwx400) new_esEs27(vwx300, vwx400, ty_Float) -> new_esEs22(vwx300, vwx400) new_esEs10(LT, GT) -> False new_esEs10(GT, LT) -> False new_esEs31(vwx300, vwx400, ty_Int) -> new_esEs21(vwx300, vwx400) new_esEs13(vwx302, vwx402, ty_Integer) -> new_esEs15(vwx302, vwx402) new_ltEs11(vwx91, vwx101, ty_Ordering) -> new_ltEs9(vwx91, vwx101) new_esEs11(vwx300, vwx400, ty_Bool) -> new_esEs14(vwx300, vwx400) new_lt20(vwx91, vwx101, ty_Char) -> new_lt15(vwx91, vwx101) new_lt19(vwx90, vwx100, ty_Ordering) -> new_lt16(vwx90, vwx100) new_ltEs20(vwx9, vwx10, ty_Integer) -> new_ltEs6(vwx9, vwx10) new_lt20(vwx91, vwx101, ty_Double) -> new_lt18(vwx91, vwx101) new_esEs9(vwx30, vwx40, ty_Integer) -> new_esEs15(vwx30, vwx40) new_esEs31(vwx300, vwx400, app(ty_Maybe, dbh)) -> new_esEs8(vwx300, vwx400, dbh) new_esEs23(vwx90, vwx100, ty_Double) -> new_esEs20(vwx90, vwx100) new_not(False) -> True new_lt4(vwx90, vwx100, h, ba) -> new_esEs10(new_compare5(vwx90, vwx100, h, ba), LT) new_compare27(vwx90, vwx100, False) -> new_compare112(vwx90, vwx100, new_ltEs14(vwx90, vwx100)) new_ltEs15(Right(vwx90), Right(vwx100), gb, app(ty_[], ge)) -> new_ltEs12(vwx90, vwx100, ge) new_lt5(vwx90, vwx100, ty_Char) -> new_lt15(vwx90, vwx100) new_compare7(Double(vwx90, Pos(vwx910)), Double(vwx100, Neg(vwx1010))) -> new_compare10(new_sr0(vwx90, Pos(vwx1010)), new_sr0(Neg(vwx910), vwx100)) new_compare7(Double(vwx90, Neg(vwx910)), Double(vwx100, Pos(vwx1010))) -> new_compare10(new_sr0(vwx90, Neg(vwx1010)), new_sr0(Pos(vwx910), vwx100)) new_compare0(:(vwx90, vwx91), [], de) -> GT new_esEs31(vwx300, vwx400, app(ty_Ratio, dbe)) -> new_esEs19(vwx300, vwx400, dbe) new_esEs27(vwx300, vwx400, ty_@0) -> new_esEs18(vwx300, vwx400) new_compare16(vwx90, vwx100, ty_Double) -> new_compare7(vwx90, vwx100) new_ltEs15(Left(vwx90), Left(vwx100), ty_Ordering, fa) -> new_ltEs9(vwx90, vwx100) new_compare25(vwx90, vwx100, True) -> EQ new_lt20(vwx91, vwx101, app(ty_[], bbb)) -> new_lt8(vwx91, vwx101, bbb) new_esEs27(vwx300, vwx400, ty_Ordering) -> new_esEs10(vwx300, vwx400) new_esEs13(vwx302, vwx402, ty_Double) -> new_esEs20(vwx302, vwx402) new_esEs27(vwx300, vwx400, app(app(app(ty_@3, cdf), cdg), cdh)) -> new_esEs7(vwx300, vwx400, cdf, cdg, cdh) new_esEs9(vwx30, vwx40, ty_Bool) -> new_esEs14(vwx30, vwx40) new_lt5(vwx90, vwx100, app(app(ty_@2, h), ba)) -> new_lt4(vwx90, vwx100, h, ba) new_ltEs11(vwx91, vwx101, app(ty_[], ce)) -> new_ltEs12(vwx91, vwx101, ce) new_primPlusNat0(Succ(vwx330), vwx40100) -> Succ(Succ(new_primPlusNat1(vwx330, vwx40100))) new_esEs9(vwx30, vwx40, ty_Double) -> new_esEs20(vwx30, vwx40) new_ltEs15(Left(vwx90), Left(vwx100), app(app(ty_@2, eg), eh), fa) -> new_ltEs10(vwx90, vwx100, eg, eh) new_ltEs9(LT, EQ) -> True new_ltEs17(vwx9, vwx10) -> new_not(new_esEs10(new_compare19(vwx9, vwx10), GT)) new_sr0(vwx300, vwx401) -> new_primMulInt(vwx300, vwx401) new_lt5(vwx90, vwx100, ty_Integer) -> new_lt7(vwx90, vwx100) new_ltEs15(Left(vwx90), Left(vwx100), ty_Int, fa) -> new_ltEs18(vwx90, vwx100) new_ltEs15(Left(vwx90), Left(vwx100), app(ty_Ratio, cbg), fa) -> new_ltEs7(vwx90, vwx100, cbg) new_esEs24(vwx9, vwx10, True, chg) -> new_esEs10(EQ, LT) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs11(vwx300, vwx400, ty_Double) -> new_esEs20(vwx300, vwx400) new_compare0(:(vwx90, vwx91), :(vwx100, vwx101), de) -> new_primCompAux0(vwx90, vwx100, new_compare0(vwx91, vwx101, de), de) new_primPlusNat1(Zero, Zero) -> Zero new_lt20(vwx91, vwx101, app(app(ty_@2, bah), bba)) -> new_lt4(vwx91, vwx101, bah, bba) new_esEs9(vwx30, vwx40, ty_Char) -> new_esEs16(vwx30, vwx40) new_lt19(vwx90, vwx100, ty_Char) -> new_lt15(vwx90, vwx100) new_lt5(vwx90, vwx100, app(ty_[], bc)) -> new_lt8(vwx90, vwx100, bc) new_compare10(vwx9, vwx10) -> new_primCmpInt(vwx9, vwx10) new_esEs28(vwx301, vwx401, app(app(ty_@2, cee), cef)) -> new_esEs5(vwx301, vwx401, cee, cef) new_esEs8(Just(vwx300), Just(vwx400), ty_@0) -> new_esEs18(vwx300, vwx400) new_esEs25(vwx90, vwx100, ty_Double) -> new_esEs20(vwx90, vwx100) new_esEs6(Left(vwx300), Left(vwx400), ty_@0, cbb) -> new_esEs18(vwx300, vwx400) new_esEs13(vwx302, vwx402, ty_Char) -> new_esEs16(vwx302, vwx402) new_esEs6(Left(vwx300), Left(vwx400), ty_Double, cbb) -> new_esEs20(vwx300, vwx400) new_ltEs9(LT, GT) -> True new_esEs27(vwx300, vwx400, app(app(ty_Either, cch), cda)) -> new_esEs6(vwx300, vwx400, cch, cda) new_esEs6(Right(vwx300), Right(vwx400), cba, ty_Int) -> new_esEs21(vwx300, vwx400) new_esEs25(vwx90, vwx100, ty_@0) -> new_esEs18(vwx90, vwx100) new_compare6(@0, @0) -> EQ new_esEs10(EQ, GT) -> False new_esEs10(GT, EQ) -> False new_ltEs11(vwx91, vwx101, ty_Bool) -> new_ltEs14(vwx91, vwx101) new_esEs8(Just(vwx300), Just(vwx400), ty_Double) -> new_esEs20(vwx300, vwx400) new_esEs23(vwx90, vwx100, ty_Char) -> new_esEs16(vwx90, vwx100) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs6(Left(vwx300), Left(vwx400), app(ty_Maybe, cga), cbb) -> new_esEs8(vwx300, vwx400, cga) new_primMulNat0(Succ(vwx30000), Succ(vwx40100)) -> new_primPlusNat0(new_primMulNat0(vwx30000, Succ(vwx40100)), vwx40100) new_esEs6(Right(vwx300), Right(vwx400), cba, app(ty_[], cge)) -> new_esEs17(vwx300, vwx400, cge) new_ltEs14(False, False) -> True new_esEs12(vwx301, vwx401, app(ty_[], bga)) -> new_esEs17(vwx301, vwx401, bga) new_esEs6(Left(vwx300), Left(vwx400), app(app(app(ty_@3, cgb), cgc), cgd), cbb) -> new_esEs7(vwx300, vwx400, cgb, cgc, cgd) new_primCmpNat0(Succ(vwx900), Succ(vwx1000)) -> new_primCmpNat0(vwx900, vwx1000) new_ltEs11(vwx91, vwx101, ty_Int) -> new_ltEs18(vwx91, vwx101) new_esEs24(vwx9, vwx10, False, chg) -> new_esEs10(new_compare11(Just(vwx9), Just(vwx10), new_ltEs20(vwx9, vwx10, chg), chg), LT) new_compare16(vwx90, vwx100, app(app(ty_@2, bdb), bdc)) -> new_compare5(vwx90, vwx100, bdb, bdc) new_esEs29(vwx300, vwx400, ty_Int) -> new_esEs21(vwx300, vwx400) new_esEs11(vwx300, vwx400, app(ty_[], beg)) -> new_esEs17(vwx300, vwx400, beg) new_lt17(vwx90, vwx100) -> new_esEs10(new_compare10(vwx90, vwx100), LT) new_ltEs11(vwx91, vwx101, ty_@0) -> new_ltEs4(vwx91, vwx101) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs15(Left(vwx90), Left(vwx100), app(app(app(ty_@3, fg), fh), ga), fa) -> new_ltEs16(vwx90, vwx100, fg, fh, ga) new_ltEs9(EQ, LT) -> False new_esEs28(vwx301, vwx401, app(app(ty_Either, ceb), cec)) -> new_esEs6(vwx301, vwx401, ceb, cec) new_esEs11(vwx300, vwx400, ty_Integer) -> new_esEs15(vwx300, vwx400) new_esEs23(vwx90, vwx100, ty_Integer) -> new_esEs15(vwx90, vwx100) new_primEqNat0(Zero, Zero) -> True new_ltEs11(vwx91, vwx101, app(app(ty_@2, cc), cd)) -> new_ltEs10(vwx91, vwx101, cc, cd) new_esEs28(vwx301, vwx401, ty_Ordering) -> new_esEs10(vwx301, vwx401) new_compare14(vwx90, vwx100, False, h, ba) -> GT new_ltEs13(Just(vwx90), Just(vwx100), app(ty_Ratio, ccc)) -> new_ltEs7(vwx90, vwx100, ccc) new_ltEs14(True, False) -> False new_asAs(False, vwx24) -> False new_esEs17(:(vwx300, vwx301), [], cah) -> False new_esEs17([], :(vwx400, vwx401), cah) -> False new_compare28(vwx90, vwx100, True, be, bf) -> EQ new_ltEs11(vwx91, vwx101, ty_Integer) -> new_ltEs6(vwx91, vwx101) new_ltEs13(Nothing, Just(vwx100), ccb) -> True new_compare16(vwx90, vwx100, ty_Bool) -> new_compare17(vwx90, vwx100) new_esEs30(vwx301, vwx401, ty_Int) -> new_esEs21(vwx301, vwx401) new_ltEs11(vwx91, vwx101, ty_Double) -> new_ltEs5(vwx91, vwx101) new_esEs12(vwx301, vwx401, ty_Double) -> new_esEs20(vwx301, vwx401) new_compare27(vwx90, vwx100, True) -> EQ new_ltEs9(EQ, EQ) -> True new_ltEs15(Left(vwx90), Left(vwx100), ty_@0, fa) -> new_ltEs4(vwx90, vwx100) The set Q consists of the following terms: new_esEs12(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Char) new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Int) new_esEs13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare7(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs27(x0, x1, ty_Float) new_pePe(True, x0) new_esEs31(x0, x1, app(ty_[], x2)) new_compare112(x0, x1, True) new_lt20(x0, x1, ty_Char) new_compare7(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_lt6(x0, x1, x2) new_asAs(True, x0) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(Zero, Zero) new_esEs6(Left(x0), Left(x1), ty_Float, x2) new_compare10(x0, x1) new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs13(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs15(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare110(x0, x1, True) new_lt20(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_Int) new_esEs10(EQ, EQ) new_compare28(x0, x1, True, x2, x3) new_primEqInt(Pos(Zero), Pos(Zero)) new_compare23(x0, x1, True, x2, x3) new_esEs28(x0, x1, ty_Float) new_esEs13(x0, x1, ty_Float) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs11(x0, x1, ty_Float) new_esEs11(x0, x1, ty_Integer) new_ltEs13(Nothing, Nothing, x0) new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs14(True, True) new_compare8(:%(x0, x1), :%(x2, x3), ty_Int) new_compare26(x0, x1, False, x2) new_compare25(x0, x1, True) new_ltEs9(EQ, EQ) new_primEqInt(Neg(Zero), Neg(Zero)) new_compare16(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Nothing, Just(x0), x1) new_compare6(@0, @0) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primEqNat0(Zero, Succ(x0)) new_lt9(x0, x1) new_compare12(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_lt20(x0, x1, ty_Bool) new_esEs8(Just(x0), Just(x1), app(ty_[], x2)) new_compare12(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare12(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_lt20(x0, x1, ty_@0) new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt5(x0, x1, ty_Ordering) new_esEs24(x0, x1, True, x2) new_lt20(x0, x1, ty_Double) new_esEs14(False, True) new_esEs14(True, False) new_lt15(x0, x1) new_ltEs19(x0, x1, ty_Ordering) new_ltEs15(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs20(x0, x1, ty_Float) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs11(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs28(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs9(x0, x1, ty_Ordering) new_ltEs13(Just(x0), Just(x1), ty_Integer) new_ltEs15(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs19(x0, x1, ty_Integer) new_primCompAux00(x0, EQ) new_ltEs15(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs11(x0, x1, ty_Bool) new_sr0(x0, x1) new_compare5(x0, x1, x2, x3) new_esEs8(Nothing, Just(x0), x1) new_esEs25(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_compare23(x0, x1, False, x2, x3) new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_lt5(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(x0, x1) new_pePe(False, x0) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs12(x0, x1, ty_Bool) new_lt19(x0, x1, app(ty_Maybe, x2)) new_ltEs9(GT, GT) new_ltEs15(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs17([], :(x0, x1), x2) new_lt19(x0, x1, ty_Int) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs9(LT, EQ) new_ltEs9(EQ, LT) new_primCompAux00(x0, LT) new_esEs31(x0, x1, ty_Float) new_ltEs13(Just(x0), Just(x1), ty_Char) new_esEs13(x0, x1, app(ty_Ratio, x2)) new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) new_compare16(x0, x1, app(app(ty_@2, x2), x3)) new_esEs13(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_Integer) new_compare16(x0, x1, ty_Float) new_ltEs15(Left(x0), Left(x1), ty_Integer, x2) new_esEs12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, ty_Bool) new_lt19(x0, x1, ty_Char) new_esEs20(Double(x0, x1), Double(x2, x3)) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_lt5(x0, x1, ty_@0) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, ty_Ordering) new_primPlusNat1(Succ(x0), Succ(x1)) new_ltEs11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(x0, x1, ty_Integer) new_esEs12(x0, x1, app(ty_Maybe, x2)) new_primPlusNat0(Zero, x0) new_compare112(x0, x1, False) new_esEs23(x0, x1, ty_Integer) new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, ty_Double) new_lt7(x0, x1) new_ltEs11(x0, x1, app(ty_Maybe, x2)) new_compare12(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs6(Left(x0), Left(x1), ty_@0, x2) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Double) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, ty_@0) new_esEs31(x0, x1, ty_Int) new_lt20(x0, x1, ty_Integer) new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_compare16(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs11(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_@0) new_esEs31(x0, x1, ty_Integer) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Float(x0, x1), Float(x2, x3)) new_ltEs19(x0, x1, ty_Double) new_ltEs13(Just(x0), Just(x1), ty_Bool) new_lt13(x0, x1, x2, x3) new_ltEs14(False, False) new_esEs17(:(x0, x1), [], x2) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_compare19(Char(x0), Char(x1)) new_esEs8(Just(x0), Just(x1), ty_Float) new_esEs23(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Ordering) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs20(x0, x1, ty_Double) new_esEs8(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_ltEs13(Just(x0), Just(x1), ty_Float) new_ltEs15(Right(x0), Right(x1), x2, ty_@0) new_compare16(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt10(Nothing, Just(x0), x1) new_esEs28(x0, x1, ty_@0) new_esEs10(LT, GT) new_esEs10(GT, LT) new_ltEs9(LT, LT) new_lt5(x0, x1, ty_Double) new_esEs12(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Integer) new_lt10(Just(x0), Nothing, x1) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_ltEs15(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs9(x0, x1, ty_Float) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_compare9(Integer(x0), Integer(x1)) new_esEs6(Right(x0), Right(x1), x2, ty_@0) new_lt14(x0, x1, x2, x3, x4) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Bool) new_compare24(x0, x1, True, x2, x3, x4) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_Double) new_compare14(x0, x1, False, x2, x3) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs9(x0, x1, ty_Char) new_ltEs13(Just(x0), Just(x1), ty_Int) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat1(Zero, Succ(x0)) new_esEs8(Nothing, Nothing, x0) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs16(Char(x0), Char(x1)) new_compare113(x0, x1, True, x2, x3) new_esEs10(EQ, GT) new_esEs10(GT, EQ) new_lt19(x0, x1, ty_Float) new_primEqNat0(Succ(x0), Succ(x1)) new_ltEs15(Right(x0), Right(x1), x2, ty_Double) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_compare7(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare7(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_primPlusNat1(Succ(x0), Zero) new_ltEs11(x0, x1, ty_@0) new_compare17(x0, x1) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs12(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Int) new_esEs27(x0, x1, ty_Double) new_esEs6(Left(x0), Right(x1), x2, x3) new_esEs6(Right(x0), Left(x1), x2, x3) new_ltEs11(x0, x1, ty_Char) new_esEs13(x0, x1, ty_Int) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_compare111(x0, x1, False, x2, x3, x4) new_esEs25(x0, x1, ty_Char) new_esEs12(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Char) new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs12(x0, x1, x2) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs15(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs6(Right(x0), Right(x1), x2, ty_Bool) new_esEs30(x0, x1, ty_Integer) new_primMulNat0(Zero, Succ(x0)) new_ltEs15(Left(x0), Left(x1), ty_Char, x2) new_primMulNat0(Zero, Zero) new_esEs25(x0, x1, ty_Int) new_esEs6(Left(x0), Left(x1), ty_Double, x2) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, ty_Ordering) new_lt10(Nothing, Nothing, x0) new_ltEs10(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs13(x0, x1, ty_Char) new_esEs8(Just(x0), Just(x1), ty_Char) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs5(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs26(x0, x1, ty_@0) new_ltEs11(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_compare0(:(x0, x1), [], x2) new_esEs21(x0, x1) new_lt19(x0, x1, app(ty_[], x2)) new_esEs17(:(x0, x1), :(x2, x3), x4) new_compare24(x0, x1, False, x2, x3, x4) new_esEs26(x0, x1, ty_Char) new_compare11(x0, x1, False, x2) new_esEs23(x0, x1, ty_Int) new_lt16(x0, x1) new_esEs26(x0, x1, ty_Bool) new_esEs13(x0, x1, ty_Ordering) new_compare16(x0, x1, ty_Char) new_compare16(x0, x1, ty_@0) new_esEs12(x0, x1, ty_Int) new_lt19(x0, x1, ty_Bool) new_compare15(x0, x1) new_ltEs20(x0, x1, ty_@0) new_esEs11(x0, x1, ty_Ordering) new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs20(x0, x1, ty_Char) new_esEs8(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs8(Just(x0), Just(x1), ty_@0) new_ltEs15(Left(x0), Left(x1), ty_@0, x2) new_esEs12(x0, x1, ty_Ordering) new_esEs31(x0, x1, ty_@0) new_esEs6(Left(x0), Left(x1), ty_Int, x2) new_lt5(x0, x1, ty_Integer) new_esEs25(x0, x1, ty_Double) new_lt5(x0, x1, ty_Float) new_ltEs15(Left(x0), Left(x1), ty_Int, x2) new_ltEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(Just(x0), Just(x1), ty_Int) new_ltEs20(x0, x1, ty_Int) new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs8(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs10(LT, LT) new_lt20(x0, x1, ty_Float) new_esEs29(x0, x1, ty_Int) new_esEs8(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs14(True, True) new_esEs26(x0, x1, app(ty_[], x2)) new_not(True) new_esEs8(Just(x0), Just(x1), ty_Ordering) new_ltEs15(Right(x0), Right(x1), x2, ty_Ordering) new_esEs23(x0, x1, ty_Double) new_esEs25(x0, x1, ty_@0) new_compare16(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Left(x0), Left(x1), ty_Ordering, x2) new_esEs11(x0, x1, ty_Int) new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs15(Left(x0), Left(x1), ty_Bool, x2) new_esEs23(x0, x1, ty_@0) new_lt5(x0, x1, app(ty_Maybe, x2)) new_lt12(x0, x1) new_esEs8(Just(x0), Just(x1), ty_Bool) new_esEs26(x0, x1, ty_Ordering) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Left(x0), Left(x1), ty_Double, x2) new_esEs8(Just(x0), Just(x1), ty_Double) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_compare16(x0, x1, ty_Integer) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_compare14(x0, x1, True, x2, x3) new_esEs11(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs13(x0, x1, app(ty_Maybe, x2)) new_compare27(x0, x1, False) new_compare16(x0, x1, ty_Bool) new_esEs12(x0, x1, app(app(ty_@2, x2), x3)) new_lt18(x0, x1) new_primPlusNat0(Succ(x0), x1) new_lt5(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs6(Right(x0), Right(x1), x2, ty_Integer) new_ltEs7(x0, x1, x2) new_esEs13(x0, x1, ty_Double) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs28(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Int) new_esEs17([], [], x0) new_primCompAux00(x0, GT) new_esEs8(Just(x0), Nothing, x1) new_esEs26(x0, x1, ty_Integer) new_lt19(x0, x1, ty_Integer) new_ltEs5(x0, x1) new_esEs27(x0, x1, ty_Char) new_ltEs13(Just(x0), Just(x1), ty_Ordering) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_compare28(x0, x1, False, x2, x3) new_esEs13(x0, x1, ty_Bool) new_compare11(x0, x1, True, x2) new_esEs23(x0, x1, ty_Bool) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs11(x0, x1, ty_Ordering) new_ltEs16(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs10(GT, GT) new_lt5(x0, x1, app(ty_[], x2)) new_esEs19(:%(x0, x1), :%(x2, x3), x4) new_esEs13(x0, x1, ty_Integer) new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_primEqNat0(Succ(x0), Zero) new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(x0, x1) new_ltEs8(x0, x1) new_compare111(x0, x1, True, x2, x3, x4) new_primCmpNat0(Succ(x0), Zero) new_esEs13(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(LT, EQ) new_esEs10(EQ, LT) new_ltEs15(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs15(Integer(x0), Integer(x1)) new_compare113(x0, x1, False, x2, x3) new_ltEs11(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Double) new_compare25(x0, x1, False) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_lt19(x0, x1, ty_Ordering) new_asAs(False, x0) new_esEs6(Right(x0), Right(x1), x2, ty_Int) new_sr(Integer(x0), Integer(x1)) new_esEs28(x0, x1, ty_Integer) new_compare8(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs15(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs27(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Bool) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Bool) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_lt10(Just(x0), Just(x1), x2) new_esEs6(Right(x0), Right(x1), x2, ty_Char) new_compare13(x0, x1, x2, x3, x4) new_lt19(x0, x1, ty_Double) new_esEs8(Just(x0), Just(x1), ty_Integer) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_compare16(x0, x1, ty_Ordering) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs17(x0, x1) new_ltEs15(Right(x0), Right(x1), x2, ty_Integer) new_compare16(x0, x1, app(ty_Ratio, x2)) new_compare0([], :(x0, x1), x2) new_compare16(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Bool) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs13(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs19(x0, x1, ty_Bool) new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs12(x0, x1, ty_@0) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs18(@0, @0) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(x0, x1, app(ty_Ratio, x2)) new_compare16(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Ordering) new_ltEs14(False, True) new_ltEs14(True, False) new_ltEs9(GT, EQ) new_esEs23(x0, x1, ty_Float) new_ltEs9(EQ, GT) new_primEqNat0(Zero, Zero) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs6(Left(x0), Left(x1), ty_Integer, x2) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_ltEs15(Right(x0), Right(x1), x2, ty_Bool) new_not(False) new_ltEs11(x0, x1, ty_Bool) new_esEs26(x0, x1, ty_Int) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs15(Right(x0), Right(x1), x2, ty_Float) new_esEs12(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs11(x0, x1, ty_Float) new_ltEs15(Right(x0), Left(x1), x2, x3) new_ltEs15(Left(x0), Right(x1), x2, x3) new_lt5(x0, x1, ty_Int) new_esEs27(x0, x1, ty_Integer) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_ltEs18(x0, x1) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs6(Left(x0), Left(x1), ty_Char, x2) new_esEs14(False, False) new_ltEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Succ(x0), Zero) new_esEs25(x0, x1, ty_Ordering) new_ltEs20(x0, x1, ty_Bool) new_ltEs15(Left(x0), Left(x1), ty_Float, x2) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Just(x0), Just(x1), ty_Double) new_lt20(x0, x1, app(ty_[], x2)) new_lt5(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_@0) new_compare18(x0, x1, x2, x3) new_ltEs20(x0, x1, ty_Integer) new_ltEs15(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt5(x0, x1, ty_Char) new_compare27(x0, x1, True) new_ltEs13(Just(x0), Nothing, x1) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs11(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Float) new_compare110(x0, x1, False) new_primCmpNat0(Zero, Succ(x0)) new_ltEs15(Right(x0), Right(x1), x2, ty_Int) new_lt17(x0, x1) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, ty_@0) new_compare0([], [], x0) new_esEs8(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs6(Left(x0), Left(x1), ty_Bool, x2) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_Double) new_primCompAux0(x0, x1, x2, x3) new_lt8(x0, x1, x2) new_lt5(x0, x1, ty_Bool) new_esEs6(Right(x0), Right(x1), x2, ty_Float) new_esEs24(x0, x1, False, x2) new_esEs25(x0, x1, ty_Integer) new_esEs28(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Float) new_lt11(x0, x1) new_esEs30(x0, x1, ty_Int) new_ltEs13(Just(x0), Just(x1), ty_@0) new_compare26(x0, x1, True, x2) new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) new_lt4(x0, x1, x2, x3) new_primCmpNat0(Zero, Zero) new_ltEs9(GT, LT) new_ltEs9(LT, GT) new_ltEs15(Right(x0), Right(x1), x2, ty_Char) new_primMulInt(Neg(x0), Neg(x1)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (22) 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_compare2(vwx90, vwx100, False, h, ba) -> new_ltEs(vwx90, vwx100, h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 *new_primCompAux(vwx90, vwx100, vwx58, app(app(ty_@2, bdb), bdc)) -> new_compare1(vwx90, vwx100, bdb, bdc) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_lt0(vwx90, vwx100, h, ba) -> new_compare2(vwx90, vwx100, new_esEs5(vwx90, vwx100, h, ba), h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_compare22(vwx90, vwx100, False, bde) -> new_ltEs1(vwx90, vwx100, bde) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3 *new_lt1(vwx90, vwx100, bc) -> new_compare(vwx90, vwx100, bc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_lt(Just(vwx30), Just(vwx40), bec) -> new_esEs4(vwx30, vwx40, new_esEs9(vwx30, vwx40, bec), bec) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_ltEs0(:(vwx90, vwx91), :(vwx100, vwx101), de) -> new_primCompAux(vwx90, vwx100, new_compare0(vwx91, vwx101, de), de) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_ltEs0(:(vwx90, vwx91), :(vwx100, vwx101), de) -> new_compare(vwx91, vwx101, de) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), bag, hf, app(ty_[], bcc)) -> new_ltEs0(vwx92, vwx102, bcc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), bag, hf, app(app(app(ty_@3, bcg), bch), bda)) -> new_ltEs3(vwx92, vwx102, bcg, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), bag, hf, app(app(ty_@2, bca), bcb)) -> new_ltEs(vwx92, vwx102, bca, bcb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), bag, hf, app(ty_Maybe, bcd)) -> new_ltEs1(vwx92, vwx102, bcd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_primCompAux(vwx90, vwx100, vwx58, app(ty_Maybe, bde)) -> new_compare22(vwx90, vwx100, new_esEs8(vwx90, vwx100, bde), bde) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 4 *new_ltEs1(Just(vwx90), Just(vwx100), app(ty_[], dh)) -> new_ltEs0(vwx90, vwx100, dh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(Just(vwx90), Just(vwx100), app(app(app(ty_@3, ed), ee), ef)) -> new_ltEs3(vwx90, vwx100, ed, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs1(Just(vwx90), Just(vwx100), app(app(ty_@2, df), dg)) -> new_ltEs(vwx90, vwx100, df, dg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(Just(vwx90), Just(vwx100), app(ty_Maybe, ea)) -> new_ltEs1(vwx90, vwx100, ea) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(Just(vwx90), Just(vwx100), app(app(ty_Either, eb), ec)) -> new_ltEs2(vwx90, vwx100, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(@2(vwx90, vwx91), @2(vwx100, vwx101), cb, app(ty_[], ce)) -> new_ltEs0(vwx91, vwx101, ce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs(@2(vwx90, vwx91), @2(vwx100, vwx101), cb, app(app(app(ty_@3, db), dc), dd)) -> new_ltEs3(vwx91, vwx101, db, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs(@2(vwx90, vwx91), @2(vwx100, vwx101), cb, app(app(ty_@2, cc), cd)) -> new_ltEs(vwx91, vwx101, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs(@2(vwx90, vwx91), @2(vwx100, vwx101), cb, app(ty_Maybe, cf)) -> new_ltEs1(vwx91, vwx101, cf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), bag, hf, app(app(ty_Either, bce), bcf)) -> new_ltEs2(vwx92, vwx102, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs(@2(vwx90, vwx91), @2(vwx100, vwx101), cb, app(app(ty_Either, cg), da)) -> new_ltEs2(vwx91, vwx101, cg, da) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_primCompAux(vwx90, vwx100, vwx58, app(app(app(ty_@3, bdh), bea), beb)) -> new_compare4(vwx90, vwx100, bdh, bea, beb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(vwx90, vwx100, False, bg, bh, ca) -> new_ltEs3(vwx90, vwx100, bg, bh, ca) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 *new_lt2(vwx90, vwx100, be, bf) -> new_compare20(vwx90, vwx100, new_esEs6(vwx90, vwx100, be, bf), be, bf) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_lt3(vwx90, vwx100, bg, bh, ca) -> new_compare21(vwx90, vwx100, new_esEs7(vwx90, vwx100, bg, bh, ca), bg, bh, ca) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_compare(:(vwx90, vwx91), :(vwx100, vwx101), de) -> new_primCompAux(vwx90, vwx100, new_compare0(vwx91, vwx101, de), de) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_esEs4(:(vwx90, vwx91), :(vwx100, vwx101), False, app(ty_[], de)) -> new_primCompAux(vwx90, vwx100, new_compare0(vwx91, vwx101, de), de) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_compare(:(vwx90, vwx91), :(vwx100, vwx101), de) -> new_compare(vwx91, vwx101, de) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_primCompAux(vwx90, vwx100, vwx58, app(app(ty_Either, bdf), bdg)) -> new_compare3(vwx90, vwx100, bdf, bdg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_primCompAux(vwx90, vwx100, vwx58, app(ty_[], bdd)) -> new_compare(vwx90, vwx100, bdd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare20(vwx90, vwx100, False, be, bf) -> new_ltEs2(vwx90, vwx100, be, bf) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 *new_compare4(vwx90, vwx100, bg, bh, ca) -> new_compare21(vwx90, vwx100, new_esEs7(vwx90, vwx100, bg, bh, ca), bg, bh, ca) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_ltEs(@2(vwx90, vwx91), @2(vwx100, vwx101), app(ty_[], bc), bb) -> new_compare(vwx90, vwx100, bc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(@2(vwx90, vwx91), @2(vwx100, vwx101), app(app(app(ty_@3, bg), bh), ca), bb) -> new_compare21(vwx90, vwx100, new_esEs7(vwx90, vwx100, bg, bh, ca), bg, bh, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5, 3 > 6 *new_esEs4(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, app(app(app(ty_@3, bg), bh), ca)), bb)) -> new_compare21(vwx90, vwx100, new_esEs7(vwx90, vwx100, bg, bh, ca), bg, bh, ca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5, 4 > 6 *new_ltEs(@2(vwx90, vwx91), @2(vwx100, vwx101), app(ty_Maybe, bd), bb) -> new_lt(vwx90, vwx100, bd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(@2(vwx90, vwx91), @2(vwx100, vwx101), app(app(ty_Either, be), bf), bb) -> new_compare20(vwx90, vwx100, new_esEs6(vwx90, vwx100, be, bf), be, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 *new_ltEs(@2(vwx90, vwx91), @2(vwx100, vwx101), app(app(ty_@2, h), ba), bb) -> new_compare2(vwx90, vwx100, new_esEs5(vwx90, vwx100, h, ba), h, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 *new_esEs4(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, app(app(ty_Either, be), bf)), bb)) -> new_compare20(vwx90, vwx100, new_esEs6(vwx90, vwx100, be, bf), be, bf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_compare3(vwx90, vwx100, be, bf) -> new_compare20(vwx90, vwx100, new_esEs6(vwx90, vwx100, be, bf), be, bf) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_compare1(vwx90, vwx100, h, ba) -> new_compare2(vwx90, vwx100, new_esEs5(vwx90, vwx100, h, ba), h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_esEs4(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, app(app(ty_@2, h), ba)), bb)) -> new_compare2(vwx90, vwx100, new_esEs5(vwx90, vwx100, h, ba), h, ba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_ltEs2(Left(vwx90), Left(vwx100), app(ty_[], fb), fa) -> new_ltEs0(vwx90, vwx100, fb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(Right(vwx90), Right(vwx100), gb, app(ty_[], ge)) -> new_ltEs0(vwx90, vwx100, ge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs4(Just(vwx90), Just(vwx100), False, app(ty_Maybe, app(ty_[], dh))) -> new_ltEs0(vwx90, vwx100, dh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs4(Left(vwx90), Left(vwx100), False, app(app(ty_Either, app(ty_[], fb)), fa)) -> new_ltEs0(vwx90, vwx100, fb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, bag), hf), app(ty_[], bcc))) -> new_ltEs0(vwx92, vwx102, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs4(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, cb), app(ty_[], ce))) -> new_ltEs0(vwx91, vwx101, ce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs4(Right(vwx90), Right(vwx100), False, app(app(ty_Either, gb), app(ty_[], ge))) -> new_ltEs0(vwx90, vwx100, ge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(Right(vwx90), Right(vwx100), gb, app(app(app(ty_@3, ha), hb), hc)) -> new_ltEs3(vwx90, vwx100, ha, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs2(Left(vwx90), Left(vwx100), app(app(app(ty_@3, fg), fh), ga), fa) -> new_ltEs3(vwx90, vwx100, fg, fh, ga) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs4(Just(vwx90), Just(vwx100), False, app(ty_Maybe, app(app(app(ty_@3, ed), ee), ef))) -> new_ltEs3(vwx90, vwx100, ed, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, bag), hf), app(app(app(ty_@3, bcg), bch), bda))) -> new_ltEs3(vwx92, vwx102, bcg, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs4(Left(vwx90), Left(vwx100), False, app(app(ty_Either, app(app(app(ty_@3, fg), fh), ga)), fa)) -> new_ltEs3(vwx90, vwx100, fg, fh, ga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs4(Right(vwx90), Right(vwx100), False, app(app(ty_Either, gb), app(app(app(ty_@3, ha), hb), hc))) -> new_ltEs3(vwx90, vwx100, ha, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs4(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, cb), app(app(app(ty_@3, db), dc), dd))) -> new_ltEs3(vwx91, vwx101, db, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs2(Right(vwx90), Right(vwx100), gb, app(app(ty_@2, gc), gd)) -> new_ltEs(vwx90, vwx100, gc, gd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(Left(vwx90), Left(vwx100), app(app(ty_@2, eg), eh), fa) -> new_ltEs(vwx90, vwx100, eg, eh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, bag), hf), app(app(ty_@2, bca), bcb))) -> new_ltEs(vwx92, vwx102, bca, bcb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs4(Left(vwx90), Left(vwx100), False, app(app(ty_Either, app(app(ty_@2, eg), eh)), fa)) -> new_ltEs(vwx90, vwx100, eg, eh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs4(Right(vwx90), Right(vwx100), False, app(app(ty_Either, gb), app(app(ty_@2, gc), gd))) -> new_ltEs(vwx90, vwx100, gc, gd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs4(Just(vwx90), Just(vwx100), False, app(ty_Maybe, app(app(ty_@2, df), dg))) -> new_ltEs(vwx90, vwx100, df, dg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs4(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, cb), app(app(ty_@2, cc), cd))) -> new_ltEs(vwx91, vwx101, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), app(app(app(ty_@3, bad), bae), baf), hf, hg) -> new_lt3(vwx90, vwx100, bad, bae, baf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), bag, app(app(app(ty_@3, bbf), bbg), bbh), hg) -> new_lt3(vwx91, vwx101, bbf, bbg, bbh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), app(app(ty_Either, bab), bac), hf, hg) -> new_lt2(vwx90, vwx100, bab, bac) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), bag, app(app(ty_Either, bbd), bbe), hg) -> new_lt2(vwx91, vwx101, bbd, bbe) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), bag, app(ty_Maybe, bbc), hg) -> new_lt(vwx91, vwx101, bbc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), app(ty_Maybe, baa), hf, hg) -> new_lt(vwx90, vwx100, baa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), app(app(ty_@2, hd), he), hf, hg) -> new_lt0(vwx90, vwx100, hd, he) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), bag, app(app(ty_@2, bah), bba), hg) -> new_lt0(vwx91, vwx101, bah, bba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), bag, app(ty_[], bbb), hg) -> new_lt1(vwx91, vwx101, bbb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), app(ty_[], hh), hf, hg) -> new_lt1(vwx90, vwx100, hh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(Right(vwx90), Right(vwx100), gb, app(ty_Maybe, gf)) -> new_ltEs1(vwx90, vwx100, gf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(Left(vwx90), Left(vwx100), app(ty_Maybe, fc), fa) -> new_ltEs1(vwx90, vwx100, fc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs4(Right(vwx90), Right(vwx100), False, app(app(ty_Either, gb), app(ty_Maybe, gf))) -> new_ltEs1(vwx90, vwx100, gf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs4(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, cb), app(ty_Maybe, cf))) -> new_ltEs1(vwx91, vwx101, cf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, bag), hf), app(ty_Maybe, bcd))) -> new_ltEs1(vwx92, vwx102, bcd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs4(Just(vwx90), Just(vwx100), False, app(ty_Maybe, app(ty_Maybe, ea))) -> new_ltEs1(vwx90, vwx100, ea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs4(Left(vwx90), Left(vwx100), False, app(app(ty_Either, app(ty_Maybe, fc)), fa)) -> new_ltEs1(vwx90, vwx100, fc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(Right(vwx90), Right(vwx100), gb, app(app(ty_Either, gg), gh)) -> new_ltEs2(vwx90, vwx100, gg, gh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(Left(vwx90), Left(vwx100), app(app(ty_Either, fd), ff), fa) -> new_ltEs2(vwx90, vwx100, fd, ff) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs4(Just(vwx90), Just(vwx100), False, app(ty_Maybe, app(app(ty_Either, eb), ec))) -> new_ltEs2(vwx90, vwx100, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, bag), hf), app(app(ty_Either, bce), bcf))) -> new_ltEs2(vwx92, vwx102, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs4(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, cb), app(app(ty_Either, cg), da))) -> new_ltEs2(vwx91, vwx101, cg, da) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs4(Left(vwx90), Left(vwx100), False, app(app(ty_Either, app(app(ty_Either, fd), ff)), fa)) -> new_ltEs2(vwx90, vwx100, fd, ff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs4(Right(vwx90), Right(vwx100), False, app(app(ty_Either, gb), app(app(ty_Either, gg), gh))) -> new_ltEs2(vwx90, vwx100, gg, gh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, bag), app(app(app(ty_@3, bbf), bbg), bbh)), hg)) -> new_lt3(vwx91, vwx101, bbf, bbg, bbh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, app(app(app(ty_@3, bad), bae), baf)), hf), hg)) -> new_lt3(vwx90, vwx100, bad, bae, baf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs4(:(vwx90, vwx91), :(vwx100, vwx101), False, app(ty_[], de)) -> new_compare(vwx91, vwx101, de) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs4(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, app(ty_[], bc)), bb)) -> new_compare(vwx90, vwx100, bc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, app(app(ty_Either, bab), bac)), hf), hg)) -> new_lt2(vwx90, vwx100, bab, bac) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, bag), app(app(ty_Either, bbd), bbe)), hg)) -> new_lt2(vwx91, vwx101, bbd, bbe) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, bag), app(ty_Maybe, bbc)), hg)) -> new_lt(vwx91, vwx101, bbc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, app(ty_Maybe, baa)), hf), hg)) -> new_lt(vwx90, vwx100, baa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs4(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, app(ty_Maybe, bd)), bb)) -> new_lt(vwx90, vwx100, bd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, app(app(ty_@2, hd), he)), hf), hg)) -> new_lt0(vwx90, vwx100, hd, he) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, bag), app(app(ty_@2, bah), bba)), hg)) -> new_lt0(vwx91, vwx101, bah, bba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, app(ty_[], hh)), hf), hg)) -> new_lt1(vwx90, vwx100, hh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, bag), app(ty_[], bbb)), hg)) -> new_lt1(vwx91, vwx101, bbb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 ---------------------------------------- (23) YES ---------------------------------------- (24) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMulNat(Succ(vwx30000), Succ(vwx40100)) -> new_primMulNat(vwx30000, Succ(vwx40100)) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (25) 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(vwx30000), Succ(vwx40100)) -> new_primMulNat(vwx30000, Succ(vwx40100)) The graph contains the following edges 1 > 1, 2 >= 2 ---------------------------------------- (26) YES ---------------------------------------- (27) Obligation: Q DP problem: The TRS P consists of the following rules: new_primEqNat(Succ(vwx3000), Succ(vwx4000)) -> new_primEqNat(vwx3000, vwx4000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (28) 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_primEqNat(Succ(vwx3000), Succ(vwx4000)) -> new_primEqNat(vwx3000, vwx4000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (29) YES ---------------------------------------- (30) Obligation: Q DP problem: The TRS P consists of the following rules: new_primPlusNat(Succ(vwx3300), Succ(vwx401000)) -> new_primPlusNat(vwx3300, vwx401000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (31) 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(vwx3300), Succ(vwx401000)) -> new_primPlusNat(vwx3300, vwx401000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (32) YES