/export/starexec/sandbox/solver/bin/starexec_run_standard /export/starexec/sandbox/benchmark/theBenchmark.hs /export/starexec/sandbox/output/output_files -------------------------------------------------------------------------------- YES proof of /export/starexec/sandbox/benchmark/theBenchmark.hs # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty H-Termination with start terms of the given HASKELL could be proven: (0) HASKELL (1) CR [EQUIVALENT, 0 ms] (2) HASKELL (3) IFR [EQUIVALENT, 0 ms] (4) HASKELL (5) BR [EQUIVALENT, 0 ms] (6) HASKELL (7) COR [EQUIVALENT, 6 ms] (8) HASKELL (9) LetRed [EQUIVALENT, 0 ms] (10) HASKELL (11) NumRed [SOUND, 0 ms] (12) HASKELL (13) Narrow [SOUND, 0 ms] (14) AND (15) QDP (16) QDPSizeChangeProof [EQUIVALENT, 0 ms] (17) YES (18) QDP (19) QDPSizeChangeProof [EQUIVALENT, 0 ms] (20) YES (21) QDP (22) QDPSizeChangeProof [EQUIVALENT, 150 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 "compare x y|x == yEQ|x <= yLT|otherwiseGT; " is transformed to "compare x y = compare3 x y; " "compare2 x y True = EQ; compare2 x y False = compare1 x y (x <= y); " "compare0 x y True = GT; " "compare1 x y True = LT; compare1 x y False = compare0 x y otherwise; " "compare3 x y = compare2 x y (x == y); " The following Function with conditions "absReal x|x >= 0x|otherwise`negate` x; " is transformed to "absReal x = absReal2 x; " "absReal1 x True = x; absReal1 x False = absReal0 x otherwise; " "absReal0 x True = `negate` x; " "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; } ; " ---------------------------------------- (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'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; " "gcd0Gcd'1 True x zx = x; gcd0Gcd'1 zy zz vuu = gcd0Gcd'0 zz vuu; " 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; " "reduce2Reduce1 vwv vww x y True = error []; reduce2Reduce1 vwv vww x y False = reduce2Reduce0 vwv vww x y otherwise; " "reduce2Reduce0 vwv vww x y True = x `quot` reduce2D vwv vww :% (y `quot` reduce2D vwv vww); " ---------------------------------------- (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="blue",shape="box"];2898[label="> :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4 -> 2898[label="",style="solid", color="blue", weight=9]; 2898 -> 5[label="",style="solid", color="blue", weight=3]; 2899[label="> :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4 -> 2899[label="",style="solid", color="blue", weight=9]; 2899 -> 6[label="",style="solid", color="blue", weight=3]; 2900[label="> :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4 -> 2900[label="",style="solid", color="blue", weight=9]; 2900 -> 7[label="",style="solid", color="blue", weight=3]; 2901[label="> :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4 -> 2901[label="",style="solid", color="blue", weight=9]; 2901 -> 8[label="",style="solid", color="blue", weight=3]; 2902[label="> :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4 -> 2902[label="",style="solid", color="blue", weight=9]; 2902 -> 9[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"];4 -> 2903[label="",style="solid", color="blue", weight=9]; 2903 -> 10[label="",style="solid", color="blue", weight=3]; 2904[label="> :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4 -> 2904[label="",style="solid", color="blue", weight=9]; 2904 -> 11[label="",style="solid", color="blue", weight=3]; 2905[label="> :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4 -> 2905[label="",style="solid", color="blue", weight=9]; 2905 -> 12[label="",style="solid", color="blue", weight=3]; 2906[label="> :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4 -> 2906[label="",style="solid", color="blue", weight=9]; 2906 -> 13[label="",style="solid", color="blue", weight=3]; 2907[label="> :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4 -> 2907[label="",style="solid", color="blue", weight=9]; 2907 -> 14[label="",style="solid", color="blue", weight=3]; 2908[label="> :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4 -> 2908[label="",style="solid", color="blue", weight=9]; 2908 -> 15[label="",style="solid", color="blue", weight=3]; 2909[label="> :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4 -> 2909[label="",style="solid", color="blue", weight=9]; 2909 -> 16[label="",style="solid", color="blue", weight=3]; 2910[label="> :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4 -> 2910[label="",style="solid", color="blue", weight=9]; 2910 -> 17[label="",style="solid", color="blue", weight=3]; 2911[label="> :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4 -> 2911[label="",style="solid", color="blue", weight=9]; 2911 -> 18[label="",style="solid", color="blue", weight=3]; 5[label="(>) vwx3 vwx4",fontsize=16,color="black",shape="box"];5 -> 19[label="",style="solid", color="black", weight=3]; 6[label="(>) vwx3 vwx4",fontsize=16,color="black",shape="box"];6 -> 20[label="",style="solid", color="black", weight=3]; 7[label="(>) vwx3 vwx4",fontsize=16,color="black",shape="box"];7 -> 21[label="",style="solid", color="black", weight=3]; 8[label="(>) vwx3 vwx4",fontsize=16,color="black",shape="box"];8 -> 22[label="",style="solid", color="black", weight=3]; 9[label="(>) vwx3 vwx4",fontsize=16,color="black",shape="box"];9 -> 23[label="",style="solid", color="black", weight=3]; 10[label="(>) vwx3 vwx4",fontsize=16,color="black",shape="box"];10 -> 24[label="",style="solid", color="black", weight=3]; 11[label="(>) vwx3 vwx4",fontsize=16,color="black",shape="box"];11 -> 25[label="",style="solid", color="black", weight=3]; 12[label="(>) vwx3 vwx4",fontsize=16,color="black",shape="box"];12 -> 26[label="",style="solid", color="black", weight=3]; 13[label="(>) vwx3 vwx4",fontsize=16,color="black",shape="box"];13 -> 27[label="",style="solid", color="black", weight=3]; 14[label="(>) vwx3 vwx4",fontsize=16,color="black",shape="box"];14 -> 28[label="",style="solid", color="black", weight=3]; 15[label="(>) vwx3 vwx4",fontsize=16,color="black",shape="box"];15 -> 29[label="",style="solid", color="black", weight=3]; 16[label="(>) vwx3 vwx4",fontsize=16,color="black",shape="box"];16 -> 30[label="",style="solid", color="black", weight=3]; 17[label="(>) vwx3 vwx4",fontsize=16,color="black",shape="box"];17 -> 31[label="",style="solid", color="black", weight=3]; 18[label="(>) vwx3 vwx4",fontsize=16,color="black",shape="box"];18 -> 32[label="",style="solid", color="black", weight=3]; 19 -> 107[label="",style="dashed", color="red", weight=0]; 19[label="compare vwx3 vwx4 == GT",fontsize=16,color="magenta"];19 -> 108[label="",style="dashed", color="magenta", weight=3]; 20 -> 107[label="",style="dashed", color="red", weight=0]; 20[label="compare vwx3 vwx4 == GT",fontsize=16,color="magenta"];20 -> 109[label="",style="dashed", color="magenta", weight=3]; 21 -> 107[label="",style="dashed", color="red", weight=0]; 21[label="compare vwx3 vwx4 == GT",fontsize=16,color="magenta"];21 -> 110[label="",style="dashed", color="magenta", weight=3]; 22 -> 107[label="",style="dashed", color="red", weight=0]; 22[label="compare vwx3 vwx4 == GT",fontsize=16,color="magenta"];22 -> 111[label="",style="dashed", color="magenta", weight=3]; 23 -> 107[label="",style="dashed", color="red", weight=0]; 23[label="compare vwx3 vwx4 == GT",fontsize=16,color="magenta"];23 -> 112[label="",style="dashed", color="magenta", weight=3]; 24 -> 107[label="",style="dashed", color="red", weight=0]; 24[label="compare vwx3 vwx4 == GT",fontsize=16,color="magenta"];24 -> 113[label="",style="dashed", color="magenta", weight=3]; 25 -> 107[label="",style="dashed", color="red", weight=0]; 25[label="compare vwx3 vwx4 == GT",fontsize=16,color="magenta"];25 -> 114[label="",style="dashed", color="magenta", weight=3]; 26 -> 107[label="",style="dashed", color="red", weight=0]; 26[label="compare vwx3 vwx4 == GT",fontsize=16,color="magenta"];26 -> 115[label="",style="dashed", color="magenta", weight=3]; 27 -> 107[label="",style="dashed", color="red", weight=0]; 27[label="compare vwx3 vwx4 == GT",fontsize=16,color="magenta"];27 -> 116[label="",style="dashed", color="magenta", weight=3]; 28 -> 107[label="",style="dashed", color="red", weight=0]; 28[label="compare vwx3 vwx4 == GT",fontsize=16,color="magenta"];28 -> 117[label="",style="dashed", color="magenta", weight=3]; 29 -> 107[label="",style="dashed", color="red", weight=0]; 29[label="compare vwx3 vwx4 == GT",fontsize=16,color="magenta"];29 -> 118[label="",style="dashed", color="magenta", weight=3]; 30 -> 107[label="",style="dashed", color="red", weight=0]; 30[label="compare vwx3 vwx4 == GT",fontsize=16,color="magenta"];30 -> 119[label="",style="dashed", color="magenta", weight=3]; 31 -> 107[label="",style="dashed", color="red", weight=0]; 31[label="compare vwx3 vwx4 == GT",fontsize=16,color="magenta"];31 -> 120[label="",style="dashed", color="magenta", weight=3]; 32 -> 107[label="",style="dashed", color="red", weight=0]; 32[label="compare vwx3 vwx4 == GT",fontsize=16,color="magenta"];32 -> 121[label="",style="dashed", color="magenta", weight=3]; 108[label="compare vwx3 vwx4",fontsize=16,color="black",shape="triangle"];108 -> 145[label="",style="solid", color="black", weight=3]; 107[label="vwx7 == GT",fontsize=16,color="burlywood",shape="triangle"];2912[label="vwx7/LT",fontsize=10,color="white",style="solid",shape="box"];107 -> 2912[label="",style="solid", color="burlywood", weight=9]; 2912 -> 146[label="",style="solid", color="burlywood", weight=3]; 2913[label="vwx7/EQ",fontsize=10,color="white",style="solid",shape="box"];107 -> 2913[label="",style="solid", color="burlywood", weight=9]; 2913 -> 147[label="",style="solid", color="burlywood", weight=3]; 2914[label="vwx7/GT",fontsize=10,color="white",style="solid",shape="box"];107 -> 2914[label="",style="solid", color="burlywood", weight=9]; 2914 -> 148[label="",style="solid", color="burlywood", weight=3]; 109[label="compare vwx3 vwx4",fontsize=16,color="burlywood",shape="triangle"];2915[label="vwx3/()",fontsize=10,color="white",style="solid",shape="box"];109 -> 2915[label="",style="solid", color="burlywood", weight=9]; 2915 -> 149[label="",style="solid", color="burlywood", weight=3]; 110[label="compare vwx3 vwx4",fontsize=16,color="black",shape="triangle"];110 -> 150[label="",style="solid", color="black", weight=3]; 111[label="compare vwx3 vwx4",fontsize=16,color="black",shape="triangle"];111 -> 151[label="",style="solid", color="black", weight=3]; 112[label="compare vwx3 vwx4",fontsize=16,color="black",shape="triangle"];112 -> 152[label="",style="solid", color="black", weight=3]; 113[label="compare vwx3 vwx4",fontsize=16,color="black",shape="triangle"];113 -> 153[label="",style="solid", color="black", weight=3]; 114[label="compare vwx3 vwx4",fontsize=16,color="burlywood",shape="triangle"];2916[label="vwx3/vwx30 :% vwx31",fontsize=10,color="white",style="solid",shape="box"];114 -> 2916[label="",style="solid", color="burlywood", weight=9]; 2916 -> 154[label="",style="solid", color="burlywood", weight=3]; 115[label="compare vwx3 vwx4",fontsize=16,color="burlywood",shape="triangle"];2917[label="vwx3/vwx30 : vwx31",fontsize=10,color="white",style="solid",shape="box"];115 -> 2917[label="",style="solid", color="burlywood", weight=9]; 2917 -> 155[label="",style="solid", color="burlywood", weight=3]; 2918[label="vwx3/[]",fontsize=10,color="white",style="solid",shape="box"];115 -> 2918[label="",style="solid", color="burlywood", weight=9]; 2918 -> 156[label="",style="solid", color="burlywood", weight=3]; 116[label="compare vwx3 vwx4",fontsize=16,color="black",shape="triangle"];116 -> 157[label="",style="solid", color="black", weight=3]; 117[label="compare vwx3 vwx4",fontsize=16,color="black",shape="triangle"];117 -> 158[label="",style="solid", color="black", weight=3]; 118[label="compare vwx3 vwx4",fontsize=16,color="black",shape="triangle"];118 -> 159[label="",style="solid", color="black", weight=3]; 119[label="compare vwx3 vwx4",fontsize=16,color="black",shape="triangle"];119 -> 160[label="",style="solid", color="black", weight=3]; 120[label="compare vwx3 vwx4",fontsize=16,color="burlywood",shape="triangle"];2919[label="vwx3/Integer vwx30",fontsize=10,color="white",style="solid",shape="box"];120 -> 2919[label="",style="solid", color="burlywood", weight=9]; 2919 -> 161[label="",style="solid", color="burlywood", weight=3]; 121[label="compare vwx3 vwx4",fontsize=16,color="black",shape="triangle"];121 -> 162[label="",style="solid", color="black", weight=3]; 145[label="compare3 vwx3 vwx4",fontsize=16,color="black",shape="box"];145 -> 163[label="",style="solid", color="black", weight=3]; 146[label="LT == GT",fontsize=16,color="black",shape="box"];146 -> 164[label="",style="solid", color="black", weight=3]; 147[label="EQ == GT",fontsize=16,color="black",shape="box"];147 -> 165[label="",style="solid", color="black", weight=3]; 148[label="GT == GT",fontsize=16,color="black",shape="box"];148 -> 166[label="",style="solid", color="black", weight=3]; 149[label="compare () vwx4",fontsize=16,color="burlywood",shape="box"];2920[label="vwx4/()",fontsize=10,color="white",style="solid",shape="box"];149 -> 2920[label="",style="solid", color="burlywood", weight=9]; 2920 -> 167[label="",style="solid", color="burlywood", weight=3]; 150[label="compare3 vwx3 vwx4",fontsize=16,color="black",shape="box"];150 -> 168[label="",style="solid", color="black", weight=3]; 151[label="primCmpFloat vwx3 vwx4",fontsize=16,color="burlywood",shape="box"];2921[label="vwx3/Float vwx30 vwx31",fontsize=10,color="white",style="solid",shape="box"];151 -> 2921[label="",style="solid", color="burlywood", weight=9]; 2921 -> 169[label="",style="solid", color="burlywood", weight=3]; 152[label="primCmpDouble vwx3 vwx4",fontsize=16,color="burlywood",shape="box"];2922[label="vwx3/Double vwx30 vwx31",fontsize=10,color="white",style="solid",shape="box"];152 -> 2922[label="",style="solid", color="burlywood", weight=9]; 2922 -> 170[label="",style="solid", color="burlywood", weight=3]; 153[label="compare3 vwx3 vwx4",fontsize=16,color="black",shape="box"];153 -> 171[label="",style="solid", color="black", weight=3]; 154[label="compare (vwx30 :% vwx31) vwx4",fontsize=16,color="burlywood",shape="box"];2923[label="vwx4/vwx40 :% vwx41",fontsize=10,color="white",style="solid",shape="box"];154 -> 2923[label="",style="solid", color="burlywood", weight=9]; 2923 -> 172[label="",style="solid", color="burlywood", weight=3]; 155[label="compare (vwx30 : vwx31) vwx4",fontsize=16,color="burlywood",shape="box"];2924[label="vwx4/vwx40 : vwx41",fontsize=10,color="white",style="solid",shape="box"];155 -> 2924[label="",style="solid", color="burlywood", weight=9]; 2924 -> 173[label="",style="solid", color="burlywood", weight=3]; 2925[label="vwx4/[]",fontsize=10,color="white",style="solid",shape="box"];155 -> 2925[label="",style="solid", color="burlywood", weight=9]; 2925 -> 174[label="",style="solid", color="burlywood", weight=3]; 156[label="compare [] vwx4",fontsize=16,color="burlywood",shape="box"];2926[label="vwx4/vwx40 : vwx41",fontsize=10,color="white",style="solid",shape="box"];156 -> 2926[label="",style="solid", color="burlywood", weight=9]; 2926 -> 175[label="",style="solid", color="burlywood", weight=3]; 2927[label="vwx4/[]",fontsize=10,color="white",style="solid",shape="box"];156 -> 2927[label="",style="solid", color="burlywood", weight=9]; 2927 -> 176[label="",style="solid", color="burlywood", weight=3]; 157[label="compare3 vwx3 vwx4",fontsize=16,color="black",shape="box"];157 -> 177[label="",style="solid", color="black", weight=3]; 158[label="compare3 vwx3 vwx4",fontsize=16,color="black",shape="box"];158 -> 178[label="",style="solid", color="black", weight=3]; 159[label="compare3 vwx3 vwx4",fontsize=16,color="black",shape="box"];159 -> 179[label="",style="solid", color="black", weight=3]; 160[label="primCmpInt vwx3 vwx4",fontsize=16,color="burlywood",shape="triangle"];2928[label="vwx3/Pos vwx30",fontsize=10,color="white",style="solid",shape="box"];160 -> 2928[label="",style="solid", color="burlywood", weight=9]; 2928 -> 180[label="",style="solid", color="burlywood", weight=3]; 2929[label="vwx3/Neg vwx30",fontsize=10,color="white",style="solid",shape="box"];160 -> 2929[label="",style="solid", color="burlywood", weight=9]; 2929 -> 181[label="",style="solid", color="burlywood", weight=3]; 161[label="compare (Integer vwx30) vwx4",fontsize=16,color="burlywood",shape="box"];2930[label="vwx4/Integer vwx40",fontsize=10,color="white",style="solid",shape="box"];161 -> 2930[label="",style="solid", color="burlywood", weight=9]; 2930 -> 182[label="",style="solid", color="burlywood", weight=3]; 162[label="primCmpChar vwx3 vwx4",fontsize=16,color="burlywood",shape="box"];2931[label="vwx3/Char vwx30",fontsize=10,color="white",style="solid",shape="box"];162 -> 2931[label="",style="solid", color="burlywood", weight=9]; 2931 -> 183[label="",style="solid", color="burlywood", weight=3]; 163[label="compare2 vwx3 vwx4 (vwx3 == vwx4)",fontsize=16,color="burlywood",shape="box"];2932[label="vwx3/False",fontsize=10,color="white",style="solid",shape="box"];163 -> 2932[label="",style="solid", color="burlywood", weight=9]; 2932 -> 184[label="",style="solid", color="burlywood", weight=3]; 2933[label="vwx3/True",fontsize=10,color="white",style="solid",shape="box"];163 -> 2933[label="",style="solid", color="burlywood", weight=9]; 2933 -> 185[label="",style="solid", color="burlywood", weight=3]; 164[label="False",fontsize=16,color="green",shape="box"];165[label="False",fontsize=16,color="green",shape="box"];166[label="True",fontsize=16,color="green",shape="box"];167[label="compare () ()",fontsize=16,color="black",shape="box"];167 -> 186[label="",style="solid", color="black", weight=3]; 168[label="compare2 vwx3 vwx4 (vwx3 == vwx4)",fontsize=16,color="burlywood",shape="box"];2934[label="vwx3/Left vwx30",fontsize=10,color="white",style="solid",shape="box"];168 -> 2934[label="",style="solid", color="burlywood", weight=9]; 2934 -> 187[label="",style="solid", color="burlywood", weight=3]; 2935[label="vwx3/Right vwx30",fontsize=10,color="white",style="solid",shape="box"];168 -> 2935[label="",style="solid", color="burlywood", weight=9]; 2935 -> 188[label="",style="solid", color="burlywood", weight=3]; 169[label="primCmpFloat (Float vwx30 vwx31) vwx4",fontsize=16,color="burlywood",shape="box"];2936[label="vwx31/Pos vwx310",fontsize=10,color="white",style="solid",shape="box"];169 -> 2936[label="",style="solid", color="burlywood", weight=9]; 2936 -> 189[label="",style="solid", color="burlywood", weight=3]; 2937[label="vwx31/Neg vwx310",fontsize=10,color="white",style="solid",shape="box"];169 -> 2937[label="",style="solid", color="burlywood", weight=9]; 2937 -> 190[label="",style="solid", color="burlywood", weight=3]; 170[label="primCmpDouble (Double vwx30 vwx31) vwx4",fontsize=16,color="burlywood",shape="box"];2938[label="vwx31/Pos vwx310",fontsize=10,color="white",style="solid",shape="box"];170 -> 2938[label="",style="solid", color="burlywood", weight=9]; 2938 -> 191[label="",style="solid", color="burlywood", weight=3]; 2939[label="vwx31/Neg vwx310",fontsize=10,color="white",style="solid",shape="box"];170 -> 2939[label="",style="solid", color="burlywood", weight=9]; 2939 -> 192[label="",style="solid", color="burlywood", weight=3]; 171[label="compare2 vwx3 vwx4 (vwx3 == vwx4)",fontsize=16,color="burlywood",shape="box"];2940[label="vwx3/(vwx30,vwx31,vwx32)",fontsize=10,color="white",style="solid",shape="box"];171 -> 2940[label="",style="solid", color="burlywood", weight=9]; 2940 -> 193[label="",style="solid", color="burlywood", weight=3]; 172[label="compare (vwx30 :% vwx31) (vwx40 :% vwx41)",fontsize=16,color="black",shape="box"];172 -> 194[label="",style="solid", color="black", weight=3]; 173[label="compare (vwx30 : vwx31) (vwx40 : vwx41)",fontsize=16,color="black",shape="box"];173 -> 195[label="",style="solid", color="black", weight=3]; 174[label="compare (vwx30 : vwx31) []",fontsize=16,color="black",shape="box"];174 -> 196[label="",style="solid", color="black", weight=3]; 175[label="compare [] (vwx40 : vwx41)",fontsize=16,color="black",shape="box"];175 -> 197[label="",style="solid", color="black", weight=3]; 176[label="compare [] []",fontsize=16,color="black",shape="box"];176 -> 198[label="",style="solid", color="black", weight=3]; 177[label="compare2 vwx3 vwx4 (vwx3 == vwx4)",fontsize=16,color="burlywood",shape="box"];2941[label="vwx3/(vwx30,vwx31)",fontsize=10,color="white",style="solid",shape="box"];177 -> 2941[label="",style="solid", color="burlywood", weight=9]; 2941 -> 199[label="",style="solid", color="burlywood", weight=3]; 178[label="compare2 vwx3 vwx4 (vwx3 == vwx4)",fontsize=16,color="burlywood",shape="box"];2942[label="vwx3/LT",fontsize=10,color="white",style="solid",shape="box"];178 -> 2942[label="",style="solid", color="burlywood", weight=9]; 2942 -> 200[label="",style="solid", color="burlywood", weight=3]; 2943[label="vwx3/EQ",fontsize=10,color="white",style="solid",shape="box"];178 -> 2943[label="",style="solid", color="burlywood", weight=9]; 2943 -> 201[label="",style="solid", color="burlywood", weight=3]; 2944[label="vwx3/GT",fontsize=10,color="white",style="solid",shape="box"];178 -> 2944[label="",style="solid", color="burlywood", weight=9]; 2944 -> 202[label="",style="solid", color="burlywood", weight=3]; 179[label="compare2 vwx3 vwx4 (vwx3 == vwx4)",fontsize=16,color="burlywood",shape="box"];2945[label="vwx3/Nothing",fontsize=10,color="white",style="solid",shape="box"];179 -> 2945[label="",style="solid", color="burlywood", weight=9]; 2945 -> 203[label="",style="solid", color="burlywood", weight=3]; 2946[label="vwx3/Just vwx30",fontsize=10,color="white",style="solid",shape="box"];179 -> 2946[label="",style="solid", color="burlywood", weight=9]; 2946 -> 204[label="",style="solid", color="burlywood", weight=3]; 180[label="primCmpInt (Pos vwx30) vwx4",fontsize=16,color="burlywood",shape="box"];2947[label="vwx30/Succ vwx300",fontsize=10,color="white",style="solid",shape="box"];180 -> 2947[label="",style="solid", color="burlywood", weight=9]; 2947 -> 205[label="",style="solid", color="burlywood", weight=3]; 2948[label="vwx30/Zero",fontsize=10,color="white",style="solid",shape="box"];180 -> 2948[label="",style="solid", color="burlywood", weight=9]; 2948 -> 206[label="",style="solid", color="burlywood", weight=3]; 181[label="primCmpInt (Neg vwx30) vwx4",fontsize=16,color="burlywood",shape="box"];2949[label="vwx30/Succ vwx300",fontsize=10,color="white",style="solid",shape="box"];181 -> 2949[label="",style="solid", color="burlywood", weight=9]; 2949 -> 207[label="",style="solid", color="burlywood", weight=3]; 2950[label="vwx30/Zero",fontsize=10,color="white",style="solid",shape="box"];181 -> 2950[label="",style="solid", color="burlywood", weight=9]; 2950 -> 208[label="",style="solid", color="burlywood", weight=3]; 182[label="compare (Integer vwx30) (Integer vwx40)",fontsize=16,color="black",shape="box"];182 -> 209[label="",style="solid", color="black", weight=3]; 183[label="primCmpChar (Char vwx30) vwx4",fontsize=16,color="burlywood",shape="box"];2951[label="vwx4/Char vwx40",fontsize=10,color="white",style="solid",shape="box"];183 -> 2951[label="",style="solid", color="burlywood", weight=9]; 2951 -> 210[label="",style="solid", color="burlywood", weight=3]; 184[label="compare2 False vwx4 (False == vwx4)",fontsize=16,color="burlywood",shape="box"];2952[label="vwx4/False",fontsize=10,color="white",style="solid",shape="box"];184 -> 2952[label="",style="solid", color="burlywood", weight=9]; 2952 -> 211[label="",style="solid", color="burlywood", weight=3]; 2953[label="vwx4/True",fontsize=10,color="white",style="solid",shape="box"];184 -> 2953[label="",style="solid", color="burlywood", weight=9]; 2953 -> 212[label="",style="solid", color="burlywood", weight=3]; 185[label="compare2 True vwx4 (True == vwx4)",fontsize=16,color="burlywood",shape="box"];2954[label="vwx4/False",fontsize=10,color="white",style="solid",shape="box"];185 -> 2954[label="",style="solid", color="burlywood", weight=9]; 2954 -> 213[label="",style="solid", color="burlywood", weight=3]; 2955[label="vwx4/True",fontsize=10,color="white",style="solid",shape="box"];185 -> 2955[label="",style="solid", color="burlywood", weight=9]; 2955 -> 214[label="",style="solid", color="burlywood", weight=3]; 186[label="EQ",fontsize=16,color="green",shape="box"];187[label="compare2 (Left vwx30) vwx4 (Left vwx30 == vwx4)",fontsize=16,color="burlywood",shape="box"];2956[label="vwx4/Left vwx40",fontsize=10,color="white",style="solid",shape="box"];187 -> 2956[label="",style="solid", color="burlywood", weight=9]; 2956 -> 215[label="",style="solid", color="burlywood", weight=3]; 2957[label="vwx4/Right vwx40",fontsize=10,color="white",style="solid",shape="box"];187 -> 2957[label="",style="solid", color="burlywood", weight=9]; 2957 -> 216[label="",style="solid", color="burlywood", weight=3]; 188[label="compare2 (Right vwx30) vwx4 (Right vwx30 == vwx4)",fontsize=16,color="burlywood",shape="box"];2958[label="vwx4/Left vwx40",fontsize=10,color="white",style="solid",shape="box"];188 -> 2958[label="",style="solid", color="burlywood", weight=9]; 2958 -> 217[label="",style="solid", color="burlywood", weight=3]; 2959[label="vwx4/Right vwx40",fontsize=10,color="white",style="solid",shape="box"];188 -> 2959[label="",style="solid", color="burlywood", weight=9]; 2959 -> 218[label="",style="solid", color="burlywood", weight=3]; 189[label="primCmpFloat (Float vwx30 (Pos vwx310)) vwx4",fontsize=16,color="burlywood",shape="box"];2960[label="vwx4/Float vwx40 vwx41",fontsize=10,color="white",style="solid",shape="box"];189 -> 2960[label="",style="solid", color="burlywood", weight=9]; 2960 -> 219[label="",style="solid", color="burlywood", weight=3]; 190[label="primCmpFloat (Float vwx30 (Neg vwx310)) vwx4",fontsize=16,color="burlywood",shape="box"];2961[label="vwx4/Float vwx40 vwx41",fontsize=10,color="white",style="solid",shape="box"];190 -> 2961[label="",style="solid", color="burlywood", weight=9]; 2961 -> 220[label="",style="solid", color="burlywood", weight=3]; 191[label="primCmpDouble (Double vwx30 (Pos vwx310)) vwx4",fontsize=16,color="burlywood",shape="box"];2962[label="vwx4/Double vwx40 vwx41",fontsize=10,color="white",style="solid",shape="box"];191 -> 2962[label="",style="solid", color="burlywood", weight=9]; 2962 -> 221[label="",style="solid", color="burlywood", weight=3]; 192[label="primCmpDouble (Double vwx30 (Neg vwx310)) vwx4",fontsize=16,color="burlywood",shape="box"];2963[label="vwx4/Double vwx40 vwx41",fontsize=10,color="white",style="solid",shape="box"];192 -> 2963[label="",style="solid", color="burlywood", weight=9]; 2963 -> 222[label="",style="solid", color="burlywood", weight=3]; 193[label="compare2 (vwx30,vwx31,vwx32) vwx4 ((vwx30,vwx31,vwx32) == vwx4)",fontsize=16,color="burlywood",shape="box"];2964[label="vwx4/(vwx40,vwx41,vwx42)",fontsize=10,color="white",style="solid",shape="box"];193 -> 2964[label="",style="solid", color="burlywood", weight=9]; 2964 -> 223[label="",style="solid", color="burlywood", weight=3]; 194[label="compare (vwx30 * vwx41) (vwx40 * vwx31)",fontsize=16,color="blue",shape="box"];2965[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];194 -> 2965[label="",style="solid", color="blue", weight=9]; 2965 -> 224[label="",style="solid", color="blue", weight=3]; 2966[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];194 -> 2966[label="",style="solid", color="blue", weight=9]; 2966 -> 225[label="",style="solid", color="blue", weight=3]; 195 -> 226[label="",style="dashed", color="red", weight=0]; 195[label="primCompAux vwx30 vwx40 (compare vwx31 vwx41)",fontsize=16,color="magenta"];195 -> 227[label="",style="dashed", color="magenta", weight=3]; 196[label="GT",fontsize=16,color="green",shape="box"];197[label="LT",fontsize=16,color="green",shape="box"];198[label="EQ",fontsize=16,color="green",shape="box"];199[label="compare2 (vwx30,vwx31) vwx4 ((vwx30,vwx31) == vwx4)",fontsize=16,color="burlywood",shape="box"];2967[label="vwx4/(vwx40,vwx41)",fontsize=10,color="white",style="solid",shape="box"];199 -> 2967[label="",style="solid", color="burlywood", weight=9]; 2967 -> 228[label="",style="solid", color="burlywood", weight=3]; 200[label="compare2 LT vwx4 (LT == vwx4)",fontsize=16,color="burlywood",shape="box"];2968[label="vwx4/LT",fontsize=10,color="white",style="solid",shape="box"];200 -> 2968[label="",style="solid", color="burlywood", weight=9]; 2968 -> 229[label="",style="solid", color="burlywood", weight=3]; 2969[label="vwx4/EQ",fontsize=10,color="white",style="solid",shape="box"];200 -> 2969[label="",style="solid", color="burlywood", weight=9]; 2969 -> 230[label="",style="solid", color="burlywood", weight=3]; 2970[label="vwx4/GT",fontsize=10,color="white",style="solid",shape="box"];200 -> 2970[label="",style="solid", color="burlywood", weight=9]; 2970 -> 231[label="",style="solid", color="burlywood", weight=3]; 201[label="compare2 EQ vwx4 (EQ == vwx4)",fontsize=16,color="burlywood",shape="box"];2971[label="vwx4/LT",fontsize=10,color="white",style="solid",shape="box"];201 -> 2971[label="",style="solid", color="burlywood", weight=9]; 2971 -> 232[label="",style="solid", color="burlywood", weight=3]; 2972[label="vwx4/EQ",fontsize=10,color="white",style="solid",shape="box"];201 -> 2972[label="",style="solid", color="burlywood", weight=9]; 2972 -> 233[label="",style="solid", color="burlywood", weight=3]; 2973[label="vwx4/GT",fontsize=10,color="white",style="solid",shape="box"];201 -> 2973[label="",style="solid", color="burlywood", weight=9]; 2973 -> 234[label="",style="solid", color="burlywood", weight=3]; 202[label="compare2 GT vwx4 (GT == vwx4)",fontsize=16,color="burlywood",shape="box"];2974[label="vwx4/LT",fontsize=10,color="white",style="solid",shape="box"];202 -> 2974[label="",style="solid", color="burlywood", weight=9]; 2974 -> 235[label="",style="solid", color="burlywood", weight=3]; 2975[label="vwx4/EQ",fontsize=10,color="white",style="solid",shape="box"];202 -> 2975[label="",style="solid", color="burlywood", weight=9]; 2975 -> 236[label="",style="solid", color="burlywood", weight=3]; 2976[label="vwx4/GT",fontsize=10,color="white",style="solid",shape="box"];202 -> 2976[label="",style="solid", color="burlywood", weight=9]; 2976 -> 237[label="",style="solid", color="burlywood", weight=3]; 203[label="compare2 Nothing vwx4 (Nothing == vwx4)",fontsize=16,color="burlywood",shape="box"];2977[label="vwx4/Nothing",fontsize=10,color="white",style="solid",shape="box"];203 -> 2977[label="",style="solid", color="burlywood", weight=9]; 2977 -> 238[label="",style="solid", color="burlywood", weight=3]; 2978[label="vwx4/Just vwx40",fontsize=10,color="white",style="solid",shape="box"];203 -> 2978[label="",style="solid", color="burlywood", weight=9]; 2978 -> 239[label="",style="solid", color="burlywood", weight=3]; 204[label="compare2 (Just vwx30) vwx4 (Just vwx30 == vwx4)",fontsize=16,color="burlywood",shape="box"];2979[label="vwx4/Nothing",fontsize=10,color="white",style="solid",shape="box"];204 -> 2979[label="",style="solid", color="burlywood", weight=9]; 2979 -> 240[label="",style="solid", color="burlywood", weight=3]; 2980[label="vwx4/Just vwx40",fontsize=10,color="white",style="solid",shape="box"];204 -> 2980[label="",style="solid", color="burlywood", weight=9]; 2980 -> 241[label="",style="solid", color="burlywood", weight=3]; 205[label="primCmpInt (Pos (Succ vwx300)) vwx4",fontsize=16,color="burlywood",shape="box"];2981[label="vwx4/Pos vwx40",fontsize=10,color="white",style="solid",shape="box"];205 -> 2981[label="",style="solid", color="burlywood", weight=9]; 2981 -> 242[label="",style="solid", color="burlywood", weight=3]; 2982[label="vwx4/Neg vwx40",fontsize=10,color="white",style="solid",shape="box"];205 -> 2982[label="",style="solid", color="burlywood", weight=9]; 2982 -> 243[label="",style="solid", color="burlywood", weight=3]; 206[label="primCmpInt (Pos Zero) vwx4",fontsize=16,color="burlywood",shape="box"];2983[label="vwx4/Pos vwx40",fontsize=10,color="white",style="solid",shape="box"];206 -> 2983[label="",style="solid", color="burlywood", weight=9]; 2983 -> 244[label="",style="solid", color="burlywood", weight=3]; 2984[label="vwx4/Neg vwx40",fontsize=10,color="white",style="solid",shape="box"];206 -> 2984[label="",style="solid", color="burlywood", weight=9]; 2984 -> 245[label="",style="solid", color="burlywood", weight=3]; 207[label="primCmpInt (Neg (Succ vwx300)) vwx4",fontsize=16,color="burlywood",shape="box"];2985[label="vwx4/Pos vwx40",fontsize=10,color="white",style="solid",shape="box"];207 -> 2985[label="",style="solid", color="burlywood", weight=9]; 2985 -> 246[label="",style="solid", color="burlywood", weight=3]; 2986[label="vwx4/Neg vwx40",fontsize=10,color="white",style="solid",shape="box"];207 -> 2986[label="",style="solid", color="burlywood", weight=9]; 2986 -> 247[label="",style="solid", color="burlywood", weight=3]; 208[label="primCmpInt (Neg Zero) vwx4",fontsize=16,color="burlywood",shape="box"];2987[label="vwx4/Pos vwx40",fontsize=10,color="white",style="solid",shape="box"];208 -> 2987[label="",style="solid", color="burlywood", weight=9]; 2987 -> 248[label="",style="solid", color="burlywood", weight=3]; 2988[label="vwx4/Neg vwx40",fontsize=10,color="white",style="solid",shape="box"];208 -> 2988[label="",style="solid", color="burlywood", weight=9]; 2988 -> 249[label="",style="solid", color="burlywood", weight=3]; 209 -> 160[label="",style="dashed", color="red", weight=0]; 209[label="primCmpInt vwx30 vwx40",fontsize=16,color="magenta"];209 -> 250[label="",style="dashed", color="magenta", weight=3]; 209 -> 251[label="",style="dashed", color="magenta", weight=3]; 210[label="primCmpChar (Char vwx30) (Char vwx40)",fontsize=16,color="black",shape="box"];210 -> 252[label="",style="solid", color="black", weight=3]; 211[label="compare2 False False (False == False)",fontsize=16,color="black",shape="box"];211 -> 253[label="",style="solid", color="black", weight=3]; 212[label="compare2 False True (False == True)",fontsize=16,color="black",shape="box"];212 -> 254[label="",style="solid", color="black", weight=3]; 213[label="compare2 True False (True == False)",fontsize=16,color="black",shape="box"];213 -> 255[label="",style="solid", color="black", weight=3]; 214[label="compare2 True True (True == True)",fontsize=16,color="black",shape="box"];214 -> 256[label="",style="solid", color="black", weight=3]; 215[label="compare2 (Left vwx30) (Left vwx40) (Left vwx30 == Left vwx40)",fontsize=16,color="black",shape="box"];215 -> 257[label="",style="solid", color="black", weight=3]; 216[label="compare2 (Left vwx30) (Right vwx40) (Left vwx30 == Right vwx40)",fontsize=16,color="black",shape="box"];216 -> 258[label="",style="solid", color="black", weight=3]; 217[label="compare2 (Right vwx30) (Left vwx40) (Right vwx30 == Left vwx40)",fontsize=16,color="black",shape="box"];217 -> 259[label="",style="solid", color="black", weight=3]; 218[label="compare2 (Right vwx30) (Right vwx40) (Right vwx30 == Right vwx40)",fontsize=16,color="black",shape="box"];218 -> 260[label="",style="solid", color="black", weight=3]; 219[label="primCmpFloat (Float vwx30 (Pos vwx310)) (Float vwx40 vwx41)",fontsize=16,color="burlywood",shape="box"];2989[label="vwx41/Pos vwx410",fontsize=10,color="white",style="solid",shape="box"];219 -> 2989[label="",style="solid", color="burlywood", weight=9]; 2989 -> 261[label="",style="solid", color="burlywood", weight=3]; 2990[label="vwx41/Neg vwx410",fontsize=10,color="white",style="solid",shape="box"];219 -> 2990[label="",style="solid", color="burlywood", weight=9]; 2990 -> 262[label="",style="solid", color="burlywood", weight=3]; 220[label="primCmpFloat (Float vwx30 (Neg vwx310)) (Float vwx40 vwx41)",fontsize=16,color="burlywood",shape="box"];2991[label="vwx41/Pos vwx410",fontsize=10,color="white",style="solid",shape="box"];220 -> 2991[label="",style="solid", color="burlywood", weight=9]; 2991 -> 263[label="",style="solid", color="burlywood", weight=3]; 2992[label="vwx41/Neg vwx410",fontsize=10,color="white",style="solid",shape="box"];220 -> 2992[label="",style="solid", color="burlywood", weight=9]; 2992 -> 264[label="",style="solid", color="burlywood", weight=3]; 221[label="primCmpDouble (Double vwx30 (Pos vwx310)) (Double vwx40 vwx41)",fontsize=16,color="burlywood",shape="box"];2993[label="vwx41/Pos vwx410",fontsize=10,color="white",style="solid",shape="box"];221 -> 2993[label="",style="solid", color="burlywood", weight=9]; 2993 -> 265[label="",style="solid", color="burlywood", weight=3]; 2994[label="vwx41/Neg vwx410",fontsize=10,color="white",style="solid",shape="box"];221 -> 2994[label="",style="solid", color="burlywood", weight=9]; 2994 -> 266[label="",style="solid", color="burlywood", weight=3]; 222[label="primCmpDouble (Double vwx30 (Neg vwx310)) (Double vwx40 vwx41)",fontsize=16,color="burlywood",shape="box"];2995[label="vwx41/Pos vwx410",fontsize=10,color="white",style="solid",shape="box"];222 -> 2995[label="",style="solid", color="burlywood", weight=9]; 2995 -> 267[label="",style="solid", color="burlywood", weight=3]; 2996[label="vwx41/Neg vwx410",fontsize=10,color="white",style="solid",shape="box"];222 -> 2996[label="",style="solid", color="burlywood", weight=9]; 2996 -> 268[label="",style="solid", color="burlywood", weight=3]; 223[label="compare2 (vwx30,vwx31,vwx32) (vwx40,vwx41,vwx42) ((vwx30,vwx31,vwx32) == (vwx40,vwx41,vwx42))",fontsize=16,color="black",shape="box"];223 -> 269[label="",style="solid", color="black", weight=3]; 224 -> 119[label="",style="dashed", color="red", weight=0]; 224[label="compare (vwx30 * vwx41) (vwx40 * vwx31)",fontsize=16,color="magenta"];224 -> 270[label="",style="dashed", color="magenta", weight=3]; 224 -> 271[label="",style="dashed", color="magenta", weight=3]; 225 -> 120[label="",style="dashed", color="red", weight=0]; 225[label="compare (vwx30 * vwx41) (vwx40 * vwx31)",fontsize=16,color="magenta"];225 -> 272[label="",style="dashed", color="magenta", weight=3]; 225 -> 273[label="",style="dashed", color="magenta", weight=3]; 227 -> 115[label="",style="dashed", color="red", weight=0]; 227[label="compare vwx31 vwx41",fontsize=16,color="magenta"];227 -> 274[label="",style="dashed", color="magenta", weight=3]; 227 -> 275[label="",style="dashed", color="magenta", weight=3]; 226[label="primCompAux vwx30 vwx40 vwx8",fontsize=16,color="black",shape="triangle"];226 -> 276[label="",style="solid", color="black", weight=3]; 228[label="compare2 (vwx30,vwx31) (vwx40,vwx41) ((vwx30,vwx31) == (vwx40,vwx41))",fontsize=16,color="black",shape="box"];228 -> 277[label="",style="solid", color="black", weight=3]; 229[label="compare2 LT LT (LT == LT)",fontsize=16,color="black",shape="box"];229 -> 278[label="",style="solid", color="black", weight=3]; 230[label="compare2 LT EQ (LT == EQ)",fontsize=16,color="black",shape="box"];230 -> 279[label="",style="solid", color="black", weight=3]; 231[label="compare2 LT GT (LT == GT)",fontsize=16,color="black",shape="box"];231 -> 280[label="",style="solid", color="black", weight=3]; 232[label="compare2 EQ LT (EQ == LT)",fontsize=16,color="black",shape="box"];232 -> 281[label="",style="solid", color="black", weight=3]; 233[label="compare2 EQ EQ (EQ == EQ)",fontsize=16,color="black",shape="box"];233 -> 282[label="",style="solid", color="black", weight=3]; 234[label="compare2 EQ GT (EQ == GT)",fontsize=16,color="black",shape="box"];234 -> 283[label="",style="solid", color="black", weight=3]; 235[label="compare2 GT LT (GT == LT)",fontsize=16,color="black",shape="box"];235 -> 284[label="",style="solid", color="black", weight=3]; 236[label="compare2 GT EQ (GT == EQ)",fontsize=16,color="black",shape="box"];236 -> 285[label="",style="solid", color="black", weight=3]; 237[label="compare2 GT GT (GT == GT)",fontsize=16,color="black",shape="box"];237 -> 286[label="",style="solid", color="black", weight=3]; 238[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="black",shape="box"];238 -> 287[label="",style="solid", color="black", weight=3]; 239[label="compare2 Nothing (Just vwx40) (Nothing == Just vwx40)",fontsize=16,color="black",shape="box"];239 -> 288[label="",style="solid", color="black", weight=3]; 240[label="compare2 (Just vwx30) Nothing (Just vwx30 == Nothing)",fontsize=16,color="black",shape="box"];240 -> 289[label="",style="solid", color="black", weight=3]; 241[label="compare2 (Just vwx30) (Just vwx40) (Just vwx30 == Just vwx40)",fontsize=16,color="black",shape="box"];241 -> 290[label="",style="solid", color="black", weight=3]; 242[label="primCmpInt (Pos (Succ vwx300)) (Pos vwx40)",fontsize=16,color="black",shape="box"];242 -> 291[label="",style="solid", color="black", weight=3]; 243[label="primCmpInt (Pos (Succ vwx300)) (Neg vwx40)",fontsize=16,color="black",shape="box"];243 -> 292[label="",style="solid", color="black", weight=3]; 244[label="primCmpInt (Pos Zero) (Pos vwx40)",fontsize=16,color="burlywood",shape="box"];2997[label="vwx40/Succ vwx400",fontsize=10,color="white",style="solid",shape="box"];244 -> 2997[label="",style="solid", color="burlywood", weight=9]; 2997 -> 293[label="",style="solid", color="burlywood", weight=3]; 2998[label="vwx40/Zero",fontsize=10,color="white",style="solid",shape="box"];244 -> 2998[label="",style="solid", color="burlywood", weight=9]; 2998 -> 294[label="",style="solid", color="burlywood", weight=3]; 245[label="primCmpInt (Pos Zero) (Neg vwx40)",fontsize=16,color="burlywood",shape="box"];2999[label="vwx40/Succ vwx400",fontsize=10,color="white",style="solid",shape="box"];245 -> 2999[label="",style="solid", color="burlywood", weight=9]; 2999 -> 295[label="",style="solid", color="burlywood", weight=3]; 3000[label="vwx40/Zero",fontsize=10,color="white",style="solid",shape="box"];245 -> 3000[label="",style="solid", color="burlywood", weight=9]; 3000 -> 296[label="",style="solid", color="burlywood", weight=3]; 246[label="primCmpInt (Neg (Succ vwx300)) (Pos vwx40)",fontsize=16,color="black",shape="box"];246 -> 297[label="",style="solid", color="black", weight=3]; 247[label="primCmpInt (Neg (Succ vwx300)) (Neg vwx40)",fontsize=16,color="black",shape="box"];247 -> 298[label="",style="solid", color="black", weight=3]; 248[label="primCmpInt (Neg Zero) (Pos vwx40)",fontsize=16,color="burlywood",shape="box"];3001[label="vwx40/Succ vwx400",fontsize=10,color="white",style="solid",shape="box"];248 -> 3001[label="",style="solid", color="burlywood", weight=9]; 3001 -> 299[label="",style="solid", color="burlywood", weight=3]; 3002[label="vwx40/Zero",fontsize=10,color="white",style="solid",shape="box"];248 -> 3002[label="",style="solid", color="burlywood", weight=9]; 3002 -> 300[label="",style="solid", color="burlywood", weight=3]; 249[label="primCmpInt (Neg Zero) (Neg vwx40)",fontsize=16,color="burlywood",shape="box"];3003[label="vwx40/Succ vwx400",fontsize=10,color="white",style="solid",shape="box"];249 -> 3003[label="",style="solid", color="burlywood", weight=9]; 3003 -> 301[label="",style="solid", color="burlywood", weight=3]; 3004[label="vwx40/Zero",fontsize=10,color="white",style="solid",shape="box"];249 -> 3004[label="",style="solid", color="burlywood", weight=9]; 3004 -> 302[label="",style="solid", color="burlywood", weight=3]; 250[label="vwx40",fontsize=16,color="green",shape="box"];251[label="vwx30",fontsize=16,color="green",shape="box"];252[label="primCmpNat vwx30 vwx40",fontsize=16,color="burlywood",shape="triangle"];3005[label="vwx30/Succ vwx300",fontsize=10,color="white",style="solid",shape="box"];252 -> 3005[label="",style="solid", color="burlywood", weight=9]; 3005 -> 303[label="",style="solid", color="burlywood", weight=3]; 3006[label="vwx30/Zero",fontsize=10,color="white",style="solid",shape="box"];252 -> 3006[label="",style="solid", color="burlywood", weight=9]; 3006 -> 304[label="",style="solid", color="burlywood", weight=3]; 253[label="compare2 False False True",fontsize=16,color="black",shape="box"];253 -> 305[label="",style="solid", color="black", weight=3]; 254[label="compare2 False True False",fontsize=16,color="black",shape="box"];254 -> 306[label="",style="solid", color="black", weight=3]; 255[label="compare2 True False False",fontsize=16,color="black",shape="box"];255 -> 307[label="",style="solid", color="black", weight=3]; 256[label="compare2 True True True",fontsize=16,color="black",shape="box"];256 -> 308[label="",style="solid", color="black", weight=3]; 257 -> 309[label="",style="dashed", color="red", weight=0]; 257[label="compare2 (Left vwx30) (Left vwx40) (vwx30 == vwx40)",fontsize=16,color="magenta"];257 -> 310[label="",style="dashed", color="magenta", weight=3]; 257 -> 311[label="",style="dashed", color="magenta", weight=3]; 257 -> 312[label="",style="dashed", color="magenta", weight=3]; 258[label="compare2 (Left vwx30) (Right vwx40) False",fontsize=16,color="black",shape="box"];258 -> 313[label="",style="solid", color="black", weight=3]; 259[label="compare2 (Right vwx30) (Left vwx40) False",fontsize=16,color="black",shape="box"];259 -> 314[label="",style="solid", color="black", weight=3]; 260 -> 315[label="",style="dashed", color="red", weight=0]; 260[label="compare2 (Right vwx30) (Right vwx40) (vwx30 == vwx40)",fontsize=16,color="magenta"];260 -> 316[label="",style="dashed", color="magenta", weight=3]; 260 -> 317[label="",style="dashed", color="magenta", weight=3]; 260 -> 318[label="",style="dashed", color="magenta", weight=3]; 261[label="primCmpFloat (Float vwx30 (Pos vwx310)) (Float vwx40 (Pos vwx410))",fontsize=16,color="black",shape="box"];261 -> 319[label="",style="solid", color="black", weight=3]; 262[label="primCmpFloat (Float vwx30 (Pos vwx310)) (Float vwx40 (Neg vwx410))",fontsize=16,color="black",shape="box"];262 -> 320[label="",style="solid", color="black", weight=3]; 263[label="primCmpFloat (Float vwx30 (Neg vwx310)) (Float vwx40 (Pos vwx410))",fontsize=16,color="black",shape="box"];263 -> 321[label="",style="solid", color="black", weight=3]; 264[label="primCmpFloat (Float vwx30 (Neg vwx310)) (Float vwx40 (Neg vwx410))",fontsize=16,color="black",shape="box"];264 -> 322[label="",style="solid", color="black", weight=3]; 265[label="primCmpDouble (Double vwx30 (Pos vwx310)) (Double vwx40 (Pos vwx410))",fontsize=16,color="black",shape="box"];265 -> 323[label="",style="solid", color="black", weight=3]; 266[label="primCmpDouble (Double vwx30 (Pos vwx310)) (Double vwx40 (Neg vwx410))",fontsize=16,color="black",shape="box"];266 -> 324[label="",style="solid", color="black", weight=3]; 267[label="primCmpDouble (Double vwx30 (Neg vwx310)) (Double vwx40 (Pos vwx410))",fontsize=16,color="black",shape="box"];267 -> 325[label="",style="solid", color="black", weight=3]; 268[label="primCmpDouble (Double vwx30 (Neg vwx310)) (Double vwx40 (Neg vwx410))",fontsize=16,color="black",shape="box"];268 -> 326[label="",style="solid", color="black", weight=3]; 269 -> 951[label="",style="dashed", color="red", weight=0]; 269[label="compare2 (vwx30,vwx31,vwx32) (vwx40,vwx41,vwx42) (vwx30 == vwx40 && vwx31 == vwx41 && vwx32 == vwx42)",fontsize=16,color="magenta"];269 -> 952[label="",style="dashed", color="magenta", weight=3]; 269 -> 953[label="",style="dashed", color="magenta", weight=3]; 269 -> 954[label="",style="dashed", color="magenta", weight=3]; 269 -> 955[label="",style="dashed", color="magenta", weight=3]; 269 -> 956[label="",style="dashed", color="magenta", weight=3]; 269 -> 957[label="",style="dashed", color="magenta", weight=3]; 269 -> 958[label="",style="dashed", color="magenta", weight=3]; 270[label="vwx40 * vwx31",fontsize=16,color="black",shape="triangle"];270 -> 335[label="",style="solid", color="black", weight=3]; 271 -> 270[label="",style="dashed", color="red", weight=0]; 271[label="vwx30 * vwx41",fontsize=16,color="magenta"];271 -> 336[label="",style="dashed", color="magenta", weight=3]; 271 -> 337[label="",style="dashed", color="magenta", weight=3]; 272[label="vwx40 * vwx31",fontsize=16,color="burlywood",shape="triangle"];3007[label="vwx40/Integer vwx400",fontsize=10,color="white",style="solid",shape="box"];272 -> 3007[label="",style="solid", color="burlywood", weight=9]; 3007 -> 338[label="",style="solid", color="burlywood", weight=3]; 273 -> 272[label="",style="dashed", color="red", weight=0]; 273[label="vwx30 * vwx41",fontsize=16,color="magenta"];273 -> 339[label="",style="dashed", color="magenta", weight=3]; 273 -> 340[label="",style="dashed", color="magenta", weight=3]; 274[label="vwx41",fontsize=16,color="green",shape="box"];275[label="vwx31",fontsize=16,color="green",shape="box"];276 -> 341[label="",style="dashed", color="red", weight=0]; 276[label="primCompAux0 vwx8 (compare vwx30 vwx40)",fontsize=16,color="magenta"];276 -> 342[label="",style="dashed", color="magenta", weight=3]; 276 -> 343[label="",style="dashed", color="magenta", weight=3]; 277 -> 796[label="",style="dashed", color="red", weight=0]; 277[label="compare2 (vwx30,vwx31) (vwx40,vwx41) (vwx30 == vwx40 && vwx31 == vwx41)",fontsize=16,color="magenta"];277 -> 797[label="",style="dashed", color="magenta", weight=3]; 277 -> 798[label="",style="dashed", color="magenta", weight=3]; 277 -> 799[label="",style="dashed", color="magenta", weight=3]; 277 -> 800[label="",style="dashed", color="magenta", weight=3]; 277 -> 801[label="",style="dashed", color="magenta", weight=3]; 278[label="compare2 LT LT True",fontsize=16,color="black",shape="box"];278 -> 350[label="",style="solid", color="black", weight=3]; 279[label="compare2 LT EQ False",fontsize=16,color="black",shape="box"];279 -> 351[label="",style="solid", color="black", weight=3]; 280[label="compare2 LT GT False",fontsize=16,color="black",shape="box"];280 -> 352[label="",style="solid", color="black", weight=3]; 281[label="compare2 EQ LT False",fontsize=16,color="black",shape="box"];281 -> 353[label="",style="solid", color="black", weight=3]; 282[label="compare2 EQ EQ True",fontsize=16,color="black",shape="box"];282 -> 354[label="",style="solid", color="black", weight=3]; 283[label="compare2 EQ GT False",fontsize=16,color="black",shape="box"];283 -> 355[label="",style="solid", color="black", weight=3]; 284[label="compare2 GT LT False",fontsize=16,color="black",shape="box"];284 -> 356[label="",style="solid", color="black", weight=3]; 285[label="compare2 GT EQ False",fontsize=16,color="black",shape="box"];285 -> 357[label="",style="solid", color="black", weight=3]; 286[label="compare2 GT GT True",fontsize=16,color="black",shape="box"];286 -> 358[label="",style="solid", color="black", weight=3]; 287[label="compare2 Nothing Nothing True",fontsize=16,color="black",shape="box"];287 -> 359[label="",style="solid", color="black", weight=3]; 288[label="compare2 Nothing (Just vwx40) False",fontsize=16,color="black",shape="box"];288 -> 360[label="",style="solid", color="black", weight=3]; 289[label="compare2 (Just vwx30) Nothing False",fontsize=16,color="black",shape="box"];289 -> 361[label="",style="solid", color="black", weight=3]; 290 -> 362[label="",style="dashed", color="red", weight=0]; 290[label="compare2 (Just vwx30) (Just vwx40) (vwx30 == vwx40)",fontsize=16,color="magenta"];290 -> 363[label="",style="dashed", color="magenta", weight=3]; 290 -> 364[label="",style="dashed", color="magenta", weight=3]; 290 -> 365[label="",style="dashed", color="magenta", weight=3]; 291 -> 252[label="",style="dashed", color="red", weight=0]; 291[label="primCmpNat (Succ vwx300) vwx40",fontsize=16,color="magenta"];291 -> 366[label="",style="dashed", color="magenta", weight=3]; 291 -> 367[label="",style="dashed", color="magenta", weight=3]; 292[label="GT",fontsize=16,color="green",shape="box"];293[label="primCmpInt (Pos Zero) (Pos (Succ vwx400))",fontsize=16,color="black",shape="box"];293 -> 368[label="",style="solid", color="black", weight=3]; 294[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];294 -> 369[label="",style="solid", color="black", weight=3]; 295[label="primCmpInt (Pos Zero) (Neg (Succ vwx400))",fontsize=16,color="black",shape="box"];295 -> 370[label="",style="solid", color="black", weight=3]; 296[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];296 -> 371[label="",style="solid", color="black", weight=3]; 297[label="LT",fontsize=16,color="green",shape="box"];298 -> 252[label="",style="dashed", color="red", weight=0]; 298[label="primCmpNat vwx40 (Succ vwx300)",fontsize=16,color="magenta"];298 -> 372[label="",style="dashed", color="magenta", weight=3]; 298 -> 373[label="",style="dashed", color="magenta", weight=3]; 299[label="primCmpInt (Neg Zero) (Pos (Succ vwx400))",fontsize=16,color="black",shape="box"];299 -> 374[label="",style="solid", color="black", weight=3]; 300[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];300 -> 375[label="",style="solid", color="black", weight=3]; 301[label="primCmpInt (Neg Zero) (Neg (Succ vwx400))",fontsize=16,color="black",shape="box"];301 -> 376[label="",style="solid", color="black", weight=3]; 302[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];302 -> 377[label="",style="solid", color="black", weight=3]; 303[label="primCmpNat (Succ vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];3008[label="vwx40/Succ vwx400",fontsize=10,color="white",style="solid",shape="box"];303 -> 3008[label="",style="solid", color="burlywood", weight=9]; 3008 -> 378[label="",style="solid", color="burlywood", weight=3]; 3009[label="vwx40/Zero",fontsize=10,color="white",style="solid",shape="box"];303 -> 3009[label="",style="solid", color="burlywood", weight=9]; 3009 -> 379[label="",style="solid", color="burlywood", weight=3]; 304[label="primCmpNat Zero vwx40",fontsize=16,color="burlywood",shape="box"];3010[label="vwx40/Succ vwx400",fontsize=10,color="white",style="solid",shape="box"];304 -> 3010[label="",style="solid", color="burlywood", weight=9]; 3010 -> 380[label="",style="solid", color="burlywood", weight=3]; 3011[label="vwx40/Zero",fontsize=10,color="white",style="solid",shape="box"];304 -> 3011[label="",style="solid", color="burlywood", weight=9]; 3011 -> 381[label="",style="solid", color="burlywood", weight=3]; 305[label="EQ",fontsize=16,color="green",shape="box"];306[label="compare1 False True (False <= True)",fontsize=16,color="black",shape="box"];306 -> 382[label="",style="solid", color="black", weight=3]; 307[label="compare1 True False (True <= False)",fontsize=16,color="black",shape="box"];307 -> 383[label="",style="solid", color="black", weight=3]; 308[label="EQ",fontsize=16,color="green",shape="box"];310[label="vwx30",fontsize=16,color="green",shape="box"];311[label="vwx30 == vwx40",fontsize=16,color="blue",shape="box"];3012[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];311 -> 3012[label="",style="solid", color="blue", weight=9]; 3012 -> 384[label="",style="solid", color="blue", weight=3]; 3013[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];311 -> 3013[label="",style="solid", color="blue", weight=9]; 3013 -> 385[label="",style="solid", color="blue", weight=3]; 3014[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];311 -> 3014[label="",style="solid", color="blue", weight=9]; 3014 -> 386[label="",style="solid", color="blue", weight=3]; 3015[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];311 -> 3015[label="",style="solid", color="blue", weight=9]; 3015 -> 387[label="",style="solid", color="blue", weight=3]; 3016[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];311 -> 3016[label="",style="solid", color="blue", weight=9]; 3016 -> 388[label="",style="solid", color="blue", weight=3]; 3017[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];311 -> 3017[label="",style="solid", color="blue", weight=9]; 3017 -> 389[label="",style="solid", color="blue", weight=3]; 3018[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];311 -> 3018[label="",style="solid", color="blue", weight=9]; 3018 -> 390[label="",style="solid", color="blue", weight=3]; 3019[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];311 -> 3019[label="",style="solid", color="blue", weight=9]; 3019 -> 391[label="",style="solid", color="blue", weight=3]; 3020[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];311 -> 3020[label="",style="solid", color="blue", weight=9]; 3020 -> 392[label="",style="solid", color="blue", weight=3]; 3021[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];311 -> 3021[label="",style="solid", color="blue", weight=9]; 3021 -> 393[label="",style="solid", color="blue", weight=3]; 3022[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];311 -> 3022[label="",style="solid", color="blue", weight=9]; 3022 -> 394[label="",style="solid", color="blue", weight=3]; 3023[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];311 -> 3023[label="",style="solid", color="blue", weight=9]; 3023 -> 395[label="",style="solid", color="blue", weight=3]; 3024[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];311 -> 3024[label="",style="solid", color="blue", weight=9]; 3024 -> 396[label="",style="solid", color="blue", weight=3]; 3025[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];311 -> 3025[label="",style="solid", color="blue", weight=9]; 3025 -> 397[label="",style="solid", color="blue", weight=3]; 312[label="vwx40",fontsize=16,color="green",shape="box"];309[label="compare2 (Left vwx13) (Left vwx14) vwx15",fontsize=16,color="burlywood",shape="triangle"];3026[label="vwx15/False",fontsize=10,color="white",style="solid",shape="box"];309 -> 3026[label="",style="solid", color="burlywood", weight=9]; 3026 -> 398[label="",style="solid", color="burlywood", weight=3]; 3027[label="vwx15/True",fontsize=10,color="white",style="solid",shape="box"];309 -> 3027[label="",style="solid", color="burlywood", weight=9]; 3027 -> 399[label="",style="solid", color="burlywood", weight=3]; 313[label="compare1 (Left vwx30) (Right vwx40) (Left vwx30 <= Right vwx40)",fontsize=16,color="black",shape="box"];313 -> 400[label="",style="solid", color="black", weight=3]; 314[label="compare1 (Right vwx30) (Left vwx40) (Right vwx30 <= Left vwx40)",fontsize=16,color="black",shape="box"];314 -> 401[label="",style="solid", color="black", weight=3]; 316[label="vwx30",fontsize=16,color="green",shape="box"];317[label="vwx40",fontsize=16,color="green",shape="box"];318[label="vwx30 == vwx40",fontsize=16,color="blue",shape="box"];3028[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];318 -> 3028[label="",style="solid", color="blue", weight=9]; 3028 -> 402[label="",style="solid", color="blue", weight=3]; 3029[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];318 -> 3029[label="",style="solid", color="blue", weight=9]; 3029 -> 403[label="",style="solid", color="blue", weight=3]; 3030[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];318 -> 3030[label="",style="solid", color="blue", weight=9]; 3030 -> 404[label="",style="solid", color="blue", weight=3]; 3031[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];318 -> 3031[label="",style="solid", color="blue", weight=9]; 3031 -> 405[label="",style="solid", color="blue", weight=3]; 3032[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];318 -> 3032[label="",style="solid", color="blue", weight=9]; 3032 -> 406[label="",style="solid", color="blue", weight=3]; 3033[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];318 -> 3033[label="",style="solid", color="blue", weight=9]; 3033 -> 407[label="",style="solid", color="blue", weight=3]; 3034[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];318 -> 3034[label="",style="solid", color="blue", weight=9]; 3034 -> 408[label="",style="solid", color="blue", weight=3]; 3035[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];318 -> 3035[label="",style="solid", color="blue", weight=9]; 3035 -> 409[label="",style="solid", color="blue", weight=3]; 3036[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];318 -> 3036[label="",style="solid", color="blue", weight=9]; 3036 -> 410[label="",style="solid", color="blue", weight=3]; 3037[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];318 -> 3037[label="",style="solid", color="blue", weight=9]; 3037 -> 411[label="",style="solid", color="blue", weight=3]; 3038[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];318 -> 3038[label="",style="solid", color="blue", weight=9]; 3038 -> 412[label="",style="solid", color="blue", weight=3]; 3039[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];318 -> 3039[label="",style="solid", color="blue", weight=9]; 3039 -> 413[label="",style="solid", color="blue", weight=3]; 3040[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];318 -> 3040[label="",style="solid", color="blue", weight=9]; 3040 -> 414[label="",style="solid", color="blue", weight=3]; 3041[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];318 -> 3041[label="",style="solid", color="blue", weight=9]; 3041 -> 415[label="",style="solid", color="blue", weight=3]; 315[label="compare2 (Right vwx20) (Right vwx21) vwx22",fontsize=16,color="burlywood",shape="triangle"];3042[label="vwx22/False",fontsize=10,color="white",style="solid",shape="box"];315 -> 3042[label="",style="solid", color="burlywood", weight=9]; 3042 -> 416[label="",style="solid", color="burlywood", weight=3]; 3043[label="vwx22/True",fontsize=10,color="white",style="solid",shape="box"];315 -> 3043[label="",style="solid", color="burlywood", weight=9]; 3043 -> 417[label="",style="solid", color="burlywood", weight=3]; 319 -> 119[label="",style="dashed", color="red", weight=0]; 319[label="compare (vwx30 * Pos vwx410) (Pos vwx310 * vwx40)",fontsize=16,color="magenta"];319 -> 418[label="",style="dashed", color="magenta", weight=3]; 319 -> 419[label="",style="dashed", color="magenta", weight=3]; 320 -> 119[label="",style="dashed", color="red", weight=0]; 320[label="compare (vwx30 * Pos vwx410) (Neg vwx310 * vwx40)",fontsize=16,color="magenta"];320 -> 420[label="",style="dashed", color="magenta", weight=3]; 320 -> 421[label="",style="dashed", color="magenta", weight=3]; 321 -> 119[label="",style="dashed", color="red", weight=0]; 321[label="compare (vwx30 * Neg vwx410) (Pos vwx310 * vwx40)",fontsize=16,color="magenta"];321 -> 422[label="",style="dashed", color="magenta", weight=3]; 321 -> 423[label="",style="dashed", color="magenta", weight=3]; 322 -> 119[label="",style="dashed", color="red", weight=0]; 322[label="compare (vwx30 * Neg vwx410) (Neg vwx310 * vwx40)",fontsize=16,color="magenta"];322 -> 424[label="",style="dashed", color="magenta", weight=3]; 322 -> 425[label="",style="dashed", color="magenta", weight=3]; 323 -> 119[label="",style="dashed", color="red", weight=0]; 323[label="compare (vwx30 * Pos vwx410) (Pos vwx310 * vwx40)",fontsize=16,color="magenta"];323 -> 426[label="",style="dashed", color="magenta", weight=3]; 323 -> 427[label="",style="dashed", color="magenta", weight=3]; 324 -> 119[label="",style="dashed", color="red", weight=0]; 324[label="compare (vwx30 * Pos vwx410) (Neg vwx310 * vwx40)",fontsize=16,color="magenta"];324 -> 428[label="",style="dashed", color="magenta", weight=3]; 324 -> 429[label="",style="dashed", color="magenta", weight=3]; 325 -> 119[label="",style="dashed", color="red", weight=0]; 325[label="compare (vwx30 * Neg vwx410) (Pos vwx310 * vwx40)",fontsize=16,color="magenta"];325 -> 430[label="",style="dashed", color="magenta", weight=3]; 325 -> 431[label="",style="dashed", color="magenta", weight=3]; 326 -> 119[label="",style="dashed", color="red", weight=0]; 326[label="compare (vwx30 * Neg vwx410) (Neg vwx310 * vwx40)",fontsize=16,color="magenta"];326 -> 432[label="",style="dashed", color="magenta", weight=3]; 326 -> 433[label="",style="dashed", color="magenta", weight=3]; 952[label="vwx31",fontsize=16,color="green",shape="box"];953 -> 1003[label="",style="dashed", color="red", weight=0]; 953[label="vwx30 == vwx40 && vwx31 == vwx41 && vwx32 == vwx42",fontsize=16,color="magenta"];953 -> 1004[label="",style="dashed", color="magenta", weight=3]; 953 -> 1005[label="",style="dashed", color="magenta", weight=3]; 954[label="vwx32",fontsize=16,color="green",shape="box"];955[label="vwx41",fontsize=16,color="green",shape="box"];956[label="vwx30",fontsize=16,color="green",shape="box"];957[label="vwx40",fontsize=16,color="green",shape="box"];958[label="vwx42",fontsize=16,color="green",shape="box"];951[label="compare2 (vwx69,vwx70,vwx71) (vwx72,vwx73,vwx74) vwx108",fontsize=16,color="burlywood",shape="triangle"];3044[label="vwx108/False",fontsize=10,color="white",style="solid",shape="box"];951 -> 3044[label="",style="solid", color="burlywood", weight=9]; 3044 -> 998[label="",style="solid", color="burlywood", weight=3]; 3045[label="vwx108/True",fontsize=10,color="white",style="solid",shape="box"];951 -> 3045[label="",style="solid", color="burlywood", weight=9]; 3045 -> 999[label="",style="solid", color="burlywood", weight=3]; 335[label="primMulInt vwx40 vwx31",fontsize=16,color="burlywood",shape="triangle"];3046[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];335 -> 3046[label="",style="solid", color="burlywood", weight=9]; 3046 -> 450[label="",style="solid", color="burlywood", weight=3]; 3047[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];335 -> 3047[label="",style="solid", color="burlywood", weight=9]; 3047 -> 451[label="",style="solid", color="burlywood", weight=3]; 336[label="vwx30",fontsize=16,color="green",shape="box"];337[label="vwx41",fontsize=16,color="green",shape="box"];338[label="Integer vwx400 * vwx31",fontsize=16,color="burlywood",shape="box"];3048[label="vwx31/Integer vwx310",fontsize=10,color="white",style="solid",shape="box"];338 -> 3048[label="",style="solid", color="burlywood", weight=9]; 3048 -> 452[label="",style="solid", color="burlywood", weight=3]; 339[label="vwx30",fontsize=16,color="green",shape="box"];340[label="vwx41",fontsize=16,color="green",shape="box"];342[label="compare vwx30 vwx40",fontsize=16,color="blue",shape="box"];3049[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];342 -> 3049[label="",style="solid", color="blue", weight=9]; 3049 -> 453[label="",style="solid", color="blue", weight=3]; 3050[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];342 -> 3050[label="",style="solid", color="blue", weight=9]; 3050 -> 454[label="",style="solid", color="blue", weight=3]; 3051[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];342 -> 3051[label="",style="solid", color="blue", weight=9]; 3051 -> 455[label="",style="solid", color="blue", weight=3]; 3052[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];342 -> 3052[label="",style="solid", color="blue", weight=9]; 3052 -> 456[label="",style="solid", color="blue", weight=3]; 3053[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];342 -> 3053[label="",style="solid", color="blue", weight=9]; 3053 -> 457[label="",style="solid", color="blue", weight=3]; 3054[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];342 -> 3054[label="",style="solid", color="blue", weight=9]; 3054 -> 458[label="",style="solid", color="blue", weight=3]; 3055[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];342 -> 3055[label="",style="solid", color="blue", weight=9]; 3055 -> 459[label="",style="solid", color="blue", weight=3]; 3056[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];342 -> 3056[label="",style="solid", color="blue", weight=9]; 3056 -> 460[label="",style="solid", color="blue", weight=3]; 3057[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];342 -> 3057[label="",style="solid", color="blue", weight=9]; 3057 -> 461[label="",style="solid", color="blue", weight=3]; 3058[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];342 -> 3058[label="",style="solid", color="blue", weight=9]; 3058 -> 462[label="",style="solid", color="blue", weight=3]; 3059[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];342 -> 3059[label="",style="solid", color="blue", weight=9]; 3059 -> 463[label="",style="solid", color="blue", weight=3]; 3060[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];342 -> 3060[label="",style="solid", color="blue", weight=9]; 3060 -> 464[label="",style="solid", color="blue", weight=3]; 3061[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];342 -> 3061[label="",style="solid", color="blue", weight=9]; 3061 -> 465[label="",style="solid", color="blue", weight=3]; 3062[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];342 -> 3062[label="",style="solid", color="blue", weight=9]; 3062 -> 466[label="",style="solid", color="blue", weight=3]; 343[label="vwx8",fontsize=16,color="green",shape="box"];341[label="primCompAux0 vwx41 vwx42",fontsize=16,color="burlywood",shape="triangle"];3063[label="vwx42/LT",fontsize=10,color="white",style="solid",shape="box"];341 -> 3063[label="",style="solid", color="burlywood", weight=9]; 3063 -> 467[label="",style="solid", color="burlywood", weight=3]; 3064[label="vwx42/EQ",fontsize=10,color="white",style="solid",shape="box"];341 -> 3064[label="",style="solid", color="burlywood", weight=9]; 3064 -> 468[label="",style="solid", color="burlywood", weight=3]; 3065[label="vwx42/GT",fontsize=10,color="white",style="solid",shape="box"];341 -> 3065[label="",style="solid", color="burlywood", weight=9]; 3065 -> 469[label="",style="solid", color="burlywood", weight=3]; 797[label="vwx31",fontsize=16,color="green",shape="box"];798[label="vwx41",fontsize=16,color="green",shape="box"];799[label="vwx40",fontsize=16,color="green",shape="box"];800[label="vwx30",fontsize=16,color="green",shape="box"];801 -> 1003[label="",style="dashed", color="red", weight=0]; 801[label="vwx30 == vwx40 && vwx31 == vwx41",fontsize=16,color="magenta"];801 -> 1006[label="",style="dashed", color="magenta", weight=3]; 801 -> 1007[label="",style="dashed", color="magenta", weight=3]; 796[label="compare2 (vwx82,vwx83) (vwx84,vwx85) vwx86",fontsize=16,color="burlywood",shape="triangle"];3066[label="vwx86/False",fontsize=10,color="white",style="solid",shape="box"];796 -> 3066[label="",style="solid", color="burlywood", weight=9]; 3066 -> 821[label="",style="solid", color="burlywood", weight=3]; 3067[label="vwx86/True",fontsize=10,color="white",style="solid",shape="box"];796 -> 3067[label="",style="solid", color="burlywood", weight=9]; 3067 -> 822[label="",style="solid", color="burlywood", weight=3]; 350[label="EQ",fontsize=16,color="green",shape="box"];351[label="compare1 LT EQ (LT <= EQ)",fontsize=16,color="black",shape="box"];351 -> 486[label="",style="solid", color="black", weight=3]; 352[label="compare1 LT GT (LT <= GT)",fontsize=16,color="black",shape="box"];352 -> 487[label="",style="solid", color="black", weight=3]; 353[label="compare1 EQ LT (EQ <= LT)",fontsize=16,color="black",shape="box"];353 -> 488[label="",style="solid", color="black", weight=3]; 354[label="EQ",fontsize=16,color="green",shape="box"];355[label="compare1 EQ GT (EQ <= GT)",fontsize=16,color="black",shape="box"];355 -> 489[label="",style="solid", color="black", weight=3]; 356[label="compare1 GT LT (GT <= LT)",fontsize=16,color="black",shape="box"];356 -> 490[label="",style="solid", color="black", weight=3]; 357[label="compare1 GT EQ (GT <= EQ)",fontsize=16,color="black",shape="box"];357 -> 491[label="",style="solid", color="black", weight=3]; 358[label="EQ",fontsize=16,color="green",shape="box"];359[label="EQ",fontsize=16,color="green",shape="box"];360[label="compare1 Nothing (Just vwx40) (Nothing <= Just vwx40)",fontsize=16,color="black",shape="box"];360 -> 492[label="",style="solid", color="black", weight=3]; 361[label="compare1 (Just vwx30) Nothing (Just vwx30 <= Nothing)",fontsize=16,color="black",shape="box"];361 -> 493[label="",style="solid", color="black", weight=3]; 363[label="vwx30",fontsize=16,color="green",shape="box"];364[label="vwx30 == vwx40",fontsize=16,color="blue",shape="box"];3068[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];364 -> 3068[label="",style="solid", color="blue", weight=9]; 3068 -> 494[label="",style="solid", color="blue", weight=3]; 3069[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];364 -> 3069[label="",style="solid", color="blue", weight=9]; 3069 -> 495[label="",style="solid", color="blue", weight=3]; 3070[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];364 -> 3070[label="",style="solid", color="blue", weight=9]; 3070 -> 496[label="",style="solid", color="blue", weight=3]; 3071[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];364 -> 3071[label="",style="solid", color="blue", weight=9]; 3071 -> 497[label="",style="solid", color="blue", weight=3]; 3072[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];364 -> 3072[label="",style="solid", color="blue", weight=9]; 3072 -> 498[label="",style="solid", color="blue", weight=3]; 3073[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];364 -> 3073[label="",style="solid", color="blue", weight=9]; 3073 -> 499[label="",style="solid", color="blue", weight=3]; 3074[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];364 -> 3074[label="",style="solid", color="blue", weight=9]; 3074 -> 500[label="",style="solid", color="blue", weight=3]; 3075[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];364 -> 3075[label="",style="solid", color="blue", weight=9]; 3075 -> 501[label="",style="solid", color="blue", weight=3]; 3076[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];364 -> 3076[label="",style="solid", color="blue", weight=9]; 3076 -> 502[label="",style="solid", color="blue", weight=3]; 3077[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];364 -> 3077[label="",style="solid", color="blue", weight=9]; 3077 -> 503[label="",style="solid", color="blue", weight=3]; 3078[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];364 -> 3078[label="",style="solid", color="blue", weight=9]; 3078 -> 504[label="",style="solid", color="blue", weight=3]; 3079[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];364 -> 3079[label="",style="solid", color="blue", weight=9]; 3079 -> 505[label="",style="solid", color="blue", weight=3]; 3080[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];364 -> 3080[label="",style="solid", color="blue", weight=9]; 3080 -> 506[label="",style="solid", color="blue", weight=3]; 3081[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];364 -> 3081[label="",style="solid", color="blue", weight=9]; 3081 -> 507[label="",style="solid", color="blue", weight=3]; 365[label="vwx40",fontsize=16,color="green",shape="box"];362[label="compare2 (Just vwx58) (Just vwx59) vwx60",fontsize=16,color="burlywood",shape="triangle"];3082[label="vwx60/False",fontsize=10,color="white",style="solid",shape="box"];362 -> 3082[label="",style="solid", color="burlywood", weight=9]; 3082 -> 508[label="",style="solid", color="burlywood", weight=3]; 3083[label="vwx60/True",fontsize=10,color="white",style="solid",shape="box"];362 -> 3083[label="",style="solid", color="burlywood", weight=9]; 3083 -> 509[label="",style="solid", color="burlywood", weight=3]; 366[label="Succ vwx300",fontsize=16,color="green",shape="box"];367[label="vwx40",fontsize=16,color="green",shape="box"];368 -> 252[label="",style="dashed", color="red", weight=0]; 368[label="primCmpNat Zero (Succ vwx400)",fontsize=16,color="magenta"];368 -> 510[label="",style="dashed", color="magenta", weight=3]; 368 -> 511[label="",style="dashed", color="magenta", weight=3]; 369[label="EQ",fontsize=16,color="green",shape="box"];370[label="GT",fontsize=16,color="green",shape="box"];371[label="EQ",fontsize=16,color="green",shape="box"];372[label="vwx40",fontsize=16,color="green",shape="box"];373[label="Succ vwx300",fontsize=16,color="green",shape="box"];374[label="LT",fontsize=16,color="green",shape="box"];375[label="EQ",fontsize=16,color="green",shape="box"];376 -> 252[label="",style="dashed", color="red", weight=0]; 376[label="primCmpNat (Succ vwx400) Zero",fontsize=16,color="magenta"];376 -> 512[label="",style="dashed", color="magenta", weight=3]; 376 -> 513[label="",style="dashed", color="magenta", weight=3]; 377[label="EQ",fontsize=16,color="green",shape="box"];378[label="primCmpNat (Succ vwx300) (Succ vwx400)",fontsize=16,color="black",shape="box"];378 -> 514[label="",style="solid", color="black", weight=3]; 379[label="primCmpNat (Succ vwx300) Zero",fontsize=16,color="black",shape="box"];379 -> 515[label="",style="solid", color="black", weight=3]; 380[label="primCmpNat Zero (Succ vwx400)",fontsize=16,color="black",shape="box"];380 -> 516[label="",style="solid", color="black", weight=3]; 381[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];381 -> 517[label="",style="solid", color="black", weight=3]; 382[label="compare1 False True True",fontsize=16,color="black",shape="box"];382 -> 518[label="",style="solid", color="black", weight=3]; 383[label="compare1 True False False",fontsize=16,color="black",shape="box"];383 -> 519[label="",style="solid", color="black", weight=3]; 384[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];3084[label="vwx30/(vwx300,vwx301)",fontsize=10,color="white",style="solid",shape="box"];384 -> 3084[label="",style="solid", color="burlywood", weight=9]; 3084 -> 520[label="",style="solid", color="burlywood", weight=3]; 385[label="vwx30 == vwx40",fontsize=16,color="black",shape="triangle"];385 -> 521[label="",style="solid", color="black", weight=3]; 386[label="vwx30 == vwx40",fontsize=16,color="black",shape="triangle"];386 -> 522[label="",style="solid", color="black", weight=3]; 387[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];3085[label="vwx30/()",fontsize=10,color="white",style="solid",shape="box"];387 -> 3085[label="",style="solid", color="burlywood", weight=9]; 3085 -> 523[label="",style="solid", color="burlywood", weight=3]; 388[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];3086[label="vwx30/Nothing",fontsize=10,color="white",style="solid",shape="box"];388 -> 3086[label="",style="solid", color="burlywood", weight=9]; 3086 -> 524[label="",style="solid", color="burlywood", weight=3]; 3087[label="vwx30/Just vwx300",fontsize=10,color="white",style="solid",shape="box"];388 -> 3087[label="",style="solid", color="burlywood", weight=9]; 3087 -> 525[label="",style="solid", color="burlywood", weight=3]; 389[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];3088[label="vwx30/LT",fontsize=10,color="white",style="solid",shape="box"];389 -> 3088[label="",style="solid", color="burlywood", weight=9]; 3088 -> 526[label="",style="solid", color="burlywood", weight=3]; 3089[label="vwx30/EQ",fontsize=10,color="white",style="solid",shape="box"];389 -> 3089[label="",style="solid", color="burlywood", weight=9]; 3089 -> 527[label="",style="solid", color="burlywood", weight=3]; 3090[label="vwx30/GT",fontsize=10,color="white",style="solid",shape="box"];389 -> 3090[label="",style="solid", color="burlywood", weight=9]; 3090 -> 528[label="",style="solid", color="burlywood", weight=3]; 390[label="vwx30 == vwx40",fontsize=16,color="black",shape="triangle"];390 -> 529[label="",style="solid", color="black", weight=3]; 391[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];3091[label="vwx30/Integer vwx300",fontsize=10,color="white",style="solid",shape="box"];391 -> 3091[label="",style="solid", color="burlywood", weight=9]; 3091 -> 530[label="",style="solid", color="burlywood", weight=3]; 392[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];3092[label="vwx30/vwx300 : vwx301",fontsize=10,color="white",style="solid",shape="box"];392 -> 3092[label="",style="solid", color="burlywood", weight=9]; 3092 -> 531[label="",style="solid", color="burlywood", weight=3]; 3093[label="vwx30/[]",fontsize=10,color="white",style="solid",shape="box"];392 -> 3093[label="",style="solid", color="burlywood", weight=9]; 3093 -> 532[label="",style="solid", color="burlywood", weight=3]; 393[label="vwx30 == vwx40",fontsize=16,color="black",shape="triangle"];393 -> 533[label="",style="solid", color="black", weight=3]; 394[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];3094[label="vwx30/(vwx300,vwx301,vwx302)",fontsize=10,color="white",style="solid",shape="box"];394 -> 3094[label="",style="solid", color="burlywood", weight=9]; 3094 -> 534[label="",style="solid", color="burlywood", weight=3]; 395[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];3095[label="vwx30/vwx300 :% vwx301",fontsize=10,color="white",style="solid",shape="box"];395 -> 3095[label="",style="solid", color="burlywood", weight=9]; 3095 -> 535[label="",style="solid", color="burlywood", weight=3]; 396[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];3096[label="vwx30/Left vwx300",fontsize=10,color="white",style="solid",shape="box"];396 -> 3096[label="",style="solid", color="burlywood", weight=9]; 3096 -> 536[label="",style="solid", color="burlywood", weight=3]; 3097[label="vwx30/Right vwx300",fontsize=10,color="white",style="solid",shape="box"];396 -> 3097[label="",style="solid", color="burlywood", weight=9]; 3097 -> 537[label="",style="solid", color="burlywood", weight=3]; 397[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];3098[label="vwx30/False",fontsize=10,color="white",style="solid",shape="box"];397 -> 3098[label="",style="solid", color="burlywood", weight=9]; 3098 -> 538[label="",style="solid", color="burlywood", weight=3]; 3099[label="vwx30/True",fontsize=10,color="white",style="solid",shape="box"];397 -> 3099[label="",style="solid", color="burlywood", weight=9]; 3099 -> 539[label="",style="solid", color="burlywood", weight=3]; 398[label="compare2 (Left vwx13) (Left vwx14) False",fontsize=16,color="black",shape="box"];398 -> 540[label="",style="solid", color="black", weight=3]; 399[label="compare2 (Left vwx13) (Left vwx14) True",fontsize=16,color="black",shape="box"];399 -> 541[label="",style="solid", color="black", weight=3]; 400[label="compare1 (Left vwx30) (Right vwx40) True",fontsize=16,color="black",shape="box"];400 -> 542[label="",style="solid", color="black", weight=3]; 401[label="compare1 (Right vwx30) (Left vwx40) False",fontsize=16,color="black",shape="box"];401 -> 543[label="",style="solid", color="black", weight=3]; 402 -> 384[label="",style="dashed", color="red", weight=0]; 402[label="vwx30 == vwx40",fontsize=16,color="magenta"];402 -> 544[label="",style="dashed", color="magenta", weight=3]; 402 -> 545[label="",style="dashed", color="magenta", weight=3]; 403 -> 385[label="",style="dashed", color="red", weight=0]; 403[label="vwx30 == vwx40",fontsize=16,color="magenta"];403 -> 546[label="",style="dashed", color="magenta", weight=3]; 403 -> 547[label="",style="dashed", color="magenta", weight=3]; 404 -> 386[label="",style="dashed", color="red", weight=0]; 404[label="vwx30 == vwx40",fontsize=16,color="magenta"];404 -> 548[label="",style="dashed", color="magenta", weight=3]; 404 -> 549[label="",style="dashed", color="magenta", weight=3]; 405 -> 387[label="",style="dashed", color="red", weight=0]; 405[label="vwx30 == vwx40",fontsize=16,color="magenta"];405 -> 550[label="",style="dashed", color="magenta", weight=3]; 405 -> 551[label="",style="dashed", color="magenta", weight=3]; 406 -> 388[label="",style="dashed", color="red", weight=0]; 406[label="vwx30 == vwx40",fontsize=16,color="magenta"];406 -> 552[label="",style="dashed", color="magenta", weight=3]; 406 -> 553[label="",style="dashed", color="magenta", weight=3]; 407 -> 389[label="",style="dashed", color="red", weight=0]; 407[label="vwx30 == vwx40",fontsize=16,color="magenta"];407 -> 554[label="",style="dashed", color="magenta", weight=3]; 407 -> 555[label="",style="dashed", color="magenta", weight=3]; 408 -> 390[label="",style="dashed", color="red", weight=0]; 408[label="vwx30 == vwx40",fontsize=16,color="magenta"];408 -> 556[label="",style="dashed", color="magenta", weight=3]; 408 -> 557[label="",style="dashed", color="magenta", weight=3]; 409 -> 391[label="",style="dashed", color="red", weight=0]; 409[label="vwx30 == vwx40",fontsize=16,color="magenta"];409 -> 558[label="",style="dashed", color="magenta", weight=3]; 409 -> 559[label="",style="dashed", color="magenta", weight=3]; 410 -> 392[label="",style="dashed", color="red", weight=0]; 410[label="vwx30 == vwx40",fontsize=16,color="magenta"];410 -> 560[label="",style="dashed", color="magenta", weight=3]; 410 -> 561[label="",style="dashed", color="magenta", weight=3]; 411 -> 393[label="",style="dashed", color="red", weight=0]; 411[label="vwx30 == vwx40",fontsize=16,color="magenta"];411 -> 562[label="",style="dashed", color="magenta", weight=3]; 411 -> 563[label="",style="dashed", color="magenta", weight=3]; 412 -> 394[label="",style="dashed", color="red", weight=0]; 412[label="vwx30 == vwx40",fontsize=16,color="magenta"];412 -> 564[label="",style="dashed", color="magenta", weight=3]; 412 -> 565[label="",style="dashed", color="magenta", weight=3]; 413 -> 395[label="",style="dashed", color="red", weight=0]; 413[label="vwx30 == vwx40",fontsize=16,color="magenta"];413 -> 566[label="",style="dashed", color="magenta", weight=3]; 413 -> 567[label="",style="dashed", color="magenta", weight=3]; 414 -> 396[label="",style="dashed", color="red", weight=0]; 414[label="vwx30 == vwx40",fontsize=16,color="magenta"];414 -> 568[label="",style="dashed", color="magenta", weight=3]; 414 -> 569[label="",style="dashed", color="magenta", weight=3]; 415 -> 397[label="",style="dashed", color="red", weight=0]; 415[label="vwx30 == vwx40",fontsize=16,color="magenta"];415 -> 570[label="",style="dashed", color="magenta", weight=3]; 415 -> 571[label="",style="dashed", color="magenta", weight=3]; 416[label="compare2 (Right vwx20) (Right vwx21) False",fontsize=16,color="black",shape="box"];416 -> 572[label="",style="solid", color="black", weight=3]; 417[label="compare2 (Right vwx20) (Right vwx21) True",fontsize=16,color="black",shape="box"];417 -> 573[label="",style="solid", color="black", weight=3]; 418 -> 270[label="",style="dashed", color="red", weight=0]; 418[label="Pos vwx310 * vwx40",fontsize=16,color="magenta"];418 -> 574[label="",style="dashed", color="magenta", weight=3]; 418 -> 575[label="",style="dashed", color="magenta", weight=3]; 419 -> 270[label="",style="dashed", color="red", weight=0]; 419[label="vwx30 * Pos vwx410",fontsize=16,color="magenta"];419 -> 576[label="",style="dashed", color="magenta", weight=3]; 419 -> 577[label="",style="dashed", color="magenta", weight=3]; 420 -> 270[label="",style="dashed", color="red", weight=0]; 420[label="Neg vwx310 * vwx40",fontsize=16,color="magenta"];420 -> 578[label="",style="dashed", color="magenta", weight=3]; 420 -> 579[label="",style="dashed", color="magenta", weight=3]; 421 -> 270[label="",style="dashed", color="red", weight=0]; 421[label="vwx30 * Pos vwx410",fontsize=16,color="magenta"];421 -> 580[label="",style="dashed", color="magenta", weight=3]; 421 -> 581[label="",style="dashed", color="magenta", weight=3]; 422 -> 270[label="",style="dashed", color="red", weight=0]; 422[label="Pos vwx310 * vwx40",fontsize=16,color="magenta"];422 -> 582[label="",style="dashed", color="magenta", weight=3]; 422 -> 583[label="",style="dashed", color="magenta", weight=3]; 423 -> 270[label="",style="dashed", color="red", weight=0]; 423[label="vwx30 * Neg vwx410",fontsize=16,color="magenta"];423 -> 584[label="",style="dashed", color="magenta", weight=3]; 423 -> 585[label="",style="dashed", color="magenta", weight=3]; 424 -> 270[label="",style="dashed", color="red", weight=0]; 424[label="Neg vwx310 * vwx40",fontsize=16,color="magenta"];424 -> 586[label="",style="dashed", color="magenta", weight=3]; 424 -> 587[label="",style="dashed", color="magenta", weight=3]; 425 -> 270[label="",style="dashed", color="red", weight=0]; 425[label="vwx30 * Neg vwx410",fontsize=16,color="magenta"];425 -> 588[label="",style="dashed", color="magenta", weight=3]; 425 -> 589[label="",style="dashed", color="magenta", weight=3]; 426 -> 270[label="",style="dashed", color="red", weight=0]; 426[label="Pos vwx310 * vwx40",fontsize=16,color="magenta"];426 -> 590[label="",style="dashed", color="magenta", weight=3]; 426 -> 591[label="",style="dashed", color="magenta", weight=3]; 427 -> 270[label="",style="dashed", color="red", weight=0]; 427[label="vwx30 * Pos vwx410",fontsize=16,color="magenta"];427 -> 592[label="",style="dashed", color="magenta", weight=3]; 427 -> 593[label="",style="dashed", color="magenta", weight=3]; 428 -> 270[label="",style="dashed", color="red", weight=0]; 428[label="Neg vwx310 * vwx40",fontsize=16,color="magenta"];428 -> 594[label="",style="dashed", color="magenta", weight=3]; 428 -> 595[label="",style="dashed", color="magenta", weight=3]; 429 -> 270[label="",style="dashed", color="red", weight=0]; 429[label="vwx30 * Pos vwx410",fontsize=16,color="magenta"];429 -> 596[label="",style="dashed", color="magenta", weight=3]; 429 -> 597[label="",style="dashed", color="magenta", weight=3]; 430 -> 270[label="",style="dashed", color="red", weight=0]; 430[label="Pos vwx310 * vwx40",fontsize=16,color="magenta"];430 -> 598[label="",style="dashed", color="magenta", weight=3]; 430 -> 599[label="",style="dashed", color="magenta", weight=3]; 431 -> 270[label="",style="dashed", color="red", weight=0]; 431[label="vwx30 * Neg vwx410",fontsize=16,color="magenta"];431 -> 600[label="",style="dashed", color="magenta", weight=3]; 431 -> 601[label="",style="dashed", color="magenta", weight=3]; 432 -> 270[label="",style="dashed", color="red", weight=0]; 432[label="Neg vwx310 * vwx40",fontsize=16,color="magenta"];432 -> 602[label="",style="dashed", color="magenta", weight=3]; 432 -> 603[label="",style="dashed", color="magenta", weight=3]; 433 -> 270[label="",style="dashed", color="red", weight=0]; 433[label="vwx30 * Neg vwx410",fontsize=16,color="magenta"];433 -> 604[label="",style="dashed", color="magenta", weight=3]; 433 -> 605[label="",style="dashed", color="magenta", weight=3]; 1004[label="vwx30 == vwx40",fontsize=16,color="blue",shape="box"];3100[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1004 -> 3100[label="",style="solid", color="blue", weight=9]; 3100 -> 1022[label="",style="solid", color="blue", weight=3]; 3101[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1004 -> 3101[label="",style="solid", color="blue", weight=9]; 3101 -> 1023[label="",style="solid", color="blue", weight=3]; 3102[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1004 -> 3102[label="",style="solid", color="blue", weight=9]; 3102 -> 1024[label="",style="solid", color="blue", weight=3]; 3103[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1004 -> 3103[label="",style="solid", color="blue", weight=9]; 3103 -> 1025[label="",style="solid", color="blue", weight=3]; 3104[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1004 -> 3104[label="",style="solid", color="blue", weight=9]; 3104 -> 1026[label="",style="solid", color="blue", weight=3]; 3105[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1004 -> 3105[label="",style="solid", color="blue", weight=9]; 3105 -> 1027[label="",style="solid", color="blue", weight=3]; 3106[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1004 -> 3106[label="",style="solid", color="blue", weight=9]; 3106 -> 1028[label="",style="solid", color="blue", weight=3]; 3107[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1004 -> 3107[label="",style="solid", color="blue", weight=9]; 3107 -> 1029[label="",style="solid", color="blue", weight=3]; 3108[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1004 -> 3108[label="",style="solid", color="blue", weight=9]; 3108 -> 1030[label="",style="solid", color="blue", weight=3]; 3109[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1004 -> 3109[label="",style="solid", color="blue", weight=9]; 3109 -> 1031[label="",style="solid", color="blue", weight=3]; 3110[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1004 -> 3110[label="",style="solid", color="blue", weight=9]; 3110 -> 1032[label="",style="solid", color="blue", weight=3]; 3111[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1004 -> 3111[label="",style="solid", color="blue", weight=9]; 3111 -> 1033[label="",style="solid", color="blue", weight=3]; 3112[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1004 -> 3112[label="",style="solid", color="blue", weight=9]; 3112 -> 1034[label="",style="solid", color="blue", weight=3]; 3113[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1004 -> 3113[label="",style="solid", color="blue", weight=9]; 3113 -> 1035[label="",style="solid", color="blue", weight=3]; 1005 -> 1003[label="",style="dashed", color="red", weight=0]; 1005[label="vwx31 == vwx41 && vwx32 == vwx42",fontsize=16,color="magenta"];1005 -> 1036[label="",style="dashed", color="magenta", weight=3]; 1005 -> 1037[label="",style="dashed", color="magenta", weight=3]; 1003[label="vwx113 && vwx114",fontsize=16,color="burlywood",shape="triangle"];3114[label="vwx113/False",fontsize=10,color="white",style="solid",shape="box"];1003 -> 3114[label="",style="solid", color="burlywood", weight=9]; 3114 -> 1038[label="",style="solid", color="burlywood", weight=3]; 3115[label="vwx113/True",fontsize=10,color="white",style="solid",shape="box"];1003 -> 3115[label="",style="solid", color="burlywood", weight=9]; 3115 -> 1039[label="",style="solid", color="burlywood", weight=3]; 998[label="compare2 (vwx69,vwx70,vwx71) (vwx72,vwx73,vwx74) False",fontsize=16,color="black",shape="box"];998 -> 1040[label="",style="solid", color="black", weight=3]; 999[label="compare2 (vwx69,vwx70,vwx71) (vwx72,vwx73,vwx74) True",fontsize=16,color="black",shape="box"];999 -> 1041[label="",style="solid", color="black", weight=3]; 450[label="primMulInt (Pos vwx400) vwx31",fontsize=16,color="burlywood",shape="box"];3116[label="vwx31/Pos vwx310",fontsize=10,color="white",style="solid",shape="box"];450 -> 3116[label="",style="solid", color="burlywood", weight=9]; 3116 -> 636[label="",style="solid", color="burlywood", weight=3]; 3117[label="vwx31/Neg vwx310",fontsize=10,color="white",style="solid",shape="box"];450 -> 3117[label="",style="solid", color="burlywood", weight=9]; 3117 -> 637[label="",style="solid", color="burlywood", weight=3]; 451[label="primMulInt (Neg vwx400) vwx31",fontsize=16,color="burlywood",shape="box"];3118[label="vwx31/Pos vwx310",fontsize=10,color="white",style="solid",shape="box"];451 -> 3118[label="",style="solid", color="burlywood", weight=9]; 3118 -> 638[label="",style="solid", color="burlywood", weight=3]; 3119[label="vwx31/Neg vwx310",fontsize=10,color="white",style="solid",shape="box"];451 -> 3119[label="",style="solid", color="burlywood", weight=9]; 3119 -> 639[label="",style="solid", color="burlywood", weight=3]; 452[label="Integer vwx400 * Integer vwx310",fontsize=16,color="black",shape="box"];452 -> 640[label="",style="solid", color="black", weight=3]; 453 -> 108[label="",style="dashed", color="red", weight=0]; 453[label="compare vwx30 vwx40",fontsize=16,color="magenta"];453 -> 641[label="",style="dashed", color="magenta", weight=3]; 453 -> 642[label="",style="dashed", color="magenta", weight=3]; 454 -> 109[label="",style="dashed", color="red", weight=0]; 454[label="compare vwx30 vwx40",fontsize=16,color="magenta"];454 -> 643[label="",style="dashed", color="magenta", weight=3]; 454 -> 644[label="",style="dashed", color="magenta", weight=3]; 455 -> 110[label="",style="dashed", color="red", weight=0]; 455[label="compare vwx30 vwx40",fontsize=16,color="magenta"];455 -> 645[label="",style="dashed", color="magenta", weight=3]; 455 -> 646[label="",style="dashed", color="magenta", weight=3]; 456 -> 111[label="",style="dashed", color="red", weight=0]; 456[label="compare vwx30 vwx40",fontsize=16,color="magenta"];456 -> 647[label="",style="dashed", color="magenta", weight=3]; 456 -> 648[label="",style="dashed", color="magenta", weight=3]; 457 -> 112[label="",style="dashed", color="red", weight=0]; 457[label="compare vwx30 vwx40",fontsize=16,color="magenta"];457 -> 649[label="",style="dashed", color="magenta", weight=3]; 457 -> 650[label="",style="dashed", color="magenta", weight=3]; 458 -> 113[label="",style="dashed", color="red", weight=0]; 458[label="compare vwx30 vwx40",fontsize=16,color="magenta"];458 -> 651[label="",style="dashed", color="magenta", weight=3]; 458 -> 652[label="",style="dashed", color="magenta", weight=3]; 459 -> 114[label="",style="dashed", color="red", weight=0]; 459[label="compare vwx30 vwx40",fontsize=16,color="magenta"];459 -> 653[label="",style="dashed", color="magenta", weight=3]; 459 -> 654[label="",style="dashed", color="magenta", weight=3]; 460 -> 115[label="",style="dashed", color="red", weight=0]; 460[label="compare vwx30 vwx40",fontsize=16,color="magenta"];460 -> 655[label="",style="dashed", color="magenta", weight=3]; 460 -> 656[label="",style="dashed", color="magenta", weight=3]; 461 -> 116[label="",style="dashed", color="red", weight=0]; 461[label="compare vwx30 vwx40",fontsize=16,color="magenta"];461 -> 657[label="",style="dashed", color="magenta", weight=3]; 461 -> 658[label="",style="dashed", color="magenta", weight=3]; 462 -> 117[label="",style="dashed", color="red", weight=0]; 462[label="compare vwx30 vwx40",fontsize=16,color="magenta"];462 -> 659[label="",style="dashed", color="magenta", weight=3]; 462 -> 660[label="",style="dashed", color="magenta", weight=3]; 463 -> 118[label="",style="dashed", color="red", weight=0]; 463[label="compare vwx30 vwx40",fontsize=16,color="magenta"];463 -> 661[label="",style="dashed", color="magenta", weight=3]; 463 -> 662[label="",style="dashed", color="magenta", weight=3]; 464 -> 119[label="",style="dashed", color="red", weight=0]; 464[label="compare vwx30 vwx40",fontsize=16,color="magenta"];464 -> 663[label="",style="dashed", color="magenta", weight=3]; 464 -> 664[label="",style="dashed", color="magenta", weight=3]; 465 -> 120[label="",style="dashed", color="red", weight=0]; 465[label="compare vwx30 vwx40",fontsize=16,color="magenta"];465 -> 665[label="",style="dashed", color="magenta", weight=3]; 465 -> 666[label="",style="dashed", color="magenta", weight=3]; 466 -> 121[label="",style="dashed", color="red", weight=0]; 466[label="compare vwx30 vwx40",fontsize=16,color="magenta"];466 -> 667[label="",style="dashed", color="magenta", weight=3]; 466 -> 668[label="",style="dashed", color="magenta", weight=3]; 467[label="primCompAux0 vwx41 LT",fontsize=16,color="black",shape="box"];467 -> 669[label="",style="solid", color="black", weight=3]; 468[label="primCompAux0 vwx41 EQ",fontsize=16,color="black",shape="box"];468 -> 670[label="",style="solid", color="black", weight=3]; 469[label="primCompAux0 vwx41 GT",fontsize=16,color="black",shape="box"];469 -> 671[label="",style="solid", color="black", weight=3]; 1006[label="vwx30 == vwx40",fontsize=16,color="blue",shape="box"];3120[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1006 -> 3120[label="",style="solid", color="blue", weight=9]; 3120 -> 1042[label="",style="solid", color="blue", weight=3]; 3121[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1006 -> 3121[label="",style="solid", color="blue", weight=9]; 3121 -> 1043[label="",style="solid", color="blue", weight=3]; 3122[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1006 -> 3122[label="",style="solid", color="blue", weight=9]; 3122 -> 1044[label="",style="solid", color="blue", weight=3]; 3123[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1006 -> 3123[label="",style="solid", color="blue", weight=9]; 3123 -> 1045[label="",style="solid", color="blue", weight=3]; 3124[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1006 -> 3124[label="",style="solid", color="blue", weight=9]; 3124 -> 1046[label="",style="solid", color="blue", weight=3]; 3125[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1006 -> 3125[label="",style="solid", color="blue", weight=9]; 3125 -> 1047[label="",style="solid", color="blue", weight=3]; 3126[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1006 -> 3126[label="",style="solid", color="blue", weight=9]; 3126 -> 1048[label="",style="solid", color="blue", weight=3]; 3127[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1006 -> 3127[label="",style="solid", color="blue", weight=9]; 3127 -> 1049[label="",style="solid", color="blue", weight=3]; 3128[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1006 -> 3128[label="",style="solid", color="blue", weight=9]; 3128 -> 1050[label="",style="solid", color="blue", weight=3]; 3129[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1006 -> 3129[label="",style="solid", color="blue", weight=9]; 3129 -> 1051[label="",style="solid", color="blue", weight=3]; 3130[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1006 -> 3130[label="",style="solid", color="blue", weight=9]; 3130 -> 1052[label="",style="solid", color="blue", weight=3]; 3131[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1006 -> 3131[label="",style="solid", color="blue", weight=9]; 3131 -> 1053[label="",style="solid", color="blue", weight=3]; 3132[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1006 -> 3132[label="",style="solid", color="blue", weight=9]; 3132 -> 1054[label="",style="solid", color="blue", weight=3]; 3133[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1006 -> 3133[label="",style="solid", color="blue", weight=9]; 3133 -> 1055[label="",style="solid", color="blue", weight=3]; 1007[label="vwx31 == vwx41",fontsize=16,color="blue",shape="box"];3134[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1007 -> 3134[label="",style="solid", color="blue", weight=9]; 3134 -> 1056[label="",style="solid", color="blue", weight=3]; 3135[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1007 -> 3135[label="",style="solid", color="blue", weight=9]; 3135 -> 1057[label="",style="solid", color="blue", weight=3]; 3136[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1007 -> 3136[label="",style="solid", color="blue", weight=9]; 3136 -> 1058[label="",style="solid", color="blue", weight=3]; 3137[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1007 -> 3137[label="",style="solid", color="blue", weight=9]; 3137 -> 1059[label="",style="solid", color="blue", weight=3]; 3138[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1007 -> 3138[label="",style="solid", color="blue", weight=9]; 3138 -> 1060[label="",style="solid", color="blue", weight=3]; 3139[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1007 -> 3139[label="",style="solid", color="blue", weight=9]; 3139 -> 1061[label="",style="solid", color="blue", weight=3]; 3140[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1007 -> 3140[label="",style="solid", color="blue", weight=9]; 3140 -> 1062[label="",style="solid", color="blue", weight=3]; 3141[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1007 -> 3141[label="",style="solid", color="blue", weight=9]; 3141 -> 1063[label="",style="solid", color="blue", weight=3]; 3142[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1007 -> 3142[label="",style="solid", color="blue", weight=9]; 3142 -> 1064[label="",style="solid", color="blue", weight=3]; 3143[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1007 -> 3143[label="",style="solid", color="blue", weight=9]; 3143 -> 1065[label="",style="solid", color="blue", weight=3]; 3144[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1007 -> 3144[label="",style="solid", color="blue", weight=9]; 3144 -> 1066[label="",style="solid", color="blue", weight=3]; 3145[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1007 -> 3145[label="",style="solid", color="blue", weight=9]; 3145 -> 1067[label="",style="solid", color="blue", weight=3]; 3146[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1007 -> 3146[label="",style="solid", color="blue", weight=9]; 3146 -> 1068[label="",style="solid", color="blue", weight=3]; 3147[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1007 -> 3147[label="",style="solid", color="blue", weight=9]; 3147 -> 1069[label="",style="solid", color="blue", weight=3]; 821[label="compare2 (vwx82,vwx83) (vwx84,vwx85) False",fontsize=16,color="black",shape="box"];821 -> 889[label="",style="solid", color="black", weight=3]; 822[label="compare2 (vwx82,vwx83) (vwx84,vwx85) True",fontsize=16,color="black",shape="box"];822 -> 890[label="",style="solid", color="black", weight=3]; 486[label="compare1 LT EQ True",fontsize=16,color="black",shape="box"];486 -> 702[label="",style="solid", color="black", weight=3]; 487[label="compare1 LT GT True",fontsize=16,color="black",shape="box"];487 -> 703[label="",style="solid", color="black", weight=3]; 488[label="compare1 EQ LT False",fontsize=16,color="black",shape="box"];488 -> 704[label="",style="solid", color="black", weight=3]; 489[label="compare1 EQ GT True",fontsize=16,color="black",shape="box"];489 -> 705[label="",style="solid", color="black", weight=3]; 490[label="compare1 GT LT False",fontsize=16,color="black",shape="box"];490 -> 706[label="",style="solid", color="black", weight=3]; 491[label="compare1 GT EQ False",fontsize=16,color="black",shape="box"];491 -> 707[label="",style="solid", color="black", weight=3]; 492[label="compare1 Nothing (Just vwx40) True",fontsize=16,color="black",shape="box"];492 -> 708[label="",style="solid", color="black", weight=3]; 493[label="compare1 (Just vwx30) Nothing False",fontsize=16,color="black",shape="box"];493 -> 709[label="",style="solid", color="black", weight=3]; 494 -> 384[label="",style="dashed", color="red", weight=0]; 494[label="vwx30 == vwx40",fontsize=16,color="magenta"];494 -> 710[label="",style="dashed", color="magenta", weight=3]; 494 -> 711[label="",style="dashed", color="magenta", weight=3]; 495 -> 385[label="",style="dashed", color="red", weight=0]; 495[label="vwx30 == vwx40",fontsize=16,color="magenta"];495 -> 712[label="",style="dashed", color="magenta", weight=3]; 495 -> 713[label="",style="dashed", color="magenta", weight=3]; 496 -> 386[label="",style="dashed", color="red", weight=0]; 496[label="vwx30 == vwx40",fontsize=16,color="magenta"];496 -> 714[label="",style="dashed", color="magenta", weight=3]; 496 -> 715[label="",style="dashed", color="magenta", weight=3]; 497 -> 387[label="",style="dashed", color="red", weight=0]; 497[label="vwx30 == vwx40",fontsize=16,color="magenta"];497 -> 716[label="",style="dashed", color="magenta", weight=3]; 497 -> 717[label="",style="dashed", color="magenta", weight=3]; 498 -> 388[label="",style="dashed", color="red", weight=0]; 498[label="vwx30 == vwx40",fontsize=16,color="magenta"];498 -> 718[label="",style="dashed", color="magenta", weight=3]; 498 -> 719[label="",style="dashed", color="magenta", weight=3]; 499 -> 389[label="",style="dashed", color="red", weight=0]; 499[label="vwx30 == vwx40",fontsize=16,color="magenta"];499 -> 720[label="",style="dashed", color="magenta", weight=3]; 499 -> 721[label="",style="dashed", color="magenta", weight=3]; 500 -> 390[label="",style="dashed", color="red", weight=0]; 500[label="vwx30 == vwx40",fontsize=16,color="magenta"];500 -> 722[label="",style="dashed", color="magenta", weight=3]; 500 -> 723[label="",style="dashed", color="magenta", weight=3]; 501 -> 391[label="",style="dashed", color="red", weight=0]; 501[label="vwx30 == vwx40",fontsize=16,color="magenta"];501 -> 724[label="",style="dashed", color="magenta", weight=3]; 501 -> 725[label="",style="dashed", color="magenta", weight=3]; 502 -> 392[label="",style="dashed", color="red", weight=0]; 502[label="vwx30 == vwx40",fontsize=16,color="magenta"];502 -> 726[label="",style="dashed", color="magenta", weight=3]; 502 -> 727[label="",style="dashed", color="magenta", weight=3]; 503 -> 393[label="",style="dashed", color="red", weight=0]; 503[label="vwx30 == vwx40",fontsize=16,color="magenta"];503 -> 728[label="",style="dashed", color="magenta", weight=3]; 503 -> 729[label="",style="dashed", color="magenta", weight=3]; 504 -> 394[label="",style="dashed", color="red", weight=0]; 504[label="vwx30 == vwx40",fontsize=16,color="magenta"];504 -> 730[label="",style="dashed", color="magenta", weight=3]; 504 -> 731[label="",style="dashed", color="magenta", weight=3]; 505 -> 395[label="",style="dashed", color="red", weight=0]; 505[label="vwx30 == vwx40",fontsize=16,color="magenta"];505 -> 732[label="",style="dashed", color="magenta", weight=3]; 505 -> 733[label="",style="dashed", color="magenta", weight=3]; 506 -> 396[label="",style="dashed", color="red", weight=0]; 506[label="vwx30 == vwx40",fontsize=16,color="magenta"];506 -> 734[label="",style="dashed", color="magenta", weight=3]; 506 -> 735[label="",style="dashed", color="magenta", weight=3]; 507 -> 397[label="",style="dashed", color="red", weight=0]; 507[label="vwx30 == vwx40",fontsize=16,color="magenta"];507 -> 736[label="",style="dashed", color="magenta", weight=3]; 507 -> 737[label="",style="dashed", color="magenta", weight=3]; 508[label="compare2 (Just vwx58) (Just vwx59) False",fontsize=16,color="black",shape="box"];508 -> 738[label="",style="solid", color="black", weight=3]; 509[label="compare2 (Just vwx58) (Just vwx59) True",fontsize=16,color="black",shape="box"];509 -> 739[label="",style="solid", color="black", weight=3]; 510[label="Zero",fontsize=16,color="green",shape="box"];511[label="Succ vwx400",fontsize=16,color="green",shape="box"];512[label="Succ vwx400",fontsize=16,color="green",shape="box"];513[label="Zero",fontsize=16,color="green",shape="box"];514 -> 252[label="",style="dashed", color="red", weight=0]; 514[label="primCmpNat vwx300 vwx400",fontsize=16,color="magenta"];514 -> 740[label="",style="dashed", color="magenta", weight=3]; 514 -> 741[label="",style="dashed", color="magenta", weight=3]; 515[label="GT",fontsize=16,color="green",shape="box"];516[label="LT",fontsize=16,color="green",shape="box"];517[label="EQ",fontsize=16,color="green",shape="box"];518[label="LT",fontsize=16,color="green",shape="box"];519[label="compare0 True False otherwise",fontsize=16,color="black",shape="box"];519 -> 742[label="",style="solid", color="black", weight=3]; 520[label="(vwx300,vwx301) == vwx40",fontsize=16,color="burlywood",shape="box"];3148[label="vwx40/(vwx400,vwx401)",fontsize=10,color="white",style="solid",shape="box"];520 -> 3148[label="",style="solid", color="burlywood", weight=9]; 3148 -> 743[label="",style="solid", color="burlywood", weight=3]; 521[label="primEqFloat vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];3149[label="vwx30/Float vwx300 vwx301",fontsize=10,color="white",style="solid",shape="box"];521 -> 3149[label="",style="solid", color="burlywood", weight=9]; 3149 -> 744[label="",style="solid", color="burlywood", weight=3]; 522[label="primEqChar vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];3150[label="vwx30/Char vwx300",fontsize=10,color="white",style="solid",shape="box"];522 -> 3150[label="",style="solid", color="burlywood", weight=9]; 3150 -> 745[label="",style="solid", color="burlywood", weight=3]; 523[label="() == vwx40",fontsize=16,color="burlywood",shape="box"];3151[label="vwx40/()",fontsize=10,color="white",style="solid",shape="box"];523 -> 3151[label="",style="solid", color="burlywood", weight=9]; 3151 -> 746[label="",style="solid", color="burlywood", weight=3]; 524[label="Nothing == vwx40",fontsize=16,color="burlywood",shape="box"];3152[label="vwx40/Nothing",fontsize=10,color="white",style="solid",shape="box"];524 -> 3152[label="",style="solid", color="burlywood", weight=9]; 3152 -> 747[label="",style="solid", color="burlywood", weight=3]; 3153[label="vwx40/Just vwx400",fontsize=10,color="white",style="solid",shape="box"];524 -> 3153[label="",style="solid", color="burlywood", weight=9]; 3153 -> 748[label="",style="solid", color="burlywood", weight=3]; 525[label="Just vwx300 == vwx40",fontsize=16,color="burlywood",shape="box"];3154[label="vwx40/Nothing",fontsize=10,color="white",style="solid",shape="box"];525 -> 3154[label="",style="solid", color="burlywood", weight=9]; 3154 -> 749[label="",style="solid", color="burlywood", weight=3]; 3155[label="vwx40/Just vwx400",fontsize=10,color="white",style="solid",shape="box"];525 -> 3155[label="",style="solid", color="burlywood", weight=9]; 3155 -> 750[label="",style="solid", color="burlywood", weight=3]; 526[label="LT == vwx40",fontsize=16,color="burlywood",shape="box"];3156[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];526 -> 3156[label="",style="solid", color="burlywood", weight=9]; 3156 -> 751[label="",style="solid", color="burlywood", weight=3]; 3157[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];526 -> 3157[label="",style="solid", color="burlywood", weight=9]; 3157 -> 752[label="",style="solid", color="burlywood", weight=3]; 3158[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];526 -> 3158[label="",style="solid", color="burlywood", weight=9]; 3158 -> 753[label="",style="solid", color="burlywood", weight=3]; 527[label="EQ == vwx40",fontsize=16,color="burlywood",shape="box"];3159[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];527 -> 3159[label="",style="solid", color="burlywood", weight=9]; 3159 -> 754[label="",style="solid", color="burlywood", weight=3]; 3160[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];527 -> 3160[label="",style="solid", color="burlywood", weight=9]; 3160 -> 755[label="",style="solid", color="burlywood", weight=3]; 3161[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];527 -> 3161[label="",style="solid", color="burlywood", weight=9]; 3161 -> 756[label="",style="solid", color="burlywood", weight=3]; 528[label="GT == vwx40",fontsize=16,color="burlywood",shape="box"];3162[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];528 -> 3162[label="",style="solid", color="burlywood", weight=9]; 3162 -> 757[label="",style="solid", color="burlywood", weight=3]; 3163[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];528 -> 3163[label="",style="solid", color="burlywood", weight=9]; 3163 -> 758[label="",style="solid", color="burlywood", weight=3]; 3164[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];528 -> 3164[label="",style="solid", color="burlywood", weight=9]; 3164 -> 759[label="",style="solid", color="burlywood", weight=3]; 529[label="primEqDouble vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];3165[label="vwx30/Double vwx300 vwx301",fontsize=10,color="white",style="solid",shape="box"];529 -> 3165[label="",style="solid", color="burlywood", weight=9]; 3165 -> 760[label="",style="solid", color="burlywood", weight=3]; 530[label="Integer vwx300 == vwx40",fontsize=16,color="burlywood",shape="box"];3166[label="vwx40/Integer vwx400",fontsize=10,color="white",style="solid",shape="box"];530 -> 3166[label="",style="solid", color="burlywood", weight=9]; 3166 -> 761[label="",style="solid", color="burlywood", weight=3]; 531[label="vwx300 : vwx301 == vwx40",fontsize=16,color="burlywood",shape="box"];3167[label="vwx40/vwx400 : vwx401",fontsize=10,color="white",style="solid",shape="box"];531 -> 3167[label="",style="solid", color="burlywood", weight=9]; 3167 -> 762[label="",style="solid", color="burlywood", weight=3]; 3168[label="vwx40/[]",fontsize=10,color="white",style="solid",shape="box"];531 -> 3168[label="",style="solid", color="burlywood", weight=9]; 3168 -> 763[label="",style="solid", color="burlywood", weight=3]; 532[label="[] == vwx40",fontsize=16,color="burlywood",shape="box"];3169[label="vwx40/vwx400 : vwx401",fontsize=10,color="white",style="solid",shape="box"];532 -> 3169[label="",style="solid", color="burlywood", weight=9]; 3169 -> 764[label="",style="solid", color="burlywood", weight=3]; 3170[label="vwx40/[]",fontsize=10,color="white",style="solid",shape="box"];532 -> 3170[label="",style="solid", color="burlywood", weight=9]; 3170 -> 765[label="",style="solid", color="burlywood", weight=3]; 533[label="primEqInt vwx30 vwx40",fontsize=16,color="burlywood",shape="triangle"];3171[label="vwx30/Pos vwx300",fontsize=10,color="white",style="solid",shape="box"];533 -> 3171[label="",style="solid", color="burlywood", weight=9]; 3171 -> 766[label="",style="solid", color="burlywood", weight=3]; 3172[label="vwx30/Neg vwx300",fontsize=10,color="white",style="solid",shape="box"];533 -> 3172[label="",style="solid", color="burlywood", weight=9]; 3172 -> 767[label="",style="solid", color="burlywood", weight=3]; 534[label="(vwx300,vwx301,vwx302) == vwx40",fontsize=16,color="burlywood",shape="box"];3173[label="vwx40/(vwx400,vwx401,vwx402)",fontsize=10,color="white",style="solid",shape="box"];534 -> 3173[label="",style="solid", color="burlywood", weight=9]; 3173 -> 768[label="",style="solid", color="burlywood", weight=3]; 535[label="vwx300 :% vwx301 == vwx40",fontsize=16,color="burlywood",shape="box"];3174[label="vwx40/vwx400 :% vwx401",fontsize=10,color="white",style="solid",shape="box"];535 -> 3174[label="",style="solid", color="burlywood", weight=9]; 3174 -> 769[label="",style="solid", color="burlywood", weight=3]; 536[label="Left vwx300 == vwx40",fontsize=16,color="burlywood",shape="box"];3175[label="vwx40/Left vwx400",fontsize=10,color="white",style="solid",shape="box"];536 -> 3175[label="",style="solid", color="burlywood", weight=9]; 3175 -> 770[label="",style="solid", color="burlywood", weight=3]; 3176[label="vwx40/Right vwx400",fontsize=10,color="white",style="solid",shape="box"];536 -> 3176[label="",style="solid", color="burlywood", weight=9]; 3176 -> 771[label="",style="solid", color="burlywood", weight=3]; 537[label="Right vwx300 == vwx40",fontsize=16,color="burlywood",shape="box"];3177[label="vwx40/Left vwx400",fontsize=10,color="white",style="solid",shape="box"];537 -> 3177[label="",style="solid", color="burlywood", weight=9]; 3177 -> 772[label="",style="solid", color="burlywood", weight=3]; 3178[label="vwx40/Right vwx400",fontsize=10,color="white",style="solid",shape="box"];537 -> 3178[label="",style="solid", color="burlywood", weight=9]; 3178 -> 773[label="",style="solid", color="burlywood", weight=3]; 538[label="False == vwx40",fontsize=16,color="burlywood",shape="box"];3179[label="vwx40/False",fontsize=10,color="white",style="solid",shape="box"];538 -> 3179[label="",style="solid", color="burlywood", weight=9]; 3179 -> 774[label="",style="solid", color="burlywood", weight=3]; 3180[label="vwx40/True",fontsize=10,color="white",style="solid",shape="box"];538 -> 3180[label="",style="solid", color="burlywood", weight=9]; 3180 -> 775[label="",style="solid", color="burlywood", weight=3]; 539[label="True == vwx40",fontsize=16,color="burlywood",shape="box"];3181[label="vwx40/False",fontsize=10,color="white",style="solid",shape="box"];539 -> 3181[label="",style="solid", color="burlywood", weight=9]; 3181 -> 776[label="",style="solid", color="burlywood", weight=3]; 3182[label="vwx40/True",fontsize=10,color="white",style="solid",shape="box"];539 -> 3182[label="",style="solid", color="burlywood", weight=9]; 3182 -> 777[label="",style="solid", color="burlywood", weight=3]; 540 -> 882[label="",style="dashed", color="red", weight=0]; 540[label="compare1 (Left vwx13) (Left vwx14) (Left vwx13 <= Left vwx14)",fontsize=16,color="magenta"];540 -> 883[label="",style="dashed", color="magenta", weight=3]; 540 -> 884[label="",style="dashed", color="magenta", weight=3]; 540 -> 885[label="",style="dashed", color="magenta", weight=3]; 541[label="EQ",fontsize=16,color="green",shape="box"];542[label="LT",fontsize=16,color="green",shape="box"];543[label="compare0 (Right vwx30) (Left vwx40) otherwise",fontsize=16,color="black",shape="box"];543 -> 779[label="",style="solid", color="black", weight=3]; 544[label="vwx40",fontsize=16,color="green",shape="box"];545[label="vwx30",fontsize=16,color="green",shape="box"];546[label="vwx40",fontsize=16,color="green",shape="box"];547[label="vwx30",fontsize=16,color="green",shape="box"];548[label="vwx40",fontsize=16,color="green",shape="box"];549[label="vwx30",fontsize=16,color="green",shape="box"];550[label="vwx40",fontsize=16,color="green",shape="box"];551[label="vwx30",fontsize=16,color="green",shape="box"];552[label="vwx40",fontsize=16,color="green",shape="box"];553[label="vwx30",fontsize=16,color="green",shape="box"];554[label="vwx40",fontsize=16,color="green",shape="box"];555[label="vwx30",fontsize=16,color="green",shape="box"];556[label="vwx40",fontsize=16,color="green",shape="box"];557[label="vwx30",fontsize=16,color="green",shape="box"];558[label="vwx40",fontsize=16,color="green",shape="box"];559[label="vwx30",fontsize=16,color="green",shape="box"];560[label="vwx40",fontsize=16,color="green",shape="box"];561[label="vwx30",fontsize=16,color="green",shape="box"];562[label="vwx40",fontsize=16,color="green",shape="box"];563[label="vwx30",fontsize=16,color="green",shape="box"];564[label="vwx40",fontsize=16,color="green",shape="box"];565[label="vwx30",fontsize=16,color="green",shape="box"];566[label="vwx40",fontsize=16,color="green",shape="box"];567[label="vwx30",fontsize=16,color="green",shape="box"];568[label="vwx40",fontsize=16,color="green",shape="box"];569[label="vwx30",fontsize=16,color="green",shape="box"];570[label="vwx40",fontsize=16,color="green",shape="box"];571[label="vwx30",fontsize=16,color="green",shape="box"];572 -> 925[label="",style="dashed", color="red", weight=0]; 572[label="compare1 (Right vwx20) (Right vwx21) (Right vwx20 <= Right vwx21)",fontsize=16,color="magenta"];572 -> 926[label="",style="dashed", color="magenta", weight=3]; 572 -> 927[label="",style="dashed", color="magenta", weight=3]; 572 -> 928[label="",style="dashed", color="magenta", weight=3]; 573[label="EQ",fontsize=16,color="green",shape="box"];574[label="Pos vwx310",fontsize=16,color="green",shape="box"];575[label="vwx40",fontsize=16,color="green",shape="box"];576[label="vwx30",fontsize=16,color="green",shape="box"];577[label="Pos vwx410",fontsize=16,color="green",shape="box"];578[label="Neg vwx310",fontsize=16,color="green",shape="box"];579[label="vwx40",fontsize=16,color="green",shape="box"];580[label="vwx30",fontsize=16,color="green",shape="box"];581[label="Pos vwx410",fontsize=16,color="green",shape="box"];582[label="Pos vwx310",fontsize=16,color="green",shape="box"];583[label="vwx40",fontsize=16,color="green",shape="box"];584[label="vwx30",fontsize=16,color="green",shape="box"];585[label="Neg vwx410",fontsize=16,color="green",shape="box"];586[label="Neg vwx310",fontsize=16,color="green",shape="box"];587[label="vwx40",fontsize=16,color="green",shape="box"];588[label="vwx30",fontsize=16,color="green",shape="box"];589[label="Neg vwx410",fontsize=16,color="green",shape="box"];590[label="Pos vwx310",fontsize=16,color="green",shape="box"];591[label="vwx40",fontsize=16,color="green",shape="box"];592[label="vwx30",fontsize=16,color="green",shape="box"];593[label="Pos vwx410",fontsize=16,color="green",shape="box"];594[label="Neg vwx310",fontsize=16,color="green",shape="box"];595[label="vwx40",fontsize=16,color="green",shape="box"];596[label="vwx30",fontsize=16,color="green",shape="box"];597[label="Pos vwx410",fontsize=16,color="green",shape="box"];598[label="Pos vwx310",fontsize=16,color="green",shape="box"];599[label="vwx40",fontsize=16,color="green",shape="box"];600[label="vwx30",fontsize=16,color="green",shape="box"];601[label="Neg vwx410",fontsize=16,color="green",shape="box"];602[label="Neg vwx310",fontsize=16,color="green",shape="box"];603[label="vwx40",fontsize=16,color="green",shape="box"];604[label="vwx30",fontsize=16,color="green",shape="box"];605[label="Neg vwx410",fontsize=16,color="green",shape="box"];1022 -> 384[label="",style="dashed", color="red", weight=0]; 1022[label="vwx30 == vwx40",fontsize=16,color="magenta"];1022 -> 1078[label="",style="dashed", color="magenta", weight=3]; 1022 -> 1079[label="",style="dashed", color="magenta", weight=3]; 1023 -> 385[label="",style="dashed", color="red", weight=0]; 1023[label="vwx30 == vwx40",fontsize=16,color="magenta"];1023 -> 1080[label="",style="dashed", color="magenta", weight=3]; 1023 -> 1081[label="",style="dashed", color="magenta", weight=3]; 1024 -> 386[label="",style="dashed", color="red", weight=0]; 1024[label="vwx30 == vwx40",fontsize=16,color="magenta"];1024 -> 1082[label="",style="dashed", color="magenta", weight=3]; 1024 -> 1083[label="",style="dashed", color="magenta", weight=3]; 1025 -> 387[label="",style="dashed", color="red", weight=0]; 1025[label="vwx30 == vwx40",fontsize=16,color="magenta"];1025 -> 1084[label="",style="dashed", color="magenta", weight=3]; 1025 -> 1085[label="",style="dashed", color="magenta", weight=3]; 1026 -> 388[label="",style="dashed", color="red", weight=0]; 1026[label="vwx30 == vwx40",fontsize=16,color="magenta"];1026 -> 1086[label="",style="dashed", color="magenta", weight=3]; 1026 -> 1087[label="",style="dashed", color="magenta", weight=3]; 1027 -> 389[label="",style="dashed", color="red", weight=0]; 1027[label="vwx30 == vwx40",fontsize=16,color="magenta"];1027 -> 1088[label="",style="dashed", color="magenta", weight=3]; 1027 -> 1089[label="",style="dashed", color="magenta", weight=3]; 1028 -> 390[label="",style="dashed", color="red", weight=0]; 1028[label="vwx30 == vwx40",fontsize=16,color="magenta"];1028 -> 1090[label="",style="dashed", color="magenta", weight=3]; 1028 -> 1091[label="",style="dashed", color="magenta", weight=3]; 1029 -> 391[label="",style="dashed", color="red", weight=0]; 1029[label="vwx30 == vwx40",fontsize=16,color="magenta"];1029 -> 1092[label="",style="dashed", color="magenta", weight=3]; 1029 -> 1093[label="",style="dashed", color="magenta", weight=3]; 1030 -> 392[label="",style="dashed", color="red", weight=0]; 1030[label="vwx30 == vwx40",fontsize=16,color="magenta"];1030 -> 1094[label="",style="dashed", color="magenta", weight=3]; 1030 -> 1095[label="",style="dashed", color="magenta", weight=3]; 1031 -> 393[label="",style="dashed", color="red", weight=0]; 1031[label="vwx30 == vwx40",fontsize=16,color="magenta"];1031 -> 1096[label="",style="dashed", color="magenta", weight=3]; 1031 -> 1097[label="",style="dashed", color="magenta", weight=3]; 1032 -> 394[label="",style="dashed", color="red", weight=0]; 1032[label="vwx30 == vwx40",fontsize=16,color="magenta"];1032 -> 1098[label="",style="dashed", color="magenta", weight=3]; 1032 -> 1099[label="",style="dashed", color="magenta", weight=3]; 1033 -> 395[label="",style="dashed", color="red", weight=0]; 1033[label="vwx30 == vwx40",fontsize=16,color="magenta"];1033 -> 1100[label="",style="dashed", color="magenta", weight=3]; 1033 -> 1101[label="",style="dashed", color="magenta", weight=3]; 1034 -> 396[label="",style="dashed", color="red", weight=0]; 1034[label="vwx30 == vwx40",fontsize=16,color="magenta"];1034 -> 1102[label="",style="dashed", color="magenta", weight=3]; 1034 -> 1103[label="",style="dashed", color="magenta", weight=3]; 1035 -> 397[label="",style="dashed", color="red", weight=0]; 1035[label="vwx30 == vwx40",fontsize=16,color="magenta"];1035 -> 1104[label="",style="dashed", color="magenta", weight=3]; 1035 -> 1105[label="",style="dashed", color="magenta", weight=3]; 1036[label="vwx31 == vwx41",fontsize=16,color="blue",shape="box"];3183[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1036 -> 3183[label="",style="solid", color="blue", weight=9]; 3183 -> 1106[label="",style="solid", color="blue", weight=3]; 3184[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1036 -> 3184[label="",style="solid", color="blue", weight=9]; 3184 -> 1107[label="",style="solid", color="blue", weight=3]; 3185[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1036 -> 3185[label="",style="solid", color="blue", weight=9]; 3185 -> 1108[label="",style="solid", color="blue", weight=3]; 3186[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1036 -> 3186[label="",style="solid", color="blue", weight=9]; 3186 -> 1109[label="",style="solid", color="blue", weight=3]; 3187[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1036 -> 3187[label="",style="solid", color="blue", weight=9]; 3187 -> 1110[label="",style="solid", color="blue", weight=3]; 3188[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1036 -> 3188[label="",style="solid", color="blue", weight=9]; 3188 -> 1111[label="",style="solid", color="blue", weight=3]; 3189[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1036 -> 3189[label="",style="solid", color="blue", weight=9]; 3189 -> 1112[label="",style="solid", color="blue", weight=3]; 3190[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1036 -> 3190[label="",style="solid", color="blue", weight=9]; 3190 -> 1113[label="",style="solid", color="blue", weight=3]; 3191[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1036 -> 3191[label="",style="solid", color="blue", weight=9]; 3191 -> 1114[label="",style="solid", color="blue", weight=3]; 3192[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1036 -> 3192[label="",style="solid", color="blue", weight=9]; 3192 -> 1115[label="",style="solid", color="blue", weight=3]; 3193[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1036 -> 3193[label="",style="solid", color="blue", weight=9]; 3193 -> 1116[label="",style="solid", color="blue", weight=3]; 3194[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1036 -> 3194[label="",style="solid", color="blue", weight=9]; 3194 -> 1117[label="",style="solid", color="blue", weight=3]; 3195[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1036 -> 3195[label="",style="solid", color="blue", weight=9]; 3195 -> 1118[label="",style="solid", color="blue", weight=3]; 3196[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1036 -> 3196[label="",style="solid", color="blue", weight=9]; 3196 -> 1119[label="",style="solid", color="blue", weight=3]; 1037[label="vwx32 == vwx42",fontsize=16,color="blue",shape="box"];3197[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1037 -> 3197[label="",style="solid", color="blue", weight=9]; 3197 -> 1120[label="",style="solid", color="blue", weight=3]; 3198[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1037 -> 3198[label="",style="solid", color="blue", weight=9]; 3198 -> 1121[label="",style="solid", color="blue", weight=3]; 3199[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1037 -> 3199[label="",style="solid", color="blue", weight=9]; 3199 -> 1122[label="",style="solid", color="blue", weight=3]; 3200[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1037 -> 3200[label="",style="solid", color="blue", weight=9]; 3200 -> 1123[label="",style="solid", color="blue", weight=3]; 3201[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1037 -> 3201[label="",style="solid", color="blue", weight=9]; 3201 -> 1124[label="",style="solid", color="blue", weight=3]; 3202[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1037 -> 3202[label="",style="solid", color="blue", weight=9]; 3202 -> 1125[label="",style="solid", color="blue", weight=3]; 3203[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1037 -> 3203[label="",style="solid", color="blue", weight=9]; 3203 -> 1126[label="",style="solid", color="blue", weight=3]; 3204[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1037 -> 3204[label="",style="solid", color="blue", weight=9]; 3204 -> 1127[label="",style="solid", color="blue", weight=3]; 3205[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1037 -> 3205[label="",style="solid", color="blue", weight=9]; 3205 -> 1128[label="",style="solid", color="blue", weight=3]; 3206[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1037 -> 3206[label="",style="solid", color="blue", weight=9]; 3206 -> 1129[label="",style="solid", color="blue", weight=3]; 3207[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1037 -> 3207[label="",style="solid", color="blue", weight=9]; 3207 -> 1130[label="",style="solid", color="blue", weight=3]; 3208[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1037 -> 3208[label="",style="solid", color="blue", weight=9]; 3208 -> 1131[label="",style="solid", color="blue", weight=3]; 3209[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1037 -> 3209[label="",style="solid", color="blue", weight=9]; 3209 -> 1132[label="",style="solid", color="blue", weight=3]; 3210[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1037 -> 3210[label="",style="solid", color="blue", weight=9]; 3210 -> 1133[label="",style="solid", color="blue", weight=3]; 1038[label="False && vwx114",fontsize=16,color="black",shape="box"];1038 -> 1134[label="",style="solid", color="black", weight=3]; 1039[label="True && vwx114",fontsize=16,color="black",shape="box"];1039 -> 1135[label="",style="solid", color="black", weight=3]; 1040[label="compare1 (vwx69,vwx70,vwx71) (vwx72,vwx73,vwx74) ((vwx69,vwx70,vwx71) <= (vwx72,vwx73,vwx74))",fontsize=16,color="black",shape="box"];1040 -> 1136[label="",style="solid", color="black", weight=3]; 1041[label="EQ",fontsize=16,color="green",shape="box"];636[label="primMulInt (Pos vwx400) (Pos vwx310)",fontsize=16,color="black",shape="box"];636 -> 790[label="",style="solid", color="black", weight=3]; 637[label="primMulInt (Pos vwx400) (Neg vwx310)",fontsize=16,color="black",shape="box"];637 -> 791[label="",style="solid", color="black", weight=3]; 638[label="primMulInt (Neg vwx400) (Pos vwx310)",fontsize=16,color="black",shape="box"];638 -> 792[label="",style="solid", color="black", weight=3]; 639[label="primMulInt (Neg vwx400) (Neg vwx310)",fontsize=16,color="black",shape="box"];639 -> 793[label="",style="solid", color="black", weight=3]; 640[label="Integer (primMulInt vwx400 vwx310)",fontsize=16,color="green",shape="box"];640 -> 794[label="",style="dashed", color="green", weight=3]; 641[label="vwx40",fontsize=16,color="green",shape="box"];642[label="vwx30",fontsize=16,color="green",shape="box"];643[label="vwx40",fontsize=16,color="green",shape="box"];644[label="vwx30",fontsize=16,color="green",shape="box"];645[label="vwx40",fontsize=16,color="green",shape="box"];646[label="vwx30",fontsize=16,color="green",shape="box"];647[label="vwx40",fontsize=16,color="green",shape="box"];648[label="vwx30",fontsize=16,color="green",shape="box"];649[label="vwx40",fontsize=16,color="green",shape="box"];650[label="vwx30",fontsize=16,color="green",shape="box"];651[label="vwx40",fontsize=16,color="green",shape="box"];652[label="vwx30",fontsize=16,color="green",shape="box"];653[label="vwx40",fontsize=16,color="green",shape="box"];654[label="vwx30",fontsize=16,color="green",shape="box"];655[label="vwx40",fontsize=16,color="green",shape="box"];656[label="vwx30",fontsize=16,color="green",shape="box"];657[label="vwx40",fontsize=16,color="green",shape="box"];658[label="vwx30",fontsize=16,color="green",shape="box"];659[label="vwx40",fontsize=16,color="green",shape="box"];660[label="vwx30",fontsize=16,color="green",shape="box"];661[label="vwx40",fontsize=16,color="green",shape="box"];662[label="vwx30",fontsize=16,color="green",shape="box"];663[label="vwx40",fontsize=16,color="green",shape="box"];664[label="vwx30",fontsize=16,color="green",shape="box"];665[label="vwx40",fontsize=16,color="green",shape="box"];666[label="vwx30",fontsize=16,color="green",shape="box"];667[label="vwx40",fontsize=16,color="green",shape="box"];668[label="vwx30",fontsize=16,color="green",shape="box"];669[label="LT",fontsize=16,color="green",shape="box"];670[label="vwx41",fontsize=16,color="green",shape="box"];671[label="GT",fontsize=16,color="green",shape="box"];1042 -> 384[label="",style="dashed", color="red", weight=0]; 1042[label="vwx30 == vwx40",fontsize=16,color="magenta"];1042 -> 1137[label="",style="dashed", color="magenta", weight=3]; 1042 -> 1138[label="",style="dashed", color="magenta", weight=3]; 1043 -> 385[label="",style="dashed", color="red", weight=0]; 1043[label="vwx30 == vwx40",fontsize=16,color="magenta"];1043 -> 1139[label="",style="dashed", color="magenta", weight=3]; 1043 -> 1140[label="",style="dashed", color="magenta", weight=3]; 1044 -> 386[label="",style="dashed", color="red", weight=0]; 1044[label="vwx30 == vwx40",fontsize=16,color="magenta"];1044 -> 1141[label="",style="dashed", color="magenta", weight=3]; 1044 -> 1142[label="",style="dashed", color="magenta", weight=3]; 1045 -> 387[label="",style="dashed", color="red", weight=0]; 1045[label="vwx30 == vwx40",fontsize=16,color="magenta"];1045 -> 1143[label="",style="dashed", color="magenta", weight=3]; 1045 -> 1144[label="",style="dashed", color="magenta", weight=3]; 1046 -> 388[label="",style="dashed", color="red", weight=0]; 1046[label="vwx30 == vwx40",fontsize=16,color="magenta"];1046 -> 1145[label="",style="dashed", color="magenta", weight=3]; 1046 -> 1146[label="",style="dashed", color="magenta", weight=3]; 1047 -> 389[label="",style="dashed", color="red", weight=0]; 1047[label="vwx30 == vwx40",fontsize=16,color="magenta"];1047 -> 1147[label="",style="dashed", color="magenta", weight=3]; 1047 -> 1148[label="",style="dashed", color="magenta", weight=3]; 1048 -> 390[label="",style="dashed", color="red", weight=0]; 1048[label="vwx30 == vwx40",fontsize=16,color="magenta"];1048 -> 1149[label="",style="dashed", color="magenta", weight=3]; 1048 -> 1150[label="",style="dashed", color="magenta", weight=3]; 1049 -> 391[label="",style="dashed", color="red", weight=0]; 1049[label="vwx30 == vwx40",fontsize=16,color="magenta"];1049 -> 1151[label="",style="dashed", color="magenta", weight=3]; 1049 -> 1152[label="",style="dashed", color="magenta", weight=3]; 1050 -> 392[label="",style="dashed", color="red", weight=0]; 1050[label="vwx30 == vwx40",fontsize=16,color="magenta"];1050 -> 1153[label="",style="dashed", color="magenta", weight=3]; 1050 -> 1154[label="",style="dashed", color="magenta", weight=3]; 1051 -> 393[label="",style="dashed", color="red", weight=0]; 1051[label="vwx30 == vwx40",fontsize=16,color="magenta"];1051 -> 1155[label="",style="dashed", color="magenta", weight=3]; 1051 -> 1156[label="",style="dashed", color="magenta", weight=3]; 1052 -> 394[label="",style="dashed", color="red", weight=0]; 1052[label="vwx30 == vwx40",fontsize=16,color="magenta"];1052 -> 1157[label="",style="dashed", color="magenta", weight=3]; 1052 -> 1158[label="",style="dashed", color="magenta", weight=3]; 1053 -> 395[label="",style="dashed", color="red", weight=0]; 1053[label="vwx30 == vwx40",fontsize=16,color="magenta"];1053 -> 1159[label="",style="dashed", color="magenta", weight=3]; 1053 -> 1160[label="",style="dashed", color="magenta", weight=3]; 1054 -> 396[label="",style="dashed", color="red", weight=0]; 1054[label="vwx30 == vwx40",fontsize=16,color="magenta"];1054 -> 1161[label="",style="dashed", color="magenta", weight=3]; 1054 -> 1162[label="",style="dashed", color="magenta", weight=3]; 1055 -> 397[label="",style="dashed", color="red", weight=0]; 1055[label="vwx30 == vwx40",fontsize=16,color="magenta"];1055 -> 1163[label="",style="dashed", color="magenta", weight=3]; 1055 -> 1164[label="",style="dashed", color="magenta", weight=3]; 1056 -> 384[label="",style="dashed", color="red", weight=0]; 1056[label="vwx31 == vwx41",fontsize=16,color="magenta"];1056 -> 1165[label="",style="dashed", color="magenta", weight=3]; 1056 -> 1166[label="",style="dashed", color="magenta", weight=3]; 1057 -> 385[label="",style="dashed", color="red", weight=0]; 1057[label="vwx31 == vwx41",fontsize=16,color="magenta"];1057 -> 1167[label="",style="dashed", color="magenta", weight=3]; 1057 -> 1168[label="",style="dashed", color="magenta", weight=3]; 1058 -> 386[label="",style="dashed", color="red", weight=0]; 1058[label="vwx31 == vwx41",fontsize=16,color="magenta"];1058 -> 1169[label="",style="dashed", color="magenta", weight=3]; 1058 -> 1170[label="",style="dashed", color="magenta", weight=3]; 1059 -> 387[label="",style="dashed", color="red", weight=0]; 1059[label="vwx31 == vwx41",fontsize=16,color="magenta"];1059 -> 1171[label="",style="dashed", color="magenta", weight=3]; 1059 -> 1172[label="",style="dashed", color="magenta", weight=3]; 1060 -> 388[label="",style="dashed", color="red", weight=0]; 1060[label="vwx31 == vwx41",fontsize=16,color="magenta"];1060 -> 1173[label="",style="dashed", color="magenta", weight=3]; 1060 -> 1174[label="",style="dashed", color="magenta", weight=3]; 1061 -> 389[label="",style="dashed", color="red", weight=0]; 1061[label="vwx31 == vwx41",fontsize=16,color="magenta"];1061 -> 1175[label="",style="dashed", color="magenta", weight=3]; 1061 -> 1176[label="",style="dashed", color="magenta", weight=3]; 1062 -> 390[label="",style="dashed", color="red", weight=0]; 1062[label="vwx31 == vwx41",fontsize=16,color="magenta"];1062 -> 1177[label="",style="dashed", color="magenta", weight=3]; 1062 -> 1178[label="",style="dashed", color="magenta", weight=3]; 1063 -> 391[label="",style="dashed", color="red", weight=0]; 1063[label="vwx31 == vwx41",fontsize=16,color="magenta"];1063 -> 1179[label="",style="dashed", color="magenta", weight=3]; 1063 -> 1180[label="",style="dashed", color="magenta", weight=3]; 1064 -> 392[label="",style="dashed", color="red", weight=0]; 1064[label="vwx31 == vwx41",fontsize=16,color="magenta"];1064 -> 1181[label="",style="dashed", color="magenta", weight=3]; 1064 -> 1182[label="",style="dashed", color="magenta", weight=3]; 1065 -> 393[label="",style="dashed", color="red", weight=0]; 1065[label="vwx31 == vwx41",fontsize=16,color="magenta"];1065 -> 1183[label="",style="dashed", color="magenta", weight=3]; 1065 -> 1184[label="",style="dashed", color="magenta", weight=3]; 1066 -> 394[label="",style="dashed", color="red", weight=0]; 1066[label="vwx31 == vwx41",fontsize=16,color="magenta"];1066 -> 1185[label="",style="dashed", color="magenta", weight=3]; 1066 -> 1186[label="",style="dashed", color="magenta", weight=3]; 1067 -> 395[label="",style="dashed", color="red", weight=0]; 1067[label="vwx31 == vwx41",fontsize=16,color="magenta"];1067 -> 1187[label="",style="dashed", color="magenta", weight=3]; 1067 -> 1188[label="",style="dashed", color="magenta", weight=3]; 1068 -> 396[label="",style="dashed", color="red", weight=0]; 1068[label="vwx31 == vwx41",fontsize=16,color="magenta"];1068 -> 1189[label="",style="dashed", color="magenta", weight=3]; 1068 -> 1190[label="",style="dashed", color="magenta", weight=3]; 1069 -> 397[label="",style="dashed", color="red", weight=0]; 1069[label="vwx31 == vwx41",fontsize=16,color="magenta"];1069 -> 1191[label="",style="dashed", color="magenta", weight=3]; 1069 -> 1192[label="",style="dashed", color="magenta", weight=3]; 889[label="compare1 (vwx82,vwx83) (vwx84,vwx85) ((vwx82,vwx83) <= (vwx84,vwx85))",fontsize=16,color="black",shape="box"];889 -> 932[label="",style="solid", color="black", weight=3]; 890[label="EQ",fontsize=16,color="green",shape="box"];702[label="LT",fontsize=16,color="green",shape="box"];703[label="LT",fontsize=16,color="green",shape="box"];704[label="compare0 EQ LT otherwise",fontsize=16,color="black",shape="box"];704 -> 839[label="",style="solid", color="black", weight=3]; 705[label="LT",fontsize=16,color="green",shape="box"];706[label="compare0 GT LT otherwise",fontsize=16,color="black",shape="box"];706 -> 840[label="",style="solid", color="black", weight=3]; 707[label="compare0 GT EQ otherwise",fontsize=16,color="black",shape="box"];707 -> 841[label="",style="solid", color="black", weight=3]; 708[label="LT",fontsize=16,color="green",shape="box"];709[label="compare0 (Just vwx30) Nothing otherwise",fontsize=16,color="black",shape="box"];709 -> 842[label="",style="solid", color="black", weight=3]; 710[label="vwx40",fontsize=16,color="green",shape="box"];711[label="vwx30",fontsize=16,color="green",shape="box"];712[label="vwx40",fontsize=16,color="green",shape="box"];713[label="vwx30",fontsize=16,color="green",shape="box"];714[label="vwx40",fontsize=16,color="green",shape="box"];715[label="vwx30",fontsize=16,color="green",shape="box"];716[label="vwx40",fontsize=16,color="green",shape="box"];717[label="vwx30",fontsize=16,color="green",shape="box"];718[label="vwx40",fontsize=16,color="green",shape="box"];719[label="vwx30",fontsize=16,color="green",shape="box"];720[label="vwx40",fontsize=16,color="green",shape="box"];721[label="vwx30",fontsize=16,color="green",shape="box"];722[label="vwx40",fontsize=16,color="green",shape="box"];723[label="vwx30",fontsize=16,color="green",shape="box"];724[label="vwx40",fontsize=16,color="green",shape="box"];725[label="vwx30",fontsize=16,color="green",shape="box"];726[label="vwx40",fontsize=16,color="green",shape="box"];727[label="vwx30",fontsize=16,color="green",shape="box"];728[label="vwx40",fontsize=16,color="green",shape="box"];729[label="vwx30",fontsize=16,color="green",shape="box"];730[label="vwx40",fontsize=16,color="green",shape="box"];731[label="vwx30",fontsize=16,color="green",shape="box"];732[label="vwx40",fontsize=16,color="green",shape="box"];733[label="vwx30",fontsize=16,color="green",shape="box"];734[label="vwx40",fontsize=16,color="green",shape="box"];735[label="vwx30",fontsize=16,color="green",shape="box"];736[label="vwx40",fontsize=16,color="green",shape="box"];737[label="vwx30",fontsize=16,color="green",shape="box"];738 -> 1197[label="",style="dashed", color="red", weight=0]; 738[label="compare1 (Just vwx58) (Just vwx59) (Just vwx58 <= Just vwx59)",fontsize=16,color="magenta"];738 -> 1198[label="",style="dashed", color="magenta", weight=3]; 738 -> 1199[label="",style="dashed", color="magenta", weight=3]; 738 -> 1200[label="",style="dashed", color="magenta", weight=3]; 739[label="EQ",fontsize=16,color="green",shape="box"];740[label="vwx300",fontsize=16,color="green",shape="box"];741[label="vwx400",fontsize=16,color="green",shape="box"];742[label="compare0 True False True",fontsize=16,color="black",shape="box"];742 -> 844[label="",style="solid", color="black", weight=3]; 743[label="(vwx300,vwx301) == (vwx400,vwx401)",fontsize=16,color="black",shape="box"];743 -> 845[label="",style="solid", color="black", weight=3]; 744[label="primEqFloat (Float vwx300 vwx301) vwx40",fontsize=16,color="burlywood",shape="box"];3211[label="vwx40/Float vwx400 vwx401",fontsize=10,color="white",style="solid",shape="box"];744 -> 3211[label="",style="solid", color="burlywood", weight=9]; 3211 -> 846[label="",style="solid", color="burlywood", weight=3]; 745[label="primEqChar (Char vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];3212[label="vwx40/Char vwx400",fontsize=10,color="white",style="solid",shape="box"];745 -> 3212[label="",style="solid", color="burlywood", weight=9]; 3212 -> 847[label="",style="solid", color="burlywood", weight=3]; 746[label="() == ()",fontsize=16,color="black",shape="box"];746 -> 848[label="",style="solid", color="black", weight=3]; 747[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];747 -> 849[label="",style="solid", color="black", weight=3]; 748[label="Nothing == Just vwx400",fontsize=16,color="black",shape="box"];748 -> 850[label="",style="solid", color="black", weight=3]; 749[label="Just vwx300 == Nothing",fontsize=16,color="black",shape="box"];749 -> 851[label="",style="solid", color="black", weight=3]; 750[label="Just vwx300 == Just vwx400",fontsize=16,color="black",shape="box"];750 -> 852[label="",style="solid", color="black", weight=3]; 751[label="LT == LT",fontsize=16,color="black",shape="box"];751 -> 853[label="",style="solid", color="black", weight=3]; 752[label="LT == EQ",fontsize=16,color="black",shape="box"];752 -> 854[label="",style="solid", color="black", weight=3]; 753[label="LT == GT",fontsize=16,color="black",shape="box"];753 -> 855[label="",style="solid", color="black", weight=3]; 754[label="EQ == LT",fontsize=16,color="black",shape="box"];754 -> 856[label="",style="solid", color="black", weight=3]; 755[label="EQ == EQ",fontsize=16,color="black",shape="box"];755 -> 857[label="",style="solid", color="black", weight=3]; 756[label="EQ == GT",fontsize=16,color="black",shape="box"];756 -> 858[label="",style="solid", color="black", weight=3]; 757[label="GT == LT",fontsize=16,color="black",shape="box"];757 -> 859[label="",style="solid", color="black", weight=3]; 758[label="GT == EQ",fontsize=16,color="black",shape="box"];758 -> 860[label="",style="solid", color="black", weight=3]; 759[label="GT == GT",fontsize=16,color="black",shape="box"];759 -> 861[label="",style="solid", color="black", weight=3]; 760[label="primEqDouble (Double vwx300 vwx301) vwx40",fontsize=16,color="burlywood",shape="box"];3213[label="vwx40/Double vwx400 vwx401",fontsize=10,color="white",style="solid",shape="box"];760 -> 3213[label="",style="solid", color="burlywood", weight=9]; 3213 -> 862[label="",style="solid", color="burlywood", weight=3]; 761[label="Integer vwx300 == Integer vwx400",fontsize=16,color="black",shape="box"];761 -> 863[label="",style="solid", color="black", weight=3]; 762[label="vwx300 : vwx301 == vwx400 : vwx401",fontsize=16,color="black",shape="box"];762 -> 864[label="",style="solid", color="black", weight=3]; 763[label="vwx300 : vwx301 == []",fontsize=16,color="black",shape="box"];763 -> 865[label="",style="solid", color="black", weight=3]; 764[label="[] == vwx400 : vwx401",fontsize=16,color="black",shape="box"];764 -> 866[label="",style="solid", color="black", weight=3]; 765[label="[] == []",fontsize=16,color="black",shape="box"];765 -> 867[label="",style="solid", color="black", weight=3]; 766[label="primEqInt (Pos vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];3214[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];766 -> 3214[label="",style="solid", color="burlywood", weight=9]; 3214 -> 868[label="",style="solid", color="burlywood", weight=3]; 3215[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];766 -> 3215[label="",style="solid", color="burlywood", weight=9]; 3215 -> 869[label="",style="solid", color="burlywood", weight=3]; 767[label="primEqInt (Neg vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];3216[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];767 -> 3216[label="",style="solid", color="burlywood", weight=9]; 3216 -> 870[label="",style="solid", color="burlywood", weight=3]; 3217[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];767 -> 3217[label="",style="solid", color="burlywood", weight=9]; 3217 -> 871[label="",style="solid", color="burlywood", weight=3]; 768[label="(vwx300,vwx301,vwx302) == (vwx400,vwx401,vwx402)",fontsize=16,color="black",shape="box"];768 -> 872[label="",style="solid", color="black", weight=3]; 769[label="vwx300 :% vwx301 == vwx400 :% vwx401",fontsize=16,color="black",shape="box"];769 -> 873[label="",style="solid", color="black", weight=3]; 770[label="Left vwx300 == Left vwx400",fontsize=16,color="black",shape="box"];770 -> 874[label="",style="solid", color="black", weight=3]; 771[label="Left vwx300 == Right vwx400",fontsize=16,color="black",shape="box"];771 -> 875[label="",style="solid", color="black", weight=3]; 772[label="Right vwx300 == Left vwx400",fontsize=16,color="black",shape="box"];772 -> 876[label="",style="solid", color="black", weight=3]; 773[label="Right vwx300 == Right vwx400",fontsize=16,color="black",shape="box"];773 -> 877[label="",style="solid", color="black", weight=3]; 774[label="False == False",fontsize=16,color="black",shape="box"];774 -> 878[label="",style="solid", color="black", weight=3]; 775[label="False == True",fontsize=16,color="black",shape="box"];775 -> 879[label="",style="solid", color="black", weight=3]; 776[label="True == False",fontsize=16,color="black",shape="box"];776 -> 880[label="",style="solid", color="black", weight=3]; 777[label="True == True",fontsize=16,color="black",shape="box"];777 -> 881[label="",style="solid", color="black", weight=3]; 883[label="vwx13",fontsize=16,color="green",shape="box"];884[label="vwx14",fontsize=16,color="green",shape="box"];885[label="Left vwx13 <= Left vwx14",fontsize=16,color="black",shape="box"];885 -> 921[label="",style="solid", color="black", weight=3]; 882[label="compare1 (Left vwx98) (Left vwx99) vwx100",fontsize=16,color="burlywood",shape="triangle"];3218[label="vwx100/False",fontsize=10,color="white",style="solid",shape="box"];882 -> 3218[label="",style="solid", color="burlywood", weight=9]; 3218 -> 922[label="",style="solid", color="burlywood", weight=3]; 3219[label="vwx100/True",fontsize=10,color="white",style="solid",shape="box"];882 -> 3219[label="",style="solid", color="burlywood", weight=9]; 3219 -> 923[label="",style="solid", color="burlywood", weight=3]; 779[label="compare0 (Right vwx30) (Left vwx40) True",fontsize=16,color="black",shape="box"];779 -> 924[label="",style="solid", color="black", weight=3]; 926[label="vwx21",fontsize=16,color="green",shape="box"];927[label="vwx20",fontsize=16,color="green",shape="box"];928[label="Right vwx20 <= Right vwx21",fontsize=16,color="black",shape="box"];928 -> 933[label="",style="solid", color="black", weight=3]; 925[label="compare1 (Right vwx105) (Right vwx106) vwx107",fontsize=16,color="burlywood",shape="triangle"];3220[label="vwx107/False",fontsize=10,color="white",style="solid",shape="box"];925 -> 3220[label="",style="solid", color="burlywood", weight=9]; 3220 -> 934[label="",style="solid", color="burlywood", weight=3]; 3221[label="vwx107/True",fontsize=10,color="white",style="solid",shape="box"];925 -> 3221[label="",style="solid", color="burlywood", weight=9]; 3221 -> 935[label="",style="solid", color="burlywood", weight=3]; 1078[label="vwx40",fontsize=16,color="green",shape="box"];1079[label="vwx30",fontsize=16,color="green",shape="box"];1080[label="vwx40",fontsize=16,color="green",shape="box"];1081[label="vwx30",fontsize=16,color="green",shape="box"];1082[label="vwx40",fontsize=16,color="green",shape="box"];1083[label="vwx30",fontsize=16,color="green",shape="box"];1084[label="vwx40",fontsize=16,color="green",shape="box"];1085[label="vwx30",fontsize=16,color="green",shape="box"];1086[label="vwx40",fontsize=16,color="green",shape="box"];1087[label="vwx30",fontsize=16,color="green",shape="box"];1088[label="vwx40",fontsize=16,color="green",shape="box"];1089[label="vwx30",fontsize=16,color="green",shape="box"];1090[label="vwx40",fontsize=16,color="green",shape="box"];1091[label="vwx30",fontsize=16,color="green",shape="box"];1092[label="vwx40",fontsize=16,color="green",shape="box"];1093[label="vwx30",fontsize=16,color="green",shape="box"];1094[label="vwx40",fontsize=16,color="green",shape="box"];1095[label="vwx30",fontsize=16,color="green",shape="box"];1096[label="vwx40",fontsize=16,color="green",shape="box"];1097[label="vwx30",fontsize=16,color="green",shape="box"];1098[label="vwx40",fontsize=16,color="green",shape="box"];1099[label="vwx30",fontsize=16,color="green",shape="box"];1100[label="vwx40",fontsize=16,color="green",shape="box"];1101[label="vwx30",fontsize=16,color="green",shape="box"];1102[label="vwx40",fontsize=16,color="green",shape="box"];1103[label="vwx30",fontsize=16,color="green",shape="box"];1104[label="vwx40",fontsize=16,color="green",shape="box"];1105[label="vwx30",fontsize=16,color="green",shape="box"];1106 -> 384[label="",style="dashed", color="red", weight=0]; 1106[label="vwx31 == vwx41",fontsize=16,color="magenta"];1106 -> 1204[label="",style="dashed", color="magenta", weight=3]; 1106 -> 1205[label="",style="dashed", color="magenta", weight=3]; 1107 -> 385[label="",style="dashed", color="red", weight=0]; 1107[label="vwx31 == vwx41",fontsize=16,color="magenta"];1107 -> 1206[label="",style="dashed", color="magenta", weight=3]; 1107 -> 1207[label="",style="dashed", color="magenta", weight=3]; 1108 -> 386[label="",style="dashed", color="red", weight=0]; 1108[label="vwx31 == vwx41",fontsize=16,color="magenta"];1108 -> 1208[label="",style="dashed", color="magenta", weight=3]; 1108 -> 1209[label="",style="dashed", color="magenta", weight=3]; 1109 -> 387[label="",style="dashed", color="red", weight=0]; 1109[label="vwx31 == vwx41",fontsize=16,color="magenta"];1109 -> 1210[label="",style="dashed", color="magenta", weight=3]; 1109 -> 1211[label="",style="dashed", color="magenta", weight=3]; 1110 -> 388[label="",style="dashed", color="red", weight=0]; 1110[label="vwx31 == vwx41",fontsize=16,color="magenta"];1110 -> 1212[label="",style="dashed", color="magenta", weight=3]; 1110 -> 1213[label="",style="dashed", color="magenta", weight=3]; 1111 -> 389[label="",style="dashed", color="red", weight=0]; 1111[label="vwx31 == vwx41",fontsize=16,color="magenta"];1111 -> 1214[label="",style="dashed", color="magenta", weight=3]; 1111 -> 1215[label="",style="dashed", color="magenta", weight=3]; 1112 -> 390[label="",style="dashed", color="red", weight=0]; 1112[label="vwx31 == vwx41",fontsize=16,color="magenta"];1112 -> 1216[label="",style="dashed", color="magenta", weight=3]; 1112 -> 1217[label="",style="dashed", color="magenta", weight=3]; 1113 -> 391[label="",style="dashed", color="red", weight=0]; 1113[label="vwx31 == vwx41",fontsize=16,color="magenta"];1113 -> 1218[label="",style="dashed", color="magenta", weight=3]; 1113 -> 1219[label="",style="dashed", color="magenta", weight=3]; 1114 -> 392[label="",style="dashed", color="red", weight=0]; 1114[label="vwx31 == vwx41",fontsize=16,color="magenta"];1114 -> 1220[label="",style="dashed", color="magenta", weight=3]; 1114 -> 1221[label="",style="dashed", color="magenta", weight=3]; 1115 -> 393[label="",style="dashed", color="red", weight=0]; 1115[label="vwx31 == vwx41",fontsize=16,color="magenta"];1115 -> 1222[label="",style="dashed", color="magenta", weight=3]; 1115 -> 1223[label="",style="dashed", color="magenta", weight=3]; 1116 -> 394[label="",style="dashed", color="red", weight=0]; 1116[label="vwx31 == vwx41",fontsize=16,color="magenta"];1116 -> 1224[label="",style="dashed", color="magenta", weight=3]; 1116 -> 1225[label="",style="dashed", color="magenta", weight=3]; 1117 -> 395[label="",style="dashed", color="red", weight=0]; 1117[label="vwx31 == vwx41",fontsize=16,color="magenta"];1117 -> 1226[label="",style="dashed", color="magenta", weight=3]; 1117 -> 1227[label="",style="dashed", color="magenta", weight=3]; 1118 -> 396[label="",style="dashed", color="red", weight=0]; 1118[label="vwx31 == vwx41",fontsize=16,color="magenta"];1118 -> 1228[label="",style="dashed", color="magenta", weight=3]; 1118 -> 1229[label="",style="dashed", color="magenta", weight=3]; 1119 -> 397[label="",style="dashed", color="red", weight=0]; 1119[label="vwx31 == vwx41",fontsize=16,color="magenta"];1119 -> 1230[label="",style="dashed", color="magenta", weight=3]; 1119 -> 1231[label="",style="dashed", color="magenta", weight=3]; 1120 -> 384[label="",style="dashed", color="red", weight=0]; 1120[label="vwx32 == vwx42",fontsize=16,color="magenta"];1120 -> 1232[label="",style="dashed", color="magenta", weight=3]; 1120 -> 1233[label="",style="dashed", color="magenta", weight=3]; 1121 -> 385[label="",style="dashed", color="red", weight=0]; 1121[label="vwx32 == vwx42",fontsize=16,color="magenta"];1121 -> 1234[label="",style="dashed", color="magenta", weight=3]; 1121 -> 1235[label="",style="dashed", color="magenta", weight=3]; 1122 -> 386[label="",style="dashed", color="red", weight=0]; 1122[label="vwx32 == vwx42",fontsize=16,color="magenta"];1122 -> 1236[label="",style="dashed", color="magenta", weight=3]; 1122 -> 1237[label="",style="dashed", color="magenta", weight=3]; 1123 -> 387[label="",style="dashed", color="red", weight=0]; 1123[label="vwx32 == vwx42",fontsize=16,color="magenta"];1123 -> 1238[label="",style="dashed", color="magenta", weight=3]; 1123 -> 1239[label="",style="dashed", color="magenta", weight=3]; 1124 -> 388[label="",style="dashed", color="red", weight=0]; 1124[label="vwx32 == vwx42",fontsize=16,color="magenta"];1124 -> 1240[label="",style="dashed", color="magenta", weight=3]; 1124 -> 1241[label="",style="dashed", color="magenta", weight=3]; 1125 -> 389[label="",style="dashed", color="red", weight=0]; 1125[label="vwx32 == vwx42",fontsize=16,color="magenta"];1125 -> 1242[label="",style="dashed", color="magenta", weight=3]; 1125 -> 1243[label="",style="dashed", color="magenta", weight=3]; 1126 -> 390[label="",style="dashed", color="red", weight=0]; 1126[label="vwx32 == vwx42",fontsize=16,color="magenta"];1126 -> 1244[label="",style="dashed", color="magenta", weight=3]; 1126 -> 1245[label="",style="dashed", color="magenta", weight=3]; 1127 -> 391[label="",style="dashed", color="red", weight=0]; 1127[label="vwx32 == vwx42",fontsize=16,color="magenta"];1127 -> 1246[label="",style="dashed", color="magenta", weight=3]; 1127 -> 1247[label="",style="dashed", color="magenta", weight=3]; 1128 -> 392[label="",style="dashed", color="red", weight=0]; 1128[label="vwx32 == vwx42",fontsize=16,color="magenta"];1128 -> 1248[label="",style="dashed", color="magenta", weight=3]; 1128 -> 1249[label="",style="dashed", color="magenta", weight=3]; 1129 -> 393[label="",style="dashed", color="red", weight=0]; 1129[label="vwx32 == vwx42",fontsize=16,color="magenta"];1129 -> 1250[label="",style="dashed", color="magenta", weight=3]; 1129 -> 1251[label="",style="dashed", color="magenta", weight=3]; 1130 -> 394[label="",style="dashed", color="red", weight=0]; 1130[label="vwx32 == vwx42",fontsize=16,color="magenta"];1130 -> 1252[label="",style="dashed", color="magenta", weight=3]; 1130 -> 1253[label="",style="dashed", color="magenta", weight=3]; 1131 -> 395[label="",style="dashed", color="red", weight=0]; 1131[label="vwx32 == vwx42",fontsize=16,color="magenta"];1131 -> 1254[label="",style="dashed", color="magenta", weight=3]; 1131 -> 1255[label="",style="dashed", color="magenta", weight=3]; 1132 -> 396[label="",style="dashed", color="red", weight=0]; 1132[label="vwx32 == vwx42",fontsize=16,color="magenta"];1132 -> 1256[label="",style="dashed", color="magenta", weight=3]; 1132 -> 1257[label="",style="dashed", color="magenta", weight=3]; 1133 -> 397[label="",style="dashed", color="red", weight=0]; 1133[label="vwx32 == vwx42",fontsize=16,color="magenta"];1133 -> 1258[label="",style="dashed", color="magenta", weight=3]; 1133 -> 1259[label="",style="dashed", color="magenta", weight=3]; 1134[label="False",fontsize=16,color="green",shape="box"];1135[label="vwx114",fontsize=16,color="green",shape="box"];1136 -> 1354[label="",style="dashed", color="red", weight=0]; 1136[label="compare1 (vwx69,vwx70,vwx71) (vwx72,vwx73,vwx74) (vwx69 < vwx72 || vwx69 == vwx72 && (vwx70 < vwx73 || vwx70 == vwx73 && vwx71 <= vwx74))",fontsize=16,color="magenta"];1136 -> 1355[label="",style="dashed", color="magenta", weight=3]; 1136 -> 1356[label="",style="dashed", color="magenta", weight=3]; 1136 -> 1357[label="",style="dashed", color="magenta", weight=3]; 1136 -> 1358[label="",style="dashed", color="magenta", weight=3]; 1136 -> 1359[label="",style="dashed", color="magenta", weight=3]; 1136 -> 1360[label="",style="dashed", color="magenta", weight=3]; 1136 -> 1361[label="",style="dashed", color="magenta", weight=3]; 1136 -> 1362[label="",style="dashed", color="magenta", weight=3]; 790[label="Pos (primMulNat vwx400 vwx310)",fontsize=16,color="green",shape="box"];790 -> 1070[label="",style="dashed", color="green", weight=3]; 791[label="Neg (primMulNat vwx400 vwx310)",fontsize=16,color="green",shape="box"];791 -> 1071[label="",style="dashed", color="green", weight=3]; 792[label="Neg (primMulNat vwx400 vwx310)",fontsize=16,color="green",shape="box"];792 -> 1072[label="",style="dashed", color="green", weight=3]; 793[label="Pos (primMulNat vwx400 vwx310)",fontsize=16,color="green",shape="box"];793 -> 1073[label="",style="dashed", color="green", weight=3]; 794 -> 335[label="",style="dashed", color="red", weight=0]; 794[label="primMulInt vwx400 vwx310",fontsize=16,color="magenta"];794 -> 1074[label="",style="dashed", color="magenta", weight=3]; 794 -> 1075[label="",style="dashed", color="magenta", weight=3]; 1137[label="vwx40",fontsize=16,color="green",shape="box"];1138[label="vwx30",fontsize=16,color="green",shape="box"];1139[label="vwx40",fontsize=16,color="green",shape="box"];1140[label="vwx30",fontsize=16,color="green",shape="box"];1141[label="vwx40",fontsize=16,color="green",shape="box"];1142[label="vwx30",fontsize=16,color="green",shape="box"];1143[label="vwx40",fontsize=16,color="green",shape="box"];1144[label="vwx30",fontsize=16,color="green",shape="box"];1145[label="vwx40",fontsize=16,color="green",shape="box"];1146[label="vwx30",fontsize=16,color="green",shape="box"];1147[label="vwx40",fontsize=16,color="green",shape="box"];1148[label="vwx30",fontsize=16,color="green",shape="box"];1149[label="vwx40",fontsize=16,color="green",shape="box"];1150[label="vwx30",fontsize=16,color="green",shape="box"];1151[label="vwx40",fontsize=16,color="green",shape="box"];1152[label="vwx30",fontsize=16,color="green",shape="box"];1153[label="vwx40",fontsize=16,color="green",shape="box"];1154[label="vwx30",fontsize=16,color="green",shape="box"];1155[label="vwx40",fontsize=16,color="green",shape="box"];1156[label="vwx30",fontsize=16,color="green",shape="box"];1157[label="vwx40",fontsize=16,color="green",shape="box"];1158[label="vwx30",fontsize=16,color="green",shape="box"];1159[label="vwx40",fontsize=16,color="green",shape="box"];1160[label="vwx30",fontsize=16,color="green",shape="box"];1161[label="vwx40",fontsize=16,color="green",shape="box"];1162[label="vwx30",fontsize=16,color="green",shape="box"];1163[label="vwx40",fontsize=16,color="green",shape="box"];1164[label="vwx30",fontsize=16,color="green",shape="box"];1165[label="vwx41",fontsize=16,color="green",shape="box"];1166[label="vwx31",fontsize=16,color="green",shape="box"];1167[label="vwx41",fontsize=16,color="green",shape="box"];1168[label="vwx31",fontsize=16,color="green",shape="box"];1169[label="vwx41",fontsize=16,color="green",shape="box"];1170[label="vwx31",fontsize=16,color="green",shape="box"];1171[label="vwx41",fontsize=16,color="green",shape="box"];1172[label="vwx31",fontsize=16,color="green",shape="box"];1173[label="vwx41",fontsize=16,color="green",shape="box"];1174[label="vwx31",fontsize=16,color="green",shape="box"];1175[label="vwx41",fontsize=16,color="green",shape="box"];1176[label="vwx31",fontsize=16,color="green",shape="box"];1177[label="vwx41",fontsize=16,color="green",shape="box"];1178[label="vwx31",fontsize=16,color="green",shape="box"];1179[label="vwx41",fontsize=16,color="green",shape="box"];1180[label="vwx31",fontsize=16,color="green",shape="box"];1181[label="vwx41",fontsize=16,color="green",shape="box"];1182[label="vwx31",fontsize=16,color="green",shape="box"];1183[label="vwx41",fontsize=16,color="green",shape="box"];1184[label="vwx31",fontsize=16,color="green",shape="box"];1185[label="vwx41",fontsize=16,color="green",shape="box"];1186[label="vwx31",fontsize=16,color="green",shape="box"];1187[label="vwx41",fontsize=16,color="green",shape="box"];1188[label="vwx31",fontsize=16,color="green",shape="box"];1189[label="vwx41",fontsize=16,color="green",shape="box"];1190[label="vwx31",fontsize=16,color="green",shape="box"];1191[label="vwx41",fontsize=16,color="green",shape="box"];1192[label="vwx31",fontsize=16,color="green",shape="box"];932 -> 1397[label="",style="dashed", color="red", weight=0]; 932[label="compare1 (vwx82,vwx83) (vwx84,vwx85) (vwx82 < vwx84 || vwx82 == vwx84 && vwx83 <= vwx85)",fontsize=16,color="magenta"];932 -> 1398[label="",style="dashed", color="magenta", weight=3]; 932 -> 1399[label="",style="dashed", color="magenta", weight=3]; 932 -> 1400[label="",style="dashed", color="magenta", weight=3]; 932 -> 1401[label="",style="dashed", color="magenta", weight=3]; 932 -> 1402[label="",style="dashed", color="magenta", weight=3]; 932 -> 1403[label="",style="dashed", color="magenta", weight=3]; 839[label="compare0 EQ LT True",fontsize=16,color="black",shape="box"];839 -> 1193[label="",style="solid", color="black", weight=3]; 840[label="compare0 GT LT True",fontsize=16,color="black",shape="box"];840 -> 1194[label="",style="solid", color="black", weight=3]; 841[label="compare0 GT EQ True",fontsize=16,color="black",shape="box"];841 -> 1195[label="",style="solid", color="black", weight=3]; 842[label="compare0 (Just vwx30) Nothing True",fontsize=16,color="black",shape="box"];842 -> 1196[label="",style="solid", color="black", weight=3]; 1198[label="Just vwx58 <= Just vwx59",fontsize=16,color="black",shape="box"];1198 -> 1262[label="",style="solid", color="black", weight=3]; 1199[label="vwx58",fontsize=16,color="green",shape="box"];1200[label="vwx59",fontsize=16,color="green",shape="box"];1197[label="compare1 (Just vwx120) (Just vwx121) vwx122",fontsize=16,color="burlywood",shape="triangle"];3222[label="vwx122/False",fontsize=10,color="white",style="solid",shape="box"];1197 -> 3222[label="",style="solid", color="burlywood", weight=9]; 3222 -> 1263[label="",style="solid", color="burlywood", weight=3]; 3223[label="vwx122/True",fontsize=10,color="white",style="solid",shape="box"];1197 -> 3223[label="",style="solid", color="burlywood", weight=9]; 3223 -> 1264[label="",style="solid", color="burlywood", weight=3]; 844[label="GT",fontsize=16,color="green",shape="box"];845 -> 1003[label="",style="dashed", color="red", weight=0]; 845[label="vwx300 == vwx400 && vwx301 == vwx401",fontsize=16,color="magenta"];845 -> 1012[label="",style="dashed", color="magenta", weight=3]; 845 -> 1013[label="",style="dashed", color="magenta", weight=3]; 846[label="primEqFloat (Float vwx300 vwx301) (Float vwx400 vwx401)",fontsize=16,color="black",shape="box"];846 -> 1265[label="",style="solid", color="black", weight=3]; 847[label="primEqChar (Char vwx300) (Char vwx400)",fontsize=16,color="black",shape="box"];847 -> 1266[label="",style="solid", color="black", weight=3]; 848[label="True",fontsize=16,color="green",shape="box"];849[label="True",fontsize=16,color="green",shape="box"];850[label="False",fontsize=16,color="green",shape="box"];851[label="False",fontsize=16,color="green",shape="box"];852[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];3224[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];852 -> 3224[label="",style="solid", color="blue", weight=9]; 3224 -> 1267[label="",style="solid", color="blue", weight=3]; 3225[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];852 -> 3225[label="",style="solid", color="blue", weight=9]; 3225 -> 1268[label="",style="solid", color="blue", weight=3]; 3226[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];852 -> 3226[label="",style="solid", color="blue", weight=9]; 3226 -> 1269[label="",style="solid", color="blue", weight=3]; 3227[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];852 -> 3227[label="",style="solid", color="blue", weight=9]; 3227 -> 1270[label="",style="solid", color="blue", weight=3]; 3228[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];852 -> 3228[label="",style="solid", color="blue", weight=9]; 3228 -> 1271[label="",style="solid", color="blue", weight=3]; 3229[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];852 -> 3229[label="",style="solid", color="blue", weight=9]; 3229 -> 1272[label="",style="solid", color="blue", weight=3]; 3230[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];852 -> 3230[label="",style="solid", color="blue", weight=9]; 3230 -> 1273[label="",style="solid", color="blue", weight=3]; 3231[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];852 -> 3231[label="",style="solid", color="blue", weight=9]; 3231 -> 1274[label="",style="solid", color="blue", weight=3]; 3232[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];852 -> 3232[label="",style="solid", color="blue", weight=9]; 3232 -> 1275[label="",style="solid", color="blue", weight=3]; 3233[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];852 -> 3233[label="",style="solid", color="blue", weight=9]; 3233 -> 1276[label="",style="solid", color="blue", weight=3]; 3234[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];852 -> 3234[label="",style="solid", color="blue", weight=9]; 3234 -> 1277[label="",style="solid", color="blue", weight=3]; 3235[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];852 -> 3235[label="",style="solid", color="blue", weight=9]; 3235 -> 1278[label="",style="solid", color="blue", weight=3]; 3236[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];852 -> 3236[label="",style="solid", color="blue", weight=9]; 3236 -> 1279[label="",style="solid", color="blue", weight=3]; 3237[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];852 -> 3237[label="",style="solid", color="blue", weight=9]; 3237 -> 1280[label="",style="solid", color="blue", weight=3]; 853[label="True",fontsize=16,color="green",shape="box"];854[label="False",fontsize=16,color="green",shape="box"];855[label="False",fontsize=16,color="green",shape="box"];856[label="False",fontsize=16,color="green",shape="box"];857[label="True",fontsize=16,color="green",shape="box"];858[label="False",fontsize=16,color="green",shape="box"];859[label="False",fontsize=16,color="green",shape="box"];860[label="False",fontsize=16,color="green",shape="box"];861[label="True",fontsize=16,color="green",shape="box"];862[label="primEqDouble (Double vwx300 vwx301) (Double vwx400 vwx401)",fontsize=16,color="black",shape="box"];862 -> 1281[label="",style="solid", color="black", weight=3]; 863 -> 533[label="",style="dashed", color="red", weight=0]; 863[label="primEqInt vwx300 vwx400",fontsize=16,color="magenta"];863 -> 1282[label="",style="dashed", color="magenta", weight=3]; 863 -> 1283[label="",style="dashed", color="magenta", weight=3]; 864 -> 1003[label="",style="dashed", color="red", weight=0]; 864[label="vwx300 == vwx400 && vwx301 == vwx401",fontsize=16,color="magenta"];864 -> 1014[label="",style="dashed", color="magenta", weight=3]; 864 -> 1015[label="",style="dashed", color="magenta", weight=3]; 865[label="False",fontsize=16,color="green",shape="box"];866[label="False",fontsize=16,color="green",shape="box"];867[label="True",fontsize=16,color="green",shape="box"];868[label="primEqInt (Pos (Succ vwx3000)) vwx40",fontsize=16,color="burlywood",shape="box"];3238[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];868 -> 3238[label="",style="solid", color="burlywood", weight=9]; 3238 -> 1284[label="",style="solid", color="burlywood", weight=3]; 3239[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];868 -> 3239[label="",style="solid", color="burlywood", weight=9]; 3239 -> 1285[label="",style="solid", color="burlywood", weight=3]; 869[label="primEqInt (Pos Zero) vwx40",fontsize=16,color="burlywood",shape="box"];3240[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];869 -> 3240[label="",style="solid", color="burlywood", weight=9]; 3240 -> 1286[label="",style="solid", color="burlywood", weight=3]; 3241[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];869 -> 3241[label="",style="solid", color="burlywood", weight=9]; 3241 -> 1287[label="",style="solid", color="burlywood", weight=3]; 870[label="primEqInt (Neg (Succ vwx3000)) vwx40",fontsize=16,color="burlywood",shape="box"];3242[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];870 -> 3242[label="",style="solid", color="burlywood", weight=9]; 3242 -> 1288[label="",style="solid", color="burlywood", weight=3]; 3243[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];870 -> 3243[label="",style="solid", color="burlywood", weight=9]; 3243 -> 1289[label="",style="solid", color="burlywood", weight=3]; 871[label="primEqInt (Neg Zero) vwx40",fontsize=16,color="burlywood",shape="box"];3244[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];871 -> 3244[label="",style="solid", color="burlywood", weight=9]; 3244 -> 1290[label="",style="solid", color="burlywood", weight=3]; 3245[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];871 -> 3245[label="",style="solid", color="burlywood", weight=9]; 3245 -> 1291[label="",style="solid", color="burlywood", weight=3]; 872 -> 1003[label="",style="dashed", color="red", weight=0]; 872[label="vwx300 == vwx400 && vwx301 == vwx401 && vwx302 == vwx402",fontsize=16,color="magenta"];872 -> 1016[label="",style="dashed", color="magenta", weight=3]; 872 -> 1017[label="",style="dashed", color="magenta", weight=3]; 873 -> 1003[label="",style="dashed", color="red", weight=0]; 873[label="vwx300 == vwx400 && vwx301 == vwx401",fontsize=16,color="magenta"];873 -> 1018[label="",style="dashed", color="magenta", weight=3]; 873 -> 1019[label="",style="dashed", color="magenta", weight=3]; 874[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];3246[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];874 -> 3246[label="",style="solid", color="blue", weight=9]; 3246 -> 1292[label="",style="solid", color="blue", weight=3]; 3247[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];874 -> 3247[label="",style="solid", color="blue", weight=9]; 3247 -> 1293[label="",style="solid", color="blue", weight=3]; 3248[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];874 -> 3248[label="",style="solid", color="blue", weight=9]; 3248 -> 1294[label="",style="solid", color="blue", weight=3]; 3249[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];874 -> 3249[label="",style="solid", color="blue", weight=9]; 3249 -> 1295[label="",style="solid", color="blue", weight=3]; 3250[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];874 -> 3250[label="",style="solid", color="blue", weight=9]; 3250 -> 1296[label="",style="solid", color="blue", weight=3]; 3251[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];874 -> 3251[label="",style="solid", color="blue", weight=9]; 3251 -> 1297[label="",style="solid", color="blue", weight=3]; 3252[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];874 -> 3252[label="",style="solid", color="blue", weight=9]; 3252 -> 1298[label="",style="solid", color="blue", weight=3]; 3253[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];874 -> 3253[label="",style="solid", color="blue", weight=9]; 3253 -> 1299[label="",style="solid", color="blue", weight=3]; 3254[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];874 -> 3254[label="",style="solid", color="blue", weight=9]; 3254 -> 1300[label="",style="solid", color="blue", weight=3]; 3255[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];874 -> 3255[label="",style="solid", color="blue", weight=9]; 3255 -> 1301[label="",style="solid", color="blue", weight=3]; 3256[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];874 -> 3256[label="",style="solid", color="blue", weight=9]; 3256 -> 1302[label="",style="solid", color="blue", weight=3]; 3257[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];874 -> 3257[label="",style="solid", color="blue", weight=9]; 3257 -> 1303[label="",style="solid", color="blue", weight=3]; 3258[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];874 -> 3258[label="",style="solid", color="blue", weight=9]; 3258 -> 1304[label="",style="solid", color="blue", weight=3]; 3259[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];874 -> 3259[label="",style="solid", color="blue", weight=9]; 3259 -> 1305[label="",style="solid", color="blue", weight=3]; 875[label="False",fontsize=16,color="green",shape="box"];876[label="False",fontsize=16,color="green",shape="box"];877[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];3260[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];877 -> 3260[label="",style="solid", color="blue", weight=9]; 3260 -> 1306[label="",style="solid", color="blue", weight=3]; 3261[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];877 -> 3261[label="",style="solid", color="blue", weight=9]; 3261 -> 1307[label="",style="solid", color="blue", weight=3]; 3262[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];877 -> 3262[label="",style="solid", color="blue", weight=9]; 3262 -> 1308[label="",style="solid", color="blue", weight=3]; 3263[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];877 -> 3263[label="",style="solid", color="blue", weight=9]; 3263 -> 1309[label="",style="solid", color="blue", weight=3]; 3264[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];877 -> 3264[label="",style="solid", color="blue", weight=9]; 3264 -> 1310[label="",style="solid", color="blue", weight=3]; 3265[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];877 -> 3265[label="",style="solid", color="blue", weight=9]; 3265 -> 1311[label="",style="solid", color="blue", weight=3]; 3266[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];877 -> 3266[label="",style="solid", color="blue", weight=9]; 3266 -> 1312[label="",style="solid", color="blue", weight=3]; 3267[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];877 -> 3267[label="",style="solid", color="blue", weight=9]; 3267 -> 1313[label="",style="solid", color="blue", weight=3]; 3268[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];877 -> 3268[label="",style="solid", color="blue", weight=9]; 3268 -> 1314[label="",style="solid", color="blue", weight=3]; 3269[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];877 -> 3269[label="",style="solid", color="blue", weight=9]; 3269 -> 1315[label="",style="solid", color="blue", weight=3]; 3270[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];877 -> 3270[label="",style="solid", color="blue", weight=9]; 3270 -> 1316[label="",style="solid", color="blue", weight=3]; 3271[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];877 -> 3271[label="",style="solid", color="blue", weight=9]; 3271 -> 1317[label="",style="solid", color="blue", weight=3]; 3272[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];877 -> 3272[label="",style="solid", color="blue", weight=9]; 3272 -> 1318[label="",style="solid", color="blue", weight=3]; 3273[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];877 -> 3273[label="",style="solid", color="blue", weight=9]; 3273 -> 1319[label="",style="solid", color="blue", weight=3]; 878[label="True",fontsize=16,color="green",shape="box"];879[label="False",fontsize=16,color="green",shape="box"];880[label="False",fontsize=16,color="green",shape="box"];881[label="True",fontsize=16,color="green",shape="box"];921[label="vwx13 <= vwx14",fontsize=16,color="blue",shape="box"];3274[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];921 -> 3274[label="",style="solid", color="blue", weight=9]; 3274 -> 1320[label="",style="solid", color="blue", weight=3]; 3275[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];921 -> 3275[label="",style="solid", color="blue", weight=9]; 3275 -> 1321[label="",style="solid", color="blue", weight=3]; 3276[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];921 -> 3276[label="",style="solid", color="blue", weight=9]; 3276 -> 1322[label="",style="solid", color="blue", weight=3]; 3277[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];921 -> 3277[label="",style="solid", color="blue", weight=9]; 3277 -> 1323[label="",style="solid", color="blue", weight=3]; 3278[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];921 -> 3278[label="",style="solid", color="blue", weight=9]; 3278 -> 1324[label="",style="solid", color="blue", weight=3]; 3279[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];921 -> 3279[label="",style="solid", color="blue", weight=9]; 3279 -> 1325[label="",style="solid", color="blue", weight=3]; 3280[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];921 -> 3280[label="",style="solid", color="blue", weight=9]; 3280 -> 1326[label="",style="solid", color="blue", weight=3]; 3281[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];921 -> 3281[label="",style="solid", color="blue", weight=9]; 3281 -> 1327[label="",style="solid", color="blue", weight=3]; 3282[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];921 -> 3282[label="",style="solid", color="blue", weight=9]; 3282 -> 1328[label="",style="solid", color="blue", weight=3]; 3283[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];921 -> 3283[label="",style="solid", color="blue", weight=9]; 3283 -> 1329[label="",style="solid", color="blue", weight=3]; 3284[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];921 -> 3284[label="",style="solid", color="blue", weight=9]; 3284 -> 1330[label="",style="solid", color="blue", weight=3]; 3285[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];921 -> 3285[label="",style="solid", color="blue", weight=9]; 3285 -> 1331[label="",style="solid", color="blue", weight=3]; 3286[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];921 -> 3286[label="",style="solid", color="blue", weight=9]; 3286 -> 1332[label="",style="solid", color="blue", weight=3]; 3287[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];921 -> 3287[label="",style="solid", color="blue", weight=9]; 3287 -> 1333[label="",style="solid", color="blue", weight=3]; 922[label="compare1 (Left vwx98) (Left vwx99) False",fontsize=16,color="black",shape="box"];922 -> 1334[label="",style="solid", color="black", weight=3]; 923[label="compare1 (Left vwx98) (Left vwx99) True",fontsize=16,color="black",shape="box"];923 -> 1335[label="",style="solid", color="black", weight=3]; 924[label="GT",fontsize=16,color="green",shape="box"];933[label="vwx20 <= vwx21",fontsize=16,color="blue",shape="box"];3288[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];933 -> 3288[label="",style="solid", color="blue", weight=9]; 3288 -> 1336[label="",style="solid", color="blue", weight=3]; 3289[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];933 -> 3289[label="",style="solid", color="blue", weight=9]; 3289 -> 1337[label="",style="solid", color="blue", weight=3]; 3290[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];933 -> 3290[label="",style="solid", color="blue", weight=9]; 3290 -> 1338[label="",style="solid", color="blue", weight=3]; 3291[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];933 -> 3291[label="",style="solid", color="blue", weight=9]; 3291 -> 1339[label="",style="solid", color="blue", weight=3]; 3292[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];933 -> 3292[label="",style="solid", color="blue", weight=9]; 3292 -> 1340[label="",style="solid", color="blue", weight=3]; 3293[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];933 -> 3293[label="",style="solid", color="blue", weight=9]; 3293 -> 1341[label="",style="solid", color="blue", weight=3]; 3294[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];933 -> 3294[label="",style="solid", color="blue", weight=9]; 3294 -> 1342[label="",style="solid", color="blue", weight=3]; 3295[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];933 -> 3295[label="",style="solid", color="blue", weight=9]; 3295 -> 1343[label="",style="solid", color="blue", weight=3]; 3296[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];933 -> 3296[label="",style="solid", color="blue", weight=9]; 3296 -> 1344[label="",style="solid", color="blue", weight=3]; 3297[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];933 -> 3297[label="",style="solid", color="blue", weight=9]; 3297 -> 1345[label="",style="solid", color="blue", weight=3]; 3298[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];933 -> 3298[label="",style="solid", color="blue", weight=9]; 3298 -> 1346[label="",style="solid", color="blue", weight=3]; 3299[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];933 -> 3299[label="",style="solid", color="blue", weight=9]; 3299 -> 1347[label="",style="solid", color="blue", weight=3]; 3300[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];933 -> 3300[label="",style="solid", color="blue", weight=9]; 3300 -> 1348[label="",style="solid", color="blue", weight=3]; 3301[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];933 -> 3301[label="",style="solid", color="blue", weight=9]; 3301 -> 1349[label="",style="solid", color="blue", weight=3]; 934[label="compare1 (Right vwx105) (Right vwx106) False",fontsize=16,color="black",shape="box"];934 -> 1350[label="",style="solid", color="black", weight=3]; 935[label="compare1 (Right vwx105) (Right vwx106) True",fontsize=16,color="black",shape="box"];935 -> 1351[label="",style="solid", color="black", weight=3]; 1204[label="vwx41",fontsize=16,color="green",shape="box"];1205[label="vwx31",fontsize=16,color="green",shape="box"];1206[label="vwx41",fontsize=16,color="green",shape="box"];1207[label="vwx31",fontsize=16,color="green",shape="box"];1208[label="vwx41",fontsize=16,color="green",shape="box"];1209[label="vwx31",fontsize=16,color="green",shape="box"];1210[label="vwx41",fontsize=16,color="green",shape="box"];1211[label="vwx31",fontsize=16,color="green",shape="box"];1212[label="vwx41",fontsize=16,color="green",shape="box"];1213[label="vwx31",fontsize=16,color="green",shape="box"];1214[label="vwx41",fontsize=16,color="green",shape="box"];1215[label="vwx31",fontsize=16,color="green",shape="box"];1216[label="vwx41",fontsize=16,color="green",shape="box"];1217[label="vwx31",fontsize=16,color="green",shape="box"];1218[label="vwx41",fontsize=16,color="green",shape="box"];1219[label="vwx31",fontsize=16,color="green",shape="box"];1220[label="vwx41",fontsize=16,color="green",shape="box"];1221[label="vwx31",fontsize=16,color="green",shape="box"];1222[label="vwx41",fontsize=16,color="green",shape="box"];1223[label="vwx31",fontsize=16,color="green",shape="box"];1224[label="vwx41",fontsize=16,color="green",shape="box"];1225[label="vwx31",fontsize=16,color="green",shape="box"];1226[label="vwx41",fontsize=16,color="green",shape="box"];1227[label="vwx31",fontsize=16,color="green",shape="box"];1228[label="vwx41",fontsize=16,color="green",shape="box"];1229[label="vwx31",fontsize=16,color="green",shape="box"];1230[label="vwx41",fontsize=16,color="green",shape="box"];1231[label="vwx31",fontsize=16,color="green",shape="box"];1232[label="vwx42",fontsize=16,color="green",shape="box"];1233[label="vwx32",fontsize=16,color="green",shape="box"];1234[label="vwx42",fontsize=16,color="green",shape="box"];1235[label="vwx32",fontsize=16,color="green",shape="box"];1236[label="vwx42",fontsize=16,color="green",shape="box"];1237[label="vwx32",fontsize=16,color="green",shape="box"];1238[label="vwx42",fontsize=16,color="green",shape="box"];1239[label="vwx32",fontsize=16,color="green",shape="box"];1240[label="vwx42",fontsize=16,color="green",shape="box"];1241[label="vwx32",fontsize=16,color="green",shape="box"];1242[label="vwx42",fontsize=16,color="green",shape="box"];1243[label="vwx32",fontsize=16,color="green",shape="box"];1244[label="vwx42",fontsize=16,color="green",shape="box"];1245[label="vwx32",fontsize=16,color="green",shape="box"];1246[label="vwx42",fontsize=16,color="green",shape="box"];1247[label="vwx32",fontsize=16,color="green",shape="box"];1248[label="vwx42",fontsize=16,color="green",shape="box"];1249[label="vwx32",fontsize=16,color="green",shape="box"];1250[label="vwx42",fontsize=16,color="green",shape="box"];1251[label="vwx32",fontsize=16,color="green",shape="box"];1252[label="vwx42",fontsize=16,color="green",shape="box"];1253[label="vwx32",fontsize=16,color="green",shape="box"];1254[label="vwx42",fontsize=16,color="green",shape="box"];1255[label="vwx32",fontsize=16,color="green",shape="box"];1256[label="vwx42",fontsize=16,color="green",shape="box"];1257[label="vwx32",fontsize=16,color="green",shape="box"];1258[label="vwx42",fontsize=16,color="green",shape="box"];1259[label="vwx32",fontsize=16,color="green",shape="box"];1355[label="vwx74",fontsize=16,color="green",shape="box"];1356[label="vwx71",fontsize=16,color="green",shape="box"];1357 -> 1003[label="",style="dashed", color="red", weight=0]; 1357[label="vwx69 == vwx72 && (vwx70 < vwx73 || vwx70 == vwx73 && vwx71 <= vwx74)",fontsize=16,color="magenta"];1357 -> 1371[label="",style="dashed", color="magenta", weight=3]; 1357 -> 1372[label="",style="dashed", color="magenta", weight=3]; 1358[label="vwx69",fontsize=16,color="green",shape="box"];1359[label="vwx72",fontsize=16,color="green",shape="box"];1360[label="vwx69 < vwx72",fontsize=16,color="blue",shape="box"];3302[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1360 -> 3302[label="",style="solid", color="blue", weight=9]; 3302 -> 1373[label="",style="solid", color="blue", weight=3]; 3303[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1360 -> 3303[label="",style="solid", color="blue", weight=9]; 3303 -> 1374[label="",style="solid", color="blue", weight=3]; 3304[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1360 -> 3304[label="",style="solid", color="blue", weight=9]; 3304 -> 1375[label="",style="solid", color="blue", weight=3]; 3305[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1360 -> 3305[label="",style="solid", color="blue", weight=9]; 3305 -> 1376[label="",style="solid", color="blue", weight=3]; 3306[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1360 -> 3306[label="",style="solid", color="blue", weight=9]; 3306 -> 1377[label="",style="solid", color="blue", weight=3]; 3307[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1360 -> 3307[label="",style="solid", color="blue", weight=9]; 3307 -> 1378[label="",style="solid", color="blue", weight=3]; 3308[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1360 -> 3308[label="",style="solid", color="blue", weight=9]; 3308 -> 1379[label="",style="solid", color="blue", weight=3]; 3309[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1360 -> 3309[label="",style="solid", color="blue", weight=9]; 3309 -> 1380[label="",style="solid", color="blue", weight=3]; 3310[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1360 -> 3310[label="",style="solid", color="blue", weight=9]; 3310 -> 1381[label="",style="solid", color="blue", weight=3]; 3311[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1360 -> 3311[label="",style="solid", color="blue", weight=9]; 3311 -> 1382[label="",style="solid", color="blue", weight=3]; 3312[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1360 -> 3312[label="",style="solid", color="blue", weight=9]; 3312 -> 1383[label="",style="solid", color="blue", weight=3]; 3313[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1360 -> 3313[label="",style="solid", color="blue", weight=9]; 3313 -> 1384[label="",style="solid", color="blue", weight=3]; 3314[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1360 -> 3314[label="",style="solid", color="blue", weight=9]; 3314 -> 1385[label="",style="solid", color="blue", weight=3]; 3315[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1360 -> 3315[label="",style="solid", color="blue", weight=9]; 3315 -> 1386[label="",style="solid", color="blue", weight=3]; 1361[label="vwx73",fontsize=16,color="green",shape="box"];1362[label="vwx70",fontsize=16,color="green",shape="box"];1354[label="compare1 (vwx134,vwx135,vwx136) (vwx137,vwx138,vwx139) (vwx140 || vwx141)",fontsize=16,color="burlywood",shape="triangle"];3316[label="vwx140/False",fontsize=10,color="white",style="solid",shape="box"];1354 -> 3316[label="",style="solid", color="burlywood", weight=9]; 3316 -> 1387[label="",style="solid", color="burlywood", weight=3]; 3317[label="vwx140/True",fontsize=10,color="white",style="solid",shape="box"];1354 -> 3317[label="",style="solid", color="burlywood", weight=9]; 3317 -> 1388[label="",style="solid", color="burlywood", weight=3]; 1070[label="primMulNat vwx400 vwx310",fontsize=16,color="burlywood",shape="triangle"];3318[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];1070 -> 3318[label="",style="solid", color="burlywood", weight=9]; 3318 -> 1389[label="",style="solid", color="burlywood", weight=3]; 3319[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];1070 -> 3319[label="",style="solid", color="burlywood", weight=9]; 3319 -> 1390[label="",style="solid", color="burlywood", weight=3]; 1071 -> 1070[label="",style="dashed", color="red", weight=0]; 1071[label="primMulNat vwx400 vwx310",fontsize=16,color="magenta"];1071 -> 1391[label="",style="dashed", color="magenta", weight=3]; 1072 -> 1070[label="",style="dashed", color="red", weight=0]; 1072[label="primMulNat vwx400 vwx310",fontsize=16,color="magenta"];1072 -> 1392[label="",style="dashed", color="magenta", weight=3]; 1073 -> 1070[label="",style="dashed", color="red", weight=0]; 1073[label="primMulNat vwx400 vwx310",fontsize=16,color="magenta"];1073 -> 1393[label="",style="dashed", color="magenta", weight=3]; 1073 -> 1394[label="",style="dashed", color="magenta", weight=3]; 1074[label="vwx400",fontsize=16,color="green",shape="box"];1075[label="vwx310",fontsize=16,color="green",shape="box"];1398[label="vwx83",fontsize=16,color="green",shape="box"];1399[label="vwx82",fontsize=16,color="green",shape="box"];1400 -> 1003[label="",style="dashed", color="red", weight=0]; 1400[label="vwx82 == vwx84 && vwx83 <= vwx85",fontsize=16,color="magenta"];1400 -> 1410[label="",style="dashed", color="magenta", weight=3]; 1400 -> 1411[label="",style="dashed", color="magenta", weight=3]; 1401[label="vwx84",fontsize=16,color="green",shape="box"];1402[label="vwx82 < vwx84",fontsize=16,color="blue",shape="box"];3320[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1402 -> 3320[label="",style="solid", color="blue", weight=9]; 3320 -> 1412[label="",style="solid", color="blue", weight=3]; 3321[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1402 -> 3321[label="",style="solid", color="blue", weight=9]; 3321 -> 1413[label="",style="solid", color="blue", weight=3]; 3322[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1402 -> 3322[label="",style="solid", color="blue", weight=9]; 3322 -> 1414[label="",style="solid", color="blue", weight=3]; 3323[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1402 -> 3323[label="",style="solid", color="blue", weight=9]; 3323 -> 1415[label="",style="solid", color="blue", weight=3]; 3324[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1402 -> 3324[label="",style="solid", color="blue", weight=9]; 3324 -> 1416[label="",style="solid", color="blue", weight=3]; 3325[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1402 -> 3325[label="",style="solid", color="blue", weight=9]; 3325 -> 1417[label="",style="solid", color="blue", weight=3]; 3326[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1402 -> 3326[label="",style="solid", color="blue", weight=9]; 3326 -> 1418[label="",style="solid", color="blue", weight=3]; 3327[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1402 -> 3327[label="",style="solid", color="blue", weight=9]; 3327 -> 1419[label="",style="solid", color="blue", weight=3]; 3328[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1402 -> 3328[label="",style="solid", color="blue", weight=9]; 3328 -> 1420[label="",style="solid", color="blue", weight=3]; 3329[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1402 -> 3329[label="",style="solid", color="blue", weight=9]; 3329 -> 1421[label="",style="solid", color="blue", weight=3]; 3330[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1402 -> 3330[label="",style="solid", color="blue", weight=9]; 3330 -> 1422[label="",style="solid", color="blue", weight=3]; 3331[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1402 -> 3331[label="",style="solid", color="blue", weight=9]; 3331 -> 1423[label="",style="solid", color="blue", weight=3]; 3332[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1402 -> 3332[label="",style="solid", color="blue", weight=9]; 3332 -> 1424[label="",style="solid", color="blue", weight=3]; 3333[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1402 -> 3333[label="",style="solid", color="blue", weight=9]; 3333 -> 1425[label="",style="solid", color="blue", weight=3]; 1403[label="vwx85",fontsize=16,color="green",shape="box"];1397[label="compare1 (vwx149,vwx150) (vwx151,vwx152) (vwx153 || vwx154)",fontsize=16,color="burlywood",shape="triangle"];3334[label="vwx153/False",fontsize=10,color="white",style="solid",shape="box"];1397 -> 3334[label="",style="solid", color="burlywood", weight=9]; 3334 -> 1426[label="",style="solid", color="burlywood", weight=3]; 3335[label="vwx153/True",fontsize=10,color="white",style="solid",shape="box"];1397 -> 3335[label="",style="solid", color="burlywood", weight=9]; 3335 -> 1427[label="",style="solid", color="burlywood", weight=3]; 1193[label="GT",fontsize=16,color="green",shape="box"];1194[label="GT",fontsize=16,color="green",shape="box"];1195[label="GT",fontsize=16,color="green",shape="box"];1196[label="GT",fontsize=16,color="green",shape="box"];1262[label="vwx58 <= vwx59",fontsize=16,color="blue",shape="box"];3336[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 3336[label="",style="solid", color="blue", weight=9]; 3336 -> 1428[label="",style="solid", color="blue", weight=3]; 3337[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 3337[label="",style="solid", color="blue", weight=9]; 3337 -> 1429[label="",style="solid", color="blue", weight=3]; 3338[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 3338[label="",style="solid", color="blue", weight=9]; 3338 -> 1430[label="",style="solid", color="blue", weight=3]; 3339[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 3339[label="",style="solid", color="blue", weight=9]; 3339 -> 1431[label="",style="solid", color="blue", weight=3]; 3340[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 3340[label="",style="solid", color="blue", weight=9]; 3340 -> 1432[label="",style="solid", color="blue", weight=3]; 3341[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 3341[label="",style="solid", color="blue", weight=9]; 3341 -> 1433[label="",style="solid", color="blue", weight=3]; 3342[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 3342[label="",style="solid", color="blue", weight=9]; 3342 -> 1434[label="",style="solid", color="blue", weight=3]; 3343[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 3343[label="",style="solid", color="blue", weight=9]; 3343 -> 1435[label="",style="solid", color="blue", weight=3]; 3344[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 3344[label="",style="solid", color="blue", weight=9]; 3344 -> 1436[label="",style="solid", color="blue", weight=3]; 3345[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 3345[label="",style="solid", color="blue", weight=9]; 3345 -> 1437[label="",style="solid", color="blue", weight=3]; 3346[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 3346[label="",style="solid", color="blue", weight=9]; 3346 -> 1438[label="",style="solid", color="blue", weight=3]; 3347[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 3347[label="",style="solid", color="blue", weight=9]; 3347 -> 1439[label="",style="solid", color="blue", weight=3]; 3348[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 3348[label="",style="solid", color="blue", weight=9]; 3348 -> 1440[label="",style="solid", color="blue", weight=3]; 3349[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 3349[label="",style="solid", color="blue", weight=9]; 3349 -> 1441[label="",style="solid", color="blue", weight=3]; 1263[label="compare1 (Just vwx120) (Just vwx121) False",fontsize=16,color="black",shape="box"];1263 -> 1442[label="",style="solid", color="black", weight=3]; 1264[label="compare1 (Just vwx120) (Just vwx121) True",fontsize=16,color="black",shape="box"];1264 -> 1443[label="",style="solid", color="black", weight=3]; 1012[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];3350[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1012 -> 3350[label="",style="solid", color="blue", weight=9]; 3350 -> 1444[label="",style="solid", color="blue", weight=3]; 3351[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1012 -> 3351[label="",style="solid", color="blue", weight=9]; 3351 -> 1445[label="",style="solid", color="blue", weight=3]; 3352[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1012 -> 3352[label="",style="solid", color="blue", weight=9]; 3352 -> 1446[label="",style="solid", color="blue", weight=3]; 3353[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1012 -> 3353[label="",style="solid", color="blue", weight=9]; 3353 -> 1447[label="",style="solid", color="blue", weight=3]; 3354[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1012 -> 3354[label="",style="solid", color="blue", weight=9]; 3354 -> 1448[label="",style="solid", color="blue", weight=3]; 3355[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1012 -> 3355[label="",style="solid", color="blue", weight=9]; 3355 -> 1449[label="",style="solid", color="blue", weight=3]; 3356[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1012 -> 3356[label="",style="solid", color="blue", weight=9]; 3356 -> 1450[label="",style="solid", color="blue", weight=3]; 3357[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1012 -> 3357[label="",style="solid", color="blue", weight=9]; 3357 -> 1451[label="",style="solid", color="blue", weight=3]; 3358[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1012 -> 3358[label="",style="solid", color="blue", weight=9]; 3358 -> 1452[label="",style="solid", color="blue", weight=3]; 3359[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1012 -> 3359[label="",style="solid", color="blue", weight=9]; 3359 -> 1453[label="",style="solid", color="blue", weight=3]; 3360[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1012 -> 3360[label="",style="solid", color="blue", weight=9]; 3360 -> 1454[label="",style="solid", color="blue", weight=3]; 3361[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1012 -> 3361[label="",style="solid", color="blue", weight=9]; 3361 -> 1455[label="",style="solid", color="blue", weight=3]; 3362[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1012 -> 3362[label="",style="solid", color="blue", weight=9]; 3362 -> 1456[label="",style="solid", color="blue", weight=3]; 3363[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1012 -> 3363[label="",style="solid", color="blue", weight=9]; 3363 -> 1457[label="",style="solid", color="blue", weight=3]; 1013[label="vwx301 == vwx401",fontsize=16,color="blue",shape="box"];3364[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1013 -> 3364[label="",style="solid", color="blue", weight=9]; 3364 -> 1458[label="",style="solid", color="blue", weight=3]; 3365[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1013 -> 3365[label="",style="solid", color="blue", weight=9]; 3365 -> 1459[label="",style="solid", color="blue", weight=3]; 3366[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1013 -> 3366[label="",style="solid", color="blue", weight=9]; 3366 -> 1460[label="",style="solid", color="blue", weight=3]; 3367[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1013 -> 3367[label="",style="solid", color="blue", weight=9]; 3367 -> 1461[label="",style="solid", color="blue", weight=3]; 3368[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1013 -> 3368[label="",style="solid", color="blue", weight=9]; 3368 -> 1462[label="",style="solid", color="blue", weight=3]; 3369[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1013 -> 3369[label="",style="solid", color="blue", weight=9]; 3369 -> 1463[label="",style="solid", color="blue", weight=3]; 3370[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1013 -> 3370[label="",style="solid", color="blue", weight=9]; 3370 -> 1464[label="",style="solid", color="blue", weight=3]; 3371[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1013 -> 3371[label="",style="solid", color="blue", weight=9]; 3371 -> 1465[label="",style="solid", color="blue", weight=3]; 3372[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1013 -> 3372[label="",style="solid", color="blue", weight=9]; 3372 -> 1466[label="",style="solid", color="blue", weight=3]; 3373[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1013 -> 3373[label="",style="solid", color="blue", weight=9]; 3373 -> 1467[label="",style="solid", color="blue", weight=3]; 3374[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1013 -> 3374[label="",style="solid", color="blue", weight=9]; 3374 -> 1468[label="",style="solid", color="blue", weight=3]; 3375[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1013 -> 3375[label="",style="solid", color="blue", weight=9]; 3375 -> 1469[label="",style="solid", color="blue", weight=3]; 3376[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1013 -> 3376[label="",style="solid", color="blue", weight=9]; 3376 -> 1470[label="",style="solid", color="blue", weight=3]; 3377[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1013 -> 3377[label="",style="solid", color="blue", weight=9]; 3377 -> 1471[label="",style="solid", color="blue", weight=3]; 1265 -> 393[label="",style="dashed", color="red", weight=0]; 1265[label="vwx300 * vwx401 == vwx301 * vwx400",fontsize=16,color="magenta"];1265 -> 1472[label="",style="dashed", color="magenta", weight=3]; 1265 -> 1473[label="",style="dashed", color="magenta", weight=3]; 1266[label="primEqNat vwx300 vwx400",fontsize=16,color="burlywood",shape="triangle"];3378[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];1266 -> 3378[label="",style="solid", color="burlywood", weight=9]; 3378 -> 1474[label="",style="solid", color="burlywood", weight=3]; 3379[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];1266 -> 3379[label="",style="solid", color="burlywood", weight=9]; 3379 -> 1475[label="",style="solid", color="burlywood", weight=3]; 1267 -> 384[label="",style="dashed", color="red", weight=0]; 1267[label="vwx300 == vwx400",fontsize=16,color="magenta"];1267 -> 1476[label="",style="dashed", color="magenta", weight=3]; 1267 -> 1477[label="",style="dashed", color="magenta", weight=3]; 1268 -> 385[label="",style="dashed", color="red", weight=0]; 1268[label="vwx300 == vwx400",fontsize=16,color="magenta"];1268 -> 1478[label="",style="dashed", color="magenta", weight=3]; 1268 -> 1479[label="",style="dashed", color="magenta", weight=3]; 1269 -> 386[label="",style="dashed", color="red", weight=0]; 1269[label="vwx300 == vwx400",fontsize=16,color="magenta"];1269 -> 1480[label="",style="dashed", color="magenta", weight=3]; 1269 -> 1481[label="",style="dashed", color="magenta", weight=3]; 1270 -> 387[label="",style="dashed", color="red", weight=0]; 1270[label="vwx300 == vwx400",fontsize=16,color="magenta"];1270 -> 1482[label="",style="dashed", color="magenta", weight=3]; 1270 -> 1483[label="",style="dashed", color="magenta", weight=3]; 1271 -> 388[label="",style="dashed", color="red", weight=0]; 1271[label="vwx300 == vwx400",fontsize=16,color="magenta"];1271 -> 1484[label="",style="dashed", color="magenta", weight=3]; 1271 -> 1485[label="",style="dashed", color="magenta", weight=3]; 1272 -> 389[label="",style="dashed", color="red", weight=0]; 1272[label="vwx300 == vwx400",fontsize=16,color="magenta"];1272 -> 1486[label="",style="dashed", color="magenta", weight=3]; 1272 -> 1487[label="",style="dashed", color="magenta", weight=3]; 1273 -> 390[label="",style="dashed", color="red", weight=0]; 1273[label="vwx300 == vwx400",fontsize=16,color="magenta"];1273 -> 1488[label="",style="dashed", color="magenta", weight=3]; 1273 -> 1489[label="",style="dashed", color="magenta", weight=3]; 1274 -> 391[label="",style="dashed", color="red", weight=0]; 1274[label="vwx300 == vwx400",fontsize=16,color="magenta"];1274 -> 1490[label="",style="dashed", color="magenta", weight=3]; 1274 -> 1491[label="",style="dashed", color="magenta", weight=3]; 1275 -> 392[label="",style="dashed", color="red", weight=0]; 1275[label="vwx300 == vwx400",fontsize=16,color="magenta"];1275 -> 1492[label="",style="dashed", color="magenta", weight=3]; 1275 -> 1493[label="",style="dashed", color="magenta", weight=3]; 1276 -> 393[label="",style="dashed", color="red", weight=0]; 1276[label="vwx300 == vwx400",fontsize=16,color="magenta"];1276 -> 1494[label="",style="dashed", color="magenta", weight=3]; 1276 -> 1495[label="",style="dashed", color="magenta", weight=3]; 1277 -> 394[label="",style="dashed", color="red", weight=0]; 1277[label="vwx300 == vwx400",fontsize=16,color="magenta"];1277 -> 1496[label="",style="dashed", color="magenta", weight=3]; 1277 -> 1497[label="",style="dashed", color="magenta", weight=3]; 1278 -> 395[label="",style="dashed", color="red", weight=0]; 1278[label="vwx300 == vwx400",fontsize=16,color="magenta"];1278 -> 1498[label="",style="dashed", color="magenta", weight=3]; 1278 -> 1499[label="",style="dashed", color="magenta", weight=3]; 1279 -> 396[label="",style="dashed", color="red", weight=0]; 1279[label="vwx300 == vwx400",fontsize=16,color="magenta"];1279 -> 1500[label="",style="dashed", color="magenta", weight=3]; 1279 -> 1501[label="",style="dashed", color="magenta", weight=3]; 1280 -> 397[label="",style="dashed", color="red", weight=0]; 1280[label="vwx300 == vwx400",fontsize=16,color="magenta"];1280 -> 1502[label="",style="dashed", color="magenta", weight=3]; 1280 -> 1503[label="",style="dashed", color="magenta", weight=3]; 1281 -> 393[label="",style="dashed", color="red", weight=0]; 1281[label="vwx300 * vwx401 == vwx301 * vwx400",fontsize=16,color="magenta"];1281 -> 1504[label="",style="dashed", color="magenta", weight=3]; 1281 -> 1505[label="",style="dashed", color="magenta", weight=3]; 1282[label="vwx400",fontsize=16,color="green",shape="box"];1283[label="vwx300",fontsize=16,color="green",shape="box"];1014[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];3380[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1014 -> 3380[label="",style="solid", color="blue", weight=9]; 3380 -> 1506[label="",style="solid", color="blue", weight=3]; 3381[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1014 -> 3381[label="",style="solid", color="blue", weight=9]; 3381 -> 1507[label="",style="solid", color="blue", weight=3]; 3382[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1014 -> 3382[label="",style="solid", color="blue", weight=9]; 3382 -> 1508[label="",style="solid", color="blue", weight=3]; 3383[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1014 -> 3383[label="",style="solid", color="blue", weight=9]; 3383 -> 1509[label="",style="solid", color="blue", weight=3]; 3384[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1014 -> 3384[label="",style="solid", color="blue", weight=9]; 3384 -> 1510[label="",style="solid", color="blue", weight=3]; 3385[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1014 -> 3385[label="",style="solid", color="blue", weight=9]; 3385 -> 1511[label="",style="solid", color="blue", weight=3]; 3386[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1014 -> 3386[label="",style="solid", color="blue", weight=9]; 3386 -> 1512[label="",style="solid", color="blue", weight=3]; 3387[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1014 -> 3387[label="",style="solid", color="blue", weight=9]; 3387 -> 1513[label="",style="solid", color="blue", weight=3]; 3388[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1014 -> 3388[label="",style="solid", color="blue", weight=9]; 3388 -> 1514[label="",style="solid", color="blue", weight=3]; 3389[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1014 -> 3389[label="",style="solid", color="blue", weight=9]; 3389 -> 1515[label="",style="solid", color="blue", weight=3]; 3390[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1014 -> 3390[label="",style="solid", color="blue", weight=9]; 3390 -> 1516[label="",style="solid", color="blue", weight=3]; 3391[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1014 -> 3391[label="",style="solid", color="blue", weight=9]; 3391 -> 1517[label="",style="solid", color="blue", weight=3]; 3392[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1014 -> 3392[label="",style="solid", color="blue", weight=9]; 3392 -> 1518[label="",style="solid", color="blue", weight=3]; 3393[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1014 -> 3393[label="",style="solid", color="blue", weight=9]; 3393 -> 1519[label="",style="solid", color="blue", weight=3]; 1015 -> 392[label="",style="dashed", color="red", weight=0]; 1015[label="vwx301 == vwx401",fontsize=16,color="magenta"];1015 -> 1520[label="",style="dashed", color="magenta", weight=3]; 1015 -> 1521[label="",style="dashed", color="magenta", weight=3]; 1284[label="primEqInt (Pos (Succ vwx3000)) (Pos vwx400)",fontsize=16,color="burlywood",shape="box"];3394[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];1284 -> 3394[label="",style="solid", color="burlywood", weight=9]; 3394 -> 1522[label="",style="solid", color="burlywood", weight=3]; 3395[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];1284 -> 3395[label="",style="solid", color="burlywood", weight=9]; 3395 -> 1523[label="",style="solid", color="burlywood", weight=3]; 1285[label="primEqInt (Pos (Succ vwx3000)) (Neg vwx400)",fontsize=16,color="black",shape="box"];1285 -> 1524[label="",style="solid", color="black", weight=3]; 1286[label="primEqInt (Pos Zero) (Pos vwx400)",fontsize=16,color="burlywood",shape="box"];3396[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];1286 -> 3396[label="",style="solid", color="burlywood", weight=9]; 3396 -> 1525[label="",style="solid", color="burlywood", weight=3]; 3397[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];1286 -> 3397[label="",style="solid", color="burlywood", weight=9]; 3397 -> 1526[label="",style="solid", color="burlywood", weight=3]; 1287[label="primEqInt (Pos Zero) (Neg vwx400)",fontsize=16,color="burlywood",shape="box"];3398[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];1287 -> 3398[label="",style="solid", color="burlywood", weight=9]; 3398 -> 1527[label="",style="solid", color="burlywood", weight=3]; 3399[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];1287 -> 3399[label="",style="solid", color="burlywood", weight=9]; 3399 -> 1528[label="",style="solid", color="burlywood", weight=3]; 1288[label="primEqInt (Neg (Succ vwx3000)) (Pos vwx400)",fontsize=16,color="black",shape="box"];1288 -> 1529[label="",style="solid", color="black", weight=3]; 1289[label="primEqInt (Neg (Succ vwx3000)) (Neg vwx400)",fontsize=16,color="burlywood",shape="box"];3400[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];1289 -> 3400[label="",style="solid", color="burlywood", weight=9]; 3400 -> 1530[label="",style="solid", color="burlywood", weight=3]; 3401[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];1289 -> 3401[label="",style="solid", color="burlywood", weight=9]; 3401 -> 1531[label="",style="solid", color="burlywood", weight=3]; 1290[label="primEqInt (Neg Zero) (Pos vwx400)",fontsize=16,color="burlywood",shape="box"];3402[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];1290 -> 3402[label="",style="solid", color="burlywood", weight=9]; 3402 -> 1532[label="",style="solid", color="burlywood", weight=3]; 3403[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];1290 -> 3403[label="",style="solid", color="burlywood", weight=9]; 3403 -> 1533[label="",style="solid", color="burlywood", weight=3]; 1291[label="primEqInt (Neg Zero) (Neg vwx400)",fontsize=16,color="burlywood",shape="box"];3404[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];1291 -> 3404[label="",style="solid", color="burlywood", weight=9]; 3404 -> 1534[label="",style="solid", color="burlywood", weight=3]; 3405[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];1291 -> 3405[label="",style="solid", color="burlywood", weight=9]; 3405 -> 1535[label="",style="solid", color="burlywood", weight=3]; 1016[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];3406[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1016 -> 3406[label="",style="solid", color="blue", weight=9]; 3406 -> 1536[label="",style="solid", color="blue", weight=3]; 3407[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1016 -> 3407[label="",style="solid", color="blue", weight=9]; 3407 -> 1537[label="",style="solid", color="blue", weight=3]; 3408[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1016 -> 3408[label="",style="solid", color="blue", weight=9]; 3408 -> 1538[label="",style="solid", color="blue", weight=3]; 3409[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1016 -> 3409[label="",style="solid", color="blue", weight=9]; 3409 -> 1539[label="",style="solid", color="blue", weight=3]; 3410[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1016 -> 3410[label="",style="solid", color="blue", weight=9]; 3410 -> 1540[label="",style="solid", color="blue", weight=3]; 3411[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1016 -> 3411[label="",style="solid", color="blue", weight=9]; 3411 -> 1541[label="",style="solid", color="blue", weight=3]; 3412[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1016 -> 3412[label="",style="solid", color="blue", weight=9]; 3412 -> 1542[label="",style="solid", color="blue", weight=3]; 3413[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1016 -> 3413[label="",style="solid", color="blue", weight=9]; 3413 -> 1543[label="",style="solid", color="blue", weight=3]; 3414[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1016 -> 3414[label="",style="solid", color="blue", weight=9]; 3414 -> 1544[label="",style="solid", color="blue", weight=3]; 3415[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1016 -> 3415[label="",style="solid", color="blue", weight=9]; 3415 -> 1545[label="",style="solid", color="blue", weight=3]; 3416[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1016 -> 3416[label="",style="solid", color="blue", weight=9]; 3416 -> 1546[label="",style="solid", color="blue", weight=3]; 3417[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1016 -> 3417[label="",style="solid", color="blue", weight=9]; 3417 -> 1547[label="",style="solid", color="blue", weight=3]; 3418[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1016 -> 3418[label="",style="solid", color="blue", weight=9]; 3418 -> 1548[label="",style="solid", color="blue", weight=3]; 3419[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1016 -> 3419[label="",style="solid", color="blue", weight=9]; 3419 -> 1549[label="",style="solid", color="blue", weight=3]; 1017 -> 1003[label="",style="dashed", color="red", weight=0]; 1017[label="vwx301 == vwx401 && vwx302 == vwx402",fontsize=16,color="magenta"];1017 -> 1550[label="",style="dashed", color="magenta", weight=3]; 1017 -> 1551[label="",style="dashed", color="magenta", weight=3]; 1018[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];3420[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1018 -> 3420[label="",style="solid", color="blue", weight=9]; 3420 -> 1552[label="",style="solid", color="blue", weight=3]; 3421[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1018 -> 3421[label="",style="solid", color="blue", weight=9]; 3421 -> 1553[label="",style="solid", color="blue", weight=3]; 1019[label="vwx301 == vwx401",fontsize=16,color="blue",shape="box"];3422[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1019 -> 3422[label="",style="solid", color="blue", weight=9]; 3422 -> 1554[label="",style="solid", color="blue", weight=3]; 3423[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1019 -> 3423[label="",style="solid", color="blue", weight=9]; 3423 -> 1555[label="",style="solid", color="blue", weight=3]; 1292 -> 384[label="",style="dashed", color="red", weight=0]; 1292[label="vwx300 == vwx400",fontsize=16,color="magenta"];1292 -> 1556[label="",style="dashed", color="magenta", weight=3]; 1292 -> 1557[label="",style="dashed", color="magenta", weight=3]; 1293 -> 385[label="",style="dashed", color="red", weight=0]; 1293[label="vwx300 == vwx400",fontsize=16,color="magenta"];1293 -> 1558[label="",style="dashed", color="magenta", weight=3]; 1293 -> 1559[label="",style="dashed", color="magenta", weight=3]; 1294 -> 386[label="",style="dashed", color="red", weight=0]; 1294[label="vwx300 == vwx400",fontsize=16,color="magenta"];1294 -> 1560[label="",style="dashed", color="magenta", weight=3]; 1294 -> 1561[label="",style="dashed", color="magenta", weight=3]; 1295 -> 387[label="",style="dashed", color="red", weight=0]; 1295[label="vwx300 == vwx400",fontsize=16,color="magenta"];1295 -> 1562[label="",style="dashed", color="magenta", weight=3]; 1295 -> 1563[label="",style="dashed", color="magenta", weight=3]; 1296 -> 388[label="",style="dashed", color="red", weight=0]; 1296[label="vwx300 == vwx400",fontsize=16,color="magenta"];1296 -> 1564[label="",style="dashed", color="magenta", weight=3]; 1296 -> 1565[label="",style="dashed", color="magenta", weight=3]; 1297 -> 389[label="",style="dashed", color="red", weight=0]; 1297[label="vwx300 == vwx400",fontsize=16,color="magenta"];1297 -> 1566[label="",style="dashed", color="magenta", weight=3]; 1297 -> 1567[label="",style="dashed", color="magenta", weight=3]; 1298 -> 390[label="",style="dashed", color="red", weight=0]; 1298[label="vwx300 == vwx400",fontsize=16,color="magenta"];1298 -> 1568[label="",style="dashed", color="magenta", weight=3]; 1298 -> 1569[label="",style="dashed", color="magenta", weight=3]; 1299 -> 391[label="",style="dashed", color="red", weight=0]; 1299[label="vwx300 == vwx400",fontsize=16,color="magenta"];1299 -> 1570[label="",style="dashed", color="magenta", weight=3]; 1299 -> 1571[label="",style="dashed", color="magenta", weight=3]; 1300 -> 392[label="",style="dashed", color="red", weight=0]; 1300[label="vwx300 == vwx400",fontsize=16,color="magenta"];1300 -> 1572[label="",style="dashed", color="magenta", weight=3]; 1300 -> 1573[label="",style="dashed", color="magenta", weight=3]; 1301 -> 393[label="",style="dashed", color="red", weight=0]; 1301[label="vwx300 == vwx400",fontsize=16,color="magenta"];1301 -> 1574[label="",style="dashed", color="magenta", weight=3]; 1301 -> 1575[label="",style="dashed", color="magenta", weight=3]; 1302 -> 394[label="",style="dashed", color="red", weight=0]; 1302[label="vwx300 == vwx400",fontsize=16,color="magenta"];1302 -> 1576[label="",style="dashed", color="magenta", weight=3]; 1302 -> 1577[label="",style="dashed", color="magenta", weight=3]; 1303 -> 395[label="",style="dashed", color="red", weight=0]; 1303[label="vwx300 == vwx400",fontsize=16,color="magenta"];1303 -> 1578[label="",style="dashed", color="magenta", weight=3]; 1303 -> 1579[label="",style="dashed", color="magenta", weight=3]; 1304 -> 396[label="",style="dashed", color="red", weight=0]; 1304[label="vwx300 == vwx400",fontsize=16,color="magenta"];1304 -> 1580[label="",style="dashed", color="magenta", weight=3]; 1304 -> 1581[label="",style="dashed", color="magenta", weight=3]; 1305 -> 397[label="",style="dashed", color="red", weight=0]; 1305[label="vwx300 == vwx400",fontsize=16,color="magenta"];1305 -> 1582[label="",style="dashed", color="magenta", weight=3]; 1305 -> 1583[label="",style="dashed", color="magenta", weight=3]; 1306 -> 384[label="",style="dashed", color="red", weight=0]; 1306[label="vwx300 == vwx400",fontsize=16,color="magenta"];1306 -> 1584[label="",style="dashed", color="magenta", weight=3]; 1306 -> 1585[label="",style="dashed", color="magenta", weight=3]; 1307 -> 385[label="",style="dashed", color="red", weight=0]; 1307[label="vwx300 == vwx400",fontsize=16,color="magenta"];1307 -> 1586[label="",style="dashed", color="magenta", weight=3]; 1307 -> 1587[label="",style="dashed", color="magenta", weight=3]; 1308 -> 386[label="",style="dashed", color="red", weight=0]; 1308[label="vwx300 == vwx400",fontsize=16,color="magenta"];1308 -> 1588[label="",style="dashed", color="magenta", weight=3]; 1308 -> 1589[label="",style="dashed", color="magenta", weight=3]; 1309 -> 387[label="",style="dashed", color="red", weight=0]; 1309[label="vwx300 == vwx400",fontsize=16,color="magenta"];1309 -> 1590[label="",style="dashed", color="magenta", weight=3]; 1309 -> 1591[label="",style="dashed", color="magenta", weight=3]; 1310 -> 388[label="",style="dashed", color="red", weight=0]; 1310[label="vwx300 == vwx400",fontsize=16,color="magenta"];1310 -> 1592[label="",style="dashed", color="magenta", weight=3]; 1310 -> 1593[label="",style="dashed", color="magenta", weight=3]; 1311 -> 389[label="",style="dashed", color="red", weight=0]; 1311[label="vwx300 == vwx400",fontsize=16,color="magenta"];1311 -> 1594[label="",style="dashed", color="magenta", weight=3]; 1311 -> 1595[label="",style="dashed", color="magenta", weight=3]; 1312 -> 390[label="",style="dashed", color="red", weight=0]; 1312[label="vwx300 == vwx400",fontsize=16,color="magenta"];1312 -> 1596[label="",style="dashed", color="magenta", weight=3]; 1312 -> 1597[label="",style="dashed", color="magenta", weight=3]; 1313 -> 391[label="",style="dashed", color="red", weight=0]; 1313[label="vwx300 == vwx400",fontsize=16,color="magenta"];1313 -> 1598[label="",style="dashed", color="magenta", weight=3]; 1313 -> 1599[label="",style="dashed", color="magenta", weight=3]; 1314 -> 392[label="",style="dashed", color="red", weight=0]; 1314[label="vwx300 == vwx400",fontsize=16,color="magenta"];1314 -> 1600[label="",style="dashed", color="magenta", weight=3]; 1314 -> 1601[label="",style="dashed", color="magenta", weight=3]; 1315 -> 393[label="",style="dashed", color="red", weight=0]; 1315[label="vwx300 == vwx400",fontsize=16,color="magenta"];1315 -> 1602[label="",style="dashed", color="magenta", weight=3]; 1315 -> 1603[label="",style="dashed", color="magenta", weight=3]; 1316 -> 394[label="",style="dashed", color="red", weight=0]; 1316[label="vwx300 == vwx400",fontsize=16,color="magenta"];1316 -> 1604[label="",style="dashed", color="magenta", weight=3]; 1316 -> 1605[label="",style="dashed", color="magenta", weight=3]; 1317 -> 395[label="",style="dashed", color="red", weight=0]; 1317[label="vwx300 == vwx400",fontsize=16,color="magenta"];1317 -> 1606[label="",style="dashed", color="magenta", weight=3]; 1317 -> 1607[label="",style="dashed", color="magenta", weight=3]; 1318 -> 396[label="",style="dashed", color="red", weight=0]; 1318[label="vwx300 == vwx400",fontsize=16,color="magenta"];1318 -> 1608[label="",style="dashed", color="magenta", weight=3]; 1318 -> 1609[label="",style="dashed", color="magenta", weight=3]; 1319 -> 397[label="",style="dashed", color="red", weight=0]; 1319[label="vwx300 == vwx400",fontsize=16,color="magenta"];1319 -> 1610[label="",style="dashed", color="magenta", weight=3]; 1319 -> 1611[label="",style="dashed", color="magenta", weight=3]; 1320[label="vwx13 <= vwx14",fontsize=16,color="burlywood",shape="triangle"];3424[label="vwx13/False",fontsize=10,color="white",style="solid",shape="box"];1320 -> 3424[label="",style="solid", color="burlywood", weight=9]; 3424 -> 1612[label="",style="solid", color="burlywood", weight=3]; 3425[label="vwx13/True",fontsize=10,color="white",style="solid",shape="box"];1320 -> 3425[label="",style="solid", color="burlywood", weight=9]; 3425 -> 1613[label="",style="solid", color="burlywood", weight=3]; 1321[label="vwx13 <= vwx14",fontsize=16,color="black",shape="triangle"];1321 -> 1614[label="",style="solid", color="black", weight=3]; 1322[label="vwx13 <= vwx14",fontsize=16,color="burlywood",shape="triangle"];3426[label="vwx13/Left vwx130",fontsize=10,color="white",style="solid",shape="box"];1322 -> 3426[label="",style="solid", color="burlywood", weight=9]; 3426 -> 1615[label="",style="solid", color="burlywood", weight=3]; 3427[label="vwx13/Right vwx130",fontsize=10,color="white",style="solid",shape="box"];1322 -> 3427[label="",style="solid", color="burlywood", weight=9]; 3427 -> 1616[label="",style="solid", color="burlywood", weight=3]; 1323[label="vwx13 <= vwx14",fontsize=16,color="black",shape="triangle"];1323 -> 1617[label="",style="solid", color="black", weight=3]; 1324[label="vwx13 <= vwx14",fontsize=16,color="black",shape="triangle"];1324 -> 1618[label="",style="solid", color="black", weight=3]; 1325[label="vwx13 <= vwx14",fontsize=16,color="burlywood",shape="triangle"];3428[label="vwx13/(vwx130,vwx131,vwx132)",fontsize=10,color="white",style="solid",shape="box"];1325 -> 3428[label="",style="solid", color="burlywood", weight=9]; 3428 -> 1619[label="",style="solid", color="burlywood", weight=3]; 1326[label="vwx13 <= vwx14",fontsize=16,color="black",shape="triangle"];1326 -> 1620[label="",style="solid", color="black", weight=3]; 1327[label="vwx13 <= vwx14",fontsize=16,color="black",shape="triangle"];1327 -> 1621[label="",style="solid", color="black", weight=3]; 1328[label="vwx13 <= vwx14",fontsize=16,color="burlywood",shape="triangle"];3429[label="vwx13/(vwx130,vwx131)",fontsize=10,color="white",style="solid",shape="box"];1328 -> 3429[label="",style="solid", color="burlywood", weight=9]; 3429 -> 1622[label="",style="solid", color="burlywood", weight=3]; 1329[label="vwx13 <= vwx14",fontsize=16,color="burlywood",shape="triangle"];3430[label="vwx13/LT",fontsize=10,color="white",style="solid",shape="box"];1329 -> 3430[label="",style="solid", color="burlywood", weight=9]; 3430 -> 1623[label="",style="solid", color="burlywood", weight=3]; 3431[label="vwx13/EQ",fontsize=10,color="white",style="solid",shape="box"];1329 -> 3431[label="",style="solid", color="burlywood", weight=9]; 3431 -> 1624[label="",style="solid", color="burlywood", weight=3]; 3432[label="vwx13/GT",fontsize=10,color="white",style="solid",shape="box"];1329 -> 3432[label="",style="solid", color="burlywood", weight=9]; 3432 -> 1625[label="",style="solid", color="burlywood", weight=3]; 1330[label="vwx13 <= vwx14",fontsize=16,color="burlywood",shape="triangle"];3433[label="vwx13/Nothing",fontsize=10,color="white",style="solid",shape="box"];1330 -> 3433[label="",style="solid", color="burlywood", weight=9]; 3433 -> 1626[label="",style="solid", color="burlywood", weight=3]; 3434[label="vwx13/Just vwx130",fontsize=10,color="white",style="solid",shape="box"];1330 -> 3434[label="",style="solid", color="burlywood", weight=9]; 3434 -> 1627[label="",style="solid", color="burlywood", weight=3]; 1331[label="vwx13 <= vwx14",fontsize=16,color="black",shape="triangle"];1331 -> 1628[label="",style="solid", color="black", weight=3]; 1332[label="vwx13 <= vwx14",fontsize=16,color="black",shape="triangle"];1332 -> 1629[label="",style="solid", color="black", weight=3]; 1333[label="vwx13 <= vwx14",fontsize=16,color="black",shape="triangle"];1333 -> 1630[label="",style="solid", color="black", weight=3]; 1334[label="compare0 (Left vwx98) (Left vwx99) otherwise",fontsize=16,color="black",shape="box"];1334 -> 1631[label="",style="solid", color="black", weight=3]; 1335[label="LT",fontsize=16,color="green",shape="box"];1336 -> 1320[label="",style="dashed", color="red", weight=0]; 1336[label="vwx20 <= vwx21",fontsize=16,color="magenta"];1336 -> 1632[label="",style="dashed", color="magenta", weight=3]; 1336 -> 1633[label="",style="dashed", color="magenta", weight=3]; 1337 -> 1321[label="",style="dashed", color="red", weight=0]; 1337[label="vwx20 <= vwx21",fontsize=16,color="magenta"];1337 -> 1634[label="",style="dashed", color="magenta", weight=3]; 1337 -> 1635[label="",style="dashed", color="magenta", weight=3]; 1338 -> 1322[label="",style="dashed", color="red", weight=0]; 1338[label="vwx20 <= vwx21",fontsize=16,color="magenta"];1338 -> 1636[label="",style="dashed", color="magenta", weight=3]; 1338 -> 1637[label="",style="dashed", color="magenta", weight=3]; 1339 -> 1323[label="",style="dashed", color="red", weight=0]; 1339[label="vwx20 <= vwx21",fontsize=16,color="magenta"];1339 -> 1638[label="",style="dashed", color="magenta", weight=3]; 1339 -> 1639[label="",style="dashed", color="magenta", weight=3]; 1340 -> 1324[label="",style="dashed", color="red", weight=0]; 1340[label="vwx20 <= vwx21",fontsize=16,color="magenta"];1340 -> 1640[label="",style="dashed", color="magenta", weight=3]; 1340 -> 1641[label="",style="dashed", color="magenta", weight=3]; 1341 -> 1325[label="",style="dashed", color="red", weight=0]; 1341[label="vwx20 <= vwx21",fontsize=16,color="magenta"];1341 -> 1642[label="",style="dashed", color="magenta", weight=3]; 1341 -> 1643[label="",style="dashed", color="magenta", weight=3]; 1342 -> 1326[label="",style="dashed", color="red", weight=0]; 1342[label="vwx20 <= vwx21",fontsize=16,color="magenta"];1342 -> 1644[label="",style="dashed", color="magenta", weight=3]; 1342 -> 1645[label="",style="dashed", color="magenta", weight=3]; 1343 -> 1327[label="",style="dashed", color="red", weight=0]; 1343[label="vwx20 <= vwx21",fontsize=16,color="magenta"];1343 -> 1646[label="",style="dashed", color="magenta", weight=3]; 1343 -> 1647[label="",style="dashed", color="magenta", weight=3]; 1344 -> 1328[label="",style="dashed", color="red", weight=0]; 1344[label="vwx20 <= vwx21",fontsize=16,color="magenta"];1344 -> 1648[label="",style="dashed", color="magenta", weight=3]; 1344 -> 1649[label="",style="dashed", color="magenta", weight=3]; 1345 -> 1329[label="",style="dashed", color="red", weight=0]; 1345[label="vwx20 <= vwx21",fontsize=16,color="magenta"];1345 -> 1650[label="",style="dashed", color="magenta", weight=3]; 1345 -> 1651[label="",style="dashed", color="magenta", weight=3]; 1346 -> 1330[label="",style="dashed", color="red", weight=0]; 1346[label="vwx20 <= vwx21",fontsize=16,color="magenta"];1346 -> 1652[label="",style="dashed", color="magenta", weight=3]; 1346 -> 1653[label="",style="dashed", color="magenta", weight=3]; 1347 -> 1331[label="",style="dashed", color="red", weight=0]; 1347[label="vwx20 <= vwx21",fontsize=16,color="magenta"];1347 -> 1654[label="",style="dashed", color="magenta", weight=3]; 1347 -> 1655[label="",style="dashed", color="magenta", weight=3]; 1348 -> 1332[label="",style="dashed", color="red", weight=0]; 1348[label="vwx20 <= vwx21",fontsize=16,color="magenta"];1348 -> 1656[label="",style="dashed", color="magenta", weight=3]; 1348 -> 1657[label="",style="dashed", color="magenta", weight=3]; 1349 -> 1333[label="",style="dashed", color="red", weight=0]; 1349[label="vwx20 <= vwx21",fontsize=16,color="magenta"];1349 -> 1658[label="",style="dashed", color="magenta", weight=3]; 1349 -> 1659[label="",style="dashed", color="magenta", weight=3]; 1350[label="compare0 (Right vwx105) (Right vwx106) otherwise",fontsize=16,color="black",shape="box"];1350 -> 1660[label="",style="solid", color="black", weight=3]; 1351[label="LT",fontsize=16,color="green",shape="box"];1371[label="vwx69 == vwx72",fontsize=16,color="blue",shape="box"];3435[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1371 -> 3435[label="",style="solid", color="blue", weight=9]; 3435 -> 1661[label="",style="solid", color="blue", weight=3]; 3436[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1371 -> 3436[label="",style="solid", color="blue", weight=9]; 3436 -> 1662[label="",style="solid", color="blue", weight=3]; 3437[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1371 -> 3437[label="",style="solid", color="blue", weight=9]; 3437 -> 1663[label="",style="solid", color="blue", weight=3]; 3438[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1371 -> 3438[label="",style="solid", color="blue", weight=9]; 3438 -> 1664[label="",style="solid", color="blue", weight=3]; 3439[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1371 -> 3439[label="",style="solid", color="blue", weight=9]; 3439 -> 1665[label="",style="solid", color="blue", weight=3]; 3440[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1371 -> 3440[label="",style="solid", color="blue", weight=9]; 3440 -> 1666[label="",style="solid", color="blue", weight=3]; 3441[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1371 -> 3441[label="",style="solid", color="blue", weight=9]; 3441 -> 1667[label="",style="solid", color="blue", weight=3]; 3442[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1371 -> 3442[label="",style="solid", color="blue", weight=9]; 3442 -> 1668[label="",style="solid", color="blue", weight=3]; 3443[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1371 -> 3443[label="",style="solid", color="blue", weight=9]; 3443 -> 1669[label="",style="solid", color="blue", weight=3]; 3444[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1371 -> 3444[label="",style="solid", color="blue", weight=9]; 3444 -> 1670[label="",style="solid", color="blue", weight=3]; 3445[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1371 -> 3445[label="",style="solid", color="blue", weight=9]; 3445 -> 1671[label="",style="solid", color="blue", weight=3]; 3446[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1371 -> 3446[label="",style="solid", color="blue", weight=9]; 3446 -> 1672[label="",style="solid", color="blue", weight=3]; 3447[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1371 -> 3447[label="",style="solid", color="blue", weight=9]; 3447 -> 1673[label="",style="solid", color="blue", weight=3]; 3448[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1371 -> 3448[label="",style="solid", color="blue", weight=9]; 3448 -> 1674[label="",style="solid", color="blue", weight=3]; 1372 -> 2020[label="",style="dashed", color="red", weight=0]; 1372[label="vwx70 < vwx73 || vwx70 == vwx73 && vwx71 <= vwx74",fontsize=16,color="magenta"];1372 -> 2021[label="",style="dashed", color="magenta", weight=3]; 1372 -> 2022[label="",style="dashed", color="magenta", weight=3]; 1373[label="vwx69 < vwx72",fontsize=16,color="black",shape="triangle"];1373 -> 1677[label="",style="solid", color="black", weight=3]; 1374[label="vwx69 < vwx72",fontsize=16,color="black",shape="triangle"];1374 -> 1678[label="",style="solid", color="black", weight=3]; 1375[label="vwx69 < vwx72",fontsize=16,color="black",shape="triangle"];1375 -> 1679[label="",style="solid", color="black", weight=3]; 1376[label="vwx69 < vwx72",fontsize=16,color="black",shape="triangle"];1376 -> 1680[label="",style="solid", color="black", weight=3]; 1377[label="vwx69 < vwx72",fontsize=16,color="black",shape="triangle"];1377 -> 1681[label="",style="solid", color="black", weight=3]; 1378[label="vwx69 < vwx72",fontsize=16,color="black",shape="triangle"];1378 -> 1682[label="",style="solid", color="black", weight=3]; 1379[label="vwx69 < vwx72",fontsize=16,color="black",shape="triangle"];1379 -> 1683[label="",style="solid", color="black", weight=3]; 1380[label="vwx69 < vwx72",fontsize=16,color="black",shape="triangle"];1380 -> 1684[label="",style="solid", color="black", weight=3]; 1381[label="vwx69 < vwx72",fontsize=16,color="black",shape="triangle"];1381 -> 1685[label="",style="solid", color="black", weight=3]; 1382[label="vwx69 < vwx72",fontsize=16,color="black",shape="triangle"];1382 -> 1686[label="",style="solid", color="black", weight=3]; 1383[label="vwx69 < vwx72",fontsize=16,color="black",shape="triangle"];1383 -> 1687[label="",style="solid", color="black", weight=3]; 1384[label="vwx69 < vwx72",fontsize=16,color="black",shape="triangle"];1384 -> 1688[label="",style="solid", color="black", weight=3]; 1385[label="vwx69 < vwx72",fontsize=16,color="black",shape="triangle"];1385 -> 1689[label="",style="solid", color="black", weight=3]; 1386[label="vwx69 < vwx72",fontsize=16,color="black",shape="triangle"];1386 -> 1690[label="",style="solid", color="black", weight=3]; 1387[label="compare1 (vwx134,vwx135,vwx136) (vwx137,vwx138,vwx139) (False || vwx141)",fontsize=16,color="black",shape="box"];1387 -> 1691[label="",style="solid", color="black", weight=3]; 1388[label="compare1 (vwx134,vwx135,vwx136) (vwx137,vwx138,vwx139) (True || vwx141)",fontsize=16,color="black",shape="box"];1388 -> 1692[label="",style="solid", color="black", weight=3]; 1389[label="primMulNat (Succ vwx4000) vwx310",fontsize=16,color="burlywood",shape="box"];3449[label="vwx310/Succ vwx3100",fontsize=10,color="white",style="solid",shape="box"];1389 -> 3449[label="",style="solid", color="burlywood", weight=9]; 3449 -> 1693[label="",style="solid", color="burlywood", weight=3]; 3450[label="vwx310/Zero",fontsize=10,color="white",style="solid",shape="box"];1389 -> 3450[label="",style="solid", color="burlywood", weight=9]; 3450 -> 1694[label="",style="solid", color="burlywood", weight=3]; 1390[label="primMulNat Zero vwx310",fontsize=16,color="burlywood",shape="box"];3451[label="vwx310/Succ vwx3100",fontsize=10,color="white",style="solid",shape="box"];1390 -> 3451[label="",style="solid", color="burlywood", weight=9]; 3451 -> 1695[label="",style="solid", color="burlywood", weight=3]; 3452[label="vwx310/Zero",fontsize=10,color="white",style="solid",shape="box"];1390 -> 3452[label="",style="solid", color="burlywood", weight=9]; 3452 -> 1696[label="",style="solid", color="burlywood", weight=3]; 1391[label="vwx310",fontsize=16,color="green",shape="box"];1392[label="vwx400",fontsize=16,color="green",shape="box"];1393[label="vwx400",fontsize=16,color="green",shape="box"];1394[label="vwx310",fontsize=16,color="green",shape="box"];1410[label="vwx82 == vwx84",fontsize=16,color="blue",shape="box"];3453[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1410 -> 3453[label="",style="solid", color="blue", weight=9]; 3453 -> 1697[label="",style="solid", color="blue", weight=3]; 3454[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1410 -> 3454[label="",style="solid", color="blue", weight=9]; 3454 -> 1698[label="",style="solid", color="blue", weight=3]; 3455[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1410 -> 3455[label="",style="solid", color="blue", weight=9]; 3455 -> 1699[label="",style="solid", color="blue", weight=3]; 3456[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1410 -> 3456[label="",style="solid", color="blue", weight=9]; 3456 -> 1700[label="",style="solid", color="blue", weight=3]; 3457[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1410 -> 3457[label="",style="solid", color="blue", weight=9]; 3457 -> 1701[label="",style="solid", color="blue", weight=3]; 3458[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1410 -> 3458[label="",style="solid", color="blue", weight=9]; 3458 -> 1702[label="",style="solid", color="blue", weight=3]; 3459[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1410 -> 3459[label="",style="solid", color="blue", weight=9]; 3459 -> 1703[label="",style="solid", color="blue", weight=3]; 3460[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1410 -> 3460[label="",style="solid", color="blue", weight=9]; 3460 -> 1704[label="",style="solid", color="blue", weight=3]; 3461[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1410 -> 3461[label="",style="solid", color="blue", weight=9]; 3461 -> 1705[label="",style="solid", color="blue", weight=3]; 3462[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1410 -> 3462[label="",style="solid", color="blue", weight=9]; 3462 -> 1706[label="",style="solid", color="blue", weight=3]; 3463[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1410 -> 3463[label="",style="solid", color="blue", weight=9]; 3463 -> 1707[label="",style="solid", color="blue", weight=3]; 3464[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1410 -> 3464[label="",style="solid", color="blue", weight=9]; 3464 -> 1708[label="",style="solid", color="blue", weight=3]; 3465[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1410 -> 3465[label="",style="solid", color="blue", weight=9]; 3465 -> 1709[label="",style="solid", color="blue", weight=3]; 3466[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1410 -> 3466[label="",style="solid", color="blue", weight=9]; 3466 -> 1710[label="",style="solid", color="blue", weight=3]; 1411[label="vwx83 <= vwx85",fontsize=16,color="blue",shape="box"];3467[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 3467[label="",style="solid", color="blue", weight=9]; 3467 -> 1711[label="",style="solid", color="blue", weight=3]; 3468[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 3468[label="",style="solid", color="blue", weight=9]; 3468 -> 1712[label="",style="solid", color="blue", weight=3]; 3469[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 3469[label="",style="solid", color="blue", weight=9]; 3469 -> 1713[label="",style="solid", color="blue", weight=3]; 3470[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 3470[label="",style="solid", color="blue", weight=9]; 3470 -> 1714[label="",style="solid", color="blue", weight=3]; 3471[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 3471[label="",style="solid", color="blue", weight=9]; 3471 -> 1715[label="",style="solid", color="blue", weight=3]; 3472[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 3472[label="",style="solid", color="blue", weight=9]; 3472 -> 1716[label="",style="solid", color="blue", weight=3]; 3473[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 3473[label="",style="solid", color="blue", weight=9]; 3473 -> 1717[label="",style="solid", color="blue", weight=3]; 3474[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 3474[label="",style="solid", color="blue", weight=9]; 3474 -> 1718[label="",style="solid", color="blue", weight=3]; 3475[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 3475[label="",style="solid", color="blue", weight=9]; 3475 -> 1719[label="",style="solid", color="blue", weight=3]; 3476[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 3476[label="",style="solid", color="blue", weight=9]; 3476 -> 1720[label="",style="solid", color="blue", weight=3]; 3477[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 3477[label="",style="solid", color="blue", weight=9]; 3477 -> 1721[label="",style="solid", color="blue", weight=3]; 3478[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 3478[label="",style="solid", color="blue", weight=9]; 3478 -> 1722[label="",style="solid", color="blue", weight=3]; 3479[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 3479[label="",style="solid", color="blue", weight=9]; 3479 -> 1723[label="",style="solid", color="blue", weight=3]; 3480[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 3480[label="",style="solid", color="blue", weight=9]; 3480 -> 1724[label="",style="solid", color="blue", weight=3]; 1412 -> 1373[label="",style="dashed", color="red", weight=0]; 1412[label="vwx82 < vwx84",fontsize=16,color="magenta"];1412 -> 1725[label="",style="dashed", color="magenta", weight=3]; 1412 -> 1726[label="",style="dashed", color="magenta", weight=3]; 1413 -> 1374[label="",style="dashed", color="red", weight=0]; 1413[label="vwx82 < vwx84",fontsize=16,color="magenta"];1413 -> 1727[label="",style="dashed", color="magenta", weight=3]; 1413 -> 1728[label="",style="dashed", color="magenta", weight=3]; 1414 -> 1375[label="",style="dashed", color="red", weight=0]; 1414[label="vwx82 < vwx84",fontsize=16,color="magenta"];1414 -> 1729[label="",style="dashed", color="magenta", weight=3]; 1414 -> 1730[label="",style="dashed", color="magenta", weight=3]; 1415 -> 1376[label="",style="dashed", color="red", weight=0]; 1415[label="vwx82 < vwx84",fontsize=16,color="magenta"];1415 -> 1731[label="",style="dashed", color="magenta", weight=3]; 1415 -> 1732[label="",style="dashed", color="magenta", weight=3]; 1416 -> 1377[label="",style="dashed", color="red", weight=0]; 1416[label="vwx82 < vwx84",fontsize=16,color="magenta"];1416 -> 1733[label="",style="dashed", color="magenta", weight=3]; 1416 -> 1734[label="",style="dashed", color="magenta", weight=3]; 1417 -> 1378[label="",style="dashed", color="red", weight=0]; 1417[label="vwx82 < vwx84",fontsize=16,color="magenta"];1417 -> 1735[label="",style="dashed", color="magenta", weight=3]; 1417 -> 1736[label="",style="dashed", color="magenta", weight=3]; 1418 -> 1379[label="",style="dashed", color="red", weight=0]; 1418[label="vwx82 < vwx84",fontsize=16,color="magenta"];1418 -> 1737[label="",style="dashed", color="magenta", weight=3]; 1418 -> 1738[label="",style="dashed", color="magenta", weight=3]; 1419 -> 1380[label="",style="dashed", color="red", weight=0]; 1419[label="vwx82 < vwx84",fontsize=16,color="magenta"];1419 -> 1739[label="",style="dashed", color="magenta", weight=3]; 1419 -> 1740[label="",style="dashed", color="magenta", weight=3]; 1420 -> 1381[label="",style="dashed", color="red", weight=0]; 1420[label="vwx82 < vwx84",fontsize=16,color="magenta"];1420 -> 1741[label="",style="dashed", color="magenta", weight=3]; 1420 -> 1742[label="",style="dashed", color="magenta", weight=3]; 1421 -> 1382[label="",style="dashed", color="red", weight=0]; 1421[label="vwx82 < vwx84",fontsize=16,color="magenta"];1421 -> 1743[label="",style="dashed", color="magenta", weight=3]; 1421 -> 1744[label="",style="dashed", color="magenta", weight=3]; 1422 -> 1383[label="",style="dashed", color="red", weight=0]; 1422[label="vwx82 < vwx84",fontsize=16,color="magenta"];1422 -> 1745[label="",style="dashed", color="magenta", weight=3]; 1422 -> 1746[label="",style="dashed", color="magenta", weight=3]; 1423 -> 1384[label="",style="dashed", color="red", weight=0]; 1423[label="vwx82 < vwx84",fontsize=16,color="magenta"];1423 -> 1747[label="",style="dashed", color="magenta", weight=3]; 1423 -> 1748[label="",style="dashed", color="magenta", weight=3]; 1424 -> 1385[label="",style="dashed", color="red", weight=0]; 1424[label="vwx82 < vwx84",fontsize=16,color="magenta"];1424 -> 1749[label="",style="dashed", color="magenta", weight=3]; 1424 -> 1750[label="",style="dashed", color="magenta", weight=3]; 1425 -> 1386[label="",style="dashed", color="red", weight=0]; 1425[label="vwx82 < vwx84",fontsize=16,color="magenta"];1425 -> 1751[label="",style="dashed", color="magenta", weight=3]; 1425 -> 1752[label="",style="dashed", color="magenta", weight=3]; 1426[label="compare1 (vwx149,vwx150) (vwx151,vwx152) (False || vwx154)",fontsize=16,color="black",shape="box"];1426 -> 1753[label="",style="solid", color="black", weight=3]; 1427[label="compare1 (vwx149,vwx150) (vwx151,vwx152) (True || vwx154)",fontsize=16,color="black",shape="box"];1427 -> 1754[label="",style="solid", color="black", weight=3]; 1428 -> 1320[label="",style="dashed", color="red", weight=0]; 1428[label="vwx58 <= vwx59",fontsize=16,color="magenta"];1428 -> 1755[label="",style="dashed", color="magenta", weight=3]; 1428 -> 1756[label="",style="dashed", color="magenta", weight=3]; 1429 -> 1321[label="",style="dashed", color="red", weight=0]; 1429[label="vwx58 <= vwx59",fontsize=16,color="magenta"];1429 -> 1757[label="",style="dashed", color="magenta", weight=3]; 1429 -> 1758[label="",style="dashed", color="magenta", weight=3]; 1430 -> 1322[label="",style="dashed", color="red", weight=0]; 1430[label="vwx58 <= vwx59",fontsize=16,color="magenta"];1430 -> 1759[label="",style="dashed", color="magenta", weight=3]; 1430 -> 1760[label="",style="dashed", color="magenta", weight=3]; 1431 -> 1323[label="",style="dashed", color="red", weight=0]; 1431[label="vwx58 <= vwx59",fontsize=16,color="magenta"];1431 -> 1761[label="",style="dashed", color="magenta", weight=3]; 1431 -> 1762[label="",style="dashed", color="magenta", weight=3]; 1432 -> 1324[label="",style="dashed", color="red", weight=0]; 1432[label="vwx58 <= vwx59",fontsize=16,color="magenta"];1432 -> 1763[label="",style="dashed", color="magenta", weight=3]; 1432 -> 1764[label="",style="dashed", color="magenta", weight=3]; 1433 -> 1325[label="",style="dashed", color="red", weight=0]; 1433[label="vwx58 <= vwx59",fontsize=16,color="magenta"];1433 -> 1765[label="",style="dashed", color="magenta", weight=3]; 1433 -> 1766[label="",style="dashed", color="magenta", weight=3]; 1434 -> 1326[label="",style="dashed", color="red", weight=0]; 1434[label="vwx58 <= vwx59",fontsize=16,color="magenta"];1434 -> 1767[label="",style="dashed", color="magenta", weight=3]; 1434 -> 1768[label="",style="dashed", color="magenta", weight=3]; 1435 -> 1327[label="",style="dashed", color="red", weight=0]; 1435[label="vwx58 <= vwx59",fontsize=16,color="magenta"];1435 -> 1769[label="",style="dashed", color="magenta", weight=3]; 1435 -> 1770[label="",style="dashed", color="magenta", weight=3]; 1436 -> 1328[label="",style="dashed", color="red", weight=0]; 1436[label="vwx58 <= vwx59",fontsize=16,color="magenta"];1436 -> 1771[label="",style="dashed", color="magenta", weight=3]; 1436 -> 1772[label="",style="dashed", color="magenta", weight=3]; 1437 -> 1329[label="",style="dashed", color="red", weight=0]; 1437[label="vwx58 <= vwx59",fontsize=16,color="magenta"];1437 -> 1773[label="",style="dashed", color="magenta", weight=3]; 1437 -> 1774[label="",style="dashed", color="magenta", weight=3]; 1438 -> 1330[label="",style="dashed", color="red", weight=0]; 1438[label="vwx58 <= vwx59",fontsize=16,color="magenta"];1438 -> 1775[label="",style="dashed", color="magenta", weight=3]; 1438 -> 1776[label="",style="dashed", color="magenta", weight=3]; 1439 -> 1331[label="",style="dashed", color="red", weight=0]; 1439[label="vwx58 <= vwx59",fontsize=16,color="magenta"];1439 -> 1777[label="",style="dashed", color="magenta", weight=3]; 1439 -> 1778[label="",style="dashed", color="magenta", weight=3]; 1440 -> 1332[label="",style="dashed", color="red", weight=0]; 1440[label="vwx58 <= vwx59",fontsize=16,color="magenta"];1440 -> 1779[label="",style="dashed", color="magenta", weight=3]; 1440 -> 1780[label="",style="dashed", color="magenta", weight=3]; 1441 -> 1333[label="",style="dashed", color="red", weight=0]; 1441[label="vwx58 <= vwx59",fontsize=16,color="magenta"];1441 -> 1781[label="",style="dashed", color="magenta", weight=3]; 1441 -> 1782[label="",style="dashed", color="magenta", weight=3]; 1442[label="compare0 (Just vwx120) (Just vwx121) otherwise",fontsize=16,color="black",shape="box"];1442 -> 1783[label="",style="solid", color="black", weight=3]; 1443[label="LT",fontsize=16,color="green",shape="box"];1444 -> 384[label="",style="dashed", color="red", weight=0]; 1444[label="vwx300 == vwx400",fontsize=16,color="magenta"];1444 -> 1784[label="",style="dashed", color="magenta", weight=3]; 1444 -> 1785[label="",style="dashed", color="magenta", weight=3]; 1445 -> 385[label="",style="dashed", color="red", weight=0]; 1445[label="vwx300 == vwx400",fontsize=16,color="magenta"];1445 -> 1786[label="",style="dashed", color="magenta", weight=3]; 1445 -> 1787[label="",style="dashed", color="magenta", weight=3]; 1446 -> 386[label="",style="dashed", color="red", weight=0]; 1446[label="vwx300 == vwx400",fontsize=16,color="magenta"];1446 -> 1788[label="",style="dashed", color="magenta", weight=3]; 1446 -> 1789[label="",style="dashed", color="magenta", weight=3]; 1447 -> 387[label="",style="dashed", color="red", weight=0]; 1447[label="vwx300 == vwx400",fontsize=16,color="magenta"];1447 -> 1790[label="",style="dashed", color="magenta", weight=3]; 1447 -> 1791[label="",style="dashed", color="magenta", weight=3]; 1448 -> 388[label="",style="dashed", color="red", weight=0]; 1448[label="vwx300 == vwx400",fontsize=16,color="magenta"];1448 -> 1792[label="",style="dashed", color="magenta", weight=3]; 1448 -> 1793[label="",style="dashed", color="magenta", weight=3]; 1449 -> 389[label="",style="dashed", color="red", weight=0]; 1449[label="vwx300 == vwx400",fontsize=16,color="magenta"];1449 -> 1794[label="",style="dashed", color="magenta", weight=3]; 1449 -> 1795[label="",style="dashed", color="magenta", weight=3]; 1450 -> 390[label="",style="dashed", color="red", weight=0]; 1450[label="vwx300 == vwx400",fontsize=16,color="magenta"];1450 -> 1796[label="",style="dashed", color="magenta", weight=3]; 1450 -> 1797[label="",style="dashed", color="magenta", weight=3]; 1451 -> 391[label="",style="dashed", color="red", weight=0]; 1451[label="vwx300 == vwx400",fontsize=16,color="magenta"];1451 -> 1798[label="",style="dashed", color="magenta", weight=3]; 1451 -> 1799[label="",style="dashed", color="magenta", weight=3]; 1452 -> 392[label="",style="dashed", color="red", weight=0]; 1452[label="vwx300 == vwx400",fontsize=16,color="magenta"];1452 -> 1800[label="",style="dashed", color="magenta", weight=3]; 1452 -> 1801[label="",style="dashed", color="magenta", weight=3]; 1453 -> 393[label="",style="dashed", color="red", weight=0]; 1453[label="vwx300 == vwx400",fontsize=16,color="magenta"];1453 -> 1802[label="",style="dashed", color="magenta", weight=3]; 1453 -> 1803[label="",style="dashed", color="magenta", weight=3]; 1454 -> 394[label="",style="dashed", color="red", weight=0]; 1454[label="vwx300 == vwx400",fontsize=16,color="magenta"];1454 -> 1804[label="",style="dashed", color="magenta", weight=3]; 1454 -> 1805[label="",style="dashed", color="magenta", weight=3]; 1455 -> 395[label="",style="dashed", color="red", weight=0]; 1455[label="vwx300 == vwx400",fontsize=16,color="magenta"];1455 -> 1806[label="",style="dashed", color="magenta", weight=3]; 1455 -> 1807[label="",style="dashed", color="magenta", weight=3]; 1456 -> 396[label="",style="dashed", color="red", weight=0]; 1456[label="vwx300 == vwx400",fontsize=16,color="magenta"];1456 -> 1808[label="",style="dashed", color="magenta", weight=3]; 1456 -> 1809[label="",style="dashed", color="magenta", weight=3]; 1457 -> 397[label="",style="dashed", color="red", weight=0]; 1457[label="vwx300 == vwx400",fontsize=16,color="magenta"];1457 -> 1810[label="",style="dashed", color="magenta", weight=3]; 1457 -> 1811[label="",style="dashed", color="magenta", weight=3]; 1458 -> 384[label="",style="dashed", color="red", weight=0]; 1458[label="vwx301 == vwx401",fontsize=16,color="magenta"];1458 -> 1812[label="",style="dashed", color="magenta", weight=3]; 1458 -> 1813[label="",style="dashed", color="magenta", weight=3]; 1459 -> 385[label="",style="dashed", color="red", weight=0]; 1459[label="vwx301 == vwx401",fontsize=16,color="magenta"];1459 -> 1814[label="",style="dashed", color="magenta", weight=3]; 1459 -> 1815[label="",style="dashed", color="magenta", weight=3]; 1460 -> 386[label="",style="dashed", color="red", weight=0]; 1460[label="vwx301 == vwx401",fontsize=16,color="magenta"];1460 -> 1816[label="",style="dashed", color="magenta", weight=3]; 1460 -> 1817[label="",style="dashed", color="magenta", weight=3]; 1461 -> 387[label="",style="dashed", color="red", weight=0]; 1461[label="vwx301 == vwx401",fontsize=16,color="magenta"];1461 -> 1818[label="",style="dashed", color="magenta", weight=3]; 1461 -> 1819[label="",style="dashed", color="magenta", weight=3]; 1462 -> 388[label="",style="dashed", color="red", weight=0]; 1462[label="vwx301 == vwx401",fontsize=16,color="magenta"];1462 -> 1820[label="",style="dashed", color="magenta", weight=3]; 1462 -> 1821[label="",style="dashed", color="magenta", weight=3]; 1463 -> 389[label="",style="dashed", color="red", weight=0]; 1463[label="vwx301 == vwx401",fontsize=16,color="magenta"];1463 -> 1822[label="",style="dashed", color="magenta", weight=3]; 1463 -> 1823[label="",style="dashed", color="magenta", weight=3]; 1464 -> 390[label="",style="dashed", color="red", weight=0]; 1464[label="vwx301 == vwx401",fontsize=16,color="magenta"];1464 -> 1824[label="",style="dashed", color="magenta", weight=3]; 1464 -> 1825[label="",style="dashed", color="magenta", weight=3]; 1465 -> 391[label="",style="dashed", color="red", weight=0]; 1465[label="vwx301 == vwx401",fontsize=16,color="magenta"];1465 -> 1826[label="",style="dashed", color="magenta", weight=3]; 1465 -> 1827[label="",style="dashed", color="magenta", weight=3]; 1466 -> 392[label="",style="dashed", color="red", weight=0]; 1466[label="vwx301 == vwx401",fontsize=16,color="magenta"];1466 -> 1828[label="",style="dashed", color="magenta", weight=3]; 1466 -> 1829[label="",style="dashed", color="magenta", weight=3]; 1467 -> 393[label="",style="dashed", color="red", weight=0]; 1467[label="vwx301 == vwx401",fontsize=16,color="magenta"];1467 -> 1830[label="",style="dashed", color="magenta", weight=3]; 1467 -> 1831[label="",style="dashed", color="magenta", weight=3]; 1468 -> 394[label="",style="dashed", color="red", weight=0]; 1468[label="vwx301 == vwx401",fontsize=16,color="magenta"];1468 -> 1832[label="",style="dashed", color="magenta", weight=3]; 1468 -> 1833[label="",style="dashed", color="magenta", weight=3]; 1469 -> 395[label="",style="dashed", color="red", weight=0]; 1469[label="vwx301 == vwx401",fontsize=16,color="magenta"];1469 -> 1834[label="",style="dashed", color="magenta", weight=3]; 1469 -> 1835[label="",style="dashed", color="magenta", weight=3]; 1470 -> 396[label="",style="dashed", color="red", weight=0]; 1470[label="vwx301 == vwx401",fontsize=16,color="magenta"];1470 -> 1836[label="",style="dashed", color="magenta", weight=3]; 1470 -> 1837[label="",style="dashed", color="magenta", weight=3]; 1471 -> 397[label="",style="dashed", color="red", weight=0]; 1471[label="vwx301 == vwx401",fontsize=16,color="magenta"];1471 -> 1838[label="",style="dashed", color="magenta", weight=3]; 1471 -> 1839[label="",style="dashed", color="magenta", weight=3]; 1472 -> 270[label="",style="dashed", color="red", weight=0]; 1472[label="vwx301 * vwx400",fontsize=16,color="magenta"];1472 -> 1840[label="",style="dashed", color="magenta", weight=3]; 1472 -> 1841[label="",style="dashed", color="magenta", weight=3]; 1473 -> 270[label="",style="dashed", color="red", weight=0]; 1473[label="vwx300 * vwx401",fontsize=16,color="magenta"];1473 -> 1842[label="",style="dashed", color="magenta", weight=3]; 1473 -> 1843[label="",style="dashed", color="magenta", weight=3]; 1474[label="primEqNat (Succ vwx3000) vwx400",fontsize=16,color="burlywood",shape="box"];3481[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];1474 -> 3481[label="",style="solid", color="burlywood", weight=9]; 3481 -> 1844[label="",style="solid", color="burlywood", weight=3]; 3482[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];1474 -> 3482[label="",style="solid", color="burlywood", weight=9]; 3482 -> 1845[label="",style="solid", color="burlywood", weight=3]; 1475[label="primEqNat Zero vwx400",fontsize=16,color="burlywood",shape="box"];3483[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];1475 -> 3483[label="",style="solid", color="burlywood", weight=9]; 3483 -> 1846[label="",style="solid", color="burlywood", weight=3]; 3484[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];1475 -> 3484[label="",style="solid", color="burlywood", weight=9]; 3484 -> 1847[label="",style="solid", color="burlywood", weight=3]; 1476[label="vwx400",fontsize=16,color="green",shape="box"];1477[label="vwx300",fontsize=16,color="green",shape="box"];1478[label="vwx400",fontsize=16,color="green",shape="box"];1479[label="vwx300",fontsize=16,color="green",shape="box"];1480[label="vwx400",fontsize=16,color="green",shape="box"];1481[label="vwx300",fontsize=16,color="green",shape="box"];1482[label="vwx400",fontsize=16,color="green",shape="box"];1483[label="vwx300",fontsize=16,color="green",shape="box"];1484[label="vwx400",fontsize=16,color="green",shape="box"];1485[label="vwx300",fontsize=16,color="green",shape="box"];1486[label="vwx400",fontsize=16,color="green",shape="box"];1487[label="vwx300",fontsize=16,color="green",shape="box"];1488[label="vwx400",fontsize=16,color="green",shape="box"];1489[label="vwx300",fontsize=16,color="green",shape="box"];1490[label="vwx400",fontsize=16,color="green",shape="box"];1491[label="vwx300",fontsize=16,color="green",shape="box"];1492[label="vwx400",fontsize=16,color="green",shape="box"];1493[label="vwx300",fontsize=16,color="green",shape="box"];1494[label="vwx400",fontsize=16,color="green",shape="box"];1495[label="vwx300",fontsize=16,color="green",shape="box"];1496[label="vwx400",fontsize=16,color="green",shape="box"];1497[label="vwx300",fontsize=16,color="green",shape="box"];1498[label="vwx400",fontsize=16,color="green",shape="box"];1499[label="vwx300",fontsize=16,color="green",shape="box"];1500[label="vwx400",fontsize=16,color="green",shape="box"];1501[label="vwx300",fontsize=16,color="green",shape="box"];1502[label="vwx400",fontsize=16,color="green",shape="box"];1503[label="vwx300",fontsize=16,color="green",shape="box"];1504 -> 270[label="",style="dashed", color="red", weight=0]; 1504[label="vwx301 * vwx400",fontsize=16,color="magenta"];1504 -> 1848[label="",style="dashed", color="magenta", weight=3]; 1504 -> 1849[label="",style="dashed", color="magenta", weight=3]; 1505 -> 270[label="",style="dashed", color="red", weight=0]; 1505[label="vwx300 * vwx401",fontsize=16,color="magenta"];1505 -> 1850[label="",style="dashed", color="magenta", weight=3]; 1505 -> 1851[label="",style="dashed", color="magenta", weight=3]; 1506 -> 384[label="",style="dashed", color="red", weight=0]; 1506[label="vwx300 == vwx400",fontsize=16,color="magenta"];1506 -> 1852[label="",style="dashed", color="magenta", weight=3]; 1506 -> 1853[label="",style="dashed", color="magenta", weight=3]; 1507 -> 385[label="",style="dashed", color="red", weight=0]; 1507[label="vwx300 == vwx400",fontsize=16,color="magenta"];1507 -> 1854[label="",style="dashed", color="magenta", weight=3]; 1507 -> 1855[label="",style="dashed", color="magenta", weight=3]; 1508 -> 386[label="",style="dashed", color="red", weight=0]; 1508[label="vwx300 == vwx400",fontsize=16,color="magenta"];1508 -> 1856[label="",style="dashed", color="magenta", weight=3]; 1508 -> 1857[label="",style="dashed", color="magenta", weight=3]; 1509 -> 387[label="",style="dashed", color="red", weight=0]; 1509[label="vwx300 == vwx400",fontsize=16,color="magenta"];1509 -> 1858[label="",style="dashed", color="magenta", weight=3]; 1509 -> 1859[label="",style="dashed", color="magenta", weight=3]; 1510 -> 388[label="",style="dashed", color="red", weight=0]; 1510[label="vwx300 == vwx400",fontsize=16,color="magenta"];1510 -> 1860[label="",style="dashed", color="magenta", weight=3]; 1510 -> 1861[label="",style="dashed", color="magenta", weight=3]; 1511 -> 389[label="",style="dashed", color="red", weight=0]; 1511[label="vwx300 == vwx400",fontsize=16,color="magenta"];1511 -> 1862[label="",style="dashed", color="magenta", weight=3]; 1511 -> 1863[label="",style="dashed", color="magenta", weight=3]; 1512 -> 390[label="",style="dashed", color="red", weight=0]; 1512[label="vwx300 == vwx400",fontsize=16,color="magenta"];1512 -> 1864[label="",style="dashed", color="magenta", weight=3]; 1512 -> 1865[label="",style="dashed", color="magenta", weight=3]; 1513 -> 391[label="",style="dashed", color="red", weight=0]; 1513[label="vwx300 == vwx400",fontsize=16,color="magenta"];1513 -> 1866[label="",style="dashed", color="magenta", weight=3]; 1513 -> 1867[label="",style="dashed", color="magenta", weight=3]; 1514 -> 392[label="",style="dashed", color="red", weight=0]; 1514[label="vwx300 == vwx400",fontsize=16,color="magenta"];1514 -> 1868[label="",style="dashed", color="magenta", weight=3]; 1514 -> 1869[label="",style="dashed", color="magenta", weight=3]; 1515 -> 393[label="",style="dashed", color="red", weight=0]; 1515[label="vwx300 == vwx400",fontsize=16,color="magenta"];1515 -> 1870[label="",style="dashed", color="magenta", weight=3]; 1515 -> 1871[label="",style="dashed", color="magenta", weight=3]; 1516 -> 394[label="",style="dashed", color="red", weight=0]; 1516[label="vwx300 == vwx400",fontsize=16,color="magenta"];1516 -> 1872[label="",style="dashed", color="magenta", weight=3]; 1516 -> 1873[label="",style="dashed", color="magenta", weight=3]; 1517 -> 395[label="",style="dashed", color="red", weight=0]; 1517[label="vwx300 == vwx400",fontsize=16,color="magenta"];1517 -> 1874[label="",style="dashed", color="magenta", weight=3]; 1517 -> 1875[label="",style="dashed", color="magenta", weight=3]; 1518 -> 396[label="",style="dashed", color="red", weight=0]; 1518[label="vwx300 == vwx400",fontsize=16,color="magenta"];1518 -> 1876[label="",style="dashed", color="magenta", weight=3]; 1518 -> 1877[label="",style="dashed", color="magenta", weight=3]; 1519 -> 397[label="",style="dashed", color="red", weight=0]; 1519[label="vwx300 == vwx400",fontsize=16,color="magenta"];1519 -> 1878[label="",style="dashed", color="magenta", weight=3]; 1519 -> 1879[label="",style="dashed", color="magenta", weight=3]; 1520[label="vwx401",fontsize=16,color="green",shape="box"];1521[label="vwx301",fontsize=16,color="green",shape="box"];1522[label="primEqInt (Pos (Succ vwx3000)) (Pos (Succ vwx4000))",fontsize=16,color="black",shape="box"];1522 -> 1880[label="",style="solid", color="black", weight=3]; 1523[label="primEqInt (Pos (Succ vwx3000)) (Pos Zero)",fontsize=16,color="black",shape="box"];1523 -> 1881[label="",style="solid", color="black", weight=3]; 1524[label="False",fontsize=16,color="green",shape="box"];1525[label="primEqInt (Pos Zero) (Pos (Succ vwx4000))",fontsize=16,color="black",shape="box"];1525 -> 1882[label="",style="solid", color="black", weight=3]; 1526[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1526 -> 1883[label="",style="solid", color="black", weight=3]; 1527[label="primEqInt (Pos Zero) (Neg (Succ vwx4000))",fontsize=16,color="black",shape="box"];1527 -> 1884[label="",style="solid", color="black", weight=3]; 1528[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1528 -> 1885[label="",style="solid", color="black", weight=3]; 1529[label="False",fontsize=16,color="green",shape="box"];1530[label="primEqInt (Neg (Succ vwx3000)) (Neg (Succ vwx4000))",fontsize=16,color="black",shape="box"];1530 -> 1886[label="",style="solid", color="black", weight=3]; 1531[label="primEqInt (Neg (Succ vwx3000)) (Neg Zero)",fontsize=16,color="black",shape="box"];1531 -> 1887[label="",style="solid", color="black", weight=3]; 1532[label="primEqInt (Neg Zero) (Pos (Succ vwx4000))",fontsize=16,color="black",shape="box"];1532 -> 1888[label="",style="solid", color="black", weight=3]; 1533[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1533 -> 1889[label="",style="solid", color="black", weight=3]; 1534[label="primEqInt (Neg Zero) (Neg (Succ vwx4000))",fontsize=16,color="black",shape="box"];1534 -> 1890[label="",style="solid", color="black", weight=3]; 1535[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1535 -> 1891[label="",style="solid", color="black", weight=3]; 1536 -> 384[label="",style="dashed", color="red", weight=0]; 1536[label="vwx300 == vwx400",fontsize=16,color="magenta"];1536 -> 1892[label="",style="dashed", color="magenta", weight=3]; 1536 -> 1893[label="",style="dashed", color="magenta", weight=3]; 1537 -> 385[label="",style="dashed", color="red", weight=0]; 1537[label="vwx300 == vwx400",fontsize=16,color="magenta"];1537 -> 1894[label="",style="dashed", color="magenta", weight=3]; 1537 -> 1895[label="",style="dashed", color="magenta", weight=3]; 1538 -> 386[label="",style="dashed", color="red", weight=0]; 1538[label="vwx300 == vwx400",fontsize=16,color="magenta"];1538 -> 1896[label="",style="dashed", color="magenta", weight=3]; 1538 -> 1897[label="",style="dashed", color="magenta", weight=3]; 1539 -> 387[label="",style="dashed", color="red", weight=0]; 1539[label="vwx300 == vwx400",fontsize=16,color="magenta"];1539 -> 1898[label="",style="dashed", color="magenta", weight=3]; 1539 -> 1899[label="",style="dashed", color="magenta", weight=3]; 1540 -> 388[label="",style="dashed", color="red", weight=0]; 1540[label="vwx300 == vwx400",fontsize=16,color="magenta"];1540 -> 1900[label="",style="dashed", color="magenta", weight=3]; 1540 -> 1901[label="",style="dashed", color="magenta", weight=3]; 1541 -> 389[label="",style="dashed", color="red", weight=0]; 1541[label="vwx300 == vwx400",fontsize=16,color="magenta"];1541 -> 1902[label="",style="dashed", color="magenta", weight=3]; 1541 -> 1903[label="",style="dashed", color="magenta", weight=3]; 1542 -> 390[label="",style="dashed", color="red", weight=0]; 1542[label="vwx300 == vwx400",fontsize=16,color="magenta"];1542 -> 1904[label="",style="dashed", color="magenta", weight=3]; 1542 -> 1905[label="",style="dashed", color="magenta", weight=3]; 1543 -> 391[label="",style="dashed", color="red", weight=0]; 1543[label="vwx300 == vwx400",fontsize=16,color="magenta"];1543 -> 1906[label="",style="dashed", color="magenta", weight=3]; 1543 -> 1907[label="",style="dashed", color="magenta", weight=3]; 1544 -> 392[label="",style="dashed", color="red", weight=0]; 1544[label="vwx300 == vwx400",fontsize=16,color="magenta"];1544 -> 1908[label="",style="dashed", color="magenta", weight=3]; 1544 -> 1909[label="",style="dashed", color="magenta", weight=3]; 1545 -> 393[label="",style="dashed", color="red", weight=0]; 1545[label="vwx300 == vwx400",fontsize=16,color="magenta"];1545 -> 1910[label="",style="dashed", color="magenta", weight=3]; 1545 -> 1911[label="",style="dashed", color="magenta", weight=3]; 1546 -> 394[label="",style="dashed", color="red", weight=0]; 1546[label="vwx300 == vwx400",fontsize=16,color="magenta"];1546 -> 1912[label="",style="dashed", color="magenta", weight=3]; 1546 -> 1913[label="",style="dashed", color="magenta", weight=3]; 1547 -> 395[label="",style="dashed", color="red", weight=0]; 1547[label="vwx300 == vwx400",fontsize=16,color="magenta"];1547 -> 1914[label="",style="dashed", color="magenta", weight=3]; 1547 -> 1915[label="",style="dashed", color="magenta", weight=3]; 1548 -> 396[label="",style="dashed", color="red", weight=0]; 1548[label="vwx300 == vwx400",fontsize=16,color="magenta"];1548 -> 1916[label="",style="dashed", color="magenta", weight=3]; 1548 -> 1917[label="",style="dashed", color="magenta", weight=3]; 1549 -> 397[label="",style="dashed", color="red", weight=0]; 1549[label="vwx300 == vwx400",fontsize=16,color="magenta"];1549 -> 1918[label="",style="dashed", color="magenta", weight=3]; 1549 -> 1919[label="",style="dashed", color="magenta", weight=3]; 1550[label="vwx301 == vwx401",fontsize=16,color="blue",shape="box"];3485[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1550 -> 3485[label="",style="solid", color="blue", weight=9]; 3485 -> 1920[label="",style="solid", color="blue", weight=3]; 3486[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1550 -> 3486[label="",style="solid", color="blue", weight=9]; 3486 -> 1921[label="",style="solid", color="blue", weight=3]; 3487[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1550 -> 3487[label="",style="solid", color="blue", weight=9]; 3487 -> 1922[label="",style="solid", color="blue", weight=3]; 3488[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1550 -> 3488[label="",style="solid", color="blue", weight=9]; 3488 -> 1923[label="",style="solid", color="blue", weight=3]; 3489[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1550 -> 3489[label="",style="solid", color="blue", weight=9]; 3489 -> 1924[label="",style="solid", color="blue", weight=3]; 3490[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1550 -> 3490[label="",style="solid", color="blue", weight=9]; 3490 -> 1925[label="",style="solid", color="blue", weight=3]; 3491[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1550 -> 3491[label="",style="solid", color="blue", weight=9]; 3491 -> 1926[label="",style="solid", color="blue", weight=3]; 3492[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1550 -> 3492[label="",style="solid", color="blue", weight=9]; 3492 -> 1927[label="",style="solid", color="blue", weight=3]; 3493[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1550 -> 3493[label="",style="solid", color="blue", weight=9]; 3493 -> 1928[label="",style="solid", color="blue", weight=3]; 3494[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1550 -> 3494[label="",style="solid", color="blue", weight=9]; 3494 -> 1929[label="",style="solid", color="blue", weight=3]; 3495[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1550 -> 3495[label="",style="solid", color="blue", weight=9]; 3495 -> 1930[label="",style="solid", color="blue", weight=3]; 3496[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1550 -> 3496[label="",style="solid", color="blue", weight=9]; 3496 -> 1931[label="",style="solid", color="blue", weight=3]; 3497[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1550 -> 3497[label="",style="solid", color="blue", weight=9]; 3497 -> 1932[label="",style="solid", color="blue", weight=3]; 3498[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1550 -> 3498[label="",style="solid", color="blue", weight=9]; 3498 -> 1933[label="",style="solid", color="blue", weight=3]; 1551[label="vwx302 == vwx402",fontsize=16,color="blue",shape="box"];3499[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1551 -> 3499[label="",style="solid", color="blue", weight=9]; 3499 -> 1934[label="",style="solid", color="blue", weight=3]; 3500[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1551 -> 3500[label="",style="solid", color="blue", weight=9]; 3500 -> 1935[label="",style="solid", color="blue", weight=3]; 3501[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1551 -> 3501[label="",style="solid", color="blue", weight=9]; 3501 -> 1936[label="",style="solid", color="blue", weight=3]; 3502[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1551 -> 3502[label="",style="solid", color="blue", weight=9]; 3502 -> 1937[label="",style="solid", color="blue", weight=3]; 3503[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1551 -> 3503[label="",style="solid", color="blue", weight=9]; 3503 -> 1938[label="",style="solid", color="blue", weight=3]; 3504[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1551 -> 3504[label="",style="solid", color="blue", weight=9]; 3504 -> 1939[label="",style="solid", color="blue", weight=3]; 3505[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1551 -> 3505[label="",style="solid", color="blue", weight=9]; 3505 -> 1940[label="",style="solid", color="blue", weight=3]; 3506[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1551 -> 3506[label="",style="solid", color="blue", weight=9]; 3506 -> 1941[label="",style="solid", color="blue", weight=3]; 3507[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1551 -> 3507[label="",style="solid", color="blue", weight=9]; 3507 -> 1942[label="",style="solid", color="blue", weight=3]; 3508[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1551 -> 3508[label="",style="solid", color="blue", weight=9]; 3508 -> 1943[label="",style="solid", color="blue", weight=3]; 3509[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1551 -> 3509[label="",style="solid", color="blue", weight=9]; 3509 -> 1944[label="",style="solid", color="blue", weight=3]; 3510[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1551 -> 3510[label="",style="solid", color="blue", weight=9]; 3510 -> 1945[label="",style="solid", color="blue", weight=3]; 3511[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1551 -> 3511[label="",style="solid", color="blue", weight=9]; 3511 -> 1946[label="",style="solid", color="blue", weight=3]; 3512[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1551 -> 3512[label="",style="solid", color="blue", weight=9]; 3512 -> 1947[label="",style="solid", color="blue", weight=3]; 1552 -> 391[label="",style="dashed", color="red", weight=0]; 1552[label="vwx300 == vwx400",fontsize=16,color="magenta"];1552 -> 1948[label="",style="dashed", color="magenta", weight=3]; 1552 -> 1949[label="",style="dashed", color="magenta", weight=3]; 1553 -> 393[label="",style="dashed", color="red", weight=0]; 1553[label="vwx300 == vwx400",fontsize=16,color="magenta"];1553 -> 1950[label="",style="dashed", color="magenta", weight=3]; 1553 -> 1951[label="",style="dashed", color="magenta", weight=3]; 1554 -> 391[label="",style="dashed", color="red", weight=0]; 1554[label="vwx301 == vwx401",fontsize=16,color="magenta"];1554 -> 1952[label="",style="dashed", color="magenta", weight=3]; 1554 -> 1953[label="",style="dashed", color="magenta", weight=3]; 1555 -> 393[label="",style="dashed", color="red", weight=0]; 1555[label="vwx301 == vwx401",fontsize=16,color="magenta"];1555 -> 1954[label="",style="dashed", color="magenta", weight=3]; 1555 -> 1955[label="",style="dashed", color="magenta", weight=3]; 1556[label="vwx400",fontsize=16,color="green",shape="box"];1557[label="vwx300",fontsize=16,color="green",shape="box"];1558[label="vwx400",fontsize=16,color="green",shape="box"];1559[label="vwx300",fontsize=16,color="green",shape="box"];1560[label="vwx400",fontsize=16,color="green",shape="box"];1561[label="vwx300",fontsize=16,color="green",shape="box"];1562[label="vwx400",fontsize=16,color="green",shape="box"];1563[label="vwx300",fontsize=16,color="green",shape="box"];1564[label="vwx400",fontsize=16,color="green",shape="box"];1565[label="vwx300",fontsize=16,color="green",shape="box"];1566[label="vwx400",fontsize=16,color="green",shape="box"];1567[label="vwx300",fontsize=16,color="green",shape="box"];1568[label="vwx400",fontsize=16,color="green",shape="box"];1569[label="vwx300",fontsize=16,color="green",shape="box"];1570[label="vwx400",fontsize=16,color="green",shape="box"];1571[label="vwx300",fontsize=16,color="green",shape="box"];1572[label="vwx400",fontsize=16,color="green",shape="box"];1573[label="vwx300",fontsize=16,color="green",shape="box"];1574[label="vwx400",fontsize=16,color="green",shape="box"];1575[label="vwx300",fontsize=16,color="green",shape="box"];1576[label="vwx400",fontsize=16,color="green",shape="box"];1577[label="vwx300",fontsize=16,color="green",shape="box"];1578[label="vwx400",fontsize=16,color="green",shape="box"];1579[label="vwx300",fontsize=16,color="green",shape="box"];1580[label="vwx400",fontsize=16,color="green",shape="box"];1581[label="vwx300",fontsize=16,color="green",shape="box"];1582[label="vwx400",fontsize=16,color="green",shape="box"];1583[label="vwx300",fontsize=16,color="green",shape="box"];1584[label="vwx400",fontsize=16,color="green",shape="box"];1585[label="vwx300",fontsize=16,color="green",shape="box"];1586[label="vwx400",fontsize=16,color="green",shape="box"];1587[label="vwx300",fontsize=16,color="green",shape="box"];1588[label="vwx400",fontsize=16,color="green",shape="box"];1589[label="vwx300",fontsize=16,color="green",shape="box"];1590[label="vwx400",fontsize=16,color="green",shape="box"];1591[label="vwx300",fontsize=16,color="green",shape="box"];1592[label="vwx400",fontsize=16,color="green",shape="box"];1593[label="vwx300",fontsize=16,color="green",shape="box"];1594[label="vwx400",fontsize=16,color="green",shape="box"];1595[label="vwx300",fontsize=16,color="green",shape="box"];1596[label="vwx400",fontsize=16,color="green",shape="box"];1597[label="vwx300",fontsize=16,color="green",shape="box"];1598[label="vwx400",fontsize=16,color="green",shape="box"];1599[label="vwx300",fontsize=16,color="green",shape="box"];1600[label="vwx400",fontsize=16,color="green",shape="box"];1601[label="vwx300",fontsize=16,color="green",shape="box"];1602[label="vwx400",fontsize=16,color="green",shape="box"];1603[label="vwx300",fontsize=16,color="green",shape="box"];1604[label="vwx400",fontsize=16,color="green",shape="box"];1605[label="vwx300",fontsize=16,color="green",shape="box"];1606[label="vwx400",fontsize=16,color="green",shape="box"];1607[label="vwx300",fontsize=16,color="green",shape="box"];1608[label="vwx400",fontsize=16,color="green",shape="box"];1609[label="vwx300",fontsize=16,color="green",shape="box"];1610[label="vwx400",fontsize=16,color="green",shape="box"];1611[label="vwx300",fontsize=16,color="green",shape="box"];1612[label="False <= vwx14",fontsize=16,color="burlywood",shape="box"];3513[label="vwx14/False",fontsize=10,color="white",style="solid",shape="box"];1612 -> 3513[label="",style="solid", color="burlywood", weight=9]; 3513 -> 1956[label="",style="solid", color="burlywood", weight=3]; 3514[label="vwx14/True",fontsize=10,color="white",style="solid",shape="box"];1612 -> 3514[label="",style="solid", color="burlywood", weight=9]; 3514 -> 1957[label="",style="solid", color="burlywood", weight=3]; 1613[label="True <= vwx14",fontsize=16,color="burlywood",shape="box"];3515[label="vwx14/False",fontsize=10,color="white",style="solid",shape="box"];1613 -> 3515[label="",style="solid", color="burlywood", weight=9]; 3515 -> 1958[label="",style="solid", color="burlywood", weight=3]; 3516[label="vwx14/True",fontsize=10,color="white",style="solid",shape="box"];1613 -> 3516[label="",style="solid", color="burlywood", weight=9]; 3516 -> 1959[label="",style="solid", color="burlywood", weight=3]; 1614 -> 1960[label="",style="dashed", color="red", weight=0]; 1614[label="compare vwx13 vwx14 /= GT",fontsize=16,color="magenta"];1614 -> 1961[label="",style="dashed", color="magenta", weight=3]; 1615[label="Left vwx130 <= vwx14",fontsize=16,color="burlywood",shape="box"];3517[label="vwx14/Left vwx140",fontsize=10,color="white",style="solid",shape="box"];1615 -> 3517[label="",style="solid", color="burlywood", weight=9]; 3517 -> 1969[label="",style="solid", color="burlywood", weight=3]; 3518[label="vwx14/Right vwx140",fontsize=10,color="white",style="solid",shape="box"];1615 -> 3518[label="",style="solid", color="burlywood", weight=9]; 3518 -> 1970[label="",style="solid", color="burlywood", weight=3]; 1616[label="Right vwx130 <= vwx14",fontsize=16,color="burlywood",shape="box"];3519[label="vwx14/Left vwx140",fontsize=10,color="white",style="solid",shape="box"];1616 -> 3519[label="",style="solid", color="burlywood", weight=9]; 3519 -> 1971[label="",style="solid", color="burlywood", weight=3]; 3520[label="vwx14/Right vwx140",fontsize=10,color="white",style="solid",shape="box"];1616 -> 3520[label="",style="solid", color="burlywood", weight=9]; 3520 -> 1972[label="",style="solid", color="burlywood", weight=3]; 1617 -> 1960[label="",style="dashed", color="red", weight=0]; 1617[label="compare vwx13 vwx14 /= GT",fontsize=16,color="magenta"];1617 -> 1962[label="",style="dashed", color="magenta", weight=3]; 1618 -> 1960[label="",style="dashed", color="red", weight=0]; 1618[label="compare vwx13 vwx14 /= GT",fontsize=16,color="magenta"];1618 -> 1963[label="",style="dashed", color="magenta", weight=3]; 1619[label="(vwx130,vwx131,vwx132) <= vwx14",fontsize=16,color="burlywood",shape="box"];3521[label="vwx14/(vwx140,vwx141,vwx142)",fontsize=10,color="white",style="solid",shape="box"];1619 -> 3521[label="",style="solid", color="burlywood", weight=9]; 3521 -> 1973[label="",style="solid", color="burlywood", weight=3]; 1620 -> 1960[label="",style="dashed", color="red", weight=0]; 1620[label="compare vwx13 vwx14 /= GT",fontsize=16,color="magenta"];1620 -> 1964[label="",style="dashed", color="magenta", weight=3]; 1621 -> 1960[label="",style="dashed", color="red", weight=0]; 1621[label="compare vwx13 vwx14 /= GT",fontsize=16,color="magenta"];1621 -> 1965[label="",style="dashed", color="magenta", weight=3]; 1622[label="(vwx130,vwx131) <= vwx14",fontsize=16,color="burlywood",shape="box"];3522[label="vwx14/(vwx140,vwx141)",fontsize=10,color="white",style="solid",shape="box"];1622 -> 3522[label="",style="solid", color="burlywood", weight=9]; 3522 -> 1974[label="",style="solid", color="burlywood", weight=3]; 1623[label="LT <= vwx14",fontsize=16,color="burlywood",shape="box"];3523[label="vwx14/LT",fontsize=10,color="white",style="solid",shape="box"];1623 -> 3523[label="",style="solid", color="burlywood", weight=9]; 3523 -> 1975[label="",style="solid", color="burlywood", weight=3]; 3524[label="vwx14/EQ",fontsize=10,color="white",style="solid",shape="box"];1623 -> 3524[label="",style="solid", color="burlywood", weight=9]; 3524 -> 1976[label="",style="solid", color="burlywood", weight=3]; 3525[label="vwx14/GT",fontsize=10,color="white",style="solid",shape="box"];1623 -> 3525[label="",style="solid", color="burlywood", weight=9]; 3525 -> 1977[label="",style="solid", color="burlywood", weight=3]; 1624[label="EQ <= vwx14",fontsize=16,color="burlywood",shape="box"];3526[label="vwx14/LT",fontsize=10,color="white",style="solid",shape="box"];1624 -> 3526[label="",style="solid", color="burlywood", weight=9]; 3526 -> 1978[label="",style="solid", color="burlywood", weight=3]; 3527[label="vwx14/EQ",fontsize=10,color="white",style="solid",shape="box"];1624 -> 3527[label="",style="solid", color="burlywood", weight=9]; 3527 -> 1979[label="",style="solid", color="burlywood", weight=3]; 3528[label="vwx14/GT",fontsize=10,color="white",style="solid",shape="box"];1624 -> 3528[label="",style="solid", color="burlywood", weight=9]; 3528 -> 1980[label="",style="solid", color="burlywood", weight=3]; 1625[label="GT <= vwx14",fontsize=16,color="burlywood",shape="box"];3529[label="vwx14/LT",fontsize=10,color="white",style="solid",shape="box"];1625 -> 3529[label="",style="solid", color="burlywood", weight=9]; 3529 -> 1981[label="",style="solid", color="burlywood", weight=3]; 3530[label="vwx14/EQ",fontsize=10,color="white",style="solid",shape="box"];1625 -> 3530[label="",style="solid", color="burlywood", weight=9]; 3530 -> 1982[label="",style="solid", color="burlywood", weight=3]; 3531[label="vwx14/GT",fontsize=10,color="white",style="solid",shape="box"];1625 -> 3531[label="",style="solid", color="burlywood", weight=9]; 3531 -> 1983[label="",style="solid", color="burlywood", weight=3]; 1626[label="Nothing <= vwx14",fontsize=16,color="burlywood",shape="box"];3532[label="vwx14/Nothing",fontsize=10,color="white",style="solid",shape="box"];1626 -> 3532[label="",style="solid", color="burlywood", weight=9]; 3532 -> 1984[label="",style="solid", color="burlywood", weight=3]; 3533[label="vwx14/Just vwx140",fontsize=10,color="white",style="solid",shape="box"];1626 -> 3533[label="",style="solid", color="burlywood", weight=9]; 3533 -> 1985[label="",style="solid", color="burlywood", weight=3]; 1627[label="Just vwx130 <= vwx14",fontsize=16,color="burlywood",shape="box"];3534[label="vwx14/Nothing",fontsize=10,color="white",style="solid",shape="box"];1627 -> 3534[label="",style="solid", color="burlywood", weight=9]; 3534 -> 1986[label="",style="solid", color="burlywood", weight=3]; 3535[label="vwx14/Just vwx140",fontsize=10,color="white",style="solid",shape="box"];1627 -> 3535[label="",style="solid", color="burlywood", weight=9]; 3535 -> 1987[label="",style="solid", color="burlywood", weight=3]; 1628 -> 1960[label="",style="dashed", color="red", weight=0]; 1628[label="compare vwx13 vwx14 /= GT",fontsize=16,color="magenta"];1628 -> 1966[label="",style="dashed", color="magenta", weight=3]; 1629 -> 1960[label="",style="dashed", color="red", weight=0]; 1629[label="compare vwx13 vwx14 /= GT",fontsize=16,color="magenta"];1629 -> 1967[label="",style="dashed", color="magenta", weight=3]; 1630 -> 1960[label="",style="dashed", color="red", weight=0]; 1630[label="compare vwx13 vwx14 /= GT",fontsize=16,color="magenta"];1630 -> 1968[label="",style="dashed", color="magenta", weight=3]; 1631[label="compare0 (Left vwx98) (Left vwx99) True",fontsize=16,color="black",shape="box"];1631 -> 1988[label="",style="solid", color="black", weight=3]; 1632[label="vwx20",fontsize=16,color="green",shape="box"];1633[label="vwx21",fontsize=16,color="green",shape="box"];1634[label="vwx20",fontsize=16,color="green",shape="box"];1635[label="vwx21",fontsize=16,color="green",shape="box"];1636[label="vwx20",fontsize=16,color="green",shape="box"];1637[label="vwx21",fontsize=16,color="green",shape="box"];1638[label="vwx20",fontsize=16,color="green",shape="box"];1639[label="vwx21",fontsize=16,color="green",shape="box"];1640[label="vwx20",fontsize=16,color="green",shape="box"];1641[label="vwx21",fontsize=16,color="green",shape="box"];1642[label="vwx20",fontsize=16,color="green",shape="box"];1643[label="vwx21",fontsize=16,color="green",shape="box"];1644[label="vwx20",fontsize=16,color="green",shape="box"];1645[label="vwx21",fontsize=16,color="green",shape="box"];1646[label="vwx20",fontsize=16,color="green",shape="box"];1647[label="vwx21",fontsize=16,color="green",shape="box"];1648[label="vwx20",fontsize=16,color="green",shape="box"];1649[label="vwx21",fontsize=16,color="green",shape="box"];1650[label="vwx20",fontsize=16,color="green",shape="box"];1651[label="vwx21",fontsize=16,color="green",shape="box"];1652[label="vwx20",fontsize=16,color="green",shape="box"];1653[label="vwx21",fontsize=16,color="green",shape="box"];1654[label="vwx20",fontsize=16,color="green",shape="box"];1655[label="vwx21",fontsize=16,color="green",shape="box"];1656[label="vwx20",fontsize=16,color="green",shape="box"];1657[label="vwx21",fontsize=16,color="green",shape="box"];1658[label="vwx20",fontsize=16,color="green",shape="box"];1659[label="vwx21",fontsize=16,color="green",shape="box"];1660[label="compare0 (Right vwx105) (Right vwx106) True",fontsize=16,color="black",shape="box"];1660 -> 1989[label="",style="solid", color="black", weight=3]; 1661 -> 397[label="",style="dashed", color="red", weight=0]; 1661[label="vwx69 == vwx72",fontsize=16,color="magenta"];1661 -> 1990[label="",style="dashed", color="magenta", weight=3]; 1661 -> 1991[label="",style="dashed", color="magenta", weight=3]; 1662 -> 387[label="",style="dashed", color="red", weight=0]; 1662[label="vwx69 == vwx72",fontsize=16,color="magenta"];1662 -> 1992[label="",style="dashed", color="magenta", weight=3]; 1662 -> 1993[label="",style="dashed", color="magenta", weight=3]; 1663 -> 396[label="",style="dashed", color="red", weight=0]; 1663[label="vwx69 == vwx72",fontsize=16,color="magenta"];1663 -> 1994[label="",style="dashed", color="magenta", weight=3]; 1663 -> 1995[label="",style="dashed", color="magenta", weight=3]; 1664 -> 385[label="",style="dashed", color="red", weight=0]; 1664[label="vwx69 == vwx72",fontsize=16,color="magenta"];1664 -> 1996[label="",style="dashed", color="magenta", weight=3]; 1664 -> 1997[label="",style="dashed", color="magenta", weight=3]; 1665 -> 390[label="",style="dashed", color="red", weight=0]; 1665[label="vwx69 == vwx72",fontsize=16,color="magenta"];1665 -> 1998[label="",style="dashed", color="magenta", weight=3]; 1665 -> 1999[label="",style="dashed", color="magenta", weight=3]; 1666 -> 394[label="",style="dashed", color="red", weight=0]; 1666[label="vwx69 == vwx72",fontsize=16,color="magenta"];1666 -> 2000[label="",style="dashed", color="magenta", weight=3]; 1666 -> 2001[label="",style="dashed", color="magenta", weight=3]; 1667 -> 395[label="",style="dashed", color="red", weight=0]; 1667[label="vwx69 == vwx72",fontsize=16,color="magenta"];1667 -> 2002[label="",style="dashed", color="magenta", weight=3]; 1667 -> 2003[label="",style="dashed", color="magenta", weight=3]; 1668 -> 392[label="",style="dashed", color="red", weight=0]; 1668[label="vwx69 == vwx72",fontsize=16,color="magenta"];1668 -> 2004[label="",style="dashed", color="magenta", weight=3]; 1668 -> 2005[label="",style="dashed", color="magenta", weight=3]; 1669 -> 384[label="",style="dashed", color="red", weight=0]; 1669[label="vwx69 == vwx72",fontsize=16,color="magenta"];1669 -> 2006[label="",style="dashed", color="magenta", weight=3]; 1669 -> 2007[label="",style="dashed", color="magenta", weight=3]; 1670 -> 389[label="",style="dashed", color="red", weight=0]; 1670[label="vwx69 == vwx72",fontsize=16,color="magenta"];1670 -> 2008[label="",style="dashed", color="magenta", weight=3]; 1670 -> 2009[label="",style="dashed", color="magenta", weight=3]; 1671 -> 388[label="",style="dashed", color="red", weight=0]; 1671[label="vwx69 == vwx72",fontsize=16,color="magenta"];1671 -> 2010[label="",style="dashed", color="magenta", weight=3]; 1671 -> 2011[label="",style="dashed", color="magenta", weight=3]; 1672 -> 393[label="",style="dashed", color="red", weight=0]; 1672[label="vwx69 == vwx72",fontsize=16,color="magenta"];1672 -> 2012[label="",style="dashed", color="magenta", weight=3]; 1672 -> 2013[label="",style="dashed", color="magenta", weight=3]; 1673 -> 391[label="",style="dashed", color="red", weight=0]; 1673[label="vwx69 == vwx72",fontsize=16,color="magenta"];1673 -> 2014[label="",style="dashed", color="magenta", weight=3]; 1673 -> 2015[label="",style="dashed", color="magenta", weight=3]; 1674 -> 386[label="",style="dashed", color="red", weight=0]; 1674[label="vwx69 == vwx72",fontsize=16,color="magenta"];1674 -> 2016[label="",style="dashed", color="magenta", weight=3]; 1674 -> 2017[label="",style="dashed", color="magenta", weight=3]; 2021 -> 1003[label="",style="dashed", color="red", weight=0]; 2021[label="vwx70 == vwx73 && vwx71 <= vwx74",fontsize=16,color="magenta"];2021 -> 2025[label="",style="dashed", color="magenta", weight=3]; 2021 -> 2026[label="",style="dashed", color="magenta", weight=3]; 2022[label="vwx70 < vwx73",fontsize=16,color="blue",shape="box"];3536[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2022 -> 3536[label="",style="solid", color="blue", weight=9]; 3536 -> 2027[label="",style="solid", color="blue", weight=3]; 3537[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2022 -> 3537[label="",style="solid", color="blue", weight=9]; 3537 -> 2028[label="",style="solid", color="blue", weight=3]; 3538[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2022 -> 3538[label="",style="solid", color="blue", weight=9]; 3538 -> 2029[label="",style="solid", color="blue", weight=3]; 3539[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2022 -> 3539[label="",style="solid", color="blue", weight=9]; 3539 -> 2030[label="",style="solid", color="blue", weight=3]; 3540[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2022 -> 3540[label="",style="solid", color="blue", weight=9]; 3540 -> 2031[label="",style="solid", color="blue", weight=3]; 3541[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2022 -> 3541[label="",style="solid", color="blue", weight=9]; 3541 -> 2032[label="",style="solid", color="blue", weight=3]; 3542[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2022 -> 3542[label="",style="solid", color="blue", weight=9]; 3542 -> 2033[label="",style="solid", color="blue", weight=3]; 3543[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2022 -> 3543[label="",style="solid", color="blue", weight=9]; 3543 -> 2034[label="",style="solid", color="blue", weight=3]; 3544[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2022 -> 3544[label="",style="solid", color="blue", weight=9]; 3544 -> 2035[label="",style="solid", color="blue", weight=3]; 3545[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2022 -> 3545[label="",style="solid", color="blue", weight=9]; 3545 -> 2036[label="",style="solid", color="blue", weight=3]; 3546[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2022 -> 3546[label="",style="solid", color="blue", weight=9]; 3546 -> 2037[label="",style="solid", color="blue", weight=3]; 3547[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2022 -> 3547[label="",style="solid", color="blue", weight=9]; 3547 -> 2038[label="",style="solid", color="blue", weight=3]; 3548[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2022 -> 3548[label="",style="solid", color="blue", weight=9]; 3548 -> 2039[label="",style="solid", color="blue", weight=3]; 3549[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2022 -> 3549[label="",style="solid", color="blue", weight=9]; 3549 -> 2040[label="",style="solid", color="blue", weight=3]; 2020[label="vwx160 || vwx161",fontsize=16,color="burlywood",shape="triangle"];3550[label="vwx160/False",fontsize=10,color="white",style="solid",shape="box"];2020 -> 3550[label="",style="solid", color="burlywood", weight=9]; 3550 -> 2041[label="",style="solid", color="burlywood", weight=3]; 3551[label="vwx160/True",fontsize=10,color="white",style="solid",shape="box"];2020 -> 3551[label="",style="solid", color="burlywood", weight=9]; 3551 -> 2042[label="",style="solid", color="burlywood", weight=3]; 1677 -> 389[label="",style="dashed", color="red", weight=0]; 1677[label="compare vwx69 vwx72 == LT",fontsize=16,color="magenta"];1677 -> 2043[label="",style="dashed", color="magenta", weight=3]; 1677 -> 2044[label="",style="dashed", color="magenta", weight=3]; 1678 -> 389[label="",style="dashed", color="red", weight=0]; 1678[label="compare vwx69 vwx72 == LT",fontsize=16,color="magenta"];1678 -> 2045[label="",style="dashed", color="magenta", weight=3]; 1678 -> 2046[label="",style="dashed", color="magenta", weight=3]; 1679 -> 389[label="",style="dashed", color="red", weight=0]; 1679[label="compare vwx69 vwx72 == LT",fontsize=16,color="magenta"];1679 -> 2047[label="",style="dashed", color="magenta", weight=3]; 1679 -> 2048[label="",style="dashed", color="magenta", weight=3]; 1680 -> 389[label="",style="dashed", color="red", weight=0]; 1680[label="compare vwx69 vwx72 == LT",fontsize=16,color="magenta"];1680 -> 2049[label="",style="dashed", color="magenta", weight=3]; 1680 -> 2050[label="",style="dashed", color="magenta", weight=3]; 1681 -> 389[label="",style="dashed", color="red", weight=0]; 1681[label="compare vwx69 vwx72 == LT",fontsize=16,color="magenta"];1681 -> 2051[label="",style="dashed", color="magenta", weight=3]; 1681 -> 2052[label="",style="dashed", color="magenta", weight=3]; 1682 -> 389[label="",style="dashed", color="red", weight=0]; 1682[label="compare vwx69 vwx72 == LT",fontsize=16,color="magenta"];1682 -> 2053[label="",style="dashed", color="magenta", weight=3]; 1682 -> 2054[label="",style="dashed", color="magenta", weight=3]; 1683 -> 389[label="",style="dashed", color="red", weight=0]; 1683[label="compare vwx69 vwx72 == LT",fontsize=16,color="magenta"];1683 -> 2055[label="",style="dashed", color="magenta", weight=3]; 1683 -> 2056[label="",style="dashed", color="magenta", weight=3]; 1684 -> 389[label="",style="dashed", color="red", weight=0]; 1684[label="compare vwx69 vwx72 == LT",fontsize=16,color="magenta"];1684 -> 2057[label="",style="dashed", color="magenta", weight=3]; 1684 -> 2058[label="",style="dashed", color="magenta", weight=3]; 1685 -> 389[label="",style="dashed", color="red", weight=0]; 1685[label="compare vwx69 vwx72 == LT",fontsize=16,color="magenta"];1685 -> 2059[label="",style="dashed", color="magenta", weight=3]; 1685 -> 2060[label="",style="dashed", color="magenta", weight=3]; 1686 -> 389[label="",style="dashed", color="red", weight=0]; 1686[label="compare vwx69 vwx72 == LT",fontsize=16,color="magenta"];1686 -> 2061[label="",style="dashed", color="magenta", weight=3]; 1686 -> 2062[label="",style="dashed", color="magenta", weight=3]; 1687 -> 389[label="",style="dashed", color="red", weight=0]; 1687[label="compare vwx69 vwx72 == LT",fontsize=16,color="magenta"];1687 -> 2063[label="",style="dashed", color="magenta", weight=3]; 1687 -> 2064[label="",style="dashed", color="magenta", weight=3]; 1688 -> 389[label="",style="dashed", color="red", weight=0]; 1688[label="compare vwx69 vwx72 == LT",fontsize=16,color="magenta"];1688 -> 2065[label="",style="dashed", color="magenta", weight=3]; 1688 -> 2066[label="",style="dashed", color="magenta", weight=3]; 1689 -> 389[label="",style="dashed", color="red", weight=0]; 1689[label="compare vwx69 vwx72 == LT",fontsize=16,color="magenta"];1689 -> 2067[label="",style="dashed", color="magenta", weight=3]; 1689 -> 2068[label="",style="dashed", color="magenta", weight=3]; 1690 -> 389[label="",style="dashed", color="red", weight=0]; 1690[label="compare vwx69 vwx72 == LT",fontsize=16,color="magenta"];1690 -> 2069[label="",style="dashed", color="magenta", weight=3]; 1690 -> 2070[label="",style="dashed", color="magenta", weight=3]; 1691[label="compare1 (vwx134,vwx135,vwx136) (vwx137,vwx138,vwx139) vwx141",fontsize=16,color="burlywood",shape="triangle"];3552[label="vwx141/False",fontsize=10,color="white",style="solid",shape="box"];1691 -> 3552[label="",style="solid", color="burlywood", weight=9]; 3552 -> 2071[label="",style="solid", color="burlywood", weight=3]; 3553[label="vwx141/True",fontsize=10,color="white",style="solid",shape="box"];1691 -> 3553[label="",style="solid", color="burlywood", weight=9]; 3553 -> 2072[label="",style="solid", color="burlywood", weight=3]; 1692 -> 1691[label="",style="dashed", color="red", weight=0]; 1692[label="compare1 (vwx134,vwx135,vwx136) (vwx137,vwx138,vwx139) True",fontsize=16,color="magenta"];1692 -> 2073[label="",style="dashed", color="magenta", weight=3]; 1693[label="primMulNat (Succ vwx4000) (Succ vwx3100)",fontsize=16,color="black",shape="box"];1693 -> 2074[label="",style="solid", color="black", weight=3]; 1694[label="primMulNat (Succ vwx4000) Zero",fontsize=16,color="black",shape="box"];1694 -> 2075[label="",style="solid", color="black", weight=3]; 1695[label="primMulNat Zero (Succ vwx3100)",fontsize=16,color="black",shape="box"];1695 -> 2076[label="",style="solid", color="black", weight=3]; 1696[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1696 -> 2077[label="",style="solid", color="black", weight=3]; 1697 -> 397[label="",style="dashed", color="red", weight=0]; 1697[label="vwx82 == vwx84",fontsize=16,color="magenta"];1697 -> 2078[label="",style="dashed", color="magenta", weight=3]; 1697 -> 2079[label="",style="dashed", color="magenta", weight=3]; 1698 -> 387[label="",style="dashed", color="red", weight=0]; 1698[label="vwx82 == vwx84",fontsize=16,color="magenta"];1698 -> 2080[label="",style="dashed", color="magenta", weight=3]; 1698 -> 2081[label="",style="dashed", color="magenta", weight=3]; 1699 -> 396[label="",style="dashed", color="red", weight=0]; 1699[label="vwx82 == vwx84",fontsize=16,color="magenta"];1699 -> 2082[label="",style="dashed", color="magenta", weight=3]; 1699 -> 2083[label="",style="dashed", color="magenta", weight=3]; 1700 -> 385[label="",style="dashed", color="red", weight=0]; 1700[label="vwx82 == vwx84",fontsize=16,color="magenta"];1700 -> 2084[label="",style="dashed", color="magenta", weight=3]; 1700 -> 2085[label="",style="dashed", color="magenta", weight=3]; 1701 -> 390[label="",style="dashed", color="red", weight=0]; 1701[label="vwx82 == vwx84",fontsize=16,color="magenta"];1701 -> 2086[label="",style="dashed", color="magenta", weight=3]; 1701 -> 2087[label="",style="dashed", color="magenta", weight=3]; 1702 -> 394[label="",style="dashed", color="red", weight=0]; 1702[label="vwx82 == vwx84",fontsize=16,color="magenta"];1702 -> 2088[label="",style="dashed", color="magenta", weight=3]; 1702 -> 2089[label="",style="dashed", color="magenta", weight=3]; 1703 -> 395[label="",style="dashed", color="red", weight=0]; 1703[label="vwx82 == vwx84",fontsize=16,color="magenta"];1703 -> 2090[label="",style="dashed", color="magenta", weight=3]; 1703 -> 2091[label="",style="dashed", color="magenta", weight=3]; 1704 -> 392[label="",style="dashed", color="red", weight=0]; 1704[label="vwx82 == vwx84",fontsize=16,color="magenta"];1704 -> 2092[label="",style="dashed", color="magenta", weight=3]; 1704 -> 2093[label="",style="dashed", color="magenta", weight=3]; 1705 -> 384[label="",style="dashed", color="red", weight=0]; 1705[label="vwx82 == vwx84",fontsize=16,color="magenta"];1705 -> 2094[label="",style="dashed", color="magenta", weight=3]; 1705 -> 2095[label="",style="dashed", color="magenta", weight=3]; 1706 -> 389[label="",style="dashed", color="red", weight=0]; 1706[label="vwx82 == vwx84",fontsize=16,color="magenta"];1706 -> 2096[label="",style="dashed", color="magenta", weight=3]; 1706 -> 2097[label="",style="dashed", color="magenta", weight=3]; 1707 -> 388[label="",style="dashed", color="red", weight=0]; 1707[label="vwx82 == vwx84",fontsize=16,color="magenta"];1707 -> 2098[label="",style="dashed", color="magenta", weight=3]; 1707 -> 2099[label="",style="dashed", color="magenta", weight=3]; 1708 -> 393[label="",style="dashed", color="red", weight=0]; 1708[label="vwx82 == vwx84",fontsize=16,color="magenta"];1708 -> 2100[label="",style="dashed", color="magenta", weight=3]; 1708 -> 2101[label="",style="dashed", color="magenta", weight=3]; 1709 -> 391[label="",style="dashed", color="red", weight=0]; 1709[label="vwx82 == vwx84",fontsize=16,color="magenta"];1709 -> 2102[label="",style="dashed", color="magenta", weight=3]; 1709 -> 2103[label="",style="dashed", color="magenta", weight=3]; 1710 -> 386[label="",style="dashed", color="red", weight=0]; 1710[label="vwx82 == vwx84",fontsize=16,color="magenta"];1710 -> 2104[label="",style="dashed", color="magenta", weight=3]; 1710 -> 2105[label="",style="dashed", color="magenta", weight=3]; 1711 -> 1320[label="",style="dashed", color="red", weight=0]; 1711[label="vwx83 <= vwx85",fontsize=16,color="magenta"];1711 -> 2106[label="",style="dashed", color="magenta", weight=3]; 1711 -> 2107[label="",style="dashed", color="magenta", weight=3]; 1712 -> 1321[label="",style="dashed", color="red", weight=0]; 1712[label="vwx83 <= vwx85",fontsize=16,color="magenta"];1712 -> 2108[label="",style="dashed", color="magenta", weight=3]; 1712 -> 2109[label="",style="dashed", color="magenta", weight=3]; 1713 -> 1322[label="",style="dashed", color="red", weight=0]; 1713[label="vwx83 <= vwx85",fontsize=16,color="magenta"];1713 -> 2110[label="",style="dashed", color="magenta", weight=3]; 1713 -> 2111[label="",style="dashed", color="magenta", weight=3]; 1714 -> 1323[label="",style="dashed", color="red", weight=0]; 1714[label="vwx83 <= vwx85",fontsize=16,color="magenta"];1714 -> 2112[label="",style="dashed", color="magenta", weight=3]; 1714 -> 2113[label="",style="dashed", color="magenta", weight=3]; 1715 -> 1324[label="",style="dashed", color="red", weight=0]; 1715[label="vwx83 <= vwx85",fontsize=16,color="magenta"];1715 -> 2114[label="",style="dashed", color="magenta", weight=3]; 1715 -> 2115[label="",style="dashed", color="magenta", weight=3]; 1716 -> 1325[label="",style="dashed", color="red", weight=0]; 1716[label="vwx83 <= vwx85",fontsize=16,color="magenta"];1716 -> 2116[label="",style="dashed", color="magenta", weight=3]; 1716 -> 2117[label="",style="dashed", color="magenta", weight=3]; 1717 -> 1326[label="",style="dashed", color="red", weight=0]; 1717[label="vwx83 <= vwx85",fontsize=16,color="magenta"];1717 -> 2118[label="",style="dashed", color="magenta", weight=3]; 1717 -> 2119[label="",style="dashed", color="magenta", weight=3]; 1718 -> 1327[label="",style="dashed", color="red", weight=0]; 1718[label="vwx83 <= vwx85",fontsize=16,color="magenta"];1718 -> 2120[label="",style="dashed", color="magenta", weight=3]; 1718 -> 2121[label="",style="dashed", color="magenta", weight=3]; 1719 -> 1328[label="",style="dashed", color="red", weight=0]; 1719[label="vwx83 <= vwx85",fontsize=16,color="magenta"];1719 -> 2122[label="",style="dashed", color="magenta", weight=3]; 1719 -> 2123[label="",style="dashed", color="magenta", weight=3]; 1720 -> 1329[label="",style="dashed", color="red", weight=0]; 1720[label="vwx83 <= vwx85",fontsize=16,color="magenta"];1720 -> 2124[label="",style="dashed", color="magenta", weight=3]; 1720 -> 2125[label="",style="dashed", color="magenta", weight=3]; 1721 -> 1330[label="",style="dashed", color="red", weight=0]; 1721[label="vwx83 <= vwx85",fontsize=16,color="magenta"];1721 -> 2126[label="",style="dashed", color="magenta", weight=3]; 1721 -> 2127[label="",style="dashed", color="magenta", weight=3]; 1722 -> 1331[label="",style="dashed", color="red", weight=0]; 1722[label="vwx83 <= vwx85",fontsize=16,color="magenta"];1722 -> 2128[label="",style="dashed", color="magenta", weight=3]; 1722 -> 2129[label="",style="dashed", color="magenta", weight=3]; 1723 -> 1332[label="",style="dashed", color="red", weight=0]; 1723[label="vwx83 <= vwx85",fontsize=16,color="magenta"];1723 -> 2130[label="",style="dashed", color="magenta", weight=3]; 1723 -> 2131[label="",style="dashed", color="magenta", weight=3]; 1724 -> 1333[label="",style="dashed", color="red", weight=0]; 1724[label="vwx83 <= vwx85",fontsize=16,color="magenta"];1724 -> 2132[label="",style="dashed", color="magenta", weight=3]; 1724 -> 2133[label="",style="dashed", color="magenta", weight=3]; 1725[label="vwx82",fontsize=16,color="green",shape="box"];1726[label="vwx84",fontsize=16,color="green",shape="box"];1727[label="vwx82",fontsize=16,color="green",shape="box"];1728[label="vwx84",fontsize=16,color="green",shape="box"];1729[label="vwx82",fontsize=16,color="green",shape="box"];1730[label="vwx84",fontsize=16,color="green",shape="box"];1731[label="vwx82",fontsize=16,color="green",shape="box"];1732[label="vwx84",fontsize=16,color="green",shape="box"];1733[label="vwx82",fontsize=16,color="green",shape="box"];1734[label="vwx84",fontsize=16,color="green",shape="box"];1735[label="vwx82",fontsize=16,color="green",shape="box"];1736[label="vwx84",fontsize=16,color="green",shape="box"];1737[label="vwx82",fontsize=16,color="green",shape="box"];1738[label="vwx84",fontsize=16,color="green",shape="box"];1739[label="vwx82",fontsize=16,color="green",shape="box"];1740[label="vwx84",fontsize=16,color="green",shape="box"];1741[label="vwx82",fontsize=16,color="green",shape="box"];1742[label="vwx84",fontsize=16,color="green",shape="box"];1743[label="vwx82",fontsize=16,color="green",shape="box"];1744[label="vwx84",fontsize=16,color="green",shape="box"];1745[label="vwx82",fontsize=16,color="green",shape="box"];1746[label="vwx84",fontsize=16,color="green",shape="box"];1747[label="vwx82",fontsize=16,color="green",shape="box"];1748[label="vwx84",fontsize=16,color="green",shape="box"];1749[label="vwx82",fontsize=16,color="green",shape="box"];1750[label="vwx84",fontsize=16,color="green",shape="box"];1751[label="vwx82",fontsize=16,color="green",shape="box"];1752[label="vwx84",fontsize=16,color="green",shape="box"];1753[label="compare1 (vwx149,vwx150) (vwx151,vwx152) vwx154",fontsize=16,color="burlywood",shape="triangle"];3554[label="vwx154/False",fontsize=10,color="white",style="solid",shape="box"];1753 -> 3554[label="",style="solid", color="burlywood", weight=9]; 3554 -> 2134[label="",style="solid", color="burlywood", weight=3]; 3555[label="vwx154/True",fontsize=10,color="white",style="solid",shape="box"];1753 -> 3555[label="",style="solid", color="burlywood", weight=9]; 3555 -> 2135[label="",style="solid", color="burlywood", weight=3]; 1754 -> 1753[label="",style="dashed", color="red", weight=0]; 1754[label="compare1 (vwx149,vwx150) (vwx151,vwx152) True",fontsize=16,color="magenta"];1754 -> 2136[label="",style="dashed", color="magenta", weight=3]; 1755[label="vwx58",fontsize=16,color="green",shape="box"];1756[label="vwx59",fontsize=16,color="green",shape="box"];1757[label="vwx58",fontsize=16,color="green",shape="box"];1758[label="vwx59",fontsize=16,color="green",shape="box"];1759[label="vwx58",fontsize=16,color="green",shape="box"];1760[label="vwx59",fontsize=16,color="green",shape="box"];1761[label="vwx58",fontsize=16,color="green",shape="box"];1762[label="vwx59",fontsize=16,color="green",shape="box"];1763[label="vwx58",fontsize=16,color="green",shape="box"];1764[label="vwx59",fontsize=16,color="green",shape="box"];1765[label="vwx58",fontsize=16,color="green",shape="box"];1766[label="vwx59",fontsize=16,color="green",shape="box"];1767[label="vwx58",fontsize=16,color="green",shape="box"];1768[label="vwx59",fontsize=16,color="green",shape="box"];1769[label="vwx58",fontsize=16,color="green",shape="box"];1770[label="vwx59",fontsize=16,color="green",shape="box"];1771[label="vwx58",fontsize=16,color="green",shape="box"];1772[label="vwx59",fontsize=16,color="green",shape="box"];1773[label="vwx58",fontsize=16,color="green",shape="box"];1774[label="vwx59",fontsize=16,color="green",shape="box"];1775[label="vwx58",fontsize=16,color="green",shape="box"];1776[label="vwx59",fontsize=16,color="green",shape="box"];1777[label="vwx58",fontsize=16,color="green",shape="box"];1778[label="vwx59",fontsize=16,color="green",shape="box"];1779[label="vwx58",fontsize=16,color="green",shape="box"];1780[label="vwx59",fontsize=16,color="green",shape="box"];1781[label="vwx58",fontsize=16,color="green",shape="box"];1782[label="vwx59",fontsize=16,color="green",shape="box"];1783[label="compare0 (Just vwx120) (Just vwx121) True",fontsize=16,color="black",shape="box"];1783 -> 2137[label="",style="solid", color="black", weight=3]; 1784[label="vwx400",fontsize=16,color="green",shape="box"];1785[label="vwx300",fontsize=16,color="green",shape="box"];1786[label="vwx400",fontsize=16,color="green",shape="box"];1787[label="vwx300",fontsize=16,color="green",shape="box"];1788[label="vwx400",fontsize=16,color="green",shape="box"];1789[label="vwx300",fontsize=16,color="green",shape="box"];1790[label="vwx400",fontsize=16,color="green",shape="box"];1791[label="vwx300",fontsize=16,color="green",shape="box"];1792[label="vwx400",fontsize=16,color="green",shape="box"];1793[label="vwx300",fontsize=16,color="green",shape="box"];1794[label="vwx400",fontsize=16,color="green",shape="box"];1795[label="vwx300",fontsize=16,color="green",shape="box"];1796[label="vwx400",fontsize=16,color="green",shape="box"];1797[label="vwx300",fontsize=16,color="green",shape="box"];1798[label="vwx400",fontsize=16,color="green",shape="box"];1799[label="vwx300",fontsize=16,color="green",shape="box"];1800[label="vwx400",fontsize=16,color="green",shape="box"];1801[label="vwx300",fontsize=16,color="green",shape="box"];1802[label="vwx400",fontsize=16,color="green",shape="box"];1803[label="vwx300",fontsize=16,color="green",shape="box"];1804[label="vwx400",fontsize=16,color="green",shape="box"];1805[label="vwx300",fontsize=16,color="green",shape="box"];1806[label="vwx400",fontsize=16,color="green",shape="box"];1807[label="vwx300",fontsize=16,color="green",shape="box"];1808[label="vwx400",fontsize=16,color="green",shape="box"];1809[label="vwx300",fontsize=16,color="green",shape="box"];1810[label="vwx400",fontsize=16,color="green",shape="box"];1811[label="vwx300",fontsize=16,color="green",shape="box"];1812[label="vwx401",fontsize=16,color="green",shape="box"];1813[label="vwx301",fontsize=16,color="green",shape="box"];1814[label="vwx401",fontsize=16,color="green",shape="box"];1815[label="vwx301",fontsize=16,color="green",shape="box"];1816[label="vwx401",fontsize=16,color="green",shape="box"];1817[label="vwx301",fontsize=16,color="green",shape="box"];1818[label="vwx401",fontsize=16,color="green",shape="box"];1819[label="vwx301",fontsize=16,color="green",shape="box"];1820[label="vwx401",fontsize=16,color="green",shape="box"];1821[label="vwx301",fontsize=16,color="green",shape="box"];1822[label="vwx401",fontsize=16,color="green",shape="box"];1823[label="vwx301",fontsize=16,color="green",shape="box"];1824[label="vwx401",fontsize=16,color="green",shape="box"];1825[label="vwx301",fontsize=16,color="green",shape="box"];1826[label="vwx401",fontsize=16,color="green",shape="box"];1827[label="vwx301",fontsize=16,color="green",shape="box"];1828[label="vwx401",fontsize=16,color="green",shape="box"];1829[label="vwx301",fontsize=16,color="green",shape="box"];1830[label="vwx401",fontsize=16,color="green",shape="box"];1831[label="vwx301",fontsize=16,color="green",shape="box"];1832[label="vwx401",fontsize=16,color="green",shape="box"];1833[label="vwx301",fontsize=16,color="green",shape="box"];1834[label="vwx401",fontsize=16,color="green",shape="box"];1835[label="vwx301",fontsize=16,color="green",shape="box"];1836[label="vwx401",fontsize=16,color="green",shape="box"];1837[label="vwx301",fontsize=16,color="green",shape="box"];1838[label="vwx401",fontsize=16,color="green",shape="box"];1839[label="vwx301",fontsize=16,color="green",shape="box"];1840[label="vwx301",fontsize=16,color="green",shape="box"];1841[label="vwx400",fontsize=16,color="green",shape="box"];1842[label="vwx300",fontsize=16,color="green",shape="box"];1843[label="vwx401",fontsize=16,color="green",shape="box"];1844[label="primEqNat (Succ vwx3000) (Succ vwx4000)",fontsize=16,color="black",shape="box"];1844 -> 2138[label="",style="solid", color="black", weight=3]; 1845[label="primEqNat (Succ vwx3000) Zero",fontsize=16,color="black",shape="box"];1845 -> 2139[label="",style="solid", color="black", weight=3]; 1846[label="primEqNat Zero (Succ vwx4000)",fontsize=16,color="black",shape="box"];1846 -> 2140[label="",style="solid", color="black", weight=3]; 1847[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];1847 -> 2141[label="",style="solid", color="black", weight=3]; 1848[label="vwx301",fontsize=16,color="green",shape="box"];1849[label="vwx400",fontsize=16,color="green",shape="box"];1850[label="vwx300",fontsize=16,color="green",shape="box"];1851[label="vwx401",fontsize=16,color="green",shape="box"];1852[label="vwx400",fontsize=16,color="green",shape="box"];1853[label="vwx300",fontsize=16,color="green",shape="box"];1854[label="vwx400",fontsize=16,color="green",shape="box"];1855[label="vwx300",fontsize=16,color="green",shape="box"];1856[label="vwx400",fontsize=16,color="green",shape="box"];1857[label="vwx300",fontsize=16,color="green",shape="box"];1858[label="vwx400",fontsize=16,color="green",shape="box"];1859[label="vwx300",fontsize=16,color="green",shape="box"];1860[label="vwx400",fontsize=16,color="green",shape="box"];1861[label="vwx300",fontsize=16,color="green",shape="box"];1862[label="vwx400",fontsize=16,color="green",shape="box"];1863[label="vwx300",fontsize=16,color="green",shape="box"];1864[label="vwx400",fontsize=16,color="green",shape="box"];1865[label="vwx300",fontsize=16,color="green",shape="box"];1866[label="vwx400",fontsize=16,color="green",shape="box"];1867[label="vwx300",fontsize=16,color="green",shape="box"];1868[label="vwx400",fontsize=16,color="green",shape="box"];1869[label="vwx300",fontsize=16,color="green",shape="box"];1870[label="vwx400",fontsize=16,color="green",shape="box"];1871[label="vwx300",fontsize=16,color="green",shape="box"];1872[label="vwx400",fontsize=16,color="green",shape="box"];1873[label="vwx300",fontsize=16,color="green",shape="box"];1874[label="vwx400",fontsize=16,color="green",shape="box"];1875[label="vwx300",fontsize=16,color="green",shape="box"];1876[label="vwx400",fontsize=16,color="green",shape="box"];1877[label="vwx300",fontsize=16,color="green",shape="box"];1878[label="vwx400",fontsize=16,color="green",shape="box"];1879[label="vwx300",fontsize=16,color="green",shape="box"];1880 -> 1266[label="",style="dashed", color="red", weight=0]; 1880[label="primEqNat vwx3000 vwx4000",fontsize=16,color="magenta"];1880 -> 2142[label="",style="dashed", color="magenta", weight=3]; 1880 -> 2143[label="",style="dashed", color="magenta", weight=3]; 1881[label="False",fontsize=16,color="green",shape="box"];1882[label="False",fontsize=16,color="green",shape="box"];1883[label="True",fontsize=16,color="green",shape="box"];1884[label="False",fontsize=16,color="green",shape="box"];1885[label="True",fontsize=16,color="green",shape="box"];1886 -> 1266[label="",style="dashed", color="red", weight=0]; 1886[label="primEqNat vwx3000 vwx4000",fontsize=16,color="magenta"];1886 -> 2144[label="",style="dashed", color="magenta", weight=3]; 1886 -> 2145[label="",style="dashed", color="magenta", weight=3]; 1887[label="False",fontsize=16,color="green",shape="box"];1888[label="False",fontsize=16,color="green",shape="box"];1889[label="True",fontsize=16,color="green",shape="box"];1890[label="False",fontsize=16,color="green",shape="box"];1891[label="True",fontsize=16,color="green",shape="box"];1892[label="vwx400",fontsize=16,color="green",shape="box"];1893[label="vwx300",fontsize=16,color="green",shape="box"];1894[label="vwx400",fontsize=16,color="green",shape="box"];1895[label="vwx300",fontsize=16,color="green",shape="box"];1896[label="vwx400",fontsize=16,color="green",shape="box"];1897[label="vwx300",fontsize=16,color="green",shape="box"];1898[label="vwx400",fontsize=16,color="green",shape="box"];1899[label="vwx300",fontsize=16,color="green",shape="box"];1900[label="vwx400",fontsize=16,color="green",shape="box"];1901[label="vwx300",fontsize=16,color="green",shape="box"];1902[label="vwx400",fontsize=16,color="green",shape="box"];1903[label="vwx300",fontsize=16,color="green",shape="box"];1904[label="vwx400",fontsize=16,color="green",shape="box"];1905[label="vwx300",fontsize=16,color="green",shape="box"];1906[label="vwx400",fontsize=16,color="green",shape="box"];1907[label="vwx300",fontsize=16,color="green",shape="box"];1908[label="vwx400",fontsize=16,color="green",shape="box"];1909[label="vwx300",fontsize=16,color="green",shape="box"];1910[label="vwx400",fontsize=16,color="green",shape="box"];1911[label="vwx300",fontsize=16,color="green",shape="box"];1912[label="vwx400",fontsize=16,color="green",shape="box"];1913[label="vwx300",fontsize=16,color="green",shape="box"];1914[label="vwx400",fontsize=16,color="green",shape="box"];1915[label="vwx300",fontsize=16,color="green",shape="box"];1916[label="vwx400",fontsize=16,color="green",shape="box"];1917[label="vwx300",fontsize=16,color="green",shape="box"];1918[label="vwx400",fontsize=16,color="green",shape="box"];1919[label="vwx300",fontsize=16,color="green",shape="box"];1920 -> 384[label="",style="dashed", color="red", weight=0]; 1920[label="vwx301 == vwx401",fontsize=16,color="magenta"];1920 -> 2146[label="",style="dashed", color="magenta", weight=3]; 1920 -> 2147[label="",style="dashed", color="magenta", weight=3]; 1921 -> 385[label="",style="dashed", color="red", weight=0]; 1921[label="vwx301 == vwx401",fontsize=16,color="magenta"];1921 -> 2148[label="",style="dashed", color="magenta", weight=3]; 1921 -> 2149[label="",style="dashed", color="magenta", weight=3]; 1922 -> 386[label="",style="dashed", color="red", weight=0]; 1922[label="vwx301 == vwx401",fontsize=16,color="magenta"];1922 -> 2150[label="",style="dashed", color="magenta", weight=3]; 1922 -> 2151[label="",style="dashed", color="magenta", weight=3]; 1923 -> 387[label="",style="dashed", color="red", weight=0]; 1923[label="vwx301 == vwx401",fontsize=16,color="magenta"];1923 -> 2152[label="",style="dashed", color="magenta", weight=3]; 1923 -> 2153[label="",style="dashed", color="magenta", weight=3]; 1924 -> 388[label="",style="dashed", color="red", weight=0]; 1924[label="vwx301 == vwx401",fontsize=16,color="magenta"];1924 -> 2154[label="",style="dashed", color="magenta", weight=3]; 1924 -> 2155[label="",style="dashed", color="magenta", weight=3]; 1925 -> 389[label="",style="dashed", color="red", weight=0]; 1925[label="vwx301 == vwx401",fontsize=16,color="magenta"];1925 -> 2156[label="",style="dashed", color="magenta", weight=3]; 1925 -> 2157[label="",style="dashed", color="magenta", weight=3]; 1926 -> 390[label="",style="dashed", color="red", weight=0]; 1926[label="vwx301 == vwx401",fontsize=16,color="magenta"];1926 -> 2158[label="",style="dashed", color="magenta", weight=3]; 1926 -> 2159[label="",style="dashed", color="magenta", weight=3]; 1927 -> 391[label="",style="dashed", color="red", weight=0]; 1927[label="vwx301 == vwx401",fontsize=16,color="magenta"];1927 -> 2160[label="",style="dashed", color="magenta", weight=3]; 1927 -> 2161[label="",style="dashed", color="magenta", weight=3]; 1928 -> 392[label="",style="dashed", color="red", weight=0]; 1928[label="vwx301 == vwx401",fontsize=16,color="magenta"];1928 -> 2162[label="",style="dashed", color="magenta", weight=3]; 1928 -> 2163[label="",style="dashed", color="magenta", weight=3]; 1929 -> 393[label="",style="dashed", color="red", weight=0]; 1929[label="vwx301 == vwx401",fontsize=16,color="magenta"];1929 -> 2164[label="",style="dashed", color="magenta", weight=3]; 1929 -> 2165[label="",style="dashed", color="magenta", weight=3]; 1930 -> 394[label="",style="dashed", color="red", weight=0]; 1930[label="vwx301 == vwx401",fontsize=16,color="magenta"];1930 -> 2166[label="",style="dashed", color="magenta", weight=3]; 1930 -> 2167[label="",style="dashed", color="magenta", weight=3]; 1931 -> 395[label="",style="dashed", color="red", weight=0]; 1931[label="vwx301 == vwx401",fontsize=16,color="magenta"];1931 -> 2168[label="",style="dashed", color="magenta", weight=3]; 1931 -> 2169[label="",style="dashed", color="magenta", weight=3]; 1932 -> 396[label="",style="dashed", color="red", weight=0]; 1932[label="vwx301 == vwx401",fontsize=16,color="magenta"];1932 -> 2170[label="",style="dashed", color="magenta", weight=3]; 1932 -> 2171[label="",style="dashed", color="magenta", weight=3]; 1933 -> 397[label="",style="dashed", color="red", weight=0]; 1933[label="vwx301 == vwx401",fontsize=16,color="magenta"];1933 -> 2172[label="",style="dashed", color="magenta", weight=3]; 1933 -> 2173[label="",style="dashed", color="magenta", weight=3]; 1934 -> 384[label="",style="dashed", color="red", weight=0]; 1934[label="vwx302 == vwx402",fontsize=16,color="magenta"];1934 -> 2174[label="",style="dashed", color="magenta", weight=3]; 1934 -> 2175[label="",style="dashed", color="magenta", weight=3]; 1935 -> 385[label="",style="dashed", color="red", weight=0]; 1935[label="vwx302 == vwx402",fontsize=16,color="magenta"];1935 -> 2176[label="",style="dashed", color="magenta", weight=3]; 1935 -> 2177[label="",style="dashed", color="magenta", weight=3]; 1936 -> 386[label="",style="dashed", color="red", weight=0]; 1936[label="vwx302 == vwx402",fontsize=16,color="magenta"];1936 -> 2178[label="",style="dashed", color="magenta", weight=3]; 1936 -> 2179[label="",style="dashed", color="magenta", weight=3]; 1937 -> 387[label="",style="dashed", color="red", weight=0]; 1937[label="vwx302 == vwx402",fontsize=16,color="magenta"];1937 -> 2180[label="",style="dashed", color="magenta", weight=3]; 1937 -> 2181[label="",style="dashed", color="magenta", weight=3]; 1938 -> 388[label="",style="dashed", color="red", weight=0]; 1938[label="vwx302 == vwx402",fontsize=16,color="magenta"];1938 -> 2182[label="",style="dashed", color="magenta", weight=3]; 1938 -> 2183[label="",style="dashed", color="magenta", weight=3]; 1939 -> 389[label="",style="dashed", color="red", weight=0]; 1939[label="vwx302 == vwx402",fontsize=16,color="magenta"];1939 -> 2184[label="",style="dashed", color="magenta", weight=3]; 1939 -> 2185[label="",style="dashed", color="magenta", weight=3]; 1940 -> 390[label="",style="dashed", color="red", weight=0]; 1940[label="vwx302 == vwx402",fontsize=16,color="magenta"];1940 -> 2186[label="",style="dashed", color="magenta", weight=3]; 1940 -> 2187[label="",style="dashed", color="magenta", weight=3]; 1941 -> 391[label="",style="dashed", color="red", weight=0]; 1941[label="vwx302 == vwx402",fontsize=16,color="magenta"];1941 -> 2188[label="",style="dashed", color="magenta", weight=3]; 1941 -> 2189[label="",style="dashed", color="magenta", weight=3]; 1942 -> 392[label="",style="dashed", color="red", weight=0]; 1942[label="vwx302 == vwx402",fontsize=16,color="magenta"];1942 -> 2190[label="",style="dashed", color="magenta", weight=3]; 1942 -> 2191[label="",style="dashed", color="magenta", weight=3]; 1943 -> 393[label="",style="dashed", color="red", weight=0]; 1943[label="vwx302 == vwx402",fontsize=16,color="magenta"];1943 -> 2192[label="",style="dashed", color="magenta", weight=3]; 1943 -> 2193[label="",style="dashed", color="magenta", weight=3]; 1944 -> 394[label="",style="dashed", color="red", weight=0]; 1944[label="vwx302 == vwx402",fontsize=16,color="magenta"];1944 -> 2194[label="",style="dashed", color="magenta", weight=3]; 1944 -> 2195[label="",style="dashed", color="magenta", weight=3]; 1945 -> 395[label="",style="dashed", color="red", weight=0]; 1945[label="vwx302 == vwx402",fontsize=16,color="magenta"];1945 -> 2196[label="",style="dashed", color="magenta", weight=3]; 1945 -> 2197[label="",style="dashed", color="magenta", weight=3]; 1946 -> 396[label="",style="dashed", color="red", weight=0]; 1946[label="vwx302 == vwx402",fontsize=16,color="magenta"];1946 -> 2198[label="",style="dashed", color="magenta", weight=3]; 1946 -> 2199[label="",style="dashed", color="magenta", weight=3]; 1947 -> 397[label="",style="dashed", color="red", weight=0]; 1947[label="vwx302 == vwx402",fontsize=16,color="magenta"];1947 -> 2200[label="",style="dashed", color="magenta", weight=3]; 1947 -> 2201[label="",style="dashed", color="magenta", weight=3]; 1948[label="vwx400",fontsize=16,color="green",shape="box"];1949[label="vwx300",fontsize=16,color="green",shape="box"];1950[label="vwx400",fontsize=16,color="green",shape="box"];1951[label="vwx300",fontsize=16,color="green",shape="box"];1952[label="vwx401",fontsize=16,color="green",shape="box"];1953[label="vwx301",fontsize=16,color="green",shape="box"];1954[label="vwx401",fontsize=16,color="green",shape="box"];1955[label="vwx301",fontsize=16,color="green",shape="box"];1956[label="False <= False",fontsize=16,color="black",shape="box"];1956 -> 2202[label="",style="solid", color="black", weight=3]; 1957[label="False <= True",fontsize=16,color="black",shape="box"];1957 -> 2203[label="",style="solid", color="black", weight=3]; 1958[label="True <= False",fontsize=16,color="black",shape="box"];1958 -> 2204[label="",style="solid", color="black", weight=3]; 1959[label="True <= True",fontsize=16,color="black",shape="box"];1959 -> 2205[label="",style="solid", color="black", weight=3]; 1961 -> 109[label="",style="dashed", color="red", weight=0]; 1961[label="compare vwx13 vwx14",fontsize=16,color="magenta"];1961 -> 2206[label="",style="dashed", color="magenta", weight=3]; 1961 -> 2207[label="",style="dashed", color="magenta", weight=3]; 1960[label="vwx156 /= GT",fontsize=16,color="black",shape="triangle"];1960 -> 2208[label="",style="solid", color="black", weight=3]; 1969[label="Left vwx130 <= Left vwx140",fontsize=16,color="black",shape="box"];1969 -> 2209[label="",style="solid", color="black", weight=3]; 1970[label="Left vwx130 <= Right vwx140",fontsize=16,color="black",shape="box"];1970 -> 2210[label="",style="solid", color="black", weight=3]; 1971[label="Right vwx130 <= Left vwx140",fontsize=16,color="black",shape="box"];1971 -> 2211[label="",style="solid", color="black", weight=3]; 1972[label="Right vwx130 <= Right vwx140",fontsize=16,color="black",shape="box"];1972 -> 2212[label="",style="solid", color="black", weight=3]; 1962 -> 111[label="",style="dashed", color="red", weight=0]; 1962[label="compare vwx13 vwx14",fontsize=16,color="magenta"];1962 -> 2213[label="",style="dashed", color="magenta", weight=3]; 1962 -> 2214[label="",style="dashed", color="magenta", weight=3]; 1963 -> 112[label="",style="dashed", color="red", weight=0]; 1963[label="compare vwx13 vwx14",fontsize=16,color="magenta"];1963 -> 2215[label="",style="dashed", color="magenta", weight=3]; 1963 -> 2216[label="",style="dashed", color="magenta", weight=3]; 1973[label="(vwx130,vwx131,vwx132) <= (vwx140,vwx141,vwx142)",fontsize=16,color="black",shape="box"];1973 -> 2217[label="",style="solid", color="black", weight=3]; 1964 -> 114[label="",style="dashed", color="red", weight=0]; 1964[label="compare vwx13 vwx14",fontsize=16,color="magenta"];1964 -> 2218[label="",style="dashed", color="magenta", weight=3]; 1964 -> 2219[label="",style="dashed", color="magenta", weight=3]; 1965 -> 115[label="",style="dashed", color="red", weight=0]; 1965[label="compare vwx13 vwx14",fontsize=16,color="magenta"];1965 -> 2220[label="",style="dashed", color="magenta", weight=3]; 1965 -> 2221[label="",style="dashed", color="magenta", weight=3]; 1974[label="(vwx130,vwx131) <= (vwx140,vwx141)",fontsize=16,color="black",shape="box"];1974 -> 2222[label="",style="solid", color="black", weight=3]; 1975[label="LT <= LT",fontsize=16,color="black",shape="box"];1975 -> 2223[label="",style="solid", color="black", weight=3]; 1976[label="LT <= EQ",fontsize=16,color="black",shape="box"];1976 -> 2224[label="",style="solid", color="black", weight=3]; 1977[label="LT <= GT",fontsize=16,color="black",shape="box"];1977 -> 2225[label="",style="solid", color="black", weight=3]; 1978[label="EQ <= LT",fontsize=16,color="black",shape="box"];1978 -> 2226[label="",style="solid", color="black", weight=3]; 1979[label="EQ <= EQ",fontsize=16,color="black",shape="box"];1979 -> 2227[label="",style="solid", color="black", weight=3]; 1980[label="EQ <= GT",fontsize=16,color="black",shape="box"];1980 -> 2228[label="",style="solid", color="black", weight=3]; 1981[label="GT <= LT",fontsize=16,color="black",shape="box"];1981 -> 2229[label="",style="solid", color="black", weight=3]; 1982[label="GT <= EQ",fontsize=16,color="black",shape="box"];1982 -> 2230[label="",style="solid", color="black", weight=3]; 1983[label="GT <= GT",fontsize=16,color="black",shape="box"];1983 -> 2231[label="",style="solid", color="black", weight=3]; 1984[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];1984 -> 2232[label="",style="solid", color="black", weight=3]; 1985[label="Nothing <= Just vwx140",fontsize=16,color="black",shape="box"];1985 -> 2233[label="",style="solid", color="black", weight=3]; 1986[label="Just vwx130 <= Nothing",fontsize=16,color="black",shape="box"];1986 -> 2234[label="",style="solid", color="black", weight=3]; 1987[label="Just vwx130 <= Just vwx140",fontsize=16,color="black",shape="box"];1987 -> 2235[label="",style="solid", color="black", weight=3]; 1966 -> 119[label="",style="dashed", color="red", weight=0]; 1966[label="compare vwx13 vwx14",fontsize=16,color="magenta"];1966 -> 2236[label="",style="dashed", color="magenta", weight=3]; 1966 -> 2237[label="",style="dashed", color="magenta", weight=3]; 1967 -> 120[label="",style="dashed", color="red", weight=0]; 1967[label="compare vwx13 vwx14",fontsize=16,color="magenta"];1967 -> 2238[label="",style="dashed", color="magenta", weight=3]; 1967 -> 2239[label="",style="dashed", color="magenta", weight=3]; 1968 -> 121[label="",style="dashed", color="red", weight=0]; 1968[label="compare vwx13 vwx14",fontsize=16,color="magenta"];1968 -> 2240[label="",style="dashed", color="magenta", weight=3]; 1968 -> 2241[label="",style="dashed", color="magenta", weight=3]; 1988[label="GT",fontsize=16,color="green",shape="box"];1989[label="GT",fontsize=16,color="green",shape="box"];1990[label="vwx72",fontsize=16,color="green",shape="box"];1991[label="vwx69",fontsize=16,color="green",shape="box"];1992[label="vwx72",fontsize=16,color="green",shape="box"];1993[label="vwx69",fontsize=16,color="green",shape="box"];1994[label="vwx72",fontsize=16,color="green",shape="box"];1995[label="vwx69",fontsize=16,color="green",shape="box"];1996[label="vwx72",fontsize=16,color="green",shape="box"];1997[label="vwx69",fontsize=16,color="green",shape="box"];1998[label="vwx72",fontsize=16,color="green",shape="box"];1999[label="vwx69",fontsize=16,color="green",shape="box"];2000[label="vwx72",fontsize=16,color="green",shape="box"];2001[label="vwx69",fontsize=16,color="green",shape="box"];2002[label="vwx72",fontsize=16,color="green",shape="box"];2003[label="vwx69",fontsize=16,color="green",shape="box"];2004[label="vwx72",fontsize=16,color="green",shape="box"];2005[label="vwx69",fontsize=16,color="green",shape="box"];2006[label="vwx72",fontsize=16,color="green",shape="box"];2007[label="vwx69",fontsize=16,color="green",shape="box"];2008[label="vwx72",fontsize=16,color="green",shape="box"];2009[label="vwx69",fontsize=16,color="green",shape="box"];2010[label="vwx72",fontsize=16,color="green",shape="box"];2011[label="vwx69",fontsize=16,color="green",shape="box"];2012[label="vwx72",fontsize=16,color="green",shape="box"];2013[label="vwx69",fontsize=16,color="green",shape="box"];2014[label="vwx72",fontsize=16,color="green",shape="box"];2015[label="vwx69",fontsize=16,color="green",shape="box"];2016[label="vwx72",fontsize=16,color="green",shape="box"];2017[label="vwx69",fontsize=16,color="green",shape="box"];2025[label="vwx70 == vwx73",fontsize=16,color="blue",shape="box"];3556[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2025 -> 3556[label="",style="solid", color="blue", weight=9]; 3556 -> 2242[label="",style="solid", color="blue", weight=3]; 3557[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2025 -> 3557[label="",style="solid", color="blue", weight=9]; 3557 -> 2243[label="",style="solid", color="blue", weight=3]; 3558[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2025 -> 3558[label="",style="solid", color="blue", weight=9]; 3558 -> 2244[label="",style="solid", color="blue", weight=3]; 3559[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2025 -> 3559[label="",style="solid", color="blue", weight=9]; 3559 -> 2245[label="",style="solid", color="blue", weight=3]; 3560[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2025 -> 3560[label="",style="solid", color="blue", weight=9]; 3560 -> 2246[label="",style="solid", color="blue", weight=3]; 3561[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2025 -> 3561[label="",style="solid", color="blue", weight=9]; 3561 -> 2247[label="",style="solid", color="blue", weight=3]; 3562[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2025 -> 3562[label="",style="solid", color="blue", weight=9]; 3562 -> 2248[label="",style="solid", color="blue", weight=3]; 3563[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2025 -> 3563[label="",style="solid", color="blue", weight=9]; 3563 -> 2249[label="",style="solid", color="blue", weight=3]; 3564[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2025 -> 3564[label="",style="solid", color="blue", weight=9]; 3564 -> 2250[label="",style="solid", color="blue", weight=3]; 3565[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2025 -> 3565[label="",style="solid", color="blue", weight=9]; 3565 -> 2251[label="",style="solid", color="blue", weight=3]; 3566[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2025 -> 3566[label="",style="solid", color="blue", weight=9]; 3566 -> 2252[label="",style="solid", color="blue", weight=3]; 3567[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2025 -> 3567[label="",style="solid", color="blue", weight=9]; 3567 -> 2253[label="",style="solid", color="blue", weight=3]; 3568[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2025 -> 3568[label="",style="solid", color="blue", weight=9]; 3568 -> 2254[label="",style="solid", color="blue", weight=3]; 3569[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2025 -> 3569[label="",style="solid", color="blue", weight=9]; 3569 -> 2255[label="",style="solid", color="blue", weight=3]; 2026[label="vwx71 <= vwx74",fontsize=16,color="blue",shape="box"];3570[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2026 -> 3570[label="",style="solid", color="blue", weight=9]; 3570 -> 2256[label="",style="solid", color="blue", weight=3]; 3571[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2026 -> 3571[label="",style="solid", color="blue", weight=9]; 3571 -> 2257[label="",style="solid", color="blue", weight=3]; 3572[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2026 -> 3572[label="",style="solid", color="blue", weight=9]; 3572 -> 2258[label="",style="solid", color="blue", weight=3]; 3573[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2026 -> 3573[label="",style="solid", color="blue", weight=9]; 3573 -> 2259[label="",style="solid", color="blue", weight=3]; 3574[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2026 -> 3574[label="",style="solid", color="blue", weight=9]; 3574 -> 2260[label="",style="solid", color="blue", weight=3]; 3575[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2026 -> 3575[label="",style="solid", color="blue", weight=9]; 3575 -> 2261[label="",style="solid", color="blue", weight=3]; 3576[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2026 -> 3576[label="",style="solid", color="blue", weight=9]; 3576 -> 2262[label="",style="solid", color="blue", weight=3]; 3577[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2026 -> 3577[label="",style="solid", color="blue", weight=9]; 3577 -> 2263[label="",style="solid", color="blue", weight=3]; 3578[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2026 -> 3578[label="",style="solid", color="blue", weight=9]; 3578 -> 2264[label="",style="solid", color="blue", weight=3]; 3579[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2026 -> 3579[label="",style="solid", color="blue", weight=9]; 3579 -> 2265[label="",style="solid", color="blue", weight=3]; 3580[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2026 -> 3580[label="",style="solid", color="blue", weight=9]; 3580 -> 2266[label="",style="solid", color="blue", weight=3]; 3581[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2026 -> 3581[label="",style="solid", color="blue", weight=9]; 3581 -> 2267[label="",style="solid", color="blue", weight=3]; 3582[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2026 -> 3582[label="",style="solid", color="blue", weight=9]; 3582 -> 2268[label="",style="solid", color="blue", weight=3]; 3583[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2026 -> 3583[label="",style="solid", color="blue", weight=9]; 3583 -> 2269[label="",style="solid", color="blue", weight=3]; 2027 -> 1373[label="",style="dashed", color="red", weight=0]; 2027[label="vwx70 < vwx73",fontsize=16,color="magenta"];2027 -> 2270[label="",style="dashed", color="magenta", weight=3]; 2027 -> 2271[label="",style="dashed", color="magenta", weight=3]; 2028 -> 1374[label="",style="dashed", color="red", weight=0]; 2028[label="vwx70 < vwx73",fontsize=16,color="magenta"];2028 -> 2272[label="",style="dashed", color="magenta", weight=3]; 2028 -> 2273[label="",style="dashed", color="magenta", weight=3]; 2029 -> 1375[label="",style="dashed", color="red", weight=0]; 2029[label="vwx70 < vwx73",fontsize=16,color="magenta"];2029 -> 2274[label="",style="dashed", color="magenta", weight=3]; 2029 -> 2275[label="",style="dashed", color="magenta", weight=3]; 2030 -> 1376[label="",style="dashed", color="red", weight=0]; 2030[label="vwx70 < vwx73",fontsize=16,color="magenta"];2030 -> 2276[label="",style="dashed", color="magenta", weight=3]; 2030 -> 2277[label="",style="dashed", color="magenta", weight=3]; 2031 -> 1377[label="",style="dashed", color="red", weight=0]; 2031[label="vwx70 < vwx73",fontsize=16,color="magenta"];2031 -> 2278[label="",style="dashed", color="magenta", weight=3]; 2031 -> 2279[label="",style="dashed", color="magenta", weight=3]; 2032 -> 1378[label="",style="dashed", color="red", weight=0]; 2032[label="vwx70 < vwx73",fontsize=16,color="magenta"];2032 -> 2280[label="",style="dashed", color="magenta", weight=3]; 2032 -> 2281[label="",style="dashed", color="magenta", weight=3]; 2033 -> 1379[label="",style="dashed", color="red", weight=0]; 2033[label="vwx70 < vwx73",fontsize=16,color="magenta"];2033 -> 2282[label="",style="dashed", color="magenta", weight=3]; 2033 -> 2283[label="",style="dashed", color="magenta", weight=3]; 2034 -> 1380[label="",style="dashed", color="red", weight=0]; 2034[label="vwx70 < vwx73",fontsize=16,color="magenta"];2034 -> 2284[label="",style="dashed", color="magenta", weight=3]; 2034 -> 2285[label="",style="dashed", color="magenta", weight=3]; 2035 -> 1381[label="",style="dashed", color="red", weight=0]; 2035[label="vwx70 < vwx73",fontsize=16,color="magenta"];2035 -> 2286[label="",style="dashed", color="magenta", weight=3]; 2035 -> 2287[label="",style="dashed", color="magenta", weight=3]; 2036 -> 1382[label="",style="dashed", color="red", weight=0]; 2036[label="vwx70 < vwx73",fontsize=16,color="magenta"];2036 -> 2288[label="",style="dashed", color="magenta", weight=3]; 2036 -> 2289[label="",style="dashed", color="magenta", weight=3]; 2037 -> 1383[label="",style="dashed", color="red", weight=0]; 2037[label="vwx70 < vwx73",fontsize=16,color="magenta"];2037 -> 2290[label="",style="dashed", color="magenta", weight=3]; 2037 -> 2291[label="",style="dashed", color="magenta", weight=3]; 2038 -> 1384[label="",style="dashed", color="red", weight=0]; 2038[label="vwx70 < vwx73",fontsize=16,color="magenta"];2038 -> 2292[label="",style="dashed", color="magenta", weight=3]; 2038 -> 2293[label="",style="dashed", color="magenta", weight=3]; 2039 -> 1385[label="",style="dashed", color="red", weight=0]; 2039[label="vwx70 < vwx73",fontsize=16,color="magenta"];2039 -> 2294[label="",style="dashed", color="magenta", weight=3]; 2039 -> 2295[label="",style="dashed", color="magenta", weight=3]; 2040 -> 1386[label="",style="dashed", color="red", weight=0]; 2040[label="vwx70 < vwx73",fontsize=16,color="magenta"];2040 -> 2296[label="",style="dashed", color="magenta", weight=3]; 2040 -> 2297[label="",style="dashed", color="magenta", weight=3]; 2041[label="False || vwx161",fontsize=16,color="black",shape="box"];2041 -> 2298[label="",style="solid", color="black", weight=3]; 2042[label="True || vwx161",fontsize=16,color="black",shape="box"];2042 -> 2299[label="",style="solid", color="black", weight=3]; 2043[label="LT",fontsize=16,color="green",shape="box"];2044 -> 108[label="",style="dashed", color="red", weight=0]; 2044[label="compare vwx69 vwx72",fontsize=16,color="magenta"];2044 -> 2300[label="",style="dashed", color="magenta", weight=3]; 2044 -> 2301[label="",style="dashed", color="magenta", weight=3]; 2045[label="LT",fontsize=16,color="green",shape="box"];2046 -> 109[label="",style="dashed", color="red", weight=0]; 2046[label="compare vwx69 vwx72",fontsize=16,color="magenta"];2046 -> 2302[label="",style="dashed", color="magenta", weight=3]; 2046 -> 2303[label="",style="dashed", color="magenta", weight=3]; 2047[label="LT",fontsize=16,color="green",shape="box"];2048 -> 110[label="",style="dashed", color="red", weight=0]; 2048[label="compare vwx69 vwx72",fontsize=16,color="magenta"];2048 -> 2304[label="",style="dashed", color="magenta", weight=3]; 2048 -> 2305[label="",style="dashed", color="magenta", weight=3]; 2049[label="LT",fontsize=16,color="green",shape="box"];2050 -> 111[label="",style="dashed", color="red", weight=0]; 2050[label="compare vwx69 vwx72",fontsize=16,color="magenta"];2050 -> 2306[label="",style="dashed", color="magenta", weight=3]; 2050 -> 2307[label="",style="dashed", color="magenta", weight=3]; 2051[label="LT",fontsize=16,color="green",shape="box"];2052 -> 112[label="",style="dashed", color="red", weight=0]; 2052[label="compare vwx69 vwx72",fontsize=16,color="magenta"];2052 -> 2308[label="",style="dashed", color="magenta", weight=3]; 2052 -> 2309[label="",style="dashed", color="magenta", weight=3]; 2053[label="LT",fontsize=16,color="green",shape="box"];2054 -> 113[label="",style="dashed", color="red", weight=0]; 2054[label="compare vwx69 vwx72",fontsize=16,color="magenta"];2054 -> 2310[label="",style="dashed", color="magenta", weight=3]; 2054 -> 2311[label="",style="dashed", color="magenta", weight=3]; 2055[label="LT",fontsize=16,color="green",shape="box"];2056 -> 114[label="",style="dashed", color="red", weight=0]; 2056[label="compare vwx69 vwx72",fontsize=16,color="magenta"];2056 -> 2312[label="",style="dashed", color="magenta", weight=3]; 2056 -> 2313[label="",style="dashed", color="magenta", weight=3]; 2057[label="LT",fontsize=16,color="green",shape="box"];2058 -> 115[label="",style="dashed", color="red", weight=0]; 2058[label="compare vwx69 vwx72",fontsize=16,color="magenta"];2058 -> 2314[label="",style="dashed", color="magenta", weight=3]; 2058 -> 2315[label="",style="dashed", color="magenta", weight=3]; 2059[label="LT",fontsize=16,color="green",shape="box"];2060 -> 116[label="",style="dashed", color="red", weight=0]; 2060[label="compare vwx69 vwx72",fontsize=16,color="magenta"];2060 -> 2316[label="",style="dashed", color="magenta", weight=3]; 2060 -> 2317[label="",style="dashed", color="magenta", weight=3]; 2061[label="LT",fontsize=16,color="green",shape="box"];2062 -> 117[label="",style="dashed", color="red", weight=0]; 2062[label="compare vwx69 vwx72",fontsize=16,color="magenta"];2062 -> 2318[label="",style="dashed", color="magenta", weight=3]; 2062 -> 2319[label="",style="dashed", color="magenta", weight=3]; 2063[label="LT",fontsize=16,color="green",shape="box"];2064 -> 118[label="",style="dashed", color="red", weight=0]; 2064[label="compare vwx69 vwx72",fontsize=16,color="magenta"];2064 -> 2320[label="",style="dashed", color="magenta", weight=3]; 2064 -> 2321[label="",style="dashed", color="magenta", weight=3]; 2065[label="LT",fontsize=16,color="green",shape="box"];2066 -> 119[label="",style="dashed", color="red", weight=0]; 2066[label="compare vwx69 vwx72",fontsize=16,color="magenta"];2066 -> 2322[label="",style="dashed", color="magenta", weight=3]; 2066 -> 2323[label="",style="dashed", color="magenta", weight=3]; 2067[label="LT",fontsize=16,color="green",shape="box"];2068 -> 120[label="",style="dashed", color="red", weight=0]; 2068[label="compare vwx69 vwx72",fontsize=16,color="magenta"];2068 -> 2324[label="",style="dashed", color="magenta", weight=3]; 2068 -> 2325[label="",style="dashed", color="magenta", weight=3]; 2069[label="LT",fontsize=16,color="green",shape="box"];2070 -> 121[label="",style="dashed", color="red", weight=0]; 2070[label="compare vwx69 vwx72",fontsize=16,color="magenta"];2070 -> 2326[label="",style="dashed", color="magenta", weight=3]; 2070 -> 2327[label="",style="dashed", color="magenta", weight=3]; 2071[label="compare1 (vwx134,vwx135,vwx136) (vwx137,vwx138,vwx139) False",fontsize=16,color="black",shape="box"];2071 -> 2328[label="",style="solid", color="black", weight=3]; 2072[label="compare1 (vwx134,vwx135,vwx136) (vwx137,vwx138,vwx139) True",fontsize=16,color="black",shape="box"];2072 -> 2329[label="",style="solid", color="black", weight=3]; 2073[label="True",fontsize=16,color="green",shape="box"];2074 -> 2330[label="",style="dashed", color="red", weight=0]; 2074[label="primPlusNat (primMulNat vwx4000 (Succ vwx3100)) (Succ vwx3100)",fontsize=16,color="magenta"];2074 -> 2331[label="",style="dashed", color="magenta", weight=3]; 2075[label="Zero",fontsize=16,color="green",shape="box"];2076[label="Zero",fontsize=16,color="green",shape="box"];2077[label="Zero",fontsize=16,color="green",shape="box"];2078[label="vwx84",fontsize=16,color="green",shape="box"];2079[label="vwx82",fontsize=16,color="green",shape="box"];2080[label="vwx84",fontsize=16,color="green",shape="box"];2081[label="vwx82",fontsize=16,color="green",shape="box"];2082[label="vwx84",fontsize=16,color="green",shape="box"];2083[label="vwx82",fontsize=16,color="green",shape="box"];2084[label="vwx84",fontsize=16,color="green",shape="box"];2085[label="vwx82",fontsize=16,color="green",shape="box"];2086[label="vwx84",fontsize=16,color="green",shape="box"];2087[label="vwx82",fontsize=16,color="green",shape="box"];2088[label="vwx84",fontsize=16,color="green",shape="box"];2089[label="vwx82",fontsize=16,color="green",shape="box"];2090[label="vwx84",fontsize=16,color="green",shape="box"];2091[label="vwx82",fontsize=16,color="green",shape="box"];2092[label="vwx84",fontsize=16,color="green",shape="box"];2093[label="vwx82",fontsize=16,color="green",shape="box"];2094[label="vwx84",fontsize=16,color="green",shape="box"];2095[label="vwx82",fontsize=16,color="green",shape="box"];2096[label="vwx84",fontsize=16,color="green",shape="box"];2097[label="vwx82",fontsize=16,color="green",shape="box"];2098[label="vwx84",fontsize=16,color="green",shape="box"];2099[label="vwx82",fontsize=16,color="green",shape="box"];2100[label="vwx84",fontsize=16,color="green",shape="box"];2101[label="vwx82",fontsize=16,color="green",shape="box"];2102[label="vwx84",fontsize=16,color="green",shape="box"];2103[label="vwx82",fontsize=16,color="green",shape="box"];2104[label="vwx84",fontsize=16,color="green",shape="box"];2105[label="vwx82",fontsize=16,color="green",shape="box"];2106[label="vwx83",fontsize=16,color="green",shape="box"];2107[label="vwx85",fontsize=16,color="green",shape="box"];2108[label="vwx83",fontsize=16,color="green",shape="box"];2109[label="vwx85",fontsize=16,color="green",shape="box"];2110[label="vwx83",fontsize=16,color="green",shape="box"];2111[label="vwx85",fontsize=16,color="green",shape="box"];2112[label="vwx83",fontsize=16,color="green",shape="box"];2113[label="vwx85",fontsize=16,color="green",shape="box"];2114[label="vwx83",fontsize=16,color="green",shape="box"];2115[label="vwx85",fontsize=16,color="green",shape="box"];2116[label="vwx83",fontsize=16,color="green",shape="box"];2117[label="vwx85",fontsize=16,color="green",shape="box"];2118[label="vwx83",fontsize=16,color="green",shape="box"];2119[label="vwx85",fontsize=16,color="green",shape="box"];2120[label="vwx83",fontsize=16,color="green",shape="box"];2121[label="vwx85",fontsize=16,color="green",shape="box"];2122[label="vwx83",fontsize=16,color="green",shape="box"];2123[label="vwx85",fontsize=16,color="green",shape="box"];2124[label="vwx83",fontsize=16,color="green",shape="box"];2125[label="vwx85",fontsize=16,color="green",shape="box"];2126[label="vwx83",fontsize=16,color="green",shape="box"];2127[label="vwx85",fontsize=16,color="green",shape="box"];2128[label="vwx83",fontsize=16,color="green",shape="box"];2129[label="vwx85",fontsize=16,color="green",shape="box"];2130[label="vwx83",fontsize=16,color="green",shape="box"];2131[label="vwx85",fontsize=16,color="green",shape="box"];2132[label="vwx83",fontsize=16,color="green",shape="box"];2133[label="vwx85",fontsize=16,color="green",shape="box"];2134[label="compare1 (vwx149,vwx150) (vwx151,vwx152) False",fontsize=16,color="black",shape="box"];2134 -> 2332[label="",style="solid", color="black", weight=3]; 2135[label="compare1 (vwx149,vwx150) (vwx151,vwx152) True",fontsize=16,color="black",shape="box"];2135 -> 2333[label="",style="solid", color="black", weight=3]; 2136[label="True",fontsize=16,color="green",shape="box"];2137[label="GT",fontsize=16,color="green",shape="box"];2138 -> 1266[label="",style="dashed", color="red", weight=0]; 2138[label="primEqNat vwx3000 vwx4000",fontsize=16,color="magenta"];2138 -> 2334[label="",style="dashed", color="magenta", weight=3]; 2138 -> 2335[label="",style="dashed", color="magenta", weight=3]; 2139[label="False",fontsize=16,color="green",shape="box"];2140[label="False",fontsize=16,color="green",shape="box"];2141[label="True",fontsize=16,color="green",shape="box"];2142[label="vwx3000",fontsize=16,color="green",shape="box"];2143[label="vwx4000",fontsize=16,color="green",shape="box"];2144[label="vwx3000",fontsize=16,color="green",shape="box"];2145[label="vwx4000",fontsize=16,color="green",shape="box"];2146[label="vwx401",fontsize=16,color="green",shape="box"];2147[label="vwx301",fontsize=16,color="green",shape="box"];2148[label="vwx401",fontsize=16,color="green",shape="box"];2149[label="vwx301",fontsize=16,color="green",shape="box"];2150[label="vwx401",fontsize=16,color="green",shape="box"];2151[label="vwx301",fontsize=16,color="green",shape="box"];2152[label="vwx401",fontsize=16,color="green",shape="box"];2153[label="vwx301",fontsize=16,color="green",shape="box"];2154[label="vwx401",fontsize=16,color="green",shape="box"];2155[label="vwx301",fontsize=16,color="green",shape="box"];2156[label="vwx401",fontsize=16,color="green",shape="box"];2157[label="vwx301",fontsize=16,color="green",shape="box"];2158[label="vwx401",fontsize=16,color="green",shape="box"];2159[label="vwx301",fontsize=16,color="green",shape="box"];2160[label="vwx401",fontsize=16,color="green",shape="box"];2161[label="vwx301",fontsize=16,color="green",shape="box"];2162[label="vwx401",fontsize=16,color="green",shape="box"];2163[label="vwx301",fontsize=16,color="green",shape="box"];2164[label="vwx401",fontsize=16,color="green",shape="box"];2165[label="vwx301",fontsize=16,color="green",shape="box"];2166[label="vwx401",fontsize=16,color="green",shape="box"];2167[label="vwx301",fontsize=16,color="green",shape="box"];2168[label="vwx401",fontsize=16,color="green",shape="box"];2169[label="vwx301",fontsize=16,color="green",shape="box"];2170[label="vwx401",fontsize=16,color="green",shape="box"];2171[label="vwx301",fontsize=16,color="green",shape="box"];2172[label="vwx401",fontsize=16,color="green",shape="box"];2173[label="vwx301",fontsize=16,color="green",shape="box"];2174[label="vwx402",fontsize=16,color="green",shape="box"];2175[label="vwx302",fontsize=16,color="green",shape="box"];2176[label="vwx402",fontsize=16,color="green",shape="box"];2177[label="vwx302",fontsize=16,color="green",shape="box"];2178[label="vwx402",fontsize=16,color="green",shape="box"];2179[label="vwx302",fontsize=16,color="green",shape="box"];2180[label="vwx402",fontsize=16,color="green",shape="box"];2181[label="vwx302",fontsize=16,color="green",shape="box"];2182[label="vwx402",fontsize=16,color="green",shape="box"];2183[label="vwx302",fontsize=16,color="green",shape="box"];2184[label="vwx402",fontsize=16,color="green",shape="box"];2185[label="vwx302",fontsize=16,color="green",shape="box"];2186[label="vwx402",fontsize=16,color="green",shape="box"];2187[label="vwx302",fontsize=16,color="green",shape="box"];2188[label="vwx402",fontsize=16,color="green",shape="box"];2189[label="vwx302",fontsize=16,color="green",shape="box"];2190[label="vwx402",fontsize=16,color="green",shape="box"];2191[label="vwx302",fontsize=16,color="green",shape="box"];2192[label="vwx402",fontsize=16,color="green",shape="box"];2193[label="vwx302",fontsize=16,color="green",shape="box"];2194[label="vwx402",fontsize=16,color="green",shape="box"];2195[label="vwx302",fontsize=16,color="green",shape="box"];2196[label="vwx402",fontsize=16,color="green",shape="box"];2197[label="vwx302",fontsize=16,color="green",shape="box"];2198[label="vwx402",fontsize=16,color="green",shape="box"];2199[label="vwx302",fontsize=16,color="green",shape="box"];2200[label="vwx402",fontsize=16,color="green",shape="box"];2201[label="vwx302",fontsize=16,color="green",shape="box"];2202[label="True",fontsize=16,color="green",shape="box"];2203[label="True",fontsize=16,color="green",shape="box"];2204[label="False",fontsize=16,color="green",shape="box"];2205[label="True",fontsize=16,color="green",shape="box"];2206[label="vwx14",fontsize=16,color="green",shape="box"];2207[label="vwx13",fontsize=16,color="green",shape="box"];2208 -> 2336[label="",style="dashed", color="red", weight=0]; 2208[label="not (vwx156 == GT)",fontsize=16,color="magenta"];2208 -> 2337[label="",style="dashed", color="magenta", weight=3]; 2209[label="vwx130 <= vwx140",fontsize=16,color="blue",shape="box"];3584[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2209 -> 3584[label="",style="solid", color="blue", weight=9]; 3584 -> 2338[label="",style="solid", color="blue", weight=3]; 3585[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2209 -> 3585[label="",style="solid", color="blue", weight=9]; 3585 -> 2339[label="",style="solid", color="blue", weight=3]; 3586[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2209 -> 3586[label="",style="solid", color="blue", weight=9]; 3586 -> 2340[label="",style="solid", color="blue", weight=3]; 3587[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2209 -> 3587[label="",style="solid", color="blue", weight=9]; 3587 -> 2341[label="",style="solid", color="blue", weight=3]; 3588[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2209 -> 3588[label="",style="solid", color="blue", weight=9]; 3588 -> 2342[label="",style="solid", color="blue", weight=3]; 3589[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2209 -> 3589[label="",style="solid", color="blue", weight=9]; 3589 -> 2343[label="",style="solid", color="blue", weight=3]; 3590[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2209 -> 3590[label="",style="solid", color="blue", weight=9]; 3590 -> 2344[label="",style="solid", color="blue", weight=3]; 3591[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2209 -> 3591[label="",style="solid", color="blue", weight=9]; 3591 -> 2345[label="",style="solid", color="blue", weight=3]; 3592[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2209 -> 3592[label="",style="solid", color="blue", weight=9]; 3592 -> 2346[label="",style="solid", color="blue", weight=3]; 3593[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2209 -> 3593[label="",style="solid", color="blue", weight=9]; 3593 -> 2347[label="",style="solid", color="blue", weight=3]; 3594[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2209 -> 3594[label="",style="solid", color="blue", weight=9]; 3594 -> 2348[label="",style="solid", color="blue", weight=3]; 3595[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2209 -> 3595[label="",style="solid", color="blue", weight=9]; 3595 -> 2349[label="",style="solid", color="blue", weight=3]; 3596[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2209 -> 3596[label="",style="solid", color="blue", weight=9]; 3596 -> 2350[label="",style="solid", color="blue", weight=3]; 3597[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2209 -> 3597[label="",style="solid", color="blue", weight=9]; 3597 -> 2351[label="",style="solid", color="blue", weight=3]; 2210[label="True",fontsize=16,color="green",shape="box"];2211[label="False",fontsize=16,color="green",shape="box"];2212[label="vwx130 <= vwx140",fontsize=16,color="blue",shape="box"];3598[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2212 -> 3598[label="",style="solid", color="blue", weight=9]; 3598 -> 2352[label="",style="solid", color="blue", weight=3]; 3599[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2212 -> 3599[label="",style="solid", color="blue", weight=9]; 3599 -> 2353[label="",style="solid", color="blue", weight=3]; 3600[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2212 -> 3600[label="",style="solid", color="blue", weight=9]; 3600 -> 2354[label="",style="solid", color="blue", weight=3]; 3601[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2212 -> 3601[label="",style="solid", color="blue", weight=9]; 3601 -> 2355[label="",style="solid", color="blue", weight=3]; 3602[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2212 -> 3602[label="",style="solid", color="blue", weight=9]; 3602 -> 2356[label="",style="solid", color="blue", weight=3]; 3603[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2212 -> 3603[label="",style="solid", color="blue", weight=9]; 3603 -> 2357[label="",style="solid", color="blue", weight=3]; 3604[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2212 -> 3604[label="",style="solid", color="blue", weight=9]; 3604 -> 2358[label="",style="solid", color="blue", weight=3]; 3605[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2212 -> 3605[label="",style="solid", color="blue", weight=9]; 3605 -> 2359[label="",style="solid", color="blue", weight=3]; 3606[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2212 -> 3606[label="",style="solid", color="blue", weight=9]; 3606 -> 2360[label="",style="solid", color="blue", weight=3]; 3607[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2212 -> 3607[label="",style="solid", color="blue", weight=9]; 3607 -> 2361[label="",style="solid", color="blue", weight=3]; 3608[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2212 -> 3608[label="",style="solid", color="blue", weight=9]; 3608 -> 2362[label="",style="solid", color="blue", weight=3]; 3609[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2212 -> 3609[label="",style="solid", color="blue", weight=9]; 3609 -> 2363[label="",style="solid", color="blue", weight=3]; 3610[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2212 -> 3610[label="",style="solid", color="blue", weight=9]; 3610 -> 2364[label="",style="solid", color="blue", weight=3]; 3611[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2212 -> 3611[label="",style="solid", color="blue", weight=9]; 3611 -> 2365[label="",style="solid", color="blue", weight=3]; 2213[label="vwx14",fontsize=16,color="green",shape="box"];2214[label="vwx13",fontsize=16,color="green",shape="box"];2215[label="vwx14",fontsize=16,color="green",shape="box"];2216[label="vwx13",fontsize=16,color="green",shape="box"];2217 -> 2020[label="",style="dashed", color="red", weight=0]; 2217[label="vwx130 < vwx140 || vwx130 == vwx140 && (vwx131 < vwx141 || vwx131 == vwx141 && vwx132 <= vwx142)",fontsize=16,color="magenta"];2217 -> 2366[label="",style="dashed", color="magenta", weight=3]; 2217 -> 2367[label="",style="dashed", color="magenta", weight=3]; 2218[label="vwx14",fontsize=16,color="green",shape="box"];2219[label="vwx13",fontsize=16,color="green",shape="box"];2220[label="vwx14",fontsize=16,color="green",shape="box"];2221[label="vwx13",fontsize=16,color="green",shape="box"];2222 -> 2020[label="",style="dashed", color="red", weight=0]; 2222[label="vwx130 < vwx140 || vwx130 == vwx140 && vwx131 <= vwx141",fontsize=16,color="magenta"];2222 -> 2368[label="",style="dashed", color="magenta", weight=3]; 2222 -> 2369[label="",style="dashed", color="magenta", weight=3]; 2223[label="True",fontsize=16,color="green",shape="box"];2224[label="True",fontsize=16,color="green",shape="box"];2225[label="True",fontsize=16,color="green",shape="box"];2226[label="False",fontsize=16,color="green",shape="box"];2227[label="True",fontsize=16,color="green",shape="box"];2228[label="True",fontsize=16,color="green",shape="box"];2229[label="False",fontsize=16,color="green",shape="box"];2230[label="False",fontsize=16,color="green",shape="box"];2231[label="True",fontsize=16,color="green",shape="box"];2232[label="True",fontsize=16,color="green",shape="box"];2233[label="True",fontsize=16,color="green",shape="box"];2234[label="False",fontsize=16,color="green",shape="box"];2235[label="vwx130 <= vwx140",fontsize=16,color="blue",shape="box"];3612[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 3612[label="",style="solid", color="blue", weight=9]; 3612 -> 2370[label="",style="solid", color="blue", weight=3]; 3613[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 3613[label="",style="solid", color="blue", weight=9]; 3613 -> 2371[label="",style="solid", color="blue", weight=3]; 3614[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 3614[label="",style="solid", color="blue", weight=9]; 3614 -> 2372[label="",style="solid", color="blue", weight=3]; 3615[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 3615[label="",style="solid", color="blue", weight=9]; 3615 -> 2373[label="",style="solid", color="blue", weight=3]; 3616[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 3616[label="",style="solid", color="blue", weight=9]; 3616 -> 2374[label="",style="solid", color="blue", weight=3]; 3617[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 3617[label="",style="solid", color="blue", weight=9]; 3617 -> 2375[label="",style="solid", color="blue", weight=3]; 3618[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 3618[label="",style="solid", color="blue", weight=9]; 3618 -> 2376[label="",style="solid", color="blue", weight=3]; 3619[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 3619[label="",style="solid", color="blue", weight=9]; 3619 -> 2377[label="",style="solid", color="blue", weight=3]; 3620[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 3620[label="",style="solid", color="blue", weight=9]; 3620 -> 2378[label="",style="solid", color="blue", weight=3]; 3621[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 3621[label="",style="solid", color="blue", weight=9]; 3621 -> 2379[label="",style="solid", color="blue", weight=3]; 3622[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 3622[label="",style="solid", color="blue", weight=9]; 3622 -> 2380[label="",style="solid", color="blue", weight=3]; 3623[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 3623[label="",style="solid", color="blue", weight=9]; 3623 -> 2381[label="",style="solid", color="blue", weight=3]; 3624[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 3624[label="",style="solid", color="blue", weight=9]; 3624 -> 2382[label="",style="solid", color="blue", weight=3]; 3625[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 3625[label="",style="solid", color="blue", weight=9]; 3625 -> 2383[label="",style="solid", color="blue", weight=3]; 2236[label="vwx14",fontsize=16,color="green",shape="box"];2237[label="vwx13",fontsize=16,color="green",shape="box"];2238[label="vwx14",fontsize=16,color="green",shape="box"];2239[label="vwx13",fontsize=16,color="green",shape="box"];2240[label="vwx14",fontsize=16,color="green",shape="box"];2241[label="vwx13",fontsize=16,color="green",shape="box"];2242 -> 397[label="",style="dashed", color="red", weight=0]; 2242[label="vwx70 == vwx73",fontsize=16,color="magenta"];2242 -> 2384[label="",style="dashed", color="magenta", weight=3]; 2242 -> 2385[label="",style="dashed", color="magenta", weight=3]; 2243 -> 387[label="",style="dashed", color="red", weight=0]; 2243[label="vwx70 == vwx73",fontsize=16,color="magenta"];2243 -> 2386[label="",style="dashed", color="magenta", weight=3]; 2243 -> 2387[label="",style="dashed", color="magenta", weight=3]; 2244 -> 396[label="",style="dashed", color="red", weight=0]; 2244[label="vwx70 == vwx73",fontsize=16,color="magenta"];2244 -> 2388[label="",style="dashed", color="magenta", weight=3]; 2244 -> 2389[label="",style="dashed", color="magenta", weight=3]; 2245 -> 385[label="",style="dashed", color="red", weight=0]; 2245[label="vwx70 == vwx73",fontsize=16,color="magenta"];2245 -> 2390[label="",style="dashed", color="magenta", weight=3]; 2245 -> 2391[label="",style="dashed", color="magenta", weight=3]; 2246 -> 390[label="",style="dashed", color="red", weight=0]; 2246[label="vwx70 == vwx73",fontsize=16,color="magenta"];2246 -> 2392[label="",style="dashed", color="magenta", weight=3]; 2246 -> 2393[label="",style="dashed", color="magenta", weight=3]; 2247 -> 394[label="",style="dashed", color="red", weight=0]; 2247[label="vwx70 == vwx73",fontsize=16,color="magenta"];2247 -> 2394[label="",style="dashed", color="magenta", weight=3]; 2247 -> 2395[label="",style="dashed", color="magenta", weight=3]; 2248 -> 395[label="",style="dashed", color="red", weight=0]; 2248[label="vwx70 == vwx73",fontsize=16,color="magenta"];2248 -> 2396[label="",style="dashed", color="magenta", weight=3]; 2248 -> 2397[label="",style="dashed", color="magenta", weight=3]; 2249 -> 392[label="",style="dashed", color="red", weight=0]; 2249[label="vwx70 == vwx73",fontsize=16,color="magenta"];2249 -> 2398[label="",style="dashed", color="magenta", weight=3]; 2249 -> 2399[label="",style="dashed", color="magenta", weight=3]; 2250 -> 384[label="",style="dashed", color="red", weight=0]; 2250[label="vwx70 == vwx73",fontsize=16,color="magenta"];2250 -> 2400[label="",style="dashed", color="magenta", weight=3]; 2250 -> 2401[label="",style="dashed", color="magenta", weight=3]; 2251 -> 389[label="",style="dashed", color="red", weight=0]; 2251[label="vwx70 == vwx73",fontsize=16,color="magenta"];2251 -> 2402[label="",style="dashed", color="magenta", weight=3]; 2251 -> 2403[label="",style="dashed", color="magenta", weight=3]; 2252 -> 388[label="",style="dashed", color="red", weight=0]; 2252[label="vwx70 == vwx73",fontsize=16,color="magenta"];2252 -> 2404[label="",style="dashed", color="magenta", weight=3]; 2252 -> 2405[label="",style="dashed", color="magenta", weight=3]; 2253 -> 393[label="",style="dashed", color="red", weight=0]; 2253[label="vwx70 == vwx73",fontsize=16,color="magenta"];2253 -> 2406[label="",style="dashed", color="magenta", weight=3]; 2253 -> 2407[label="",style="dashed", color="magenta", weight=3]; 2254 -> 391[label="",style="dashed", color="red", weight=0]; 2254[label="vwx70 == vwx73",fontsize=16,color="magenta"];2254 -> 2408[label="",style="dashed", color="magenta", weight=3]; 2254 -> 2409[label="",style="dashed", color="magenta", weight=3]; 2255 -> 386[label="",style="dashed", color="red", weight=0]; 2255[label="vwx70 == vwx73",fontsize=16,color="magenta"];2255 -> 2410[label="",style="dashed", color="magenta", weight=3]; 2255 -> 2411[label="",style="dashed", color="magenta", weight=3]; 2256 -> 1320[label="",style="dashed", color="red", weight=0]; 2256[label="vwx71 <= vwx74",fontsize=16,color="magenta"];2256 -> 2412[label="",style="dashed", color="magenta", weight=3]; 2256 -> 2413[label="",style="dashed", color="magenta", weight=3]; 2257 -> 1321[label="",style="dashed", color="red", weight=0]; 2257[label="vwx71 <= vwx74",fontsize=16,color="magenta"];2257 -> 2414[label="",style="dashed", color="magenta", weight=3]; 2257 -> 2415[label="",style="dashed", color="magenta", weight=3]; 2258 -> 1322[label="",style="dashed", color="red", weight=0]; 2258[label="vwx71 <= vwx74",fontsize=16,color="magenta"];2258 -> 2416[label="",style="dashed", color="magenta", weight=3]; 2258 -> 2417[label="",style="dashed", color="magenta", weight=3]; 2259 -> 1323[label="",style="dashed", color="red", weight=0]; 2259[label="vwx71 <= vwx74",fontsize=16,color="magenta"];2259 -> 2418[label="",style="dashed", color="magenta", weight=3]; 2259 -> 2419[label="",style="dashed", color="magenta", weight=3]; 2260 -> 1324[label="",style="dashed", color="red", weight=0]; 2260[label="vwx71 <= vwx74",fontsize=16,color="magenta"];2260 -> 2420[label="",style="dashed", color="magenta", weight=3]; 2260 -> 2421[label="",style="dashed", color="magenta", weight=3]; 2261 -> 1325[label="",style="dashed", color="red", weight=0]; 2261[label="vwx71 <= vwx74",fontsize=16,color="magenta"];2261 -> 2422[label="",style="dashed", color="magenta", weight=3]; 2261 -> 2423[label="",style="dashed", color="magenta", weight=3]; 2262 -> 1326[label="",style="dashed", color="red", weight=0]; 2262[label="vwx71 <= vwx74",fontsize=16,color="magenta"];2262 -> 2424[label="",style="dashed", color="magenta", weight=3]; 2262 -> 2425[label="",style="dashed", color="magenta", weight=3]; 2263 -> 1327[label="",style="dashed", color="red", weight=0]; 2263[label="vwx71 <= vwx74",fontsize=16,color="magenta"];2263 -> 2426[label="",style="dashed", color="magenta", weight=3]; 2263 -> 2427[label="",style="dashed", color="magenta", weight=3]; 2264 -> 1328[label="",style="dashed", color="red", weight=0]; 2264[label="vwx71 <= vwx74",fontsize=16,color="magenta"];2264 -> 2428[label="",style="dashed", color="magenta", weight=3]; 2264 -> 2429[label="",style="dashed", color="magenta", weight=3]; 2265 -> 1329[label="",style="dashed", color="red", weight=0]; 2265[label="vwx71 <= vwx74",fontsize=16,color="magenta"];2265 -> 2430[label="",style="dashed", color="magenta", weight=3]; 2265 -> 2431[label="",style="dashed", color="magenta", weight=3]; 2266 -> 1330[label="",style="dashed", color="red", weight=0]; 2266[label="vwx71 <= vwx74",fontsize=16,color="magenta"];2266 -> 2432[label="",style="dashed", color="magenta", weight=3]; 2266 -> 2433[label="",style="dashed", color="magenta", weight=3]; 2267 -> 1331[label="",style="dashed", color="red", weight=0]; 2267[label="vwx71 <= vwx74",fontsize=16,color="magenta"];2267 -> 2434[label="",style="dashed", color="magenta", weight=3]; 2267 -> 2435[label="",style="dashed", color="magenta", weight=3]; 2268 -> 1332[label="",style="dashed", color="red", weight=0]; 2268[label="vwx71 <= vwx74",fontsize=16,color="magenta"];2268 -> 2436[label="",style="dashed", color="magenta", weight=3]; 2268 -> 2437[label="",style="dashed", color="magenta", weight=3]; 2269 -> 1333[label="",style="dashed", color="red", weight=0]; 2269[label="vwx71 <= vwx74",fontsize=16,color="magenta"];2269 -> 2438[label="",style="dashed", color="magenta", weight=3]; 2269 -> 2439[label="",style="dashed", color="magenta", weight=3]; 2270[label="vwx70",fontsize=16,color="green",shape="box"];2271[label="vwx73",fontsize=16,color="green",shape="box"];2272[label="vwx70",fontsize=16,color="green",shape="box"];2273[label="vwx73",fontsize=16,color="green",shape="box"];2274[label="vwx70",fontsize=16,color="green",shape="box"];2275[label="vwx73",fontsize=16,color="green",shape="box"];2276[label="vwx70",fontsize=16,color="green",shape="box"];2277[label="vwx73",fontsize=16,color="green",shape="box"];2278[label="vwx70",fontsize=16,color="green",shape="box"];2279[label="vwx73",fontsize=16,color="green",shape="box"];2280[label="vwx70",fontsize=16,color="green",shape="box"];2281[label="vwx73",fontsize=16,color="green",shape="box"];2282[label="vwx70",fontsize=16,color="green",shape="box"];2283[label="vwx73",fontsize=16,color="green",shape="box"];2284[label="vwx70",fontsize=16,color="green",shape="box"];2285[label="vwx73",fontsize=16,color="green",shape="box"];2286[label="vwx70",fontsize=16,color="green",shape="box"];2287[label="vwx73",fontsize=16,color="green",shape="box"];2288[label="vwx70",fontsize=16,color="green",shape="box"];2289[label="vwx73",fontsize=16,color="green",shape="box"];2290[label="vwx70",fontsize=16,color="green",shape="box"];2291[label="vwx73",fontsize=16,color="green",shape="box"];2292[label="vwx70",fontsize=16,color="green",shape="box"];2293[label="vwx73",fontsize=16,color="green",shape="box"];2294[label="vwx70",fontsize=16,color="green",shape="box"];2295[label="vwx73",fontsize=16,color="green",shape="box"];2296[label="vwx70",fontsize=16,color="green",shape="box"];2297[label="vwx73",fontsize=16,color="green",shape="box"];2298[label="vwx161",fontsize=16,color="green",shape="box"];2299[label="True",fontsize=16,color="green",shape="box"];2300[label="vwx72",fontsize=16,color="green",shape="box"];2301[label="vwx69",fontsize=16,color="green",shape="box"];2302[label="vwx72",fontsize=16,color="green",shape="box"];2303[label="vwx69",fontsize=16,color="green",shape="box"];2304[label="vwx72",fontsize=16,color="green",shape="box"];2305[label="vwx69",fontsize=16,color="green",shape="box"];2306[label="vwx72",fontsize=16,color="green",shape="box"];2307[label="vwx69",fontsize=16,color="green",shape="box"];2308[label="vwx72",fontsize=16,color="green",shape="box"];2309[label="vwx69",fontsize=16,color="green",shape="box"];2310[label="vwx72",fontsize=16,color="green",shape="box"];2311[label="vwx69",fontsize=16,color="green",shape="box"];2312[label="vwx72",fontsize=16,color="green",shape="box"];2313[label="vwx69",fontsize=16,color="green",shape="box"];2314[label="vwx72",fontsize=16,color="green",shape="box"];2315[label="vwx69",fontsize=16,color="green",shape="box"];2316[label="vwx72",fontsize=16,color="green",shape="box"];2317[label="vwx69",fontsize=16,color="green",shape="box"];2318[label="vwx72",fontsize=16,color="green",shape="box"];2319[label="vwx69",fontsize=16,color="green",shape="box"];2320[label="vwx72",fontsize=16,color="green",shape="box"];2321[label="vwx69",fontsize=16,color="green",shape="box"];2322[label="vwx72",fontsize=16,color="green",shape="box"];2323[label="vwx69",fontsize=16,color="green",shape="box"];2324[label="vwx72",fontsize=16,color="green",shape="box"];2325[label="vwx69",fontsize=16,color="green",shape="box"];2326[label="vwx72",fontsize=16,color="green",shape="box"];2327[label="vwx69",fontsize=16,color="green",shape="box"];2328[label="compare0 (vwx134,vwx135,vwx136) (vwx137,vwx138,vwx139) otherwise",fontsize=16,color="black",shape="box"];2328 -> 2440[label="",style="solid", color="black", weight=3]; 2329[label="LT",fontsize=16,color="green",shape="box"];2331 -> 1070[label="",style="dashed", color="red", weight=0]; 2331[label="primMulNat vwx4000 (Succ vwx3100)",fontsize=16,color="magenta"];2331 -> 2441[label="",style="dashed", color="magenta", weight=3]; 2331 -> 2442[label="",style="dashed", color="magenta", weight=3]; 2330[label="primPlusNat vwx162 (Succ vwx3100)",fontsize=16,color="burlywood",shape="triangle"];3626[label="vwx162/Succ vwx1620",fontsize=10,color="white",style="solid",shape="box"];2330 -> 3626[label="",style="solid", color="burlywood", weight=9]; 3626 -> 2443[label="",style="solid", color="burlywood", weight=3]; 3627[label="vwx162/Zero",fontsize=10,color="white",style="solid",shape="box"];2330 -> 3627[label="",style="solid", color="burlywood", weight=9]; 3627 -> 2444[label="",style="solid", color="burlywood", weight=3]; 2332[label="compare0 (vwx149,vwx150) (vwx151,vwx152) otherwise",fontsize=16,color="black",shape="box"];2332 -> 2445[label="",style="solid", color="black", weight=3]; 2333[label="LT",fontsize=16,color="green",shape="box"];2334[label="vwx3000",fontsize=16,color="green",shape="box"];2335[label="vwx4000",fontsize=16,color="green",shape="box"];2337 -> 389[label="",style="dashed", color="red", weight=0]; 2337[label="vwx156 == GT",fontsize=16,color="magenta"];2337 -> 2446[label="",style="dashed", color="magenta", weight=3]; 2337 -> 2447[label="",style="dashed", color="magenta", weight=3]; 2336[label="not vwx163",fontsize=16,color="burlywood",shape="triangle"];3628[label="vwx163/False",fontsize=10,color="white",style="solid",shape="box"];2336 -> 3628[label="",style="solid", color="burlywood", weight=9]; 3628 -> 2448[label="",style="solid", color="burlywood", weight=3]; 3629[label="vwx163/True",fontsize=10,color="white",style="solid",shape="box"];2336 -> 3629[label="",style="solid", color="burlywood", weight=9]; 3629 -> 2449[label="",style="solid", color="burlywood", weight=3]; 2338 -> 1320[label="",style="dashed", color="red", weight=0]; 2338[label="vwx130 <= vwx140",fontsize=16,color="magenta"];2338 -> 2450[label="",style="dashed", color="magenta", weight=3]; 2338 -> 2451[label="",style="dashed", color="magenta", weight=3]; 2339 -> 1321[label="",style="dashed", color="red", weight=0]; 2339[label="vwx130 <= vwx140",fontsize=16,color="magenta"];2339 -> 2452[label="",style="dashed", color="magenta", weight=3]; 2339 -> 2453[label="",style="dashed", color="magenta", weight=3]; 2340 -> 1322[label="",style="dashed", color="red", weight=0]; 2340[label="vwx130 <= vwx140",fontsize=16,color="magenta"];2340 -> 2454[label="",style="dashed", color="magenta", weight=3]; 2340 -> 2455[label="",style="dashed", color="magenta", weight=3]; 2341 -> 1323[label="",style="dashed", color="red", weight=0]; 2341[label="vwx130 <= vwx140",fontsize=16,color="magenta"];2341 -> 2456[label="",style="dashed", color="magenta", weight=3]; 2341 -> 2457[label="",style="dashed", color="magenta", weight=3]; 2342 -> 1324[label="",style="dashed", color="red", weight=0]; 2342[label="vwx130 <= vwx140",fontsize=16,color="magenta"];2342 -> 2458[label="",style="dashed", color="magenta", weight=3]; 2342 -> 2459[label="",style="dashed", color="magenta", weight=3]; 2343 -> 1325[label="",style="dashed", color="red", weight=0]; 2343[label="vwx130 <= vwx140",fontsize=16,color="magenta"];2343 -> 2460[label="",style="dashed", color="magenta", weight=3]; 2343 -> 2461[label="",style="dashed", color="magenta", weight=3]; 2344 -> 1326[label="",style="dashed", color="red", weight=0]; 2344[label="vwx130 <= vwx140",fontsize=16,color="magenta"];2344 -> 2462[label="",style="dashed", color="magenta", weight=3]; 2344 -> 2463[label="",style="dashed", color="magenta", weight=3]; 2345 -> 1327[label="",style="dashed", color="red", weight=0]; 2345[label="vwx130 <= vwx140",fontsize=16,color="magenta"];2345 -> 2464[label="",style="dashed", color="magenta", weight=3]; 2345 -> 2465[label="",style="dashed", color="magenta", weight=3]; 2346 -> 1328[label="",style="dashed", color="red", weight=0]; 2346[label="vwx130 <= vwx140",fontsize=16,color="magenta"];2346 -> 2466[label="",style="dashed", color="magenta", weight=3]; 2346 -> 2467[label="",style="dashed", color="magenta", weight=3]; 2347 -> 1329[label="",style="dashed", color="red", weight=0]; 2347[label="vwx130 <= vwx140",fontsize=16,color="magenta"];2347 -> 2468[label="",style="dashed", color="magenta", weight=3]; 2347 -> 2469[label="",style="dashed", color="magenta", weight=3]; 2348 -> 1330[label="",style="dashed", color="red", weight=0]; 2348[label="vwx130 <= vwx140",fontsize=16,color="magenta"];2348 -> 2470[label="",style="dashed", color="magenta", weight=3]; 2348 -> 2471[label="",style="dashed", color="magenta", weight=3]; 2349 -> 1331[label="",style="dashed", color="red", weight=0]; 2349[label="vwx130 <= vwx140",fontsize=16,color="magenta"];2349 -> 2472[label="",style="dashed", color="magenta", weight=3]; 2349 -> 2473[label="",style="dashed", color="magenta", weight=3]; 2350 -> 1332[label="",style="dashed", color="red", weight=0]; 2350[label="vwx130 <= vwx140",fontsize=16,color="magenta"];2350 -> 2474[label="",style="dashed", color="magenta", weight=3]; 2350 -> 2475[label="",style="dashed", color="magenta", weight=3]; 2351 -> 1333[label="",style="dashed", color="red", weight=0]; 2351[label="vwx130 <= vwx140",fontsize=16,color="magenta"];2351 -> 2476[label="",style="dashed", color="magenta", weight=3]; 2351 -> 2477[label="",style="dashed", color="magenta", weight=3]; 2352 -> 1320[label="",style="dashed", color="red", weight=0]; 2352[label="vwx130 <= vwx140",fontsize=16,color="magenta"];2352 -> 2478[label="",style="dashed", color="magenta", weight=3]; 2352 -> 2479[label="",style="dashed", color="magenta", weight=3]; 2353 -> 1321[label="",style="dashed", color="red", weight=0]; 2353[label="vwx130 <= vwx140",fontsize=16,color="magenta"];2353 -> 2480[label="",style="dashed", color="magenta", weight=3]; 2353 -> 2481[label="",style="dashed", color="magenta", weight=3]; 2354 -> 1322[label="",style="dashed", color="red", weight=0]; 2354[label="vwx130 <= vwx140",fontsize=16,color="magenta"];2354 -> 2482[label="",style="dashed", color="magenta", weight=3]; 2354 -> 2483[label="",style="dashed", color="magenta", weight=3]; 2355 -> 1323[label="",style="dashed", color="red", weight=0]; 2355[label="vwx130 <= vwx140",fontsize=16,color="magenta"];2355 -> 2484[label="",style="dashed", color="magenta", weight=3]; 2355 -> 2485[label="",style="dashed", color="magenta", weight=3]; 2356 -> 1324[label="",style="dashed", color="red", weight=0]; 2356[label="vwx130 <= vwx140",fontsize=16,color="magenta"];2356 -> 2486[label="",style="dashed", color="magenta", weight=3]; 2356 -> 2487[label="",style="dashed", color="magenta", weight=3]; 2357 -> 1325[label="",style="dashed", color="red", weight=0]; 2357[label="vwx130 <= vwx140",fontsize=16,color="magenta"];2357 -> 2488[label="",style="dashed", color="magenta", weight=3]; 2357 -> 2489[label="",style="dashed", color="magenta", weight=3]; 2358 -> 1326[label="",style="dashed", color="red", weight=0]; 2358[label="vwx130 <= vwx140",fontsize=16,color="magenta"];2358 -> 2490[label="",style="dashed", color="magenta", weight=3]; 2358 -> 2491[label="",style="dashed", color="magenta", weight=3]; 2359 -> 1327[label="",style="dashed", color="red", weight=0]; 2359[label="vwx130 <= vwx140",fontsize=16,color="magenta"];2359 -> 2492[label="",style="dashed", color="magenta", weight=3]; 2359 -> 2493[label="",style="dashed", color="magenta", weight=3]; 2360 -> 1328[label="",style="dashed", color="red", weight=0]; 2360[label="vwx130 <= vwx140",fontsize=16,color="magenta"];2360 -> 2494[label="",style="dashed", color="magenta", weight=3]; 2360 -> 2495[label="",style="dashed", color="magenta", weight=3]; 2361 -> 1329[label="",style="dashed", color="red", weight=0]; 2361[label="vwx130 <= vwx140",fontsize=16,color="magenta"];2361 -> 2496[label="",style="dashed", color="magenta", weight=3]; 2361 -> 2497[label="",style="dashed", color="magenta", weight=3]; 2362 -> 1330[label="",style="dashed", color="red", weight=0]; 2362[label="vwx130 <= vwx140",fontsize=16,color="magenta"];2362 -> 2498[label="",style="dashed", color="magenta", weight=3]; 2362 -> 2499[label="",style="dashed", color="magenta", weight=3]; 2363 -> 1331[label="",style="dashed", color="red", weight=0]; 2363[label="vwx130 <= vwx140",fontsize=16,color="magenta"];2363 -> 2500[label="",style="dashed", color="magenta", weight=3]; 2363 -> 2501[label="",style="dashed", color="magenta", weight=3]; 2364 -> 1332[label="",style="dashed", color="red", weight=0]; 2364[label="vwx130 <= vwx140",fontsize=16,color="magenta"];2364 -> 2502[label="",style="dashed", color="magenta", weight=3]; 2364 -> 2503[label="",style="dashed", color="magenta", weight=3]; 2365 -> 1333[label="",style="dashed", color="red", weight=0]; 2365[label="vwx130 <= vwx140",fontsize=16,color="magenta"];2365 -> 2504[label="",style="dashed", color="magenta", weight=3]; 2365 -> 2505[label="",style="dashed", color="magenta", weight=3]; 2366 -> 1003[label="",style="dashed", color="red", weight=0]; 2366[label="vwx130 == vwx140 && (vwx131 < vwx141 || vwx131 == vwx141 && vwx132 <= vwx142)",fontsize=16,color="magenta"];2366 -> 2506[label="",style="dashed", color="magenta", weight=3]; 2366 -> 2507[label="",style="dashed", color="magenta", weight=3]; 2367[label="vwx130 < vwx140",fontsize=16,color="blue",shape="box"];3630[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2367 -> 3630[label="",style="solid", color="blue", weight=9]; 3630 -> 2508[label="",style="solid", color="blue", weight=3]; 3631[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2367 -> 3631[label="",style="solid", color="blue", weight=9]; 3631 -> 2509[label="",style="solid", color="blue", weight=3]; 3632[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2367 -> 3632[label="",style="solid", color="blue", weight=9]; 3632 -> 2510[label="",style="solid", color="blue", weight=3]; 3633[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2367 -> 3633[label="",style="solid", color="blue", weight=9]; 3633 -> 2511[label="",style="solid", color="blue", weight=3]; 3634[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2367 -> 3634[label="",style="solid", color="blue", weight=9]; 3634 -> 2512[label="",style="solid", color="blue", weight=3]; 3635[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2367 -> 3635[label="",style="solid", color="blue", weight=9]; 3635 -> 2513[label="",style="solid", color="blue", weight=3]; 3636[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2367 -> 3636[label="",style="solid", color="blue", weight=9]; 3636 -> 2514[label="",style="solid", color="blue", weight=3]; 3637[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2367 -> 3637[label="",style="solid", color="blue", weight=9]; 3637 -> 2515[label="",style="solid", color="blue", weight=3]; 3638[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2367 -> 3638[label="",style="solid", color="blue", weight=9]; 3638 -> 2516[label="",style="solid", color="blue", weight=3]; 3639[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2367 -> 3639[label="",style="solid", color="blue", weight=9]; 3639 -> 2517[label="",style="solid", color="blue", weight=3]; 3640[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2367 -> 3640[label="",style="solid", color="blue", weight=9]; 3640 -> 2518[label="",style="solid", color="blue", weight=3]; 3641[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2367 -> 3641[label="",style="solid", color="blue", weight=9]; 3641 -> 2519[label="",style="solid", color="blue", weight=3]; 3642[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2367 -> 3642[label="",style="solid", color="blue", weight=9]; 3642 -> 2520[label="",style="solid", color="blue", weight=3]; 3643[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2367 -> 3643[label="",style="solid", color="blue", weight=9]; 3643 -> 2521[label="",style="solid", color="blue", weight=3]; 2368 -> 1003[label="",style="dashed", color="red", weight=0]; 2368[label="vwx130 == vwx140 && vwx131 <= vwx141",fontsize=16,color="magenta"];2368 -> 2522[label="",style="dashed", color="magenta", weight=3]; 2368 -> 2523[label="",style="dashed", color="magenta", weight=3]; 2369[label="vwx130 < vwx140",fontsize=16,color="blue",shape="box"];3644[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2369 -> 3644[label="",style="solid", color="blue", weight=9]; 3644 -> 2524[label="",style="solid", color="blue", weight=3]; 3645[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2369 -> 3645[label="",style="solid", color="blue", weight=9]; 3645 -> 2525[label="",style="solid", color="blue", weight=3]; 3646[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2369 -> 3646[label="",style="solid", color="blue", weight=9]; 3646 -> 2526[label="",style="solid", color="blue", weight=3]; 3647[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2369 -> 3647[label="",style="solid", color="blue", weight=9]; 3647 -> 2527[label="",style="solid", color="blue", weight=3]; 3648[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2369 -> 3648[label="",style="solid", color="blue", weight=9]; 3648 -> 2528[label="",style="solid", color="blue", weight=3]; 3649[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2369 -> 3649[label="",style="solid", color="blue", weight=9]; 3649 -> 2529[label="",style="solid", color="blue", weight=3]; 3650[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2369 -> 3650[label="",style="solid", color="blue", weight=9]; 3650 -> 2530[label="",style="solid", color="blue", weight=3]; 3651[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2369 -> 3651[label="",style="solid", color="blue", weight=9]; 3651 -> 2531[label="",style="solid", color="blue", weight=3]; 3652[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2369 -> 3652[label="",style="solid", color="blue", weight=9]; 3652 -> 2532[label="",style="solid", color="blue", weight=3]; 3653[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2369 -> 3653[label="",style="solid", color="blue", weight=9]; 3653 -> 2533[label="",style="solid", color="blue", weight=3]; 3654[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2369 -> 3654[label="",style="solid", color="blue", weight=9]; 3654 -> 2534[label="",style="solid", color="blue", weight=3]; 3655[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2369 -> 3655[label="",style="solid", color="blue", weight=9]; 3655 -> 2535[label="",style="solid", color="blue", weight=3]; 3656[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2369 -> 3656[label="",style="solid", color="blue", weight=9]; 3656 -> 2536[label="",style="solid", color="blue", weight=3]; 3657[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2369 -> 3657[label="",style="solid", color="blue", weight=9]; 3657 -> 2537[label="",style="solid", color="blue", weight=3]; 2370 -> 1320[label="",style="dashed", color="red", weight=0]; 2370[label="vwx130 <= vwx140",fontsize=16,color="magenta"];2370 -> 2538[label="",style="dashed", color="magenta", weight=3]; 2370 -> 2539[label="",style="dashed", color="magenta", weight=3]; 2371 -> 1321[label="",style="dashed", color="red", weight=0]; 2371[label="vwx130 <= vwx140",fontsize=16,color="magenta"];2371 -> 2540[label="",style="dashed", color="magenta", weight=3]; 2371 -> 2541[label="",style="dashed", color="magenta", weight=3]; 2372 -> 1322[label="",style="dashed", color="red", weight=0]; 2372[label="vwx130 <= vwx140",fontsize=16,color="magenta"];2372 -> 2542[label="",style="dashed", color="magenta", weight=3]; 2372 -> 2543[label="",style="dashed", color="magenta", weight=3]; 2373 -> 1323[label="",style="dashed", color="red", weight=0]; 2373[label="vwx130 <= vwx140",fontsize=16,color="magenta"];2373 -> 2544[label="",style="dashed", color="magenta", weight=3]; 2373 -> 2545[label="",style="dashed", color="magenta", weight=3]; 2374 -> 1324[label="",style="dashed", color="red", weight=0]; 2374[label="vwx130 <= vwx140",fontsize=16,color="magenta"];2374 -> 2546[label="",style="dashed", color="magenta", weight=3]; 2374 -> 2547[label="",style="dashed", color="magenta", weight=3]; 2375 -> 1325[label="",style="dashed", color="red", weight=0]; 2375[label="vwx130 <= vwx140",fontsize=16,color="magenta"];2375 -> 2548[label="",style="dashed", color="magenta", weight=3]; 2375 -> 2549[label="",style="dashed", color="magenta", weight=3]; 2376 -> 1326[label="",style="dashed", color="red", weight=0]; 2376[label="vwx130 <= vwx140",fontsize=16,color="magenta"];2376 -> 2550[label="",style="dashed", color="magenta", weight=3]; 2376 -> 2551[label="",style="dashed", color="magenta", weight=3]; 2377 -> 1327[label="",style="dashed", color="red", weight=0]; 2377[label="vwx130 <= vwx140",fontsize=16,color="magenta"];2377 -> 2552[label="",style="dashed", color="magenta", weight=3]; 2377 -> 2553[label="",style="dashed", color="magenta", weight=3]; 2378 -> 1328[label="",style="dashed", color="red", weight=0]; 2378[label="vwx130 <= vwx140",fontsize=16,color="magenta"];2378 -> 2554[label="",style="dashed", color="magenta", weight=3]; 2378 -> 2555[label="",style="dashed", color="magenta", weight=3]; 2379 -> 1329[label="",style="dashed", color="red", weight=0]; 2379[label="vwx130 <= vwx140",fontsize=16,color="magenta"];2379 -> 2556[label="",style="dashed", color="magenta", weight=3]; 2379 -> 2557[label="",style="dashed", color="magenta", weight=3]; 2380 -> 1330[label="",style="dashed", color="red", weight=0]; 2380[label="vwx130 <= vwx140",fontsize=16,color="magenta"];2380 -> 2558[label="",style="dashed", color="magenta", weight=3]; 2380 -> 2559[label="",style="dashed", color="magenta", weight=3]; 2381 -> 1331[label="",style="dashed", color="red", weight=0]; 2381[label="vwx130 <= vwx140",fontsize=16,color="magenta"];2381 -> 2560[label="",style="dashed", color="magenta", weight=3]; 2381 -> 2561[label="",style="dashed", color="magenta", weight=3]; 2382 -> 1332[label="",style="dashed", color="red", weight=0]; 2382[label="vwx130 <= vwx140",fontsize=16,color="magenta"];2382 -> 2562[label="",style="dashed", color="magenta", weight=3]; 2382 -> 2563[label="",style="dashed", color="magenta", weight=3]; 2383 -> 1333[label="",style="dashed", color="red", weight=0]; 2383[label="vwx130 <= vwx140",fontsize=16,color="magenta"];2383 -> 2564[label="",style="dashed", color="magenta", weight=3]; 2383 -> 2565[label="",style="dashed", color="magenta", weight=3]; 2384[label="vwx73",fontsize=16,color="green",shape="box"];2385[label="vwx70",fontsize=16,color="green",shape="box"];2386[label="vwx73",fontsize=16,color="green",shape="box"];2387[label="vwx70",fontsize=16,color="green",shape="box"];2388[label="vwx73",fontsize=16,color="green",shape="box"];2389[label="vwx70",fontsize=16,color="green",shape="box"];2390[label="vwx73",fontsize=16,color="green",shape="box"];2391[label="vwx70",fontsize=16,color="green",shape="box"];2392[label="vwx73",fontsize=16,color="green",shape="box"];2393[label="vwx70",fontsize=16,color="green",shape="box"];2394[label="vwx73",fontsize=16,color="green",shape="box"];2395[label="vwx70",fontsize=16,color="green",shape="box"];2396[label="vwx73",fontsize=16,color="green",shape="box"];2397[label="vwx70",fontsize=16,color="green",shape="box"];2398[label="vwx73",fontsize=16,color="green",shape="box"];2399[label="vwx70",fontsize=16,color="green",shape="box"];2400[label="vwx73",fontsize=16,color="green",shape="box"];2401[label="vwx70",fontsize=16,color="green",shape="box"];2402[label="vwx73",fontsize=16,color="green",shape="box"];2403[label="vwx70",fontsize=16,color="green",shape="box"];2404[label="vwx73",fontsize=16,color="green",shape="box"];2405[label="vwx70",fontsize=16,color="green",shape="box"];2406[label="vwx73",fontsize=16,color="green",shape="box"];2407[label="vwx70",fontsize=16,color="green",shape="box"];2408[label="vwx73",fontsize=16,color="green",shape="box"];2409[label="vwx70",fontsize=16,color="green",shape="box"];2410[label="vwx73",fontsize=16,color="green",shape="box"];2411[label="vwx70",fontsize=16,color="green",shape="box"];2412[label="vwx71",fontsize=16,color="green",shape="box"];2413[label="vwx74",fontsize=16,color="green",shape="box"];2414[label="vwx71",fontsize=16,color="green",shape="box"];2415[label="vwx74",fontsize=16,color="green",shape="box"];2416[label="vwx71",fontsize=16,color="green",shape="box"];2417[label="vwx74",fontsize=16,color="green",shape="box"];2418[label="vwx71",fontsize=16,color="green",shape="box"];2419[label="vwx74",fontsize=16,color="green",shape="box"];2420[label="vwx71",fontsize=16,color="green",shape="box"];2421[label="vwx74",fontsize=16,color="green",shape="box"];2422[label="vwx71",fontsize=16,color="green",shape="box"];2423[label="vwx74",fontsize=16,color="green",shape="box"];2424[label="vwx71",fontsize=16,color="green",shape="box"];2425[label="vwx74",fontsize=16,color="green",shape="box"];2426[label="vwx71",fontsize=16,color="green",shape="box"];2427[label="vwx74",fontsize=16,color="green",shape="box"];2428[label="vwx71",fontsize=16,color="green",shape="box"];2429[label="vwx74",fontsize=16,color="green",shape="box"];2430[label="vwx71",fontsize=16,color="green",shape="box"];2431[label="vwx74",fontsize=16,color="green",shape="box"];2432[label="vwx71",fontsize=16,color="green",shape="box"];2433[label="vwx74",fontsize=16,color="green",shape="box"];2434[label="vwx71",fontsize=16,color="green",shape="box"];2435[label="vwx74",fontsize=16,color="green",shape="box"];2436[label="vwx71",fontsize=16,color="green",shape="box"];2437[label="vwx74",fontsize=16,color="green",shape="box"];2438[label="vwx71",fontsize=16,color="green",shape="box"];2439[label="vwx74",fontsize=16,color="green",shape="box"];2440[label="compare0 (vwx134,vwx135,vwx136) (vwx137,vwx138,vwx139) True",fontsize=16,color="black",shape="box"];2440 -> 2566[label="",style="solid", color="black", weight=3]; 2441[label="vwx4000",fontsize=16,color="green",shape="box"];2442[label="Succ vwx3100",fontsize=16,color="green",shape="box"];2443[label="primPlusNat (Succ vwx1620) (Succ vwx3100)",fontsize=16,color="black",shape="box"];2443 -> 2567[label="",style="solid", color="black", weight=3]; 2444[label="primPlusNat Zero (Succ vwx3100)",fontsize=16,color="black",shape="box"];2444 -> 2568[label="",style="solid", color="black", weight=3]; 2445[label="compare0 (vwx149,vwx150) (vwx151,vwx152) True",fontsize=16,color="black",shape="box"];2445 -> 2569[label="",style="solid", color="black", weight=3]; 2446[label="GT",fontsize=16,color="green",shape="box"];2447[label="vwx156",fontsize=16,color="green",shape="box"];2448[label="not False",fontsize=16,color="black",shape="box"];2448 -> 2570[label="",style="solid", color="black", weight=3]; 2449[label="not True",fontsize=16,color="black",shape="box"];2449 -> 2571[label="",style="solid", color="black", weight=3]; 2450[label="vwx130",fontsize=16,color="green",shape="box"];2451[label="vwx140",fontsize=16,color="green",shape="box"];2452[label="vwx130",fontsize=16,color="green",shape="box"];2453[label="vwx140",fontsize=16,color="green",shape="box"];2454[label="vwx130",fontsize=16,color="green",shape="box"];2455[label="vwx140",fontsize=16,color="green",shape="box"];2456[label="vwx130",fontsize=16,color="green",shape="box"];2457[label="vwx140",fontsize=16,color="green",shape="box"];2458[label="vwx130",fontsize=16,color="green",shape="box"];2459[label="vwx140",fontsize=16,color="green",shape="box"];2460[label="vwx130",fontsize=16,color="green",shape="box"];2461[label="vwx140",fontsize=16,color="green",shape="box"];2462[label="vwx130",fontsize=16,color="green",shape="box"];2463[label="vwx140",fontsize=16,color="green",shape="box"];2464[label="vwx130",fontsize=16,color="green",shape="box"];2465[label="vwx140",fontsize=16,color="green",shape="box"];2466[label="vwx130",fontsize=16,color="green",shape="box"];2467[label="vwx140",fontsize=16,color="green",shape="box"];2468[label="vwx130",fontsize=16,color="green",shape="box"];2469[label="vwx140",fontsize=16,color="green",shape="box"];2470[label="vwx130",fontsize=16,color="green",shape="box"];2471[label="vwx140",fontsize=16,color="green",shape="box"];2472[label="vwx130",fontsize=16,color="green",shape="box"];2473[label="vwx140",fontsize=16,color="green",shape="box"];2474[label="vwx130",fontsize=16,color="green",shape="box"];2475[label="vwx140",fontsize=16,color="green",shape="box"];2476[label="vwx130",fontsize=16,color="green",shape="box"];2477[label="vwx140",fontsize=16,color="green",shape="box"];2478[label="vwx130",fontsize=16,color="green",shape="box"];2479[label="vwx140",fontsize=16,color="green",shape="box"];2480[label="vwx130",fontsize=16,color="green",shape="box"];2481[label="vwx140",fontsize=16,color="green",shape="box"];2482[label="vwx130",fontsize=16,color="green",shape="box"];2483[label="vwx140",fontsize=16,color="green",shape="box"];2484[label="vwx130",fontsize=16,color="green",shape="box"];2485[label="vwx140",fontsize=16,color="green",shape="box"];2486[label="vwx130",fontsize=16,color="green",shape="box"];2487[label="vwx140",fontsize=16,color="green",shape="box"];2488[label="vwx130",fontsize=16,color="green",shape="box"];2489[label="vwx140",fontsize=16,color="green",shape="box"];2490[label="vwx130",fontsize=16,color="green",shape="box"];2491[label="vwx140",fontsize=16,color="green",shape="box"];2492[label="vwx130",fontsize=16,color="green",shape="box"];2493[label="vwx140",fontsize=16,color="green",shape="box"];2494[label="vwx130",fontsize=16,color="green",shape="box"];2495[label="vwx140",fontsize=16,color="green",shape="box"];2496[label="vwx130",fontsize=16,color="green",shape="box"];2497[label="vwx140",fontsize=16,color="green",shape="box"];2498[label="vwx130",fontsize=16,color="green",shape="box"];2499[label="vwx140",fontsize=16,color="green",shape="box"];2500[label="vwx130",fontsize=16,color="green",shape="box"];2501[label="vwx140",fontsize=16,color="green",shape="box"];2502[label="vwx130",fontsize=16,color="green",shape="box"];2503[label="vwx140",fontsize=16,color="green",shape="box"];2504[label="vwx130",fontsize=16,color="green",shape="box"];2505[label="vwx140",fontsize=16,color="green",shape="box"];2506[label="vwx130 == vwx140",fontsize=16,color="blue",shape="box"];3658[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2506 -> 3658[label="",style="solid", color="blue", weight=9]; 3658 -> 2572[label="",style="solid", color="blue", weight=3]; 3659[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2506 -> 3659[label="",style="solid", color="blue", weight=9]; 3659 -> 2573[label="",style="solid", color="blue", weight=3]; 3660[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2506 -> 3660[label="",style="solid", color="blue", weight=9]; 3660 -> 2574[label="",style="solid", color="blue", weight=3]; 3661[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2506 -> 3661[label="",style="solid", color="blue", weight=9]; 3661 -> 2575[label="",style="solid", color="blue", weight=3]; 3662[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2506 -> 3662[label="",style="solid", color="blue", weight=9]; 3662 -> 2576[label="",style="solid", color="blue", weight=3]; 3663[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2506 -> 3663[label="",style="solid", color="blue", weight=9]; 3663 -> 2577[label="",style="solid", color="blue", weight=3]; 3664[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2506 -> 3664[label="",style="solid", color="blue", weight=9]; 3664 -> 2578[label="",style="solid", color="blue", weight=3]; 3665[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2506 -> 3665[label="",style="solid", color="blue", weight=9]; 3665 -> 2579[label="",style="solid", color="blue", weight=3]; 3666[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2506 -> 3666[label="",style="solid", color="blue", weight=9]; 3666 -> 2580[label="",style="solid", color="blue", weight=3]; 3667[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2506 -> 3667[label="",style="solid", color="blue", weight=9]; 3667 -> 2581[label="",style="solid", color="blue", weight=3]; 3668[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2506 -> 3668[label="",style="solid", color="blue", weight=9]; 3668 -> 2582[label="",style="solid", color="blue", weight=3]; 3669[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2506 -> 3669[label="",style="solid", color="blue", weight=9]; 3669 -> 2583[label="",style="solid", color="blue", weight=3]; 3670[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2506 -> 3670[label="",style="solid", color="blue", weight=9]; 3670 -> 2584[label="",style="solid", color="blue", weight=3]; 3671[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2506 -> 3671[label="",style="solid", color="blue", weight=9]; 3671 -> 2585[label="",style="solid", color="blue", weight=3]; 2507 -> 2020[label="",style="dashed", color="red", weight=0]; 2507[label="vwx131 < vwx141 || vwx131 == vwx141 && vwx132 <= vwx142",fontsize=16,color="magenta"];2507 -> 2586[label="",style="dashed", color="magenta", weight=3]; 2507 -> 2587[label="",style="dashed", color="magenta", weight=3]; 2508 -> 1373[label="",style="dashed", color="red", weight=0]; 2508[label="vwx130 < vwx140",fontsize=16,color="magenta"];2508 -> 2588[label="",style="dashed", color="magenta", weight=3]; 2508 -> 2589[label="",style="dashed", color="magenta", weight=3]; 2509 -> 1374[label="",style="dashed", color="red", weight=0]; 2509[label="vwx130 < vwx140",fontsize=16,color="magenta"];2509 -> 2590[label="",style="dashed", color="magenta", weight=3]; 2509 -> 2591[label="",style="dashed", color="magenta", weight=3]; 2510 -> 1375[label="",style="dashed", color="red", weight=0]; 2510[label="vwx130 < vwx140",fontsize=16,color="magenta"];2510 -> 2592[label="",style="dashed", color="magenta", weight=3]; 2510 -> 2593[label="",style="dashed", color="magenta", weight=3]; 2511 -> 1376[label="",style="dashed", color="red", weight=0]; 2511[label="vwx130 < vwx140",fontsize=16,color="magenta"];2511 -> 2594[label="",style="dashed", color="magenta", weight=3]; 2511 -> 2595[label="",style="dashed", color="magenta", weight=3]; 2512 -> 1377[label="",style="dashed", color="red", weight=0]; 2512[label="vwx130 < vwx140",fontsize=16,color="magenta"];2512 -> 2596[label="",style="dashed", color="magenta", weight=3]; 2512 -> 2597[label="",style="dashed", color="magenta", weight=3]; 2513 -> 1378[label="",style="dashed", color="red", weight=0]; 2513[label="vwx130 < vwx140",fontsize=16,color="magenta"];2513 -> 2598[label="",style="dashed", color="magenta", weight=3]; 2513 -> 2599[label="",style="dashed", color="magenta", weight=3]; 2514 -> 1379[label="",style="dashed", color="red", weight=0]; 2514[label="vwx130 < vwx140",fontsize=16,color="magenta"];2514 -> 2600[label="",style="dashed", color="magenta", weight=3]; 2514 -> 2601[label="",style="dashed", color="magenta", weight=3]; 2515 -> 1380[label="",style="dashed", color="red", weight=0]; 2515[label="vwx130 < vwx140",fontsize=16,color="magenta"];2515 -> 2602[label="",style="dashed", color="magenta", weight=3]; 2515 -> 2603[label="",style="dashed", color="magenta", weight=3]; 2516 -> 1381[label="",style="dashed", color="red", weight=0]; 2516[label="vwx130 < vwx140",fontsize=16,color="magenta"];2516 -> 2604[label="",style="dashed", color="magenta", weight=3]; 2516 -> 2605[label="",style="dashed", color="magenta", weight=3]; 2517 -> 1382[label="",style="dashed", color="red", weight=0]; 2517[label="vwx130 < vwx140",fontsize=16,color="magenta"];2517 -> 2606[label="",style="dashed", color="magenta", weight=3]; 2517 -> 2607[label="",style="dashed", color="magenta", weight=3]; 2518 -> 1383[label="",style="dashed", color="red", weight=0]; 2518[label="vwx130 < vwx140",fontsize=16,color="magenta"];2518 -> 2608[label="",style="dashed", color="magenta", weight=3]; 2518 -> 2609[label="",style="dashed", color="magenta", weight=3]; 2519 -> 1384[label="",style="dashed", color="red", weight=0]; 2519[label="vwx130 < vwx140",fontsize=16,color="magenta"];2519 -> 2610[label="",style="dashed", color="magenta", weight=3]; 2519 -> 2611[label="",style="dashed", color="magenta", weight=3]; 2520 -> 1385[label="",style="dashed", color="red", weight=0]; 2520[label="vwx130 < vwx140",fontsize=16,color="magenta"];2520 -> 2612[label="",style="dashed", color="magenta", weight=3]; 2520 -> 2613[label="",style="dashed", color="magenta", weight=3]; 2521 -> 1386[label="",style="dashed", color="red", weight=0]; 2521[label="vwx130 < vwx140",fontsize=16,color="magenta"];2521 -> 2614[label="",style="dashed", color="magenta", weight=3]; 2521 -> 2615[label="",style="dashed", color="magenta", weight=3]; 2522[label="vwx130 == vwx140",fontsize=16,color="blue",shape="box"];3672[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3672[label="",style="solid", color="blue", weight=9]; 3672 -> 2616[label="",style="solid", color="blue", weight=3]; 3673[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3673[label="",style="solid", color="blue", weight=9]; 3673 -> 2617[label="",style="solid", color="blue", weight=3]; 3674[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3674[label="",style="solid", color="blue", weight=9]; 3674 -> 2618[label="",style="solid", color="blue", weight=3]; 3675[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3675[label="",style="solid", color="blue", weight=9]; 3675 -> 2619[label="",style="solid", color="blue", weight=3]; 3676[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3676[label="",style="solid", color="blue", weight=9]; 3676 -> 2620[label="",style="solid", color="blue", weight=3]; 3677[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3677[label="",style="solid", color="blue", weight=9]; 3677 -> 2621[label="",style="solid", color="blue", weight=3]; 3678[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3678[label="",style="solid", color="blue", weight=9]; 3678 -> 2622[label="",style="solid", color="blue", weight=3]; 3679[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3679[label="",style="solid", color="blue", weight=9]; 3679 -> 2623[label="",style="solid", color="blue", weight=3]; 3680[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3680[label="",style="solid", color="blue", weight=9]; 3680 -> 2624[label="",style="solid", color="blue", weight=3]; 3681[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3681[label="",style="solid", color="blue", weight=9]; 3681 -> 2625[label="",style="solid", color="blue", weight=3]; 3682[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3682[label="",style="solid", color="blue", weight=9]; 3682 -> 2626[label="",style="solid", color="blue", weight=3]; 3683[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3683[label="",style="solid", color="blue", weight=9]; 3683 -> 2627[label="",style="solid", color="blue", weight=3]; 3684[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3684[label="",style="solid", color="blue", weight=9]; 3684 -> 2628[label="",style="solid", color="blue", weight=3]; 3685[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3685[label="",style="solid", color="blue", weight=9]; 3685 -> 2629[label="",style="solid", color="blue", weight=3]; 2523[label="vwx131 <= vwx141",fontsize=16,color="blue",shape="box"];3686[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2523 -> 3686[label="",style="solid", color="blue", weight=9]; 3686 -> 2630[label="",style="solid", color="blue", weight=3]; 3687[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2523 -> 3687[label="",style="solid", color="blue", weight=9]; 3687 -> 2631[label="",style="solid", color="blue", weight=3]; 3688[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2523 -> 3688[label="",style="solid", color="blue", weight=9]; 3688 -> 2632[label="",style="solid", color="blue", weight=3]; 3689[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2523 -> 3689[label="",style="solid", color="blue", weight=9]; 3689 -> 2633[label="",style="solid", color="blue", weight=3]; 3690[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2523 -> 3690[label="",style="solid", color="blue", weight=9]; 3690 -> 2634[label="",style="solid", color="blue", weight=3]; 3691[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2523 -> 3691[label="",style="solid", color="blue", weight=9]; 3691 -> 2635[label="",style="solid", color="blue", weight=3]; 3692[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2523 -> 3692[label="",style="solid", color="blue", weight=9]; 3692 -> 2636[label="",style="solid", color="blue", weight=3]; 3693[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2523 -> 3693[label="",style="solid", color="blue", weight=9]; 3693 -> 2637[label="",style="solid", color="blue", weight=3]; 3694[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2523 -> 3694[label="",style="solid", color="blue", weight=9]; 3694 -> 2638[label="",style="solid", color="blue", weight=3]; 3695[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2523 -> 3695[label="",style="solid", color="blue", weight=9]; 3695 -> 2639[label="",style="solid", color="blue", weight=3]; 3696[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2523 -> 3696[label="",style="solid", color="blue", weight=9]; 3696 -> 2640[label="",style="solid", color="blue", weight=3]; 3697[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2523 -> 3697[label="",style="solid", color="blue", weight=9]; 3697 -> 2641[label="",style="solid", color="blue", weight=3]; 3698[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2523 -> 3698[label="",style="solid", color="blue", weight=9]; 3698 -> 2642[label="",style="solid", color="blue", weight=3]; 3699[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2523 -> 3699[label="",style="solid", color="blue", weight=9]; 3699 -> 2643[label="",style="solid", color="blue", weight=3]; 2524 -> 1373[label="",style="dashed", color="red", weight=0]; 2524[label="vwx130 < vwx140",fontsize=16,color="magenta"];2524 -> 2644[label="",style="dashed", color="magenta", weight=3]; 2524 -> 2645[label="",style="dashed", color="magenta", weight=3]; 2525 -> 1374[label="",style="dashed", color="red", weight=0]; 2525[label="vwx130 < vwx140",fontsize=16,color="magenta"];2525 -> 2646[label="",style="dashed", color="magenta", weight=3]; 2525 -> 2647[label="",style="dashed", color="magenta", weight=3]; 2526 -> 1375[label="",style="dashed", color="red", weight=0]; 2526[label="vwx130 < vwx140",fontsize=16,color="magenta"];2526 -> 2648[label="",style="dashed", color="magenta", weight=3]; 2526 -> 2649[label="",style="dashed", color="magenta", weight=3]; 2527 -> 1376[label="",style="dashed", color="red", weight=0]; 2527[label="vwx130 < vwx140",fontsize=16,color="magenta"];2527 -> 2650[label="",style="dashed", color="magenta", weight=3]; 2527 -> 2651[label="",style="dashed", color="magenta", weight=3]; 2528 -> 1377[label="",style="dashed", color="red", weight=0]; 2528[label="vwx130 < vwx140",fontsize=16,color="magenta"];2528 -> 2652[label="",style="dashed", color="magenta", weight=3]; 2528 -> 2653[label="",style="dashed", color="magenta", weight=3]; 2529 -> 1378[label="",style="dashed", color="red", weight=0]; 2529[label="vwx130 < vwx140",fontsize=16,color="magenta"];2529 -> 2654[label="",style="dashed", color="magenta", weight=3]; 2529 -> 2655[label="",style="dashed", color="magenta", weight=3]; 2530 -> 1379[label="",style="dashed", color="red", weight=0]; 2530[label="vwx130 < vwx140",fontsize=16,color="magenta"];2530 -> 2656[label="",style="dashed", color="magenta", weight=3]; 2530 -> 2657[label="",style="dashed", color="magenta", weight=3]; 2531 -> 1380[label="",style="dashed", color="red", weight=0]; 2531[label="vwx130 < vwx140",fontsize=16,color="magenta"];2531 -> 2658[label="",style="dashed", color="magenta", weight=3]; 2531 -> 2659[label="",style="dashed", color="magenta", weight=3]; 2532 -> 1381[label="",style="dashed", color="red", weight=0]; 2532[label="vwx130 < vwx140",fontsize=16,color="magenta"];2532 -> 2660[label="",style="dashed", color="magenta", weight=3]; 2532 -> 2661[label="",style="dashed", color="magenta", weight=3]; 2533 -> 1382[label="",style="dashed", color="red", weight=0]; 2533[label="vwx130 < vwx140",fontsize=16,color="magenta"];2533 -> 2662[label="",style="dashed", color="magenta", weight=3]; 2533 -> 2663[label="",style="dashed", color="magenta", weight=3]; 2534 -> 1383[label="",style="dashed", color="red", weight=0]; 2534[label="vwx130 < vwx140",fontsize=16,color="magenta"];2534 -> 2664[label="",style="dashed", color="magenta", weight=3]; 2534 -> 2665[label="",style="dashed", color="magenta", weight=3]; 2535 -> 1384[label="",style="dashed", color="red", weight=0]; 2535[label="vwx130 < vwx140",fontsize=16,color="magenta"];2535 -> 2666[label="",style="dashed", color="magenta", weight=3]; 2535 -> 2667[label="",style="dashed", color="magenta", weight=3]; 2536 -> 1385[label="",style="dashed", color="red", weight=0]; 2536[label="vwx130 < vwx140",fontsize=16,color="magenta"];2536 -> 2668[label="",style="dashed", color="magenta", weight=3]; 2536 -> 2669[label="",style="dashed", color="magenta", weight=3]; 2537 -> 1386[label="",style="dashed", color="red", weight=0]; 2537[label="vwx130 < vwx140",fontsize=16,color="magenta"];2537 -> 2670[label="",style="dashed", color="magenta", weight=3]; 2537 -> 2671[label="",style="dashed", color="magenta", weight=3]; 2538[label="vwx130",fontsize=16,color="green",shape="box"];2539[label="vwx140",fontsize=16,color="green",shape="box"];2540[label="vwx130",fontsize=16,color="green",shape="box"];2541[label="vwx140",fontsize=16,color="green",shape="box"];2542[label="vwx130",fontsize=16,color="green",shape="box"];2543[label="vwx140",fontsize=16,color="green",shape="box"];2544[label="vwx130",fontsize=16,color="green",shape="box"];2545[label="vwx140",fontsize=16,color="green",shape="box"];2546[label="vwx130",fontsize=16,color="green",shape="box"];2547[label="vwx140",fontsize=16,color="green",shape="box"];2548[label="vwx130",fontsize=16,color="green",shape="box"];2549[label="vwx140",fontsize=16,color="green",shape="box"];2550[label="vwx130",fontsize=16,color="green",shape="box"];2551[label="vwx140",fontsize=16,color="green",shape="box"];2552[label="vwx130",fontsize=16,color="green",shape="box"];2553[label="vwx140",fontsize=16,color="green",shape="box"];2554[label="vwx130",fontsize=16,color="green",shape="box"];2555[label="vwx140",fontsize=16,color="green",shape="box"];2556[label="vwx130",fontsize=16,color="green",shape="box"];2557[label="vwx140",fontsize=16,color="green",shape="box"];2558[label="vwx130",fontsize=16,color="green",shape="box"];2559[label="vwx140",fontsize=16,color="green",shape="box"];2560[label="vwx130",fontsize=16,color="green",shape="box"];2561[label="vwx140",fontsize=16,color="green",shape="box"];2562[label="vwx130",fontsize=16,color="green",shape="box"];2563[label="vwx140",fontsize=16,color="green",shape="box"];2564[label="vwx130",fontsize=16,color="green",shape="box"];2565[label="vwx140",fontsize=16,color="green",shape="box"];2566[label="GT",fontsize=16,color="green",shape="box"];2567[label="Succ (Succ (primPlusNat vwx1620 vwx3100))",fontsize=16,color="green",shape="box"];2567 -> 2672[label="",style="dashed", color="green", weight=3]; 2568[label="Succ vwx3100",fontsize=16,color="green",shape="box"];2569[label="GT",fontsize=16,color="green",shape="box"];2570[label="True",fontsize=16,color="green",shape="box"];2571[label="False",fontsize=16,color="green",shape="box"];2572 -> 397[label="",style="dashed", color="red", weight=0]; 2572[label="vwx130 == vwx140",fontsize=16,color="magenta"];2572 -> 2673[label="",style="dashed", color="magenta", weight=3]; 2572 -> 2674[label="",style="dashed", color="magenta", weight=3]; 2573 -> 387[label="",style="dashed", color="red", weight=0]; 2573[label="vwx130 == vwx140",fontsize=16,color="magenta"];2573 -> 2675[label="",style="dashed", color="magenta", weight=3]; 2573 -> 2676[label="",style="dashed", color="magenta", weight=3]; 2574 -> 396[label="",style="dashed", color="red", weight=0]; 2574[label="vwx130 == vwx140",fontsize=16,color="magenta"];2574 -> 2677[label="",style="dashed", color="magenta", weight=3]; 2574 -> 2678[label="",style="dashed", color="magenta", weight=3]; 2575 -> 385[label="",style="dashed", color="red", weight=0]; 2575[label="vwx130 == vwx140",fontsize=16,color="magenta"];2575 -> 2679[label="",style="dashed", color="magenta", weight=3]; 2575 -> 2680[label="",style="dashed", color="magenta", weight=3]; 2576 -> 390[label="",style="dashed", color="red", weight=0]; 2576[label="vwx130 == vwx140",fontsize=16,color="magenta"];2576 -> 2681[label="",style="dashed", color="magenta", weight=3]; 2576 -> 2682[label="",style="dashed", color="magenta", weight=3]; 2577 -> 394[label="",style="dashed", color="red", weight=0]; 2577[label="vwx130 == vwx140",fontsize=16,color="magenta"];2577 -> 2683[label="",style="dashed", color="magenta", weight=3]; 2577 -> 2684[label="",style="dashed", color="magenta", weight=3]; 2578 -> 395[label="",style="dashed", color="red", weight=0]; 2578[label="vwx130 == vwx140",fontsize=16,color="magenta"];2578 -> 2685[label="",style="dashed", color="magenta", weight=3]; 2578 -> 2686[label="",style="dashed", color="magenta", weight=3]; 2579 -> 392[label="",style="dashed", color="red", weight=0]; 2579[label="vwx130 == vwx140",fontsize=16,color="magenta"];2579 -> 2687[label="",style="dashed", color="magenta", weight=3]; 2579 -> 2688[label="",style="dashed", color="magenta", weight=3]; 2580 -> 384[label="",style="dashed", color="red", weight=0]; 2580[label="vwx130 == vwx140",fontsize=16,color="magenta"];2580 -> 2689[label="",style="dashed", color="magenta", weight=3]; 2580 -> 2690[label="",style="dashed", color="magenta", weight=3]; 2581 -> 389[label="",style="dashed", color="red", weight=0]; 2581[label="vwx130 == vwx140",fontsize=16,color="magenta"];2581 -> 2691[label="",style="dashed", color="magenta", weight=3]; 2581 -> 2692[label="",style="dashed", color="magenta", weight=3]; 2582 -> 388[label="",style="dashed", color="red", weight=0]; 2582[label="vwx130 == vwx140",fontsize=16,color="magenta"];2582 -> 2693[label="",style="dashed", color="magenta", weight=3]; 2582 -> 2694[label="",style="dashed", color="magenta", weight=3]; 2583 -> 393[label="",style="dashed", color="red", weight=0]; 2583[label="vwx130 == vwx140",fontsize=16,color="magenta"];2583 -> 2695[label="",style="dashed", color="magenta", weight=3]; 2583 -> 2696[label="",style="dashed", color="magenta", weight=3]; 2584 -> 391[label="",style="dashed", color="red", weight=0]; 2584[label="vwx130 == vwx140",fontsize=16,color="magenta"];2584 -> 2697[label="",style="dashed", color="magenta", weight=3]; 2584 -> 2698[label="",style="dashed", color="magenta", weight=3]; 2585 -> 386[label="",style="dashed", color="red", weight=0]; 2585[label="vwx130 == vwx140",fontsize=16,color="magenta"];2585 -> 2699[label="",style="dashed", color="magenta", weight=3]; 2585 -> 2700[label="",style="dashed", color="magenta", weight=3]; 2586 -> 1003[label="",style="dashed", color="red", weight=0]; 2586[label="vwx131 == vwx141 && vwx132 <= vwx142",fontsize=16,color="magenta"];2586 -> 2701[label="",style="dashed", color="magenta", weight=3]; 2586 -> 2702[label="",style="dashed", color="magenta", weight=3]; 2587[label="vwx131 < vwx141",fontsize=16,color="blue",shape="box"];3700[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2587 -> 3700[label="",style="solid", color="blue", weight=9]; 3700 -> 2703[label="",style="solid", color="blue", weight=3]; 3701[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2587 -> 3701[label="",style="solid", color="blue", weight=9]; 3701 -> 2704[label="",style="solid", color="blue", weight=3]; 3702[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2587 -> 3702[label="",style="solid", color="blue", weight=9]; 3702 -> 2705[label="",style="solid", color="blue", weight=3]; 3703[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2587 -> 3703[label="",style="solid", color="blue", weight=9]; 3703 -> 2706[label="",style="solid", color="blue", weight=3]; 3704[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2587 -> 3704[label="",style="solid", color="blue", weight=9]; 3704 -> 2707[label="",style="solid", color="blue", weight=3]; 3705[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2587 -> 3705[label="",style="solid", color="blue", weight=9]; 3705 -> 2708[label="",style="solid", color="blue", weight=3]; 3706[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2587 -> 3706[label="",style="solid", color="blue", weight=9]; 3706 -> 2709[label="",style="solid", color="blue", weight=3]; 3707[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2587 -> 3707[label="",style="solid", color="blue", weight=9]; 3707 -> 2710[label="",style="solid", color="blue", weight=3]; 3708[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2587 -> 3708[label="",style="solid", color="blue", weight=9]; 3708 -> 2711[label="",style="solid", color="blue", weight=3]; 3709[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2587 -> 3709[label="",style="solid", color="blue", weight=9]; 3709 -> 2712[label="",style="solid", color="blue", weight=3]; 3710[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2587 -> 3710[label="",style="solid", color="blue", weight=9]; 3710 -> 2713[label="",style="solid", color="blue", weight=3]; 3711[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2587 -> 3711[label="",style="solid", color="blue", weight=9]; 3711 -> 2714[label="",style="solid", color="blue", weight=3]; 3712[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2587 -> 3712[label="",style="solid", color="blue", weight=9]; 3712 -> 2715[label="",style="solid", color="blue", weight=3]; 3713[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2587 -> 3713[label="",style="solid", color="blue", weight=9]; 3713 -> 2716[label="",style="solid", color="blue", weight=3]; 2588[label="vwx130",fontsize=16,color="green",shape="box"];2589[label="vwx140",fontsize=16,color="green",shape="box"];2590[label="vwx130",fontsize=16,color="green",shape="box"];2591[label="vwx140",fontsize=16,color="green",shape="box"];2592[label="vwx130",fontsize=16,color="green",shape="box"];2593[label="vwx140",fontsize=16,color="green",shape="box"];2594[label="vwx130",fontsize=16,color="green",shape="box"];2595[label="vwx140",fontsize=16,color="green",shape="box"];2596[label="vwx130",fontsize=16,color="green",shape="box"];2597[label="vwx140",fontsize=16,color="green",shape="box"];2598[label="vwx130",fontsize=16,color="green",shape="box"];2599[label="vwx140",fontsize=16,color="green",shape="box"];2600[label="vwx130",fontsize=16,color="green",shape="box"];2601[label="vwx140",fontsize=16,color="green",shape="box"];2602[label="vwx130",fontsize=16,color="green",shape="box"];2603[label="vwx140",fontsize=16,color="green",shape="box"];2604[label="vwx130",fontsize=16,color="green",shape="box"];2605[label="vwx140",fontsize=16,color="green",shape="box"];2606[label="vwx130",fontsize=16,color="green",shape="box"];2607[label="vwx140",fontsize=16,color="green",shape="box"];2608[label="vwx130",fontsize=16,color="green",shape="box"];2609[label="vwx140",fontsize=16,color="green",shape="box"];2610[label="vwx130",fontsize=16,color="green",shape="box"];2611[label="vwx140",fontsize=16,color="green",shape="box"];2612[label="vwx130",fontsize=16,color="green",shape="box"];2613[label="vwx140",fontsize=16,color="green",shape="box"];2614[label="vwx130",fontsize=16,color="green",shape="box"];2615[label="vwx140",fontsize=16,color="green",shape="box"];2616 -> 397[label="",style="dashed", color="red", weight=0]; 2616[label="vwx130 == vwx140",fontsize=16,color="magenta"];2616 -> 2717[label="",style="dashed", color="magenta", weight=3]; 2616 -> 2718[label="",style="dashed", color="magenta", weight=3]; 2617 -> 387[label="",style="dashed", color="red", weight=0]; 2617[label="vwx130 == vwx140",fontsize=16,color="magenta"];2617 -> 2719[label="",style="dashed", color="magenta", weight=3]; 2617 -> 2720[label="",style="dashed", color="magenta", weight=3]; 2618 -> 396[label="",style="dashed", color="red", weight=0]; 2618[label="vwx130 == vwx140",fontsize=16,color="magenta"];2618 -> 2721[label="",style="dashed", color="magenta", weight=3]; 2618 -> 2722[label="",style="dashed", color="magenta", weight=3]; 2619 -> 385[label="",style="dashed", color="red", weight=0]; 2619[label="vwx130 == vwx140",fontsize=16,color="magenta"];2619 -> 2723[label="",style="dashed", color="magenta", weight=3]; 2619 -> 2724[label="",style="dashed", color="magenta", weight=3]; 2620 -> 390[label="",style="dashed", color="red", weight=0]; 2620[label="vwx130 == vwx140",fontsize=16,color="magenta"];2620 -> 2725[label="",style="dashed", color="magenta", weight=3]; 2620 -> 2726[label="",style="dashed", color="magenta", weight=3]; 2621 -> 394[label="",style="dashed", color="red", weight=0]; 2621[label="vwx130 == vwx140",fontsize=16,color="magenta"];2621 -> 2727[label="",style="dashed", color="magenta", weight=3]; 2621 -> 2728[label="",style="dashed", color="magenta", weight=3]; 2622 -> 395[label="",style="dashed", color="red", weight=0]; 2622[label="vwx130 == vwx140",fontsize=16,color="magenta"];2622 -> 2729[label="",style="dashed", color="magenta", weight=3]; 2622 -> 2730[label="",style="dashed", color="magenta", weight=3]; 2623 -> 392[label="",style="dashed", color="red", weight=0]; 2623[label="vwx130 == vwx140",fontsize=16,color="magenta"];2623 -> 2731[label="",style="dashed", color="magenta", weight=3]; 2623 -> 2732[label="",style="dashed", color="magenta", weight=3]; 2624 -> 384[label="",style="dashed", color="red", weight=0]; 2624[label="vwx130 == vwx140",fontsize=16,color="magenta"];2624 -> 2733[label="",style="dashed", color="magenta", weight=3]; 2624 -> 2734[label="",style="dashed", color="magenta", weight=3]; 2625 -> 389[label="",style="dashed", color="red", weight=0]; 2625[label="vwx130 == vwx140",fontsize=16,color="magenta"];2625 -> 2735[label="",style="dashed", color="magenta", weight=3]; 2625 -> 2736[label="",style="dashed", color="magenta", weight=3]; 2626 -> 388[label="",style="dashed", color="red", weight=0]; 2626[label="vwx130 == vwx140",fontsize=16,color="magenta"];2626 -> 2737[label="",style="dashed", color="magenta", weight=3]; 2626 -> 2738[label="",style="dashed", color="magenta", weight=3]; 2627 -> 393[label="",style="dashed", color="red", weight=0]; 2627[label="vwx130 == vwx140",fontsize=16,color="magenta"];2627 -> 2739[label="",style="dashed", color="magenta", weight=3]; 2627 -> 2740[label="",style="dashed", color="magenta", weight=3]; 2628 -> 391[label="",style="dashed", color="red", weight=0]; 2628[label="vwx130 == vwx140",fontsize=16,color="magenta"];2628 -> 2741[label="",style="dashed", color="magenta", weight=3]; 2628 -> 2742[label="",style="dashed", color="magenta", weight=3]; 2629 -> 386[label="",style="dashed", color="red", weight=0]; 2629[label="vwx130 == vwx140",fontsize=16,color="magenta"];2629 -> 2743[label="",style="dashed", color="magenta", weight=3]; 2629 -> 2744[label="",style="dashed", color="magenta", weight=3]; 2630 -> 1320[label="",style="dashed", color="red", weight=0]; 2630[label="vwx131 <= vwx141",fontsize=16,color="magenta"];2630 -> 2745[label="",style="dashed", color="magenta", weight=3]; 2630 -> 2746[label="",style="dashed", color="magenta", weight=3]; 2631 -> 1321[label="",style="dashed", color="red", weight=0]; 2631[label="vwx131 <= vwx141",fontsize=16,color="magenta"];2631 -> 2747[label="",style="dashed", color="magenta", weight=3]; 2631 -> 2748[label="",style="dashed", color="magenta", weight=3]; 2632 -> 1322[label="",style="dashed", color="red", weight=0]; 2632[label="vwx131 <= vwx141",fontsize=16,color="magenta"];2632 -> 2749[label="",style="dashed", color="magenta", weight=3]; 2632 -> 2750[label="",style="dashed", color="magenta", weight=3]; 2633 -> 1323[label="",style="dashed", color="red", weight=0]; 2633[label="vwx131 <= vwx141",fontsize=16,color="magenta"];2633 -> 2751[label="",style="dashed", color="magenta", weight=3]; 2633 -> 2752[label="",style="dashed", color="magenta", weight=3]; 2634 -> 1324[label="",style="dashed", color="red", weight=0]; 2634[label="vwx131 <= vwx141",fontsize=16,color="magenta"];2634 -> 2753[label="",style="dashed", color="magenta", weight=3]; 2634 -> 2754[label="",style="dashed", color="magenta", weight=3]; 2635 -> 1325[label="",style="dashed", color="red", weight=0]; 2635[label="vwx131 <= vwx141",fontsize=16,color="magenta"];2635 -> 2755[label="",style="dashed", color="magenta", weight=3]; 2635 -> 2756[label="",style="dashed", color="magenta", weight=3]; 2636 -> 1326[label="",style="dashed", color="red", weight=0]; 2636[label="vwx131 <= vwx141",fontsize=16,color="magenta"];2636 -> 2757[label="",style="dashed", color="magenta", weight=3]; 2636 -> 2758[label="",style="dashed", color="magenta", weight=3]; 2637 -> 1327[label="",style="dashed", color="red", weight=0]; 2637[label="vwx131 <= vwx141",fontsize=16,color="magenta"];2637 -> 2759[label="",style="dashed", color="magenta", weight=3]; 2637 -> 2760[label="",style="dashed", color="magenta", weight=3]; 2638 -> 1328[label="",style="dashed", color="red", weight=0]; 2638[label="vwx131 <= vwx141",fontsize=16,color="magenta"];2638 -> 2761[label="",style="dashed", color="magenta", weight=3]; 2638 -> 2762[label="",style="dashed", color="magenta", weight=3]; 2639 -> 1329[label="",style="dashed", color="red", weight=0]; 2639[label="vwx131 <= vwx141",fontsize=16,color="magenta"];2639 -> 2763[label="",style="dashed", color="magenta", weight=3]; 2639 -> 2764[label="",style="dashed", color="magenta", weight=3]; 2640 -> 1330[label="",style="dashed", color="red", weight=0]; 2640[label="vwx131 <= vwx141",fontsize=16,color="magenta"];2640 -> 2765[label="",style="dashed", color="magenta", weight=3]; 2640 -> 2766[label="",style="dashed", color="magenta", weight=3]; 2641 -> 1331[label="",style="dashed", color="red", weight=0]; 2641[label="vwx131 <= vwx141",fontsize=16,color="magenta"];2641 -> 2767[label="",style="dashed", color="magenta", weight=3]; 2641 -> 2768[label="",style="dashed", color="magenta", weight=3]; 2642 -> 1332[label="",style="dashed", color="red", weight=0]; 2642[label="vwx131 <= vwx141",fontsize=16,color="magenta"];2642 -> 2769[label="",style="dashed", color="magenta", weight=3]; 2642 -> 2770[label="",style="dashed", color="magenta", weight=3]; 2643 -> 1333[label="",style="dashed", color="red", weight=0]; 2643[label="vwx131 <= vwx141",fontsize=16,color="magenta"];2643 -> 2771[label="",style="dashed", color="magenta", weight=3]; 2643 -> 2772[label="",style="dashed", color="magenta", weight=3]; 2644[label="vwx130",fontsize=16,color="green",shape="box"];2645[label="vwx140",fontsize=16,color="green",shape="box"];2646[label="vwx130",fontsize=16,color="green",shape="box"];2647[label="vwx140",fontsize=16,color="green",shape="box"];2648[label="vwx130",fontsize=16,color="green",shape="box"];2649[label="vwx140",fontsize=16,color="green",shape="box"];2650[label="vwx130",fontsize=16,color="green",shape="box"];2651[label="vwx140",fontsize=16,color="green",shape="box"];2652[label="vwx130",fontsize=16,color="green",shape="box"];2653[label="vwx140",fontsize=16,color="green",shape="box"];2654[label="vwx130",fontsize=16,color="green",shape="box"];2655[label="vwx140",fontsize=16,color="green",shape="box"];2656[label="vwx130",fontsize=16,color="green",shape="box"];2657[label="vwx140",fontsize=16,color="green",shape="box"];2658[label="vwx130",fontsize=16,color="green",shape="box"];2659[label="vwx140",fontsize=16,color="green",shape="box"];2660[label="vwx130",fontsize=16,color="green",shape="box"];2661[label="vwx140",fontsize=16,color="green",shape="box"];2662[label="vwx130",fontsize=16,color="green",shape="box"];2663[label="vwx140",fontsize=16,color="green",shape="box"];2664[label="vwx130",fontsize=16,color="green",shape="box"];2665[label="vwx140",fontsize=16,color="green",shape="box"];2666[label="vwx130",fontsize=16,color="green",shape="box"];2667[label="vwx140",fontsize=16,color="green",shape="box"];2668[label="vwx130",fontsize=16,color="green",shape="box"];2669[label="vwx140",fontsize=16,color="green",shape="box"];2670[label="vwx130",fontsize=16,color="green",shape="box"];2671[label="vwx140",fontsize=16,color="green",shape="box"];2672[label="primPlusNat vwx1620 vwx3100",fontsize=16,color="burlywood",shape="triangle"];3714[label="vwx1620/Succ vwx16200",fontsize=10,color="white",style="solid",shape="box"];2672 -> 3714[label="",style="solid", color="burlywood", weight=9]; 3714 -> 2773[label="",style="solid", color="burlywood", weight=3]; 3715[label="vwx1620/Zero",fontsize=10,color="white",style="solid",shape="box"];2672 -> 3715[label="",style="solid", color="burlywood", weight=9]; 3715 -> 2774[label="",style="solid", color="burlywood", weight=3]; 2673[label="vwx140",fontsize=16,color="green",shape="box"];2674[label="vwx130",fontsize=16,color="green",shape="box"];2675[label="vwx140",fontsize=16,color="green",shape="box"];2676[label="vwx130",fontsize=16,color="green",shape="box"];2677[label="vwx140",fontsize=16,color="green",shape="box"];2678[label="vwx130",fontsize=16,color="green",shape="box"];2679[label="vwx140",fontsize=16,color="green",shape="box"];2680[label="vwx130",fontsize=16,color="green",shape="box"];2681[label="vwx140",fontsize=16,color="green",shape="box"];2682[label="vwx130",fontsize=16,color="green",shape="box"];2683[label="vwx140",fontsize=16,color="green",shape="box"];2684[label="vwx130",fontsize=16,color="green",shape="box"];2685[label="vwx140",fontsize=16,color="green",shape="box"];2686[label="vwx130",fontsize=16,color="green",shape="box"];2687[label="vwx140",fontsize=16,color="green",shape="box"];2688[label="vwx130",fontsize=16,color="green",shape="box"];2689[label="vwx140",fontsize=16,color="green",shape="box"];2690[label="vwx130",fontsize=16,color="green",shape="box"];2691[label="vwx140",fontsize=16,color="green",shape="box"];2692[label="vwx130",fontsize=16,color="green",shape="box"];2693[label="vwx140",fontsize=16,color="green",shape="box"];2694[label="vwx130",fontsize=16,color="green",shape="box"];2695[label="vwx140",fontsize=16,color="green",shape="box"];2696[label="vwx130",fontsize=16,color="green",shape="box"];2697[label="vwx140",fontsize=16,color="green",shape="box"];2698[label="vwx130",fontsize=16,color="green",shape="box"];2699[label="vwx140",fontsize=16,color="green",shape="box"];2700[label="vwx130",fontsize=16,color="green",shape="box"];2701[label="vwx131 == vwx141",fontsize=16,color="blue",shape="box"];3716[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 3716[label="",style="solid", color="blue", weight=9]; 3716 -> 2775[label="",style="solid", color="blue", weight=3]; 3717[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 3717[label="",style="solid", color="blue", weight=9]; 3717 -> 2776[label="",style="solid", color="blue", weight=3]; 3718[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 3718[label="",style="solid", color="blue", weight=9]; 3718 -> 2777[label="",style="solid", color="blue", weight=3]; 3719[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 3719[label="",style="solid", color="blue", weight=9]; 3719 -> 2778[label="",style="solid", color="blue", weight=3]; 3720[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 3720[label="",style="solid", color="blue", weight=9]; 3720 -> 2779[label="",style="solid", color="blue", weight=3]; 3721[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 3721[label="",style="solid", color="blue", weight=9]; 3721 -> 2780[label="",style="solid", color="blue", weight=3]; 3722[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 3722[label="",style="solid", color="blue", weight=9]; 3722 -> 2781[label="",style="solid", color="blue", weight=3]; 3723[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 3723[label="",style="solid", color="blue", weight=9]; 3723 -> 2782[label="",style="solid", color="blue", weight=3]; 3724[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 3724[label="",style="solid", color="blue", weight=9]; 3724 -> 2783[label="",style="solid", color="blue", weight=3]; 3725[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 3725[label="",style="solid", color="blue", weight=9]; 3725 -> 2784[label="",style="solid", color="blue", weight=3]; 3726[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 3726[label="",style="solid", color="blue", weight=9]; 3726 -> 2785[label="",style="solid", color="blue", weight=3]; 3727[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 3727[label="",style="solid", color="blue", weight=9]; 3727 -> 2786[label="",style="solid", color="blue", weight=3]; 3728[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 3728[label="",style="solid", color="blue", weight=9]; 3728 -> 2787[label="",style="solid", color="blue", weight=3]; 3729[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 3729[label="",style="solid", color="blue", weight=9]; 3729 -> 2788[label="",style="solid", color="blue", weight=3]; 2702[label="vwx132 <= vwx142",fontsize=16,color="blue",shape="box"];3730[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2702 -> 3730[label="",style="solid", color="blue", weight=9]; 3730 -> 2789[label="",style="solid", color="blue", weight=3]; 3731[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2702 -> 3731[label="",style="solid", color="blue", weight=9]; 3731 -> 2790[label="",style="solid", color="blue", weight=3]; 3732[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2702 -> 3732[label="",style="solid", color="blue", weight=9]; 3732 -> 2791[label="",style="solid", color="blue", weight=3]; 3733[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2702 -> 3733[label="",style="solid", color="blue", weight=9]; 3733 -> 2792[label="",style="solid", color="blue", weight=3]; 3734[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2702 -> 3734[label="",style="solid", color="blue", weight=9]; 3734 -> 2793[label="",style="solid", color="blue", weight=3]; 3735[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2702 -> 3735[label="",style="solid", color="blue", weight=9]; 3735 -> 2794[label="",style="solid", color="blue", weight=3]; 3736[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2702 -> 3736[label="",style="solid", color="blue", weight=9]; 3736 -> 2795[label="",style="solid", color="blue", weight=3]; 3737[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2702 -> 3737[label="",style="solid", color="blue", weight=9]; 3737 -> 2796[label="",style="solid", color="blue", weight=3]; 3738[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2702 -> 3738[label="",style="solid", color="blue", weight=9]; 3738 -> 2797[label="",style="solid", color="blue", weight=3]; 3739[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2702 -> 3739[label="",style="solid", color="blue", weight=9]; 3739 -> 2798[label="",style="solid", color="blue", weight=3]; 3740[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2702 -> 3740[label="",style="solid", color="blue", weight=9]; 3740 -> 2799[label="",style="solid", color="blue", weight=3]; 3741[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2702 -> 3741[label="",style="solid", color="blue", weight=9]; 3741 -> 2800[label="",style="solid", color="blue", weight=3]; 3742[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2702 -> 3742[label="",style="solid", color="blue", weight=9]; 3742 -> 2801[label="",style="solid", color="blue", weight=3]; 3743[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2702 -> 3743[label="",style="solid", color="blue", weight=9]; 3743 -> 2802[label="",style="solid", color="blue", weight=3]; 2703 -> 1373[label="",style="dashed", color="red", weight=0]; 2703[label="vwx131 < vwx141",fontsize=16,color="magenta"];2703 -> 2803[label="",style="dashed", color="magenta", weight=3]; 2703 -> 2804[label="",style="dashed", color="magenta", weight=3]; 2704 -> 1374[label="",style="dashed", color="red", weight=0]; 2704[label="vwx131 < vwx141",fontsize=16,color="magenta"];2704 -> 2805[label="",style="dashed", color="magenta", weight=3]; 2704 -> 2806[label="",style="dashed", color="magenta", weight=3]; 2705 -> 1375[label="",style="dashed", color="red", weight=0]; 2705[label="vwx131 < vwx141",fontsize=16,color="magenta"];2705 -> 2807[label="",style="dashed", color="magenta", weight=3]; 2705 -> 2808[label="",style="dashed", color="magenta", weight=3]; 2706 -> 1376[label="",style="dashed", color="red", weight=0]; 2706[label="vwx131 < vwx141",fontsize=16,color="magenta"];2706 -> 2809[label="",style="dashed", color="magenta", weight=3]; 2706 -> 2810[label="",style="dashed", color="magenta", weight=3]; 2707 -> 1377[label="",style="dashed", color="red", weight=0]; 2707[label="vwx131 < vwx141",fontsize=16,color="magenta"];2707 -> 2811[label="",style="dashed", color="magenta", weight=3]; 2707 -> 2812[label="",style="dashed", color="magenta", weight=3]; 2708 -> 1378[label="",style="dashed", color="red", weight=0]; 2708[label="vwx131 < vwx141",fontsize=16,color="magenta"];2708 -> 2813[label="",style="dashed", color="magenta", weight=3]; 2708 -> 2814[label="",style="dashed", color="magenta", weight=3]; 2709 -> 1379[label="",style="dashed", color="red", weight=0]; 2709[label="vwx131 < vwx141",fontsize=16,color="magenta"];2709 -> 2815[label="",style="dashed", color="magenta", weight=3]; 2709 -> 2816[label="",style="dashed", color="magenta", weight=3]; 2710 -> 1380[label="",style="dashed", color="red", weight=0]; 2710[label="vwx131 < vwx141",fontsize=16,color="magenta"];2710 -> 2817[label="",style="dashed", color="magenta", weight=3]; 2710 -> 2818[label="",style="dashed", color="magenta", weight=3]; 2711 -> 1381[label="",style="dashed", color="red", weight=0]; 2711[label="vwx131 < vwx141",fontsize=16,color="magenta"];2711 -> 2819[label="",style="dashed", color="magenta", weight=3]; 2711 -> 2820[label="",style="dashed", color="magenta", weight=3]; 2712 -> 1382[label="",style="dashed", color="red", weight=0]; 2712[label="vwx131 < vwx141",fontsize=16,color="magenta"];2712 -> 2821[label="",style="dashed", color="magenta", weight=3]; 2712 -> 2822[label="",style="dashed", color="magenta", weight=3]; 2713 -> 1383[label="",style="dashed", color="red", weight=0]; 2713[label="vwx131 < vwx141",fontsize=16,color="magenta"];2713 -> 2823[label="",style="dashed", color="magenta", weight=3]; 2713 -> 2824[label="",style="dashed", color="magenta", weight=3]; 2714 -> 1384[label="",style="dashed", color="red", weight=0]; 2714[label="vwx131 < vwx141",fontsize=16,color="magenta"];2714 -> 2825[label="",style="dashed", color="magenta", weight=3]; 2714 -> 2826[label="",style="dashed", color="magenta", weight=3]; 2715 -> 1385[label="",style="dashed", color="red", weight=0]; 2715[label="vwx131 < vwx141",fontsize=16,color="magenta"];2715 -> 2827[label="",style="dashed", color="magenta", weight=3]; 2715 -> 2828[label="",style="dashed", color="magenta", weight=3]; 2716 -> 1386[label="",style="dashed", color="red", weight=0]; 2716[label="vwx131 < vwx141",fontsize=16,color="magenta"];2716 -> 2829[label="",style="dashed", color="magenta", weight=3]; 2716 -> 2830[label="",style="dashed", color="magenta", weight=3]; 2717[label="vwx140",fontsize=16,color="green",shape="box"];2718[label="vwx130",fontsize=16,color="green",shape="box"];2719[label="vwx140",fontsize=16,color="green",shape="box"];2720[label="vwx130",fontsize=16,color="green",shape="box"];2721[label="vwx140",fontsize=16,color="green",shape="box"];2722[label="vwx130",fontsize=16,color="green",shape="box"];2723[label="vwx140",fontsize=16,color="green",shape="box"];2724[label="vwx130",fontsize=16,color="green",shape="box"];2725[label="vwx140",fontsize=16,color="green",shape="box"];2726[label="vwx130",fontsize=16,color="green",shape="box"];2727[label="vwx140",fontsize=16,color="green",shape="box"];2728[label="vwx130",fontsize=16,color="green",shape="box"];2729[label="vwx140",fontsize=16,color="green",shape="box"];2730[label="vwx130",fontsize=16,color="green",shape="box"];2731[label="vwx140",fontsize=16,color="green",shape="box"];2732[label="vwx130",fontsize=16,color="green",shape="box"];2733[label="vwx140",fontsize=16,color="green",shape="box"];2734[label="vwx130",fontsize=16,color="green",shape="box"];2735[label="vwx140",fontsize=16,color="green",shape="box"];2736[label="vwx130",fontsize=16,color="green",shape="box"];2737[label="vwx140",fontsize=16,color="green",shape="box"];2738[label="vwx130",fontsize=16,color="green",shape="box"];2739[label="vwx140",fontsize=16,color="green",shape="box"];2740[label="vwx130",fontsize=16,color="green",shape="box"];2741[label="vwx140",fontsize=16,color="green",shape="box"];2742[label="vwx130",fontsize=16,color="green",shape="box"];2743[label="vwx140",fontsize=16,color="green",shape="box"];2744[label="vwx130",fontsize=16,color="green",shape="box"];2745[label="vwx131",fontsize=16,color="green",shape="box"];2746[label="vwx141",fontsize=16,color="green",shape="box"];2747[label="vwx131",fontsize=16,color="green",shape="box"];2748[label="vwx141",fontsize=16,color="green",shape="box"];2749[label="vwx131",fontsize=16,color="green",shape="box"];2750[label="vwx141",fontsize=16,color="green",shape="box"];2751[label="vwx131",fontsize=16,color="green",shape="box"];2752[label="vwx141",fontsize=16,color="green",shape="box"];2753[label="vwx131",fontsize=16,color="green",shape="box"];2754[label="vwx141",fontsize=16,color="green",shape="box"];2755[label="vwx131",fontsize=16,color="green",shape="box"];2756[label="vwx141",fontsize=16,color="green",shape="box"];2757[label="vwx131",fontsize=16,color="green",shape="box"];2758[label="vwx141",fontsize=16,color="green",shape="box"];2759[label="vwx131",fontsize=16,color="green",shape="box"];2760[label="vwx141",fontsize=16,color="green",shape="box"];2761[label="vwx131",fontsize=16,color="green",shape="box"];2762[label="vwx141",fontsize=16,color="green",shape="box"];2763[label="vwx131",fontsize=16,color="green",shape="box"];2764[label="vwx141",fontsize=16,color="green",shape="box"];2765[label="vwx131",fontsize=16,color="green",shape="box"];2766[label="vwx141",fontsize=16,color="green",shape="box"];2767[label="vwx131",fontsize=16,color="green",shape="box"];2768[label="vwx141",fontsize=16,color="green",shape="box"];2769[label="vwx131",fontsize=16,color="green",shape="box"];2770[label="vwx141",fontsize=16,color="green",shape="box"];2771[label="vwx131",fontsize=16,color="green",shape="box"];2772[label="vwx141",fontsize=16,color="green",shape="box"];2773[label="primPlusNat (Succ vwx16200) vwx3100",fontsize=16,color="burlywood",shape="box"];3744[label="vwx3100/Succ vwx31000",fontsize=10,color="white",style="solid",shape="box"];2773 -> 3744[label="",style="solid", color="burlywood", weight=9]; 3744 -> 2831[label="",style="solid", color="burlywood", weight=3]; 3745[label="vwx3100/Zero",fontsize=10,color="white",style="solid",shape="box"];2773 -> 3745[label="",style="solid", color="burlywood", weight=9]; 3745 -> 2832[label="",style="solid", color="burlywood", weight=3]; 2774[label="primPlusNat Zero vwx3100",fontsize=16,color="burlywood",shape="box"];3746[label="vwx3100/Succ vwx31000",fontsize=10,color="white",style="solid",shape="box"];2774 -> 3746[label="",style="solid", color="burlywood", weight=9]; 3746 -> 2833[label="",style="solid", color="burlywood", weight=3]; 3747[label="vwx3100/Zero",fontsize=10,color="white",style="solid",shape="box"];2774 -> 3747[label="",style="solid", color="burlywood", weight=9]; 3747 -> 2834[label="",style="solid", color="burlywood", weight=3]; 2775 -> 397[label="",style="dashed", color="red", weight=0]; 2775[label="vwx131 == vwx141",fontsize=16,color="magenta"];2775 -> 2835[label="",style="dashed", color="magenta", weight=3]; 2775 -> 2836[label="",style="dashed", color="magenta", weight=3]; 2776 -> 387[label="",style="dashed", color="red", weight=0]; 2776[label="vwx131 == vwx141",fontsize=16,color="magenta"];2776 -> 2837[label="",style="dashed", color="magenta", weight=3]; 2776 -> 2838[label="",style="dashed", color="magenta", weight=3]; 2777 -> 396[label="",style="dashed", color="red", weight=0]; 2777[label="vwx131 == vwx141",fontsize=16,color="magenta"];2777 -> 2839[label="",style="dashed", color="magenta", weight=3]; 2777 -> 2840[label="",style="dashed", color="magenta", weight=3]; 2778 -> 385[label="",style="dashed", color="red", weight=0]; 2778[label="vwx131 == vwx141",fontsize=16,color="magenta"];2778 -> 2841[label="",style="dashed", color="magenta", weight=3]; 2778 -> 2842[label="",style="dashed", color="magenta", weight=3]; 2779 -> 390[label="",style="dashed", color="red", weight=0]; 2779[label="vwx131 == vwx141",fontsize=16,color="magenta"];2779 -> 2843[label="",style="dashed", color="magenta", weight=3]; 2779 -> 2844[label="",style="dashed", color="magenta", weight=3]; 2780 -> 394[label="",style="dashed", color="red", weight=0]; 2780[label="vwx131 == vwx141",fontsize=16,color="magenta"];2780 -> 2845[label="",style="dashed", color="magenta", weight=3]; 2780 -> 2846[label="",style="dashed", color="magenta", weight=3]; 2781 -> 395[label="",style="dashed", color="red", weight=0]; 2781[label="vwx131 == vwx141",fontsize=16,color="magenta"];2781 -> 2847[label="",style="dashed", color="magenta", weight=3]; 2781 -> 2848[label="",style="dashed", color="magenta", weight=3]; 2782 -> 392[label="",style="dashed", color="red", weight=0]; 2782[label="vwx131 == vwx141",fontsize=16,color="magenta"];2782 -> 2849[label="",style="dashed", color="magenta", weight=3]; 2782 -> 2850[label="",style="dashed", color="magenta", weight=3]; 2783 -> 384[label="",style="dashed", color="red", weight=0]; 2783[label="vwx131 == vwx141",fontsize=16,color="magenta"];2783 -> 2851[label="",style="dashed", color="magenta", weight=3]; 2783 -> 2852[label="",style="dashed", color="magenta", weight=3]; 2784 -> 389[label="",style="dashed", color="red", weight=0]; 2784[label="vwx131 == vwx141",fontsize=16,color="magenta"];2784 -> 2853[label="",style="dashed", color="magenta", weight=3]; 2784 -> 2854[label="",style="dashed", color="magenta", weight=3]; 2785 -> 388[label="",style="dashed", color="red", weight=0]; 2785[label="vwx131 == vwx141",fontsize=16,color="magenta"];2785 -> 2855[label="",style="dashed", color="magenta", weight=3]; 2785 -> 2856[label="",style="dashed", color="magenta", weight=3]; 2786 -> 393[label="",style="dashed", color="red", weight=0]; 2786[label="vwx131 == vwx141",fontsize=16,color="magenta"];2786 -> 2857[label="",style="dashed", color="magenta", weight=3]; 2786 -> 2858[label="",style="dashed", color="magenta", weight=3]; 2787 -> 391[label="",style="dashed", color="red", weight=0]; 2787[label="vwx131 == vwx141",fontsize=16,color="magenta"];2787 -> 2859[label="",style="dashed", color="magenta", weight=3]; 2787 -> 2860[label="",style="dashed", color="magenta", weight=3]; 2788 -> 386[label="",style="dashed", color="red", weight=0]; 2788[label="vwx131 == vwx141",fontsize=16,color="magenta"];2788 -> 2861[label="",style="dashed", color="magenta", weight=3]; 2788 -> 2862[label="",style="dashed", color="magenta", weight=3]; 2789 -> 1320[label="",style="dashed", color="red", weight=0]; 2789[label="vwx132 <= vwx142",fontsize=16,color="magenta"];2789 -> 2863[label="",style="dashed", color="magenta", weight=3]; 2789 -> 2864[label="",style="dashed", color="magenta", weight=3]; 2790 -> 1321[label="",style="dashed", color="red", weight=0]; 2790[label="vwx132 <= vwx142",fontsize=16,color="magenta"];2790 -> 2865[label="",style="dashed", color="magenta", weight=3]; 2790 -> 2866[label="",style="dashed", color="magenta", weight=3]; 2791 -> 1322[label="",style="dashed", color="red", weight=0]; 2791[label="vwx132 <= vwx142",fontsize=16,color="magenta"];2791 -> 2867[label="",style="dashed", color="magenta", weight=3]; 2791 -> 2868[label="",style="dashed", color="magenta", weight=3]; 2792 -> 1323[label="",style="dashed", color="red", weight=0]; 2792[label="vwx132 <= vwx142",fontsize=16,color="magenta"];2792 -> 2869[label="",style="dashed", color="magenta", weight=3]; 2792 -> 2870[label="",style="dashed", color="magenta", weight=3]; 2793 -> 1324[label="",style="dashed", color="red", weight=0]; 2793[label="vwx132 <= vwx142",fontsize=16,color="magenta"];2793 -> 2871[label="",style="dashed", color="magenta", weight=3]; 2793 -> 2872[label="",style="dashed", color="magenta", weight=3]; 2794 -> 1325[label="",style="dashed", color="red", weight=0]; 2794[label="vwx132 <= vwx142",fontsize=16,color="magenta"];2794 -> 2873[label="",style="dashed", color="magenta", weight=3]; 2794 -> 2874[label="",style="dashed", color="magenta", weight=3]; 2795 -> 1326[label="",style="dashed", color="red", weight=0]; 2795[label="vwx132 <= vwx142",fontsize=16,color="magenta"];2795 -> 2875[label="",style="dashed", color="magenta", weight=3]; 2795 -> 2876[label="",style="dashed", color="magenta", weight=3]; 2796 -> 1327[label="",style="dashed", color="red", weight=0]; 2796[label="vwx132 <= vwx142",fontsize=16,color="magenta"];2796 -> 2877[label="",style="dashed", color="magenta", weight=3]; 2796 -> 2878[label="",style="dashed", color="magenta", weight=3]; 2797 -> 1328[label="",style="dashed", color="red", weight=0]; 2797[label="vwx132 <= vwx142",fontsize=16,color="magenta"];2797 -> 2879[label="",style="dashed", color="magenta", weight=3]; 2797 -> 2880[label="",style="dashed", color="magenta", weight=3]; 2798 -> 1329[label="",style="dashed", color="red", weight=0]; 2798[label="vwx132 <= vwx142",fontsize=16,color="magenta"];2798 -> 2881[label="",style="dashed", color="magenta", weight=3]; 2798 -> 2882[label="",style="dashed", color="magenta", weight=3]; 2799 -> 1330[label="",style="dashed", color="red", weight=0]; 2799[label="vwx132 <= vwx142",fontsize=16,color="magenta"];2799 -> 2883[label="",style="dashed", color="magenta", weight=3]; 2799 -> 2884[label="",style="dashed", color="magenta", weight=3]; 2800 -> 1331[label="",style="dashed", color="red", weight=0]; 2800[label="vwx132 <= vwx142",fontsize=16,color="magenta"];2800 -> 2885[label="",style="dashed", color="magenta", weight=3]; 2800 -> 2886[label="",style="dashed", color="magenta", weight=3]; 2801 -> 1332[label="",style="dashed", color="red", weight=0]; 2801[label="vwx132 <= vwx142",fontsize=16,color="magenta"];2801 -> 2887[label="",style="dashed", color="magenta", weight=3]; 2801 -> 2888[label="",style="dashed", color="magenta", weight=3]; 2802 -> 1333[label="",style="dashed", color="red", weight=0]; 2802[label="vwx132 <= vwx142",fontsize=16,color="magenta"];2802 -> 2889[label="",style="dashed", color="magenta", weight=3]; 2802 -> 2890[label="",style="dashed", color="magenta", weight=3]; 2803[label="vwx131",fontsize=16,color="green",shape="box"];2804[label="vwx141",fontsize=16,color="green",shape="box"];2805[label="vwx131",fontsize=16,color="green",shape="box"];2806[label="vwx141",fontsize=16,color="green",shape="box"];2807[label="vwx131",fontsize=16,color="green",shape="box"];2808[label="vwx141",fontsize=16,color="green",shape="box"];2809[label="vwx131",fontsize=16,color="green",shape="box"];2810[label="vwx141",fontsize=16,color="green",shape="box"];2811[label="vwx131",fontsize=16,color="green",shape="box"];2812[label="vwx141",fontsize=16,color="green",shape="box"];2813[label="vwx131",fontsize=16,color="green",shape="box"];2814[label="vwx141",fontsize=16,color="green",shape="box"];2815[label="vwx131",fontsize=16,color="green",shape="box"];2816[label="vwx141",fontsize=16,color="green",shape="box"];2817[label="vwx131",fontsize=16,color="green",shape="box"];2818[label="vwx141",fontsize=16,color="green",shape="box"];2819[label="vwx131",fontsize=16,color="green",shape="box"];2820[label="vwx141",fontsize=16,color="green",shape="box"];2821[label="vwx131",fontsize=16,color="green",shape="box"];2822[label="vwx141",fontsize=16,color="green",shape="box"];2823[label="vwx131",fontsize=16,color="green",shape="box"];2824[label="vwx141",fontsize=16,color="green",shape="box"];2825[label="vwx131",fontsize=16,color="green",shape="box"];2826[label="vwx141",fontsize=16,color="green",shape="box"];2827[label="vwx131",fontsize=16,color="green",shape="box"];2828[label="vwx141",fontsize=16,color="green",shape="box"];2829[label="vwx131",fontsize=16,color="green",shape="box"];2830[label="vwx141",fontsize=16,color="green",shape="box"];2831[label="primPlusNat (Succ vwx16200) (Succ vwx31000)",fontsize=16,color="black",shape="box"];2831 -> 2891[label="",style="solid", color="black", weight=3]; 2832[label="primPlusNat (Succ vwx16200) Zero",fontsize=16,color="black",shape="box"];2832 -> 2892[label="",style="solid", color="black", weight=3]; 2833[label="primPlusNat Zero (Succ vwx31000)",fontsize=16,color="black",shape="box"];2833 -> 2893[label="",style="solid", color="black", weight=3]; 2834[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2834 -> 2894[label="",style="solid", color="black", weight=3]; 2835[label="vwx141",fontsize=16,color="green",shape="box"];2836[label="vwx131",fontsize=16,color="green",shape="box"];2837[label="vwx141",fontsize=16,color="green",shape="box"];2838[label="vwx131",fontsize=16,color="green",shape="box"];2839[label="vwx141",fontsize=16,color="green",shape="box"];2840[label="vwx131",fontsize=16,color="green",shape="box"];2841[label="vwx141",fontsize=16,color="green",shape="box"];2842[label="vwx131",fontsize=16,color="green",shape="box"];2843[label="vwx141",fontsize=16,color="green",shape="box"];2844[label="vwx131",fontsize=16,color="green",shape="box"];2845[label="vwx141",fontsize=16,color="green",shape="box"];2846[label="vwx131",fontsize=16,color="green",shape="box"];2847[label="vwx141",fontsize=16,color="green",shape="box"];2848[label="vwx131",fontsize=16,color="green",shape="box"];2849[label="vwx141",fontsize=16,color="green",shape="box"];2850[label="vwx131",fontsize=16,color="green",shape="box"];2851[label="vwx141",fontsize=16,color="green",shape="box"];2852[label="vwx131",fontsize=16,color="green",shape="box"];2853[label="vwx141",fontsize=16,color="green",shape="box"];2854[label="vwx131",fontsize=16,color="green",shape="box"];2855[label="vwx141",fontsize=16,color="green",shape="box"];2856[label="vwx131",fontsize=16,color="green",shape="box"];2857[label="vwx141",fontsize=16,color="green",shape="box"];2858[label="vwx131",fontsize=16,color="green",shape="box"];2859[label="vwx141",fontsize=16,color="green",shape="box"];2860[label="vwx131",fontsize=16,color="green",shape="box"];2861[label="vwx141",fontsize=16,color="green",shape="box"];2862[label="vwx131",fontsize=16,color="green",shape="box"];2863[label="vwx132",fontsize=16,color="green",shape="box"];2864[label="vwx142",fontsize=16,color="green",shape="box"];2865[label="vwx132",fontsize=16,color="green",shape="box"];2866[label="vwx142",fontsize=16,color="green",shape="box"];2867[label="vwx132",fontsize=16,color="green",shape="box"];2868[label="vwx142",fontsize=16,color="green",shape="box"];2869[label="vwx132",fontsize=16,color="green",shape="box"];2870[label="vwx142",fontsize=16,color="green",shape="box"];2871[label="vwx132",fontsize=16,color="green",shape="box"];2872[label="vwx142",fontsize=16,color="green",shape="box"];2873[label="vwx132",fontsize=16,color="green",shape="box"];2874[label="vwx142",fontsize=16,color="green",shape="box"];2875[label="vwx132",fontsize=16,color="green",shape="box"];2876[label="vwx142",fontsize=16,color="green",shape="box"];2877[label="vwx132",fontsize=16,color="green",shape="box"];2878[label="vwx142",fontsize=16,color="green",shape="box"];2879[label="vwx132",fontsize=16,color="green",shape="box"];2880[label="vwx142",fontsize=16,color="green",shape="box"];2881[label="vwx132",fontsize=16,color="green",shape="box"];2882[label="vwx142",fontsize=16,color="green",shape="box"];2883[label="vwx132",fontsize=16,color="green",shape="box"];2884[label="vwx142",fontsize=16,color="green",shape="box"];2885[label="vwx132",fontsize=16,color="green",shape="box"];2886[label="vwx142",fontsize=16,color="green",shape="box"];2887[label="vwx132",fontsize=16,color="green",shape="box"];2888[label="vwx142",fontsize=16,color="green",shape="box"];2889[label="vwx132",fontsize=16,color="green",shape="box"];2890[label="vwx142",fontsize=16,color="green",shape="box"];2891[label="Succ (Succ (primPlusNat vwx16200 vwx31000))",fontsize=16,color="green",shape="box"];2891 -> 2895[label="",style="dashed", color="green", weight=3]; 2892[label="Succ vwx16200",fontsize=16,color="green",shape="box"];2893[label="Succ vwx31000",fontsize=16,color="green",shape="box"];2894[label="Zero",fontsize=16,color="green",shape="box"];2895 -> 2672[label="",style="dashed", color="red", weight=0]; 2895[label="primPlusNat vwx16200 vwx31000",fontsize=16,color="magenta"];2895 -> 2896[label="",style="dashed", color="magenta", weight=3]; 2895 -> 2897[label="",style="dashed", color="magenta", weight=3]; 2896[label="vwx16200",fontsize=16,color="green",shape="box"];2897[label="vwx31000",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(vwx300), Succ(vwx400)) -> new_primCmpNat(vwx300, vwx400) 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(vwx300), Succ(vwx400)) -> new_primCmpNat(vwx300, vwx400) 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_primMulNat(Succ(vwx4000), Succ(vwx3100)) -> new_primMulNat(vwx4000, Succ(vwx3100)) 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_primMulNat(Succ(vwx4000), Succ(vwx3100)) -> new_primMulNat(vwx4000, Succ(vwx3100)) The graph contains the following edges 1 > 1, 2 >= 2 ---------------------------------------- (20) YES ---------------------------------------- (21) Obligation: Q DP problem: The TRS P consists of the following rules: new_compare2(Just(vwx130), Just(vwx140), False, app(ty_Maybe, app(app(app(ty_@3, bcf), bcg), bch)), be) -> new_ltEs0(vwx130, vwx140, bcf, bcg, bch) new_ltEs(Right(vwx130), Right(vwx140), ce, app(ty_Maybe, dg)) -> new_ltEs3(vwx130, vwx140, dg) new_primCompAux(vwx30, vwx40, vwx8, app(ty_[], bec)) -> new_compare0(vwx30, vwx40, bec) new_compare2(@2(vwx130, vwx131), @2(vwx140, vwx141), False, app(app(ty_@2, hh), app(ty_[], baf)), be) -> new_ltEs1(vwx131, vwx141, baf) new_ltEs0(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), dh, ea, app(app(app(ty_@3, ed), ee), ef)) -> new_ltEs0(vwx132, vwx142, ed, ee, ef) new_compare21(vwx69, vwx70, vwx71, vwx72, vwx73, vwx74, False, bfb, bfc, app(app(ty_@2, bgb), bgc)) -> new_ltEs2(vwx71, vwx74, bgb, bgc) new_compare2(Just(vwx130), Just(vwx140), False, app(ty_Maybe, app(app(ty_@2, bdb), bdc)), be) -> new_ltEs2(vwx130, vwx140, bdb, bdc) new_compare2(Left(vwx130), Left(vwx140), False, app(app(ty_Either, app(app(ty_@2, cb), cc)), bd), be) -> new_ltEs2(vwx130, vwx140, cb, cc) new_compare2(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), False, app(app(app(ty_@3, dh), app(app(ty_@2, gc), gd)), ff), be) -> new_lt2(vwx131, vwx141, gc, gd) new_primCompAux(vwx30, vwx40, vwx8, app(app(app(ty_@3, bdh), bea), beb)) -> new_compare3(vwx30, vwx40, bdh, bea, beb) new_ltEs0(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), app(app(app(ty_@3, gh), ha), hb), ea, ff) -> new_lt0(vwx130, vwx140, gh, ha, hb) new_compare21(vwx69, vwx70, vwx71, vwx72, vwx73, vwx74, False, app(ty_Maybe, cag), bfc, bgg) -> new_compare5(vwx69, vwx72, cag) new_ltEs(Left(vwx130), Left(vwx140), app(app(ty_@2, cb), cc), bd) -> new_ltEs2(vwx130, vwx140, cb, cc) new_ltEs(Left(vwx130), Left(vwx140), app(ty_[], ca), bd) -> new_ltEs1(vwx130, vwx140, ca) new_ltEs3(Just(vwx130), Just(vwx140), app(app(ty_@2, bdb), bdc)) -> new_ltEs2(vwx130, vwx140, bdb, bdc) new_compare2(Left(vwx130), Left(vwx140), False, app(app(ty_Either, app(ty_Maybe, cd)), bd), be) -> new_ltEs3(vwx130, vwx140, cd) new_compare21(vwx69, vwx70, vwx71, vwx72, vwx73, vwx74, False, app(app(ty_@2, cae), caf), bfc, bgg) -> new_compare4(vwx69, vwx72, cae, caf) new_compare2(@2(vwx130, vwx131), @2(vwx140, vwx141), False, app(app(ty_@2, hh), app(app(ty_@2, bag), bah)), be) -> new_ltEs2(vwx131, vwx141, bag, bah) new_compare2(@2(vwx130, vwx131), @2(vwx140, vwx141), False, app(app(ty_@2, app(app(ty_@2, bca), bcb)), bbd), be) -> new_lt2(vwx130, vwx140, bca, bcb) new_compare22(vwx82, vwx83, vwx84, vwx85, False, app(app(ty_Either, ccd), cce), ccf) -> new_lt(vwx82, vwx84, ccd, cce) new_compare2(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), False, app(app(app(ty_@3, dh), app(app(app(ty_@3, fg), fh), ga)), ff), be) -> new_lt0(vwx131, vwx141, fg, fh, ga) new_ltEs0(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), dh, app(ty_Maybe, ge), ff) -> new_lt3(vwx131, vwx141, ge) new_compare2(Right(vwx130), Right(vwx140), False, app(app(ty_Either, ce), app(app(app(ty_@3, da), db), dc)), be) -> new_ltEs0(vwx130, vwx140, da, db, dc) new_compare2(@2(vwx130, vwx131), @2(vwx140, vwx141), False, app(app(ty_@2, hh), app(app(ty_Either, baa), bab)), be) -> new_ltEs(vwx131, vwx141, baa, bab) new_ltEs(Left(vwx130), Left(vwx140), app(ty_Maybe, cd), bd) -> new_ltEs3(vwx130, vwx140, cd) new_ltEs3(Just(vwx130), Just(vwx140), app(app(ty_Either, bcd), bce)) -> new_ltEs(vwx130, vwx140, bcd, bce) new_compare2(Right(vwx130), Right(vwx140), False, app(app(ty_Either, ce), app(app(ty_Either, cf), cg)), be) -> new_ltEs(vwx130, vwx140, cf, cg) new_compare2(Right(vwx130), Right(vwx140), False, app(app(ty_Either, ce), app(ty_Maybe, dg)), be) -> new_ltEs3(vwx130, vwx140, dg) new_compare21(vwx69, vwx70, vwx71, vwx72, vwx73, vwx74, False, bfb, bfc, app(app(ty_Either, bfd), bfe)) -> new_ltEs(vwx71, vwx74, bfd, bfe) new_compare2(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), False, app(app(app(ty_@3, app(ty_Maybe, hf)), ea), ff), be) -> new_lt3(vwx130, vwx140, hf) new_ltEs0(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), dh, app(app(ty_Either, fc), fd), ff) -> new_lt(vwx131, vwx141, fc, fd) new_ltEs0(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), dh, ea, app(ty_Maybe, fb)) -> new_ltEs3(vwx132, vwx142, fb) new_compare2(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), False, app(app(app(ty_@3, dh), app(app(ty_Either, fc), fd)), ff), be) -> new_lt(vwx131, vwx141, fc, fd) new_ltEs2(@2(vwx130, vwx131), @2(vwx140, vwx141), hh, app(ty_[], baf)) -> new_ltEs1(vwx131, vwx141, baf) new_compare2(@2(vwx130, vwx131), @2(vwx140, vwx141), False, app(app(ty_@2, app(app(app(ty_@3, bbe), bbf), bbg)), bbd), be) -> new_lt0(vwx130, vwx140, bbe, bbf, bbg) new_ltEs3(Just(vwx130), Just(vwx140), app(app(app(ty_@3, bcf), bcg), bch)) -> new_ltEs0(vwx130, vwx140, bcf, bcg, bch) new_ltEs0(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), dh, ea, app(app(ty_@2, eh), fa)) -> new_ltEs2(vwx132, vwx142, eh, fa) new_compare(Left(vwx30), Left(vwx40), h, ba) -> new_compare2(vwx30, vwx40, new_esEs4(vwx30, vwx40, h), h, ba) new_ltEs(Left(vwx130), Left(vwx140), app(app(ty_Either, bb), bc), bd) -> new_ltEs(vwx130, vwx140, bb, bc) new_compare21(vwx69, vwx70, vwx71, vwx72, vwx73, vwx74, False, bfb, bfc, app(app(app(ty_@3, bff), bfg), bfh)) -> new_ltEs0(vwx71, vwx74, bff, bfg, bfh) new_lt3(vwx69, vwx72, cag) -> new_compare5(vwx69, vwx72, cag) new_compare23(vwx58, vwx59, False, app(ty_Maybe, ceg)) -> new_ltEs3(vwx58, vwx59, ceg) new_ltEs(Right(vwx130), Right(vwx140), ce, app(app(ty_@2, de), df)) -> new_ltEs2(vwx130, vwx140, de, df) new_ltEs0(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), dh, ea, app(ty_[], eg)) -> new_ltEs1(vwx132, vwx142, eg) new_compare2(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), False, app(app(app(ty_@3, dh), app(ty_Maybe, ge)), ff), be) -> new_lt3(vwx131, vwx141, ge) new_compare22(vwx82, vwx83, vwx84, vwx85, False, app(app(ty_@2, cdc), cdd), ccf) -> new_lt2(vwx82, vwx84, cdc, cdd) new_compare2(Just(vwx130), Just(vwx140), False, app(ty_Maybe, app(app(ty_Either, bcd), bce)), be) -> new_ltEs(vwx130, vwx140, bcd, bce) new_ltEs2(@2(vwx130, vwx131), @2(vwx140, vwx141), hh, app(ty_Maybe, bba)) -> new_ltEs3(vwx131, vwx141, bba) new_compare2(@2(vwx130, vwx131), @2(vwx140, vwx141), False, app(app(ty_@2, app(app(ty_Either, bbb), bbc)), bbd), be) -> new_lt(vwx130, vwx140, bbb, bbc) new_ltEs0(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), dh, app(ty_[], gb), ff) -> new_lt1(vwx131, vwx141, gb) new_compare2(Left(vwx130), Left(vwx140), False, app(app(ty_Either, app(app(app(ty_@3, bf), bg), bh)), bd), be) -> new_ltEs0(vwx130, vwx140, bf, bg, bh) new_compare21(vwx69, vwx70, vwx71, vwx72, vwx73, vwx74, False, bfb, app(app(ty_@2, bhd), bhe), bgg) -> new_lt2(vwx70, vwx73, bhd, bhe) new_ltEs0(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), app(app(ty_Either, gf), gg), ea, ff) -> new_lt(vwx130, vwx140, gf, gg) new_ltEs2(@2(vwx130, vwx131), @2(vwx140, vwx141), app(ty_Maybe, bcc), bbd) -> new_lt3(vwx130, vwx140, bcc) new_compare21(vwx69, vwx70, vwx71, vwx72, vwx73, vwx74, False, app(app(ty_Either, bhg), bhh), bfc, bgg) -> new_compare(vwx69, vwx72, bhg, bhh) new_ltEs2(@2(vwx130, vwx131), @2(vwx140, vwx141), hh, app(app(ty_Either, baa), bab)) -> new_ltEs(vwx131, vwx141, baa, bab) new_ltEs3(Just(vwx130), Just(vwx140), app(ty_[], bda)) -> new_ltEs1(vwx130, vwx140, bda) new_compare0(:(vwx30, vwx31), :(vwx40, vwx41), bde) -> new_compare0(vwx31, vwx41, bde) new_ltEs(Left(vwx130), Left(vwx140), app(app(app(ty_@3, bf), bg), bh), bd) -> new_ltEs0(vwx130, vwx140, bf, bg, bh) new_compare2(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), False, app(app(app(ty_@3, dh), ea), app(ty_Maybe, fb)), be) -> new_ltEs3(vwx132, vwx142, fb) new_ltEs2(@2(vwx130, vwx131), @2(vwx140, vwx141), app(app(ty_Either, bbb), bbc), bbd) -> new_lt(vwx130, vwx140, bbb, bbc) new_ltEs2(@2(vwx130, vwx131), @2(vwx140, vwx141), app(ty_[], bbh), bbd) -> new_lt1(vwx130, vwx140, bbh) new_ltEs(Right(vwx130), Right(vwx140), ce, app(ty_[], dd)) -> new_ltEs1(vwx130, vwx140, dd) new_lt2(vwx69, vwx72, cae, caf) -> new_compare4(vwx69, vwx72, cae, caf) new_compare23(vwx58, vwx59, False, app(ty_[], ced)) -> new_ltEs1(vwx58, vwx59, ced) new_compare23(vwx58, vwx59, False, app(app(app(ty_@3, cea), ceb), cec)) -> new_ltEs0(vwx58, vwx59, cea, ceb, cec) new_compare2(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), False, app(app(app(ty_@3, dh), app(ty_[], gb)), ff), be) -> new_lt1(vwx131, vwx141, gb) new_compare21(vwx69, vwx70, vwx71, vwx72, vwx73, vwx74, False, bfb, bfc, app(ty_[], bga)) -> new_ltEs1(vwx71, vwx74, bga) new_primCompAux(vwx30, vwx40, vwx8, app(ty_Maybe, bef)) -> new_compare5(vwx30, vwx40, bef) new_lt0(vwx69, vwx72, caa, cab, cac) -> new_compare3(vwx69, vwx72, caa, cab, cac) new_primCompAux(vwx30, vwx40, vwx8, app(app(ty_Either, bdf), bdg)) -> new_compare(vwx30, vwx40, bdf, bdg) new_compare2(Left(vwx130), Left(vwx140), False, app(app(ty_Either, app(app(ty_Either, bb), bc)), bd), be) -> new_ltEs(vwx130, vwx140, bb, bc) new_compare21(vwx69, vwx70, vwx71, vwx72, vwx73, vwx74, False, bfb, app(app(app(ty_@3, bgh), bha), bhb), bgg) -> new_lt0(vwx70, vwx73, bgh, bha, bhb) new_compare22(vwx82, vwx83, vwx84, vwx85, False, cbb, app(ty_Maybe, ccc)) -> new_ltEs3(vwx83, vwx85, ccc) new_compare22(vwx82, vwx83, vwx84, vwx85, False, app(ty_[], cdb), ccf) -> new_lt1(vwx82, vwx84, cdb) new_lt1(vwx69, vwx72, cad) -> new_compare0(vwx69, vwx72, cad) new_ltEs2(@2(vwx130, vwx131), @2(vwx140, vwx141), hh, app(app(app(ty_@3, bac), bad), bae)) -> new_ltEs0(vwx131, vwx141, bac, bad, bae) new_compare5(Just(vwx30), Just(vwx40), cdf) -> new_compare23(vwx30, vwx40, new_esEs11(vwx30, vwx40, cdf), cdf) new_compare2(vwx13, vwx14, False, app(ty_[], hg), be) -> new_compare0(vwx13, vwx14, hg) new_ltEs2(@2(vwx130, vwx131), @2(vwx140, vwx141), app(app(app(ty_@3, bbe), bbf), bbg), bbd) -> new_lt0(vwx130, vwx140, bbe, bbf, bbg) new_ltEs(Right(vwx130), Right(vwx140), ce, app(app(ty_Either, cf), cg)) -> new_ltEs(vwx130, vwx140, cf, cg) new_compare2(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), False, app(app(app(ty_@3, dh), ea), app(app(ty_Either, eb), ec)), be) -> new_ltEs(vwx132, vwx142, eb, ec) new_compare2(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), False, app(app(app(ty_@3, app(app(ty_Either, gf), gg)), ea), ff), be) -> new_lt(vwx130, vwx140, gf, gg) new_ltEs3(Just(vwx130), Just(vwx140), app(ty_Maybe, bdd)) -> new_ltEs3(vwx130, vwx140, bdd) new_compare20(vwx20, vwx21, False, ceh, app(app(app(ty_@3, cfc), cfd), cfe)) -> new_ltEs0(vwx20, vwx21, cfc, cfd, cfe) new_compare21(vwx69, vwx70, vwx71, vwx72, vwx73, vwx74, False, bfb, app(ty_[], bhc), bgg) -> new_lt1(vwx70, vwx73, bhc) new_compare2(Left(vwx130), Left(vwx140), False, app(app(ty_Either, app(ty_[], ca)), bd), be) -> new_ltEs1(vwx130, vwx140, ca) new_ltEs1(vwx13, vwx14, hg) -> new_compare0(vwx13, vwx14, hg) new_compare2(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), False, app(app(app(ty_@3, dh), ea), app(app(app(ty_@3, ed), ee), ef)), be) -> new_ltEs0(vwx132, vwx142, ed, ee, ef) new_compare22(vwx82, vwx83, vwx84, vwx85, False, cbb, app(app(ty_Either, cbc), cbd)) -> new_ltEs(vwx83, vwx85, cbc, cbd) new_ltEs0(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), dh, ea, app(app(ty_Either, eb), ec)) -> new_ltEs(vwx132, vwx142, eb, ec) new_compare2(@2(vwx130, vwx131), @2(vwx140, vwx141), False, app(app(ty_@2, hh), app(ty_Maybe, bba)), be) -> new_ltEs3(vwx131, vwx141, bba) new_compare23(vwx58, vwx59, False, app(app(ty_Either, cdg), cdh)) -> new_ltEs(vwx58, vwx59, cdg, cdh) new_compare0(:(vwx30, vwx31), :(vwx40, vwx41), bde) -> new_primCompAux(vwx30, vwx40, new_compare1(vwx31, vwx41, bde), bde) new_compare21(vwx69, vwx70, vwx71, vwx72, vwx73, vwx74, False, bfb, app(ty_Maybe, bhf), bgg) -> new_lt3(vwx70, vwx73, bhf) new_ltEs0(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), dh, app(app(app(ty_@3, fg), fh), ga), ff) -> new_lt0(vwx131, vwx141, fg, fh, ga) new_compare2(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), False, app(app(app(ty_@3, app(ty_[], hc)), ea), ff), be) -> new_lt1(vwx130, vwx140, hc) new_compare21(vwx69, vwx70, vwx71, vwx72, vwx73, vwx74, False, bfb, bfc, app(ty_Maybe, bgd)) -> new_ltEs3(vwx71, vwx74, bgd) new_compare2(Right(vwx130), Right(vwx140), False, app(app(ty_Either, ce), app(app(ty_@2, de), df)), be) -> new_ltEs2(vwx130, vwx140, de, df) new_ltEs2(@2(vwx130, vwx131), @2(vwx140, vwx141), app(app(ty_@2, bca), bcb), bbd) -> new_lt2(vwx130, vwx140, bca, bcb) new_compare2(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), False, app(app(app(ty_@3, dh), ea), app(ty_[], eg)), be) -> new_ltEs1(vwx132, vwx142, eg) new_compare2(Just(vwx130), Just(vwx140), False, app(ty_Maybe, app(ty_[], bda)), be) -> new_ltEs1(vwx130, vwx140, bda) new_compare20(vwx20, vwx21, False, ceh, app(app(ty_@2, cfg), cfh)) -> new_ltEs2(vwx20, vwx21, cfg, cfh) new_compare21(vwx69, vwx70, vwx71, vwx72, vwx73, vwx74, False, bfb, app(app(ty_Either, bge), bgf), bgg) -> new_lt(vwx70, vwx73, bge, bgf) new_ltEs2(@2(vwx130, vwx131), @2(vwx140, vwx141), hh, app(app(ty_@2, bag), bah)) -> new_ltEs2(vwx131, vwx141, bag, bah) new_compare21(vwx69, vwx70, vwx71, vwx72, vwx73, vwx74, False, app(ty_[], cad), bfc, bgg) -> new_compare0(vwx69, vwx72, cad) new_compare22(vwx82, vwx83, vwx84, vwx85, False, app(ty_Maybe, cde), ccf) -> new_lt3(vwx82, vwx84, cde) new_compare22(vwx82, vwx83, vwx84, vwx85, False, cbb, app(ty_[], cbh)) -> new_ltEs1(vwx83, vwx85, cbh) new_compare3(@3(vwx30, vwx31, vwx32), @3(vwx40, vwx41, vwx42), beg, beh, bfa) -> new_compare21(vwx30, vwx31, vwx32, vwx40, vwx41, vwx42, new_asAs(new_esEs6(vwx30, vwx40, beg), new_asAs(new_esEs7(vwx31, vwx41, beh), new_esEs8(vwx32, vwx42, bfa))), beg, beh, bfa) new_compare2(@2(vwx130, vwx131), @2(vwx140, vwx141), False, app(app(ty_@2, hh), app(app(app(ty_@3, bac), bad), bae)), be) -> new_ltEs0(vwx131, vwx141, bac, bad, bae) new_compare20(vwx20, vwx21, False, ceh, app(ty_[], cff)) -> new_ltEs1(vwx20, vwx21, cff) new_compare20(vwx20, vwx21, False, ceh, app(app(ty_Either, cfa), cfb)) -> new_ltEs(vwx20, vwx21, cfa, cfb) new_ltEs0(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), app(app(ty_@2, hd), he), ea, ff) -> new_lt2(vwx130, vwx140, hd, he) new_compare23(vwx58, vwx59, False, app(app(ty_@2, cee), cef)) -> new_ltEs2(vwx58, vwx59, cee, cef) new_compare2(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), False, app(app(app(ty_@3, app(app(app(ty_@3, gh), ha), hb)), ea), ff), be) -> new_lt0(vwx130, vwx140, gh, ha, hb) new_compare(Right(vwx30), Right(vwx40), h, ba) -> new_compare20(vwx30, vwx40, new_esEs5(vwx30, vwx40, ba), h, ba) new_compare4(@2(vwx30, vwx31), @2(vwx40, vwx41), cah, cba) -> new_compare22(vwx30, vwx31, vwx40, vwx41, new_asAs(new_esEs9(vwx30, vwx40, cah), new_esEs10(vwx31, vwx41, cba)), cah, cba) new_ltEs0(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), app(ty_[], hc), ea, ff) -> new_lt1(vwx130, vwx140, hc) new_compare22(vwx82, vwx83, vwx84, vwx85, False, cbb, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_ltEs0(vwx83, vwx85, cbe, cbf, cbg) new_compare20(vwx20, vwx21, False, ceh, app(ty_Maybe, cga)) -> new_ltEs3(vwx20, vwx21, cga) new_compare2(@2(vwx130, vwx131), @2(vwx140, vwx141), False, app(app(ty_@2, app(ty_[], bbh)), bbd), be) -> new_lt1(vwx130, vwx140, bbh) new_primCompAux(vwx30, vwx40, vwx8, app(app(ty_@2, bed), bee)) -> new_compare4(vwx30, vwx40, bed, bee) new_lt(vwx69, vwx72, bhg, bhh) -> new_compare(vwx69, vwx72, bhg, bhh) new_compare2(Just(vwx130), Just(vwx140), False, app(ty_Maybe, app(ty_Maybe, bdd)), be) -> new_ltEs3(vwx130, vwx140, bdd) new_compare22(vwx82, vwx83, vwx84, vwx85, False, app(app(app(ty_@3, ccg), cch), cda), ccf) -> new_lt0(vwx82, vwx84, ccg, cch, cda) new_ltEs0(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), app(ty_Maybe, hf), ea, ff) -> new_lt3(vwx130, vwx140, hf) new_compare2(@2(vwx130, vwx131), @2(vwx140, vwx141), False, app(app(ty_@2, app(ty_Maybe, bcc)), bbd), be) -> new_lt3(vwx130, vwx140, bcc) new_compare2(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), False, app(app(app(ty_@3, dh), ea), app(app(ty_@2, eh), fa)), be) -> new_ltEs2(vwx132, vwx142, eh, fa) new_ltEs0(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), dh, app(app(ty_@2, gc), gd), ff) -> new_lt2(vwx131, vwx141, gc, gd) new_compare2(Right(vwx130), Right(vwx140), False, app(app(ty_Either, ce), app(ty_[], dd)), be) -> new_ltEs1(vwx130, vwx140, dd) new_compare22(vwx82, vwx83, vwx84, vwx85, False, cbb, app(app(ty_@2, cca), ccb)) -> new_ltEs2(vwx83, vwx85, cca, ccb) new_ltEs(Right(vwx130), Right(vwx140), ce, app(app(app(ty_@3, da), db), dc)) -> new_ltEs0(vwx130, vwx140, da, db, dc) new_compare2(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), False, app(app(app(ty_@3, app(app(ty_@2, hd), he)), ea), ff), be) -> new_lt2(vwx130, vwx140, hd, he) new_compare21(vwx69, vwx70, vwx71, vwx72, vwx73, vwx74, False, app(app(app(ty_@3, caa), cab), cac), bfc, bgg) -> new_compare3(vwx69, vwx72, caa, cab, cac) The TRS R consists of the following rules: new_compare7(Double(vwx30, Neg(vwx310)), Double(vwx40, Neg(vwx410))) -> new_compare16(new_sr(vwx30, Neg(vwx410)), new_sr(Neg(vwx310), vwx40)) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(vwx300)), Pos(vwx40)) -> LT new_esEs33(vwx300, vwx400, app(ty_Ratio, dhg)) -> new_esEs23(vwx300, vwx400, dhg) new_esEs4(vwx30, vwx40, app(ty_Maybe, dbd)) -> new_esEs17(vwx30, vwx40, dbd) new_lt21(vwx70, vwx73, app(app(ty_Either, bge), bgf)) -> new_lt8(vwx70, vwx73, bge, bgf) new_pePe(True, vwx161) -> True new_esEs29(vwx130, vwx140, ty_Integer) -> new_esEs19(vwx130, vwx140) new_esEs31(vwx69, vwx72, app(ty_Maybe, cag)) -> new_esEs17(vwx69, vwx72, cag) new_esEs33(vwx300, vwx400, ty_@0) -> new_esEs16(vwx300, vwx400) new_ltEs20(vwx132, vwx142, app(ty_Maybe, fb)) -> new_ltEs15(vwx132, vwx142, fb) new_esEs24(Left(vwx300), Left(vwx400), ty_Char, dcc) -> new_esEs15(vwx300, vwx400) new_esEs37(vwx301, vwx401, ty_Ordering) -> new_esEs12(vwx301, vwx401) new_esEs6(vwx30, vwx40, ty_@0) -> new_esEs16(vwx30, vwx40) new_compare9(False, False) -> EQ new_ltEs24(vwx58, vwx59, ty_Ordering) -> new_ltEs14(vwx58, vwx59) new_esEs24(Right(vwx300), Right(vwx400), dcb, ty_Int) -> new_esEs21(vwx300, vwx400) new_esEs39(vwx300, vwx400, ty_Double) -> new_esEs18(vwx300, vwx400) new_lt21(vwx70, vwx73, ty_Bool) -> new_lt6(vwx70, vwx73) new_ltEs19(vwx20, vwx21, ty_Bool) -> new_ltEs7(vwx20, vwx21) new_esEs39(vwx300, vwx400, ty_Int) -> new_esEs21(vwx300, vwx400) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare14(vwx98, vwx99, True, dea, deb) -> LT new_compare24(vwx82, vwx83, vwx84, vwx85, True, cbb, ccf) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(vwx400))) -> GT new_ltEs24(vwx58, vwx59, ty_Char) -> new_ltEs18(vwx58, vwx59) new_esEs9(vwx30, vwx40, ty_Bool) -> new_esEs25(vwx30, vwx40) new_ltEs19(vwx20, vwx21, app(app(ty_@2, cfg), cfh)) -> new_ltEs5(vwx20, vwx21, cfg, cfh) new_esEs7(vwx31, vwx41, app(app(ty_Either, fag), fah)) -> new_esEs24(vwx31, vwx41, fag, fah) new_esEs34(vwx301, vwx401, app(app(ty_Either, ebb), ebc)) -> new_esEs24(vwx301, vwx401, ebb, ebc) new_esEs36(vwx300, vwx400, ty_Bool) -> new_esEs25(vwx300, vwx400) new_ltEs8(Left(vwx130), Left(vwx140), app(app(ty_@2, cb), cc), bd) -> new_ltEs5(vwx130, vwx140, cb, cc) new_primCmpInt(Neg(Succ(vwx300)), Neg(vwx40)) -> new_primCmpNat0(vwx40, Succ(vwx300)) new_compare16(vwx3, vwx4) -> new_primCmpInt(vwx3, vwx4) new_lt23(vwx82, vwx84, app(ty_Maybe, cde)) -> new_lt15(vwx82, vwx84, cde) new_esEs4(vwx30, vwx40, app(app(ty_@2, dbb), dbc)) -> new_esEs13(vwx30, vwx40, dbb, dbc) new_esEs8(vwx32, vwx42, ty_Float) -> new_esEs14(vwx32, vwx42) new_lt5(vwx130, vwx140, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_lt10(vwx130, vwx140, bbe, bbf, bbg) new_esEs29(vwx130, vwx140, ty_Float) -> new_esEs14(vwx130, vwx140) new_esEs35(vwx302, vwx402, ty_Float) -> new_esEs14(vwx302, vwx402) new_lt19(vwx131, vwx141, app(ty_Ratio, def)) -> new_lt11(vwx131, vwx141, def) new_esEs31(vwx69, vwx72, app(app(ty_@2, cae), caf)) -> new_esEs13(vwx69, vwx72, cae, caf) new_esEs10(vwx31, vwx41, app(app(ty_@2, chd), che)) -> new_esEs13(vwx31, vwx41, chd, che) new_esEs24(Right(vwx300), Right(vwx400), dcb, ty_Double) -> new_esEs18(vwx300, vwx400) new_ltEs20(vwx132, vwx142, ty_Char) -> new_ltEs18(vwx132, vwx142) new_esEs21(vwx30, vwx40) -> new_primEqInt(vwx30, vwx40) new_esEs5(vwx30, vwx40, ty_Char) -> new_esEs15(vwx30, vwx40) new_esEs30(vwx131, vwx141, app(app(ty_Either, fc), fd)) -> new_esEs24(vwx131, vwx141, fc, fd) new_ltEs20(vwx132, vwx142, app(app(app(ty_@3, ed), ee), ef)) -> new_ltEs11(vwx132, vwx142, ed, ee, ef) new_esEs7(vwx31, vwx41, ty_Int) -> new_esEs21(vwx31, vwx41) new_esEs18(Double(vwx300, vwx301), Double(vwx400, vwx401)) -> new_esEs21(new_sr(vwx300, vwx401), new_sr(vwx301, vwx400)) new_primEqInt(Pos(Succ(vwx3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vwx4000))) -> False new_esEs34(vwx301, vwx401, ty_Int) -> new_esEs21(vwx301, vwx401) new_esEs32(vwx70, vwx73, ty_Char) -> new_esEs15(vwx70, vwx73) new_esEs26(vwx130, vwx140, ty_Char) -> new_esEs15(vwx130, vwx140) new_ltEs11(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), dh, ea, ff) -> new_pePe(new_lt20(vwx130, vwx140, dh), new_asAs(new_esEs29(vwx130, vwx140, dh), new_pePe(new_lt19(vwx131, vwx141, ea), new_asAs(new_esEs30(vwx131, vwx141, ea), new_ltEs20(vwx132, vwx142, ff))))) new_ltEs20(vwx132, vwx142, ty_@0) -> new_ltEs4(vwx132, vwx142) new_lt20(vwx130, vwx140, app(app(ty_@2, hd), he)) -> new_lt13(vwx130, vwx140, hd, he) new_esEs34(vwx301, vwx401, app(ty_[], eae)) -> new_esEs20(vwx301, vwx401, eae) new_lt23(vwx82, vwx84, ty_Float) -> new_lt9(vwx82, vwx84) new_ltEs23(vwx83, vwx85, ty_Int) -> new_ltEs16(vwx83, vwx85) new_esEs39(vwx300, vwx400, app(app(app(ty_@3, fde), fdf), fdg)) -> new_esEs22(vwx300, vwx400, fde, fdf, fdg) new_esEs7(vwx31, vwx41, app(ty_[], fab)) -> new_esEs20(vwx31, vwx41, fab) new_lt23(vwx82, vwx84, ty_Ordering) -> new_lt14(vwx82, vwx84) new_lt22(vwx69, vwx72, ty_Int) -> new_lt16(vwx69, vwx72) new_compare1(:(vwx30, vwx31), [], bde) -> GT new_esEs37(vwx301, vwx401, app(ty_Ratio, egb)) -> new_esEs23(vwx301, vwx401, egb) new_primEqNat0(Succ(vwx3000), Succ(vwx4000)) -> new_primEqNat0(vwx3000, vwx4000) new_esEs17(Nothing, Nothing, dbd) -> True new_ltEs8(Left(vwx130), Left(vwx140), ty_Integer, bd) -> new_ltEs17(vwx130, vwx140) new_compare30(Nothing, Just(vwx40), cdf) -> LT new_esEs17(Nothing, Just(vwx400), dbd) -> False new_esEs17(Just(vwx300), Nothing, dbd) -> False new_ltEs6(vwx131, vwx141, ty_Integer) -> new_ltEs17(vwx131, vwx141) new_esEs10(vwx31, vwx41, ty_Float) -> new_esEs14(vwx31, vwx41) new_ltEs20(vwx132, vwx142, app(app(ty_Either, eb), ec)) -> new_ltEs8(vwx132, vwx142, eb, ec) new_ltEs21(vwx71, vwx74, app(ty_[], bga)) -> new_ltEs13(vwx71, vwx74, bga) new_compare12(vwx134, vwx135, vwx136, vwx137, vwx138, vwx139, False, vwx141, ddf, ddg, ddh) -> new_compare13(vwx134, vwx135, vwx136, vwx137, vwx138, vwx139, vwx141, ddf, ddg, ddh) new_esEs39(vwx300, vwx400, ty_Integer) -> new_esEs19(vwx300, vwx400) new_not(True) -> False new_lt22(vwx69, vwx72, ty_Double) -> new_lt4(vwx69, vwx72) new_lt22(vwx69, vwx72, ty_Integer) -> new_lt17(vwx69, vwx72) new_ltEs20(vwx132, vwx142, ty_Ordering) -> new_ltEs14(vwx132, vwx142) new_ltEs12(vwx13, vwx14, dfd) -> new_fsEs(new_compare28(vwx13, vwx14, dfd)) new_lt5(vwx130, vwx140, ty_Float) -> new_lt9(vwx130, vwx140) new_primCompAux00(vwx41, LT) -> LT new_lt5(vwx130, vwx140, ty_Ordering) -> new_lt14(vwx130, vwx140) new_primCmpNat0(Zero, Zero) -> EQ new_esEs36(vwx300, vwx400, app(app(ty_@2, eea), eeb)) -> new_esEs13(vwx300, vwx400, eea, eeb) new_ltEs15(Just(vwx130), Just(vwx140), ty_Float) -> new_ltEs9(vwx130, vwx140) new_esEs38(vwx82, vwx84, app(ty_Ratio, fce)) -> new_esEs23(vwx82, vwx84, fce) new_ltEs20(vwx132, vwx142, ty_Integer) -> new_ltEs17(vwx132, vwx142) new_esEs28(vwx301, vwx401, ty_Int) -> new_esEs21(vwx301, vwx401) new_esEs10(vwx31, vwx41, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs22(vwx31, vwx41, chh, daa, dab) new_esEs38(vwx82, vwx84, ty_@0) -> new_esEs16(vwx82, vwx84) new_lt19(vwx131, vwx141, app(app(ty_Either, fc), fd)) -> new_lt8(vwx131, vwx141, fc, fd) new_esEs32(vwx70, vwx73, ty_Ordering) -> new_esEs12(vwx70, vwx73) new_esEs9(vwx30, vwx40, app(ty_Maybe, cgd)) -> new_esEs17(vwx30, vwx40, cgd) new_ltEs21(vwx71, vwx74, ty_Float) -> new_ltEs9(vwx71, vwx74) new_ltEs24(vwx58, vwx59, ty_Double) -> new_ltEs10(vwx58, vwx59) new_compare13(vwx134, vwx135, vwx136, vwx137, vwx138, vwx139, True, ddf, ddg, ddh) -> LT new_esEs24(Left(vwx300), Left(vwx400), app(app(ty_Either, ffe), fff), dcc) -> new_esEs24(vwx300, vwx400, ffe, fff) new_esEs25(False, False) -> True new_esEs30(vwx131, vwx141, ty_Float) -> new_esEs14(vwx131, vwx141) new_lt12(vwx69, vwx72, cad) -> new_esEs12(new_compare1(vwx69, vwx72, cad), LT) new_ltEs15(Just(vwx130), Just(vwx140), ty_Bool) -> new_ltEs7(vwx130, vwx140) new_ltEs6(vwx131, vwx141, ty_Char) -> new_ltEs18(vwx131, vwx141) new_esEs7(vwx31, vwx41, app(app(app(ty_@3, fac), fad), fae)) -> new_esEs22(vwx31, vwx41, fac, fad, fae) new_compare29(EQ, EQ) -> EQ new_esEs12(LT, LT) -> True new_ltEs19(vwx20, vwx21, ty_Char) -> new_ltEs18(vwx20, vwx21) new_ltEs8(Left(vwx130), Left(vwx140), app(app(ty_Either, bb), bc), bd) -> new_ltEs8(vwx130, vwx140, bb, bc) new_esEs36(vwx300, vwx400, ty_Char) -> new_esEs15(vwx300, vwx400) new_esEs39(vwx300, vwx400, app(app(ty_Either, fea), feb)) -> new_esEs24(vwx300, vwx400, fea, feb) new_primEqNat0(Succ(vwx3000), Zero) -> False new_primEqNat0(Zero, Succ(vwx4000)) -> False new_ltEs15(Just(vwx130), Just(vwx140), app(app(ty_@2, bdb), bdc)) -> new_ltEs5(vwx130, vwx140, bdb, bdc) new_esEs8(vwx32, vwx42, app(ty_Maybe, fbc)) -> new_esEs17(vwx32, vwx42, fbc) new_esEs29(vwx130, vwx140, app(app(ty_Either, gf), gg)) -> new_esEs24(vwx130, vwx140, gf, gg) new_esEs30(vwx131, vwx141, ty_Integer) -> new_esEs19(vwx131, vwx141) new_ltEs21(vwx71, vwx74, app(app(ty_@2, bgb), bgc)) -> new_ltEs5(vwx71, vwx74, bgb, bgc) new_esEs8(vwx32, vwx42, ty_Int) -> new_esEs21(vwx32, vwx42) new_lt23(vwx82, vwx84, app(app(app(ty_@3, ccg), cch), cda)) -> new_lt10(vwx82, vwx84, ccg, cch, cda) new_compare10(vwx105, vwx106, True, fcg, fch) -> LT new_esEs4(vwx30, vwx40, ty_Float) -> new_esEs14(vwx30, vwx40) new_esEs39(vwx300, vwx400, ty_Float) -> new_esEs14(vwx300, vwx400) new_ltEs19(vwx20, vwx21, app(app(app(ty_@3, cfc), cfd), cfe)) -> new_ltEs11(vwx20, vwx21, cfc, cfd, cfe) new_esEs5(vwx30, vwx40, ty_Bool) -> new_esEs25(vwx30, vwx40) new_ltEs20(vwx132, vwx142, ty_Bool) -> new_ltEs7(vwx132, vwx142) new_esEs6(vwx30, vwx40, ty_Char) -> new_esEs15(vwx30, vwx40) new_esEs8(vwx32, vwx42, app(app(ty_@2, fba), fbb)) -> new_esEs13(vwx32, vwx42, fba, fbb) new_ltEs19(vwx20, vwx21, ty_@0) -> new_ltEs4(vwx20, vwx21) new_compare18(vwx30, vwx40, app(ty_[], bec)) -> new_compare1(vwx30, vwx40, bec) new_primCompAux00(vwx41, GT) -> GT new_ltEs18(vwx13, vwx14) -> new_fsEs(new_compare11(vwx13, vwx14)) new_esEs10(vwx31, vwx41, app(ty_Maybe, chf)) -> new_esEs17(vwx31, vwx41, chf) new_ltEs14(EQ, EQ) -> True new_esEs37(vwx301, vwx401, ty_Char) -> new_esEs15(vwx301, vwx401) new_esEs6(vwx30, vwx40, app(ty_[], egh)) -> new_esEs20(vwx30, vwx40, egh) new_esEs17(Just(vwx300), Just(vwx400), app(ty_Ratio, ddc)) -> new_esEs23(vwx300, vwx400, ddc) new_compare8(@2(vwx30, vwx31), @2(vwx40, vwx41), cah, cba) -> new_compare24(vwx30, vwx31, vwx40, vwx41, new_asAs(new_esEs9(vwx30, vwx40, cah), new_esEs10(vwx31, vwx41, cba)), cah, cba) new_ltEs15(Just(vwx130), Just(vwx140), ty_Double) -> new_ltEs10(vwx130, vwx140) new_esEs35(vwx302, vwx402, app(app(ty_Either, ecd), ece)) -> new_esEs24(vwx302, vwx402, ecd, ece) new_compare210(vwx69, vwx70, vwx71, vwx72, vwx73, vwx74, True, bfb, bfc, bgg) -> EQ new_esEs29(vwx130, vwx140, ty_Double) -> new_esEs18(vwx130, vwx140) new_compare24(vwx82, vwx83, vwx84, vwx85, False, cbb, ccf) -> new_compare111(vwx82, vwx83, vwx84, vwx85, new_lt23(vwx82, vwx84, cbb), new_asAs(new_esEs38(vwx82, vwx84, cbb), new_ltEs23(vwx83, vwx85, ccf)), cbb, ccf) new_esEs17(Just(vwx300), Just(vwx400), ty_@0) -> new_esEs16(vwx300, vwx400) new_esEs25(False, True) -> False new_esEs25(True, False) -> False new_compare18(vwx30, vwx40, app(app(app(ty_@3, bdh), bea), beb)) -> new_compare27(vwx30, vwx40, bdh, bea, beb) new_primCmpInt(Pos(Succ(vwx300)), Neg(vwx40)) -> GT new_ltEs24(vwx58, vwx59, ty_@0) -> new_ltEs4(vwx58, vwx59) new_ltEs10(vwx13, vwx14) -> new_fsEs(new_compare7(vwx13, vwx14)) new_ltEs20(vwx132, vwx142, app(app(ty_@2, eh), fa)) -> new_ltEs5(vwx132, vwx142, eh, fa) new_lt22(vwx69, vwx72, app(app(app(ty_@3, caa), cab), cac)) -> new_lt10(vwx69, vwx72, caa, cab, cac) new_esEs11(vwx30, vwx40, ty_Bool) -> new_esEs25(vwx30, vwx40) new_esEs4(vwx30, vwx40, ty_Bool) -> new_esEs25(vwx30, vwx40) new_ltEs14(EQ, LT) -> False new_esEs26(vwx130, vwx140, app(app(ty_@2, bca), bcb)) -> new_esEs13(vwx130, vwx140, bca, bcb) new_compare18(vwx30, vwx40, ty_Integer) -> new_compare15(vwx30, vwx40) new_esEs38(vwx82, vwx84, ty_Int) -> new_esEs21(vwx82, vwx84) new_ltEs20(vwx132, vwx142, ty_Double) -> new_ltEs10(vwx132, vwx142) new_esEs22(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), dbf, dbg, dbh) -> new_asAs(new_esEs33(vwx300, vwx400, dbf), new_asAs(new_esEs34(vwx301, vwx401, dbg), new_esEs35(vwx302, vwx402, dbh))) new_lt23(vwx82, vwx84, ty_Char) -> new_lt18(vwx82, vwx84) new_esEs30(vwx131, vwx141, ty_Double) -> new_esEs18(vwx131, vwx141) new_lt20(vwx130, vwx140, app(app(ty_Either, gf), gg)) -> new_lt8(vwx130, vwx140, gf, gg) new_lt23(vwx82, vwx84, ty_Integer) -> new_lt17(vwx82, vwx84) new_ltEs24(vwx58, vwx59, app(app(app(ty_@3, cea), ceb), cec)) -> new_ltEs11(vwx58, vwx59, cea, ceb, cec) new_ltEs6(vwx131, vwx141, ty_Ordering) -> new_ltEs14(vwx131, vwx141) new_esEs35(vwx302, vwx402, ty_Integer) -> new_esEs19(vwx302, vwx402) new_esEs29(vwx130, vwx140, app(ty_[], hc)) -> new_esEs20(vwx130, vwx140, hc) new_ltEs24(vwx58, vwx59, ty_Integer) -> new_ltEs17(vwx58, vwx59) new_esEs17(Just(vwx300), Just(vwx400), ty_Ordering) -> new_esEs12(vwx300, vwx400) new_esEs35(vwx302, vwx402, ty_Double) -> new_esEs18(vwx302, vwx402) new_primPlusNat1(Succ(vwx16200), Succ(vwx31000)) -> Succ(Succ(new_primPlusNat1(vwx16200, vwx31000))) new_esEs9(vwx30, vwx40, ty_Ordering) -> new_esEs12(vwx30, vwx40) new_compare29(GT, GT) -> EQ new_esEs33(vwx300, vwx400, ty_Ordering) -> new_esEs12(vwx300, vwx400) new_lt5(vwx130, vwx140, app(app(ty_Either, bbb), bbc)) -> new_lt8(vwx130, vwx140, bbb, bbc) new_primCmpNat0(Zero, Succ(vwx400)) -> LT new_esEs30(vwx131, vwx141, app(ty_[], gb)) -> new_esEs20(vwx131, vwx141, gb) new_lt23(vwx82, vwx84, app(ty_[], cdb)) -> new_lt12(vwx82, vwx84, cdb) new_ltEs15(Just(vwx130), Just(vwx140), app(ty_[], bda)) -> new_ltEs13(vwx130, vwx140, bda) new_esEs20([], [], dbe) -> True new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_lt18(vwx69, vwx72) -> new_esEs12(new_compare11(vwx69, vwx72), LT) new_ltEs19(vwx20, vwx21, ty_Double) -> new_ltEs10(vwx20, vwx21) new_ltEs19(vwx20, vwx21, app(ty_[], cff)) -> new_ltEs13(vwx20, vwx21, cff) new_esEs8(vwx32, vwx42, app(app(app(ty_@3, fbe), fbf), fbg)) -> new_esEs22(vwx32, vwx42, fbe, fbf, fbg) new_esEs10(vwx31, vwx41, ty_Int) -> new_esEs21(vwx31, vwx41) new_lt5(vwx130, vwx140, ty_@0) -> new_lt7(vwx130, vwx140) new_esEs33(vwx300, vwx400, app(app(ty_Either, dhh), eaa)) -> new_esEs24(vwx300, vwx400, dhh, eaa) new_compare18(vwx30, vwx40, ty_Ordering) -> new_compare29(vwx30, vwx40) new_esEs26(vwx130, vwx140, app(ty_Ratio, daf)) -> new_esEs23(vwx130, vwx140, daf) new_lt19(vwx131, vwx141, app(ty_[], gb)) -> new_lt12(vwx131, vwx141, gb) new_primCmpNat0(Succ(vwx300), Zero) -> GT new_ltEs21(vwx71, vwx74, app(app(ty_Either, bfd), bfe)) -> new_ltEs8(vwx71, vwx74, bfd, bfe) new_esEs38(vwx82, vwx84, app(app(app(ty_@3, ccg), cch), cda)) -> new_esEs22(vwx82, vwx84, ccg, cch, cda) new_compare26(Float(vwx30, Pos(vwx310)), Float(vwx40, Neg(vwx410))) -> new_compare16(new_sr(vwx30, Pos(vwx410)), new_sr(Neg(vwx310), vwx40)) new_compare26(Float(vwx30, Neg(vwx310)), Float(vwx40, Pos(vwx410))) -> new_compare16(new_sr(vwx30, Neg(vwx410)), new_sr(Pos(vwx310), vwx40)) new_pePe(False, vwx161) -> vwx161 new_esEs17(Just(vwx300), Just(vwx400), ty_Int) -> new_esEs21(vwx300, vwx400) new_lt19(vwx131, vwx141, ty_Int) -> new_lt16(vwx131, vwx141) new_esEs6(vwx30, vwx40, app(app(ty_Either, ehe), ehf)) -> new_esEs24(vwx30, vwx40, ehe, ehf) new_esEs9(vwx30, vwx40, ty_Integer) -> new_esEs19(vwx30, vwx40) new_esEs10(vwx31, vwx41, app(app(ty_Either, dad), dae)) -> new_esEs24(vwx31, vwx41, dad, dae) new_esEs11(vwx30, vwx40, ty_Float) -> new_esEs14(vwx30, vwx40) new_esEs9(vwx30, vwx40, ty_Float) -> new_esEs14(vwx30, vwx40) new_esEs5(vwx30, vwx40, app(app(ty_@2, ecf), ecg)) -> new_esEs13(vwx30, vwx40, ecf, ecg) new_compare25(vwx20, vwx21, True, ceh, dah) -> EQ new_lt22(vwx69, vwx72, app(ty_Maybe, cag)) -> new_lt15(vwx69, vwx72, cag) new_ltEs6(vwx131, vwx141, app(app(ty_@2, bag), bah)) -> new_ltEs5(vwx131, vwx141, bag, bah) new_ltEs15(Just(vwx130), Just(vwx140), app(app(ty_Either, bcd), bce)) -> new_ltEs8(vwx130, vwx140, bcd, bce) new_ltEs8(Left(vwx130), Left(vwx140), ty_Double, bd) -> new_ltEs10(vwx130, vwx140) new_esEs30(vwx131, vwx141, app(app(ty_@2, gc), gd)) -> new_esEs13(vwx131, vwx141, gc, gd) new_esEs34(vwx301, vwx401, ty_Float) -> new_esEs14(vwx301, vwx401) new_ltEs15(Just(vwx130), Just(vwx140), ty_Char) -> new_ltEs18(vwx130, vwx140) new_esEs29(vwx130, vwx140, ty_Bool) -> new_esEs25(vwx130, vwx140) new_ltEs6(vwx131, vwx141, app(ty_Maybe, bba)) -> new_ltEs15(vwx131, vwx141, bba) new_compare111(vwx149, vwx150, vwx151, vwx152, False, vwx154, fcc, fcd) -> new_compare110(vwx149, vwx150, vwx151, vwx152, vwx154, fcc, fcd) new_ltEs19(vwx20, vwx21, ty_Integer) -> new_ltEs17(vwx20, vwx21) new_esEs34(vwx301, vwx401, app(ty_Ratio, eba)) -> new_esEs23(vwx301, vwx401, eba) new_compare29(EQ, GT) -> LT new_compare18(vwx30, vwx40, ty_Char) -> new_compare11(vwx30, vwx40) new_esEs32(vwx70, vwx73, app(ty_Maybe, bhf)) -> new_esEs17(vwx70, vwx73, bhf) new_esEs39(vwx300, vwx400, app(app(ty_@2, fda), fdb)) -> new_esEs13(vwx300, vwx400, fda, fdb) new_esEs24(Left(vwx300), Left(vwx400), ty_Bool, dcc) -> new_esEs25(vwx300, vwx400) new_esEs38(vwx82, vwx84, ty_Ordering) -> new_esEs12(vwx82, vwx84) new_esEs11(vwx30, vwx40, app(ty_Ratio, dge)) -> new_esEs23(vwx30, vwx40, dge) new_compare11(Char(vwx30), Char(vwx40)) -> new_primCmpNat0(vwx30, vwx40) new_esEs17(Just(vwx300), Just(vwx400), ty_Double) -> new_esEs18(vwx300, vwx400) new_ltEs6(vwx131, vwx141, app(ty_Ratio, dag)) -> new_ltEs12(vwx131, vwx141, dag) new_primEqInt(Pos(Zero), Neg(Succ(vwx4000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vwx4000))) -> False new_esEs8(vwx32, vwx42, app(app(ty_Either, fca), fcb)) -> new_esEs24(vwx32, vwx42, fca, fcb) new_esEs5(vwx30, vwx40, app(ty_Maybe, ech)) -> new_esEs17(vwx30, vwx40, ech) new_ltEs21(vwx71, vwx74, ty_Char) -> new_ltEs18(vwx71, vwx74) new_compare9(True, False) -> GT new_esEs7(vwx31, vwx41, ty_@0) -> new_esEs16(vwx31, vwx41) new_ltEs19(vwx20, vwx21, ty_Ordering) -> new_ltEs14(vwx20, vwx21) new_esEs11(vwx30, vwx40, ty_Ordering) -> new_esEs12(vwx30, vwx40) new_esEs39(vwx300, vwx400, app(ty_Maybe, fdc)) -> new_esEs17(vwx300, vwx400, fdc) new_esEs4(vwx30, vwx40, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_esEs22(vwx30, vwx40, dbf, dbg, dbh) new_ltEs15(Nothing, Nothing, dfe) -> True new_ltEs14(EQ, GT) -> True new_esEs34(vwx301, vwx401, ty_Integer) -> new_esEs19(vwx301, vwx401) new_ltEs14(GT, EQ) -> False new_ltEs6(vwx131, vwx141, app(app(ty_Either, baa), bab)) -> new_ltEs8(vwx131, vwx141, baa, bab) new_esEs30(vwx131, vwx141, ty_Bool) -> new_esEs25(vwx131, vwx141) new_ltEs23(vwx83, vwx85, ty_Integer) -> new_ltEs17(vwx83, vwx85) new_esEs7(vwx31, vwx41, app(ty_Maybe, faa)) -> new_esEs17(vwx31, vwx41, faa) new_ltEs15(Just(vwx130), Nothing, dfe) -> False new_esEs8(vwx32, vwx42, ty_Bool) -> new_esEs25(vwx32, vwx42) new_esEs31(vwx69, vwx72, ty_Double) -> new_esEs18(vwx69, vwx72) new_primEqInt(Neg(Succ(vwx3000)), Neg(Succ(vwx4000))) -> new_primEqNat0(vwx3000, vwx4000) new_compare19(Right(vwx30), Right(vwx40), h, ba) -> new_compare25(vwx30, vwx40, new_esEs5(vwx30, vwx40, ba), h, ba) new_esEs24(Right(vwx300), Right(vwx400), dcb, app(app(ty_Either, fgg), fgh)) -> new_esEs24(vwx300, vwx400, fgg, fgh) new_esEs31(vwx69, vwx72, app(app(ty_Either, bhg), bhh)) -> new_esEs24(vwx69, vwx72, bhg, bhh) new_esEs34(vwx301, vwx401, ty_Ordering) -> new_esEs12(vwx301, vwx401) new_lt23(vwx82, vwx84, app(app(ty_@2, cdc), cdd)) -> new_lt13(vwx82, vwx84, cdc, cdd) new_esEs9(vwx30, vwx40, ty_Double) -> new_esEs18(vwx30, vwx40) new_esEs17(Just(vwx300), Just(vwx400), app(app(ty_Either, ddd), dde)) -> new_esEs24(vwx300, vwx400, ddd, dde) new_compare29(LT, LT) -> EQ new_esEs7(vwx31, vwx41, ty_Integer) -> new_esEs19(vwx31, vwx41) new_primCmpInt(Neg(Zero), Pos(Succ(vwx400))) -> LT new_ltEs8(Right(vwx130), Right(vwx140), ce, ty_Char) -> new_ltEs18(vwx130, vwx140) new_esEs24(Right(vwx300), Right(vwx400), dcb, app(app(app(ty_@3, fgc), fgd), fge)) -> new_esEs22(vwx300, vwx400, fgc, fgd, fge) new_primMulInt(Pos(vwx400), Pos(vwx310)) -> Pos(new_primMulNat0(vwx400, vwx310)) new_ltEs8(Left(vwx130), Left(vwx140), ty_@0, bd) -> new_ltEs4(vwx130, vwx140) new_esEs37(vwx301, vwx401, app(ty_[], eff)) -> new_esEs20(vwx301, vwx401, eff) new_ltEs14(LT, GT) -> True new_esEs11(vwx30, vwx40, ty_Integer) -> new_esEs19(vwx30, vwx40) new_compare19(Right(vwx30), Left(vwx40), h, ba) -> GT new_ltEs14(GT, GT) -> True new_esEs26(vwx130, vwx140, ty_Ordering) -> new_esEs12(vwx130, vwx140) new_esEs11(vwx30, vwx40, ty_Double) -> new_esEs18(vwx30, vwx40) new_compare212(vwx58, vwx59, True, fec) -> EQ new_esEs10(vwx31, vwx41, ty_Bool) -> new_esEs25(vwx31, vwx41) new_compare211(vwx13, vwx14, False, dfc, be) -> new_compare14(vwx13, vwx14, new_ltEs22(vwx13, vwx14, dfc), dfc, be) new_ltEs8(Right(vwx130), Left(vwx140), ce, bd) -> False new_esEs32(vwx70, vwx73, ty_@0) -> new_esEs16(vwx70, vwx73) new_esEs38(vwx82, vwx84, ty_Char) -> new_esEs15(vwx82, vwx84) new_lt6(vwx69, vwx72) -> new_esEs12(new_compare9(vwx69, vwx72), LT) new_ltEs21(vwx71, vwx74, app(ty_Maybe, bgd)) -> new_ltEs15(vwx71, vwx74, bgd) new_primMulNat0(Succ(vwx4000), Zero) -> Zero new_primMulNat0(Zero, Succ(vwx3100)) -> Zero new_primPlusNat0(Zero, vwx3100) -> Succ(vwx3100) new_esEs31(vwx69, vwx72, ty_Integer) -> new_esEs19(vwx69, vwx72) new_esEs34(vwx301, vwx401, ty_Double) -> new_esEs18(vwx301, vwx401) new_esEs5(vwx30, vwx40, ty_@0) -> new_esEs16(vwx30, vwx40) new_ltEs23(vwx83, vwx85, ty_Char) -> new_ltEs18(vwx83, vwx85) new_ltEs21(vwx71, vwx74, app(ty_Ratio, dfb)) -> new_ltEs12(vwx71, vwx74, dfb) new_ltEs5(@2(vwx130, vwx131), @2(vwx140, vwx141), hh, bbd) -> new_pePe(new_lt5(vwx130, vwx140, hh), new_asAs(new_esEs26(vwx130, vwx140, hh), new_ltEs6(vwx131, vwx141, bbd))) new_lt21(vwx70, vwx73, app(app(app(ty_@3, bgh), bha), bhb)) -> new_lt10(vwx70, vwx73, bgh, bha, bhb) new_esEs31(vwx69, vwx72, app(app(app(ty_@3, caa), cab), cac)) -> new_esEs22(vwx69, vwx72, caa, cab, cac) new_esEs24(Left(vwx300), Right(vwx400), dcb, dcc) -> False new_esEs24(Right(vwx300), Left(vwx400), dcb, dcc) -> False new_compare12(vwx134, vwx135, vwx136, vwx137, vwx138, vwx139, True, vwx141, ddf, ddg, ddh) -> new_compare13(vwx134, vwx135, vwx136, vwx137, vwx138, vwx139, True, ddf, ddg, ddh) new_esEs10(vwx31, vwx41, ty_Double) -> new_esEs18(vwx31, vwx41) new_ltEs8(Left(vwx130), Left(vwx140), app(ty_Ratio, fha), bd) -> new_ltEs12(vwx130, vwx140, fha) new_lt22(vwx69, vwx72, ty_Float) -> new_lt9(vwx69, vwx72) new_lt21(vwx70, vwx73, ty_Int) -> new_lt16(vwx70, vwx73) new_esEs6(vwx30, vwx40, ty_Bool) -> new_esEs25(vwx30, vwx40) new_esEs29(vwx130, vwx140, app(ty_Maybe, hf)) -> new_esEs17(vwx130, vwx140, hf) new_esEs7(vwx31, vwx41, ty_Double) -> new_esEs18(vwx31, vwx41) new_compare9(True, True) -> EQ new_ltEs8(Left(vwx130), Left(vwx140), ty_Int, bd) -> new_ltEs16(vwx130, vwx140) new_ltEs8(Right(vwx130), Right(vwx140), ce, app(app(ty_Either, cf), cg)) -> new_ltEs8(vwx130, vwx140, cf, cg) new_esEs32(vwx70, vwx73, ty_Integer) -> new_esEs19(vwx70, vwx73) new_ltEs22(vwx13, vwx14, ty_Float) -> new_ltEs9(vwx13, vwx14) new_esEs33(vwx300, vwx400, ty_Double) -> new_esEs18(vwx300, vwx400) new_esEs4(vwx30, vwx40, app(ty_[], dbe)) -> new_esEs20(vwx30, vwx40, dbe) new_compare18(vwx30, vwx40, ty_Float) -> new_compare26(vwx30, vwx40) new_esEs36(vwx300, vwx400, ty_Int) -> new_esEs21(vwx300, vwx400) new_ltEs19(vwx20, vwx21, app(app(ty_Either, cfa), cfb)) -> new_ltEs8(vwx20, vwx21, cfa, cfb) new_lt21(vwx70, vwx73, ty_Ordering) -> new_lt14(vwx70, vwx73) new_ltEs8(Right(vwx130), Right(vwx140), ce, app(ty_[], dd)) -> new_ltEs13(vwx130, vwx140, dd) new_ltEs8(Right(vwx130), Right(vwx140), ce, ty_Float) -> new_ltEs9(vwx130, vwx140) new_ltEs22(vwx13, vwx14, app(ty_Ratio, dfd)) -> new_ltEs12(vwx13, vwx14, dfd) new_compare1([], [], bde) -> EQ new_esEs24(Left(vwx300), Left(vwx400), ty_Float, dcc) -> new_esEs14(vwx300, vwx400) new_ltEs7(False, True) -> True new_esEs39(vwx300, vwx400, app(ty_[], fdd)) -> new_esEs20(vwx300, vwx400, fdd) new_ltEs8(Left(vwx130), Left(vwx140), ty_Ordering, bd) -> new_ltEs14(vwx130, vwx140) new_esEs17(Just(vwx300), Just(vwx400), ty_Integer) -> new_esEs19(vwx300, vwx400) new_esEs30(vwx131, vwx141, ty_@0) -> new_esEs16(vwx131, vwx141) new_primPlusNat1(Succ(vwx16200), Zero) -> Succ(vwx16200) new_primPlusNat1(Zero, Succ(vwx31000)) -> Succ(vwx31000) new_lt20(vwx130, vwx140, ty_Int) -> new_lt16(vwx130, vwx140) new_esEs32(vwx70, vwx73, ty_Double) -> new_esEs18(vwx70, vwx73) new_esEs33(vwx300, vwx400, ty_Integer) -> new_esEs19(vwx300, vwx400) new_esEs31(vwx69, vwx72, ty_Float) -> new_esEs14(vwx69, vwx72) new_ltEs8(Left(vwx130), Left(vwx140), ty_Bool, bd) -> new_ltEs7(vwx130, vwx140) new_compare18(vwx30, vwx40, ty_Int) -> new_compare16(vwx30, vwx40) new_esEs32(vwx70, vwx73, ty_Bool) -> new_esEs25(vwx70, vwx73) new_ltEs21(vwx71, vwx74, ty_Integer) -> new_ltEs17(vwx71, vwx74) new_esEs35(vwx302, vwx402, ty_Int) -> new_esEs21(vwx302, vwx402) new_esEs24(Right(vwx300), Right(vwx400), dcb, ty_Ordering) -> new_esEs12(vwx300, vwx400) new_ltEs4(vwx13, vwx14) -> new_fsEs(new_compare6(vwx13, vwx14)) new_esEs29(vwx130, vwx140, app(app(ty_@2, hd), he)) -> new_esEs13(vwx130, vwx140, hd, he) new_esEs10(vwx31, vwx41, ty_Integer) -> new_esEs19(vwx31, vwx41) new_lt21(vwx70, vwx73, ty_Float) -> new_lt9(vwx70, vwx73) new_esEs6(vwx30, vwx40, app(app(app(ty_@3, eha), ehb), ehc)) -> new_esEs22(vwx30, vwx40, eha, ehb, ehc) new_lt21(vwx70, vwx73, app(ty_[], bhc)) -> new_lt12(vwx70, vwx73, bhc) new_ltEs23(vwx83, vwx85, app(ty_Ratio, fcf)) -> new_ltEs12(vwx83, vwx85, fcf) new_ltEs7(True, False) -> False new_compare210(vwx69, vwx70, vwx71, vwx72, vwx73, vwx74, False, bfb, bfc, bgg) -> new_compare12(vwx69, vwx70, vwx71, vwx72, vwx73, vwx74, new_lt22(vwx69, vwx72, bfb), new_asAs(new_esEs31(vwx69, vwx72, bfb), new_pePe(new_lt21(vwx70, vwx73, bfc), new_asAs(new_esEs32(vwx70, vwx73, bfc), new_ltEs21(vwx71, vwx74, bgg)))), bfb, bfc, bgg) new_esEs31(vwx69, vwx72, ty_@0) -> new_esEs16(vwx69, vwx72) new_ltEs8(Right(vwx130), Right(vwx140), ce, app(app(ty_@2, de), df)) -> new_ltEs5(vwx130, vwx140, de, df) new_fsEs(vwx156) -> new_not(new_esEs12(vwx156, GT)) new_esEs26(vwx130, vwx140, app(ty_[], bbh)) -> new_esEs20(vwx130, vwx140, bbh) new_esEs24(Right(vwx300), Right(vwx400), dcb, app(ty_Maybe, fga)) -> new_esEs17(vwx300, vwx400, fga) new_primMulInt(Neg(vwx400), Neg(vwx310)) -> Pos(new_primMulNat0(vwx400, vwx310)) new_primCmpInt(Pos(Zero), Pos(Succ(vwx400))) -> new_primCmpNat0(Zero, Succ(vwx400)) new_ltEs7(False, False) -> True new_esEs31(vwx69, vwx72, ty_Bool) -> new_esEs25(vwx69, vwx72) new_esEs36(vwx300, vwx400, app(ty_Ratio, eeh)) -> new_esEs23(vwx300, vwx400, eeh) new_esEs6(vwx30, vwx40, app(ty_Maybe, egg)) -> new_esEs17(vwx30, vwx40, egg) new_ltEs22(vwx13, vwx14, ty_Integer) -> new_ltEs17(vwx13, vwx14) new_esEs19(Integer(vwx300), Integer(vwx400)) -> new_primEqInt(vwx300, vwx400) new_esEs5(vwx30, vwx40, app(app(app(ty_@3, edb), edc), edd)) -> new_esEs22(vwx30, vwx40, edb, edc, edd) new_lt20(vwx130, vwx140, app(ty_[], hc)) -> new_lt12(vwx130, vwx140, hc) new_esEs32(vwx70, vwx73, ty_Float) -> new_esEs14(vwx70, vwx73) new_esEs30(vwx131, vwx141, app(app(app(ty_@3, fg), fh), ga)) -> new_esEs22(vwx131, vwx141, fg, fh, ga) new_esEs7(vwx31, vwx41, ty_Bool) -> new_esEs25(vwx31, vwx41) new_esEs30(vwx131, vwx141, app(ty_Maybe, ge)) -> new_esEs17(vwx131, vwx141, ge) new_esEs7(vwx31, vwx41, ty_Float) -> new_esEs14(vwx31, vwx41) new_lt19(vwx131, vwx141, app(app(app(ty_@3, fg), fh), ga)) -> new_lt10(vwx131, vwx141, fg, fh, ga) new_ltEs19(vwx20, vwx21, app(ty_Maybe, cga)) -> new_ltEs15(vwx20, vwx21, cga) new_esEs8(vwx32, vwx42, ty_Integer) -> new_esEs19(vwx32, vwx42) new_ltEs23(vwx83, vwx85, ty_Float) -> new_ltEs9(vwx83, vwx85) new_esEs8(vwx32, vwx42, ty_Double) -> new_esEs18(vwx32, vwx42) new_esEs32(vwx70, vwx73, app(app(ty_Either, bge), bgf)) -> new_esEs24(vwx70, vwx73, bge, bgf) new_lt5(vwx130, vwx140, ty_Int) -> new_lt16(vwx130, vwx140) new_esEs29(vwx130, vwx140, app(app(app(ty_@3, gh), ha), hb)) -> new_esEs22(vwx130, vwx140, gh, ha, hb) new_esEs24(Left(vwx300), Left(vwx400), ty_@0, dcc) -> new_esEs16(vwx300, vwx400) new_esEs36(vwx300, vwx400, ty_Ordering) -> new_esEs12(vwx300, vwx400) new_lt5(vwx130, vwx140, app(ty_[], bbh)) -> new_lt12(vwx130, vwx140, bbh) new_lt22(vwx69, vwx72, ty_Ordering) -> new_lt14(vwx69, vwx72) new_lt4(vwx69, vwx72) -> new_esEs12(new_compare7(vwx69, vwx72), LT) new_ltEs15(Just(vwx130), Just(vwx140), app(ty_Maybe, bdd)) -> new_ltEs15(vwx130, vwx140, bdd) new_esEs24(Left(vwx300), Left(vwx400), app(ty_Ratio, ffd), dcc) -> new_esEs23(vwx300, vwx400, ffd) new_esEs4(vwx30, vwx40, ty_Char) -> new_esEs15(vwx30, vwx40) new_compare7(Double(vwx30, Pos(vwx310)), Double(vwx40, Pos(vwx410))) -> new_compare16(new_sr(vwx30, Pos(vwx410)), new_sr(Pos(vwx310), vwx40)) new_esEs25(True, True) -> True new_esEs38(vwx82, vwx84, app(ty_[], cdb)) -> new_esEs20(vwx82, vwx84, cdb) new_compare28(:%(vwx30, vwx31), :%(vwx40, vwx41), ty_Integer) -> new_compare15(new_sr0(vwx30, vwx41), new_sr0(vwx40, vwx31)) new_ltEs14(GT, LT) -> False new_esEs30(vwx131, vwx141, ty_Char) -> new_esEs15(vwx131, vwx141) new_esEs26(vwx130, vwx140, app(app(ty_Either, bbb), bbc)) -> new_esEs24(vwx130, vwx140, bbb, bbc) new_lt19(vwx131, vwx141, ty_Ordering) -> new_lt14(vwx131, vwx141) new_esEs10(vwx31, vwx41, ty_@0) -> new_esEs16(vwx31, vwx41) new_lt20(vwx130, vwx140, app(app(app(ty_@3, gh), ha), hb)) -> new_lt10(vwx130, vwx140, gh, ha, hb) new_lt17(vwx69, vwx72) -> new_esEs12(new_compare15(vwx69, vwx72), LT) new_compare212(vwx58, vwx59, False, fec) -> new_compare17(vwx58, vwx59, new_ltEs24(vwx58, vwx59, fec), fec) new_compare19(Left(vwx30), Left(vwx40), h, ba) -> new_compare211(vwx30, vwx40, new_esEs4(vwx30, vwx40, h), h, ba) new_primMulInt(Pos(vwx400), Neg(vwx310)) -> Neg(new_primMulNat0(vwx400, vwx310)) new_primMulInt(Neg(vwx400), Pos(vwx310)) -> Neg(new_primMulNat0(vwx400, vwx310)) new_esEs29(vwx130, vwx140, ty_Ordering) -> new_esEs12(vwx130, vwx140) new_esEs39(vwx300, vwx400, ty_Char) -> new_esEs15(vwx300, vwx400) new_esEs24(Left(vwx300), Left(vwx400), ty_Double, dcc) -> new_esEs18(vwx300, vwx400) new_esEs10(vwx31, vwx41, app(ty_Ratio, dac)) -> new_esEs23(vwx31, vwx41, dac) new_ltEs22(vwx13, vwx14, ty_Char) -> new_ltEs18(vwx13, vwx14) new_ltEs6(vwx131, vwx141, app(ty_[], baf)) -> new_ltEs13(vwx131, vwx141, baf) new_esEs38(vwx82, vwx84, ty_Bool) -> new_esEs25(vwx82, vwx84) new_ltEs13(vwx13, vwx14, hg) -> new_fsEs(new_compare1(vwx13, vwx14, hg)) new_esEs24(Right(vwx300), Right(vwx400), dcb, app(ty_Ratio, fgf)) -> new_esEs23(vwx300, vwx400, fgf) new_compare15(Integer(vwx30), Integer(vwx40)) -> new_primCmpInt(vwx30, vwx40) new_ltEs22(vwx13, vwx14, ty_@0) -> new_ltEs4(vwx13, vwx14) new_esEs37(vwx301, vwx401, ty_Double) -> new_esEs18(vwx301, vwx401) new_esEs32(vwx70, vwx73, ty_Int) -> new_esEs21(vwx70, vwx73) new_ltEs22(vwx13, vwx14, app(app(ty_Either, ce), bd)) -> new_ltEs8(vwx13, vwx14, ce, bd) new_ltEs22(vwx13, vwx14, app(app(app(ty_@3, dh), ea), ff)) -> new_ltEs11(vwx13, vwx14, dh, ea, ff) new_lt7(vwx69, vwx72) -> new_esEs12(new_compare6(vwx69, vwx72), LT) new_lt22(vwx69, vwx72, app(app(ty_@2, cae), caf)) -> new_lt13(vwx69, vwx72, cae, caf) new_sr0(Integer(vwx400), Integer(vwx310)) -> Integer(new_primMulInt(vwx400, vwx310)) new_esEs24(Left(vwx300), Left(vwx400), ty_Int, dcc) -> new_esEs21(vwx300, vwx400) new_esEs35(vwx302, vwx402, ty_Ordering) -> new_esEs12(vwx302, vwx402) new_esEs5(vwx30, vwx40, ty_Int) -> new_esEs21(vwx30, vwx40) new_lt19(vwx131, vwx141, ty_Integer) -> new_lt17(vwx131, vwx141) new_esEs8(vwx32, vwx42, app(ty_Ratio, fbh)) -> new_esEs23(vwx32, vwx42, fbh) new_lt19(vwx131, vwx141, ty_Float) -> new_lt9(vwx131, vwx141) new_esEs8(vwx32, vwx42, ty_Ordering) -> new_esEs12(vwx32, vwx42) new_ltEs19(vwx20, vwx21, ty_Int) -> new_ltEs16(vwx20, vwx21) new_esEs37(vwx301, vwx401, ty_Integer) -> new_esEs19(vwx301, vwx401) new_esEs37(vwx301, vwx401, app(app(app(ty_@3, efg), efh), ega)) -> new_esEs22(vwx301, vwx401, efg, efh, ega) new_compare27(@3(vwx30, vwx31, vwx32), @3(vwx40, vwx41, vwx42), beg, beh, bfa) -> new_compare210(vwx30, vwx31, vwx32, vwx40, vwx41, vwx42, new_asAs(new_esEs6(vwx30, vwx40, beg), new_asAs(new_esEs7(vwx31, vwx41, beh), new_esEs8(vwx32, vwx42, bfa))), beg, beh, bfa) new_esEs9(vwx30, vwx40, app(ty_[], cge)) -> new_esEs20(vwx30, vwx40, cge) new_esEs36(vwx300, vwx400, app(ty_[], eed)) -> new_esEs20(vwx300, vwx400, eed) new_esEs31(vwx69, vwx72, app(ty_Ratio, deh)) -> new_esEs23(vwx69, vwx72, deh) new_lt19(vwx131, vwx141, ty_@0) -> new_lt7(vwx131, vwx141) new_esEs11(vwx30, vwx40, app(app(ty_Either, dgf), dgg)) -> new_esEs24(vwx30, vwx40, dgf, dgg) new_ltEs8(Right(vwx130), Right(vwx140), ce, app(app(app(ty_@3, da), db), dc)) -> new_ltEs11(vwx130, vwx140, da, db, dc) new_esEs4(vwx30, vwx40, app(ty_Ratio, dca)) -> new_esEs23(vwx30, vwx40, dca) new_primCompAux0(vwx30, vwx40, vwx8, bde) -> new_primCompAux00(vwx8, new_compare18(vwx30, vwx40, bde)) new_esEs6(vwx30, vwx40, ty_Float) -> new_esEs14(vwx30, vwx40) new_esEs26(vwx130, vwx140, ty_Int) -> new_esEs21(vwx130, vwx140) new_ltEs24(vwx58, vwx59, ty_Float) -> new_ltEs9(vwx58, vwx59) new_esEs38(vwx82, vwx84, app(app(ty_@2, cdc), cdd)) -> new_esEs13(vwx82, vwx84, cdc, cdd) new_compare111(vwx149, vwx150, vwx151, vwx152, True, vwx154, fcc, fcd) -> new_compare110(vwx149, vwx150, vwx151, vwx152, True, fcc, fcd) new_esEs12(GT, GT) -> True new_esEs29(vwx130, vwx140, ty_@0) -> new_esEs16(vwx130, vwx140) new_esEs35(vwx302, vwx402, app(ty_Ratio, ecc)) -> new_esEs23(vwx302, vwx402, ecc) new_compare29(GT, EQ) -> GT new_asAs(True, vwx114) -> vwx114 new_esEs9(vwx30, vwx40, app(app(ty_Either, chb), chc)) -> new_esEs24(vwx30, vwx40, chb, chc) new_esEs17(Just(vwx300), Just(vwx400), ty_Bool) -> new_esEs25(vwx300, vwx400) new_esEs24(Left(vwx300), Left(vwx400), ty_Integer, dcc) -> new_esEs19(vwx300, vwx400) new_compare10(vwx105, vwx106, False, fcg, fch) -> GT new_esEs27(vwx300, vwx400, ty_Integer) -> new_esEs19(vwx300, vwx400) new_lt19(vwx131, vwx141, ty_Char) -> new_lt18(vwx131, vwx141) new_ltEs22(vwx13, vwx14, ty_Ordering) -> new_ltEs14(vwx13, vwx14) new_esEs23(:%(vwx300, vwx301), :%(vwx400, vwx401), dca) -> new_asAs(new_esEs27(vwx300, vwx400, dca), new_esEs28(vwx301, vwx401, dca)) new_lt20(vwx130, vwx140, ty_Float) -> new_lt9(vwx130, vwx140) new_ltEs8(Right(vwx130), Right(vwx140), ce, ty_Int) -> new_ltEs16(vwx130, vwx140) new_ltEs23(vwx83, vwx85, ty_Bool) -> new_ltEs7(vwx83, vwx85) new_esEs16(@0, @0) -> True new_esEs24(Left(vwx300), Left(vwx400), app(app(ty_@2, fee), fef), dcc) -> new_esEs13(vwx300, vwx400, fee, fef) new_esEs8(vwx32, vwx42, ty_@0) -> new_esEs16(vwx32, vwx42) new_compare29(LT, GT) -> LT new_ltEs22(vwx13, vwx14, app(app(ty_@2, hh), bbd)) -> new_ltEs5(vwx13, vwx14, hh, bbd) new_esEs35(vwx302, vwx402, ty_@0) -> new_esEs16(vwx302, vwx402) new_lt5(vwx130, vwx140, app(app(ty_@2, bca), bcb)) -> new_lt13(vwx130, vwx140, bca, bcb) new_esEs36(vwx300, vwx400, app(app(ty_Either, efa), efb)) -> new_esEs24(vwx300, vwx400, efa, efb) new_esEs6(vwx30, vwx40, app(app(ty_@2, ege), egf)) -> new_esEs13(vwx30, vwx40, ege, egf) new_esEs11(vwx30, vwx40, app(ty_[], dga)) -> new_esEs20(vwx30, vwx40, dga) new_primCmpInt(Pos(Succ(vwx300)), Pos(vwx40)) -> new_primCmpNat0(Succ(vwx300), vwx40) new_compare29(LT, EQ) -> LT new_esEs29(vwx130, vwx140, ty_Char) -> new_esEs15(vwx130, vwx140) new_esEs37(vwx301, vwx401, ty_Int) -> new_esEs21(vwx301, vwx401) new_lt19(vwx131, vwx141, app(ty_Maybe, ge)) -> new_lt15(vwx131, vwx141, ge) new_esEs33(vwx300, vwx400, app(app(ty_@2, dgh), dha)) -> new_esEs13(vwx300, vwx400, dgh, dha) new_primCompAux00(vwx41, EQ) -> vwx41 new_esEs12(EQ, EQ) -> True new_esEs17(Just(vwx300), Just(vwx400), app(app(ty_@2, dcd), dce)) -> new_esEs13(vwx300, vwx400, dcd, dce) new_esEs33(vwx300, vwx400, ty_Float) -> new_esEs14(vwx300, vwx400) new_ltEs16(vwx13, vwx14) -> new_fsEs(new_compare16(vwx13, vwx14)) new_sr(vwx40, vwx31) -> new_primMulInt(vwx40, vwx31) new_lt21(vwx70, vwx73, ty_@0) -> new_lt7(vwx70, vwx73) new_esEs26(vwx130, vwx140, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs22(vwx130, vwx140, bbe, bbf, bbg) new_esEs17(Just(vwx300), Just(vwx400), ty_Float) -> new_esEs14(vwx300, vwx400) new_compare19(Left(vwx30), Right(vwx40), h, ba) -> LT new_esEs8(vwx32, vwx42, ty_Char) -> new_esEs15(vwx32, vwx42) new_esEs33(vwx300, vwx400, app(app(app(ty_@3, dhd), dhe), dhf)) -> new_esEs22(vwx300, vwx400, dhd, dhe, dhf) new_esEs9(vwx30, vwx40, ty_Int) -> new_esEs21(vwx30, vwx40) new_primMulNat0(Zero, Zero) -> Zero new_esEs5(vwx30, vwx40, ty_Integer) -> new_esEs19(vwx30, vwx40) new_esEs33(vwx300, vwx400, ty_Bool) -> new_esEs25(vwx300, vwx400) new_esEs31(vwx69, vwx72, app(ty_[], cad)) -> new_esEs20(vwx69, vwx72, cad) new_lt22(vwx69, vwx72, app(ty_[], cad)) -> new_lt12(vwx69, vwx72, cad) new_ltEs8(Right(vwx130), Right(vwx140), ce, ty_Integer) -> new_ltEs17(vwx130, vwx140) new_ltEs20(vwx132, vwx142, ty_Int) -> new_ltEs16(vwx132, vwx142) new_esEs11(vwx30, vwx40, ty_Int) -> new_esEs21(vwx30, vwx40) new_esEs7(vwx31, vwx41, ty_Char) -> new_esEs15(vwx31, vwx41) new_ltEs24(vwx58, vwx59, app(ty_[], ced)) -> new_ltEs13(vwx58, vwx59, ced) new_lt15(vwx69, vwx72, cag) -> new_esEs12(new_compare30(vwx69, vwx72, cag), LT) new_compare1(:(vwx30, vwx31), :(vwx40, vwx41), bde) -> new_primCompAux0(vwx30, vwx40, new_compare1(vwx31, vwx41, bde), bde) new_ltEs24(vwx58, vwx59, app(ty_Ratio, fed)) -> new_ltEs12(vwx58, vwx59, fed) new_lt23(vwx82, vwx84, ty_Double) -> new_lt4(vwx82, vwx84) new_esEs32(vwx70, vwx73, app(app(app(ty_@3, bgh), bha), bhb)) -> new_esEs22(vwx70, vwx73, bgh, bha, bhb) new_ltEs21(vwx71, vwx74, ty_Ordering) -> new_ltEs14(vwx71, vwx74) new_lt8(vwx69, vwx72, bhg, bhh) -> new_esEs12(new_compare19(vwx69, vwx72, bhg, bhh), LT) new_esEs4(vwx30, vwx40, ty_Ordering) -> new_esEs12(vwx30, vwx40) new_esEs5(vwx30, vwx40, ty_Float) -> new_esEs14(vwx30, vwx40) new_ltEs15(Just(vwx130), Just(vwx140), ty_Ordering) -> new_ltEs14(vwx130, vwx140) new_compare29(EQ, LT) -> GT new_lt20(vwx130, vwx140, ty_Ordering) -> new_lt14(vwx130, vwx140) new_esEs5(vwx30, vwx40, app(ty_[], eda)) -> new_esEs20(vwx30, vwx40, eda) new_esEs6(vwx30, vwx40, ty_Integer) -> new_esEs19(vwx30, vwx40) new_esEs39(vwx300, vwx400, app(ty_Ratio, fdh)) -> new_esEs23(vwx300, vwx400, fdh) new_esEs6(vwx30, vwx40, ty_Double) -> new_esEs18(vwx30, vwx40) new_ltEs23(vwx83, vwx85, app(ty_Maybe, ccc)) -> new_ltEs15(vwx83, vwx85, ccc) new_esEs13(@2(vwx300, vwx301), @2(vwx400, vwx401), dbb, dbc) -> new_asAs(new_esEs36(vwx300, vwx400, dbb), new_esEs37(vwx301, vwx401, dbc)) new_esEs24(Right(vwx300), Right(vwx400), dcb, app(app(ty_@2, ffg), ffh)) -> new_esEs13(vwx300, vwx400, ffg, ffh) new_ltEs15(Just(vwx130), Just(vwx140), ty_Integer) -> new_ltEs17(vwx130, vwx140) new_ltEs15(Just(vwx130), Just(vwx140), ty_Int) -> new_ltEs16(vwx130, vwx140) new_esEs9(vwx30, vwx40, ty_@0) -> new_esEs16(vwx30, vwx40) new_esEs33(vwx300, vwx400, ty_Int) -> new_esEs21(vwx300, vwx400) new_esEs38(vwx82, vwx84, app(ty_Maybe, cde)) -> new_esEs17(vwx82, vwx84, cde) new_compare28(:%(vwx30, vwx31), :%(vwx40, vwx41), ty_Int) -> new_compare16(new_sr(vwx30, vwx41), new_sr(vwx40, vwx31)) new_esEs39(vwx300, vwx400, ty_Ordering) -> new_esEs12(vwx300, vwx400) new_ltEs22(vwx13, vwx14, app(ty_Maybe, dfe)) -> new_ltEs15(vwx13, vwx14, dfe) new_lt14(vwx69, vwx72) -> new_esEs12(new_compare29(vwx69, vwx72), LT) new_esEs24(Left(vwx300), Left(vwx400), app(ty_[], feh), dcc) -> new_esEs20(vwx300, vwx400, feh) new_esEs33(vwx300, vwx400, app(ty_Maybe, dhb)) -> new_esEs17(vwx300, vwx400, dhb) new_ltEs20(vwx132, vwx142, app(ty_Ratio, deg)) -> new_ltEs12(vwx132, vwx142, deg) new_primEqInt(Neg(Succ(vwx3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vwx4000))) -> False new_esEs5(vwx30, vwx40, ty_Double) -> new_esEs18(vwx30, vwx40) new_ltEs8(Left(vwx130), Left(vwx140), app(ty_Maybe, cd), bd) -> new_ltEs15(vwx130, vwx140, cd) new_esEs9(vwx30, vwx40, app(ty_Ratio, cha)) -> new_esEs23(vwx30, vwx40, cha) new_ltEs7(True, True) -> True new_compare18(vwx30, vwx40, app(ty_Ratio, ded)) -> new_compare28(vwx30, vwx40, ded) new_esEs10(vwx31, vwx41, ty_Ordering) -> new_esEs12(vwx31, vwx41) new_primEqInt(Pos(Succ(vwx3000)), Pos(Succ(vwx4000))) -> new_primEqNat0(vwx3000, vwx4000) new_esEs7(vwx31, vwx41, app(app(ty_@2, ehg), ehh)) -> new_esEs13(vwx31, vwx41, ehg, ehh) new_lt23(vwx82, vwx84, ty_Bool) -> new_lt6(vwx82, vwx84) new_esEs4(vwx30, vwx40, ty_@0) -> new_esEs16(vwx30, vwx40) new_esEs5(vwx30, vwx40, app(app(ty_Either, edf), edg)) -> new_esEs24(vwx30, vwx40, edf, edg) new_esEs24(Right(vwx300), Right(vwx400), dcb, app(ty_[], fgb)) -> new_esEs20(vwx300, vwx400, fgb) new_lt20(vwx130, vwx140, ty_@0) -> new_lt7(vwx130, vwx140) new_esEs37(vwx301, vwx401, app(app(ty_@2, efc), efd)) -> new_esEs13(vwx301, vwx401, efc, efd) new_esEs39(vwx300, vwx400, ty_@0) -> new_esEs16(vwx300, vwx400) new_ltEs8(Right(vwx130), Right(vwx140), ce, app(ty_Maybe, dg)) -> new_ltEs15(vwx130, vwx140, dg) new_compare17(vwx120, vwx121, True, dec) -> LT new_esEs27(vwx300, vwx400, ty_Int) -> new_esEs21(vwx300, vwx400) new_esEs24(Right(vwx300), Right(vwx400), dcb, ty_Char) -> new_esEs15(vwx300, vwx400) new_esEs17(Just(vwx300), Just(vwx400), app(ty_Maybe, dcf)) -> new_esEs17(vwx300, vwx400, dcf) new_ltEs20(vwx132, vwx142, ty_Float) -> new_ltEs9(vwx132, vwx142) new_primEqInt(Pos(Succ(vwx3000)), Neg(vwx400)) -> False new_primEqInt(Neg(Succ(vwx3000)), Pos(vwx400)) -> False new_lt10(vwx69, vwx72, caa, cab, cac) -> new_esEs12(new_compare27(vwx69, vwx72, caa, cab, cac), LT) new_esEs34(vwx301, vwx401, ty_Bool) -> new_esEs25(vwx301, vwx401) new_lt21(vwx70, vwx73, app(ty_Maybe, bhf)) -> new_lt15(vwx70, vwx73, bhf) new_primCmpInt(Neg(Zero), Neg(Succ(vwx400))) -> new_primCmpNat0(Succ(vwx400), Zero) new_lt23(vwx82, vwx84, ty_Int) -> new_lt16(vwx82, vwx84) new_ltEs6(vwx131, vwx141, ty_Float) -> new_ltEs9(vwx131, vwx141) new_compare211(vwx13, vwx14, True, dfc, be) -> EQ new_ltEs15(Just(vwx130), Just(vwx140), app(ty_Ratio, edh)) -> new_ltEs12(vwx130, vwx140, edh) new_ltEs19(vwx20, vwx21, app(ty_Ratio, dba)) -> new_ltEs12(vwx20, vwx21, dba) new_esEs31(vwx69, vwx72, ty_Char) -> new_esEs15(vwx69, vwx72) new_esEs20(:(vwx300, vwx301), [], dbe) -> False new_esEs20([], :(vwx400, vwx401), dbe) -> False new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_lt23(vwx82, vwx84, app(ty_Ratio, fce)) -> new_lt11(vwx82, vwx84, fce) new_esEs4(vwx30, vwx40, ty_Int) -> new_esEs21(vwx30, vwx40) new_ltEs23(vwx83, vwx85, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_ltEs11(vwx83, vwx85, cbe, cbf, cbg) new_ltEs6(vwx131, vwx141, ty_Double) -> new_ltEs10(vwx131, vwx141) new_esEs35(vwx302, vwx402, app(ty_[], ebg)) -> new_esEs20(vwx302, vwx402, ebg) new_ltEs15(Just(vwx130), Just(vwx140), ty_@0) -> new_ltEs4(vwx130, vwx140) new_esEs38(vwx82, vwx84, ty_Double) -> new_esEs18(vwx82, vwx84) new_compare30(Just(vwx30), Nothing, cdf) -> GT new_lt5(vwx130, vwx140, app(ty_Maybe, bcc)) -> new_lt15(vwx130, vwx140, bcc) new_esEs36(vwx300, vwx400, ty_Integer) -> new_esEs19(vwx300, vwx400) new_esEs8(vwx32, vwx42, app(ty_[], fbd)) -> new_esEs20(vwx32, vwx42, fbd) new_esEs31(vwx69, vwx72, ty_Int) -> new_esEs21(vwx69, vwx72) new_esEs37(vwx301, vwx401, ty_Bool) -> new_esEs25(vwx301, vwx401) new_ltEs19(vwx20, vwx21, ty_Float) -> new_ltEs9(vwx20, vwx21) new_lt21(vwx70, vwx73, app(app(ty_@2, bhd), bhe)) -> new_lt13(vwx70, vwx73, bhd, bhe) new_lt19(vwx131, vwx141, ty_Double) -> new_lt4(vwx131, vwx141) new_ltEs8(Right(vwx130), Right(vwx140), ce, ty_@0) -> new_ltEs4(vwx130, vwx140) new_lt5(vwx130, vwx140, ty_Bool) -> new_lt6(vwx130, vwx140) new_compare18(vwx30, vwx40, app(app(ty_Either, bdf), bdg)) -> new_compare19(vwx30, vwx40, bdf, bdg) new_esEs32(vwx70, vwx73, app(app(ty_@2, bhd), bhe)) -> new_esEs13(vwx70, vwx73, bhd, bhe) new_esEs36(vwx300, vwx400, ty_Float) -> new_esEs14(vwx300, vwx400) new_lt11(vwx69, vwx72, deh) -> new_esEs12(new_compare28(vwx69, vwx72, deh), LT) new_ltEs24(vwx58, vwx59, ty_Int) -> new_ltEs16(vwx58, vwx59) new_lt16(vwx69, vwx72) -> new_esEs12(new_compare16(vwx69, vwx72), LT) new_esEs7(vwx31, vwx41, app(ty_Ratio, faf)) -> new_esEs23(vwx31, vwx41, faf) new_ltEs20(vwx132, vwx142, app(ty_[], eg)) -> new_ltEs13(vwx132, vwx142, eg) new_esEs28(vwx301, vwx401, ty_Integer) -> new_esEs19(vwx301, vwx401) new_esEs11(vwx30, vwx40, ty_@0) -> new_esEs16(vwx30, vwx40) new_not(False) -> True new_ltEs8(Left(vwx130), Right(vwx140), ce, bd) -> True new_lt22(vwx69, vwx72, app(app(ty_Either, bhg), bhh)) -> new_lt8(vwx69, vwx72, bhg, bhh) new_compare1([], :(vwx40, vwx41), bde) -> LT new_esEs34(vwx301, vwx401, ty_@0) -> new_esEs16(vwx301, vwx401) new_ltEs15(Nothing, Just(vwx140), dfe) -> True new_lt22(vwx69, vwx72, ty_Bool) -> new_lt6(vwx69, vwx72) new_esEs17(Just(vwx300), Just(vwx400), ty_Char) -> new_esEs15(vwx300, vwx400) new_esEs39(vwx300, vwx400, ty_Bool) -> new_esEs25(vwx300, vwx400) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs17(Just(vwx300), Just(vwx400), app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs22(vwx300, vwx400, dch, dda, ddb) new_ltEs15(Just(vwx130), Just(vwx140), app(app(app(ty_@3, bcf), bcg), bch)) -> new_ltEs11(vwx130, vwx140, bcf, bcg, bch) new_ltEs24(vwx58, vwx59, ty_Bool) -> new_ltEs7(vwx58, vwx59) new_compare18(vwx30, vwx40, ty_Bool) -> new_compare9(vwx30, vwx40) new_ltEs21(vwx71, vwx74, ty_@0) -> new_ltEs4(vwx71, vwx74) new_esEs35(vwx302, vwx402, ty_Bool) -> new_esEs25(vwx302, vwx402) new_ltEs6(vwx131, vwx141, ty_@0) -> new_ltEs4(vwx131, vwx141) new_esEs4(vwx30, vwx40, app(app(ty_Either, dcb), dcc)) -> new_esEs24(vwx30, vwx40, dcb, dcc) new_lt22(vwx69, vwx72, ty_Char) -> new_lt18(vwx69, vwx72) new_esEs36(vwx300, vwx400, ty_Double) -> new_esEs18(vwx300, vwx400) new_ltEs8(Right(vwx130), Right(vwx140), ce, ty_Double) -> new_ltEs10(vwx130, vwx140) new_ltEs6(vwx131, vwx141, ty_Bool) -> new_ltEs7(vwx131, vwx141) new_esEs26(vwx130, vwx140, app(ty_Maybe, bcc)) -> new_esEs17(vwx130, vwx140, bcc) new_esEs20(:(vwx300, vwx301), :(vwx400, vwx401), dbe) -> new_asAs(new_esEs39(vwx300, vwx400, dbe), new_esEs20(vwx301, vwx401, dbe)) new_compare25(vwx20, vwx21, False, ceh, dah) -> new_compare10(vwx20, vwx21, new_ltEs19(vwx20, vwx21, dah), ceh, dah) new_compare110(vwx149, vwx150, vwx151, vwx152, False, fcc, fcd) -> GT new_esEs38(vwx82, vwx84, ty_Float) -> new_esEs14(vwx82, vwx84) new_esEs34(vwx301, vwx401, app(ty_Maybe, ead)) -> new_esEs17(vwx301, vwx401, ead) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_esEs7(vwx31, vwx41, ty_Ordering) -> new_esEs12(vwx31, vwx41) new_primPlusNat0(Succ(vwx1620), vwx3100) -> Succ(Succ(new_primPlusNat1(vwx1620, vwx3100))) new_esEs36(vwx300, vwx400, app(app(app(ty_@3, eee), eef), eeg)) -> new_esEs22(vwx300, vwx400, eee, eef, eeg) new_esEs9(vwx30, vwx40, app(app(app(ty_@3, cgf), cgg), cgh)) -> new_esEs22(vwx30, vwx40, cgf, cgg, cgh) new_ltEs23(vwx83, vwx85, app(app(ty_Either, cbc), cbd)) -> new_ltEs8(vwx83, vwx85, cbc, cbd) new_lt22(vwx69, vwx72, app(ty_Ratio, deh)) -> new_lt11(vwx69, vwx72, deh) new_esEs5(vwx30, vwx40, app(ty_Ratio, ede)) -> new_esEs23(vwx30, vwx40, ede) new_lt20(vwx130, vwx140, app(ty_Maybe, hf)) -> new_lt15(vwx130, vwx140, hf) new_esEs37(vwx301, vwx401, app(ty_Maybe, efe)) -> new_esEs17(vwx301, vwx401, efe) new_esEs11(vwx30, vwx40, app(ty_Maybe, dfh)) -> new_esEs17(vwx30, vwx40, dfh) new_esEs32(vwx70, vwx73, app(ty_Ratio, dfa)) -> new_esEs23(vwx70, vwx73, dfa) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs11(vwx30, vwx40, app(app(app(ty_@3, dgb), dgc), dgd)) -> new_esEs22(vwx30, vwx40, dgb, dgc, dgd) new_esEs4(vwx30, vwx40, ty_Integer) -> new_esEs19(vwx30, vwx40) new_primPlusNat1(Zero, Zero) -> Zero new_ltEs23(vwx83, vwx85, ty_@0) -> new_ltEs4(vwx83, vwx85) new_ltEs14(LT, EQ) -> True new_ltEs17(vwx13, vwx14) -> new_fsEs(new_compare15(vwx13, vwx14)) new_ltEs6(vwx131, vwx141, ty_Int) -> new_ltEs16(vwx131, vwx141) new_esEs26(vwx130, vwx140, ty_@0) -> new_esEs16(vwx130, vwx140) new_ltEs6(vwx131, vwx141, app(app(app(ty_@3, bac), bad), bae)) -> new_ltEs11(vwx131, vwx141, bac, bad, bae) new_esEs4(vwx30, vwx40, ty_Double) -> new_esEs18(vwx30, vwx40) new_compare18(vwx30, vwx40, app(app(ty_@2, bed), bee)) -> new_compare8(vwx30, vwx40, bed, bee) new_ltEs21(vwx71, vwx74, ty_Double) -> new_ltEs10(vwx71, vwx74) new_compare6(@0, @0) -> EQ new_compare30(Nothing, Nothing, cdf) -> EQ new_esEs9(vwx30, vwx40, app(app(ty_@2, cgb), cgc)) -> new_esEs13(vwx30, vwx40, cgb, cgc) new_compare13(vwx134, vwx135, vwx136, vwx137, vwx138, vwx139, False, ddf, ddg, ddh) -> GT new_ltEs8(Right(vwx130), Right(vwx140), ce, ty_Bool) -> new_ltEs7(vwx130, vwx140) new_lt19(vwx131, vwx141, ty_Bool) -> new_lt6(vwx131, vwx141) new_lt20(vwx130, vwx140, app(ty_Ratio, dee)) -> new_lt11(vwx130, vwx140, dee) new_ltEs9(vwx13, vwx14) -> new_fsEs(new_compare26(vwx13, vwx14)) new_esEs36(vwx300, vwx400, app(ty_Maybe, eec)) -> new_esEs17(vwx300, vwx400, eec) new_lt5(vwx130, vwx140, ty_Integer) -> new_lt17(vwx130, vwx140) new_esEs17(Just(vwx300), Just(vwx400), app(ty_[], dcg)) -> new_esEs20(vwx300, vwx400, dcg) new_esEs5(vwx30, vwx40, ty_Ordering) -> new_esEs12(vwx30, vwx40) new_esEs35(vwx302, vwx402, ty_Char) -> new_esEs15(vwx302, vwx402) new_lt19(vwx131, vwx141, app(app(ty_@2, gc), gd)) -> new_lt13(vwx131, vwx141, gc, gd) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs26(vwx130, vwx140, ty_Double) -> new_esEs18(vwx130, vwx140) new_esEs11(vwx30, vwx40, ty_Char) -> new_esEs15(vwx30, vwx40) new_ltEs23(vwx83, vwx85, app(app(ty_@2, cca), ccb)) -> new_ltEs5(vwx83, vwx85, cca, ccb) new_primMulNat0(Succ(vwx4000), Succ(vwx3100)) -> new_primPlusNat0(new_primMulNat0(vwx4000, Succ(vwx3100)), vwx3100) new_ltEs24(vwx58, vwx59, app(ty_Maybe, ceg)) -> new_ltEs15(vwx58, vwx59, ceg) new_esEs24(Right(vwx300), Right(vwx400), dcb, ty_Integer) -> new_esEs19(vwx300, vwx400) new_lt9(vwx69, vwx72) -> new_esEs12(new_compare26(vwx69, vwx72), LT) new_compare18(vwx30, vwx40, app(ty_Maybe, bef)) -> new_compare30(vwx30, vwx40, bef) new_esEs37(vwx301, vwx401, app(app(ty_Either, egc), egd)) -> new_esEs24(vwx301, vwx401, egc, egd) new_esEs24(Right(vwx300), Right(vwx400), dcb, ty_Float) -> new_esEs14(vwx300, vwx400) new_compare26(Float(vwx30, Pos(vwx310)), Float(vwx40, Pos(vwx410))) -> new_compare16(new_sr(vwx30, Pos(vwx410)), new_sr(Pos(vwx310), vwx40)) new_esEs34(vwx301, vwx401, ty_Char) -> new_esEs15(vwx301, vwx401) new_esEs34(vwx301, vwx401, app(app(app(ty_@3, eaf), eag), eah)) -> new_esEs22(vwx301, vwx401, eaf, eag, eah) new_lt5(vwx130, vwx140, ty_Double) -> new_lt4(vwx130, vwx140) new_lt22(vwx69, vwx72, ty_@0) -> new_lt7(vwx69, vwx72) new_primCmpNat0(Succ(vwx300), Succ(vwx400)) -> new_primCmpNat0(vwx300, vwx400) new_compare18(vwx30, vwx40, ty_@0) -> new_compare6(vwx30, vwx40) new_ltEs21(vwx71, vwx74, ty_Bool) -> new_ltEs7(vwx71, vwx74) new_lt21(vwx70, vwx73, ty_Double) -> new_lt4(vwx70, vwx73) new_compare30(Just(vwx30), Just(vwx40), cdf) -> new_compare212(vwx30, vwx40, new_esEs11(vwx30, vwx40, cdf), cdf) new_compare26(Float(vwx30, Neg(vwx310)), Float(vwx40, Neg(vwx410))) -> new_compare16(new_sr(vwx30, Neg(vwx410)), new_sr(Neg(vwx310), vwx40)) new_esEs37(vwx301, vwx401, ty_@0) -> new_esEs16(vwx301, vwx401) new_esEs9(vwx30, vwx40, ty_Char) -> new_esEs15(vwx30, vwx40) new_esEs11(vwx30, vwx40, app(app(ty_@2, dff), dfg)) -> new_esEs13(vwx30, vwx40, dff, dfg) new_compare110(vwx149, vwx150, vwx151, vwx152, True, fcc, fcd) -> LT new_ltEs23(vwx83, vwx85, app(ty_[], cbh)) -> new_ltEs13(vwx83, vwx85, cbh) new_ltEs8(Left(vwx130), Left(vwx140), ty_Char, bd) -> new_ltEs18(vwx130, vwx140) new_esEs31(vwx69, vwx72, ty_Ordering) -> new_esEs12(vwx69, vwx72) new_esEs35(vwx302, vwx402, app(ty_Maybe, ebf)) -> new_esEs17(vwx302, vwx402, ebf) new_compare7(Double(vwx30, Pos(vwx310)), Double(vwx40, Neg(vwx410))) -> new_compare16(new_sr(vwx30, Pos(vwx410)), new_sr(Neg(vwx310), vwx40)) new_compare7(Double(vwx30, Neg(vwx310)), Double(vwx40, Pos(vwx410))) -> new_compare16(new_sr(vwx30, Neg(vwx410)), new_sr(Pos(vwx310), vwx40)) new_compare29(GT, LT) -> GT new_esEs10(vwx31, vwx41, ty_Char) -> new_esEs15(vwx31, vwx41) new_ltEs24(vwx58, vwx59, app(app(ty_@2, cee), cef)) -> new_ltEs5(vwx58, vwx59, cee, cef) new_esEs29(vwx130, vwx140, ty_Int) -> new_esEs21(vwx130, vwx140) new_esEs29(vwx130, vwx140, app(ty_Ratio, dee)) -> new_esEs23(vwx130, vwx140, dee) new_ltEs23(vwx83, vwx85, ty_Double) -> new_ltEs10(vwx83, vwx85) new_esEs26(vwx130, vwx140, ty_Bool) -> new_esEs25(vwx130, vwx140) new_lt20(vwx130, vwx140, ty_Char) -> new_lt18(vwx130, vwx140) new_esEs33(vwx300, vwx400, ty_Char) -> new_esEs15(vwx300, vwx400) new_esEs32(vwx70, vwx73, app(ty_[], bhc)) -> new_esEs20(vwx70, vwx73, bhc) new_esEs38(vwx82, vwx84, app(app(ty_Either, ccd), cce)) -> new_esEs24(vwx82, vwx84, ccd, cce) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs21(vwx71, vwx74, ty_Int) -> new_ltEs16(vwx71, vwx74) new_compare17(vwx120, vwx121, False, dec) -> GT new_esEs35(vwx302, vwx402, app(app(ty_@2, ebd), ebe)) -> new_esEs13(vwx302, vwx402, ebd, ebe) new_lt20(vwx130, vwx140, ty_Double) -> new_lt4(vwx130, vwx140) new_lt21(vwx70, vwx73, ty_Integer) -> new_lt17(vwx70, vwx73) new_lt21(vwx70, vwx73, app(ty_Ratio, dfa)) -> new_lt11(vwx70, vwx73, dfa) new_lt5(vwx130, vwx140, ty_Char) -> new_lt18(vwx130, vwx140) new_ltEs8(Left(vwx130), Left(vwx140), ty_Float, bd) -> new_ltEs9(vwx130, vwx140) new_esEs24(Right(vwx300), Right(vwx400), dcb, ty_@0) -> new_esEs16(vwx300, vwx400) new_ltEs22(vwx13, vwx14, ty_Int) -> new_ltEs16(vwx13, vwx14) new_esEs33(vwx300, vwx400, app(ty_[], dhc)) -> new_esEs20(vwx300, vwx400, dhc) new_primEqNat0(Zero, Zero) -> True new_ltEs21(vwx71, vwx74, app(app(app(ty_@3, bff), bfg), bfh)) -> new_ltEs11(vwx71, vwx74, bff, bfg, bfh) new_esEs24(Left(vwx300), Left(vwx400), ty_Ordering, dcc) -> new_esEs12(vwx300, vwx400) new_lt13(vwx69, vwx72, cae, caf) -> new_esEs12(new_compare8(vwx69, vwx72, cae, caf), LT) new_esEs15(Char(vwx300), Char(vwx400)) -> new_primEqNat0(vwx300, vwx400) new_esEs36(vwx300, vwx400, ty_@0) -> new_esEs16(vwx300, vwx400) new_esEs6(vwx30, vwx40, ty_Int) -> new_esEs21(vwx30, vwx40) new_esEs38(vwx82, vwx84, ty_Integer) -> new_esEs19(vwx82, vwx84) new_lt23(vwx82, vwx84, app(app(ty_Either, ccd), cce)) -> new_lt8(vwx82, vwx84, ccd, cce) new_esEs30(vwx131, vwx141, app(ty_Ratio, def)) -> new_esEs23(vwx131, vwx141, def) new_esEs34(vwx301, vwx401, app(app(ty_@2, eab), eac)) -> new_esEs13(vwx301, vwx401, eab, eac) new_esEs24(Left(vwx300), Left(vwx400), app(app(app(ty_@3, ffa), ffb), ffc), dcc) -> new_esEs22(vwx300, vwx400, ffa, ffb, ffc) new_ltEs8(Left(vwx130), Left(vwx140), app(app(app(ty_@3, bf), bg), bh), bd) -> new_ltEs11(vwx130, vwx140, bf, bg, bh) new_compare14(vwx98, vwx99, False, dea, deb) -> GT new_esEs30(vwx131, vwx141, ty_Ordering) -> new_esEs12(vwx131, vwx141) new_lt21(vwx70, vwx73, ty_Char) -> new_lt18(vwx70, vwx73) new_esEs24(Right(vwx300), Right(vwx400), dcb, ty_Bool) -> new_esEs25(vwx300, vwx400) new_esEs26(vwx130, vwx140, ty_Float) -> new_esEs14(vwx130, vwx140) new_esEs24(Left(vwx300), Left(vwx400), app(ty_Maybe, feg), dcc) -> new_esEs17(vwx300, vwx400, feg) new_esEs10(vwx31, vwx41, app(ty_[], chg)) -> new_esEs20(vwx31, vwx41, chg) new_lt20(vwx130, vwx140, ty_Integer) -> new_lt17(vwx130, vwx140) new_ltEs22(vwx13, vwx14, ty_Double) -> new_ltEs10(vwx13, vwx14) new_asAs(False, vwx114) -> False new_ltEs22(vwx13, vwx14, app(ty_[], hg)) -> new_ltEs13(vwx13, vwx14, hg) new_ltEs14(LT, LT) -> True new_esEs14(Float(vwx300, vwx301), Float(vwx400, vwx401)) -> new_esEs21(new_sr(vwx300, vwx401), new_sr(vwx301, vwx400)) new_esEs6(vwx30, vwx40, ty_Ordering) -> new_esEs12(vwx30, vwx40) new_ltEs8(Right(vwx130), Right(vwx140), ce, app(ty_Ratio, fhb)) -> new_ltEs12(vwx130, vwx140, fhb) new_ltEs8(Right(vwx130), Right(vwx140), ce, ty_Ordering) -> new_ltEs14(vwx130, vwx140) new_esEs30(vwx131, vwx141, ty_Int) -> new_esEs21(vwx131, vwx141) new_ltEs8(Left(vwx130), Left(vwx140), app(ty_[], ca), bd) -> new_ltEs13(vwx130, vwx140, ca) new_esEs26(vwx130, vwx140, ty_Integer) -> new_esEs19(vwx130, vwx140) new_lt5(vwx130, vwx140, app(ty_Ratio, daf)) -> new_lt11(vwx130, vwx140, daf) new_esEs37(vwx301, vwx401, ty_Float) -> new_esEs14(vwx301, vwx401) new_ltEs23(vwx83, vwx85, ty_Ordering) -> new_ltEs14(vwx83, vwx85) new_esEs35(vwx302, vwx402, app(app(app(ty_@3, ebh), eca), ecb)) -> new_esEs22(vwx302, vwx402, ebh, eca, ecb) new_lt20(vwx130, vwx140, ty_Bool) -> new_lt6(vwx130, vwx140) new_compare18(vwx30, vwx40, ty_Double) -> new_compare7(vwx30, vwx40) new_esEs6(vwx30, vwx40, app(ty_Ratio, ehd)) -> new_esEs23(vwx30, vwx40, ehd) new_lt23(vwx82, vwx84, ty_@0) -> new_lt7(vwx82, vwx84) new_compare9(False, True) -> LT new_ltEs24(vwx58, vwx59, app(app(ty_Either, cdg), cdh)) -> new_ltEs8(vwx58, vwx59, cdg, cdh) new_ltEs22(vwx13, vwx14, ty_Bool) -> new_ltEs7(vwx13, vwx14) The set Q consists of the following terms: new_lt21(x0, x1, ty_Int) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Succ(x0)) new_esEs9(x0, x1, ty_Int) new_lt5(x0, x1, ty_Double) new_ltEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, ty_Char) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs17(Just(x0), Just(x1), ty_Char) new_lt5(x0, x1, app(app(ty_@2, x2), x3)) new_compare18(x0, x1, ty_Bool) new_lt4(x0, x1) new_esEs12(EQ, EQ) new_ltEs8(Right(x0), Right(x1), x2, ty_Ordering) new_esEs31(x0, x1, ty_Char) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs5(x0, x1, ty_Char) new_lt5(x0, x1, ty_Ordering) new_ltEs8(Left(x0), Left(x1), ty_Int, x2) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_compare30(Just(x0), Nothing, x1) new_ltEs6(x0, x1, ty_@0) new_esEs30(x0, x1, ty_Double) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(Just(x0), Just(x1), ty_Int) new_compare18(x0, x1, app(ty_Maybe, x2)) new_primPlusNat1(Zero, Zero) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, ty_Char) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, ty_Float) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Integer) new_ltEs8(Left(x0), Left(x1), ty_Double, x2) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux0(x0, x1, x2, x3) new_esEs31(x0, x1, ty_Int) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Char) new_ltEs16(x0, x1) new_esEs5(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Double) new_esEs34(x0, x1, app(ty_[], x2)) new_ltEs11(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare211(x0, x1, True, x2, x3) new_ltEs6(x0, x1, ty_Bool) new_ltEs4(x0, x1) new_compare7(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs30(x0, x1, ty_Ordering) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs20([], [], x0) new_esEs23(:%(x0, x1), :%(x2, x3), x4) new_ltEs8(Right(x0), Right(x1), x2, ty_Char) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, False, x2, x3) new_esEs10(x0, x1, ty_Bool) new_compare17(x0, x1, False, x2) new_lt19(x0, x1, ty_Float) new_esEs11(x0, x1, ty_Int) new_lt15(x0, x1, x2) new_ltEs18(x0, x1) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_@0) new_esEs37(x0, x1, ty_Bool) new_ltEs8(Right(x0), Right(x1), x2, ty_Double) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs20(:(x0, x1), :(x2, x3), x4) new_esEs26(x0, x1, ty_Bool) new_ltEs14(LT, LT) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Ordering) new_compare1(:(x0, x1), :(x2, x3), x4) new_esEs31(x0, x1, ty_Double) new_esEs17(Just(x0), Just(x1), ty_Double) new_esEs38(x0, x1, ty_Integer) new_compare29(EQ, GT) new_compare29(GT, EQ) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs30(x0, x1, ty_Int) new_esEs18(Double(x0, x1), Double(x2, x3)) new_compare12(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_ltEs6(x0, x1, ty_Char) new_lt22(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs8(Right(x0), Right(x1), x2, ty_Int) new_esEs11(x0, x1, ty_@0) new_esEs11(x0, x1, ty_Ordering) new_esEs17(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare6(@0, @0) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_primEqNat0(Zero, Succ(x0)) new_esEs36(x0, x1, ty_Ordering) new_ltEs8(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs20([], :(x0, x1), x2) new_esEs4(x0, x1, ty_Float) new_compare19(Left(x0), Left(x1), x2, x3) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs6(x0, x1, ty_Int) new_esEs5(x0, x1, ty_Double) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(ty_[], x2)) new_lt5(x0, x1, ty_Char) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_lt18(x0, x1) new_compare15(Integer(x0), Integer(x1)) new_esEs5(x0, x1, ty_Bool) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, ty_@0) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Char) new_compare29(LT, GT) new_compare29(GT, LT) new_lt23(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Char) new_asAs(False, x0) new_compare110(x0, x1, x2, x3, False, x4, x5) new_ltEs22(x0, x1, ty_Int) new_compare24(x0, x1, x2, x3, True, x4, x5) new_ltEs8(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs35(x0, x1, app(ty_[], x2)) new_ltEs8(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, ty_Char) new_lt5(x0, x1, ty_Int) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_compare26(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs17(Just(x0), Just(x1), ty_Ordering) new_lt23(x0, x1, ty_Bool) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, ty_Double) new_compare10(x0, x1, True, x2, x3) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, ty_Integer) new_compare18(x0, x1, ty_Integer) new_esEs24(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt23(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_compare26(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare26(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs13(x0, x1, x2) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Ordering) new_esEs12(LT, GT) new_esEs12(GT, LT) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs19(Integer(x0), Integer(x1)) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, ty_Double) new_compare13(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_lt21(x0, x1, ty_Ordering) new_esEs24(Left(x0), Left(x1), ty_Float, x2) new_esEs26(x0, x1, ty_Integer) new_lt23(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_Ordering) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(False, True) new_ltEs7(True, False) new_esEs37(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, ty_Double) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_lt23(x0, x1, ty_Char) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1) new_ltEs24(x0, x1, ty_@0) new_esEs10(x0, x1, ty_@0) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs26(x0, x1, ty_Ordering) new_esEs17(Just(x0), Just(x1), ty_Integer) new_esEs37(x0, x1, ty_Int) new_ltEs8(Left(x0), Left(x1), ty_Ordering, x2) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs8(Right(x0), Left(x1), x2, x3) new_ltEs8(Left(x0), Right(x1), x2, x3) new_lt23(x0, x1, ty_Int) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, ty_@0) new_compare210(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_lt22(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_Float) new_compare18(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat1(Succ(x0), Succ(x1)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs35(x0, x1, ty_Int) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs15(Char(x0), Char(x1)) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, app(ty_[], x2)) new_lt5(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Ordering) new_ltEs8(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs38(x0, x1, ty_Int) new_esEs35(x0, x1, ty_Char) new_esEs37(x0, x1, ty_Float) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Integer) new_esEs10(x0, x1, ty_Double) new_ltEs8(Right(x0), Right(x1), x2, ty_Bool) new_compare18(x0, x1, ty_Float) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_Bool) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, ty_Integer) new_compare25(x0, x1, True, x2, x3) new_ltEs19(x0, x1, ty_Integer) new_esEs24(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare30(Just(x0), Just(x1), x2) new_ltEs21(x0, x1, ty_Int) new_esEs24(Right(x0), Right(x1), x2, ty_Double) new_esEs10(x0, x1, ty_Float) new_esEs4(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Double) new_esEs24(Left(x0), Left(x1), ty_@0, x2) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs12(GT, GT) new_primPlusNat1(Zero, Succ(x0)) new_ltEs8(Right(x0), Right(x1), x2, ty_Integer) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs9(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_Double) new_esEs24(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs6(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Char) new_esEs9(x0, x1, ty_Bool) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_ltEs14(LT, GT) new_ltEs14(GT, LT) new_esEs17(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Double) new_compare29(EQ, EQ) new_compare211(x0, x1, False, x2, x3) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Double) new_lt21(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_@0) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_compare13(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_sr0(Integer(x0), Integer(x1)) new_ltEs20(x0, x1, ty_@0) new_esEs31(x0, x1, ty_Bool) new_lt23(x0, x1, app(ty_Ratio, x2)) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs8(Left(x0), Left(x1), ty_Bool, x2) new_compare18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(False, False) new_esEs5(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Float) new_esEs5(x0, x1, ty_Integer) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_@0) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Succ(x0), Zero) new_lt22(x0, x1, ty_Double) new_esEs25(False, False) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_lt13(x0, x1, x2, x3) new_esEs6(x0, x1, ty_@0) new_esEs6(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_lt17(x0, x1) new_primCompAux00(x0, LT) new_esEs17(Just(x0), Just(x1), ty_@0) new_esEs4(x0, x1, ty_Bool) new_asAs(True, x0) new_ltEs14(EQ, GT) new_ltEs14(GT, EQ) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Double) new_lt20(x0, x1, ty_Float) new_esEs17(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare30(Nothing, Nothing, x0) new_esEs4(x0, x1, ty_Ordering) new_esEs36(x0, x1, ty_Bool) new_lt19(x0, x1, app(ty_[], x2)) new_esEs24(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare212(x0, x1, False, x2) new_lt16(x0, x1) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs39(x0, x1, ty_Double) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_@0) new_ltEs6(x0, x1, ty_Integer) new_esEs24(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs26(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_Float) new_compare10(x0, x1, False, x2, x3) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Bool) new_esEs5(x0, x1, ty_Ordering) new_compare18(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Ordering) new_esEs36(x0, x1, ty_Float) new_compare111(x0, x1, x2, x3, True, x4, x5, x6) new_esEs24(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs8(x0, x1, ty_Char) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Double) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, ty_Float) new_ltEs8(Left(x0), Left(x1), ty_Char, x2) new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs6(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Float) new_esEs8(x0, x1, ty_Int) new_ltEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_primCompAux00(x0, EQ) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(x0, x1, app(ty_Maybe, x2)) new_sr(x0, x1) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(Nothing, Just(x0), x1) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, ty_Integer) new_compare7(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs38(x0, x1, ty_Char) new_esEs26(x0, x1, ty_Float) new_lt12(x0, x1, x2) new_esEs9(x0, x1, ty_Char) new_lt5(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, ty_Char) new_ltEs15(Just(x0), Just(x1), ty_Float) new_compare14(x0, x1, False, x2, x3) new_esEs31(x0, x1, ty_Float) new_ltEs6(x0, x1, app(ty_[], x2)) new_ltEs15(Just(x0), Just(x1), ty_Int) new_esEs38(x0, x1, ty_Bool) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs8(Left(x0), Left(x1), ty_Float, x2) new_esEs29(x0, x1, ty_@0) new_esEs16(@0, @0) new_esEs14(Float(x0, x1), Float(x2, x3)) new_compare12(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_compare18(x0, x1, ty_Int) new_fsEs(x0) new_esEs35(x0, x1, ty_Float) new_esEs36(x0, x1, ty_Int) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs33(x0, x1, ty_@0) new_compare17(x0, x1, True, x2) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(Right(x0), Right(x1), x2, ty_@0) new_esEs7(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Float) new_esEs39(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Int) new_esEs34(x0, x1, ty_Bool) new_esEs35(x0, x1, ty_Integer) new_esEs8(x0, x1, ty_Bool) new_esEs31(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Char) new_compare19(Right(x0), Right(x1), x2, x3) new_lt20(x0, x1, app(ty_Maybe, x2)) new_ltEs8(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs17(Nothing, Nothing, x0) new_esEs6(x0, x1, ty_Char) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Char) new_compare29(LT, EQ) new_compare29(EQ, LT) new_esEs25(False, True) new_esEs25(True, False) new_esEs4(x0, x1, ty_Char) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs9(x0, x1) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs24(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_esEs24(Right(x0), Right(x1), x2, ty_Bool) new_lt22(x0, x1, ty_Integer) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_compare9(True, False) new_compare9(False, True) new_ltEs8(Right(x0), Right(x1), x2, ty_Float) new_ltEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) new_primMulNat0(Zero, Zero) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, ty_Char) new_lt19(x0, x1, ty_Double) new_ltEs24(x0, x1, ty_Double) new_compare29(GT, GT) new_ltEs15(Just(x0), Just(x1), ty_Char) new_ltEs14(EQ, EQ) new_esEs30(x0, x1, ty_Float) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt7(x0, x1) new_esEs21(x0, x1) new_lt19(x0, x1, ty_Ordering) new_lt22(x0, x1, ty_Bool) new_esEs4(x0, x1, ty_Int) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs24(Left(x0), Left(x1), ty_Double, x2) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs7(x0, x1, ty_Bool) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_ltEs5(@2(x0, x1), @2(x2, x3), x4, x5) new_compare24(x0, x1, x2, x3, False, x4, x5) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Ordering) new_lt5(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs15(Just(x0), Just(x1), ty_Bool) new_compare110(x0, x1, x2, x3, True, x4, x5) new_ltEs22(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Bool) new_esEs24(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare1([], :(x0, x1), x2) new_lt20(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_Bool) new_lt19(x0, x1, ty_Int) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_compare8(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs5(x0, x1, ty_Float) new_esEs35(x0, x1, ty_Bool) new_ltEs23(x0, x1, ty_Bool) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs8(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare14(x0, x1, True, x2, x3) new_lt10(x0, x1, x2, x3, x4) new_compare16(x0, x1) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_compare28(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_not(True) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Double) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_compare1(:(x0, x1), [], x2) new_lt20(x0, x1, ty_Bool) new_esEs7(x0, x1, ty_Int) new_esEs4(x0, x1, ty_@0) new_ltEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Integer) new_lt22(x0, x1, ty_@0) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, ty_Char) new_ltEs24(x0, x1, ty_Char) new_esEs24(Left(x0), Left(x1), ty_Int, x2) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_Float) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs8(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs7(x0, x1, ty_Char) new_ltEs12(x0, x1, x2) new_esEs30(x0, x1, ty_Integer) new_esEs7(x0, x1, ty_Double) new_primPlusNat0(Succ(x0), x1) new_esEs34(x0, x1, ty_Int) new_esEs24(Left(x0), Right(x1), x2, x3) new_esEs24(Right(x0), Left(x1), x2, x3) new_ltEs23(x0, x1, ty_Float) new_lt8(x0, x1, x2, x3) new_primMulInt(Pos(x0), Pos(x1)) new_compare19(Right(x0), Left(x1), x2, x3) new_compare19(Left(x0), Right(x1), x2, x3) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs8(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare18(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs29(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Bool) new_primCmpNat0(Succ(x0), Zero) new_ltEs19(x0, x1, ty_Ordering) new_esEs24(Right(x0), Right(x1), x2, ty_Integer) new_lt9(x0, x1) new_ltEs23(x0, x1, ty_@0) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_ltEs6(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(Left(x0), Left(x1), ty_Integer, x2) new_esEs8(x0, x1, ty_Integer) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, ty_Float) new_esEs27(x0, x1, ty_Int) new_ltEs15(Just(x0), Just(x1), ty_Integer) new_esEs39(x0, x1, ty_Ordering) new_ltEs6(x0, x1, ty_Float) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs17(x0, x1) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(LT, LT) new_esEs33(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_@0) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Ordering) new_esEs24(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs24(x0, x1, ty_Int) new_esEs8(x0, x1, ty_Ordering) new_compare212(x0, x1, True, x2) new_esEs29(x0, x1, ty_Ordering) new_compare29(LT, LT) new_ltEs15(Just(x0), Just(x1), ty_Ordering) new_lt5(x0, x1, ty_Float) new_esEs6(x0, x1, ty_Ordering) new_primCmpInt(Pos(Zero), Pos(Zero)) new_pePe(True, x0) new_esEs7(x0, x1, ty_@0) new_primPlusNat0(Zero, x0) new_ltEs21(x0, x1, ty_Integer) new_primCmpNat0(Zero, Succ(x0)) new_primPlusNat1(Succ(x0), Zero) new_esEs32(x0, x1, ty_Int) new_lt23(x0, x1, ty_Integer) new_lt22(x0, x1, ty_Int) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(Right(x0), Right(x1), x2, ty_Float) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, app(ty_[], x2)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs31(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_Int) new_esEs34(x0, x1, ty_Float) new_esEs34(x0, x1, ty_Double) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, app(ty_[], x2)) new_primEqNat0(Succ(x0), Zero) new_esEs30(x0, x1, ty_@0) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs14(GT, GT) new_esEs33(x0, x1, app(ty_[], x2)) new_esEs17(Just(x0), Nothing, x1) new_lt20(x0, x1, ty_Integer) new_ltEs21(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_compare18(x0, x1, ty_Double) new_compare9(True, True) new_esEs39(x0, x1, ty_Integer) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(True, True) new_compare9(False, False) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs17(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_primCompAux00(x0, GT) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs6(x0, x1, ty_Integer) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs15(Just(x0), Nothing, x1) new_esEs28(x0, x1, ty_Integer) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, ty_Ordering) new_esEs8(x0, x1, ty_Double) new_ltEs8(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs15(Just(x0), Just(x1), app(ty_[], x2)) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs15(Nothing, Just(x0), x1) new_compare11(Char(x0), Char(x1)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_compare26(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs32(x0, x1, ty_Float) new_ltEs8(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_pePe(False, x0) new_esEs24(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(Left(x0), Left(x1), ty_Char, x2) new_esEs32(x0, x1, ty_Ordering) new_esEs22(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, ty_Char) new_compare210(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs8(Right(x0), Right(x1), x2, ty_@0) new_esEs32(x0, x1, ty_Char) new_esEs35(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Char) new_ltEs21(x0, x1, ty_Double) new_compare18(x0, x1, app(ty_[], x2)) new_esEs24(Left(x0), Left(x1), ty_Bool, x2) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, x2) new_ltEs24(x0, x1, ty_Bool) new_esEs17(Just(x0), Just(x1), ty_Bool) new_esEs20(:(x0, x1), [], x2) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs15(Nothing, Nothing, x0) new_lt5(x0, x1, ty_Bool) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, ty_Char) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_compare1([], [], x0) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Int) new_ltEs6(x0, x1, ty_Double) new_ltEs24(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Bool) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_Integer) new_compare18(x0, x1, app(app(ty_@2, x2), x3)) new_primEqNat0(Zero, Zero) new_esEs36(x0, x1, app(ty_[], x2)) new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, ty_Integer) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_@0) new_lt5(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Float) new_esEs31(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_[], x2)) new_not(False) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, ty_Float) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_@0) new_esEs37(x0, x1, ty_Integer) new_esEs6(x0, x1, ty_Float) new_esEs4(x0, x1, ty_Double) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Double) new_ltEs7(True, True) new_esEs6(x0, x1, ty_Bool) new_esEs35(x0, x1, ty_@0) new_esEs33(x0, x1, ty_Int) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(Left(x0), Left(x1), ty_Ordering, x2) new_lt14(x0, x1) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_Integer) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_compare111(x0, x1, x2, x3, False, x4, x5, x6) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs36(x0, x1, ty_Double) new_esEs24(Right(x0), Right(x1), x2, ty_Char) new_lt19(x0, x1, ty_Char) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, ty_Float) new_lt5(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_compare30(Nothing, Just(x0), x1) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_Double) new_ltEs20(x0, x1, ty_Float) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Bool) new_esEs33(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Int) new_esEs26(x0, x1, ty_@0) new_esEs13(@2(x0, x1), @2(x2, x3), x4, x5) new_compare7(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare7(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, ty_Ordering) new_esEs32(x0, x1, ty_Bool) new_ltEs8(Left(x0), Left(x1), ty_@0, x2) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, ty_Ordering) new_esEs24(Right(x0), Right(x1), x2, ty_Int) new_ltEs23(x0, x1, ty_Ordering) new_ltEs10(x0, x1) new_esEs38(x0, x1, ty_Double) new_esEs24(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt21(x0, x1, ty_Double) new_esEs33(x0, x1, ty_Float) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_@0) new_esEs9(x0, x1, ty_@0) new_lt19(x0, x1, ty_Bool) new_lt23(x0, x1, ty_Ordering) new_esEs17(Just(x0), Just(x1), app(ty_[], x2)) new_esEs9(x0, x1, ty_Double) new_esEs24(Left(x0), Left(x1), ty_Integer, x2) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, ty_@0) new_lt5(x0, x1, ty_Integer) new_esEs8(x0, x1, ty_@0) new_esEs17(Just(x0), Just(x1), ty_Float) new_esEs6(x0, x1, ty_Int) new_esEs24(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs14(EQ, LT) new_ltEs14(LT, EQ) new_esEs36(x0, x1, ty_@0) new_esEs39(x0, x1, ty_Int) new_primCmpNat0(Succ(x0), Succ(x1)) new_ltEs23(x0, x1, ty_Integer) new_esEs38(x0, x1, app(ty_[], x2)) new_ltEs15(Just(x0), Just(x1), ty_@0) new_primCmpNat0(Zero, Zero) new_compare18(x0, x1, ty_@0) new_compare28(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs37(x0, x1, ty_Ordering) new_esEs17(Just(x0), Just(x1), app(ty_Ratio, x2)) 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_compare(Left(vwx30), Left(vwx40), h, ba) -> new_compare2(vwx30, vwx40, new_esEs4(vwx30, vwx40, h), h, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_ltEs0(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), dh, ea, app(app(ty_Either, eb), ec)) -> new_ltEs(vwx132, vwx142, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs3(Just(vwx130), Just(vwx140), app(app(ty_Either, bcd), bce)) -> new_ltEs(vwx130, vwx140, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare0(:(vwx30, vwx31), :(vwx40, vwx41), bde) -> new_primCompAux(vwx30, vwx40, new_compare1(vwx31, vwx41, bde), bde) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare0(:(vwx30, vwx31), :(vwx40, vwx41), bde) -> new_compare0(vwx31, vwx41, bde) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_ltEs1(vwx13, vwx14, hg) -> new_compare0(vwx13, vwx14, hg) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_ltEs0(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), dh, ea, app(app(app(ty_@3, ed), ee), ef)) -> new_ltEs0(vwx132, vwx142, ed, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_ltEs3(Just(vwx130), Just(vwx140), app(app(app(ty_@3, bcf), bcg), bch)) -> new_ltEs0(vwx130, vwx140, bcf, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs2(@2(vwx130, vwx131), @2(vwx140, vwx141), hh, app(app(ty_Either, baa), bab)) -> new_ltEs(vwx131, vwx141, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(@2(vwx130, vwx131), @2(vwx140, vwx141), hh, app(app(app(ty_@3, bac), bad), bae)) -> new_ltEs0(vwx131, vwx141, bac, bad, bae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare3(@3(vwx30, vwx31, vwx32), @3(vwx40, vwx41, vwx42), beg, beh, bfa) -> new_compare21(vwx30, vwx31, vwx32, vwx40, vwx41, vwx42, new_asAs(new_esEs6(vwx30, vwx40, beg), new_asAs(new_esEs7(vwx31, vwx41, beh), new_esEs8(vwx32, vwx42, bfa))), beg, beh, bfa) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 *new_lt2(vwx69, vwx72, cae, caf) -> new_compare4(vwx69, vwx72, cae, caf) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 *new_lt0(vwx69, vwx72, caa, cab, cac) -> new_compare3(vwx69, vwx72, caa, cab, cac) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5 *new_compare5(Just(vwx30), Just(vwx40), cdf) -> new_compare23(vwx30, vwx40, new_esEs11(vwx30, vwx40, cdf), cdf) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_ltEs0(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), dh, ea, app(ty_Maybe, fb)) -> new_ltEs3(vwx132, vwx142, fb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs3(Just(vwx130), Just(vwx140), app(ty_Maybe, bdd)) -> new_ltEs3(vwx130, vwx140, bdd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(@2(vwx130, vwx131), @2(vwx140, vwx141), hh, app(ty_Maybe, bba)) -> new_ltEs3(vwx131, vwx141, bba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare4(@2(vwx30, vwx31), @2(vwx40, vwx41), cah, cba) -> new_compare22(vwx30, vwx31, vwx40, vwx41, new_asAs(new_esEs9(vwx30, vwx40, cah), new_esEs10(vwx31, vwx41, cba)), cah, cba) The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 *new_lt(vwx69, vwx72, bhg, bhh) -> new_compare(vwx69, vwx72, bhg, bhh) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 *new_lt3(vwx69, vwx72, cag) -> new_compare5(vwx69, vwx72, cag) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_ltEs0(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), dh, ea, app(app(ty_@2, eh), fa)) -> new_ltEs2(vwx132, vwx142, eh, fa) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs3(Just(vwx130), Just(vwx140), app(app(ty_@2, bdb), bdc)) -> new_ltEs2(vwx130, vwx140, bdb, bdc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(Just(vwx130), Just(vwx140), app(ty_[], bda)) -> new_ltEs1(vwx130, vwx140, bda) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(@2(vwx130, vwx131), @2(vwx140, vwx141), hh, app(app(ty_@2, bag), bah)) -> new_ltEs2(vwx131, vwx141, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(@2(vwx130, vwx131), @2(vwx140, vwx141), app(ty_Maybe, bcc), bbd) -> new_lt3(vwx130, vwx140, bcc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_lt1(vwx69, vwx72, cad) -> new_compare0(vwx69, vwx72, cad) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_compare(Right(vwx30), Right(vwx40), h, ba) -> new_compare20(vwx30, vwx40, new_esEs5(vwx30, vwx40, ba), h, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_compare2(vwx13, vwx14, False, app(ty_[], hg), be) -> new_compare0(vwx13, vwx14, hg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_ltEs2(@2(vwx130, vwx131), @2(vwx140, vwx141), app(app(ty_@2, bca), bcb), bbd) -> new_lt2(vwx130, vwx140, bca, bcb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(@2(vwx130, vwx131), @2(vwx140, vwx141), app(app(app(ty_@3, bbe), bbf), bbg), bbd) -> new_lt0(vwx130, vwx140, bbe, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs2(@2(vwx130, vwx131), @2(vwx140, vwx141), app(ty_[], bbh), bbd) -> new_lt1(vwx130, vwx140, bbh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare23(vwx58, vwx59, False, app(app(ty_Either, cdg), cdh)) -> new_ltEs(vwx58, vwx59, cdg, cdh) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare23(vwx58, vwx59, False, app(app(app(ty_@3, cea), ceb), cec)) -> new_ltEs0(vwx58, vwx59, cea, ceb, cec) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_compare23(vwx58, vwx59, False, app(ty_Maybe, ceg)) -> new_ltEs3(vwx58, vwx59, ceg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare23(vwx58, vwx59, False, app(app(ty_@2, cee), cef)) -> new_ltEs2(vwx58, vwx59, cee, cef) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare23(vwx58, vwx59, False, app(ty_[], ced)) -> new_ltEs1(vwx58, vwx59, ced) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_ltEs0(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), dh, ea, app(ty_[], eg)) -> new_ltEs1(vwx132, vwx142, eg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs2(@2(vwx130, vwx131), @2(vwx140, vwx141), hh, app(ty_[], baf)) -> new_ltEs1(vwx131, vwx141, baf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(@2(vwx130, vwx131), @2(vwx140, vwx141), app(app(ty_Either, bbb), bbc), bbd) -> new_lt(vwx130, vwx140, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_primCompAux(vwx30, vwx40, vwx8, app(app(ty_Either, bdf), bdg)) -> new_compare(vwx30, vwx40, bdf, bdg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare21(vwx69, vwx70, vwx71, vwx72, vwx73, vwx74, False, app(app(ty_Either, bhg), bhh), bfc, bgg) -> new_compare(vwx69, vwx72, bhg, bhh) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_primCompAux(vwx30, vwx40, vwx8, app(ty_[], bec)) -> new_compare0(vwx30, vwx40, bec) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare21(vwx69, vwx70, vwx71, vwx72, vwx73, vwx74, False, app(ty_[], cad), bfc, bgg) -> new_compare0(vwx69, vwx72, cad) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_primCompAux(vwx30, vwx40, vwx8, app(ty_Maybe, bef)) -> new_compare5(vwx30, vwx40, bef) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare21(vwx69, vwx70, vwx71, vwx72, vwx73, vwx74, False, app(ty_Maybe, cag), bfc, bgg) -> new_compare5(vwx69, vwx72, cag) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_compare21(vwx69, vwx70, vwx71, vwx72, vwx73, vwx74, False, bfb, bfc, app(app(ty_Either, bfd), bfe)) -> new_ltEs(vwx71, vwx74, bfd, bfe) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_compare21(vwx69, vwx70, vwx71, vwx72, vwx73, vwx74, False, bfb, bfc, app(app(app(ty_@3, bff), bfg), bfh)) -> new_ltEs0(vwx71, vwx74, bff, bfg, bfh) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4, 10 > 5 *new_compare21(vwx69, vwx70, vwx71, vwx72, vwx73, vwx74, False, bfb, bfc, app(ty_Maybe, bgd)) -> new_ltEs3(vwx71, vwx74, bgd) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_compare21(vwx69, vwx70, vwx71, vwx72, vwx73, vwx74, False, bfb, bfc, app(app(ty_@2, bgb), bgc)) -> new_ltEs2(vwx71, vwx74, bgb, bgc) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_compare21(vwx69, vwx70, vwx71, vwx72, vwx73, vwx74, False, bfb, app(ty_Maybe, bhf), bgg) -> new_lt3(vwx70, vwx73, bhf) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare22(vwx82, vwx83, vwx84, vwx85, False, app(ty_Maybe, cde), ccf) -> new_lt3(vwx82, vwx84, cde) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_compare21(vwx69, vwx70, vwx71, vwx72, vwx73, vwx74, False, bfb, app(app(ty_@2, bhd), bhe), bgg) -> new_lt2(vwx70, vwx73, bhd, bhe) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_compare22(vwx82, vwx83, vwx84, vwx85, False, app(app(ty_@2, cdc), cdd), ccf) -> new_lt2(vwx82, vwx84, cdc, cdd) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_compare21(vwx69, vwx70, vwx71, vwx72, vwx73, vwx74, False, bfb, app(app(app(ty_@3, bgh), bha), bhb), bgg) -> new_lt0(vwx70, vwx73, bgh, bha, bhb) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4, 9 > 5 *new_compare22(vwx82, vwx83, vwx84, vwx85, False, app(app(app(ty_@3, ccg), cch), cda), ccf) -> new_lt0(vwx82, vwx84, ccg, cch, cda) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4, 6 > 5 *new_compare21(vwx69, vwx70, vwx71, vwx72, vwx73, vwx74, False, bfb, app(ty_[], bhc), bgg) -> new_lt1(vwx70, vwx73, bhc) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare22(vwx82, vwx83, vwx84, vwx85, False, app(ty_[], cdb), ccf) -> new_lt1(vwx82, vwx84, cdb) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_compare21(vwx69, vwx70, vwx71, vwx72, vwx73, vwx74, False, bfb, bfc, app(ty_[], bga)) -> new_ltEs1(vwx71, vwx74, bga) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_primCompAux(vwx30, vwx40, vwx8, app(app(app(ty_@3, bdh), bea), beb)) -> new_compare3(vwx30, vwx40, bdh, bea, beb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_primCompAux(vwx30, vwx40, vwx8, app(app(ty_@2, bed), bee)) -> new_compare4(vwx30, vwx40, bed, bee) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare21(vwx69, vwx70, vwx71, vwx72, vwx73, vwx74, False, app(app(app(ty_@3, caa), cab), cac), bfc, bgg) -> new_compare3(vwx69, vwx72, caa, cab, cac) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4, 8 > 5 *new_compare22(vwx82, vwx83, vwx84, vwx85, False, app(app(ty_Either, ccd), cce), ccf) -> new_lt(vwx82, vwx84, ccd, cce) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_compare20(vwx20, vwx21, False, ceh, app(app(ty_Either, cfa), cfb)) -> new_ltEs(vwx20, vwx21, cfa, cfb) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_compare22(vwx82, vwx83, vwx84, vwx85, False, cbb, app(app(ty_Either, cbc), cbd)) -> new_ltEs(vwx83, vwx85, cbc, cbd) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_compare20(vwx20, vwx21, False, ceh, app(app(app(ty_@3, cfc), cfd), cfe)) -> new_ltEs0(vwx20, vwx21, cfc, cfd, cfe) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4, 5 > 5 *new_compare22(vwx82, vwx83, vwx84, vwx85, False, cbb, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_ltEs0(vwx83, vwx85, cbe, cbf, cbg) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4, 7 > 5 *new_compare20(vwx20, vwx21, False, ceh, app(ty_Maybe, cga)) -> new_ltEs3(vwx20, vwx21, cga) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_compare22(vwx82, vwx83, vwx84, vwx85, False, cbb, app(ty_Maybe, ccc)) -> new_ltEs3(vwx83, vwx85, ccc) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_compare20(vwx20, vwx21, False, ceh, app(app(ty_@2, cfg), cfh)) -> new_ltEs2(vwx20, vwx21, cfg, cfh) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_compare22(vwx82, vwx83, vwx84, vwx85, False, cbb, app(app(ty_@2, cca), ccb)) -> new_ltEs2(vwx83, vwx85, cca, ccb) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_compare20(vwx20, vwx21, False, ceh, app(ty_[], cff)) -> new_ltEs1(vwx20, vwx21, cff) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_compare22(vwx82, vwx83, vwx84, vwx85, False, cbb, app(ty_[], cbh)) -> new_ltEs1(vwx83, vwx85, cbh) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_compare21(vwx69, vwx70, vwx71, vwx72, vwx73, vwx74, False, app(app(ty_@2, cae), caf), bfc, bgg) -> new_compare4(vwx69, vwx72, cae, caf) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_compare21(vwx69, vwx70, vwx71, vwx72, vwx73, vwx74, False, bfb, app(app(ty_Either, bge), bgf), bgg) -> new_lt(vwx70, vwx73, bge, bgf) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_ltEs0(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), dh, app(ty_Maybe, ge), ff) -> new_lt3(vwx131, vwx141, ge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs0(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), app(ty_Maybe, hf), ea, ff) -> new_lt3(vwx130, vwx140, hf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), app(app(ty_@2, hd), he), ea, ff) -> new_lt2(vwx130, vwx140, hd, he) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), dh, app(app(ty_@2, gc), gd), ff) -> new_lt2(vwx131, vwx141, gc, gd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), app(app(app(ty_@3, gh), ha), hb), ea, ff) -> new_lt0(vwx130, vwx140, gh, ha, hb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs0(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), dh, app(app(app(ty_@3, fg), fh), ga), ff) -> new_lt0(vwx131, vwx141, fg, fh, ga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs0(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), dh, app(ty_[], gb), ff) -> new_lt1(vwx131, vwx141, gb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs0(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), app(ty_[], hc), ea, ff) -> new_lt1(vwx130, vwx140, hc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), dh, app(app(ty_Either, fc), fd), ff) -> new_lt(vwx131, vwx141, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), app(app(ty_Either, gf), gg), ea, ff) -> new_lt(vwx130, vwx140, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(Left(vwx130), Left(vwx140), app(app(ty_Either, bb), bc), bd) -> new_ltEs(vwx130, vwx140, bb, bc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(Right(vwx130), Right(vwx140), ce, app(app(ty_Either, cf), cg)) -> new_ltEs(vwx130, vwx140, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@2(vwx130, vwx131), @2(vwx140, vwx141), False, app(app(ty_@2, hh), app(app(ty_Either, baa), bab)), be) -> new_ltEs(vwx131, vwx141, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Right(vwx130), Right(vwx140), False, app(app(ty_Either, ce), app(app(ty_Either, cf), cg)), be) -> new_ltEs(vwx130, vwx140, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Just(vwx130), Just(vwx140), False, app(ty_Maybe, app(app(ty_Either, bcd), bce)), be) -> new_ltEs(vwx130, vwx140, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Left(vwx130), Left(vwx140), False, app(app(ty_Either, app(app(ty_Either, bb), bc)), bd), be) -> new_ltEs(vwx130, vwx140, bb, bc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), False, app(app(app(ty_@3, dh), ea), app(app(ty_Either, eb), ec)), be) -> new_ltEs(vwx132, vwx142, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs(Left(vwx130), Left(vwx140), app(app(app(ty_@3, bf), bg), bh), bd) -> new_ltEs0(vwx130, vwx140, bf, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs(Right(vwx130), Right(vwx140), ce, app(app(app(ty_@3, da), db), dc)) -> new_ltEs0(vwx130, vwx140, da, db, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(Just(vwx130), Just(vwx140), False, app(ty_Maybe, app(app(app(ty_@3, bcf), bcg), bch)), be) -> new_ltEs0(vwx130, vwx140, bcf, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(Right(vwx130), Right(vwx140), False, app(app(ty_Either, ce), app(app(app(ty_@3, da), db), dc)), be) -> new_ltEs0(vwx130, vwx140, da, db, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(Left(vwx130), Left(vwx140), False, app(app(ty_Either, app(app(app(ty_@3, bf), bg), bh)), bd), be) -> new_ltEs0(vwx130, vwx140, bf, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), False, app(app(app(ty_@3, dh), ea), app(app(app(ty_@3, ed), ee), ef)), be) -> new_ltEs0(vwx132, vwx142, ed, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(@2(vwx130, vwx131), @2(vwx140, vwx141), False, app(app(ty_@2, hh), app(app(app(ty_@3, bac), bad), bae)), be) -> new_ltEs0(vwx131, vwx141, bac, bad, bae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs(Right(vwx130), Right(vwx140), ce, app(ty_Maybe, dg)) -> new_ltEs3(vwx130, vwx140, dg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs(Left(vwx130), Left(vwx140), app(ty_Maybe, cd), bd) -> new_ltEs3(vwx130, vwx140, cd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare2(Left(vwx130), Left(vwx140), False, app(app(ty_Either, app(ty_Maybe, cd)), bd), be) -> new_ltEs3(vwx130, vwx140, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Right(vwx130), Right(vwx140), False, app(app(ty_Either, ce), app(ty_Maybe, dg)), be) -> new_ltEs3(vwx130, vwx140, dg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), False, app(app(app(ty_@3, dh), ea), app(ty_Maybe, fb)), be) -> new_ltEs3(vwx132, vwx142, fb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@2(vwx130, vwx131), @2(vwx140, vwx141), False, app(app(ty_@2, hh), app(ty_Maybe, bba)), be) -> new_ltEs3(vwx131, vwx141, bba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Just(vwx130), Just(vwx140), False, app(ty_Maybe, app(ty_Maybe, bdd)), be) -> new_ltEs3(vwx130, vwx140, bdd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs(Left(vwx130), Left(vwx140), app(app(ty_@2, cb), cc), bd) -> new_ltEs2(vwx130, vwx140, cb, cc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(Right(vwx130), Right(vwx140), ce, app(app(ty_@2, de), df)) -> new_ltEs2(vwx130, vwx140, de, df) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs(Left(vwx130), Left(vwx140), app(ty_[], ca), bd) -> new_ltEs1(vwx130, vwx140, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(Right(vwx130), Right(vwx140), ce, app(ty_[], dd)) -> new_ltEs1(vwx130, vwx140, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Just(vwx130), Just(vwx140), False, app(ty_Maybe, app(app(ty_@2, bdb), bdc)), be) -> new_ltEs2(vwx130, vwx140, bdb, bdc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Left(vwx130), Left(vwx140), False, app(app(ty_Either, app(app(ty_@2, cb), cc)), bd), be) -> new_ltEs2(vwx130, vwx140, cb, cc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@2(vwx130, vwx131), @2(vwx140, vwx141), False, app(app(ty_@2, hh), app(app(ty_@2, bag), bah)), be) -> new_ltEs2(vwx131, vwx141, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Right(vwx130), Right(vwx140), False, app(app(ty_Either, ce), app(app(ty_@2, de), df)), be) -> new_ltEs2(vwx130, vwx140, de, df) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), False, app(app(app(ty_@3, dh), ea), app(app(ty_@2, eh), fa)), be) -> new_ltEs2(vwx132, vwx142, eh, fa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), False, app(app(app(ty_@3, app(ty_Maybe, hf)), ea), ff), be) -> new_lt3(vwx130, vwx140, hf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), False, app(app(app(ty_@3, dh), app(ty_Maybe, ge)), ff), be) -> new_lt3(vwx131, vwx141, ge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@2(vwx130, vwx131), @2(vwx140, vwx141), False, app(app(ty_@2, app(ty_Maybe, bcc)), bbd), be) -> new_lt3(vwx130, vwx140, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), False, app(app(app(ty_@3, dh), app(app(ty_@2, gc), gd)), ff), be) -> new_lt2(vwx131, vwx141, gc, gd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@2(vwx130, vwx131), @2(vwx140, vwx141), False, app(app(ty_@2, app(app(ty_@2, bca), bcb)), bbd), be) -> new_lt2(vwx130, vwx140, bca, bcb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), False, app(app(app(ty_@3, app(app(ty_@2, hd), he)), ea), ff), be) -> new_lt2(vwx130, vwx140, hd, he) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), False, app(app(app(ty_@3, dh), app(app(app(ty_@3, fg), fh), ga)), ff), be) -> new_lt0(vwx131, vwx141, fg, fh, ga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(@2(vwx130, vwx131), @2(vwx140, vwx141), False, app(app(ty_@2, app(app(app(ty_@3, bbe), bbf), bbg)), bbd), be) -> new_lt0(vwx130, vwx140, bbe, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), False, app(app(app(ty_@3, app(app(app(ty_@3, gh), ha), hb)), ea), ff), be) -> new_lt0(vwx130, vwx140, gh, ha, hb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), False, app(app(app(ty_@3, dh), app(ty_[], gb)), ff), be) -> new_lt1(vwx131, vwx141, gb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), False, app(app(app(ty_@3, app(ty_[], hc)), ea), ff), be) -> new_lt1(vwx130, vwx140, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@2(vwx130, vwx131), @2(vwx140, vwx141), False, app(app(ty_@2, app(ty_[], bbh)), bbd), be) -> new_lt1(vwx130, vwx140, bbh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@2(vwx130, vwx131), @2(vwx140, vwx141), False, app(app(ty_@2, hh), app(ty_[], baf)), be) -> new_ltEs1(vwx131, vwx141, baf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Left(vwx130), Left(vwx140), False, app(app(ty_Either, app(ty_[], ca)), bd), be) -> new_ltEs1(vwx130, vwx140, ca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), False, app(app(app(ty_@3, dh), ea), app(ty_[], eg)), be) -> new_ltEs1(vwx132, vwx142, eg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Just(vwx130), Just(vwx140), False, app(ty_Maybe, app(ty_[], bda)), be) -> new_ltEs1(vwx130, vwx140, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Right(vwx130), Right(vwx140), False, app(app(ty_Either, ce), app(ty_[], dd)), be) -> new_ltEs1(vwx130, vwx140, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), False, app(app(app(ty_@3, dh), app(app(ty_Either, fc), fd)), ff), be) -> new_lt(vwx131, vwx141, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@2(vwx130, vwx131), @2(vwx140, vwx141), False, app(app(ty_@2, app(app(ty_Either, bbb), bbc)), bbd), be) -> new_lt(vwx130, vwx140, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@3(vwx130, vwx131, vwx132), @3(vwx140, vwx141, vwx142), False, app(app(app(ty_@3, app(app(ty_Either, gf), gg)), ea), ff), be) -> new_lt(vwx130, vwx140, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 ---------------------------------------- (23) YES ---------------------------------------- (24) Obligation: Q DP problem: The TRS P consists of the following rules: new_esEs(@2(vwx300, vwx301), @2(vwx400, vwx401), cb, app(ty_[], cf)) -> new_esEs1(vwx301, vwx401, cf) new_esEs3(Left(vwx300), Left(vwx400), app(app(ty_Either, bcg), bch), bca) -> new_esEs3(vwx300, vwx400, bcg, bch) new_esEs3(Right(vwx300), Right(vwx400), bda, app(ty_[], bde)) -> new_esEs1(vwx300, vwx400, bde) new_esEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), hd, gc, app(app(ty_@2, baf), bag)) -> new_esEs(vwx302, vwx402, baf, bag) new_esEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(ty_@2, ga), gb), gc, gd) -> new_esEs(vwx300, vwx400, ga, gb) new_esEs(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(ty_@2, h), ba), bb) -> new_esEs(vwx300, vwx400, h, ba) new_esEs(@2(vwx300, vwx301), @2(vwx400, vwx401), app(ty_[], bd), bb) -> new_esEs1(vwx300, vwx400, bd) new_esEs1(:(vwx300, vwx301), :(vwx400, vwx401), app(ty_Maybe, eh)) -> new_esEs0(vwx300, vwx400, eh) new_esEs(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(ty_Either, bh), ca), bb) -> new_esEs3(vwx300, vwx400, bh, ca) new_esEs1(:(vwx300, vwx301), :(vwx400, vwx401), app(app(ty_Either, ff), fg)) -> new_esEs3(vwx300, vwx400, ff, fg) new_esEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), hd, gc, app(app(ty_Either, bbe), bbf)) -> new_esEs3(vwx302, vwx402, bbe, bbf) new_esEs0(Just(vwx300), Just(vwx400), app(app(ty_Either, ed), ee)) -> new_esEs3(vwx300, vwx400, ed, ee) new_esEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), hd, app(app(app(ty_@3, baa), bab), bac), gd) -> new_esEs2(vwx301, vwx401, baa, bab, bac) new_esEs3(Right(vwx300), Right(vwx400), bda, app(app(ty_Either, bea), beb)) -> new_esEs3(vwx300, vwx400, bea, beb) new_esEs0(Just(vwx300), Just(vwx400), app(app(app(ty_@3, ea), eb), ec)) -> new_esEs2(vwx300, vwx400, ea, eb, ec) new_esEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(app(ty_@3, gg), gh), ha), gc, gd) -> new_esEs2(vwx300, vwx400, gg, gh, ha) new_esEs(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(app(ty_@3, be), bf), bg), bb) -> new_esEs2(vwx300, vwx400, be, bf, bg) new_esEs(@2(vwx300, vwx301), @2(vwx400, vwx401), cb, app(app(ty_@2, cc), cd)) -> new_esEs(vwx301, vwx401, cc, cd) new_esEs3(Right(vwx300), Right(vwx400), bda, app(ty_Maybe, bdd)) -> new_esEs0(vwx300, vwx400, bdd) new_esEs3(Left(vwx300), Left(vwx400), app(app(ty_@2, bbg), bbh), bca) -> new_esEs(vwx300, vwx400, bbg, bbh) new_esEs(@2(vwx300, vwx301), @2(vwx400, vwx401), cb, app(app(app(ty_@3, cg), da), db)) -> new_esEs2(vwx301, vwx401, cg, da, db) new_esEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), hd, gc, app(ty_Maybe, bah)) -> new_esEs0(vwx302, vwx402, bah) new_esEs3(Right(vwx300), Right(vwx400), bda, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs2(vwx300, vwx400, bdf, bdg, bdh) new_esEs3(Left(vwx300), Left(vwx400), app(ty_[], bcc), bca) -> new_esEs1(vwx300, vwx400, bcc) new_esEs(@2(vwx300, vwx301), @2(vwx400, vwx401), cb, app(app(ty_Either, dc), dd)) -> new_esEs3(vwx301, vwx401, dc, dd) new_esEs1(:(vwx300, vwx301), :(vwx400, vwx401), fh) -> new_esEs1(vwx301, vwx401, fh) new_esEs1(:(vwx300, vwx301), :(vwx400, vwx401), app(app(ty_@2, ef), eg)) -> new_esEs(vwx300, vwx400, ef, eg) new_esEs0(Just(vwx300), Just(vwx400), app(app(ty_@2, de), df)) -> new_esEs(vwx300, vwx400, de, df) new_esEs1(:(vwx300, vwx301), :(vwx400, vwx401), app(ty_[], fa)) -> new_esEs1(vwx300, vwx400, fa) new_esEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(ty_Maybe, ge), gc, gd) -> new_esEs0(vwx300, vwx400, ge) new_esEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), hd, app(app(ty_Either, bad), bae), gd) -> new_esEs3(vwx301, vwx401, bad, bae) new_esEs3(Left(vwx300), Left(vwx400), app(ty_Maybe, bcb), bca) -> new_esEs0(vwx300, vwx400, bcb) new_esEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(ty_[], gf), gc, gd) -> new_esEs1(vwx300, vwx400, gf) new_esEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), hd, app(ty_Maybe, hg), gd) -> new_esEs0(vwx301, vwx401, hg) new_esEs0(Just(vwx300), Just(vwx400), app(ty_Maybe, dg)) -> new_esEs0(vwx300, vwx400, dg) new_esEs1(:(vwx300, vwx301), :(vwx400, vwx401), app(app(app(ty_@3, fb), fc), fd)) -> new_esEs2(vwx300, vwx400, fb, fc, fd) new_esEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), hd, gc, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs2(vwx302, vwx402, bbb, bbc, bbd) new_esEs3(Right(vwx300), Right(vwx400), bda, app(app(ty_@2, bdb), bdc)) -> new_esEs(vwx300, vwx400, bdb, bdc) new_esEs(@2(vwx300, vwx301), @2(vwx400, vwx401), app(ty_Maybe, bc), bb) -> new_esEs0(vwx300, vwx400, bc) new_esEs3(Left(vwx300), Left(vwx400), app(app(app(ty_@3, bcd), bce), bcf), bca) -> new_esEs2(vwx300, vwx400, bcd, bce, bcf) new_esEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), hd, app(app(ty_@2, he), hf), gd) -> new_esEs(vwx301, vwx401, he, hf) new_esEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), hd, app(ty_[], hh), gd) -> new_esEs1(vwx301, vwx401, hh) new_esEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(ty_Either, hb), hc), gc, gd) -> new_esEs3(vwx300, vwx400, hb, hc) new_esEs(@2(vwx300, vwx301), @2(vwx400, vwx401), cb, app(ty_Maybe, ce)) -> new_esEs0(vwx301, vwx401, ce) new_esEs0(Just(vwx300), Just(vwx400), app(ty_[], dh)) -> new_esEs1(vwx300, vwx400, dh) new_esEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), hd, gc, app(ty_[], bba)) -> new_esEs1(vwx302, vwx402, bba) 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_esEs1(:(vwx300, vwx301), :(vwx400, vwx401), app(app(ty_@2, ef), eg)) -> new_esEs(vwx300, vwx400, ef, eg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(:(vwx300, vwx301), :(vwx400, vwx401), app(app(ty_Either, ff), fg)) -> new_esEs3(vwx300, vwx400, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(:(vwx300, vwx301), :(vwx400, vwx401), app(app(app(ty_@3, fb), fc), fd)) -> new_esEs2(vwx300, vwx400, fb, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(:(vwx300, vwx301), :(vwx400, vwx401), app(ty_Maybe, eh)) -> new_esEs0(vwx300, vwx400, eh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(Just(vwx300), Just(vwx400), app(app(ty_@2, de), df)) -> new_esEs(vwx300, vwx400, de, df) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(Just(vwx300), Just(vwx400), app(app(ty_Either, ed), ee)) -> new_esEs3(vwx300, vwx400, ed, ee) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(Just(vwx300), Just(vwx400), app(app(app(ty_@3, ea), eb), ec)) -> new_esEs2(vwx300, vwx400, ea, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(Just(vwx300), Just(vwx400), app(ty_[], dh)) -> new_esEs1(vwx300, vwx400, dh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(Just(vwx300), Just(vwx400), app(ty_Maybe, dg)) -> new_esEs0(vwx300, vwx400, dg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(:(vwx300, vwx301), :(vwx400, vwx401), fh) -> new_esEs1(vwx301, vwx401, fh) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs1(:(vwx300, vwx301), :(vwx400, vwx401), app(ty_[], fa)) -> new_esEs1(vwx300, vwx400, fa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(Left(vwx300), Left(vwx400), app(app(ty_@2, bbg), bbh), bca) -> new_esEs(vwx300, vwx400, bbg, bbh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(Right(vwx300), Right(vwx400), bda, app(app(ty_@2, bdb), bdc)) -> new_esEs(vwx300, vwx400, bdb, bdc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(ty_@2, h), ba), bb) -> new_esEs(vwx300, vwx400, h, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(@2(vwx300, vwx301), @2(vwx400, vwx401), cb, app(app(ty_@2, cc), cd)) -> new_esEs(vwx301, vwx401, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), hd, gc, app(app(ty_@2, baf), bag)) -> new_esEs(vwx302, vwx402, baf, bag) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(ty_@2, ga), gb), gc, gd) -> new_esEs(vwx300, vwx400, ga, gb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), hd, app(app(ty_@2, he), hf), gd) -> new_esEs(vwx301, vwx401, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(Left(vwx300), Left(vwx400), app(app(ty_Either, bcg), bch), bca) -> new_esEs3(vwx300, vwx400, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(Right(vwx300), Right(vwx400), bda, app(app(ty_Either, bea), beb)) -> new_esEs3(vwx300, vwx400, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(Right(vwx300), Right(vwx400), bda, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs2(vwx300, vwx400, bdf, bdg, bdh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs3(Left(vwx300), Left(vwx400), app(app(app(ty_@3, bcd), bce), bcf), bca) -> new_esEs2(vwx300, vwx400, bcd, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(Right(vwx300), Right(vwx400), bda, app(ty_[], bde)) -> new_esEs1(vwx300, vwx400, bde) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(Left(vwx300), Left(vwx400), app(ty_[], bcc), bca) -> new_esEs1(vwx300, vwx400, bcc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(Right(vwx300), Right(vwx400), bda, app(ty_Maybe, bdd)) -> new_esEs0(vwx300, vwx400, bdd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(Left(vwx300), Left(vwx400), app(ty_Maybe, bcb), bca) -> new_esEs0(vwx300, vwx400, bcb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(ty_Either, bh), ca), bb) -> new_esEs3(vwx300, vwx400, bh, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(@2(vwx300, vwx301), @2(vwx400, vwx401), cb, app(app(ty_Either, dc), dd)) -> new_esEs3(vwx301, vwx401, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), hd, gc, app(app(ty_Either, bbe), bbf)) -> new_esEs3(vwx302, vwx402, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), hd, app(app(ty_Either, bad), bae), gd) -> new_esEs3(vwx301, vwx401, bad, bae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(ty_Either, hb), hc), gc, gd) -> new_esEs3(vwx300, vwx400, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(app(ty_@3, be), bf), bg), bb) -> new_esEs2(vwx300, vwx400, be, bf, bg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs(@2(vwx300, vwx301), @2(vwx400, vwx401), cb, app(app(app(ty_@3, cg), da), db)) -> new_esEs2(vwx301, vwx401, cg, da, db) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs(@2(vwx300, vwx301), @2(vwx400, vwx401), cb, app(ty_[], cf)) -> new_esEs1(vwx301, vwx401, cf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(@2(vwx300, vwx301), @2(vwx400, vwx401), app(ty_[], bd), bb) -> new_esEs1(vwx300, vwx400, bd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(@2(vwx300, vwx301), @2(vwx400, vwx401), app(ty_Maybe, bc), bb) -> new_esEs0(vwx300, vwx400, bc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(@2(vwx300, vwx301), @2(vwx400, vwx401), cb, app(ty_Maybe, ce)) -> new_esEs0(vwx301, vwx401, ce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), hd, app(app(app(ty_@3, baa), bab), bac), gd) -> new_esEs2(vwx301, vwx401, baa, bab, bac) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(app(ty_@3, gg), gh), ha), gc, gd) -> new_esEs2(vwx300, vwx400, gg, gh, ha) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), hd, gc, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs2(vwx302, vwx402, bbb, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(ty_[], gf), gc, gd) -> new_esEs1(vwx300, vwx400, gf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), hd, app(ty_[], hh), gd) -> new_esEs1(vwx301, vwx401, hh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), hd, gc, app(ty_[], bba)) -> new_esEs1(vwx302, vwx402, bba) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), hd, gc, app(ty_Maybe, bah)) -> new_esEs0(vwx302, vwx402, bah) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(ty_Maybe, ge), gc, gd) -> new_esEs0(vwx300, vwx400, ge) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), hd, app(ty_Maybe, hg), gd) -> new_esEs0(vwx301, vwx401, hg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 ---------------------------------------- (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(vwx16200), Succ(vwx31000)) -> new_primPlusNat(vwx16200, vwx31000) 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(vwx16200), Succ(vwx31000)) -> new_primPlusNat(vwx16200, vwx31000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (32) YES