/export/starexec/sandbox/solver/bin/starexec_run_standard /export/starexec/sandbox/benchmark/theBenchmark.hs /export/starexec/sandbox/output/output_files -------------------------------------------------------------------------------- YES proof of /export/starexec/sandbox/benchmark/theBenchmark.hs # AProVE Commit ID: 794c25de1cacf0d048858bcd21c9a779e1221865 marcel 20200619 unpublished dirty H-Termination with start terms of the given HASKELL could be proven: (0) HASKELL (1) CR [EQUIVALENT, 0 ms] (2) HASKELL (3) IFR [EQUIVALENT, 0 ms] (4) HASKELL (5) BR [EQUIVALENT, 0 ms] (6) HASKELL (7) COR [EQUIVALENT, 9 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, 24 ms] (20) YES (21) QDP (22) QDPSizeChangeProof [EQUIVALENT, 39 ms] (23) YES (24) QDP (25) QDPSizeChangeProof [EQUIVALENT, 0 ms] (26) YES (27) QDP (28) QDPSizeChangeProof [EQUIVALENT, 0 ms] (29) YES (30) QDP (31) QDPSizeChangeProof [EQUIVALENT, 0 ms] (32) YES ---------------------------------------- (0) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (1) CR (EQUIVALENT) Case Reductions: The following Case expression "case compare x y of { EQ -> o; LT -> LT; GT -> GT} " is transformed to "primCompAux0 o EQ = o; primCompAux0 o LT = LT; primCompAux0 o GT = GT; " ---------------------------------------- (2) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (3) IFR (EQUIVALENT) If Reductions: The following If expression "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" is transformed to "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); primDivNatS0 x y False = Zero; " The following If expression "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" is transformed to "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); primModNatS0 x y False = Succ x; " ---------------------------------------- (4) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (5) BR (EQUIVALENT) Replaced joker patterns by fresh variables and removed binding patterns. ---------------------------------------- (6) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (7) COR (EQUIVALENT) Cond Reductions: The following Function with conditions "absReal x|x >= 0x|otherwise`negate` x; " is transformed to "absReal x = absReal2 x; " "absReal0 x True = `negate` x; " "absReal1 x True = x; absReal1 x False = absReal0 x otherwise; " "absReal2 x = absReal1 x (x >= 0); " The following Function with conditions "gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); " is transformed to "gcd' x zx = gcd'2 x zx; gcd' x y = gcd'0 x y; " "gcd'0 x y = gcd' y (x `rem` y); " "gcd'1 True x zx = x; gcd'1 zy zz vuu = gcd'0 zz vuu; " "gcd'2 x zx = gcd'1 (zx == 0) x zx; gcd'2 vuv vuw = gcd'0 vuv vuw; " The following Function with conditions "gcd 0 0 = error []; gcd x y = gcd' (abs x) (abs y) where { gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); } ; " is transformed to "gcd vux vuy = gcd3 vux vuy; gcd x y = gcd0 x y; " "gcd0 x y = gcd' (abs x) (abs y) where { gcd' x zx = gcd'2 x zx; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x zx = x; gcd'1 zy zz vuu = gcd'0 zz vuu; ; gcd'2 x zx = gcd'1 (zx == 0) x zx; gcd'2 vuv vuw = gcd'0 vuv vuw; } ; " "gcd1 True vux vuy = error []; gcd1 vuz vvu vvv = gcd0 vvu vvv; " "gcd2 True vux vuy = gcd1 (vuy == 0) vux vuy; gcd2 vvw vvx vvy = gcd0 vvx vvy; " "gcd3 vux vuy = gcd2 (vux == 0) vux vuy; gcd3 vvz vwu = gcd0 vvz vwu; " The following Function with conditions "undefined |Falseundefined; " is transformed to "undefined = undefined1; " "undefined0 True = undefined; " "undefined1 = undefined0 False; " The following Function with conditions "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { d = gcd x y; } ; " is transformed to "reduce x y = reduce2 x y; " "reduce2 x y = reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } ; " The following Function with conditions "compare x y|x == yEQ|x <= yLT|otherwiseGT; " is transformed to "compare x y = compare3 x y; " "compare1 x y True = LT; compare1 x y False = compare0 x y otherwise; " "compare0 x y True = GT; " "compare2 x y True = EQ; compare2 x y False = compare1 x y (x <= y); " "compare3 x y = compare2 x y (x == y); " ---------------------------------------- (8) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (9) LetRed (EQUIVALENT) Let/Where Reductions: The bindings of the following Let/Where expression "gcd' (abs x) (abs y) where { gcd' x zx = gcd'2 x zx; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x zx = x; gcd'1 zy zz vuu = gcd'0 zz vuu; ; gcd'2 x zx = gcd'1 (zx == 0) x zx; gcd'2 vuv vuw = gcd'0 vuv vuw; } " are unpacked to the following functions on top level "gcd0Gcd' x zx = gcd0Gcd'2 x zx; gcd0Gcd' x y = gcd0Gcd'0 x y; " "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); " "gcd0Gcd'1 True x zx = x; gcd0Gcd'1 zy zz vuu = gcd0Gcd'0 zz vuu; " "gcd0Gcd'2 x zx = gcd0Gcd'1 (zx == 0) x zx; gcd0Gcd'2 vuv vuw = gcd0Gcd'0 vuv vuw; " The bindings of the following Let/Where expression "reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } " are unpacked to the following functions on top level "reduce2D vwv vww = gcd vwv vww; " "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="black",shape="triangle"];4 -> 5[label="",style="solid", color="black", weight=3]; 5[label="compare vwx3 vwx4 /= LT",fontsize=16,color="black",shape="box"];5 -> 6[label="",style="solid", color="black", weight=3]; 6 -> 91[label="",style="dashed", color="red", weight=0]; 6[label="not (compare vwx3 vwx4 == LT)",fontsize=16,color="magenta"];6 -> 92[label="",style="dashed", color="magenta", weight=3]; 92[label="compare vwx3 vwx4 == LT",fontsize=16,color="black",shape="box"];92 -> 99[label="",style="solid", color="black", weight=3]; 91[label="not vwx16",fontsize=16,color="burlywood",shape="triangle"];2223[label="vwx16/False",fontsize=10,color="white",style="solid",shape="box"];91 -> 2223[label="",style="solid", color="burlywood", weight=9]; 2223 -> 100[label="",style="solid", color="burlywood", weight=3]; 2224[label="vwx16/True",fontsize=10,color="white",style="solid",shape="box"];91 -> 2224[label="",style="solid", color="burlywood", weight=9]; 2224 -> 101[label="",style="solid", color="burlywood", weight=3]; 99[label="compare3 vwx3 vwx4 == LT",fontsize=16,color="black",shape="box"];99 -> 102[label="",style="solid", color="black", weight=3]; 100[label="not False",fontsize=16,color="black",shape="box"];100 -> 103[label="",style="solid", color="black", weight=3]; 101[label="not True",fontsize=16,color="black",shape="box"];101 -> 104[label="",style="solid", color="black", weight=3]; 102[label="compare2 vwx3 vwx4 (vwx3 == vwx4) == LT",fontsize=16,color="burlywood",shape="box"];2225[label="vwx3/(vwx30,vwx31)",fontsize=10,color="white",style="solid",shape="box"];102 -> 2225[label="",style="solid", color="burlywood", weight=9]; 2225 -> 105[label="",style="solid", color="burlywood", weight=3]; 103[label="True",fontsize=16,color="green",shape="box"];104[label="False",fontsize=16,color="green",shape="box"];105[label="compare2 (vwx30,vwx31) vwx4 ((vwx30,vwx31) == vwx4) == LT",fontsize=16,color="burlywood",shape="box"];2226[label="vwx4/(vwx40,vwx41)",fontsize=10,color="white",style="solid",shape="box"];105 -> 2226[label="",style="solid", color="burlywood", weight=9]; 2226 -> 106[label="",style="solid", color="burlywood", weight=3]; 106[label="compare2 (vwx30,vwx31) (vwx40,vwx41) ((vwx30,vwx31) == (vwx40,vwx41)) == LT",fontsize=16,color="black",shape="box"];106 -> 107[label="",style="solid", color="black", weight=3]; 107 -> 108[label="",style="dashed", color="red", weight=0]; 107[label="compare2 (vwx30,vwx31) (vwx40,vwx41) (vwx30 == vwx40 && vwx31 == vwx41) == LT",fontsize=16,color="magenta"];107 -> 109[label="",style="dashed", color="magenta", weight=3]; 107 -> 110[label="",style="dashed", color="magenta", weight=3]; 107 -> 111[label="",style="dashed", color="magenta", weight=3]; 107 -> 112[label="",style="dashed", color="magenta", weight=3]; 107 -> 113[label="",style="dashed", color="magenta", weight=3]; 109[label="vwx30",fontsize=16,color="green",shape="box"];110[label="vwx31",fontsize=16,color="green",shape="box"];111[label="vwx40",fontsize=16,color="green",shape="box"];112[label="vwx41",fontsize=16,color="green",shape="box"];113[label="vwx30 == vwx40",fontsize=16,color="blue",shape="box"];2227[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];113 -> 2227[label="",style="solid", color="blue", weight=9]; 2227 -> 114[label="",style="solid", color="blue", weight=3]; 2228[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];113 -> 2228[label="",style="solid", color="blue", weight=9]; 2228 -> 115[label="",style="solid", color="blue", weight=3]; 2229[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];113 -> 2229[label="",style="solid", color="blue", weight=9]; 2229 -> 116[label="",style="solid", color="blue", weight=3]; 2230[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];113 -> 2230[label="",style="solid", color="blue", weight=9]; 2230 -> 117[label="",style="solid", color="blue", weight=3]; 2231[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];113 -> 2231[label="",style="solid", color="blue", weight=9]; 2231 -> 118[label="",style="solid", color="blue", weight=3]; 2232[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];113 -> 2232[label="",style="solid", color="blue", weight=9]; 2232 -> 119[label="",style="solid", color="blue", weight=3]; 2233[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];113 -> 2233[label="",style="solid", color="blue", weight=9]; 2233 -> 120[label="",style="solid", color="blue", weight=3]; 2234[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];113 -> 2234[label="",style="solid", color="blue", weight=9]; 2234 -> 121[label="",style="solid", color="blue", weight=3]; 2235[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];113 -> 2235[label="",style="solid", color="blue", weight=9]; 2235 -> 122[label="",style="solid", color="blue", weight=3]; 2236[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];113 -> 2236[label="",style="solid", color="blue", weight=9]; 2236 -> 123[label="",style="solid", color="blue", weight=3]; 2237[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];113 -> 2237[label="",style="solid", color="blue", weight=9]; 2237 -> 124[label="",style="solid", color="blue", weight=3]; 2238[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];113 -> 2238[label="",style="solid", color="blue", weight=9]; 2238 -> 125[label="",style="solid", color="blue", weight=3]; 2239[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];113 -> 2239[label="",style="solid", color="blue", weight=9]; 2239 -> 126[label="",style="solid", color="blue", weight=3]; 2240[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];113 -> 2240[label="",style="solid", color="blue", weight=9]; 2240 -> 127[label="",style="solid", color="blue", weight=3]; 108[label="compare2 (vwx23,vwx24) (vwx25,vwx26) (vwx27 && vwx24 == vwx26) == LT",fontsize=16,color="burlywood",shape="triangle"];2241[label="vwx27/False",fontsize=10,color="white",style="solid",shape="box"];108 -> 2241[label="",style="solid", color="burlywood", weight=9]; 2241 -> 128[label="",style="solid", color="burlywood", weight=3]; 2242[label="vwx27/True",fontsize=10,color="white",style="solid",shape="box"];108 -> 2242[label="",style="solid", color="burlywood", weight=9]; 2242 -> 129[label="",style="solid", color="burlywood", weight=3]; 114[label="vwx30 == vwx40",fontsize=16,color="black",shape="triangle"];114 -> 130[label="",style="solid", color="black", weight=3]; 115[label="vwx30 == vwx40",fontsize=16,color="black",shape="triangle"];115 -> 131[label="",style="solid", color="black", weight=3]; 116[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2243[label="vwx30/Left vwx300",fontsize=10,color="white",style="solid",shape="box"];116 -> 2243[label="",style="solid", color="burlywood", weight=9]; 2243 -> 132[label="",style="solid", color="burlywood", weight=3]; 2244[label="vwx30/Right vwx300",fontsize=10,color="white",style="solid",shape="box"];116 -> 2244[label="",style="solid", color="burlywood", weight=9]; 2244 -> 133[label="",style="solid", color="burlywood", weight=3]; 117[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2245[label="vwx30/vwx300 : vwx301",fontsize=10,color="white",style="solid",shape="box"];117 -> 2245[label="",style="solid", color="burlywood", weight=9]; 2245 -> 134[label="",style="solid", color="burlywood", weight=3]; 2246[label="vwx30/[]",fontsize=10,color="white",style="solid",shape="box"];117 -> 2246[label="",style="solid", color="burlywood", weight=9]; 2246 -> 135[label="",style="solid", color="burlywood", weight=3]; 118[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2247[label="vwx30/Nothing",fontsize=10,color="white",style="solid",shape="box"];118 -> 2247[label="",style="solid", color="burlywood", weight=9]; 2247 -> 136[label="",style="solid", color="burlywood", weight=3]; 2248[label="vwx30/Just vwx300",fontsize=10,color="white",style="solid",shape="box"];118 -> 2248[label="",style="solid", color="burlywood", weight=9]; 2248 -> 137[label="",style="solid", color="burlywood", weight=3]; 119[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2249[label="vwx30/LT",fontsize=10,color="white",style="solid",shape="box"];119 -> 2249[label="",style="solid", color="burlywood", weight=9]; 2249 -> 138[label="",style="solid", color="burlywood", weight=3]; 2250[label="vwx30/EQ",fontsize=10,color="white",style="solid",shape="box"];119 -> 2250[label="",style="solid", color="burlywood", weight=9]; 2250 -> 139[label="",style="solid", color="burlywood", weight=3]; 2251[label="vwx30/GT",fontsize=10,color="white",style="solid",shape="box"];119 -> 2251[label="",style="solid", color="burlywood", weight=9]; 2251 -> 140[label="",style="solid", color="burlywood", weight=3]; 120[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2252[label="vwx30/vwx300 :% vwx301",fontsize=10,color="white",style="solid",shape="box"];120 -> 2252[label="",style="solid", color="burlywood", weight=9]; 2252 -> 141[label="",style="solid", color="burlywood", weight=3]; 121[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2253[label="vwx30/False",fontsize=10,color="white",style="solid",shape="box"];121 -> 2253[label="",style="solid", color="burlywood", weight=9]; 2253 -> 142[label="",style="solid", color="burlywood", weight=3]; 2254[label="vwx30/True",fontsize=10,color="white",style="solid",shape="box"];121 -> 2254[label="",style="solid", color="burlywood", weight=9]; 2254 -> 143[label="",style="solid", color="burlywood", weight=3]; 122[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2255[label="vwx30/(vwx300,vwx301)",fontsize=10,color="white",style="solid",shape="box"];122 -> 2255[label="",style="solid", color="burlywood", weight=9]; 2255 -> 144[label="",style="solid", color="burlywood", weight=3]; 123[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2256[label="vwx30/()",fontsize=10,color="white",style="solid",shape="box"];123 -> 2256[label="",style="solid", color="burlywood", weight=9]; 2256 -> 145[label="",style="solid", color="burlywood", weight=3]; 124[label="vwx30 == vwx40",fontsize=16,color="black",shape="triangle"];124 -> 146[label="",style="solid", color="black", weight=3]; 125[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2257[label="vwx30/(vwx300,vwx301,vwx302)",fontsize=10,color="white",style="solid",shape="box"];125 -> 2257[label="",style="solid", color="burlywood", weight=9]; 2257 -> 147[label="",style="solid", color="burlywood", weight=3]; 126[label="vwx30 == vwx40",fontsize=16,color="black",shape="triangle"];126 -> 148[label="",style="solid", color="black", weight=3]; 127[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2258[label="vwx30/Integer vwx300",fontsize=10,color="white",style="solid",shape="box"];127 -> 2258[label="",style="solid", color="burlywood", weight=9]; 2258 -> 149[label="",style="solid", color="burlywood", weight=3]; 128[label="compare2 (vwx23,vwx24) (vwx25,vwx26) (False && vwx24 == vwx26) == LT",fontsize=16,color="black",shape="box"];128 -> 150[label="",style="solid", color="black", weight=3]; 129[label="compare2 (vwx23,vwx24) (vwx25,vwx26) (True && vwx24 == vwx26) == LT",fontsize=16,color="black",shape="box"];129 -> 151[label="",style="solid", color="black", weight=3]; 130[label="primEqInt vwx30 vwx40",fontsize=16,color="burlywood",shape="triangle"];2259[label="vwx30/Pos vwx300",fontsize=10,color="white",style="solid",shape="box"];130 -> 2259[label="",style="solid", color="burlywood", weight=9]; 2259 -> 152[label="",style="solid", color="burlywood", weight=3]; 2260[label="vwx30/Neg vwx300",fontsize=10,color="white",style="solid",shape="box"];130 -> 2260[label="",style="solid", color="burlywood", weight=9]; 2260 -> 153[label="",style="solid", color="burlywood", weight=3]; 131[label="primEqFloat vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];2261[label="vwx30/Float vwx300 vwx301",fontsize=10,color="white",style="solid",shape="box"];131 -> 2261[label="",style="solid", color="burlywood", weight=9]; 2261 -> 154[label="",style="solid", color="burlywood", weight=3]; 132[label="Left vwx300 == vwx40",fontsize=16,color="burlywood",shape="box"];2262[label="vwx40/Left vwx400",fontsize=10,color="white",style="solid",shape="box"];132 -> 2262[label="",style="solid", color="burlywood", weight=9]; 2262 -> 155[label="",style="solid", color="burlywood", weight=3]; 2263[label="vwx40/Right vwx400",fontsize=10,color="white",style="solid",shape="box"];132 -> 2263[label="",style="solid", color="burlywood", weight=9]; 2263 -> 156[label="",style="solid", color="burlywood", weight=3]; 133[label="Right vwx300 == vwx40",fontsize=16,color="burlywood",shape="box"];2264[label="vwx40/Left vwx400",fontsize=10,color="white",style="solid",shape="box"];133 -> 2264[label="",style="solid", color="burlywood", weight=9]; 2264 -> 157[label="",style="solid", color="burlywood", weight=3]; 2265[label="vwx40/Right vwx400",fontsize=10,color="white",style="solid",shape="box"];133 -> 2265[label="",style="solid", color="burlywood", weight=9]; 2265 -> 158[label="",style="solid", color="burlywood", weight=3]; 134[label="vwx300 : vwx301 == vwx40",fontsize=16,color="burlywood",shape="box"];2266[label="vwx40/vwx400 : vwx401",fontsize=10,color="white",style="solid",shape="box"];134 -> 2266[label="",style="solid", color="burlywood", weight=9]; 2266 -> 159[label="",style="solid", color="burlywood", weight=3]; 2267[label="vwx40/[]",fontsize=10,color="white",style="solid",shape="box"];134 -> 2267[label="",style="solid", color="burlywood", weight=9]; 2267 -> 160[label="",style="solid", color="burlywood", weight=3]; 135[label="[] == vwx40",fontsize=16,color="burlywood",shape="box"];2268[label="vwx40/vwx400 : vwx401",fontsize=10,color="white",style="solid",shape="box"];135 -> 2268[label="",style="solid", color="burlywood", weight=9]; 2268 -> 161[label="",style="solid", color="burlywood", weight=3]; 2269[label="vwx40/[]",fontsize=10,color="white",style="solid",shape="box"];135 -> 2269[label="",style="solid", color="burlywood", weight=9]; 2269 -> 162[label="",style="solid", color="burlywood", weight=3]; 136[label="Nothing == vwx40",fontsize=16,color="burlywood",shape="box"];2270[label="vwx40/Nothing",fontsize=10,color="white",style="solid",shape="box"];136 -> 2270[label="",style="solid", color="burlywood", weight=9]; 2270 -> 163[label="",style="solid", color="burlywood", weight=3]; 2271[label="vwx40/Just vwx400",fontsize=10,color="white",style="solid",shape="box"];136 -> 2271[label="",style="solid", color="burlywood", weight=9]; 2271 -> 164[label="",style="solid", color="burlywood", weight=3]; 137[label="Just vwx300 == vwx40",fontsize=16,color="burlywood",shape="box"];2272[label="vwx40/Nothing",fontsize=10,color="white",style="solid",shape="box"];137 -> 2272[label="",style="solid", color="burlywood", weight=9]; 2272 -> 165[label="",style="solid", color="burlywood", weight=3]; 2273[label="vwx40/Just vwx400",fontsize=10,color="white",style="solid",shape="box"];137 -> 2273[label="",style="solid", color="burlywood", weight=9]; 2273 -> 166[label="",style="solid", color="burlywood", weight=3]; 138[label="LT == vwx40",fontsize=16,color="burlywood",shape="box"];2274[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];138 -> 2274[label="",style="solid", color="burlywood", weight=9]; 2274 -> 167[label="",style="solid", color="burlywood", weight=3]; 2275[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];138 -> 2275[label="",style="solid", color="burlywood", weight=9]; 2275 -> 168[label="",style="solid", color="burlywood", weight=3]; 2276[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];138 -> 2276[label="",style="solid", color="burlywood", weight=9]; 2276 -> 169[label="",style="solid", color="burlywood", weight=3]; 139[label="EQ == vwx40",fontsize=16,color="burlywood",shape="box"];2277[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];139 -> 2277[label="",style="solid", color="burlywood", weight=9]; 2277 -> 170[label="",style="solid", color="burlywood", weight=3]; 2278[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];139 -> 2278[label="",style="solid", color="burlywood", weight=9]; 2278 -> 171[label="",style="solid", color="burlywood", weight=3]; 2279[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];139 -> 2279[label="",style="solid", color="burlywood", weight=9]; 2279 -> 172[label="",style="solid", color="burlywood", weight=3]; 140[label="GT == vwx40",fontsize=16,color="burlywood",shape="box"];2280[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];140 -> 2280[label="",style="solid", color="burlywood", weight=9]; 2280 -> 173[label="",style="solid", color="burlywood", weight=3]; 2281[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];140 -> 2281[label="",style="solid", color="burlywood", weight=9]; 2281 -> 174[label="",style="solid", color="burlywood", weight=3]; 2282[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];140 -> 2282[label="",style="solid", color="burlywood", weight=9]; 2282 -> 175[label="",style="solid", color="burlywood", weight=3]; 141[label="vwx300 :% vwx301 == vwx40",fontsize=16,color="burlywood",shape="box"];2283[label="vwx40/vwx400 :% vwx401",fontsize=10,color="white",style="solid",shape="box"];141 -> 2283[label="",style="solid", color="burlywood", weight=9]; 2283 -> 176[label="",style="solid", color="burlywood", weight=3]; 142[label="False == vwx40",fontsize=16,color="burlywood",shape="box"];2284[label="vwx40/False",fontsize=10,color="white",style="solid",shape="box"];142 -> 2284[label="",style="solid", color="burlywood", weight=9]; 2284 -> 177[label="",style="solid", color="burlywood", weight=3]; 2285[label="vwx40/True",fontsize=10,color="white",style="solid",shape="box"];142 -> 2285[label="",style="solid", color="burlywood", weight=9]; 2285 -> 178[label="",style="solid", color="burlywood", weight=3]; 143[label="True == vwx40",fontsize=16,color="burlywood",shape="box"];2286[label="vwx40/False",fontsize=10,color="white",style="solid",shape="box"];143 -> 2286[label="",style="solid", color="burlywood", weight=9]; 2286 -> 179[label="",style="solid", color="burlywood", weight=3]; 2287[label="vwx40/True",fontsize=10,color="white",style="solid",shape="box"];143 -> 2287[label="",style="solid", color="burlywood", weight=9]; 2287 -> 180[label="",style="solid", color="burlywood", weight=3]; 144[label="(vwx300,vwx301) == vwx40",fontsize=16,color="burlywood",shape="box"];2288[label="vwx40/(vwx400,vwx401)",fontsize=10,color="white",style="solid",shape="box"];144 -> 2288[label="",style="solid", color="burlywood", weight=9]; 2288 -> 181[label="",style="solid", color="burlywood", weight=3]; 145[label="() == vwx40",fontsize=16,color="burlywood",shape="box"];2289[label="vwx40/()",fontsize=10,color="white",style="solid",shape="box"];145 -> 2289[label="",style="solid", color="burlywood", weight=9]; 2289 -> 182[label="",style="solid", color="burlywood", weight=3]; 146[label="primEqDouble vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];2290[label="vwx30/Double vwx300 vwx301",fontsize=10,color="white",style="solid",shape="box"];146 -> 2290[label="",style="solid", color="burlywood", weight=9]; 2290 -> 183[label="",style="solid", color="burlywood", weight=3]; 147[label="(vwx300,vwx301,vwx302) == vwx40",fontsize=16,color="burlywood",shape="box"];2291[label="vwx40/(vwx400,vwx401,vwx402)",fontsize=10,color="white",style="solid",shape="box"];147 -> 2291[label="",style="solid", color="burlywood", weight=9]; 2291 -> 184[label="",style="solid", color="burlywood", weight=3]; 148[label="primEqChar vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];2292[label="vwx30/Char vwx300",fontsize=10,color="white",style="solid",shape="box"];148 -> 2292[label="",style="solid", color="burlywood", weight=9]; 2292 -> 185[label="",style="solid", color="burlywood", weight=3]; 149[label="Integer vwx300 == vwx40",fontsize=16,color="burlywood",shape="box"];2293[label="vwx40/Integer vwx400",fontsize=10,color="white",style="solid",shape="box"];149 -> 2293[label="",style="solid", color="burlywood", weight=9]; 2293 -> 186[label="",style="solid", color="burlywood", weight=3]; 150 -> 119[label="",style="dashed", color="red", weight=0]; 150[label="compare2 (vwx23,vwx24) (vwx25,vwx26) False == LT",fontsize=16,color="magenta"];150 -> 187[label="",style="dashed", color="magenta", weight=3]; 150 -> 188[label="",style="dashed", color="magenta", weight=3]; 151 -> 119[label="",style="dashed", color="red", weight=0]; 151[label="compare2 (vwx23,vwx24) (vwx25,vwx26) (vwx24 == vwx26) == LT",fontsize=16,color="magenta"];151 -> 189[label="",style="dashed", color="magenta", weight=3]; 151 -> 190[label="",style="dashed", color="magenta", weight=3]; 152[label="primEqInt (Pos vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];2294[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];152 -> 2294[label="",style="solid", color="burlywood", weight=9]; 2294 -> 191[label="",style="solid", color="burlywood", weight=3]; 2295[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];152 -> 2295[label="",style="solid", color="burlywood", weight=9]; 2295 -> 192[label="",style="solid", color="burlywood", weight=3]; 153[label="primEqInt (Neg vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];2296[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];153 -> 2296[label="",style="solid", color="burlywood", weight=9]; 2296 -> 193[label="",style="solid", color="burlywood", weight=3]; 2297[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];153 -> 2297[label="",style="solid", color="burlywood", weight=9]; 2297 -> 194[label="",style="solid", color="burlywood", weight=3]; 154[label="primEqFloat (Float vwx300 vwx301) vwx40",fontsize=16,color="burlywood",shape="box"];2298[label="vwx40/Float vwx400 vwx401",fontsize=10,color="white",style="solid",shape="box"];154 -> 2298[label="",style="solid", color="burlywood", weight=9]; 2298 -> 195[label="",style="solid", color="burlywood", weight=3]; 155[label="Left vwx300 == Left vwx400",fontsize=16,color="black",shape="box"];155 -> 196[label="",style="solid", color="black", weight=3]; 156[label="Left vwx300 == Right vwx400",fontsize=16,color="black",shape="box"];156 -> 197[label="",style="solid", color="black", weight=3]; 157[label="Right vwx300 == Left vwx400",fontsize=16,color="black",shape="box"];157 -> 198[label="",style="solid", color="black", weight=3]; 158[label="Right vwx300 == Right vwx400",fontsize=16,color="black",shape="box"];158 -> 199[label="",style="solid", color="black", weight=3]; 159[label="vwx300 : vwx301 == vwx400 : vwx401",fontsize=16,color="black",shape="box"];159 -> 200[label="",style="solid", color="black", weight=3]; 160[label="vwx300 : vwx301 == []",fontsize=16,color="black",shape="box"];160 -> 201[label="",style="solid", color="black", weight=3]; 161[label="[] == vwx400 : vwx401",fontsize=16,color="black",shape="box"];161 -> 202[label="",style="solid", color="black", weight=3]; 162[label="[] == []",fontsize=16,color="black",shape="box"];162 -> 203[label="",style="solid", color="black", weight=3]; 163[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];163 -> 204[label="",style="solid", color="black", weight=3]; 164[label="Nothing == Just vwx400",fontsize=16,color="black",shape="box"];164 -> 205[label="",style="solid", color="black", weight=3]; 165[label="Just vwx300 == Nothing",fontsize=16,color="black",shape="box"];165 -> 206[label="",style="solid", color="black", weight=3]; 166[label="Just vwx300 == Just vwx400",fontsize=16,color="black",shape="box"];166 -> 207[label="",style="solid", color="black", weight=3]; 167[label="LT == LT",fontsize=16,color="black",shape="box"];167 -> 208[label="",style="solid", color="black", weight=3]; 168[label="LT == EQ",fontsize=16,color="black",shape="box"];168 -> 209[label="",style="solid", color="black", weight=3]; 169[label="LT == GT",fontsize=16,color="black",shape="box"];169 -> 210[label="",style="solid", color="black", weight=3]; 170[label="EQ == LT",fontsize=16,color="black",shape="box"];170 -> 211[label="",style="solid", color="black", weight=3]; 171[label="EQ == EQ",fontsize=16,color="black",shape="box"];171 -> 212[label="",style="solid", color="black", weight=3]; 172[label="EQ == GT",fontsize=16,color="black",shape="box"];172 -> 213[label="",style="solid", color="black", weight=3]; 173[label="GT == LT",fontsize=16,color="black",shape="box"];173 -> 214[label="",style="solid", color="black", weight=3]; 174[label="GT == EQ",fontsize=16,color="black",shape="box"];174 -> 215[label="",style="solid", color="black", weight=3]; 175[label="GT == GT",fontsize=16,color="black",shape="box"];175 -> 216[label="",style="solid", color="black", weight=3]; 176[label="vwx300 :% vwx301 == vwx400 :% vwx401",fontsize=16,color="black",shape="box"];176 -> 217[label="",style="solid", color="black", weight=3]; 177[label="False == False",fontsize=16,color="black",shape="box"];177 -> 218[label="",style="solid", color="black", weight=3]; 178[label="False == True",fontsize=16,color="black",shape="box"];178 -> 219[label="",style="solid", color="black", weight=3]; 179[label="True == False",fontsize=16,color="black",shape="box"];179 -> 220[label="",style="solid", color="black", weight=3]; 180[label="True == True",fontsize=16,color="black",shape="box"];180 -> 221[label="",style="solid", color="black", weight=3]; 181[label="(vwx300,vwx301) == (vwx400,vwx401)",fontsize=16,color="black",shape="box"];181 -> 222[label="",style="solid", color="black", weight=3]; 182[label="() == ()",fontsize=16,color="black",shape="box"];182 -> 223[label="",style="solid", color="black", weight=3]; 183[label="primEqDouble (Double vwx300 vwx301) vwx40",fontsize=16,color="burlywood",shape="box"];2299[label="vwx40/Double vwx400 vwx401",fontsize=10,color="white",style="solid",shape="box"];183 -> 2299[label="",style="solid", color="burlywood", weight=9]; 2299 -> 224[label="",style="solid", color="burlywood", weight=3]; 184[label="(vwx300,vwx301,vwx302) == (vwx400,vwx401,vwx402)",fontsize=16,color="black",shape="box"];184 -> 225[label="",style="solid", color="black", weight=3]; 185[label="primEqChar (Char vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];2300[label="vwx40/Char vwx400",fontsize=10,color="white",style="solid",shape="box"];185 -> 2300[label="",style="solid", color="burlywood", weight=9]; 2300 -> 226[label="",style="solid", color="burlywood", weight=3]; 186[label="Integer vwx300 == Integer vwx400",fontsize=16,color="black",shape="box"];186 -> 227[label="",style="solid", color="black", weight=3]; 187[label="LT",fontsize=16,color="green",shape="box"];188 -> 1080[label="",style="dashed", color="red", weight=0]; 188[label="compare2 (vwx23,vwx24) (vwx25,vwx26) False",fontsize=16,color="magenta"];188 -> 1081[label="",style="dashed", color="magenta", weight=3]; 188 -> 1082[label="",style="dashed", color="magenta", weight=3]; 188 -> 1083[label="",style="dashed", color="magenta", weight=3]; 189[label="LT",fontsize=16,color="green",shape="box"];190 -> 1080[label="",style="dashed", color="red", weight=0]; 190[label="compare2 (vwx23,vwx24) (vwx25,vwx26) (vwx24 == vwx26)",fontsize=16,color="magenta"];190 -> 1084[label="",style="dashed", color="magenta", weight=3]; 190 -> 1085[label="",style="dashed", color="magenta", weight=3]; 190 -> 1086[label="",style="dashed", color="magenta", weight=3]; 191[label="primEqInt (Pos (Succ vwx3000)) vwx40",fontsize=16,color="burlywood",shape="box"];2301[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];191 -> 2301[label="",style="solid", color="burlywood", weight=9]; 2301 -> 240[label="",style="solid", color="burlywood", weight=3]; 2302[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];191 -> 2302[label="",style="solid", color="burlywood", weight=9]; 2302 -> 241[label="",style="solid", color="burlywood", weight=3]; 192[label="primEqInt (Pos Zero) vwx40",fontsize=16,color="burlywood",shape="box"];2303[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];192 -> 2303[label="",style="solid", color="burlywood", weight=9]; 2303 -> 242[label="",style="solid", color="burlywood", weight=3]; 2304[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];192 -> 2304[label="",style="solid", color="burlywood", weight=9]; 2304 -> 243[label="",style="solid", color="burlywood", weight=3]; 193[label="primEqInt (Neg (Succ vwx3000)) vwx40",fontsize=16,color="burlywood",shape="box"];2305[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];193 -> 2305[label="",style="solid", color="burlywood", weight=9]; 2305 -> 244[label="",style="solid", color="burlywood", weight=3]; 2306[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];193 -> 2306[label="",style="solid", color="burlywood", weight=9]; 2306 -> 245[label="",style="solid", color="burlywood", weight=3]; 194[label="primEqInt (Neg Zero) vwx40",fontsize=16,color="burlywood",shape="box"];2307[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];194 -> 2307[label="",style="solid", color="burlywood", weight=9]; 2307 -> 246[label="",style="solid", color="burlywood", weight=3]; 2308[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];194 -> 2308[label="",style="solid", color="burlywood", weight=9]; 2308 -> 247[label="",style="solid", color="burlywood", weight=3]; 195[label="primEqFloat (Float vwx300 vwx301) (Float vwx400 vwx401)",fontsize=16,color="black",shape="box"];195 -> 248[label="",style="solid", color="black", weight=3]; 196[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];2309[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];196 -> 2309[label="",style="solid", color="blue", weight=9]; 2309 -> 249[label="",style="solid", color="blue", weight=3]; 2310[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];196 -> 2310[label="",style="solid", color="blue", weight=9]; 2310 -> 250[label="",style="solid", color="blue", weight=3]; 2311[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];196 -> 2311[label="",style="solid", color="blue", weight=9]; 2311 -> 251[label="",style="solid", color="blue", weight=3]; 2312[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];196 -> 2312[label="",style="solid", color="blue", weight=9]; 2312 -> 252[label="",style="solid", color="blue", weight=3]; 2313[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];196 -> 2313[label="",style="solid", color="blue", weight=9]; 2313 -> 253[label="",style="solid", color="blue", weight=3]; 2314[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];196 -> 2314[label="",style="solid", color="blue", weight=9]; 2314 -> 254[label="",style="solid", color="blue", weight=3]; 2315[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];196 -> 2315[label="",style="solid", color="blue", weight=9]; 2315 -> 255[label="",style="solid", color="blue", weight=3]; 2316[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];196 -> 2316[label="",style="solid", color="blue", weight=9]; 2316 -> 256[label="",style="solid", color="blue", weight=3]; 2317[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];196 -> 2317[label="",style="solid", color="blue", weight=9]; 2317 -> 257[label="",style="solid", color="blue", weight=3]; 2318[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];196 -> 2318[label="",style="solid", color="blue", weight=9]; 2318 -> 258[label="",style="solid", color="blue", weight=3]; 2319[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];196 -> 2319[label="",style="solid", color="blue", weight=9]; 2319 -> 259[label="",style="solid", color="blue", weight=3]; 2320[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];196 -> 2320[label="",style="solid", color="blue", weight=9]; 2320 -> 260[label="",style="solid", color="blue", weight=3]; 2321[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];196 -> 2321[label="",style="solid", color="blue", weight=9]; 2321 -> 261[label="",style="solid", color="blue", weight=3]; 2322[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];196 -> 2322[label="",style="solid", color="blue", weight=9]; 2322 -> 262[label="",style="solid", color="blue", weight=3]; 197[label="False",fontsize=16,color="green",shape="box"];198[label="False",fontsize=16,color="green",shape="box"];199[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];2323[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];199 -> 2323[label="",style="solid", color="blue", weight=9]; 2323 -> 263[label="",style="solid", color="blue", weight=3]; 2324[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];199 -> 2324[label="",style="solid", color="blue", weight=9]; 2324 -> 264[label="",style="solid", color="blue", weight=3]; 2325[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];199 -> 2325[label="",style="solid", color="blue", weight=9]; 2325 -> 265[label="",style="solid", color="blue", weight=3]; 2326[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];199 -> 2326[label="",style="solid", color="blue", weight=9]; 2326 -> 266[label="",style="solid", color="blue", weight=3]; 2327[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];199 -> 2327[label="",style="solid", color="blue", weight=9]; 2327 -> 267[label="",style="solid", color="blue", weight=3]; 2328[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];199 -> 2328[label="",style="solid", color="blue", weight=9]; 2328 -> 268[label="",style="solid", color="blue", weight=3]; 2329[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];199 -> 2329[label="",style="solid", color="blue", weight=9]; 2329 -> 269[label="",style="solid", color="blue", weight=3]; 2330[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];199 -> 2330[label="",style="solid", color="blue", weight=9]; 2330 -> 270[label="",style="solid", color="blue", weight=3]; 2331[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];199 -> 2331[label="",style="solid", color="blue", weight=9]; 2331 -> 271[label="",style="solid", color="blue", weight=3]; 2332[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];199 -> 2332[label="",style="solid", color="blue", weight=9]; 2332 -> 272[label="",style="solid", color="blue", weight=3]; 2333[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];199 -> 2333[label="",style="solid", color="blue", weight=9]; 2333 -> 273[label="",style="solid", color="blue", weight=3]; 2334[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];199 -> 2334[label="",style="solid", color="blue", weight=9]; 2334 -> 274[label="",style="solid", color="blue", weight=3]; 2335[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];199 -> 2335[label="",style="solid", color="blue", weight=9]; 2335 -> 275[label="",style="solid", color="blue", weight=3]; 2336[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];199 -> 2336[label="",style="solid", color="blue", weight=9]; 2336 -> 276[label="",style="solid", color="blue", weight=3]; 200 -> 396[label="",style="dashed", color="red", weight=0]; 200[label="vwx300 == vwx400 && vwx301 == vwx401",fontsize=16,color="magenta"];200 -> 397[label="",style="dashed", color="magenta", weight=3]; 200 -> 398[label="",style="dashed", color="magenta", weight=3]; 201[label="False",fontsize=16,color="green",shape="box"];202[label="False",fontsize=16,color="green",shape="box"];203[label="True",fontsize=16,color="green",shape="box"];204[label="True",fontsize=16,color="green",shape="box"];205[label="False",fontsize=16,color="green",shape="box"];206[label="False",fontsize=16,color="green",shape="box"];207[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];2337[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];207 -> 2337[label="",style="solid", color="blue", weight=9]; 2337 -> 288[label="",style="solid", color="blue", weight=3]; 2338[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];207 -> 2338[label="",style="solid", color="blue", weight=9]; 2338 -> 289[label="",style="solid", color="blue", weight=3]; 2339[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];207 -> 2339[label="",style="solid", color="blue", weight=9]; 2339 -> 290[label="",style="solid", color="blue", weight=3]; 2340[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];207 -> 2340[label="",style="solid", color="blue", weight=9]; 2340 -> 291[label="",style="solid", color="blue", weight=3]; 2341[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];207 -> 2341[label="",style="solid", color="blue", weight=9]; 2341 -> 292[label="",style="solid", color="blue", weight=3]; 2342[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];207 -> 2342[label="",style="solid", color="blue", weight=9]; 2342 -> 293[label="",style="solid", color="blue", weight=3]; 2343[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];207 -> 2343[label="",style="solid", color="blue", weight=9]; 2343 -> 294[label="",style="solid", color="blue", weight=3]; 2344[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];207 -> 2344[label="",style="solid", color="blue", weight=9]; 2344 -> 295[label="",style="solid", color="blue", weight=3]; 2345[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];207 -> 2345[label="",style="solid", color="blue", weight=9]; 2345 -> 296[label="",style="solid", color="blue", weight=3]; 2346[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];207 -> 2346[label="",style="solid", color="blue", weight=9]; 2346 -> 297[label="",style="solid", color="blue", weight=3]; 2347[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];207 -> 2347[label="",style="solid", color="blue", weight=9]; 2347 -> 298[label="",style="solid", color="blue", weight=3]; 2348[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];207 -> 2348[label="",style="solid", color="blue", weight=9]; 2348 -> 299[label="",style="solid", color="blue", weight=3]; 2349[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];207 -> 2349[label="",style="solid", color="blue", weight=9]; 2349 -> 300[label="",style="solid", color="blue", weight=3]; 2350[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];207 -> 2350[label="",style="solid", color="blue", weight=9]; 2350 -> 301[label="",style="solid", color="blue", weight=3]; 208[label="True",fontsize=16,color="green",shape="box"];209[label="False",fontsize=16,color="green",shape="box"];210[label="False",fontsize=16,color="green",shape="box"];211[label="False",fontsize=16,color="green",shape="box"];212[label="True",fontsize=16,color="green",shape="box"];213[label="False",fontsize=16,color="green",shape="box"];214[label="False",fontsize=16,color="green",shape="box"];215[label="False",fontsize=16,color="green",shape="box"];216[label="True",fontsize=16,color="green",shape="box"];217 -> 396[label="",style="dashed", color="red", weight=0]; 217[label="vwx300 == vwx400 && vwx301 == vwx401",fontsize=16,color="magenta"];217 -> 399[label="",style="dashed", color="magenta", weight=3]; 217 -> 400[label="",style="dashed", color="magenta", weight=3]; 218[label="True",fontsize=16,color="green",shape="box"];219[label="False",fontsize=16,color="green",shape="box"];220[label="False",fontsize=16,color="green",shape="box"];221[label="True",fontsize=16,color="green",shape="box"];222 -> 396[label="",style="dashed", color="red", weight=0]; 222[label="vwx300 == vwx400 && vwx301 == vwx401",fontsize=16,color="magenta"];222 -> 401[label="",style="dashed", color="magenta", weight=3]; 222 -> 402[label="",style="dashed", color="magenta", weight=3]; 223[label="True",fontsize=16,color="green",shape="box"];224[label="primEqDouble (Double vwx300 vwx301) (Double vwx400 vwx401)",fontsize=16,color="black",shape="box"];224 -> 302[label="",style="solid", color="black", weight=3]; 225 -> 396[label="",style="dashed", color="red", weight=0]; 225[label="vwx300 == vwx400 && vwx301 == vwx401 && vwx302 == vwx402",fontsize=16,color="magenta"];225 -> 403[label="",style="dashed", color="magenta", weight=3]; 225 -> 404[label="",style="dashed", color="magenta", weight=3]; 226[label="primEqChar (Char vwx300) (Char vwx400)",fontsize=16,color="black",shape="box"];226 -> 303[label="",style="solid", color="black", weight=3]; 227 -> 130[label="",style="dashed", color="red", weight=0]; 227[label="primEqInt vwx300 vwx400",fontsize=16,color="magenta"];227 -> 304[label="",style="dashed", color="magenta", weight=3]; 227 -> 305[label="",style="dashed", color="magenta", weight=3]; 1081[label="False",fontsize=16,color="green",shape="box"];1082[label="(vwx23,vwx24)",fontsize=16,color="green",shape="box"];1083[label="(vwx25,vwx26)",fontsize=16,color="green",shape="box"];1080[label="compare2 vwx34 vwx36 vwx62",fontsize=16,color="burlywood",shape="triangle"];2351[label="vwx62/False",fontsize=10,color="white",style="solid",shape="box"];1080 -> 2351[label="",style="solid", color="burlywood", weight=9]; 2351 -> 1091[label="",style="solid", color="burlywood", weight=3]; 2352[label="vwx62/True",fontsize=10,color="white",style="solid",shape="box"];1080 -> 2352[label="",style="solid", color="burlywood", weight=9]; 2352 -> 1092[label="",style="solid", color="burlywood", weight=3]; 1084[label="vwx24 == vwx26",fontsize=16,color="blue",shape="box"];2353[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1084 -> 2353[label="",style="solid", color="blue", weight=9]; 2353 -> 1093[label="",style="solid", color="blue", weight=3]; 2354[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1084 -> 2354[label="",style="solid", color="blue", weight=9]; 2354 -> 1094[label="",style="solid", color="blue", weight=3]; 2355[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1084 -> 2355[label="",style="solid", color="blue", weight=9]; 2355 -> 1095[label="",style="solid", color="blue", weight=3]; 2356[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1084 -> 2356[label="",style="solid", color="blue", weight=9]; 2356 -> 1096[label="",style="solid", color="blue", weight=3]; 2357[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1084 -> 2357[label="",style="solid", color="blue", weight=9]; 2357 -> 1097[label="",style="solid", color="blue", weight=3]; 2358[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1084 -> 2358[label="",style="solid", color="blue", weight=9]; 2358 -> 1098[label="",style="solid", color="blue", weight=3]; 2359[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1084 -> 2359[label="",style="solid", color="blue", weight=9]; 2359 -> 1099[label="",style="solid", color="blue", weight=3]; 2360[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1084 -> 2360[label="",style="solid", color="blue", weight=9]; 2360 -> 1100[label="",style="solid", color="blue", weight=3]; 2361[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1084 -> 2361[label="",style="solid", color="blue", weight=9]; 2361 -> 1101[label="",style="solid", color="blue", weight=3]; 2362[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1084 -> 2362[label="",style="solid", color="blue", weight=9]; 2362 -> 1102[label="",style="solid", color="blue", weight=3]; 2363[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1084 -> 2363[label="",style="solid", color="blue", weight=9]; 2363 -> 1103[label="",style="solid", color="blue", weight=3]; 2364[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1084 -> 2364[label="",style="solid", color="blue", weight=9]; 2364 -> 1104[label="",style="solid", color="blue", weight=3]; 2365[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1084 -> 2365[label="",style="solid", color="blue", weight=9]; 2365 -> 1105[label="",style="solid", color="blue", weight=3]; 2366[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1084 -> 2366[label="",style="solid", color="blue", weight=9]; 2366 -> 1106[label="",style="solid", color="blue", weight=3]; 1085[label="(vwx23,vwx24)",fontsize=16,color="green",shape="box"];1086[label="(vwx25,vwx26)",fontsize=16,color="green",shape="box"];240[label="primEqInt (Pos (Succ vwx3000)) (Pos vwx400)",fontsize=16,color="burlywood",shape="box"];2367[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];240 -> 2367[label="",style="solid", color="burlywood", weight=9]; 2367 -> 322[label="",style="solid", color="burlywood", weight=3]; 2368[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];240 -> 2368[label="",style="solid", color="burlywood", weight=9]; 2368 -> 323[label="",style="solid", color="burlywood", weight=3]; 241[label="primEqInt (Pos (Succ vwx3000)) (Neg vwx400)",fontsize=16,color="black",shape="box"];241 -> 324[label="",style="solid", color="black", weight=3]; 242[label="primEqInt (Pos Zero) (Pos vwx400)",fontsize=16,color="burlywood",shape="box"];2369[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];242 -> 2369[label="",style="solid", color="burlywood", weight=9]; 2369 -> 325[label="",style="solid", color="burlywood", weight=3]; 2370[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];242 -> 2370[label="",style="solid", color="burlywood", weight=9]; 2370 -> 326[label="",style="solid", color="burlywood", weight=3]; 243[label="primEqInt (Pos Zero) (Neg vwx400)",fontsize=16,color="burlywood",shape="box"];2371[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];243 -> 2371[label="",style="solid", color="burlywood", weight=9]; 2371 -> 327[label="",style="solid", color="burlywood", weight=3]; 2372[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];243 -> 2372[label="",style="solid", color="burlywood", weight=9]; 2372 -> 328[label="",style="solid", color="burlywood", weight=3]; 244[label="primEqInt (Neg (Succ vwx3000)) (Pos vwx400)",fontsize=16,color="black",shape="box"];244 -> 329[label="",style="solid", color="black", weight=3]; 245[label="primEqInt (Neg (Succ vwx3000)) (Neg vwx400)",fontsize=16,color="burlywood",shape="box"];2373[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];245 -> 2373[label="",style="solid", color="burlywood", weight=9]; 2373 -> 330[label="",style="solid", color="burlywood", weight=3]; 2374[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];245 -> 2374[label="",style="solid", color="burlywood", weight=9]; 2374 -> 331[label="",style="solid", color="burlywood", weight=3]; 246[label="primEqInt (Neg Zero) (Pos vwx400)",fontsize=16,color="burlywood",shape="box"];2375[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];246 -> 2375[label="",style="solid", color="burlywood", weight=9]; 2375 -> 332[label="",style="solid", color="burlywood", weight=3]; 2376[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];246 -> 2376[label="",style="solid", color="burlywood", weight=9]; 2376 -> 333[label="",style="solid", color="burlywood", weight=3]; 247[label="primEqInt (Neg Zero) (Neg vwx400)",fontsize=16,color="burlywood",shape="box"];2377[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];247 -> 2377[label="",style="solid", color="burlywood", weight=9]; 2377 -> 334[label="",style="solid", color="burlywood", weight=3]; 2378[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];247 -> 2378[label="",style="solid", color="burlywood", weight=9]; 2378 -> 335[label="",style="solid", color="burlywood", weight=3]; 248 -> 114[label="",style="dashed", color="red", weight=0]; 248[label="vwx300 * vwx401 == vwx301 * vwx400",fontsize=16,color="magenta"];248 -> 336[label="",style="dashed", color="magenta", weight=3]; 248 -> 337[label="",style="dashed", color="magenta", weight=3]; 249 -> 114[label="",style="dashed", color="red", weight=0]; 249[label="vwx300 == vwx400",fontsize=16,color="magenta"];249 -> 338[label="",style="dashed", color="magenta", weight=3]; 249 -> 339[label="",style="dashed", color="magenta", weight=3]; 250 -> 115[label="",style="dashed", color="red", weight=0]; 250[label="vwx300 == vwx400",fontsize=16,color="magenta"];250 -> 340[label="",style="dashed", color="magenta", weight=3]; 250 -> 341[label="",style="dashed", color="magenta", weight=3]; 251 -> 116[label="",style="dashed", color="red", weight=0]; 251[label="vwx300 == vwx400",fontsize=16,color="magenta"];251 -> 342[label="",style="dashed", color="magenta", weight=3]; 251 -> 343[label="",style="dashed", color="magenta", weight=3]; 252 -> 117[label="",style="dashed", color="red", weight=0]; 252[label="vwx300 == vwx400",fontsize=16,color="magenta"];252 -> 344[label="",style="dashed", color="magenta", weight=3]; 252 -> 345[label="",style="dashed", color="magenta", weight=3]; 253 -> 118[label="",style="dashed", color="red", weight=0]; 253[label="vwx300 == vwx400",fontsize=16,color="magenta"];253 -> 346[label="",style="dashed", color="magenta", weight=3]; 253 -> 347[label="",style="dashed", color="magenta", weight=3]; 254 -> 119[label="",style="dashed", color="red", weight=0]; 254[label="vwx300 == vwx400",fontsize=16,color="magenta"];254 -> 348[label="",style="dashed", color="magenta", weight=3]; 254 -> 349[label="",style="dashed", color="magenta", weight=3]; 255 -> 120[label="",style="dashed", color="red", weight=0]; 255[label="vwx300 == vwx400",fontsize=16,color="magenta"];255 -> 350[label="",style="dashed", color="magenta", weight=3]; 255 -> 351[label="",style="dashed", color="magenta", weight=3]; 256 -> 121[label="",style="dashed", color="red", weight=0]; 256[label="vwx300 == vwx400",fontsize=16,color="magenta"];256 -> 352[label="",style="dashed", color="magenta", weight=3]; 256 -> 353[label="",style="dashed", color="magenta", weight=3]; 257 -> 122[label="",style="dashed", color="red", weight=0]; 257[label="vwx300 == vwx400",fontsize=16,color="magenta"];257 -> 354[label="",style="dashed", color="magenta", weight=3]; 257 -> 355[label="",style="dashed", color="magenta", weight=3]; 258 -> 123[label="",style="dashed", color="red", weight=0]; 258[label="vwx300 == vwx400",fontsize=16,color="magenta"];258 -> 356[label="",style="dashed", color="magenta", weight=3]; 258 -> 357[label="",style="dashed", color="magenta", weight=3]; 259 -> 124[label="",style="dashed", color="red", weight=0]; 259[label="vwx300 == vwx400",fontsize=16,color="magenta"];259 -> 358[label="",style="dashed", color="magenta", weight=3]; 259 -> 359[label="",style="dashed", color="magenta", weight=3]; 260 -> 125[label="",style="dashed", color="red", weight=0]; 260[label="vwx300 == vwx400",fontsize=16,color="magenta"];260 -> 360[label="",style="dashed", color="magenta", weight=3]; 260 -> 361[label="",style="dashed", color="magenta", weight=3]; 261 -> 126[label="",style="dashed", color="red", weight=0]; 261[label="vwx300 == vwx400",fontsize=16,color="magenta"];261 -> 362[label="",style="dashed", color="magenta", weight=3]; 261 -> 363[label="",style="dashed", color="magenta", weight=3]; 262 -> 127[label="",style="dashed", color="red", weight=0]; 262[label="vwx300 == vwx400",fontsize=16,color="magenta"];262 -> 364[label="",style="dashed", color="magenta", weight=3]; 262 -> 365[label="",style="dashed", color="magenta", weight=3]; 263 -> 114[label="",style="dashed", color="red", weight=0]; 263[label="vwx300 == vwx400",fontsize=16,color="magenta"];263 -> 366[label="",style="dashed", color="magenta", weight=3]; 263 -> 367[label="",style="dashed", color="magenta", weight=3]; 264 -> 115[label="",style="dashed", color="red", weight=0]; 264[label="vwx300 == vwx400",fontsize=16,color="magenta"];264 -> 368[label="",style="dashed", color="magenta", weight=3]; 264 -> 369[label="",style="dashed", color="magenta", weight=3]; 265 -> 116[label="",style="dashed", color="red", weight=0]; 265[label="vwx300 == vwx400",fontsize=16,color="magenta"];265 -> 370[label="",style="dashed", color="magenta", weight=3]; 265 -> 371[label="",style="dashed", color="magenta", weight=3]; 266 -> 117[label="",style="dashed", color="red", weight=0]; 266[label="vwx300 == vwx400",fontsize=16,color="magenta"];266 -> 372[label="",style="dashed", color="magenta", weight=3]; 266 -> 373[label="",style="dashed", color="magenta", weight=3]; 267 -> 118[label="",style="dashed", color="red", weight=0]; 267[label="vwx300 == vwx400",fontsize=16,color="magenta"];267 -> 374[label="",style="dashed", color="magenta", weight=3]; 267 -> 375[label="",style="dashed", color="magenta", weight=3]; 268 -> 119[label="",style="dashed", color="red", weight=0]; 268[label="vwx300 == vwx400",fontsize=16,color="magenta"];268 -> 376[label="",style="dashed", color="magenta", weight=3]; 268 -> 377[label="",style="dashed", color="magenta", weight=3]; 269 -> 120[label="",style="dashed", color="red", weight=0]; 269[label="vwx300 == vwx400",fontsize=16,color="magenta"];269 -> 378[label="",style="dashed", color="magenta", weight=3]; 269 -> 379[label="",style="dashed", color="magenta", weight=3]; 270 -> 121[label="",style="dashed", color="red", weight=0]; 270[label="vwx300 == vwx400",fontsize=16,color="magenta"];270 -> 380[label="",style="dashed", color="magenta", weight=3]; 270 -> 381[label="",style="dashed", color="magenta", weight=3]; 271 -> 122[label="",style="dashed", color="red", weight=0]; 271[label="vwx300 == vwx400",fontsize=16,color="magenta"];271 -> 382[label="",style="dashed", color="magenta", weight=3]; 271 -> 383[label="",style="dashed", color="magenta", weight=3]; 272 -> 123[label="",style="dashed", color="red", weight=0]; 272[label="vwx300 == vwx400",fontsize=16,color="magenta"];272 -> 384[label="",style="dashed", color="magenta", weight=3]; 272 -> 385[label="",style="dashed", color="magenta", weight=3]; 273 -> 124[label="",style="dashed", color="red", weight=0]; 273[label="vwx300 == vwx400",fontsize=16,color="magenta"];273 -> 386[label="",style="dashed", color="magenta", weight=3]; 273 -> 387[label="",style="dashed", color="magenta", weight=3]; 274 -> 125[label="",style="dashed", color="red", weight=0]; 274[label="vwx300 == vwx400",fontsize=16,color="magenta"];274 -> 388[label="",style="dashed", color="magenta", weight=3]; 274 -> 389[label="",style="dashed", color="magenta", weight=3]; 275 -> 126[label="",style="dashed", color="red", weight=0]; 275[label="vwx300 == vwx400",fontsize=16,color="magenta"];275 -> 390[label="",style="dashed", color="magenta", weight=3]; 275 -> 391[label="",style="dashed", color="magenta", weight=3]; 276 -> 127[label="",style="dashed", color="red", weight=0]; 276[label="vwx300 == vwx400",fontsize=16,color="magenta"];276 -> 392[label="",style="dashed", color="magenta", weight=3]; 276 -> 393[label="",style="dashed", color="magenta", weight=3]; 397 -> 117[label="",style="dashed", color="red", weight=0]; 397[label="vwx301 == vwx401",fontsize=16,color="magenta"];397 -> 409[label="",style="dashed", color="magenta", weight=3]; 397 -> 410[label="",style="dashed", color="magenta", weight=3]; 398[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];2379[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];398 -> 2379[label="",style="solid", color="blue", weight=9]; 2379 -> 411[label="",style="solid", color="blue", weight=3]; 2380[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];398 -> 2380[label="",style="solid", color="blue", weight=9]; 2380 -> 412[label="",style="solid", color="blue", weight=3]; 2381[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];398 -> 2381[label="",style="solid", color="blue", weight=9]; 2381 -> 413[label="",style="solid", color="blue", weight=3]; 2382[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];398 -> 2382[label="",style="solid", color="blue", weight=9]; 2382 -> 414[label="",style="solid", color="blue", weight=3]; 2383[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];398 -> 2383[label="",style="solid", color="blue", weight=9]; 2383 -> 415[label="",style="solid", color="blue", weight=3]; 2384[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];398 -> 2384[label="",style="solid", color="blue", weight=9]; 2384 -> 416[label="",style="solid", color="blue", weight=3]; 2385[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];398 -> 2385[label="",style="solid", color="blue", weight=9]; 2385 -> 417[label="",style="solid", color="blue", weight=3]; 2386[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];398 -> 2386[label="",style="solid", color="blue", weight=9]; 2386 -> 418[label="",style="solid", color="blue", weight=3]; 2387[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];398 -> 2387[label="",style="solid", color="blue", weight=9]; 2387 -> 419[label="",style="solid", color="blue", weight=3]; 2388[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];398 -> 2388[label="",style="solid", color="blue", weight=9]; 2388 -> 420[label="",style="solid", color="blue", weight=3]; 2389[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];398 -> 2389[label="",style="solid", color="blue", weight=9]; 2389 -> 421[label="",style="solid", color="blue", weight=3]; 2390[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];398 -> 2390[label="",style="solid", color="blue", weight=9]; 2390 -> 422[label="",style="solid", color="blue", weight=3]; 2391[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];398 -> 2391[label="",style="solid", color="blue", weight=9]; 2391 -> 423[label="",style="solid", color="blue", weight=3]; 2392[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];398 -> 2392[label="",style="solid", color="blue", weight=9]; 2392 -> 424[label="",style="solid", color="blue", weight=3]; 396[label="vwx43 && vwx44",fontsize=16,color="burlywood",shape="triangle"];2393[label="vwx43/False",fontsize=10,color="white",style="solid",shape="box"];396 -> 2393[label="",style="solid", color="burlywood", weight=9]; 2393 -> 425[label="",style="solid", color="burlywood", weight=3]; 2394[label="vwx43/True",fontsize=10,color="white",style="solid",shape="box"];396 -> 2394[label="",style="solid", color="burlywood", weight=9]; 2394 -> 426[label="",style="solid", color="burlywood", weight=3]; 288 -> 114[label="",style="dashed", color="red", weight=0]; 288[label="vwx300 == vwx400",fontsize=16,color="magenta"];288 -> 427[label="",style="dashed", color="magenta", weight=3]; 288 -> 428[label="",style="dashed", color="magenta", weight=3]; 289 -> 115[label="",style="dashed", color="red", weight=0]; 289[label="vwx300 == vwx400",fontsize=16,color="magenta"];289 -> 429[label="",style="dashed", color="magenta", weight=3]; 289 -> 430[label="",style="dashed", color="magenta", weight=3]; 290 -> 116[label="",style="dashed", color="red", weight=0]; 290[label="vwx300 == vwx400",fontsize=16,color="magenta"];290 -> 431[label="",style="dashed", color="magenta", weight=3]; 290 -> 432[label="",style="dashed", color="magenta", weight=3]; 291 -> 117[label="",style="dashed", color="red", weight=0]; 291[label="vwx300 == vwx400",fontsize=16,color="magenta"];291 -> 433[label="",style="dashed", color="magenta", weight=3]; 291 -> 434[label="",style="dashed", color="magenta", weight=3]; 292 -> 118[label="",style="dashed", color="red", weight=0]; 292[label="vwx300 == vwx400",fontsize=16,color="magenta"];292 -> 435[label="",style="dashed", color="magenta", weight=3]; 292 -> 436[label="",style="dashed", color="magenta", weight=3]; 293 -> 119[label="",style="dashed", color="red", weight=0]; 293[label="vwx300 == vwx400",fontsize=16,color="magenta"];293 -> 437[label="",style="dashed", color="magenta", weight=3]; 293 -> 438[label="",style="dashed", color="magenta", weight=3]; 294 -> 120[label="",style="dashed", color="red", weight=0]; 294[label="vwx300 == vwx400",fontsize=16,color="magenta"];294 -> 439[label="",style="dashed", color="magenta", weight=3]; 294 -> 440[label="",style="dashed", color="magenta", weight=3]; 295 -> 121[label="",style="dashed", color="red", weight=0]; 295[label="vwx300 == vwx400",fontsize=16,color="magenta"];295 -> 441[label="",style="dashed", color="magenta", weight=3]; 295 -> 442[label="",style="dashed", color="magenta", weight=3]; 296 -> 122[label="",style="dashed", color="red", weight=0]; 296[label="vwx300 == vwx400",fontsize=16,color="magenta"];296 -> 443[label="",style="dashed", color="magenta", weight=3]; 296 -> 444[label="",style="dashed", color="magenta", weight=3]; 297 -> 123[label="",style="dashed", color="red", weight=0]; 297[label="vwx300 == vwx400",fontsize=16,color="magenta"];297 -> 445[label="",style="dashed", color="magenta", weight=3]; 297 -> 446[label="",style="dashed", color="magenta", weight=3]; 298 -> 124[label="",style="dashed", color="red", weight=0]; 298[label="vwx300 == vwx400",fontsize=16,color="magenta"];298 -> 447[label="",style="dashed", color="magenta", weight=3]; 298 -> 448[label="",style="dashed", color="magenta", weight=3]; 299 -> 125[label="",style="dashed", color="red", weight=0]; 299[label="vwx300 == vwx400",fontsize=16,color="magenta"];299 -> 449[label="",style="dashed", color="magenta", weight=3]; 299 -> 450[label="",style="dashed", color="magenta", weight=3]; 300 -> 126[label="",style="dashed", color="red", weight=0]; 300[label="vwx300 == vwx400",fontsize=16,color="magenta"];300 -> 451[label="",style="dashed", color="magenta", weight=3]; 300 -> 452[label="",style="dashed", color="magenta", weight=3]; 301 -> 127[label="",style="dashed", color="red", weight=0]; 301[label="vwx300 == vwx400",fontsize=16,color="magenta"];301 -> 453[label="",style="dashed", color="magenta", weight=3]; 301 -> 454[label="",style="dashed", color="magenta", weight=3]; 399[label="vwx301 == vwx401",fontsize=16,color="blue",shape="box"];2395[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];399 -> 2395[label="",style="solid", color="blue", weight=9]; 2395 -> 455[label="",style="solid", color="blue", weight=3]; 2396[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];399 -> 2396[label="",style="solid", color="blue", weight=9]; 2396 -> 456[label="",style="solid", color="blue", weight=3]; 400[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];2397[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];400 -> 2397[label="",style="solid", color="blue", weight=9]; 2397 -> 457[label="",style="solid", color="blue", weight=3]; 2398[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];400 -> 2398[label="",style="solid", color="blue", weight=9]; 2398 -> 458[label="",style="solid", color="blue", weight=3]; 401[label="vwx301 == vwx401",fontsize=16,color="blue",shape="box"];2399[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 2399[label="",style="solid", color="blue", weight=9]; 2399 -> 459[label="",style="solid", color="blue", weight=3]; 2400[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 2400[label="",style="solid", color="blue", weight=9]; 2400 -> 460[label="",style="solid", color="blue", weight=3]; 2401[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 2401[label="",style="solid", color="blue", weight=9]; 2401 -> 461[label="",style="solid", color="blue", weight=3]; 2402[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 2402[label="",style="solid", color="blue", weight=9]; 2402 -> 462[label="",style="solid", color="blue", weight=3]; 2403[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 2403[label="",style="solid", color="blue", weight=9]; 2403 -> 463[label="",style="solid", color="blue", weight=3]; 2404[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 2404[label="",style="solid", color="blue", weight=9]; 2404 -> 464[label="",style="solid", color="blue", weight=3]; 2405[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 2405[label="",style="solid", color="blue", weight=9]; 2405 -> 465[label="",style="solid", color="blue", weight=3]; 2406[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 2406[label="",style="solid", color="blue", weight=9]; 2406 -> 466[label="",style="solid", color="blue", weight=3]; 2407[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 2407[label="",style="solid", color="blue", weight=9]; 2407 -> 467[label="",style="solid", color="blue", weight=3]; 2408[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 2408[label="",style="solid", color="blue", weight=9]; 2408 -> 468[label="",style="solid", color="blue", weight=3]; 2409[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 2409[label="",style="solid", color="blue", weight=9]; 2409 -> 469[label="",style="solid", color="blue", weight=3]; 2410[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 2410[label="",style="solid", color="blue", weight=9]; 2410 -> 470[label="",style="solid", color="blue", weight=3]; 2411[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 2411[label="",style="solid", color="blue", weight=9]; 2411 -> 471[label="",style="solid", color="blue", weight=3]; 2412[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 2412[label="",style="solid", color="blue", weight=9]; 2412 -> 472[label="",style="solid", color="blue", weight=3]; 402[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];2413[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];402 -> 2413[label="",style="solid", color="blue", weight=9]; 2413 -> 473[label="",style="solid", color="blue", weight=3]; 2414[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];402 -> 2414[label="",style="solid", color="blue", weight=9]; 2414 -> 474[label="",style="solid", color="blue", weight=3]; 2415[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];402 -> 2415[label="",style="solid", color="blue", weight=9]; 2415 -> 475[label="",style="solid", color="blue", weight=3]; 2416[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];402 -> 2416[label="",style="solid", color="blue", weight=9]; 2416 -> 476[label="",style="solid", color="blue", weight=3]; 2417[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];402 -> 2417[label="",style="solid", color="blue", weight=9]; 2417 -> 477[label="",style="solid", color="blue", weight=3]; 2418[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];402 -> 2418[label="",style="solid", color="blue", weight=9]; 2418 -> 478[label="",style="solid", color="blue", weight=3]; 2419[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];402 -> 2419[label="",style="solid", color="blue", weight=9]; 2419 -> 479[label="",style="solid", color="blue", weight=3]; 2420[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];402 -> 2420[label="",style="solid", color="blue", weight=9]; 2420 -> 480[label="",style="solid", color="blue", weight=3]; 2421[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];402 -> 2421[label="",style="solid", color="blue", weight=9]; 2421 -> 481[label="",style="solid", color="blue", weight=3]; 2422[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];402 -> 2422[label="",style="solid", color="blue", weight=9]; 2422 -> 482[label="",style="solid", color="blue", weight=3]; 2423[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];402 -> 2423[label="",style="solid", color="blue", weight=9]; 2423 -> 483[label="",style="solid", color="blue", weight=3]; 2424[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];402 -> 2424[label="",style="solid", color="blue", weight=9]; 2424 -> 484[label="",style="solid", color="blue", weight=3]; 2425[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];402 -> 2425[label="",style="solid", color="blue", weight=9]; 2425 -> 485[label="",style="solid", color="blue", weight=3]; 2426[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];402 -> 2426[label="",style="solid", color="blue", weight=9]; 2426 -> 486[label="",style="solid", color="blue", weight=3]; 302 -> 114[label="",style="dashed", color="red", weight=0]; 302[label="vwx300 * vwx401 == vwx301 * vwx400",fontsize=16,color="magenta"];302 -> 487[label="",style="dashed", color="magenta", weight=3]; 302 -> 488[label="",style="dashed", color="magenta", weight=3]; 403 -> 396[label="",style="dashed", color="red", weight=0]; 403[label="vwx301 == vwx401 && vwx302 == vwx402",fontsize=16,color="magenta"];403 -> 489[label="",style="dashed", color="magenta", weight=3]; 403 -> 490[label="",style="dashed", color="magenta", weight=3]; 404[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];2427[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];404 -> 2427[label="",style="solid", color="blue", weight=9]; 2427 -> 491[label="",style="solid", color="blue", weight=3]; 2428[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];404 -> 2428[label="",style="solid", color="blue", weight=9]; 2428 -> 492[label="",style="solid", color="blue", weight=3]; 2429[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];404 -> 2429[label="",style="solid", color="blue", weight=9]; 2429 -> 493[label="",style="solid", color="blue", weight=3]; 2430[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];404 -> 2430[label="",style="solid", color="blue", weight=9]; 2430 -> 494[label="",style="solid", color="blue", weight=3]; 2431[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];404 -> 2431[label="",style="solid", color="blue", weight=9]; 2431 -> 495[label="",style="solid", color="blue", weight=3]; 2432[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];404 -> 2432[label="",style="solid", color="blue", weight=9]; 2432 -> 496[label="",style="solid", color="blue", weight=3]; 2433[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];404 -> 2433[label="",style="solid", color="blue", weight=9]; 2433 -> 497[label="",style="solid", color="blue", weight=3]; 2434[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];404 -> 2434[label="",style="solid", color="blue", weight=9]; 2434 -> 498[label="",style="solid", color="blue", weight=3]; 2435[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];404 -> 2435[label="",style="solid", color="blue", weight=9]; 2435 -> 499[label="",style="solid", color="blue", weight=3]; 2436[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];404 -> 2436[label="",style="solid", color="blue", weight=9]; 2436 -> 500[label="",style="solid", color="blue", weight=3]; 2437[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];404 -> 2437[label="",style="solid", color="blue", weight=9]; 2437 -> 501[label="",style="solid", color="blue", weight=3]; 2438[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];404 -> 2438[label="",style="solid", color="blue", weight=9]; 2438 -> 502[label="",style="solid", color="blue", weight=3]; 2439[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];404 -> 2439[label="",style="solid", color="blue", weight=9]; 2439 -> 503[label="",style="solid", color="blue", weight=3]; 2440[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];404 -> 2440[label="",style="solid", color="blue", weight=9]; 2440 -> 504[label="",style="solid", color="blue", weight=3]; 303[label="primEqNat vwx300 vwx400",fontsize=16,color="burlywood",shape="triangle"];2441[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];303 -> 2441[label="",style="solid", color="burlywood", weight=9]; 2441 -> 505[label="",style="solid", color="burlywood", weight=3]; 2442[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];303 -> 2442[label="",style="solid", color="burlywood", weight=9]; 2442 -> 506[label="",style="solid", color="burlywood", weight=3]; 304[label="vwx400",fontsize=16,color="green",shape="box"];305[label="vwx300",fontsize=16,color="green",shape="box"];1091[label="compare2 vwx34 vwx36 False",fontsize=16,color="black",shape="box"];1091 -> 1109[label="",style="solid", color="black", weight=3]; 1092[label="compare2 vwx34 vwx36 True",fontsize=16,color="black",shape="box"];1092 -> 1110[label="",style="solid", color="black", weight=3]; 1093 -> 114[label="",style="dashed", color="red", weight=0]; 1093[label="vwx24 == vwx26",fontsize=16,color="magenta"];1093 -> 1111[label="",style="dashed", color="magenta", weight=3]; 1093 -> 1112[label="",style="dashed", color="magenta", weight=3]; 1094 -> 115[label="",style="dashed", color="red", weight=0]; 1094[label="vwx24 == vwx26",fontsize=16,color="magenta"];1094 -> 1113[label="",style="dashed", color="magenta", weight=3]; 1094 -> 1114[label="",style="dashed", color="magenta", weight=3]; 1095 -> 116[label="",style="dashed", color="red", weight=0]; 1095[label="vwx24 == vwx26",fontsize=16,color="magenta"];1095 -> 1115[label="",style="dashed", color="magenta", weight=3]; 1095 -> 1116[label="",style="dashed", color="magenta", weight=3]; 1096 -> 117[label="",style="dashed", color="red", weight=0]; 1096[label="vwx24 == vwx26",fontsize=16,color="magenta"];1096 -> 1117[label="",style="dashed", color="magenta", weight=3]; 1096 -> 1118[label="",style="dashed", color="magenta", weight=3]; 1097 -> 118[label="",style="dashed", color="red", weight=0]; 1097[label="vwx24 == vwx26",fontsize=16,color="magenta"];1097 -> 1119[label="",style="dashed", color="magenta", weight=3]; 1097 -> 1120[label="",style="dashed", color="magenta", weight=3]; 1098 -> 119[label="",style="dashed", color="red", weight=0]; 1098[label="vwx24 == vwx26",fontsize=16,color="magenta"];1098 -> 1121[label="",style="dashed", color="magenta", weight=3]; 1098 -> 1122[label="",style="dashed", color="magenta", weight=3]; 1099 -> 120[label="",style="dashed", color="red", weight=0]; 1099[label="vwx24 == vwx26",fontsize=16,color="magenta"];1099 -> 1123[label="",style="dashed", color="magenta", weight=3]; 1099 -> 1124[label="",style="dashed", color="magenta", weight=3]; 1100 -> 121[label="",style="dashed", color="red", weight=0]; 1100[label="vwx24 == vwx26",fontsize=16,color="magenta"];1100 -> 1125[label="",style="dashed", color="magenta", weight=3]; 1100 -> 1126[label="",style="dashed", color="magenta", weight=3]; 1101 -> 122[label="",style="dashed", color="red", weight=0]; 1101[label="vwx24 == vwx26",fontsize=16,color="magenta"];1101 -> 1127[label="",style="dashed", color="magenta", weight=3]; 1101 -> 1128[label="",style="dashed", color="magenta", weight=3]; 1102 -> 123[label="",style="dashed", color="red", weight=0]; 1102[label="vwx24 == vwx26",fontsize=16,color="magenta"];1102 -> 1129[label="",style="dashed", color="magenta", weight=3]; 1102 -> 1130[label="",style="dashed", color="magenta", weight=3]; 1103 -> 124[label="",style="dashed", color="red", weight=0]; 1103[label="vwx24 == vwx26",fontsize=16,color="magenta"];1103 -> 1131[label="",style="dashed", color="magenta", weight=3]; 1103 -> 1132[label="",style="dashed", color="magenta", weight=3]; 1104 -> 125[label="",style="dashed", color="red", weight=0]; 1104[label="vwx24 == vwx26",fontsize=16,color="magenta"];1104 -> 1133[label="",style="dashed", color="magenta", weight=3]; 1104 -> 1134[label="",style="dashed", color="magenta", weight=3]; 1105 -> 126[label="",style="dashed", color="red", weight=0]; 1105[label="vwx24 == vwx26",fontsize=16,color="magenta"];1105 -> 1135[label="",style="dashed", color="magenta", weight=3]; 1105 -> 1136[label="",style="dashed", color="magenta", weight=3]; 1106 -> 127[label="",style="dashed", color="red", weight=0]; 1106[label="vwx24 == vwx26",fontsize=16,color="magenta"];1106 -> 1137[label="",style="dashed", color="magenta", weight=3]; 1106 -> 1138[label="",style="dashed", color="magenta", weight=3]; 322[label="primEqInt (Pos (Succ vwx3000)) (Pos (Succ vwx4000))",fontsize=16,color="black",shape="box"];322 -> 537[label="",style="solid", color="black", weight=3]; 323[label="primEqInt (Pos (Succ vwx3000)) (Pos Zero)",fontsize=16,color="black",shape="box"];323 -> 538[label="",style="solid", color="black", weight=3]; 324[label="False",fontsize=16,color="green",shape="box"];325[label="primEqInt (Pos Zero) (Pos (Succ vwx4000))",fontsize=16,color="black",shape="box"];325 -> 539[label="",style="solid", color="black", weight=3]; 326[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];326 -> 540[label="",style="solid", color="black", weight=3]; 327[label="primEqInt (Pos Zero) (Neg (Succ vwx4000))",fontsize=16,color="black",shape="box"];327 -> 541[label="",style="solid", color="black", weight=3]; 328[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];328 -> 542[label="",style="solid", color="black", weight=3]; 329[label="False",fontsize=16,color="green",shape="box"];330[label="primEqInt (Neg (Succ vwx3000)) (Neg (Succ vwx4000))",fontsize=16,color="black",shape="box"];330 -> 543[label="",style="solid", color="black", weight=3]; 331[label="primEqInt (Neg (Succ vwx3000)) (Neg Zero)",fontsize=16,color="black",shape="box"];331 -> 544[label="",style="solid", color="black", weight=3]; 332[label="primEqInt (Neg Zero) (Pos (Succ vwx4000))",fontsize=16,color="black",shape="box"];332 -> 545[label="",style="solid", color="black", weight=3]; 333[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];333 -> 546[label="",style="solid", color="black", weight=3]; 334[label="primEqInt (Neg Zero) (Neg (Succ vwx4000))",fontsize=16,color="black",shape="box"];334 -> 547[label="",style="solid", color="black", weight=3]; 335[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];335 -> 548[label="",style="solid", color="black", weight=3]; 336[label="vwx301 * vwx400",fontsize=16,color="black",shape="triangle"];336 -> 549[label="",style="solid", color="black", weight=3]; 337 -> 336[label="",style="dashed", color="red", weight=0]; 337[label="vwx300 * vwx401",fontsize=16,color="magenta"];337 -> 550[label="",style="dashed", color="magenta", weight=3]; 337 -> 551[label="",style="dashed", color="magenta", weight=3]; 338[label="vwx400",fontsize=16,color="green",shape="box"];339[label="vwx300",fontsize=16,color="green",shape="box"];340[label="vwx400",fontsize=16,color="green",shape="box"];341[label="vwx300",fontsize=16,color="green",shape="box"];342[label="vwx400",fontsize=16,color="green",shape="box"];343[label="vwx300",fontsize=16,color="green",shape="box"];344[label="vwx400",fontsize=16,color="green",shape="box"];345[label="vwx300",fontsize=16,color="green",shape="box"];346[label="vwx400",fontsize=16,color="green",shape="box"];347[label="vwx300",fontsize=16,color="green",shape="box"];348[label="vwx400",fontsize=16,color="green",shape="box"];349[label="vwx300",fontsize=16,color="green",shape="box"];350[label="vwx400",fontsize=16,color="green",shape="box"];351[label="vwx300",fontsize=16,color="green",shape="box"];352[label="vwx400",fontsize=16,color="green",shape="box"];353[label="vwx300",fontsize=16,color="green",shape="box"];354[label="vwx400",fontsize=16,color="green",shape="box"];355[label="vwx300",fontsize=16,color="green",shape="box"];356[label="vwx400",fontsize=16,color="green",shape="box"];357[label="vwx300",fontsize=16,color="green",shape="box"];358[label="vwx400",fontsize=16,color="green",shape="box"];359[label="vwx300",fontsize=16,color="green",shape="box"];360[label="vwx400",fontsize=16,color="green",shape="box"];361[label="vwx300",fontsize=16,color="green",shape="box"];362[label="vwx400",fontsize=16,color="green",shape="box"];363[label="vwx300",fontsize=16,color="green",shape="box"];364[label="vwx400",fontsize=16,color="green",shape="box"];365[label="vwx300",fontsize=16,color="green",shape="box"];366[label="vwx400",fontsize=16,color="green",shape="box"];367[label="vwx300",fontsize=16,color="green",shape="box"];368[label="vwx400",fontsize=16,color="green",shape="box"];369[label="vwx300",fontsize=16,color="green",shape="box"];370[label="vwx400",fontsize=16,color="green",shape="box"];371[label="vwx300",fontsize=16,color="green",shape="box"];372[label="vwx400",fontsize=16,color="green",shape="box"];373[label="vwx300",fontsize=16,color="green",shape="box"];374[label="vwx400",fontsize=16,color="green",shape="box"];375[label="vwx300",fontsize=16,color="green",shape="box"];376[label="vwx400",fontsize=16,color="green",shape="box"];377[label="vwx300",fontsize=16,color="green",shape="box"];378[label="vwx400",fontsize=16,color="green",shape="box"];379[label="vwx300",fontsize=16,color="green",shape="box"];380[label="vwx400",fontsize=16,color="green",shape="box"];381[label="vwx300",fontsize=16,color="green",shape="box"];382[label="vwx400",fontsize=16,color="green",shape="box"];383[label="vwx300",fontsize=16,color="green",shape="box"];384[label="vwx400",fontsize=16,color="green",shape="box"];385[label="vwx300",fontsize=16,color="green",shape="box"];386[label="vwx400",fontsize=16,color="green",shape="box"];387[label="vwx300",fontsize=16,color="green",shape="box"];388[label="vwx400",fontsize=16,color="green",shape="box"];389[label="vwx300",fontsize=16,color="green",shape="box"];390[label="vwx400",fontsize=16,color="green",shape="box"];391[label="vwx300",fontsize=16,color="green",shape="box"];392[label="vwx400",fontsize=16,color="green",shape="box"];393[label="vwx300",fontsize=16,color="green",shape="box"];409[label="vwx401",fontsize=16,color="green",shape="box"];410[label="vwx301",fontsize=16,color="green",shape="box"];411 -> 114[label="",style="dashed", color="red", weight=0]; 411[label="vwx300 == vwx400",fontsize=16,color="magenta"];411 -> 552[label="",style="dashed", color="magenta", weight=3]; 411 -> 553[label="",style="dashed", color="magenta", weight=3]; 412 -> 115[label="",style="dashed", color="red", weight=0]; 412[label="vwx300 == vwx400",fontsize=16,color="magenta"];412 -> 554[label="",style="dashed", color="magenta", weight=3]; 412 -> 555[label="",style="dashed", color="magenta", weight=3]; 413 -> 116[label="",style="dashed", color="red", weight=0]; 413[label="vwx300 == vwx400",fontsize=16,color="magenta"];413 -> 556[label="",style="dashed", color="magenta", weight=3]; 413 -> 557[label="",style="dashed", color="magenta", weight=3]; 414 -> 117[label="",style="dashed", color="red", weight=0]; 414[label="vwx300 == vwx400",fontsize=16,color="magenta"];414 -> 558[label="",style="dashed", color="magenta", weight=3]; 414 -> 559[label="",style="dashed", color="magenta", weight=3]; 415 -> 118[label="",style="dashed", color="red", weight=0]; 415[label="vwx300 == vwx400",fontsize=16,color="magenta"];415 -> 560[label="",style="dashed", color="magenta", weight=3]; 415 -> 561[label="",style="dashed", color="magenta", weight=3]; 416 -> 119[label="",style="dashed", color="red", weight=0]; 416[label="vwx300 == vwx400",fontsize=16,color="magenta"];416 -> 562[label="",style="dashed", color="magenta", weight=3]; 416 -> 563[label="",style="dashed", color="magenta", weight=3]; 417 -> 120[label="",style="dashed", color="red", weight=0]; 417[label="vwx300 == vwx400",fontsize=16,color="magenta"];417 -> 564[label="",style="dashed", color="magenta", weight=3]; 417 -> 565[label="",style="dashed", color="magenta", weight=3]; 418 -> 121[label="",style="dashed", color="red", weight=0]; 418[label="vwx300 == vwx400",fontsize=16,color="magenta"];418 -> 566[label="",style="dashed", color="magenta", weight=3]; 418 -> 567[label="",style="dashed", color="magenta", weight=3]; 419 -> 122[label="",style="dashed", color="red", weight=0]; 419[label="vwx300 == vwx400",fontsize=16,color="magenta"];419 -> 568[label="",style="dashed", color="magenta", weight=3]; 419 -> 569[label="",style="dashed", color="magenta", weight=3]; 420 -> 123[label="",style="dashed", color="red", weight=0]; 420[label="vwx300 == vwx400",fontsize=16,color="magenta"];420 -> 570[label="",style="dashed", color="magenta", weight=3]; 420 -> 571[label="",style="dashed", color="magenta", weight=3]; 421 -> 124[label="",style="dashed", color="red", weight=0]; 421[label="vwx300 == vwx400",fontsize=16,color="magenta"];421 -> 572[label="",style="dashed", color="magenta", weight=3]; 421 -> 573[label="",style="dashed", color="magenta", weight=3]; 422 -> 125[label="",style="dashed", color="red", weight=0]; 422[label="vwx300 == vwx400",fontsize=16,color="magenta"];422 -> 574[label="",style="dashed", color="magenta", weight=3]; 422 -> 575[label="",style="dashed", color="magenta", weight=3]; 423 -> 126[label="",style="dashed", color="red", weight=0]; 423[label="vwx300 == vwx400",fontsize=16,color="magenta"];423 -> 576[label="",style="dashed", color="magenta", weight=3]; 423 -> 577[label="",style="dashed", color="magenta", weight=3]; 424 -> 127[label="",style="dashed", color="red", weight=0]; 424[label="vwx300 == vwx400",fontsize=16,color="magenta"];424 -> 578[label="",style="dashed", color="magenta", weight=3]; 424 -> 579[label="",style="dashed", color="magenta", weight=3]; 425[label="False && vwx44",fontsize=16,color="black",shape="box"];425 -> 580[label="",style="solid", color="black", weight=3]; 426[label="True && vwx44",fontsize=16,color="black",shape="box"];426 -> 581[label="",style="solid", color="black", weight=3]; 427[label="vwx400",fontsize=16,color="green",shape="box"];428[label="vwx300",fontsize=16,color="green",shape="box"];429[label="vwx400",fontsize=16,color="green",shape="box"];430[label="vwx300",fontsize=16,color="green",shape="box"];431[label="vwx400",fontsize=16,color="green",shape="box"];432[label="vwx300",fontsize=16,color="green",shape="box"];433[label="vwx400",fontsize=16,color="green",shape="box"];434[label="vwx300",fontsize=16,color="green",shape="box"];435[label="vwx400",fontsize=16,color="green",shape="box"];436[label="vwx300",fontsize=16,color="green",shape="box"];437[label="vwx400",fontsize=16,color="green",shape="box"];438[label="vwx300",fontsize=16,color="green",shape="box"];439[label="vwx400",fontsize=16,color="green",shape="box"];440[label="vwx300",fontsize=16,color="green",shape="box"];441[label="vwx400",fontsize=16,color="green",shape="box"];442[label="vwx300",fontsize=16,color="green",shape="box"];443[label="vwx400",fontsize=16,color="green",shape="box"];444[label="vwx300",fontsize=16,color="green",shape="box"];445[label="vwx400",fontsize=16,color="green",shape="box"];446[label="vwx300",fontsize=16,color="green",shape="box"];447[label="vwx400",fontsize=16,color="green",shape="box"];448[label="vwx300",fontsize=16,color="green",shape="box"];449[label="vwx400",fontsize=16,color="green",shape="box"];450[label="vwx300",fontsize=16,color="green",shape="box"];451[label="vwx400",fontsize=16,color="green",shape="box"];452[label="vwx300",fontsize=16,color="green",shape="box"];453[label="vwx400",fontsize=16,color="green",shape="box"];454[label="vwx300",fontsize=16,color="green",shape="box"];455 -> 114[label="",style="dashed", color="red", weight=0]; 455[label="vwx301 == vwx401",fontsize=16,color="magenta"];455 -> 582[label="",style="dashed", color="magenta", weight=3]; 455 -> 583[label="",style="dashed", color="magenta", weight=3]; 456 -> 127[label="",style="dashed", color="red", weight=0]; 456[label="vwx301 == vwx401",fontsize=16,color="magenta"];456 -> 584[label="",style="dashed", color="magenta", weight=3]; 456 -> 585[label="",style="dashed", color="magenta", weight=3]; 457 -> 114[label="",style="dashed", color="red", weight=0]; 457[label="vwx300 == vwx400",fontsize=16,color="magenta"];457 -> 586[label="",style="dashed", color="magenta", weight=3]; 457 -> 587[label="",style="dashed", color="magenta", weight=3]; 458 -> 127[label="",style="dashed", color="red", weight=0]; 458[label="vwx300 == vwx400",fontsize=16,color="magenta"];458 -> 588[label="",style="dashed", color="magenta", weight=3]; 458 -> 589[label="",style="dashed", color="magenta", weight=3]; 459 -> 114[label="",style="dashed", color="red", weight=0]; 459[label="vwx301 == vwx401",fontsize=16,color="magenta"];459 -> 590[label="",style="dashed", color="magenta", weight=3]; 459 -> 591[label="",style="dashed", color="magenta", weight=3]; 460 -> 115[label="",style="dashed", color="red", weight=0]; 460[label="vwx301 == vwx401",fontsize=16,color="magenta"];460 -> 592[label="",style="dashed", color="magenta", weight=3]; 460 -> 593[label="",style="dashed", color="magenta", weight=3]; 461 -> 116[label="",style="dashed", color="red", weight=0]; 461[label="vwx301 == vwx401",fontsize=16,color="magenta"];461 -> 594[label="",style="dashed", color="magenta", weight=3]; 461 -> 595[label="",style="dashed", color="magenta", weight=3]; 462 -> 117[label="",style="dashed", color="red", weight=0]; 462[label="vwx301 == vwx401",fontsize=16,color="magenta"];462 -> 596[label="",style="dashed", color="magenta", weight=3]; 462 -> 597[label="",style="dashed", color="magenta", weight=3]; 463 -> 118[label="",style="dashed", color="red", weight=0]; 463[label="vwx301 == vwx401",fontsize=16,color="magenta"];463 -> 598[label="",style="dashed", color="magenta", weight=3]; 463 -> 599[label="",style="dashed", color="magenta", weight=3]; 464 -> 119[label="",style="dashed", color="red", weight=0]; 464[label="vwx301 == vwx401",fontsize=16,color="magenta"];464 -> 600[label="",style="dashed", color="magenta", weight=3]; 464 -> 601[label="",style="dashed", color="magenta", weight=3]; 465 -> 120[label="",style="dashed", color="red", weight=0]; 465[label="vwx301 == vwx401",fontsize=16,color="magenta"];465 -> 602[label="",style="dashed", color="magenta", weight=3]; 465 -> 603[label="",style="dashed", color="magenta", weight=3]; 466 -> 121[label="",style="dashed", color="red", weight=0]; 466[label="vwx301 == vwx401",fontsize=16,color="magenta"];466 -> 604[label="",style="dashed", color="magenta", weight=3]; 466 -> 605[label="",style="dashed", color="magenta", weight=3]; 467 -> 122[label="",style="dashed", color="red", weight=0]; 467[label="vwx301 == vwx401",fontsize=16,color="magenta"];467 -> 606[label="",style="dashed", color="magenta", weight=3]; 467 -> 607[label="",style="dashed", color="magenta", weight=3]; 468 -> 123[label="",style="dashed", color="red", weight=0]; 468[label="vwx301 == vwx401",fontsize=16,color="magenta"];468 -> 608[label="",style="dashed", color="magenta", weight=3]; 468 -> 609[label="",style="dashed", color="magenta", weight=3]; 469 -> 124[label="",style="dashed", color="red", weight=0]; 469[label="vwx301 == vwx401",fontsize=16,color="magenta"];469 -> 610[label="",style="dashed", color="magenta", weight=3]; 469 -> 611[label="",style="dashed", color="magenta", weight=3]; 470 -> 125[label="",style="dashed", color="red", weight=0]; 470[label="vwx301 == vwx401",fontsize=16,color="magenta"];470 -> 612[label="",style="dashed", color="magenta", weight=3]; 470 -> 613[label="",style="dashed", color="magenta", weight=3]; 471 -> 126[label="",style="dashed", color="red", weight=0]; 471[label="vwx301 == vwx401",fontsize=16,color="magenta"];471 -> 614[label="",style="dashed", color="magenta", weight=3]; 471 -> 615[label="",style="dashed", color="magenta", weight=3]; 472 -> 127[label="",style="dashed", color="red", weight=0]; 472[label="vwx301 == vwx401",fontsize=16,color="magenta"];472 -> 616[label="",style="dashed", color="magenta", weight=3]; 472 -> 617[label="",style="dashed", color="magenta", weight=3]; 473 -> 114[label="",style="dashed", color="red", weight=0]; 473[label="vwx300 == vwx400",fontsize=16,color="magenta"];473 -> 618[label="",style="dashed", color="magenta", weight=3]; 473 -> 619[label="",style="dashed", color="magenta", weight=3]; 474 -> 115[label="",style="dashed", color="red", weight=0]; 474[label="vwx300 == vwx400",fontsize=16,color="magenta"];474 -> 620[label="",style="dashed", color="magenta", weight=3]; 474 -> 621[label="",style="dashed", color="magenta", weight=3]; 475 -> 116[label="",style="dashed", color="red", weight=0]; 475[label="vwx300 == vwx400",fontsize=16,color="magenta"];475 -> 622[label="",style="dashed", color="magenta", weight=3]; 475 -> 623[label="",style="dashed", color="magenta", weight=3]; 476 -> 117[label="",style="dashed", color="red", weight=0]; 476[label="vwx300 == vwx400",fontsize=16,color="magenta"];476 -> 624[label="",style="dashed", color="magenta", weight=3]; 476 -> 625[label="",style="dashed", color="magenta", weight=3]; 477 -> 118[label="",style="dashed", color="red", weight=0]; 477[label="vwx300 == vwx400",fontsize=16,color="magenta"];477 -> 626[label="",style="dashed", color="magenta", weight=3]; 477 -> 627[label="",style="dashed", color="magenta", weight=3]; 478 -> 119[label="",style="dashed", color="red", weight=0]; 478[label="vwx300 == vwx400",fontsize=16,color="magenta"];478 -> 628[label="",style="dashed", color="magenta", weight=3]; 478 -> 629[label="",style="dashed", color="magenta", weight=3]; 479 -> 120[label="",style="dashed", color="red", weight=0]; 479[label="vwx300 == vwx400",fontsize=16,color="magenta"];479 -> 630[label="",style="dashed", color="magenta", weight=3]; 479 -> 631[label="",style="dashed", color="magenta", weight=3]; 480 -> 121[label="",style="dashed", color="red", weight=0]; 480[label="vwx300 == vwx400",fontsize=16,color="magenta"];480 -> 632[label="",style="dashed", color="magenta", weight=3]; 480 -> 633[label="",style="dashed", color="magenta", weight=3]; 481 -> 122[label="",style="dashed", color="red", weight=0]; 481[label="vwx300 == vwx400",fontsize=16,color="magenta"];481 -> 634[label="",style="dashed", color="magenta", weight=3]; 481 -> 635[label="",style="dashed", color="magenta", weight=3]; 482 -> 123[label="",style="dashed", color="red", weight=0]; 482[label="vwx300 == vwx400",fontsize=16,color="magenta"];482 -> 636[label="",style="dashed", color="magenta", weight=3]; 482 -> 637[label="",style="dashed", color="magenta", weight=3]; 483 -> 124[label="",style="dashed", color="red", weight=0]; 483[label="vwx300 == vwx400",fontsize=16,color="magenta"];483 -> 638[label="",style="dashed", color="magenta", weight=3]; 483 -> 639[label="",style="dashed", color="magenta", weight=3]; 484 -> 125[label="",style="dashed", color="red", weight=0]; 484[label="vwx300 == vwx400",fontsize=16,color="magenta"];484 -> 640[label="",style="dashed", color="magenta", weight=3]; 484 -> 641[label="",style="dashed", color="magenta", weight=3]; 485 -> 126[label="",style="dashed", color="red", weight=0]; 485[label="vwx300 == vwx400",fontsize=16,color="magenta"];485 -> 642[label="",style="dashed", color="magenta", weight=3]; 485 -> 643[label="",style="dashed", color="magenta", weight=3]; 486 -> 127[label="",style="dashed", color="red", weight=0]; 486[label="vwx300 == vwx400",fontsize=16,color="magenta"];486 -> 644[label="",style="dashed", color="magenta", weight=3]; 486 -> 645[label="",style="dashed", color="magenta", weight=3]; 487 -> 336[label="",style="dashed", color="red", weight=0]; 487[label="vwx301 * vwx400",fontsize=16,color="magenta"];487 -> 646[label="",style="dashed", color="magenta", weight=3]; 487 -> 647[label="",style="dashed", color="magenta", weight=3]; 488 -> 336[label="",style="dashed", color="red", weight=0]; 488[label="vwx300 * vwx401",fontsize=16,color="magenta"];488 -> 648[label="",style="dashed", color="magenta", weight=3]; 488 -> 649[label="",style="dashed", color="magenta", weight=3]; 489[label="vwx302 == vwx402",fontsize=16,color="blue",shape="box"];2443[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];489 -> 2443[label="",style="solid", color="blue", weight=9]; 2443 -> 650[label="",style="solid", color="blue", weight=3]; 2444[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];489 -> 2444[label="",style="solid", color="blue", weight=9]; 2444 -> 651[label="",style="solid", color="blue", weight=3]; 2445[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];489 -> 2445[label="",style="solid", color="blue", weight=9]; 2445 -> 652[label="",style="solid", color="blue", weight=3]; 2446[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];489 -> 2446[label="",style="solid", color="blue", weight=9]; 2446 -> 653[label="",style="solid", color="blue", weight=3]; 2447[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];489 -> 2447[label="",style="solid", color="blue", weight=9]; 2447 -> 654[label="",style="solid", color="blue", weight=3]; 2448[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];489 -> 2448[label="",style="solid", color="blue", weight=9]; 2448 -> 655[label="",style="solid", color="blue", weight=3]; 2449[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];489 -> 2449[label="",style="solid", color="blue", weight=9]; 2449 -> 656[label="",style="solid", color="blue", weight=3]; 2450[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];489 -> 2450[label="",style="solid", color="blue", weight=9]; 2450 -> 657[label="",style="solid", color="blue", weight=3]; 2451[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];489 -> 2451[label="",style="solid", color="blue", weight=9]; 2451 -> 658[label="",style="solid", color="blue", weight=3]; 2452[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];489 -> 2452[label="",style="solid", color="blue", weight=9]; 2452 -> 659[label="",style="solid", color="blue", weight=3]; 2453[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];489 -> 2453[label="",style="solid", color="blue", weight=9]; 2453 -> 660[label="",style="solid", color="blue", weight=3]; 2454[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];489 -> 2454[label="",style="solid", color="blue", weight=9]; 2454 -> 661[label="",style="solid", color="blue", weight=3]; 2455[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];489 -> 2455[label="",style="solid", color="blue", weight=9]; 2455 -> 662[label="",style="solid", color="blue", weight=3]; 2456[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];489 -> 2456[label="",style="solid", color="blue", weight=9]; 2456 -> 663[label="",style="solid", color="blue", weight=3]; 490[label="vwx301 == vwx401",fontsize=16,color="blue",shape="box"];2457[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];490 -> 2457[label="",style="solid", color="blue", weight=9]; 2457 -> 664[label="",style="solid", color="blue", weight=3]; 2458[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];490 -> 2458[label="",style="solid", color="blue", weight=9]; 2458 -> 665[label="",style="solid", color="blue", weight=3]; 2459[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];490 -> 2459[label="",style="solid", color="blue", weight=9]; 2459 -> 666[label="",style="solid", color="blue", weight=3]; 2460[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];490 -> 2460[label="",style="solid", color="blue", weight=9]; 2460 -> 667[label="",style="solid", color="blue", weight=3]; 2461[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];490 -> 2461[label="",style="solid", color="blue", weight=9]; 2461 -> 668[label="",style="solid", color="blue", weight=3]; 2462[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];490 -> 2462[label="",style="solid", color="blue", weight=9]; 2462 -> 669[label="",style="solid", color="blue", weight=3]; 2463[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];490 -> 2463[label="",style="solid", color="blue", weight=9]; 2463 -> 670[label="",style="solid", color="blue", weight=3]; 2464[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];490 -> 2464[label="",style="solid", color="blue", weight=9]; 2464 -> 671[label="",style="solid", color="blue", weight=3]; 2465[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];490 -> 2465[label="",style="solid", color="blue", weight=9]; 2465 -> 672[label="",style="solid", color="blue", weight=3]; 2466[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];490 -> 2466[label="",style="solid", color="blue", weight=9]; 2466 -> 673[label="",style="solid", color="blue", weight=3]; 2467[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];490 -> 2467[label="",style="solid", color="blue", weight=9]; 2467 -> 674[label="",style="solid", color="blue", weight=3]; 2468[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];490 -> 2468[label="",style="solid", color="blue", weight=9]; 2468 -> 675[label="",style="solid", color="blue", weight=3]; 2469[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];490 -> 2469[label="",style="solid", color="blue", weight=9]; 2469 -> 676[label="",style="solid", color="blue", weight=3]; 2470[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];490 -> 2470[label="",style="solid", color="blue", weight=9]; 2470 -> 677[label="",style="solid", color="blue", weight=3]; 491 -> 114[label="",style="dashed", color="red", weight=0]; 491[label="vwx300 == vwx400",fontsize=16,color="magenta"];491 -> 678[label="",style="dashed", color="magenta", weight=3]; 491 -> 679[label="",style="dashed", color="magenta", weight=3]; 492 -> 115[label="",style="dashed", color="red", weight=0]; 492[label="vwx300 == vwx400",fontsize=16,color="magenta"];492 -> 680[label="",style="dashed", color="magenta", weight=3]; 492 -> 681[label="",style="dashed", color="magenta", weight=3]; 493 -> 116[label="",style="dashed", color="red", weight=0]; 493[label="vwx300 == vwx400",fontsize=16,color="magenta"];493 -> 682[label="",style="dashed", color="magenta", weight=3]; 493 -> 683[label="",style="dashed", color="magenta", weight=3]; 494 -> 117[label="",style="dashed", color="red", weight=0]; 494[label="vwx300 == vwx400",fontsize=16,color="magenta"];494 -> 684[label="",style="dashed", color="magenta", weight=3]; 494 -> 685[label="",style="dashed", color="magenta", weight=3]; 495 -> 118[label="",style="dashed", color="red", weight=0]; 495[label="vwx300 == vwx400",fontsize=16,color="magenta"];495 -> 686[label="",style="dashed", color="magenta", weight=3]; 495 -> 687[label="",style="dashed", color="magenta", weight=3]; 496 -> 119[label="",style="dashed", color="red", weight=0]; 496[label="vwx300 == vwx400",fontsize=16,color="magenta"];496 -> 688[label="",style="dashed", color="magenta", weight=3]; 496 -> 689[label="",style="dashed", color="magenta", weight=3]; 497 -> 120[label="",style="dashed", color="red", weight=0]; 497[label="vwx300 == vwx400",fontsize=16,color="magenta"];497 -> 690[label="",style="dashed", color="magenta", weight=3]; 497 -> 691[label="",style="dashed", color="magenta", weight=3]; 498 -> 121[label="",style="dashed", color="red", weight=0]; 498[label="vwx300 == vwx400",fontsize=16,color="magenta"];498 -> 692[label="",style="dashed", color="magenta", weight=3]; 498 -> 693[label="",style="dashed", color="magenta", weight=3]; 499 -> 122[label="",style="dashed", color="red", weight=0]; 499[label="vwx300 == vwx400",fontsize=16,color="magenta"];499 -> 694[label="",style="dashed", color="magenta", weight=3]; 499 -> 695[label="",style="dashed", color="magenta", weight=3]; 500 -> 123[label="",style="dashed", color="red", weight=0]; 500[label="vwx300 == vwx400",fontsize=16,color="magenta"];500 -> 696[label="",style="dashed", color="magenta", weight=3]; 500 -> 697[label="",style="dashed", color="magenta", weight=3]; 501 -> 124[label="",style="dashed", color="red", weight=0]; 501[label="vwx300 == vwx400",fontsize=16,color="magenta"];501 -> 698[label="",style="dashed", color="magenta", weight=3]; 501 -> 699[label="",style="dashed", color="magenta", weight=3]; 502 -> 125[label="",style="dashed", color="red", weight=0]; 502[label="vwx300 == vwx400",fontsize=16,color="magenta"];502 -> 700[label="",style="dashed", color="magenta", weight=3]; 502 -> 701[label="",style="dashed", color="magenta", weight=3]; 503 -> 126[label="",style="dashed", color="red", weight=0]; 503[label="vwx300 == vwx400",fontsize=16,color="magenta"];503 -> 702[label="",style="dashed", color="magenta", weight=3]; 503 -> 703[label="",style="dashed", color="magenta", weight=3]; 504 -> 127[label="",style="dashed", color="red", weight=0]; 504[label="vwx300 == vwx400",fontsize=16,color="magenta"];504 -> 704[label="",style="dashed", color="magenta", weight=3]; 504 -> 705[label="",style="dashed", color="magenta", weight=3]; 505[label="primEqNat (Succ vwx3000) vwx400",fontsize=16,color="burlywood",shape="box"];2471[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];505 -> 2471[label="",style="solid", color="burlywood", weight=9]; 2471 -> 706[label="",style="solid", color="burlywood", weight=3]; 2472[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];505 -> 2472[label="",style="solid", color="burlywood", weight=9]; 2472 -> 707[label="",style="solid", color="burlywood", weight=3]; 506[label="primEqNat Zero vwx400",fontsize=16,color="burlywood",shape="box"];2473[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];506 -> 2473[label="",style="solid", color="burlywood", weight=9]; 2473 -> 708[label="",style="solid", color="burlywood", weight=3]; 2474[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];506 -> 2474[label="",style="solid", color="burlywood", weight=9]; 2474 -> 709[label="",style="solid", color="burlywood", weight=3]; 1109[label="compare1 vwx34 vwx36 (vwx34 <= vwx36)",fontsize=16,color="burlywood",shape="box"];2475[label="vwx34/(vwx340,vwx341)",fontsize=10,color="white",style="solid",shape="box"];1109 -> 2475[label="",style="solid", color="burlywood", weight=9]; 2475 -> 1143[label="",style="solid", color="burlywood", weight=3]; 1110[label="EQ",fontsize=16,color="green",shape="box"];1111[label="vwx26",fontsize=16,color="green",shape="box"];1112[label="vwx24",fontsize=16,color="green",shape="box"];1113[label="vwx26",fontsize=16,color="green",shape="box"];1114[label="vwx24",fontsize=16,color="green",shape="box"];1115[label="vwx26",fontsize=16,color="green",shape="box"];1116[label="vwx24",fontsize=16,color="green",shape="box"];1117[label="vwx26",fontsize=16,color="green",shape="box"];1118[label="vwx24",fontsize=16,color="green",shape="box"];1119[label="vwx26",fontsize=16,color="green",shape="box"];1120[label="vwx24",fontsize=16,color="green",shape="box"];1121[label="vwx26",fontsize=16,color="green",shape="box"];1122[label="vwx24",fontsize=16,color="green",shape="box"];1123[label="vwx26",fontsize=16,color="green",shape="box"];1124[label="vwx24",fontsize=16,color="green",shape="box"];1125[label="vwx26",fontsize=16,color="green",shape="box"];1126[label="vwx24",fontsize=16,color="green",shape="box"];1127[label="vwx26",fontsize=16,color="green",shape="box"];1128[label="vwx24",fontsize=16,color="green",shape="box"];1129[label="vwx26",fontsize=16,color="green",shape="box"];1130[label="vwx24",fontsize=16,color="green",shape="box"];1131[label="vwx26",fontsize=16,color="green",shape="box"];1132[label="vwx24",fontsize=16,color="green",shape="box"];1133[label="vwx26",fontsize=16,color="green",shape="box"];1134[label="vwx24",fontsize=16,color="green",shape="box"];1135[label="vwx26",fontsize=16,color="green",shape="box"];1136[label="vwx24",fontsize=16,color="green",shape="box"];1137[label="vwx26",fontsize=16,color="green",shape="box"];1138[label="vwx24",fontsize=16,color="green",shape="box"];537 -> 303[label="",style="dashed", color="red", weight=0]; 537[label="primEqNat vwx3000 vwx4000",fontsize=16,color="magenta"];537 -> 711[label="",style="dashed", color="magenta", weight=3]; 537 -> 712[label="",style="dashed", color="magenta", weight=3]; 538[label="False",fontsize=16,color="green",shape="box"];539[label="False",fontsize=16,color="green",shape="box"];540[label="True",fontsize=16,color="green",shape="box"];541[label="False",fontsize=16,color="green",shape="box"];542[label="True",fontsize=16,color="green",shape="box"];543 -> 303[label="",style="dashed", color="red", weight=0]; 543[label="primEqNat vwx3000 vwx4000",fontsize=16,color="magenta"];543 -> 713[label="",style="dashed", color="magenta", weight=3]; 543 -> 714[label="",style="dashed", color="magenta", weight=3]; 544[label="False",fontsize=16,color="green",shape="box"];545[label="False",fontsize=16,color="green",shape="box"];546[label="True",fontsize=16,color="green",shape="box"];547[label="False",fontsize=16,color="green",shape="box"];548[label="True",fontsize=16,color="green",shape="box"];549[label="primMulInt vwx301 vwx400",fontsize=16,color="burlywood",shape="triangle"];2476[label="vwx301/Pos vwx3010",fontsize=10,color="white",style="solid",shape="box"];549 -> 2476[label="",style="solid", color="burlywood", weight=9]; 2476 -> 715[label="",style="solid", color="burlywood", weight=3]; 2477[label="vwx301/Neg vwx3010",fontsize=10,color="white",style="solid",shape="box"];549 -> 2477[label="",style="solid", color="burlywood", weight=9]; 2477 -> 716[label="",style="solid", color="burlywood", weight=3]; 550[label="vwx300",fontsize=16,color="green",shape="box"];551[label="vwx401",fontsize=16,color="green",shape="box"];552[label="vwx400",fontsize=16,color="green",shape="box"];553[label="vwx300",fontsize=16,color="green",shape="box"];554[label="vwx400",fontsize=16,color="green",shape="box"];555[label="vwx300",fontsize=16,color="green",shape="box"];556[label="vwx400",fontsize=16,color="green",shape="box"];557[label="vwx300",fontsize=16,color="green",shape="box"];558[label="vwx400",fontsize=16,color="green",shape="box"];559[label="vwx300",fontsize=16,color="green",shape="box"];560[label="vwx400",fontsize=16,color="green",shape="box"];561[label="vwx300",fontsize=16,color="green",shape="box"];562[label="vwx400",fontsize=16,color="green",shape="box"];563[label="vwx300",fontsize=16,color="green",shape="box"];564[label="vwx400",fontsize=16,color="green",shape="box"];565[label="vwx300",fontsize=16,color="green",shape="box"];566[label="vwx400",fontsize=16,color="green",shape="box"];567[label="vwx300",fontsize=16,color="green",shape="box"];568[label="vwx400",fontsize=16,color="green",shape="box"];569[label="vwx300",fontsize=16,color="green",shape="box"];570[label="vwx400",fontsize=16,color="green",shape="box"];571[label="vwx300",fontsize=16,color="green",shape="box"];572[label="vwx400",fontsize=16,color="green",shape="box"];573[label="vwx300",fontsize=16,color="green",shape="box"];574[label="vwx400",fontsize=16,color="green",shape="box"];575[label="vwx300",fontsize=16,color="green",shape="box"];576[label="vwx400",fontsize=16,color="green",shape="box"];577[label="vwx300",fontsize=16,color="green",shape="box"];578[label="vwx400",fontsize=16,color="green",shape="box"];579[label="vwx300",fontsize=16,color="green",shape="box"];580[label="False",fontsize=16,color="green",shape="box"];581[label="vwx44",fontsize=16,color="green",shape="box"];582[label="vwx401",fontsize=16,color="green",shape="box"];583[label="vwx301",fontsize=16,color="green",shape="box"];584[label="vwx401",fontsize=16,color="green",shape="box"];585[label="vwx301",fontsize=16,color="green",shape="box"];586[label="vwx400",fontsize=16,color="green",shape="box"];587[label="vwx300",fontsize=16,color="green",shape="box"];588[label="vwx400",fontsize=16,color="green",shape="box"];589[label="vwx300",fontsize=16,color="green",shape="box"];590[label="vwx401",fontsize=16,color="green",shape="box"];591[label="vwx301",fontsize=16,color="green",shape="box"];592[label="vwx401",fontsize=16,color="green",shape="box"];593[label="vwx301",fontsize=16,color="green",shape="box"];594[label="vwx401",fontsize=16,color="green",shape="box"];595[label="vwx301",fontsize=16,color="green",shape="box"];596[label="vwx401",fontsize=16,color="green",shape="box"];597[label="vwx301",fontsize=16,color="green",shape="box"];598[label="vwx401",fontsize=16,color="green",shape="box"];599[label="vwx301",fontsize=16,color="green",shape="box"];600[label="vwx401",fontsize=16,color="green",shape="box"];601[label="vwx301",fontsize=16,color="green",shape="box"];602[label="vwx401",fontsize=16,color="green",shape="box"];603[label="vwx301",fontsize=16,color="green",shape="box"];604[label="vwx401",fontsize=16,color="green",shape="box"];605[label="vwx301",fontsize=16,color="green",shape="box"];606[label="vwx401",fontsize=16,color="green",shape="box"];607[label="vwx301",fontsize=16,color="green",shape="box"];608[label="vwx401",fontsize=16,color="green",shape="box"];609[label="vwx301",fontsize=16,color="green",shape="box"];610[label="vwx401",fontsize=16,color="green",shape="box"];611[label="vwx301",fontsize=16,color="green",shape="box"];612[label="vwx401",fontsize=16,color="green",shape="box"];613[label="vwx301",fontsize=16,color="green",shape="box"];614[label="vwx401",fontsize=16,color="green",shape="box"];615[label="vwx301",fontsize=16,color="green",shape="box"];616[label="vwx401",fontsize=16,color="green",shape="box"];617[label="vwx301",fontsize=16,color="green",shape="box"];618[label="vwx400",fontsize=16,color="green",shape="box"];619[label="vwx300",fontsize=16,color="green",shape="box"];620[label="vwx400",fontsize=16,color="green",shape="box"];621[label="vwx300",fontsize=16,color="green",shape="box"];622[label="vwx400",fontsize=16,color="green",shape="box"];623[label="vwx300",fontsize=16,color="green",shape="box"];624[label="vwx400",fontsize=16,color="green",shape="box"];625[label="vwx300",fontsize=16,color="green",shape="box"];626[label="vwx400",fontsize=16,color="green",shape="box"];627[label="vwx300",fontsize=16,color="green",shape="box"];628[label="vwx400",fontsize=16,color="green",shape="box"];629[label="vwx300",fontsize=16,color="green",shape="box"];630[label="vwx400",fontsize=16,color="green",shape="box"];631[label="vwx300",fontsize=16,color="green",shape="box"];632[label="vwx400",fontsize=16,color="green",shape="box"];633[label="vwx300",fontsize=16,color="green",shape="box"];634[label="vwx400",fontsize=16,color="green",shape="box"];635[label="vwx300",fontsize=16,color="green",shape="box"];636[label="vwx400",fontsize=16,color="green",shape="box"];637[label="vwx300",fontsize=16,color="green",shape="box"];638[label="vwx400",fontsize=16,color="green",shape="box"];639[label="vwx300",fontsize=16,color="green",shape="box"];640[label="vwx400",fontsize=16,color="green",shape="box"];641[label="vwx300",fontsize=16,color="green",shape="box"];642[label="vwx400",fontsize=16,color="green",shape="box"];643[label="vwx300",fontsize=16,color="green",shape="box"];644[label="vwx400",fontsize=16,color="green",shape="box"];645[label="vwx300",fontsize=16,color="green",shape="box"];646[label="vwx301",fontsize=16,color="green",shape="box"];647[label="vwx400",fontsize=16,color="green",shape="box"];648[label="vwx300",fontsize=16,color="green",shape="box"];649[label="vwx401",fontsize=16,color="green",shape="box"];650 -> 114[label="",style="dashed", color="red", weight=0]; 650[label="vwx302 == vwx402",fontsize=16,color="magenta"];650 -> 717[label="",style="dashed", color="magenta", weight=3]; 650 -> 718[label="",style="dashed", color="magenta", weight=3]; 651 -> 115[label="",style="dashed", color="red", weight=0]; 651[label="vwx302 == vwx402",fontsize=16,color="magenta"];651 -> 719[label="",style="dashed", color="magenta", weight=3]; 651 -> 720[label="",style="dashed", color="magenta", weight=3]; 652 -> 116[label="",style="dashed", color="red", weight=0]; 652[label="vwx302 == vwx402",fontsize=16,color="magenta"];652 -> 721[label="",style="dashed", color="magenta", weight=3]; 652 -> 722[label="",style="dashed", color="magenta", weight=3]; 653 -> 117[label="",style="dashed", color="red", weight=0]; 653[label="vwx302 == vwx402",fontsize=16,color="magenta"];653 -> 723[label="",style="dashed", color="magenta", weight=3]; 653 -> 724[label="",style="dashed", color="magenta", weight=3]; 654 -> 118[label="",style="dashed", color="red", weight=0]; 654[label="vwx302 == vwx402",fontsize=16,color="magenta"];654 -> 725[label="",style="dashed", color="magenta", weight=3]; 654 -> 726[label="",style="dashed", color="magenta", weight=3]; 655 -> 119[label="",style="dashed", color="red", weight=0]; 655[label="vwx302 == vwx402",fontsize=16,color="magenta"];655 -> 727[label="",style="dashed", color="magenta", weight=3]; 655 -> 728[label="",style="dashed", color="magenta", weight=3]; 656 -> 120[label="",style="dashed", color="red", weight=0]; 656[label="vwx302 == vwx402",fontsize=16,color="magenta"];656 -> 729[label="",style="dashed", color="magenta", weight=3]; 656 -> 730[label="",style="dashed", color="magenta", weight=3]; 657 -> 121[label="",style="dashed", color="red", weight=0]; 657[label="vwx302 == vwx402",fontsize=16,color="magenta"];657 -> 731[label="",style="dashed", color="magenta", weight=3]; 657 -> 732[label="",style="dashed", color="magenta", weight=3]; 658 -> 122[label="",style="dashed", color="red", weight=0]; 658[label="vwx302 == vwx402",fontsize=16,color="magenta"];658 -> 733[label="",style="dashed", color="magenta", weight=3]; 658 -> 734[label="",style="dashed", color="magenta", weight=3]; 659 -> 123[label="",style="dashed", color="red", weight=0]; 659[label="vwx302 == vwx402",fontsize=16,color="magenta"];659 -> 735[label="",style="dashed", color="magenta", weight=3]; 659 -> 736[label="",style="dashed", color="magenta", weight=3]; 660 -> 124[label="",style="dashed", color="red", weight=0]; 660[label="vwx302 == vwx402",fontsize=16,color="magenta"];660 -> 737[label="",style="dashed", color="magenta", weight=3]; 660 -> 738[label="",style="dashed", color="magenta", weight=3]; 661 -> 125[label="",style="dashed", color="red", weight=0]; 661[label="vwx302 == vwx402",fontsize=16,color="magenta"];661 -> 739[label="",style="dashed", color="magenta", weight=3]; 661 -> 740[label="",style="dashed", color="magenta", weight=3]; 662 -> 126[label="",style="dashed", color="red", weight=0]; 662[label="vwx302 == vwx402",fontsize=16,color="magenta"];662 -> 741[label="",style="dashed", color="magenta", weight=3]; 662 -> 742[label="",style="dashed", color="magenta", weight=3]; 663 -> 127[label="",style="dashed", color="red", weight=0]; 663[label="vwx302 == vwx402",fontsize=16,color="magenta"];663 -> 743[label="",style="dashed", color="magenta", weight=3]; 663 -> 744[label="",style="dashed", color="magenta", weight=3]; 664 -> 114[label="",style="dashed", color="red", weight=0]; 664[label="vwx301 == vwx401",fontsize=16,color="magenta"];664 -> 745[label="",style="dashed", color="magenta", weight=3]; 664 -> 746[label="",style="dashed", color="magenta", weight=3]; 665 -> 115[label="",style="dashed", color="red", weight=0]; 665[label="vwx301 == vwx401",fontsize=16,color="magenta"];665 -> 747[label="",style="dashed", color="magenta", weight=3]; 665 -> 748[label="",style="dashed", color="magenta", weight=3]; 666 -> 116[label="",style="dashed", color="red", weight=0]; 666[label="vwx301 == vwx401",fontsize=16,color="magenta"];666 -> 749[label="",style="dashed", color="magenta", weight=3]; 666 -> 750[label="",style="dashed", color="magenta", weight=3]; 667 -> 117[label="",style="dashed", color="red", weight=0]; 667[label="vwx301 == vwx401",fontsize=16,color="magenta"];667 -> 751[label="",style="dashed", color="magenta", weight=3]; 667 -> 752[label="",style="dashed", color="magenta", weight=3]; 668 -> 118[label="",style="dashed", color="red", weight=0]; 668[label="vwx301 == vwx401",fontsize=16,color="magenta"];668 -> 753[label="",style="dashed", color="magenta", weight=3]; 668 -> 754[label="",style="dashed", color="magenta", weight=3]; 669 -> 119[label="",style="dashed", color="red", weight=0]; 669[label="vwx301 == vwx401",fontsize=16,color="magenta"];669 -> 755[label="",style="dashed", color="magenta", weight=3]; 669 -> 756[label="",style="dashed", color="magenta", weight=3]; 670 -> 120[label="",style="dashed", color="red", weight=0]; 670[label="vwx301 == vwx401",fontsize=16,color="magenta"];670 -> 757[label="",style="dashed", color="magenta", weight=3]; 670 -> 758[label="",style="dashed", color="magenta", weight=3]; 671 -> 121[label="",style="dashed", color="red", weight=0]; 671[label="vwx301 == vwx401",fontsize=16,color="magenta"];671 -> 759[label="",style="dashed", color="magenta", weight=3]; 671 -> 760[label="",style="dashed", color="magenta", weight=3]; 672 -> 122[label="",style="dashed", color="red", weight=0]; 672[label="vwx301 == vwx401",fontsize=16,color="magenta"];672 -> 761[label="",style="dashed", color="magenta", weight=3]; 672 -> 762[label="",style="dashed", color="magenta", weight=3]; 673 -> 123[label="",style="dashed", color="red", weight=0]; 673[label="vwx301 == vwx401",fontsize=16,color="magenta"];673 -> 763[label="",style="dashed", color="magenta", weight=3]; 673 -> 764[label="",style="dashed", color="magenta", weight=3]; 674 -> 124[label="",style="dashed", color="red", weight=0]; 674[label="vwx301 == vwx401",fontsize=16,color="magenta"];674 -> 765[label="",style="dashed", color="magenta", weight=3]; 674 -> 766[label="",style="dashed", color="magenta", weight=3]; 675 -> 125[label="",style="dashed", color="red", weight=0]; 675[label="vwx301 == vwx401",fontsize=16,color="magenta"];675 -> 767[label="",style="dashed", color="magenta", weight=3]; 675 -> 768[label="",style="dashed", color="magenta", weight=3]; 676 -> 126[label="",style="dashed", color="red", weight=0]; 676[label="vwx301 == vwx401",fontsize=16,color="magenta"];676 -> 769[label="",style="dashed", color="magenta", weight=3]; 676 -> 770[label="",style="dashed", color="magenta", weight=3]; 677 -> 127[label="",style="dashed", color="red", weight=0]; 677[label="vwx301 == vwx401",fontsize=16,color="magenta"];677 -> 771[label="",style="dashed", color="magenta", weight=3]; 677 -> 772[label="",style="dashed", color="magenta", weight=3]; 678[label="vwx400",fontsize=16,color="green",shape="box"];679[label="vwx300",fontsize=16,color="green",shape="box"];680[label="vwx400",fontsize=16,color="green",shape="box"];681[label="vwx300",fontsize=16,color="green",shape="box"];682[label="vwx400",fontsize=16,color="green",shape="box"];683[label="vwx300",fontsize=16,color="green",shape="box"];684[label="vwx400",fontsize=16,color="green",shape="box"];685[label="vwx300",fontsize=16,color="green",shape="box"];686[label="vwx400",fontsize=16,color="green",shape="box"];687[label="vwx300",fontsize=16,color="green",shape="box"];688[label="vwx400",fontsize=16,color="green",shape="box"];689[label="vwx300",fontsize=16,color="green",shape="box"];690[label="vwx400",fontsize=16,color="green",shape="box"];691[label="vwx300",fontsize=16,color="green",shape="box"];692[label="vwx400",fontsize=16,color="green",shape="box"];693[label="vwx300",fontsize=16,color="green",shape="box"];694[label="vwx400",fontsize=16,color="green",shape="box"];695[label="vwx300",fontsize=16,color="green",shape="box"];696[label="vwx400",fontsize=16,color="green",shape="box"];697[label="vwx300",fontsize=16,color="green",shape="box"];698[label="vwx400",fontsize=16,color="green",shape="box"];699[label="vwx300",fontsize=16,color="green",shape="box"];700[label="vwx400",fontsize=16,color="green",shape="box"];701[label="vwx300",fontsize=16,color="green",shape="box"];702[label="vwx400",fontsize=16,color="green",shape="box"];703[label="vwx300",fontsize=16,color="green",shape="box"];704[label="vwx400",fontsize=16,color="green",shape="box"];705[label="vwx300",fontsize=16,color="green",shape="box"];706[label="primEqNat (Succ vwx3000) (Succ vwx4000)",fontsize=16,color="black",shape="box"];706 -> 773[label="",style="solid", color="black", weight=3]; 707[label="primEqNat (Succ vwx3000) Zero",fontsize=16,color="black",shape="box"];707 -> 774[label="",style="solid", color="black", weight=3]; 708[label="primEqNat Zero (Succ vwx4000)",fontsize=16,color="black",shape="box"];708 -> 775[label="",style="solid", color="black", weight=3]; 709[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];709 -> 776[label="",style="solid", color="black", weight=3]; 1143[label="compare1 (vwx340,vwx341) vwx36 ((vwx340,vwx341) <= vwx36)",fontsize=16,color="burlywood",shape="box"];2478[label="vwx36/(vwx360,vwx361)",fontsize=10,color="white",style="solid",shape="box"];1143 -> 2478[label="",style="solid", color="burlywood", weight=9]; 2478 -> 1146[label="",style="solid", color="burlywood", weight=3]; 711[label="vwx4000",fontsize=16,color="green",shape="box"];712[label="vwx3000",fontsize=16,color="green",shape="box"];713[label="vwx4000",fontsize=16,color="green",shape="box"];714[label="vwx3000",fontsize=16,color="green",shape="box"];715[label="primMulInt (Pos vwx3010) vwx400",fontsize=16,color="burlywood",shape="box"];2479[label="vwx400/Pos vwx4000",fontsize=10,color="white",style="solid",shape="box"];715 -> 2479[label="",style="solid", color="burlywood", weight=9]; 2479 -> 779[label="",style="solid", color="burlywood", weight=3]; 2480[label="vwx400/Neg vwx4000",fontsize=10,color="white",style="solid",shape="box"];715 -> 2480[label="",style="solid", color="burlywood", weight=9]; 2480 -> 780[label="",style="solid", color="burlywood", weight=3]; 716[label="primMulInt (Neg vwx3010) vwx400",fontsize=16,color="burlywood",shape="box"];2481[label="vwx400/Pos vwx4000",fontsize=10,color="white",style="solid",shape="box"];716 -> 2481[label="",style="solid", color="burlywood", weight=9]; 2481 -> 781[label="",style="solid", color="burlywood", weight=3]; 2482[label="vwx400/Neg vwx4000",fontsize=10,color="white",style="solid",shape="box"];716 -> 2482[label="",style="solid", color="burlywood", weight=9]; 2482 -> 782[label="",style="solid", color="burlywood", weight=3]; 717[label="vwx402",fontsize=16,color="green",shape="box"];718[label="vwx302",fontsize=16,color="green",shape="box"];719[label="vwx402",fontsize=16,color="green",shape="box"];720[label="vwx302",fontsize=16,color="green",shape="box"];721[label="vwx402",fontsize=16,color="green",shape="box"];722[label="vwx302",fontsize=16,color="green",shape="box"];723[label="vwx402",fontsize=16,color="green",shape="box"];724[label="vwx302",fontsize=16,color="green",shape="box"];725[label="vwx402",fontsize=16,color="green",shape="box"];726[label="vwx302",fontsize=16,color="green",shape="box"];727[label="vwx402",fontsize=16,color="green",shape="box"];728[label="vwx302",fontsize=16,color="green",shape="box"];729[label="vwx402",fontsize=16,color="green",shape="box"];730[label="vwx302",fontsize=16,color="green",shape="box"];731[label="vwx402",fontsize=16,color="green",shape="box"];732[label="vwx302",fontsize=16,color="green",shape="box"];733[label="vwx402",fontsize=16,color="green",shape="box"];734[label="vwx302",fontsize=16,color="green",shape="box"];735[label="vwx402",fontsize=16,color="green",shape="box"];736[label="vwx302",fontsize=16,color="green",shape="box"];737[label="vwx402",fontsize=16,color="green",shape="box"];738[label="vwx302",fontsize=16,color="green",shape="box"];739[label="vwx402",fontsize=16,color="green",shape="box"];740[label="vwx302",fontsize=16,color="green",shape="box"];741[label="vwx402",fontsize=16,color="green",shape="box"];742[label="vwx302",fontsize=16,color="green",shape="box"];743[label="vwx402",fontsize=16,color="green",shape="box"];744[label="vwx302",fontsize=16,color="green",shape="box"];745[label="vwx401",fontsize=16,color="green",shape="box"];746[label="vwx301",fontsize=16,color="green",shape="box"];747[label="vwx401",fontsize=16,color="green",shape="box"];748[label="vwx301",fontsize=16,color="green",shape="box"];749[label="vwx401",fontsize=16,color="green",shape="box"];750[label="vwx301",fontsize=16,color="green",shape="box"];751[label="vwx401",fontsize=16,color="green",shape="box"];752[label="vwx301",fontsize=16,color="green",shape="box"];753[label="vwx401",fontsize=16,color="green",shape="box"];754[label="vwx301",fontsize=16,color="green",shape="box"];755[label="vwx401",fontsize=16,color="green",shape="box"];756[label="vwx301",fontsize=16,color="green",shape="box"];757[label="vwx401",fontsize=16,color="green",shape="box"];758[label="vwx301",fontsize=16,color="green",shape="box"];759[label="vwx401",fontsize=16,color="green",shape="box"];760[label="vwx301",fontsize=16,color="green",shape="box"];761[label="vwx401",fontsize=16,color="green",shape="box"];762[label="vwx301",fontsize=16,color="green",shape="box"];763[label="vwx401",fontsize=16,color="green",shape="box"];764[label="vwx301",fontsize=16,color="green",shape="box"];765[label="vwx401",fontsize=16,color="green",shape="box"];766[label="vwx301",fontsize=16,color="green",shape="box"];767[label="vwx401",fontsize=16,color="green",shape="box"];768[label="vwx301",fontsize=16,color="green",shape="box"];769[label="vwx401",fontsize=16,color="green",shape="box"];770[label="vwx301",fontsize=16,color="green",shape="box"];771[label="vwx401",fontsize=16,color="green",shape="box"];772[label="vwx301",fontsize=16,color="green",shape="box"];773 -> 303[label="",style="dashed", color="red", weight=0]; 773[label="primEqNat vwx3000 vwx4000",fontsize=16,color="magenta"];773 -> 783[label="",style="dashed", color="magenta", weight=3]; 773 -> 784[label="",style="dashed", color="magenta", weight=3]; 774[label="False",fontsize=16,color="green",shape="box"];775[label="False",fontsize=16,color="green",shape="box"];776[label="True",fontsize=16,color="green",shape="box"];1146[label="compare1 (vwx340,vwx341) (vwx360,vwx361) ((vwx340,vwx341) <= (vwx360,vwx361))",fontsize=16,color="black",shape="box"];1146 -> 1148[label="",style="solid", color="black", weight=3]; 779[label="primMulInt (Pos vwx3010) (Pos vwx4000)",fontsize=16,color="black",shape="box"];779 -> 818[label="",style="solid", color="black", weight=3]; 780[label="primMulInt (Pos vwx3010) (Neg vwx4000)",fontsize=16,color="black",shape="box"];780 -> 819[label="",style="solid", color="black", weight=3]; 781[label="primMulInt (Neg vwx3010) (Pos vwx4000)",fontsize=16,color="black",shape="box"];781 -> 820[label="",style="solid", color="black", weight=3]; 782[label="primMulInt (Neg vwx3010) (Neg vwx4000)",fontsize=16,color="black",shape="box"];782 -> 821[label="",style="solid", color="black", weight=3]; 783[label="vwx4000",fontsize=16,color="green",shape="box"];784[label="vwx3000",fontsize=16,color="green",shape="box"];1148 -> 1155[label="",style="dashed", color="red", weight=0]; 1148[label="compare1 (vwx340,vwx341) (vwx360,vwx361) (vwx340 < vwx360 || vwx340 == vwx360 && vwx341 <= vwx361)",fontsize=16,color="magenta"];1148 -> 1156[label="",style="dashed", color="magenta", weight=3]; 1148 -> 1157[label="",style="dashed", color="magenta", weight=3]; 1148 -> 1158[label="",style="dashed", color="magenta", weight=3]; 1148 -> 1159[label="",style="dashed", color="magenta", weight=3]; 1148 -> 1160[label="",style="dashed", color="magenta", weight=3]; 1148 -> 1161[label="",style="dashed", color="magenta", weight=3]; 818[label="Pos (primMulNat vwx3010 vwx4000)",fontsize=16,color="green",shape="box"];818 -> 866[label="",style="dashed", color="green", weight=3]; 819[label="Neg (primMulNat vwx3010 vwx4000)",fontsize=16,color="green",shape="box"];819 -> 867[label="",style="dashed", color="green", weight=3]; 820[label="Neg (primMulNat vwx3010 vwx4000)",fontsize=16,color="green",shape="box"];820 -> 868[label="",style="dashed", color="green", weight=3]; 821[label="Pos (primMulNat vwx3010 vwx4000)",fontsize=16,color="green",shape="box"];821 -> 869[label="",style="dashed", color="green", weight=3]; 1156[label="vwx360",fontsize=16,color="green",shape="box"];1157[label="vwx340 < vwx360",fontsize=16,color="blue",shape="box"];2483[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1157 -> 2483[label="",style="solid", color="blue", weight=9]; 2483 -> 1168[label="",style="solid", color="blue", weight=3]; 2484[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1157 -> 2484[label="",style="solid", color="blue", weight=9]; 2484 -> 1169[label="",style="solid", color="blue", weight=3]; 2485[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1157 -> 2485[label="",style="solid", color="blue", weight=9]; 2485 -> 1170[label="",style="solid", color="blue", weight=3]; 2486[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1157 -> 2486[label="",style="solid", color="blue", weight=9]; 2486 -> 1171[label="",style="solid", color="blue", weight=3]; 2487[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1157 -> 2487[label="",style="solid", color="blue", weight=9]; 2487 -> 1172[label="",style="solid", color="blue", weight=3]; 2488[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1157 -> 2488[label="",style="solid", color="blue", weight=9]; 2488 -> 1173[label="",style="solid", color="blue", weight=3]; 2489[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1157 -> 2489[label="",style="solid", color="blue", weight=9]; 2489 -> 1174[label="",style="solid", color="blue", weight=3]; 2490[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1157 -> 2490[label="",style="solid", color="blue", weight=9]; 2490 -> 1175[label="",style="solid", color="blue", weight=3]; 2491[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1157 -> 2491[label="",style="solid", color="blue", weight=9]; 2491 -> 1176[label="",style="solid", color="blue", weight=3]; 2492[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1157 -> 2492[label="",style="solid", color="blue", weight=9]; 2492 -> 1177[label="",style="solid", color="blue", weight=3]; 2493[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1157 -> 2493[label="",style="solid", color="blue", weight=9]; 2493 -> 1178[label="",style="solid", color="blue", weight=3]; 2494[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1157 -> 2494[label="",style="solid", color="blue", weight=9]; 2494 -> 1179[label="",style="solid", color="blue", weight=3]; 2495[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1157 -> 2495[label="",style="solid", color="blue", weight=9]; 2495 -> 1180[label="",style="solid", color="blue", weight=3]; 2496[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1157 -> 2496[label="",style="solid", color="blue", weight=9]; 2496 -> 1181[label="",style="solid", color="blue", weight=3]; 1158 -> 396[label="",style="dashed", color="red", weight=0]; 1158[label="vwx340 == vwx360 && vwx341 <= vwx361",fontsize=16,color="magenta"];1158 -> 1182[label="",style="dashed", color="magenta", weight=3]; 1158 -> 1183[label="",style="dashed", color="magenta", weight=3]; 1159[label="vwx341",fontsize=16,color="green",shape="box"];1160[label="vwx340",fontsize=16,color="green",shape="box"];1161[label="vwx361",fontsize=16,color="green",shape="box"];1155[label="compare1 (vwx72,vwx73) (vwx74,vwx75) (vwx76 || vwx77)",fontsize=16,color="burlywood",shape="triangle"];2497[label="vwx76/False",fontsize=10,color="white",style="solid",shape="box"];1155 -> 2497[label="",style="solid", color="burlywood", weight=9]; 2497 -> 1184[label="",style="solid", color="burlywood", weight=3]; 2498[label="vwx76/True",fontsize=10,color="white",style="solid",shape="box"];1155 -> 2498[label="",style="solid", color="burlywood", weight=9]; 2498 -> 1185[label="",style="solid", color="burlywood", weight=3]; 866[label="primMulNat vwx3010 vwx4000",fontsize=16,color="burlywood",shape="triangle"];2499[label="vwx3010/Succ vwx30100",fontsize=10,color="white",style="solid",shape="box"];866 -> 2499[label="",style="solid", color="burlywood", weight=9]; 2499 -> 948[label="",style="solid", color="burlywood", weight=3]; 2500[label="vwx3010/Zero",fontsize=10,color="white",style="solid",shape="box"];866 -> 2500[label="",style="solid", color="burlywood", weight=9]; 2500 -> 949[label="",style="solid", color="burlywood", weight=3]; 867 -> 866[label="",style="dashed", color="red", weight=0]; 867[label="primMulNat vwx3010 vwx4000",fontsize=16,color="magenta"];867 -> 950[label="",style="dashed", color="magenta", weight=3]; 868 -> 866[label="",style="dashed", color="red", weight=0]; 868[label="primMulNat vwx3010 vwx4000",fontsize=16,color="magenta"];868 -> 951[label="",style="dashed", color="magenta", weight=3]; 869 -> 866[label="",style="dashed", color="red", weight=0]; 869[label="primMulNat vwx3010 vwx4000",fontsize=16,color="magenta"];869 -> 952[label="",style="dashed", color="magenta", weight=3]; 869 -> 953[label="",style="dashed", color="magenta", weight=3]; 1168[label="vwx340 < vwx360",fontsize=16,color="black",shape="triangle"];1168 -> 1190[label="",style="solid", color="black", weight=3]; 1169[label="vwx340 < vwx360",fontsize=16,color="black",shape="triangle"];1169 -> 1191[label="",style="solid", color="black", weight=3]; 1170[label="vwx340 < vwx360",fontsize=16,color="black",shape="triangle"];1170 -> 1192[label="",style="solid", color="black", weight=3]; 1171[label="vwx340 < vwx360",fontsize=16,color="black",shape="triangle"];1171 -> 1193[label="",style="solid", color="black", weight=3]; 1172[label="vwx340 < vwx360",fontsize=16,color="black",shape="triangle"];1172 -> 1194[label="",style="solid", color="black", weight=3]; 1173[label="vwx340 < vwx360",fontsize=16,color="black",shape="triangle"];1173 -> 1195[label="",style="solid", color="black", weight=3]; 1174[label="vwx340 < vwx360",fontsize=16,color="black",shape="triangle"];1174 -> 1196[label="",style="solid", color="black", weight=3]; 1175[label="vwx340 < vwx360",fontsize=16,color="black",shape="triangle"];1175 -> 1197[label="",style="solid", color="black", weight=3]; 1176[label="vwx340 < vwx360",fontsize=16,color="black",shape="triangle"];1176 -> 1198[label="",style="solid", color="black", weight=3]; 1177[label="vwx340 < vwx360",fontsize=16,color="black",shape="triangle"];1177 -> 1199[label="",style="solid", color="black", weight=3]; 1178[label="vwx340 < vwx360",fontsize=16,color="black",shape="triangle"];1178 -> 1200[label="",style="solid", color="black", weight=3]; 1179[label="vwx340 < vwx360",fontsize=16,color="black",shape="triangle"];1179 -> 1201[label="",style="solid", color="black", weight=3]; 1180[label="vwx340 < vwx360",fontsize=16,color="black",shape="triangle"];1180 -> 1202[label="",style="solid", color="black", weight=3]; 1181[label="vwx340 < vwx360",fontsize=16,color="black",shape="triangle"];1181 -> 1203[label="",style="solid", color="black", weight=3]; 1182[label="vwx341 <= vwx361",fontsize=16,color="blue",shape="box"];2501[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1182 -> 2501[label="",style="solid", color="blue", weight=9]; 2501 -> 1204[label="",style="solid", color="blue", weight=3]; 2502[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1182 -> 2502[label="",style="solid", color="blue", weight=9]; 2502 -> 1205[label="",style="solid", color="blue", weight=3]; 2503[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1182 -> 2503[label="",style="solid", color="blue", weight=9]; 2503 -> 1206[label="",style="solid", color="blue", weight=3]; 2504[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1182 -> 2504[label="",style="solid", color="blue", weight=9]; 2504 -> 1207[label="",style="solid", color="blue", weight=3]; 2505[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1182 -> 2505[label="",style="solid", color="blue", weight=9]; 2505 -> 1208[label="",style="solid", color="blue", weight=3]; 2506[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1182 -> 2506[label="",style="solid", color="blue", weight=9]; 2506 -> 1209[label="",style="solid", color="blue", weight=3]; 2507[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1182 -> 2507[label="",style="solid", color="blue", weight=9]; 2507 -> 1210[label="",style="solid", color="blue", weight=3]; 2508[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1182 -> 2508[label="",style="solid", color="blue", weight=9]; 2508 -> 1211[label="",style="solid", color="blue", weight=3]; 2509[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1182 -> 2509[label="",style="solid", color="blue", weight=9]; 2509 -> 1212[label="",style="solid", color="blue", weight=3]; 2510[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1182 -> 2510[label="",style="solid", color="blue", weight=9]; 2510 -> 1213[label="",style="solid", color="blue", weight=3]; 2511[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1182 -> 2511[label="",style="solid", color="blue", weight=9]; 2511 -> 1214[label="",style="solid", color="blue", weight=3]; 2512[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1182 -> 2512[label="",style="solid", color="blue", weight=9]; 2512 -> 1215[label="",style="solid", color="blue", weight=3]; 2513[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1182 -> 2513[label="",style="solid", color="blue", weight=9]; 2513 -> 1216[label="",style="solid", color="blue", weight=3]; 2514[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1182 -> 2514[label="",style="solid", color="blue", weight=9]; 2514 -> 1217[label="",style="solid", color="blue", weight=3]; 1183[label="vwx340 == vwx360",fontsize=16,color="blue",shape="box"];2515[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1183 -> 2515[label="",style="solid", color="blue", weight=9]; 2515 -> 1218[label="",style="solid", color="blue", weight=3]; 2516[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1183 -> 2516[label="",style="solid", color="blue", weight=9]; 2516 -> 1219[label="",style="solid", color="blue", weight=3]; 2517[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1183 -> 2517[label="",style="solid", color="blue", weight=9]; 2517 -> 1220[label="",style="solid", color="blue", weight=3]; 2518[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1183 -> 2518[label="",style="solid", color="blue", weight=9]; 2518 -> 1221[label="",style="solid", color="blue", weight=3]; 2519[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1183 -> 2519[label="",style="solid", color="blue", weight=9]; 2519 -> 1222[label="",style="solid", color="blue", weight=3]; 2520[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1183 -> 2520[label="",style="solid", color="blue", weight=9]; 2520 -> 1223[label="",style="solid", color="blue", weight=3]; 2521[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1183 -> 2521[label="",style="solid", color="blue", weight=9]; 2521 -> 1224[label="",style="solid", color="blue", weight=3]; 2522[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1183 -> 2522[label="",style="solid", color="blue", weight=9]; 2522 -> 1225[label="",style="solid", color="blue", weight=3]; 2523[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1183 -> 2523[label="",style="solid", color="blue", weight=9]; 2523 -> 1226[label="",style="solid", color="blue", weight=3]; 2524[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1183 -> 2524[label="",style="solid", color="blue", weight=9]; 2524 -> 1227[label="",style="solid", color="blue", weight=3]; 2525[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1183 -> 2525[label="",style="solid", color="blue", weight=9]; 2525 -> 1228[label="",style="solid", color="blue", weight=3]; 2526[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1183 -> 2526[label="",style="solid", color="blue", weight=9]; 2526 -> 1229[label="",style="solid", color="blue", weight=3]; 2527[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1183 -> 2527[label="",style="solid", color="blue", weight=9]; 2527 -> 1230[label="",style="solid", color="blue", weight=3]; 2528[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1183 -> 2528[label="",style="solid", color="blue", weight=9]; 2528 -> 1231[label="",style="solid", color="blue", weight=3]; 1184[label="compare1 (vwx72,vwx73) (vwx74,vwx75) (False || vwx77)",fontsize=16,color="black",shape="box"];1184 -> 1232[label="",style="solid", color="black", weight=3]; 1185[label="compare1 (vwx72,vwx73) (vwx74,vwx75) (True || vwx77)",fontsize=16,color="black",shape="box"];1185 -> 1233[label="",style="solid", color="black", weight=3]; 948[label="primMulNat (Succ vwx30100) vwx4000",fontsize=16,color="burlywood",shape="box"];2529[label="vwx4000/Succ vwx40000",fontsize=10,color="white",style="solid",shape="box"];948 -> 2529[label="",style="solid", color="burlywood", weight=9]; 2529 -> 1003[label="",style="solid", color="burlywood", weight=3]; 2530[label="vwx4000/Zero",fontsize=10,color="white",style="solid",shape="box"];948 -> 2530[label="",style="solid", color="burlywood", weight=9]; 2530 -> 1004[label="",style="solid", color="burlywood", weight=3]; 949[label="primMulNat Zero vwx4000",fontsize=16,color="burlywood",shape="box"];2531[label="vwx4000/Succ vwx40000",fontsize=10,color="white",style="solid",shape="box"];949 -> 2531[label="",style="solid", color="burlywood", weight=9]; 2531 -> 1005[label="",style="solid", color="burlywood", weight=3]; 2532[label="vwx4000/Zero",fontsize=10,color="white",style="solid",shape="box"];949 -> 2532[label="",style="solid", color="burlywood", weight=9]; 2532 -> 1006[label="",style="solid", color="burlywood", weight=3]; 950[label="vwx4000",fontsize=16,color="green",shape="box"];951[label="vwx3010",fontsize=16,color="green",shape="box"];952[label="vwx4000",fontsize=16,color="green",shape="box"];953[label="vwx3010",fontsize=16,color="green",shape="box"];1190 -> 119[label="",style="dashed", color="red", weight=0]; 1190[label="compare vwx340 vwx360 == LT",fontsize=16,color="magenta"];1190 -> 1238[label="",style="dashed", color="magenta", weight=3]; 1190 -> 1239[label="",style="dashed", color="magenta", weight=3]; 1191 -> 119[label="",style="dashed", color="red", weight=0]; 1191[label="compare vwx340 vwx360 == LT",fontsize=16,color="magenta"];1191 -> 1240[label="",style="dashed", color="magenta", weight=3]; 1191 -> 1241[label="",style="dashed", color="magenta", weight=3]; 1192 -> 119[label="",style="dashed", color="red", weight=0]; 1192[label="compare vwx340 vwx360 == LT",fontsize=16,color="magenta"];1192 -> 1242[label="",style="dashed", color="magenta", weight=3]; 1192 -> 1243[label="",style="dashed", color="magenta", weight=3]; 1193 -> 119[label="",style="dashed", color="red", weight=0]; 1193[label="compare vwx340 vwx360 == LT",fontsize=16,color="magenta"];1193 -> 1244[label="",style="dashed", color="magenta", weight=3]; 1193 -> 1245[label="",style="dashed", color="magenta", weight=3]; 1194 -> 119[label="",style="dashed", color="red", weight=0]; 1194[label="compare vwx340 vwx360 == LT",fontsize=16,color="magenta"];1194 -> 1246[label="",style="dashed", color="magenta", weight=3]; 1194 -> 1247[label="",style="dashed", color="magenta", weight=3]; 1195 -> 119[label="",style="dashed", color="red", weight=0]; 1195[label="compare vwx340 vwx360 == LT",fontsize=16,color="magenta"];1195 -> 1248[label="",style="dashed", color="magenta", weight=3]; 1195 -> 1249[label="",style="dashed", color="magenta", weight=3]; 1196 -> 119[label="",style="dashed", color="red", weight=0]; 1196[label="compare vwx340 vwx360 == LT",fontsize=16,color="magenta"];1196 -> 1250[label="",style="dashed", color="magenta", weight=3]; 1196 -> 1251[label="",style="dashed", color="magenta", weight=3]; 1197 -> 119[label="",style="dashed", color="red", weight=0]; 1197[label="compare vwx340 vwx360 == LT",fontsize=16,color="magenta"];1197 -> 1252[label="",style="dashed", color="magenta", weight=3]; 1197 -> 1253[label="",style="dashed", color="magenta", weight=3]; 1198 -> 119[label="",style="dashed", color="red", weight=0]; 1198[label="compare vwx340 vwx360 == LT",fontsize=16,color="magenta"];1198 -> 1254[label="",style="dashed", color="magenta", weight=3]; 1198 -> 1255[label="",style="dashed", color="magenta", weight=3]; 1199 -> 119[label="",style="dashed", color="red", weight=0]; 1199[label="compare vwx340 vwx360 == LT",fontsize=16,color="magenta"];1199 -> 1256[label="",style="dashed", color="magenta", weight=3]; 1199 -> 1257[label="",style="dashed", color="magenta", weight=3]; 1200 -> 119[label="",style="dashed", color="red", weight=0]; 1200[label="compare vwx340 vwx360 == LT",fontsize=16,color="magenta"];1200 -> 1258[label="",style="dashed", color="magenta", weight=3]; 1200 -> 1259[label="",style="dashed", color="magenta", weight=3]; 1201 -> 119[label="",style="dashed", color="red", weight=0]; 1201[label="compare vwx340 vwx360 == LT",fontsize=16,color="magenta"];1201 -> 1260[label="",style="dashed", color="magenta", weight=3]; 1201 -> 1261[label="",style="dashed", color="magenta", weight=3]; 1202 -> 119[label="",style="dashed", color="red", weight=0]; 1202[label="compare vwx340 vwx360 == LT",fontsize=16,color="magenta"];1202 -> 1262[label="",style="dashed", color="magenta", weight=3]; 1202 -> 1263[label="",style="dashed", color="magenta", weight=3]; 1203 -> 119[label="",style="dashed", color="red", weight=0]; 1203[label="compare vwx340 vwx360 == LT",fontsize=16,color="magenta"];1203 -> 1264[label="",style="dashed", color="magenta", weight=3]; 1203 -> 1265[label="",style="dashed", color="magenta", weight=3]; 1204[label="vwx341 <= vwx361",fontsize=16,color="black",shape="triangle"];1204 -> 1266[label="",style="solid", color="black", weight=3]; 1205[label="vwx341 <= vwx361",fontsize=16,color="burlywood",shape="triangle"];2533[label="vwx341/Left vwx3410",fontsize=10,color="white",style="solid",shape="box"];1205 -> 2533[label="",style="solid", color="burlywood", weight=9]; 2533 -> 1267[label="",style="solid", color="burlywood", weight=3]; 2534[label="vwx341/Right vwx3410",fontsize=10,color="white",style="solid",shape="box"];1205 -> 2534[label="",style="solid", color="burlywood", weight=9]; 2534 -> 1268[label="",style="solid", color="burlywood", weight=3]; 1206[label="vwx341 <= vwx361",fontsize=16,color="burlywood",shape="triangle"];2535[label="vwx341/False",fontsize=10,color="white",style="solid",shape="box"];1206 -> 2535[label="",style="solid", color="burlywood", weight=9]; 2535 -> 1269[label="",style="solid", color="burlywood", weight=3]; 2536[label="vwx341/True",fontsize=10,color="white",style="solid",shape="box"];1206 -> 2536[label="",style="solid", color="burlywood", weight=9]; 2536 -> 1270[label="",style="solid", color="burlywood", weight=3]; 1207[label="vwx341 <= vwx361",fontsize=16,color="black",shape="triangle"];1207 -> 1271[label="",style="solid", color="black", weight=3]; 1208[label="vwx341 <= vwx361",fontsize=16,color="black",shape="triangle"];1208 -> 1272[label="",style="solid", color="black", weight=3]; 1209[label="vwx341 <= vwx361",fontsize=16,color="burlywood",shape="triangle"];2537[label="vwx341/(vwx3410,vwx3411)",fontsize=10,color="white",style="solid",shape="box"];1209 -> 2537[label="",style="solid", color="burlywood", weight=9]; 2537 -> 1273[label="",style="solid", color="burlywood", weight=3]; 1210[label="vwx341 <= vwx361",fontsize=16,color="burlywood",shape="triangle"];2538[label="vwx341/LT",fontsize=10,color="white",style="solid",shape="box"];1210 -> 2538[label="",style="solid", color="burlywood", weight=9]; 2538 -> 1274[label="",style="solid", color="burlywood", weight=3]; 2539[label="vwx341/EQ",fontsize=10,color="white",style="solid",shape="box"];1210 -> 2539[label="",style="solid", color="burlywood", weight=9]; 2539 -> 1275[label="",style="solid", color="burlywood", weight=3]; 2540[label="vwx341/GT",fontsize=10,color="white",style="solid",shape="box"];1210 -> 2540[label="",style="solid", color="burlywood", weight=9]; 2540 -> 1276[label="",style="solid", color="burlywood", weight=3]; 1211[label="vwx341 <= vwx361",fontsize=16,color="black",shape="triangle"];1211 -> 1277[label="",style="solid", color="black", weight=3]; 1212[label="vwx341 <= vwx361",fontsize=16,color="black",shape="triangle"];1212 -> 1278[label="",style="solid", color="black", weight=3]; 1213[label="vwx341 <= vwx361",fontsize=16,color="burlywood",shape="triangle"];2541[label="vwx341/(vwx3410,vwx3411,vwx3412)",fontsize=10,color="white",style="solid",shape="box"];1213 -> 2541[label="",style="solid", color="burlywood", weight=9]; 2541 -> 1279[label="",style="solid", color="burlywood", weight=3]; 1214[label="vwx341 <= vwx361",fontsize=16,color="black",shape="triangle"];1214 -> 1280[label="",style="solid", color="black", weight=3]; 1215[label="vwx341 <= vwx361",fontsize=16,color="burlywood",shape="triangle"];2542[label="vwx341/Nothing",fontsize=10,color="white",style="solid",shape="box"];1215 -> 2542[label="",style="solid", color="burlywood", weight=9]; 2542 -> 1281[label="",style="solid", color="burlywood", weight=3]; 2543[label="vwx341/Just vwx3410",fontsize=10,color="white",style="solid",shape="box"];1215 -> 2543[label="",style="solid", color="burlywood", weight=9]; 2543 -> 1282[label="",style="solid", color="burlywood", weight=3]; 1216[label="vwx341 <= vwx361",fontsize=16,color="black",shape="triangle"];1216 -> 1283[label="",style="solid", color="black", weight=3]; 1217[label="vwx341 <= vwx361",fontsize=16,color="black",shape="triangle"];1217 -> 1284[label="",style="solid", color="black", weight=3]; 1218 -> 114[label="",style="dashed", color="red", weight=0]; 1218[label="vwx340 == vwx360",fontsize=16,color="magenta"];1218 -> 1285[label="",style="dashed", color="magenta", weight=3]; 1218 -> 1286[label="",style="dashed", color="magenta", weight=3]; 1219 -> 116[label="",style="dashed", color="red", weight=0]; 1219[label="vwx340 == vwx360",fontsize=16,color="magenta"];1219 -> 1287[label="",style="dashed", color="magenta", weight=3]; 1219 -> 1288[label="",style="dashed", color="magenta", weight=3]; 1220 -> 121[label="",style="dashed", color="red", weight=0]; 1220[label="vwx340 == vwx360",fontsize=16,color="magenta"];1220 -> 1289[label="",style="dashed", color="magenta", weight=3]; 1220 -> 1290[label="",style="dashed", color="magenta", weight=3]; 1221 -> 123[label="",style="dashed", color="red", weight=0]; 1221[label="vwx340 == vwx360",fontsize=16,color="magenta"];1221 -> 1291[label="",style="dashed", color="magenta", weight=3]; 1221 -> 1292[label="",style="dashed", color="magenta", weight=3]; 1222 -> 127[label="",style="dashed", color="red", weight=0]; 1222[label="vwx340 == vwx360",fontsize=16,color="magenta"];1222 -> 1293[label="",style="dashed", color="magenta", weight=3]; 1222 -> 1294[label="",style="dashed", color="magenta", weight=3]; 1223 -> 122[label="",style="dashed", color="red", weight=0]; 1223[label="vwx340 == vwx360",fontsize=16,color="magenta"];1223 -> 1295[label="",style="dashed", color="magenta", weight=3]; 1223 -> 1296[label="",style="dashed", color="magenta", weight=3]; 1224 -> 119[label="",style="dashed", color="red", weight=0]; 1224[label="vwx340 == vwx360",fontsize=16,color="magenta"];1224 -> 1297[label="",style="dashed", color="magenta", weight=3]; 1224 -> 1298[label="",style="dashed", color="magenta", weight=3]; 1225 -> 126[label="",style="dashed", color="red", weight=0]; 1225[label="vwx340 == vwx360",fontsize=16,color="magenta"];1225 -> 1299[label="",style="dashed", color="magenta", weight=3]; 1225 -> 1300[label="",style="dashed", color="magenta", weight=3]; 1226 -> 120[label="",style="dashed", color="red", weight=0]; 1226[label="vwx340 == vwx360",fontsize=16,color="magenta"];1226 -> 1301[label="",style="dashed", color="magenta", weight=3]; 1226 -> 1302[label="",style="dashed", color="magenta", weight=3]; 1227 -> 125[label="",style="dashed", color="red", weight=0]; 1227[label="vwx340 == vwx360",fontsize=16,color="magenta"];1227 -> 1303[label="",style="dashed", color="magenta", weight=3]; 1227 -> 1304[label="",style="dashed", color="magenta", weight=3]; 1228 -> 117[label="",style="dashed", color="red", weight=0]; 1228[label="vwx340 == vwx360",fontsize=16,color="magenta"];1228 -> 1305[label="",style="dashed", color="magenta", weight=3]; 1228 -> 1306[label="",style="dashed", color="magenta", weight=3]; 1229 -> 118[label="",style="dashed", color="red", weight=0]; 1229[label="vwx340 == vwx360",fontsize=16,color="magenta"];1229 -> 1307[label="",style="dashed", color="magenta", weight=3]; 1229 -> 1308[label="",style="dashed", color="magenta", weight=3]; 1230 -> 124[label="",style="dashed", color="red", weight=0]; 1230[label="vwx340 == vwx360",fontsize=16,color="magenta"];1230 -> 1309[label="",style="dashed", color="magenta", weight=3]; 1230 -> 1310[label="",style="dashed", color="magenta", weight=3]; 1231 -> 115[label="",style="dashed", color="red", weight=0]; 1231[label="vwx340 == vwx360",fontsize=16,color="magenta"];1231 -> 1311[label="",style="dashed", color="magenta", weight=3]; 1231 -> 1312[label="",style="dashed", color="magenta", weight=3]; 1232[label="compare1 (vwx72,vwx73) (vwx74,vwx75) vwx77",fontsize=16,color="burlywood",shape="triangle"];2544[label="vwx77/False",fontsize=10,color="white",style="solid",shape="box"];1232 -> 2544[label="",style="solid", color="burlywood", weight=9]; 2544 -> 1313[label="",style="solid", color="burlywood", weight=3]; 2545[label="vwx77/True",fontsize=10,color="white",style="solid",shape="box"];1232 -> 2545[label="",style="solid", color="burlywood", weight=9]; 2545 -> 1314[label="",style="solid", color="burlywood", weight=3]; 1233 -> 1232[label="",style="dashed", color="red", weight=0]; 1233[label="compare1 (vwx72,vwx73) (vwx74,vwx75) True",fontsize=16,color="magenta"];1233 -> 1315[label="",style="dashed", color="magenta", weight=3]; 1003[label="primMulNat (Succ vwx30100) (Succ vwx40000)",fontsize=16,color="black",shape="box"];1003 -> 1066[label="",style="solid", color="black", weight=3]; 1004[label="primMulNat (Succ vwx30100) Zero",fontsize=16,color="black",shape="box"];1004 -> 1067[label="",style="solid", color="black", weight=3]; 1005[label="primMulNat Zero (Succ vwx40000)",fontsize=16,color="black",shape="box"];1005 -> 1068[label="",style="solid", color="black", weight=3]; 1006[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1006 -> 1069[label="",style="solid", color="black", weight=3]; 1238[label="LT",fontsize=16,color="green",shape="box"];1239[label="compare vwx340 vwx360",fontsize=16,color="black",shape="triangle"];1239 -> 1317[label="",style="solid", color="black", weight=3]; 1240[label="LT",fontsize=16,color="green",shape="box"];1241[label="compare vwx340 vwx360",fontsize=16,color="black",shape="triangle"];1241 -> 1318[label="",style="solid", color="black", weight=3]; 1242[label="LT",fontsize=16,color="green",shape="box"];1243[label="compare vwx340 vwx360",fontsize=16,color="black",shape="triangle"];1243 -> 1319[label="",style="solid", color="black", weight=3]; 1244[label="LT",fontsize=16,color="green",shape="box"];1245[label="compare vwx340 vwx360",fontsize=16,color="burlywood",shape="triangle"];2546[label="vwx340/()",fontsize=10,color="white",style="solid",shape="box"];1245 -> 2546[label="",style="solid", color="burlywood", weight=9]; 2546 -> 1320[label="",style="solid", color="burlywood", weight=3]; 1246[label="LT",fontsize=16,color="green",shape="box"];1247[label="compare vwx340 vwx360",fontsize=16,color="burlywood",shape="triangle"];2547[label="vwx340/Integer vwx3400",fontsize=10,color="white",style="solid",shape="box"];1247 -> 2547[label="",style="solid", color="burlywood", weight=9]; 2547 -> 1321[label="",style="solid", color="burlywood", weight=3]; 1248[label="LT",fontsize=16,color="green",shape="box"];1249[label="compare vwx340 vwx360",fontsize=16,color="black",shape="triangle"];1249 -> 1322[label="",style="solid", color="black", weight=3]; 1250[label="LT",fontsize=16,color="green",shape="box"];1251[label="compare vwx340 vwx360",fontsize=16,color="black",shape="triangle"];1251 -> 1323[label="",style="solid", color="black", weight=3]; 1252[label="LT",fontsize=16,color="green",shape="box"];1253[label="compare vwx340 vwx360",fontsize=16,color="black",shape="triangle"];1253 -> 1324[label="",style="solid", color="black", weight=3]; 1254[label="LT",fontsize=16,color="green",shape="box"];1255[label="compare vwx340 vwx360",fontsize=16,color="burlywood",shape="triangle"];2548[label="vwx340/vwx3400 :% vwx3401",fontsize=10,color="white",style="solid",shape="box"];1255 -> 2548[label="",style="solid", color="burlywood", weight=9]; 2548 -> 1325[label="",style="solid", color="burlywood", weight=3]; 1256[label="LT",fontsize=16,color="green",shape="box"];1257[label="compare vwx340 vwx360",fontsize=16,color="black",shape="triangle"];1257 -> 1326[label="",style="solid", color="black", weight=3]; 1258[label="LT",fontsize=16,color="green",shape="box"];1259[label="compare vwx340 vwx360",fontsize=16,color="burlywood",shape="triangle"];2549[label="vwx340/vwx3400 : vwx3401",fontsize=10,color="white",style="solid",shape="box"];1259 -> 2549[label="",style="solid", color="burlywood", weight=9]; 2549 -> 1327[label="",style="solid", color="burlywood", weight=3]; 2550[label="vwx340/[]",fontsize=10,color="white",style="solid",shape="box"];1259 -> 2550[label="",style="solid", color="burlywood", weight=9]; 2550 -> 1328[label="",style="solid", color="burlywood", weight=3]; 1260[label="LT",fontsize=16,color="green",shape="box"];1261[label="compare vwx340 vwx360",fontsize=16,color="black",shape="triangle"];1261 -> 1329[label="",style="solid", color="black", weight=3]; 1262[label="LT",fontsize=16,color="green",shape="box"];1263[label="compare vwx340 vwx360",fontsize=16,color="black",shape="triangle"];1263 -> 1330[label="",style="solid", color="black", weight=3]; 1264[label="LT",fontsize=16,color="green",shape="box"];1265[label="compare vwx340 vwx360",fontsize=16,color="black",shape="triangle"];1265 -> 1331[label="",style="solid", color="black", weight=3]; 1266 -> 1332[label="",style="dashed", color="red", weight=0]; 1266[label="compare vwx341 vwx361 /= GT",fontsize=16,color="magenta"];1266 -> 1333[label="",style="dashed", color="magenta", weight=3]; 1267[label="Left vwx3410 <= vwx361",fontsize=16,color="burlywood",shape="box"];2551[label="vwx361/Left vwx3610",fontsize=10,color="white",style="solid",shape="box"];1267 -> 2551[label="",style="solid", color="burlywood", weight=9]; 2551 -> 1341[label="",style="solid", color="burlywood", weight=3]; 2552[label="vwx361/Right vwx3610",fontsize=10,color="white",style="solid",shape="box"];1267 -> 2552[label="",style="solid", color="burlywood", weight=9]; 2552 -> 1342[label="",style="solid", color="burlywood", weight=3]; 1268[label="Right vwx3410 <= vwx361",fontsize=16,color="burlywood",shape="box"];2553[label="vwx361/Left vwx3610",fontsize=10,color="white",style="solid",shape="box"];1268 -> 2553[label="",style="solid", color="burlywood", weight=9]; 2553 -> 1343[label="",style="solid", color="burlywood", weight=3]; 2554[label="vwx361/Right vwx3610",fontsize=10,color="white",style="solid",shape="box"];1268 -> 2554[label="",style="solid", color="burlywood", weight=9]; 2554 -> 1344[label="",style="solid", color="burlywood", weight=3]; 1269[label="False <= vwx361",fontsize=16,color="burlywood",shape="box"];2555[label="vwx361/False",fontsize=10,color="white",style="solid",shape="box"];1269 -> 2555[label="",style="solid", color="burlywood", weight=9]; 2555 -> 1345[label="",style="solid", color="burlywood", weight=3]; 2556[label="vwx361/True",fontsize=10,color="white",style="solid",shape="box"];1269 -> 2556[label="",style="solid", color="burlywood", weight=9]; 2556 -> 1346[label="",style="solid", color="burlywood", weight=3]; 1270[label="True <= vwx361",fontsize=16,color="burlywood",shape="box"];2557[label="vwx361/False",fontsize=10,color="white",style="solid",shape="box"];1270 -> 2557[label="",style="solid", color="burlywood", weight=9]; 2557 -> 1347[label="",style="solid", color="burlywood", weight=3]; 2558[label="vwx361/True",fontsize=10,color="white",style="solid",shape="box"];1270 -> 2558[label="",style="solid", color="burlywood", weight=9]; 2558 -> 1348[label="",style="solid", color="burlywood", weight=3]; 1271 -> 1332[label="",style="dashed", color="red", weight=0]; 1271[label="compare vwx341 vwx361 /= GT",fontsize=16,color="magenta"];1271 -> 1334[label="",style="dashed", color="magenta", weight=3]; 1272 -> 1332[label="",style="dashed", color="red", weight=0]; 1272[label="compare vwx341 vwx361 /= GT",fontsize=16,color="magenta"];1272 -> 1335[label="",style="dashed", color="magenta", weight=3]; 1273[label="(vwx3410,vwx3411) <= vwx361",fontsize=16,color="burlywood",shape="box"];2559[label="vwx361/(vwx3610,vwx3611)",fontsize=10,color="white",style="solid",shape="box"];1273 -> 2559[label="",style="solid", color="burlywood", weight=9]; 2559 -> 1349[label="",style="solid", color="burlywood", weight=3]; 1274[label="LT <= vwx361",fontsize=16,color="burlywood",shape="box"];2560[label="vwx361/LT",fontsize=10,color="white",style="solid",shape="box"];1274 -> 2560[label="",style="solid", color="burlywood", weight=9]; 2560 -> 1350[label="",style="solid", color="burlywood", weight=3]; 2561[label="vwx361/EQ",fontsize=10,color="white",style="solid",shape="box"];1274 -> 2561[label="",style="solid", color="burlywood", weight=9]; 2561 -> 1351[label="",style="solid", color="burlywood", weight=3]; 2562[label="vwx361/GT",fontsize=10,color="white",style="solid",shape="box"];1274 -> 2562[label="",style="solid", color="burlywood", weight=9]; 2562 -> 1352[label="",style="solid", color="burlywood", weight=3]; 1275[label="EQ <= vwx361",fontsize=16,color="burlywood",shape="box"];2563[label="vwx361/LT",fontsize=10,color="white",style="solid",shape="box"];1275 -> 2563[label="",style="solid", color="burlywood", weight=9]; 2563 -> 1353[label="",style="solid", color="burlywood", weight=3]; 2564[label="vwx361/EQ",fontsize=10,color="white",style="solid",shape="box"];1275 -> 2564[label="",style="solid", color="burlywood", weight=9]; 2564 -> 1354[label="",style="solid", color="burlywood", weight=3]; 2565[label="vwx361/GT",fontsize=10,color="white",style="solid",shape="box"];1275 -> 2565[label="",style="solid", color="burlywood", weight=9]; 2565 -> 1355[label="",style="solid", color="burlywood", weight=3]; 1276[label="GT <= vwx361",fontsize=16,color="burlywood",shape="box"];2566[label="vwx361/LT",fontsize=10,color="white",style="solid",shape="box"];1276 -> 2566[label="",style="solid", color="burlywood", weight=9]; 2566 -> 1356[label="",style="solid", color="burlywood", weight=3]; 2567[label="vwx361/EQ",fontsize=10,color="white",style="solid",shape="box"];1276 -> 2567[label="",style="solid", color="burlywood", weight=9]; 2567 -> 1357[label="",style="solid", color="burlywood", weight=3]; 2568[label="vwx361/GT",fontsize=10,color="white",style="solid",shape="box"];1276 -> 2568[label="",style="solid", color="burlywood", weight=9]; 2568 -> 1358[label="",style="solid", color="burlywood", weight=3]; 1277 -> 1332[label="",style="dashed", color="red", weight=0]; 1277[label="compare vwx341 vwx361 /= GT",fontsize=16,color="magenta"];1277 -> 1336[label="",style="dashed", color="magenta", weight=3]; 1278 -> 1332[label="",style="dashed", color="red", weight=0]; 1278[label="compare vwx341 vwx361 /= GT",fontsize=16,color="magenta"];1278 -> 1337[label="",style="dashed", color="magenta", weight=3]; 1279[label="(vwx3410,vwx3411,vwx3412) <= vwx361",fontsize=16,color="burlywood",shape="box"];2569[label="vwx361/(vwx3610,vwx3611,vwx3612)",fontsize=10,color="white",style="solid",shape="box"];1279 -> 2569[label="",style="solid", color="burlywood", weight=9]; 2569 -> 1359[label="",style="solid", color="burlywood", weight=3]; 1280 -> 1332[label="",style="dashed", color="red", weight=0]; 1280[label="compare vwx341 vwx361 /= GT",fontsize=16,color="magenta"];1280 -> 1338[label="",style="dashed", color="magenta", weight=3]; 1281[label="Nothing <= vwx361",fontsize=16,color="burlywood",shape="box"];2570[label="vwx361/Nothing",fontsize=10,color="white",style="solid",shape="box"];1281 -> 2570[label="",style="solid", color="burlywood", weight=9]; 2570 -> 1360[label="",style="solid", color="burlywood", weight=3]; 2571[label="vwx361/Just vwx3610",fontsize=10,color="white",style="solid",shape="box"];1281 -> 2571[label="",style="solid", color="burlywood", weight=9]; 2571 -> 1361[label="",style="solid", color="burlywood", weight=3]; 1282[label="Just vwx3410 <= vwx361",fontsize=16,color="burlywood",shape="box"];2572[label="vwx361/Nothing",fontsize=10,color="white",style="solid",shape="box"];1282 -> 2572[label="",style="solid", color="burlywood", weight=9]; 2572 -> 1362[label="",style="solid", color="burlywood", weight=3]; 2573[label="vwx361/Just vwx3610",fontsize=10,color="white",style="solid",shape="box"];1282 -> 2573[label="",style="solid", color="burlywood", weight=9]; 2573 -> 1363[label="",style="solid", color="burlywood", weight=3]; 1283 -> 1332[label="",style="dashed", color="red", weight=0]; 1283[label="compare vwx341 vwx361 /= GT",fontsize=16,color="magenta"];1283 -> 1339[label="",style="dashed", color="magenta", weight=3]; 1284 -> 1332[label="",style="dashed", color="red", weight=0]; 1284[label="compare vwx341 vwx361 /= GT",fontsize=16,color="magenta"];1284 -> 1340[label="",style="dashed", color="magenta", weight=3]; 1285[label="vwx360",fontsize=16,color="green",shape="box"];1286[label="vwx340",fontsize=16,color="green",shape="box"];1287[label="vwx360",fontsize=16,color="green",shape="box"];1288[label="vwx340",fontsize=16,color="green",shape="box"];1289[label="vwx360",fontsize=16,color="green",shape="box"];1290[label="vwx340",fontsize=16,color="green",shape="box"];1291[label="vwx360",fontsize=16,color="green",shape="box"];1292[label="vwx340",fontsize=16,color="green",shape="box"];1293[label="vwx360",fontsize=16,color="green",shape="box"];1294[label="vwx340",fontsize=16,color="green",shape="box"];1295[label="vwx360",fontsize=16,color="green",shape="box"];1296[label="vwx340",fontsize=16,color="green",shape="box"];1297[label="vwx360",fontsize=16,color="green",shape="box"];1298[label="vwx340",fontsize=16,color="green",shape="box"];1299[label="vwx360",fontsize=16,color="green",shape="box"];1300[label="vwx340",fontsize=16,color="green",shape="box"];1301[label="vwx360",fontsize=16,color="green",shape="box"];1302[label="vwx340",fontsize=16,color="green",shape="box"];1303[label="vwx360",fontsize=16,color="green",shape="box"];1304[label="vwx340",fontsize=16,color="green",shape="box"];1305[label="vwx360",fontsize=16,color="green",shape="box"];1306[label="vwx340",fontsize=16,color="green",shape="box"];1307[label="vwx360",fontsize=16,color="green",shape="box"];1308[label="vwx340",fontsize=16,color="green",shape="box"];1309[label="vwx360",fontsize=16,color="green",shape="box"];1310[label="vwx340",fontsize=16,color="green",shape="box"];1311[label="vwx360",fontsize=16,color="green",shape="box"];1312[label="vwx340",fontsize=16,color="green",shape="box"];1313[label="compare1 (vwx72,vwx73) (vwx74,vwx75) False",fontsize=16,color="black",shape="box"];1313 -> 1364[label="",style="solid", color="black", weight=3]; 1314[label="compare1 (vwx72,vwx73) (vwx74,vwx75) True",fontsize=16,color="black",shape="box"];1314 -> 1365[label="",style="solid", color="black", weight=3]; 1315[label="True",fontsize=16,color="green",shape="box"];1066 -> 1107[label="",style="dashed", color="red", weight=0]; 1066[label="primPlusNat (primMulNat vwx30100 (Succ vwx40000)) (Succ vwx40000)",fontsize=16,color="magenta"];1066 -> 1108[label="",style="dashed", color="magenta", weight=3]; 1067[label="Zero",fontsize=16,color="green",shape="box"];1068[label="Zero",fontsize=16,color="green",shape="box"];1069[label="Zero",fontsize=16,color="green",shape="box"];1317[label="primCmpInt vwx340 vwx360",fontsize=16,color="burlywood",shape="triangle"];2574[label="vwx340/Pos vwx3400",fontsize=10,color="white",style="solid",shape="box"];1317 -> 2574[label="",style="solid", color="burlywood", weight=9]; 2574 -> 1366[label="",style="solid", color="burlywood", weight=3]; 2575[label="vwx340/Neg vwx3400",fontsize=10,color="white",style="solid",shape="box"];1317 -> 2575[label="",style="solid", color="burlywood", weight=9]; 2575 -> 1367[label="",style="solid", color="burlywood", weight=3]; 1318[label="compare3 vwx340 vwx360",fontsize=16,color="black",shape="box"];1318 -> 1368[label="",style="solid", color="black", weight=3]; 1319[label="compare3 vwx340 vwx360",fontsize=16,color="black",shape="box"];1319 -> 1369[label="",style="solid", color="black", weight=3]; 1320[label="compare () vwx360",fontsize=16,color="burlywood",shape="box"];2576[label="vwx360/()",fontsize=10,color="white",style="solid",shape="box"];1320 -> 2576[label="",style="solid", color="burlywood", weight=9]; 2576 -> 1370[label="",style="solid", color="burlywood", weight=3]; 1321[label="compare (Integer vwx3400) vwx360",fontsize=16,color="burlywood",shape="box"];2577[label="vwx360/Integer vwx3600",fontsize=10,color="white",style="solid",shape="box"];1321 -> 2577[label="",style="solid", color="burlywood", weight=9]; 2577 -> 1371[label="",style="solid", color="burlywood", weight=3]; 1322[label="compare3 vwx340 vwx360",fontsize=16,color="black",shape="box"];1322 -> 1372[label="",style="solid", color="black", weight=3]; 1323[label="compare3 vwx340 vwx360",fontsize=16,color="black",shape="box"];1323 -> 1373[label="",style="solid", color="black", weight=3]; 1324[label="primCmpChar vwx340 vwx360",fontsize=16,color="burlywood",shape="box"];2578[label="vwx340/Char vwx3400",fontsize=10,color="white",style="solid",shape="box"];1324 -> 2578[label="",style="solid", color="burlywood", weight=9]; 2578 -> 1374[label="",style="solid", color="burlywood", weight=3]; 1325[label="compare (vwx3400 :% vwx3401) vwx360",fontsize=16,color="burlywood",shape="box"];2579[label="vwx360/vwx3600 :% vwx3601",fontsize=10,color="white",style="solid",shape="box"];1325 -> 2579[label="",style="solid", color="burlywood", weight=9]; 2579 -> 1375[label="",style="solid", color="burlywood", weight=3]; 1326[label="compare3 vwx340 vwx360",fontsize=16,color="black",shape="box"];1326 -> 1376[label="",style="solid", color="black", weight=3]; 1327[label="compare (vwx3400 : vwx3401) vwx360",fontsize=16,color="burlywood",shape="box"];2580[label="vwx360/vwx3600 : vwx3601",fontsize=10,color="white",style="solid",shape="box"];1327 -> 2580[label="",style="solid", color="burlywood", weight=9]; 2580 -> 1377[label="",style="solid", color="burlywood", weight=3]; 2581[label="vwx360/[]",fontsize=10,color="white",style="solid",shape="box"];1327 -> 2581[label="",style="solid", color="burlywood", weight=9]; 2581 -> 1378[label="",style="solid", color="burlywood", weight=3]; 1328[label="compare [] vwx360",fontsize=16,color="burlywood",shape="box"];2582[label="vwx360/vwx3600 : vwx3601",fontsize=10,color="white",style="solid",shape="box"];1328 -> 2582[label="",style="solid", color="burlywood", weight=9]; 2582 -> 1379[label="",style="solid", color="burlywood", weight=3]; 2583[label="vwx360/[]",fontsize=10,color="white",style="solid",shape="box"];1328 -> 2583[label="",style="solid", color="burlywood", weight=9]; 2583 -> 1380[label="",style="solid", color="burlywood", weight=3]; 1329[label="compare3 vwx340 vwx360",fontsize=16,color="black",shape="box"];1329 -> 1381[label="",style="solid", color="black", weight=3]; 1330[label="primCmpDouble vwx340 vwx360",fontsize=16,color="burlywood",shape="box"];2584[label="vwx340/Double vwx3400 vwx3401",fontsize=10,color="white",style="solid",shape="box"];1330 -> 2584[label="",style="solid", color="burlywood", weight=9]; 2584 -> 1382[label="",style="solid", color="burlywood", weight=3]; 1331[label="primCmpFloat vwx340 vwx360",fontsize=16,color="burlywood",shape="box"];2585[label="vwx340/Float vwx3400 vwx3401",fontsize=10,color="white",style="solid",shape="box"];1331 -> 2585[label="",style="solid", color="burlywood", weight=9]; 2585 -> 1383[label="",style="solid", color="burlywood", weight=3]; 1333 -> 1239[label="",style="dashed", color="red", weight=0]; 1333[label="compare vwx341 vwx361",fontsize=16,color="magenta"];1333 -> 1384[label="",style="dashed", color="magenta", weight=3]; 1333 -> 1385[label="",style="dashed", color="magenta", weight=3]; 1332[label="vwx78 /= GT",fontsize=16,color="black",shape="triangle"];1332 -> 1386[label="",style="solid", color="black", weight=3]; 1341[label="Left vwx3410 <= Left vwx3610",fontsize=16,color="black",shape="box"];1341 -> 1403[label="",style="solid", color="black", weight=3]; 1342[label="Left vwx3410 <= Right vwx3610",fontsize=16,color="black",shape="box"];1342 -> 1404[label="",style="solid", color="black", weight=3]; 1343[label="Right vwx3410 <= Left vwx3610",fontsize=16,color="black",shape="box"];1343 -> 1405[label="",style="solid", color="black", weight=3]; 1344[label="Right vwx3410 <= Right vwx3610",fontsize=16,color="black",shape="box"];1344 -> 1406[label="",style="solid", color="black", weight=3]; 1345[label="False <= False",fontsize=16,color="black",shape="box"];1345 -> 1407[label="",style="solid", color="black", weight=3]; 1346[label="False <= True",fontsize=16,color="black",shape="box"];1346 -> 1408[label="",style="solid", color="black", weight=3]; 1347[label="True <= False",fontsize=16,color="black",shape="box"];1347 -> 1409[label="",style="solid", color="black", weight=3]; 1348[label="True <= True",fontsize=16,color="black",shape="box"];1348 -> 1410[label="",style="solid", color="black", weight=3]; 1334 -> 1245[label="",style="dashed", color="red", weight=0]; 1334[label="compare vwx341 vwx361",fontsize=16,color="magenta"];1334 -> 1387[label="",style="dashed", color="magenta", weight=3]; 1334 -> 1388[label="",style="dashed", color="magenta", weight=3]; 1335 -> 1247[label="",style="dashed", color="red", weight=0]; 1335[label="compare vwx341 vwx361",fontsize=16,color="magenta"];1335 -> 1389[label="",style="dashed", color="magenta", weight=3]; 1335 -> 1390[label="",style="dashed", color="magenta", weight=3]; 1349[label="(vwx3410,vwx3411) <= (vwx3610,vwx3611)",fontsize=16,color="black",shape="box"];1349 -> 1411[label="",style="solid", color="black", weight=3]; 1350[label="LT <= LT",fontsize=16,color="black",shape="box"];1350 -> 1412[label="",style="solid", color="black", weight=3]; 1351[label="LT <= EQ",fontsize=16,color="black",shape="box"];1351 -> 1413[label="",style="solid", color="black", weight=3]; 1352[label="LT <= GT",fontsize=16,color="black",shape="box"];1352 -> 1414[label="",style="solid", color="black", weight=3]; 1353[label="EQ <= LT",fontsize=16,color="black",shape="box"];1353 -> 1415[label="",style="solid", color="black", weight=3]; 1354[label="EQ <= EQ",fontsize=16,color="black",shape="box"];1354 -> 1416[label="",style="solid", color="black", weight=3]; 1355[label="EQ <= GT",fontsize=16,color="black",shape="box"];1355 -> 1417[label="",style="solid", color="black", weight=3]; 1356[label="GT <= LT",fontsize=16,color="black",shape="box"];1356 -> 1418[label="",style="solid", color="black", weight=3]; 1357[label="GT <= EQ",fontsize=16,color="black",shape="box"];1357 -> 1419[label="",style="solid", color="black", weight=3]; 1358[label="GT <= GT",fontsize=16,color="black",shape="box"];1358 -> 1420[label="",style="solid", color="black", weight=3]; 1336 -> 1253[label="",style="dashed", color="red", weight=0]; 1336[label="compare vwx341 vwx361",fontsize=16,color="magenta"];1336 -> 1391[label="",style="dashed", color="magenta", weight=3]; 1336 -> 1392[label="",style="dashed", color="magenta", weight=3]; 1337 -> 1255[label="",style="dashed", color="red", weight=0]; 1337[label="compare vwx341 vwx361",fontsize=16,color="magenta"];1337 -> 1393[label="",style="dashed", color="magenta", weight=3]; 1337 -> 1394[label="",style="dashed", color="magenta", weight=3]; 1359[label="(vwx3410,vwx3411,vwx3412) <= (vwx3610,vwx3611,vwx3612)",fontsize=16,color="black",shape="box"];1359 -> 1421[label="",style="solid", color="black", weight=3]; 1338 -> 1259[label="",style="dashed", color="red", weight=0]; 1338[label="compare vwx341 vwx361",fontsize=16,color="magenta"];1338 -> 1395[label="",style="dashed", color="magenta", weight=3]; 1338 -> 1396[label="",style="dashed", color="magenta", weight=3]; 1360[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];1360 -> 1422[label="",style="solid", color="black", weight=3]; 1361[label="Nothing <= Just vwx3610",fontsize=16,color="black",shape="box"];1361 -> 1423[label="",style="solid", color="black", weight=3]; 1362[label="Just vwx3410 <= Nothing",fontsize=16,color="black",shape="box"];1362 -> 1424[label="",style="solid", color="black", weight=3]; 1363[label="Just vwx3410 <= Just vwx3610",fontsize=16,color="black",shape="box"];1363 -> 1425[label="",style="solid", color="black", weight=3]; 1339 -> 1263[label="",style="dashed", color="red", weight=0]; 1339[label="compare vwx341 vwx361",fontsize=16,color="magenta"];1339 -> 1397[label="",style="dashed", color="magenta", weight=3]; 1339 -> 1398[label="",style="dashed", color="magenta", weight=3]; 1340 -> 1265[label="",style="dashed", color="red", weight=0]; 1340[label="compare vwx341 vwx361",fontsize=16,color="magenta"];1340 -> 1399[label="",style="dashed", color="magenta", weight=3]; 1340 -> 1400[label="",style="dashed", color="magenta", weight=3]; 1364[label="compare0 (vwx72,vwx73) (vwx74,vwx75) otherwise",fontsize=16,color="black",shape="box"];1364 -> 1426[label="",style="solid", color="black", weight=3]; 1365[label="LT",fontsize=16,color="green",shape="box"];1108 -> 866[label="",style="dashed", color="red", weight=0]; 1108[label="primMulNat vwx30100 (Succ vwx40000)",fontsize=16,color="magenta"];1108 -> 1139[label="",style="dashed", color="magenta", weight=3]; 1108 -> 1140[label="",style="dashed", color="magenta", weight=3]; 1107[label="primPlusNat vwx63 (Succ vwx40000)",fontsize=16,color="burlywood",shape="triangle"];2586[label="vwx63/Succ vwx630",fontsize=10,color="white",style="solid",shape="box"];1107 -> 2586[label="",style="solid", color="burlywood", weight=9]; 2586 -> 1141[label="",style="solid", color="burlywood", weight=3]; 2587[label="vwx63/Zero",fontsize=10,color="white",style="solid",shape="box"];1107 -> 2587[label="",style="solid", color="burlywood", weight=9]; 2587 -> 1142[label="",style="solid", color="burlywood", weight=3]; 1366[label="primCmpInt (Pos vwx3400) vwx360",fontsize=16,color="burlywood",shape="box"];2588[label="vwx3400/Succ vwx34000",fontsize=10,color="white",style="solid",shape="box"];1366 -> 2588[label="",style="solid", color="burlywood", weight=9]; 2588 -> 1427[label="",style="solid", color="burlywood", weight=3]; 2589[label="vwx3400/Zero",fontsize=10,color="white",style="solid",shape="box"];1366 -> 2589[label="",style="solid", color="burlywood", weight=9]; 2589 -> 1428[label="",style="solid", color="burlywood", weight=3]; 1367[label="primCmpInt (Neg vwx3400) vwx360",fontsize=16,color="burlywood",shape="box"];2590[label="vwx3400/Succ vwx34000",fontsize=10,color="white",style="solid",shape="box"];1367 -> 2590[label="",style="solid", color="burlywood", weight=9]; 2590 -> 1429[label="",style="solid", color="burlywood", weight=3]; 2591[label="vwx3400/Zero",fontsize=10,color="white",style="solid",shape="box"];1367 -> 2591[label="",style="solid", color="burlywood", weight=9]; 2591 -> 1430[label="",style="solid", color="burlywood", weight=3]; 1368 -> 1431[label="",style="dashed", color="red", weight=0]; 1368[label="compare2 vwx340 vwx360 (vwx340 == vwx360)",fontsize=16,color="magenta"];1368 -> 1432[label="",style="dashed", color="magenta", weight=3]; 1369 -> 1433[label="",style="dashed", color="red", weight=0]; 1369[label="compare2 vwx340 vwx360 (vwx340 == vwx360)",fontsize=16,color="magenta"];1369 -> 1434[label="",style="dashed", color="magenta", weight=3]; 1370[label="compare () ()",fontsize=16,color="black",shape="box"];1370 -> 1435[label="",style="solid", color="black", weight=3]; 1371[label="compare (Integer vwx3400) (Integer vwx3600)",fontsize=16,color="black",shape="box"];1371 -> 1436[label="",style="solid", color="black", weight=3]; 1372 -> 1080[label="",style="dashed", color="red", weight=0]; 1372[label="compare2 vwx340 vwx360 (vwx340 == vwx360)",fontsize=16,color="magenta"];1372 -> 1437[label="",style="dashed", color="magenta", weight=3]; 1372 -> 1438[label="",style="dashed", color="magenta", weight=3]; 1372 -> 1439[label="",style="dashed", color="magenta", weight=3]; 1373 -> 1440[label="",style="dashed", color="red", weight=0]; 1373[label="compare2 vwx340 vwx360 (vwx340 == vwx360)",fontsize=16,color="magenta"];1373 -> 1441[label="",style="dashed", color="magenta", weight=3]; 1374[label="primCmpChar (Char vwx3400) vwx360",fontsize=16,color="burlywood",shape="box"];2592[label="vwx360/Char vwx3600",fontsize=10,color="white",style="solid",shape="box"];1374 -> 2592[label="",style="solid", color="burlywood", weight=9]; 2592 -> 1442[label="",style="solid", color="burlywood", weight=3]; 1375[label="compare (vwx3400 :% vwx3401) (vwx3600 :% vwx3601)",fontsize=16,color="black",shape="box"];1375 -> 1443[label="",style="solid", color="black", weight=3]; 1376 -> 1444[label="",style="dashed", color="red", weight=0]; 1376[label="compare2 vwx340 vwx360 (vwx340 == vwx360)",fontsize=16,color="magenta"];1376 -> 1445[label="",style="dashed", color="magenta", weight=3]; 1377[label="compare (vwx3400 : vwx3401) (vwx3600 : vwx3601)",fontsize=16,color="black",shape="box"];1377 -> 1446[label="",style="solid", color="black", weight=3]; 1378[label="compare (vwx3400 : vwx3401) []",fontsize=16,color="black",shape="box"];1378 -> 1447[label="",style="solid", color="black", weight=3]; 1379[label="compare [] (vwx3600 : vwx3601)",fontsize=16,color="black",shape="box"];1379 -> 1448[label="",style="solid", color="black", weight=3]; 1380[label="compare [] []",fontsize=16,color="black",shape="box"];1380 -> 1449[label="",style="solid", color="black", weight=3]; 1381 -> 1450[label="",style="dashed", color="red", weight=0]; 1381[label="compare2 vwx340 vwx360 (vwx340 == vwx360)",fontsize=16,color="magenta"];1381 -> 1451[label="",style="dashed", color="magenta", weight=3]; 1382[label="primCmpDouble (Double vwx3400 vwx3401) vwx360",fontsize=16,color="burlywood",shape="box"];2593[label="vwx3401/Pos vwx34010",fontsize=10,color="white",style="solid",shape="box"];1382 -> 2593[label="",style="solid", color="burlywood", weight=9]; 2593 -> 1452[label="",style="solid", color="burlywood", weight=3]; 2594[label="vwx3401/Neg vwx34010",fontsize=10,color="white",style="solid",shape="box"];1382 -> 2594[label="",style="solid", color="burlywood", weight=9]; 2594 -> 1453[label="",style="solid", color="burlywood", weight=3]; 1383[label="primCmpFloat (Float vwx3400 vwx3401) vwx360",fontsize=16,color="burlywood",shape="box"];2595[label="vwx3401/Pos vwx34010",fontsize=10,color="white",style="solid",shape="box"];1383 -> 2595[label="",style="solid", color="burlywood", weight=9]; 2595 -> 1454[label="",style="solid", color="burlywood", weight=3]; 2596[label="vwx3401/Neg vwx34010",fontsize=10,color="white",style="solid",shape="box"];1383 -> 2596[label="",style="solid", color="burlywood", weight=9]; 2596 -> 1455[label="",style="solid", color="burlywood", weight=3]; 1384[label="vwx341",fontsize=16,color="green",shape="box"];1385[label="vwx361",fontsize=16,color="green",shape="box"];1386 -> 91[label="",style="dashed", color="red", weight=0]; 1386[label="not (vwx78 == GT)",fontsize=16,color="magenta"];1386 -> 1456[label="",style="dashed", color="magenta", weight=3]; 1403[label="vwx3410 <= vwx3610",fontsize=16,color="blue",shape="box"];2597[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 2597[label="",style="solid", color="blue", weight=9]; 2597 -> 1457[label="",style="solid", color="blue", weight=3]; 2598[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 2598[label="",style="solid", color="blue", weight=9]; 2598 -> 1458[label="",style="solid", color="blue", weight=3]; 2599[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 2599[label="",style="solid", color="blue", weight=9]; 2599 -> 1459[label="",style="solid", color="blue", weight=3]; 2600[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 2600[label="",style="solid", color="blue", weight=9]; 2600 -> 1460[label="",style="solid", color="blue", weight=3]; 2601[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 2601[label="",style="solid", color="blue", weight=9]; 2601 -> 1461[label="",style="solid", color="blue", weight=3]; 2602[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 2602[label="",style="solid", color="blue", weight=9]; 2602 -> 1462[label="",style="solid", color="blue", weight=3]; 2603[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 2603[label="",style="solid", color="blue", weight=9]; 2603 -> 1463[label="",style="solid", color="blue", weight=3]; 2604[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 2604[label="",style="solid", color="blue", weight=9]; 2604 -> 1464[label="",style="solid", color="blue", weight=3]; 2605[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 2605[label="",style="solid", color="blue", weight=9]; 2605 -> 1465[label="",style="solid", color="blue", weight=3]; 2606[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 2606[label="",style="solid", color="blue", weight=9]; 2606 -> 1466[label="",style="solid", color="blue", weight=3]; 2607[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 2607[label="",style="solid", color="blue", weight=9]; 2607 -> 1467[label="",style="solid", color="blue", weight=3]; 2608[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 2608[label="",style="solid", color="blue", weight=9]; 2608 -> 1468[label="",style="solid", color="blue", weight=3]; 2609[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 2609[label="",style="solid", color="blue", weight=9]; 2609 -> 1469[label="",style="solid", color="blue", weight=3]; 2610[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 2610[label="",style="solid", color="blue", weight=9]; 2610 -> 1470[label="",style="solid", color="blue", weight=3]; 1404[label="True",fontsize=16,color="green",shape="box"];1405[label="False",fontsize=16,color="green",shape="box"];1406[label="vwx3410 <= vwx3610",fontsize=16,color="blue",shape="box"];2611[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1406 -> 2611[label="",style="solid", color="blue", weight=9]; 2611 -> 1471[label="",style="solid", color="blue", weight=3]; 2612[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1406 -> 2612[label="",style="solid", color="blue", weight=9]; 2612 -> 1472[label="",style="solid", color="blue", weight=3]; 2613[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1406 -> 2613[label="",style="solid", color="blue", weight=9]; 2613 -> 1473[label="",style="solid", color="blue", weight=3]; 2614[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1406 -> 2614[label="",style="solid", color="blue", weight=9]; 2614 -> 1474[label="",style="solid", color="blue", weight=3]; 2615[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1406 -> 2615[label="",style="solid", color="blue", weight=9]; 2615 -> 1475[label="",style="solid", color="blue", weight=3]; 2616[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1406 -> 2616[label="",style="solid", color="blue", weight=9]; 2616 -> 1476[label="",style="solid", color="blue", weight=3]; 2617[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1406 -> 2617[label="",style="solid", color="blue", weight=9]; 2617 -> 1477[label="",style="solid", color="blue", weight=3]; 2618[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1406 -> 2618[label="",style="solid", color="blue", weight=9]; 2618 -> 1478[label="",style="solid", color="blue", weight=3]; 2619[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1406 -> 2619[label="",style="solid", color="blue", weight=9]; 2619 -> 1479[label="",style="solid", color="blue", weight=3]; 2620[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1406 -> 2620[label="",style="solid", color="blue", weight=9]; 2620 -> 1480[label="",style="solid", color="blue", weight=3]; 2621[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1406 -> 2621[label="",style="solid", color="blue", weight=9]; 2621 -> 1481[label="",style="solid", color="blue", weight=3]; 2622[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1406 -> 2622[label="",style="solid", color="blue", weight=9]; 2622 -> 1482[label="",style="solid", color="blue", weight=3]; 2623[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1406 -> 2623[label="",style="solid", color="blue", weight=9]; 2623 -> 1483[label="",style="solid", color="blue", weight=3]; 2624[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1406 -> 2624[label="",style="solid", color="blue", weight=9]; 2624 -> 1484[label="",style="solid", color="blue", weight=3]; 1407[label="True",fontsize=16,color="green",shape="box"];1408[label="True",fontsize=16,color="green",shape="box"];1409[label="False",fontsize=16,color="green",shape="box"];1410[label="True",fontsize=16,color="green",shape="box"];1387[label="vwx341",fontsize=16,color="green",shape="box"];1388[label="vwx361",fontsize=16,color="green",shape="box"];1389[label="vwx341",fontsize=16,color="green",shape="box"];1390[label="vwx361",fontsize=16,color="green",shape="box"];1411 -> 1606[label="",style="dashed", color="red", weight=0]; 1411[label="vwx3410 < vwx3610 || vwx3410 == vwx3610 && vwx3411 <= vwx3611",fontsize=16,color="magenta"];1411 -> 1607[label="",style="dashed", color="magenta", weight=3]; 1411 -> 1608[label="",style="dashed", color="magenta", weight=3]; 1412[label="True",fontsize=16,color="green",shape="box"];1413[label="True",fontsize=16,color="green",shape="box"];1414[label="True",fontsize=16,color="green",shape="box"];1415[label="False",fontsize=16,color="green",shape="box"];1416[label="True",fontsize=16,color="green",shape="box"];1417[label="True",fontsize=16,color="green",shape="box"];1418[label="False",fontsize=16,color="green",shape="box"];1419[label="False",fontsize=16,color="green",shape="box"];1420[label="True",fontsize=16,color="green",shape="box"];1391[label="vwx341",fontsize=16,color="green",shape="box"];1392[label="vwx361",fontsize=16,color="green",shape="box"];1393[label="vwx341",fontsize=16,color="green",shape="box"];1394[label="vwx361",fontsize=16,color="green",shape="box"];1421 -> 1606[label="",style="dashed", color="red", weight=0]; 1421[label="vwx3410 < vwx3610 || vwx3410 == vwx3610 && (vwx3411 < vwx3611 || vwx3411 == vwx3611 && vwx3412 <= vwx3612)",fontsize=16,color="magenta"];1421 -> 1609[label="",style="dashed", color="magenta", weight=3]; 1421 -> 1610[label="",style="dashed", color="magenta", weight=3]; 1395[label="vwx341",fontsize=16,color="green",shape="box"];1396[label="vwx361",fontsize=16,color="green",shape="box"];1422[label="True",fontsize=16,color="green",shape="box"];1423[label="True",fontsize=16,color="green",shape="box"];1424[label="False",fontsize=16,color="green",shape="box"];1425[label="vwx3410 <= vwx3610",fontsize=16,color="blue",shape="box"];2625[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1425 -> 2625[label="",style="solid", color="blue", weight=9]; 2625 -> 1490[label="",style="solid", color="blue", weight=3]; 2626[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1425 -> 2626[label="",style="solid", color="blue", weight=9]; 2626 -> 1491[label="",style="solid", color="blue", weight=3]; 2627[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1425 -> 2627[label="",style="solid", color="blue", weight=9]; 2627 -> 1492[label="",style="solid", color="blue", weight=3]; 2628[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1425 -> 2628[label="",style="solid", color="blue", weight=9]; 2628 -> 1493[label="",style="solid", color="blue", weight=3]; 2629[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1425 -> 2629[label="",style="solid", color="blue", weight=9]; 2629 -> 1494[label="",style="solid", color="blue", weight=3]; 2630[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1425 -> 2630[label="",style="solid", color="blue", weight=9]; 2630 -> 1495[label="",style="solid", color="blue", weight=3]; 2631[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1425 -> 2631[label="",style="solid", color="blue", weight=9]; 2631 -> 1496[label="",style="solid", color="blue", weight=3]; 2632[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1425 -> 2632[label="",style="solid", color="blue", weight=9]; 2632 -> 1497[label="",style="solid", color="blue", weight=3]; 2633[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1425 -> 2633[label="",style="solid", color="blue", weight=9]; 2633 -> 1498[label="",style="solid", color="blue", weight=3]; 2634[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1425 -> 2634[label="",style="solid", color="blue", weight=9]; 2634 -> 1499[label="",style="solid", color="blue", weight=3]; 2635[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1425 -> 2635[label="",style="solid", color="blue", weight=9]; 2635 -> 1500[label="",style="solid", color="blue", weight=3]; 2636[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1425 -> 2636[label="",style="solid", color="blue", weight=9]; 2636 -> 1501[label="",style="solid", color="blue", weight=3]; 2637[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1425 -> 2637[label="",style="solid", color="blue", weight=9]; 2637 -> 1502[label="",style="solid", color="blue", weight=3]; 2638[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1425 -> 2638[label="",style="solid", color="blue", weight=9]; 2638 -> 1503[label="",style="solid", color="blue", weight=3]; 1397[label="vwx341",fontsize=16,color="green",shape="box"];1398[label="vwx361",fontsize=16,color="green",shape="box"];1399[label="vwx341",fontsize=16,color="green",shape="box"];1400[label="vwx361",fontsize=16,color="green",shape="box"];1426[label="compare0 (vwx72,vwx73) (vwx74,vwx75) True",fontsize=16,color="black",shape="box"];1426 -> 1504[label="",style="solid", color="black", weight=3]; 1139[label="Succ vwx40000",fontsize=16,color="green",shape="box"];1140[label="vwx30100",fontsize=16,color="green",shape="box"];1141[label="primPlusNat (Succ vwx630) (Succ vwx40000)",fontsize=16,color="black",shape="box"];1141 -> 1144[label="",style="solid", color="black", weight=3]; 1142[label="primPlusNat Zero (Succ vwx40000)",fontsize=16,color="black",shape="box"];1142 -> 1145[label="",style="solid", color="black", weight=3]; 1427[label="primCmpInt (Pos (Succ vwx34000)) vwx360",fontsize=16,color="burlywood",shape="box"];2639[label="vwx360/Pos vwx3600",fontsize=10,color="white",style="solid",shape="box"];1427 -> 2639[label="",style="solid", color="burlywood", weight=9]; 2639 -> 1505[label="",style="solid", color="burlywood", weight=3]; 2640[label="vwx360/Neg vwx3600",fontsize=10,color="white",style="solid",shape="box"];1427 -> 2640[label="",style="solid", color="burlywood", weight=9]; 2640 -> 1506[label="",style="solid", color="burlywood", weight=3]; 1428[label="primCmpInt (Pos Zero) vwx360",fontsize=16,color="burlywood",shape="box"];2641[label="vwx360/Pos vwx3600",fontsize=10,color="white",style="solid",shape="box"];1428 -> 2641[label="",style="solid", color="burlywood", weight=9]; 2641 -> 1507[label="",style="solid", color="burlywood", weight=3]; 2642[label="vwx360/Neg vwx3600",fontsize=10,color="white",style="solid",shape="box"];1428 -> 2642[label="",style="solid", color="burlywood", weight=9]; 2642 -> 1508[label="",style="solid", color="burlywood", weight=3]; 1429[label="primCmpInt (Neg (Succ vwx34000)) vwx360",fontsize=16,color="burlywood",shape="box"];2643[label="vwx360/Pos vwx3600",fontsize=10,color="white",style="solid",shape="box"];1429 -> 2643[label="",style="solid", color="burlywood", weight=9]; 2643 -> 1509[label="",style="solid", color="burlywood", weight=3]; 2644[label="vwx360/Neg vwx3600",fontsize=10,color="white",style="solid",shape="box"];1429 -> 2644[label="",style="solid", color="burlywood", weight=9]; 2644 -> 1510[label="",style="solid", color="burlywood", weight=3]; 1430[label="primCmpInt (Neg Zero) vwx360",fontsize=16,color="burlywood",shape="box"];2645[label="vwx360/Pos vwx3600",fontsize=10,color="white",style="solid",shape="box"];1430 -> 2645[label="",style="solid", color="burlywood", weight=9]; 2645 -> 1511[label="",style="solid", color="burlywood", weight=3]; 2646[label="vwx360/Neg vwx3600",fontsize=10,color="white",style="solid",shape="box"];1430 -> 2646[label="",style="solid", color="burlywood", weight=9]; 2646 -> 1512[label="",style="solid", color="burlywood", weight=3]; 1432 -> 116[label="",style="dashed", color="red", weight=0]; 1432[label="vwx340 == vwx360",fontsize=16,color="magenta"];1432 -> 1513[label="",style="dashed", color="magenta", weight=3]; 1432 -> 1514[label="",style="dashed", color="magenta", weight=3]; 1431[label="compare2 vwx340 vwx360 vwx79",fontsize=16,color="burlywood",shape="triangle"];2647[label="vwx79/False",fontsize=10,color="white",style="solid",shape="box"];1431 -> 2647[label="",style="solid", color="burlywood", weight=9]; 2647 -> 1515[label="",style="solid", color="burlywood", weight=3]; 2648[label="vwx79/True",fontsize=10,color="white",style="solid",shape="box"];1431 -> 2648[label="",style="solid", color="burlywood", weight=9]; 2648 -> 1516[label="",style="solid", color="burlywood", weight=3]; 1434 -> 121[label="",style="dashed", color="red", weight=0]; 1434[label="vwx340 == vwx360",fontsize=16,color="magenta"];1434 -> 1517[label="",style="dashed", color="magenta", weight=3]; 1434 -> 1518[label="",style="dashed", color="magenta", weight=3]; 1433[label="compare2 vwx340 vwx360 vwx80",fontsize=16,color="burlywood",shape="triangle"];2649[label="vwx80/False",fontsize=10,color="white",style="solid",shape="box"];1433 -> 2649[label="",style="solid", color="burlywood", weight=9]; 2649 -> 1519[label="",style="solid", color="burlywood", weight=3]; 2650[label="vwx80/True",fontsize=10,color="white",style="solid",shape="box"];1433 -> 2650[label="",style="solid", color="burlywood", weight=9]; 2650 -> 1520[label="",style="solid", color="burlywood", weight=3]; 1435[label="EQ",fontsize=16,color="green",shape="box"];1436 -> 1317[label="",style="dashed", color="red", weight=0]; 1436[label="primCmpInt vwx3400 vwx3600",fontsize=16,color="magenta"];1436 -> 1521[label="",style="dashed", color="magenta", weight=3]; 1436 -> 1522[label="",style="dashed", color="magenta", weight=3]; 1437 -> 122[label="",style="dashed", color="red", weight=0]; 1437[label="vwx340 == vwx360",fontsize=16,color="magenta"];1437 -> 1523[label="",style="dashed", color="magenta", weight=3]; 1437 -> 1524[label="",style="dashed", color="magenta", weight=3]; 1438[label="vwx340",fontsize=16,color="green",shape="box"];1439[label="vwx360",fontsize=16,color="green",shape="box"];1441 -> 119[label="",style="dashed", color="red", weight=0]; 1441[label="vwx340 == vwx360",fontsize=16,color="magenta"];1441 -> 1525[label="",style="dashed", color="magenta", weight=3]; 1441 -> 1526[label="",style="dashed", color="magenta", weight=3]; 1440[label="compare2 vwx340 vwx360 vwx81",fontsize=16,color="burlywood",shape="triangle"];2651[label="vwx81/False",fontsize=10,color="white",style="solid",shape="box"];1440 -> 2651[label="",style="solid", color="burlywood", weight=9]; 2651 -> 1527[label="",style="solid", color="burlywood", weight=3]; 2652[label="vwx81/True",fontsize=10,color="white",style="solid",shape="box"];1440 -> 2652[label="",style="solid", color="burlywood", weight=9]; 2652 -> 1528[label="",style="solid", color="burlywood", weight=3]; 1442[label="primCmpChar (Char vwx3400) (Char vwx3600)",fontsize=16,color="black",shape="box"];1442 -> 1529[label="",style="solid", color="black", weight=3]; 1443[label="compare (vwx3400 * vwx3601) (vwx3600 * vwx3401)",fontsize=16,color="blue",shape="box"];2653[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1443 -> 2653[label="",style="solid", color="blue", weight=9]; 2653 -> 1530[label="",style="solid", color="blue", weight=3]; 2654[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1443 -> 2654[label="",style="solid", color="blue", weight=9]; 2654 -> 1531[label="",style="solid", color="blue", weight=3]; 1445 -> 125[label="",style="dashed", color="red", weight=0]; 1445[label="vwx340 == vwx360",fontsize=16,color="magenta"];1445 -> 1532[label="",style="dashed", color="magenta", weight=3]; 1445 -> 1533[label="",style="dashed", color="magenta", weight=3]; 1444[label="compare2 vwx340 vwx360 vwx82",fontsize=16,color="burlywood",shape="triangle"];2655[label="vwx82/False",fontsize=10,color="white",style="solid",shape="box"];1444 -> 2655[label="",style="solid", color="burlywood", weight=9]; 2655 -> 1534[label="",style="solid", color="burlywood", weight=3]; 2656[label="vwx82/True",fontsize=10,color="white",style="solid",shape="box"];1444 -> 2656[label="",style="solid", color="burlywood", weight=9]; 2656 -> 1535[label="",style="solid", color="burlywood", weight=3]; 1446 -> 1536[label="",style="dashed", color="red", weight=0]; 1446[label="primCompAux vwx3400 vwx3600 (compare vwx3401 vwx3601)",fontsize=16,color="magenta"];1446 -> 1537[label="",style="dashed", color="magenta", weight=3]; 1447[label="GT",fontsize=16,color="green",shape="box"];1448[label="LT",fontsize=16,color="green",shape="box"];1449[label="EQ",fontsize=16,color="green",shape="box"];1451 -> 118[label="",style="dashed", color="red", weight=0]; 1451[label="vwx340 == vwx360",fontsize=16,color="magenta"];1451 -> 1538[label="",style="dashed", color="magenta", weight=3]; 1451 -> 1539[label="",style="dashed", color="magenta", weight=3]; 1450[label="compare2 vwx340 vwx360 vwx83",fontsize=16,color="burlywood",shape="triangle"];2657[label="vwx83/False",fontsize=10,color="white",style="solid",shape="box"];1450 -> 2657[label="",style="solid", color="burlywood", weight=9]; 2657 -> 1540[label="",style="solid", color="burlywood", weight=3]; 2658[label="vwx83/True",fontsize=10,color="white",style="solid",shape="box"];1450 -> 2658[label="",style="solid", color="burlywood", weight=9]; 2658 -> 1541[label="",style="solid", color="burlywood", weight=3]; 1452[label="primCmpDouble (Double vwx3400 (Pos vwx34010)) vwx360",fontsize=16,color="burlywood",shape="box"];2659[label="vwx360/Double vwx3600 vwx3601",fontsize=10,color="white",style="solid",shape="box"];1452 -> 2659[label="",style="solid", color="burlywood", weight=9]; 2659 -> 1542[label="",style="solid", color="burlywood", weight=3]; 1453[label="primCmpDouble (Double vwx3400 (Neg vwx34010)) vwx360",fontsize=16,color="burlywood",shape="box"];2660[label="vwx360/Double vwx3600 vwx3601",fontsize=10,color="white",style="solid",shape="box"];1453 -> 2660[label="",style="solid", color="burlywood", weight=9]; 2660 -> 1543[label="",style="solid", color="burlywood", weight=3]; 1454[label="primCmpFloat (Float vwx3400 (Pos vwx34010)) vwx360",fontsize=16,color="burlywood",shape="box"];2661[label="vwx360/Float vwx3600 vwx3601",fontsize=10,color="white",style="solid",shape="box"];1454 -> 2661[label="",style="solid", color="burlywood", weight=9]; 2661 -> 1544[label="",style="solid", color="burlywood", weight=3]; 1455[label="primCmpFloat (Float vwx3400 (Neg vwx34010)) vwx360",fontsize=16,color="burlywood",shape="box"];2662[label="vwx360/Float vwx3600 vwx3601",fontsize=10,color="white",style="solid",shape="box"];1455 -> 2662[label="",style="solid", color="burlywood", weight=9]; 2662 -> 1545[label="",style="solid", color="burlywood", weight=3]; 1456 -> 119[label="",style="dashed", color="red", weight=0]; 1456[label="vwx78 == GT",fontsize=16,color="magenta"];1456 -> 1546[label="",style="dashed", color="magenta", weight=3]; 1456 -> 1547[label="",style="dashed", color="magenta", weight=3]; 1457 -> 1204[label="",style="dashed", color="red", weight=0]; 1457[label="vwx3410 <= vwx3610",fontsize=16,color="magenta"];1457 -> 1548[label="",style="dashed", color="magenta", weight=3]; 1457 -> 1549[label="",style="dashed", color="magenta", weight=3]; 1458 -> 1205[label="",style="dashed", color="red", weight=0]; 1458[label="vwx3410 <= vwx3610",fontsize=16,color="magenta"];1458 -> 1550[label="",style="dashed", color="magenta", weight=3]; 1458 -> 1551[label="",style="dashed", color="magenta", weight=3]; 1459 -> 1206[label="",style="dashed", color="red", weight=0]; 1459[label="vwx3410 <= vwx3610",fontsize=16,color="magenta"];1459 -> 1552[label="",style="dashed", color="magenta", weight=3]; 1459 -> 1553[label="",style="dashed", color="magenta", weight=3]; 1460 -> 1207[label="",style="dashed", color="red", weight=0]; 1460[label="vwx3410 <= vwx3610",fontsize=16,color="magenta"];1460 -> 1554[label="",style="dashed", color="magenta", weight=3]; 1460 -> 1555[label="",style="dashed", color="magenta", weight=3]; 1461 -> 1208[label="",style="dashed", color="red", weight=0]; 1461[label="vwx3410 <= vwx3610",fontsize=16,color="magenta"];1461 -> 1556[label="",style="dashed", color="magenta", weight=3]; 1461 -> 1557[label="",style="dashed", color="magenta", weight=3]; 1462 -> 1209[label="",style="dashed", color="red", weight=0]; 1462[label="vwx3410 <= vwx3610",fontsize=16,color="magenta"];1462 -> 1558[label="",style="dashed", color="magenta", weight=3]; 1462 -> 1559[label="",style="dashed", color="magenta", weight=3]; 1463 -> 1210[label="",style="dashed", color="red", weight=0]; 1463[label="vwx3410 <= vwx3610",fontsize=16,color="magenta"];1463 -> 1560[label="",style="dashed", color="magenta", weight=3]; 1463 -> 1561[label="",style="dashed", color="magenta", weight=3]; 1464 -> 1211[label="",style="dashed", color="red", weight=0]; 1464[label="vwx3410 <= vwx3610",fontsize=16,color="magenta"];1464 -> 1562[label="",style="dashed", color="magenta", weight=3]; 1464 -> 1563[label="",style="dashed", color="magenta", weight=3]; 1465 -> 1212[label="",style="dashed", color="red", weight=0]; 1465[label="vwx3410 <= vwx3610",fontsize=16,color="magenta"];1465 -> 1564[label="",style="dashed", color="magenta", weight=3]; 1465 -> 1565[label="",style="dashed", color="magenta", weight=3]; 1466 -> 1213[label="",style="dashed", color="red", weight=0]; 1466[label="vwx3410 <= vwx3610",fontsize=16,color="magenta"];1466 -> 1566[label="",style="dashed", color="magenta", weight=3]; 1466 -> 1567[label="",style="dashed", color="magenta", weight=3]; 1467 -> 1214[label="",style="dashed", color="red", weight=0]; 1467[label="vwx3410 <= vwx3610",fontsize=16,color="magenta"];1467 -> 1568[label="",style="dashed", color="magenta", weight=3]; 1467 -> 1569[label="",style="dashed", color="magenta", weight=3]; 1468 -> 1215[label="",style="dashed", color="red", weight=0]; 1468[label="vwx3410 <= vwx3610",fontsize=16,color="magenta"];1468 -> 1570[label="",style="dashed", color="magenta", weight=3]; 1468 -> 1571[label="",style="dashed", color="magenta", weight=3]; 1469 -> 1216[label="",style="dashed", color="red", weight=0]; 1469[label="vwx3410 <= vwx3610",fontsize=16,color="magenta"];1469 -> 1572[label="",style="dashed", color="magenta", weight=3]; 1469 -> 1573[label="",style="dashed", color="magenta", weight=3]; 1470 -> 1217[label="",style="dashed", color="red", weight=0]; 1470[label="vwx3410 <= vwx3610",fontsize=16,color="magenta"];1470 -> 1574[label="",style="dashed", color="magenta", weight=3]; 1470 -> 1575[label="",style="dashed", color="magenta", weight=3]; 1471 -> 1204[label="",style="dashed", color="red", weight=0]; 1471[label="vwx3410 <= vwx3610",fontsize=16,color="magenta"];1471 -> 1576[label="",style="dashed", color="magenta", weight=3]; 1471 -> 1577[label="",style="dashed", color="magenta", weight=3]; 1472 -> 1205[label="",style="dashed", color="red", weight=0]; 1472[label="vwx3410 <= vwx3610",fontsize=16,color="magenta"];1472 -> 1578[label="",style="dashed", color="magenta", weight=3]; 1472 -> 1579[label="",style="dashed", color="magenta", weight=3]; 1473 -> 1206[label="",style="dashed", color="red", weight=0]; 1473[label="vwx3410 <= vwx3610",fontsize=16,color="magenta"];1473 -> 1580[label="",style="dashed", color="magenta", weight=3]; 1473 -> 1581[label="",style="dashed", color="magenta", weight=3]; 1474 -> 1207[label="",style="dashed", color="red", weight=0]; 1474[label="vwx3410 <= vwx3610",fontsize=16,color="magenta"];1474 -> 1582[label="",style="dashed", color="magenta", weight=3]; 1474 -> 1583[label="",style="dashed", color="magenta", weight=3]; 1475 -> 1208[label="",style="dashed", color="red", weight=0]; 1475[label="vwx3410 <= vwx3610",fontsize=16,color="magenta"];1475 -> 1584[label="",style="dashed", color="magenta", weight=3]; 1475 -> 1585[label="",style="dashed", color="magenta", weight=3]; 1476 -> 1209[label="",style="dashed", color="red", weight=0]; 1476[label="vwx3410 <= vwx3610",fontsize=16,color="magenta"];1476 -> 1586[label="",style="dashed", color="magenta", weight=3]; 1476 -> 1587[label="",style="dashed", color="magenta", weight=3]; 1477 -> 1210[label="",style="dashed", color="red", weight=0]; 1477[label="vwx3410 <= vwx3610",fontsize=16,color="magenta"];1477 -> 1588[label="",style="dashed", color="magenta", weight=3]; 1477 -> 1589[label="",style="dashed", color="magenta", weight=3]; 1478 -> 1211[label="",style="dashed", color="red", weight=0]; 1478[label="vwx3410 <= vwx3610",fontsize=16,color="magenta"];1478 -> 1590[label="",style="dashed", color="magenta", weight=3]; 1478 -> 1591[label="",style="dashed", color="magenta", weight=3]; 1479 -> 1212[label="",style="dashed", color="red", weight=0]; 1479[label="vwx3410 <= vwx3610",fontsize=16,color="magenta"];1479 -> 1592[label="",style="dashed", color="magenta", weight=3]; 1479 -> 1593[label="",style="dashed", color="magenta", weight=3]; 1480 -> 1213[label="",style="dashed", color="red", weight=0]; 1480[label="vwx3410 <= vwx3610",fontsize=16,color="magenta"];1480 -> 1594[label="",style="dashed", color="magenta", weight=3]; 1480 -> 1595[label="",style="dashed", color="magenta", weight=3]; 1481 -> 1214[label="",style="dashed", color="red", weight=0]; 1481[label="vwx3410 <= vwx3610",fontsize=16,color="magenta"];1481 -> 1596[label="",style="dashed", color="magenta", weight=3]; 1481 -> 1597[label="",style="dashed", color="magenta", weight=3]; 1482 -> 1215[label="",style="dashed", color="red", weight=0]; 1482[label="vwx3410 <= vwx3610",fontsize=16,color="magenta"];1482 -> 1598[label="",style="dashed", color="magenta", weight=3]; 1482 -> 1599[label="",style="dashed", color="magenta", weight=3]; 1483 -> 1216[label="",style="dashed", color="red", weight=0]; 1483[label="vwx3410 <= vwx3610",fontsize=16,color="magenta"];1483 -> 1600[label="",style="dashed", color="magenta", weight=3]; 1483 -> 1601[label="",style="dashed", color="magenta", weight=3]; 1484 -> 1217[label="",style="dashed", color="red", weight=0]; 1484[label="vwx3410 <= vwx3610",fontsize=16,color="magenta"];1484 -> 1602[label="",style="dashed", color="magenta", weight=3]; 1484 -> 1603[label="",style="dashed", color="magenta", weight=3]; 1607[label="vwx3410 < vwx3610",fontsize=16,color="blue",shape="box"];2663[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1607 -> 2663[label="",style="solid", color="blue", weight=9]; 2663 -> 1613[label="",style="solid", color="blue", weight=3]; 2664[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1607 -> 2664[label="",style="solid", color="blue", weight=9]; 2664 -> 1614[label="",style="solid", color="blue", weight=3]; 2665[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1607 -> 2665[label="",style="solid", color="blue", weight=9]; 2665 -> 1615[label="",style="solid", color="blue", weight=3]; 2666[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1607 -> 2666[label="",style="solid", color="blue", weight=9]; 2666 -> 1616[label="",style="solid", color="blue", weight=3]; 2667[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1607 -> 2667[label="",style="solid", color="blue", weight=9]; 2667 -> 1617[label="",style="solid", color="blue", weight=3]; 2668[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1607 -> 2668[label="",style="solid", color="blue", weight=9]; 2668 -> 1618[label="",style="solid", color="blue", weight=3]; 2669[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1607 -> 2669[label="",style="solid", color="blue", weight=9]; 2669 -> 1619[label="",style="solid", color="blue", weight=3]; 2670[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1607 -> 2670[label="",style="solid", color="blue", weight=9]; 2670 -> 1620[label="",style="solid", color="blue", weight=3]; 2671[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1607 -> 2671[label="",style="solid", color="blue", weight=9]; 2671 -> 1621[label="",style="solid", color="blue", weight=3]; 2672[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1607 -> 2672[label="",style="solid", color="blue", weight=9]; 2672 -> 1622[label="",style="solid", color="blue", weight=3]; 2673[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1607 -> 2673[label="",style="solid", color="blue", weight=9]; 2673 -> 1623[label="",style="solid", color="blue", weight=3]; 2674[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1607 -> 2674[label="",style="solid", color="blue", weight=9]; 2674 -> 1624[label="",style="solid", color="blue", weight=3]; 2675[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1607 -> 2675[label="",style="solid", color="blue", weight=9]; 2675 -> 1625[label="",style="solid", color="blue", weight=3]; 2676[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1607 -> 2676[label="",style="solid", color="blue", weight=9]; 2676 -> 1626[label="",style="solid", color="blue", weight=3]; 1608 -> 396[label="",style="dashed", color="red", weight=0]; 1608[label="vwx3410 == vwx3610 && vwx3411 <= vwx3611",fontsize=16,color="magenta"];1608 -> 1627[label="",style="dashed", color="magenta", weight=3]; 1608 -> 1628[label="",style="dashed", color="magenta", weight=3]; 1606[label="vwx89 || vwx90",fontsize=16,color="burlywood",shape="triangle"];2677[label="vwx89/False",fontsize=10,color="white",style="solid",shape="box"];1606 -> 2677[label="",style="solid", color="burlywood", weight=9]; 2677 -> 1629[label="",style="solid", color="burlywood", weight=3]; 2678[label="vwx89/True",fontsize=10,color="white",style="solid",shape="box"];1606 -> 2678[label="",style="solid", color="burlywood", weight=9]; 2678 -> 1630[label="",style="solid", color="burlywood", weight=3]; 1609[label="vwx3410 < vwx3610",fontsize=16,color="blue",shape="box"];2679[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1609 -> 2679[label="",style="solid", color="blue", weight=9]; 2679 -> 1631[label="",style="solid", color="blue", weight=3]; 2680[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1609 -> 2680[label="",style="solid", color="blue", weight=9]; 2680 -> 1632[label="",style="solid", color="blue", weight=3]; 2681[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1609 -> 2681[label="",style="solid", color="blue", weight=9]; 2681 -> 1633[label="",style="solid", color="blue", weight=3]; 2682[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1609 -> 2682[label="",style="solid", color="blue", weight=9]; 2682 -> 1634[label="",style="solid", color="blue", weight=3]; 2683[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1609 -> 2683[label="",style="solid", color="blue", weight=9]; 2683 -> 1635[label="",style="solid", color="blue", weight=3]; 2684[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1609 -> 2684[label="",style="solid", color="blue", weight=9]; 2684 -> 1636[label="",style="solid", color="blue", weight=3]; 2685[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1609 -> 2685[label="",style="solid", color="blue", weight=9]; 2685 -> 1637[label="",style="solid", color="blue", weight=3]; 2686[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1609 -> 2686[label="",style="solid", color="blue", weight=9]; 2686 -> 1638[label="",style="solid", color="blue", weight=3]; 2687[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1609 -> 2687[label="",style="solid", color="blue", weight=9]; 2687 -> 1639[label="",style="solid", color="blue", weight=3]; 2688[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1609 -> 2688[label="",style="solid", color="blue", weight=9]; 2688 -> 1640[label="",style="solid", color="blue", weight=3]; 2689[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1609 -> 2689[label="",style="solid", color="blue", weight=9]; 2689 -> 1641[label="",style="solid", color="blue", weight=3]; 2690[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1609 -> 2690[label="",style="solid", color="blue", weight=9]; 2690 -> 1642[label="",style="solid", color="blue", weight=3]; 2691[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1609 -> 2691[label="",style="solid", color="blue", weight=9]; 2691 -> 1643[label="",style="solid", color="blue", weight=3]; 2692[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1609 -> 2692[label="",style="solid", color="blue", weight=9]; 2692 -> 1644[label="",style="solid", color="blue", weight=3]; 1610 -> 396[label="",style="dashed", color="red", weight=0]; 1610[label="vwx3410 == vwx3610 && (vwx3411 < vwx3611 || vwx3411 == vwx3611 && vwx3412 <= vwx3612)",fontsize=16,color="magenta"];1610 -> 1645[label="",style="dashed", color="magenta", weight=3]; 1610 -> 1646[label="",style="dashed", color="magenta", weight=3]; 1490 -> 1204[label="",style="dashed", color="red", weight=0]; 1490[label="vwx3410 <= vwx3610",fontsize=16,color="magenta"];1490 -> 1647[label="",style="dashed", color="magenta", weight=3]; 1490 -> 1648[label="",style="dashed", color="magenta", weight=3]; 1491 -> 1205[label="",style="dashed", color="red", weight=0]; 1491[label="vwx3410 <= vwx3610",fontsize=16,color="magenta"];1491 -> 1649[label="",style="dashed", color="magenta", weight=3]; 1491 -> 1650[label="",style="dashed", color="magenta", weight=3]; 1492 -> 1206[label="",style="dashed", color="red", weight=0]; 1492[label="vwx3410 <= vwx3610",fontsize=16,color="magenta"];1492 -> 1651[label="",style="dashed", color="magenta", weight=3]; 1492 -> 1652[label="",style="dashed", color="magenta", weight=3]; 1493 -> 1207[label="",style="dashed", color="red", weight=0]; 1493[label="vwx3410 <= vwx3610",fontsize=16,color="magenta"];1493 -> 1653[label="",style="dashed", color="magenta", weight=3]; 1493 -> 1654[label="",style="dashed", color="magenta", weight=3]; 1494 -> 1208[label="",style="dashed", color="red", weight=0]; 1494[label="vwx3410 <= vwx3610",fontsize=16,color="magenta"];1494 -> 1655[label="",style="dashed", color="magenta", weight=3]; 1494 -> 1656[label="",style="dashed", color="magenta", weight=3]; 1495 -> 1209[label="",style="dashed", color="red", weight=0]; 1495[label="vwx3410 <= vwx3610",fontsize=16,color="magenta"];1495 -> 1657[label="",style="dashed", color="magenta", weight=3]; 1495 -> 1658[label="",style="dashed", color="magenta", weight=3]; 1496 -> 1210[label="",style="dashed", color="red", weight=0]; 1496[label="vwx3410 <= vwx3610",fontsize=16,color="magenta"];1496 -> 1659[label="",style="dashed", color="magenta", weight=3]; 1496 -> 1660[label="",style="dashed", color="magenta", weight=3]; 1497 -> 1211[label="",style="dashed", color="red", weight=0]; 1497[label="vwx3410 <= vwx3610",fontsize=16,color="magenta"];1497 -> 1661[label="",style="dashed", color="magenta", weight=3]; 1497 -> 1662[label="",style="dashed", color="magenta", weight=3]; 1498 -> 1212[label="",style="dashed", color="red", weight=0]; 1498[label="vwx3410 <= vwx3610",fontsize=16,color="magenta"];1498 -> 1663[label="",style="dashed", color="magenta", weight=3]; 1498 -> 1664[label="",style="dashed", color="magenta", weight=3]; 1499 -> 1213[label="",style="dashed", color="red", weight=0]; 1499[label="vwx3410 <= vwx3610",fontsize=16,color="magenta"];1499 -> 1665[label="",style="dashed", color="magenta", weight=3]; 1499 -> 1666[label="",style="dashed", color="magenta", weight=3]; 1500 -> 1214[label="",style="dashed", color="red", weight=0]; 1500[label="vwx3410 <= vwx3610",fontsize=16,color="magenta"];1500 -> 1667[label="",style="dashed", color="magenta", weight=3]; 1500 -> 1668[label="",style="dashed", color="magenta", weight=3]; 1501 -> 1215[label="",style="dashed", color="red", weight=0]; 1501[label="vwx3410 <= vwx3610",fontsize=16,color="magenta"];1501 -> 1669[label="",style="dashed", color="magenta", weight=3]; 1501 -> 1670[label="",style="dashed", color="magenta", weight=3]; 1502 -> 1216[label="",style="dashed", color="red", weight=0]; 1502[label="vwx3410 <= vwx3610",fontsize=16,color="magenta"];1502 -> 1671[label="",style="dashed", color="magenta", weight=3]; 1502 -> 1672[label="",style="dashed", color="magenta", weight=3]; 1503 -> 1217[label="",style="dashed", color="red", weight=0]; 1503[label="vwx3410 <= vwx3610",fontsize=16,color="magenta"];1503 -> 1673[label="",style="dashed", color="magenta", weight=3]; 1503 -> 1674[label="",style="dashed", color="magenta", weight=3]; 1504[label="GT",fontsize=16,color="green",shape="box"];1144[label="Succ (Succ (primPlusNat vwx630 vwx40000))",fontsize=16,color="green",shape="box"];1144 -> 1147[label="",style="dashed", color="green", weight=3]; 1145[label="Succ vwx40000",fontsize=16,color="green",shape="box"];1505[label="primCmpInt (Pos (Succ vwx34000)) (Pos vwx3600)",fontsize=16,color="black",shape="box"];1505 -> 1675[label="",style="solid", color="black", weight=3]; 1506[label="primCmpInt (Pos (Succ vwx34000)) (Neg vwx3600)",fontsize=16,color="black",shape="box"];1506 -> 1676[label="",style="solid", color="black", weight=3]; 1507[label="primCmpInt (Pos Zero) (Pos vwx3600)",fontsize=16,color="burlywood",shape="box"];2693[label="vwx3600/Succ vwx36000",fontsize=10,color="white",style="solid",shape="box"];1507 -> 2693[label="",style="solid", color="burlywood", weight=9]; 2693 -> 1677[label="",style="solid", color="burlywood", weight=3]; 2694[label="vwx3600/Zero",fontsize=10,color="white",style="solid",shape="box"];1507 -> 2694[label="",style="solid", color="burlywood", weight=9]; 2694 -> 1678[label="",style="solid", color="burlywood", weight=3]; 1508[label="primCmpInt (Pos Zero) (Neg vwx3600)",fontsize=16,color="burlywood",shape="box"];2695[label="vwx3600/Succ vwx36000",fontsize=10,color="white",style="solid",shape="box"];1508 -> 2695[label="",style="solid", color="burlywood", weight=9]; 2695 -> 1679[label="",style="solid", color="burlywood", weight=3]; 2696[label="vwx3600/Zero",fontsize=10,color="white",style="solid",shape="box"];1508 -> 2696[label="",style="solid", color="burlywood", weight=9]; 2696 -> 1680[label="",style="solid", color="burlywood", weight=3]; 1509[label="primCmpInt (Neg (Succ vwx34000)) (Pos vwx3600)",fontsize=16,color="black",shape="box"];1509 -> 1681[label="",style="solid", color="black", weight=3]; 1510[label="primCmpInt (Neg (Succ vwx34000)) (Neg vwx3600)",fontsize=16,color="black",shape="box"];1510 -> 1682[label="",style="solid", color="black", weight=3]; 1511[label="primCmpInt (Neg Zero) (Pos vwx3600)",fontsize=16,color="burlywood",shape="box"];2697[label="vwx3600/Succ vwx36000",fontsize=10,color="white",style="solid",shape="box"];1511 -> 2697[label="",style="solid", color="burlywood", weight=9]; 2697 -> 1683[label="",style="solid", color="burlywood", weight=3]; 2698[label="vwx3600/Zero",fontsize=10,color="white",style="solid",shape="box"];1511 -> 2698[label="",style="solid", color="burlywood", weight=9]; 2698 -> 1684[label="",style="solid", color="burlywood", weight=3]; 1512[label="primCmpInt (Neg Zero) (Neg vwx3600)",fontsize=16,color="burlywood",shape="box"];2699[label="vwx3600/Succ vwx36000",fontsize=10,color="white",style="solid",shape="box"];1512 -> 2699[label="",style="solid", color="burlywood", weight=9]; 2699 -> 1685[label="",style="solid", color="burlywood", weight=3]; 2700[label="vwx3600/Zero",fontsize=10,color="white",style="solid",shape="box"];1512 -> 2700[label="",style="solid", color="burlywood", weight=9]; 2700 -> 1686[label="",style="solid", color="burlywood", weight=3]; 1513[label="vwx360",fontsize=16,color="green",shape="box"];1514[label="vwx340",fontsize=16,color="green",shape="box"];1515[label="compare2 vwx340 vwx360 False",fontsize=16,color="black",shape="box"];1515 -> 1687[label="",style="solid", color="black", weight=3]; 1516[label="compare2 vwx340 vwx360 True",fontsize=16,color="black",shape="box"];1516 -> 1688[label="",style="solid", color="black", weight=3]; 1517[label="vwx360",fontsize=16,color="green",shape="box"];1518[label="vwx340",fontsize=16,color="green",shape="box"];1519[label="compare2 vwx340 vwx360 False",fontsize=16,color="black",shape="box"];1519 -> 1689[label="",style="solid", color="black", weight=3]; 1520[label="compare2 vwx340 vwx360 True",fontsize=16,color="black",shape="box"];1520 -> 1690[label="",style="solid", color="black", weight=3]; 1521[label="vwx3400",fontsize=16,color="green",shape="box"];1522[label="vwx3600",fontsize=16,color="green",shape="box"];1523[label="vwx360",fontsize=16,color="green",shape="box"];1524[label="vwx340",fontsize=16,color="green",shape="box"];1525[label="vwx360",fontsize=16,color="green",shape="box"];1526[label="vwx340",fontsize=16,color="green",shape="box"];1527[label="compare2 vwx340 vwx360 False",fontsize=16,color="black",shape="box"];1527 -> 1691[label="",style="solid", color="black", weight=3]; 1528[label="compare2 vwx340 vwx360 True",fontsize=16,color="black",shape="box"];1528 -> 1692[label="",style="solid", color="black", weight=3]; 1529[label="primCmpNat vwx3400 vwx3600",fontsize=16,color="burlywood",shape="triangle"];2701[label="vwx3400/Succ vwx34000",fontsize=10,color="white",style="solid",shape="box"];1529 -> 2701[label="",style="solid", color="burlywood", weight=9]; 2701 -> 1693[label="",style="solid", color="burlywood", weight=3]; 2702[label="vwx3400/Zero",fontsize=10,color="white",style="solid",shape="box"];1529 -> 2702[label="",style="solid", color="burlywood", weight=9]; 2702 -> 1694[label="",style="solid", color="burlywood", weight=3]; 1530 -> 1239[label="",style="dashed", color="red", weight=0]; 1530[label="compare (vwx3400 * vwx3601) (vwx3600 * vwx3401)",fontsize=16,color="magenta"];1530 -> 1695[label="",style="dashed", color="magenta", weight=3]; 1530 -> 1696[label="",style="dashed", color="magenta", weight=3]; 1531 -> 1247[label="",style="dashed", color="red", weight=0]; 1531[label="compare (vwx3400 * vwx3601) (vwx3600 * vwx3401)",fontsize=16,color="magenta"];1531 -> 1697[label="",style="dashed", color="magenta", weight=3]; 1531 -> 1698[label="",style="dashed", color="magenta", weight=3]; 1532[label="vwx360",fontsize=16,color="green",shape="box"];1533[label="vwx340",fontsize=16,color="green",shape="box"];1534[label="compare2 vwx340 vwx360 False",fontsize=16,color="black",shape="box"];1534 -> 1699[label="",style="solid", color="black", weight=3]; 1535[label="compare2 vwx340 vwx360 True",fontsize=16,color="black",shape="box"];1535 -> 1700[label="",style="solid", color="black", weight=3]; 1537 -> 1259[label="",style="dashed", color="red", weight=0]; 1537[label="compare vwx3401 vwx3601",fontsize=16,color="magenta"];1537 -> 1701[label="",style="dashed", color="magenta", weight=3]; 1537 -> 1702[label="",style="dashed", color="magenta", weight=3]; 1536[label="primCompAux vwx3400 vwx3600 vwx85",fontsize=16,color="black",shape="triangle"];1536 -> 1703[label="",style="solid", color="black", weight=3]; 1538[label="vwx360",fontsize=16,color="green",shape="box"];1539[label="vwx340",fontsize=16,color="green",shape="box"];1540[label="compare2 vwx340 vwx360 False",fontsize=16,color="black",shape="box"];1540 -> 1704[label="",style="solid", color="black", weight=3]; 1541[label="compare2 vwx340 vwx360 True",fontsize=16,color="black",shape="box"];1541 -> 1705[label="",style="solid", color="black", weight=3]; 1542[label="primCmpDouble (Double vwx3400 (Pos vwx34010)) (Double vwx3600 vwx3601)",fontsize=16,color="burlywood",shape="box"];2703[label="vwx3601/Pos vwx36010",fontsize=10,color="white",style="solid",shape="box"];1542 -> 2703[label="",style="solid", color="burlywood", weight=9]; 2703 -> 1706[label="",style="solid", color="burlywood", weight=3]; 2704[label="vwx3601/Neg vwx36010",fontsize=10,color="white",style="solid",shape="box"];1542 -> 2704[label="",style="solid", color="burlywood", weight=9]; 2704 -> 1707[label="",style="solid", color="burlywood", weight=3]; 1543[label="primCmpDouble (Double vwx3400 (Neg vwx34010)) (Double vwx3600 vwx3601)",fontsize=16,color="burlywood",shape="box"];2705[label="vwx3601/Pos vwx36010",fontsize=10,color="white",style="solid",shape="box"];1543 -> 2705[label="",style="solid", color="burlywood", weight=9]; 2705 -> 1708[label="",style="solid", color="burlywood", weight=3]; 2706[label="vwx3601/Neg vwx36010",fontsize=10,color="white",style="solid",shape="box"];1543 -> 2706[label="",style="solid", color="burlywood", weight=9]; 2706 -> 1709[label="",style="solid", color="burlywood", weight=3]; 1544[label="primCmpFloat (Float vwx3400 (Pos vwx34010)) (Float vwx3600 vwx3601)",fontsize=16,color="burlywood",shape="box"];2707[label="vwx3601/Pos vwx36010",fontsize=10,color="white",style="solid",shape="box"];1544 -> 2707[label="",style="solid", color="burlywood", weight=9]; 2707 -> 1710[label="",style="solid", color="burlywood", weight=3]; 2708[label="vwx3601/Neg vwx36010",fontsize=10,color="white",style="solid",shape="box"];1544 -> 2708[label="",style="solid", color="burlywood", weight=9]; 2708 -> 1711[label="",style="solid", color="burlywood", weight=3]; 1545[label="primCmpFloat (Float vwx3400 (Neg vwx34010)) (Float vwx3600 vwx3601)",fontsize=16,color="burlywood",shape="box"];2709[label="vwx3601/Pos vwx36010",fontsize=10,color="white",style="solid",shape="box"];1545 -> 2709[label="",style="solid", color="burlywood", weight=9]; 2709 -> 1712[label="",style="solid", color="burlywood", weight=3]; 2710[label="vwx3601/Neg vwx36010",fontsize=10,color="white",style="solid",shape="box"];1545 -> 2710[label="",style="solid", color="burlywood", weight=9]; 2710 -> 1713[label="",style="solid", color="burlywood", weight=3]; 1546[label="GT",fontsize=16,color="green",shape="box"];1547[label="vwx78",fontsize=16,color="green",shape="box"];1548[label="vwx3410",fontsize=16,color="green",shape="box"];1549[label="vwx3610",fontsize=16,color="green",shape="box"];1550[label="vwx3410",fontsize=16,color="green",shape="box"];1551[label="vwx3610",fontsize=16,color="green",shape="box"];1552[label="vwx3410",fontsize=16,color="green",shape="box"];1553[label="vwx3610",fontsize=16,color="green",shape="box"];1554[label="vwx3410",fontsize=16,color="green",shape="box"];1555[label="vwx3610",fontsize=16,color="green",shape="box"];1556[label="vwx3410",fontsize=16,color="green",shape="box"];1557[label="vwx3610",fontsize=16,color="green",shape="box"];1558[label="vwx3410",fontsize=16,color="green",shape="box"];1559[label="vwx3610",fontsize=16,color="green",shape="box"];1560[label="vwx3410",fontsize=16,color="green",shape="box"];1561[label="vwx3610",fontsize=16,color="green",shape="box"];1562[label="vwx3410",fontsize=16,color="green",shape="box"];1563[label="vwx3610",fontsize=16,color="green",shape="box"];1564[label="vwx3410",fontsize=16,color="green",shape="box"];1565[label="vwx3610",fontsize=16,color="green",shape="box"];1566[label="vwx3410",fontsize=16,color="green",shape="box"];1567[label="vwx3610",fontsize=16,color="green",shape="box"];1568[label="vwx3410",fontsize=16,color="green",shape="box"];1569[label="vwx3610",fontsize=16,color="green",shape="box"];1570[label="vwx3410",fontsize=16,color="green",shape="box"];1571[label="vwx3610",fontsize=16,color="green",shape="box"];1572[label="vwx3410",fontsize=16,color="green",shape="box"];1573[label="vwx3610",fontsize=16,color="green",shape="box"];1574[label="vwx3410",fontsize=16,color="green",shape="box"];1575[label="vwx3610",fontsize=16,color="green",shape="box"];1576[label="vwx3410",fontsize=16,color="green",shape="box"];1577[label="vwx3610",fontsize=16,color="green",shape="box"];1578[label="vwx3410",fontsize=16,color="green",shape="box"];1579[label="vwx3610",fontsize=16,color="green",shape="box"];1580[label="vwx3410",fontsize=16,color="green",shape="box"];1581[label="vwx3610",fontsize=16,color="green",shape="box"];1582[label="vwx3410",fontsize=16,color="green",shape="box"];1583[label="vwx3610",fontsize=16,color="green",shape="box"];1584[label="vwx3410",fontsize=16,color="green",shape="box"];1585[label="vwx3610",fontsize=16,color="green",shape="box"];1586[label="vwx3410",fontsize=16,color="green",shape="box"];1587[label="vwx3610",fontsize=16,color="green",shape="box"];1588[label="vwx3410",fontsize=16,color="green",shape="box"];1589[label="vwx3610",fontsize=16,color="green",shape="box"];1590[label="vwx3410",fontsize=16,color="green",shape="box"];1591[label="vwx3610",fontsize=16,color="green",shape="box"];1592[label="vwx3410",fontsize=16,color="green",shape="box"];1593[label="vwx3610",fontsize=16,color="green",shape="box"];1594[label="vwx3410",fontsize=16,color="green",shape="box"];1595[label="vwx3610",fontsize=16,color="green",shape="box"];1596[label="vwx3410",fontsize=16,color="green",shape="box"];1597[label="vwx3610",fontsize=16,color="green",shape="box"];1598[label="vwx3410",fontsize=16,color="green",shape="box"];1599[label="vwx3610",fontsize=16,color="green",shape="box"];1600[label="vwx3410",fontsize=16,color="green",shape="box"];1601[label="vwx3610",fontsize=16,color="green",shape="box"];1602[label="vwx3410",fontsize=16,color="green",shape="box"];1603[label="vwx3610",fontsize=16,color="green",shape="box"];1613 -> 1168[label="",style="dashed", color="red", weight=0]; 1613[label="vwx3410 < vwx3610",fontsize=16,color="magenta"];1613 -> 1714[label="",style="dashed", color="magenta", weight=3]; 1613 -> 1715[label="",style="dashed", color="magenta", weight=3]; 1614 -> 1169[label="",style="dashed", color="red", weight=0]; 1614[label="vwx3410 < vwx3610",fontsize=16,color="magenta"];1614 -> 1716[label="",style="dashed", color="magenta", weight=3]; 1614 -> 1717[label="",style="dashed", color="magenta", weight=3]; 1615 -> 1170[label="",style="dashed", color="red", weight=0]; 1615[label="vwx3410 < vwx3610",fontsize=16,color="magenta"];1615 -> 1718[label="",style="dashed", color="magenta", weight=3]; 1615 -> 1719[label="",style="dashed", color="magenta", weight=3]; 1616 -> 1171[label="",style="dashed", color="red", weight=0]; 1616[label="vwx3410 < vwx3610",fontsize=16,color="magenta"];1616 -> 1720[label="",style="dashed", color="magenta", weight=3]; 1616 -> 1721[label="",style="dashed", color="magenta", weight=3]; 1617 -> 1172[label="",style="dashed", color="red", weight=0]; 1617[label="vwx3410 < vwx3610",fontsize=16,color="magenta"];1617 -> 1722[label="",style="dashed", color="magenta", weight=3]; 1617 -> 1723[label="",style="dashed", color="magenta", weight=3]; 1618 -> 1173[label="",style="dashed", color="red", weight=0]; 1618[label="vwx3410 < vwx3610",fontsize=16,color="magenta"];1618 -> 1724[label="",style="dashed", color="magenta", weight=3]; 1618 -> 1725[label="",style="dashed", color="magenta", weight=3]; 1619 -> 1174[label="",style="dashed", color="red", weight=0]; 1619[label="vwx3410 < vwx3610",fontsize=16,color="magenta"];1619 -> 1726[label="",style="dashed", color="magenta", weight=3]; 1619 -> 1727[label="",style="dashed", color="magenta", weight=3]; 1620 -> 1175[label="",style="dashed", color="red", weight=0]; 1620[label="vwx3410 < vwx3610",fontsize=16,color="magenta"];1620 -> 1728[label="",style="dashed", color="magenta", weight=3]; 1620 -> 1729[label="",style="dashed", color="magenta", weight=3]; 1621 -> 1176[label="",style="dashed", color="red", weight=0]; 1621[label="vwx3410 < vwx3610",fontsize=16,color="magenta"];1621 -> 1730[label="",style="dashed", color="magenta", weight=3]; 1621 -> 1731[label="",style="dashed", color="magenta", weight=3]; 1622 -> 1177[label="",style="dashed", color="red", weight=0]; 1622[label="vwx3410 < vwx3610",fontsize=16,color="magenta"];1622 -> 1732[label="",style="dashed", color="magenta", weight=3]; 1622 -> 1733[label="",style="dashed", color="magenta", weight=3]; 1623 -> 1178[label="",style="dashed", color="red", weight=0]; 1623[label="vwx3410 < vwx3610",fontsize=16,color="magenta"];1623 -> 1734[label="",style="dashed", color="magenta", weight=3]; 1623 -> 1735[label="",style="dashed", color="magenta", weight=3]; 1624 -> 1179[label="",style="dashed", color="red", weight=0]; 1624[label="vwx3410 < vwx3610",fontsize=16,color="magenta"];1624 -> 1736[label="",style="dashed", color="magenta", weight=3]; 1624 -> 1737[label="",style="dashed", color="magenta", weight=3]; 1625 -> 1180[label="",style="dashed", color="red", weight=0]; 1625[label="vwx3410 < vwx3610",fontsize=16,color="magenta"];1625 -> 1738[label="",style="dashed", color="magenta", weight=3]; 1625 -> 1739[label="",style="dashed", color="magenta", weight=3]; 1626 -> 1181[label="",style="dashed", color="red", weight=0]; 1626[label="vwx3410 < vwx3610",fontsize=16,color="magenta"];1626 -> 1740[label="",style="dashed", color="magenta", weight=3]; 1626 -> 1741[label="",style="dashed", color="magenta", weight=3]; 1627[label="vwx3411 <= vwx3611",fontsize=16,color="blue",shape="box"];2711[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1627 -> 2711[label="",style="solid", color="blue", weight=9]; 2711 -> 1742[label="",style="solid", color="blue", weight=3]; 2712[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1627 -> 2712[label="",style="solid", color="blue", weight=9]; 2712 -> 1743[label="",style="solid", color="blue", weight=3]; 2713[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1627 -> 2713[label="",style="solid", color="blue", weight=9]; 2713 -> 1744[label="",style="solid", color="blue", weight=3]; 2714[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1627 -> 2714[label="",style="solid", color="blue", weight=9]; 2714 -> 1745[label="",style="solid", color="blue", weight=3]; 2715[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1627 -> 2715[label="",style="solid", color="blue", weight=9]; 2715 -> 1746[label="",style="solid", color="blue", weight=3]; 2716[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1627 -> 2716[label="",style="solid", color="blue", weight=9]; 2716 -> 1747[label="",style="solid", color="blue", weight=3]; 2717[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1627 -> 2717[label="",style="solid", color="blue", weight=9]; 2717 -> 1748[label="",style="solid", color="blue", weight=3]; 2718[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1627 -> 2718[label="",style="solid", color="blue", weight=9]; 2718 -> 1749[label="",style="solid", color="blue", weight=3]; 2719[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1627 -> 2719[label="",style="solid", color="blue", weight=9]; 2719 -> 1750[label="",style="solid", color="blue", weight=3]; 2720[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1627 -> 2720[label="",style="solid", color="blue", weight=9]; 2720 -> 1751[label="",style="solid", color="blue", weight=3]; 2721[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1627 -> 2721[label="",style="solid", color="blue", weight=9]; 2721 -> 1752[label="",style="solid", color="blue", weight=3]; 2722[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1627 -> 2722[label="",style="solid", color="blue", weight=9]; 2722 -> 1753[label="",style="solid", color="blue", weight=3]; 2723[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1627 -> 2723[label="",style="solid", color="blue", weight=9]; 2723 -> 1754[label="",style="solid", color="blue", weight=3]; 2724[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1627 -> 2724[label="",style="solid", color="blue", weight=9]; 2724 -> 1755[label="",style="solid", color="blue", weight=3]; 1628[label="vwx3410 == vwx3610",fontsize=16,color="blue",shape="box"];2725[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1628 -> 2725[label="",style="solid", color="blue", weight=9]; 2725 -> 1756[label="",style="solid", color="blue", weight=3]; 2726[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1628 -> 2726[label="",style="solid", color="blue", weight=9]; 2726 -> 1757[label="",style="solid", color="blue", weight=3]; 2727[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1628 -> 2727[label="",style="solid", color="blue", weight=9]; 2727 -> 1758[label="",style="solid", color="blue", weight=3]; 2728[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1628 -> 2728[label="",style="solid", color="blue", weight=9]; 2728 -> 1759[label="",style="solid", color="blue", weight=3]; 2729[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1628 -> 2729[label="",style="solid", color="blue", weight=9]; 2729 -> 1760[label="",style="solid", color="blue", weight=3]; 2730[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1628 -> 2730[label="",style="solid", color="blue", weight=9]; 2730 -> 1761[label="",style="solid", color="blue", weight=3]; 2731[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1628 -> 2731[label="",style="solid", color="blue", weight=9]; 2731 -> 1762[label="",style="solid", color="blue", weight=3]; 2732[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1628 -> 2732[label="",style="solid", color="blue", weight=9]; 2732 -> 1763[label="",style="solid", color="blue", weight=3]; 2733[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1628 -> 2733[label="",style="solid", color="blue", weight=9]; 2733 -> 1764[label="",style="solid", color="blue", weight=3]; 2734[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1628 -> 2734[label="",style="solid", color="blue", weight=9]; 2734 -> 1765[label="",style="solid", color="blue", weight=3]; 2735[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1628 -> 2735[label="",style="solid", color="blue", weight=9]; 2735 -> 1766[label="",style="solid", color="blue", weight=3]; 2736[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1628 -> 2736[label="",style="solid", color="blue", weight=9]; 2736 -> 1767[label="",style="solid", color="blue", weight=3]; 2737[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1628 -> 2737[label="",style="solid", color="blue", weight=9]; 2737 -> 1768[label="",style="solid", color="blue", weight=3]; 2738[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1628 -> 2738[label="",style="solid", color="blue", weight=9]; 2738 -> 1769[label="",style="solid", color="blue", weight=3]; 1629[label="False || vwx90",fontsize=16,color="black",shape="box"];1629 -> 1770[label="",style="solid", color="black", weight=3]; 1630[label="True || vwx90",fontsize=16,color="black",shape="box"];1630 -> 1771[label="",style="solid", color="black", weight=3]; 1631 -> 1168[label="",style="dashed", color="red", weight=0]; 1631[label="vwx3410 < vwx3610",fontsize=16,color="magenta"];1631 -> 1772[label="",style="dashed", color="magenta", weight=3]; 1631 -> 1773[label="",style="dashed", color="magenta", weight=3]; 1632 -> 1169[label="",style="dashed", color="red", weight=0]; 1632[label="vwx3410 < vwx3610",fontsize=16,color="magenta"];1632 -> 1774[label="",style="dashed", color="magenta", weight=3]; 1632 -> 1775[label="",style="dashed", color="magenta", weight=3]; 1633 -> 1170[label="",style="dashed", color="red", weight=0]; 1633[label="vwx3410 < vwx3610",fontsize=16,color="magenta"];1633 -> 1776[label="",style="dashed", color="magenta", weight=3]; 1633 -> 1777[label="",style="dashed", color="magenta", weight=3]; 1634 -> 1171[label="",style="dashed", color="red", weight=0]; 1634[label="vwx3410 < vwx3610",fontsize=16,color="magenta"];1634 -> 1778[label="",style="dashed", color="magenta", weight=3]; 1634 -> 1779[label="",style="dashed", color="magenta", weight=3]; 1635 -> 1172[label="",style="dashed", color="red", weight=0]; 1635[label="vwx3410 < vwx3610",fontsize=16,color="magenta"];1635 -> 1780[label="",style="dashed", color="magenta", weight=3]; 1635 -> 1781[label="",style="dashed", color="magenta", weight=3]; 1636 -> 1173[label="",style="dashed", color="red", weight=0]; 1636[label="vwx3410 < vwx3610",fontsize=16,color="magenta"];1636 -> 1782[label="",style="dashed", color="magenta", weight=3]; 1636 -> 1783[label="",style="dashed", color="magenta", weight=3]; 1637 -> 1174[label="",style="dashed", color="red", weight=0]; 1637[label="vwx3410 < vwx3610",fontsize=16,color="magenta"];1637 -> 1784[label="",style="dashed", color="magenta", weight=3]; 1637 -> 1785[label="",style="dashed", color="magenta", weight=3]; 1638 -> 1175[label="",style="dashed", color="red", weight=0]; 1638[label="vwx3410 < vwx3610",fontsize=16,color="magenta"];1638 -> 1786[label="",style="dashed", color="magenta", weight=3]; 1638 -> 1787[label="",style="dashed", color="magenta", weight=3]; 1639 -> 1176[label="",style="dashed", color="red", weight=0]; 1639[label="vwx3410 < vwx3610",fontsize=16,color="magenta"];1639 -> 1788[label="",style="dashed", color="magenta", weight=3]; 1639 -> 1789[label="",style="dashed", color="magenta", weight=3]; 1640 -> 1177[label="",style="dashed", color="red", weight=0]; 1640[label="vwx3410 < vwx3610",fontsize=16,color="magenta"];1640 -> 1790[label="",style="dashed", color="magenta", weight=3]; 1640 -> 1791[label="",style="dashed", color="magenta", weight=3]; 1641 -> 1178[label="",style="dashed", color="red", weight=0]; 1641[label="vwx3410 < vwx3610",fontsize=16,color="magenta"];1641 -> 1792[label="",style="dashed", color="magenta", weight=3]; 1641 -> 1793[label="",style="dashed", color="magenta", weight=3]; 1642 -> 1179[label="",style="dashed", color="red", weight=0]; 1642[label="vwx3410 < vwx3610",fontsize=16,color="magenta"];1642 -> 1794[label="",style="dashed", color="magenta", weight=3]; 1642 -> 1795[label="",style="dashed", color="magenta", weight=3]; 1643 -> 1180[label="",style="dashed", color="red", weight=0]; 1643[label="vwx3410 < vwx3610",fontsize=16,color="magenta"];1643 -> 1796[label="",style="dashed", color="magenta", weight=3]; 1643 -> 1797[label="",style="dashed", color="magenta", weight=3]; 1644 -> 1181[label="",style="dashed", color="red", weight=0]; 1644[label="vwx3410 < vwx3610",fontsize=16,color="magenta"];1644 -> 1798[label="",style="dashed", color="magenta", weight=3]; 1644 -> 1799[label="",style="dashed", color="magenta", weight=3]; 1645 -> 1606[label="",style="dashed", color="red", weight=0]; 1645[label="vwx3411 < vwx3611 || vwx3411 == vwx3611 && vwx3412 <= vwx3612",fontsize=16,color="magenta"];1645 -> 1800[label="",style="dashed", color="magenta", weight=3]; 1645 -> 1801[label="",style="dashed", color="magenta", weight=3]; 1646[label="vwx3410 == vwx3610",fontsize=16,color="blue",shape="box"];2739[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1646 -> 2739[label="",style="solid", color="blue", weight=9]; 2739 -> 1802[label="",style="solid", color="blue", weight=3]; 2740[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1646 -> 2740[label="",style="solid", color="blue", weight=9]; 2740 -> 1803[label="",style="solid", color="blue", weight=3]; 2741[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1646 -> 2741[label="",style="solid", color="blue", weight=9]; 2741 -> 1804[label="",style="solid", color="blue", weight=3]; 2742[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1646 -> 2742[label="",style="solid", color="blue", weight=9]; 2742 -> 1805[label="",style="solid", color="blue", weight=3]; 2743[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1646 -> 2743[label="",style="solid", color="blue", weight=9]; 2743 -> 1806[label="",style="solid", color="blue", weight=3]; 2744[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1646 -> 2744[label="",style="solid", color="blue", weight=9]; 2744 -> 1807[label="",style="solid", color="blue", weight=3]; 2745[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1646 -> 2745[label="",style="solid", color="blue", weight=9]; 2745 -> 1808[label="",style="solid", color="blue", weight=3]; 2746[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1646 -> 2746[label="",style="solid", color="blue", weight=9]; 2746 -> 1809[label="",style="solid", color="blue", weight=3]; 2747[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1646 -> 2747[label="",style="solid", color="blue", weight=9]; 2747 -> 1810[label="",style="solid", color="blue", weight=3]; 2748[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1646 -> 2748[label="",style="solid", color="blue", weight=9]; 2748 -> 1811[label="",style="solid", color="blue", weight=3]; 2749[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1646 -> 2749[label="",style="solid", color="blue", weight=9]; 2749 -> 1812[label="",style="solid", color="blue", weight=3]; 2750[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1646 -> 2750[label="",style="solid", color="blue", weight=9]; 2750 -> 1813[label="",style="solid", color="blue", weight=3]; 2751[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1646 -> 2751[label="",style="solid", color="blue", weight=9]; 2751 -> 1814[label="",style="solid", color="blue", weight=3]; 2752[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1646 -> 2752[label="",style="solid", color="blue", weight=9]; 2752 -> 1815[label="",style="solid", color="blue", weight=3]; 1647[label="vwx3410",fontsize=16,color="green",shape="box"];1648[label="vwx3610",fontsize=16,color="green",shape="box"];1649[label="vwx3410",fontsize=16,color="green",shape="box"];1650[label="vwx3610",fontsize=16,color="green",shape="box"];1651[label="vwx3410",fontsize=16,color="green",shape="box"];1652[label="vwx3610",fontsize=16,color="green",shape="box"];1653[label="vwx3410",fontsize=16,color="green",shape="box"];1654[label="vwx3610",fontsize=16,color="green",shape="box"];1655[label="vwx3410",fontsize=16,color="green",shape="box"];1656[label="vwx3610",fontsize=16,color="green",shape="box"];1657[label="vwx3410",fontsize=16,color="green",shape="box"];1658[label="vwx3610",fontsize=16,color="green",shape="box"];1659[label="vwx3410",fontsize=16,color="green",shape="box"];1660[label="vwx3610",fontsize=16,color="green",shape="box"];1661[label="vwx3410",fontsize=16,color="green",shape="box"];1662[label="vwx3610",fontsize=16,color="green",shape="box"];1663[label="vwx3410",fontsize=16,color="green",shape="box"];1664[label="vwx3610",fontsize=16,color="green",shape="box"];1665[label="vwx3410",fontsize=16,color="green",shape="box"];1666[label="vwx3610",fontsize=16,color="green",shape="box"];1667[label="vwx3410",fontsize=16,color="green",shape="box"];1668[label="vwx3610",fontsize=16,color="green",shape="box"];1669[label="vwx3410",fontsize=16,color="green",shape="box"];1670[label="vwx3610",fontsize=16,color="green",shape="box"];1671[label="vwx3410",fontsize=16,color="green",shape="box"];1672[label="vwx3610",fontsize=16,color="green",shape="box"];1673[label="vwx3410",fontsize=16,color="green",shape="box"];1674[label="vwx3610",fontsize=16,color="green",shape="box"];1147[label="primPlusNat vwx630 vwx40000",fontsize=16,color="burlywood",shape="triangle"];2753[label="vwx630/Succ vwx6300",fontsize=10,color="white",style="solid",shape="box"];1147 -> 2753[label="",style="solid", color="burlywood", weight=9]; 2753 -> 1149[label="",style="solid", color="burlywood", weight=3]; 2754[label="vwx630/Zero",fontsize=10,color="white",style="solid",shape="box"];1147 -> 2754[label="",style="solid", color="burlywood", weight=9]; 2754 -> 1150[label="",style="solid", color="burlywood", weight=3]; 1675 -> 1529[label="",style="dashed", color="red", weight=0]; 1675[label="primCmpNat (Succ vwx34000) vwx3600",fontsize=16,color="magenta"];1675 -> 1816[label="",style="dashed", color="magenta", weight=3]; 1675 -> 1817[label="",style="dashed", color="magenta", weight=3]; 1676[label="GT",fontsize=16,color="green",shape="box"];1677[label="primCmpInt (Pos Zero) (Pos (Succ vwx36000))",fontsize=16,color="black",shape="box"];1677 -> 1818[label="",style="solid", color="black", weight=3]; 1678[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1678 -> 1819[label="",style="solid", color="black", weight=3]; 1679[label="primCmpInt (Pos Zero) (Neg (Succ vwx36000))",fontsize=16,color="black",shape="box"];1679 -> 1820[label="",style="solid", color="black", weight=3]; 1680[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1680 -> 1821[label="",style="solid", color="black", weight=3]; 1681[label="LT",fontsize=16,color="green",shape="box"];1682 -> 1529[label="",style="dashed", color="red", weight=0]; 1682[label="primCmpNat vwx3600 (Succ vwx34000)",fontsize=16,color="magenta"];1682 -> 1822[label="",style="dashed", color="magenta", weight=3]; 1682 -> 1823[label="",style="dashed", color="magenta", weight=3]; 1683[label="primCmpInt (Neg Zero) (Pos (Succ vwx36000))",fontsize=16,color="black",shape="box"];1683 -> 1824[label="",style="solid", color="black", weight=3]; 1684[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1684 -> 1825[label="",style="solid", color="black", weight=3]; 1685[label="primCmpInt (Neg Zero) (Neg (Succ vwx36000))",fontsize=16,color="black",shape="box"];1685 -> 1826[label="",style="solid", color="black", weight=3]; 1686[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1686 -> 1827[label="",style="solid", color="black", weight=3]; 1687 -> 1828[label="",style="dashed", color="red", weight=0]; 1687[label="compare1 vwx340 vwx360 (vwx340 <= vwx360)",fontsize=16,color="magenta"];1687 -> 1829[label="",style="dashed", color="magenta", weight=3]; 1688[label="EQ",fontsize=16,color="green",shape="box"];1689 -> 1830[label="",style="dashed", color="red", weight=0]; 1689[label="compare1 vwx340 vwx360 (vwx340 <= vwx360)",fontsize=16,color="magenta"];1689 -> 1831[label="",style="dashed", color="magenta", weight=3]; 1690[label="EQ",fontsize=16,color="green",shape="box"];1691 -> 1832[label="",style="dashed", color="red", weight=0]; 1691[label="compare1 vwx340 vwx360 (vwx340 <= vwx360)",fontsize=16,color="magenta"];1691 -> 1833[label="",style="dashed", color="magenta", weight=3]; 1692[label="EQ",fontsize=16,color="green",shape="box"];1693[label="primCmpNat (Succ vwx34000) vwx3600",fontsize=16,color="burlywood",shape="box"];2755[label="vwx3600/Succ vwx36000",fontsize=10,color="white",style="solid",shape="box"];1693 -> 2755[label="",style="solid", color="burlywood", weight=9]; 2755 -> 1834[label="",style="solid", color="burlywood", weight=3]; 2756[label="vwx3600/Zero",fontsize=10,color="white",style="solid",shape="box"];1693 -> 2756[label="",style="solid", color="burlywood", weight=9]; 2756 -> 1835[label="",style="solid", color="burlywood", weight=3]; 1694[label="primCmpNat Zero vwx3600",fontsize=16,color="burlywood",shape="box"];2757[label="vwx3600/Succ vwx36000",fontsize=10,color="white",style="solid",shape="box"];1694 -> 2757[label="",style="solid", color="burlywood", weight=9]; 2757 -> 1836[label="",style="solid", color="burlywood", weight=3]; 2758[label="vwx3600/Zero",fontsize=10,color="white",style="solid",shape="box"];1694 -> 2758[label="",style="solid", color="burlywood", weight=9]; 2758 -> 1837[label="",style="solid", color="burlywood", weight=3]; 1695 -> 336[label="",style="dashed", color="red", weight=0]; 1695[label="vwx3400 * vwx3601",fontsize=16,color="magenta"];1695 -> 1838[label="",style="dashed", color="magenta", weight=3]; 1695 -> 1839[label="",style="dashed", color="magenta", weight=3]; 1696 -> 336[label="",style="dashed", color="red", weight=0]; 1696[label="vwx3600 * vwx3401",fontsize=16,color="magenta"];1696 -> 1840[label="",style="dashed", color="magenta", weight=3]; 1696 -> 1841[label="",style="dashed", color="magenta", weight=3]; 1697[label="vwx3400 * vwx3601",fontsize=16,color="burlywood",shape="triangle"];2759[label="vwx3400/Integer vwx34000",fontsize=10,color="white",style="solid",shape="box"];1697 -> 2759[label="",style="solid", color="burlywood", weight=9]; 2759 -> 1842[label="",style="solid", color="burlywood", weight=3]; 1698 -> 1697[label="",style="dashed", color="red", weight=0]; 1698[label="vwx3600 * vwx3401",fontsize=16,color="magenta"];1698 -> 1843[label="",style="dashed", color="magenta", weight=3]; 1698 -> 1844[label="",style="dashed", color="magenta", weight=3]; 1699 -> 1845[label="",style="dashed", color="red", weight=0]; 1699[label="compare1 vwx340 vwx360 (vwx340 <= vwx360)",fontsize=16,color="magenta"];1699 -> 1846[label="",style="dashed", color="magenta", weight=3]; 1700[label="EQ",fontsize=16,color="green",shape="box"];1701[label="vwx3401",fontsize=16,color="green",shape="box"];1702[label="vwx3601",fontsize=16,color="green",shape="box"];1703 -> 1847[label="",style="dashed", color="red", weight=0]; 1703[label="primCompAux0 vwx85 (compare vwx3400 vwx3600)",fontsize=16,color="magenta"];1703 -> 1848[label="",style="dashed", color="magenta", weight=3]; 1703 -> 1849[label="",style="dashed", color="magenta", weight=3]; 1704 -> 1850[label="",style="dashed", color="red", weight=0]; 1704[label="compare1 vwx340 vwx360 (vwx340 <= vwx360)",fontsize=16,color="magenta"];1704 -> 1851[label="",style="dashed", color="magenta", weight=3]; 1705[label="EQ",fontsize=16,color="green",shape="box"];1706[label="primCmpDouble (Double vwx3400 (Pos vwx34010)) (Double vwx3600 (Pos vwx36010))",fontsize=16,color="black",shape="box"];1706 -> 1852[label="",style="solid", color="black", weight=3]; 1707[label="primCmpDouble (Double vwx3400 (Pos vwx34010)) (Double vwx3600 (Neg vwx36010))",fontsize=16,color="black",shape="box"];1707 -> 1853[label="",style="solid", color="black", weight=3]; 1708[label="primCmpDouble (Double vwx3400 (Neg vwx34010)) (Double vwx3600 (Pos vwx36010))",fontsize=16,color="black",shape="box"];1708 -> 1854[label="",style="solid", color="black", weight=3]; 1709[label="primCmpDouble (Double vwx3400 (Neg vwx34010)) (Double vwx3600 (Neg vwx36010))",fontsize=16,color="black",shape="box"];1709 -> 1855[label="",style="solid", color="black", weight=3]; 1710[label="primCmpFloat (Float vwx3400 (Pos vwx34010)) (Float vwx3600 (Pos vwx36010))",fontsize=16,color="black",shape="box"];1710 -> 1856[label="",style="solid", color="black", weight=3]; 1711[label="primCmpFloat (Float vwx3400 (Pos vwx34010)) (Float vwx3600 (Neg vwx36010))",fontsize=16,color="black",shape="box"];1711 -> 1857[label="",style="solid", color="black", weight=3]; 1712[label="primCmpFloat (Float vwx3400 (Neg vwx34010)) (Float vwx3600 (Pos vwx36010))",fontsize=16,color="black",shape="box"];1712 -> 1858[label="",style="solid", color="black", weight=3]; 1713[label="primCmpFloat (Float vwx3400 (Neg vwx34010)) (Float vwx3600 (Neg vwx36010))",fontsize=16,color="black",shape="box"];1713 -> 1859[label="",style="solid", color="black", weight=3]; 1714[label="vwx3410",fontsize=16,color="green",shape="box"];1715[label="vwx3610",fontsize=16,color="green",shape="box"];1716[label="vwx3410",fontsize=16,color="green",shape="box"];1717[label="vwx3610",fontsize=16,color="green",shape="box"];1718[label="vwx3410",fontsize=16,color="green",shape="box"];1719[label="vwx3610",fontsize=16,color="green",shape="box"];1720[label="vwx3410",fontsize=16,color="green",shape="box"];1721[label="vwx3610",fontsize=16,color="green",shape="box"];1722[label="vwx3410",fontsize=16,color="green",shape="box"];1723[label="vwx3610",fontsize=16,color="green",shape="box"];1724[label="vwx3410",fontsize=16,color="green",shape="box"];1725[label="vwx3610",fontsize=16,color="green",shape="box"];1726[label="vwx3410",fontsize=16,color="green",shape="box"];1727[label="vwx3610",fontsize=16,color="green",shape="box"];1728[label="vwx3410",fontsize=16,color="green",shape="box"];1729[label="vwx3610",fontsize=16,color="green",shape="box"];1730[label="vwx3410",fontsize=16,color="green",shape="box"];1731[label="vwx3610",fontsize=16,color="green",shape="box"];1732[label="vwx3410",fontsize=16,color="green",shape="box"];1733[label="vwx3610",fontsize=16,color="green",shape="box"];1734[label="vwx3410",fontsize=16,color="green",shape="box"];1735[label="vwx3610",fontsize=16,color="green",shape="box"];1736[label="vwx3410",fontsize=16,color="green",shape="box"];1737[label="vwx3610",fontsize=16,color="green",shape="box"];1738[label="vwx3410",fontsize=16,color="green",shape="box"];1739[label="vwx3610",fontsize=16,color="green",shape="box"];1740[label="vwx3410",fontsize=16,color="green",shape="box"];1741[label="vwx3610",fontsize=16,color="green",shape="box"];1742 -> 1204[label="",style="dashed", color="red", weight=0]; 1742[label="vwx3411 <= vwx3611",fontsize=16,color="magenta"];1742 -> 1860[label="",style="dashed", color="magenta", weight=3]; 1742 -> 1861[label="",style="dashed", color="magenta", weight=3]; 1743 -> 1205[label="",style="dashed", color="red", weight=0]; 1743[label="vwx3411 <= vwx3611",fontsize=16,color="magenta"];1743 -> 1862[label="",style="dashed", color="magenta", weight=3]; 1743 -> 1863[label="",style="dashed", color="magenta", weight=3]; 1744 -> 1206[label="",style="dashed", color="red", weight=0]; 1744[label="vwx3411 <= vwx3611",fontsize=16,color="magenta"];1744 -> 1864[label="",style="dashed", color="magenta", weight=3]; 1744 -> 1865[label="",style="dashed", color="magenta", weight=3]; 1745 -> 1207[label="",style="dashed", color="red", weight=0]; 1745[label="vwx3411 <= vwx3611",fontsize=16,color="magenta"];1745 -> 1866[label="",style="dashed", color="magenta", weight=3]; 1745 -> 1867[label="",style="dashed", color="magenta", weight=3]; 1746 -> 1208[label="",style="dashed", color="red", weight=0]; 1746[label="vwx3411 <= vwx3611",fontsize=16,color="magenta"];1746 -> 1868[label="",style="dashed", color="magenta", weight=3]; 1746 -> 1869[label="",style="dashed", color="magenta", weight=3]; 1747 -> 1209[label="",style="dashed", color="red", weight=0]; 1747[label="vwx3411 <= vwx3611",fontsize=16,color="magenta"];1747 -> 1870[label="",style="dashed", color="magenta", weight=3]; 1747 -> 1871[label="",style="dashed", color="magenta", weight=3]; 1748 -> 1210[label="",style="dashed", color="red", weight=0]; 1748[label="vwx3411 <= vwx3611",fontsize=16,color="magenta"];1748 -> 1872[label="",style="dashed", color="magenta", weight=3]; 1748 -> 1873[label="",style="dashed", color="magenta", weight=3]; 1749 -> 1211[label="",style="dashed", color="red", weight=0]; 1749[label="vwx3411 <= vwx3611",fontsize=16,color="magenta"];1749 -> 1874[label="",style="dashed", color="magenta", weight=3]; 1749 -> 1875[label="",style="dashed", color="magenta", weight=3]; 1750 -> 1212[label="",style="dashed", color="red", weight=0]; 1750[label="vwx3411 <= vwx3611",fontsize=16,color="magenta"];1750 -> 1876[label="",style="dashed", color="magenta", weight=3]; 1750 -> 1877[label="",style="dashed", color="magenta", weight=3]; 1751 -> 1213[label="",style="dashed", color="red", weight=0]; 1751[label="vwx3411 <= vwx3611",fontsize=16,color="magenta"];1751 -> 1878[label="",style="dashed", color="magenta", weight=3]; 1751 -> 1879[label="",style="dashed", color="magenta", weight=3]; 1752 -> 1214[label="",style="dashed", color="red", weight=0]; 1752[label="vwx3411 <= vwx3611",fontsize=16,color="magenta"];1752 -> 1880[label="",style="dashed", color="magenta", weight=3]; 1752 -> 1881[label="",style="dashed", color="magenta", weight=3]; 1753 -> 1215[label="",style="dashed", color="red", weight=0]; 1753[label="vwx3411 <= vwx3611",fontsize=16,color="magenta"];1753 -> 1882[label="",style="dashed", color="magenta", weight=3]; 1753 -> 1883[label="",style="dashed", color="magenta", weight=3]; 1754 -> 1216[label="",style="dashed", color="red", weight=0]; 1754[label="vwx3411 <= vwx3611",fontsize=16,color="magenta"];1754 -> 1884[label="",style="dashed", color="magenta", weight=3]; 1754 -> 1885[label="",style="dashed", color="magenta", weight=3]; 1755 -> 1217[label="",style="dashed", color="red", weight=0]; 1755[label="vwx3411 <= vwx3611",fontsize=16,color="magenta"];1755 -> 1886[label="",style="dashed", color="magenta", weight=3]; 1755 -> 1887[label="",style="dashed", color="magenta", weight=3]; 1756 -> 114[label="",style="dashed", color="red", weight=0]; 1756[label="vwx3410 == vwx3610",fontsize=16,color="magenta"];1756 -> 1888[label="",style="dashed", color="magenta", weight=3]; 1756 -> 1889[label="",style="dashed", color="magenta", weight=3]; 1757 -> 116[label="",style="dashed", color="red", weight=0]; 1757[label="vwx3410 == vwx3610",fontsize=16,color="magenta"];1757 -> 1890[label="",style="dashed", color="magenta", weight=3]; 1757 -> 1891[label="",style="dashed", color="magenta", weight=3]; 1758 -> 121[label="",style="dashed", color="red", weight=0]; 1758[label="vwx3410 == vwx3610",fontsize=16,color="magenta"];1758 -> 1892[label="",style="dashed", color="magenta", weight=3]; 1758 -> 1893[label="",style="dashed", color="magenta", weight=3]; 1759 -> 123[label="",style="dashed", color="red", weight=0]; 1759[label="vwx3410 == vwx3610",fontsize=16,color="magenta"];1759 -> 1894[label="",style="dashed", color="magenta", weight=3]; 1759 -> 1895[label="",style="dashed", color="magenta", weight=3]; 1760 -> 127[label="",style="dashed", color="red", weight=0]; 1760[label="vwx3410 == vwx3610",fontsize=16,color="magenta"];1760 -> 1896[label="",style="dashed", color="magenta", weight=3]; 1760 -> 1897[label="",style="dashed", color="magenta", weight=3]; 1761 -> 122[label="",style="dashed", color="red", weight=0]; 1761[label="vwx3410 == vwx3610",fontsize=16,color="magenta"];1761 -> 1898[label="",style="dashed", color="magenta", weight=3]; 1761 -> 1899[label="",style="dashed", color="magenta", weight=3]; 1762 -> 119[label="",style="dashed", color="red", weight=0]; 1762[label="vwx3410 == vwx3610",fontsize=16,color="magenta"];1762 -> 1900[label="",style="dashed", color="magenta", weight=3]; 1762 -> 1901[label="",style="dashed", color="magenta", weight=3]; 1763 -> 126[label="",style="dashed", color="red", weight=0]; 1763[label="vwx3410 == vwx3610",fontsize=16,color="magenta"];1763 -> 1902[label="",style="dashed", color="magenta", weight=3]; 1763 -> 1903[label="",style="dashed", color="magenta", weight=3]; 1764 -> 120[label="",style="dashed", color="red", weight=0]; 1764[label="vwx3410 == vwx3610",fontsize=16,color="magenta"];1764 -> 1904[label="",style="dashed", color="magenta", weight=3]; 1764 -> 1905[label="",style="dashed", color="magenta", weight=3]; 1765 -> 125[label="",style="dashed", color="red", weight=0]; 1765[label="vwx3410 == vwx3610",fontsize=16,color="magenta"];1765 -> 1906[label="",style="dashed", color="magenta", weight=3]; 1765 -> 1907[label="",style="dashed", color="magenta", weight=3]; 1766 -> 117[label="",style="dashed", color="red", weight=0]; 1766[label="vwx3410 == vwx3610",fontsize=16,color="magenta"];1766 -> 1908[label="",style="dashed", color="magenta", weight=3]; 1766 -> 1909[label="",style="dashed", color="magenta", weight=3]; 1767 -> 118[label="",style="dashed", color="red", weight=0]; 1767[label="vwx3410 == vwx3610",fontsize=16,color="magenta"];1767 -> 1910[label="",style="dashed", color="magenta", weight=3]; 1767 -> 1911[label="",style="dashed", color="magenta", weight=3]; 1768 -> 124[label="",style="dashed", color="red", weight=0]; 1768[label="vwx3410 == vwx3610",fontsize=16,color="magenta"];1768 -> 1912[label="",style="dashed", color="magenta", weight=3]; 1768 -> 1913[label="",style="dashed", color="magenta", weight=3]; 1769 -> 115[label="",style="dashed", color="red", weight=0]; 1769[label="vwx3410 == vwx3610",fontsize=16,color="magenta"];1769 -> 1914[label="",style="dashed", color="magenta", weight=3]; 1769 -> 1915[label="",style="dashed", color="magenta", weight=3]; 1770[label="vwx90",fontsize=16,color="green",shape="box"];1771[label="True",fontsize=16,color="green",shape="box"];1772[label="vwx3410",fontsize=16,color="green",shape="box"];1773[label="vwx3610",fontsize=16,color="green",shape="box"];1774[label="vwx3410",fontsize=16,color="green",shape="box"];1775[label="vwx3610",fontsize=16,color="green",shape="box"];1776[label="vwx3410",fontsize=16,color="green",shape="box"];1777[label="vwx3610",fontsize=16,color="green",shape="box"];1778[label="vwx3410",fontsize=16,color="green",shape="box"];1779[label="vwx3610",fontsize=16,color="green",shape="box"];1780[label="vwx3410",fontsize=16,color="green",shape="box"];1781[label="vwx3610",fontsize=16,color="green",shape="box"];1782[label="vwx3410",fontsize=16,color="green",shape="box"];1783[label="vwx3610",fontsize=16,color="green",shape="box"];1784[label="vwx3410",fontsize=16,color="green",shape="box"];1785[label="vwx3610",fontsize=16,color="green",shape="box"];1786[label="vwx3410",fontsize=16,color="green",shape="box"];1787[label="vwx3610",fontsize=16,color="green",shape="box"];1788[label="vwx3410",fontsize=16,color="green",shape="box"];1789[label="vwx3610",fontsize=16,color="green",shape="box"];1790[label="vwx3410",fontsize=16,color="green",shape="box"];1791[label="vwx3610",fontsize=16,color="green",shape="box"];1792[label="vwx3410",fontsize=16,color="green",shape="box"];1793[label="vwx3610",fontsize=16,color="green",shape="box"];1794[label="vwx3410",fontsize=16,color="green",shape="box"];1795[label="vwx3610",fontsize=16,color="green",shape="box"];1796[label="vwx3410",fontsize=16,color="green",shape="box"];1797[label="vwx3610",fontsize=16,color="green",shape="box"];1798[label="vwx3410",fontsize=16,color="green",shape="box"];1799[label="vwx3610",fontsize=16,color="green",shape="box"];1800[label="vwx3411 < vwx3611",fontsize=16,color="blue",shape="box"];2760[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1800 -> 2760[label="",style="solid", color="blue", weight=9]; 2760 -> 1916[label="",style="solid", color="blue", weight=3]; 2761[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1800 -> 2761[label="",style="solid", color="blue", weight=9]; 2761 -> 1917[label="",style="solid", color="blue", weight=3]; 2762[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1800 -> 2762[label="",style="solid", color="blue", weight=9]; 2762 -> 1918[label="",style="solid", color="blue", weight=3]; 2763[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1800 -> 2763[label="",style="solid", color="blue", weight=9]; 2763 -> 1919[label="",style="solid", color="blue", weight=3]; 2764[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1800 -> 2764[label="",style="solid", color="blue", weight=9]; 2764 -> 1920[label="",style="solid", color="blue", weight=3]; 2765[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1800 -> 2765[label="",style="solid", color="blue", weight=9]; 2765 -> 1921[label="",style="solid", color="blue", weight=3]; 2766[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1800 -> 2766[label="",style="solid", color="blue", weight=9]; 2766 -> 1922[label="",style="solid", color="blue", weight=3]; 2767[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1800 -> 2767[label="",style="solid", color="blue", weight=9]; 2767 -> 1923[label="",style="solid", color="blue", weight=3]; 2768[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1800 -> 2768[label="",style="solid", color="blue", weight=9]; 2768 -> 1924[label="",style="solid", color="blue", weight=3]; 2769[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1800 -> 2769[label="",style="solid", color="blue", weight=9]; 2769 -> 1925[label="",style="solid", color="blue", weight=3]; 2770[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1800 -> 2770[label="",style="solid", color="blue", weight=9]; 2770 -> 1926[label="",style="solid", color="blue", weight=3]; 2771[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1800 -> 2771[label="",style="solid", color="blue", weight=9]; 2771 -> 1927[label="",style="solid", color="blue", weight=3]; 2772[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1800 -> 2772[label="",style="solid", color="blue", weight=9]; 2772 -> 1928[label="",style="solid", color="blue", weight=3]; 2773[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1800 -> 2773[label="",style="solid", color="blue", weight=9]; 2773 -> 1929[label="",style="solid", color="blue", weight=3]; 1801 -> 396[label="",style="dashed", color="red", weight=0]; 1801[label="vwx3411 == vwx3611 && vwx3412 <= vwx3612",fontsize=16,color="magenta"];1801 -> 1930[label="",style="dashed", color="magenta", weight=3]; 1801 -> 1931[label="",style="dashed", color="magenta", weight=3]; 1802 -> 114[label="",style="dashed", color="red", weight=0]; 1802[label="vwx3410 == vwx3610",fontsize=16,color="magenta"];1802 -> 1932[label="",style="dashed", color="magenta", weight=3]; 1802 -> 1933[label="",style="dashed", color="magenta", weight=3]; 1803 -> 116[label="",style="dashed", color="red", weight=0]; 1803[label="vwx3410 == vwx3610",fontsize=16,color="magenta"];1803 -> 1934[label="",style="dashed", color="magenta", weight=3]; 1803 -> 1935[label="",style="dashed", color="magenta", weight=3]; 1804 -> 121[label="",style="dashed", color="red", weight=0]; 1804[label="vwx3410 == vwx3610",fontsize=16,color="magenta"];1804 -> 1936[label="",style="dashed", color="magenta", weight=3]; 1804 -> 1937[label="",style="dashed", color="magenta", weight=3]; 1805 -> 123[label="",style="dashed", color="red", weight=0]; 1805[label="vwx3410 == vwx3610",fontsize=16,color="magenta"];1805 -> 1938[label="",style="dashed", color="magenta", weight=3]; 1805 -> 1939[label="",style="dashed", color="magenta", weight=3]; 1806 -> 127[label="",style="dashed", color="red", weight=0]; 1806[label="vwx3410 == vwx3610",fontsize=16,color="magenta"];1806 -> 1940[label="",style="dashed", color="magenta", weight=3]; 1806 -> 1941[label="",style="dashed", color="magenta", weight=3]; 1807 -> 122[label="",style="dashed", color="red", weight=0]; 1807[label="vwx3410 == vwx3610",fontsize=16,color="magenta"];1807 -> 1942[label="",style="dashed", color="magenta", weight=3]; 1807 -> 1943[label="",style="dashed", color="magenta", weight=3]; 1808 -> 119[label="",style="dashed", color="red", weight=0]; 1808[label="vwx3410 == vwx3610",fontsize=16,color="magenta"];1808 -> 1944[label="",style="dashed", color="magenta", weight=3]; 1808 -> 1945[label="",style="dashed", color="magenta", weight=3]; 1809 -> 126[label="",style="dashed", color="red", weight=0]; 1809[label="vwx3410 == vwx3610",fontsize=16,color="magenta"];1809 -> 1946[label="",style="dashed", color="magenta", weight=3]; 1809 -> 1947[label="",style="dashed", color="magenta", weight=3]; 1810 -> 120[label="",style="dashed", color="red", weight=0]; 1810[label="vwx3410 == vwx3610",fontsize=16,color="magenta"];1810 -> 1948[label="",style="dashed", color="magenta", weight=3]; 1810 -> 1949[label="",style="dashed", color="magenta", weight=3]; 1811 -> 125[label="",style="dashed", color="red", weight=0]; 1811[label="vwx3410 == vwx3610",fontsize=16,color="magenta"];1811 -> 1950[label="",style="dashed", color="magenta", weight=3]; 1811 -> 1951[label="",style="dashed", color="magenta", weight=3]; 1812 -> 117[label="",style="dashed", color="red", weight=0]; 1812[label="vwx3410 == vwx3610",fontsize=16,color="magenta"];1812 -> 1952[label="",style="dashed", color="magenta", weight=3]; 1812 -> 1953[label="",style="dashed", color="magenta", weight=3]; 1813 -> 118[label="",style="dashed", color="red", weight=0]; 1813[label="vwx3410 == vwx3610",fontsize=16,color="magenta"];1813 -> 1954[label="",style="dashed", color="magenta", weight=3]; 1813 -> 1955[label="",style="dashed", color="magenta", weight=3]; 1814 -> 124[label="",style="dashed", color="red", weight=0]; 1814[label="vwx3410 == vwx3610",fontsize=16,color="magenta"];1814 -> 1956[label="",style="dashed", color="magenta", weight=3]; 1814 -> 1957[label="",style="dashed", color="magenta", weight=3]; 1815 -> 115[label="",style="dashed", color="red", weight=0]; 1815[label="vwx3410 == vwx3610",fontsize=16,color="magenta"];1815 -> 1958[label="",style="dashed", color="magenta", weight=3]; 1815 -> 1959[label="",style="dashed", color="magenta", weight=3]; 1149[label="primPlusNat (Succ vwx6300) vwx40000",fontsize=16,color="burlywood",shape="box"];2774[label="vwx40000/Succ vwx400000",fontsize=10,color="white",style="solid",shape="box"];1149 -> 2774[label="",style="solid", color="burlywood", weight=9]; 2774 -> 1186[label="",style="solid", color="burlywood", weight=3]; 2775[label="vwx40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1149 -> 2775[label="",style="solid", color="burlywood", weight=9]; 2775 -> 1187[label="",style="solid", color="burlywood", weight=3]; 1150[label="primPlusNat Zero vwx40000",fontsize=16,color="burlywood",shape="box"];2776[label="vwx40000/Succ vwx400000",fontsize=10,color="white",style="solid",shape="box"];1150 -> 2776[label="",style="solid", color="burlywood", weight=9]; 2776 -> 1188[label="",style="solid", color="burlywood", weight=3]; 2777[label="vwx40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1150 -> 2777[label="",style="solid", color="burlywood", weight=9]; 2777 -> 1189[label="",style="solid", color="burlywood", weight=3]; 1816[label="Succ vwx34000",fontsize=16,color="green",shape="box"];1817[label="vwx3600",fontsize=16,color="green",shape="box"];1818 -> 1529[label="",style="dashed", color="red", weight=0]; 1818[label="primCmpNat Zero (Succ vwx36000)",fontsize=16,color="magenta"];1818 -> 1960[label="",style="dashed", color="magenta", weight=3]; 1818 -> 1961[label="",style="dashed", color="magenta", weight=3]; 1819[label="EQ",fontsize=16,color="green",shape="box"];1820[label="GT",fontsize=16,color="green",shape="box"];1821[label="EQ",fontsize=16,color="green",shape="box"];1822[label="vwx3600",fontsize=16,color="green",shape="box"];1823[label="Succ vwx34000",fontsize=16,color="green",shape="box"];1824[label="LT",fontsize=16,color="green",shape="box"];1825[label="EQ",fontsize=16,color="green",shape="box"];1826 -> 1529[label="",style="dashed", color="red", weight=0]; 1826[label="primCmpNat (Succ vwx36000) Zero",fontsize=16,color="magenta"];1826 -> 1962[label="",style="dashed", color="magenta", weight=3]; 1826 -> 1963[label="",style="dashed", color="magenta", weight=3]; 1827[label="EQ",fontsize=16,color="green",shape="box"];1829 -> 1205[label="",style="dashed", color="red", weight=0]; 1829[label="vwx340 <= vwx360",fontsize=16,color="magenta"];1829 -> 1964[label="",style="dashed", color="magenta", weight=3]; 1829 -> 1965[label="",style="dashed", color="magenta", weight=3]; 1828[label="compare1 vwx340 vwx360 vwx91",fontsize=16,color="burlywood",shape="triangle"];2778[label="vwx91/False",fontsize=10,color="white",style="solid",shape="box"];1828 -> 2778[label="",style="solid", color="burlywood", weight=9]; 2778 -> 1966[label="",style="solid", color="burlywood", weight=3]; 2779[label="vwx91/True",fontsize=10,color="white",style="solid",shape="box"];1828 -> 2779[label="",style="solid", color="burlywood", weight=9]; 2779 -> 1967[label="",style="solid", color="burlywood", weight=3]; 1831 -> 1206[label="",style="dashed", color="red", weight=0]; 1831[label="vwx340 <= vwx360",fontsize=16,color="magenta"];1831 -> 1968[label="",style="dashed", color="magenta", weight=3]; 1831 -> 1969[label="",style="dashed", color="magenta", weight=3]; 1830[label="compare1 vwx340 vwx360 vwx92",fontsize=16,color="burlywood",shape="triangle"];2780[label="vwx92/False",fontsize=10,color="white",style="solid",shape="box"];1830 -> 2780[label="",style="solid", color="burlywood", weight=9]; 2780 -> 1970[label="",style="solid", color="burlywood", weight=3]; 2781[label="vwx92/True",fontsize=10,color="white",style="solid",shape="box"];1830 -> 2781[label="",style="solid", color="burlywood", weight=9]; 2781 -> 1971[label="",style="solid", color="burlywood", weight=3]; 1833 -> 1210[label="",style="dashed", color="red", weight=0]; 1833[label="vwx340 <= vwx360",fontsize=16,color="magenta"];1833 -> 1972[label="",style="dashed", color="magenta", weight=3]; 1833 -> 1973[label="",style="dashed", color="magenta", weight=3]; 1832[label="compare1 vwx340 vwx360 vwx93",fontsize=16,color="burlywood",shape="triangle"];2782[label="vwx93/False",fontsize=10,color="white",style="solid",shape="box"];1832 -> 2782[label="",style="solid", color="burlywood", weight=9]; 2782 -> 1974[label="",style="solid", color="burlywood", weight=3]; 2783[label="vwx93/True",fontsize=10,color="white",style="solid",shape="box"];1832 -> 2783[label="",style="solid", color="burlywood", weight=9]; 2783 -> 1975[label="",style="solid", color="burlywood", weight=3]; 1834[label="primCmpNat (Succ vwx34000) (Succ vwx36000)",fontsize=16,color="black",shape="box"];1834 -> 1976[label="",style="solid", color="black", weight=3]; 1835[label="primCmpNat (Succ vwx34000) Zero",fontsize=16,color="black",shape="box"];1835 -> 1977[label="",style="solid", color="black", weight=3]; 1836[label="primCmpNat Zero (Succ vwx36000)",fontsize=16,color="black",shape="box"];1836 -> 1978[label="",style="solid", color="black", weight=3]; 1837[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];1837 -> 1979[label="",style="solid", color="black", weight=3]; 1838[label="vwx3400",fontsize=16,color="green",shape="box"];1839[label="vwx3601",fontsize=16,color="green",shape="box"];1840[label="vwx3600",fontsize=16,color="green",shape="box"];1841[label="vwx3401",fontsize=16,color="green",shape="box"];1842[label="Integer vwx34000 * vwx3601",fontsize=16,color="burlywood",shape="box"];2784[label="vwx3601/Integer vwx36010",fontsize=10,color="white",style="solid",shape="box"];1842 -> 2784[label="",style="solid", color="burlywood", weight=9]; 2784 -> 1980[label="",style="solid", color="burlywood", weight=3]; 1843[label="vwx3600",fontsize=16,color="green",shape="box"];1844[label="vwx3401",fontsize=16,color="green",shape="box"];1846 -> 1213[label="",style="dashed", color="red", weight=0]; 1846[label="vwx340 <= vwx360",fontsize=16,color="magenta"];1846 -> 1981[label="",style="dashed", color="magenta", weight=3]; 1846 -> 1982[label="",style="dashed", color="magenta", weight=3]; 1845[label="compare1 vwx340 vwx360 vwx94",fontsize=16,color="burlywood",shape="triangle"];2785[label="vwx94/False",fontsize=10,color="white",style="solid",shape="box"];1845 -> 2785[label="",style="solid", color="burlywood", weight=9]; 2785 -> 1983[label="",style="solid", color="burlywood", weight=3]; 2786[label="vwx94/True",fontsize=10,color="white",style="solid",shape="box"];1845 -> 2786[label="",style="solid", color="burlywood", weight=9]; 2786 -> 1984[label="",style="solid", color="burlywood", weight=3]; 1848[label="compare vwx3400 vwx3600",fontsize=16,color="blue",shape="box"];2787[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1848 -> 2787[label="",style="solid", color="blue", weight=9]; 2787 -> 1985[label="",style="solid", color="blue", weight=3]; 2788[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1848 -> 2788[label="",style="solid", color="blue", weight=9]; 2788 -> 1986[label="",style="solid", color="blue", weight=3]; 2789[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1848 -> 2789[label="",style="solid", color="blue", weight=9]; 2789 -> 1987[label="",style="solid", color="blue", weight=3]; 2790[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1848 -> 2790[label="",style="solid", color="blue", weight=9]; 2790 -> 1988[label="",style="solid", color="blue", weight=3]; 2791[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1848 -> 2791[label="",style="solid", color="blue", weight=9]; 2791 -> 1989[label="",style="solid", color="blue", weight=3]; 2792[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1848 -> 2792[label="",style="solid", color="blue", weight=9]; 2792 -> 1990[label="",style="solid", color="blue", weight=3]; 2793[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1848 -> 2793[label="",style="solid", color="blue", weight=9]; 2793 -> 1991[label="",style="solid", color="blue", weight=3]; 2794[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1848 -> 2794[label="",style="solid", color="blue", weight=9]; 2794 -> 1992[label="",style="solid", color="blue", weight=3]; 2795[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1848 -> 2795[label="",style="solid", color="blue", weight=9]; 2795 -> 1993[label="",style="solid", color="blue", weight=3]; 2796[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1848 -> 2796[label="",style="solid", color="blue", weight=9]; 2796 -> 1994[label="",style="solid", color="blue", weight=3]; 2797[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1848 -> 2797[label="",style="solid", color="blue", weight=9]; 2797 -> 1995[label="",style="solid", color="blue", weight=3]; 2798[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1848 -> 2798[label="",style="solid", color="blue", weight=9]; 2798 -> 1996[label="",style="solid", color="blue", weight=3]; 2799[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1848 -> 2799[label="",style="solid", color="blue", weight=9]; 2799 -> 1997[label="",style="solid", color="blue", weight=3]; 2800[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1848 -> 2800[label="",style="solid", color="blue", weight=9]; 2800 -> 1998[label="",style="solid", color="blue", weight=3]; 1849[label="vwx85",fontsize=16,color="green",shape="box"];1847[label="primCompAux0 vwx98 vwx99",fontsize=16,color="burlywood",shape="triangle"];2801[label="vwx99/LT",fontsize=10,color="white",style="solid",shape="box"];1847 -> 2801[label="",style="solid", color="burlywood", weight=9]; 2801 -> 1999[label="",style="solid", color="burlywood", weight=3]; 2802[label="vwx99/EQ",fontsize=10,color="white",style="solid",shape="box"];1847 -> 2802[label="",style="solid", color="burlywood", weight=9]; 2802 -> 2000[label="",style="solid", color="burlywood", weight=3]; 2803[label="vwx99/GT",fontsize=10,color="white",style="solid",shape="box"];1847 -> 2803[label="",style="solid", color="burlywood", weight=9]; 2803 -> 2001[label="",style="solid", color="burlywood", weight=3]; 1851 -> 1215[label="",style="dashed", color="red", weight=0]; 1851[label="vwx340 <= vwx360",fontsize=16,color="magenta"];1851 -> 2002[label="",style="dashed", color="magenta", weight=3]; 1851 -> 2003[label="",style="dashed", color="magenta", weight=3]; 1850[label="compare1 vwx340 vwx360 vwx100",fontsize=16,color="burlywood",shape="triangle"];2804[label="vwx100/False",fontsize=10,color="white",style="solid",shape="box"];1850 -> 2804[label="",style="solid", color="burlywood", weight=9]; 2804 -> 2004[label="",style="solid", color="burlywood", weight=3]; 2805[label="vwx100/True",fontsize=10,color="white",style="solid",shape="box"];1850 -> 2805[label="",style="solid", color="burlywood", weight=9]; 2805 -> 2005[label="",style="solid", color="burlywood", weight=3]; 1852 -> 1239[label="",style="dashed", color="red", weight=0]; 1852[label="compare (vwx3400 * Pos vwx36010) (Pos vwx34010 * vwx3600)",fontsize=16,color="magenta"];1852 -> 2006[label="",style="dashed", color="magenta", weight=3]; 1852 -> 2007[label="",style="dashed", color="magenta", weight=3]; 1853 -> 1239[label="",style="dashed", color="red", weight=0]; 1853[label="compare (vwx3400 * Pos vwx36010) (Neg vwx34010 * vwx3600)",fontsize=16,color="magenta"];1853 -> 2008[label="",style="dashed", color="magenta", weight=3]; 1853 -> 2009[label="",style="dashed", color="magenta", weight=3]; 1854 -> 1239[label="",style="dashed", color="red", weight=0]; 1854[label="compare (vwx3400 * Neg vwx36010) (Pos vwx34010 * vwx3600)",fontsize=16,color="magenta"];1854 -> 2010[label="",style="dashed", color="magenta", weight=3]; 1854 -> 2011[label="",style="dashed", color="magenta", weight=3]; 1855 -> 1239[label="",style="dashed", color="red", weight=0]; 1855[label="compare (vwx3400 * Neg vwx36010) (Neg vwx34010 * vwx3600)",fontsize=16,color="magenta"];1855 -> 2012[label="",style="dashed", color="magenta", weight=3]; 1855 -> 2013[label="",style="dashed", color="magenta", weight=3]; 1856 -> 1239[label="",style="dashed", color="red", weight=0]; 1856[label="compare (vwx3400 * Pos vwx36010) (Pos vwx34010 * vwx3600)",fontsize=16,color="magenta"];1856 -> 2014[label="",style="dashed", color="magenta", weight=3]; 1856 -> 2015[label="",style="dashed", color="magenta", weight=3]; 1857 -> 1239[label="",style="dashed", color="red", weight=0]; 1857[label="compare (vwx3400 * Pos vwx36010) (Neg vwx34010 * vwx3600)",fontsize=16,color="magenta"];1857 -> 2016[label="",style="dashed", color="magenta", weight=3]; 1857 -> 2017[label="",style="dashed", color="magenta", weight=3]; 1858 -> 1239[label="",style="dashed", color="red", weight=0]; 1858[label="compare (vwx3400 * Neg vwx36010) (Pos vwx34010 * vwx3600)",fontsize=16,color="magenta"];1858 -> 2018[label="",style="dashed", color="magenta", weight=3]; 1858 -> 2019[label="",style="dashed", color="magenta", weight=3]; 1859 -> 1239[label="",style="dashed", color="red", weight=0]; 1859[label="compare (vwx3400 * Neg vwx36010) (Neg vwx34010 * vwx3600)",fontsize=16,color="magenta"];1859 -> 2020[label="",style="dashed", color="magenta", weight=3]; 1859 -> 2021[label="",style="dashed", color="magenta", weight=3]; 1860[label="vwx3411",fontsize=16,color="green",shape="box"];1861[label="vwx3611",fontsize=16,color="green",shape="box"];1862[label="vwx3411",fontsize=16,color="green",shape="box"];1863[label="vwx3611",fontsize=16,color="green",shape="box"];1864[label="vwx3411",fontsize=16,color="green",shape="box"];1865[label="vwx3611",fontsize=16,color="green",shape="box"];1866[label="vwx3411",fontsize=16,color="green",shape="box"];1867[label="vwx3611",fontsize=16,color="green",shape="box"];1868[label="vwx3411",fontsize=16,color="green",shape="box"];1869[label="vwx3611",fontsize=16,color="green",shape="box"];1870[label="vwx3411",fontsize=16,color="green",shape="box"];1871[label="vwx3611",fontsize=16,color="green",shape="box"];1872[label="vwx3411",fontsize=16,color="green",shape="box"];1873[label="vwx3611",fontsize=16,color="green",shape="box"];1874[label="vwx3411",fontsize=16,color="green",shape="box"];1875[label="vwx3611",fontsize=16,color="green",shape="box"];1876[label="vwx3411",fontsize=16,color="green",shape="box"];1877[label="vwx3611",fontsize=16,color="green",shape="box"];1878[label="vwx3411",fontsize=16,color="green",shape="box"];1879[label="vwx3611",fontsize=16,color="green",shape="box"];1880[label="vwx3411",fontsize=16,color="green",shape="box"];1881[label="vwx3611",fontsize=16,color="green",shape="box"];1882[label="vwx3411",fontsize=16,color="green",shape="box"];1883[label="vwx3611",fontsize=16,color="green",shape="box"];1884[label="vwx3411",fontsize=16,color="green",shape="box"];1885[label="vwx3611",fontsize=16,color="green",shape="box"];1886[label="vwx3411",fontsize=16,color="green",shape="box"];1887[label="vwx3611",fontsize=16,color="green",shape="box"];1888[label="vwx3610",fontsize=16,color="green",shape="box"];1889[label="vwx3410",fontsize=16,color="green",shape="box"];1890[label="vwx3610",fontsize=16,color="green",shape="box"];1891[label="vwx3410",fontsize=16,color="green",shape="box"];1892[label="vwx3610",fontsize=16,color="green",shape="box"];1893[label="vwx3410",fontsize=16,color="green",shape="box"];1894[label="vwx3610",fontsize=16,color="green",shape="box"];1895[label="vwx3410",fontsize=16,color="green",shape="box"];1896[label="vwx3610",fontsize=16,color="green",shape="box"];1897[label="vwx3410",fontsize=16,color="green",shape="box"];1898[label="vwx3610",fontsize=16,color="green",shape="box"];1899[label="vwx3410",fontsize=16,color="green",shape="box"];1900[label="vwx3610",fontsize=16,color="green",shape="box"];1901[label="vwx3410",fontsize=16,color="green",shape="box"];1902[label="vwx3610",fontsize=16,color="green",shape="box"];1903[label="vwx3410",fontsize=16,color="green",shape="box"];1904[label="vwx3610",fontsize=16,color="green",shape="box"];1905[label="vwx3410",fontsize=16,color="green",shape="box"];1906[label="vwx3610",fontsize=16,color="green",shape="box"];1907[label="vwx3410",fontsize=16,color="green",shape="box"];1908[label="vwx3610",fontsize=16,color="green",shape="box"];1909[label="vwx3410",fontsize=16,color="green",shape="box"];1910[label="vwx3610",fontsize=16,color="green",shape="box"];1911[label="vwx3410",fontsize=16,color="green",shape="box"];1912[label="vwx3610",fontsize=16,color="green",shape="box"];1913[label="vwx3410",fontsize=16,color="green",shape="box"];1914[label="vwx3610",fontsize=16,color="green",shape="box"];1915[label="vwx3410",fontsize=16,color="green",shape="box"];1916 -> 1168[label="",style="dashed", color="red", weight=0]; 1916[label="vwx3411 < vwx3611",fontsize=16,color="magenta"];1916 -> 2022[label="",style="dashed", color="magenta", weight=3]; 1916 -> 2023[label="",style="dashed", color="magenta", weight=3]; 1917 -> 1169[label="",style="dashed", color="red", weight=0]; 1917[label="vwx3411 < vwx3611",fontsize=16,color="magenta"];1917 -> 2024[label="",style="dashed", color="magenta", weight=3]; 1917 -> 2025[label="",style="dashed", color="magenta", weight=3]; 1918 -> 1170[label="",style="dashed", color="red", weight=0]; 1918[label="vwx3411 < vwx3611",fontsize=16,color="magenta"];1918 -> 2026[label="",style="dashed", color="magenta", weight=3]; 1918 -> 2027[label="",style="dashed", color="magenta", weight=3]; 1919 -> 1171[label="",style="dashed", color="red", weight=0]; 1919[label="vwx3411 < vwx3611",fontsize=16,color="magenta"];1919 -> 2028[label="",style="dashed", color="magenta", weight=3]; 1919 -> 2029[label="",style="dashed", color="magenta", weight=3]; 1920 -> 1172[label="",style="dashed", color="red", weight=0]; 1920[label="vwx3411 < vwx3611",fontsize=16,color="magenta"];1920 -> 2030[label="",style="dashed", color="magenta", weight=3]; 1920 -> 2031[label="",style="dashed", color="magenta", weight=3]; 1921 -> 1173[label="",style="dashed", color="red", weight=0]; 1921[label="vwx3411 < vwx3611",fontsize=16,color="magenta"];1921 -> 2032[label="",style="dashed", color="magenta", weight=3]; 1921 -> 2033[label="",style="dashed", color="magenta", weight=3]; 1922 -> 1174[label="",style="dashed", color="red", weight=0]; 1922[label="vwx3411 < vwx3611",fontsize=16,color="magenta"];1922 -> 2034[label="",style="dashed", color="magenta", weight=3]; 1922 -> 2035[label="",style="dashed", color="magenta", weight=3]; 1923 -> 1175[label="",style="dashed", color="red", weight=0]; 1923[label="vwx3411 < vwx3611",fontsize=16,color="magenta"];1923 -> 2036[label="",style="dashed", color="magenta", weight=3]; 1923 -> 2037[label="",style="dashed", color="magenta", weight=3]; 1924 -> 1176[label="",style="dashed", color="red", weight=0]; 1924[label="vwx3411 < vwx3611",fontsize=16,color="magenta"];1924 -> 2038[label="",style="dashed", color="magenta", weight=3]; 1924 -> 2039[label="",style="dashed", color="magenta", weight=3]; 1925 -> 1177[label="",style="dashed", color="red", weight=0]; 1925[label="vwx3411 < vwx3611",fontsize=16,color="magenta"];1925 -> 2040[label="",style="dashed", color="magenta", weight=3]; 1925 -> 2041[label="",style="dashed", color="magenta", weight=3]; 1926 -> 1178[label="",style="dashed", color="red", weight=0]; 1926[label="vwx3411 < vwx3611",fontsize=16,color="magenta"];1926 -> 2042[label="",style="dashed", color="magenta", weight=3]; 1926 -> 2043[label="",style="dashed", color="magenta", weight=3]; 1927 -> 1179[label="",style="dashed", color="red", weight=0]; 1927[label="vwx3411 < vwx3611",fontsize=16,color="magenta"];1927 -> 2044[label="",style="dashed", color="magenta", weight=3]; 1927 -> 2045[label="",style="dashed", color="magenta", weight=3]; 1928 -> 1180[label="",style="dashed", color="red", weight=0]; 1928[label="vwx3411 < vwx3611",fontsize=16,color="magenta"];1928 -> 2046[label="",style="dashed", color="magenta", weight=3]; 1928 -> 2047[label="",style="dashed", color="magenta", weight=3]; 1929 -> 1181[label="",style="dashed", color="red", weight=0]; 1929[label="vwx3411 < vwx3611",fontsize=16,color="magenta"];1929 -> 2048[label="",style="dashed", color="magenta", weight=3]; 1929 -> 2049[label="",style="dashed", color="magenta", weight=3]; 1930[label="vwx3412 <= vwx3612",fontsize=16,color="blue",shape="box"];2806[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1930 -> 2806[label="",style="solid", color="blue", weight=9]; 2806 -> 2050[label="",style="solid", color="blue", weight=3]; 2807[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1930 -> 2807[label="",style="solid", color="blue", weight=9]; 2807 -> 2051[label="",style="solid", color="blue", weight=3]; 2808[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1930 -> 2808[label="",style="solid", color="blue", weight=9]; 2808 -> 2052[label="",style="solid", color="blue", weight=3]; 2809[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1930 -> 2809[label="",style="solid", color="blue", weight=9]; 2809 -> 2053[label="",style="solid", color="blue", weight=3]; 2810[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1930 -> 2810[label="",style="solid", color="blue", weight=9]; 2810 -> 2054[label="",style="solid", color="blue", weight=3]; 2811[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1930 -> 2811[label="",style="solid", color="blue", weight=9]; 2811 -> 2055[label="",style="solid", color="blue", weight=3]; 2812[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1930 -> 2812[label="",style="solid", color="blue", weight=9]; 2812 -> 2056[label="",style="solid", color="blue", weight=3]; 2813[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1930 -> 2813[label="",style="solid", color="blue", weight=9]; 2813 -> 2057[label="",style="solid", color="blue", weight=3]; 2814[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1930 -> 2814[label="",style="solid", color="blue", weight=9]; 2814 -> 2058[label="",style="solid", color="blue", weight=3]; 2815[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1930 -> 2815[label="",style="solid", color="blue", weight=9]; 2815 -> 2059[label="",style="solid", color="blue", weight=3]; 2816[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1930 -> 2816[label="",style="solid", color="blue", weight=9]; 2816 -> 2060[label="",style="solid", color="blue", weight=3]; 2817[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1930 -> 2817[label="",style="solid", color="blue", weight=9]; 2817 -> 2061[label="",style="solid", color="blue", weight=3]; 2818[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1930 -> 2818[label="",style="solid", color="blue", weight=9]; 2818 -> 2062[label="",style="solid", color="blue", weight=3]; 2819[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1930 -> 2819[label="",style="solid", color="blue", weight=9]; 2819 -> 2063[label="",style="solid", color="blue", weight=3]; 1931[label="vwx3411 == vwx3611",fontsize=16,color="blue",shape="box"];2820[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 2820[label="",style="solid", color="blue", weight=9]; 2820 -> 2064[label="",style="solid", color="blue", weight=3]; 2821[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 2821[label="",style="solid", color="blue", weight=9]; 2821 -> 2065[label="",style="solid", color="blue", weight=3]; 2822[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 2822[label="",style="solid", color="blue", weight=9]; 2822 -> 2066[label="",style="solid", color="blue", weight=3]; 2823[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 2823[label="",style="solid", color="blue", weight=9]; 2823 -> 2067[label="",style="solid", color="blue", weight=3]; 2824[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 2824[label="",style="solid", color="blue", weight=9]; 2824 -> 2068[label="",style="solid", color="blue", weight=3]; 2825[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 2825[label="",style="solid", color="blue", weight=9]; 2825 -> 2069[label="",style="solid", color="blue", weight=3]; 2826[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 2826[label="",style="solid", color="blue", weight=9]; 2826 -> 2070[label="",style="solid", color="blue", weight=3]; 2827[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 2827[label="",style="solid", color="blue", weight=9]; 2827 -> 2071[label="",style="solid", color="blue", weight=3]; 2828[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 2828[label="",style="solid", color="blue", weight=9]; 2828 -> 2072[label="",style="solid", color="blue", weight=3]; 2829[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 2829[label="",style="solid", color="blue", weight=9]; 2829 -> 2073[label="",style="solid", color="blue", weight=3]; 2830[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 2830[label="",style="solid", color="blue", weight=9]; 2830 -> 2074[label="",style="solid", color="blue", weight=3]; 2831[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 2831[label="",style="solid", color="blue", weight=9]; 2831 -> 2075[label="",style="solid", color="blue", weight=3]; 2832[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 2832[label="",style="solid", color="blue", weight=9]; 2832 -> 2076[label="",style="solid", color="blue", weight=3]; 2833[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 2833[label="",style="solid", color="blue", weight=9]; 2833 -> 2077[label="",style="solid", color="blue", weight=3]; 1932[label="vwx3610",fontsize=16,color="green",shape="box"];1933[label="vwx3410",fontsize=16,color="green",shape="box"];1934[label="vwx3610",fontsize=16,color="green",shape="box"];1935[label="vwx3410",fontsize=16,color="green",shape="box"];1936[label="vwx3610",fontsize=16,color="green",shape="box"];1937[label="vwx3410",fontsize=16,color="green",shape="box"];1938[label="vwx3610",fontsize=16,color="green",shape="box"];1939[label="vwx3410",fontsize=16,color="green",shape="box"];1940[label="vwx3610",fontsize=16,color="green",shape="box"];1941[label="vwx3410",fontsize=16,color="green",shape="box"];1942[label="vwx3610",fontsize=16,color="green",shape="box"];1943[label="vwx3410",fontsize=16,color="green",shape="box"];1944[label="vwx3610",fontsize=16,color="green",shape="box"];1945[label="vwx3410",fontsize=16,color="green",shape="box"];1946[label="vwx3610",fontsize=16,color="green",shape="box"];1947[label="vwx3410",fontsize=16,color="green",shape="box"];1948[label="vwx3610",fontsize=16,color="green",shape="box"];1949[label="vwx3410",fontsize=16,color="green",shape="box"];1950[label="vwx3610",fontsize=16,color="green",shape="box"];1951[label="vwx3410",fontsize=16,color="green",shape="box"];1952[label="vwx3610",fontsize=16,color="green",shape="box"];1953[label="vwx3410",fontsize=16,color="green",shape="box"];1954[label="vwx3610",fontsize=16,color="green",shape="box"];1955[label="vwx3410",fontsize=16,color="green",shape="box"];1956[label="vwx3610",fontsize=16,color="green",shape="box"];1957[label="vwx3410",fontsize=16,color="green",shape="box"];1958[label="vwx3610",fontsize=16,color="green",shape="box"];1959[label="vwx3410",fontsize=16,color="green",shape="box"];1186[label="primPlusNat (Succ vwx6300) (Succ vwx400000)",fontsize=16,color="black",shape="box"];1186 -> 1234[label="",style="solid", color="black", weight=3]; 1187[label="primPlusNat (Succ vwx6300) Zero",fontsize=16,color="black",shape="box"];1187 -> 1235[label="",style="solid", color="black", weight=3]; 1188[label="primPlusNat Zero (Succ vwx400000)",fontsize=16,color="black",shape="box"];1188 -> 1236[label="",style="solid", color="black", weight=3]; 1189[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];1189 -> 1237[label="",style="solid", color="black", weight=3]; 1960[label="Zero",fontsize=16,color="green",shape="box"];1961[label="Succ vwx36000",fontsize=16,color="green",shape="box"];1962[label="Succ vwx36000",fontsize=16,color="green",shape="box"];1963[label="Zero",fontsize=16,color="green",shape="box"];1964[label="vwx340",fontsize=16,color="green",shape="box"];1965[label="vwx360",fontsize=16,color="green",shape="box"];1966[label="compare1 vwx340 vwx360 False",fontsize=16,color="black",shape="box"];1966 -> 2078[label="",style="solid", color="black", weight=3]; 1967[label="compare1 vwx340 vwx360 True",fontsize=16,color="black",shape="box"];1967 -> 2079[label="",style="solid", color="black", weight=3]; 1968[label="vwx340",fontsize=16,color="green",shape="box"];1969[label="vwx360",fontsize=16,color="green",shape="box"];1970[label="compare1 vwx340 vwx360 False",fontsize=16,color="black",shape="box"];1970 -> 2080[label="",style="solid", color="black", weight=3]; 1971[label="compare1 vwx340 vwx360 True",fontsize=16,color="black",shape="box"];1971 -> 2081[label="",style="solid", color="black", weight=3]; 1972[label="vwx340",fontsize=16,color="green",shape="box"];1973[label="vwx360",fontsize=16,color="green",shape="box"];1974[label="compare1 vwx340 vwx360 False",fontsize=16,color="black",shape="box"];1974 -> 2082[label="",style="solid", color="black", weight=3]; 1975[label="compare1 vwx340 vwx360 True",fontsize=16,color="black",shape="box"];1975 -> 2083[label="",style="solid", color="black", weight=3]; 1976 -> 1529[label="",style="dashed", color="red", weight=0]; 1976[label="primCmpNat vwx34000 vwx36000",fontsize=16,color="magenta"];1976 -> 2084[label="",style="dashed", color="magenta", weight=3]; 1976 -> 2085[label="",style="dashed", color="magenta", weight=3]; 1977[label="GT",fontsize=16,color="green",shape="box"];1978[label="LT",fontsize=16,color="green",shape="box"];1979[label="EQ",fontsize=16,color="green",shape="box"];1980[label="Integer vwx34000 * Integer vwx36010",fontsize=16,color="black",shape="box"];1980 -> 2086[label="",style="solid", color="black", weight=3]; 1981[label="vwx340",fontsize=16,color="green",shape="box"];1982[label="vwx360",fontsize=16,color="green",shape="box"];1983[label="compare1 vwx340 vwx360 False",fontsize=16,color="black",shape="box"];1983 -> 2087[label="",style="solid", color="black", weight=3]; 1984[label="compare1 vwx340 vwx360 True",fontsize=16,color="black",shape="box"];1984 -> 2088[label="",style="solid", color="black", weight=3]; 1985 -> 1239[label="",style="dashed", color="red", weight=0]; 1985[label="compare vwx3400 vwx3600",fontsize=16,color="magenta"];1985 -> 2089[label="",style="dashed", color="magenta", weight=3]; 1985 -> 2090[label="",style="dashed", color="magenta", weight=3]; 1986 -> 1241[label="",style="dashed", color="red", weight=0]; 1986[label="compare vwx3400 vwx3600",fontsize=16,color="magenta"];1986 -> 2091[label="",style="dashed", color="magenta", weight=3]; 1986 -> 2092[label="",style="dashed", color="magenta", weight=3]; 1987 -> 1243[label="",style="dashed", color="red", weight=0]; 1987[label="compare vwx3400 vwx3600",fontsize=16,color="magenta"];1987 -> 2093[label="",style="dashed", color="magenta", weight=3]; 1987 -> 2094[label="",style="dashed", color="magenta", weight=3]; 1988 -> 1245[label="",style="dashed", color="red", weight=0]; 1988[label="compare vwx3400 vwx3600",fontsize=16,color="magenta"];1988 -> 2095[label="",style="dashed", color="magenta", weight=3]; 1988 -> 2096[label="",style="dashed", color="magenta", weight=3]; 1989 -> 1247[label="",style="dashed", color="red", weight=0]; 1989[label="compare vwx3400 vwx3600",fontsize=16,color="magenta"];1989 -> 2097[label="",style="dashed", color="magenta", weight=3]; 1989 -> 2098[label="",style="dashed", color="magenta", weight=3]; 1990 -> 1249[label="",style="dashed", color="red", weight=0]; 1990[label="compare vwx3400 vwx3600",fontsize=16,color="magenta"];1990 -> 2099[label="",style="dashed", color="magenta", weight=3]; 1990 -> 2100[label="",style="dashed", color="magenta", weight=3]; 1991 -> 1251[label="",style="dashed", color="red", weight=0]; 1991[label="compare vwx3400 vwx3600",fontsize=16,color="magenta"];1991 -> 2101[label="",style="dashed", color="magenta", weight=3]; 1991 -> 2102[label="",style="dashed", color="magenta", weight=3]; 1992 -> 1253[label="",style="dashed", color="red", weight=0]; 1992[label="compare vwx3400 vwx3600",fontsize=16,color="magenta"];1992 -> 2103[label="",style="dashed", color="magenta", weight=3]; 1992 -> 2104[label="",style="dashed", color="magenta", weight=3]; 1993 -> 1255[label="",style="dashed", color="red", weight=0]; 1993[label="compare vwx3400 vwx3600",fontsize=16,color="magenta"];1993 -> 2105[label="",style="dashed", color="magenta", weight=3]; 1993 -> 2106[label="",style="dashed", color="magenta", weight=3]; 1994 -> 1257[label="",style="dashed", color="red", weight=0]; 1994[label="compare vwx3400 vwx3600",fontsize=16,color="magenta"];1994 -> 2107[label="",style="dashed", color="magenta", weight=3]; 1994 -> 2108[label="",style="dashed", color="magenta", weight=3]; 1995 -> 1259[label="",style="dashed", color="red", weight=0]; 1995[label="compare vwx3400 vwx3600",fontsize=16,color="magenta"];1995 -> 2109[label="",style="dashed", color="magenta", weight=3]; 1995 -> 2110[label="",style="dashed", color="magenta", weight=3]; 1996 -> 1261[label="",style="dashed", color="red", weight=0]; 1996[label="compare vwx3400 vwx3600",fontsize=16,color="magenta"];1996 -> 2111[label="",style="dashed", color="magenta", weight=3]; 1996 -> 2112[label="",style="dashed", color="magenta", weight=3]; 1997 -> 1263[label="",style="dashed", color="red", weight=0]; 1997[label="compare vwx3400 vwx3600",fontsize=16,color="magenta"];1997 -> 2113[label="",style="dashed", color="magenta", weight=3]; 1997 -> 2114[label="",style="dashed", color="magenta", weight=3]; 1998 -> 1265[label="",style="dashed", color="red", weight=0]; 1998[label="compare vwx3400 vwx3600",fontsize=16,color="magenta"];1998 -> 2115[label="",style="dashed", color="magenta", weight=3]; 1998 -> 2116[label="",style="dashed", color="magenta", weight=3]; 1999[label="primCompAux0 vwx98 LT",fontsize=16,color="black",shape="box"];1999 -> 2117[label="",style="solid", color="black", weight=3]; 2000[label="primCompAux0 vwx98 EQ",fontsize=16,color="black",shape="box"];2000 -> 2118[label="",style="solid", color="black", weight=3]; 2001[label="primCompAux0 vwx98 GT",fontsize=16,color="black",shape="box"];2001 -> 2119[label="",style="solid", color="black", weight=3]; 2002[label="vwx340",fontsize=16,color="green",shape="box"];2003[label="vwx360",fontsize=16,color="green",shape="box"];2004[label="compare1 vwx340 vwx360 False",fontsize=16,color="black",shape="box"];2004 -> 2120[label="",style="solid", color="black", weight=3]; 2005[label="compare1 vwx340 vwx360 True",fontsize=16,color="black",shape="box"];2005 -> 2121[label="",style="solid", color="black", weight=3]; 2006 -> 336[label="",style="dashed", color="red", weight=0]; 2006[label="vwx3400 * Pos vwx36010",fontsize=16,color="magenta"];2006 -> 2122[label="",style="dashed", color="magenta", weight=3]; 2006 -> 2123[label="",style="dashed", color="magenta", weight=3]; 2007 -> 336[label="",style="dashed", color="red", weight=0]; 2007[label="Pos vwx34010 * vwx3600",fontsize=16,color="magenta"];2007 -> 2124[label="",style="dashed", color="magenta", weight=3]; 2007 -> 2125[label="",style="dashed", color="magenta", weight=3]; 2008 -> 336[label="",style="dashed", color="red", weight=0]; 2008[label="vwx3400 * Pos vwx36010",fontsize=16,color="magenta"];2008 -> 2126[label="",style="dashed", color="magenta", weight=3]; 2008 -> 2127[label="",style="dashed", color="magenta", weight=3]; 2009 -> 336[label="",style="dashed", color="red", weight=0]; 2009[label="Neg vwx34010 * vwx3600",fontsize=16,color="magenta"];2009 -> 2128[label="",style="dashed", color="magenta", weight=3]; 2009 -> 2129[label="",style="dashed", color="magenta", weight=3]; 2010 -> 336[label="",style="dashed", color="red", weight=0]; 2010[label="vwx3400 * Neg vwx36010",fontsize=16,color="magenta"];2010 -> 2130[label="",style="dashed", color="magenta", weight=3]; 2010 -> 2131[label="",style="dashed", color="magenta", weight=3]; 2011 -> 336[label="",style="dashed", color="red", weight=0]; 2011[label="Pos vwx34010 * vwx3600",fontsize=16,color="magenta"];2011 -> 2132[label="",style="dashed", color="magenta", weight=3]; 2011 -> 2133[label="",style="dashed", color="magenta", weight=3]; 2012 -> 336[label="",style="dashed", color="red", weight=0]; 2012[label="vwx3400 * Neg vwx36010",fontsize=16,color="magenta"];2012 -> 2134[label="",style="dashed", color="magenta", weight=3]; 2012 -> 2135[label="",style="dashed", color="magenta", weight=3]; 2013 -> 336[label="",style="dashed", color="red", weight=0]; 2013[label="Neg vwx34010 * vwx3600",fontsize=16,color="magenta"];2013 -> 2136[label="",style="dashed", color="magenta", weight=3]; 2013 -> 2137[label="",style="dashed", color="magenta", weight=3]; 2014 -> 336[label="",style="dashed", color="red", weight=0]; 2014[label="vwx3400 * Pos vwx36010",fontsize=16,color="magenta"];2014 -> 2138[label="",style="dashed", color="magenta", weight=3]; 2014 -> 2139[label="",style="dashed", color="magenta", weight=3]; 2015 -> 336[label="",style="dashed", color="red", weight=0]; 2015[label="Pos vwx34010 * vwx3600",fontsize=16,color="magenta"];2015 -> 2140[label="",style="dashed", color="magenta", weight=3]; 2015 -> 2141[label="",style="dashed", color="magenta", weight=3]; 2016 -> 336[label="",style="dashed", color="red", weight=0]; 2016[label="vwx3400 * Pos vwx36010",fontsize=16,color="magenta"];2016 -> 2142[label="",style="dashed", color="magenta", weight=3]; 2016 -> 2143[label="",style="dashed", color="magenta", weight=3]; 2017 -> 336[label="",style="dashed", color="red", weight=0]; 2017[label="Neg vwx34010 * vwx3600",fontsize=16,color="magenta"];2017 -> 2144[label="",style="dashed", color="magenta", weight=3]; 2017 -> 2145[label="",style="dashed", color="magenta", weight=3]; 2018 -> 336[label="",style="dashed", color="red", weight=0]; 2018[label="vwx3400 * Neg vwx36010",fontsize=16,color="magenta"];2018 -> 2146[label="",style="dashed", color="magenta", weight=3]; 2018 -> 2147[label="",style="dashed", color="magenta", weight=3]; 2019 -> 336[label="",style="dashed", color="red", weight=0]; 2019[label="Pos vwx34010 * vwx3600",fontsize=16,color="magenta"];2019 -> 2148[label="",style="dashed", color="magenta", weight=3]; 2019 -> 2149[label="",style="dashed", color="magenta", weight=3]; 2020 -> 336[label="",style="dashed", color="red", weight=0]; 2020[label="vwx3400 * Neg vwx36010",fontsize=16,color="magenta"];2020 -> 2150[label="",style="dashed", color="magenta", weight=3]; 2020 -> 2151[label="",style="dashed", color="magenta", weight=3]; 2021 -> 336[label="",style="dashed", color="red", weight=0]; 2021[label="Neg vwx34010 * vwx3600",fontsize=16,color="magenta"];2021 -> 2152[label="",style="dashed", color="magenta", weight=3]; 2021 -> 2153[label="",style="dashed", color="magenta", weight=3]; 2022[label="vwx3411",fontsize=16,color="green",shape="box"];2023[label="vwx3611",fontsize=16,color="green",shape="box"];2024[label="vwx3411",fontsize=16,color="green",shape="box"];2025[label="vwx3611",fontsize=16,color="green",shape="box"];2026[label="vwx3411",fontsize=16,color="green",shape="box"];2027[label="vwx3611",fontsize=16,color="green",shape="box"];2028[label="vwx3411",fontsize=16,color="green",shape="box"];2029[label="vwx3611",fontsize=16,color="green",shape="box"];2030[label="vwx3411",fontsize=16,color="green",shape="box"];2031[label="vwx3611",fontsize=16,color="green",shape="box"];2032[label="vwx3411",fontsize=16,color="green",shape="box"];2033[label="vwx3611",fontsize=16,color="green",shape="box"];2034[label="vwx3411",fontsize=16,color="green",shape="box"];2035[label="vwx3611",fontsize=16,color="green",shape="box"];2036[label="vwx3411",fontsize=16,color="green",shape="box"];2037[label="vwx3611",fontsize=16,color="green",shape="box"];2038[label="vwx3411",fontsize=16,color="green",shape="box"];2039[label="vwx3611",fontsize=16,color="green",shape="box"];2040[label="vwx3411",fontsize=16,color="green",shape="box"];2041[label="vwx3611",fontsize=16,color="green",shape="box"];2042[label="vwx3411",fontsize=16,color="green",shape="box"];2043[label="vwx3611",fontsize=16,color="green",shape="box"];2044[label="vwx3411",fontsize=16,color="green",shape="box"];2045[label="vwx3611",fontsize=16,color="green",shape="box"];2046[label="vwx3411",fontsize=16,color="green",shape="box"];2047[label="vwx3611",fontsize=16,color="green",shape="box"];2048[label="vwx3411",fontsize=16,color="green",shape="box"];2049[label="vwx3611",fontsize=16,color="green",shape="box"];2050 -> 1204[label="",style="dashed", color="red", weight=0]; 2050[label="vwx3412 <= vwx3612",fontsize=16,color="magenta"];2050 -> 2154[label="",style="dashed", color="magenta", weight=3]; 2050 -> 2155[label="",style="dashed", color="magenta", weight=3]; 2051 -> 1205[label="",style="dashed", color="red", weight=0]; 2051[label="vwx3412 <= vwx3612",fontsize=16,color="magenta"];2051 -> 2156[label="",style="dashed", color="magenta", weight=3]; 2051 -> 2157[label="",style="dashed", color="magenta", weight=3]; 2052 -> 1206[label="",style="dashed", color="red", weight=0]; 2052[label="vwx3412 <= vwx3612",fontsize=16,color="magenta"];2052 -> 2158[label="",style="dashed", color="magenta", weight=3]; 2052 -> 2159[label="",style="dashed", color="magenta", weight=3]; 2053 -> 1207[label="",style="dashed", color="red", weight=0]; 2053[label="vwx3412 <= vwx3612",fontsize=16,color="magenta"];2053 -> 2160[label="",style="dashed", color="magenta", weight=3]; 2053 -> 2161[label="",style="dashed", color="magenta", weight=3]; 2054 -> 1208[label="",style="dashed", color="red", weight=0]; 2054[label="vwx3412 <= vwx3612",fontsize=16,color="magenta"];2054 -> 2162[label="",style="dashed", color="magenta", weight=3]; 2054 -> 2163[label="",style="dashed", color="magenta", weight=3]; 2055 -> 1209[label="",style="dashed", color="red", weight=0]; 2055[label="vwx3412 <= vwx3612",fontsize=16,color="magenta"];2055 -> 2164[label="",style="dashed", color="magenta", weight=3]; 2055 -> 2165[label="",style="dashed", color="magenta", weight=3]; 2056 -> 1210[label="",style="dashed", color="red", weight=0]; 2056[label="vwx3412 <= vwx3612",fontsize=16,color="magenta"];2056 -> 2166[label="",style="dashed", color="magenta", weight=3]; 2056 -> 2167[label="",style="dashed", color="magenta", weight=3]; 2057 -> 1211[label="",style="dashed", color="red", weight=0]; 2057[label="vwx3412 <= vwx3612",fontsize=16,color="magenta"];2057 -> 2168[label="",style="dashed", color="magenta", weight=3]; 2057 -> 2169[label="",style="dashed", color="magenta", weight=3]; 2058 -> 1212[label="",style="dashed", color="red", weight=0]; 2058[label="vwx3412 <= vwx3612",fontsize=16,color="magenta"];2058 -> 2170[label="",style="dashed", color="magenta", weight=3]; 2058 -> 2171[label="",style="dashed", color="magenta", weight=3]; 2059 -> 1213[label="",style="dashed", color="red", weight=0]; 2059[label="vwx3412 <= vwx3612",fontsize=16,color="magenta"];2059 -> 2172[label="",style="dashed", color="magenta", weight=3]; 2059 -> 2173[label="",style="dashed", color="magenta", weight=3]; 2060 -> 1214[label="",style="dashed", color="red", weight=0]; 2060[label="vwx3412 <= vwx3612",fontsize=16,color="magenta"];2060 -> 2174[label="",style="dashed", color="magenta", weight=3]; 2060 -> 2175[label="",style="dashed", color="magenta", weight=3]; 2061 -> 1215[label="",style="dashed", color="red", weight=0]; 2061[label="vwx3412 <= vwx3612",fontsize=16,color="magenta"];2061 -> 2176[label="",style="dashed", color="magenta", weight=3]; 2061 -> 2177[label="",style="dashed", color="magenta", weight=3]; 2062 -> 1216[label="",style="dashed", color="red", weight=0]; 2062[label="vwx3412 <= vwx3612",fontsize=16,color="magenta"];2062 -> 2178[label="",style="dashed", color="magenta", weight=3]; 2062 -> 2179[label="",style="dashed", color="magenta", weight=3]; 2063 -> 1217[label="",style="dashed", color="red", weight=0]; 2063[label="vwx3412 <= vwx3612",fontsize=16,color="magenta"];2063 -> 2180[label="",style="dashed", color="magenta", weight=3]; 2063 -> 2181[label="",style="dashed", color="magenta", weight=3]; 2064 -> 114[label="",style="dashed", color="red", weight=0]; 2064[label="vwx3411 == vwx3611",fontsize=16,color="magenta"];2064 -> 2182[label="",style="dashed", color="magenta", weight=3]; 2064 -> 2183[label="",style="dashed", color="magenta", weight=3]; 2065 -> 116[label="",style="dashed", color="red", weight=0]; 2065[label="vwx3411 == vwx3611",fontsize=16,color="magenta"];2065 -> 2184[label="",style="dashed", color="magenta", weight=3]; 2065 -> 2185[label="",style="dashed", color="magenta", weight=3]; 2066 -> 121[label="",style="dashed", color="red", weight=0]; 2066[label="vwx3411 == vwx3611",fontsize=16,color="magenta"];2066 -> 2186[label="",style="dashed", color="magenta", weight=3]; 2066 -> 2187[label="",style="dashed", color="magenta", weight=3]; 2067 -> 123[label="",style="dashed", color="red", weight=0]; 2067[label="vwx3411 == vwx3611",fontsize=16,color="magenta"];2067 -> 2188[label="",style="dashed", color="magenta", weight=3]; 2067 -> 2189[label="",style="dashed", color="magenta", weight=3]; 2068 -> 127[label="",style="dashed", color="red", weight=0]; 2068[label="vwx3411 == vwx3611",fontsize=16,color="magenta"];2068 -> 2190[label="",style="dashed", color="magenta", weight=3]; 2068 -> 2191[label="",style="dashed", color="magenta", weight=3]; 2069 -> 122[label="",style="dashed", color="red", weight=0]; 2069[label="vwx3411 == vwx3611",fontsize=16,color="magenta"];2069 -> 2192[label="",style="dashed", color="magenta", weight=3]; 2069 -> 2193[label="",style="dashed", color="magenta", weight=3]; 2070 -> 119[label="",style="dashed", color="red", weight=0]; 2070[label="vwx3411 == vwx3611",fontsize=16,color="magenta"];2070 -> 2194[label="",style="dashed", color="magenta", weight=3]; 2070 -> 2195[label="",style="dashed", color="magenta", weight=3]; 2071 -> 126[label="",style="dashed", color="red", weight=0]; 2071[label="vwx3411 == vwx3611",fontsize=16,color="magenta"];2071 -> 2196[label="",style="dashed", color="magenta", weight=3]; 2071 -> 2197[label="",style="dashed", color="magenta", weight=3]; 2072 -> 120[label="",style="dashed", color="red", weight=0]; 2072[label="vwx3411 == vwx3611",fontsize=16,color="magenta"];2072 -> 2198[label="",style="dashed", color="magenta", weight=3]; 2072 -> 2199[label="",style="dashed", color="magenta", weight=3]; 2073 -> 125[label="",style="dashed", color="red", weight=0]; 2073[label="vwx3411 == vwx3611",fontsize=16,color="magenta"];2073 -> 2200[label="",style="dashed", color="magenta", weight=3]; 2073 -> 2201[label="",style="dashed", color="magenta", weight=3]; 2074 -> 117[label="",style="dashed", color="red", weight=0]; 2074[label="vwx3411 == vwx3611",fontsize=16,color="magenta"];2074 -> 2202[label="",style="dashed", color="magenta", weight=3]; 2074 -> 2203[label="",style="dashed", color="magenta", weight=3]; 2075 -> 118[label="",style="dashed", color="red", weight=0]; 2075[label="vwx3411 == vwx3611",fontsize=16,color="magenta"];2075 -> 2204[label="",style="dashed", color="magenta", weight=3]; 2075 -> 2205[label="",style="dashed", color="magenta", weight=3]; 2076 -> 124[label="",style="dashed", color="red", weight=0]; 2076[label="vwx3411 == vwx3611",fontsize=16,color="magenta"];2076 -> 2206[label="",style="dashed", color="magenta", weight=3]; 2076 -> 2207[label="",style="dashed", color="magenta", weight=3]; 2077 -> 115[label="",style="dashed", color="red", weight=0]; 2077[label="vwx3411 == vwx3611",fontsize=16,color="magenta"];2077 -> 2208[label="",style="dashed", color="magenta", weight=3]; 2077 -> 2209[label="",style="dashed", color="magenta", weight=3]; 1234[label="Succ (Succ (primPlusNat vwx6300 vwx400000))",fontsize=16,color="green",shape="box"];1234 -> 1316[label="",style="dashed", color="green", weight=3]; 1235[label="Succ vwx6300",fontsize=16,color="green",shape="box"];1236[label="Succ vwx400000",fontsize=16,color="green",shape="box"];1237[label="Zero",fontsize=16,color="green",shape="box"];2078[label="compare0 vwx340 vwx360 otherwise",fontsize=16,color="black",shape="box"];2078 -> 2210[label="",style="solid", color="black", weight=3]; 2079[label="LT",fontsize=16,color="green",shape="box"];2080[label="compare0 vwx340 vwx360 otherwise",fontsize=16,color="black",shape="box"];2080 -> 2211[label="",style="solid", color="black", weight=3]; 2081[label="LT",fontsize=16,color="green",shape="box"];2082[label="compare0 vwx340 vwx360 otherwise",fontsize=16,color="black",shape="box"];2082 -> 2212[label="",style="solid", color="black", weight=3]; 2083[label="LT",fontsize=16,color="green",shape="box"];2084[label="vwx34000",fontsize=16,color="green",shape="box"];2085[label="vwx36000",fontsize=16,color="green",shape="box"];2086[label="Integer (primMulInt vwx34000 vwx36010)",fontsize=16,color="green",shape="box"];2086 -> 2213[label="",style="dashed", color="green", weight=3]; 2087[label="compare0 vwx340 vwx360 otherwise",fontsize=16,color="black",shape="box"];2087 -> 2214[label="",style="solid", color="black", weight=3]; 2088[label="LT",fontsize=16,color="green",shape="box"];2089[label="vwx3400",fontsize=16,color="green",shape="box"];2090[label="vwx3600",fontsize=16,color="green",shape="box"];2091[label="vwx3400",fontsize=16,color="green",shape="box"];2092[label="vwx3600",fontsize=16,color="green",shape="box"];2093[label="vwx3400",fontsize=16,color="green",shape="box"];2094[label="vwx3600",fontsize=16,color="green",shape="box"];2095[label="vwx3400",fontsize=16,color="green",shape="box"];2096[label="vwx3600",fontsize=16,color="green",shape="box"];2097[label="vwx3400",fontsize=16,color="green",shape="box"];2098[label="vwx3600",fontsize=16,color="green",shape="box"];2099[label="vwx3400",fontsize=16,color="green",shape="box"];2100[label="vwx3600",fontsize=16,color="green",shape="box"];2101[label="vwx3400",fontsize=16,color="green",shape="box"];2102[label="vwx3600",fontsize=16,color="green",shape="box"];2103[label="vwx3400",fontsize=16,color="green",shape="box"];2104[label="vwx3600",fontsize=16,color="green",shape="box"];2105[label="vwx3400",fontsize=16,color="green",shape="box"];2106[label="vwx3600",fontsize=16,color="green",shape="box"];2107[label="vwx3400",fontsize=16,color="green",shape="box"];2108[label="vwx3600",fontsize=16,color="green",shape="box"];2109[label="vwx3400",fontsize=16,color="green",shape="box"];2110[label="vwx3600",fontsize=16,color="green",shape="box"];2111[label="vwx3400",fontsize=16,color="green",shape="box"];2112[label="vwx3600",fontsize=16,color="green",shape="box"];2113[label="vwx3400",fontsize=16,color="green",shape="box"];2114[label="vwx3600",fontsize=16,color="green",shape="box"];2115[label="vwx3400",fontsize=16,color="green",shape="box"];2116[label="vwx3600",fontsize=16,color="green",shape="box"];2117[label="LT",fontsize=16,color="green",shape="box"];2118[label="vwx98",fontsize=16,color="green",shape="box"];2119[label="GT",fontsize=16,color="green",shape="box"];2120[label="compare0 vwx340 vwx360 otherwise",fontsize=16,color="black",shape="box"];2120 -> 2215[label="",style="solid", color="black", weight=3]; 2121[label="LT",fontsize=16,color="green",shape="box"];2122[label="vwx3400",fontsize=16,color="green",shape="box"];2123[label="Pos vwx36010",fontsize=16,color="green",shape="box"];2124[label="Pos vwx34010",fontsize=16,color="green",shape="box"];2125[label="vwx3600",fontsize=16,color="green",shape="box"];2126[label="vwx3400",fontsize=16,color="green",shape="box"];2127[label="Pos vwx36010",fontsize=16,color="green",shape="box"];2128[label="Neg vwx34010",fontsize=16,color="green",shape="box"];2129[label="vwx3600",fontsize=16,color="green",shape="box"];2130[label="vwx3400",fontsize=16,color="green",shape="box"];2131[label="Neg vwx36010",fontsize=16,color="green",shape="box"];2132[label="Pos vwx34010",fontsize=16,color="green",shape="box"];2133[label="vwx3600",fontsize=16,color="green",shape="box"];2134[label="vwx3400",fontsize=16,color="green",shape="box"];2135[label="Neg vwx36010",fontsize=16,color="green",shape="box"];2136[label="Neg vwx34010",fontsize=16,color="green",shape="box"];2137[label="vwx3600",fontsize=16,color="green",shape="box"];2138[label="vwx3400",fontsize=16,color="green",shape="box"];2139[label="Pos vwx36010",fontsize=16,color="green",shape="box"];2140[label="Pos vwx34010",fontsize=16,color="green",shape="box"];2141[label="vwx3600",fontsize=16,color="green",shape="box"];2142[label="vwx3400",fontsize=16,color="green",shape="box"];2143[label="Pos vwx36010",fontsize=16,color="green",shape="box"];2144[label="Neg vwx34010",fontsize=16,color="green",shape="box"];2145[label="vwx3600",fontsize=16,color="green",shape="box"];2146[label="vwx3400",fontsize=16,color="green",shape="box"];2147[label="Neg vwx36010",fontsize=16,color="green",shape="box"];2148[label="Pos vwx34010",fontsize=16,color="green",shape="box"];2149[label="vwx3600",fontsize=16,color="green",shape="box"];2150[label="vwx3400",fontsize=16,color="green",shape="box"];2151[label="Neg vwx36010",fontsize=16,color="green",shape="box"];2152[label="Neg vwx34010",fontsize=16,color="green",shape="box"];2153[label="vwx3600",fontsize=16,color="green",shape="box"];2154[label="vwx3412",fontsize=16,color="green",shape="box"];2155[label="vwx3612",fontsize=16,color="green",shape="box"];2156[label="vwx3412",fontsize=16,color="green",shape="box"];2157[label="vwx3612",fontsize=16,color="green",shape="box"];2158[label="vwx3412",fontsize=16,color="green",shape="box"];2159[label="vwx3612",fontsize=16,color="green",shape="box"];2160[label="vwx3412",fontsize=16,color="green",shape="box"];2161[label="vwx3612",fontsize=16,color="green",shape="box"];2162[label="vwx3412",fontsize=16,color="green",shape="box"];2163[label="vwx3612",fontsize=16,color="green",shape="box"];2164[label="vwx3412",fontsize=16,color="green",shape="box"];2165[label="vwx3612",fontsize=16,color="green",shape="box"];2166[label="vwx3412",fontsize=16,color="green",shape="box"];2167[label="vwx3612",fontsize=16,color="green",shape="box"];2168[label="vwx3412",fontsize=16,color="green",shape="box"];2169[label="vwx3612",fontsize=16,color="green",shape="box"];2170[label="vwx3412",fontsize=16,color="green",shape="box"];2171[label="vwx3612",fontsize=16,color="green",shape="box"];2172[label="vwx3412",fontsize=16,color="green",shape="box"];2173[label="vwx3612",fontsize=16,color="green",shape="box"];2174[label="vwx3412",fontsize=16,color="green",shape="box"];2175[label="vwx3612",fontsize=16,color="green",shape="box"];2176[label="vwx3412",fontsize=16,color="green",shape="box"];2177[label="vwx3612",fontsize=16,color="green",shape="box"];2178[label="vwx3412",fontsize=16,color="green",shape="box"];2179[label="vwx3612",fontsize=16,color="green",shape="box"];2180[label="vwx3412",fontsize=16,color="green",shape="box"];2181[label="vwx3612",fontsize=16,color="green",shape="box"];2182[label="vwx3611",fontsize=16,color="green",shape="box"];2183[label="vwx3411",fontsize=16,color="green",shape="box"];2184[label="vwx3611",fontsize=16,color="green",shape="box"];2185[label="vwx3411",fontsize=16,color="green",shape="box"];2186[label="vwx3611",fontsize=16,color="green",shape="box"];2187[label="vwx3411",fontsize=16,color="green",shape="box"];2188[label="vwx3611",fontsize=16,color="green",shape="box"];2189[label="vwx3411",fontsize=16,color="green",shape="box"];2190[label="vwx3611",fontsize=16,color="green",shape="box"];2191[label="vwx3411",fontsize=16,color="green",shape="box"];2192[label="vwx3611",fontsize=16,color="green",shape="box"];2193[label="vwx3411",fontsize=16,color="green",shape="box"];2194[label="vwx3611",fontsize=16,color="green",shape="box"];2195[label="vwx3411",fontsize=16,color="green",shape="box"];2196[label="vwx3611",fontsize=16,color="green",shape="box"];2197[label="vwx3411",fontsize=16,color="green",shape="box"];2198[label="vwx3611",fontsize=16,color="green",shape="box"];2199[label="vwx3411",fontsize=16,color="green",shape="box"];2200[label="vwx3611",fontsize=16,color="green",shape="box"];2201[label="vwx3411",fontsize=16,color="green",shape="box"];2202[label="vwx3611",fontsize=16,color="green",shape="box"];2203[label="vwx3411",fontsize=16,color="green",shape="box"];2204[label="vwx3611",fontsize=16,color="green",shape="box"];2205[label="vwx3411",fontsize=16,color="green",shape="box"];2206[label="vwx3611",fontsize=16,color="green",shape="box"];2207[label="vwx3411",fontsize=16,color="green",shape="box"];2208[label="vwx3611",fontsize=16,color="green",shape="box"];2209[label="vwx3411",fontsize=16,color="green",shape="box"];1316 -> 1147[label="",style="dashed", color="red", weight=0]; 1316[label="primPlusNat vwx6300 vwx400000",fontsize=16,color="magenta"];1316 -> 1401[label="",style="dashed", color="magenta", weight=3]; 1316 -> 1402[label="",style="dashed", color="magenta", weight=3]; 2210[label="compare0 vwx340 vwx360 True",fontsize=16,color="black",shape="box"];2210 -> 2216[label="",style="solid", color="black", weight=3]; 2211[label="compare0 vwx340 vwx360 True",fontsize=16,color="black",shape="box"];2211 -> 2217[label="",style="solid", color="black", weight=3]; 2212[label="compare0 vwx340 vwx360 True",fontsize=16,color="black",shape="box"];2212 -> 2218[label="",style="solid", color="black", weight=3]; 2213 -> 549[label="",style="dashed", color="red", weight=0]; 2213[label="primMulInt vwx34000 vwx36010",fontsize=16,color="magenta"];2213 -> 2219[label="",style="dashed", color="magenta", weight=3]; 2213 -> 2220[label="",style="dashed", color="magenta", weight=3]; 2214[label="compare0 vwx340 vwx360 True",fontsize=16,color="black",shape="box"];2214 -> 2221[label="",style="solid", color="black", weight=3]; 2215[label="compare0 vwx340 vwx360 True",fontsize=16,color="black",shape="box"];2215 -> 2222[label="",style="solid", color="black", weight=3]; 1401[label="vwx400000",fontsize=16,color="green",shape="box"];1402[label="vwx6300",fontsize=16,color="green",shape="box"];2216[label="GT",fontsize=16,color="green",shape="box"];2217[label="GT",fontsize=16,color="green",shape="box"];2218[label="GT",fontsize=16,color="green",shape="box"];2219[label="vwx34000",fontsize=16,color="green",shape="box"];2220[label="vwx36010",fontsize=16,color="green",shape="box"];2221[label="GT",fontsize=16,color="green",shape="box"];2222[label="GT",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(vwx34000), Succ(vwx36000)) -> new_primCmpNat(vwx34000, vwx36000) 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(vwx34000), Succ(vwx36000)) -> new_primCmpNat(vwx34000, vwx36000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (17) YES ---------------------------------------- (18) Obligation: Q DP problem: The TRS P consists of the following rules: new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), ga, app(ty_[], gd)) -> new_esEs0(vwx301, vwx401, gd) new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(app(ty_@3, bab), bac), bad), he) -> new_esEs3(vwx300, vwx400, bab, bac, bad) new_esEs(Left(vwx300), Left(vwx400), app(ty_[], bc), bb) -> new_esEs0(vwx300, vwx400, bc) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(app(ty_@3, bdh), bea), beb), baf, bcb) -> new_esEs3(vwx300, vwx400, bdh, bea, beb) new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), ga, app(app(ty_@2, gf), gg)) -> new_esEs2(vwx301, vwx401, gf, gg) new_esEs(Right(vwx300), Right(vwx400), cb, app(app(app(ty_@3, db), dc), dd)) -> new_esEs3(vwx300, vwx400, db, dc, dd) new_esEs0(:(vwx300, vwx301), :(vwx400, vwx401), app(app(ty_@2, eb), ec)) -> new_esEs2(vwx300, vwx400, eb, ec) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, baf, app(app(ty_Either, bag), bah)) -> new_esEs(vwx302, vwx402, bag, bah) new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), app(ty_[], hf), he) -> new_esEs0(vwx300, vwx400, hf) new_esEs1(Just(vwx300), Just(vwx400), app(app(ty_Either, eg), eh)) -> new_esEs(vwx300, vwx400, eg, eh) new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(ty_Either, hc), hd), he) -> new_esEs(vwx300, vwx400, hc, hd) new_esEs0(:(vwx300, vwx301), :(vwx400, vwx401), app(app(ty_Either, df), dg)) -> new_esEs(vwx300, vwx400, df, dg) new_esEs0(:(vwx300, vwx301), :(vwx400, vwx401), app(ty_[], dh)) -> new_esEs0(vwx300, vwx400, dh) new_esEs(Right(vwx300), Right(vwx400), cb, app(app(ty_@2, cg), da)) -> new_esEs2(vwx300, vwx400, cg, da) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, baf, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs3(vwx302, vwx402, bbe, bbf, bbg) new_esEs(Right(vwx300), Right(vwx400), cb, app(ty_Maybe, cf)) -> new_esEs1(vwx300, vwx400, cf) new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(ty_@2, hh), baa), he) -> new_esEs2(vwx300, vwx400, hh, baa) new_esEs(Left(vwx300), Left(vwx400), app(app(ty_@2, be), bf), bb) -> new_esEs2(vwx300, vwx400, be, bf) new_esEs(Right(vwx300), Right(vwx400), cb, app(app(ty_Either, cc), cd)) -> new_esEs(vwx300, vwx400, cc, cd) new_esEs0(:(vwx300, vwx301), :(vwx400, vwx401), de) -> new_esEs0(vwx301, vwx401, de) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, app(app(ty_@2, bce), bcf), bcb) -> new_esEs2(vwx301, vwx401, bce, bcf) new_esEs0(:(vwx300, vwx301), :(vwx400, vwx401), app(ty_Maybe, ea)) -> new_esEs1(vwx300, vwx400, ea) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(ty_[], bdd), baf, bcb) -> new_esEs0(vwx300, vwx400, bdd) new_esEs1(Just(vwx300), Just(vwx400), app(ty_[], fa)) -> new_esEs0(vwx300, vwx400, fa) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, baf, app(app(ty_@2, bbc), bbd)) -> new_esEs2(vwx302, vwx402, bbc, bbd) new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), ga, app(app(app(ty_@3, gh), ha), hb)) -> new_esEs3(vwx301, vwx401, gh, ha, hb) new_esEs0(:(vwx300, vwx301), :(vwx400, vwx401), app(app(app(ty_@3, ed), ee), ef)) -> new_esEs3(vwx300, vwx400, ed, ee, ef) new_esEs1(Just(vwx300), Just(vwx400), app(app(ty_@2, fc), fd)) -> new_esEs2(vwx300, vwx400, fc, fd) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, app(app(app(ty_@3, bcg), bch), bda), bcb) -> new_esEs3(vwx301, vwx401, bcg, bch, bda) new_esEs1(Just(vwx300), Just(vwx400), app(app(app(ty_@3, ff), fg), fh)) -> new_esEs3(vwx300, vwx400, ff, fg, fh) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, baf, app(ty_[], bba)) -> new_esEs0(vwx302, vwx402, bba) new_esEs(Left(vwx300), Left(vwx400), app(app(ty_Either, h), ba), bb) -> new_esEs(vwx300, vwx400, h, ba) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(ty_@2, bdf), bdg), baf, bcb) -> new_esEs2(vwx300, vwx400, bdf, bdg) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, app(ty_[], bcc), bcb) -> new_esEs0(vwx301, vwx401, bcc) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(ty_Maybe, bde), baf, bcb) -> new_esEs1(vwx300, vwx400, bde) new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), ga, app(ty_Maybe, ge)) -> new_esEs1(vwx301, vwx401, ge) new_esEs(Left(vwx300), Left(vwx400), app(ty_Maybe, bd), bb) -> new_esEs1(vwx300, vwx400, bd) new_esEs(Left(vwx300), Left(vwx400), app(app(app(ty_@3, bg), bh), ca), bb) -> new_esEs3(vwx300, vwx400, bg, bh, ca) new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), ga, app(app(ty_Either, gb), gc)) -> new_esEs(vwx301, vwx401, gb, gc) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, app(ty_Maybe, bcd), bcb) -> new_esEs1(vwx301, vwx401, bcd) new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), app(ty_Maybe, hg), he) -> new_esEs1(vwx300, vwx400, hg) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(ty_Either, bdb), bdc), baf, bcb) -> new_esEs(vwx300, vwx400, bdb, bdc) new_esEs1(Just(vwx300), Just(vwx400), app(ty_Maybe, fb)) -> new_esEs1(vwx300, vwx400, fb) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, baf, app(ty_Maybe, bbb)) -> new_esEs1(vwx302, vwx402, bbb) new_esEs(Right(vwx300), Right(vwx400), cb, app(ty_[], ce)) -> new_esEs0(vwx300, vwx400, ce) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, app(app(ty_Either, bbh), bca), bcb) -> new_esEs(vwx301, vwx401, bbh, bca) 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_esEs0(:(vwx300, vwx301), :(vwx400, vwx401), app(app(ty_@2, eb), ec)) -> new_esEs2(vwx300, vwx400, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(:(vwx300, vwx301), :(vwx400, vwx401), app(app(ty_Either, df), dg)) -> new_esEs(vwx300, vwx400, df, dg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(:(vwx300, vwx301), :(vwx400, vwx401), app(app(app(ty_@3, ed), ee), ef)) -> new_esEs3(vwx300, vwx400, ed, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(:(vwx300, vwx301), :(vwx400, vwx401), app(ty_Maybe, ea)) -> new_esEs1(vwx300, vwx400, ea) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(Just(vwx300), Just(vwx400), app(app(ty_@2, fc), fd)) -> new_esEs2(vwx300, vwx400, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Just(vwx300), Just(vwx400), app(app(ty_Either, eg), eh)) -> new_esEs(vwx300, vwx400, eg, eh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Just(vwx300), Just(vwx400), app(app(app(ty_@3, ff), fg), fh)) -> new_esEs3(vwx300, vwx400, ff, fg, fh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(Just(vwx300), Just(vwx400), app(ty_[], fa)) -> new_esEs0(vwx300, vwx400, fa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(Just(vwx300), Just(vwx400), app(ty_Maybe, fb)) -> new_esEs1(vwx300, vwx400, fb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(:(vwx300, vwx301), :(vwx400, vwx401), app(ty_[], dh)) -> new_esEs0(vwx300, vwx400, dh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(:(vwx300, vwx301), :(vwx400, vwx401), de) -> new_esEs0(vwx301, vwx401, de) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, app(app(ty_@2, bce), bcf), bcb) -> new_esEs2(vwx301, vwx401, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, baf, app(app(ty_@2, bbc), bbd)) -> new_esEs2(vwx302, vwx402, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(ty_@2, bdf), bdg), baf, bcb) -> new_esEs2(vwx300, vwx400, bdf, bdg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), ga, app(app(ty_@2, gf), gg)) -> new_esEs2(vwx301, vwx401, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(ty_@2, hh), baa), he) -> new_esEs2(vwx300, vwx400, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(Right(vwx300), Right(vwx400), cb, app(app(ty_@2, cg), da)) -> new_esEs2(vwx300, vwx400, cg, da) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(Left(vwx300), Left(vwx400), app(app(ty_@2, be), bf), bb) -> new_esEs2(vwx300, vwx400, be, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, baf, app(app(ty_Either, bag), bah)) -> new_esEs(vwx302, vwx402, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(ty_Either, bdb), bdc), baf, bcb) -> new_esEs(vwx300, vwx400, bdb, bdc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, app(app(ty_Either, bbh), bca), bcb) -> new_esEs(vwx301, vwx401, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(app(ty_@3, bdh), bea), beb), baf, bcb) -> new_esEs3(vwx300, vwx400, bdh, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, baf, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs3(vwx302, vwx402, bbe, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, app(app(app(ty_@3, bcg), bch), bda), bcb) -> new_esEs3(vwx301, vwx401, bcg, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(ty_[], bdd), baf, bcb) -> new_esEs0(vwx300, vwx400, bdd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, baf, app(ty_[], bba)) -> new_esEs0(vwx302, vwx402, bba) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, app(ty_[], bcc), bcb) -> new_esEs0(vwx301, vwx401, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(ty_Maybe, bde), baf, bcb) -> new_esEs1(vwx300, vwx400, bde) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, app(ty_Maybe, bcd), bcb) -> new_esEs1(vwx301, vwx401, bcd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, baf, app(ty_Maybe, bbb)) -> new_esEs1(vwx302, vwx402, bbb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(ty_Either, hc), hd), he) -> new_esEs(vwx300, vwx400, hc, hd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), ga, app(app(ty_Either, gb), gc)) -> new_esEs(vwx301, vwx401, gb, gc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(Right(vwx300), Right(vwx400), cb, app(app(ty_Either, cc), cd)) -> new_esEs(vwx300, vwx400, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(Left(vwx300), Left(vwx400), app(app(ty_Either, h), ba), bb) -> new_esEs(vwx300, vwx400, h, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(app(ty_@3, bab), bac), bad), he) -> new_esEs3(vwx300, vwx400, bab, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), ga, app(app(app(ty_@3, gh), ha), hb)) -> new_esEs3(vwx301, vwx401, gh, ha, hb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs(Right(vwx300), Right(vwx400), cb, app(app(app(ty_@3, db), dc), dd)) -> new_esEs3(vwx300, vwx400, db, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs(Left(vwx300), Left(vwx400), app(app(app(ty_@3, bg), bh), ca), bb) -> new_esEs3(vwx300, vwx400, bg, bh, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), ga, app(ty_[], gd)) -> new_esEs0(vwx301, vwx401, gd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), app(ty_[], hf), he) -> new_esEs0(vwx300, vwx400, hf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), ga, app(ty_Maybe, ge)) -> new_esEs1(vwx301, vwx401, ge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), app(ty_Maybe, hg), he) -> new_esEs1(vwx300, vwx400, hg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(Left(vwx300), Left(vwx400), app(ty_[], bc), bb) -> new_esEs0(vwx300, vwx400, bc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(Right(vwx300), Right(vwx400), cb, app(ty_[], ce)) -> new_esEs0(vwx300, vwx400, ce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(Right(vwx300), Right(vwx400), cb, app(ty_Maybe, cf)) -> new_esEs1(vwx300, vwx400, cf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(Left(vwx300), Left(vwx400), app(ty_Maybe, bd), bb) -> new_esEs1(vwx300, vwx400, bd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 ---------------------------------------- (20) YES ---------------------------------------- (21) Obligation: Q DP problem: The TRS P consists of the following rules: new_ltEs(Right(vwx3410), Right(vwx3610), cb, app(ty_Maybe, dd)) -> new_ltEs3(vwx3410, vwx3610, dd) new_compare20(@2(vwx340, @2(vwx3410, vwx3411)), @2(vwx360, @2(vwx3610, vwx3611)), False, hd, app(app(ty_@2, app(ty_[], ee)), dg)) -> new_lt2(vwx3410, vwx3610, ee) new_ltEs1(@3(vwx3410, vwx3411, vwx3412), @3(vwx3610, vwx3611, vwx3612), bah, app(app(ty_@2, bbc), bbd), hh) -> new_lt0(vwx3411, vwx3611, bbc, bbd) new_ltEs0(@2(vwx3410, vwx3411), @2(vwx3610, vwx3611), eg, app(ty_Maybe, ga)) -> new_ltEs3(vwx3411, vwx3611, ga) new_compare20(@2(vwx340, @2(vwx3410, vwx3411)), @2(vwx360, @2(vwx3610, vwx3611)), False, hd, app(app(ty_@2, eg), app(app(ty_@2, fb), fc))) -> new_ltEs0(vwx3411, vwx3611, fb, fc) new_compare3(:(vwx3400, vwx3401), :(vwx3600, vwx3601), hb) -> new_primCompAux(vwx3400, vwx3600, new_compare1(vwx3401, vwx3601, hb), hb) new_compare20(@2(vwx340, @3(vwx3410, vwx3411, vwx3412)), @2(vwx360, @3(vwx3610, vwx3611, vwx3612)), False, hd, app(app(app(ty_@3, app(app(app(ty_@3, bac), bad), bae)), hg), hh)) -> new_lt1(vwx3410, vwx3610, bac, bad, bae) new_compare20(@2(vwx340, @2(vwx3410, vwx3411)), @2(vwx360, @2(vwx3610, vwx3611)), False, hd, app(app(ty_@2, eg), app(app(app(ty_@3, fd), ff), fg))) -> new_ltEs1(vwx3411, vwx3611, fd, ff, fg) new_compare20(@2(vwx340, Left(vwx3410)), @2(vwx360, Left(vwx3610)), False, hd, app(app(ty_Either, app(app(ty_@2, bc), bd)), bb)) -> new_ltEs0(vwx3410, vwx3610, bc, bd) new_compare20(@2(vwx340, @3(vwx3410, vwx3411, vwx3412)), @2(vwx360, @3(vwx3610, vwx3611, vwx3612)), False, hd, app(app(app(ty_@3, bah), app(app(app(ty_@3, bbe), bbf), bbg)), hh)) -> new_lt1(vwx3411, vwx3611, bbe, bbf, bbg) new_compare20(@2(vwx340, @3(vwx3410, vwx3411, vwx3412)), @2(vwx360, @3(vwx3610, vwx3611, vwx3612)), False, hd, app(app(app(ty_@3, bah), hg), app(ty_[], bda))) -> new_ltEs2(vwx3412, vwx3612, bda) new_ltEs1(@3(vwx3410, vwx3411, vwx3412), @3(vwx3610, vwx3611, vwx3612), app(app(ty_Either, he), hf), hg, hh) -> new_lt(vwx3410, vwx3610, he, hf) new_lt3(vwx340, vwx360, hc) -> new_compare22(vwx340, vwx360, new_esEs7(vwx340, vwx360, hc), hc) new_compare0(vwx340, vwx360, gd, ge) -> new_compare20(vwx340, vwx360, new_esEs5(vwx340, vwx360, gd, ge), gd, ge) new_ltEs0(@2(vwx3410, vwx3411), @2(vwx3610, vwx3611), eg, app(app(ty_@2, fb), fc)) -> new_ltEs0(vwx3411, vwx3611, fb, fc) new_ltEs1(@3(vwx3410, vwx3411, vwx3412), @3(vwx3610, vwx3611, vwx3612), bah, app(app(app(ty_@3, bbe), bbf), bbg), hh) -> new_lt1(vwx3411, vwx3611, bbe, bbf, bbg) new_ltEs0(@2(vwx3410, vwx3411), @2(vwx3610, vwx3611), app(app(app(ty_@3, eb), ec), ed), dg) -> new_lt1(vwx3410, vwx3610, eb, ec, ed) new_ltEs0(@2(vwx3410, vwx3411), @2(vwx3610, vwx3611), eg, app(app(ty_Either, eh), fa)) -> new_ltEs(vwx3411, vwx3611, eh, fa) new_compare20(@2(vwx340, vwx341), @2(vwx360, vwx361), False, app(app(app(ty_@3, gg), gh), ha), gf) -> new_compare21(vwx340, vwx360, new_esEs6(vwx340, vwx360, gg, gh, ha), gg, gh, ha) new_ltEs3(Just(vwx3410), Just(vwx3610), app(ty_[], bec)) -> new_ltEs2(vwx3410, vwx3610, bec) new_ltEs0(@2(vwx3410, vwx3411), @2(vwx3610, vwx3611), eg, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs1(vwx3411, vwx3611, fd, ff, fg) new_ltEs2(vwx341, vwx361, bdc) -> new_compare3(vwx341, vwx361, bdc) new_compare20(@2(vwx340, @3(vwx3410, vwx3411, vwx3412)), @2(vwx360, @3(vwx3610, vwx3611, vwx3612)), False, hd, app(app(app(ty_@3, bah), hg), app(app(ty_@2, bcd), bce))) -> new_ltEs0(vwx3412, vwx3612, bcd, bce) new_compare20(@2(vwx340, Just(vwx3410)), @2(vwx360, Just(vwx3610)), False, hd, app(ty_Maybe, app(app(ty_@2, bdf), bdg))) -> new_ltEs0(vwx3410, vwx3610, bdf, bdg) new_primCompAux(vwx3400, vwx3600, vwx85, app(app(ty_@2, beg), beh)) -> new_compare0(vwx3400, vwx3600, beg, beh) new_ltEs0(@2(vwx3410, vwx3411), @2(vwx3610, vwx3611), app(ty_Maybe, ef), dg) -> new_lt3(vwx3410, vwx3610, ef) new_lt(vwx340, vwx360, gb, gc) -> new_compare2(vwx340, vwx360, new_esEs4(vwx340, vwx360, gb, gc), gb, gc) new_ltEs1(@3(vwx3410, vwx3411, vwx3412), @3(vwx3610, vwx3611, vwx3612), bah, app(ty_[], bbh), hh) -> new_lt2(vwx3411, vwx3611, bbh) new_ltEs(Left(vwx3410), Left(vwx3610), app(ty_Maybe, ca), bb) -> new_ltEs3(vwx3410, vwx3610, ca) new_compare20(@2(vwx340, Just(vwx3410)), @2(vwx360, Just(vwx3610)), False, hd, app(ty_Maybe, app(ty_Maybe, bed))) -> new_ltEs3(vwx3410, vwx3610, bed) new_ltEs3(Just(vwx3410), Just(vwx3610), app(app(ty_Either, bdd), bde)) -> new_ltEs(vwx3410, vwx3610, bdd, bde) new_compare20(@2(vwx340, Left(vwx3410)), @2(vwx360, Left(vwx3610)), False, hd, app(app(ty_Either, app(ty_Maybe, ca)), bb)) -> new_ltEs3(vwx3410, vwx3610, ca) new_ltEs3(Just(vwx3410), Just(vwx3610), app(app(ty_@2, bdf), bdg)) -> new_ltEs0(vwx3410, vwx3610, bdf, bdg) new_compare20(@2(vwx340, Right(vwx3410)), @2(vwx360, Right(vwx3610)), False, hd, app(app(ty_Either, cb), app(app(ty_Either, cc), cd))) -> new_ltEs(vwx3410, vwx3610, cc, cd) new_compare20(@2(vwx340, @2(vwx3410, vwx3411)), @2(vwx360, @2(vwx3610, vwx3611)), False, hd, app(app(ty_@2, eg), app(ty_[], fh))) -> new_ltEs2(vwx3411, vwx3611, fh) new_compare3(:(vwx3400, vwx3401), :(vwx3600, vwx3601), hb) -> new_compare3(vwx3401, vwx3601, hb) new_ltEs(Left(vwx3410), Left(vwx3610), app(app(ty_@2, bc), bd), bb) -> new_ltEs0(vwx3410, vwx3610, bc, bd) new_compare20(@2(vwx340, @3(vwx3410, vwx3411, vwx3412)), @2(vwx360, @3(vwx3610, vwx3611, vwx3612)), False, hd, app(app(app(ty_@3, bah), app(ty_Maybe, bca)), hh)) -> new_lt3(vwx3411, vwx3611, bca) new_ltEs1(@3(vwx3410, vwx3411, vwx3412), @3(vwx3610, vwx3611, vwx3612), bah, hg, app(ty_[], bda)) -> new_ltEs2(vwx3412, vwx3612, bda) new_compare20(@2(vwx340, @3(vwx3410, vwx3411, vwx3412)), @2(vwx360, @3(vwx3610, vwx3611, vwx3612)), False, hd, app(app(app(ty_@3, bah), app(app(ty_Either, bba), bbb)), hh)) -> new_lt(vwx3411, vwx3611, bba, bbb) new_compare20(@2(vwx340, vwx341), @2(vwx360, vwx361), False, hd, app(ty_[], bdc)) -> new_compare3(vwx341, vwx361, bdc) new_lt1(vwx340, vwx360, gg, gh, ha) -> new_compare21(vwx340, vwx360, new_esEs6(vwx340, vwx360, gg, gh, ha), gg, gh, ha) new_ltEs1(@3(vwx3410, vwx3411, vwx3412), @3(vwx3610, vwx3611, vwx3612), app(ty_Maybe, bag), hg, hh) -> new_lt3(vwx3410, vwx3610, bag) new_ltEs(Left(vwx3410), Left(vwx3610), app(app(ty_Either, h), ba), bb) -> new_ltEs(vwx3410, vwx3610, h, ba) new_compare20(@2(vwx340, Right(vwx3410)), @2(vwx360, Right(vwx3610)), False, hd, app(app(ty_Either, cb), app(app(app(ty_@3, cg), da), db))) -> new_ltEs1(vwx3410, vwx3610, cg, da, db) new_compare20(@2(vwx340, @2(vwx3410, vwx3411)), @2(vwx360, @2(vwx3610, vwx3611)), False, hd, app(app(ty_@2, app(ty_Maybe, ef)), dg)) -> new_lt3(vwx3410, vwx3610, ef) new_ltEs0(@2(vwx3410, vwx3411), @2(vwx3610, vwx3611), app(app(ty_@2, dh), ea), dg) -> new_lt0(vwx3410, vwx3610, dh, ea) new_compare20(@2(vwx340, Left(vwx3410)), @2(vwx360, Left(vwx3610)), False, hd, app(app(ty_Either, app(app(app(ty_@3, be), bf), bg)), bb)) -> new_ltEs1(vwx3410, vwx3610, be, bf, bg) new_compare20(@2(vwx340, @2(vwx3410, vwx3411)), @2(vwx360, @2(vwx3610, vwx3611)), False, hd, app(app(ty_@2, app(app(ty_Either, de), df)), dg)) -> new_lt(vwx3410, vwx3610, de, df) new_ltEs1(@3(vwx3410, vwx3411, vwx3412), @3(vwx3610, vwx3611, vwx3612), app(app(app(ty_@3, bac), bad), bae), hg, hh) -> new_lt1(vwx3410, vwx3610, bac, bad, bae) new_compare20(@2(vwx340, @3(vwx3410, vwx3411, vwx3412)), @2(vwx360, @3(vwx3610, vwx3611, vwx3612)), False, hd, app(app(app(ty_@3, app(app(ty_Either, he), hf)), hg), hh)) -> new_lt(vwx3410, vwx3610, he, hf) new_compare20(@2(vwx340, Right(vwx3410)), @2(vwx360, Right(vwx3610)), False, hd, app(app(ty_Either, cb), app(ty_Maybe, dd))) -> new_ltEs3(vwx3410, vwx3610, dd) new_ltEs1(@3(vwx3410, vwx3411, vwx3412), @3(vwx3610, vwx3611, vwx3612), bah, hg, app(app(ty_@2, bcd), bce)) -> new_ltEs0(vwx3412, vwx3612, bcd, bce) new_ltEs0(@2(vwx3410, vwx3411), @2(vwx3610, vwx3611), eg, app(ty_[], fh)) -> new_ltEs2(vwx3411, vwx3611, fh) new_compare20(@2(vwx340, Left(vwx3410)), @2(vwx360, Left(vwx3610)), False, hd, app(app(ty_Either, app(app(ty_Either, h), ba)), bb)) -> new_ltEs(vwx3410, vwx3610, h, ba) new_primCompAux(vwx3400, vwx3600, vwx85, app(ty_Maybe, bfe)) -> new_compare5(vwx3400, vwx3600, bfe) new_primCompAux(vwx3400, vwx3600, vwx85, app(app(ty_Either, bee), bef)) -> new_compare(vwx3400, vwx3600, bee, bef) new_compare20(@2(vwx340, vwx341), @2(vwx360, vwx361), False, app(ty_Maybe, hc), gf) -> new_compare22(vwx340, vwx360, new_esEs7(vwx340, vwx360, hc), hc) new_ltEs(Left(vwx3410), Left(vwx3610), app(ty_[], bh), bb) -> new_ltEs2(vwx3410, vwx3610, bh) new_ltEs0(@2(vwx3410, vwx3411), @2(vwx3610, vwx3611), app(ty_[], ee), dg) -> new_lt2(vwx3410, vwx3610, ee) new_compare20(@2(vwx340, @3(vwx3410, vwx3411, vwx3412)), @2(vwx360, @3(vwx3610, vwx3611, vwx3612)), False, hd, app(app(app(ty_@3, bah), hg), app(app(app(ty_@3, bcf), bcg), bch))) -> new_ltEs1(vwx3412, vwx3612, bcf, bcg, bch) new_compare20(@2(:(vwx3400, vwx3401), vwx341), @2(:(vwx3600, vwx3601), vwx361), False, app(ty_[], hb), gf) -> new_primCompAux(vwx3400, vwx3600, new_compare1(vwx3401, vwx3601, hb), hb) new_ltEs(Right(vwx3410), Right(vwx3610), cb, app(ty_[], dc)) -> new_ltEs2(vwx3410, vwx3610, dc) new_compare20(@2(vwx340, @3(vwx3410, vwx3411, vwx3412)), @2(vwx360, @3(vwx3610, vwx3611, vwx3612)), False, hd, app(app(app(ty_@3, app(ty_[], baf)), hg), hh)) -> new_lt2(vwx3410, vwx3610, baf) new_primCompAux(vwx3400, vwx3600, vwx85, app(ty_[], bfd)) -> new_compare3(vwx3400, vwx3600, bfd) new_ltEs(Left(vwx3410), Left(vwx3610), app(app(app(ty_@3, be), bf), bg), bb) -> new_ltEs1(vwx3410, vwx3610, be, bf, bg) new_ltEs(Right(vwx3410), Right(vwx3610), cb, app(app(ty_Either, cc), cd)) -> new_ltEs(vwx3410, vwx3610, cc, cd) new_ltEs3(Just(vwx3410), Just(vwx3610), app(ty_Maybe, bed)) -> new_ltEs3(vwx3410, vwx3610, bed) new_primCompAux(vwx3400, vwx3600, vwx85, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_compare4(vwx3400, vwx3600, bfa, bfb, bfc) new_compare20(@2(:(vwx3400, vwx3401), vwx341), @2(:(vwx3600, vwx3601), vwx361), False, app(ty_[], hb), gf) -> new_compare3(vwx3401, vwx3601, hb) new_compare20(@2(vwx340, @3(vwx3410, vwx3411, vwx3412)), @2(vwx360, @3(vwx3610, vwx3611, vwx3612)), False, hd, app(app(app(ty_@3, app(ty_Maybe, bag)), hg), hh)) -> new_lt3(vwx3410, vwx3610, bag) new_compare20(@2(vwx340, @3(vwx3410, vwx3411, vwx3412)), @2(vwx360, @3(vwx3610, vwx3611, vwx3612)), False, hd, app(app(app(ty_@3, bah), hg), app(app(ty_Either, bcb), bcc))) -> new_ltEs(vwx3412, vwx3612, bcb, bcc) new_ltEs0(@2(vwx3410, vwx3411), @2(vwx3610, vwx3611), app(app(ty_Either, de), df), dg) -> new_lt(vwx3410, vwx3610, de, df) new_compare21(vwx340, vwx360, False, gg, gh, ha) -> new_ltEs1(vwx340, vwx360, gg, gh, ha) new_lt2(:(vwx3400, vwx3401), :(vwx3600, vwx3601), hb) -> new_compare3(vwx3401, vwx3601, hb) new_compare20(@2(vwx340, @2(vwx3410, vwx3411)), @2(vwx360, @2(vwx3610, vwx3611)), False, hd, app(app(ty_@2, eg), app(ty_Maybe, ga))) -> new_ltEs3(vwx3411, vwx3611, ga) new_compare20(@2(vwx340, Just(vwx3410)), @2(vwx360, Just(vwx3610)), False, hd, app(ty_Maybe, app(ty_[], bec))) -> new_ltEs2(vwx3410, vwx3610, bec) new_compare20(@2(vwx340, Just(vwx3410)), @2(vwx360, Just(vwx3610)), False, hd, app(ty_Maybe, app(app(app(ty_@3, bdh), bea), beb))) -> new_ltEs1(vwx3410, vwx3610, bdh, bea, beb) new_ltEs(Right(vwx3410), Right(vwx3610), cb, app(app(app(ty_@3, cg), da), db)) -> new_ltEs1(vwx3410, vwx3610, cg, da, db) new_compare20(@2(vwx340, @2(vwx3410, vwx3411)), @2(vwx360, @2(vwx3610, vwx3611)), False, hd, app(app(ty_@2, app(app(app(ty_@3, eb), ec), ed)), dg)) -> new_lt1(vwx3410, vwx3610, eb, ec, ed) new_compare20(@2(vwx340, Right(vwx3410)), @2(vwx360, Right(vwx3610)), False, hd, app(app(ty_Either, cb), app(app(ty_@2, ce), cf))) -> new_ltEs0(vwx3410, vwx3610, ce, cf) new_compare20(@2(vwx340, Just(vwx3410)), @2(vwx360, Just(vwx3610)), False, hd, app(ty_Maybe, app(app(ty_Either, bdd), bde))) -> new_ltEs(vwx3410, vwx3610, bdd, bde) new_compare20(@2(vwx340, Left(vwx3410)), @2(vwx360, Left(vwx3610)), False, hd, app(app(ty_Either, app(ty_[], bh)), bb)) -> new_ltEs2(vwx3410, vwx3610, bh) new_ltEs3(Just(vwx3410), Just(vwx3610), app(app(app(ty_@3, bdh), bea), beb)) -> new_ltEs1(vwx3410, vwx3610, bdh, bea, beb) new_ltEs1(@3(vwx3410, vwx3411, vwx3412), @3(vwx3610, vwx3611, vwx3612), app(app(ty_@2, baa), bab), hg, hh) -> new_lt0(vwx3410, vwx3610, baa, bab) new_ltEs1(@3(vwx3410, vwx3411, vwx3412), @3(vwx3610, vwx3611, vwx3612), bah, hg, app(app(ty_Either, bcb), bcc)) -> new_ltEs(vwx3412, vwx3612, bcb, bcc) new_ltEs1(@3(vwx3410, vwx3411, vwx3412), @3(vwx3610, vwx3611, vwx3612), bah, app(ty_Maybe, bca), hh) -> new_lt3(vwx3411, vwx3611, bca) new_compare20(@2(vwx340, vwx341), @2(vwx360, vwx361), False, app(app(ty_Either, gb), gc), gf) -> new_compare2(vwx340, vwx360, new_esEs4(vwx340, vwx360, gb, gc), gb, gc) new_lt2(:(vwx3400, vwx3401), :(vwx3600, vwx3601), hb) -> new_primCompAux(vwx3400, vwx3600, new_compare1(vwx3401, vwx3601, hb), hb) new_compare20(@2(vwx340, @2(vwx3410, vwx3411)), @2(vwx360, @2(vwx3610, vwx3611)), False, hd, app(app(ty_@2, eg), app(app(ty_Either, eh), fa))) -> new_ltEs(vwx3411, vwx3611, eh, fa) new_compare20(@2(vwx340, vwx341), @2(vwx360, vwx361), False, app(app(ty_@2, gd), ge), gf) -> new_compare20(vwx340, vwx360, new_esEs5(vwx340, vwx360, gd, ge), gd, ge) new_compare4(vwx340, vwx360, gg, gh, ha) -> new_compare21(vwx340, vwx360, new_esEs6(vwx340, vwx360, gg, gh, ha), gg, gh, ha) new_ltEs1(@3(vwx3410, vwx3411, vwx3412), @3(vwx3610, vwx3611, vwx3612), bah, app(app(ty_Either, bba), bbb), hh) -> new_lt(vwx3411, vwx3611, bba, bbb) new_ltEs1(@3(vwx3410, vwx3411, vwx3412), @3(vwx3610, vwx3611, vwx3612), bah, hg, app(app(app(ty_@3, bcf), bcg), bch)) -> new_ltEs1(vwx3412, vwx3612, bcf, bcg, bch) new_compare20(@2(vwx340, @3(vwx3410, vwx3411, vwx3412)), @2(vwx360, @3(vwx3610, vwx3611, vwx3612)), False, hd, app(app(app(ty_@3, bah), app(ty_[], bbh)), hh)) -> new_lt2(vwx3411, vwx3611, bbh) new_compare20(@2(vwx340, @3(vwx3410, vwx3411, vwx3412)), @2(vwx360, @3(vwx3610, vwx3611, vwx3612)), False, hd, app(app(app(ty_@3, bah), hg), app(ty_Maybe, bdb))) -> new_ltEs3(vwx3412, vwx3612, bdb) new_ltEs1(@3(vwx3410, vwx3411, vwx3412), @3(vwx3610, vwx3611, vwx3612), bah, hg, app(ty_Maybe, bdb)) -> new_ltEs3(vwx3412, vwx3612, bdb) new_compare2(vwx340, vwx360, False, gb, gc) -> new_ltEs(vwx340, vwx360, gb, gc) new_ltEs1(@3(vwx3410, vwx3411, vwx3412), @3(vwx3610, vwx3611, vwx3612), app(ty_[], baf), hg, hh) -> new_lt2(vwx3410, vwx3610, baf) new_compare22(vwx340, vwx360, False, hc) -> new_ltEs3(vwx340, vwx360, hc) new_ltEs(Right(vwx3410), Right(vwx3610), cb, app(app(ty_@2, ce), cf)) -> new_ltEs0(vwx3410, vwx3610, ce, cf) new_compare(vwx340, vwx360, gb, gc) -> new_compare2(vwx340, vwx360, new_esEs4(vwx340, vwx360, gb, gc), gb, gc) new_compare5(vwx340, vwx360, hc) -> new_compare22(vwx340, vwx360, new_esEs7(vwx340, vwx360, hc), hc) new_compare20(@2(vwx340, @3(vwx3410, vwx3411, vwx3412)), @2(vwx360, @3(vwx3610, vwx3611, vwx3612)), False, hd, app(app(app(ty_@3, app(app(ty_@2, baa), bab)), hg), hh)) -> new_lt0(vwx3410, vwx3610, baa, bab) new_lt0(vwx340, vwx360, gd, ge) -> new_compare20(vwx340, vwx360, new_esEs5(vwx340, vwx360, gd, ge), gd, ge) new_compare20(@2(vwx340, @3(vwx3410, vwx3411, vwx3412)), @2(vwx360, @3(vwx3610, vwx3611, vwx3612)), False, hd, app(app(app(ty_@3, bah), app(app(ty_@2, bbc), bbd)), hh)) -> new_lt0(vwx3411, vwx3611, bbc, bbd) new_compare20(@2(vwx340, Right(vwx3410)), @2(vwx360, Right(vwx3610)), False, hd, app(app(ty_Either, cb), app(ty_[], dc))) -> new_ltEs2(vwx3410, vwx3610, dc) new_compare20(@2(vwx340, @2(vwx3410, vwx3411)), @2(vwx360, @2(vwx3610, vwx3611)), False, hd, app(app(ty_@2, app(app(ty_@2, dh), ea)), dg)) -> new_lt0(vwx3410, vwx3610, dh, ea) The TRS R consists of the following rules: new_lt14(vwx3410, vwx3610, app(ty_[], ee)) -> new_lt13(vwx3410, vwx3610, ee) new_primCmpInt(Neg(Succ(vwx34000)), Pos(vwx3600)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_ltEs17(Just(vwx3410), Just(vwx3610), ty_Bool) -> new_ltEs10(vwx3410, vwx3610) new_ltEs17(Just(vwx3410), Just(vwx3610), app(ty_[], bec)) -> new_ltEs16(vwx3410, vwx3610, bec) new_pePe(True, vwx90) -> True new_ltEs10(False, False) -> True new_esEs25(vwx300, vwx400, ty_Int) -> new_esEs13(vwx300, vwx400) new_ltEs17(Just(vwx3410), Just(vwx3610), ty_Float) -> new_ltEs18(vwx3410, vwx3610) new_compare10(Double(vwx3400, Neg(vwx34010)), Double(vwx3600, Neg(vwx36010))) -> new_compare9(new_sr(vwx3400, Neg(vwx36010)), new_sr(Neg(vwx34010), vwx3600)) new_ltEs19(vwx3412, vwx3612, app(app(ty_Either, bcb), bcc)) -> new_ltEs9(vwx3412, vwx3612, bcb, bcc) new_esEs12(vwx300, vwx400, ty_Bool) -> new_esEs10(vwx300, vwx400) new_esEs23(vwx3410, vwx3610, ty_Integer) -> new_esEs9(vwx3410, vwx3610) new_esEs4(Left(vwx300), Right(vwx400), dad, cha) -> False new_esEs4(Right(vwx300), Left(vwx400), dad, cha) -> False new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_ltEs9(Right(vwx3410), Right(vwx3610), cb, app(ty_[], dc)) -> new_ltEs16(vwx3410, vwx3610, dc) new_compare110(vwx340, vwx360, False, hc) -> GT new_primCmpInt(Pos(Zero), Neg(Succ(vwx36000))) -> GT new_lt15(vwx340, vwx360, gb, gc) -> new_esEs8(new_compare7(vwx340, vwx360, gb, gc), LT) new_lt20(vwx3411, vwx3611, app(ty_Ratio, cgg)) -> new_lt18(vwx3411, vwx3611, cgg) new_esEs7(Just(vwx300), Just(vwx400), app(ty_Maybe, cfd)) -> new_esEs7(vwx300, vwx400, cfd) new_ltEs9(Right(vwx3410), Right(vwx3610), cb, ty_Int) -> new_ltEs8(vwx3410, vwx3610) new_esEs22(vwx300, vwx400, app(app(ty_Either, cdc), cdd)) -> new_esEs4(vwx300, vwx400, cdc, cdd) new_primCmpInt(Neg(Succ(vwx34000)), Neg(vwx3600)) -> new_primCmpNat0(vwx3600, Succ(vwx34000)) new_ltEs7(vwx3411, vwx3611, ty_@0) -> new_ltEs11(vwx3411, vwx3611) new_ltEs9(Right(vwx3410), Right(vwx3610), cb, app(app(ty_Either, cc), cd)) -> new_ltEs9(vwx3410, vwx3610, cc, cd) new_ltEs19(vwx3412, vwx3612, ty_@0) -> new_ltEs11(vwx3412, vwx3612) new_compare31(vwx3400, vwx3600, app(app(ty_Either, bee), bef)) -> new_compare7(vwx3400, vwx3600, bee, bef) new_esEs10(False, True) -> False new_esEs10(True, False) -> False new_esEs28(vwx300, vwx400, app(ty_Maybe, dda)) -> new_esEs7(vwx300, vwx400, dda) new_compare111(vwx72, vwx73, vwx74, vwx75, False, dbh, dca) -> GT new_esEs29(vwx340, vwx360, ty_Float) -> new_esEs14(vwx340, vwx360) new_ltEs9(Left(vwx3410), Left(vwx3610), ty_@0, bb) -> new_ltEs11(vwx3410, vwx3610) new_compare18(vwx340, vwx360, True) -> LT new_esEs26(vwx3411, vwx3611, app(ty_[], bbh)) -> new_esEs15(vwx3411, vwx3611, bbh) new_esEs4(Left(vwx300), Left(vwx400), app(app(ty_@2, chg), chh), cha) -> new_esEs5(vwx300, vwx400, chg, chh) new_esEs29(vwx340, vwx360, ty_Char) -> new_esEs19(vwx340, vwx360) new_esEs4(Left(vwx300), Left(vwx400), app(ty_[], chd), cha) -> new_esEs15(vwx300, vwx400, chd) new_lt19(vwx3410, vwx3610, app(app(ty_@2, baa), bab)) -> new_lt4(vwx3410, vwx3610, baa, bab) new_compare31(vwx3400, vwx3600, ty_Double) -> new_compare10(vwx3400, vwx3600) new_esEs20(vwx302, vwx402, ty_Double) -> new_esEs18(vwx302, vwx402) new_compare26(vwx340, vwx360, True) -> EQ new_esEs19(Char(vwx300), Char(vwx400)) -> new_primEqNat0(vwx300, vwx400) new_esEs8(GT, GT) -> True new_primEqInt(Pos(Succ(vwx3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vwx4000))) -> False new_esEs20(vwx302, vwx402, app(app(ty_@2, cbd), cbe)) -> new_esEs5(vwx302, vwx402, cbd, cbe) new_ltEs4(GT, EQ) -> False new_fsEs(vwx78) -> new_not(new_esEs8(vwx78, GT)) new_lt19(vwx3410, vwx3610, app(ty_Ratio, cgf)) -> new_lt18(vwx3410, vwx3610, cgf) new_lt20(vwx3411, vwx3611, app(ty_[], bbh)) -> new_lt13(vwx3411, vwx3611, bbh) new_ltEs19(vwx3412, vwx3612, app(app(ty_@2, bcd), bce)) -> new_ltEs6(vwx3412, vwx3612, bcd, bce) new_esEs29(vwx340, vwx360, app(app(app(ty_@3, gg), gh), ha)) -> new_esEs6(vwx340, vwx360, gg, gh, ha) new_esEs21(vwx301, vwx401, ty_Int) -> new_esEs13(vwx301, vwx401) new_lt21(vwx340, vwx360, ty_Ordering) -> new_lt11(vwx340, vwx360) new_esEs27(vwx3410, vwx3610, ty_Integer) -> new_esEs9(vwx3410, vwx3610) new_esEs22(vwx300, vwx400, ty_Bool) -> new_esEs10(vwx300, vwx400) new_esEs8(EQ, EQ) -> True new_compare1(:(vwx3400, vwx3401), [], hb) -> GT new_compare19(vwx340, vwx360, True, gb, gc) -> LT new_primEqNat0(Succ(vwx3000), Succ(vwx4000)) -> new_primEqNat0(vwx3000, vwx4000) new_esEs27(vwx3410, vwx3610, ty_Bool) -> new_esEs10(vwx3410, vwx3610) new_compare31(vwx3400, vwx3600, ty_Ordering) -> new_compare16(vwx3400, vwx3600) new_compare13(vwx340, vwx360, gg, gh, ha) -> new_compare27(vwx340, vwx360, new_esEs6(vwx340, vwx360, gg, gh, ha), gg, gh, ha) new_ltEs9(Left(vwx3410), Left(vwx3610), app(ty_[], bh), bb) -> new_ltEs16(vwx3410, vwx3610, bh) new_esEs4(Right(vwx300), Right(vwx400), dad, ty_Int) -> new_esEs13(vwx300, vwx400) new_not(True) -> False new_lt4(vwx340, vwx360, gd, ge) -> new_esEs8(new_compare8(vwx340, vwx360, gd, ge), LT) new_compare31(vwx3400, vwx3600, ty_Bool) -> new_compare6(vwx3400, vwx3600) new_lt9(vwx340, vwx360, gg, gh, ha) -> new_esEs8(new_compare13(vwx340, vwx360, gg, gh, ha), LT) new_ltEs19(vwx3412, vwx3612, ty_Double) -> new_ltEs5(vwx3412, vwx3612) new_ltEs19(vwx3412, vwx3612, ty_Integer) -> new_ltEs12(vwx3412, vwx3612) new_esEs20(vwx302, vwx402, ty_Int) -> new_esEs13(vwx302, vwx402) new_primCompAux00(vwx98, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_esEs28(vwx300, vwx400, ty_Integer) -> new_esEs9(vwx300, vwx400) new_esEs21(vwx301, vwx401, app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs6(vwx301, vwx401, cch, cda, cdb) new_lt19(vwx3410, vwx3610, app(ty_[], baf)) -> new_lt13(vwx3410, vwx3610, baf) new_esEs29(vwx340, vwx360, ty_Int) -> new_esEs13(vwx340, vwx360) new_esEs12(vwx300, vwx400, app(ty_[], bhd)) -> new_esEs15(vwx300, vwx400, bhd) new_esEs20(vwx302, vwx402, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_esEs6(vwx302, vwx402, cbf, cbg, cbh) new_esEs7(Just(vwx300), Just(vwx400), ty_Char) -> new_esEs19(vwx300, vwx400) new_ltEs7(vwx3411, vwx3611, app(app(ty_Either, eh), fa)) -> new_ltEs9(vwx3411, vwx3611, eh, fa) new_esEs7(Just(vwx300), Just(vwx400), ty_@0) -> new_esEs17(vwx300, vwx400) new_ltEs17(Just(vwx3410), Just(vwx3610), app(ty_Ratio, cge)) -> new_ltEs14(vwx3410, vwx3610, cge) new_primEqNat0(Succ(vwx3000), Zero) -> False new_primEqNat0(Zero, Succ(vwx4000)) -> False new_ltEs15(@3(vwx3410, vwx3411, vwx3412), @3(vwx3610, vwx3611, vwx3612), bah, hg, hh) -> new_pePe(new_lt19(vwx3410, vwx3610, bah), new_asAs(new_esEs27(vwx3410, vwx3610, bah), new_pePe(new_lt20(vwx3411, vwx3611, hg), new_asAs(new_esEs26(vwx3411, vwx3611, hg), new_ltEs19(vwx3412, vwx3612, hh))))) new_lt18(vwx340, vwx360, ceg) -> new_esEs8(new_compare25(vwx340, vwx360, ceg), LT) new_compare31(vwx3400, vwx3600, app(ty_Maybe, bfe)) -> new_compare17(vwx3400, vwx3600, bfe) new_esEs12(vwx300, vwx400, ty_Integer) -> new_esEs9(vwx300, vwx400) new_lt17(vwx340, vwx360) -> new_esEs8(new_compare15(vwx340, vwx360), LT) new_esEs4(Right(vwx300), Right(vwx400), dad, ty_Float) -> new_esEs14(vwx300, vwx400) new_compare113(vwx72, vwx73, vwx74, vwx75, True, vwx77, dbh, dca) -> new_compare111(vwx72, vwx73, vwx74, vwx75, True, dbh, dca) new_lt21(vwx340, vwx360, ty_Bool) -> new_lt10(vwx340, vwx360) new_primCompAux00(vwx98, GT) -> GT new_esEs12(vwx300, vwx400, ty_@0) -> new_esEs17(vwx300, vwx400) new_ltEs18(vwx341, vwx361) -> new_fsEs(new_compare11(vwx341, vwx361)) new_esEs20(vwx302, vwx402, ty_Ordering) -> new_esEs8(vwx302, vwx402) new_esEs12(vwx300, vwx400, app(app(ty_Either, bhb), bhc)) -> new_esEs4(vwx300, vwx400, bhb, bhc) new_ltEs9(Left(vwx3410), Right(vwx3610), cb, bb) -> True new_ltEs7(vwx3411, vwx3611, app(ty_Ratio, cef)) -> new_ltEs14(vwx3411, vwx3611, cef) new_ltEs7(vwx3411, vwx3611, app(app(ty_@2, fb), fc)) -> new_ltEs6(vwx3411, vwx3611, fb, fc) new_esEs29(vwx340, vwx360, ty_Double) -> new_esEs18(vwx340, vwx360) new_esEs26(vwx3411, vwx3611, ty_Bool) -> new_esEs10(vwx3411, vwx3611) new_compare14(vwx340, vwx360, True) -> LT new_primCmpInt(Pos(Succ(vwx34000)), Neg(vwx3600)) -> GT new_ltEs20(vwx341, vwx361, ty_@0) -> new_ltEs11(vwx341, vwx361) new_esEs4(Right(vwx300), Right(vwx400), dad, ty_Double) -> new_esEs18(vwx300, vwx400) new_compare9(vwx340, vwx360) -> new_primCmpInt(vwx340, vwx360) new_esEs28(vwx300, vwx400, ty_@0) -> new_esEs17(vwx300, vwx400) new_esEs20(vwx302, vwx402, app(ty_Ratio, cbc)) -> new_esEs16(vwx302, vwx402, cbc) new_esEs28(vwx300, vwx400, ty_Char) -> new_esEs19(vwx300, vwx400) new_ltEs13(vwx341, vwx361) -> new_fsEs(new_compare15(vwx341, vwx361)) new_esEs4(Left(vwx300), Left(vwx400), ty_Integer, cha) -> new_esEs9(vwx300, vwx400) new_ltEs20(vwx341, vwx361, ty_Double) -> new_ltEs5(vwx341, vwx361) new_esEs18(Double(vwx300, vwx301), Double(vwx400, vwx401)) -> new_esEs13(new_sr(vwx300, vwx401), new_sr(vwx301, vwx400)) new_primPlusNat1(Succ(vwx6300), Succ(vwx400000)) -> Succ(Succ(new_primPlusNat1(vwx6300, vwx400000))) new_primCompAux0(vwx3400, vwx3600, vwx85, hb) -> new_primCompAux00(vwx85, new_compare31(vwx3400, vwx3600, hb)) new_ltEs20(vwx341, vwx361, ty_Integer) -> new_ltEs12(vwx341, vwx361) new_esEs23(vwx3410, vwx3610, ty_@0) -> new_esEs17(vwx3410, vwx3610) new_primCmpNat0(Zero, Succ(vwx36000)) -> LT new_esEs21(vwx301, vwx401, app(app(ty_@2, ccf), ccg)) -> new_esEs5(vwx301, vwx401, ccf, ccg) new_esEs7(Just(vwx300), Just(vwx400), ty_Double) -> new_esEs18(vwx300, vwx400) new_esEs4(Left(vwx300), Left(vwx400), ty_@0, cha) -> new_esEs17(vwx300, vwx400) new_lt6(vwx340, vwx360) -> new_esEs8(new_compare10(vwx340, vwx360), LT) new_primCmpNat0(Succ(vwx34000), Zero) -> GT new_esEs4(Left(vwx300), Left(vwx400), ty_Double, cha) -> new_esEs18(vwx300, vwx400) new_pePe(False, vwx90) -> vwx90 new_ltEs17(Nothing, Nothing, cgd) -> True new_esEs7(Nothing, Just(vwx400), ceh) -> False new_esEs7(Just(vwx300), Nothing, ceh) -> False new_esEs17(@0, @0) -> True new_ltEs17(Nothing, Just(vwx3610), cgd) -> True new_lt21(vwx340, vwx360, app(ty_[], hb)) -> new_lt13(vwx340, vwx360, hb) new_esEs22(vwx300, vwx400, ty_@0) -> new_esEs17(vwx300, vwx400) new_ltEs17(Just(vwx3410), Nothing, cgd) -> False new_esEs11(vwx301, vwx401, ty_Float) -> new_esEs14(vwx301, vwx401) new_esEs4(Left(vwx300), Left(vwx400), ty_Ordering, cha) -> new_esEs8(vwx300, vwx400) new_lt19(vwx3410, vwx3610, app(ty_Maybe, bag)) -> new_lt12(vwx3410, vwx3610, bag) new_ltEs20(vwx341, vwx361, app(ty_Maybe, cgd)) -> new_ltEs17(vwx341, vwx361, cgd) new_lt20(vwx3411, vwx3611, ty_@0) -> new_lt8(vwx3411, vwx3611) new_esEs6(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), cad, cae, caf) -> new_asAs(new_esEs22(vwx300, vwx400, cad), new_asAs(new_esEs21(vwx301, vwx401, cae), new_esEs20(vwx302, vwx402, caf))) new_lt20(vwx3411, vwx3611, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_lt9(vwx3411, vwx3611, bbe, bbf, bbg) new_compare17(vwx340, vwx360, hc) -> new_compare29(vwx340, vwx360, new_esEs7(vwx340, vwx360, hc), hc) new_esEs21(vwx301, vwx401, app(app(ty_Either, cca), ccb)) -> new_esEs4(vwx301, vwx401, cca, ccb) new_esEs21(vwx301, vwx401, ty_Char) -> new_esEs19(vwx301, vwx401) new_ltEs9(Left(vwx3410), Left(vwx3610), ty_Integer, bb) -> new_ltEs12(vwx3410, vwx3610) new_ltEs20(vwx341, vwx361, ty_Char) -> new_ltEs13(vwx341, vwx361) new_ltEs17(Just(vwx3410), Just(vwx3610), app(app(app(ty_@3, bdh), bea), beb)) -> new_ltEs15(vwx3410, vwx3610, bdh, bea, beb) new_lt19(vwx3410, vwx3610, ty_Bool) -> new_lt10(vwx3410, vwx3610) new_esEs26(vwx3411, vwx3611, app(app(ty_@2, bbc), bbd)) -> new_esEs5(vwx3411, vwx3611, bbc, bbd) new_esEs23(vwx3410, vwx3610, ty_Double) -> new_esEs18(vwx3410, vwx3610) new_lt19(vwx3410, vwx3610, ty_Float) -> new_lt7(vwx3410, vwx3610) new_esEs4(Right(vwx300), Right(vwx400), dad, app(app(ty_@2, dbb), dbc)) -> new_esEs5(vwx300, vwx400, dbb, dbc) new_esEs21(vwx301, vwx401, app(ty_Ratio, cce)) -> new_esEs16(vwx301, vwx401, cce) new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_esEs24(vwx301, vwx401, ty_Int) -> new_esEs13(vwx301, vwx401) new_primEqInt(Pos(Zero), Neg(Succ(vwx4000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vwx4000))) -> False new_esEs7(Just(vwx300), Just(vwx400), ty_Bool) -> new_esEs10(vwx300, vwx400) new_esEs7(Nothing, Nothing, ceh) -> True new_esEs21(vwx301, vwx401, ty_Ordering) -> new_esEs8(vwx301, vwx401) new_esEs29(vwx340, vwx360, ty_@0) -> new_esEs17(vwx340, vwx360) new_esEs11(vwx301, vwx401, ty_Bool) -> new_esEs10(vwx301, vwx401) new_esEs4(Right(vwx300), Right(vwx400), dad, ty_Char) -> new_esEs19(vwx300, vwx400) new_compare6(vwx340, vwx360) -> new_compare23(vwx340, vwx360, new_esEs10(vwx340, vwx360)) new_ltEs9(Left(vwx3410), Left(vwx3610), ty_Char, bb) -> new_ltEs13(vwx3410, vwx3610) new_ltEs4(LT, GT) -> True new_esEs21(vwx301, vwx401, ty_Float) -> new_esEs14(vwx301, vwx401) new_ltEs10(True, False) -> False new_lt14(vwx3410, vwx3610, app(app(ty_@2, dh), ea)) -> new_lt4(vwx3410, vwx3610, dh, ea) new_lt19(vwx3410, vwx3610, ty_Int) -> new_lt5(vwx3410, vwx3610) new_esEs10(False, False) -> True new_compare10(Double(vwx3400, Pos(vwx34010)), Double(vwx3600, Pos(vwx36010))) -> new_compare9(new_sr(vwx3400, Pos(vwx36010)), new_sr(Pos(vwx34010), vwx3600)) new_lt20(vwx3411, vwx3611, app(ty_Maybe, bca)) -> new_lt12(vwx3411, vwx3611, bca) new_ltEs19(vwx3412, vwx3612, ty_Char) -> new_ltEs13(vwx3412, vwx3612) new_ltEs20(vwx341, vwx361, app(app(ty_@2, eg), dg)) -> new_ltEs6(vwx341, vwx361, eg, dg) new_esEs7(Just(vwx300), Just(vwx400), ty_Integer) -> new_esEs9(vwx300, vwx400) new_primEqInt(Neg(Succ(vwx3000)), Neg(Succ(vwx4000))) -> new_primEqNat0(vwx3000, vwx4000) new_ltEs19(vwx3412, vwx3612, app(ty_Maybe, bdb)) -> new_ltEs17(vwx3412, vwx3612, bdb) new_ltEs9(Left(vwx3410), Left(vwx3610), app(app(ty_Either, h), ba), bb) -> new_ltEs9(vwx3410, vwx3610, h, ba) new_primCmpInt(Neg(Zero), Pos(Succ(vwx36000))) -> LT new_ltEs4(LT, LT) -> True new_ltEs4(EQ, LT) -> False new_primMulInt(Pos(vwx3010), Pos(vwx4000)) -> Pos(new_primMulNat0(vwx3010, vwx4000)) new_esEs23(vwx3410, vwx3610, app(app(ty_Either, de), df)) -> new_esEs4(vwx3410, vwx3610, de, df) new_esEs7(Just(vwx300), Just(vwx400), ty_Int) -> new_esEs13(vwx300, vwx400) new_esEs11(vwx301, vwx401, ty_Double) -> new_esEs18(vwx301, vwx401) new_ltEs9(Left(vwx3410), Left(vwx3610), ty_Double, bb) -> new_ltEs5(vwx3410, vwx3610) new_esEs15([], [], dce) -> True new_esEs11(vwx301, vwx401, app(app(ty_Either, bfh), bga)) -> new_esEs4(vwx301, vwx401, bfh, bga) new_ltEs16(vwx341, vwx361, bdc) -> new_fsEs(new_compare1(vwx341, vwx361, bdc)) new_ltEs9(Right(vwx3410), Right(vwx3610), cb, ty_Float) -> new_ltEs18(vwx3410, vwx3610) new_ltEs9(Right(vwx3410), Right(vwx3610), cb, ty_Bool) -> new_ltEs10(vwx3410, vwx3610) new_primMulNat0(Succ(vwx30100), Zero) -> Zero new_primMulNat0(Zero, Succ(vwx40000)) -> Zero new_lt20(vwx3411, vwx3611, ty_Int) -> new_lt5(vwx3411, vwx3611) new_compare30(Integer(vwx3400), Integer(vwx3600)) -> new_primCmpInt(vwx3400, vwx3600) new_primPlusNat0(Zero, vwx40000) -> Succ(vwx40000) new_lt19(vwx3410, vwx3610, ty_@0) -> new_lt8(vwx3410, vwx3610) new_esEs16(:%(vwx300, vwx301), :%(vwx400, vwx401), cgc) -> new_asAs(new_esEs25(vwx300, vwx400, cgc), new_esEs24(vwx301, vwx401, cgc)) new_esEs24(vwx301, vwx401, ty_Integer) -> new_esEs9(vwx301, vwx401) new_esEs7(Just(vwx300), Just(vwx400), app(app(app(ty_@3, cfh), cga), cgb)) -> new_esEs6(vwx300, vwx400, cfh, cga, cgb) new_lt14(vwx3410, vwx3610, app(app(ty_Either, de), df)) -> new_lt15(vwx3410, vwx3610, de, df) new_esEs11(vwx301, vwx401, app(app(ty_@2, bge), bgf)) -> new_esEs5(vwx301, vwx401, bge, bgf) new_esEs22(vwx300, vwx400, app(ty_Maybe, cdf)) -> new_esEs7(vwx300, vwx400, cdf) new_esEs4(Right(vwx300), Right(vwx400), dad, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs6(vwx300, vwx400, dbd, dbe, dbf) new_compare26(vwx340, vwx360, False) -> new_compare14(vwx340, vwx360, new_ltEs4(vwx340, vwx360)) new_esEs23(vwx3410, vwx3610, app(ty_Maybe, ef)) -> new_esEs7(vwx3410, vwx3610, ef) new_esEs4(Right(vwx300), Right(vwx400), dad, app(ty_Ratio, dba)) -> new_esEs16(vwx300, vwx400, dba) new_compare31(vwx3400, vwx3600, app(ty_Ratio, dcb)) -> new_compare25(vwx3400, vwx3600, dcb) new_esEs23(vwx3410, vwx3610, ty_Bool) -> new_esEs10(vwx3410, vwx3610) new_compare27(vwx340, vwx360, True, gg, gh, ha) -> EQ new_ltEs6(@2(vwx3410, vwx3411), @2(vwx3610, vwx3611), eg, dg) -> new_pePe(new_lt14(vwx3410, vwx3610, eg), new_asAs(new_esEs23(vwx3410, vwx3610, eg), new_ltEs7(vwx3411, vwx3611, dg))) new_esEs8(LT, LT) -> True new_compare1([], [], hb) -> EQ new_esEs28(vwx300, vwx400, app(ty_[], dch)) -> new_esEs15(vwx300, vwx400, dch) new_lt20(vwx3411, vwx3611, ty_Bool) -> new_lt10(vwx3411, vwx3611) new_esEs7(Just(vwx300), Just(vwx400), ty_Ordering) -> new_esEs8(vwx300, vwx400) new_esEs22(vwx300, vwx400, app(app(app(ty_@3, ceb), cec), ced)) -> new_esEs6(vwx300, vwx400, ceb, cec, ced) new_primPlusNat1(Succ(vwx6300), Zero) -> Succ(vwx6300) new_primPlusNat1(Zero, Succ(vwx400000)) -> Succ(vwx400000) new_ltEs9(Left(vwx3410), Left(vwx3610), app(ty_Ratio, dcc), bb) -> new_ltEs14(vwx3410, vwx3610, dcc) new_lt21(vwx340, vwx360, ty_Float) -> new_lt7(vwx340, vwx360) new_ltEs20(vwx341, vwx361, app(ty_[], bdc)) -> new_ltEs16(vwx341, vwx361, bdc) new_ltEs17(Just(vwx3410), Just(vwx3610), app(ty_Maybe, bed)) -> new_ltEs17(vwx3410, vwx3610, bed) new_lt13(vwx340, vwx360, hb) -> new_esEs8(new_compare1(vwx340, vwx360, hb), LT) new_compare18(vwx340, vwx360, False) -> GT new_esEs7(Just(vwx300), Just(vwx400), app(ty_Ratio, cfe)) -> new_esEs16(vwx300, vwx400, cfe) new_esEs23(vwx3410, vwx3610, app(app(ty_@2, dh), ea)) -> new_esEs5(vwx3410, vwx3610, dh, ea) new_ltEs12(vwx341, vwx361) -> new_fsEs(new_compare30(vwx341, vwx361)) new_ltEs20(vwx341, vwx361, app(app(ty_Either, cb), bb)) -> new_ltEs9(vwx341, vwx361, cb, bb) new_ltEs10(False, True) -> True new_compare113(vwx72, vwx73, vwx74, vwx75, False, vwx77, dbh, dca) -> new_compare111(vwx72, vwx73, vwx74, vwx75, vwx77, dbh, dca) new_esEs26(vwx3411, vwx3611, ty_Integer) -> new_esEs9(vwx3411, vwx3611) new_ltEs9(Left(vwx3410), Left(vwx3610), app(app(ty_@2, bc), bd), bb) -> new_ltEs6(vwx3410, vwx3610, bc, bd) new_esEs11(vwx301, vwx401, ty_Ordering) -> new_esEs8(vwx301, vwx401) new_esEs11(vwx301, vwx401, app(ty_Ratio, bgd)) -> new_esEs16(vwx301, vwx401, bgd) new_compare31(vwx3400, vwx3600, ty_@0) -> new_compare12(vwx3400, vwx3600) new_lt20(vwx3411, vwx3611, ty_Float) -> new_lt7(vwx3411, vwx3611) new_lt21(vwx340, vwx360, app(ty_Ratio, ceg)) -> new_lt18(vwx340, vwx360, ceg) new_compare19(vwx340, vwx360, False, gb, gc) -> GT new_ltEs4(LT, EQ) -> True new_esEs23(vwx3410, vwx3610, app(app(app(ty_@3, eb), ec), ed)) -> new_esEs6(vwx3410, vwx3610, eb, ec, ed) new_ltEs19(vwx3412, vwx3612, app(ty_[], bda)) -> new_ltEs16(vwx3412, vwx3612, bda) new_ltEs20(vwx341, vwx361, app(app(app(ty_@3, bah), hg), hh)) -> new_ltEs15(vwx341, vwx361, bah, hg, hh) new_lt20(vwx3411, vwx3611, ty_Ordering) -> new_lt11(vwx3411, vwx3611) new_lt21(vwx340, vwx360, ty_Int) -> new_lt5(vwx340, vwx360) new_esEs22(vwx300, vwx400, ty_Int) -> new_esEs13(vwx300, vwx400) new_esEs20(vwx302, vwx402, ty_Char) -> new_esEs19(vwx302, vwx402) new_primMulInt(Neg(vwx3010), Neg(vwx4000)) -> Pos(new_primMulNat0(vwx3010, vwx4000)) new_ltEs9(Right(vwx3410), Right(vwx3610), cb, ty_Ordering) -> new_ltEs4(vwx3410, vwx3610) new_esEs11(vwx301, vwx401, ty_Int) -> new_esEs13(vwx301, vwx401) new_primCmpInt(Pos(Zero), Pos(Succ(vwx36000))) -> new_primCmpNat0(Zero, Succ(vwx36000)) new_compare31(vwx3400, vwx3600, ty_Int) -> new_compare9(vwx3400, vwx3600) new_compare11(Float(vwx3400, Pos(vwx34010)), Float(vwx3600, Pos(vwx36010))) -> new_compare9(new_sr(vwx3400, Pos(vwx36010)), new_sr(Pos(vwx34010), vwx3600)) new_lt14(vwx3410, vwx3610, ty_Char) -> new_lt17(vwx3410, vwx3610) new_esEs25(vwx300, vwx400, ty_Integer) -> new_esEs9(vwx300, vwx400) new_esEs12(vwx300, vwx400, app(ty_Ratio, bhf)) -> new_esEs16(vwx300, vwx400, bhf) new_esEs12(vwx300, vwx400, ty_Ordering) -> new_esEs8(vwx300, vwx400) new_ltEs4(EQ, EQ) -> True new_esEs12(vwx300, vwx400, app(app(ty_@2, bhg), bhh)) -> new_esEs5(vwx300, vwx400, bhg, bhh) new_lt21(vwx340, vwx360, app(ty_Maybe, hc)) -> new_lt12(vwx340, vwx360, hc) new_esEs23(vwx3410, vwx3610, app(ty_Ratio, cee)) -> new_esEs16(vwx3410, vwx3610, cee) new_ltEs9(Right(vwx3410), Right(vwx3610), cb, app(app(ty_@2, ce), cf)) -> new_ltEs6(vwx3410, vwx3610, ce, cf) new_esEs7(Just(vwx300), Just(vwx400), app(app(ty_@2, cff), cfg)) -> new_esEs5(vwx300, vwx400, cff, cfg) new_esEs12(vwx300, vwx400, app(ty_Maybe, bhe)) -> new_esEs7(vwx300, vwx400, bhe) new_ltEs19(vwx3412, vwx3612, app(app(app(ty_@3, bcf), bcg), bch)) -> new_ltEs15(vwx3412, vwx3612, bcf, bcg, bch) new_esEs20(vwx302, vwx402, ty_@0) -> new_esEs17(vwx302, vwx402) new_esEs20(vwx302, vwx402, ty_Float) -> new_esEs14(vwx302, vwx402) new_lt19(vwx3410, vwx3610, ty_Ordering) -> new_lt11(vwx3410, vwx3610) new_esEs4(Left(vwx300), Left(vwx400), ty_Bool, cha) -> new_esEs10(vwx300, vwx400) new_esEs5(@2(vwx300, vwx301), @2(vwx400, vwx401), bff, bfg) -> new_asAs(new_esEs12(vwx300, vwx400, bff), new_esEs11(vwx301, vwx401, bfg)) new_esEs23(vwx3410, vwx3610, ty_Ordering) -> new_esEs8(vwx3410, vwx3610) new_esEs21(vwx301, vwx401, ty_Double) -> new_esEs18(vwx301, vwx401) new_ltEs7(vwx3411, vwx3611, app(ty_Maybe, ga)) -> new_ltEs17(vwx3411, vwx3611, ga) new_ltEs8(vwx341, vwx361) -> new_fsEs(new_compare9(vwx341, vwx361)) new_esEs11(vwx301, vwx401, app(app(app(ty_@3, bgg), bgh), bha)) -> new_esEs6(vwx301, vwx401, bgg, bgh, bha) new_esEs27(vwx3410, vwx3610, app(ty_[], baf)) -> new_esEs15(vwx3410, vwx3610, baf) new_lt11(vwx340, vwx360) -> new_esEs8(new_compare16(vwx340, vwx360), LT) new_compare31(vwx3400, vwx3600, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_compare13(vwx3400, vwx3600, bfa, bfb, bfc) new_ltEs9(Left(vwx3410), Left(vwx3610), app(app(app(ty_@3, be), bf), bg), bb) -> new_ltEs15(vwx3410, vwx3610, be, bf, bg) new_esEs22(vwx300, vwx400, app(ty_Ratio, cdg)) -> new_esEs16(vwx300, vwx400, cdg) new_lt19(vwx3410, vwx3610, ty_Double) -> new_lt6(vwx3410, vwx3610) new_lt21(vwx340, vwx360, app(app(app(ty_@3, gg), gh), ha)) -> new_lt9(vwx340, vwx360, gg, gh, ha) new_lt21(vwx340, vwx360, ty_@0) -> new_lt8(vwx340, vwx360) new_compare12(@0, @0) -> EQ new_esEs4(Right(vwx300), Right(vwx400), dad, ty_Integer) -> new_esEs9(vwx300, vwx400) new_lt20(vwx3411, vwx3611, ty_Char) -> new_lt17(vwx3411, vwx3611) new_esEs27(vwx3410, vwx3610, app(app(ty_@2, baa), bab)) -> new_esEs5(vwx3410, vwx3610, baa, bab) new_esEs22(vwx300, vwx400, ty_Char) -> new_esEs19(vwx300, vwx400) new_primMulInt(Pos(vwx3010), Neg(vwx4000)) -> Neg(new_primMulNat0(vwx3010, vwx4000)) new_primMulInt(Neg(vwx3010), Pos(vwx4000)) -> Neg(new_primMulNat0(vwx3010, vwx4000)) new_esEs11(vwx301, vwx401, app(ty_Maybe, bgc)) -> new_esEs7(vwx301, vwx401, bgc) new_esEs21(vwx301, vwx401, ty_@0) -> new_esEs17(vwx301, vwx401) new_compare25(:%(vwx3400, vwx3401), :%(vwx3600, vwx3601), ty_Int) -> new_compare9(new_sr(vwx3400, vwx3601), new_sr(vwx3600, vwx3401)) new_esEs22(vwx300, vwx400, ty_Ordering) -> new_esEs8(vwx300, vwx400) new_esEs22(vwx300, vwx400, ty_Double) -> new_esEs18(vwx300, vwx400) new_ltEs17(Just(vwx3410), Just(vwx3610), app(app(ty_@2, bdf), bdg)) -> new_ltEs6(vwx3410, vwx3610, bdf, bdg) new_compare14(vwx340, vwx360, False) -> GT new_sr0(Integer(vwx34000), Integer(vwx36010)) -> Integer(new_primMulInt(vwx34000, vwx36010)) new_compare8(vwx340, vwx360, gd, ge) -> new_compare28(vwx340, vwx360, new_esEs5(vwx340, vwx360, gd, ge), gd, ge) new_esEs23(vwx3410, vwx3610, ty_Int) -> new_esEs13(vwx3410, vwx3610) new_lt21(vwx340, vwx360, app(app(ty_Either, gb), gc)) -> new_lt15(vwx340, vwx360, gb, gc) new_lt14(vwx3410, vwx3610, ty_Integer) -> new_lt16(vwx3410, vwx3610) new_esEs29(vwx340, vwx360, ty_Bool) -> new_esEs10(vwx340, vwx360) new_esEs27(vwx3410, vwx3610, app(app(app(ty_@3, bac), bad), bae)) -> new_esEs6(vwx3410, vwx3610, bac, bad, bae) new_esEs4(Left(vwx300), Left(vwx400), app(ty_Maybe, che), cha) -> new_esEs7(vwx300, vwx400, che) new_esEs12(vwx300, vwx400, ty_Float) -> new_esEs14(vwx300, vwx400) new_ltEs9(Right(vwx3410), Left(vwx3610), cb, bb) -> False new_esEs13(vwx30, vwx40) -> new_primEqInt(vwx30, vwx40) new_compare11(Float(vwx3400, Neg(vwx34010)), Float(vwx3600, Neg(vwx36010))) -> new_compare9(new_sr(vwx3400, Neg(vwx36010)), new_sr(Neg(vwx34010), vwx3600)) new_esEs4(Right(vwx300), Right(vwx400), dad, ty_@0) -> new_esEs17(vwx300, vwx400) new_esEs21(vwx301, vwx401, ty_Integer) -> new_esEs9(vwx301, vwx401) new_compare111(vwx72, vwx73, vwx74, vwx75, True, dbh, dca) -> LT new_asAs(True, vwx44) -> vwx44 new_lt5(vwx340, vwx360) -> new_esEs8(new_compare9(vwx340, vwx360), LT) new_esEs4(Left(vwx300), Left(vwx400), ty_Int, cha) -> new_esEs13(vwx300, vwx400) new_compare31(vwx3400, vwx3600, ty_Char) -> new_compare15(vwx3400, vwx3600) new_ltEs7(vwx3411, vwx3611, ty_Int) -> new_ltEs8(vwx3411, vwx3611) new_ltEs9(Left(vwx3410), Left(vwx3610), ty_Int, bb) -> new_ltEs8(vwx3410, vwx3610) new_ltEs17(Just(vwx3410), Just(vwx3610), ty_Double) -> new_ltEs5(vwx3410, vwx3610) new_esEs12(vwx300, vwx400, app(app(app(ty_@3, caa), cab), cac)) -> new_esEs6(vwx300, vwx400, caa, cab, cac) new_ltEs7(vwx3411, vwx3611, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs15(vwx3411, vwx3611, fd, ff, fg) new_esEs4(Left(vwx300), Left(vwx400), app(app(ty_Either, chb), chc), cha) -> new_esEs4(vwx300, vwx400, chb, chc) new_esEs20(vwx302, vwx402, app(ty_[], cba)) -> new_esEs15(vwx302, vwx402, cba) new_esEs4(Right(vwx300), Right(vwx400), dad, app(ty_Maybe, dah)) -> new_esEs7(vwx300, vwx400, dah) new_esEs27(vwx3410, vwx3610, ty_Float) -> new_esEs14(vwx3410, vwx3610) new_lt8(vwx340, vwx360) -> new_esEs8(new_compare12(vwx340, vwx360), LT) new_lt14(vwx3410, vwx3610, ty_Bool) -> new_lt10(vwx3410, vwx3610) new_ltEs9(Right(vwx3410), Right(vwx3610), cb, ty_@0) -> new_ltEs11(vwx3410, vwx3610) new_compare24(vwx340, vwx360, True, gb, gc) -> EQ new_primCmpInt(Pos(Succ(vwx34000)), Pos(vwx3600)) -> new_primCmpNat0(Succ(vwx34000), vwx3600) new_ltEs17(Just(vwx3410), Just(vwx3610), ty_Integer) -> new_ltEs12(vwx3410, vwx3610) new_esEs12(vwx300, vwx400, ty_Int) -> new_esEs13(vwx300, vwx400) new_primCompAux00(vwx98, EQ) -> vwx98 new_esEs20(vwx302, vwx402, app(app(ty_Either, cag), cah)) -> new_esEs4(vwx302, vwx402, cag, cah) new_sr(vwx301, vwx400) -> new_primMulInt(vwx301, vwx400) new_lt7(vwx340, vwx360) -> new_esEs8(new_compare11(vwx340, vwx360), LT) new_esEs7(Just(vwx300), Just(vwx400), app(app(ty_Either, cfa), cfb)) -> new_esEs4(vwx300, vwx400, cfa, cfb) new_compare23(vwx340, vwx360, True) -> EQ new_esEs27(vwx3410, vwx3610, ty_Char) -> new_esEs19(vwx3410, vwx3610) new_primMulNat0(Zero, Zero) -> Zero new_compare15(Char(vwx3400), Char(vwx3600)) -> new_primCmpNat0(vwx3400, vwx3600) new_esEs23(vwx3410, vwx3610, ty_Float) -> new_esEs14(vwx3410, vwx3610) new_ltEs10(True, True) -> True new_ltEs17(Just(vwx3410), Just(vwx3610), ty_Char) -> new_ltEs13(vwx3410, vwx3610) new_esEs27(vwx3410, vwx3610, app(ty_Ratio, cgf)) -> new_esEs16(vwx3410, vwx3610, cgf) new_ltEs17(Just(vwx3410), Just(vwx3610), ty_@0) -> new_ltEs11(vwx3410, vwx3610) new_esEs27(vwx3410, vwx3610, ty_Ordering) -> new_esEs8(vwx3410, vwx3610) new_esEs11(vwx301, vwx401, ty_Char) -> new_esEs19(vwx301, vwx401) new_lt14(vwx3410, vwx3610, ty_Double) -> new_lt6(vwx3410, vwx3610) new_compare31(vwx3400, vwx3600, app(ty_[], bfd)) -> new_compare1(vwx3400, vwx3600, bfd) new_esEs11(vwx301, vwx401, ty_Integer) -> new_esEs9(vwx301, vwx401) new_ltEs14(vwx341, vwx361, dbg) -> new_fsEs(new_compare25(vwx341, vwx361, dbg)) new_esEs22(vwx300, vwx400, app(app(ty_@2, cdh), cea)) -> new_esEs5(vwx300, vwx400, cdh, cea) new_ltEs7(vwx3411, vwx3611, app(ty_[], fh)) -> new_ltEs16(vwx3411, vwx3611, fh) new_ltEs9(Left(vwx3410), Left(vwx3610), app(ty_Maybe, ca), bb) -> new_ltEs17(vwx3410, vwx3610, ca) new_esEs15(:(vwx300, vwx301), [], dce) -> False new_esEs15([], :(vwx400, vwx401), dce) -> False new_compare1(:(vwx3400, vwx3401), :(vwx3600, vwx3601), hb) -> new_primCompAux0(vwx3400, vwx3600, new_compare1(vwx3401, vwx3601, hb), hb) new_esEs11(vwx301, vwx401, ty_@0) -> new_esEs17(vwx301, vwx401) new_esEs29(vwx340, vwx360, ty_Integer) -> new_esEs9(vwx340, vwx360) new_compare29(vwx340, vwx360, False, hc) -> new_compare110(vwx340, vwx360, new_ltEs17(vwx340, vwx360, hc), hc) new_ltEs7(vwx3411, vwx3611, ty_Ordering) -> new_ltEs4(vwx3411, vwx3611) new_esEs22(vwx300, vwx400, ty_Float) -> new_esEs14(vwx300, vwx400) new_esEs9(Integer(vwx300), Integer(vwx400)) -> new_primEqInt(vwx300, vwx400) new_esEs12(vwx300, vwx400, ty_Char) -> new_esEs19(vwx300, vwx400) new_lt19(vwx3410, vwx3610, app(app(app(ty_@3, bac), bad), bae)) -> new_lt9(vwx3410, vwx3610, bac, bad, bae) new_esEs4(Right(vwx300), Right(vwx400), dad, app(app(ty_Either, dae), daf)) -> new_esEs4(vwx300, vwx400, dae, daf) new_ltEs9(Right(vwx3410), Right(vwx3610), cb, app(ty_Maybe, dd)) -> new_ltEs17(vwx3410, vwx3610, dd) new_esEs21(vwx301, vwx401, ty_Bool) -> new_esEs10(vwx301, vwx401) new_compare23(vwx340, vwx360, False) -> new_compare18(vwx340, vwx360, new_ltEs10(vwx340, vwx360)) new_esEs29(vwx340, vwx360, app(ty_[], hb)) -> new_esEs15(vwx340, vwx360, hb) new_esEs7(Just(vwx300), Just(vwx400), app(ty_[], cfc)) -> new_esEs15(vwx300, vwx400, cfc) new_compare28(@2(vwx340, vwx341), @2(vwx360, vwx361), False, hd, gf) -> new_compare113(vwx340, vwx341, vwx360, vwx361, new_lt21(vwx340, vwx360, hd), new_asAs(new_esEs29(vwx340, vwx360, hd), new_ltEs20(vwx341, vwx361, gf)), hd, gf) new_ltEs9(Left(vwx3410), Left(vwx3610), ty_Float, bb) -> new_ltEs18(vwx3410, vwx3610) new_ltEs17(Just(vwx3410), Just(vwx3610), app(app(ty_Either, bdd), bde)) -> new_ltEs9(vwx3410, vwx3610, bdd, bde) new_esEs29(vwx340, vwx360, app(app(ty_Either, gb), gc)) -> new_esEs4(vwx340, vwx360, gb, gc) new_primEqInt(Neg(Succ(vwx3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vwx4000))) -> False new_esEs20(vwx302, vwx402, ty_Bool) -> new_esEs10(vwx302, vwx402) new_lt20(vwx3411, vwx3611, ty_Double) -> new_lt6(vwx3411, vwx3611) new_primEqInt(Pos(Succ(vwx3000)), Pos(Succ(vwx4000))) -> new_primEqNat0(vwx3000, vwx4000) new_esEs12(vwx300, vwx400, ty_Double) -> new_esEs18(vwx300, vwx400) new_esEs21(vwx301, vwx401, app(ty_Maybe, ccd)) -> new_esEs7(vwx301, vwx401, ccd) new_compare31(vwx3400, vwx3600, ty_Float) -> new_compare11(vwx3400, vwx3600) new_compare24(vwx340, vwx360, False, gb, gc) -> new_compare19(vwx340, vwx360, new_ltEs9(vwx340, vwx360, gb, gc), gb, gc) new_esEs23(vwx3410, vwx3610, ty_Char) -> new_esEs19(vwx3410, vwx3610) new_compare27(vwx340, vwx360, False, gg, gh, ha) -> new_compare112(vwx340, vwx360, new_ltEs15(vwx340, vwx360, gg, gh, ha), gg, gh, ha) new_primEqInt(Pos(Succ(vwx3000)), Neg(vwx400)) -> False new_primEqInt(Neg(Succ(vwx3000)), Pos(vwx400)) -> False new_esEs26(vwx3411, vwx3611, ty_Ordering) -> new_esEs8(vwx3411, vwx3611) new_esEs26(vwx3411, vwx3611, app(ty_Ratio, cgg)) -> new_esEs16(vwx3411, vwx3611, cgg) new_ltEs4(EQ, GT) -> True new_primCmpInt(Neg(Zero), Neg(Succ(vwx36000))) -> new_primCmpNat0(Succ(vwx36000), Zero) new_esEs4(Left(vwx300), Left(vwx400), ty_Float, cha) -> new_esEs14(vwx300, vwx400) new_esEs26(vwx3411, vwx3611, app(ty_Maybe, bca)) -> new_esEs7(vwx3411, vwx3611, bca) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs28(vwx300, vwx400, ty_Float) -> new_esEs14(vwx300, vwx400) new_esEs4(Left(vwx300), Left(vwx400), ty_Char, cha) -> new_esEs19(vwx300, vwx400) new_ltEs9(Right(vwx3410), Right(vwx3610), cb, app(app(app(ty_@3, cg), da), db)) -> new_ltEs15(vwx3410, vwx3610, cg, da, db) new_esEs28(vwx300, vwx400, ty_Bool) -> new_esEs10(vwx300, vwx400) new_esEs26(vwx3411, vwx3611, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs6(vwx3411, vwx3611, bbe, bbf, bbg) new_esEs27(vwx3410, vwx3610, app(ty_Maybe, bag)) -> new_esEs7(vwx3410, vwx3610, bag) new_lt14(vwx3410, vwx3610, ty_@0) -> new_lt8(vwx3410, vwx3610) new_lt14(vwx3410, vwx3610, app(app(app(ty_@3, eb), ec), ed)) -> new_lt9(vwx3410, vwx3610, eb, ec, ed) new_ltEs17(Just(vwx3410), Just(vwx3610), ty_Ordering) -> new_ltEs4(vwx3410, vwx3610) new_esEs14(Float(vwx300, vwx301), Float(vwx400, vwx401)) -> new_esEs13(new_sr(vwx300, vwx401), new_sr(vwx301, vwx400)) new_ltEs9(Right(vwx3410), Right(vwx3610), cb, ty_Double) -> new_ltEs5(vwx3410, vwx3610) new_esEs4(Right(vwx300), Right(vwx400), dad, ty_Ordering) -> new_esEs8(vwx300, vwx400) new_lt10(vwx340, vwx360) -> new_esEs8(new_compare6(vwx340, vwx360), LT) new_lt14(vwx3410, vwx3610, ty_Ordering) -> new_lt11(vwx3410, vwx3610) new_ltEs7(vwx3411, vwx3611, ty_Char) -> new_ltEs13(vwx3411, vwx3611) new_not(False) -> True new_compare112(vwx340, vwx360, True, gg, gh, ha) -> LT new_compare1([], :(vwx3600, vwx3601), hb) -> LT new_ltEs17(Just(vwx3410), Just(vwx3610), ty_Int) -> new_ltEs8(vwx3410, vwx3610) new_esEs20(vwx302, vwx402, app(ty_Maybe, cbb)) -> new_esEs7(vwx302, vwx402, cbb) new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_esEs22(vwx300, vwx400, ty_Integer) -> new_esEs9(vwx300, vwx400) new_compare112(vwx340, vwx360, False, gg, gh, ha) -> GT new_lt14(vwx3410, vwx3610, ty_Int) -> new_lt5(vwx3410, vwx3610) new_ltEs4(GT, LT) -> False new_ltEs20(vwx341, vwx361, app(ty_Ratio, dbg)) -> new_ltEs14(vwx341, vwx361, dbg) new_ltEs9(Right(vwx3410), Right(vwx3610), cb, app(ty_Ratio, dcd)) -> new_ltEs14(vwx3410, vwx3610, dcd) new_esEs10(True, True) -> True new_lt19(vwx3410, vwx3610, app(app(ty_Either, he), hf)) -> new_lt15(vwx3410, vwx3610, he, hf) new_primPlusNat0(Succ(vwx630), vwx40000) -> Succ(Succ(new_primPlusNat1(vwx630, vwx40000))) new_ltEs9(Left(vwx3410), Left(vwx3610), ty_Bool, bb) -> new_ltEs10(vwx3410, vwx3610) new_esEs7(Just(vwx300), Just(vwx400), ty_Float) -> new_esEs14(vwx300, vwx400) new_ltEs7(vwx3411, vwx3611, ty_Integer) -> new_ltEs12(vwx3411, vwx3611) new_ltEs7(vwx3411, vwx3611, ty_Bool) -> new_ltEs10(vwx3411, vwx3611) new_lt21(vwx340, vwx360, ty_Integer) -> new_lt16(vwx340, vwx360) new_lt14(vwx3410, vwx3610, app(ty_Maybe, ef)) -> new_lt12(vwx3410, vwx3610, ef) new_lt21(vwx340, vwx360, ty_Char) -> new_lt17(vwx340, vwx360) new_lt16(vwx340, vwx360) -> new_esEs8(new_compare30(vwx340, vwx360), LT) new_ltEs19(vwx3412, vwx3612, app(ty_Ratio, cgh)) -> new_ltEs14(vwx3412, vwx3612, cgh) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs26(vwx3411, vwx3611, ty_Int) -> new_esEs13(vwx3411, vwx3611) new_esEs27(vwx3410, vwx3610, ty_@0) -> new_esEs17(vwx3410, vwx3610) new_primPlusNat1(Zero, Zero) -> Zero new_ltEs7(vwx3411, vwx3611, ty_Double) -> new_ltEs5(vwx3411, vwx3611) new_lt20(vwx3411, vwx3611, app(app(ty_@2, bbc), bbd)) -> new_lt4(vwx3411, vwx3611, bbc, bbd) new_esEs28(vwx300, vwx400, ty_Double) -> new_esEs18(vwx300, vwx400) new_esEs28(vwx300, vwx400, app(app(ty_@2, ddc), ddd)) -> new_esEs5(vwx300, vwx400, ddc, ddd) new_lt20(vwx3411, vwx3611, app(app(ty_Either, bba), bbb)) -> new_lt15(vwx3411, vwx3611, bba, bbb) new_ltEs9(Right(vwx3410), Right(vwx3610), cb, ty_Char) -> new_ltEs13(vwx3410, vwx3610) new_esEs28(vwx300, vwx400, app(app(ty_Either, dcf), dcg)) -> new_esEs4(vwx300, vwx400, dcf, dcg) new_ltEs9(Right(vwx3410), Right(vwx3610), cb, ty_Integer) -> new_ltEs12(vwx3410, vwx3610) new_esEs23(vwx3410, vwx3610, app(ty_[], ee)) -> new_esEs15(vwx3410, vwx3610, ee) new_lt21(vwx340, vwx360, ty_Double) -> new_lt6(vwx340, vwx360) new_esEs26(vwx3411, vwx3611, app(app(ty_Either, bba), bbb)) -> new_esEs4(vwx3411, vwx3611, bba, bbb) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs26(vwx3411, vwx3611, ty_@0) -> new_esEs17(vwx3411, vwx3611) new_esEs26(vwx3411, vwx3611, ty_Double) -> new_esEs18(vwx3411, vwx3611) new_ltEs11(vwx341, vwx361) -> new_fsEs(new_compare12(vwx341, vwx361)) new_primMulNat0(Succ(vwx30100), Succ(vwx40000)) -> new_primPlusNat0(new_primMulNat0(vwx30100, Succ(vwx40000)), vwx40000) new_esEs4(Right(vwx300), Right(vwx400), dad, ty_Bool) -> new_esEs10(vwx300, vwx400) new_lt12(vwx340, vwx360, hc) -> new_esEs8(new_compare17(vwx340, vwx360, hc), LT) new_esEs4(Left(vwx300), Left(vwx400), app(ty_Ratio, chf), cha) -> new_esEs16(vwx300, vwx400, chf) new_primCmpNat0(Succ(vwx34000), Succ(vwx36000)) -> new_primCmpNat0(vwx34000, vwx36000) new_compare29(vwx340, vwx360, True, hc) -> EQ new_ltEs5(vwx341, vwx361) -> new_fsEs(new_compare10(vwx341, vwx361)) new_esEs15(:(vwx300, vwx301), :(vwx400, vwx401), dce) -> new_asAs(new_esEs28(vwx300, vwx400, dce), new_esEs15(vwx301, vwx401, dce)) new_ltEs9(Left(vwx3410), Left(vwx3610), ty_Ordering, bb) -> new_ltEs4(vwx3410, vwx3610) new_esEs28(vwx300, vwx400, ty_Int) -> new_esEs13(vwx300, vwx400) new_ltEs20(vwx341, vwx361, ty_Ordering) -> new_ltEs4(vwx341, vwx361) new_esEs26(vwx3411, vwx3611, ty_Char) -> new_esEs19(vwx3411, vwx3611) new_esEs28(vwx300, vwx400, app(ty_Ratio, ddb)) -> new_esEs16(vwx300, vwx400, ddb) new_esEs11(vwx301, vwx401, app(ty_[], bgb)) -> new_esEs15(vwx301, vwx401, bgb) new_compare25(:%(vwx3400, vwx3401), :%(vwx3600, vwx3601), ty_Integer) -> new_compare30(new_sr0(vwx3400, vwx3601), new_sr0(vwx3600, vwx3401)) new_esEs28(vwx300, vwx400, ty_Ordering) -> new_esEs8(vwx300, vwx400) new_ltEs19(vwx3412, vwx3612, ty_Float) -> new_ltEs18(vwx3412, vwx3612) new_ltEs7(vwx3411, vwx3611, ty_Float) -> new_ltEs18(vwx3411, vwx3611) new_esEs27(vwx3410, vwx3610, ty_Double) -> new_esEs18(vwx3410, vwx3610) new_esEs4(Right(vwx300), Right(vwx400), dad, app(ty_[], dag)) -> new_esEs15(vwx300, vwx400, dag) new_ltEs20(vwx341, vwx361, ty_Int) -> new_ltEs8(vwx341, vwx361) new_compare10(Double(vwx3400, Pos(vwx34010)), Double(vwx3600, Neg(vwx36010))) -> new_compare9(new_sr(vwx3400, Pos(vwx36010)), new_sr(Neg(vwx34010), vwx3600)) new_compare10(Double(vwx3400, Neg(vwx34010)), Double(vwx3600, Pos(vwx36010))) -> new_compare9(new_sr(vwx3400, Neg(vwx36010)), new_sr(Pos(vwx34010), vwx3600)) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_lt21(vwx340, vwx360, app(app(ty_@2, gd), ge)) -> new_lt4(vwx340, vwx360, gd, ge) new_lt14(vwx3410, vwx3610, app(ty_Ratio, cee)) -> new_lt18(vwx3410, vwx3610, cee) new_esEs27(vwx3410, vwx3610, ty_Int) -> new_esEs13(vwx3410, vwx3610) new_esEs29(vwx340, vwx360, app(ty_Ratio, ceg)) -> new_esEs16(vwx340, vwx360, ceg) new_lt20(vwx3411, vwx3611, ty_Integer) -> new_lt16(vwx3411, vwx3611) new_ltEs19(vwx3412, vwx3612, ty_Ordering) -> new_ltEs4(vwx3412, vwx3612) new_primEqNat0(Zero, Zero) -> True new_esEs21(vwx301, vwx401, app(ty_[], ccc)) -> new_esEs15(vwx301, vwx401, ccc) new_ltEs20(vwx341, vwx361, ty_Float) -> new_ltEs18(vwx341, vwx361) new_ltEs19(vwx3412, vwx3612, ty_Bool) -> new_ltEs10(vwx3412, vwx3612) new_esEs28(vwx300, vwx400, app(app(app(ty_@3, dde), ddf), ddg)) -> new_esEs6(vwx300, vwx400, dde, ddf, ddg) new_esEs29(vwx340, vwx360, app(app(ty_@2, gd), ge)) -> new_esEs5(vwx340, vwx360, gd, ge) new_esEs29(vwx340, vwx360, ty_Ordering) -> new_esEs8(vwx340, vwx360) new_compare110(vwx340, vwx360, True, hc) -> LT new_ltEs4(GT, GT) -> True new_esEs22(vwx300, vwx400, app(ty_[], cde)) -> new_esEs15(vwx300, vwx400, cde) new_esEs26(vwx3411, vwx3611, ty_Float) -> new_esEs14(vwx3411, vwx3611) new_asAs(False, vwx44) -> False new_compare31(vwx3400, vwx3600, app(app(ty_@2, beg), beh)) -> new_compare8(vwx3400, vwx3600, beg, beh) new_compare11(Float(vwx3400, Pos(vwx34010)), Float(vwx3600, Neg(vwx36010))) -> new_compare9(new_sr(vwx3400, Pos(vwx36010)), new_sr(Neg(vwx34010), vwx3600)) new_compare11(Float(vwx3400, Neg(vwx34010)), Float(vwx3600, Pos(vwx36010))) -> new_compare9(new_sr(vwx3400, Neg(vwx36010)), new_sr(Pos(vwx34010), vwx3600)) new_lt14(vwx3410, vwx3610, ty_Float) -> new_lt7(vwx3410, vwx3610) new_esEs20(vwx302, vwx402, ty_Integer) -> new_esEs9(vwx302, vwx402) new_compare7(vwx340, vwx360, gb, gc) -> new_compare24(vwx340, vwx360, new_esEs4(vwx340, vwx360, gb, gc), gb, gc) new_compare28(vwx34, vwx36, True, hd, gf) -> EQ new_esEs29(vwx340, vwx360, app(ty_Maybe, hc)) -> new_esEs7(vwx340, vwx360, hc) new_ltEs19(vwx3412, vwx3612, ty_Int) -> new_ltEs8(vwx3412, vwx3612) new_esEs27(vwx3410, vwx3610, app(app(ty_Either, he), hf)) -> new_esEs4(vwx3410, vwx3610, he, hf) new_esEs4(Left(vwx300), Left(vwx400), app(app(app(ty_@3, daa), dab), dac), cha) -> new_esEs6(vwx300, vwx400, daa, dab, dac) new_ltEs20(vwx341, vwx361, ty_Bool) -> new_ltEs10(vwx341, vwx361) new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_lt19(vwx3410, vwx3610, ty_Char) -> new_lt17(vwx3410, vwx3610) new_lt19(vwx3410, vwx3610, ty_Integer) -> new_lt16(vwx3410, vwx3610) new_compare31(vwx3400, vwx3600, ty_Integer) -> new_compare30(vwx3400, vwx3600) new_compare16(vwx340, vwx360) -> new_compare26(vwx340, vwx360, new_esEs8(vwx340, vwx360)) The set Q consists of the following terms: new_ltEs7(x0, x1, ty_Integer) new_esEs8(EQ, EQ) new_primMulNat0(Succ(x0), Zero) new_lt14(x0, x1, ty_Int) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, ty_Bool) new_compare11(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_ltEs7(x0, x1, app(ty_[], x2)) new_pePe(False, x0) new_esEs20(x0, x1, ty_@0) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_esEs22(x0, x1, ty_Int) new_esEs28(x0, x1, ty_Double) new_compare28(x0, x1, True, x2, x3) new_esEs23(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Float) new_lt21(x0, x1, ty_@0) new_lt14(x0, x1, ty_Char) new_ltEs4(LT, LT) new_esEs22(x0, x1, ty_Ordering) new_primPlusNat1(Zero, Zero) new_compare11(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs27(x0, x1, ty_Bool) new_compare23(x0, x1, False) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_compare11(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare11(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_compare31(x0, x1, ty_Char) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs11(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Bool) new_ltEs9(Left(x0), Left(x1), ty_Integer, x2) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Double) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Integer) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs11(x0, x1, ty_Int) new_ltEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs9(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs7(x0, x1, ty_Bool) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_lt14(x0, x1, ty_Ordering) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), ty_Char) new_esEs27(x0, x1, ty_Integer) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(x0, x1, app(ty_[], x2)) new_ltEs17(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs9(Right(x0), Right(x1), x2, ty_Int) new_esEs11(x0, x1, ty_Char) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_ltEs9(Right(x0), Right(x1), x2, ty_Double) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_compare31(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), ty_Bool) new_lt21(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Neg(Zero), Neg(Zero)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs9(Right(x0), Right(x1), x2, ty_Char) new_esEs18(Double(x0, x1), Double(x2, x3)) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs13(x0, x1) new_ltEs9(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs11(x0, x1, ty_Double) new_esEs22(x0, x1, ty_Char) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, app(ty_[], x2)) new_primEqNat0(Zero, Succ(x0)) new_lt14(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Bool) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_Char) new_esEs21(x0, x1, ty_Bool) new_ltEs17(Just(x0), Just(x1), ty_@0) new_lt20(x0, x1, ty_Double) new_ltEs11(x0, x1) new_esEs28(x0, x1, app(ty_[], x2)) new_compare1(:(x0, x1), :(x2, x3), x4) new_asAs(True, x0) new_compare113(x0, x1, x2, x3, False, x4, x5, x6) new_compare30(Integer(x0), Integer(x1)) new_lt10(x0, x1) new_primPlusNat0(Zero, x0) new_esEs15(:(x0, x1), [], x2) new_compare31(x0, x1, ty_Double) new_ltEs9(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs12(x0, x1, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_esEs10(True, True) new_primCmpNat0(Succ(x0), Zero) new_primCompAux00(x0, LT) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs21(x0, x1, ty_@0) new_compare111(x0, x1, x2, x3, True, x4, x5) new_esEs21(x0, x1, ty_Int) new_primMulNat0(Zero, Succ(x0)) new_ltEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), ty_Int) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs9(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs10(False, False) new_ltEs9(Right(x0), Right(x1), x2, ty_Bool) new_ltEs17(Just(x0), Just(x1), ty_Bool) new_primCmpNat0(Succ(x0), Succ(x1)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, ty_Integer) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_ltEs7(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_Int) new_primMulInt(Pos(x0), Pos(x1)) new_ltEs17(Nothing, Just(x0), x1) new_lt21(x0, x1, ty_Int) new_lt16(x0, x1) new_esEs26(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_ltEs7(x0, x1, ty_Float) new_esEs7(Just(x0), Just(x1), ty_@0) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_esEs28(x0, x1, ty_Ordering) new_ltEs4(GT, EQ) new_ltEs4(EQ, GT) new_ltEs19(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Double) new_ltEs17(Just(x0), Just(x1), ty_Double) new_esEs23(x0, x1, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs21(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs17(Just(x0), Just(x1), ty_Int) new_ltEs17(Nothing, Nothing, x0) new_compare31(x0, x1, ty_Int) new_ltEs17(Just(x0), Just(x1), ty_Char) new_lt21(x0, x1, ty_Char) new_lt19(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_compare31(x0, x1, ty_@0) new_primCompAux0(x0, x1, x2, x3) new_ltEs7(x0, x1, ty_@0) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt19(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Bool) new_esEs11(x0, x1, ty_Bool) new_esEs7(Just(x0), Nothing, x1) new_lt21(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Char) new_compare25(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_primPlusNat0(Succ(x0), x1) new_lt18(x0, x1, x2) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs9(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs20(x0, x1, ty_Double) new_esEs17(@0, @0) new_esEs23(x0, x1, ty_Int) new_ltEs14(x0, x1, x2) new_ltEs4(EQ, LT) new_ltEs4(LT, EQ) new_ltEs19(x0, x1, ty_Char) new_lt19(x0, x1, ty_@0) new_compare7(x0, x1, x2, x3) new_sr0(Integer(x0), Integer(x1)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Int) new_ltEs4(GT, GT) new_ltEs19(x0, x1, ty_Int) new_ltEs9(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs23(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Double) new_lt14(x0, x1, app(ty_Maybe, x2)) new_ltEs9(Left(x0), Right(x1), x2, x3) new_ltEs9(Right(x0), Left(x1), x2, x3) new_compare18(x0, x1, False) new_esEs12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare16(x0, x1) new_esEs21(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs7(x0, x1, app(app(ty_@2, x2), x3)) new_compare23(x0, x1, True) new_esEs7(Just(x0), Just(x1), ty_Double) new_lt20(x0, x1, ty_Float) new_esEs23(x0, x1, ty_Float) new_esEs26(x0, x1, ty_Char) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_esEs8(GT, GT) new_compare9(x0, x1) new_esEs12(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_esEs28(x0, x1, ty_Bool) new_esEs15([], [], x0) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_lt17(x0, x1) new_esEs12(x0, x1, app(ty_Ratio, x2)) new_esEs10(False, False) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs28(x0, x1, ty_Char) new_lt12(x0, x1, x2) new_ltEs17(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_sr(x0, x1) new_esEs21(x0, x1, ty_Ordering) new_compare113(x0, x1, x2, x3, True, x4, x5, x6) new_primCompAux00(x0, EQ) new_compare1([], [], x0) new_lt15(x0, x1, x2, x3) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs8(LT, LT) new_primMulNat0(Succ(x0), Succ(x1)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_lt14(x0, x1, ty_@0) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_ltEs12(x0, x1) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_compare27(x0, x1, False, x2, x3, x4) new_esEs12(x0, x1, app(ty_Maybe, x2)) new_ltEs9(Left(x0), Left(x1), ty_Float, x2) new_esEs28(x0, x1, ty_Int) new_ltEs9(Right(x0), Right(x1), x2, ty_Float) new_lt6(x0, x1) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs26(x0, x1, ty_Int) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_@0) new_ltEs9(Left(x0), Left(x1), ty_Bool, x2) new_compare26(x0, x1, False) new_ltEs20(x0, x1, ty_Int) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primCmpNat0(Zero, Succ(x0)) new_lt13(x0, x1, x2) new_esEs12(x0, x1, ty_@0) new_ltEs9(Left(x0), Left(x1), ty_Int, x2) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs22(x0, x1, ty_Float) new_lt14(x0, x1, ty_Double) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_Float) new_ltEs18(x0, x1) new_esEs14(Float(x0, x1), Float(x2, x3)) new_ltEs9(Left(x0), Left(x1), ty_Char, x2) new_compare24(x0, x1, False, x2, x3) new_esEs12(x0, x1, ty_Double) new_asAs(False, x0) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs28(x0, x1, ty_Float) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare110(x0, x1, False, x2) new_ltEs20(x0, x1, ty_Char) new_esEs16(:%(x0, x1), :%(x2, x3), x4) new_ltEs17(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Float) new_ltEs7(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, ty_Double) new_compare112(x0, x1, False, x2, x3, x4) new_ltEs19(x0, x1, ty_Integer) new_lt19(x0, x1, ty_Ordering) new_lt21(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs17(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs17(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare31(x0, x1, app(ty_Maybe, x2)) new_esEs12(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare18(x0, x1, True) new_compare25(:%(x0, x1), :%(x2, x3), ty_Int) new_lt19(x0, x1, ty_Double) new_esEs11(x0, x1, ty_Float) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Zero) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_primPlusNat1(Zero, Succ(x0)) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs7(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Ordering) new_esEs24(x0, x1, ty_Int) new_esEs25(x0, x1, ty_Int) new_compare31(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, ty_Int) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_compare19(x0, x1, True, x2, x3) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_ltEs9(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare10(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare10(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_compare14(x0, x1, True) new_ltEs9(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare10(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs10(True, False) new_ltEs10(False, True) new_ltEs9(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_ltEs9(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt19(x0, x1, ty_Char) new_lt14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Bool) new_compare29(x0, x1, False, x2) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Double) new_lt20(x0, x1, ty_Integer) new_lt14(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs19(x0, x1, ty_Bool) new_esEs15([], :(x0, x1), x2) new_ltEs4(LT, GT) new_ltEs4(GT, LT) new_ltEs9(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt14(x0, x1, ty_Float) new_lt5(x0, x1) new_ltEs17(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs9(Left(x0), Left(x1), ty_Ordering, x2) new_not(True) new_esEs26(x0, x1, ty_Ordering) new_lt11(x0, x1) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_lt14(x0, x1, app(ty_Ratio, x2)) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_lt20(x0, x1, ty_@0) new_lt7(x0, x1) new_lt4(x0, x1, x2, x3) new_ltEs7(x0, x1, ty_Double) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare31(x0, x1, ty_Float) new_ltEs17(Just(x0), Just(x1), ty_Float) new_compare111(x0, x1, x2, x3, False, x4, x5) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(x0, x1, ty_Integer) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Char) new_primPlusNat1(Succ(x0), Zero) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs8(x0, x1) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_@0) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs9(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs4(EQ, EQ) new_esEs29(x0, x1, ty_Float) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs11(x0, x1, ty_Integer) new_ltEs9(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs7(Just(x0), Just(x1), ty_Float) new_compare29(x0, x1, True, x2) new_esEs5(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs28(x0, x1, ty_Integer) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_lt21(x0, x1, ty_Double) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_compare12(@0, @0) new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare14(x0, x1, False) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs17(Just(x0), Nothing, x1) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs7(Nothing, Nothing, x0) new_lt20(x0, x1, ty_Bool) new_esEs20(x0, x1, ty_Float) new_esEs28(x0, x1, ty_@0) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs17(Just(x0), Just(x1), ty_Integer) new_ltEs9(Right(x0), Right(x1), x2, ty_Integer) new_lt21(x0, x1, ty_Float) new_lt19(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(x0, x1, ty_Int) new_compare24(x0, x1, True, x2, x3) new_primEqNat0(Succ(x0), Zero) new_esEs27(x0, x1, ty_Int) new_lt9(x0, x1, x2, x3, x4) new_lt14(x0, x1, app(app(ty_@2, x2), x3)) new_compare31(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_Ordering) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_primCompAux00(x0, GT) new_esEs29(x0, x1, ty_Int) new_esEs27(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Integer) new_ltEs7(x0, x1, ty_Char) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(Integer(x0), Integer(x1)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs16(x0, x1, x2) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs8(LT, GT) new_esEs8(GT, LT) new_ltEs20(x0, x1, ty_@0) new_esEs11(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_compare6(x0, x1) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Ordering) new_compare15(Char(x0), Char(x1)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_compare31(x0, x1, ty_Bool) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs19(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Float) new_compare31(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, ty_Integer) new_esEs13(x0, x1) new_compare110(x0, x1, True, x2) new_compare112(x0, x1, True, x2, x3, x4) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs21(x0, x1, ty_Float) new_esEs23(x0, x1, ty_Ordering) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_pePe(True, x0) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_lt14(x0, x1, ty_Integer) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_compare26(x0, x1, True) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_primEqNat0(Zero, Zero) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt8(x0, x1) new_compare31(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs9(Right(x0), Right(x1), x2, ty_@0) new_compare8(x0, x1, x2, x3) new_compare1(:(x0, x1), [], x2) new_compare13(x0, x1, x2, x3, x4) new_not(False) new_lt20(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_@0) new_esEs12(x0, x1, ty_Bool) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs9(Left(x0), Left(x1), ty_@0, x2) new_esEs12(x0, x1, ty_Float) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_@0) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_esEs15(:(x0, x1), :(x2, x3), x4) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_fsEs(x0) new_esEs22(x0, x1, ty_@0) new_compare27(x0, x1, True, x2, x3, x4) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_compare10(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs7(x0, x1, ty_Ordering) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_compare28(@2(x0, x1), @2(x2, x3), False, x4, x5) new_lt14(x0, x1, ty_Bool) new_esEs12(x0, x1, ty_Char) new_esEs19(Char(x0), Char(x1)) new_esEs29(x0, x1, ty_Integer) new_compare17(x0, x1, x2) new_ltEs17(Just(x0), Just(x1), ty_Ordering) new_esEs7(Nothing, Just(x0), x1) new_compare1([], :(x0, x1), x2) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_esEs10(False, True) new_esEs10(True, False) new_esEs12(x0, x1, ty_Int) new_esEs29(x0, x1, ty_Ordering) new_ltEs9(Left(x0), Left(x1), ty_Double, x2) new_ltEs10(True, True) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt19(x0, x1, ty_Float) new_primCmpNat0(Zero, Zero) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs20(x0, x1, ty_Integer) new_esEs7(Just(x0), Just(x1), ty_Integer) new_compare31(x0, x1, ty_Ordering) new_ltEs20(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Char) new_compare19(x0, x1, False, x2, x3) new_primMulInt(Neg(x0), Neg(x1)) 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_ltEs3(Just(vwx3410), Just(vwx3610), app(app(ty_Either, bdd), bde)) -> new_ltEs(vwx3410, vwx3610, bdd, bde) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(Just(vwx3410), Just(vwx3610), app(app(app(ty_@3, bdh), bea), beb)) -> new_ltEs1(vwx3410, vwx3610, bdh, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_lt0(vwx340, vwx360, gd, ge) -> new_compare20(vwx340, vwx360, new_esEs5(vwx340, vwx360, gd, ge), gd, ge) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs3(Just(vwx3410), Just(vwx3610), app(app(ty_@2, bdf), bdg)) -> new_ltEs0(vwx3410, vwx3610, bdf, bdg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(@2(vwx3410, vwx3411), @2(vwx3610, vwx3611), eg, app(app(ty_Either, eh), fa)) -> new_ltEs(vwx3411, vwx3611, eh, fa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(@2(vwx3410, vwx3411), @2(vwx3610, vwx3611), eg, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs1(vwx3411, vwx3611, fd, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs0(@2(vwx3410, vwx3411), @2(vwx3610, vwx3611), eg, app(app(ty_@2, fb), fc)) -> new_ltEs0(vwx3411, vwx3611, fb, fc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_lt2(:(vwx3400, vwx3401), :(vwx3600, vwx3601), hb) -> new_compare3(vwx3401, vwx3601, hb) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_lt2(:(vwx3400, vwx3401), :(vwx3600, vwx3601), hb) -> new_primCompAux(vwx3400, vwx3600, new_compare1(vwx3401, vwx3601, hb), hb) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_primCompAux(vwx3400, vwx3600, vwx85, app(ty_[], bfd)) -> new_compare3(vwx3400, vwx3600, bfd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_lt1(vwx340, vwx360, gg, gh, ha) -> new_compare21(vwx340, vwx360, new_esEs6(vwx340, vwx360, gg, gh, ha), gg, gh, ha) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_ltEs1(@3(vwx3410, vwx3411, vwx3412), @3(vwx3610, vwx3611, vwx3612), bah, hg, app(app(ty_Either, bcb), bcc)) -> new_ltEs(vwx3412, vwx3612, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs1(@3(vwx3410, vwx3411, vwx3412), @3(vwx3610, vwx3611, vwx3612), bah, hg, app(app(app(ty_@3, bcf), bcg), bch)) -> new_ltEs1(vwx3412, vwx3612, bcf, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_ltEs1(@3(vwx3410, vwx3411, vwx3412), @3(vwx3610, vwx3611, vwx3612), bah, hg, app(app(ty_@2, bcd), bce)) -> new_ltEs0(vwx3412, vwx3612, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs2(vwx341, vwx361, bdc) -> new_compare3(vwx341, vwx361, bdc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_lt(vwx340, vwx360, gb, gc) -> new_compare2(vwx340, vwx360, new_esEs4(vwx340, vwx360, gb, gc), gb, gc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs0(@2(vwx3410, vwx3411), @2(vwx3610, vwx3611), app(ty_Maybe, ef), dg) -> new_lt3(vwx3410, vwx3610, ef) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare22(vwx340, vwx360, False, hc) -> new_ltEs3(vwx340, vwx360, hc) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3 *new_compare20(@2(vwx340, vwx341), @2(vwx360, vwx361), False, app(app(ty_@2, gd), ge), gf) -> new_compare20(vwx340, vwx360, new_esEs5(vwx340, vwx360, gd, ge), gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_compare0(vwx340, vwx360, gd, ge) -> new_compare20(vwx340, vwx360, new_esEs5(vwx340, vwx360, gd, ge), gd, ge) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_primCompAux(vwx3400, vwx3600, vwx85, app(app(ty_@2, beg), beh)) -> new_compare0(vwx3400, vwx3600, beg, beh) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare3(:(vwx3400, vwx3401), :(vwx3600, vwx3601), hb) -> new_compare3(vwx3401, vwx3601, hb) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_compare2(vwx340, vwx360, False, gb, gc) -> new_ltEs(vwx340, vwx360, gb, gc) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 *new_compare21(vwx340, vwx360, False, gg, gh, ha) -> new_ltEs1(vwx340, vwx360, gg, gh, ha) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 *new_ltEs3(Just(vwx3410), Just(vwx3610), app(ty_Maybe, bed)) -> new_ltEs3(vwx3410, vwx3610, bed) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(Just(vwx3410), Just(vwx3610), app(ty_[], bec)) -> new_ltEs2(vwx3410, vwx3610, bec) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(@2(vwx3410, vwx3411), @2(vwx3610, vwx3611), eg, app(ty_Maybe, ga)) -> new_ltEs3(vwx3411, vwx3611, ga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(@3(vwx3410, vwx3411, vwx3412), @3(vwx3610, vwx3611, vwx3612), bah, hg, app(ty_Maybe, bdb)) -> new_ltEs3(vwx3412, vwx3612, bdb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs0(@2(vwx3410, vwx3411), @2(vwx3610, vwx3611), eg, app(ty_[], fh)) -> new_ltEs2(vwx3411, vwx3611, fh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(@3(vwx3410, vwx3411, vwx3412), @3(vwx3610, vwx3611, vwx3612), bah, hg, app(ty_[], bda)) -> new_ltEs2(vwx3412, vwx3612, bda) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare3(:(vwx3400, vwx3401), :(vwx3600, vwx3601), hb) -> new_primCompAux(vwx3400, vwx3600, new_compare1(vwx3401, vwx3601, hb), hb) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare20(@2(:(vwx3400, vwx3401), vwx341), @2(:(vwx3600, vwx3601), vwx361), False, app(ty_[], hb), gf) -> new_primCompAux(vwx3400, vwx3600, new_compare1(vwx3401, vwx3601, hb), hb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_lt3(vwx340, vwx360, hc) -> new_compare22(vwx340, vwx360, new_esEs7(vwx340, vwx360, hc), hc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_ltEs0(@2(vwx3410, vwx3411), @2(vwx3610, vwx3611), app(app(ty_Either, de), df), dg) -> new_lt(vwx3410, vwx3610, de, df) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(@2(vwx3410, vwx3411), @2(vwx3610, vwx3611), app(app(app(ty_@3, eb), ec), ed), dg) -> new_lt1(vwx3410, vwx3610, eb, ec, ed) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_compare5(vwx340, vwx360, hc) -> new_compare22(vwx340, vwx360, new_esEs7(vwx340, vwx360, hc), hc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_compare(vwx340, vwx360, gb, gc) -> new_compare2(vwx340, vwx360, new_esEs4(vwx340, vwx360, gb, gc), gb, gc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_compare4(vwx340, vwx360, gg, gh, ha) -> new_compare21(vwx340, vwx360, new_esEs6(vwx340, vwx360, gg, gh, ha), gg, gh, ha) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_compare20(@2(vwx340, vwx341), @2(vwx360, vwx361), False, app(app(app(ty_@3, gg), gh), ha), gf) -> new_compare21(vwx340, vwx360, new_esEs6(vwx340, vwx360, gg, gh, ha), gg, gh, ha) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5, 4 > 6 *new_ltEs0(@2(vwx3410, vwx3411), @2(vwx3610, vwx3611), app(ty_[], ee), dg) -> new_lt2(vwx3410, vwx3610, ee) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(@2(vwx3410, vwx3411), @2(vwx3610, vwx3611), app(app(ty_@2, dh), ea), dg) -> new_lt0(vwx3410, vwx3610, dh, ea) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_primCompAux(vwx3400, vwx3600, vwx85, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_compare4(vwx3400, vwx3600, bfa, bfb, bfc) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@2(vwx340, vwx341), @2(vwx360, vwx361), False, app(app(ty_Either, gb), gc), gf) -> new_compare2(vwx340, vwx360, new_esEs4(vwx340, vwx360, gb, gc), gb, gc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_compare20(@2(vwx340, vwx341), @2(vwx360, vwx361), False, app(ty_Maybe, hc), gf) -> new_compare22(vwx340, vwx360, new_esEs7(vwx340, vwx360, hc), hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_primCompAux(vwx3400, vwx3600, vwx85, app(app(ty_Either, bee), bef)) -> new_compare(vwx3400, vwx3600, bee, bef) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_primCompAux(vwx3400, vwx3600, vwx85, app(ty_Maybe, bfe)) -> new_compare5(vwx3400, vwx3600, bfe) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare20(@2(vwx340, Right(vwx3410)), @2(vwx360, Right(vwx3610)), False, hd, app(app(ty_Either, cb), app(app(ty_Either, cc), cd))) -> new_ltEs(vwx3410, vwx3610, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(vwx340, Left(vwx3410)), @2(vwx360, Left(vwx3610)), False, hd, app(app(ty_Either, app(app(ty_Either, h), ba)), bb)) -> new_ltEs(vwx3410, vwx3610, h, ba) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(vwx340, @3(vwx3410, vwx3411, vwx3412)), @2(vwx360, @3(vwx3610, vwx3611, vwx3612)), False, hd, app(app(app(ty_@3, bah), hg), app(app(ty_Either, bcb), bcc))) -> new_ltEs(vwx3412, vwx3612, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(vwx340, Just(vwx3410)), @2(vwx360, Just(vwx3610)), False, hd, app(ty_Maybe, app(app(ty_Either, bdd), bde))) -> new_ltEs(vwx3410, vwx3610, bdd, bde) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(vwx340, @2(vwx3410, vwx3411)), @2(vwx360, @2(vwx3610, vwx3611)), False, hd, app(app(ty_@2, eg), app(app(ty_Either, eh), fa))) -> new_ltEs(vwx3411, vwx3611, eh, fa) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs(Left(vwx3410), Left(vwx3610), app(app(ty_Either, h), ba), bb) -> new_ltEs(vwx3410, vwx3610, h, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(Right(vwx3410), Right(vwx3610), cb, app(app(ty_Either, cc), cd)) -> new_ltEs(vwx3410, vwx3610, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vwx340, @2(vwx3410, vwx3411)), @2(vwx360, @2(vwx3610, vwx3611)), False, hd, app(app(ty_@2, eg), app(app(app(ty_@3, fd), ff), fg))) -> new_ltEs1(vwx3411, vwx3611, fd, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare20(@2(vwx340, Right(vwx3410)), @2(vwx360, Right(vwx3610)), False, hd, app(app(ty_Either, cb), app(app(app(ty_@3, cg), da), db))) -> new_ltEs1(vwx3410, vwx3610, cg, da, db) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare20(@2(vwx340, Left(vwx3410)), @2(vwx360, Left(vwx3610)), False, hd, app(app(ty_Either, app(app(app(ty_@3, be), bf), bg)), bb)) -> new_ltEs1(vwx3410, vwx3610, be, bf, bg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare20(@2(vwx340, @3(vwx3410, vwx3411, vwx3412)), @2(vwx360, @3(vwx3610, vwx3611, vwx3612)), False, hd, app(app(app(ty_@3, bah), hg), app(app(app(ty_@3, bcf), bcg), bch))) -> new_ltEs1(vwx3412, vwx3612, bcf, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare20(@2(vwx340, Just(vwx3410)), @2(vwx360, Just(vwx3610)), False, hd, app(ty_Maybe, app(app(app(ty_@3, bdh), bea), beb))) -> new_ltEs1(vwx3410, vwx3610, bdh, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_ltEs(Left(vwx3410), Left(vwx3610), app(app(app(ty_@3, be), bf), bg), bb) -> new_ltEs1(vwx3410, vwx3610, be, bf, bg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs(Right(vwx3410), Right(vwx3610), cb, app(app(app(ty_@3, cg), da), db)) -> new_ltEs1(vwx3410, vwx3610, cg, da, db) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@2(vwx340, @2(vwx3410, vwx3411)), @2(vwx360, @2(vwx3610, vwx3611)), False, hd, app(app(ty_@2, eg), app(app(ty_@2, fb), fc))) -> new_ltEs0(vwx3411, vwx3611, fb, fc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(vwx340, Left(vwx3410)), @2(vwx360, Left(vwx3610)), False, hd, app(app(ty_Either, app(app(ty_@2, bc), bd)), bb)) -> new_ltEs0(vwx3410, vwx3610, bc, bd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(vwx340, @3(vwx3410, vwx3411, vwx3412)), @2(vwx360, @3(vwx3610, vwx3611, vwx3612)), False, hd, app(app(app(ty_@3, bah), hg), app(app(ty_@2, bcd), bce))) -> new_ltEs0(vwx3412, vwx3612, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(vwx340, Just(vwx3410)), @2(vwx360, Just(vwx3610)), False, hd, app(ty_Maybe, app(app(ty_@2, bdf), bdg))) -> new_ltEs0(vwx3410, vwx3610, bdf, bdg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(vwx340, Right(vwx3410)), @2(vwx360, Right(vwx3610)), False, hd, app(app(ty_Either, cb), app(app(ty_@2, ce), cf))) -> new_ltEs0(vwx3410, vwx3610, ce, cf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs(Left(vwx3410), Left(vwx3610), app(app(ty_@2, bc), bd), bb) -> new_ltEs0(vwx3410, vwx3610, bc, bd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(Right(vwx3410), Right(vwx3610), cb, app(app(ty_@2, ce), cf)) -> new_ltEs0(vwx3410, vwx3610, ce, cf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vwx340, vwx341), @2(vwx360, vwx361), False, hd, app(ty_[], bdc)) -> new_compare3(vwx341, vwx361, bdc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(:(vwx3400, vwx3401), vwx341), @2(:(vwx3600, vwx3601), vwx361), False, app(ty_[], hb), gf) -> new_compare3(vwx3401, vwx3601, hb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(@3(vwx3410, vwx3411, vwx3412), @3(vwx3610, vwx3611, vwx3612), app(ty_Maybe, bag), hg, hh) -> new_lt3(vwx3410, vwx3610, bag) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(@3(vwx3410, vwx3411, vwx3412), @3(vwx3610, vwx3611, vwx3612), bah, app(ty_Maybe, bca), hh) -> new_lt3(vwx3411, vwx3611, bca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(@3(vwx3410, vwx3411, vwx3412), @3(vwx3610, vwx3611, vwx3612), app(app(ty_Either, he), hf), hg, hh) -> new_lt(vwx3410, vwx3610, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(@3(vwx3410, vwx3411, vwx3412), @3(vwx3610, vwx3611, vwx3612), bah, app(app(ty_Either, bba), bbb), hh) -> new_lt(vwx3411, vwx3611, bba, bbb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(@3(vwx3410, vwx3411, vwx3412), @3(vwx3610, vwx3611, vwx3612), bah, app(app(app(ty_@3, bbe), bbf), bbg), hh) -> new_lt1(vwx3411, vwx3611, bbe, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs1(@3(vwx3410, vwx3411, vwx3412), @3(vwx3610, vwx3611, vwx3612), app(app(app(ty_@3, bac), bad), bae), hg, hh) -> new_lt1(vwx3410, vwx3610, bac, bad, bae) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs1(@3(vwx3410, vwx3411, vwx3412), @3(vwx3610, vwx3611, vwx3612), bah, app(ty_[], bbh), hh) -> new_lt2(vwx3411, vwx3611, bbh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(@3(vwx3410, vwx3411, vwx3412), @3(vwx3610, vwx3611, vwx3612), app(ty_[], baf), hg, hh) -> new_lt2(vwx3410, vwx3610, baf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(@3(vwx3410, vwx3411, vwx3412), @3(vwx3610, vwx3611, vwx3612), bah, app(app(ty_@2, bbc), bbd), hh) -> new_lt0(vwx3411, vwx3611, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(@3(vwx3410, vwx3411, vwx3412), @3(vwx3610, vwx3611, vwx3612), app(app(ty_@2, baa), bab), hg, hh) -> new_lt0(vwx3410, vwx3610, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare20(@2(vwx340, @3(vwx3410, vwx3411, vwx3412)), @2(vwx360, @3(vwx3610, vwx3611, vwx3612)), False, hd, app(app(app(ty_@3, bah), app(ty_Maybe, bca)), hh)) -> new_lt3(vwx3411, vwx3611, bca) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(vwx340, @2(vwx3410, vwx3411)), @2(vwx360, @2(vwx3610, vwx3611)), False, hd, app(app(ty_@2, app(ty_Maybe, ef)), dg)) -> new_lt3(vwx3410, vwx3610, ef) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(vwx340, @3(vwx3410, vwx3411, vwx3412)), @2(vwx360, @3(vwx3610, vwx3611, vwx3612)), False, hd, app(app(app(ty_@3, app(ty_Maybe, bag)), hg), hh)) -> new_lt3(vwx3410, vwx3610, bag) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(vwx340, Just(vwx3410)), @2(vwx360, Just(vwx3610)), False, hd, app(ty_Maybe, app(ty_Maybe, bed))) -> new_ltEs3(vwx3410, vwx3610, bed) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(vwx340, Left(vwx3410)), @2(vwx360, Left(vwx3610)), False, hd, app(app(ty_Either, app(ty_Maybe, ca)), bb)) -> new_ltEs3(vwx3410, vwx3610, ca) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(vwx340, Right(vwx3410)), @2(vwx360, Right(vwx3610)), False, hd, app(app(ty_Either, cb), app(ty_Maybe, dd))) -> new_ltEs3(vwx3410, vwx3610, dd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(vwx340, @2(vwx3410, vwx3411)), @2(vwx360, @2(vwx3610, vwx3611)), False, hd, app(app(ty_@2, eg), app(ty_Maybe, ga))) -> new_ltEs3(vwx3411, vwx3611, ga) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(vwx340, @3(vwx3410, vwx3411, vwx3412)), @2(vwx360, @3(vwx3610, vwx3611, vwx3612)), False, hd, app(app(app(ty_@3, bah), hg), app(ty_Maybe, bdb))) -> new_ltEs3(vwx3412, vwx3612, bdb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(vwx340, @3(vwx3410, vwx3411, vwx3412)), @2(vwx360, @3(vwx3610, vwx3611, vwx3612)), False, hd, app(app(app(ty_@3, bah), hg), app(ty_[], bda))) -> new_ltEs2(vwx3412, vwx3612, bda) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(vwx340, @2(vwx3410, vwx3411)), @2(vwx360, @2(vwx3610, vwx3611)), False, hd, app(app(ty_@2, eg), app(ty_[], fh))) -> new_ltEs2(vwx3411, vwx3611, fh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(vwx340, Just(vwx3410)), @2(vwx360, Just(vwx3610)), False, hd, app(ty_Maybe, app(ty_[], bec))) -> new_ltEs2(vwx3410, vwx3610, bec) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(vwx340, Left(vwx3410)), @2(vwx360, Left(vwx3610)), False, hd, app(app(ty_Either, app(ty_[], bh)), bb)) -> new_ltEs2(vwx3410, vwx3610, bh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(vwx340, Right(vwx3410)), @2(vwx360, Right(vwx3610)), False, hd, app(app(ty_Either, cb), app(ty_[], dc))) -> new_ltEs2(vwx3410, vwx3610, dc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(vwx340, @3(vwx3410, vwx3411, vwx3412)), @2(vwx360, @3(vwx3610, vwx3611, vwx3612)), False, hd, app(app(app(ty_@3, bah), app(app(ty_Either, bba), bbb)), hh)) -> new_lt(vwx3411, vwx3611, bba, bbb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(vwx340, @2(vwx3410, vwx3411)), @2(vwx360, @2(vwx3610, vwx3611)), False, hd, app(app(ty_@2, app(app(ty_Either, de), df)), dg)) -> new_lt(vwx3410, vwx3610, de, df) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(vwx340, @3(vwx3410, vwx3411, vwx3412)), @2(vwx360, @3(vwx3610, vwx3611, vwx3612)), False, hd, app(app(app(ty_@3, app(app(ty_Either, he), hf)), hg), hh)) -> new_lt(vwx3410, vwx3610, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(vwx340, @3(vwx3410, vwx3411, vwx3412)), @2(vwx360, @3(vwx3610, vwx3611, vwx3612)), False, hd, app(app(app(ty_@3, app(app(app(ty_@3, bac), bad), bae)), hg), hh)) -> new_lt1(vwx3410, vwx3610, bac, bad, bae) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare20(@2(vwx340, @3(vwx3410, vwx3411, vwx3412)), @2(vwx360, @3(vwx3610, vwx3611, vwx3612)), False, hd, app(app(app(ty_@3, bah), app(app(app(ty_@3, bbe), bbf), bbg)), hh)) -> new_lt1(vwx3411, vwx3611, bbe, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare20(@2(vwx340, @2(vwx3410, vwx3411)), @2(vwx360, @2(vwx3610, vwx3611)), False, hd, app(app(ty_@2, app(app(app(ty_@3, eb), ec), ed)), dg)) -> new_lt1(vwx3410, vwx3610, eb, ec, ed) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare20(@2(vwx340, @2(vwx3410, vwx3411)), @2(vwx360, @2(vwx3610, vwx3611)), False, hd, app(app(ty_@2, app(ty_[], ee)), dg)) -> new_lt2(vwx3410, vwx3610, ee) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(vwx340, @3(vwx3410, vwx3411, vwx3412)), @2(vwx360, @3(vwx3610, vwx3611, vwx3612)), False, hd, app(app(app(ty_@3, app(ty_[], baf)), hg), hh)) -> new_lt2(vwx3410, vwx3610, baf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(vwx340, @3(vwx3410, vwx3411, vwx3412)), @2(vwx360, @3(vwx3610, vwx3611, vwx3612)), False, hd, app(app(app(ty_@3, bah), app(ty_[], bbh)), hh)) -> new_lt2(vwx3411, vwx3611, bbh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(vwx340, @3(vwx3410, vwx3411, vwx3412)), @2(vwx360, @3(vwx3610, vwx3611, vwx3612)), False, hd, app(app(app(ty_@3, app(app(ty_@2, baa), bab)), hg), hh)) -> new_lt0(vwx3410, vwx3610, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(vwx340, @3(vwx3410, vwx3411, vwx3412)), @2(vwx360, @3(vwx3610, vwx3611, vwx3612)), False, hd, app(app(app(ty_@3, bah), app(app(ty_@2, bbc), bbd)), hh)) -> new_lt0(vwx3411, vwx3611, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(vwx340, @2(vwx3410, vwx3411)), @2(vwx360, @2(vwx3610, vwx3611)), False, hd, app(app(ty_@2, app(app(ty_@2, dh), ea)), dg)) -> new_lt0(vwx3410, vwx3610, dh, ea) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs(Right(vwx3410), Right(vwx3610), cb, app(ty_Maybe, dd)) -> new_ltEs3(vwx3410, vwx3610, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs(Left(vwx3410), Left(vwx3610), app(ty_Maybe, ca), bb) -> new_ltEs3(vwx3410, vwx3610, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(Left(vwx3410), Left(vwx3610), app(ty_[], bh), bb) -> new_ltEs2(vwx3410, vwx3610, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(Right(vwx3410), Right(vwx3610), cb, app(ty_[], dc)) -> new_ltEs2(vwx3410, vwx3610, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 ---------------------------------------- (23) YES ---------------------------------------- (24) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMulNat(Succ(vwx30100), Succ(vwx40000)) -> new_primMulNat(vwx30100, Succ(vwx40000)) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (25) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primMulNat(Succ(vwx30100), Succ(vwx40000)) -> new_primMulNat(vwx30100, Succ(vwx40000)) The graph contains the following edges 1 > 1, 2 >= 2 ---------------------------------------- (26) YES ---------------------------------------- (27) Obligation: Q DP problem: The TRS P consists of the following rules: new_primPlusNat(Succ(vwx6300), Succ(vwx400000)) -> new_primPlusNat(vwx6300, vwx400000) 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_primPlusNat(Succ(vwx6300), Succ(vwx400000)) -> new_primPlusNat(vwx6300, vwx400000) 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_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. ---------------------------------------- (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_primEqNat(Succ(vwx3000), Succ(vwx4000)) -> new_primEqNat(vwx3000, vwx4000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (32) YES