/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, 58 ms] (20) YES (21) QDP (22) QDPSizeChangeProof [EQUIVALENT, 0 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; " "absReal1 x True = x; absReal1 x False = absReal0 x otherwise; " "absReal0 x True = `negate` x; " "absReal2 x = absReal1 x (x >= 0); " The following Function with conditions "gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); " is transformed to "gcd' x zx = gcd'2 x zx; gcd' x y = gcd'0 x y; " "gcd'0 x y = gcd' y (x `rem` y); " "gcd'1 True x zx = x; gcd'1 zy zz vuu = gcd'0 zz vuu; " "gcd'2 x zx = gcd'1 (zx == 0) x zx; gcd'2 vuv vuw = gcd'0 vuv vuw; " The following Function with conditions "gcd 0 0 = error []; gcd x y = gcd' (abs x) (abs y) where { gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); } ; " is transformed to "gcd vux vuy = gcd3 vux vuy; gcd x y = gcd0 x y; " "gcd0 x y = gcd' (abs x) (abs y) where { gcd' x zx = gcd'2 x zx; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x zx = x; gcd'1 zy zz vuu = gcd'0 zz vuu; ; gcd'2 x zx = gcd'1 (zx == 0) x zx; gcd'2 vuv vuw = gcd'0 vuv vuw; } ; " "gcd1 True vux vuy = error []; gcd1 vuz vvu vvv = gcd0 vvu vvv; " "gcd2 True vux vuy = gcd1 (vuy == 0) vux vuy; gcd2 vvw vvx vvy = gcd0 vvx vvy; " "gcd3 vux vuy = gcd2 (vux == 0) vux vuy; gcd3 vvz vwu = gcd0 vvz vwu; " The following Function with conditions "undefined |Falseundefined; " is transformed to "undefined = undefined1; " "undefined0 True = undefined; " "undefined1 = undefined0 False; " The following Function with conditions "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { d = gcd x y; } ; " is transformed to "reduce x y = reduce2 x y; " "reduce2 x y = reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } ; " The following Function with conditions "compare x y|x == yEQ|x <= yLT|otherwiseGT; " is transformed to "compare x y = compare3 x y; " "compare2 x y True = EQ; compare2 x y False = compare1 x y (x <= y); " "compare1 x y True = LT; compare1 x y False = compare0 x y otherwise; " "compare0 x y True = GT; " "compare3 x y = compare2 x y (x == y); " The following Function with conditions "min x y|x <= yx|otherwisey; " is transformed to "min x y = min2 x y; " "min1 x y True = x; min1 x y False = min0 x y otherwise; " "min0 x y True = y; " "min2 x y = min1 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'0 x y = gcd0Gcd' y (x `rem` y); " "gcd0Gcd'2 x zx = gcd0Gcd'1 (zx == 0) x zx; gcd0Gcd'2 vuv vuw = gcd0Gcd'0 vuv vuw; " "gcd0Gcd'1 True x zx = x; gcd0Gcd'1 zy zz vuu = gcd0Gcd'0 zz vuu; " "gcd0Gcd' x zx = gcd0Gcd'2 x zx; gcd0Gcd' x y = gcd0Gcd'0 x y; " 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 "reduce2Reduce1 vwv vww x y True = error []; reduce2Reduce1 vwv vww x y False = reduce2Reduce0 vwv vww x y otherwise; " "reduce2D vwv vww = gcd vwv vww; " "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="min",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 3[label="min vwx3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 4[label="min vwx3 vwx4",fontsize=16,color="black",shape="triangle"];4 -> 5[label="",style="solid", color="black", weight=3]; 5[label="min2 vwx3 vwx4",fontsize=16,color="black",shape="box"];5 -> 6[label="",style="solid", color="black", weight=3]; 6[label="min1 vwx3 vwx4 (vwx3 <= vwx4)",fontsize=16,color="burlywood",shape="box"];1625[label="vwx3/Left vwx30",fontsize=10,color="white",style="solid",shape="box"];6 -> 1625[label="",style="solid", color="burlywood", weight=9]; 1625 -> 7[label="",style="solid", color="burlywood", weight=3]; 1626[label="vwx3/Right vwx30",fontsize=10,color="white",style="solid",shape="box"];6 -> 1626[label="",style="solid", color="burlywood", weight=9]; 1626 -> 8[label="",style="solid", color="burlywood", weight=3]; 7[label="min1 (Left vwx30) vwx4 (Left vwx30 <= vwx4)",fontsize=16,color="burlywood",shape="box"];1627[label="vwx4/Left vwx40",fontsize=10,color="white",style="solid",shape="box"];7 -> 1627[label="",style="solid", color="burlywood", weight=9]; 1627 -> 9[label="",style="solid", color="burlywood", weight=3]; 1628[label="vwx4/Right vwx40",fontsize=10,color="white",style="solid",shape="box"];7 -> 1628[label="",style="solid", color="burlywood", weight=9]; 1628 -> 10[label="",style="solid", color="burlywood", weight=3]; 8[label="min1 (Right vwx30) vwx4 (Right vwx30 <= vwx4)",fontsize=16,color="burlywood",shape="box"];1629[label="vwx4/Left vwx40",fontsize=10,color="white",style="solid",shape="box"];8 -> 1629[label="",style="solid", color="burlywood", weight=9]; 1629 -> 11[label="",style="solid", color="burlywood", weight=3]; 1630[label="vwx4/Right vwx40",fontsize=10,color="white",style="solid",shape="box"];8 -> 1630[label="",style="solid", color="burlywood", weight=9]; 1630 -> 12[label="",style="solid", color="burlywood", weight=3]; 9[label="min1 (Left vwx30) (Left vwx40) (Left vwx30 <= Left vwx40)",fontsize=16,color="black",shape="box"];9 -> 13[label="",style="solid", color="black", weight=3]; 10[label="min1 (Left vwx30) (Right vwx40) (Left vwx30 <= Right vwx40)",fontsize=16,color="black",shape="box"];10 -> 14[label="",style="solid", color="black", weight=3]; 11[label="min1 (Right vwx30) (Left vwx40) (Right vwx30 <= Left vwx40)",fontsize=16,color="black",shape="box"];11 -> 15[label="",style="solid", color="black", weight=3]; 12[label="min1 (Right vwx30) (Right vwx40) (Right vwx30 <= Right vwx40)",fontsize=16,color="black",shape="box"];12 -> 16[label="",style="solid", color="black", weight=3]; 13 -> 17[label="",style="dashed", color="red", weight=0]; 13[label="min1 (Left vwx30) (Left vwx40) (vwx30 <= vwx40)",fontsize=16,color="magenta"];13 -> 18[label="",style="dashed", color="magenta", weight=3]; 13 -> 19[label="",style="dashed", color="magenta", weight=3]; 13 -> 20[label="",style="dashed", color="magenta", weight=3]; 14[label="min1 (Left vwx30) (Right vwx40) True",fontsize=16,color="black",shape="box"];14 -> 21[label="",style="solid", color="black", weight=3]; 15[label="min1 (Right vwx30) (Left vwx40) False",fontsize=16,color="black",shape="box"];15 -> 22[label="",style="solid", color="black", weight=3]; 16 -> 23[label="",style="dashed", color="red", weight=0]; 16[label="min1 (Right vwx30) (Right vwx40) (vwx30 <= vwx40)",fontsize=16,color="magenta"];16 -> 24[label="",style="dashed", color="magenta", weight=3]; 16 -> 25[label="",style="dashed", color="magenta", weight=3]; 16 -> 26[label="",style="dashed", color="magenta", weight=3]; 18[label="vwx30",fontsize=16,color="green",shape="box"];19[label="vwx40",fontsize=16,color="green",shape="box"];20[label="vwx30 <= vwx40",fontsize=16,color="blue",shape="box"];1631[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];20 -> 1631[label="",style="solid", color="blue", weight=9]; 1631 -> 27[label="",style="solid", color="blue", weight=3]; 1632[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];20 -> 1632[label="",style="solid", color="blue", weight=9]; 1632 -> 28[label="",style="solid", color="blue", weight=3]; 1633[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];20 -> 1633[label="",style="solid", color="blue", weight=9]; 1633 -> 29[label="",style="solid", color="blue", weight=3]; 1634[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];20 -> 1634[label="",style="solid", color="blue", weight=9]; 1634 -> 30[label="",style="solid", color="blue", weight=3]; 1635[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];20 -> 1635[label="",style="solid", color="blue", weight=9]; 1635 -> 31[label="",style="solid", color="blue", weight=3]; 1636[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];20 -> 1636[label="",style="solid", color="blue", weight=9]; 1636 -> 32[label="",style="solid", color="blue", weight=3]; 1637[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];20 -> 1637[label="",style="solid", color="blue", weight=9]; 1637 -> 33[label="",style="solid", color="blue", weight=3]; 1638[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];20 -> 1638[label="",style="solid", color="blue", weight=9]; 1638 -> 34[label="",style="solid", color="blue", weight=3]; 1639[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];20 -> 1639[label="",style="solid", color="blue", weight=9]; 1639 -> 35[label="",style="solid", color="blue", weight=3]; 1640[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];20 -> 1640[label="",style="solid", color="blue", weight=9]; 1640 -> 36[label="",style="solid", color="blue", weight=3]; 1641[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];20 -> 1641[label="",style="solid", color="blue", weight=9]; 1641 -> 37[label="",style="solid", color="blue", weight=3]; 1642[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];20 -> 1642[label="",style="solid", color="blue", weight=9]; 1642 -> 38[label="",style="solid", color="blue", weight=3]; 1643[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];20 -> 1643[label="",style="solid", color="blue", weight=9]; 1643 -> 39[label="",style="solid", color="blue", weight=3]; 1644[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];20 -> 1644[label="",style="solid", color="blue", weight=9]; 1644 -> 40[label="",style="solid", color="blue", weight=3]; 17[label="min1 (Left vwx9) (Left vwx10) vwx11",fontsize=16,color="burlywood",shape="triangle"];1645[label="vwx11/False",fontsize=10,color="white",style="solid",shape="box"];17 -> 1645[label="",style="solid", color="burlywood", weight=9]; 1645 -> 41[label="",style="solid", color="burlywood", weight=3]; 1646[label="vwx11/True",fontsize=10,color="white",style="solid",shape="box"];17 -> 1646[label="",style="solid", color="burlywood", weight=9]; 1646 -> 42[label="",style="solid", color="burlywood", weight=3]; 21[label="Left vwx30",fontsize=16,color="green",shape="box"];22[label="min0 (Right vwx30) (Left vwx40) otherwise",fontsize=16,color="black",shape="box"];22 -> 43[label="",style="solid", color="black", weight=3]; 24[label="vwx30",fontsize=16,color="green",shape="box"];25[label="vwx40",fontsize=16,color="green",shape="box"];26[label="vwx30 <= vwx40",fontsize=16,color="blue",shape="box"];1647[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1647[label="",style="solid", color="blue", weight=9]; 1647 -> 44[label="",style="solid", color="blue", weight=3]; 1648[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1648[label="",style="solid", color="blue", weight=9]; 1648 -> 45[label="",style="solid", color="blue", weight=3]; 1649[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1649[label="",style="solid", color="blue", weight=9]; 1649 -> 46[label="",style="solid", color="blue", weight=3]; 1650[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1650[label="",style="solid", color="blue", weight=9]; 1650 -> 47[label="",style="solid", color="blue", weight=3]; 1651[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1651[label="",style="solid", color="blue", weight=9]; 1651 -> 48[label="",style="solid", color="blue", weight=3]; 1652[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1652[label="",style="solid", color="blue", weight=9]; 1652 -> 49[label="",style="solid", color="blue", weight=3]; 1653[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1653[label="",style="solid", color="blue", weight=9]; 1653 -> 50[label="",style="solid", color="blue", weight=3]; 1654[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1654[label="",style="solid", color="blue", weight=9]; 1654 -> 51[label="",style="solid", color="blue", weight=3]; 1655[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1655[label="",style="solid", color="blue", weight=9]; 1655 -> 52[label="",style="solid", color="blue", weight=3]; 1656[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1656[label="",style="solid", color="blue", weight=9]; 1656 -> 53[label="",style="solid", color="blue", weight=3]; 1657[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1657[label="",style="solid", color="blue", weight=9]; 1657 -> 54[label="",style="solid", color="blue", weight=3]; 1658[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1658[label="",style="solid", color="blue", weight=9]; 1658 -> 55[label="",style="solid", color="blue", weight=3]; 1659[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1659[label="",style="solid", color="blue", weight=9]; 1659 -> 56[label="",style="solid", color="blue", weight=3]; 1660[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1660[label="",style="solid", color="blue", weight=9]; 1660 -> 57[label="",style="solid", color="blue", weight=3]; 23[label="min1 (Right vwx16) (Right vwx17) vwx18",fontsize=16,color="burlywood",shape="triangle"];1661[label="vwx18/False",fontsize=10,color="white",style="solid",shape="box"];23 -> 1661[label="",style="solid", color="burlywood", weight=9]; 1661 -> 58[label="",style="solid", color="burlywood", weight=3]; 1662[label="vwx18/True",fontsize=10,color="white",style="solid",shape="box"];23 -> 1662[label="",style="solid", color="burlywood", weight=9]; 1662 -> 59[label="",style="solid", color="burlywood", weight=3]; 27[label="vwx30 <= vwx40",fontsize=16,color="black",shape="triangle"];27 -> 60[label="",style="solid", color="black", weight=3]; 28[label="vwx30 <= vwx40",fontsize=16,color="black",shape="triangle"];28 -> 61[label="",style="solid", color="black", weight=3]; 29[label="vwx30 <= vwx40",fontsize=16,color="burlywood",shape="triangle"];1663[label="vwx30/False",fontsize=10,color="white",style="solid",shape="box"];29 -> 1663[label="",style="solid", color="burlywood", weight=9]; 1663 -> 62[label="",style="solid", color="burlywood", weight=3]; 1664[label="vwx30/True",fontsize=10,color="white",style="solid",shape="box"];29 -> 1664[label="",style="solid", color="burlywood", weight=9]; 1664 -> 63[label="",style="solid", color="burlywood", weight=3]; 30[label="vwx30 <= vwx40",fontsize=16,color="black",shape="triangle"];30 -> 64[label="",style="solid", color="black", weight=3]; 31[label="vwx30 <= vwx40",fontsize=16,color="black",shape="triangle"];31 -> 65[label="",style="solid", color="black", weight=3]; 32[label="vwx30 <= vwx40",fontsize=16,color="burlywood",shape="triangle"];1665[label="vwx30/Nothing",fontsize=10,color="white",style="solid",shape="box"];32 -> 1665[label="",style="solid", color="burlywood", weight=9]; 1665 -> 66[label="",style="solid", color="burlywood", weight=3]; 1666[label="vwx30/Just vwx300",fontsize=10,color="white",style="solid",shape="box"];32 -> 1666[label="",style="solid", color="burlywood", weight=9]; 1666 -> 67[label="",style="solid", color="burlywood", weight=3]; 33[label="vwx30 <= vwx40",fontsize=16,color="black",shape="triangle"];33 -> 68[label="",style="solid", color="black", weight=3]; 34[label="vwx30 <= vwx40",fontsize=16,color="burlywood",shape="triangle"];1667[label="vwx30/(vwx300,vwx301)",fontsize=10,color="white",style="solid",shape="box"];34 -> 1667[label="",style="solid", color="burlywood", weight=9]; 1667 -> 69[label="",style="solid", color="burlywood", weight=3]; 35[label="vwx30 <= vwx40",fontsize=16,color="burlywood",shape="triangle"];1668[label="vwx30/Left vwx300",fontsize=10,color="white",style="solid",shape="box"];35 -> 1668[label="",style="solid", color="burlywood", weight=9]; 1668 -> 70[label="",style="solid", color="burlywood", weight=3]; 1669[label="vwx30/Right vwx300",fontsize=10,color="white",style="solid",shape="box"];35 -> 1669[label="",style="solid", color="burlywood", weight=9]; 1669 -> 71[label="",style="solid", color="burlywood", weight=3]; 36[label="vwx30 <= vwx40",fontsize=16,color="burlywood",shape="triangle"];1670[label="vwx30/(vwx300,vwx301,vwx302)",fontsize=10,color="white",style="solid",shape="box"];36 -> 1670[label="",style="solid", color="burlywood", weight=9]; 1670 -> 72[label="",style="solid", color="burlywood", weight=3]; 37[label="vwx30 <= vwx40",fontsize=16,color="black",shape="triangle"];37 -> 73[label="",style="solid", color="black", weight=3]; 38[label="vwx30 <= vwx40",fontsize=16,color="black",shape="triangle"];38 -> 74[label="",style="solid", color="black", weight=3]; 39[label="vwx30 <= vwx40",fontsize=16,color="black",shape="triangle"];39 -> 75[label="",style="solid", color="black", weight=3]; 40[label="vwx30 <= vwx40",fontsize=16,color="burlywood",shape="triangle"];1671[label="vwx30/LT",fontsize=10,color="white",style="solid",shape="box"];40 -> 1671[label="",style="solid", color="burlywood", weight=9]; 1671 -> 76[label="",style="solid", color="burlywood", weight=3]; 1672[label="vwx30/EQ",fontsize=10,color="white",style="solid",shape="box"];40 -> 1672[label="",style="solid", color="burlywood", weight=9]; 1672 -> 77[label="",style="solid", color="burlywood", weight=3]; 1673[label="vwx30/GT",fontsize=10,color="white",style="solid",shape="box"];40 -> 1673[label="",style="solid", color="burlywood", weight=9]; 1673 -> 78[label="",style="solid", color="burlywood", weight=3]; 41[label="min1 (Left vwx9) (Left vwx10) False",fontsize=16,color="black",shape="box"];41 -> 79[label="",style="solid", color="black", weight=3]; 42[label="min1 (Left vwx9) (Left vwx10) True",fontsize=16,color="black",shape="box"];42 -> 80[label="",style="solid", color="black", weight=3]; 43[label="min0 (Right vwx30) (Left vwx40) True",fontsize=16,color="black",shape="box"];43 -> 81[label="",style="solid", color="black", weight=3]; 44 -> 27[label="",style="dashed", color="red", weight=0]; 44[label="vwx30 <= vwx40",fontsize=16,color="magenta"];44 -> 82[label="",style="dashed", color="magenta", weight=3]; 44 -> 83[label="",style="dashed", color="magenta", weight=3]; 45 -> 28[label="",style="dashed", color="red", weight=0]; 45[label="vwx30 <= vwx40",fontsize=16,color="magenta"];45 -> 84[label="",style="dashed", color="magenta", weight=3]; 45 -> 85[label="",style="dashed", color="magenta", weight=3]; 46 -> 29[label="",style="dashed", color="red", weight=0]; 46[label="vwx30 <= vwx40",fontsize=16,color="magenta"];46 -> 86[label="",style="dashed", color="magenta", weight=3]; 46 -> 87[label="",style="dashed", color="magenta", weight=3]; 47 -> 30[label="",style="dashed", color="red", weight=0]; 47[label="vwx30 <= vwx40",fontsize=16,color="magenta"];47 -> 88[label="",style="dashed", color="magenta", weight=3]; 47 -> 89[label="",style="dashed", color="magenta", weight=3]; 48 -> 31[label="",style="dashed", color="red", weight=0]; 48[label="vwx30 <= vwx40",fontsize=16,color="magenta"];48 -> 90[label="",style="dashed", color="magenta", weight=3]; 48 -> 91[label="",style="dashed", color="magenta", weight=3]; 49 -> 32[label="",style="dashed", color="red", weight=0]; 49[label="vwx30 <= vwx40",fontsize=16,color="magenta"];49 -> 92[label="",style="dashed", color="magenta", weight=3]; 49 -> 93[label="",style="dashed", color="magenta", weight=3]; 50 -> 33[label="",style="dashed", color="red", weight=0]; 50[label="vwx30 <= vwx40",fontsize=16,color="magenta"];50 -> 94[label="",style="dashed", color="magenta", weight=3]; 50 -> 95[label="",style="dashed", color="magenta", weight=3]; 51 -> 34[label="",style="dashed", color="red", weight=0]; 51[label="vwx30 <= vwx40",fontsize=16,color="magenta"];51 -> 96[label="",style="dashed", color="magenta", weight=3]; 51 -> 97[label="",style="dashed", color="magenta", weight=3]; 52 -> 35[label="",style="dashed", color="red", weight=0]; 52[label="vwx30 <= vwx40",fontsize=16,color="magenta"];52 -> 98[label="",style="dashed", color="magenta", weight=3]; 52 -> 99[label="",style="dashed", color="magenta", weight=3]; 53 -> 36[label="",style="dashed", color="red", weight=0]; 53[label="vwx30 <= vwx40",fontsize=16,color="magenta"];53 -> 100[label="",style="dashed", color="magenta", weight=3]; 53 -> 101[label="",style="dashed", color="magenta", weight=3]; 54 -> 37[label="",style="dashed", color="red", weight=0]; 54[label="vwx30 <= vwx40",fontsize=16,color="magenta"];54 -> 102[label="",style="dashed", color="magenta", weight=3]; 54 -> 103[label="",style="dashed", color="magenta", weight=3]; 55 -> 38[label="",style="dashed", color="red", weight=0]; 55[label="vwx30 <= vwx40",fontsize=16,color="magenta"];55 -> 104[label="",style="dashed", color="magenta", weight=3]; 55 -> 105[label="",style="dashed", color="magenta", weight=3]; 56 -> 39[label="",style="dashed", color="red", weight=0]; 56[label="vwx30 <= vwx40",fontsize=16,color="magenta"];56 -> 106[label="",style="dashed", color="magenta", weight=3]; 56 -> 107[label="",style="dashed", color="magenta", weight=3]; 57 -> 40[label="",style="dashed", color="red", weight=0]; 57[label="vwx30 <= vwx40",fontsize=16,color="magenta"];57 -> 108[label="",style="dashed", color="magenta", weight=3]; 57 -> 109[label="",style="dashed", color="magenta", weight=3]; 58[label="min1 (Right vwx16) (Right vwx17) False",fontsize=16,color="black",shape="box"];58 -> 110[label="",style="solid", color="black", weight=3]; 59[label="min1 (Right vwx16) (Right vwx17) True",fontsize=16,color="black",shape="box"];59 -> 111[label="",style="solid", color="black", weight=3]; 60[label="compare vwx30 vwx40 /= GT",fontsize=16,color="black",shape="box"];60 -> 112[label="",style="solid", color="black", weight=3]; 61[label="compare vwx30 vwx40 /= GT",fontsize=16,color="black",shape="box"];61 -> 113[label="",style="solid", color="black", weight=3]; 62[label="False <= vwx40",fontsize=16,color="burlywood",shape="box"];1674[label="vwx40/False",fontsize=10,color="white",style="solid",shape="box"];62 -> 1674[label="",style="solid", color="burlywood", weight=9]; 1674 -> 114[label="",style="solid", color="burlywood", weight=3]; 1675[label="vwx40/True",fontsize=10,color="white",style="solid",shape="box"];62 -> 1675[label="",style="solid", color="burlywood", weight=9]; 1675 -> 115[label="",style="solid", color="burlywood", weight=3]; 63[label="True <= vwx40",fontsize=16,color="burlywood",shape="box"];1676[label="vwx40/False",fontsize=10,color="white",style="solid",shape="box"];63 -> 1676[label="",style="solid", color="burlywood", weight=9]; 1676 -> 116[label="",style="solid", color="burlywood", weight=3]; 1677[label="vwx40/True",fontsize=10,color="white",style="solid",shape="box"];63 -> 1677[label="",style="solid", color="burlywood", weight=9]; 1677 -> 117[label="",style="solid", color="burlywood", weight=3]; 64[label="compare vwx30 vwx40 /= GT",fontsize=16,color="black",shape="box"];64 -> 118[label="",style="solid", color="black", weight=3]; 65[label="compare vwx30 vwx40 /= GT",fontsize=16,color="black",shape="box"];65 -> 119[label="",style="solid", color="black", weight=3]; 66[label="Nothing <= vwx40",fontsize=16,color="burlywood",shape="box"];1678[label="vwx40/Nothing",fontsize=10,color="white",style="solid",shape="box"];66 -> 1678[label="",style="solid", color="burlywood", weight=9]; 1678 -> 120[label="",style="solid", color="burlywood", weight=3]; 1679[label="vwx40/Just vwx400",fontsize=10,color="white",style="solid",shape="box"];66 -> 1679[label="",style="solid", color="burlywood", weight=9]; 1679 -> 121[label="",style="solid", color="burlywood", weight=3]; 67[label="Just vwx300 <= vwx40",fontsize=16,color="burlywood",shape="box"];1680[label="vwx40/Nothing",fontsize=10,color="white",style="solid",shape="box"];67 -> 1680[label="",style="solid", color="burlywood", weight=9]; 1680 -> 122[label="",style="solid", color="burlywood", weight=3]; 1681[label="vwx40/Just vwx400",fontsize=10,color="white",style="solid",shape="box"];67 -> 1681[label="",style="solid", color="burlywood", weight=9]; 1681 -> 123[label="",style="solid", color="burlywood", weight=3]; 68[label="compare vwx30 vwx40 /= GT",fontsize=16,color="black",shape="box"];68 -> 124[label="",style="solid", color="black", weight=3]; 69[label="(vwx300,vwx301) <= vwx40",fontsize=16,color="burlywood",shape="box"];1682[label="vwx40/(vwx400,vwx401)",fontsize=10,color="white",style="solid",shape="box"];69 -> 1682[label="",style="solid", color="burlywood", weight=9]; 1682 -> 125[label="",style="solid", color="burlywood", weight=3]; 70[label="Left vwx300 <= vwx40",fontsize=16,color="burlywood",shape="box"];1683[label="vwx40/Left vwx400",fontsize=10,color="white",style="solid",shape="box"];70 -> 1683[label="",style="solid", color="burlywood", weight=9]; 1683 -> 126[label="",style="solid", color="burlywood", weight=3]; 1684[label="vwx40/Right vwx400",fontsize=10,color="white",style="solid",shape="box"];70 -> 1684[label="",style="solid", color="burlywood", weight=9]; 1684 -> 127[label="",style="solid", color="burlywood", weight=3]; 71[label="Right vwx300 <= vwx40",fontsize=16,color="burlywood",shape="box"];1685[label="vwx40/Left vwx400",fontsize=10,color="white",style="solid",shape="box"];71 -> 1685[label="",style="solid", color="burlywood", weight=9]; 1685 -> 128[label="",style="solid", color="burlywood", weight=3]; 1686[label="vwx40/Right vwx400",fontsize=10,color="white",style="solid",shape="box"];71 -> 1686[label="",style="solid", color="burlywood", weight=9]; 1686 -> 129[label="",style="solid", color="burlywood", weight=3]; 72[label="(vwx300,vwx301,vwx302) <= vwx40",fontsize=16,color="burlywood",shape="box"];1687[label="vwx40/(vwx400,vwx401,vwx402)",fontsize=10,color="white",style="solid",shape="box"];72 -> 1687[label="",style="solid", color="burlywood", weight=9]; 1687 -> 130[label="",style="solid", color="burlywood", weight=3]; 73[label="compare vwx30 vwx40 /= GT",fontsize=16,color="black",shape="box"];73 -> 131[label="",style="solid", color="black", weight=3]; 74[label="compare vwx30 vwx40 /= GT",fontsize=16,color="black",shape="box"];74 -> 132[label="",style="solid", color="black", weight=3]; 75[label="compare vwx30 vwx40 /= GT",fontsize=16,color="black",shape="box"];75 -> 133[label="",style="solid", color="black", weight=3]; 76[label="LT <= vwx40",fontsize=16,color="burlywood",shape="box"];1688[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];76 -> 1688[label="",style="solid", color="burlywood", weight=9]; 1688 -> 134[label="",style="solid", color="burlywood", weight=3]; 1689[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];76 -> 1689[label="",style="solid", color="burlywood", weight=9]; 1689 -> 135[label="",style="solid", color="burlywood", weight=3]; 1690[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];76 -> 1690[label="",style="solid", color="burlywood", weight=9]; 1690 -> 136[label="",style="solid", color="burlywood", weight=3]; 77[label="EQ <= vwx40",fontsize=16,color="burlywood",shape="box"];1691[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];77 -> 1691[label="",style="solid", color="burlywood", weight=9]; 1691 -> 137[label="",style="solid", color="burlywood", weight=3]; 1692[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];77 -> 1692[label="",style="solid", color="burlywood", weight=9]; 1692 -> 138[label="",style="solid", color="burlywood", weight=3]; 1693[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];77 -> 1693[label="",style="solid", color="burlywood", weight=9]; 1693 -> 139[label="",style="solid", color="burlywood", weight=3]; 78[label="GT <= vwx40",fontsize=16,color="burlywood",shape="box"];1694[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];78 -> 1694[label="",style="solid", color="burlywood", weight=9]; 1694 -> 140[label="",style="solid", color="burlywood", weight=3]; 1695[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];78 -> 1695[label="",style="solid", color="burlywood", weight=9]; 1695 -> 141[label="",style="solid", color="burlywood", weight=3]; 1696[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];78 -> 1696[label="",style="solid", color="burlywood", weight=9]; 1696 -> 142[label="",style="solid", color="burlywood", weight=3]; 79[label="min0 (Left vwx9) (Left vwx10) otherwise",fontsize=16,color="black",shape="box"];79 -> 143[label="",style="solid", color="black", weight=3]; 80[label="Left vwx9",fontsize=16,color="green",shape="box"];81[label="Left vwx40",fontsize=16,color="green",shape="box"];82[label="vwx30",fontsize=16,color="green",shape="box"];83[label="vwx40",fontsize=16,color="green",shape="box"];84[label="vwx30",fontsize=16,color="green",shape="box"];85[label="vwx40",fontsize=16,color="green",shape="box"];86[label="vwx30",fontsize=16,color="green",shape="box"];87[label="vwx40",fontsize=16,color="green",shape="box"];88[label="vwx30",fontsize=16,color="green",shape="box"];89[label="vwx40",fontsize=16,color="green",shape="box"];90[label="vwx30",fontsize=16,color="green",shape="box"];91[label="vwx40",fontsize=16,color="green",shape="box"];92[label="vwx30",fontsize=16,color="green",shape="box"];93[label="vwx40",fontsize=16,color="green",shape="box"];94[label="vwx30",fontsize=16,color="green",shape="box"];95[label="vwx40",fontsize=16,color="green",shape="box"];96[label="vwx30",fontsize=16,color="green",shape="box"];97[label="vwx40",fontsize=16,color="green",shape="box"];98[label="vwx30",fontsize=16,color="green",shape="box"];99[label="vwx40",fontsize=16,color="green",shape="box"];100[label="vwx30",fontsize=16,color="green",shape="box"];101[label="vwx40",fontsize=16,color="green",shape="box"];102[label="vwx30",fontsize=16,color="green",shape="box"];103[label="vwx40",fontsize=16,color="green",shape="box"];104[label="vwx30",fontsize=16,color="green",shape="box"];105[label="vwx40",fontsize=16,color="green",shape="box"];106[label="vwx30",fontsize=16,color="green",shape="box"];107[label="vwx40",fontsize=16,color="green",shape="box"];108[label="vwx30",fontsize=16,color="green",shape="box"];109[label="vwx40",fontsize=16,color="green",shape="box"];110[label="min0 (Right vwx16) (Right vwx17) otherwise",fontsize=16,color="black",shape="box"];110 -> 144[label="",style="solid", color="black", weight=3]; 111[label="Right vwx16",fontsize=16,color="green",shape="box"];112 -> 423[label="",style="dashed", color="red", weight=0]; 112[label="not (compare vwx30 vwx40 == GT)",fontsize=16,color="magenta"];112 -> 424[label="",style="dashed", color="magenta", weight=3]; 113 -> 423[label="",style="dashed", color="red", weight=0]; 113[label="not (compare vwx30 vwx40 == GT)",fontsize=16,color="magenta"];113 -> 425[label="",style="dashed", color="magenta", weight=3]; 114[label="False <= False",fontsize=16,color="black",shape="box"];114 -> 147[label="",style="solid", color="black", weight=3]; 115[label="False <= True",fontsize=16,color="black",shape="box"];115 -> 148[label="",style="solid", color="black", weight=3]; 116[label="True <= False",fontsize=16,color="black",shape="box"];116 -> 149[label="",style="solid", color="black", weight=3]; 117[label="True <= True",fontsize=16,color="black",shape="box"];117 -> 150[label="",style="solid", color="black", weight=3]; 118 -> 423[label="",style="dashed", color="red", weight=0]; 118[label="not (compare vwx30 vwx40 == GT)",fontsize=16,color="magenta"];118 -> 426[label="",style="dashed", color="magenta", weight=3]; 119 -> 423[label="",style="dashed", color="red", weight=0]; 119[label="not (compare vwx30 vwx40 == GT)",fontsize=16,color="magenta"];119 -> 427[label="",style="dashed", color="magenta", weight=3]; 120[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];120 -> 153[label="",style="solid", color="black", weight=3]; 121[label="Nothing <= Just vwx400",fontsize=16,color="black",shape="box"];121 -> 154[label="",style="solid", color="black", weight=3]; 122[label="Just vwx300 <= Nothing",fontsize=16,color="black",shape="box"];122 -> 155[label="",style="solid", color="black", weight=3]; 123[label="Just vwx300 <= Just vwx400",fontsize=16,color="black",shape="box"];123 -> 156[label="",style="solid", color="black", weight=3]; 124 -> 423[label="",style="dashed", color="red", weight=0]; 124[label="not (compare vwx30 vwx40 == GT)",fontsize=16,color="magenta"];124 -> 428[label="",style="dashed", color="magenta", weight=3]; 125[label="(vwx300,vwx301) <= (vwx400,vwx401)",fontsize=16,color="black",shape="box"];125 -> 158[label="",style="solid", color="black", weight=3]; 126[label="Left vwx300 <= Left vwx400",fontsize=16,color="black",shape="box"];126 -> 159[label="",style="solid", color="black", weight=3]; 127[label="Left vwx300 <= Right vwx400",fontsize=16,color="black",shape="box"];127 -> 160[label="",style="solid", color="black", weight=3]; 128[label="Right vwx300 <= Left vwx400",fontsize=16,color="black",shape="box"];128 -> 161[label="",style="solid", color="black", weight=3]; 129[label="Right vwx300 <= Right vwx400",fontsize=16,color="black",shape="box"];129 -> 162[label="",style="solid", color="black", weight=3]; 130[label="(vwx300,vwx301,vwx302) <= (vwx400,vwx401,vwx402)",fontsize=16,color="black",shape="box"];130 -> 163[label="",style="solid", color="black", weight=3]; 131 -> 423[label="",style="dashed", color="red", weight=0]; 131[label="not (compare vwx30 vwx40 == GT)",fontsize=16,color="magenta"];131 -> 429[label="",style="dashed", color="magenta", weight=3]; 132 -> 423[label="",style="dashed", color="red", weight=0]; 132[label="not (compare vwx30 vwx40 == GT)",fontsize=16,color="magenta"];132 -> 430[label="",style="dashed", color="magenta", weight=3]; 133 -> 423[label="",style="dashed", color="red", weight=0]; 133[label="not (compare vwx30 vwx40 == GT)",fontsize=16,color="magenta"];133 -> 431[label="",style="dashed", color="magenta", weight=3]; 134[label="LT <= LT",fontsize=16,color="black",shape="box"];134 -> 168[label="",style="solid", color="black", weight=3]; 135[label="LT <= EQ",fontsize=16,color="black",shape="box"];135 -> 169[label="",style="solid", color="black", weight=3]; 136[label="LT <= GT",fontsize=16,color="black",shape="box"];136 -> 170[label="",style="solid", color="black", weight=3]; 137[label="EQ <= LT",fontsize=16,color="black",shape="box"];137 -> 171[label="",style="solid", color="black", weight=3]; 138[label="EQ <= EQ",fontsize=16,color="black",shape="box"];138 -> 172[label="",style="solid", color="black", weight=3]; 139[label="EQ <= GT",fontsize=16,color="black",shape="box"];139 -> 173[label="",style="solid", color="black", weight=3]; 140[label="GT <= LT",fontsize=16,color="black",shape="box"];140 -> 174[label="",style="solid", color="black", weight=3]; 141[label="GT <= EQ",fontsize=16,color="black",shape="box"];141 -> 175[label="",style="solid", color="black", weight=3]; 142[label="GT <= GT",fontsize=16,color="black",shape="box"];142 -> 176[label="",style="solid", color="black", weight=3]; 143[label="min0 (Left vwx9) (Left vwx10) True",fontsize=16,color="black",shape="box"];143 -> 177[label="",style="solid", color="black", weight=3]; 144[label="min0 (Right vwx16) (Right vwx17) True",fontsize=16,color="black",shape="box"];144 -> 178[label="",style="solid", color="black", weight=3]; 424[label="compare vwx30 vwx40",fontsize=16,color="burlywood",shape="triangle"];1697[label="vwx30/vwx300 :% vwx301",fontsize=10,color="white",style="solid",shape="box"];424 -> 1697[label="",style="solid", color="burlywood", weight=9]; 1697 -> 443[label="",style="solid", color="burlywood", weight=3]; 423[label="not (vwx42 == GT)",fontsize=16,color="burlywood",shape="triangle"];1698[label="vwx42/LT",fontsize=10,color="white",style="solid",shape="box"];423 -> 1698[label="",style="solid", color="burlywood", weight=9]; 1698 -> 444[label="",style="solid", color="burlywood", weight=3]; 1699[label="vwx42/EQ",fontsize=10,color="white",style="solid",shape="box"];423 -> 1699[label="",style="solid", color="burlywood", weight=9]; 1699 -> 445[label="",style="solid", color="burlywood", weight=3]; 1700[label="vwx42/GT",fontsize=10,color="white",style="solid",shape="box"];423 -> 1700[label="",style="solid", color="burlywood", weight=9]; 1700 -> 446[label="",style="solid", color="burlywood", weight=3]; 425[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];425 -> 447[label="",style="solid", color="black", weight=3]; 147[label="True",fontsize=16,color="green",shape="box"];148[label="True",fontsize=16,color="green",shape="box"];149[label="False",fontsize=16,color="green",shape="box"];150[label="True",fontsize=16,color="green",shape="box"];426[label="compare vwx30 vwx40",fontsize=16,color="burlywood",shape="triangle"];1701[label="vwx30/Integer vwx300",fontsize=10,color="white",style="solid",shape="box"];426 -> 1701[label="",style="solid", color="burlywood", weight=9]; 1701 -> 448[label="",style="solid", color="burlywood", weight=3]; 427[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];427 -> 449[label="",style="solid", color="black", weight=3]; 153[label="True",fontsize=16,color="green",shape="box"];154[label="True",fontsize=16,color="green",shape="box"];155[label="False",fontsize=16,color="green",shape="box"];156[label="vwx300 <= vwx400",fontsize=16,color="blue",shape="box"];1702[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];156 -> 1702[label="",style="solid", color="blue", weight=9]; 1702 -> 184[label="",style="solid", color="blue", weight=3]; 1703[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];156 -> 1703[label="",style="solid", color="blue", weight=9]; 1703 -> 185[label="",style="solid", color="blue", weight=3]; 1704[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];156 -> 1704[label="",style="solid", color="blue", weight=9]; 1704 -> 186[label="",style="solid", color="blue", weight=3]; 1705[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];156 -> 1705[label="",style="solid", color="blue", weight=9]; 1705 -> 187[label="",style="solid", color="blue", weight=3]; 1706[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];156 -> 1706[label="",style="solid", color="blue", weight=9]; 1706 -> 188[label="",style="solid", color="blue", weight=3]; 1707[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];156 -> 1707[label="",style="solid", color="blue", weight=9]; 1707 -> 189[label="",style="solid", color="blue", weight=3]; 1708[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];156 -> 1708[label="",style="solid", color="blue", weight=9]; 1708 -> 190[label="",style="solid", color="blue", weight=3]; 1709[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];156 -> 1709[label="",style="solid", color="blue", weight=9]; 1709 -> 191[label="",style="solid", color="blue", weight=3]; 1710[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];156 -> 1710[label="",style="solid", color="blue", weight=9]; 1710 -> 192[label="",style="solid", color="blue", weight=3]; 1711[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];156 -> 1711[label="",style="solid", color="blue", weight=9]; 1711 -> 193[label="",style="solid", color="blue", weight=3]; 1712[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];156 -> 1712[label="",style="solid", color="blue", weight=9]; 1712 -> 194[label="",style="solid", color="blue", weight=3]; 1713[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];156 -> 1713[label="",style="solid", color="blue", weight=9]; 1713 -> 195[label="",style="solid", color="blue", weight=3]; 1714[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];156 -> 1714[label="",style="solid", color="blue", weight=9]; 1714 -> 196[label="",style="solid", color="blue", weight=3]; 1715[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];156 -> 1715[label="",style="solid", color="blue", weight=9]; 1715 -> 197[label="",style="solid", color="blue", weight=3]; 428[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];428 -> 450[label="",style="solid", color="black", weight=3]; 158 -> 295[label="",style="dashed", color="red", weight=0]; 158[label="vwx300 < vwx400 || vwx300 == vwx400 && vwx301 <= vwx401",fontsize=16,color="magenta"];158 -> 296[label="",style="dashed", color="magenta", weight=3]; 158 -> 297[label="",style="dashed", color="magenta", weight=3]; 158 -> 298[label="",style="dashed", color="magenta", weight=3]; 158 -> 299[label="",style="dashed", color="magenta", weight=3]; 159[label="vwx300 <= vwx400",fontsize=16,color="blue",shape="box"];1716[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];159 -> 1716[label="",style="solid", color="blue", weight=9]; 1716 -> 205[label="",style="solid", color="blue", weight=3]; 1717[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];159 -> 1717[label="",style="solid", color="blue", weight=9]; 1717 -> 206[label="",style="solid", color="blue", weight=3]; 1718[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];159 -> 1718[label="",style="solid", color="blue", weight=9]; 1718 -> 207[label="",style="solid", color="blue", weight=3]; 1719[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];159 -> 1719[label="",style="solid", color="blue", weight=9]; 1719 -> 208[label="",style="solid", color="blue", weight=3]; 1720[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];159 -> 1720[label="",style="solid", color="blue", weight=9]; 1720 -> 209[label="",style="solid", color="blue", weight=3]; 1721[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];159 -> 1721[label="",style="solid", color="blue", weight=9]; 1721 -> 210[label="",style="solid", color="blue", weight=3]; 1722[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];159 -> 1722[label="",style="solid", color="blue", weight=9]; 1722 -> 211[label="",style="solid", color="blue", weight=3]; 1723[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];159 -> 1723[label="",style="solid", color="blue", weight=9]; 1723 -> 212[label="",style="solid", color="blue", weight=3]; 1724[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];159 -> 1724[label="",style="solid", color="blue", weight=9]; 1724 -> 213[label="",style="solid", color="blue", weight=3]; 1725[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];159 -> 1725[label="",style="solid", color="blue", weight=9]; 1725 -> 214[label="",style="solid", color="blue", weight=3]; 1726[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];159 -> 1726[label="",style="solid", color="blue", weight=9]; 1726 -> 215[label="",style="solid", color="blue", weight=3]; 1727[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];159 -> 1727[label="",style="solid", color="blue", weight=9]; 1727 -> 216[label="",style="solid", color="blue", weight=3]; 1728[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];159 -> 1728[label="",style="solid", color="blue", weight=9]; 1728 -> 217[label="",style="solid", color="blue", weight=3]; 1729[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];159 -> 1729[label="",style="solid", color="blue", weight=9]; 1729 -> 218[label="",style="solid", color="blue", weight=3]; 160[label="True",fontsize=16,color="green",shape="box"];161[label="False",fontsize=16,color="green",shape="box"];162[label="vwx300 <= vwx400",fontsize=16,color="blue",shape="box"];1730[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];162 -> 1730[label="",style="solid", color="blue", weight=9]; 1730 -> 219[label="",style="solid", color="blue", weight=3]; 1731[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];162 -> 1731[label="",style="solid", color="blue", weight=9]; 1731 -> 220[label="",style="solid", color="blue", weight=3]; 1732[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];162 -> 1732[label="",style="solid", color="blue", weight=9]; 1732 -> 221[label="",style="solid", color="blue", weight=3]; 1733[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];162 -> 1733[label="",style="solid", color="blue", weight=9]; 1733 -> 222[label="",style="solid", color="blue", weight=3]; 1734[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];162 -> 1734[label="",style="solid", color="blue", weight=9]; 1734 -> 223[label="",style="solid", color="blue", weight=3]; 1735[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];162 -> 1735[label="",style="solid", color="blue", weight=9]; 1735 -> 224[label="",style="solid", color="blue", weight=3]; 1736[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];162 -> 1736[label="",style="solid", color="blue", weight=9]; 1736 -> 225[label="",style="solid", color="blue", weight=3]; 1737[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];162 -> 1737[label="",style="solid", color="blue", weight=9]; 1737 -> 226[label="",style="solid", color="blue", weight=3]; 1738[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];162 -> 1738[label="",style="solid", color="blue", weight=9]; 1738 -> 227[label="",style="solid", color="blue", weight=3]; 1739[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];162 -> 1739[label="",style="solid", color="blue", weight=9]; 1739 -> 228[label="",style="solid", color="blue", weight=3]; 1740[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];162 -> 1740[label="",style="solid", color="blue", weight=9]; 1740 -> 229[label="",style="solid", color="blue", weight=3]; 1741[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];162 -> 1741[label="",style="solid", color="blue", weight=9]; 1741 -> 230[label="",style="solid", color="blue", weight=3]; 1742[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];162 -> 1742[label="",style="solid", color="blue", weight=9]; 1742 -> 231[label="",style="solid", color="blue", weight=3]; 1743[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];162 -> 1743[label="",style="solid", color="blue", weight=9]; 1743 -> 232[label="",style="solid", color="blue", weight=3]; 163 -> 295[label="",style="dashed", color="red", weight=0]; 163[label="vwx300 < vwx400 || vwx300 == vwx400 && (vwx301 < vwx401 || vwx301 == vwx401 && vwx302 <= vwx402)",fontsize=16,color="magenta"];163 -> 300[label="",style="dashed", color="magenta", weight=3]; 163 -> 301[label="",style="dashed", color="magenta", weight=3]; 163 -> 302[label="",style="dashed", color="magenta", weight=3]; 163 -> 303[label="",style="dashed", color="magenta", weight=3]; 429[label="compare vwx30 vwx40",fontsize=16,color="burlywood",shape="triangle"];1744[label="vwx30/()",fontsize=10,color="white",style="solid",shape="box"];429 -> 1744[label="",style="solid", color="burlywood", weight=9]; 1744 -> 451[label="",style="solid", color="burlywood", weight=3]; 430[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];430 -> 452[label="",style="solid", color="black", weight=3]; 431[label="compare vwx30 vwx40",fontsize=16,color="burlywood",shape="triangle"];1745[label="vwx30/vwx300 : vwx301",fontsize=10,color="white",style="solid",shape="box"];431 -> 1745[label="",style="solid", color="burlywood", weight=9]; 1745 -> 453[label="",style="solid", color="burlywood", weight=3]; 1746[label="vwx30/[]",fontsize=10,color="white",style="solid",shape="box"];431 -> 1746[label="",style="solid", color="burlywood", weight=9]; 1746 -> 454[label="",style="solid", color="burlywood", weight=3]; 168[label="True",fontsize=16,color="green",shape="box"];169[label="True",fontsize=16,color="green",shape="box"];170[label="True",fontsize=16,color="green",shape="box"];171[label="False",fontsize=16,color="green",shape="box"];172[label="True",fontsize=16,color="green",shape="box"];173[label="True",fontsize=16,color="green",shape="box"];174[label="False",fontsize=16,color="green",shape="box"];175[label="False",fontsize=16,color="green",shape="box"];176[label="True",fontsize=16,color="green",shape="box"];177[label="Left vwx10",fontsize=16,color="green",shape="box"];178[label="Right vwx17",fontsize=16,color="green",shape="box"];443[label="compare (vwx300 :% vwx301) vwx40",fontsize=16,color="burlywood",shape="box"];1747[label="vwx40/vwx400 :% vwx401",fontsize=10,color="white",style="solid",shape="box"];443 -> 1747[label="",style="solid", color="burlywood", weight=9]; 1747 -> 555[label="",style="solid", color="burlywood", weight=3]; 444[label="not (LT == GT)",fontsize=16,color="black",shape="box"];444 -> 556[label="",style="solid", color="black", weight=3]; 445[label="not (EQ == GT)",fontsize=16,color="black",shape="box"];445 -> 557[label="",style="solid", color="black", weight=3]; 446[label="not (GT == GT)",fontsize=16,color="black",shape="box"];446 -> 558[label="",style="solid", color="black", weight=3]; 447[label="primCmpDouble vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];1748[label="vwx30/Double vwx300 vwx301",fontsize=10,color="white",style="solid",shape="box"];447 -> 1748[label="",style="solid", color="burlywood", weight=9]; 1748 -> 559[label="",style="solid", color="burlywood", weight=3]; 448[label="compare (Integer vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];1749[label="vwx40/Integer vwx400",fontsize=10,color="white",style="solid",shape="box"];448 -> 1749[label="",style="solid", color="burlywood", weight=9]; 1749 -> 560[label="",style="solid", color="burlywood", weight=3]; 449[label="primCmpInt vwx30 vwx40",fontsize=16,color="burlywood",shape="triangle"];1750[label="vwx30/Pos vwx300",fontsize=10,color="white",style="solid",shape="box"];449 -> 1750[label="",style="solid", color="burlywood", weight=9]; 1750 -> 561[label="",style="solid", color="burlywood", weight=3]; 1751[label="vwx30/Neg vwx300",fontsize=10,color="white",style="solid",shape="box"];449 -> 1751[label="",style="solid", color="burlywood", weight=9]; 1751 -> 562[label="",style="solid", color="burlywood", weight=3]; 184 -> 27[label="",style="dashed", color="red", weight=0]; 184[label="vwx300 <= vwx400",fontsize=16,color="magenta"];184 -> 252[label="",style="dashed", color="magenta", weight=3]; 184 -> 253[label="",style="dashed", color="magenta", weight=3]; 185 -> 28[label="",style="dashed", color="red", weight=0]; 185[label="vwx300 <= vwx400",fontsize=16,color="magenta"];185 -> 254[label="",style="dashed", color="magenta", weight=3]; 185 -> 255[label="",style="dashed", color="magenta", weight=3]; 186 -> 29[label="",style="dashed", color="red", weight=0]; 186[label="vwx300 <= vwx400",fontsize=16,color="magenta"];186 -> 256[label="",style="dashed", color="magenta", weight=3]; 186 -> 257[label="",style="dashed", color="magenta", weight=3]; 187 -> 30[label="",style="dashed", color="red", weight=0]; 187[label="vwx300 <= vwx400",fontsize=16,color="magenta"];187 -> 258[label="",style="dashed", color="magenta", weight=3]; 187 -> 259[label="",style="dashed", color="magenta", weight=3]; 188 -> 31[label="",style="dashed", color="red", weight=0]; 188[label="vwx300 <= vwx400",fontsize=16,color="magenta"];188 -> 260[label="",style="dashed", color="magenta", weight=3]; 188 -> 261[label="",style="dashed", color="magenta", weight=3]; 189 -> 32[label="",style="dashed", color="red", weight=0]; 189[label="vwx300 <= vwx400",fontsize=16,color="magenta"];189 -> 262[label="",style="dashed", color="magenta", weight=3]; 189 -> 263[label="",style="dashed", color="magenta", weight=3]; 190 -> 33[label="",style="dashed", color="red", weight=0]; 190[label="vwx300 <= vwx400",fontsize=16,color="magenta"];190 -> 264[label="",style="dashed", color="magenta", weight=3]; 190 -> 265[label="",style="dashed", color="magenta", weight=3]; 191 -> 34[label="",style="dashed", color="red", weight=0]; 191[label="vwx300 <= vwx400",fontsize=16,color="magenta"];191 -> 266[label="",style="dashed", color="magenta", weight=3]; 191 -> 267[label="",style="dashed", color="magenta", weight=3]; 192 -> 35[label="",style="dashed", color="red", weight=0]; 192[label="vwx300 <= vwx400",fontsize=16,color="magenta"];192 -> 268[label="",style="dashed", color="magenta", weight=3]; 192 -> 269[label="",style="dashed", color="magenta", weight=3]; 193 -> 36[label="",style="dashed", color="red", weight=0]; 193[label="vwx300 <= vwx400",fontsize=16,color="magenta"];193 -> 270[label="",style="dashed", color="magenta", weight=3]; 193 -> 271[label="",style="dashed", color="magenta", weight=3]; 194 -> 37[label="",style="dashed", color="red", weight=0]; 194[label="vwx300 <= vwx400",fontsize=16,color="magenta"];194 -> 272[label="",style="dashed", color="magenta", weight=3]; 194 -> 273[label="",style="dashed", color="magenta", weight=3]; 195 -> 38[label="",style="dashed", color="red", weight=0]; 195[label="vwx300 <= vwx400",fontsize=16,color="magenta"];195 -> 274[label="",style="dashed", color="magenta", weight=3]; 195 -> 275[label="",style="dashed", color="magenta", weight=3]; 196 -> 39[label="",style="dashed", color="red", weight=0]; 196[label="vwx300 <= vwx400",fontsize=16,color="magenta"];196 -> 276[label="",style="dashed", color="magenta", weight=3]; 196 -> 277[label="",style="dashed", color="magenta", weight=3]; 197 -> 40[label="",style="dashed", color="red", weight=0]; 197[label="vwx300 <= vwx400",fontsize=16,color="magenta"];197 -> 278[label="",style="dashed", color="magenta", weight=3]; 197 -> 279[label="",style="dashed", color="magenta", weight=3]; 450[label="primCmpChar vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];1752[label="vwx30/Char vwx300",fontsize=10,color="white",style="solid",shape="box"];450 -> 1752[label="",style="solid", color="burlywood", weight=9]; 1752 -> 563[label="",style="solid", color="burlywood", weight=3]; 296[label="vwx400",fontsize=16,color="green",shape="box"];297[label="vwx300",fontsize=16,color="green",shape="box"];298[label="vwx301 <= vwx401",fontsize=16,color="blue",shape="box"];1753[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];298 -> 1753[label="",style="solid", color="blue", weight=9]; 1753 -> 312[label="",style="solid", color="blue", weight=3]; 1754[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];298 -> 1754[label="",style="solid", color="blue", weight=9]; 1754 -> 313[label="",style="solid", color="blue", weight=3]; 1755[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];298 -> 1755[label="",style="solid", color="blue", weight=9]; 1755 -> 314[label="",style="solid", color="blue", weight=3]; 1756[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];298 -> 1756[label="",style="solid", color="blue", weight=9]; 1756 -> 315[label="",style="solid", color="blue", weight=3]; 1757[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];298 -> 1757[label="",style="solid", color="blue", weight=9]; 1757 -> 316[label="",style="solid", color="blue", weight=3]; 1758[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];298 -> 1758[label="",style="solid", color="blue", weight=9]; 1758 -> 317[label="",style="solid", color="blue", weight=3]; 1759[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];298 -> 1759[label="",style="solid", color="blue", weight=9]; 1759 -> 318[label="",style="solid", color="blue", weight=3]; 1760[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];298 -> 1760[label="",style="solid", color="blue", weight=9]; 1760 -> 319[label="",style="solid", color="blue", weight=3]; 1761[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];298 -> 1761[label="",style="solid", color="blue", weight=9]; 1761 -> 320[label="",style="solid", color="blue", weight=3]; 1762[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];298 -> 1762[label="",style="solid", color="blue", weight=9]; 1762 -> 321[label="",style="solid", color="blue", weight=3]; 1763[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];298 -> 1763[label="",style="solid", color="blue", weight=9]; 1763 -> 322[label="",style="solid", color="blue", weight=3]; 1764[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];298 -> 1764[label="",style="solid", color="blue", weight=9]; 1764 -> 323[label="",style="solid", color="blue", weight=3]; 1765[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];298 -> 1765[label="",style="solid", color="blue", weight=9]; 1765 -> 324[label="",style="solid", color="blue", weight=3]; 1766[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];298 -> 1766[label="",style="solid", color="blue", weight=9]; 1766 -> 325[label="",style="solid", color="blue", weight=3]; 299[label="vwx300 < vwx400",fontsize=16,color="blue",shape="box"];1767[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];299 -> 1767[label="",style="solid", color="blue", weight=9]; 1767 -> 326[label="",style="solid", color="blue", weight=3]; 1768[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];299 -> 1768[label="",style="solid", color="blue", weight=9]; 1768 -> 327[label="",style="solid", color="blue", weight=3]; 1769[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];299 -> 1769[label="",style="solid", color="blue", weight=9]; 1769 -> 328[label="",style="solid", color="blue", weight=3]; 1770[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];299 -> 1770[label="",style="solid", color="blue", weight=9]; 1770 -> 329[label="",style="solid", color="blue", weight=3]; 1771[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];299 -> 1771[label="",style="solid", color="blue", weight=9]; 1771 -> 330[label="",style="solid", color="blue", weight=3]; 1772[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];299 -> 1772[label="",style="solid", color="blue", weight=9]; 1772 -> 331[label="",style="solid", color="blue", weight=3]; 1773[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];299 -> 1773[label="",style="solid", color="blue", weight=9]; 1773 -> 332[label="",style="solid", color="blue", weight=3]; 1774[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];299 -> 1774[label="",style="solid", color="blue", weight=9]; 1774 -> 333[label="",style="solid", color="blue", weight=3]; 1775[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];299 -> 1775[label="",style="solid", color="blue", weight=9]; 1775 -> 334[label="",style="solid", color="blue", weight=3]; 1776[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];299 -> 1776[label="",style="solid", color="blue", weight=9]; 1776 -> 335[label="",style="solid", color="blue", weight=3]; 1777[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];299 -> 1777[label="",style="solid", color="blue", weight=9]; 1777 -> 336[label="",style="solid", color="blue", weight=3]; 1778[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];299 -> 1778[label="",style="solid", color="blue", weight=9]; 1778 -> 337[label="",style="solid", color="blue", weight=3]; 1779[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];299 -> 1779[label="",style="solid", color="blue", weight=9]; 1779 -> 338[label="",style="solid", color="blue", weight=3]; 1780[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];299 -> 1780[label="",style="solid", color="blue", weight=9]; 1780 -> 339[label="",style="solid", color="blue", weight=3]; 295[label="vwx36 || vwx37 == vwx38 && vwx39",fontsize=16,color="burlywood",shape="triangle"];1781[label="vwx36/False",fontsize=10,color="white",style="solid",shape="box"];295 -> 1781[label="",style="solid", color="burlywood", weight=9]; 1781 -> 340[label="",style="solid", color="burlywood", weight=3]; 1782[label="vwx36/True",fontsize=10,color="white",style="solid",shape="box"];295 -> 1782[label="",style="solid", color="burlywood", weight=9]; 1782 -> 341[label="",style="solid", color="burlywood", weight=3]; 205 -> 27[label="",style="dashed", color="red", weight=0]; 205[label="vwx300 <= vwx400",fontsize=16,color="magenta"];205 -> 342[label="",style="dashed", color="magenta", weight=3]; 205 -> 343[label="",style="dashed", color="magenta", weight=3]; 206 -> 28[label="",style="dashed", color="red", weight=0]; 206[label="vwx300 <= vwx400",fontsize=16,color="magenta"];206 -> 344[label="",style="dashed", color="magenta", weight=3]; 206 -> 345[label="",style="dashed", color="magenta", weight=3]; 207 -> 29[label="",style="dashed", color="red", weight=0]; 207[label="vwx300 <= vwx400",fontsize=16,color="magenta"];207 -> 346[label="",style="dashed", color="magenta", weight=3]; 207 -> 347[label="",style="dashed", color="magenta", weight=3]; 208 -> 30[label="",style="dashed", color="red", weight=0]; 208[label="vwx300 <= vwx400",fontsize=16,color="magenta"];208 -> 348[label="",style="dashed", color="magenta", weight=3]; 208 -> 349[label="",style="dashed", color="magenta", weight=3]; 209 -> 31[label="",style="dashed", color="red", weight=0]; 209[label="vwx300 <= vwx400",fontsize=16,color="magenta"];209 -> 350[label="",style="dashed", color="magenta", weight=3]; 209 -> 351[label="",style="dashed", color="magenta", weight=3]; 210 -> 32[label="",style="dashed", color="red", weight=0]; 210[label="vwx300 <= vwx400",fontsize=16,color="magenta"];210 -> 352[label="",style="dashed", color="magenta", weight=3]; 210 -> 353[label="",style="dashed", color="magenta", weight=3]; 211 -> 33[label="",style="dashed", color="red", weight=0]; 211[label="vwx300 <= vwx400",fontsize=16,color="magenta"];211 -> 354[label="",style="dashed", color="magenta", weight=3]; 211 -> 355[label="",style="dashed", color="magenta", weight=3]; 212 -> 34[label="",style="dashed", color="red", weight=0]; 212[label="vwx300 <= vwx400",fontsize=16,color="magenta"];212 -> 356[label="",style="dashed", color="magenta", weight=3]; 212 -> 357[label="",style="dashed", color="magenta", weight=3]; 213 -> 35[label="",style="dashed", color="red", weight=0]; 213[label="vwx300 <= vwx400",fontsize=16,color="magenta"];213 -> 358[label="",style="dashed", color="magenta", weight=3]; 213 -> 359[label="",style="dashed", color="magenta", weight=3]; 214 -> 36[label="",style="dashed", color="red", weight=0]; 214[label="vwx300 <= vwx400",fontsize=16,color="magenta"];214 -> 360[label="",style="dashed", color="magenta", weight=3]; 214 -> 361[label="",style="dashed", color="magenta", weight=3]; 215 -> 37[label="",style="dashed", color="red", weight=0]; 215[label="vwx300 <= vwx400",fontsize=16,color="magenta"];215 -> 362[label="",style="dashed", color="magenta", weight=3]; 215 -> 363[label="",style="dashed", color="magenta", weight=3]; 216 -> 38[label="",style="dashed", color="red", weight=0]; 216[label="vwx300 <= vwx400",fontsize=16,color="magenta"];216 -> 364[label="",style="dashed", color="magenta", weight=3]; 216 -> 365[label="",style="dashed", color="magenta", weight=3]; 217 -> 39[label="",style="dashed", color="red", weight=0]; 217[label="vwx300 <= vwx400",fontsize=16,color="magenta"];217 -> 366[label="",style="dashed", color="magenta", weight=3]; 217 -> 367[label="",style="dashed", color="magenta", weight=3]; 218 -> 40[label="",style="dashed", color="red", weight=0]; 218[label="vwx300 <= vwx400",fontsize=16,color="magenta"];218 -> 368[label="",style="dashed", color="magenta", weight=3]; 218 -> 369[label="",style="dashed", color="magenta", weight=3]; 219 -> 27[label="",style="dashed", color="red", weight=0]; 219[label="vwx300 <= vwx400",fontsize=16,color="magenta"];219 -> 370[label="",style="dashed", color="magenta", weight=3]; 219 -> 371[label="",style="dashed", color="magenta", weight=3]; 220 -> 28[label="",style="dashed", color="red", weight=0]; 220[label="vwx300 <= vwx400",fontsize=16,color="magenta"];220 -> 372[label="",style="dashed", color="magenta", weight=3]; 220 -> 373[label="",style="dashed", color="magenta", weight=3]; 221 -> 29[label="",style="dashed", color="red", weight=0]; 221[label="vwx300 <= vwx400",fontsize=16,color="magenta"];221 -> 374[label="",style="dashed", color="magenta", weight=3]; 221 -> 375[label="",style="dashed", color="magenta", weight=3]; 222 -> 30[label="",style="dashed", color="red", weight=0]; 222[label="vwx300 <= vwx400",fontsize=16,color="magenta"];222 -> 376[label="",style="dashed", color="magenta", weight=3]; 222 -> 377[label="",style="dashed", color="magenta", weight=3]; 223 -> 31[label="",style="dashed", color="red", weight=0]; 223[label="vwx300 <= vwx400",fontsize=16,color="magenta"];223 -> 378[label="",style="dashed", color="magenta", weight=3]; 223 -> 379[label="",style="dashed", color="magenta", weight=3]; 224 -> 32[label="",style="dashed", color="red", weight=0]; 224[label="vwx300 <= vwx400",fontsize=16,color="magenta"];224 -> 380[label="",style="dashed", color="magenta", weight=3]; 224 -> 381[label="",style="dashed", color="magenta", weight=3]; 225 -> 33[label="",style="dashed", color="red", weight=0]; 225[label="vwx300 <= vwx400",fontsize=16,color="magenta"];225 -> 382[label="",style="dashed", color="magenta", weight=3]; 225 -> 383[label="",style="dashed", color="magenta", weight=3]; 226 -> 34[label="",style="dashed", color="red", weight=0]; 226[label="vwx300 <= vwx400",fontsize=16,color="magenta"];226 -> 384[label="",style="dashed", color="magenta", weight=3]; 226 -> 385[label="",style="dashed", color="magenta", weight=3]; 227 -> 35[label="",style="dashed", color="red", weight=0]; 227[label="vwx300 <= vwx400",fontsize=16,color="magenta"];227 -> 386[label="",style="dashed", color="magenta", weight=3]; 227 -> 387[label="",style="dashed", color="magenta", weight=3]; 228 -> 36[label="",style="dashed", color="red", weight=0]; 228[label="vwx300 <= vwx400",fontsize=16,color="magenta"];228 -> 388[label="",style="dashed", color="magenta", weight=3]; 228 -> 389[label="",style="dashed", color="magenta", weight=3]; 229 -> 37[label="",style="dashed", color="red", weight=0]; 229[label="vwx300 <= vwx400",fontsize=16,color="magenta"];229 -> 390[label="",style="dashed", color="magenta", weight=3]; 229 -> 391[label="",style="dashed", color="magenta", weight=3]; 230 -> 38[label="",style="dashed", color="red", weight=0]; 230[label="vwx300 <= vwx400",fontsize=16,color="magenta"];230 -> 392[label="",style="dashed", color="magenta", weight=3]; 230 -> 393[label="",style="dashed", color="magenta", weight=3]; 231 -> 39[label="",style="dashed", color="red", weight=0]; 231[label="vwx300 <= vwx400",fontsize=16,color="magenta"];231 -> 394[label="",style="dashed", color="magenta", weight=3]; 231 -> 395[label="",style="dashed", color="magenta", weight=3]; 232 -> 40[label="",style="dashed", color="red", weight=0]; 232[label="vwx300 <= vwx400",fontsize=16,color="magenta"];232 -> 396[label="",style="dashed", color="magenta", weight=3]; 232 -> 397[label="",style="dashed", color="magenta", weight=3]; 300[label="vwx400",fontsize=16,color="green",shape="box"];301[label="vwx300",fontsize=16,color="green",shape="box"];302 -> 295[label="",style="dashed", color="red", weight=0]; 302[label="vwx301 < vwx401 || vwx301 == vwx401 && vwx302 <= vwx402",fontsize=16,color="magenta"];302 -> 398[label="",style="dashed", color="magenta", weight=3]; 302 -> 399[label="",style="dashed", color="magenta", weight=3]; 302 -> 400[label="",style="dashed", color="magenta", weight=3]; 302 -> 401[label="",style="dashed", color="magenta", weight=3]; 303[label="vwx300 < vwx400",fontsize=16,color="blue",shape="box"];1783[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];303 -> 1783[label="",style="solid", color="blue", weight=9]; 1783 -> 402[label="",style="solid", color="blue", weight=3]; 1784[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];303 -> 1784[label="",style="solid", color="blue", weight=9]; 1784 -> 403[label="",style="solid", color="blue", weight=3]; 1785[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];303 -> 1785[label="",style="solid", color="blue", weight=9]; 1785 -> 404[label="",style="solid", color="blue", weight=3]; 1786[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];303 -> 1786[label="",style="solid", color="blue", weight=9]; 1786 -> 405[label="",style="solid", color="blue", weight=3]; 1787[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];303 -> 1787[label="",style="solid", color="blue", weight=9]; 1787 -> 406[label="",style="solid", color="blue", weight=3]; 1788[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];303 -> 1788[label="",style="solid", color="blue", weight=9]; 1788 -> 407[label="",style="solid", color="blue", weight=3]; 1789[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];303 -> 1789[label="",style="solid", color="blue", weight=9]; 1789 -> 408[label="",style="solid", color="blue", weight=3]; 1790[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];303 -> 1790[label="",style="solid", color="blue", weight=9]; 1790 -> 409[label="",style="solid", color="blue", weight=3]; 1791[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];303 -> 1791[label="",style="solid", color="blue", weight=9]; 1791 -> 410[label="",style="solid", color="blue", weight=3]; 1792[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];303 -> 1792[label="",style="solid", color="blue", weight=9]; 1792 -> 411[label="",style="solid", color="blue", weight=3]; 1793[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];303 -> 1793[label="",style="solid", color="blue", weight=9]; 1793 -> 412[label="",style="solid", color="blue", weight=3]; 1794[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];303 -> 1794[label="",style="solid", color="blue", weight=9]; 1794 -> 413[label="",style="solid", color="blue", weight=3]; 1795[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];303 -> 1795[label="",style="solid", color="blue", weight=9]; 1795 -> 414[label="",style="solid", color="blue", weight=3]; 1796[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];303 -> 1796[label="",style="solid", color="blue", weight=9]; 1796 -> 415[label="",style="solid", color="blue", weight=3]; 451[label="compare () vwx40",fontsize=16,color="burlywood",shape="box"];1797[label="vwx40/()",fontsize=10,color="white",style="solid",shape="box"];451 -> 1797[label="",style="solid", color="burlywood", weight=9]; 1797 -> 564[label="",style="solid", color="burlywood", weight=3]; 452[label="primCmpFloat vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];1798[label="vwx30/Float vwx300 vwx301",fontsize=10,color="white",style="solid",shape="box"];452 -> 1798[label="",style="solid", color="burlywood", weight=9]; 1798 -> 565[label="",style="solid", color="burlywood", weight=3]; 453[label="compare (vwx300 : vwx301) vwx40",fontsize=16,color="burlywood",shape="box"];1799[label="vwx40/vwx400 : vwx401",fontsize=10,color="white",style="solid",shape="box"];453 -> 1799[label="",style="solid", color="burlywood", weight=9]; 1799 -> 566[label="",style="solid", color="burlywood", weight=3]; 1800[label="vwx40/[]",fontsize=10,color="white",style="solid",shape="box"];453 -> 1800[label="",style="solid", color="burlywood", weight=9]; 1800 -> 567[label="",style="solid", color="burlywood", weight=3]; 454[label="compare [] vwx40",fontsize=16,color="burlywood",shape="box"];1801[label="vwx40/vwx400 : vwx401",fontsize=10,color="white",style="solid",shape="box"];454 -> 1801[label="",style="solid", color="burlywood", weight=9]; 1801 -> 568[label="",style="solid", color="burlywood", weight=3]; 1802[label="vwx40/[]",fontsize=10,color="white",style="solid",shape="box"];454 -> 1802[label="",style="solid", color="burlywood", weight=9]; 1802 -> 569[label="",style="solid", color="burlywood", weight=3]; 555[label="compare (vwx300 :% vwx301) (vwx400 :% vwx401)",fontsize=16,color="black",shape="box"];555 -> 585[label="",style="solid", color="black", weight=3]; 556[label="not False",fontsize=16,color="black",shape="triangle"];556 -> 586[label="",style="solid", color="black", weight=3]; 557 -> 556[label="",style="dashed", color="red", weight=0]; 557[label="not False",fontsize=16,color="magenta"];558[label="not True",fontsize=16,color="black",shape="box"];558 -> 587[label="",style="solid", color="black", weight=3]; 559[label="primCmpDouble (Double vwx300 vwx301) vwx40",fontsize=16,color="burlywood",shape="box"];1803[label="vwx301/Pos vwx3010",fontsize=10,color="white",style="solid",shape="box"];559 -> 1803[label="",style="solid", color="burlywood", weight=9]; 1803 -> 588[label="",style="solid", color="burlywood", weight=3]; 1804[label="vwx301/Neg vwx3010",fontsize=10,color="white",style="solid",shape="box"];559 -> 1804[label="",style="solid", color="burlywood", weight=9]; 1804 -> 589[label="",style="solid", color="burlywood", weight=3]; 560[label="compare (Integer vwx300) (Integer vwx400)",fontsize=16,color="black",shape="box"];560 -> 590[label="",style="solid", color="black", weight=3]; 561[label="primCmpInt (Pos vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];1805[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];561 -> 1805[label="",style="solid", color="burlywood", weight=9]; 1805 -> 591[label="",style="solid", color="burlywood", weight=3]; 1806[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];561 -> 1806[label="",style="solid", color="burlywood", weight=9]; 1806 -> 592[label="",style="solid", color="burlywood", weight=3]; 562[label="primCmpInt (Neg vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];1807[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];562 -> 1807[label="",style="solid", color="burlywood", weight=9]; 1807 -> 593[label="",style="solid", color="burlywood", weight=3]; 1808[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];562 -> 1808[label="",style="solid", color="burlywood", weight=9]; 1808 -> 594[label="",style="solid", color="burlywood", weight=3]; 252[label="vwx300",fontsize=16,color="green",shape="box"];253[label="vwx400",fontsize=16,color="green",shape="box"];254[label="vwx300",fontsize=16,color="green",shape="box"];255[label="vwx400",fontsize=16,color="green",shape="box"];256[label="vwx300",fontsize=16,color="green",shape="box"];257[label="vwx400",fontsize=16,color="green",shape="box"];258[label="vwx300",fontsize=16,color="green",shape="box"];259[label="vwx400",fontsize=16,color="green",shape="box"];260[label="vwx300",fontsize=16,color="green",shape="box"];261[label="vwx400",fontsize=16,color="green",shape="box"];262[label="vwx300",fontsize=16,color="green",shape="box"];263[label="vwx400",fontsize=16,color="green",shape="box"];264[label="vwx300",fontsize=16,color="green",shape="box"];265[label="vwx400",fontsize=16,color="green",shape="box"];266[label="vwx300",fontsize=16,color="green",shape="box"];267[label="vwx400",fontsize=16,color="green",shape="box"];268[label="vwx300",fontsize=16,color="green",shape="box"];269[label="vwx400",fontsize=16,color="green",shape="box"];270[label="vwx300",fontsize=16,color="green",shape="box"];271[label="vwx400",fontsize=16,color="green",shape="box"];272[label="vwx300",fontsize=16,color="green",shape="box"];273[label="vwx400",fontsize=16,color="green",shape="box"];274[label="vwx300",fontsize=16,color="green",shape="box"];275[label="vwx400",fontsize=16,color="green",shape="box"];276[label="vwx300",fontsize=16,color="green",shape="box"];277[label="vwx400",fontsize=16,color="green",shape="box"];278[label="vwx300",fontsize=16,color="green",shape="box"];279[label="vwx400",fontsize=16,color="green",shape="box"];563[label="primCmpChar (Char vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];1809[label="vwx40/Char vwx400",fontsize=10,color="white",style="solid",shape="box"];563 -> 1809[label="",style="solid", color="burlywood", weight=9]; 1809 -> 595[label="",style="solid", color="burlywood", weight=3]; 312 -> 27[label="",style="dashed", color="red", weight=0]; 312[label="vwx301 <= vwx401",fontsize=16,color="magenta"];312 -> 455[label="",style="dashed", color="magenta", weight=3]; 312 -> 456[label="",style="dashed", color="magenta", weight=3]; 313 -> 28[label="",style="dashed", color="red", weight=0]; 313[label="vwx301 <= vwx401",fontsize=16,color="magenta"];313 -> 457[label="",style="dashed", color="magenta", weight=3]; 313 -> 458[label="",style="dashed", color="magenta", weight=3]; 314 -> 29[label="",style="dashed", color="red", weight=0]; 314[label="vwx301 <= vwx401",fontsize=16,color="magenta"];314 -> 459[label="",style="dashed", color="magenta", weight=3]; 314 -> 460[label="",style="dashed", color="magenta", weight=3]; 315 -> 30[label="",style="dashed", color="red", weight=0]; 315[label="vwx301 <= vwx401",fontsize=16,color="magenta"];315 -> 461[label="",style="dashed", color="magenta", weight=3]; 315 -> 462[label="",style="dashed", color="magenta", weight=3]; 316 -> 31[label="",style="dashed", color="red", weight=0]; 316[label="vwx301 <= vwx401",fontsize=16,color="magenta"];316 -> 463[label="",style="dashed", color="magenta", weight=3]; 316 -> 464[label="",style="dashed", color="magenta", weight=3]; 317 -> 32[label="",style="dashed", color="red", weight=0]; 317[label="vwx301 <= vwx401",fontsize=16,color="magenta"];317 -> 465[label="",style="dashed", color="magenta", weight=3]; 317 -> 466[label="",style="dashed", color="magenta", weight=3]; 318 -> 33[label="",style="dashed", color="red", weight=0]; 318[label="vwx301 <= vwx401",fontsize=16,color="magenta"];318 -> 467[label="",style="dashed", color="magenta", weight=3]; 318 -> 468[label="",style="dashed", color="magenta", weight=3]; 319 -> 34[label="",style="dashed", color="red", weight=0]; 319[label="vwx301 <= vwx401",fontsize=16,color="magenta"];319 -> 469[label="",style="dashed", color="magenta", weight=3]; 319 -> 470[label="",style="dashed", color="magenta", weight=3]; 320 -> 35[label="",style="dashed", color="red", weight=0]; 320[label="vwx301 <= vwx401",fontsize=16,color="magenta"];320 -> 471[label="",style="dashed", color="magenta", weight=3]; 320 -> 472[label="",style="dashed", color="magenta", weight=3]; 321 -> 36[label="",style="dashed", color="red", weight=0]; 321[label="vwx301 <= vwx401",fontsize=16,color="magenta"];321 -> 473[label="",style="dashed", color="magenta", weight=3]; 321 -> 474[label="",style="dashed", color="magenta", weight=3]; 322 -> 37[label="",style="dashed", color="red", weight=0]; 322[label="vwx301 <= vwx401",fontsize=16,color="magenta"];322 -> 475[label="",style="dashed", color="magenta", weight=3]; 322 -> 476[label="",style="dashed", color="magenta", weight=3]; 323 -> 38[label="",style="dashed", color="red", weight=0]; 323[label="vwx301 <= vwx401",fontsize=16,color="magenta"];323 -> 477[label="",style="dashed", color="magenta", weight=3]; 323 -> 478[label="",style="dashed", color="magenta", weight=3]; 324 -> 39[label="",style="dashed", color="red", weight=0]; 324[label="vwx301 <= vwx401",fontsize=16,color="magenta"];324 -> 479[label="",style="dashed", color="magenta", weight=3]; 324 -> 480[label="",style="dashed", color="magenta", weight=3]; 325 -> 40[label="",style="dashed", color="red", weight=0]; 325[label="vwx301 <= vwx401",fontsize=16,color="magenta"];325 -> 481[label="",style="dashed", color="magenta", weight=3]; 325 -> 482[label="",style="dashed", color="magenta", weight=3]; 326[label="vwx300 < vwx400",fontsize=16,color="black",shape="triangle"];326 -> 483[label="",style="solid", color="black", weight=3]; 327[label="vwx300 < vwx400",fontsize=16,color="black",shape="triangle"];327 -> 484[label="",style="solid", color="black", weight=3]; 328[label="vwx300 < vwx400",fontsize=16,color="black",shape="triangle"];328 -> 485[label="",style="solid", color="black", weight=3]; 329[label="vwx300 < vwx400",fontsize=16,color="black",shape="triangle"];329 -> 486[label="",style="solid", color="black", weight=3]; 330[label="vwx300 < vwx400",fontsize=16,color="black",shape="triangle"];330 -> 487[label="",style="solid", color="black", weight=3]; 331[label="vwx300 < vwx400",fontsize=16,color="black",shape="triangle"];331 -> 488[label="",style="solid", color="black", weight=3]; 332[label="vwx300 < vwx400",fontsize=16,color="black",shape="triangle"];332 -> 489[label="",style="solid", color="black", weight=3]; 333[label="vwx300 < vwx400",fontsize=16,color="black",shape="triangle"];333 -> 490[label="",style="solid", color="black", weight=3]; 334[label="vwx300 < vwx400",fontsize=16,color="black",shape="triangle"];334 -> 491[label="",style="solid", color="black", weight=3]; 335[label="vwx300 < vwx400",fontsize=16,color="black",shape="triangle"];335 -> 492[label="",style="solid", color="black", weight=3]; 336[label="vwx300 < vwx400",fontsize=16,color="black",shape="triangle"];336 -> 493[label="",style="solid", color="black", weight=3]; 337[label="vwx300 < vwx400",fontsize=16,color="black",shape="triangle"];337 -> 494[label="",style="solid", color="black", weight=3]; 338[label="vwx300 < vwx400",fontsize=16,color="black",shape="triangle"];338 -> 495[label="",style="solid", color="black", weight=3]; 339[label="vwx300 < vwx400",fontsize=16,color="black",shape="triangle"];339 -> 496[label="",style="solid", color="black", weight=3]; 340[label="False || vwx37 == vwx38 && vwx39",fontsize=16,color="black",shape="box"];340 -> 497[label="",style="solid", color="black", weight=3]; 341[label="True || vwx37 == vwx38 && vwx39",fontsize=16,color="black",shape="box"];341 -> 498[label="",style="solid", color="black", weight=3]; 342[label="vwx300",fontsize=16,color="green",shape="box"];343[label="vwx400",fontsize=16,color="green",shape="box"];344[label="vwx300",fontsize=16,color="green",shape="box"];345[label="vwx400",fontsize=16,color="green",shape="box"];346[label="vwx300",fontsize=16,color="green",shape="box"];347[label="vwx400",fontsize=16,color="green",shape="box"];348[label="vwx300",fontsize=16,color="green",shape="box"];349[label="vwx400",fontsize=16,color="green",shape="box"];350[label="vwx300",fontsize=16,color="green",shape="box"];351[label="vwx400",fontsize=16,color="green",shape="box"];352[label="vwx300",fontsize=16,color="green",shape="box"];353[label="vwx400",fontsize=16,color="green",shape="box"];354[label="vwx300",fontsize=16,color="green",shape="box"];355[label="vwx400",fontsize=16,color="green",shape="box"];356[label="vwx300",fontsize=16,color="green",shape="box"];357[label="vwx400",fontsize=16,color="green",shape="box"];358[label="vwx300",fontsize=16,color="green",shape="box"];359[label="vwx400",fontsize=16,color="green",shape="box"];360[label="vwx300",fontsize=16,color="green",shape="box"];361[label="vwx400",fontsize=16,color="green",shape="box"];362[label="vwx300",fontsize=16,color="green",shape="box"];363[label="vwx400",fontsize=16,color="green",shape="box"];364[label="vwx300",fontsize=16,color="green",shape="box"];365[label="vwx400",fontsize=16,color="green",shape="box"];366[label="vwx300",fontsize=16,color="green",shape="box"];367[label="vwx400",fontsize=16,color="green",shape="box"];368[label="vwx300",fontsize=16,color="green",shape="box"];369[label="vwx400",fontsize=16,color="green",shape="box"];370[label="vwx300",fontsize=16,color="green",shape="box"];371[label="vwx400",fontsize=16,color="green",shape="box"];372[label="vwx300",fontsize=16,color="green",shape="box"];373[label="vwx400",fontsize=16,color="green",shape="box"];374[label="vwx300",fontsize=16,color="green",shape="box"];375[label="vwx400",fontsize=16,color="green",shape="box"];376[label="vwx300",fontsize=16,color="green",shape="box"];377[label="vwx400",fontsize=16,color="green",shape="box"];378[label="vwx300",fontsize=16,color="green",shape="box"];379[label="vwx400",fontsize=16,color="green",shape="box"];380[label="vwx300",fontsize=16,color="green",shape="box"];381[label="vwx400",fontsize=16,color="green",shape="box"];382[label="vwx300",fontsize=16,color="green",shape="box"];383[label="vwx400",fontsize=16,color="green",shape="box"];384[label="vwx300",fontsize=16,color="green",shape="box"];385[label="vwx400",fontsize=16,color="green",shape="box"];386[label="vwx300",fontsize=16,color="green",shape="box"];387[label="vwx400",fontsize=16,color="green",shape="box"];388[label="vwx300",fontsize=16,color="green",shape="box"];389[label="vwx400",fontsize=16,color="green",shape="box"];390[label="vwx300",fontsize=16,color="green",shape="box"];391[label="vwx400",fontsize=16,color="green",shape="box"];392[label="vwx300",fontsize=16,color="green",shape="box"];393[label="vwx400",fontsize=16,color="green",shape="box"];394[label="vwx300",fontsize=16,color="green",shape="box"];395[label="vwx400",fontsize=16,color="green",shape="box"];396[label="vwx300",fontsize=16,color="green",shape="box"];397[label="vwx400",fontsize=16,color="green",shape="box"];398[label="vwx401",fontsize=16,color="green",shape="box"];399[label="vwx301",fontsize=16,color="green",shape="box"];400[label="vwx302 <= vwx402",fontsize=16,color="blue",shape="box"];1810[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];400 -> 1810[label="",style="solid", color="blue", weight=9]; 1810 -> 499[label="",style="solid", color="blue", weight=3]; 1811[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];400 -> 1811[label="",style="solid", color="blue", weight=9]; 1811 -> 500[label="",style="solid", color="blue", weight=3]; 1812[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];400 -> 1812[label="",style="solid", color="blue", weight=9]; 1812 -> 501[label="",style="solid", color="blue", weight=3]; 1813[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];400 -> 1813[label="",style="solid", color="blue", weight=9]; 1813 -> 502[label="",style="solid", color="blue", weight=3]; 1814[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];400 -> 1814[label="",style="solid", color="blue", weight=9]; 1814 -> 503[label="",style="solid", color="blue", weight=3]; 1815[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];400 -> 1815[label="",style="solid", color="blue", weight=9]; 1815 -> 504[label="",style="solid", color="blue", weight=3]; 1816[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];400 -> 1816[label="",style="solid", color="blue", weight=9]; 1816 -> 505[label="",style="solid", color="blue", weight=3]; 1817[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];400 -> 1817[label="",style="solid", color="blue", weight=9]; 1817 -> 506[label="",style="solid", color="blue", weight=3]; 1818[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];400 -> 1818[label="",style="solid", color="blue", weight=9]; 1818 -> 507[label="",style="solid", color="blue", weight=3]; 1819[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];400 -> 1819[label="",style="solid", color="blue", weight=9]; 1819 -> 508[label="",style="solid", color="blue", weight=3]; 1820[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];400 -> 1820[label="",style="solid", color="blue", weight=9]; 1820 -> 509[label="",style="solid", color="blue", weight=3]; 1821[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];400 -> 1821[label="",style="solid", color="blue", weight=9]; 1821 -> 510[label="",style="solid", color="blue", weight=3]; 1822[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];400 -> 1822[label="",style="solid", color="blue", weight=9]; 1822 -> 511[label="",style="solid", color="blue", weight=3]; 1823[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];400 -> 1823[label="",style="solid", color="blue", weight=9]; 1823 -> 512[label="",style="solid", color="blue", weight=3]; 401[label="vwx301 < vwx401",fontsize=16,color="blue",shape="box"];1824[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 1824[label="",style="solid", color="blue", weight=9]; 1824 -> 513[label="",style="solid", color="blue", weight=3]; 1825[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 1825[label="",style="solid", color="blue", weight=9]; 1825 -> 514[label="",style="solid", color="blue", weight=3]; 1826[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 1826[label="",style="solid", color="blue", weight=9]; 1826 -> 515[label="",style="solid", color="blue", weight=3]; 1827[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 1827[label="",style="solid", color="blue", weight=9]; 1827 -> 516[label="",style="solid", color="blue", weight=3]; 1828[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 1828[label="",style="solid", color="blue", weight=9]; 1828 -> 517[label="",style="solid", color="blue", weight=3]; 1829[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 1829[label="",style="solid", color="blue", weight=9]; 1829 -> 518[label="",style="solid", color="blue", weight=3]; 1830[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 1830[label="",style="solid", color="blue", weight=9]; 1830 -> 519[label="",style="solid", color="blue", weight=3]; 1831[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 1831[label="",style="solid", color="blue", weight=9]; 1831 -> 520[label="",style="solid", color="blue", weight=3]; 1832[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 1832[label="",style="solid", color="blue", weight=9]; 1832 -> 521[label="",style="solid", color="blue", weight=3]; 1833[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 1833[label="",style="solid", color="blue", weight=9]; 1833 -> 522[label="",style="solid", color="blue", weight=3]; 1834[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 1834[label="",style="solid", color="blue", weight=9]; 1834 -> 523[label="",style="solid", color="blue", weight=3]; 1835[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 1835[label="",style="solid", color="blue", weight=9]; 1835 -> 524[label="",style="solid", color="blue", weight=3]; 1836[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 1836[label="",style="solid", color="blue", weight=9]; 1836 -> 525[label="",style="solid", color="blue", weight=3]; 1837[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 1837[label="",style="solid", color="blue", weight=9]; 1837 -> 526[label="",style="solid", color="blue", weight=3]; 402 -> 326[label="",style="dashed", color="red", weight=0]; 402[label="vwx300 < vwx400",fontsize=16,color="magenta"];402 -> 527[label="",style="dashed", color="magenta", weight=3]; 402 -> 528[label="",style="dashed", color="magenta", weight=3]; 403 -> 327[label="",style="dashed", color="red", weight=0]; 403[label="vwx300 < vwx400",fontsize=16,color="magenta"];403 -> 529[label="",style="dashed", color="magenta", weight=3]; 403 -> 530[label="",style="dashed", color="magenta", weight=3]; 404 -> 328[label="",style="dashed", color="red", weight=0]; 404[label="vwx300 < vwx400",fontsize=16,color="magenta"];404 -> 531[label="",style="dashed", color="magenta", weight=3]; 404 -> 532[label="",style="dashed", color="magenta", weight=3]; 405 -> 329[label="",style="dashed", color="red", weight=0]; 405[label="vwx300 < vwx400",fontsize=16,color="magenta"];405 -> 533[label="",style="dashed", color="magenta", weight=3]; 405 -> 534[label="",style="dashed", color="magenta", weight=3]; 406 -> 330[label="",style="dashed", color="red", weight=0]; 406[label="vwx300 < vwx400",fontsize=16,color="magenta"];406 -> 535[label="",style="dashed", color="magenta", weight=3]; 406 -> 536[label="",style="dashed", color="magenta", weight=3]; 407 -> 331[label="",style="dashed", color="red", weight=0]; 407[label="vwx300 < vwx400",fontsize=16,color="magenta"];407 -> 537[label="",style="dashed", color="magenta", weight=3]; 407 -> 538[label="",style="dashed", color="magenta", weight=3]; 408 -> 332[label="",style="dashed", color="red", weight=0]; 408[label="vwx300 < vwx400",fontsize=16,color="magenta"];408 -> 539[label="",style="dashed", color="magenta", weight=3]; 408 -> 540[label="",style="dashed", color="magenta", weight=3]; 409 -> 333[label="",style="dashed", color="red", weight=0]; 409[label="vwx300 < vwx400",fontsize=16,color="magenta"];409 -> 541[label="",style="dashed", color="magenta", weight=3]; 409 -> 542[label="",style="dashed", color="magenta", weight=3]; 410 -> 334[label="",style="dashed", color="red", weight=0]; 410[label="vwx300 < vwx400",fontsize=16,color="magenta"];410 -> 543[label="",style="dashed", color="magenta", weight=3]; 410 -> 544[label="",style="dashed", color="magenta", weight=3]; 411 -> 335[label="",style="dashed", color="red", weight=0]; 411[label="vwx300 < vwx400",fontsize=16,color="magenta"];411 -> 545[label="",style="dashed", color="magenta", weight=3]; 411 -> 546[label="",style="dashed", color="magenta", weight=3]; 412 -> 336[label="",style="dashed", color="red", weight=0]; 412[label="vwx300 < vwx400",fontsize=16,color="magenta"];412 -> 547[label="",style="dashed", color="magenta", weight=3]; 412 -> 548[label="",style="dashed", color="magenta", weight=3]; 413 -> 337[label="",style="dashed", color="red", weight=0]; 413[label="vwx300 < vwx400",fontsize=16,color="magenta"];413 -> 549[label="",style="dashed", color="magenta", weight=3]; 413 -> 550[label="",style="dashed", color="magenta", weight=3]; 414 -> 338[label="",style="dashed", color="red", weight=0]; 414[label="vwx300 < vwx400",fontsize=16,color="magenta"];414 -> 551[label="",style="dashed", color="magenta", weight=3]; 414 -> 552[label="",style="dashed", color="magenta", weight=3]; 415 -> 339[label="",style="dashed", color="red", weight=0]; 415[label="vwx300 < vwx400",fontsize=16,color="magenta"];415 -> 553[label="",style="dashed", color="magenta", weight=3]; 415 -> 554[label="",style="dashed", color="magenta", weight=3]; 564[label="compare () ()",fontsize=16,color="black",shape="box"];564 -> 596[label="",style="solid", color="black", weight=3]; 565[label="primCmpFloat (Float vwx300 vwx301) vwx40",fontsize=16,color="burlywood",shape="box"];1838[label="vwx301/Pos vwx3010",fontsize=10,color="white",style="solid",shape="box"];565 -> 1838[label="",style="solid", color="burlywood", weight=9]; 1838 -> 597[label="",style="solid", color="burlywood", weight=3]; 1839[label="vwx301/Neg vwx3010",fontsize=10,color="white",style="solid",shape="box"];565 -> 1839[label="",style="solid", color="burlywood", weight=9]; 1839 -> 598[label="",style="solid", color="burlywood", weight=3]; 566[label="compare (vwx300 : vwx301) (vwx400 : vwx401)",fontsize=16,color="black",shape="box"];566 -> 599[label="",style="solid", color="black", weight=3]; 567[label="compare (vwx300 : vwx301) []",fontsize=16,color="black",shape="box"];567 -> 600[label="",style="solid", color="black", weight=3]; 568[label="compare [] (vwx400 : vwx401)",fontsize=16,color="black",shape="box"];568 -> 601[label="",style="solid", color="black", weight=3]; 569[label="compare [] []",fontsize=16,color="black",shape="box"];569 -> 602[label="",style="solid", color="black", weight=3]; 585[label="compare (vwx300 * vwx401) (vwx400 * vwx301)",fontsize=16,color="blue",shape="box"];1840[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];585 -> 1840[label="",style="solid", color="blue", weight=9]; 1840 -> 606[label="",style="solid", color="blue", weight=3]; 1841[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];585 -> 1841[label="",style="solid", color="blue", weight=9]; 1841 -> 607[label="",style="solid", color="blue", weight=3]; 586[label="True",fontsize=16,color="green",shape="box"];587[label="False",fontsize=16,color="green",shape="box"];588[label="primCmpDouble (Double vwx300 (Pos vwx3010)) vwx40",fontsize=16,color="burlywood",shape="box"];1842[label="vwx40/Double vwx400 vwx401",fontsize=10,color="white",style="solid",shape="box"];588 -> 1842[label="",style="solid", color="burlywood", weight=9]; 1842 -> 608[label="",style="solid", color="burlywood", weight=3]; 589[label="primCmpDouble (Double vwx300 (Neg vwx3010)) vwx40",fontsize=16,color="burlywood",shape="box"];1843[label="vwx40/Double vwx400 vwx401",fontsize=10,color="white",style="solid",shape="box"];589 -> 1843[label="",style="solid", color="burlywood", weight=9]; 1843 -> 609[label="",style="solid", color="burlywood", weight=3]; 590 -> 449[label="",style="dashed", color="red", weight=0]; 590[label="primCmpInt vwx300 vwx400",fontsize=16,color="magenta"];590 -> 610[label="",style="dashed", color="magenta", weight=3]; 590 -> 611[label="",style="dashed", color="magenta", weight=3]; 591[label="primCmpInt (Pos (Succ vwx3000)) vwx40",fontsize=16,color="burlywood",shape="box"];1844[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];591 -> 1844[label="",style="solid", color="burlywood", weight=9]; 1844 -> 612[label="",style="solid", color="burlywood", weight=3]; 1845[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];591 -> 1845[label="",style="solid", color="burlywood", weight=9]; 1845 -> 613[label="",style="solid", color="burlywood", weight=3]; 592[label="primCmpInt (Pos Zero) vwx40",fontsize=16,color="burlywood",shape="box"];1846[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];592 -> 1846[label="",style="solid", color="burlywood", weight=9]; 1846 -> 614[label="",style="solid", color="burlywood", weight=3]; 1847[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];592 -> 1847[label="",style="solid", color="burlywood", weight=9]; 1847 -> 615[label="",style="solid", color="burlywood", weight=3]; 593[label="primCmpInt (Neg (Succ vwx3000)) vwx40",fontsize=16,color="burlywood",shape="box"];1848[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];593 -> 1848[label="",style="solid", color="burlywood", weight=9]; 1848 -> 616[label="",style="solid", color="burlywood", weight=3]; 1849[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];593 -> 1849[label="",style="solid", color="burlywood", weight=9]; 1849 -> 617[label="",style="solid", color="burlywood", weight=3]; 594[label="primCmpInt (Neg Zero) vwx40",fontsize=16,color="burlywood",shape="box"];1850[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];594 -> 1850[label="",style="solid", color="burlywood", weight=9]; 1850 -> 618[label="",style="solid", color="burlywood", weight=3]; 1851[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];594 -> 1851[label="",style="solid", color="burlywood", weight=9]; 1851 -> 619[label="",style="solid", color="burlywood", weight=3]; 595[label="primCmpChar (Char vwx300) (Char vwx400)",fontsize=16,color="black",shape="box"];595 -> 620[label="",style="solid", color="black", weight=3]; 455[label="vwx301",fontsize=16,color="green",shape="box"];456[label="vwx401",fontsize=16,color="green",shape="box"];457[label="vwx301",fontsize=16,color="green",shape="box"];458[label="vwx401",fontsize=16,color="green",shape="box"];459[label="vwx301",fontsize=16,color="green",shape="box"];460[label="vwx401",fontsize=16,color="green",shape="box"];461[label="vwx301",fontsize=16,color="green",shape="box"];462[label="vwx401",fontsize=16,color="green",shape="box"];463[label="vwx301",fontsize=16,color="green",shape="box"];464[label="vwx401",fontsize=16,color="green",shape="box"];465[label="vwx301",fontsize=16,color="green",shape="box"];466[label="vwx401",fontsize=16,color="green",shape="box"];467[label="vwx301",fontsize=16,color="green",shape="box"];468[label="vwx401",fontsize=16,color="green",shape="box"];469[label="vwx301",fontsize=16,color="green",shape="box"];470[label="vwx401",fontsize=16,color="green",shape="box"];471[label="vwx301",fontsize=16,color="green",shape="box"];472[label="vwx401",fontsize=16,color="green",shape="box"];473[label="vwx301",fontsize=16,color="green",shape="box"];474[label="vwx401",fontsize=16,color="green",shape="box"];475[label="vwx301",fontsize=16,color="green",shape="box"];476[label="vwx401",fontsize=16,color="green",shape="box"];477[label="vwx301",fontsize=16,color="green",shape="box"];478[label="vwx401",fontsize=16,color="green",shape="box"];479[label="vwx301",fontsize=16,color="green",shape="box"];480[label="vwx401",fontsize=16,color="green",shape="box"];481[label="vwx301",fontsize=16,color="green",shape="box"];482[label="vwx401",fontsize=16,color="green",shape="box"];483 -> 570[label="",style="dashed", color="red", weight=0]; 483[label="compare vwx300 vwx400 == LT",fontsize=16,color="magenta"];483 -> 571[label="",style="dashed", color="magenta", weight=3]; 484 -> 570[label="",style="dashed", color="red", weight=0]; 484[label="compare vwx300 vwx400 == LT",fontsize=16,color="magenta"];484 -> 572[label="",style="dashed", color="magenta", weight=3]; 485 -> 570[label="",style="dashed", color="red", weight=0]; 485[label="compare vwx300 vwx400 == LT",fontsize=16,color="magenta"];485 -> 573[label="",style="dashed", color="magenta", weight=3]; 486 -> 570[label="",style="dashed", color="red", weight=0]; 486[label="compare vwx300 vwx400 == LT",fontsize=16,color="magenta"];486 -> 574[label="",style="dashed", color="magenta", weight=3]; 487 -> 570[label="",style="dashed", color="red", weight=0]; 487[label="compare vwx300 vwx400 == LT",fontsize=16,color="magenta"];487 -> 575[label="",style="dashed", color="magenta", weight=3]; 488 -> 570[label="",style="dashed", color="red", weight=0]; 488[label="compare vwx300 vwx400 == LT",fontsize=16,color="magenta"];488 -> 576[label="",style="dashed", color="magenta", weight=3]; 489 -> 570[label="",style="dashed", color="red", weight=0]; 489[label="compare vwx300 vwx400 == LT",fontsize=16,color="magenta"];489 -> 577[label="",style="dashed", color="magenta", weight=3]; 490 -> 570[label="",style="dashed", color="red", weight=0]; 490[label="compare vwx300 vwx400 == LT",fontsize=16,color="magenta"];490 -> 578[label="",style="dashed", color="magenta", weight=3]; 491 -> 570[label="",style="dashed", color="red", weight=0]; 491[label="compare vwx300 vwx400 == LT",fontsize=16,color="magenta"];491 -> 579[label="",style="dashed", color="magenta", weight=3]; 492 -> 570[label="",style="dashed", color="red", weight=0]; 492[label="compare vwx300 vwx400 == LT",fontsize=16,color="magenta"];492 -> 580[label="",style="dashed", color="magenta", weight=3]; 493 -> 570[label="",style="dashed", color="red", weight=0]; 493[label="compare vwx300 vwx400 == LT",fontsize=16,color="magenta"];493 -> 581[label="",style="dashed", color="magenta", weight=3]; 494 -> 570[label="",style="dashed", color="red", weight=0]; 494[label="compare vwx300 vwx400 == LT",fontsize=16,color="magenta"];494 -> 582[label="",style="dashed", color="magenta", weight=3]; 495 -> 570[label="",style="dashed", color="red", weight=0]; 495[label="compare vwx300 vwx400 == LT",fontsize=16,color="magenta"];495 -> 583[label="",style="dashed", color="magenta", weight=3]; 496 -> 570[label="",style="dashed", color="red", weight=0]; 496[label="compare vwx300 vwx400 == LT",fontsize=16,color="magenta"];496 -> 584[label="",style="dashed", color="magenta", weight=3]; 497 -> 603[label="",style="dashed", color="red", weight=0]; 497[label="vwx37 == vwx38 && vwx39",fontsize=16,color="magenta"];497 -> 604[label="",style="dashed", color="magenta", weight=3]; 497 -> 605[label="",style="dashed", color="magenta", weight=3]; 498[label="True",fontsize=16,color="green",shape="box"];499 -> 27[label="",style="dashed", color="red", weight=0]; 499[label="vwx302 <= vwx402",fontsize=16,color="magenta"];499 -> 621[label="",style="dashed", color="magenta", weight=3]; 499 -> 622[label="",style="dashed", color="magenta", weight=3]; 500 -> 28[label="",style="dashed", color="red", weight=0]; 500[label="vwx302 <= vwx402",fontsize=16,color="magenta"];500 -> 623[label="",style="dashed", color="magenta", weight=3]; 500 -> 624[label="",style="dashed", color="magenta", weight=3]; 501 -> 29[label="",style="dashed", color="red", weight=0]; 501[label="vwx302 <= vwx402",fontsize=16,color="magenta"];501 -> 625[label="",style="dashed", color="magenta", weight=3]; 501 -> 626[label="",style="dashed", color="magenta", weight=3]; 502 -> 30[label="",style="dashed", color="red", weight=0]; 502[label="vwx302 <= vwx402",fontsize=16,color="magenta"];502 -> 627[label="",style="dashed", color="magenta", weight=3]; 502 -> 628[label="",style="dashed", color="magenta", weight=3]; 503 -> 31[label="",style="dashed", color="red", weight=0]; 503[label="vwx302 <= vwx402",fontsize=16,color="magenta"];503 -> 629[label="",style="dashed", color="magenta", weight=3]; 503 -> 630[label="",style="dashed", color="magenta", weight=3]; 504 -> 32[label="",style="dashed", color="red", weight=0]; 504[label="vwx302 <= vwx402",fontsize=16,color="magenta"];504 -> 631[label="",style="dashed", color="magenta", weight=3]; 504 -> 632[label="",style="dashed", color="magenta", weight=3]; 505 -> 33[label="",style="dashed", color="red", weight=0]; 505[label="vwx302 <= vwx402",fontsize=16,color="magenta"];505 -> 633[label="",style="dashed", color="magenta", weight=3]; 505 -> 634[label="",style="dashed", color="magenta", weight=3]; 506 -> 34[label="",style="dashed", color="red", weight=0]; 506[label="vwx302 <= vwx402",fontsize=16,color="magenta"];506 -> 635[label="",style="dashed", color="magenta", weight=3]; 506 -> 636[label="",style="dashed", color="magenta", weight=3]; 507 -> 35[label="",style="dashed", color="red", weight=0]; 507[label="vwx302 <= vwx402",fontsize=16,color="magenta"];507 -> 637[label="",style="dashed", color="magenta", weight=3]; 507 -> 638[label="",style="dashed", color="magenta", weight=3]; 508 -> 36[label="",style="dashed", color="red", weight=0]; 508[label="vwx302 <= vwx402",fontsize=16,color="magenta"];508 -> 639[label="",style="dashed", color="magenta", weight=3]; 508 -> 640[label="",style="dashed", color="magenta", weight=3]; 509 -> 37[label="",style="dashed", color="red", weight=0]; 509[label="vwx302 <= vwx402",fontsize=16,color="magenta"];509 -> 641[label="",style="dashed", color="magenta", weight=3]; 509 -> 642[label="",style="dashed", color="magenta", weight=3]; 510 -> 38[label="",style="dashed", color="red", weight=0]; 510[label="vwx302 <= vwx402",fontsize=16,color="magenta"];510 -> 643[label="",style="dashed", color="magenta", weight=3]; 510 -> 644[label="",style="dashed", color="magenta", weight=3]; 511 -> 39[label="",style="dashed", color="red", weight=0]; 511[label="vwx302 <= vwx402",fontsize=16,color="magenta"];511 -> 645[label="",style="dashed", color="magenta", weight=3]; 511 -> 646[label="",style="dashed", color="magenta", weight=3]; 512 -> 40[label="",style="dashed", color="red", weight=0]; 512[label="vwx302 <= vwx402",fontsize=16,color="magenta"];512 -> 647[label="",style="dashed", color="magenta", weight=3]; 512 -> 648[label="",style="dashed", color="magenta", weight=3]; 513 -> 326[label="",style="dashed", color="red", weight=0]; 513[label="vwx301 < vwx401",fontsize=16,color="magenta"];513 -> 649[label="",style="dashed", color="magenta", weight=3]; 513 -> 650[label="",style="dashed", color="magenta", weight=3]; 514 -> 327[label="",style="dashed", color="red", weight=0]; 514[label="vwx301 < vwx401",fontsize=16,color="magenta"];514 -> 651[label="",style="dashed", color="magenta", weight=3]; 514 -> 652[label="",style="dashed", color="magenta", weight=3]; 515 -> 328[label="",style="dashed", color="red", weight=0]; 515[label="vwx301 < vwx401",fontsize=16,color="magenta"];515 -> 653[label="",style="dashed", color="magenta", weight=3]; 515 -> 654[label="",style="dashed", color="magenta", weight=3]; 516 -> 329[label="",style="dashed", color="red", weight=0]; 516[label="vwx301 < vwx401",fontsize=16,color="magenta"];516 -> 655[label="",style="dashed", color="magenta", weight=3]; 516 -> 656[label="",style="dashed", color="magenta", weight=3]; 517 -> 330[label="",style="dashed", color="red", weight=0]; 517[label="vwx301 < vwx401",fontsize=16,color="magenta"];517 -> 657[label="",style="dashed", color="magenta", weight=3]; 517 -> 658[label="",style="dashed", color="magenta", weight=3]; 518 -> 331[label="",style="dashed", color="red", weight=0]; 518[label="vwx301 < vwx401",fontsize=16,color="magenta"];518 -> 659[label="",style="dashed", color="magenta", weight=3]; 518 -> 660[label="",style="dashed", color="magenta", weight=3]; 519 -> 332[label="",style="dashed", color="red", weight=0]; 519[label="vwx301 < vwx401",fontsize=16,color="magenta"];519 -> 661[label="",style="dashed", color="magenta", weight=3]; 519 -> 662[label="",style="dashed", color="magenta", weight=3]; 520 -> 333[label="",style="dashed", color="red", weight=0]; 520[label="vwx301 < vwx401",fontsize=16,color="magenta"];520 -> 663[label="",style="dashed", color="magenta", weight=3]; 520 -> 664[label="",style="dashed", color="magenta", weight=3]; 521 -> 334[label="",style="dashed", color="red", weight=0]; 521[label="vwx301 < vwx401",fontsize=16,color="magenta"];521 -> 665[label="",style="dashed", color="magenta", weight=3]; 521 -> 666[label="",style="dashed", color="magenta", weight=3]; 522 -> 335[label="",style="dashed", color="red", weight=0]; 522[label="vwx301 < vwx401",fontsize=16,color="magenta"];522 -> 667[label="",style="dashed", color="magenta", weight=3]; 522 -> 668[label="",style="dashed", color="magenta", weight=3]; 523 -> 336[label="",style="dashed", color="red", weight=0]; 523[label="vwx301 < vwx401",fontsize=16,color="magenta"];523 -> 669[label="",style="dashed", color="magenta", weight=3]; 523 -> 670[label="",style="dashed", color="magenta", weight=3]; 524 -> 337[label="",style="dashed", color="red", weight=0]; 524[label="vwx301 < vwx401",fontsize=16,color="magenta"];524 -> 671[label="",style="dashed", color="magenta", weight=3]; 524 -> 672[label="",style="dashed", color="magenta", weight=3]; 525 -> 338[label="",style="dashed", color="red", weight=0]; 525[label="vwx301 < vwx401",fontsize=16,color="magenta"];525 -> 673[label="",style="dashed", color="magenta", weight=3]; 525 -> 674[label="",style="dashed", color="magenta", weight=3]; 526 -> 339[label="",style="dashed", color="red", weight=0]; 526[label="vwx301 < vwx401",fontsize=16,color="magenta"];526 -> 675[label="",style="dashed", color="magenta", weight=3]; 526 -> 676[label="",style="dashed", color="magenta", weight=3]; 527[label="vwx300",fontsize=16,color="green",shape="box"];528[label="vwx400",fontsize=16,color="green",shape="box"];529[label="vwx300",fontsize=16,color="green",shape="box"];530[label="vwx400",fontsize=16,color="green",shape="box"];531[label="vwx300",fontsize=16,color="green",shape="box"];532[label="vwx400",fontsize=16,color="green",shape="box"];533[label="vwx300",fontsize=16,color="green",shape="box"];534[label="vwx400",fontsize=16,color="green",shape="box"];535[label="vwx300",fontsize=16,color="green",shape="box"];536[label="vwx400",fontsize=16,color="green",shape="box"];537[label="vwx300",fontsize=16,color="green",shape="box"];538[label="vwx400",fontsize=16,color="green",shape="box"];539[label="vwx300",fontsize=16,color="green",shape="box"];540[label="vwx400",fontsize=16,color="green",shape="box"];541[label="vwx300",fontsize=16,color="green",shape="box"];542[label="vwx400",fontsize=16,color="green",shape="box"];543[label="vwx300",fontsize=16,color="green",shape="box"];544[label="vwx400",fontsize=16,color="green",shape="box"];545[label="vwx300",fontsize=16,color="green",shape="box"];546[label="vwx400",fontsize=16,color="green",shape="box"];547[label="vwx300",fontsize=16,color="green",shape="box"];548[label="vwx400",fontsize=16,color="green",shape="box"];549[label="vwx300",fontsize=16,color="green",shape="box"];550[label="vwx400",fontsize=16,color="green",shape="box"];551[label="vwx300",fontsize=16,color="green",shape="box"];552[label="vwx400",fontsize=16,color="green",shape="box"];553[label="vwx300",fontsize=16,color="green",shape="box"];554[label="vwx400",fontsize=16,color="green",shape="box"];596[label="EQ",fontsize=16,color="green",shape="box"];597[label="primCmpFloat (Float vwx300 (Pos vwx3010)) vwx40",fontsize=16,color="burlywood",shape="box"];1852[label="vwx40/Float vwx400 vwx401",fontsize=10,color="white",style="solid",shape="box"];597 -> 1852[label="",style="solid", color="burlywood", weight=9]; 1852 -> 677[label="",style="solid", color="burlywood", weight=3]; 598[label="primCmpFloat (Float vwx300 (Neg vwx3010)) vwx40",fontsize=16,color="burlywood",shape="box"];1853[label="vwx40/Float vwx400 vwx401",fontsize=10,color="white",style="solid",shape="box"];598 -> 1853[label="",style="solid", color="burlywood", weight=9]; 1853 -> 678[label="",style="solid", color="burlywood", weight=3]; 599 -> 679[label="",style="dashed", color="red", weight=0]; 599[label="primCompAux vwx300 vwx400 (compare vwx301 vwx401)",fontsize=16,color="magenta"];599 -> 680[label="",style="dashed", color="magenta", weight=3]; 600[label="GT",fontsize=16,color="green",shape="box"];601[label="LT",fontsize=16,color="green",shape="box"];602[label="EQ",fontsize=16,color="green",shape="box"];606 -> 426[label="",style="dashed", color="red", weight=0]; 606[label="compare (vwx300 * vwx401) (vwx400 * vwx301)",fontsize=16,color="magenta"];606 -> 681[label="",style="dashed", color="magenta", weight=3]; 606 -> 682[label="",style="dashed", color="magenta", weight=3]; 607 -> 427[label="",style="dashed", color="red", weight=0]; 607[label="compare (vwx300 * vwx401) (vwx400 * vwx301)",fontsize=16,color="magenta"];607 -> 683[label="",style="dashed", color="magenta", weight=3]; 607 -> 684[label="",style="dashed", color="magenta", weight=3]; 608[label="primCmpDouble (Double vwx300 (Pos vwx3010)) (Double vwx400 vwx401)",fontsize=16,color="burlywood",shape="box"];1854[label="vwx401/Pos vwx4010",fontsize=10,color="white",style="solid",shape="box"];608 -> 1854[label="",style="solid", color="burlywood", weight=9]; 1854 -> 685[label="",style="solid", color="burlywood", weight=3]; 1855[label="vwx401/Neg vwx4010",fontsize=10,color="white",style="solid",shape="box"];608 -> 1855[label="",style="solid", color="burlywood", weight=9]; 1855 -> 686[label="",style="solid", color="burlywood", weight=3]; 609[label="primCmpDouble (Double vwx300 (Neg vwx3010)) (Double vwx400 vwx401)",fontsize=16,color="burlywood",shape="box"];1856[label="vwx401/Pos vwx4010",fontsize=10,color="white",style="solid",shape="box"];609 -> 1856[label="",style="solid", color="burlywood", weight=9]; 1856 -> 687[label="",style="solid", color="burlywood", weight=3]; 1857[label="vwx401/Neg vwx4010",fontsize=10,color="white",style="solid",shape="box"];609 -> 1857[label="",style="solid", color="burlywood", weight=9]; 1857 -> 688[label="",style="solid", color="burlywood", weight=3]; 610[label="vwx300",fontsize=16,color="green",shape="box"];611[label="vwx400",fontsize=16,color="green",shape="box"];612[label="primCmpInt (Pos (Succ vwx3000)) (Pos vwx400)",fontsize=16,color="black",shape="box"];612 -> 689[label="",style="solid", color="black", weight=3]; 613[label="primCmpInt (Pos (Succ vwx3000)) (Neg vwx400)",fontsize=16,color="black",shape="box"];613 -> 690[label="",style="solid", color="black", weight=3]; 614[label="primCmpInt (Pos Zero) (Pos vwx400)",fontsize=16,color="burlywood",shape="box"];1858[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];614 -> 1858[label="",style="solid", color="burlywood", weight=9]; 1858 -> 691[label="",style="solid", color="burlywood", weight=3]; 1859[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];614 -> 1859[label="",style="solid", color="burlywood", weight=9]; 1859 -> 692[label="",style="solid", color="burlywood", weight=3]; 615[label="primCmpInt (Pos Zero) (Neg vwx400)",fontsize=16,color="burlywood",shape="box"];1860[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];615 -> 1860[label="",style="solid", color="burlywood", weight=9]; 1860 -> 693[label="",style="solid", color="burlywood", weight=3]; 1861[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];615 -> 1861[label="",style="solid", color="burlywood", weight=9]; 1861 -> 694[label="",style="solid", color="burlywood", weight=3]; 616[label="primCmpInt (Neg (Succ vwx3000)) (Pos vwx400)",fontsize=16,color="black",shape="box"];616 -> 695[label="",style="solid", color="black", weight=3]; 617[label="primCmpInt (Neg (Succ vwx3000)) (Neg vwx400)",fontsize=16,color="black",shape="box"];617 -> 696[label="",style="solid", color="black", weight=3]; 618[label="primCmpInt (Neg Zero) (Pos vwx400)",fontsize=16,color="burlywood",shape="box"];1862[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];618 -> 1862[label="",style="solid", color="burlywood", weight=9]; 1862 -> 697[label="",style="solid", color="burlywood", weight=3]; 1863[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];618 -> 1863[label="",style="solid", color="burlywood", weight=9]; 1863 -> 698[label="",style="solid", color="burlywood", weight=3]; 619[label="primCmpInt (Neg Zero) (Neg vwx400)",fontsize=16,color="burlywood",shape="box"];1864[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];619 -> 1864[label="",style="solid", color="burlywood", weight=9]; 1864 -> 699[label="",style="solid", color="burlywood", weight=3]; 1865[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];619 -> 1865[label="",style="solid", color="burlywood", weight=9]; 1865 -> 700[label="",style="solid", color="burlywood", weight=3]; 620[label="primCmpNat vwx300 vwx400",fontsize=16,color="burlywood",shape="triangle"];1866[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];620 -> 1866[label="",style="solid", color="burlywood", weight=9]; 1866 -> 701[label="",style="solid", color="burlywood", weight=3]; 1867[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];620 -> 1867[label="",style="solid", color="burlywood", weight=9]; 1867 -> 702[label="",style="solid", color="burlywood", weight=3]; 571 -> 424[label="",style="dashed", color="red", weight=0]; 571[label="compare vwx300 vwx400",fontsize=16,color="magenta"];571 -> 703[label="",style="dashed", color="magenta", weight=3]; 571 -> 704[label="",style="dashed", color="magenta", weight=3]; 570[label="vwx43 == LT",fontsize=16,color="burlywood",shape="triangle"];1868[label="vwx43/LT",fontsize=10,color="white",style="solid",shape="box"];570 -> 1868[label="",style="solid", color="burlywood", weight=9]; 1868 -> 705[label="",style="solid", color="burlywood", weight=3]; 1869[label="vwx43/EQ",fontsize=10,color="white",style="solid",shape="box"];570 -> 1869[label="",style="solid", color="burlywood", weight=9]; 1869 -> 706[label="",style="solid", color="burlywood", weight=3]; 1870[label="vwx43/GT",fontsize=10,color="white",style="solid",shape="box"];570 -> 1870[label="",style="solid", color="burlywood", weight=9]; 1870 -> 707[label="",style="solid", color="burlywood", weight=3]; 572 -> 425[label="",style="dashed", color="red", weight=0]; 572[label="compare vwx300 vwx400",fontsize=16,color="magenta"];572 -> 708[label="",style="dashed", color="magenta", weight=3]; 572 -> 709[label="",style="dashed", color="magenta", weight=3]; 573[label="compare vwx300 vwx400",fontsize=16,color="black",shape="triangle"];573 -> 710[label="",style="solid", color="black", weight=3]; 574 -> 426[label="",style="dashed", color="red", weight=0]; 574[label="compare vwx300 vwx400",fontsize=16,color="magenta"];574 -> 711[label="",style="dashed", color="magenta", weight=3]; 574 -> 712[label="",style="dashed", color="magenta", weight=3]; 575 -> 427[label="",style="dashed", color="red", weight=0]; 575[label="compare vwx300 vwx400",fontsize=16,color="magenta"];575 -> 713[label="",style="dashed", color="magenta", weight=3]; 575 -> 714[label="",style="dashed", color="magenta", weight=3]; 576[label="compare vwx300 vwx400",fontsize=16,color="black",shape="triangle"];576 -> 715[label="",style="solid", color="black", weight=3]; 577 -> 428[label="",style="dashed", color="red", weight=0]; 577[label="compare vwx300 vwx400",fontsize=16,color="magenta"];577 -> 716[label="",style="dashed", color="magenta", weight=3]; 577 -> 717[label="",style="dashed", color="magenta", weight=3]; 578[label="compare vwx300 vwx400",fontsize=16,color="black",shape="triangle"];578 -> 718[label="",style="solid", color="black", weight=3]; 579[label="compare vwx300 vwx400",fontsize=16,color="black",shape="triangle"];579 -> 719[label="",style="solid", color="black", weight=3]; 580[label="compare vwx300 vwx400",fontsize=16,color="black",shape="triangle"];580 -> 720[label="",style="solid", color="black", weight=3]; 581 -> 429[label="",style="dashed", color="red", weight=0]; 581[label="compare vwx300 vwx400",fontsize=16,color="magenta"];581 -> 721[label="",style="dashed", color="magenta", weight=3]; 581 -> 722[label="",style="dashed", color="magenta", weight=3]; 582 -> 430[label="",style="dashed", color="red", weight=0]; 582[label="compare vwx300 vwx400",fontsize=16,color="magenta"];582 -> 723[label="",style="dashed", color="magenta", weight=3]; 582 -> 724[label="",style="dashed", color="magenta", weight=3]; 583 -> 431[label="",style="dashed", color="red", weight=0]; 583[label="compare vwx300 vwx400",fontsize=16,color="magenta"];583 -> 725[label="",style="dashed", color="magenta", weight=3]; 583 -> 726[label="",style="dashed", color="magenta", weight=3]; 584[label="compare vwx300 vwx400",fontsize=16,color="black",shape="triangle"];584 -> 727[label="",style="solid", color="black", weight=3]; 604[label="vwx37 == vwx38",fontsize=16,color="blue",shape="box"];1871[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];604 -> 1871[label="",style="solid", color="blue", weight=9]; 1871 -> 728[label="",style="solid", color="blue", weight=3]; 1872[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];604 -> 1872[label="",style="solid", color="blue", weight=9]; 1872 -> 729[label="",style="solid", color="blue", weight=3]; 1873[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];604 -> 1873[label="",style="solid", color="blue", weight=9]; 1873 -> 730[label="",style="solid", color="blue", weight=3]; 1874[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];604 -> 1874[label="",style="solid", color="blue", weight=9]; 1874 -> 731[label="",style="solid", color="blue", weight=3]; 1875[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];604 -> 1875[label="",style="solid", color="blue", weight=9]; 1875 -> 732[label="",style="solid", color="blue", weight=3]; 1876[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];604 -> 1876[label="",style="solid", color="blue", weight=9]; 1876 -> 733[label="",style="solid", color="blue", weight=3]; 1877[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];604 -> 1877[label="",style="solid", color="blue", weight=9]; 1877 -> 734[label="",style="solid", color="blue", weight=3]; 1878[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];604 -> 1878[label="",style="solid", color="blue", weight=9]; 1878 -> 735[label="",style="solid", color="blue", weight=3]; 1879[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];604 -> 1879[label="",style="solid", color="blue", weight=9]; 1879 -> 736[label="",style="solid", color="blue", weight=3]; 1880[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];604 -> 1880[label="",style="solid", color="blue", weight=9]; 1880 -> 737[label="",style="solid", color="blue", weight=3]; 1881[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];604 -> 1881[label="",style="solid", color="blue", weight=9]; 1881 -> 738[label="",style="solid", color="blue", weight=3]; 1882[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];604 -> 1882[label="",style="solid", color="blue", weight=9]; 1882 -> 739[label="",style="solid", color="blue", weight=3]; 1883[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];604 -> 1883[label="",style="solid", color="blue", weight=9]; 1883 -> 740[label="",style="solid", color="blue", weight=3]; 1884[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];604 -> 1884[label="",style="solid", color="blue", weight=9]; 1884 -> 741[label="",style="solid", color="blue", weight=3]; 605[label="vwx39",fontsize=16,color="green",shape="box"];603[label="vwx47 && vwx48",fontsize=16,color="burlywood",shape="triangle"];1885[label="vwx47/False",fontsize=10,color="white",style="solid",shape="box"];603 -> 1885[label="",style="solid", color="burlywood", weight=9]; 1885 -> 742[label="",style="solid", color="burlywood", weight=3]; 1886[label="vwx47/True",fontsize=10,color="white",style="solid",shape="box"];603 -> 1886[label="",style="solid", color="burlywood", weight=9]; 1886 -> 743[label="",style="solid", color="burlywood", weight=3]; 621[label="vwx302",fontsize=16,color="green",shape="box"];622[label="vwx402",fontsize=16,color="green",shape="box"];623[label="vwx302",fontsize=16,color="green",shape="box"];624[label="vwx402",fontsize=16,color="green",shape="box"];625[label="vwx302",fontsize=16,color="green",shape="box"];626[label="vwx402",fontsize=16,color="green",shape="box"];627[label="vwx302",fontsize=16,color="green",shape="box"];628[label="vwx402",fontsize=16,color="green",shape="box"];629[label="vwx302",fontsize=16,color="green",shape="box"];630[label="vwx402",fontsize=16,color="green",shape="box"];631[label="vwx302",fontsize=16,color="green",shape="box"];632[label="vwx402",fontsize=16,color="green",shape="box"];633[label="vwx302",fontsize=16,color="green",shape="box"];634[label="vwx402",fontsize=16,color="green",shape="box"];635[label="vwx302",fontsize=16,color="green",shape="box"];636[label="vwx402",fontsize=16,color="green",shape="box"];637[label="vwx302",fontsize=16,color="green",shape="box"];638[label="vwx402",fontsize=16,color="green",shape="box"];639[label="vwx302",fontsize=16,color="green",shape="box"];640[label="vwx402",fontsize=16,color="green",shape="box"];641[label="vwx302",fontsize=16,color="green",shape="box"];642[label="vwx402",fontsize=16,color="green",shape="box"];643[label="vwx302",fontsize=16,color="green",shape="box"];644[label="vwx402",fontsize=16,color="green",shape="box"];645[label="vwx302",fontsize=16,color="green",shape="box"];646[label="vwx402",fontsize=16,color="green",shape="box"];647[label="vwx302",fontsize=16,color="green",shape="box"];648[label="vwx402",fontsize=16,color="green",shape="box"];649[label="vwx301",fontsize=16,color="green",shape="box"];650[label="vwx401",fontsize=16,color="green",shape="box"];651[label="vwx301",fontsize=16,color="green",shape="box"];652[label="vwx401",fontsize=16,color="green",shape="box"];653[label="vwx301",fontsize=16,color="green",shape="box"];654[label="vwx401",fontsize=16,color="green",shape="box"];655[label="vwx301",fontsize=16,color="green",shape="box"];656[label="vwx401",fontsize=16,color="green",shape="box"];657[label="vwx301",fontsize=16,color="green",shape="box"];658[label="vwx401",fontsize=16,color="green",shape="box"];659[label="vwx301",fontsize=16,color="green",shape="box"];660[label="vwx401",fontsize=16,color="green",shape="box"];661[label="vwx301",fontsize=16,color="green",shape="box"];662[label="vwx401",fontsize=16,color="green",shape="box"];663[label="vwx301",fontsize=16,color="green",shape="box"];664[label="vwx401",fontsize=16,color="green",shape="box"];665[label="vwx301",fontsize=16,color="green",shape="box"];666[label="vwx401",fontsize=16,color="green",shape="box"];667[label="vwx301",fontsize=16,color="green",shape="box"];668[label="vwx401",fontsize=16,color="green",shape="box"];669[label="vwx301",fontsize=16,color="green",shape="box"];670[label="vwx401",fontsize=16,color="green",shape="box"];671[label="vwx301",fontsize=16,color="green",shape="box"];672[label="vwx401",fontsize=16,color="green",shape="box"];673[label="vwx301",fontsize=16,color="green",shape="box"];674[label="vwx401",fontsize=16,color="green",shape="box"];675[label="vwx301",fontsize=16,color="green",shape="box"];676[label="vwx401",fontsize=16,color="green",shape="box"];677[label="primCmpFloat (Float vwx300 (Pos vwx3010)) (Float vwx400 vwx401)",fontsize=16,color="burlywood",shape="box"];1887[label="vwx401/Pos vwx4010",fontsize=10,color="white",style="solid",shape="box"];677 -> 1887[label="",style="solid", color="burlywood", weight=9]; 1887 -> 744[label="",style="solid", color="burlywood", weight=3]; 1888[label="vwx401/Neg vwx4010",fontsize=10,color="white",style="solid",shape="box"];677 -> 1888[label="",style="solid", color="burlywood", weight=9]; 1888 -> 745[label="",style="solid", color="burlywood", weight=3]; 678[label="primCmpFloat (Float vwx300 (Neg vwx3010)) (Float vwx400 vwx401)",fontsize=16,color="burlywood",shape="box"];1889[label="vwx401/Pos vwx4010",fontsize=10,color="white",style="solid",shape="box"];678 -> 1889[label="",style="solid", color="burlywood", weight=9]; 1889 -> 746[label="",style="solid", color="burlywood", weight=3]; 1890[label="vwx401/Neg vwx4010",fontsize=10,color="white",style="solid",shape="box"];678 -> 1890[label="",style="solid", color="burlywood", weight=9]; 1890 -> 747[label="",style="solid", color="burlywood", weight=3]; 680 -> 431[label="",style="dashed", color="red", weight=0]; 680[label="compare vwx301 vwx401",fontsize=16,color="magenta"];680 -> 748[label="",style="dashed", color="magenta", weight=3]; 680 -> 749[label="",style="dashed", color="magenta", weight=3]; 679[label="primCompAux vwx300 vwx400 vwx49",fontsize=16,color="black",shape="triangle"];679 -> 750[label="",style="solid", color="black", weight=3]; 681[label="vwx300 * vwx401",fontsize=16,color="burlywood",shape="triangle"];1891[label="vwx300/Integer vwx3000",fontsize=10,color="white",style="solid",shape="box"];681 -> 1891[label="",style="solid", color="burlywood", weight=9]; 1891 -> 751[label="",style="solid", color="burlywood", weight=3]; 682 -> 681[label="",style="dashed", color="red", weight=0]; 682[label="vwx400 * vwx301",fontsize=16,color="magenta"];682 -> 752[label="",style="dashed", color="magenta", weight=3]; 682 -> 753[label="",style="dashed", color="magenta", weight=3]; 683[label="vwx300 * vwx401",fontsize=16,color="black",shape="triangle"];683 -> 754[label="",style="solid", color="black", weight=3]; 684 -> 683[label="",style="dashed", color="red", weight=0]; 684[label="vwx400 * vwx301",fontsize=16,color="magenta"];684 -> 755[label="",style="dashed", color="magenta", weight=3]; 684 -> 756[label="",style="dashed", color="magenta", weight=3]; 685[label="primCmpDouble (Double vwx300 (Pos vwx3010)) (Double vwx400 (Pos vwx4010))",fontsize=16,color="black",shape="box"];685 -> 757[label="",style="solid", color="black", weight=3]; 686[label="primCmpDouble (Double vwx300 (Pos vwx3010)) (Double vwx400 (Neg vwx4010))",fontsize=16,color="black",shape="box"];686 -> 758[label="",style="solid", color="black", weight=3]; 687[label="primCmpDouble (Double vwx300 (Neg vwx3010)) (Double vwx400 (Pos vwx4010))",fontsize=16,color="black",shape="box"];687 -> 759[label="",style="solid", color="black", weight=3]; 688[label="primCmpDouble (Double vwx300 (Neg vwx3010)) (Double vwx400 (Neg vwx4010))",fontsize=16,color="black",shape="box"];688 -> 760[label="",style="solid", color="black", weight=3]; 689 -> 620[label="",style="dashed", color="red", weight=0]; 689[label="primCmpNat (Succ vwx3000) vwx400",fontsize=16,color="magenta"];689 -> 761[label="",style="dashed", color="magenta", weight=3]; 689 -> 762[label="",style="dashed", color="magenta", weight=3]; 690[label="GT",fontsize=16,color="green",shape="box"];691[label="primCmpInt (Pos Zero) (Pos (Succ vwx4000))",fontsize=16,color="black",shape="box"];691 -> 763[label="",style="solid", color="black", weight=3]; 692[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];692 -> 764[label="",style="solid", color="black", weight=3]; 693[label="primCmpInt (Pos Zero) (Neg (Succ vwx4000))",fontsize=16,color="black",shape="box"];693 -> 765[label="",style="solid", color="black", weight=3]; 694[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];694 -> 766[label="",style="solid", color="black", weight=3]; 695[label="LT",fontsize=16,color="green",shape="box"];696 -> 620[label="",style="dashed", color="red", weight=0]; 696[label="primCmpNat vwx400 (Succ vwx3000)",fontsize=16,color="magenta"];696 -> 767[label="",style="dashed", color="magenta", weight=3]; 696 -> 768[label="",style="dashed", color="magenta", weight=3]; 697[label="primCmpInt (Neg Zero) (Pos (Succ vwx4000))",fontsize=16,color="black",shape="box"];697 -> 769[label="",style="solid", color="black", weight=3]; 698[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];698 -> 770[label="",style="solid", color="black", weight=3]; 699[label="primCmpInt (Neg Zero) (Neg (Succ vwx4000))",fontsize=16,color="black",shape="box"];699 -> 771[label="",style="solid", color="black", weight=3]; 700[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];700 -> 772[label="",style="solid", color="black", weight=3]; 701[label="primCmpNat (Succ vwx3000) vwx400",fontsize=16,color="burlywood",shape="box"];1892[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];701 -> 1892[label="",style="solid", color="burlywood", weight=9]; 1892 -> 773[label="",style="solid", color="burlywood", weight=3]; 1893[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];701 -> 1893[label="",style="solid", color="burlywood", weight=9]; 1893 -> 774[label="",style="solid", color="burlywood", weight=3]; 702[label="primCmpNat Zero vwx400",fontsize=16,color="burlywood",shape="box"];1894[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];702 -> 1894[label="",style="solid", color="burlywood", weight=9]; 1894 -> 775[label="",style="solid", color="burlywood", weight=3]; 1895[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];702 -> 1895[label="",style="solid", color="burlywood", weight=9]; 1895 -> 776[label="",style="solid", color="burlywood", weight=3]; 703[label="vwx300",fontsize=16,color="green",shape="box"];704[label="vwx400",fontsize=16,color="green",shape="box"];705[label="LT == LT",fontsize=16,color="black",shape="box"];705 -> 777[label="",style="solid", color="black", weight=3]; 706[label="EQ == LT",fontsize=16,color="black",shape="box"];706 -> 778[label="",style="solid", color="black", weight=3]; 707[label="GT == LT",fontsize=16,color="black",shape="box"];707 -> 779[label="",style="solid", color="black", weight=3]; 708[label="vwx300",fontsize=16,color="green",shape="box"];709[label="vwx400",fontsize=16,color="green",shape="box"];710[label="compare3 vwx300 vwx400",fontsize=16,color="black",shape="box"];710 -> 780[label="",style="solid", color="black", weight=3]; 711[label="vwx300",fontsize=16,color="green",shape="box"];712[label="vwx400",fontsize=16,color="green",shape="box"];713[label="vwx300",fontsize=16,color="green",shape="box"];714[label="vwx400",fontsize=16,color="green",shape="box"];715[label="compare3 vwx300 vwx400",fontsize=16,color="black",shape="box"];715 -> 781[label="",style="solid", color="black", weight=3]; 716[label="vwx300",fontsize=16,color="green",shape="box"];717[label="vwx400",fontsize=16,color="green",shape="box"];718[label="compare3 vwx300 vwx400",fontsize=16,color="black",shape="box"];718 -> 782[label="",style="solid", color="black", weight=3]; 719[label="compare3 vwx300 vwx400",fontsize=16,color="black",shape="box"];719 -> 783[label="",style="solid", color="black", weight=3]; 720[label="compare3 vwx300 vwx400",fontsize=16,color="black",shape="box"];720 -> 784[label="",style="solid", color="black", weight=3]; 721[label="vwx300",fontsize=16,color="green",shape="box"];722[label="vwx400",fontsize=16,color="green",shape="box"];723[label="vwx300",fontsize=16,color="green",shape="box"];724[label="vwx400",fontsize=16,color="green",shape="box"];725[label="vwx300",fontsize=16,color="green",shape="box"];726[label="vwx400",fontsize=16,color="green",shape="box"];727[label="compare3 vwx300 vwx400",fontsize=16,color="black",shape="box"];727 -> 785[label="",style="solid", color="black", weight=3]; 728[label="vwx37 == vwx38",fontsize=16,color="black",shape="triangle"];728 -> 786[label="",style="solid", color="black", weight=3]; 729[label="vwx37 == vwx38",fontsize=16,color="burlywood",shape="triangle"];1896[label="vwx37/(vwx370,vwx371)",fontsize=10,color="white",style="solid",shape="box"];729 -> 1896[label="",style="solid", color="burlywood", weight=9]; 1896 -> 787[label="",style="solid", color="burlywood", weight=3]; 730[label="vwx37 == vwx38",fontsize=16,color="burlywood",shape="triangle"];1897[label="vwx37/()",fontsize=10,color="white",style="solid",shape="box"];730 -> 1897[label="",style="solid", color="burlywood", weight=9]; 1897 -> 788[label="",style="solid", color="burlywood", weight=3]; 731[label="vwx37 == vwx38",fontsize=16,color="burlywood",shape="triangle"];1898[label="vwx37/Nothing",fontsize=10,color="white",style="solid",shape="box"];731 -> 1898[label="",style="solid", color="burlywood", weight=9]; 1898 -> 789[label="",style="solid", color="burlywood", weight=3]; 1899[label="vwx37/Just vwx370",fontsize=10,color="white",style="solid",shape="box"];731 -> 1899[label="",style="solid", color="burlywood", weight=9]; 1899 -> 790[label="",style="solid", color="burlywood", weight=3]; 732[label="vwx37 == vwx38",fontsize=16,color="burlywood",shape="triangle"];1900[label="vwx37/vwx370 :% vwx371",fontsize=10,color="white",style="solid",shape="box"];732 -> 1900[label="",style="solid", color="burlywood", weight=9]; 1900 -> 791[label="",style="solid", color="burlywood", weight=3]; 733[label="vwx37 == vwx38",fontsize=16,color="burlywood",shape="triangle"];1901[label="vwx37/vwx370 : vwx371",fontsize=10,color="white",style="solid",shape="box"];733 -> 1901[label="",style="solid", color="burlywood", weight=9]; 1901 -> 792[label="",style="solid", color="burlywood", weight=3]; 1902[label="vwx37/[]",fontsize=10,color="white",style="solid",shape="box"];733 -> 1902[label="",style="solid", color="burlywood", weight=9]; 1902 -> 793[label="",style="solid", color="burlywood", weight=3]; 734[label="vwx37 == vwx38",fontsize=16,color="black",shape="triangle"];734 -> 794[label="",style="solid", color="black", weight=3]; 735[label="vwx37 == vwx38",fontsize=16,color="black",shape="triangle"];735 -> 795[label="",style="solid", color="black", weight=3]; 736[label="vwx37 == vwx38",fontsize=16,color="black",shape="triangle"];736 -> 796[label="",style="solid", color="black", weight=3]; 737[label="vwx37 == vwx38",fontsize=16,color="burlywood",shape="triangle"];1903[label="vwx37/Integer vwx370",fontsize=10,color="white",style="solid",shape="box"];737 -> 1903[label="",style="solid", color="burlywood", weight=9]; 1903 -> 797[label="",style="solid", color="burlywood", weight=3]; 738[label="vwx37 == vwx38",fontsize=16,color="burlywood",shape="triangle"];1904[label="vwx37/(vwx370,vwx371,vwx372)",fontsize=10,color="white",style="solid",shape="box"];738 -> 1904[label="",style="solid", color="burlywood", weight=9]; 1904 -> 798[label="",style="solid", color="burlywood", weight=3]; 739[label="vwx37 == vwx38",fontsize=16,color="burlywood",shape="triangle"];1905[label="vwx37/LT",fontsize=10,color="white",style="solid",shape="box"];739 -> 1905[label="",style="solid", color="burlywood", weight=9]; 1905 -> 799[label="",style="solid", color="burlywood", weight=3]; 1906[label="vwx37/EQ",fontsize=10,color="white",style="solid",shape="box"];739 -> 1906[label="",style="solid", color="burlywood", weight=9]; 1906 -> 800[label="",style="solid", color="burlywood", weight=3]; 1907[label="vwx37/GT",fontsize=10,color="white",style="solid",shape="box"];739 -> 1907[label="",style="solid", color="burlywood", weight=9]; 1907 -> 801[label="",style="solid", color="burlywood", weight=3]; 740[label="vwx37 == vwx38",fontsize=16,color="burlywood",shape="triangle"];1908[label="vwx37/Left vwx370",fontsize=10,color="white",style="solid",shape="box"];740 -> 1908[label="",style="solid", color="burlywood", weight=9]; 1908 -> 802[label="",style="solid", color="burlywood", weight=3]; 1909[label="vwx37/Right vwx370",fontsize=10,color="white",style="solid",shape="box"];740 -> 1909[label="",style="solid", color="burlywood", weight=9]; 1909 -> 803[label="",style="solid", color="burlywood", weight=3]; 741[label="vwx37 == vwx38",fontsize=16,color="burlywood",shape="triangle"];1910[label="vwx37/False",fontsize=10,color="white",style="solid",shape="box"];741 -> 1910[label="",style="solid", color="burlywood", weight=9]; 1910 -> 804[label="",style="solid", color="burlywood", weight=3]; 1911[label="vwx37/True",fontsize=10,color="white",style="solid",shape="box"];741 -> 1911[label="",style="solid", color="burlywood", weight=9]; 1911 -> 805[label="",style="solid", color="burlywood", weight=3]; 742[label="False && vwx48",fontsize=16,color="black",shape="box"];742 -> 806[label="",style="solid", color="black", weight=3]; 743[label="True && vwx48",fontsize=16,color="black",shape="box"];743 -> 807[label="",style="solid", color="black", weight=3]; 744[label="primCmpFloat (Float vwx300 (Pos vwx3010)) (Float vwx400 (Pos vwx4010))",fontsize=16,color="black",shape="box"];744 -> 808[label="",style="solid", color="black", weight=3]; 745[label="primCmpFloat (Float vwx300 (Pos vwx3010)) (Float vwx400 (Neg vwx4010))",fontsize=16,color="black",shape="box"];745 -> 809[label="",style="solid", color="black", weight=3]; 746[label="primCmpFloat (Float vwx300 (Neg vwx3010)) (Float vwx400 (Pos vwx4010))",fontsize=16,color="black",shape="box"];746 -> 810[label="",style="solid", color="black", weight=3]; 747[label="primCmpFloat (Float vwx300 (Neg vwx3010)) (Float vwx400 (Neg vwx4010))",fontsize=16,color="black",shape="box"];747 -> 811[label="",style="solid", color="black", weight=3]; 748[label="vwx301",fontsize=16,color="green",shape="box"];749[label="vwx401",fontsize=16,color="green",shape="box"];750 -> 812[label="",style="dashed", color="red", weight=0]; 750[label="primCompAux0 vwx49 (compare vwx300 vwx400)",fontsize=16,color="magenta"];750 -> 813[label="",style="dashed", color="magenta", weight=3]; 750 -> 814[label="",style="dashed", color="magenta", weight=3]; 751[label="Integer vwx3000 * vwx401",fontsize=16,color="burlywood",shape="box"];1912[label="vwx401/Integer vwx4010",fontsize=10,color="white",style="solid",shape="box"];751 -> 1912[label="",style="solid", color="burlywood", weight=9]; 1912 -> 815[label="",style="solid", color="burlywood", weight=3]; 752[label="vwx301",fontsize=16,color="green",shape="box"];753[label="vwx400",fontsize=16,color="green",shape="box"];754[label="primMulInt vwx300 vwx401",fontsize=16,color="burlywood",shape="triangle"];1913[label="vwx300/Pos vwx3000",fontsize=10,color="white",style="solid",shape="box"];754 -> 1913[label="",style="solid", color="burlywood", weight=9]; 1913 -> 816[label="",style="solid", color="burlywood", weight=3]; 1914[label="vwx300/Neg vwx3000",fontsize=10,color="white",style="solid",shape="box"];754 -> 1914[label="",style="solid", color="burlywood", weight=9]; 1914 -> 817[label="",style="solid", color="burlywood", weight=3]; 755[label="vwx301",fontsize=16,color="green",shape="box"];756[label="vwx400",fontsize=16,color="green",shape="box"];757 -> 427[label="",style="dashed", color="red", weight=0]; 757[label="compare (vwx300 * Pos vwx4010) (Pos vwx3010 * vwx400)",fontsize=16,color="magenta"];757 -> 818[label="",style="dashed", color="magenta", weight=3]; 757 -> 819[label="",style="dashed", color="magenta", weight=3]; 758 -> 427[label="",style="dashed", color="red", weight=0]; 758[label="compare (vwx300 * Pos vwx4010) (Neg vwx3010 * vwx400)",fontsize=16,color="magenta"];758 -> 820[label="",style="dashed", color="magenta", weight=3]; 758 -> 821[label="",style="dashed", color="magenta", weight=3]; 759 -> 427[label="",style="dashed", color="red", weight=0]; 759[label="compare (vwx300 * Neg vwx4010) (Pos vwx3010 * vwx400)",fontsize=16,color="magenta"];759 -> 822[label="",style="dashed", color="magenta", weight=3]; 759 -> 823[label="",style="dashed", color="magenta", weight=3]; 760 -> 427[label="",style="dashed", color="red", weight=0]; 760[label="compare (vwx300 * Neg vwx4010) (Neg vwx3010 * vwx400)",fontsize=16,color="magenta"];760 -> 824[label="",style="dashed", color="magenta", weight=3]; 760 -> 825[label="",style="dashed", color="magenta", weight=3]; 761[label="vwx400",fontsize=16,color="green",shape="box"];762[label="Succ vwx3000",fontsize=16,color="green",shape="box"];763 -> 620[label="",style="dashed", color="red", weight=0]; 763[label="primCmpNat Zero (Succ vwx4000)",fontsize=16,color="magenta"];763 -> 826[label="",style="dashed", color="magenta", weight=3]; 763 -> 827[label="",style="dashed", color="magenta", weight=3]; 764[label="EQ",fontsize=16,color="green",shape="box"];765[label="GT",fontsize=16,color="green",shape="box"];766[label="EQ",fontsize=16,color="green",shape="box"];767[label="Succ vwx3000",fontsize=16,color="green",shape="box"];768[label="vwx400",fontsize=16,color="green",shape="box"];769[label="LT",fontsize=16,color="green",shape="box"];770[label="EQ",fontsize=16,color="green",shape="box"];771 -> 620[label="",style="dashed", color="red", weight=0]; 771[label="primCmpNat (Succ vwx4000) Zero",fontsize=16,color="magenta"];771 -> 828[label="",style="dashed", color="magenta", weight=3]; 771 -> 829[label="",style="dashed", color="magenta", weight=3]; 772[label="EQ",fontsize=16,color="green",shape="box"];773[label="primCmpNat (Succ vwx3000) (Succ vwx4000)",fontsize=16,color="black",shape="box"];773 -> 830[label="",style="solid", color="black", weight=3]; 774[label="primCmpNat (Succ vwx3000) Zero",fontsize=16,color="black",shape="box"];774 -> 831[label="",style="solid", color="black", weight=3]; 775[label="primCmpNat Zero (Succ vwx4000)",fontsize=16,color="black",shape="box"];775 -> 832[label="",style="solid", color="black", weight=3]; 776[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];776 -> 833[label="",style="solid", color="black", weight=3]; 777[label="True",fontsize=16,color="green",shape="box"];778[label="False",fontsize=16,color="green",shape="box"];779[label="False",fontsize=16,color="green",shape="box"];780 -> 834[label="",style="dashed", color="red", weight=0]; 780[label="compare2 vwx300 vwx400 (vwx300 == vwx400)",fontsize=16,color="magenta"];780 -> 835[label="",style="dashed", color="magenta", weight=3]; 781 -> 836[label="",style="dashed", color="red", weight=0]; 781[label="compare2 vwx300 vwx400 (vwx300 == vwx400)",fontsize=16,color="magenta"];781 -> 837[label="",style="dashed", color="magenta", weight=3]; 782 -> 838[label="",style="dashed", color="red", weight=0]; 782[label="compare2 vwx300 vwx400 (vwx300 == vwx400)",fontsize=16,color="magenta"];782 -> 839[label="",style="dashed", color="magenta", weight=3]; 783 -> 840[label="",style="dashed", color="red", weight=0]; 783[label="compare2 vwx300 vwx400 (vwx300 == vwx400)",fontsize=16,color="magenta"];783 -> 841[label="",style="dashed", color="magenta", weight=3]; 784 -> 842[label="",style="dashed", color="red", weight=0]; 784[label="compare2 vwx300 vwx400 (vwx300 == vwx400)",fontsize=16,color="magenta"];784 -> 843[label="",style="dashed", color="magenta", weight=3]; 785 -> 844[label="",style="dashed", color="red", weight=0]; 785[label="compare2 vwx300 vwx400 (vwx300 == vwx400)",fontsize=16,color="magenta"];785 -> 845[label="",style="dashed", color="magenta", weight=3]; 786[label="primEqFloat vwx37 vwx38",fontsize=16,color="burlywood",shape="box"];1915[label="vwx37/Float vwx370 vwx371",fontsize=10,color="white",style="solid",shape="box"];786 -> 1915[label="",style="solid", color="burlywood", weight=9]; 1915 -> 846[label="",style="solid", color="burlywood", weight=3]; 787[label="(vwx370,vwx371) == vwx38",fontsize=16,color="burlywood",shape="box"];1916[label="vwx38/(vwx380,vwx381)",fontsize=10,color="white",style="solid",shape="box"];787 -> 1916[label="",style="solid", color="burlywood", weight=9]; 1916 -> 847[label="",style="solid", color="burlywood", weight=3]; 788[label="() == vwx38",fontsize=16,color="burlywood",shape="box"];1917[label="vwx38/()",fontsize=10,color="white",style="solid",shape="box"];788 -> 1917[label="",style="solid", color="burlywood", weight=9]; 1917 -> 848[label="",style="solid", color="burlywood", weight=3]; 789[label="Nothing == vwx38",fontsize=16,color="burlywood",shape="box"];1918[label="vwx38/Nothing",fontsize=10,color="white",style="solid",shape="box"];789 -> 1918[label="",style="solid", color="burlywood", weight=9]; 1918 -> 849[label="",style="solid", color="burlywood", weight=3]; 1919[label="vwx38/Just vwx380",fontsize=10,color="white",style="solid",shape="box"];789 -> 1919[label="",style="solid", color="burlywood", weight=9]; 1919 -> 850[label="",style="solid", color="burlywood", weight=3]; 790[label="Just vwx370 == vwx38",fontsize=16,color="burlywood",shape="box"];1920[label="vwx38/Nothing",fontsize=10,color="white",style="solid",shape="box"];790 -> 1920[label="",style="solid", color="burlywood", weight=9]; 1920 -> 851[label="",style="solid", color="burlywood", weight=3]; 1921[label="vwx38/Just vwx380",fontsize=10,color="white",style="solid",shape="box"];790 -> 1921[label="",style="solid", color="burlywood", weight=9]; 1921 -> 852[label="",style="solid", color="burlywood", weight=3]; 791[label="vwx370 :% vwx371 == vwx38",fontsize=16,color="burlywood",shape="box"];1922[label="vwx38/vwx380 :% vwx381",fontsize=10,color="white",style="solid",shape="box"];791 -> 1922[label="",style="solid", color="burlywood", weight=9]; 1922 -> 853[label="",style="solid", color="burlywood", weight=3]; 792[label="vwx370 : vwx371 == vwx38",fontsize=16,color="burlywood",shape="box"];1923[label="vwx38/vwx380 : vwx381",fontsize=10,color="white",style="solid",shape="box"];792 -> 1923[label="",style="solid", color="burlywood", weight=9]; 1923 -> 854[label="",style="solid", color="burlywood", weight=3]; 1924[label="vwx38/[]",fontsize=10,color="white",style="solid",shape="box"];792 -> 1924[label="",style="solid", color="burlywood", weight=9]; 1924 -> 855[label="",style="solid", color="burlywood", weight=3]; 793[label="[] == vwx38",fontsize=16,color="burlywood",shape="box"];1925[label="vwx38/vwx380 : vwx381",fontsize=10,color="white",style="solid",shape="box"];793 -> 1925[label="",style="solid", color="burlywood", weight=9]; 1925 -> 856[label="",style="solid", color="burlywood", weight=3]; 1926[label="vwx38/[]",fontsize=10,color="white",style="solid",shape="box"];793 -> 1926[label="",style="solid", color="burlywood", weight=9]; 1926 -> 857[label="",style="solid", color="burlywood", weight=3]; 794[label="primEqInt vwx37 vwx38",fontsize=16,color="burlywood",shape="triangle"];1927[label="vwx37/Pos vwx370",fontsize=10,color="white",style="solid",shape="box"];794 -> 1927[label="",style="solid", color="burlywood", weight=9]; 1927 -> 858[label="",style="solid", color="burlywood", weight=3]; 1928[label="vwx37/Neg vwx370",fontsize=10,color="white",style="solid",shape="box"];794 -> 1928[label="",style="solid", color="burlywood", weight=9]; 1928 -> 859[label="",style="solid", color="burlywood", weight=3]; 795[label="primEqChar vwx37 vwx38",fontsize=16,color="burlywood",shape="box"];1929[label="vwx37/Char vwx370",fontsize=10,color="white",style="solid",shape="box"];795 -> 1929[label="",style="solid", color="burlywood", weight=9]; 1929 -> 860[label="",style="solid", color="burlywood", weight=3]; 796[label="primEqDouble vwx37 vwx38",fontsize=16,color="burlywood",shape="box"];1930[label="vwx37/Double vwx370 vwx371",fontsize=10,color="white",style="solid",shape="box"];796 -> 1930[label="",style="solid", color="burlywood", weight=9]; 1930 -> 861[label="",style="solid", color="burlywood", weight=3]; 797[label="Integer vwx370 == vwx38",fontsize=16,color="burlywood",shape="box"];1931[label="vwx38/Integer vwx380",fontsize=10,color="white",style="solid",shape="box"];797 -> 1931[label="",style="solid", color="burlywood", weight=9]; 1931 -> 862[label="",style="solid", color="burlywood", weight=3]; 798[label="(vwx370,vwx371,vwx372) == vwx38",fontsize=16,color="burlywood",shape="box"];1932[label="vwx38/(vwx380,vwx381,vwx382)",fontsize=10,color="white",style="solid",shape="box"];798 -> 1932[label="",style="solid", color="burlywood", weight=9]; 1932 -> 863[label="",style="solid", color="burlywood", weight=3]; 799[label="LT == vwx38",fontsize=16,color="burlywood",shape="box"];1933[label="vwx38/LT",fontsize=10,color="white",style="solid",shape="box"];799 -> 1933[label="",style="solid", color="burlywood", weight=9]; 1933 -> 864[label="",style="solid", color="burlywood", weight=3]; 1934[label="vwx38/EQ",fontsize=10,color="white",style="solid",shape="box"];799 -> 1934[label="",style="solid", color="burlywood", weight=9]; 1934 -> 865[label="",style="solid", color="burlywood", weight=3]; 1935[label="vwx38/GT",fontsize=10,color="white",style="solid",shape="box"];799 -> 1935[label="",style="solid", color="burlywood", weight=9]; 1935 -> 866[label="",style="solid", color="burlywood", weight=3]; 800[label="EQ == vwx38",fontsize=16,color="burlywood",shape="box"];1936[label="vwx38/LT",fontsize=10,color="white",style="solid",shape="box"];800 -> 1936[label="",style="solid", color="burlywood", weight=9]; 1936 -> 867[label="",style="solid", color="burlywood", weight=3]; 1937[label="vwx38/EQ",fontsize=10,color="white",style="solid",shape="box"];800 -> 1937[label="",style="solid", color="burlywood", weight=9]; 1937 -> 868[label="",style="solid", color="burlywood", weight=3]; 1938[label="vwx38/GT",fontsize=10,color="white",style="solid",shape="box"];800 -> 1938[label="",style="solid", color="burlywood", weight=9]; 1938 -> 869[label="",style="solid", color="burlywood", weight=3]; 801[label="GT == vwx38",fontsize=16,color="burlywood",shape="box"];1939[label="vwx38/LT",fontsize=10,color="white",style="solid",shape="box"];801 -> 1939[label="",style="solid", color="burlywood", weight=9]; 1939 -> 870[label="",style="solid", color="burlywood", weight=3]; 1940[label="vwx38/EQ",fontsize=10,color="white",style="solid",shape="box"];801 -> 1940[label="",style="solid", color="burlywood", weight=9]; 1940 -> 871[label="",style="solid", color="burlywood", weight=3]; 1941[label="vwx38/GT",fontsize=10,color="white",style="solid",shape="box"];801 -> 1941[label="",style="solid", color="burlywood", weight=9]; 1941 -> 872[label="",style="solid", color="burlywood", weight=3]; 802[label="Left vwx370 == vwx38",fontsize=16,color="burlywood",shape="box"];1942[label="vwx38/Left vwx380",fontsize=10,color="white",style="solid",shape="box"];802 -> 1942[label="",style="solid", color="burlywood", weight=9]; 1942 -> 873[label="",style="solid", color="burlywood", weight=3]; 1943[label="vwx38/Right vwx380",fontsize=10,color="white",style="solid",shape="box"];802 -> 1943[label="",style="solid", color="burlywood", weight=9]; 1943 -> 874[label="",style="solid", color="burlywood", weight=3]; 803[label="Right vwx370 == vwx38",fontsize=16,color="burlywood",shape="box"];1944[label="vwx38/Left vwx380",fontsize=10,color="white",style="solid",shape="box"];803 -> 1944[label="",style="solid", color="burlywood", weight=9]; 1944 -> 875[label="",style="solid", color="burlywood", weight=3]; 1945[label="vwx38/Right vwx380",fontsize=10,color="white",style="solid",shape="box"];803 -> 1945[label="",style="solid", color="burlywood", weight=9]; 1945 -> 876[label="",style="solid", color="burlywood", weight=3]; 804[label="False == vwx38",fontsize=16,color="burlywood",shape="box"];1946[label="vwx38/False",fontsize=10,color="white",style="solid",shape="box"];804 -> 1946[label="",style="solid", color="burlywood", weight=9]; 1946 -> 877[label="",style="solid", color="burlywood", weight=3]; 1947[label="vwx38/True",fontsize=10,color="white",style="solid",shape="box"];804 -> 1947[label="",style="solid", color="burlywood", weight=9]; 1947 -> 878[label="",style="solid", color="burlywood", weight=3]; 805[label="True == vwx38",fontsize=16,color="burlywood",shape="box"];1948[label="vwx38/False",fontsize=10,color="white",style="solid",shape="box"];805 -> 1948[label="",style="solid", color="burlywood", weight=9]; 1948 -> 879[label="",style="solid", color="burlywood", weight=3]; 1949[label="vwx38/True",fontsize=10,color="white",style="solid",shape="box"];805 -> 1949[label="",style="solid", color="burlywood", weight=9]; 1949 -> 880[label="",style="solid", color="burlywood", weight=3]; 806[label="False",fontsize=16,color="green",shape="box"];807[label="vwx48",fontsize=16,color="green",shape="box"];808 -> 427[label="",style="dashed", color="red", weight=0]; 808[label="compare (vwx300 * Pos vwx4010) (Pos vwx3010 * vwx400)",fontsize=16,color="magenta"];808 -> 881[label="",style="dashed", color="magenta", weight=3]; 808 -> 882[label="",style="dashed", color="magenta", weight=3]; 809 -> 427[label="",style="dashed", color="red", weight=0]; 809[label="compare (vwx300 * Pos vwx4010) (Neg vwx3010 * vwx400)",fontsize=16,color="magenta"];809 -> 883[label="",style="dashed", color="magenta", weight=3]; 809 -> 884[label="",style="dashed", color="magenta", weight=3]; 810 -> 427[label="",style="dashed", color="red", weight=0]; 810[label="compare (vwx300 * Neg vwx4010) (Pos vwx3010 * vwx400)",fontsize=16,color="magenta"];810 -> 885[label="",style="dashed", color="magenta", weight=3]; 810 -> 886[label="",style="dashed", color="magenta", weight=3]; 811 -> 427[label="",style="dashed", color="red", weight=0]; 811[label="compare (vwx300 * Neg vwx4010) (Neg vwx3010 * vwx400)",fontsize=16,color="magenta"];811 -> 887[label="",style="dashed", color="magenta", weight=3]; 811 -> 888[label="",style="dashed", color="magenta", weight=3]; 813[label="compare vwx300 vwx400",fontsize=16,color="blue",shape="box"];1950[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];813 -> 1950[label="",style="solid", color="blue", weight=9]; 1950 -> 889[label="",style="solid", color="blue", weight=3]; 1951[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];813 -> 1951[label="",style="solid", color="blue", weight=9]; 1951 -> 890[label="",style="solid", color="blue", weight=3]; 1952[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];813 -> 1952[label="",style="solid", color="blue", weight=9]; 1952 -> 891[label="",style="solid", color="blue", weight=3]; 1953[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];813 -> 1953[label="",style="solid", color="blue", weight=9]; 1953 -> 892[label="",style="solid", color="blue", weight=3]; 1954[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];813 -> 1954[label="",style="solid", color="blue", weight=9]; 1954 -> 893[label="",style="solid", color="blue", weight=3]; 1955[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];813 -> 1955[label="",style="solid", color="blue", weight=9]; 1955 -> 894[label="",style="solid", color="blue", weight=3]; 1956[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];813 -> 1956[label="",style="solid", color="blue", weight=9]; 1956 -> 895[label="",style="solid", color="blue", weight=3]; 1957[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];813 -> 1957[label="",style="solid", color="blue", weight=9]; 1957 -> 896[label="",style="solid", color="blue", weight=3]; 1958[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];813 -> 1958[label="",style="solid", color="blue", weight=9]; 1958 -> 897[label="",style="solid", color="blue", weight=3]; 1959[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];813 -> 1959[label="",style="solid", color="blue", weight=9]; 1959 -> 898[label="",style="solid", color="blue", weight=3]; 1960[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];813 -> 1960[label="",style="solid", color="blue", weight=9]; 1960 -> 899[label="",style="solid", color="blue", weight=3]; 1961[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];813 -> 1961[label="",style="solid", color="blue", weight=9]; 1961 -> 900[label="",style="solid", color="blue", weight=3]; 1962[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];813 -> 1962[label="",style="solid", color="blue", weight=9]; 1962 -> 901[label="",style="solid", color="blue", weight=3]; 1963[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];813 -> 1963[label="",style="solid", color="blue", weight=9]; 1963 -> 902[label="",style="solid", color="blue", weight=3]; 814[label="vwx49",fontsize=16,color="green",shape="box"];812[label="primCompAux0 vwx53 vwx54",fontsize=16,color="burlywood",shape="triangle"];1964[label="vwx54/LT",fontsize=10,color="white",style="solid",shape="box"];812 -> 1964[label="",style="solid", color="burlywood", weight=9]; 1964 -> 903[label="",style="solid", color="burlywood", weight=3]; 1965[label="vwx54/EQ",fontsize=10,color="white",style="solid",shape="box"];812 -> 1965[label="",style="solid", color="burlywood", weight=9]; 1965 -> 904[label="",style="solid", color="burlywood", weight=3]; 1966[label="vwx54/GT",fontsize=10,color="white",style="solid",shape="box"];812 -> 1966[label="",style="solid", color="burlywood", weight=9]; 1966 -> 905[label="",style="solid", color="burlywood", weight=3]; 815[label="Integer vwx3000 * Integer vwx4010",fontsize=16,color="black",shape="box"];815 -> 906[label="",style="solid", color="black", weight=3]; 816[label="primMulInt (Pos vwx3000) vwx401",fontsize=16,color="burlywood",shape="box"];1967[label="vwx401/Pos vwx4010",fontsize=10,color="white",style="solid",shape="box"];816 -> 1967[label="",style="solid", color="burlywood", weight=9]; 1967 -> 907[label="",style="solid", color="burlywood", weight=3]; 1968[label="vwx401/Neg vwx4010",fontsize=10,color="white",style="solid",shape="box"];816 -> 1968[label="",style="solid", color="burlywood", weight=9]; 1968 -> 908[label="",style="solid", color="burlywood", weight=3]; 817[label="primMulInt (Neg vwx3000) vwx401",fontsize=16,color="burlywood",shape="box"];1969[label="vwx401/Pos vwx4010",fontsize=10,color="white",style="solid",shape="box"];817 -> 1969[label="",style="solid", color="burlywood", weight=9]; 1969 -> 909[label="",style="solid", color="burlywood", weight=3]; 1970[label="vwx401/Neg vwx4010",fontsize=10,color="white",style="solid",shape="box"];817 -> 1970[label="",style="solid", color="burlywood", weight=9]; 1970 -> 910[label="",style="solid", color="burlywood", weight=3]; 818 -> 683[label="",style="dashed", color="red", weight=0]; 818[label="vwx300 * Pos vwx4010",fontsize=16,color="magenta"];818 -> 911[label="",style="dashed", color="magenta", weight=3]; 818 -> 912[label="",style="dashed", color="magenta", weight=3]; 819 -> 683[label="",style="dashed", color="red", weight=0]; 819[label="Pos vwx3010 * vwx400",fontsize=16,color="magenta"];819 -> 913[label="",style="dashed", color="magenta", weight=3]; 819 -> 914[label="",style="dashed", color="magenta", weight=3]; 820 -> 683[label="",style="dashed", color="red", weight=0]; 820[label="vwx300 * Pos vwx4010",fontsize=16,color="magenta"];820 -> 915[label="",style="dashed", color="magenta", weight=3]; 820 -> 916[label="",style="dashed", color="magenta", weight=3]; 821 -> 683[label="",style="dashed", color="red", weight=0]; 821[label="Neg vwx3010 * vwx400",fontsize=16,color="magenta"];821 -> 917[label="",style="dashed", color="magenta", weight=3]; 821 -> 918[label="",style="dashed", color="magenta", weight=3]; 822 -> 683[label="",style="dashed", color="red", weight=0]; 822[label="vwx300 * Neg vwx4010",fontsize=16,color="magenta"];822 -> 919[label="",style="dashed", color="magenta", weight=3]; 822 -> 920[label="",style="dashed", color="magenta", weight=3]; 823 -> 683[label="",style="dashed", color="red", weight=0]; 823[label="Pos vwx3010 * vwx400",fontsize=16,color="magenta"];823 -> 921[label="",style="dashed", color="magenta", weight=3]; 823 -> 922[label="",style="dashed", color="magenta", weight=3]; 824 -> 683[label="",style="dashed", color="red", weight=0]; 824[label="vwx300 * Neg vwx4010",fontsize=16,color="magenta"];824 -> 923[label="",style="dashed", color="magenta", weight=3]; 824 -> 924[label="",style="dashed", color="magenta", weight=3]; 825 -> 683[label="",style="dashed", color="red", weight=0]; 825[label="Neg vwx3010 * vwx400",fontsize=16,color="magenta"];825 -> 925[label="",style="dashed", color="magenta", weight=3]; 825 -> 926[label="",style="dashed", color="magenta", weight=3]; 826[label="Succ vwx4000",fontsize=16,color="green",shape="box"];827[label="Zero",fontsize=16,color="green",shape="box"];828[label="Zero",fontsize=16,color="green",shape="box"];829[label="Succ vwx4000",fontsize=16,color="green",shape="box"];830 -> 620[label="",style="dashed", color="red", weight=0]; 830[label="primCmpNat vwx3000 vwx4000",fontsize=16,color="magenta"];830 -> 927[label="",style="dashed", color="magenta", weight=3]; 830 -> 928[label="",style="dashed", color="magenta", weight=3]; 831[label="GT",fontsize=16,color="green",shape="box"];832[label="LT",fontsize=16,color="green",shape="box"];833[label="EQ",fontsize=16,color="green",shape="box"];835 -> 741[label="",style="dashed", color="red", weight=0]; 835[label="vwx300 == vwx400",fontsize=16,color="magenta"];835 -> 929[label="",style="dashed", color="magenta", weight=3]; 835 -> 930[label="",style="dashed", color="magenta", weight=3]; 834[label="compare2 vwx300 vwx400 vwx55",fontsize=16,color="burlywood",shape="triangle"];1971[label="vwx55/False",fontsize=10,color="white",style="solid",shape="box"];834 -> 1971[label="",style="solid", color="burlywood", weight=9]; 1971 -> 931[label="",style="solid", color="burlywood", weight=3]; 1972[label="vwx55/True",fontsize=10,color="white",style="solid",shape="box"];834 -> 1972[label="",style="solid", color="burlywood", weight=9]; 1972 -> 932[label="",style="solid", color="burlywood", weight=3]; 837 -> 731[label="",style="dashed", color="red", weight=0]; 837[label="vwx300 == vwx400",fontsize=16,color="magenta"];837 -> 933[label="",style="dashed", color="magenta", weight=3]; 837 -> 934[label="",style="dashed", color="magenta", weight=3]; 836[label="compare2 vwx300 vwx400 vwx56",fontsize=16,color="burlywood",shape="triangle"];1973[label="vwx56/False",fontsize=10,color="white",style="solid",shape="box"];836 -> 1973[label="",style="solid", color="burlywood", weight=9]; 1973 -> 935[label="",style="solid", color="burlywood", weight=3]; 1974[label="vwx56/True",fontsize=10,color="white",style="solid",shape="box"];836 -> 1974[label="",style="solid", color="burlywood", weight=9]; 1974 -> 936[label="",style="solid", color="burlywood", weight=3]; 839 -> 729[label="",style="dashed", color="red", weight=0]; 839[label="vwx300 == vwx400",fontsize=16,color="magenta"];839 -> 937[label="",style="dashed", color="magenta", weight=3]; 839 -> 938[label="",style="dashed", color="magenta", weight=3]; 838[label="compare2 vwx300 vwx400 vwx57",fontsize=16,color="burlywood",shape="triangle"];1975[label="vwx57/False",fontsize=10,color="white",style="solid",shape="box"];838 -> 1975[label="",style="solid", color="burlywood", weight=9]; 1975 -> 939[label="",style="solid", color="burlywood", weight=3]; 1976[label="vwx57/True",fontsize=10,color="white",style="solid",shape="box"];838 -> 1976[label="",style="solid", color="burlywood", weight=9]; 1976 -> 940[label="",style="solid", color="burlywood", weight=3]; 841 -> 740[label="",style="dashed", color="red", weight=0]; 841[label="vwx300 == vwx400",fontsize=16,color="magenta"];841 -> 941[label="",style="dashed", color="magenta", weight=3]; 841 -> 942[label="",style="dashed", color="magenta", weight=3]; 840[label="compare2 vwx300 vwx400 vwx58",fontsize=16,color="burlywood",shape="triangle"];1977[label="vwx58/False",fontsize=10,color="white",style="solid",shape="box"];840 -> 1977[label="",style="solid", color="burlywood", weight=9]; 1977 -> 943[label="",style="solid", color="burlywood", weight=3]; 1978[label="vwx58/True",fontsize=10,color="white",style="solid",shape="box"];840 -> 1978[label="",style="solid", color="burlywood", weight=9]; 1978 -> 944[label="",style="solid", color="burlywood", weight=3]; 843 -> 738[label="",style="dashed", color="red", weight=0]; 843[label="vwx300 == vwx400",fontsize=16,color="magenta"];843 -> 945[label="",style="dashed", color="magenta", weight=3]; 843 -> 946[label="",style="dashed", color="magenta", weight=3]; 842[label="compare2 vwx300 vwx400 vwx59",fontsize=16,color="burlywood",shape="triangle"];1979[label="vwx59/False",fontsize=10,color="white",style="solid",shape="box"];842 -> 1979[label="",style="solid", color="burlywood", weight=9]; 1979 -> 947[label="",style="solid", color="burlywood", weight=3]; 1980[label="vwx59/True",fontsize=10,color="white",style="solid",shape="box"];842 -> 1980[label="",style="solid", color="burlywood", weight=9]; 1980 -> 948[label="",style="solid", color="burlywood", weight=3]; 845 -> 739[label="",style="dashed", color="red", weight=0]; 845[label="vwx300 == vwx400",fontsize=16,color="magenta"];845 -> 949[label="",style="dashed", color="magenta", weight=3]; 845 -> 950[label="",style="dashed", color="magenta", weight=3]; 844[label="compare2 vwx300 vwx400 vwx60",fontsize=16,color="burlywood",shape="triangle"];1981[label="vwx60/False",fontsize=10,color="white",style="solid",shape="box"];844 -> 1981[label="",style="solid", color="burlywood", weight=9]; 1981 -> 951[label="",style="solid", color="burlywood", weight=3]; 1982[label="vwx60/True",fontsize=10,color="white",style="solid",shape="box"];844 -> 1982[label="",style="solid", color="burlywood", weight=9]; 1982 -> 952[label="",style="solid", color="burlywood", weight=3]; 846[label="primEqFloat (Float vwx370 vwx371) vwx38",fontsize=16,color="burlywood",shape="box"];1983[label="vwx38/Float vwx380 vwx381",fontsize=10,color="white",style="solid",shape="box"];846 -> 1983[label="",style="solid", color="burlywood", weight=9]; 1983 -> 953[label="",style="solid", color="burlywood", weight=3]; 847[label="(vwx370,vwx371) == (vwx380,vwx381)",fontsize=16,color="black",shape="box"];847 -> 954[label="",style="solid", color="black", weight=3]; 848[label="() == ()",fontsize=16,color="black",shape="box"];848 -> 955[label="",style="solid", color="black", weight=3]; 849[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];849 -> 956[label="",style="solid", color="black", weight=3]; 850[label="Nothing == Just vwx380",fontsize=16,color="black",shape="box"];850 -> 957[label="",style="solid", color="black", weight=3]; 851[label="Just vwx370 == Nothing",fontsize=16,color="black",shape="box"];851 -> 958[label="",style="solid", color="black", weight=3]; 852[label="Just vwx370 == Just vwx380",fontsize=16,color="black",shape="box"];852 -> 959[label="",style="solid", color="black", weight=3]; 853[label="vwx370 :% vwx371 == vwx380 :% vwx381",fontsize=16,color="black",shape="box"];853 -> 960[label="",style="solid", color="black", weight=3]; 854[label="vwx370 : vwx371 == vwx380 : vwx381",fontsize=16,color="black",shape="box"];854 -> 961[label="",style="solid", color="black", weight=3]; 855[label="vwx370 : vwx371 == []",fontsize=16,color="black",shape="box"];855 -> 962[label="",style="solid", color="black", weight=3]; 856[label="[] == vwx380 : vwx381",fontsize=16,color="black",shape="box"];856 -> 963[label="",style="solid", color="black", weight=3]; 857[label="[] == []",fontsize=16,color="black",shape="box"];857 -> 964[label="",style="solid", color="black", weight=3]; 858[label="primEqInt (Pos vwx370) vwx38",fontsize=16,color="burlywood",shape="box"];1984[label="vwx370/Succ vwx3700",fontsize=10,color="white",style="solid",shape="box"];858 -> 1984[label="",style="solid", color="burlywood", weight=9]; 1984 -> 965[label="",style="solid", color="burlywood", weight=3]; 1985[label="vwx370/Zero",fontsize=10,color="white",style="solid",shape="box"];858 -> 1985[label="",style="solid", color="burlywood", weight=9]; 1985 -> 966[label="",style="solid", color="burlywood", weight=3]; 859[label="primEqInt (Neg vwx370) vwx38",fontsize=16,color="burlywood",shape="box"];1986[label="vwx370/Succ vwx3700",fontsize=10,color="white",style="solid",shape="box"];859 -> 1986[label="",style="solid", color="burlywood", weight=9]; 1986 -> 967[label="",style="solid", color="burlywood", weight=3]; 1987[label="vwx370/Zero",fontsize=10,color="white",style="solid",shape="box"];859 -> 1987[label="",style="solid", color="burlywood", weight=9]; 1987 -> 968[label="",style="solid", color="burlywood", weight=3]; 860[label="primEqChar (Char vwx370) vwx38",fontsize=16,color="burlywood",shape="box"];1988[label="vwx38/Char vwx380",fontsize=10,color="white",style="solid",shape="box"];860 -> 1988[label="",style="solid", color="burlywood", weight=9]; 1988 -> 969[label="",style="solid", color="burlywood", weight=3]; 861[label="primEqDouble (Double vwx370 vwx371) vwx38",fontsize=16,color="burlywood",shape="box"];1989[label="vwx38/Double vwx380 vwx381",fontsize=10,color="white",style="solid",shape="box"];861 -> 1989[label="",style="solid", color="burlywood", weight=9]; 1989 -> 970[label="",style="solid", color="burlywood", weight=3]; 862[label="Integer vwx370 == Integer vwx380",fontsize=16,color="black",shape="box"];862 -> 971[label="",style="solid", color="black", weight=3]; 863[label="(vwx370,vwx371,vwx372) == (vwx380,vwx381,vwx382)",fontsize=16,color="black",shape="box"];863 -> 972[label="",style="solid", color="black", weight=3]; 864[label="LT == LT",fontsize=16,color="black",shape="box"];864 -> 973[label="",style="solid", color="black", weight=3]; 865[label="LT == EQ",fontsize=16,color="black",shape="box"];865 -> 974[label="",style="solid", color="black", weight=3]; 866[label="LT == GT",fontsize=16,color="black",shape="box"];866 -> 975[label="",style="solid", color="black", weight=3]; 867[label="EQ == LT",fontsize=16,color="black",shape="box"];867 -> 976[label="",style="solid", color="black", weight=3]; 868[label="EQ == EQ",fontsize=16,color="black",shape="box"];868 -> 977[label="",style="solid", color="black", weight=3]; 869[label="EQ == GT",fontsize=16,color="black",shape="box"];869 -> 978[label="",style="solid", color="black", weight=3]; 870[label="GT == LT",fontsize=16,color="black",shape="box"];870 -> 979[label="",style="solid", color="black", weight=3]; 871[label="GT == EQ",fontsize=16,color="black",shape="box"];871 -> 980[label="",style="solid", color="black", weight=3]; 872[label="GT == GT",fontsize=16,color="black",shape="box"];872 -> 981[label="",style="solid", color="black", weight=3]; 873[label="Left vwx370 == Left vwx380",fontsize=16,color="black",shape="box"];873 -> 982[label="",style="solid", color="black", weight=3]; 874[label="Left vwx370 == Right vwx380",fontsize=16,color="black",shape="box"];874 -> 983[label="",style="solid", color="black", weight=3]; 875[label="Right vwx370 == Left vwx380",fontsize=16,color="black",shape="box"];875 -> 984[label="",style="solid", color="black", weight=3]; 876[label="Right vwx370 == Right vwx380",fontsize=16,color="black",shape="box"];876 -> 985[label="",style="solid", color="black", weight=3]; 877[label="False == False",fontsize=16,color="black",shape="box"];877 -> 986[label="",style="solid", color="black", weight=3]; 878[label="False == True",fontsize=16,color="black",shape="box"];878 -> 987[label="",style="solid", color="black", weight=3]; 879[label="True == False",fontsize=16,color="black",shape="box"];879 -> 988[label="",style="solid", color="black", weight=3]; 880[label="True == True",fontsize=16,color="black",shape="box"];880 -> 989[label="",style="solid", color="black", weight=3]; 881 -> 683[label="",style="dashed", color="red", weight=0]; 881[label="vwx300 * Pos vwx4010",fontsize=16,color="magenta"];881 -> 990[label="",style="dashed", color="magenta", weight=3]; 881 -> 991[label="",style="dashed", color="magenta", weight=3]; 882 -> 683[label="",style="dashed", color="red", weight=0]; 882[label="Pos vwx3010 * vwx400",fontsize=16,color="magenta"];882 -> 992[label="",style="dashed", color="magenta", weight=3]; 882 -> 993[label="",style="dashed", color="magenta", weight=3]; 883 -> 683[label="",style="dashed", color="red", weight=0]; 883[label="vwx300 * Pos vwx4010",fontsize=16,color="magenta"];883 -> 994[label="",style="dashed", color="magenta", weight=3]; 883 -> 995[label="",style="dashed", color="magenta", weight=3]; 884 -> 683[label="",style="dashed", color="red", weight=0]; 884[label="Neg vwx3010 * vwx400",fontsize=16,color="magenta"];884 -> 996[label="",style="dashed", color="magenta", weight=3]; 884 -> 997[label="",style="dashed", color="magenta", weight=3]; 885 -> 683[label="",style="dashed", color="red", weight=0]; 885[label="vwx300 * Neg vwx4010",fontsize=16,color="magenta"];885 -> 998[label="",style="dashed", color="magenta", weight=3]; 885 -> 999[label="",style="dashed", color="magenta", weight=3]; 886 -> 683[label="",style="dashed", color="red", weight=0]; 886[label="Pos vwx3010 * vwx400",fontsize=16,color="magenta"];886 -> 1000[label="",style="dashed", color="magenta", weight=3]; 886 -> 1001[label="",style="dashed", color="magenta", weight=3]; 887 -> 683[label="",style="dashed", color="red", weight=0]; 887[label="vwx300 * Neg vwx4010",fontsize=16,color="magenta"];887 -> 1002[label="",style="dashed", color="magenta", weight=3]; 887 -> 1003[label="",style="dashed", color="magenta", weight=3]; 888 -> 683[label="",style="dashed", color="red", weight=0]; 888[label="Neg vwx3010 * vwx400",fontsize=16,color="magenta"];888 -> 1004[label="",style="dashed", color="magenta", weight=3]; 888 -> 1005[label="",style="dashed", color="magenta", weight=3]; 889 -> 424[label="",style="dashed", color="red", weight=0]; 889[label="compare vwx300 vwx400",fontsize=16,color="magenta"];889 -> 1006[label="",style="dashed", color="magenta", weight=3]; 889 -> 1007[label="",style="dashed", color="magenta", weight=3]; 890 -> 425[label="",style="dashed", color="red", weight=0]; 890[label="compare vwx300 vwx400",fontsize=16,color="magenta"];890 -> 1008[label="",style="dashed", color="magenta", weight=3]; 890 -> 1009[label="",style="dashed", color="magenta", weight=3]; 891 -> 573[label="",style="dashed", color="red", weight=0]; 891[label="compare vwx300 vwx400",fontsize=16,color="magenta"];891 -> 1010[label="",style="dashed", color="magenta", weight=3]; 891 -> 1011[label="",style="dashed", color="magenta", weight=3]; 892 -> 426[label="",style="dashed", color="red", weight=0]; 892[label="compare vwx300 vwx400",fontsize=16,color="magenta"];892 -> 1012[label="",style="dashed", color="magenta", weight=3]; 892 -> 1013[label="",style="dashed", color="magenta", weight=3]; 893 -> 427[label="",style="dashed", color="red", weight=0]; 893[label="compare vwx300 vwx400",fontsize=16,color="magenta"];893 -> 1014[label="",style="dashed", color="magenta", weight=3]; 893 -> 1015[label="",style="dashed", color="magenta", weight=3]; 894 -> 576[label="",style="dashed", color="red", weight=0]; 894[label="compare vwx300 vwx400",fontsize=16,color="magenta"];894 -> 1016[label="",style="dashed", color="magenta", weight=3]; 894 -> 1017[label="",style="dashed", color="magenta", weight=3]; 895 -> 428[label="",style="dashed", color="red", weight=0]; 895[label="compare vwx300 vwx400",fontsize=16,color="magenta"];895 -> 1018[label="",style="dashed", color="magenta", weight=3]; 895 -> 1019[label="",style="dashed", color="magenta", weight=3]; 896 -> 578[label="",style="dashed", color="red", weight=0]; 896[label="compare vwx300 vwx400",fontsize=16,color="magenta"];896 -> 1020[label="",style="dashed", color="magenta", weight=3]; 896 -> 1021[label="",style="dashed", color="magenta", weight=3]; 897 -> 579[label="",style="dashed", color="red", weight=0]; 897[label="compare vwx300 vwx400",fontsize=16,color="magenta"];897 -> 1022[label="",style="dashed", color="magenta", weight=3]; 897 -> 1023[label="",style="dashed", color="magenta", weight=3]; 898 -> 580[label="",style="dashed", color="red", weight=0]; 898[label="compare vwx300 vwx400",fontsize=16,color="magenta"];898 -> 1024[label="",style="dashed", color="magenta", weight=3]; 898 -> 1025[label="",style="dashed", color="magenta", weight=3]; 899 -> 429[label="",style="dashed", color="red", weight=0]; 899[label="compare vwx300 vwx400",fontsize=16,color="magenta"];899 -> 1026[label="",style="dashed", color="magenta", weight=3]; 899 -> 1027[label="",style="dashed", color="magenta", weight=3]; 900 -> 430[label="",style="dashed", color="red", weight=0]; 900[label="compare vwx300 vwx400",fontsize=16,color="magenta"];900 -> 1028[label="",style="dashed", color="magenta", weight=3]; 900 -> 1029[label="",style="dashed", color="magenta", weight=3]; 901 -> 431[label="",style="dashed", color="red", weight=0]; 901[label="compare vwx300 vwx400",fontsize=16,color="magenta"];901 -> 1030[label="",style="dashed", color="magenta", weight=3]; 901 -> 1031[label="",style="dashed", color="magenta", weight=3]; 902 -> 584[label="",style="dashed", color="red", weight=0]; 902[label="compare vwx300 vwx400",fontsize=16,color="magenta"];902 -> 1032[label="",style="dashed", color="magenta", weight=3]; 902 -> 1033[label="",style="dashed", color="magenta", weight=3]; 903[label="primCompAux0 vwx53 LT",fontsize=16,color="black",shape="box"];903 -> 1034[label="",style="solid", color="black", weight=3]; 904[label="primCompAux0 vwx53 EQ",fontsize=16,color="black",shape="box"];904 -> 1035[label="",style="solid", color="black", weight=3]; 905[label="primCompAux0 vwx53 GT",fontsize=16,color="black",shape="box"];905 -> 1036[label="",style="solid", color="black", weight=3]; 906[label="Integer (primMulInt vwx3000 vwx4010)",fontsize=16,color="green",shape="box"];906 -> 1037[label="",style="dashed", color="green", weight=3]; 907[label="primMulInt (Pos vwx3000) (Pos vwx4010)",fontsize=16,color="black",shape="box"];907 -> 1038[label="",style="solid", color="black", weight=3]; 908[label="primMulInt (Pos vwx3000) (Neg vwx4010)",fontsize=16,color="black",shape="box"];908 -> 1039[label="",style="solid", color="black", weight=3]; 909[label="primMulInt (Neg vwx3000) (Pos vwx4010)",fontsize=16,color="black",shape="box"];909 -> 1040[label="",style="solid", color="black", weight=3]; 910[label="primMulInt (Neg vwx3000) (Neg vwx4010)",fontsize=16,color="black",shape="box"];910 -> 1041[label="",style="solid", color="black", weight=3]; 911[label="Pos vwx4010",fontsize=16,color="green",shape="box"];912[label="vwx300",fontsize=16,color="green",shape="box"];913[label="vwx400",fontsize=16,color="green",shape="box"];914[label="Pos vwx3010",fontsize=16,color="green",shape="box"];915[label="Pos vwx4010",fontsize=16,color="green",shape="box"];916[label="vwx300",fontsize=16,color="green",shape="box"];917[label="vwx400",fontsize=16,color="green",shape="box"];918[label="Neg vwx3010",fontsize=16,color="green",shape="box"];919[label="Neg vwx4010",fontsize=16,color="green",shape="box"];920[label="vwx300",fontsize=16,color="green",shape="box"];921[label="vwx400",fontsize=16,color="green",shape="box"];922[label="Pos vwx3010",fontsize=16,color="green",shape="box"];923[label="Neg vwx4010",fontsize=16,color="green",shape="box"];924[label="vwx300",fontsize=16,color="green",shape="box"];925[label="vwx400",fontsize=16,color="green",shape="box"];926[label="Neg vwx3010",fontsize=16,color="green",shape="box"];927[label="vwx4000",fontsize=16,color="green",shape="box"];928[label="vwx3000",fontsize=16,color="green",shape="box"];929[label="vwx400",fontsize=16,color="green",shape="box"];930[label="vwx300",fontsize=16,color="green",shape="box"];931[label="compare2 vwx300 vwx400 False",fontsize=16,color="black",shape="box"];931 -> 1042[label="",style="solid", color="black", weight=3]; 932[label="compare2 vwx300 vwx400 True",fontsize=16,color="black",shape="box"];932 -> 1043[label="",style="solid", color="black", weight=3]; 933[label="vwx400",fontsize=16,color="green",shape="box"];934[label="vwx300",fontsize=16,color="green",shape="box"];935[label="compare2 vwx300 vwx400 False",fontsize=16,color="black",shape="box"];935 -> 1044[label="",style="solid", color="black", weight=3]; 936[label="compare2 vwx300 vwx400 True",fontsize=16,color="black",shape="box"];936 -> 1045[label="",style="solid", color="black", weight=3]; 937[label="vwx400",fontsize=16,color="green",shape="box"];938[label="vwx300",fontsize=16,color="green",shape="box"];939[label="compare2 vwx300 vwx400 False",fontsize=16,color="black",shape="box"];939 -> 1046[label="",style="solid", color="black", weight=3]; 940[label="compare2 vwx300 vwx400 True",fontsize=16,color="black",shape="box"];940 -> 1047[label="",style="solid", color="black", weight=3]; 941[label="vwx400",fontsize=16,color="green",shape="box"];942[label="vwx300",fontsize=16,color="green",shape="box"];943[label="compare2 vwx300 vwx400 False",fontsize=16,color="black",shape="box"];943 -> 1048[label="",style="solid", color="black", weight=3]; 944[label="compare2 vwx300 vwx400 True",fontsize=16,color="black",shape="box"];944 -> 1049[label="",style="solid", color="black", weight=3]; 945[label="vwx400",fontsize=16,color="green",shape="box"];946[label="vwx300",fontsize=16,color="green",shape="box"];947[label="compare2 vwx300 vwx400 False",fontsize=16,color="black",shape="box"];947 -> 1050[label="",style="solid", color="black", weight=3]; 948[label="compare2 vwx300 vwx400 True",fontsize=16,color="black",shape="box"];948 -> 1051[label="",style="solid", color="black", weight=3]; 949[label="vwx400",fontsize=16,color="green",shape="box"];950[label="vwx300",fontsize=16,color="green",shape="box"];951[label="compare2 vwx300 vwx400 False",fontsize=16,color="black",shape="box"];951 -> 1052[label="",style="solid", color="black", weight=3]; 952[label="compare2 vwx300 vwx400 True",fontsize=16,color="black",shape="box"];952 -> 1053[label="",style="solid", color="black", weight=3]; 953[label="primEqFloat (Float vwx370 vwx371) (Float vwx380 vwx381)",fontsize=16,color="black",shape="box"];953 -> 1054[label="",style="solid", color="black", weight=3]; 954 -> 603[label="",style="dashed", color="red", weight=0]; 954[label="vwx370 == vwx380 && vwx371 == vwx381",fontsize=16,color="magenta"];954 -> 1055[label="",style="dashed", color="magenta", weight=3]; 954 -> 1056[label="",style="dashed", color="magenta", weight=3]; 955[label="True",fontsize=16,color="green",shape="box"];956[label="True",fontsize=16,color="green",shape="box"];957[label="False",fontsize=16,color="green",shape="box"];958[label="False",fontsize=16,color="green",shape="box"];959[label="vwx370 == vwx380",fontsize=16,color="blue",shape="box"];1990[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];959 -> 1990[label="",style="solid", color="blue", weight=9]; 1990 -> 1057[label="",style="solid", color="blue", weight=3]; 1991[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];959 -> 1991[label="",style="solid", color="blue", weight=9]; 1991 -> 1058[label="",style="solid", color="blue", weight=3]; 1992[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];959 -> 1992[label="",style="solid", color="blue", weight=9]; 1992 -> 1059[label="",style="solid", color="blue", weight=3]; 1993[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];959 -> 1993[label="",style="solid", color="blue", weight=9]; 1993 -> 1060[label="",style="solid", color="blue", weight=3]; 1994[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];959 -> 1994[label="",style="solid", color="blue", weight=9]; 1994 -> 1061[label="",style="solid", color="blue", weight=3]; 1995[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];959 -> 1995[label="",style="solid", color="blue", weight=9]; 1995 -> 1062[label="",style="solid", color="blue", weight=3]; 1996[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];959 -> 1996[label="",style="solid", color="blue", weight=9]; 1996 -> 1063[label="",style="solid", color="blue", weight=3]; 1997[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];959 -> 1997[label="",style="solid", color="blue", weight=9]; 1997 -> 1064[label="",style="solid", color="blue", weight=3]; 1998[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];959 -> 1998[label="",style="solid", color="blue", weight=9]; 1998 -> 1065[label="",style="solid", color="blue", weight=3]; 1999[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];959 -> 1999[label="",style="solid", color="blue", weight=9]; 1999 -> 1066[label="",style="solid", color="blue", weight=3]; 2000[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];959 -> 2000[label="",style="solid", color="blue", weight=9]; 2000 -> 1067[label="",style="solid", color="blue", weight=3]; 2001[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];959 -> 2001[label="",style="solid", color="blue", weight=9]; 2001 -> 1068[label="",style="solid", color="blue", weight=3]; 2002[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];959 -> 2002[label="",style="solid", color="blue", weight=9]; 2002 -> 1069[label="",style="solid", color="blue", weight=3]; 2003[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];959 -> 2003[label="",style="solid", color="blue", weight=9]; 2003 -> 1070[label="",style="solid", color="blue", weight=3]; 960 -> 603[label="",style="dashed", color="red", weight=0]; 960[label="vwx370 == vwx380 && vwx371 == vwx381",fontsize=16,color="magenta"];960 -> 1071[label="",style="dashed", color="magenta", weight=3]; 960 -> 1072[label="",style="dashed", color="magenta", weight=3]; 961 -> 603[label="",style="dashed", color="red", weight=0]; 961[label="vwx370 == vwx380 && vwx371 == vwx381",fontsize=16,color="magenta"];961 -> 1073[label="",style="dashed", color="magenta", weight=3]; 961 -> 1074[label="",style="dashed", color="magenta", weight=3]; 962[label="False",fontsize=16,color="green",shape="box"];963[label="False",fontsize=16,color="green",shape="box"];964[label="True",fontsize=16,color="green",shape="box"];965[label="primEqInt (Pos (Succ vwx3700)) vwx38",fontsize=16,color="burlywood",shape="box"];2004[label="vwx38/Pos vwx380",fontsize=10,color="white",style="solid",shape="box"];965 -> 2004[label="",style="solid", color="burlywood", weight=9]; 2004 -> 1075[label="",style="solid", color="burlywood", weight=3]; 2005[label="vwx38/Neg vwx380",fontsize=10,color="white",style="solid",shape="box"];965 -> 2005[label="",style="solid", color="burlywood", weight=9]; 2005 -> 1076[label="",style="solid", color="burlywood", weight=3]; 966[label="primEqInt (Pos Zero) vwx38",fontsize=16,color="burlywood",shape="box"];2006[label="vwx38/Pos vwx380",fontsize=10,color="white",style="solid",shape="box"];966 -> 2006[label="",style="solid", color="burlywood", weight=9]; 2006 -> 1077[label="",style="solid", color="burlywood", weight=3]; 2007[label="vwx38/Neg vwx380",fontsize=10,color="white",style="solid",shape="box"];966 -> 2007[label="",style="solid", color="burlywood", weight=9]; 2007 -> 1078[label="",style="solid", color="burlywood", weight=3]; 967[label="primEqInt (Neg (Succ vwx3700)) vwx38",fontsize=16,color="burlywood",shape="box"];2008[label="vwx38/Pos vwx380",fontsize=10,color="white",style="solid",shape="box"];967 -> 2008[label="",style="solid", color="burlywood", weight=9]; 2008 -> 1079[label="",style="solid", color="burlywood", weight=3]; 2009[label="vwx38/Neg vwx380",fontsize=10,color="white",style="solid",shape="box"];967 -> 2009[label="",style="solid", color="burlywood", weight=9]; 2009 -> 1080[label="",style="solid", color="burlywood", weight=3]; 968[label="primEqInt (Neg Zero) vwx38",fontsize=16,color="burlywood",shape="box"];2010[label="vwx38/Pos vwx380",fontsize=10,color="white",style="solid",shape="box"];968 -> 2010[label="",style="solid", color="burlywood", weight=9]; 2010 -> 1081[label="",style="solid", color="burlywood", weight=3]; 2011[label="vwx38/Neg vwx380",fontsize=10,color="white",style="solid",shape="box"];968 -> 2011[label="",style="solid", color="burlywood", weight=9]; 2011 -> 1082[label="",style="solid", color="burlywood", weight=3]; 969[label="primEqChar (Char vwx370) (Char vwx380)",fontsize=16,color="black",shape="box"];969 -> 1083[label="",style="solid", color="black", weight=3]; 970[label="primEqDouble (Double vwx370 vwx371) (Double vwx380 vwx381)",fontsize=16,color="black",shape="box"];970 -> 1084[label="",style="solid", color="black", weight=3]; 971 -> 794[label="",style="dashed", color="red", weight=0]; 971[label="primEqInt vwx370 vwx380",fontsize=16,color="magenta"];971 -> 1085[label="",style="dashed", color="magenta", weight=3]; 971 -> 1086[label="",style="dashed", color="magenta", weight=3]; 972 -> 603[label="",style="dashed", color="red", weight=0]; 972[label="vwx370 == vwx380 && vwx371 == vwx381 && vwx372 == vwx382",fontsize=16,color="magenta"];972 -> 1087[label="",style="dashed", color="magenta", weight=3]; 972 -> 1088[label="",style="dashed", color="magenta", weight=3]; 973[label="True",fontsize=16,color="green",shape="box"];974[label="False",fontsize=16,color="green",shape="box"];975[label="False",fontsize=16,color="green",shape="box"];976[label="False",fontsize=16,color="green",shape="box"];977[label="True",fontsize=16,color="green",shape="box"];978[label="False",fontsize=16,color="green",shape="box"];979[label="False",fontsize=16,color="green",shape="box"];980[label="False",fontsize=16,color="green",shape="box"];981[label="True",fontsize=16,color="green",shape="box"];982[label="vwx370 == vwx380",fontsize=16,color="blue",shape="box"];2012[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];982 -> 2012[label="",style="solid", color="blue", weight=9]; 2012 -> 1089[label="",style="solid", color="blue", weight=3]; 2013[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];982 -> 2013[label="",style="solid", color="blue", weight=9]; 2013 -> 1090[label="",style="solid", color="blue", weight=3]; 2014[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];982 -> 2014[label="",style="solid", color="blue", weight=9]; 2014 -> 1091[label="",style="solid", color="blue", weight=3]; 2015[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];982 -> 2015[label="",style="solid", color="blue", weight=9]; 2015 -> 1092[label="",style="solid", color="blue", weight=3]; 2016[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];982 -> 2016[label="",style="solid", color="blue", weight=9]; 2016 -> 1093[label="",style="solid", color="blue", weight=3]; 2017[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];982 -> 2017[label="",style="solid", color="blue", weight=9]; 2017 -> 1094[label="",style="solid", color="blue", weight=3]; 2018[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];982 -> 2018[label="",style="solid", color="blue", weight=9]; 2018 -> 1095[label="",style="solid", color="blue", weight=3]; 2019[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];982 -> 2019[label="",style="solid", color="blue", weight=9]; 2019 -> 1096[label="",style="solid", color="blue", weight=3]; 2020[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];982 -> 2020[label="",style="solid", color="blue", weight=9]; 2020 -> 1097[label="",style="solid", color="blue", weight=3]; 2021[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];982 -> 2021[label="",style="solid", color="blue", weight=9]; 2021 -> 1098[label="",style="solid", color="blue", weight=3]; 2022[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];982 -> 2022[label="",style="solid", color="blue", weight=9]; 2022 -> 1099[label="",style="solid", color="blue", weight=3]; 2023[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];982 -> 2023[label="",style="solid", color="blue", weight=9]; 2023 -> 1100[label="",style="solid", color="blue", weight=3]; 2024[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];982 -> 2024[label="",style="solid", color="blue", weight=9]; 2024 -> 1101[label="",style="solid", color="blue", weight=3]; 2025[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];982 -> 2025[label="",style="solid", color="blue", weight=9]; 2025 -> 1102[label="",style="solid", color="blue", weight=3]; 983[label="False",fontsize=16,color="green",shape="box"];984[label="False",fontsize=16,color="green",shape="box"];985[label="vwx370 == vwx380",fontsize=16,color="blue",shape="box"];2026[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];985 -> 2026[label="",style="solid", color="blue", weight=9]; 2026 -> 1103[label="",style="solid", color="blue", weight=3]; 2027[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];985 -> 2027[label="",style="solid", color="blue", weight=9]; 2027 -> 1104[label="",style="solid", color="blue", weight=3]; 2028[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];985 -> 2028[label="",style="solid", color="blue", weight=9]; 2028 -> 1105[label="",style="solid", color="blue", weight=3]; 2029[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];985 -> 2029[label="",style="solid", color="blue", weight=9]; 2029 -> 1106[label="",style="solid", color="blue", weight=3]; 2030[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];985 -> 2030[label="",style="solid", color="blue", weight=9]; 2030 -> 1107[label="",style="solid", color="blue", weight=3]; 2031[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];985 -> 2031[label="",style="solid", color="blue", weight=9]; 2031 -> 1108[label="",style="solid", color="blue", weight=3]; 2032[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];985 -> 2032[label="",style="solid", color="blue", weight=9]; 2032 -> 1109[label="",style="solid", color="blue", weight=3]; 2033[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];985 -> 2033[label="",style="solid", color="blue", weight=9]; 2033 -> 1110[label="",style="solid", color="blue", weight=3]; 2034[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];985 -> 2034[label="",style="solid", color="blue", weight=9]; 2034 -> 1111[label="",style="solid", color="blue", weight=3]; 2035[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];985 -> 2035[label="",style="solid", color="blue", weight=9]; 2035 -> 1112[label="",style="solid", color="blue", weight=3]; 2036[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];985 -> 2036[label="",style="solid", color="blue", weight=9]; 2036 -> 1113[label="",style="solid", color="blue", weight=3]; 2037[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];985 -> 2037[label="",style="solid", color="blue", weight=9]; 2037 -> 1114[label="",style="solid", color="blue", weight=3]; 2038[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];985 -> 2038[label="",style="solid", color="blue", weight=9]; 2038 -> 1115[label="",style="solid", color="blue", weight=3]; 2039[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];985 -> 2039[label="",style="solid", color="blue", weight=9]; 2039 -> 1116[label="",style="solid", color="blue", weight=3]; 986[label="True",fontsize=16,color="green",shape="box"];987[label="False",fontsize=16,color="green",shape="box"];988[label="False",fontsize=16,color="green",shape="box"];989[label="True",fontsize=16,color="green",shape="box"];990[label="Pos vwx4010",fontsize=16,color="green",shape="box"];991[label="vwx300",fontsize=16,color="green",shape="box"];992[label="vwx400",fontsize=16,color="green",shape="box"];993[label="Pos vwx3010",fontsize=16,color="green",shape="box"];994[label="Pos vwx4010",fontsize=16,color="green",shape="box"];995[label="vwx300",fontsize=16,color="green",shape="box"];996[label="vwx400",fontsize=16,color="green",shape="box"];997[label="Neg vwx3010",fontsize=16,color="green",shape="box"];998[label="Neg vwx4010",fontsize=16,color="green",shape="box"];999[label="vwx300",fontsize=16,color="green",shape="box"];1000[label="vwx400",fontsize=16,color="green",shape="box"];1001[label="Pos vwx3010",fontsize=16,color="green",shape="box"];1002[label="Neg vwx4010",fontsize=16,color="green",shape="box"];1003[label="vwx300",fontsize=16,color="green",shape="box"];1004[label="vwx400",fontsize=16,color="green",shape="box"];1005[label="Neg vwx3010",fontsize=16,color="green",shape="box"];1006[label="vwx300",fontsize=16,color="green",shape="box"];1007[label="vwx400",fontsize=16,color="green",shape="box"];1008[label="vwx300",fontsize=16,color="green",shape="box"];1009[label="vwx400",fontsize=16,color="green",shape="box"];1010[label="vwx300",fontsize=16,color="green",shape="box"];1011[label="vwx400",fontsize=16,color="green",shape="box"];1012[label="vwx300",fontsize=16,color="green",shape="box"];1013[label="vwx400",fontsize=16,color="green",shape="box"];1014[label="vwx300",fontsize=16,color="green",shape="box"];1015[label="vwx400",fontsize=16,color="green",shape="box"];1016[label="vwx300",fontsize=16,color="green",shape="box"];1017[label="vwx400",fontsize=16,color="green",shape="box"];1018[label="vwx300",fontsize=16,color="green",shape="box"];1019[label="vwx400",fontsize=16,color="green",shape="box"];1020[label="vwx300",fontsize=16,color="green",shape="box"];1021[label="vwx400",fontsize=16,color="green",shape="box"];1022[label="vwx300",fontsize=16,color="green",shape="box"];1023[label="vwx400",fontsize=16,color="green",shape="box"];1024[label="vwx300",fontsize=16,color="green",shape="box"];1025[label="vwx400",fontsize=16,color="green",shape="box"];1026[label="vwx300",fontsize=16,color="green",shape="box"];1027[label="vwx400",fontsize=16,color="green",shape="box"];1028[label="vwx300",fontsize=16,color="green",shape="box"];1029[label="vwx400",fontsize=16,color="green",shape="box"];1030[label="vwx300",fontsize=16,color="green",shape="box"];1031[label="vwx400",fontsize=16,color="green",shape="box"];1032[label="vwx300",fontsize=16,color="green",shape="box"];1033[label="vwx400",fontsize=16,color="green",shape="box"];1034[label="LT",fontsize=16,color="green",shape="box"];1035[label="vwx53",fontsize=16,color="green",shape="box"];1036[label="GT",fontsize=16,color="green",shape="box"];1037 -> 754[label="",style="dashed", color="red", weight=0]; 1037[label="primMulInt vwx3000 vwx4010",fontsize=16,color="magenta"];1037 -> 1117[label="",style="dashed", color="magenta", weight=3]; 1037 -> 1118[label="",style="dashed", color="magenta", weight=3]; 1038[label="Pos (primMulNat vwx3000 vwx4010)",fontsize=16,color="green",shape="box"];1038 -> 1119[label="",style="dashed", color="green", weight=3]; 1039[label="Neg (primMulNat vwx3000 vwx4010)",fontsize=16,color="green",shape="box"];1039 -> 1120[label="",style="dashed", color="green", weight=3]; 1040[label="Neg (primMulNat vwx3000 vwx4010)",fontsize=16,color="green",shape="box"];1040 -> 1121[label="",style="dashed", color="green", weight=3]; 1041[label="Pos (primMulNat vwx3000 vwx4010)",fontsize=16,color="green",shape="box"];1041 -> 1122[label="",style="dashed", color="green", weight=3]; 1042 -> 1123[label="",style="dashed", color="red", weight=0]; 1042[label="compare1 vwx300 vwx400 (vwx300 <= vwx400)",fontsize=16,color="magenta"];1042 -> 1124[label="",style="dashed", color="magenta", weight=3]; 1043[label="EQ",fontsize=16,color="green",shape="box"];1044 -> 1125[label="",style="dashed", color="red", weight=0]; 1044[label="compare1 vwx300 vwx400 (vwx300 <= vwx400)",fontsize=16,color="magenta"];1044 -> 1126[label="",style="dashed", color="magenta", weight=3]; 1045[label="EQ",fontsize=16,color="green",shape="box"];1046 -> 1127[label="",style="dashed", color="red", weight=0]; 1046[label="compare1 vwx300 vwx400 (vwx300 <= vwx400)",fontsize=16,color="magenta"];1046 -> 1128[label="",style="dashed", color="magenta", weight=3]; 1047[label="EQ",fontsize=16,color="green",shape="box"];1048 -> 1129[label="",style="dashed", color="red", weight=0]; 1048[label="compare1 vwx300 vwx400 (vwx300 <= vwx400)",fontsize=16,color="magenta"];1048 -> 1130[label="",style="dashed", color="magenta", weight=3]; 1049[label="EQ",fontsize=16,color="green",shape="box"];1050 -> 1131[label="",style="dashed", color="red", weight=0]; 1050[label="compare1 vwx300 vwx400 (vwx300 <= vwx400)",fontsize=16,color="magenta"];1050 -> 1132[label="",style="dashed", color="magenta", weight=3]; 1051[label="EQ",fontsize=16,color="green",shape="box"];1052 -> 1133[label="",style="dashed", color="red", weight=0]; 1052[label="compare1 vwx300 vwx400 (vwx300 <= vwx400)",fontsize=16,color="magenta"];1052 -> 1134[label="",style="dashed", color="magenta", weight=3]; 1053[label="EQ",fontsize=16,color="green",shape="box"];1054 -> 734[label="",style="dashed", color="red", weight=0]; 1054[label="vwx370 * vwx381 == vwx371 * vwx380",fontsize=16,color="magenta"];1054 -> 1135[label="",style="dashed", color="magenta", weight=3]; 1054 -> 1136[label="",style="dashed", color="magenta", weight=3]; 1055[label="vwx370 == vwx380",fontsize=16,color="blue",shape="box"];2040[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1055 -> 2040[label="",style="solid", color="blue", weight=9]; 2040 -> 1137[label="",style="solid", color="blue", weight=3]; 2041[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1055 -> 2041[label="",style="solid", color="blue", weight=9]; 2041 -> 1138[label="",style="solid", color="blue", weight=3]; 2042[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1055 -> 2042[label="",style="solid", color="blue", weight=9]; 2042 -> 1139[label="",style="solid", color="blue", weight=3]; 2043[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1055 -> 2043[label="",style="solid", color="blue", weight=9]; 2043 -> 1140[label="",style="solid", color="blue", weight=3]; 2044[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1055 -> 2044[label="",style="solid", color="blue", weight=9]; 2044 -> 1141[label="",style="solid", color="blue", weight=3]; 2045[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1055 -> 2045[label="",style="solid", color="blue", weight=9]; 2045 -> 1142[label="",style="solid", color="blue", weight=3]; 2046[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1055 -> 2046[label="",style="solid", color="blue", weight=9]; 2046 -> 1143[label="",style="solid", color="blue", weight=3]; 2047[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1055 -> 2047[label="",style="solid", color="blue", weight=9]; 2047 -> 1144[label="",style="solid", color="blue", weight=3]; 2048[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1055 -> 2048[label="",style="solid", color="blue", weight=9]; 2048 -> 1145[label="",style="solid", color="blue", weight=3]; 2049[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1055 -> 2049[label="",style="solid", color="blue", weight=9]; 2049 -> 1146[label="",style="solid", color="blue", weight=3]; 2050[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1055 -> 2050[label="",style="solid", color="blue", weight=9]; 2050 -> 1147[label="",style="solid", color="blue", weight=3]; 2051[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1055 -> 2051[label="",style="solid", color="blue", weight=9]; 2051 -> 1148[label="",style="solid", color="blue", weight=3]; 2052[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1055 -> 2052[label="",style="solid", color="blue", weight=9]; 2052 -> 1149[label="",style="solid", color="blue", weight=3]; 2053[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1055 -> 2053[label="",style="solid", color="blue", weight=9]; 2053 -> 1150[label="",style="solid", color="blue", weight=3]; 1056[label="vwx371 == vwx381",fontsize=16,color="blue",shape="box"];2054[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1056 -> 2054[label="",style="solid", color="blue", weight=9]; 2054 -> 1151[label="",style="solid", color="blue", weight=3]; 2055[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1056 -> 2055[label="",style="solid", color="blue", weight=9]; 2055 -> 1152[label="",style="solid", color="blue", weight=3]; 2056[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1056 -> 2056[label="",style="solid", color="blue", weight=9]; 2056 -> 1153[label="",style="solid", color="blue", weight=3]; 2057[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1056 -> 2057[label="",style="solid", color="blue", weight=9]; 2057 -> 1154[label="",style="solid", color="blue", weight=3]; 2058[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1056 -> 2058[label="",style="solid", color="blue", weight=9]; 2058 -> 1155[label="",style="solid", color="blue", weight=3]; 2059[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1056 -> 2059[label="",style="solid", color="blue", weight=9]; 2059 -> 1156[label="",style="solid", color="blue", weight=3]; 2060[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1056 -> 2060[label="",style="solid", color="blue", weight=9]; 2060 -> 1157[label="",style="solid", color="blue", weight=3]; 2061[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1056 -> 2061[label="",style="solid", color="blue", weight=9]; 2061 -> 1158[label="",style="solid", color="blue", weight=3]; 2062[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1056 -> 2062[label="",style="solid", color="blue", weight=9]; 2062 -> 1159[label="",style="solid", color="blue", weight=3]; 2063[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1056 -> 2063[label="",style="solid", color="blue", weight=9]; 2063 -> 1160[label="",style="solid", color="blue", weight=3]; 2064[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1056 -> 2064[label="",style="solid", color="blue", weight=9]; 2064 -> 1161[label="",style="solid", color="blue", weight=3]; 2065[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1056 -> 2065[label="",style="solid", color="blue", weight=9]; 2065 -> 1162[label="",style="solid", color="blue", weight=3]; 2066[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1056 -> 2066[label="",style="solid", color="blue", weight=9]; 2066 -> 1163[label="",style="solid", color="blue", weight=3]; 2067[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1056 -> 2067[label="",style="solid", color="blue", weight=9]; 2067 -> 1164[label="",style="solid", color="blue", weight=3]; 1057 -> 728[label="",style="dashed", color="red", weight=0]; 1057[label="vwx370 == vwx380",fontsize=16,color="magenta"];1057 -> 1165[label="",style="dashed", color="magenta", weight=3]; 1057 -> 1166[label="",style="dashed", color="magenta", weight=3]; 1058 -> 729[label="",style="dashed", color="red", weight=0]; 1058[label="vwx370 == vwx380",fontsize=16,color="magenta"];1058 -> 1167[label="",style="dashed", color="magenta", weight=3]; 1058 -> 1168[label="",style="dashed", color="magenta", weight=3]; 1059 -> 730[label="",style="dashed", color="red", weight=0]; 1059[label="vwx370 == vwx380",fontsize=16,color="magenta"];1059 -> 1169[label="",style="dashed", color="magenta", weight=3]; 1059 -> 1170[label="",style="dashed", color="magenta", weight=3]; 1060 -> 731[label="",style="dashed", color="red", weight=0]; 1060[label="vwx370 == vwx380",fontsize=16,color="magenta"];1060 -> 1171[label="",style="dashed", color="magenta", weight=3]; 1060 -> 1172[label="",style="dashed", color="magenta", weight=3]; 1061 -> 732[label="",style="dashed", color="red", weight=0]; 1061[label="vwx370 == vwx380",fontsize=16,color="magenta"];1061 -> 1173[label="",style="dashed", color="magenta", weight=3]; 1061 -> 1174[label="",style="dashed", color="magenta", weight=3]; 1062 -> 733[label="",style="dashed", color="red", weight=0]; 1062[label="vwx370 == vwx380",fontsize=16,color="magenta"];1062 -> 1175[label="",style="dashed", color="magenta", weight=3]; 1062 -> 1176[label="",style="dashed", color="magenta", weight=3]; 1063 -> 734[label="",style="dashed", color="red", weight=0]; 1063[label="vwx370 == vwx380",fontsize=16,color="magenta"];1063 -> 1177[label="",style="dashed", color="magenta", weight=3]; 1063 -> 1178[label="",style="dashed", color="magenta", weight=3]; 1064 -> 735[label="",style="dashed", color="red", weight=0]; 1064[label="vwx370 == vwx380",fontsize=16,color="magenta"];1064 -> 1179[label="",style="dashed", color="magenta", weight=3]; 1064 -> 1180[label="",style="dashed", color="magenta", weight=3]; 1065 -> 736[label="",style="dashed", color="red", weight=0]; 1065[label="vwx370 == vwx380",fontsize=16,color="magenta"];1065 -> 1181[label="",style="dashed", color="magenta", weight=3]; 1065 -> 1182[label="",style="dashed", color="magenta", weight=3]; 1066 -> 737[label="",style="dashed", color="red", weight=0]; 1066[label="vwx370 == vwx380",fontsize=16,color="magenta"];1066 -> 1183[label="",style="dashed", color="magenta", weight=3]; 1066 -> 1184[label="",style="dashed", color="magenta", weight=3]; 1067 -> 738[label="",style="dashed", color="red", weight=0]; 1067[label="vwx370 == vwx380",fontsize=16,color="magenta"];1067 -> 1185[label="",style="dashed", color="magenta", weight=3]; 1067 -> 1186[label="",style="dashed", color="magenta", weight=3]; 1068 -> 739[label="",style="dashed", color="red", weight=0]; 1068[label="vwx370 == vwx380",fontsize=16,color="magenta"];1068 -> 1187[label="",style="dashed", color="magenta", weight=3]; 1068 -> 1188[label="",style="dashed", color="magenta", weight=3]; 1069 -> 740[label="",style="dashed", color="red", weight=0]; 1069[label="vwx370 == vwx380",fontsize=16,color="magenta"];1069 -> 1189[label="",style="dashed", color="magenta", weight=3]; 1069 -> 1190[label="",style="dashed", color="magenta", weight=3]; 1070 -> 741[label="",style="dashed", color="red", weight=0]; 1070[label="vwx370 == vwx380",fontsize=16,color="magenta"];1070 -> 1191[label="",style="dashed", color="magenta", weight=3]; 1070 -> 1192[label="",style="dashed", color="magenta", weight=3]; 1071[label="vwx370 == vwx380",fontsize=16,color="blue",shape="box"];2068[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1071 -> 2068[label="",style="solid", color="blue", weight=9]; 2068 -> 1193[label="",style="solid", color="blue", weight=3]; 2069[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1071 -> 2069[label="",style="solid", color="blue", weight=9]; 2069 -> 1194[label="",style="solid", color="blue", weight=3]; 1072[label="vwx371 == vwx381",fontsize=16,color="blue",shape="box"];2070[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1072 -> 2070[label="",style="solid", color="blue", weight=9]; 2070 -> 1195[label="",style="solid", color="blue", weight=3]; 2071[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1072 -> 2071[label="",style="solid", color="blue", weight=9]; 2071 -> 1196[label="",style="solid", color="blue", weight=3]; 1073[label="vwx370 == vwx380",fontsize=16,color="blue",shape="box"];2072[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1073 -> 2072[label="",style="solid", color="blue", weight=9]; 2072 -> 1197[label="",style="solid", color="blue", weight=3]; 2073[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1073 -> 2073[label="",style="solid", color="blue", weight=9]; 2073 -> 1198[label="",style="solid", color="blue", weight=3]; 2074[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1073 -> 2074[label="",style="solid", color="blue", weight=9]; 2074 -> 1199[label="",style="solid", color="blue", weight=3]; 2075[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1073 -> 2075[label="",style="solid", color="blue", weight=9]; 2075 -> 1200[label="",style="solid", color="blue", weight=3]; 2076[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1073 -> 2076[label="",style="solid", color="blue", weight=9]; 2076 -> 1201[label="",style="solid", color="blue", weight=3]; 2077[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1073 -> 2077[label="",style="solid", color="blue", weight=9]; 2077 -> 1202[label="",style="solid", color="blue", weight=3]; 2078[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1073 -> 2078[label="",style="solid", color="blue", weight=9]; 2078 -> 1203[label="",style="solid", color="blue", weight=3]; 2079[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1073 -> 2079[label="",style="solid", color="blue", weight=9]; 2079 -> 1204[label="",style="solid", color="blue", weight=3]; 2080[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1073 -> 2080[label="",style="solid", color="blue", weight=9]; 2080 -> 1205[label="",style="solid", color="blue", weight=3]; 2081[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1073 -> 2081[label="",style="solid", color="blue", weight=9]; 2081 -> 1206[label="",style="solid", color="blue", weight=3]; 2082[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1073 -> 2082[label="",style="solid", color="blue", weight=9]; 2082 -> 1207[label="",style="solid", color="blue", weight=3]; 2083[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1073 -> 2083[label="",style="solid", color="blue", weight=9]; 2083 -> 1208[label="",style="solid", color="blue", weight=3]; 2084[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1073 -> 2084[label="",style="solid", color="blue", weight=9]; 2084 -> 1209[label="",style="solid", color="blue", weight=3]; 2085[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1073 -> 2085[label="",style="solid", color="blue", weight=9]; 2085 -> 1210[label="",style="solid", color="blue", weight=3]; 1074 -> 733[label="",style="dashed", color="red", weight=0]; 1074[label="vwx371 == vwx381",fontsize=16,color="magenta"];1074 -> 1211[label="",style="dashed", color="magenta", weight=3]; 1074 -> 1212[label="",style="dashed", color="magenta", weight=3]; 1075[label="primEqInt (Pos (Succ vwx3700)) (Pos vwx380)",fontsize=16,color="burlywood",shape="box"];2086[label="vwx380/Succ vwx3800",fontsize=10,color="white",style="solid",shape="box"];1075 -> 2086[label="",style="solid", color="burlywood", weight=9]; 2086 -> 1213[label="",style="solid", color="burlywood", weight=3]; 2087[label="vwx380/Zero",fontsize=10,color="white",style="solid",shape="box"];1075 -> 2087[label="",style="solid", color="burlywood", weight=9]; 2087 -> 1214[label="",style="solid", color="burlywood", weight=3]; 1076[label="primEqInt (Pos (Succ vwx3700)) (Neg vwx380)",fontsize=16,color="black",shape="box"];1076 -> 1215[label="",style="solid", color="black", weight=3]; 1077[label="primEqInt (Pos Zero) (Pos vwx380)",fontsize=16,color="burlywood",shape="box"];2088[label="vwx380/Succ vwx3800",fontsize=10,color="white",style="solid",shape="box"];1077 -> 2088[label="",style="solid", color="burlywood", weight=9]; 2088 -> 1216[label="",style="solid", color="burlywood", weight=3]; 2089[label="vwx380/Zero",fontsize=10,color="white",style="solid",shape="box"];1077 -> 2089[label="",style="solid", color="burlywood", weight=9]; 2089 -> 1217[label="",style="solid", color="burlywood", weight=3]; 1078[label="primEqInt (Pos Zero) (Neg vwx380)",fontsize=16,color="burlywood",shape="box"];2090[label="vwx380/Succ vwx3800",fontsize=10,color="white",style="solid",shape="box"];1078 -> 2090[label="",style="solid", color="burlywood", weight=9]; 2090 -> 1218[label="",style="solid", color="burlywood", weight=3]; 2091[label="vwx380/Zero",fontsize=10,color="white",style="solid",shape="box"];1078 -> 2091[label="",style="solid", color="burlywood", weight=9]; 2091 -> 1219[label="",style="solid", color="burlywood", weight=3]; 1079[label="primEqInt (Neg (Succ vwx3700)) (Pos vwx380)",fontsize=16,color="black",shape="box"];1079 -> 1220[label="",style="solid", color="black", weight=3]; 1080[label="primEqInt (Neg (Succ vwx3700)) (Neg vwx380)",fontsize=16,color="burlywood",shape="box"];2092[label="vwx380/Succ vwx3800",fontsize=10,color="white",style="solid",shape="box"];1080 -> 2092[label="",style="solid", color="burlywood", weight=9]; 2092 -> 1221[label="",style="solid", color="burlywood", weight=3]; 2093[label="vwx380/Zero",fontsize=10,color="white",style="solid",shape="box"];1080 -> 2093[label="",style="solid", color="burlywood", weight=9]; 2093 -> 1222[label="",style="solid", color="burlywood", weight=3]; 1081[label="primEqInt (Neg Zero) (Pos vwx380)",fontsize=16,color="burlywood",shape="box"];2094[label="vwx380/Succ vwx3800",fontsize=10,color="white",style="solid",shape="box"];1081 -> 2094[label="",style="solid", color="burlywood", weight=9]; 2094 -> 1223[label="",style="solid", color="burlywood", weight=3]; 2095[label="vwx380/Zero",fontsize=10,color="white",style="solid",shape="box"];1081 -> 2095[label="",style="solid", color="burlywood", weight=9]; 2095 -> 1224[label="",style="solid", color="burlywood", weight=3]; 1082[label="primEqInt (Neg Zero) (Neg vwx380)",fontsize=16,color="burlywood",shape="box"];2096[label="vwx380/Succ vwx3800",fontsize=10,color="white",style="solid",shape="box"];1082 -> 2096[label="",style="solid", color="burlywood", weight=9]; 2096 -> 1225[label="",style="solid", color="burlywood", weight=3]; 2097[label="vwx380/Zero",fontsize=10,color="white",style="solid",shape="box"];1082 -> 2097[label="",style="solid", color="burlywood", weight=9]; 2097 -> 1226[label="",style="solid", color="burlywood", weight=3]; 1083[label="primEqNat vwx370 vwx380",fontsize=16,color="burlywood",shape="triangle"];2098[label="vwx370/Succ vwx3700",fontsize=10,color="white",style="solid",shape="box"];1083 -> 2098[label="",style="solid", color="burlywood", weight=9]; 2098 -> 1227[label="",style="solid", color="burlywood", weight=3]; 2099[label="vwx370/Zero",fontsize=10,color="white",style="solid",shape="box"];1083 -> 2099[label="",style="solid", color="burlywood", weight=9]; 2099 -> 1228[label="",style="solid", color="burlywood", weight=3]; 1084 -> 734[label="",style="dashed", color="red", weight=0]; 1084[label="vwx370 * vwx381 == vwx371 * vwx380",fontsize=16,color="magenta"];1084 -> 1229[label="",style="dashed", color="magenta", weight=3]; 1084 -> 1230[label="",style="dashed", color="magenta", weight=3]; 1085[label="vwx380",fontsize=16,color="green",shape="box"];1086[label="vwx370",fontsize=16,color="green",shape="box"];1087[label="vwx370 == vwx380",fontsize=16,color="blue",shape="box"];2100[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1087 -> 2100[label="",style="solid", color="blue", weight=9]; 2100 -> 1231[label="",style="solid", color="blue", weight=3]; 2101[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1087 -> 2101[label="",style="solid", color="blue", weight=9]; 2101 -> 1232[label="",style="solid", color="blue", weight=3]; 2102[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1087 -> 2102[label="",style="solid", color="blue", weight=9]; 2102 -> 1233[label="",style="solid", color="blue", weight=3]; 2103[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1087 -> 2103[label="",style="solid", color="blue", weight=9]; 2103 -> 1234[label="",style="solid", color="blue", weight=3]; 2104[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1087 -> 2104[label="",style="solid", color="blue", weight=9]; 2104 -> 1235[label="",style="solid", color="blue", weight=3]; 2105[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1087 -> 2105[label="",style="solid", color="blue", weight=9]; 2105 -> 1236[label="",style="solid", color="blue", weight=3]; 2106[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1087 -> 2106[label="",style="solid", color="blue", weight=9]; 2106 -> 1237[label="",style="solid", color="blue", weight=3]; 2107[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1087 -> 2107[label="",style="solid", color="blue", weight=9]; 2107 -> 1238[label="",style="solid", color="blue", weight=3]; 2108[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1087 -> 2108[label="",style="solid", color="blue", weight=9]; 2108 -> 1239[label="",style="solid", color="blue", weight=3]; 2109[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1087 -> 2109[label="",style="solid", color="blue", weight=9]; 2109 -> 1240[label="",style="solid", color="blue", weight=3]; 2110[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1087 -> 2110[label="",style="solid", color="blue", weight=9]; 2110 -> 1241[label="",style="solid", color="blue", weight=3]; 2111[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1087 -> 2111[label="",style="solid", color="blue", weight=9]; 2111 -> 1242[label="",style="solid", color="blue", weight=3]; 2112[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1087 -> 2112[label="",style="solid", color="blue", weight=9]; 2112 -> 1243[label="",style="solid", color="blue", weight=3]; 2113[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1087 -> 2113[label="",style="solid", color="blue", weight=9]; 2113 -> 1244[label="",style="solid", color="blue", weight=3]; 1088 -> 603[label="",style="dashed", color="red", weight=0]; 1088[label="vwx371 == vwx381 && vwx372 == vwx382",fontsize=16,color="magenta"];1088 -> 1245[label="",style="dashed", color="magenta", weight=3]; 1088 -> 1246[label="",style="dashed", color="magenta", weight=3]; 1089 -> 728[label="",style="dashed", color="red", weight=0]; 1089[label="vwx370 == vwx380",fontsize=16,color="magenta"];1089 -> 1247[label="",style="dashed", color="magenta", weight=3]; 1089 -> 1248[label="",style="dashed", color="magenta", weight=3]; 1090 -> 729[label="",style="dashed", color="red", weight=0]; 1090[label="vwx370 == vwx380",fontsize=16,color="magenta"];1090 -> 1249[label="",style="dashed", color="magenta", weight=3]; 1090 -> 1250[label="",style="dashed", color="magenta", weight=3]; 1091 -> 730[label="",style="dashed", color="red", weight=0]; 1091[label="vwx370 == vwx380",fontsize=16,color="magenta"];1091 -> 1251[label="",style="dashed", color="magenta", weight=3]; 1091 -> 1252[label="",style="dashed", color="magenta", weight=3]; 1092 -> 731[label="",style="dashed", color="red", weight=0]; 1092[label="vwx370 == vwx380",fontsize=16,color="magenta"];1092 -> 1253[label="",style="dashed", color="magenta", weight=3]; 1092 -> 1254[label="",style="dashed", color="magenta", weight=3]; 1093 -> 732[label="",style="dashed", color="red", weight=0]; 1093[label="vwx370 == vwx380",fontsize=16,color="magenta"];1093 -> 1255[label="",style="dashed", color="magenta", weight=3]; 1093 -> 1256[label="",style="dashed", color="magenta", weight=3]; 1094 -> 733[label="",style="dashed", color="red", weight=0]; 1094[label="vwx370 == vwx380",fontsize=16,color="magenta"];1094 -> 1257[label="",style="dashed", color="magenta", weight=3]; 1094 -> 1258[label="",style="dashed", color="magenta", weight=3]; 1095 -> 734[label="",style="dashed", color="red", weight=0]; 1095[label="vwx370 == vwx380",fontsize=16,color="magenta"];1095 -> 1259[label="",style="dashed", color="magenta", weight=3]; 1095 -> 1260[label="",style="dashed", color="magenta", weight=3]; 1096 -> 735[label="",style="dashed", color="red", weight=0]; 1096[label="vwx370 == vwx380",fontsize=16,color="magenta"];1096 -> 1261[label="",style="dashed", color="magenta", weight=3]; 1096 -> 1262[label="",style="dashed", color="magenta", weight=3]; 1097 -> 736[label="",style="dashed", color="red", weight=0]; 1097[label="vwx370 == vwx380",fontsize=16,color="magenta"];1097 -> 1263[label="",style="dashed", color="magenta", weight=3]; 1097 -> 1264[label="",style="dashed", color="magenta", weight=3]; 1098 -> 737[label="",style="dashed", color="red", weight=0]; 1098[label="vwx370 == vwx380",fontsize=16,color="magenta"];1098 -> 1265[label="",style="dashed", color="magenta", weight=3]; 1098 -> 1266[label="",style="dashed", color="magenta", weight=3]; 1099 -> 738[label="",style="dashed", color="red", weight=0]; 1099[label="vwx370 == vwx380",fontsize=16,color="magenta"];1099 -> 1267[label="",style="dashed", color="magenta", weight=3]; 1099 -> 1268[label="",style="dashed", color="magenta", weight=3]; 1100 -> 739[label="",style="dashed", color="red", weight=0]; 1100[label="vwx370 == vwx380",fontsize=16,color="magenta"];1100 -> 1269[label="",style="dashed", color="magenta", weight=3]; 1100 -> 1270[label="",style="dashed", color="magenta", weight=3]; 1101 -> 740[label="",style="dashed", color="red", weight=0]; 1101[label="vwx370 == vwx380",fontsize=16,color="magenta"];1101 -> 1271[label="",style="dashed", color="magenta", weight=3]; 1101 -> 1272[label="",style="dashed", color="magenta", weight=3]; 1102 -> 741[label="",style="dashed", color="red", weight=0]; 1102[label="vwx370 == vwx380",fontsize=16,color="magenta"];1102 -> 1273[label="",style="dashed", color="magenta", weight=3]; 1102 -> 1274[label="",style="dashed", color="magenta", weight=3]; 1103 -> 728[label="",style="dashed", color="red", weight=0]; 1103[label="vwx370 == vwx380",fontsize=16,color="magenta"];1103 -> 1275[label="",style="dashed", color="magenta", weight=3]; 1103 -> 1276[label="",style="dashed", color="magenta", weight=3]; 1104 -> 729[label="",style="dashed", color="red", weight=0]; 1104[label="vwx370 == vwx380",fontsize=16,color="magenta"];1104 -> 1277[label="",style="dashed", color="magenta", weight=3]; 1104 -> 1278[label="",style="dashed", color="magenta", weight=3]; 1105 -> 730[label="",style="dashed", color="red", weight=0]; 1105[label="vwx370 == vwx380",fontsize=16,color="magenta"];1105 -> 1279[label="",style="dashed", color="magenta", weight=3]; 1105 -> 1280[label="",style="dashed", color="magenta", weight=3]; 1106 -> 731[label="",style="dashed", color="red", weight=0]; 1106[label="vwx370 == vwx380",fontsize=16,color="magenta"];1106 -> 1281[label="",style="dashed", color="magenta", weight=3]; 1106 -> 1282[label="",style="dashed", color="magenta", weight=3]; 1107 -> 732[label="",style="dashed", color="red", weight=0]; 1107[label="vwx370 == vwx380",fontsize=16,color="magenta"];1107 -> 1283[label="",style="dashed", color="magenta", weight=3]; 1107 -> 1284[label="",style="dashed", color="magenta", weight=3]; 1108 -> 733[label="",style="dashed", color="red", weight=0]; 1108[label="vwx370 == vwx380",fontsize=16,color="magenta"];1108 -> 1285[label="",style="dashed", color="magenta", weight=3]; 1108 -> 1286[label="",style="dashed", color="magenta", weight=3]; 1109 -> 734[label="",style="dashed", color="red", weight=0]; 1109[label="vwx370 == vwx380",fontsize=16,color="magenta"];1109 -> 1287[label="",style="dashed", color="magenta", weight=3]; 1109 -> 1288[label="",style="dashed", color="magenta", weight=3]; 1110 -> 735[label="",style="dashed", color="red", weight=0]; 1110[label="vwx370 == vwx380",fontsize=16,color="magenta"];1110 -> 1289[label="",style="dashed", color="magenta", weight=3]; 1110 -> 1290[label="",style="dashed", color="magenta", weight=3]; 1111 -> 736[label="",style="dashed", color="red", weight=0]; 1111[label="vwx370 == vwx380",fontsize=16,color="magenta"];1111 -> 1291[label="",style="dashed", color="magenta", weight=3]; 1111 -> 1292[label="",style="dashed", color="magenta", weight=3]; 1112 -> 737[label="",style="dashed", color="red", weight=0]; 1112[label="vwx370 == vwx380",fontsize=16,color="magenta"];1112 -> 1293[label="",style="dashed", color="magenta", weight=3]; 1112 -> 1294[label="",style="dashed", color="magenta", weight=3]; 1113 -> 738[label="",style="dashed", color="red", weight=0]; 1113[label="vwx370 == vwx380",fontsize=16,color="magenta"];1113 -> 1295[label="",style="dashed", color="magenta", weight=3]; 1113 -> 1296[label="",style="dashed", color="magenta", weight=3]; 1114 -> 739[label="",style="dashed", color="red", weight=0]; 1114[label="vwx370 == vwx380",fontsize=16,color="magenta"];1114 -> 1297[label="",style="dashed", color="magenta", weight=3]; 1114 -> 1298[label="",style="dashed", color="magenta", weight=3]; 1115 -> 740[label="",style="dashed", color="red", weight=0]; 1115[label="vwx370 == vwx380",fontsize=16,color="magenta"];1115 -> 1299[label="",style="dashed", color="magenta", weight=3]; 1115 -> 1300[label="",style="dashed", color="magenta", weight=3]; 1116 -> 741[label="",style="dashed", color="red", weight=0]; 1116[label="vwx370 == vwx380",fontsize=16,color="magenta"];1116 -> 1301[label="",style="dashed", color="magenta", weight=3]; 1116 -> 1302[label="",style="dashed", color="magenta", weight=3]; 1117[label="vwx4010",fontsize=16,color="green",shape="box"];1118[label="vwx3000",fontsize=16,color="green",shape="box"];1119[label="primMulNat vwx3000 vwx4010",fontsize=16,color="burlywood",shape="triangle"];2114[label="vwx3000/Succ vwx30000",fontsize=10,color="white",style="solid",shape="box"];1119 -> 2114[label="",style="solid", color="burlywood", weight=9]; 2114 -> 1303[label="",style="solid", color="burlywood", weight=3]; 2115[label="vwx3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1119 -> 2115[label="",style="solid", color="burlywood", weight=9]; 2115 -> 1304[label="",style="solid", color="burlywood", weight=3]; 1120 -> 1119[label="",style="dashed", color="red", weight=0]; 1120[label="primMulNat vwx3000 vwx4010",fontsize=16,color="magenta"];1120 -> 1305[label="",style="dashed", color="magenta", weight=3]; 1121 -> 1119[label="",style="dashed", color="red", weight=0]; 1121[label="primMulNat vwx3000 vwx4010",fontsize=16,color="magenta"];1121 -> 1306[label="",style="dashed", color="magenta", weight=3]; 1122 -> 1119[label="",style="dashed", color="red", weight=0]; 1122[label="primMulNat vwx3000 vwx4010",fontsize=16,color="magenta"];1122 -> 1307[label="",style="dashed", color="magenta", weight=3]; 1122 -> 1308[label="",style="dashed", color="magenta", weight=3]; 1124 -> 29[label="",style="dashed", color="red", weight=0]; 1124[label="vwx300 <= vwx400",fontsize=16,color="magenta"];1124 -> 1309[label="",style="dashed", color="magenta", weight=3]; 1124 -> 1310[label="",style="dashed", color="magenta", weight=3]; 1123[label="compare1 vwx300 vwx400 vwx61",fontsize=16,color="burlywood",shape="triangle"];2116[label="vwx61/False",fontsize=10,color="white",style="solid",shape="box"];1123 -> 2116[label="",style="solid", color="burlywood", weight=9]; 2116 -> 1311[label="",style="solid", color="burlywood", weight=3]; 2117[label="vwx61/True",fontsize=10,color="white",style="solid",shape="box"];1123 -> 2117[label="",style="solid", color="burlywood", weight=9]; 2117 -> 1312[label="",style="solid", color="burlywood", weight=3]; 1126 -> 32[label="",style="dashed", color="red", weight=0]; 1126[label="vwx300 <= vwx400",fontsize=16,color="magenta"];1126 -> 1313[label="",style="dashed", color="magenta", weight=3]; 1126 -> 1314[label="",style="dashed", color="magenta", weight=3]; 1125[label="compare1 vwx300 vwx400 vwx62",fontsize=16,color="burlywood",shape="triangle"];2118[label="vwx62/False",fontsize=10,color="white",style="solid",shape="box"];1125 -> 2118[label="",style="solid", color="burlywood", weight=9]; 2118 -> 1315[label="",style="solid", color="burlywood", weight=3]; 2119[label="vwx62/True",fontsize=10,color="white",style="solid",shape="box"];1125 -> 2119[label="",style="solid", color="burlywood", weight=9]; 2119 -> 1316[label="",style="solid", color="burlywood", weight=3]; 1128 -> 34[label="",style="dashed", color="red", weight=0]; 1128[label="vwx300 <= vwx400",fontsize=16,color="magenta"];1128 -> 1317[label="",style="dashed", color="magenta", weight=3]; 1128 -> 1318[label="",style="dashed", color="magenta", weight=3]; 1127[label="compare1 vwx300 vwx400 vwx63",fontsize=16,color="burlywood",shape="triangle"];2120[label="vwx63/False",fontsize=10,color="white",style="solid",shape="box"];1127 -> 2120[label="",style="solid", color="burlywood", weight=9]; 2120 -> 1319[label="",style="solid", color="burlywood", weight=3]; 2121[label="vwx63/True",fontsize=10,color="white",style="solid",shape="box"];1127 -> 2121[label="",style="solid", color="burlywood", weight=9]; 2121 -> 1320[label="",style="solid", color="burlywood", weight=3]; 1130 -> 35[label="",style="dashed", color="red", weight=0]; 1130[label="vwx300 <= vwx400",fontsize=16,color="magenta"];1130 -> 1321[label="",style="dashed", color="magenta", weight=3]; 1130 -> 1322[label="",style="dashed", color="magenta", weight=3]; 1129[label="compare1 vwx300 vwx400 vwx64",fontsize=16,color="burlywood",shape="triangle"];2122[label="vwx64/False",fontsize=10,color="white",style="solid",shape="box"];1129 -> 2122[label="",style="solid", color="burlywood", weight=9]; 2122 -> 1323[label="",style="solid", color="burlywood", weight=3]; 2123[label="vwx64/True",fontsize=10,color="white",style="solid",shape="box"];1129 -> 2123[label="",style="solid", color="burlywood", weight=9]; 2123 -> 1324[label="",style="solid", color="burlywood", weight=3]; 1132 -> 36[label="",style="dashed", color="red", weight=0]; 1132[label="vwx300 <= vwx400",fontsize=16,color="magenta"];1132 -> 1325[label="",style="dashed", color="magenta", weight=3]; 1132 -> 1326[label="",style="dashed", color="magenta", weight=3]; 1131[label="compare1 vwx300 vwx400 vwx65",fontsize=16,color="burlywood",shape="triangle"];2124[label="vwx65/False",fontsize=10,color="white",style="solid",shape="box"];1131 -> 2124[label="",style="solid", color="burlywood", weight=9]; 2124 -> 1327[label="",style="solid", color="burlywood", weight=3]; 2125[label="vwx65/True",fontsize=10,color="white",style="solid",shape="box"];1131 -> 2125[label="",style="solid", color="burlywood", weight=9]; 2125 -> 1328[label="",style="solid", color="burlywood", weight=3]; 1134 -> 40[label="",style="dashed", color="red", weight=0]; 1134[label="vwx300 <= vwx400",fontsize=16,color="magenta"];1134 -> 1329[label="",style="dashed", color="magenta", weight=3]; 1134 -> 1330[label="",style="dashed", color="magenta", weight=3]; 1133[label="compare1 vwx300 vwx400 vwx66",fontsize=16,color="burlywood",shape="triangle"];2126[label="vwx66/False",fontsize=10,color="white",style="solid",shape="box"];1133 -> 2126[label="",style="solid", color="burlywood", weight=9]; 2126 -> 1331[label="",style="solid", color="burlywood", weight=3]; 2127[label="vwx66/True",fontsize=10,color="white",style="solid",shape="box"];1133 -> 2127[label="",style="solid", color="burlywood", weight=9]; 2127 -> 1332[label="",style="solid", color="burlywood", weight=3]; 1135 -> 683[label="",style="dashed", color="red", weight=0]; 1135[label="vwx371 * vwx380",fontsize=16,color="magenta"];1135 -> 1333[label="",style="dashed", color="magenta", weight=3]; 1135 -> 1334[label="",style="dashed", color="magenta", weight=3]; 1136 -> 683[label="",style="dashed", color="red", weight=0]; 1136[label="vwx370 * vwx381",fontsize=16,color="magenta"];1136 -> 1335[label="",style="dashed", color="magenta", weight=3]; 1136 -> 1336[label="",style="dashed", color="magenta", weight=3]; 1137 -> 728[label="",style="dashed", color="red", weight=0]; 1137[label="vwx370 == vwx380",fontsize=16,color="magenta"];1137 -> 1337[label="",style="dashed", color="magenta", weight=3]; 1137 -> 1338[label="",style="dashed", color="magenta", weight=3]; 1138 -> 729[label="",style="dashed", color="red", weight=0]; 1138[label="vwx370 == vwx380",fontsize=16,color="magenta"];1138 -> 1339[label="",style="dashed", color="magenta", weight=3]; 1138 -> 1340[label="",style="dashed", color="magenta", weight=3]; 1139 -> 730[label="",style="dashed", color="red", weight=0]; 1139[label="vwx370 == vwx380",fontsize=16,color="magenta"];1139 -> 1341[label="",style="dashed", color="magenta", weight=3]; 1139 -> 1342[label="",style="dashed", color="magenta", weight=3]; 1140 -> 731[label="",style="dashed", color="red", weight=0]; 1140[label="vwx370 == vwx380",fontsize=16,color="magenta"];1140 -> 1343[label="",style="dashed", color="magenta", weight=3]; 1140 -> 1344[label="",style="dashed", color="magenta", weight=3]; 1141 -> 732[label="",style="dashed", color="red", weight=0]; 1141[label="vwx370 == vwx380",fontsize=16,color="magenta"];1141 -> 1345[label="",style="dashed", color="magenta", weight=3]; 1141 -> 1346[label="",style="dashed", color="magenta", weight=3]; 1142 -> 733[label="",style="dashed", color="red", weight=0]; 1142[label="vwx370 == vwx380",fontsize=16,color="magenta"];1142 -> 1347[label="",style="dashed", color="magenta", weight=3]; 1142 -> 1348[label="",style="dashed", color="magenta", weight=3]; 1143 -> 734[label="",style="dashed", color="red", weight=0]; 1143[label="vwx370 == vwx380",fontsize=16,color="magenta"];1143 -> 1349[label="",style="dashed", color="magenta", weight=3]; 1143 -> 1350[label="",style="dashed", color="magenta", weight=3]; 1144 -> 735[label="",style="dashed", color="red", weight=0]; 1144[label="vwx370 == vwx380",fontsize=16,color="magenta"];1144 -> 1351[label="",style="dashed", color="magenta", weight=3]; 1144 -> 1352[label="",style="dashed", color="magenta", weight=3]; 1145 -> 736[label="",style="dashed", color="red", weight=0]; 1145[label="vwx370 == vwx380",fontsize=16,color="magenta"];1145 -> 1353[label="",style="dashed", color="magenta", weight=3]; 1145 -> 1354[label="",style="dashed", color="magenta", weight=3]; 1146 -> 737[label="",style="dashed", color="red", weight=0]; 1146[label="vwx370 == vwx380",fontsize=16,color="magenta"];1146 -> 1355[label="",style="dashed", color="magenta", weight=3]; 1146 -> 1356[label="",style="dashed", color="magenta", weight=3]; 1147 -> 738[label="",style="dashed", color="red", weight=0]; 1147[label="vwx370 == vwx380",fontsize=16,color="magenta"];1147 -> 1357[label="",style="dashed", color="magenta", weight=3]; 1147 -> 1358[label="",style="dashed", color="magenta", weight=3]; 1148 -> 739[label="",style="dashed", color="red", weight=0]; 1148[label="vwx370 == vwx380",fontsize=16,color="magenta"];1148 -> 1359[label="",style="dashed", color="magenta", weight=3]; 1148 -> 1360[label="",style="dashed", color="magenta", weight=3]; 1149 -> 740[label="",style="dashed", color="red", weight=0]; 1149[label="vwx370 == vwx380",fontsize=16,color="magenta"];1149 -> 1361[label="",style="dashed", color="magenta", weight=3]; 1149 -> 1362[label="",style="dashed", color="magenta", weight=3]; 1150 -> 741[label="",style="dashed", color="red", weight=0]; 1150[label="vwx370 == vwx380",fontsize=16,color="magenta"];1150 -> 1363[label="",style="dashed", color="magenta", weight=3]; 1150 -> 1364[label="",style="dashed", color="magenta", weight=3]; 1151 -> 728[label="",style="dashed", color="red", weight=0]; 1151[label="vwx371 == vwx381",fontsize=16,color="magenta"];1151 -> 1365[label="",style="dashed", color="magenta", weight=3]; 1151 -> 1366[label="",style="dashed", color="magenta", weight=3]; 1152 -> 729[label="",style="dashed", color="red", weight=0]; 1152[label="vwx371 == vwx381",fontsize=16,color="magenta"];1152 -> 1367[label="",style="dashed", color="magenta", weight=3]; 1152 -> 1368[label="",style="dashed", color="magenta", weight=3]; 1153 -> 730[label="",style="dashed", color="red", weight=0]; 1153[label="vwx371 == vwx381",fontsize=16,color="magenta"];1153 -> 1369[label="",style="dashed", color="magenta", weight=3]; 1153 -> 1370[label="",style="dashed", color="magenta", weight=3]; 1154 -> 731[label="",style="dashed", color="red", weight=0]; 1154[label="vwx371 == vwx381",fontsize=16,color="magenta"];1154 -> 1371[label="",style="dashed", color="magenta", weight=3]; 1154 -> 1372[label="",style="dashed", color="magenta", weight=3]; 1155 -> 732[label="",style="dashed", color="red", weight=0]; 1155[label="vwx371 == vwx381",fontsize=16,color="magenta"];1155 -> 1373[label="",style="dashed", color="magenta", weight=3]; 1155 -> 1374[label="",style="dashed", color="magenta", weight=3]; 1156 -> 733[label="",style="dashed", color="red", weight=0]; 1156[label="vwx371 == vwx381",fontsize=16,color="magenta"];1156 -> 1375[label="",style="dashed", color="magenta", weight=3]; 1156 -> 1376[label="",style="dashed", color="magenta", weight=3]; 1157 -> 734[label="",style="dashed", color="red", weight=0]; 1157[label="vwx371 == vwx381",fontsize=16,color="magenta"];1157 -> 1377[label="",style="dashed", color="magenta", weight=3]; 1157 -> 1378[label="",style="dashed", color="magenta", weight=3]; 1158 -> 735[label="",style="dashed", color="red", weight=0]; 1158[label="vwx371 == vwx381",fontsize=16,color="magenta"];1158 -> 1379[label="",style="dashed", color="magenta", weight=3]; 1158 -> 1380[label="",style="dashed", color="magenta", weight=3]; 1159 -> 736[label="",style="dashed", color="red", weight=0]; 1159[label="vwx371 == vwx381",fontsize=16,color="magenta"];1159 -> 1381[label="",style="dashed", color="magenta", weight=3]; 1159 -> 1382[label="",style="dashed", color="magenta", weight=3]; 1160 -> 737[label="",style="dashed", color="red", weight=0]; 1160[label="vwx371 == vwx381",fontsize=16,color="magenta"];1160 -> 1383[label="",style="dashed", color="magenta", weight=3]; 1160 -> 1384[label="",style="dashed", color="magenta", weight=3]; 1161 -> 738[label="",style="dashed", color="red", weight=0]; 1161[label="vwx371 == vwx381",fontsize=16,color="magenta"];1161 -> 1385[label="",style="dashed", color="magenta", weight=3]; 1161 -> 1386[label="",style="dashed", color="magenta", weight=3]; 1162 -> 739[label="",style="dashed", color="red", weight=0]; 1162[label="vwx371 == vwx381",fontsize=16,color="magenta"];1162 -> 1387[label="",style="dashed", color="magenta", weight=3]; 1162 -> 1388[label="",style="dashed", color="magenta", weight=3]; 1163 -> 740[label="",style="dashed", color="red", weight=0]; 1163[label="vwx371 == vwx381",fontsize=16,color="magenta"];1163 -> 1389[label="",style="dashed", color="magenta", weight=3]; 1163 -> 1390[label="",style="dashed", color="magenta", weight=3]; 1164 -> 741[label="",style="dashed", color="red", weight=0]; 1164[label="vwx371 == vwx381",fontsize=16,color="magenta"];1164 -> 1391[label="",style="dashed", color="magenta", weight=3]; 1164 -> 1392[label="",style="dashed", color="magenta", weight=3]; 1165[label="vwx380",fontsize=16,color="green",shape="box"];1166[label="vwx370",fontsize=16,color="green",shape="box"];1167[label="vwx380",fontsize=16,color="green",shape="box"];1168[label="vwx370",fontsize=16,color="green",shape="box"];1169[label="vwx380",fontsize=16,color="green",shape="box"];1170[label="vwx370",fontsize=16,color="green",shape="box"];1171[label="vwx380",fontsize=16,color="green",shape="box"];1172[label="vwx370",fontsize=16,color="green",shape="box"];1173[label="vwx380",fontsize=16,color="green",shape="box"];1174[label="vwx370",fontsize=16,color="green",shape="box"];1175[label="vwx380",fontsize=16,color="green",shape="box"];1176[label="vwx370",fontsize=16,color="green",shape="box"];1177[label="vwx380",fontsize=16,color="green",shape="box"];1178[label="vwx370",fontsize=16,color="green",shape="box"];1179[label="vwx380",fontsize=16,color="green",shape="box"];1180[label="vwx370",fontsize=16,color="green",shape="box"];1181[label="vwx380",fontsize=16,color="green",shape="box"];1182[label="vwx370",fontsize=16,color="green",shape="box"];1183[label="vwx380",fontsize=16,color="green",shape="box"];1184[label="vwx370",fontsize=16,color="green",shape="box"];1185[label="vwx380",fontsize=16,color="green",shape="box"];1186[label="vwx370",fontsize=16,color="green",shape="box"];1187[label="vwx380",fontsize=16,color="green",shape="box"];1188[label="vwx370",fontsize=16,color="green",shape="box"];1189[label="vwx380",fontsize=16,color="green",shape="box"];1190[label="vwx370",fontsize=16,color="green",shape="box"];1191[label="vwx380",fontsize=16,color="green",shape="box"];1192[label="vwx370",fontsize=16,color="green",shape="box"];1193 -> 734[label="",style="dashed", color="red", weight=0]; 1193[label="vwx370 == vwx380",fontsize=16,color="magenta"];1193 -> 1393[label="",style="dashed", color="magenta", weight=3]; 1193 -> 1394[label="",style="dashed", color="magenta", weight=3]; 1194 -> 737[label="",style="dashed", color="red", weight=0]; 1194[label="vwx370 == vwx380",fontsize=16,color="magenta"];1194 -> 1395[label="",style="dashed", color="magenta", weight=3]; 1194 -> 1396[label="",style="dashed", color="magenta", weight=3]; 1195 -> 734[label="",style="dashed", color="red", weight=0]; 1195[label="vwx371 == vwx381",fontsize=16,color="magenta"];1195 -> 1397[label="",style="dashed", color="magenta", weight=3]; 1195 -> 1398[label="",style="dashed", color="magenta", weight=3]; 1196 -> 737[label="",style="dashed", color="red", weight=0]; 1196[label="vwx371 == vwx381",fontsize=16,color="magenta"];1196 -> 1399[label="",style="dashed", color="magenta", weight=3]; 1196 -> 1400[label="",style="dashed", color="magenta", weight=3]; 1197 -> 728[label="",style="dashed", color="red", weight=0]; 1197[label="vwx370 == vwx380",fontsize=16,color="magenta"];1197 -> 1401[label="",style="dashed", color="magenta", weight=3]; 1197 -> 1402[label="",style="dashed", color="magenta", weight=3]; 1198 -> 729[label="",style="dashed", color="red", weight=0]; 1198[label="vwx370 == vwx380",fontsize=16,color="magenta"];1198 -> 1403[label="",style="dashed", color="magenta", weight=3]; 1198 -> 1404[label="",style="dashed", color="magenta", weight=3]; 1199 -> 730[label="",style="dashed", color="red", weight=0]; 1199[label="vwx370 == vwx380",fontsize=16,color="magenta"];1199 -> 1405[label="",style="dashed", color="magenta", weight=3]; 1199 -> 1406[label="",style="dashed", color="magenta", weight=3]; 1200 -> 731[label="",style="dashed", color="red", weight=0]; 1200[label="vwx370 == vwx380",fontsize=16,color="magenta"];1200 -> 1407[label="",style="dashed", color="magenta", weight=3]; 1200 -> 1408[label="",style="dashed", color="magenta", weight=3]; 1201 -> 732[label="",style="dashed", color="red", weight=0]; 1201[label="vwx370 == vwx380",fontsize=16,color="magenta"];1201 -> 1409[label="",style="dashed", color="magenta", weight=3]; 1201 -> 1410[label="",style="dashed", color="magenta", weight=3]; 1202 -> 733[label="",style="dashed", color="red", weight=0]; 1202[label="vwx370 == vwx380",fontsize=16,color="magenta"];1202 -> 1411[label="",style="dashed", color="magenta", weight=3]; 1202 -> 1412[label="",style="dashed", color="magenta", weight=3]; 1203 -> 734[label="",style="dashed", color="red", weight=0]; 1203[label="vwx370 == vwx380",fontsize=16,color="magenta"];1203 -> 1413[label="",style="dashed", color="magenta", weight=3]; 1203 -> 1414[label="",style="dashed", color="magenta", weight=3]; 1204 -> 735[label="",style="dashed", color="red", weight=0]; 1204[label="vwx370 == vwx380",fontsize=16,color="magenta"];1204 -> 1415[label="",style="dashed", color="magenta", weight=3]; 1204 -> 1416[label="",style="dashed", color="magenta", weight=3]; 1205 -> 736[label="",style="dashed", color="red", weight=0]; 1205[label="vwx370 == vwx380",fontsize=16,color="magenta"];1205 -> 1417[label="",style="dashed", color="magenta", weight=3]; 1205 -> 1418[label="",style="dashed", color="magenta", weight=3]; 1206 -> 737[label="",style="dashed", color="red", weight=0]; 1206[label="vwx370 == vwx380",fontsize=16,color="magenta"];1206 -> 1419[label="",style="dashed", color="magenta", weight=3]; 1206 -> 1420[label="",style="dashed", color="magenta", weight=3]; 1207 -> 738[label="",style="dashed", color="red", weight=0]; 1207[label="vwx370 == vwx380",fontsize=16,color="magenta"];1207 -> 1421[label="",style="dashed", color="magenta", weight=3]; 1207 -> 1422[label="",style="dashed", color="magenta", weight=3]; 1208 -> 739[label="",style="dashed", color="red", weight=0]; 1208[label="vwx370 == vwx380",fontsize=16,color="magenta"];1208 -> 1423[label="",style="dashed", color="magenta", weight=3]; 1208 -> 1424[label="",style="dashed", color="magenta", weight=3]; 1209 -> 740[label="",style="dashed", color="red", weight=0]; 1209[label="vwx370 == vwx380",fontsize=16,color="magenta"];1209 -> 1425[label="",style="dashed", color="magenta", weight=3]; 1209 -> 1426[label="",style="dashed", color="magenta", weight=3]; 1210 -> 741[label="",style="dashed", color="red", weight=0]; 1210[label="vwx370 == vwx380",fontsize=16,color="magenta"];1210 -> 1427[label="",style="dashed", color="magenta", weight=3]; 1210 -> 1428[label="",style="dashed", color="magenta", weight=3]; 1211[label="vwx381",fontsize=16,color="green",shape="box"];1212[label="vwx371",fontsize=16,color="green",shape="box"];1213[label="primEqInt (Pos (Succ vwx3700)) (Pos (Succ vwx3800))",fontsize=16,color="black",shape="box"];1213 -> 1429[label="",style="solid", color="black", weight=3]; 1214[label="primEqInt (Pos (Succ vwx3700)) (Pos Zero)",fontsize=16,color="black",shape="box"];1214 -> 1430[label="",style="solid", color="black", weight=3]; 1215[label="False",fontsize=16,color="green",shape="box"];1216[label="primEqInt (Pos Zero) (Pos (Succ vwx3800))",fontsize=16,color="black",shape="box"];1216 -> 1431[label="",style="solid", color="black", weight=3]; 1217[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1217 -> 1432[label="",style="solid", color="black", weight=3]; 1218[label="primEqInt (Pos Zero) (Neg (Succ vwx3800))",fontsize=16,color="black",shape="box"];1218 -> 1433[label="",style="solid", color="black", weight=3]; 1219[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1219 -> 1434[label="",style="solid", color="black", weight=3]; 1220[label="False",fontsize=16,color="green",shape="box"];1221[label="primEqInt (Neg (Succ vwx3700)) (Neg (Succ vwx3800))",fontsize=16,color="black",shape="box"];1221 -> 1435[label="",style="solid", color="black", weight=3]; 1222[label="primEqInt (Neg (Succ vwx3700)) (Neg Zero)",fontsize=16,color="black",shape="box"];1222 -> 1436[label="",style="solid", color="black", weight=3]; 1223[label="primEqInt (Neg Zero) (Pos (Succ vwx3800))",fontsize=16,color="black",shape="box"];1223 -> 1437[label="",style="solid", color="black", weight=3]; 1224[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1224 -> 1438[label="",style="solid", color="black", weight=3]; 1225[label="primEqInt (Neg Zero) (Neg (Succ vwx3800))",fontsize=16,color="black",shape="box"];1225 -> 1439[label="",style="solid", color="black", weight=3]; 1226[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1226 -> 1440[label="",style="solid", color="black", weight=3]; 1227[label="primEqNat (Succ vwx3700) vwx380",fontsize=16,color="burlywood",shape="box"];2128[label="vwx380/Succ vwx3800",fontsize=10,color="white",style="solid",shape="box"];1227 -> 2128[label="",style="solid", color="burlywood", weight=9]; 2128 -> 1441[label="",style="solid", color="burlywood", weight=3]; 2129[label="vwx380/Zero",fontsize=10,color="white",style="solid",shape="box"];1227 -> 2129[label="",style="solid", color="burlywood", weight=9]; 2129 -> 1442[label="",style="solid", color="burlywood", weight=3]; 1228[label="primEqNat Zero vwx380",fontsize=16,color="burlywood",shape="box"];2130[label="vwx380/Succ vwx3800",fontsize=10,color="white",style="solid",shape="box"];1228 -> 2130[label="",style="solid", color="burlywood", weight=9]; 2130 -> 1443[label="",style="solid", color="burlywood", weight=3]; 2131[label="vwx380/Zero",fontsize=10,color="white",style="solid",shape="box"];1228 -> 2131[label="",style="solid", color="burlywood", weight=9]; 2131 -> 1444[label="",style="solid", color="burlywood", weight=3]; 1229 -> 683[label="",style="dashed", color="red", weight=0]; 1229[label="vwx371 * vwx380",fontsize=16,color="magenta"];1229 -> 1445[label="",style="dashed", color="magenta", weight=3]; 1229 -> 1446[label="",style="dashed", color="magenta", weight=3]; 1230 -> 683[label="",style="dashed", color="red", weight=0]; 1230[label="vwx370 * vwx381",fontsize=16,color="magenta"];1230 -> 1447[label="",style="dashed", color="magenta", weight=3]; 1230 -> 1448[label="",style="dashed", color="magenta", weight=3]; 1231 -> 728[label="",style="dashed", color="red", weight=0]; 1231[label="vwx370 == vwx380",fontsize=16,color="magenta"];1231 -> 1449[label="",style="dashed", color="magenta", weight=3]; 1231 -> 1450[label="",style="dashed", color="magenta", weight=3]; 1232 -> 729[label="",style="dashed", color="red", weight=0]; 1232[label="vwx370 == vwx380",fontsize=16,color="magenta"];1232 -> 1451[label="",style="dashed", color="magenta", weight=3]; 1232 -> 1452[label="",style="dashed", color="magenta", weight=3]; 1233 -> 730[label="",style="dashed", color="red", weight=0]; 1233[label="vwx370 == vwx380",fontsize=16,color="magenta"];1233 -> 1453[label="",style="dashed", color="magenta", weight=3]; 1233 -> 1454[label="",style="dashed", color="magenta", weight=3]; 1234 -> 731[label="",style="dashed", color="red", weight=0]; 1234[label="vwx370 == vwx380",fontsize=16,color="magenta"];1234 -> 1455[label="",style="dashed", color="magenta", weight=3]; 1234 -> 1456[label="",style="dashed", color="magenta", weight=3]; 1235 -> 732[label="",style="dashed", color="red", weight=0]; 1235[label="vwx370 == vwx380",fontsize=16,color="magenta"];1235 -> 1457[label="",style="dashed", color="magenta", weight=3]; 1235 -> 1458[label="",style="dashed", color="magenta", weight=3]; 1236 -> 733[label="",style="dashed", color="red", weight=0]; 1236[label="vwx370 == vwx380",fontsize=16,color="magenta"];1236 -> 1459[label="",style="dashed", color="magenta", weight=3]; 1236 -> 1460[label="",style="dashed", color="magenta", weight=3]; 1237 -> 734[label="",style="dashed", color="red", weight=0]; 1237[label="vwx370 == vwx380",fontsize=16,color="magenta"];1237 -> 1461[label="",style="dashed", color="magenta", weight=3]; 1237 -> 1462[label="",style="dashed", color="magenta", weight=3]; 1238 -> 735[label="",style="dashed", color="red", weight=0]; 1238[label="vwx370 == vwx380",fontsize=16,color="magenta"];1238 -> 1463[label="",style="dashed", color="magenta", weight=3]; 1238 -> 1464[label="",style="dashed", color="magenta", weight=3]; 1239 -> 736[label="",style="dashed", color="red", weight=0]; 1239[label="vwx370 == vwx380",fontsize=16,color="magenta"];1239 -> 1465[label="",style="dashed", color="magenta", weight=3]; 1239 -> 1466[label="",style="dashed", color="magenta", weight=3]; 1240 -> 737[label="",style="dashed", color="red", weight=0]; 1240[label="vwx370 == vwx380",fontsize=16,color="magenta"];1240 -> 1467[label="",style="dashed", color="magenta", weight=3]; 1240 -> 1468[label="",style="dashed", color="magenta", weight=3]; 1241 -> 738[label="",style="dashed", color="red", weight=0]; 1241[label="vwx370 == vwx380",fontsize=16,color="magenta"];1241 -> 1469[label="",style="dashed", color="magenta", weight=3]; 1241 -> 1470[label="",style="dashed", color="magenta", weight=3]; 1242 -> 739[label="",style="dashed", color="red", weight=0]; 1242[label="vwx370 == vwx380",fontsize=16,color="magenta"];1242 -> 1471[label="",style="dashed", color="magenta", weight=3]; 1242 -> 1472[label="",style="dashed", color="magenta", weight=3]; 1243 -> 740[label="",style="dashed", color="red", weight=0]; 1243[label="vwx370 == vwx380",fontsize=16,color="magenta"];1243 -> 1473[label="",style="dashed", color="magenta", weight=3]; 1243 -> 1474[label="",style="dashed", color="magenta", weight=3]; 1244 -> 741[label="",style="dashed", color="red", weight=0]; 1244[label="vwx370 == vwx380",fontsize=16,color="magenta"];1244 -> 1475[label="",style="dashed", color="magenta", weight=3]; 1244 -> 1476[label="",style="dashed", color="magenta", weight=3]; 1245[label="vwx371 == vwx381",fontsize=16,color="blue",shape="box"];2132[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1245 -> 2132[label="",style="solid", color="blue", weight=9]; 2132 -> 1477[label="",style="solid", color="blue", weight=3]; 2133[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1245 -> 2133[label="",style="solid", color="blue", weight=9]; 2133 -> 1478[label="",style="solid", color="blue", weight=3]; 2134[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1245 -> 2134[label="",style="solid", color="blue", weight=9]; 2134 -> 1479[label="",style="solid", color="blue", weight=3]; 2135[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1245 -> 2135[label="",style="solid", color="blue", weight=9]; 2135 -> 1480[label="",style="solid", color="blue", weight=3]; 2136[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1245 -> 2136[label="",style="solid", color="blue", weight=9]; 2136 -> 1481[label="",style="solid", color="blue", weight=3]; 2137[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1245 -> 2137[label="",style="solid", color="blue", weight=9]; 2137 -> 1482[label="",style="solid", color="blue", weight=3]; 2138[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1245 -> 2138[label="",style="solid", color="blue", weight=9]; 2138 -> 1483[label="",style="solid", color="blue", weight=3]; 2139[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1245 -> 2139[label="",style="solid", color="blue", weight=9]; 2139 -> 1484[label="",style="solid", color="blue", weight=3]; 2140[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1245 -> 2140[label="",style="solid", color="blue", weight=9]; 2140 -> 1485[label="",style="solid", color="blue", weight=3]; 2141[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1245 -> 2141[label="",style="solid", color="blue", weight=9]; 2141 -> 1486[label="",style="solid", color="blue", weight=3]; 2142[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1245 -> 2142[label="",style="solid", color="blue", weight=9]; 2142 -> 1487[label="",style="solid", color="blue", weight=3]; 2143[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1245 -> 2143[label="",style="solid", color="blue", weight=9]; 2143 -> 1488[label="",style="solid", color="blue", weight=3]; 2144[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1245 -> 2144[label="",style="solid", color="blue", weight=9]; 2144 -> 1489[label="",style="solid", color="blue", weight=3]; 2145[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1245 -> 2145[label="",style="solid", color="blue", weight=9]; 2145 -> 1490[label="",style="solid", color="blue", weight=3]; 1246[label="vwx372 == vwx382",fontsize=16,color="blue",shape="box"];2146[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1246 -> 2146[label="",style="solid", color="blue", weight=9]; 2146 -> 1491[label="",style="solid", color="blue", weight=3]; 2147[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1246 -> 2147[label="",style="solid", color="blue", weight=9]; 2147 -> 1492[label="",style="solid", color="blue", weight=3]; 2148[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1246 -> 2148[label="",style="solid", color="blue", weight=9]; 2148 -> 1493[label="",style="solid", color="blue", weight=3]; 2149[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1246 -> 2149[label="",style="solid", color="blue", weight=9]; 2149 -> 1494[label="",style="solid", color="blue", weight=3]; 2150[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1246 -> 2150[label="",style="solid", color="blue", weight=9]; 2150 -> 1495[label="",style="solid", color="blue", weight=3]; 2151[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1246 -> 2151[label="",style="solid", color="blue", weight=9]; 2151 -> 1496[label="",style="solid", color="blue", weight=3]; 2152[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1246 -> 2152[label="",style="solid", color="blue", weight=9]; 2152 -> 1497[label="",style="solid", color="blue", weight=3]; 2153[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1246 -> 2153[label="",style="solid", color="blue", weight=9]; 2153 -> 1498[label="",style="solid", color="blue", weight=3]; 2154[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1246 -> 2154[label="",style="solid", color="blue", weight=9]; 2154 -> 1499[label="",style="solid", color="blue", weight=3]; 2155[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1246 -> 2155[label="",style="solid", color="blue", weight=9]; 2155 -> 1500[label="",style="solid", color="blue", weight=3]; 2156[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1246 -> 2156[label="",style="solid", color="blue", weight=9]; 2156 -> 1501[label="",style="solid", color="blue", weight=3]; 2157[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1246 -> 2157[label="",style="solid", color="blue", weight=9]; 2157 -> 1502[label="",style="solid", color="blue", weight=3]; 2158[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1246 -> 2158[label="",style="solid", color="blue", weight=9]; 2158 -> 1503[label="",style="solid", color="blue", weight=3]; 2159[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1246 -> 2159[label="",style="solid", color="blue", weight=9]; 2159 -> 1504[label="",style="solid", color="blue", weight=3]; 1247[label="vwx380",fontsize=16,color="green",shape="box"];1248[label="vwx370",fontsize=16,color="green",shape="box"];1249[label="vwx380",fontsize=16,color="green",shape="box"];1250[label="vwx370",fontsize=16,color="green",shape="box"];1251[label="vwx380",fontsize=16,color="green",shape="box"];1252[label="vwx370",fontsize=16,color="green",shape="box"];1253[label="vwx380",fontsize=16,color="green",shape="box"];1254[label="vwx370",fontsize=16,color="green",shape="box"];1255[label="vwx380",fontsize=16,color="green",shape="box"];1256[label="vwx370",fontsize=16,color="green",shape="box"];1257[label="vwx380",fontsize=16,color="green",shape="box"];1258[label="vwx370",fontsize=16,color="green",shape="box"];1259[label="vwx380",fontsize=16,color="green",shape="box"];1260[label="vwx370",fontsize=16,color="green",shape="box"];1261[label="vwx380",fontsize=16,color="green",shape="box"];1262[label="vwx370",fontsize=16,color="green",shape="box"];1263[label="vwx380",fontsize=16,color="green",shape="box"];1264[label="vwx370",fontsize=16,color="green",shape="box"];1265[label="vwx380",fontsize=16,color="green",shape="box"];1266[label="vwx370",fontsize=16,color="green",shape="box"];1267[label="vwx380",fontsize=16,color="green",shape="box"];1268[label="vwx370",fontsize=16,color="green",shape="box"];1269[label="vwx380",fontsize=16,color="green",shape="box"];1270[label="vwx370",fontsize=16,color="green",shape="box"];1271[label="vwx380",fontsize=16,color="green",shape="box"];1272[label="vwx370",fontsize=16,color="green",shape="box"];1273[label="vwx380",fontsize=16,color="green",shape="box"];1274[label="vwx370",fontsize=16,color="green",shape="box"];1275[label="vwx380",fontsize=16,color="green",shape="box"];1276[label="vwx370",fontsize=16,color="green",shape="box"];1277[label="vwx380",fontsize=16,color="green",shape="box"];1278[label="vwx370",fontsize=16,color="green",shape="box"];1279[label="vwx380",fontsize=16,color="green",shape="box"];1280[label="vwx370",fontsize=16,color="green",shape="box"];1281[label="vwx380",fontsize=16,color="green",shape="box"];1282[label="vwx370",fontsize=16,color="green",shape="box"];1283[label="vwx380",fontsize=16,color="green",shape="box"];1284[label="vwx370",fontsize=16,color="green",shape="box"];1285[label="vwx380",fontsize=16,color="green",shape="box"];1286[label="vwx370",fontsize=16,color="green",shape="box"];1287[label="vwx380",fontsize=16,color="green",shape="box"];1288[label="vwx370",fontsize=16,color="green",shape="box"];1289[label="vwx380",fontsize=16,color="green",shape="box"];1290[label="vwx370",fontsize=16,color="green",shape="box"];1291[label="vwx380",fontsize=16,color="green",shape="box"];1292[label="vwx370",fontsize=16,color="green",shape="box"];1293[label="vwx380",fontsize=16,color="green",shape="box"];1294[label="vwx370",fontsize=16,color="green",shape="box"];1295[label="vwx380",fontsize=16,color="green",shape="box"];1296[label="vwx370",fontsize=16,color="green",shape="box"];1297[label="vwx380",fontsize=16,color="green",shape="box"];1298[label="vwx370",fontsize=16,color="green",shape="box"];1299[label="vwx380",fontsize=16,color="green",shape="box"];1300[label="vwx370",fontsize=16,color="green",shape="box"];1301[label="vwx380",fontsize=16,color="green",shape="box"];1302[label="vwx370",fontsize=16,color="green",shape="box"];1303[label="primMulNat (Succ vwx30000) vwx4010",fontsize=16,color="burlywood",shape="box"];2160[label="vwx4010/Succ vwx40100",fontsize=10,color="white",style="solid",shape="box"];1303 -> 2160[label="",style="solid", color="burlywood", weight=9]; 2160 -> 1505[label="",style="solid", color="burlywood", weight=3]; 2161[label="vwx4010/Zero",fontsize=10,color="white",style="solid",shape="box"];1303 -> 2161[label="",style="solid", color="burlywood", weight=9]; 2161 -> 1506[label="",style="solid", color="burlywood", weight=3]; 1304[label="primMulNat Zero vwx4010",fontsize=16,color="burlywood",shape="box"];2162[label="vwx4010/Succ vwx40100",fontsize=10,color="white",style="solid",shape="box"];1304 -> 2162[label="",style="solid", color="burlywood", weight=9]; 2162 -> 1507[label="",style="solid", color="burlywood", weight=3]; 2163[label="vwx4010/Zero",fontsize=10,color="white",style="solid",shape="box"];1304 -> 2163[label="",style="solid", color="burlywood", weight=9]; 2163 -> 1508[label="",style="solid", color="burlywood", weight=3]; 1305[label="vwx4010",fontsize=16,color="green",shape="box"];1306[label="vwx3000",fontsize=16,color="green",shape="box"];1307[label="vwx4010",fontsize=16,color="green",shape="box"];1308[label="vwx3000",fontsize=16,color="green",shape="box"];1309[label="vwx300",fontsize=16,color="green",shape="box"];1310[label="vwx400",fontsize=16,color="green",shape="box"];1311[label="compare1 vwx300 vwx400 False",fontsize=16,color="black",shape="box"];1311 -> 1509[label="",style="solid", color="black", weight=3]; 1312[label="compare1 vwx300 vwx400 True",fontsize=16,color="black",shape="box"];1312 -> 1510[label="",style="solid", color="black", weight=3]; 1313[label="vwx300",fontsize=16,color="green",shape="box"];1314[label="vwx400",fontsize=16,color="green",shape="box"];1315[label="compare1 vwx300 vwx400 False",fontsize=16,color="black",shape="box"];1315 -> 1511[label="",style="solid", color="black", weight=3]; 1316[label="compare1 vwx300 vwx400 True",fontsize=16,color="black",shape="box"];1316 -> 1512[label="",style="solid", color="black", weight=3]; 1317[label="vwx300",fontsize=16,color="green",shape="box"];1318[label="vwx400",fontsize=16,color="green",shape="box"];1319[label="compare1 vwx300 vwx400 False",fontsize=16,color="black",shape="box"];1319 -> 1513[label="",style="solid", color="black", weight=3]; 1320[label="compare1 vwx300 vwx400 True",fontsize=16,color="black",shape="box"];1320 -> 1514[label="",style="solid", color="black", weight=3]; 1321[label="vwx300",fontsize=16,color="green",shape="box"];1322[label="vwx400",fontsize=16,color="green",shape="box"];1323[label="compare1 vwx300 vwx400 False",fontsize=16,color="black",shape="box"];1323 -> 1515[label="",style="solid", color="black", weight=3]; 1324[label="compare1 vwx300 vwx400 True",fontsize=16,color="black",shape="box"];1324 -> 1516[label="",style="solid", color="black", weight=3]; 1325[label="vwx300",fontsize=16,color="green",shape="box"];1326[label="vwx400",fontsize=16,color="green",shape="box"];1327[label="compare1 vwx300 vwx400 False",fontsize=16,color="black",shape="box"];1327 -> 1517[label="",style="solid", color="black", weight=3]; 1328[label="compare1 vwx300 vwx400 True",fontsize=16,color="black",shape="box"];1328 -> 1518[label="",style="solid", color="black", weight=3]; 1329[label="vwx300",fontsize=16,color="green",shape="box"];1330[label="vwx400",fontsize=16,color="green",shape="box"];1331[label="compare1 vwx300 vwx400 False",fontsize=16,color="black",shape="box"];1331 -> 1519[label="",style="solid", color="black", weight=3]; 1332[label="compare1 vwx300 vwx400 True",fontsize=16,color="black",shape="box"];1332 -> 1520[label="",style="solid", color="black", weight=3]; 1333[label="vwx380",fontsize=16,color="green",shape="box"];1334[label="vwx371",fontsize=16,color="green",shape="box"];1335[label="vwx381",fontsize=16,color="green",shape="box"];1336[label="vwx370",fontsize=16,color="green",shape="box"];1337[label="vwx380",fontsize=16,color="green",shape="box"];1338[label="vwx370",fontsize=16,color="green",shape="box"];1339[label="vwx380",fontsize=16,color="green",shape="box"];1340[label="vwx370",fontsize=16,color="green",shape="box"];1341[label="vwx380",fontsize=16,color="green",shape="box"];1342[label="vwx370",fontsize=16,color="green",shape="box"];1343[label="vwx380",fontsize=16,color="green",shape="box"];1344[label="vwx370",fontsize=16,color="green",shape="box"];1345[label="vwx380",fontsize=16,color="green",shape="box"];1346[label="vwx370",fontsize=16,color="green",shape="box"];1347[label="vwx380",fontsize=16,color="green",shape="box"];1348[label="vwx370",fontsize=16,color="green",shape="box"];1349[label="vwx380",fontsize=16,color="green",shape="box"];1350[label="vwx370",fontsize=16,color="green",shape="box"];1351[label="vwx380",fontsize=16,color="green",shape="box"];1352[label="vwx370",fontsize=16,color="green",shape="box"];1353[label="vwx380",fontsize=16,color="green",shape="box"];1354[label="vwx370",fontsize=16,color="green",shape="box"];1355[label="vwx380",fontsize=16,color="green",shape="box"];1356[label="vwx370",fontsize=16,color="green",shape="box"];1357[label="vwx380",fontsize=16,color="green",shape="box"];1358[label="vwx370",fontsize=16,color="green",shape="box"];1359[label="vwx380",fontsize=16,color="green",shape="box"];1360[label="vwx370",fontsize=16,color="green",shape="box"];1361[label="vwx380",fontsize=16,color="green",shape="box"];1362[label="vwx370",fontsize=16,color="green",shape="box"];1363[label="vwx380",fontsize=16,color="green",shape="box"];1364[label="vwx370",fontsize=16,color="green",shape="box"];1365[label="vwx381",fontsize=16,color="green",shape="box"];1366[label="vwx371",fontsize=16,color="green",shape="box"];1367[label="vwx381",fontsize=16,color="green",shape="box"];1368[label="vwx371",fontsize=16,color="green",shape="box"];1369[label="vwx381",fontsize=16,color="green",shape="box"];1370[label="vwx371",fontsize=16,color="green",shape="box"];1371[label="vwx381",fontsize=16,color="green",shape="box"];1372[label="vwx371",fontsize=16,color="green",shape="box"];1373[label="vwx381",fontsize=16,color="green",shape="box"];1374[label="vwx371",fontsize=16,color="green",shape="box"];1375[label="vwx381",fontsize=16,color="green",shape="box"];1376[label="vwx371",fontsize=16,color="green",shape="box"];1377[label="vwx381",fontsize=16,color="green",shape="box"];1378[label="vwx371",fontsize=16,color="green",shape="box"];1379[label="vwx381",fontsize=16,color="green",shape="box"];1380[label="vwx371",fontsize=16,color="green",shape="box"];1381[label="vwx381",fontsize=16,color="green",shape="box"];1382[label="vwx371",fontsize=16,color="green",shape="box"];1383[label="vwx381",fontsize=16,color="green",shape="box"];1384[label="vwx371",fontsize=16,color="green",shape="box"];1385[label="vwx381",fontsize=16,color="green",shape="box"];1386[label="vwx371",fontsize=16,color="green",shape="box"];1387[label="vwx381",fontsize=16,color="green",shape="box"];1388[label="vwx371",fontsize=16,color="green",shape="box"];1389[label="vwx381",fontsize=16,color="green",shape="box"];1390[label="vwx371",fontsize=16,color="green",shape="box"];1391[label="vwx381",fontsize=16,color="green",shape="box"];1392[label="vwx371",fontsize=16,color="green",shape="box"];1393[label="vwx380",fontsize=16,color="green",shape="box"];1394[label="vwx370",fontsize=16,color="green",shape="box"];1395[label="vwx380",fontsize=16,color="green",shape="box"];1396[label="vwx370",fontsize=16,color="green",shape="box"];1397[label="vwx381",fontsize=16,color="green",shape="box"];1398[label="vwx371",fontsize=16,color="green",shape="box"];1399[label="vwx381",fontsize=16,color="green",shape="box"];1400[label="vwx371",fontsize=16,color="green",shape="box"];1401[label="vwx380",fontsize=16,color="green",shape="box"];1402[label="vwx370",fontsize=16,color="green",shape="box"];1403[label="vwx380",fontsize=16,color="green",shape="box"];1404[label="vwx370",fontsize=16,color="green",shape="box"];1405[label="vwx380",fontsize=16,color="green",shape="box"];1406[label="vwx370",fontsize=16,color="green",shape="box"];1407[label="vwx380",fontsize=16,color="green",shape="box"];1408[label="vwx370",fontsize=16,color="green",shape="box"];1409[label="vwx380",fontsize=16,color="green",shape="box"];1410[label="vwx370",fontsize=16,color="green",shape="box"];1411[label="vwx380",fontsize=16,color="green",shape="box"];1412[label="vwx370",fontsize=16,color="green",shape="box"];1413[label="vwx380",fontsize=16,color="green",shape="box"];1414[label="vwx370",fontsize=16,color="green",shape="box"];1415[label="vwx380",fontsize=16,color="green",shape="box"];1416[label="vwx370",fontsize=16,color="green",shape="box"];1417[label="vwx380",fontsize=16,color="green",shape="box"];1418[label="vwx370",fontsize=16,color="green",shape="box"];1419[label="vwx380",fontsize=16,color="green",shape="box"];1420[label="vwx370",fontsize=16,color="green",shape="box"];1421[label="vwx380",fontsize=16,color="green",shape="box"];1422[label="vwx370",fontsize=16,color="green",shape="box"];1423[label="vwx380",fontsize=16,color="green",shape="box"];1424[label="vwx370",fontsize=16,color="green",shape="box"];1425[label="vwx380",fontsize=16,color="green",shape="box"];1426[label="vwx370",fontsize=16,color="green",shape="box"];1427[label="vwx380",fontsize=16,color="green",shape="box"];1428[label="vwx370",fontsize=16,color="green",shape="box"];1429 -> 1083[label="",style="dashed", color="red", weight=0]; 1429[label="primEqNat vwx3700 vwx3800",fontsize=16,color="magenta"];1429 -> 1521[label="",style="dashed", color="magenta", weight=3]; 1429 -> 1522[label="",style="dashed", color="magenta", weight=3]; 1430[label="False",fontsize=16,color="green",shape="box"];1431[label="False",fontsize=16,color="green",shape="box"];1432[label="True",fontsize=16,color="green",shape="box"];1433[label="False",fontsize=16,color="green",shape="box"];1434[label="True",fontsize=16,color="green",shape="box"];1435 -> 1083[label="",style="dashed", color="red", weight=0]; 1435[label="primEqNat vwx3700 vwx3800",fontsize=16,color="magenta"];1435 -> 1523[label="",style="dashed", color="magenta", weight=3]; 1435 -> 1524[label="",style="dashed", color="magenta", weight=3]; 1436[label="False",fontsize=16,color="green",shape="box"];1437[label="False",fontsize=16,color="green",shape="box"];1438[label="True",fontsize=16,color="green",shape="box"];1439[label="False",fontsize=16,color="green",shape="box"];1440[label="True",fontsize=16,color="green",shape="box"];1441[label="primEqNat (Succ vwx3700) (Succ vwx3800)",fontsize=16,color="black",shape="box"];1441 -> 1525[label="",style="solid", color="black", weight=3]; 1442[label="primEqNat (Succ vwx3700) Zero",fontsize=16,color="black",shape="box"];1442 -> 1526[label="",style="solid", color="black", weight=3]; 1443[label="primEqNat Zero (Succ vwx3800)",fontsize=16,color="black",shape="box"];1443 -> 1527[label="",style="solid", color="black", weight=3]; 1444[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];1444 -> 1528[label="",style="solid", color="black", weight=3]; 1445[label="vwx380",fontsize=16,color="green",shape="box"];1446[label="vwx371",fontsize=16,color="green",shape="box"];1447[label="vwx381",fontsize=16,color="green",shape="box"];1448[label="vwx370",fontsize=16,color="green",shape="box"];1449[label="vwx380",fontsize=16,color="green",shape="box"];1450[label="vwx370",fontsize=16,color="green",shape="box"];1451[label="vwx380",fontsize=16,color="green",shape="box"];1452[label="vwx370",fontsize=16,color="green",shape="box"];1453[label="vwx380",fontsize=16,color="green",shape="box"];1454[label="vwx370",fontsize=16,color="green",shape="box"];1455[label="vwx380",fontsize=16,color="green",shape="box"];1456[label="vwx370",fontsize=16,color="green",shape="box"];1457[label="vwx380",fontsize=16,color="green",shape="box"];1458[label="vwx370",fontsize=16,color="green",shape="box"];1459[label="vwx380",fontsize=16,color="green",shape="box"];1460[label="vwx370",fontsize=16,color="green",shape="box"];1461[label="vwx380",fontsize=16,color="green",shape="box"];1462[label="vwx370",fontsize=16,color="green",shape="box"];1463[label="vwx380",fontsize=16,color="green",shape="box"];1464[label="vwx370",fontsize=16,color="green",shape="box"];1465[label="vwx380",fontsize=16,color="green",shape="box"];1466[label="vwx370",fontsize=16,color="green",shape="box"];1467[label="vwx380",fontsize=16,color="green",shape="box"];1468[label="vwx370",fontsize=16,color="green",shape="box"];1469[label="vwx380",fontsize=16,color="green",shape="box"];1470[label="vwx370",fontsize=16,color="green",shape="box"];1471[label="vwx380",fontsize=16,color="green",shape="box"];1472[label="vwx370",fontsize=16,color="green",shape="box"];1473[label="vwx380",fontsize=16,color="green",shape="box"];1474[label="vwx370",fontsize=16,color="green",shape="box"];1475[label="vwx380",fontsize=16,color="green",shape="box"];1476[label="vwx370",fontsize=16,color="green",shape="box"];1477 -> 728[label="",style="dashed", color="red", weight=0]; 1477[label="vwx371 == vwx381",fontsize=16,color="magenta"];1477 -> 1529[label="",style="dashed", color="magenta", weight=3]; 1477 -> 1530[label="",style="dashed", color="magenta", weight=3]; 1478 -> 729[label="",style="dashed", color="red", weight=0]; 1478[label="vwx371 == vwx381",fontsize=16,color="magenta"];1478 -> 1531[label="",style="dashed", color="magenta", weight=3]; 1478 -> 1532[label="",style="dashed", color="magenta", weight=3]; 1479 -> 730[label="",style="dashed", color="red", weight=0]; 1479[label="vwx371 == vwx381",fontsize=16,color="magenta"];1479 -> 1533[label="",style="dashed", color="magenta", weight=3]; 1479 -> 1534[label="",style="dashed", color="magenta", weight=3]; 1480 -> 731[label="",style="dashed", color="red", weight=0]; 1480[label="vwx371 == vwx381",fontsize=16,color="magenta"];1480 -> 1535[label="",style="dashed", color="magenta", weight=3]; 1480 -> 1536[label="",style="dashed", color="magenta", weight=3]; 1481 -> 732[label="",style="dashed", color="red", weight=0]; 1481[label="vwx371 == vwx381",fontsize=16,color="magenta"];1481 -> 1537[label="",style="dashed", color="magenta", weight=3]; 1481 -> 1538[label="",style="dashed", color="magenta", weight=3]; 1482 -> 733[label="",style="dashed", color="red", weight=0]; 1482[label="vwx371 == vwx381",fontsize=16,color="magenta"];1482 -> 1539[label="",style="dashed", color="magenta", weight=3]; 1482 -> 1540[label="",style="dashed", color="magenta", weight=3]; 1483 -> 734[label="",style="dashed", color="red", weight=0]; 1483[label="vwx371 == vwx381",fontsize=16,color="magenta"];1483 -> 1541[label="",style="dashed", color="magenta", weight=3]; 1483 -> 1542[label="",style="dashed", color="magenta", weight=3]; 1484 -> 735[label="",style="dashed", color="red", weight=0]; 1484[label="vwx371 == vwx381",fontsize=16,color="magenta"];1484 -> 1543[label="",style="dashed", color="magenta", weight=3]; 1484 -> 1544[label="",style="dashed", color="magenta", weight=3]; 1485 -> 736[label="",style="dashed", color="red", weight=0]; 1485[label="vwx371 == vwx381",fontsize=16,color="magenta"];1485 -> 1545[label="",style="dashed", color="magenta", weight=3]; 1485 -> 1546[label="",style="dashed", color="magenta", weight=3]; 1486 -> 737[label="",style="dashed", color="red", weight=0]; 1486[label="vwx371 == vwx381",fontsize=16,color="magenta"];1486 -> 1547[label="",style="dashed", color="magenta", weight=3]; 1486 -> 1548[label="",style="dashed", color="magenta", weight=3]; 1487 -> 738[label="",style="dashed", color="red", weight=0]; 1487[label="vwx371 == vwx381",fontsize=16,color="magenta"];1487 -> 1549[label="",style="dashed", color="magenta", weight=3]; 1487 -> 1550[label="",style="dashed", color="magenta", weight=3]; 1488 -> 739[label="",style="dashed", color="red", weight=0]; 1488[label="vwx371 == vwx381",fontsize=16,color="magenta"];1488 -> 1551[label="",style="dashed", color="magenta", weight=3]; 1488 -> 1552[label="",style="dashed", color="magenta", weight=3]; 1489 -> 740[label="",style="dashed", color="red", weight=0]; 1489[label="vwx371 == vwx381",fontsize=16,color="magenta"];1489 -> 1553[label="",style="dashed", color="magenta", weight=3]; 1489 -> 1554[label="",style="dashed", color="magenta", weight=3]; 1490 -> 741[label="",style="dashed", color="red", weight=0]; 1490[label="vwx371 == vwx381",fontsize=16,color="magenta"];1490 -> 1555[label="",style="dashed", color="magenta", weight=3]; 1490 -> 1556[label="",style="dashed", color="magenta", weight=3]; 1491 -> 728[label="",style="dashed", color="red", weight=0]; 1491[label="vwx372 == vwx382",fontsize=16,color="magenta"];1491 -> 1557[label="",style="dashed", color="magenta", weight=3]; 1491 -> 1558[label="",style="dashed", color="magenta", weight=3]; 1492 -> 729[label="",style="dashed", color="red", weight=0]; 1492[label="vwx372 == vwx382",fontsize=16,color="magenta"];1492 -> 1559[label="",style="dashed", color="magenta", weight=3]; 1492 -> 1560[label="",style="dashed", color="magenta", weight=3]; 1493 -> 730[label="",style="dashed", color="red", weight=0]; 1493[label="vwx372 == vwx382",fontsize=16,color="magenta"];1493 -> 1561[label="",style="dashed", color="magenta", weight=3]; 1493 -> 1562[label="",style="dashed", color="magenta", weight=3]; 1494 -> 731[label="",style="dashed", color="red", weight=0]; 1494[label="vwx372 == vwx382",fontsize=16,color="magenta"];1494 -> 1563[label="",style="dashed", color="magenta", weight=3]; 1494 -> 1564[label="",style="dashed", color="magenta", weight=3]; 1495 -> 732[label="",style="dashed", color="red", weight=0]; 1495[label="vwx372 == vwx382",fontsize=16,color="magenta"];1495 -> 1565[label="",style="dashed", color="magenta", weight=3]; 1495 -> 1566[label="",style="dashed", color="magenta", weight=3]; 1496 -> 733[label="",style="dashed", color="red", weight=0]; 1496[label="vwx372 == vwx382",fontsize=16,color="magenta"];1496 -> 1567[label="",style="dashed", color="magenta", weight=3]; 1496 -> 1568[label="",style="dashed", color="magenta", weight=3]; 1497 -> 734[label="",style="dashed", color="red", weight=0]; 1497[label="vwx372 == vwx382",fontsize=16,color="magenta"];1497 -> 1569[label="",style="dashed", color="magenta", weight=3]; 1497 -> 1570[label="",style="dashed", color="magenta", weight=3]; 1498 -> 735[label="",style="dashed", color="red", weight=0]; 1498[label="vwx372 == vwx382",fontsize=16,color="magenta"];1498 -> 1571[label="",style="dashed", color="magenta", weight=3]; 1498 -> 1572[label="",style="dashed", color="magenta", weight=3]; 1499 -> 736[label="",style="dashed", color="red", weight=0]; 1499[label="vwx372 == vwx382",fontsize=16,color="magenta"];1499 -> 1573[label="",style="dashed", color="magenta", weight=3]; 1499 -> 1574[label="",style="dashed", color="magenta", weight=3]; 1500 -> 737[label="",style="dashed", color="red", weight=0]; 1500[label="vwx372 == vwx382",fontsize=16,color="magenta"];1500 -> 1575[label="",style="dashed", color="magenta", weight=3]; 1500 -> 1576[label="",style="dashed", color="magenta", weight=3]; 1501 -> 738[label="",style="dashed", color="red", weight=0]; 1501[label="vwx372 == vwx382",fontsize=16,color="magenta"];1501 -> 1577[label="",style="dashed", color="magenta", weight=3]; 1501 -> 1578[label="",style="dashed", color="magenta", weight=3]; 1502 -> 739[label="",style="dashed", color="red", weight=0]; 1502[label="vwx372 == vwx382",fontsize=16,color="magenta"];1502 -> 1579[label="",style="dashed", color="magenta", weight=3]; 1502 -> 1580[label="",style="dashed", color="magenta", weight=3]; 1503 -> 740[label="",style="dashed", color="red", weight=0]; 1503[label="vwx372 == vwx382",fontsize=16,color="magenta"];1503 -> 1581[label="",style="dashed", color="magenta", weight=3]; 1503 -> 1582[label="",style="dashed", color="magenta", weight=3]; 1504 -> 741[label="",style="dashed", color="red", weight=0]; 1504[label="vwx372 == vwx382",fontsize=16,color="magenta"];1504 -> 1583[label="",style="dashed", color="magenta", weight=3]; 1504 -> 1584[label="",style="dashed", color="magenta", weight=3]; 1505[label="primMulNat (Succ vwx30000) (Succ vwx40100)",fontsize=16,color="black",shape="box"];1505 -> 1585[label="",style="solid", color="black", weight=3]; 1506[label="primMulNat (Succ vwx30000) Zero",fontsize=16,color="black",shape="box"];1506 -> 1586[label="",style="solid", color="black", weight=3]; 1507[label="primMulNat Zero (Succ vwx40100)",fontsize=16,color="black",shape="box"];1507 -> 1587[label="",style="solid", color="black", weight=3]; 1508[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1508 -> 1588[label="",style="solid", color="black", weight=3]; 1509[label="compare0 vwx300 vwx400 otherwise",fontsize=16,color="black",shape="box"];1509 -> 1589[label="",style="solid", color="black", weight=3]; 1510[label="LT",fontsize=16,color="green",shape="box"];1511[label="compare0 vwx300 vwx400 otherwise",fontsize=16,color="black",shape="box"];1511 -> 1590[label="",style="solid", color="black", weight=3]; 1512[label="LT",fontsize=16,color="green",shape="box"];1513[label="compare0 vwx300 vwx400 otherwise",fontsize=16,color="black",shape="box"];1513 -> 1591[label="",style="solid", color="black", weight=3]; 1514[label="LT",fontsize=16,color="green",shape="box"];1515[label="compare0 vwx300 vwx400 otherwise",fontsize=16,color="black",shape="box"];1515 -> 1592[label="",style="solid", color="black", weight=3]; 1516[label="LT",fontsize=16,color="green",shape="box"];1517[label="compare0 vwx300 vwx400 otherwise",fontsize=16,color="black",shape="box"];1517 -> 1593[label="",style="solid", color="black", weight=3]; 1518[label="LT",fontsize=16,color="green",shape="box"];1519[label="compare0 vwx300 vwx400 otherwise",fontsize=16,color="black",shape="box"];1519 -> 1594[label="",style="solid", color="black", weight=3]; 1520[label="LT",fontsize=16,color="green",shape="box"];1521[label="vwx3700",fontsize=16,color="green",shape="box"];1522[label="vwx3800",fontsize=16,color="green",shape="box"];1523[label="vwx3700",fontsize=16,color="green",shape="box"];1524[label="vwx3800",fontsize=16,color="green",shape="box"];1525 -> 1083[label="",style="dashed", color="red", weight=0]; 1525[label="primEqNat vwx3700 vwx3800",fontsize=16,color="magenta"];1525 -> 1595[label="",style="dashed", color="magenta", weight=3]; 1525 -> 1596[label="",style="dashed", color="magenta", weight=3]; 1526[label="False",fontsize=16,color="green",shape="box"];1527[label="False",fontsize=16,color="green",shape="box"];1528[label="True",fontsize=16,color="green",shape="box"];1529[label="vwx381",fontsize=16,color="green",shape="box"];1530[label="vwx371",fontsize=16,color="green",shape="box"];1531[label="vwx381",fontsize=16,color="green",shape="box"];1532[label="vwx371",fontsize=16,color="green",shape="box"];1533[label="vwx381",fontsize=16,color="green",shape="box"];1534[label="vwx371",fontsize=16,color="green",shape="box"];1535[label="vwx381",fontsize=16,color="green",shape="box"];1536[label="vwx371",fontsize=16,color="green",shape="box"];1537[label="vwx381",fontsize=16,color="green",shape="box"];1538[label="vwx371",fontsize=16,color="green",shape="box"];1539[label="vwx381",fontsize=16,color="green",shape="box"];1540[label="vwx371",fontsize=16,color="green",shape="box"];1541[label="vwx381",fontsize=16,color="green",shape="box"];1542[label="vwx371",fontsize=16,color="green",shape="box"];1543[label="vwx381",fontsize=16,color="green",shape="box"];1544[label="vwx371",fontsize=16,color="green",shape="box"];1545[label="vwx381",fontsize=16,color="green",shape="box"];1546[label="vwx371",fontsize=16,color="green",shape="box"];1547[label="vwx381",fontsize=16,color="green",shape="box"];1548[label="vwx371",fontsize=16,color="green",shape="box"];1549[label="vwx381",fontsize=16,color="green",shape="box"];1550[label="vwx371",fontsize=16,color="green",shape="box"];1551[label="vwx381",fontsize=16,color="green",shape="box"];1552[label="vwx371",fontsize=16,color="green",shape="box"];1553[label="vwx381",fontsize=16,color="green",shape="box"];1554[label="vwx371",fontsize=16,color="green",shape="box"];1555[label="vwx381",fontsize=16,color="green",shape="box"];1556[label="vwx371",fontsize=16,color="green",shape="box"];1557[label="vwx382",fontsize=16,color="green",shape="box"];1558[label="vwx372",fontsize=16,color="green",shape="box"];1559[label="vwx382",fontsize=16,color="green",shape="box"];1560[label="vwx372",fontsize=16,color="green",shape="box"];1561[label="vwx382",fontsize=16,color="green",shape="box"];1562[label="vwx372",fontsize=16,color="green",shape="box"];1563[label="vwx382",fontsize=16,color="green",shape="box"];1564[label="vwx372",fontsize=16,color="green",shape="box"];1565[label="vwx382",fontsize=16,color="green",shape="box"];1566[label="vwx372",fontsize=16,color="green",shape="box"];1567[label="vwx382",fontsize=16,color="green",shape="box"];1568[label="vwx372",fontsize=16,color="green",shape="box"];1569[label="vwx382",fontsize=16,color="green",shape="box"];1570[label="vwx372",fontsize=16,color="green",shape="box"];1571[label="vwx382",fontsize=16,color="green",shape="box"];1572[label="vwx372",fontsize=16,color="green",shape="box"];1573[label="vwx382",fontsize=16,color="green",shape="box"];1574[label="vwx372",fontsize=16,color="green",shape="box"];1575[label="vwx382",fontsize=16,color="green",shape="box"];1576[label="vwx372",fontsize=16,color="green",shape="box"];1577[label="vwx382",fontsize=16,color="green",shape="box"];1578[label="vwx372",fontsize=16,color="green",shape="box"];1579[label="vwx382",fontsize=16,color="green",shape="box"];1580[label="vwx372",fontsize=16,color="green",shape="box"];1581[label="vwx382",fontsize=16,color="green",shape="box"];1582[label="vwx372",fontsize=16,color="green",shape="box"];1583[label="vwx382",fontsize=16,color="green",shape="box"];1584[label="vwx372",fontsize=16,color="green",shape="box"];1585 -> 1597[label="",style="dashed", color="red", weight=0]; 1585[label="primPlusNat (primMulNat vwx30000 (Succ vwx40100)) (Succ vwx40100)",fontsize=16,color="magenta"];1585 -> 1598[label="",style="dashed", color="magenta", weight=3]; 1586[label="Zero",fontsize=16,color="green",shape="box"];1587[label="Zero",fontsize=16,color="green",shape="box"];1588[label="Zero",fontsize=16,color="green",shape="box"];1589[label="compare0 vwx300 vwx400 True",fontsize=16,color="black",shape="box"];1589 -> 1599[label="",style="solid", color="black", weight=3]; 1590[label="compare0 vwx300 vwx400 True",fontsize=16,color="black",shape="box"];1590 -> 1600[label="",style="solid", color="black", weight=3]; 1591[label="compare0 vwx300 vwx400 True",fontsize=16,color="black",shape="box"];1591 -> 1601[label="",style="solid", color="black", weight=3]; 1592[label="compare0 vwx300 vwx400 True",fontsize=16,color="black",shape="box"];1592 -> 1602[label="",style="solid", color="black", weight=3]; 1593[label="compare0 vwx300 vwx400 True",fontsize=16,color="black",shape="box"];1593 -> 1603[label="",style="solid", color="black", weight=3]; 1594[label="compare0 vwx300 vwx400 True",fontsize=16,color="black",shape="box"];1594 -> 1604[label="",style="solid", color="black", weight=3]; 1595[label="vwx3700",fontsize=16,color="green",shape="box"];1596[label="vwx3800",fontsize=16,color="green",shape="box"];1598 -> 1119[label="",style="dashed", color="red", weight=0]; 1598[label="primMulNat vwx30000 (Succ vwx40100)",fontsize=16,color="magenta"];1598 -> 1605[label="",style="dashed", color="magenta", weight=3]; 1598 -> 1606[label="",style="dashed", color="magenta", weight=3]; 1597[label="primPlusNat vwx67 (Succ vwx40100)",fontsize=16,color="burlywood",shape="triangle"];2164[label="vwx67/Succ vwx670",fontsize=10,color="white",style="solid",shape="box"];1597 -> 2164[label="",style="solid", color="burlywood", weight=9]; 2164 -> 1607[label="",style="solid", color="burlywood", weight=3]; 2165[label="vwx67/Zero",fontsize=10,color="white",style="solid",shape="box"];1597 -> 2165[label="",style="solid", color="burlywood", weight=9]; 2165 -> 1608[label="",style="solid", color="burlywood", weight=3]; 1599[label="GT",fontsize=16,color="green",shape="box"];1600[label="GT",fontsize=16,color="green",shape="box"];1601[label="GT",fontsize=16,color="green",shape="box"];1602[label="GT",fontsize=16,color="green",shape="box"];1603[label="GT",fontsize=16,color="green",shape="box"];1604[label="GT",fontsize=16,color="green",shape="box"];1605[label="Succ vwx40100",fontsize=16,color="green",shape="box"];1606[label="vwx30000",fontsize=16,color="green",shape="box"];1607[label="primPlusNat (Succ vwx670) (Succ vwx40100)",fontsize=16,color="black",shape="box"];1607 -> 1609[label="",style="solid", color="black", weight=3]; 1608[label="primPlusNat Zero (Succ vwx40100)",fontsize=16,color="black",shape="box"];1608 -> 1610[label="",style="solid", color="black", weight=3]; 1609[label="Succ (Succ (primPlusNat vwx670 vwx40100))",fontsize=16,color="green",shape="box"];1609 -> 1611[label="",style="dashed", color="green", weight=3]; 1610[label="Succ vwx40100",fontsize=16,color="green",shape="box"];1611[label="primPlusNat vwx670 vwx40100",fontsize=16,color="burlywood",shape="triangle"];2166[label="vwx670/Succ vwx6700",fontsize=10,color="white",style="solid",shape="box"];1611 -> 2166[label="",style="solid", color="burlywood", weight=9]; 2166 -> 1612[label="",style="solid", color="burlywood", weight=3]; 2167[label="vwx670/Zero",fontsize=10,color="white",style="solid",shape="box"];1611 -> 2167[label="",style="solid", color="burlywood", weight=9]; 2167 -> 1613[label="",style="solid", color="burlywood", weight=3]; 1612[label="primPlusNat (Succ vwx6700) vwx40100",fontsize=16,color="burlywood",shape="box"];2168[label="vwx40100/Succ vwx401000",fontsize=10,color="white",style="solid",shape="box"];1612 -> 2168[label="",style="solid", color="burlywood", weight=9]; 2168 -> 1614[label="",style="solid", color="burlywood", weight=3]; 2169[label="vwx40100/Zero",fontsize=10,color="white",style="solid",shape="box"];1612 -> 2169[label="",style="solid", color="burlywood", weight=9]; 2169 -> 1615[label="",style="solid", color="burlywood", weight=3]; 1613[label="primPlusNat Zero vwx40100",fontsize=16,color="burlywood",shape="box"];2170[label="vwx40100/Succ vwx401000",fontsize=10,color="white",style="solid",shape="box"];1613 -> 2170[label="",style="solid", color="burlywood", weight=9]; 2170 -> 1616[label="",style="solid", color="burlywood", weight=3]; 2171[label="vwx40100/Zero",fontsize=10,color="white",style="solid",shape="box"];1613 -> 2171[label="",style="solid", color="burlywood", weight=9]; 2171 -> 1617[label="",style="solid", color="burlywood", weight=3]; 1614[label="primPlusNat (Succ vwx6700) (Succ vwx401000)",fontsize=16,color="black",shape="box"];1614 -> 1618[label="",style="solid", color="black", weight=3]; 1615[label="primPlusNat (Succ vwx6700) Zero",fontsize=16,color="black",shape="box"];1615 -> 1619[label="",style="solid", color="black", weight=3]; 1616[label="primPlusNat Zero (Succ vwx401000)",fontsize=16,color="black",shape="box"];1616 -> 1620[label="",style="solid", color="black", weight=3]; 1617[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];1617 -> 1621[label="",style="solid", color="black", weight=3]; 1618[label="Succ (Succ (primPlusNat vwx6700 vwx401000))",fontsize=16,color="green",shape="box"];1618 -> 1622[label="",style="dashed", color="green", weight=3]; 1619[label="Succ vwx6700",fontsize=16,color="green",shape="box"];1620[label="Succ vwx401000",fontsize=16,color="green",shape="box"];1621[label="Zero",fontsize=16,color="green",shape="box"];1622 -> 1611[label="",style="dashed", color="red", weight=0]; 1622[label="primPlusNat vwx6700 vwx401000",fontsize=16,color="magenta"];1622 -> 1623[label="",style="dashed", color="magenta", weight=3]; 1622 -> 1624[label="",style="dashed", color="magenta", weight=3]; 1623[label="vwx401000",fontsize=16,color="green",shape="box"];1624[label="vwx6700",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(vwx3000), Succ(vwx4000)) -> new_primCmpNat(vwx3000, vwx4000) 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(vwx3000), Succ(vwx4000)) -> new_primCmpNat(vwx3000, vwx4000) 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_primCompAux(vwx300, vwx400, vwx49, app(app(app(ty_@3, bdg), bdh), bea)) -> new_compare5(vwx300, vwx400, bdg, bdh, bea) new_compare21(vwx300, vwx400, False, dh, ea) -> new_ltEs1(vwx300, vwx400, dh, ea) new_ltEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(ty_Either, bcc), bcd), hd, bag) -> new_lt1(vwx300, vwx400, bcc, bcd) new_ltEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), hc, hd, app(ty_[], bae)) -> new_ltEs3(vwx302, vwx402, bae) new_lt2(vwx300, vwx400, eb, ec, ed) -> new_compare22(vwx300, vwx400, new_esEs7(vwx300, vwx400, eb, ec, ed), eb, ec, ed) new_primCompAux(vwx300, vwx400, vwx49, app(ty_Maybe, bdb)) -> new_compare1(vwx300, vwx400, bdb) new_ltEs0(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(ty_Either, dh), ea), de) -> new_compare21(vwx300, vwx400, new_esEs6(vwx300, vwx400, dh, ea), dh, ea) new_ltEs1(Left(vwx300), Left(vwx400), app(app(ty_@2, eh), fa), eg) -> new_ltEs0(vwx300, vwx400, eh, fa) new_ltEs1(Right(vwx300), Right(vwx400), ga, app(app(ty_@2, gc), gd)) -> new_ltEs0(vwx300, vwx400, gc, gd) new_ltEs0(@2(vwx300, vwx301), @2(vwx400, vwx401), app(ty_Maybe, dd), de) -> new_compare2(vwx300, vwx400, new_esEs4(vwx300, vwx400, dd), dd) new_ltEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), hc, hd, app(app(ty_@2, hf), hg)) -> new_ltEs0(vwx302, vwx402, hf, hg) new_ltEs0(@2(vwx300, vwx301), @2(vwx400, vwx401), ca, app(app(ty_@2, cc), cd)) -> new_ltEs0(vwx301, vwx401, cc, cd) new_ltEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), hc, hd, app(app(ty_Either, hh), baa)) -> new_ltEs1(vwx302, vwx402, hh, baa) new_ltEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(ty_@2, bca), bcb), hd, bag) -> new_lt0(vwx300, vwx400, bca, bcb) new_ltEs3(:(vwx300, vwx301), :(vwx400, vwx401), bda) -> new_compare(vwx301, vwx401, bda) new_ltEs1(Right(vwx300), Right(vwx400), ga, app(ty_Maybe, gb)) -> new_ltEs(vwx300, vwx400, gb) new_ltEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), hc, hd, app(ty_Maybe, he)) -> new_ltEs(vwx302, vwx402, he) new_ltEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), hc, app(app(ty_@2, bah), bba), bag) -> new_lt0(vwx301, vwx401, bah, bba) new_primCompAux(vwx300, vwx400, vwx49, app(app(ty_Either, bde), bdf)) -> new_compare4(vwx300, vwx400, bde, bdf) new_ltEs0(@2(vwx300, vwx301), @2(vwx400, vwx401), ca, app(app(app(ty_@3, cg), da), db)) -> new_ltEs2(vwx301, vwx401, cg, da, db) new_ltEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), hc, app(ty_Maybe, baf), bag) -> new_lt(vwx301, vwx401, baf) new_ltEs(Just(vwx300), Just(vwx400), app(app(app(ty_@3, be), bf), bg)) -> new_ltEs2(vwx300, vwx400, be, bf, bg) new_ltEs0(@2(vwx300, vwx301), @2(vwx400, vwx401), ca, app(ty_[], dc)) -> new_ltEs3(vwx301, vwx401, dc) new_lt3(vwx300, vwx400, ee) -> new_compare(vwx300, vwx400, ee) new_ltEs1(Right(vwx300), Right(vwx400), ga, app(app(ty_Either, ge), gf)) -> new_ltEs1(vwx300, vwx400, ge, gf) new_ltEs3(:(vwx300, vwx301), :(vwx400, vwx401), bda) -> new_primCompAux(vwx300, vwx400, new_compare0(vwx301, vwx401, bda), bda) new_compare4(vwx300, vwx400, dh, ea) -> new_compare21(vwx300, vwx400, new_esEs6(vwx300, vwx400, dh, ea), dh, ea) new_ltEs1(Right(vwx300), Right(vwx400), ga, app(ty_[], hb)) -> new_ltEs3(vwx300, vwx400, hb) new_ltEs1(Left(vwx300), Left(vwx400), app(app(app(ty_@3, fd), ff), fg), eg) -> new_ltEs2(vwx300, vwx400, fd, ff, fg) new_ltEs1(Right(vwx300), Right(vwx400), ga, app(app(app(ty_@3, gg), gh), ha)) -> new_ltEs2(vwx300, vwx400, gg, gh, ha) new_compare(:(vwx300, vwx301), :(vwx400, vwx401), bda) -> new_primCompAux(vwx300, vwx400, new_compare0(vwx301, vwx401, bda), bda) new_compare1(vwx300, vwx400, dd) -> new_compare2(vwx300, vwx400, new_esEs4(vwx300, vwx400, dd), dd) new_ltEs0(@2(vwx300, vwx301), @2(vwx400, vwx401), ca, app(ty_Maybe, cb)) -> new_ltEs(vwx301, vwx401, cb) new_compare3(vwx300, vwx400, df, dg) -> new_compare20(vwx300, vwx400, new_esEs5(vwx300, vwx400, df, dg), df, dg) new_ltEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), hc, app(ty_[], bbg), bag) -> new_lt3(vwx301, vwx401, bbg) new_ltEs1(Left(vwx300), Left(vwx400), app(app(ty_Either, fb), fc), eg) -> new_ltEs1(vwx300, vwx400, fb, fc) new_compare22(vwx300, vwx400, False, eb, ec, ed) -> new_ltEs2(vwx300, vwx400, eb, ec, ed) new_primCompAux(vwx300, vwx400, vwx49, app(ty_[], beb)) -> new_compare(vwx300, vwx400, beb) new_ltEs0(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(ty_@2, df), dg), de) -> new_compare20(vwx300, vwx400, new_esEs5(vwx300, vwx400, df, dg), df, dg) new_ltEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), hc, hd, app(app(app(ty_@3, bab), bac), bad)) -> new_ltEs2(vwx302, vwx402, bab, bac, bad) new_primCompAux(vwx300, vwx400, vwx49, app(app(ty_@2, bdc), bdd)) -> new_compare3(vwx300, vwx400, bdc, bdd) new_compare2(vwx300, vwx400, False, dd) -> new_ltEs(vwx300, vwx400, dd) new_lt(vwx300, vwx400, dd) -> new_compare2(vwx300, vwx400, new_esEs4(vwx300, vwx400, dd), dd) new_ltEs(Just(vwx300), Just(vwx400), app(app(ty_Either, bc), bd)) -> new_ltEs1(vwx300, vwx400, bc, bd) new_ltEs0(@2(vwx300, vwx301), @2(vwx400, vwx401), ca, app(app(ty_Either, ce), cf)) -> new_ltEs1(vwx301, vwx401, ce, cf) new_ltEs1(Left(vwx300), Left(vwx400), app(ty_Maybe, ef), eg) -> new_ltEs(vwx300, vwx400, ef) new_ltEs(Just(vwx300), Just(vwx400), app(ty_[], bh)) -> new_ltEs3(vwx300, vwx400, bh) new_ltEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), hc, app(app(ty_Either, bbb), bbc), bag) -> new_lt1(vwx301, vwx401, bbb, bbc) new_ltEs1(Left(vwx300), Left(vwx400), app(ty_[], fh), eg) -> new_ltEs3(vwx300, vwx400, fh) new_ltEs(Just(vwx300), Just(vwx400), app(app(ty_@2, ba), bb)) -> new_ltEs0(vwx300, vwx400, ba, bb) new_ltEs(Just(vwx300), Just(vwx400), app(ty_Maybe, h)) -> new_ltEs(vwx300, vwx400, h) new_compare(:(vwx300, vwx301), :(vwx400, vwx401), bda) -> new_compare(vwx301, vwx401, bda) new_ltEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(ty_Maybe, bbh), hd, bag) -> new_lt(vwx300, vwx400, bbh) new_compare5(vwx300, vwx400, eb, ec, ed) -> new_compare22(vwx300, vwx400, new_esEs7(vwx300, vwx400, eb, ec, ed), eb, ec, ed) new_ltEs0(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(app(ty_@3, eb), ec), ed), de) -> new_compare22(vwx300, vwx400, new_esEs7(vwx300, vwx400, eb, ec, ed), eb, ec, ed) new_ltEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), hc, app(app(app(ty_@3, bbd), bbe), bbf), bag) -> new_lt2(vwx301, vwx401, bbd, bbe, bbf) new_ltEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(app(ty_@3, bce), bcf), bcg), hd, bag) -> new_lt2(vwx300, vwx400, bce, bcf, bcg) new_compare20(vwx300, vwx400, False, df, dg) -> new_ltEs0(vwx300, vwx400, df, dg) new_ltEs0(@2(vwx300, vwx301), @2(vwx400, vwx401), app(ty_[], ee), de) -> new_compare(vwx300, vwx400, ee) new_ltEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(ty_[], bch), hd, bag) -> new_lt3(vwx300, vwx400, bch) new_lt0(vwx300, vwx400, df, dg) -> new_compare20(vwx300, vwx400, new_esEs5(vwx300, vwx400, df, dg), df, dg) new_lt1(vwx300, vwx400, dh, ea) -> new_compare21(vwx300, vwx400, new_esEs6(vwx300, vwx400, dh, ea), dh, ea) The TRS R consists of the following rules: new_esEs27(vwx372, vwx382, ty_Double) -> new_esEs15(vwx372, vwx382) new_ltEs6(vwx301, vwx401, app(ty_[], dc)) -> new_ltEs17(vwx301, vwx401, dc) new_primCmpInt(Neg(Succ(vwx3000)), Pos(vwx400)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs6(Left(vwx370), Left(vwx380), ty_Ordering, bef) -> new_esEs17(vwx370, vwx380) new_compare12(vwx300, vwx400, False, df, dg) -> GT new_compare13(vwx300, vwx400, dd) -> new_compare24(vwx300, vwx400, new_esEs4(vwx300, vwx400, dd), dd) new_esEs21(vwx370, vwx380, app(app(app(ty_@3, cef), ceg), ceh)) -> new_esEs7(vwx370, vwx380, cef, ceg, ceh) new_ltEs6(vwx301, vwx401, app(app(ty_Either, ce), cf)) -> new_ltEs13(vwx301, vwx401, ce, cf) new_esEs6(Right(vwx370), Right(vwx380), bga, ty_Integer) -> new_esEs16(vwx370, vwx380) new_esEs18(True, True) -> True new_compare14(vwx300, vwx400, app(ty_Ratio, bee)) -> new_compare15(vwx300, vwx400, bee) new_ltEs11(Just(vwx300), Just(vwx400), app(app(app(ty_@3, be), bf), bg)) -> new_ltEs14(vwx300, vwx400, be, bf, bg) new_esEs25(vwx370, vwx380, app(ty_[], cha)) -> new_esEs13(vwx370, vwx380, cha) new_esEs25(vwx370, vwx380, ty_Ordering) -> new_esEs17(vwx370, vwx380) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare110(vwx300, vwx400, False, dd) -> GT new_primCmpInt(Pos(Zero), Neg(Succ(vwx4000))) -> GT new_lt19(vwx301, vwx401, ty_Float) -> new_lt16(vwx301, vwx401) new_esEs4(Just(vwx370), Just(vwx380), app(ty_[], cch)) -> new_esEs13(vwx370, vwx380, cch) new_esEs21(vwx370, vwx380, ty_Int) -> new_esEs14(vwx370, vwx380) new_esEs4(Just(vwx370), Just(vwx380), ty_Ordering) -> new_esEs17(vwx370, vwx380) new_ltEs19(vwx302, vwx402, app(app(ty_@2, hf), hg)) -> new_ltEs5(vwx302, vwx402, hf, hg) new_primCmpInt(Neg(Succ(vwx3000)), Neg(vwx400)) -> new_primCmpNat0(vwx400, Succ(vwx3000)) new_esEs27(vwx372, vwx382, ty_Integer) -> new_esEs16(vwx372, vwx382) new_esEs23(vwx371, vwx381, ty_Integer) -> new_esEs16(vwx371, vwx381) new_compare27(vwx300, vwx400) -> new_compare210(vwx300, vwx400, new_esEs17(vwx300, vwx400)) new_ltEs10(vwx30, vwx40) -> new_not(new_compare9(vwx30, vwx40)) new_esEs25(vwx370, vwx380, app(app(ty_@2, cge), cgf)) -> new_esEs5(vwx370, vwx380, cge, cgf) new_esEs19(vwx370, vwx380, ty_Ordering) -> new_esEs17(vwx370, vwx380) new_ltEs13(Left(vwx300), Left(vwx400), ty_Bool, eg) -> new_ltEs9(vwx300, vwx400) new_esEs21(vwx370, vwx380, app(ty_[], cee)) -> new_esEs13(vwx370, vwx380, cee) new_esEs15(Double(vwx370, vwx371), Double(vwx380, vwx381)) -> new_esEs14(new_sr(vwx370, vwx381), new_sr(vwx371, vwx380)) new_lt20(vwx300, vwx400, ty_Bool) -> new_lt4(vwx300, vwx400) new_primEqInt(Pos(Succ(vwx3700)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vwx3800))) -> False new_ltEs19(vwx302, vwx402, ty_Integer) -> new_ltEs4(vwx302, vwx402) new_esEs20(vwx371, vwx381, app(app(ty_@2, cah), cba)) -> new_esEs5(vwx371, vwx381, cah, cba) new_esEs17(LT, LT) -> True new_ltEs9(False, True) -> True new_compare25(@0, @0) -> EQ new_compare14(vwx300, vwx400, app(app(app(ty_@3, bdg), bdh), bea)) -> new_compare19(vwx300, vwx400, bdg, bdh, bea) new_esEs24(vwx37, vwx38, ty_@0) -> new_esEs10(vwx37, vwx38) new_esEs6(Right(vwx370), Right(vwx380), bga, ty_Double) -> new_esEs15(vwx370, vwx380) new_esEs19(vwx370, vwx380, app(app(ty_@2, bhf), bhg)) -> new_esEs5(vwx370, vwx380, bhf, bhg) new_lt5(vwx300, vwx400, app(ty_[], ee)) -> new_lt17(vwx300, vwx400, ee) new_esEs27(vwx372, vwx382, ty_Float) -> new_esEs11(vwx372, vwx382) new_primEqNat0(Succ(vwx3700), Succ(vwx3800)) -> new_primEqNat0(vwx3700, vwx3800) new_esEs6(Right(vwx370), Right(vwx380), bga, ty_Bool) -> new_esEs18(vwx370, vwx380) new_compare16(Double(vwx300, Pos(vwx3010)), Double(vwx400, Neg(vwx4010))) -> new_compare9(new_sr(vwx300, Pos(vwx4010)), new_sr(Neg(vwx3010), vwx400)) new_compare16(Double(vwx300, Neg(vwx3010)), Double(vwx400, Pos(vwx4010))) -> new_compare9(new_sr(vwx300, Neg(vwx4010)), new_sr(Pos(vwx3010), vwx400)) new_ltEs13(Left(vwx300), Left(vwx400), ty_Ordering, eg) -> new_ltEs18(vwx300, vwx400) new_not(LT) -> new_not0 new_esEs7(@3(vwx370, vwx371, vwx372), @3(vwx380, vwx381, vwx382), cgb, cgc, cgd) -> new_asAs(new_esEs25(vwx370, vwx380, cgb), new_asAs(new_esEs26(vwx371, vwx381, cgc), new_esEs27(vwx372, vwx382, cgd))) new_esEs26(vwx371, vwx381, ty_Char) -> new_esEs8(vwx371, vwx381) new_lt20(vwx300, vwx400, ty_Float) -> new_lt16(vwx300, vwx400) new_primCompAux00(vwx53, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_esEs6(Right(vwx370), Right(vwx380), bga, ty_Char) -> new_esEs8(vwx370, vwx380) new_compare11(vwx300, vwx400, False) -> GT new_esEs9(LT) -> True new_esEs4(Just(vwx370), Just(vwx380), app(app(ty_@2, ccd), cce)) -> new_esEs5(vwx370, vwx380, ccd, cce) new_lt13(vwx300, vwx400, dh, ea) -> new_esEs9(new_compare18(vwx300, vwx400, dh, ea)) new_esEs25(vwx370, vwx380, app(app(app(ty_@3, chb), chc), chd)) -> new_esEs7(vwx370, vwx380, chb, chc, chd) new_esEs27(vwx372, vwx382, app(ty_Ratio, dbd)) -> new_esEs12(vwx372, vwx382, dbd) new_esEs20(vwx371, vwx381, ty_Ordering) -> new_esEs17(vwx371, vwx381) new_esEs27(vwx372, vwx382, ty_Char) -> new_esEs8(vwx372, vwx382) new_lt17(vwx300, vwx400, ee) -> new_esEs9(new_compare0(vwx300, vwx400, ee)) new_ltEs11(Just(vwx300), Just(vwx400), ty_Float) -> new_ltEs16(vwx300, vwx400) new_esEs4(Just(vwx370), Just(vwx380), ty_Int) -> new_esEs14(vwx370, vwx380) new_primEqNat0(Succ(vwx3700), Zero) -> False new_primEqNat0(Zero, Succ(vwx3800)) -> False new_esEs19(vwx370, vwx380, app(app(app(ty_@3, cac), cad), cae)) -> new_esEs7(vwx370, vwx380, cac, cad, cae) new_ltEs15(vwx30, vwx40) -> new_not(new_compare25(vwx30, vwx40)) new_esEs13([], [], cdh) -> True new_compare14(vwx300, vwx400, ty_Double) -> new_compare16(vwx300, vwx400) new_ltEs13(Right(vwx300), Right(vwx400), ga, ty_Int) -> new_ltEs10(vwx300, vwx400) new_ltEs18(EQ, GT) -> True new_esEs19(vwx370, vwx380, ty_Int) -> new_esEs14(vwx370, vwx380) new_esEs25(vwx370, vwx380, ty_Int) -> new_esEs14(vwx370, vwx380) new_ltEs6(vwx301, vwx401, ty_Int) -> new_ltEs10(vwx301, vwx401) new_compare10(vwx300, vwx400, True, dh, ea) -> LT new_esEs21(vwx370, vwx380, ty_Ordering) -> new_esEs17(vwx370, vwx380) new_compare211(vwx300, vwx400, False) -> new_compare11(vwx300, vwx400, new_ltEs9(vwx300, vwx400)) new_compare26(Float(vwx300, Pos(vwx3010)), Float(vwx400, Neg(vwx4010))) -> new_compare9(new_sr(vwx300, Pos(vwx4010)), new_sr(Neg(vwx3010), vwx400)) new_compare26(Float(vwx300, Neg(vwx3010)), Float(vwx400, Pos(vwx4010))) -> new_compare9(new_sr(vwx300, Neg(vwx4010)), new_sr(Pos(vwx3010), vwx400)) new_esEs6(Left(vwx370), Left(vwx380), ty_Int, bef) -> new_esEs14(vwx370, vwx380) new_primCompAux00(vwx53, GT) -> GT new_lt20(vwx300, vwx400, app(app(ty_@2, bca), bcb)) -> new_lt12(vwx300, vwx400, bca, bcb) new_esEs4(Just(vwx370), Just(vwx380), app(app(app(ty_@3, cda), cdb), cdc)) -> new_esEs7(vwx370, vwx380, cda, cdb, cdc) new_ltEs19(vwx302, vwx402, ty_Char) -> new_ltEs12(vwx302, vwx402) new_esEs13(:(vwx370, vwx371), :(vwx380, vwx381), cdh) -> new_asAs(new_esEs21(vwx370, vwx380, cdh), new_esEs13(vwx371, vwx381, cdh)) new_esEs17(EQ, GT) -> False new_esEs17(GT, EQ) -> False new_lt19(vwx301, vwx401, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_lt14(vwx301, vwx401, bbd, bbe, bbf) new_esEs26(vwx371, vwx381, ty_Ordering) -> new_esEs17(vwx371, vwx381) new_esEs6(Right(vwx370), Right(vwx380), bga, ty_Float) -> new_esEs11(vwx370, vwx380) new_primCmpInt(Pos(Succ(vwx3000)), Neg(vwx400)) -> GT new_lt5(vwx300, vwx400, app(app(ty_Either, dh), ea)) -> new_lt13(vwx300, vwx400, dh, ea) new_compare9(vwx30, vwx40) -> new_primCmpInt(vwx30, vwx40) new_lt6(vwx300, vwx400, bed) -> new_esEs9(new_compare15(vwx300, vwx400, bed)) new_ltEs6(vwx301, vwx401, app(ty_Ratio, bec)) -> new_ltEs7(vwx301, vwx401, bec) new_esEs26(vwx371, vwx381, ty_Int) -> new_esEs14(vwx371, vwx381) new_primPlusNat1(Succ(vwx6700), Succ(vwx401000)) -> Succ(Succ(new_primPlusNat1(vwx6700, vwx401000))) new_lt18(vwx300, vwx400) -> new_esEs9(new_compare27(vwx300, vwx400)) new_primCmpNat0(Zero, Succ(vwx4000)) -> LT new_lt20(vwx300, vwx400, app(app(app(ty_@3, bce), bcf), bcg)) -> new_lt14(vwx300, vwx400, bce, bcf, bcg) new_compare15(:%(vwx300, vwx301), :%(vwx400, vwx401), ty_Integer) -> new_compare7(new_sr0(vwx300, vwx401), new_sr0(vwx400, vwx301)) new_esEs26(vwx371, vwx381, app(app(app(ty_@3, dad), dae), daf)) -> new_esEs7(vwx371, vwx381, dad, dae, daf) new_esEs21(vwx370, vwx380, app(app(ty_@2, cea), ceb)) -> new_esEs5(vwx370, vwx380, cea, ceb) new_lt20(vwx300, vwx400, ty_Integer) -> new_lt8(vwx300, vwx400) new_ltEs13(Left(vwx300), Left(vwx400), ty_Char, eg) -> new_ltEs12(vwx300, vwx400) new_esEs27(vwx372, vwx382, ty_Bool) -> new_esEs18(vwx372, vwx382) new_compare14(vwx300, vwx400, ty_Char) -> new_compare17(vwx300, vwx400) new_ltEs11(Just(vwx300), Just(vwx400), ty_Bool) -> new_ltEs9(vwx300, vwx400) new_compare210(vwx300, vwx400, True) -> EQ new_esEs24(vwx37, vwx38, app(ty_[], cdh)) -> new_esEs13(vwx37, vwx38, cdh) new_primCmpNat0(Succ(vwx3000), Zero) -> GT new_ltEs13(Right(vwx300), Right(vwx400), ga, ty_Integer) -> new_ltEs4(vwx300, vwx400) new_lt19(vwx301, vwx401, app(ty_Ratio, cfg)) -> new_lt6(vwx301, vwx401, cfg) new_lt5(vwx300, vwx400, ty_Double) -> new_lt7(vwx300, vwx400) new_ltEs13(Left(vwx300), Right(vwx400), ga, eg) -> True new_ltEs19(vwx302, vwx402, ty_Int) -> new_ltEs10(vwx302, vwx402) new_esEs27(vwx372, vwx382, ty_@0) -> new_esEs10(vwx372, vwx382) new_esEs9(EQ) -> False new_ltEs9(True, True) -> True new_lt20(vwx300, vwx400, ty_Char) -> new_lt11(vwx300, vwx400) new_esEs4(Just(vwx370), Just(vwx380), app(ty_Ratio, ccg)) -> new_esEs12(vwx370, vwx380, ccg) new_ltEs19(vwx302, vwx402, app(app(app(ty_@3, bab), bac), bad)) -> new_ltEs14(vwx302, vwx402, bab, bac, bad) new_ltEs6(vwx301, vwx401, app(app(ty_@2, cc), cd)) -> new_ltEs5(vwx301, vwx401, cc, cd) new_ltEs18(LT, GT) -> True new_esEs26(vwx371, vwx381, app(app(ty_@2, chg), chh)) -> new_esEs5(vwx371, vwx381, chg, chh) new_ltEs13(Left(vwx300), Left(vwx400), app(ty_Ratio, cfc), eg) -> new_ltEs7(vwx300, vwx400, cfc) new_ltEs6(vwx301, vwx401, ty_@0) -> new_ltEs15(vwx301, vwx401) new_compare7(Integer(vwx300), Integer(vwx400)) -> new_primCmpInt(vwx300, vwx400) new_compare23(vwx300, vwx400, True, df, dg) -> EQ new_ltEs11(Just(vwx300), Just(vwx400), app(app(ty_@2, ba), bb)) -> new_ltEs5(vwx300, vwx400, ba, bb) new_ltEs13(Left(vwx300), Left(vwx400), app(app(ty_Either, fb), fc), eg) -> new_ltEs13(vwx300, vwx400, fb, fc) new_compare210(vwx300, vwx400, False) -> new_compare111(vwx300, vwx400, new_ltEs18(vwx300, vwx400)) new_primEqInt(Pos(Zero), Neg(Succ(vwx3800))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vwx3800))) -> False new_compare24(vwx300, vwx400, True, dd) -> EQ new_ltEs13(Right(vwx300), Left(vwx400), ga, eg) -> False new_ltEs5(@2(vwx300, vwx301), @2(vwx400, vwx401), ca, de) -> new_pePe(new_lt5(vwx300, vwx400, ca), vwx300, vwx400, new_ltEs6(vwx301, vwx401, de), ca) new_esEs26(vwx371, vwx381, app(ty_[], dac)) -> new_esEs13(vwx371, vwx381, dac) new_compare14(vwx300, vwx400, app(ty_[], beb)) -> new_compare0(vwx300, vwx400, beb) new_esEs22(vwx370, vwx380, ty_Int) -> new_esEs14(vwx370, vwx380) new_ltEs19(vwx302, vwx402, ty_Ordering) -> new_ltEs18(vwx302, vwx402) new_compare14(vwx300, vwx400, ty_@0) -> new_compare25(vwx300, vwx400) new_esEs17(EQ, EQ) -> True new_esEs19(vwx370, vwx380, app(ty_Maybe, bhh)) -> new_esEs4(vwx370, vwx380, bhh) new_primEqInt(Neg(Succ(vwx3700)), Neg(Succ(vwx3800))) -> new_primEqNat0(vwx3700, vwx3800) new_esEs6(Right(vwx370), Right(vwx380), bga, app(app(ty_@2, bgb), bgc)) -> new_esEs5(vwx370, vwx380, bgb, bgc) new_ltEs13(Right(vwx300), Right(vwx400), ga, app(app(app(ty_@3, gg), gh), ha)) -> new_ltEs14(vwx300, vwx400, gg, gh, ha) new_lt11(vwx300, vwx400) -> new_esEs9(new_compare17(vwx300, vwx400)) new_esEs17(LT, EQ) -> False new_esEs17(EQ, LT) -> False new_primCmpInt(Neg(Zero), Pos(Succ(vwx4000))) -> LT new_esEs21(vwx370, vwx380, app(ty_Ratio, ced)) -> new_esEs12(vwx370, vwx380, ced) new_primMulInt(Pos(vwx3000), Pos(vwx4010)) -> Pos(new_primMulNat0(vwx3000, vwx4010)) new_esEs6(Left(vwx370), Left(vwx380), ty_Char, bef) -> new_esEs8(vwx370, vwx380) new_ltEs14(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), hc, hd, bag) -> new_pePe(new_lt20(vwx300, vwx400, hc), vwx300, vwx400, new_pePe(new_lt19(vwx301, vwx401, hd), vwx301, vwx401, new_ltEs19(vwx302, vwx402, bag), hd), hc) new_esEs13(:(vwx370, vwx371), [], cdh) -> False new_esEs13([], :(vwx380, vwx381), cdh) -> False new_esEs24(vwx37, vwx38, app(app(ty_Either, bga), bef)) -> new_esEs6(vwx37, vwx38, bga, bef) new_esEs6(Left(vwx370), Left(vwx380), app(app(ty_Either, bfg), bfh), bef) -> new_esEs6(vwx370, vwx380, bfg, bfh) new_ltEs13(Left(vwx300), Left(vwx400), ty_@0, eg) -> new_ltEs15(vwx300, vwx400) new_ltEs18(EQ, LT) -> False new_primMulNat0(Succ(vwx30000), Zero) -> Zero new_primMulNat0(Zero, Succ(vwx40100)) -> Zero new_ltEs7(vwx30, vwx40, ccb) -> new_not(new_compare15(vwx30, vwx40, ccb)) new_primPlusNat0(Zero, vwx40100) -> Succ(vwx40100) new_ltEs11(Just(vwx300), Just(vwx400), ty_Char) -> new_ltEs12(vwx300, vwx400) new_ltEs13(Right(vwx300), Right(vwx400), ga, app(ty_[], hb)) -> new_ltEs17(vwx300, vwx400, hb) new_ltEs19(vwx302, vwx402, ty_Bool) -> new_ltEs9(vwx302, vwx402) new_ltEs19(vwx302, vwx402, app(app(ty_Either, hh), baa)) -> new_ltEs13(vwx302, vwx402, hh, baa) new_ltEs13(Right(vwx300), Right(vwx400), ga, ty_Float) -> new_ltEs16(vwx300, vwx400) new_esEs17(LT, GT) -> False new_esEs17(GT, LT) -> False new_esEs6(Right(vwx370), Right(vwx380), bga, app(ty_[], bgf)) -> new_esEs13(vwx370, vwx380, bgf) new_ltEs6(vwx301, vwx401, ty_Ordering) -> new_ltEs18(vwx301, vwx401) new_not(GT) -> False new_esEs6(Right(vwx370), Right(vwx380), bga, app(app(app(ty_@3, bgg), bgh), bha)) -> new_esEs7(vwx370, vwx380, bgg, bgh, bha) new_ltEs18(LT, LT) -> True new_lt5(vwx300, vwx400, app(ty_Ratio, bed)) -> new_lt6(vwx300, vwx400, bed) new_compare111(vwx300, vwx400, True) -> LT new_esEs25(vwx370, vwx380, ty_Char) -> new_esEs8(vwx370, vwx380) new_compare18(vwx300, vwx400, dh, ea) -> new_compare28(vwx300, vwx400, new_esEs6(vwx300, vwx400, dh, ea), dh, ea) new_esEs24(vwx37, vwx38, ty_Int) -> new_esEs14(vwx37, vwx38) new_esEs20(vwx371, vwx381, app(ty_Maybe, cbb)) -> new_esEs4(vwx371, vwx381, cbb) new_primPlusNat1(Succ(vwx6700), Zero) -> Succ(vwx6700) new_primPlusNat1(Zero, Succ(vwx401000)) -> Succ(vwx401000) new_esEs24(vwx37, vwx38, app(app(app(ty_@3, cgb), cgc), cgd)) -> new_esEs7(vwx37, vwx38, cgb, cgc, cgd) new_lt20(vwx300, vwx400, app(ty_Ratio, cfh)) -> new_lt6(vwx300, vwx400, cfh) new_esEs12(:%(vwx370, vwx371), :%(vwx380, vwx381), cfe) -> new_asAs(new_esEs22(vwx370, vwx380, cfe), new_esEs23(vwx371, vwx381, cfe)) new_ltEs18(EQ, EQ) -> True new_lt19(vwx301, vwx401, ty_Char) -> new_lt11(vwx301, vwx401) new_lt5(vwx300, vwx400, app(ty_Maybe, dd)) -> new_lt10(vwx300, vwx400, dd) new_esEs6(Left(vwx370), Left(vwx380), app(ty_Ratio, bfb), bef) -> new_esEs12(vwx370, vwx380, bfb) new_esEs6(Left(vwx370), Left(vwx380), app(app(ty_@2, beg), beh), bef) -> new_esEs5(vwx370, vwx380, beg, beh) new_ltEs17(vwx30, vwx40, bda) -> new_not(new_compare0(vwx30, vwx40, bda)) new_ltEs11(Just(vwx300), Just(vwx400), app(ty_Maybe, h)) -> new_ltEs11(vwx300, vwx400, h) new_esEs25(vwx370, vwx380, ty_@0) -> new_esEs10(vwx370, vwx380) new_ltEs6(vwx301, vwx401, ty_Double) -> new_ltEs8(vwx301, vwx401) new_ltEs19(vwx302, vwx402, app(ty_[], bae)) -> new_ltEs17(vwx302, vwx402, bae) new_esEs20(vwx371, vwx381, app(ty_Ratio, cbc)) -> new_esEs12(vwx371, vwx381, cbc) new_esEs21(vwx370, vwx380, app(ty_Maybe, cec)) -> new_esEs4(vwx370, vwx380, cec) new_primMulInt(Neg(vwx3000), Neg(vwx4010)) -> Pos(new_primMulNat0(vwx3000, vwx4010)) new_primCmpInt(Pos(Zero), Pos(Succ(vwx4000))) -> new_primCmpNat0(Zero, Succ(vwx4000)) new_ltEs11(Just(vwx300), Just(vwx400), ty_Integer) -> new_ltEs4(vwx300, vwx400) new_lt20(vwx300, vwx400, app(ty_Maybe, bbh)) -> new_lt10(vwx300, vwx400, bbh) new_esEs8(Char(vwx370), Char(vwx380)) -> new_primEqNat0(vwx370, vwx380) new_lt10(vwx300, vwx400, dd) -> new_esEs9(new_compare13(vwx300, vwx400, dd)) new_esEs6(Left(vwx370), Left(vwx380), ty_@0, bef) -> new_esEs10(vwx370, vwx380) new_esEs19(vwx370, vwx380, app(ty_Ratio, caa)) -> new_esEs12(vwx370, vwx380, caa) new_ltEs18(LT, EQ) -> True new_esEs24(vwx37, vwx38, app(app(ty_@2, bhd), bhe)) -> new_esEs5(vwx37, vwx38, bhd, bhe) new_compare14(vwx300, vwx400, app(app(ty_@2, bdc), bdd)) -> new_compare8(vwx300, vwx400, bdc, bdd) new_ltEs19(vwx302, vwx402, ty_Double) -> new_ltEs8(vwx302, vwx402) new_esEs4(Just(vwx370), Just(vwx380), app(ty_Maybe, ccf)) -> new_esEs4(vwx370, vwx380, ccf) new_compare14(vwx300, vwx400, ty_Ordering) -> new_compare27(vwx300, vwx400) new_esEs23(vwx371, vwx381, ty_Int) -> new_esEs14(vwx371, vwx381) new_esEs24(vwx37, vwx38, ty_Char) -> new_esEs8(vwx37, vwx38) new_ltEs13(Left(vwx300), Left(vwx400), ty_Double, eg) -> new_ltEs8(vwx300, vwx400) new_lt5(vwx300, vwx400, ty_Char) -> new_lt11(vwx300, vwx400) new_lt19(vwx301, vwx401, app(ty_Maybe, baf)) -> new_lt10(vwx301, vwx401, baf) new_esEs21(vwx370, vwx380, app(app(ty_Either, cfa), cfb)) -> new_esEs6(vwx370, vwx380, cfa, cfb) new_esEs25(vwx370, vwx380, ty_Integer) -> new_esEs16(vwx370, vwx380) new_lt5(vwx300, vwx400, ty_Bool) -> new_lt4(vwx300, vwx400) new_not0 -> True new_esEs6(Left(vwx370), Left(vwx380), ty_Float, bef) -> new_esEs11(vwx370, vwx380) new_esEs27(vwx372, vwx382, app(app(ty_@2, dba), dbb)) -> new_esEs5(vwx372, vwx382, dba, dbb) new_esEs19(vwx370, vwx380, ty_Bool) -> new_esEs18(vwx370, vwx380) new_primMulInt(Pos(vwx3000), Neg(vwx4010)) -> Neg(new_primMulNat0(vwx3000, vwx4010)) new_primMulInt(Neg(vwx3000), Pos(vwx4010)) -> Neg(new_primMulNat0(vwx3000, vwx4010)) new_lt20(vwx300, vwx400, app(app(ty_Either, bcc), bcd)) -> new_lt13(vwx300, vwx400, bcc, bcd) new_esEs24(vwx37, vwx38, app(ty_Maybe, ccc)) -> new_esEs4(vwx37, vwx38, ccc) new_esEs6(Right(vwx370), Right(vwx380), bga, app(app(ty_Either, bhb), bhc)) -> new_esEs6(vwx370, vwx380, bhb, bhc) new_esEs19(vwx370, vwx380, ty_Double) -> new_esEs15(vwx370, vwx380) new_esEs4(Just(vwx370), Just(vwx380), ty_Float) -> new_esEs11(vwx370, vwx380) new_lt20(vwx300, vwx400, app(ty_[], bch)) -> new_lt17(vwx300, vwx400, bch) new_esEs25(vwx370, vwx380, ty_Bool) -> new_esEs18(vwx370, vwx380) new_ltEs8(vwx30, vwx40) -> new_not(new_compare16(vwx30, vwx40)) new_compare24(vwx300, vwx400, False, dd) -> new_compare110(vwx300, vwx400, new_ltEs11(vwx300, vwx400, dd), dd) new_ltEs11(Just(vwx300), Just(vwx400), app(ty_[], bh)) -> new_ltEs17(vwx300, vwx400, bh) new_compare16(Double(vwx300, Pos(vwx3010)), Double(vwx400, Pos(vwx4010))) -> new_compare9(new_sr(vwx300, Pos(vwx4010)), new_sr(Pos(vwx3010), vwx400)) new_ltEs13(Left(vwx300), Left(vwx400), app(ty_Maybe, ef), eg) -> new_ltEs11(vwx300, vwx400, ef) new_sr0(Integer(vwx3000), Integer(vwx4010)) -> Integer(new_primMulInt(vwx3000, vwx4010)) new_esEs25(vwx370, vwx380, ty_Float) -> new_esEs11(vwx370, vwx380) new_esEs4(Just(vwx370), Just(vwx380), app(app(ty_Either, cdd), cde)) -> new_esEs6(vwx370, vwx380, cdd, cde) new_esEs26(vwx371, vwx381, ty_@0) -> new_esEs10(vwx371, vwx381) new_esEs20(vwx371, vwx381, ty_Double) -> new_esEs15(vwx371, vwx381) new_esEs6(Left(vwx370), Left(vwx380), ty_Bool, bef) -> new_esEs18(vwx370, vwx380) new_compare0([], :(vwx400, vwx401), bda) -> LT new_asAs(True, vwx48) -> vwx48 new_esEs11(Float(vwx370, vwx371), Float(vwx380, vwx381)) -> new_esEs14(new_sr(vwx370, vwx381), new_sr(vwx371, vwx380)) new_esEs19(vwx370, vwx380, ty_Float) -> new_esEs11(vwx370, vwx380) new_compare10(vwx300, vwx400, False, dh, ea) -> GT new_esEs21(vwx370, vwx380, ty_@0) -> new_esEs10(vwx370, vwx380) new_esEs6(Left(vwx370), Left(vwx380), ty_Double, bef) -> new_esEs15(vwx370, vwx380) new_esEs27(vwx372, vwx382, app(ty_[], dbe)) -> new_esEs13(vwx372, vwx382, dbe) new_esEs25(vwx370, vwx380, ty_Double) -> new_esEs15(vwx370, vwx380) new_esEs6(Left(vwx370), Right(vwx380), bga, bef) -> False new_esEs6(Right(vwx370), Left(vwx380), bga, bef) -> False new_ltEs13(Right(vwx300), Right(vwx400), ga, app(app(ty_Either, ge), gf)) -> new_ltEs13(vwx300, vwx400, ge, gf) new_compare14(vwx300, vwx400, app(app(ty_Either, bde), bdf)) -> new_compare18(vwx300, vwx400, bde, bdf) new_compare14(vwx300, vwx400, ty_Float) -> new_compare26(vwx300, vwx400) new_esEs6(Left(vwx370), Left(vwx380), ty_Integer, bef) -> new_esEs16(vwx370, vwx380) new_ltEs11(Just(vwx300), Just(vwx400), app(ty_Ratio, cdg)) -> new_ltEs7(vwx300, vwx400, cdg) new_esEs24(vwx37, vwx38, app(ty_Ratio, cfe)) -> new_esEs12(vwx37, vwx38, cfe) new_esEs20(vwx371, vwx381, ty_Char) -> new_esEs8(vwx371, vwx381) new_ltEs13(Left(vwx300), Left(vwx400), app(app(ty_@2, eh), fa), eg) -> new_ltEs5(vwx300, vwx400, eh, fa) new_esEs27(vwx372, vwx382, ty_Ordering) -> new_esEs17(vwx372, vwx382) new_ltEs11(Just(vwx300), Just(vwx400), ty_Int) -> new_ltEs10(vwx300, vwx400) new_esEs18(False, False) -> True new_ltEs6(vwx301, vwx401, app(app(app(ty_@3, cg), da), db)) -> new_ltEs14(vwx301, vwx401, cg, da, db) new_esEs20(vwx371, vwx381, ty_Bool) -> new_esEs18(vwx371, vwx381) new_ltEs19(vwx302, vwx402, ty_@0) -> new_ltEs15(vwx302, vwx402) new_primCmpInt(Pos(Succ(vwx3000)), Pos(vwx400)) -> new_primCmpNat0(Succ(vwx3000), vwx400) new_lt14(vwx300, vwx400, eb, ec, ed) -> new_esEs9(new_compare19(vwx300, vwx400, eb, ec, ed)) new_primCompAux00(vwx53, EQ) -> vwx53 new_esEs19(vwx370, vwx380, ty_Integer) -> new_esEs16(vwx370, vwx380) new_compare0([], [], bda) -> EQ new_sr(vwx300, vwx401) -> new_primMulInt(vwx300, vwx401) new_lt19(vwx301, vwx401, ty_Double) -> new_lt7(vwx301, vwx401) new_esEs5(@2(vwx370, vwx371), @2(vwx380, vwx381), bhd, bhe) -> new_asAs(new_esEs19(vwx370, vwx380, bhd), new_esEs20(vwx371, vwx381, bhe)) new_primMulNat0(Zero, Zero) -> Zero new_ltEs9(False, False) -> True new_ltEs6(vwx301, vwx401, ty_Char) -> new_ltEs12(vwx301, vwx401) new_esEs21(vwx370, vwx380, ty_Bool) -> new_esEs18(vwx370, vwx380) new_ltEs19(vwx302, vwx402, app(ty_Ratio, cff)) -> new_ltEs7(vwx302, vwx402, cff) new_lt8(vwx300, vwx400) -> new_esEs9(new_compare7(vwx300, vwx400)) new_lt15(vwx300, vwx400) -> new_esEs9(new_compare25(vwx300, vwx400)) new_esEs6(Left(vwx370), Left(vwx380), app(ty_Maybe, bfa), bef) -> new_esEs4(vwx370, vwx380, bfa) new_esEs20(vwx371, vwx381, ty_Float) -> new_esEs11(vwx371, vwx381) new_compare111(vwx300, vwx400, False) -> GT new_esEs26(vwx371, vwx381, app(app(ty_Either, dag), dah)) -> new_esEs6(vwx371, vwx381, dag, dah) new_compare211(vwx300, vwx400, True) -> EQ new_lt16(vwx300, vwx400) -> new_esEs9(new_compare26(vwx300, vwx400)) new_lt5(vwx300, vwx400, app(app(ty_@2, df), dg)) -> new_lt12(vwx300, vwx400, df, dg) new_esEs20(vwx371, vwx381, ty_Integer) -> new_esEs16(vwx371, vwx381) new_ltEs11(Nothing, Just(vwx400), cdf) -> True new_esEs4(Nothing, Nothing, ccc) -> True new_esEs4(Nothing, Just(vwx380), ccc) -> False new_esEs4(Just(vwx370), Nothing, ccc) -> False new_esEs4(Just(vwx370), Just(vwx380), ty_Double) -> new_esEs15(vwx370, vwx380) new_esEs21(vwx370, vwx380, ty_Float) -> new_esEs11(vwx370, vwx380) new_ltEs6(vwx301, vwx401, ty_Bool) -> new_ltEs9(vwx301, vwx401) new_esEs19(vwx370, vwx380, app(app(ty_Either, caf), cag)) -> new_esEs6(vwx370, vwx380, caf, cag) new_ltEs13(Right(vwx300), Right(vwx400), ga, ty_Bool) -> new_ltEs9(vwx300, vwx400) new_ltEs13(Right(vwx300), Right(vwx400), ga, ty_Char) -> new_ltEs12(vwx300, vwx400) new_ltEs19(vwx302, vwx402, app(ty_Maybe, he)) -> new_ltEs11(vwx302, vwx402, he) new_esEs6(Right(vwx370), Right(vwx380), bga, app(ty_Maybe, bgd)) -> new_esEs4(vwx370, vwx380, bgd) new_esEs4(Just(vwx370), Just(vwx380), ty_Bool) -> new_esEs18(vwx370, vwx380) new_esEs25(vwx370, vwx380, app(app(ty_Either, che), chf)) -> new_esEs6(vwx370, vwx380, che, chf) new_lt5(vwx300, vwx400, ty_Integer) -> new_lt8(vwx300, vwx400) new_lt5(vwx300, vwx400, app(app(app(ty_@3, eb), ec), ed)) -> new_lt14(vwx300, vwx400, eb, ec, ed) new_ltEs13(Right(vwx300), Right(vwx400), ga, app(ty_Maybe, gb)) -> new_ltEs11(vwx300, vwx400, gb) new_ltEs9(True, False) -> False new_compare29(vwx300, vwx400, True, eb, ec, ed) -> EQ new_ltEs13(Left(vwx300), Left(vwx400), ty_Int, eg) -> new_ltEs10(vwx300, vwx400) new_primCompAux0(vwx300, vwx400, vwx49, bda) -> new_primCompAux00(vwx49, new_compare14(vwx300, vwx400, bda)) new_compare14(vwx300, vwx400, ty_Integer) -> new_compare7(vwx300, vwx400) new_esEs26(vwx371, vwx381, ty_Float) -> new_esEs11(vwx371, vwx381) new_lt7(vwx300, vwx400) -> new_esEs9(new_compare16(vwx300, vwx400)) new_esEs4(Just(vwx370), Just(vwx380), ty_Integer) -> new_esEs16(vwx370, vwx380) new_esEs17(GT, GT) -> True new_primEqInt(Neg(Succ(vwx3700)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vwx3800))) -> False new_esEs6(Right(vwx370), Right(vwx380), bga, ty_Ordering) -> new_esEs17(vwx370, vwx380) new_lt19(vwx301, vwx401, ty_Integer) -> new_lt8(vwx301, vwx401) new_lt19(vwx301, vwx401, app(app(ty_Either, bbb), bbc)) -> new_lt13(vwx301, vwx401, bbb, bbc) new_esEs14(vwx37, vwx38) -> new_primEqInt(vwx37, vwx38) new_esEs4(Just(vwx370), Just(vwx380), ty_Char) -> new_esEs8(vwx370, vwx380) new_ltEs13(Right(vwx300), Right(vwx400), ga, app(app(ty_@2, gc), gd)) -> new_ltEs5(vwx300, vwx400, gc, gd) new_primEqInt(Pos(Succ(vwx3700)), Pos(Succ(vwx3800))) -> new_primEqNat0(vwx3700, vwx3800) new_lt20(vwx300, vwx400, ty_Double) -> new_lt7(vwx300, vwx400) new_esEs21(vwx370, vwx380, ty_Double) -> new_esEs15(vwx370, vwx380) new_compare26(Float(vwx300, Neg(vwx3010)), Float(vwx400, Neg(vwx4010))) -> new_compare9(new_sr(vwx300, Neg(vwx4010)), new_sr(Neg(vwx3010), vwx400)) new_esEs20(vwx371, vwx381, app(app(ty_Either, cbh), cca)) -> new_esEs6(vwx371, vwx381, cbh, cca) new_esEs6(Right(vwx370), Right(vwx380), bga, ty_Int) -> new_esEs14(vwx370, vwx380) new_primEqInt(Pos(Succ(vwx3700)), Neg(vwx380)) -> False new_primEqInt(Neg(Succ(vwx3700)), Pos(vwx380)) -> False new_lt12(vwx300, vwx400, df, dg) -> new_esEs9(new_compare8(vwx300, vwx400, df, dg)) new_primCmpInt(Neg(Zero), Neg(Succ(vwx4000))) -> new_primCmpNat0(Succ(vwx4000), Zero) new_compare23(vwx300, vwx400, False, df, dg) -> new_compare12(vwx300, vwx400, new_ltEs5(vwx300, vwx400, df, dg), df, dg) new_lt5(vwx300, vwx400, ty_Float) -> new_lt16(vwx300, vwx400) new_ltEs11(Just(vwx300), Just(vwx400), app(app(ty_Either, bc), bd)) -> new_ltEs13(vwx300, vwx400, bc, bd) new_esEs9(GT) -> False new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs21(vwx370, vwx380, ty_Integer) -> new_esEs16(vwx370, vwx380) new_ltEs11(Just(vwx300), Just(vwx400), ty_@0) -> new_ltEs15(vwx300, vwx400) new_esEs24(vwx37, vwx38, ty_Ordering) -> new_esEs17(vwx37, vwx38) new_esEs26(vwx371, vwx381, ty_Bool) -> new_esEs18(vwx371, vwx381) new_esEs21(vwx370, vwx380, ty_Char) -> new_esEs8(vwx370, vwx380) new_esEs20(vwx371, vwx381, ty_Int) -> new_esEs14(vwx371, vwx381) new_compare14(vwx300, vwx400, ty_Bool) -> new_compare6(vwx300, vwx400) new_esEs24(vwx37, vwx38, ty_Float) -> new_esEs11(vwx37, vwx38) new_compare28(vwx300, vwx400, False, dh, ea) -> new_compare10(vwx300, vwx400, new_ltEs13(vwx300, vwx400, dh, ea), dh, ea) new_compare26(Float(vwx300, Pos(vwx3010)), Float(vwx400, Pos(vwx4010))) -> new_compare9(new_sr(vwx300, Pos(vwx4010)), new_sr(Pos(vwx3010), vwx400)) new_lt19(vwx301, vwx401, app(app(ty_@2, bah), bba)) -> new_lt12(vwx301, vwx401, bah, bba) new_ltEs6(vwx301, vwx401, ty_Integer) -> new_ltEs4(vwx301, vwx401) new_esEs26(vwx371, vwx381, ty_Integer) -> new_esEs16(vwx371, vwx381) new_compare112(vwx300, vwx400, True, eb, ec, ed) -> LT new_esEs20(vwx371, vwx381, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_esEs7(vwx371, vwx381, cbe, cbf, cbg) new_compare0(:(vwx300, vwx301), [], bda) -> GT new_lt19(vwx301, vwx401, ty_Int) -> new_lt9(vwx301, vwx401) new_esEs18(False, True) -> False new_esEs18(True, False) -> False new_esEs16(Integer(vwx370), Integer(vwx380)) -> new_primEqInt(vwx370, vwx380) new_esEs26(vwx371, vwx381, ty_Double) -> new_esEs15(vwx371, vwx381) new_ltEs12(vwx30, vwx40) -> new_not(new_compare17(vwx30, vwx40)) new_esEs10(@0, @0) -> True new_compare112(vwx300, vwx400, False, eb, ec, ed) -> GT new_pePe(False, vwx37, vwx38, vwx39, cga) -> new_asAs(new_esEs24(vwx37, vwx38, cga), vwx39) new_compare16(Double(vwx300, Neg(vwx3010)), Double(vwx400, Neg(vwx4010))) -> new_compare9(new_sr(vwx300, Neg(vwx4010)), new_sr(Neg(vwx3010), vwx400)) new_ltEs6(vwx301, vwx401, app(ty_Maybe, cb)) -> new_ltEs11(vwx301, vwx401, cb) new_compare19(vwx300, vwx400, eb, ec, ed) -> new_compare29(vwx300, vwx400, new_esEs7(vwx300, vwx400, eb, ec, ed), eb, ec, ed) new_ltEs13(Right(vwx300), Right(vwx400), ga, app(ty_Ratio, cfd)) -> new_ltEs7(vwx300, vwx400, cfd) new_esEs27(vwx372, vwx382, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_esEs7(vwx372, vwx382, dbf, dbg, dbh) new_lt20(vwx300, vwx400, ty_Int) -> new_lt9(vwx300, vwx400) new_primPlusNat0(Succ(vwx670), vwx40100) -> Succ(Succ(new_primPlusNat1(vwx670, vwx40100))) new_esEs22(vwx370, vwx380, ty_Integer) -> new_esEs16(vwx370, vwx380) new_esEs6(Right(vwx370), Right(vwx380), bga, app(ty_Ratio, bge)) -> new_esEs12(vwx370, vwx380, bge) new_ltEs13(Left(vwx300), Left(vwx400), ty_Integer, eg) -> new_ltEs4(vwx300, vwx400) new_ltEs11(Just(vwx300), Just(vwx400), ty_Double) -> new_ltEs8(vwx300, vwx400) new_ltEs4(vwx30, vwx40) -> new_not(new_compare7(vwx30, vwx40)) new_lt5(vwx300, vwx400, ty_Int) -> new_lt9(vwx300, vwx400) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare0(:(vwx300, vwx301), :(vwx400, vwx401), bda) -> new_primCompAux0(vwx300, vwx400, new_compare0(vwx301, vwx401, bda), bda) new_primPlusNat1(Zero, Zero) -> Zero new_lt19(vwx301, vwx401, ty_Bool) -> new_lt4(vwx301, vwx401) new_ltEs6(vwx301, vwx401, ty_Float) -> new_ltEs16(vwx301, vwx401) new_esEs25(vwx370, vwx380, app(ty_Maybe, cgg)) -> new_esEs4(vwx370, vwx380, cgg) new_ltEs18(GT, LT) -> False new_esEs27(vwx372, vwx382, app(app(ty_Either, dca), dcb)) -> new_esEs6(vwx372, vwx382, dca, dcb) new_esEs27(vwx372, vwx382, ty_Int) -> new_esEs14(vwx372, vwx382) new_compare11(vwx300, vwx400, True) -> LT new_ltEs13(Left(vwx300), Left(vwx400), ty_Float, eg) -> new_ltEs16(vwx300, vwx400) new_esEs19(vwx370, vwx380, ty_Char) -> new_esEs8(vwx370, vwx380) new_ltEs16(vwx30, vwx40) -> new_not(new_compare26(vwx30, vwx40)) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_compare8(vwx300, vwx400, df, dg) -> new_compare23(vwx300, vwx400, new_esEs5(vwx300, vwx400, df, dg), df, dg) new_primMulNat0(Succ(vwx30000), Succ(vwx40100)) -> new_primPlusNat0(new_primMulNat0(vwx30000, Succ(vwx40100)), vwx40100) new_compare6(vwx300, vwx400) -> new_compare211(vwx300, vwx400, new_esEs18(vwx300, vwx400)) new_lt20(vwx300, vwx400, ty_Ordering) -> new_lt18(vwx300, vwx400) new_esEs6(Left(vwx370), Left(vwx380), app(app(app(ty_@3, bfd), bfe), bff), bef) -> new_esEs7(vwx370, vwx380, bfd, bfe, bff) new_primCmpNat0(Succ(vwx3000), Succ(vwx4000)) -> new_primCmpNat0(vwx3000, vwx4000) new_esEs4(Just(vwx370), Just(vwx380), ty_@0) -> new_esEs10(vwx370, vwx380) new_ltEs13(Left(vwx300), Left(vwx400), app(ty_[], fh), eg) -> new_ltEs17(vwx300, vwx400, fh) new_esEs27(vwx372, vwx382, app(ty_Maybe, dbc)) -> new_esEs4(vwx372, vwx382, dbc) new_lt19(vwx301, vwx401, app(ty_[], bbg)) -> new_lt17(vwx301, vwx401, bbg) new_ltEs11(Just(vwx300), Nothing, cdf) -> False new_ltEs18(GT, EQ) -> False new_lt5(vwx300, vwx400, ty_Ordering) -> new_lt18(vwx300, vwx400) new_ltEs11(Nothing, Nothing, cdf) -> True new_ltEs19(vwx302, vwx402, ty_Float) -> new_ltEs16(vwx302, vwx402) new_ltEs13(Right(vwx300), Right(vwx400), ga, ty_Double) -> new_ltEs8(vwx300, vwx400) new_esEs6(Left(vwx370), Left(vwx380), app(ty_[], bfc), bef) -> new_esEs13(vwx370, vwx380, bfc) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs13(Right(vwx300), Right(vwx400), ga, ty_Ordering) -> new_ltEs18(vwx300, vwx400) new_ltEs13(Right(vwx300), Right(vwx400), ga, ty_@0) -> new_ltEs15(vwx300, vwx400) new_esEs26(vwx371, vwx381, app(ty_Ratio, dab)) -> new_esEs12(vwx371, vwx381, dab) new_compare29(vwx300, vwx400, False, eb, ec, ed) -> new_compare112(vwx300, vwx400, new_ltEs14(vwx300, vwx400, eb, ec, ed), eb, ec, ed) new_esEs25(vwx370, vwx380, app(ty_Ratio, cgh)) -> new_esEs12(vwx370, vwx380, cgh) new_lt19(vwx301, vwx401, ty_@0) -> new_lt15(vwx301, vwx401) new_esEs24(vwx37, vwx38, ty_Bool) -> new_esEs18(vwx37, vwx38) new_esEs26(vwx371, vwx381, app(ty_Maybe, daa)) -> new_esEs4(vwx371, vwx381, daa) new_compare17(Char(vwx300), Char(vwx400)) -> new_primCmpNat0(vwx300, vwx400) new_primEqNat0(Zero, Zero) -> True new_lt9(vwx300, vwx400) -> new_esEs9(new_compare9(vwx300, vwx400)) new_lt5(vwx300, vwx400, ty_@0) -> new_lt15(vwx300, vwx400) new_esEs20(vwx371, vwx381, ty_@0) -> new_esEs10(vwx371, vwx381) new_compare110(vwx300, vwx400, True, dd) -> LT new_compare14(vwx300, vwx400, app(ty_Maybe, bdb)) -> new_compare13(vwx300, vwx400, bdb) new_ltEs18(GT, GT) -> True new_esEs6(Right(vwx370), Right(vwx380), bga, ty_@0) -> new_esEs10(vwx370, vwx380) new_not(EQ) -> new_not0 new_esEs19(vwx370, vwx380, app(ty_[], cab)) -> new_esEs13(vwx370, vwx380, cab) new_asAs(False, vwx48) -> False new_ltEs13(Left(vwx300), Left(vwx400), app(app(app(ty_@3, fd), ff), fg), eg) -> new_ltEs14(vwx300, vwx400, fd, ff, fg) new_compare14(vwx300, vwx400, ty_Int) -> new_compare9(vwx300, vwx400) new_pePe(True, vwx37, vwx38, vwx39, cga) -> True new_esEs24(vwx37, vwx38, ty_Integer) -> new_esEs16(vwx37, vwx38) new_compare28(vwx300, vwx400, True, dh, ea) -> EQ new_compare15(:%(vwx300, vwx301), :%(vwx400, vwx401), ty_Int) -> new_compare9(new_sr(vwx300, vwx401), new_sr(vwx400, vwx301)) new_lt20(vwx300, vwx400, ty_@0) -> new_lt15(vwx300, vwx400) new_esEs19(vwx370, vwx380, ty_@0) -> new_esEs10(vwx370, vwx380) new_lt4(vwx300, vwx400) -> new_esEs9(new_compare6(vwx300, vwx400)) new_lt19(vwx301, vwx401, ty_Ordering) -> new_lt18(vwx301, vwx401) new_esEs24(vwx37, vwx38, ty_Double) -> new_esEs15(vwx37, vwx38) new_ltEs11(Just(vwx300), Just(vwx400), ty_Ordering) -> new_ltEs18(vwx300, vwx400) new_compare12(vwx300, vwx400, True, df, dg) -> LT new_esEs20(vwx371, vwx381, app(ty_[], cbd)) -> new_esEs13(vwx371, vwx381, cbd) The set Q consists of the following terms: new_ltEs19(x0, x1, ty_Ordering) new_esEs25(x0, x1, ty_@0) new_ltEs13(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs25(x0, x1, ty_Bool) new_compare14(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Integer) new_esEs11(Float(x0, x1), Float(x2, x3)) new_esEs21(x0, x1, ty_Bool) new_not0 new_ltEs6(x0, x1, ty_Int) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_lt19(x0, x1, ty_Integer) new_primPlusNat1(Zero, Zero) new_lt19(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Float) new_esEs20(x0, x1, ty_Integer) new_ltEs6(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Int) new_lt15(x0, x1) new_esEs24(x0, x1, ty_Double) new_ltEs13(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs18(True, True) new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primPlusNat0(Succ(x0), x1) new_asAs(False, x0) new_lt7(x0, x1) new_primEqInt(Pos(Zero), Pos(Zero)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_compare23(x0, x1, False, x2, x3) new_lt5(x0, x1, app(ty_Ratio, x2)) new_lt10(x0, x1, x2) new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs26(x0, x1, ty_Bool) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Char) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_lt12(x0, x1, x2, x3) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs11(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare0(:(x0, x1), :(x2, x3), x4) new_ltEs19(x0, x1, ty_Double) new_lt20(x0, x1, app(ty_Maybe, x2)) new_compare0(:(x0, x1), [], x2) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Neg(Zero), Neg(Zero)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs26(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare17(Char(x0), Char(x1)) new_not(GT) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_compare25(@0, @0) new_ltEs9(True, True) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_compare13(x0, x1, x2) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs13(:(x0, x1), :(x2, x3), x4) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Bool) new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs15(Double(x0, x1), Double(x2, x3)) new_esEs14(x0, x1) new_ltEs6(x0, x1, app(app(ty_Either, x2), x3)) new_compare14(x0, x1, ty_Float) new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt5(x0, x1, ty_Double) new_esEs4(Nothing, Just(x0), x1) new_ltEs13(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs26(x0, x1, ty_@0) new_esEs24(x0, x1, ty_Char) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_Float) new_lt20(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs15(x0, x1) new_lt19(x0, x1, ty_Char) new_esEs17(EQ, GT) new_esEs17(GT, EQ) new_esEs19(x0, x1, ty_Double) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_ltEs11(Just(x0), Just(x1), ty_Float) new_primMulInt(Pos(x0), Pos(x1)) new_esEs26(x0, x1, ty_Float) new_esEs19(x0, x1, ty_@0) new_esEs4(Just(x0), Just(x1), ty_Ordering) new_lt11(x0, x1) new_lt19(x0, x1, ty_@0) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, ty_Char) new_esEs19(x0, x1, ty_Char) new_ltEs6(x0, x1, ty_Char) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_primEqNat0(Succ(x0), Zero) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs11(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_@0) new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) new_esEs27(x0, x1, ty_Integer) new_lt5(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(EQ, GT) new_ltEs18(GT, EQ) new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) new_esEs6(Left(x0), Left(x1), ty_Float, x2) new_compare11(x0, x1, True) new_esEs25(x0, x1, ty_Integer) new_ltEs13(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, ty_Int) new_compare210(x0, x1, False) new_esEs21(x0, x1, ty_Int) new_ltEs6(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, LT) new_ltEs6(x0, x1, ty_Double) new_esEs19(x0, x1, ty_Int) new_lt20(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_@0) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_lt19(x0, x1, ty_Int) new_esEs24(x0, x1, ty_@0) new_compare0([], :(x0, x1), x2) new_ltEs13(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs17(LT, GT) new_esEs17(GT, LT) new_ltEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(x0, x1, ty_Float) new_primCmpNat0(Zero, Succ(x0)) new_compare210(x0, x1, True) new_compare211(x0, x1, True) new_compare14(x0, x1, app(ty_[], x2)) new_esEs19(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(x0, x1, x2) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, app(ty_[], x2)) new_pePe(False, x0, x1, x2, x3) new_ltEs13(Left(x0), Left(x1), ty_Integer, x2) new_lt5(x0, x1, ty_Ordering) new_esEs18(False, True) new_esEs18(True, False) new_lt6(x0, x1, x2) new_compare12(x0, x1, True, x2, x3) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs18(GT, GT) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_lt14(x0, x1, x2, x3, x4) new_ltEs11(Just(x0), Just(x1), ty_Double) new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare26(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_primPlusNat0(Zero, x0) new_esEs19(x0, x1, ty_Bool) new_compare14(x0, x1, ty_Integer) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, ty_Int) new_esEs20(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Bool) new_ltEs11(Nothing, Just(x0), x1) new_lt5(x0, x1, app(ty_[], x2)) new_esEs6(Left(x0), Left(x1), ty_Bool, x2) new_esEs26(x0, x1, ty_Double) new_esEs9(EQ) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs19(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, ty_Char) new_ltEs9(False, True) new_ltEs9(True, False) new_compare14(x0, x1, app(app(ty_Either, x2), x3)) new_sr(x0, x1) new_compare6(x0, x1) new_esEs20(x0, x1, ty_Double) new_ltEs18(LT, LT) new_primMulNat0(Succ(x0), Succ(x1)) new_compare24(x0, x1, True, x2) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs6(Right(x0), Right(x1), x2, ty_@0) new_esEs6(Right(x0), Right(x1), x2, ty_Double) new_esEs9(LT) new_esEs8(Char(x0), Char(x1)) new_esEs16(Integer(x0), Integer(x1)) new_esEs27(x0, x1, ty_@0) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs13([], [], x0) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs13(Left(x0), Left(x1), ty_Float, x2) new_compare14(x0, x1, ty_Ordering) new_compare15(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs25(x0, x1, ty_Int) new_compare0([], [], x0) new_ltEs13(Left(x0), Left(x1), ty_Bool, x2) new_ltEs11(Just(x0), Just(x1), app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs13(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Left(x0), Left(x1), ty_Int, x2) new_esEs21(x0, x1, ty_Integer) new_esEs4(Just(x0), Just(x1), ty_Double) new_esEs10(@0, @0) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Double) new_primPlusNat1(Zero, Succ(x0)) new_ltEs13(Right(x0), Right(x1), x2, ty_Float) new_esEs4(Just(x0), Just(x1), ty_@0) new_lt20(x0, x1, ty_@0) new_esEs19(x0, x1, ty_Ordering) new_ltEs13(Right(x0), Right(x1), x2, ty_Int) new_lt9(x0, x1) new_ltEs13(Left(x0), Left(x1), ty_Char, x2) new_lt19(x0, x1, ty_Ordering) new_ltEs6(x0, x1, app(ty_Maybe, x2)) new_esEs21(x0, x1, ty_Ordering) new_compare28(x0, x1, True, x2, x3) new_esEs6(Left(x0), Left(x1), ty_Integer, x2) new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs19(x0, x1, ty_Integer) new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt16(x0, x1) new_lt5(x0, x1, ty_Integer) new_lt19(x0, x1, app(ty_Ratio, x2)) new_compare112(x0, x1, False, x2, x3, x4) new_compare9(x0, x1) new_compare27(x0, x1) new_ltEs6(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, ty_Integer) new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, ty_Float) new_primMulNat0(Zero, Succ(x0)) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_primMulNat0(Zero, Zero) new_compare14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare16(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare16(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_lt18(x0, x1) new_esEs6(Left(x0), Left(x1), ty_Int, x2) new_not(LT) new_ltEs11(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare16(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_primCompAux00(x0, GT) new_lt8(x0, x1) new_esEs4(Just(x0), Just(x1), ty_Integer) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Right(x0), Right(x1), x2, ty_Char) new_compare211(x0, x1, False) new_ltEs11(Just(x0), Just(x1), ty_Bool) new_compare111(x0, x1, True) new_esEs4(Just(x0), Just(x1), ty_Bool) new_esEs6(Left(x0), Left(x1), ty_Char, x2) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs4(x0, x1) new_esEs6(Left(x0), Left(x1), ty_Double, x2) new_compare28(x0, x1, False, x2, x3) new_ltEs11(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare16(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_ltEs13(Right(x0), Right(x1), x2, ty_Bool) new_esEs13([], :(x0, x1), x2) new_compare11(x0, x1, False) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(x0, x1, ty_Float) new_esEs6(Right(x0), Right(x1), x2, ty_Bool) new_lt5(x0, x1, ty_@0) new_lt4(x0, x1) new_esEs6(Left(x0), Right(x1), x2, x3) new_esEs6(Right(x0), Left(x1), x2, x3) new_esEs27(x0, x1, ty_Double) new_ltEs13(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs14(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare15(:%(x0, x1), :%(x2, x3), ty_Integer) new_compare10(x0, x1, True, x2, x3) new_ltEs13(Left(x0), Left(x1), ty_Ordering, x2) new_primEqNat0(Zero, Succ(x0)) new_compare14(x0, x1, ty_Bool) new_compare29(x0, x1, True, x2, x3, x4) new_ltEs12(x0, x1) new_lt13(x0, x1, x2, x3) new_ltEs11(Just(x0), Just(x1), ty_Int) new_ltEs5(@2(x0, x1), @2(x2, x3), x4, x5) new_compare29(x0, x1, False, x2, x3, x4) new_ltEs11(Just(x0), Nothing, x1) new_esEs17(LT, EQ) new_esEs17(EQ, LT) new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_compare14(x0, x1, ty_@0) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs11(Just(x0), Just(x1), ty_Char) new_ltEs18(EQ, LT) new_ltEs18(LT, EQ) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_esEs17(GT, GT) new_esEs27(x0, x1, ty_Ordering) new_primCompAux0(x0, x1, x2, x3) new_esEs13(:(x0, x1), [], x2) new_compare24(x0, x1, False, x2) new_esEs18(False, False) new_compare110(x0, x1, True, x2) new_esEs22(x0, x1, ty_Integer) new_compare7(Integer(x0), Integer(x1)) new_compare14(x0, x1, ty_Int) new_compare26(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare26(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_lt20(x0, x1, ty_Ordering) new_ltEs13(Left(x0), Left(x1), app(ty_[], x2), x3) new_asAs(True, x0) new_lt19(x0, x1, ty_Double) new_compare12(x0, x1, False, x2, x3) new_pePe(True, x0, x1, x2, x3) new_esEs19(x0, x1, ty_Float) new_esEs17(EQ, EQ) new_primPlusNat1(Succ(x0), Succ(x1)) new_ltEs11(Just(x0), Just(x1), ty_@0) new_esEs6(Left(x0), Left(x1), ty_@0, x2) new_ltEs13(Right(x0), Right(x1), x2, ty_Integer) new_ltEs13(Left(x0), Right(x1), x2, x3) new_ltEs13(Right(x0), Left(x1), x2, x3) new_esEs4(Nothing, Nothing, x0) new_ltEs17(x0, x1, x2) new_ltEs18(EQ, EQ) new_primCmpNat0(Succ(x0), Zero) new_compare14(x0, x1, ty_Double) new_esEs12(:%(x0, x1), :%(x2, x3), x4) new_lt5(x0, x1, ty_Bool) new_compare14(x0, x1, ty_Char) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs19(x0, x1, ty_Float) new_ltEs13(Right(x0), Right(x1), x2, ty_Ordering) new_esEs6(Right(x0), Right(x1), x2, ty_Integer) new_lt5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare8(x0, x1, x2, x3) new_esEs26(x0, x1, ty_Int) new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs25(x0, x1, ty_Double) new_compare112(x0, x1, True, x2, x3, x4) new_lt5(x0, x1, ty_Int) new_esEs24(x0, x1, ty_Bool) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, ty_Char) new_compare14(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, ty_Char) new_ltEs6(x0, x1, ty_Bool) new_esEs25(x0, x1, ty_Ordering) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, ty_Int) new_esEs21(x0, x1, ty_Float) new_lt5(x0, x1, ty_Char) new_esEs9(GT) new_primEqNat0(Succ(x0), Succ(x1)) new_sr0(Integer(x0), Integer(x1)) new_esEs21(x0, x1, ty_Double) new_lt19(x0, x1, ty_Float) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_compare110(x0, x1, False, x2) new_esEs26(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, ty_Int) new_compare26(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs6(x0, x1, ty_@0) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs5(@2(x0, x1), @2(x2, x3), x4, x5) new_lt20(x0, x1, ty_Bool) new_not(EQ) new_ltEs13(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt5(x0, x1, ty_Float) new_ltEs6(x0, x1, ty_Integer) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_Int) new_esEs22(x0, x1, ty_Int) new_lt17(x0, x1, x2) new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_primCompAux00(x0, EQ) new_primPlusNat1(Succ(x0), Zero) new_esEs26(x0, x1, ty_Char) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, ty_Char) new_ltEs18(LT, GT) new_lt5(x0, x1, app(ty_Maybe, x2)) new_ltEs13(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs18(GT, LT) new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primEqNat0(Zero, Zero) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_compare10(x0, x1, False, x2, x3) new_ltEs11(Nothing, Nothing, x0) new_compare19(x0, x1, x2, x3, x4) new_esEs20(x0, x1, ty_Bool) new_ltEs9(False, False) new_esEs20(x0, x1, ty_Ordering) new_esEs17(LT, LT) new_lt19(x0, x1, app(ty_[], x2)) new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs27(x0, x1, ty_Float) new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt20(x0, x1, ty_Char) new_ltEs8(x0, x1) new_ltEs10(x0, x1) new_esEs20(x0, x1, app(ty_[], x2)) new_compare14(x0, x1, app(ty_Maybe, x2)) new_ltEs13(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_primMulNat0(Succ(x0), Zero) new_esEs4(Just(x0), Just(x1), ty_Float) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_ltEs13(Right(x0), Right(x1), x2, ty_Double) new_ltEs13(Right(x0), Right(x1), x2, ty_@0) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare23(x0, x1, True, x2, x3) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(x0, x1, x2, x3) new_compare111(x0, x1, False) new_ltEs13(Left(x0), Left(x1), ty_@0, x2) new_esEs24(x0, x1, ty_Integer) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_esEs4(Just(x0), Just(x1), ty_Char) new_ltEs11(Just(x0), Just(x1), ty_Ordering) new_esEs4(Just(x0), Nothing, x1) new_esEs6(Right(x0), Right(x1), x2, ty_Float) new_ltEs13(Left(x0), Left(x1), ty_Double, x2) new_ltEs13(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs11(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs16(x0, x1) new_lt20(x0, x1, ty_Int) new_primCmpNat0(Zero, Zero) new_ltEs11(Just(x0), Just(x1), ty_Integer) new_esEs4(Just(x0), Just(x1), ty_Int) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primMulInt(Neg(x0), Neg(x1)) new_esEs24(x0, x1, ty_Ordering) 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_compare5(vwx300, vwx400, eb, ec, ed) -> new_compare22(vwx300, vwx400, new_esEs7(vwx300, vwx400, eb, ec, ed), eb, ec, ed) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_lt1(vwx300, vwx400, dh, ea) -> new_compare21(vwx300, vwx400, new_esEs6(vwx300, vwx400, dh, ea), dh, ea) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs3(:(vwx300, vwx301), :(vwx400, vwx401), bda) -> new_primCompAux(vwx300, vwx400, new_compare0(vwx301, vwx401, bda), bda) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare(:(vwx300, vwx301), :(vwx400, vwx401), bda) -> new_primCompAux(vwx300, vwx400, new_compare0(vwx301, vwx401, bda), bda) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_ltEs3(:(vwx300, vwx301), :(vwx400, vwx401), bda) -> new_compare(vwx301, vwx401, bda) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_compare22(vwx300, vwx400, False, eb, ec, ed) -> new_ltEs2(vwx300, vwx400, eb, ec, ed) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 *new_compare1(vwx300, vwx400, dd) -> new_compare2(vwx300, vwx400, new_esEs4(vwx300, vwx400, dd), dd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_compare21(vwx300, vwx400, False, dh, ea) -> new_ltEs1(vwx300, vwx400, dh, ea) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 *new_ltEs0(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(ty_Either, dh), ea), de) -> new_compare21(vwx300, vwx400, new_esEs6(vwx300, vwx400, dh, ea), dh, ea) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 *new_compare4(vwx300, vwx400, dh, ea) -> new_compare21(vwx300, vwx400, new_esEs6(vwx300, vwx400, dh, ea), dh, ea) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs0(@2(vwx300, vwx301), @2(vwx400, vwx401), ca, app(app(app(ty_@3, cg), da), db)) -> new_ltEs2(vwx301, vwx401, cg, da, db) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs0(@2(vwx300, vwx301), @2(vwx400, vwx401), ca, app(app(ty_@2, cc), cd)) -> new_ltEs0(vwx301, vwx401, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(@2(vwx300, vwx301), @2(vwx400, vwx401), ca, app(app(ty_Either, ce), cf)) -> new_ltEs1(vwx301, vwx401, ce, cf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(vwx300, vwx400, False, dd) -> new_ltEs(vwx300, vwx400, dd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3 *new_lt0(vwx300, vwx400, df, dg) -> new_compare20(vwx300, vwx400, new_esEs5(vwx300, vwx400, df, dg), df, dg) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs0(@2(vwx300, vwx301), @2(vwx400, vwx401), ca, app(ty_[], dc)) -> new_ltEs3(vwx301, vwx401, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare(:(vwx300, vwx301), :(vwx400, vwx401), bda) -> new_compare(vwx301, vwx401, bda) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_ltEs(Just(vwx300), Just(vwx400), app(app(app(ty_@3, be), bf), bg)) -> new_ltEs2(vwx300, vwx400, be, bf, bg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), hc, hd, app(app(app(ty_@3, bab), bac), bad)) -> new_ltEs2(vwx302, vwx402, bab, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_ltEs(Just(vwx300), Just(vwx400), app(app(ty_@2, ba), bb)) -> new_ltEs0(vwx300, vwx400, ba, bb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(Just(vwx300), Just(vwx400), app(app(ty_Either, bc), bd)) -> new_ltEs1(vwx300, vwx400, bc, bd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), hc, hd, app(app(ty_Either, hh), baa)) -> new_ltEs1(vwx302, vwx402, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs(Just(vwx300), Just(vwx400), app(ty_[], bh)) -> new_ltEs3(vwx300, vwx400, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), hc, hd, app(ty_[], bae)) -> new_ltEs3(vwx302, vwx402, bae) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs(Just(vwx300), Just(vwx400), app(ty_Maybe, h)) -> new_ltEs(vwx300, vwx400, h) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), hc, hd, app(app(ty_@2, hf), hg)) -> new_ltEs0(vwx302, vwx402, hf, hg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(vwx300, vwx400, False, df, dg) -> new_ltEs0(vwx300, vwx400, df, dg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 *new_lt(vwx300, vwx400, dd) -> new_compare2(vwx300, vwx400, new_esEs4(vwx300, vwx400, dd), dd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_ltEs0(@2(vwx300, vwx301), @2(vwx400, vwx401), ca, app(ty_Maybe, cb)) -> new_ltEs(vwx301, vwx401, cb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), hc, hd, app(ty_Maybe, he)) -> new_ltEs(vwx302, vwx402, he) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_primCompAux(vwx300, vwx400, vwx49, app(app(ty_Either, bde), bdf)) -> new_compare4(vwx300, vwx400, bde, bdf) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_ltEs0(@2(vwx300, vwx301), @2(vwx400, vwx401), app(ty_[], ee), de) -> new_compare(vwx300, vwx400, ee) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_primCompAux(vwx300, vwx400, vwx49, app(ty_[], beb)) -> new_compare(vwx300, vwx400, beb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_lt3(vwx300, vwx400, ee) -> new_compare(vwx300, vwx400, ee) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_primCompAux(vwx300, vwx400, vwx49, app(ty_Maybe, bdb)) -> new_compare1(vwx300, vwx400, bdb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(vwx300, vwx400, vwx49, app(app(ty_@2, bdc), bdd)) -> new_compare3(vwx300, vwx400, bdc, bdd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_primCompAux(vwx300, vwx400, vwx49, app(app(app(ty_@3, bdg), bdh), bea)) -> new_compare5(vwx300, vwx400, bdg, bdh, bea) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs0(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(app(ty_@3, eb), ec), ed), de) -> new_compare22(vwx300, vwx400, new_esEs7(vwx300, vwx400, eb, ec, ed), eb, ec, ed) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5, 3 > 6 *new_lt2(vwx300, vwx400, eb, ec, ed) -> new_compare22(vwx300, vwx400, new_esEs7(vwx300, vwx400, eb, ec, ed), eb, ec, ed) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_compare3(vwx300, vwx400, df, dg) -> new_compare20(vwx300, vwx400, new_esEs5(vwx300, vwx400, df, dg), df, dg) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs0(@2(vwx300, vwx301), @2(vwx400, vwx401), app(ty_Maybe, dd), de) -> new_compare2(vwx300, vwx400, new_esEs4(vwx300, vwx400, dd), dd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4 *new_ltEs0(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(ty_@2, df), dg), de) -> new_compare20(vwx300, vwx400, new_esEs5(vwx300, vwx400, df, dg), df, dg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 *new_ltEs1(Left(vwx300), Left(vwx400), app(app(app(ty_@3, fd), ff), fg), eg) -> new_ltEs2(vwx300, vwx400, fd, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs1(Right(vwx300), Right(vwx400), ga, app(app(app(ty_@3, gg), gh), ha)) -> new_ltEs2(vwx300, vwx400, gg, gh, ha) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs1(Left(vwx300), Left(vwx400), app(app(ty_@2, eh), fa), eg) -> new_ltEs0(vwx300, vwx400, eh, fa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(Right(vwx300), Right(vwx400), ga, app(app(ty_@2, gc), gd)) -> new_ltEs0(vwx300, vwx400, gc, gd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(Right(vwx300), Right(vwx400), ga, app(app(ty_Either, ge), gf)) -> new_ltEs1(vwx300, vwx400, ge, gf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(Left(vwx300), Left(vwx400), app(app(ty_Either, fb), fc), eg) -> new_ltEs1(vwx300, vwx400, fb, fc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(Right(vwx300), Right(vwx400), ga, app(ty_[], hb)) -> new_ltEs3(vwx300, vwx400, hb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(Left(vwx300), Left(vwx400), app(ty_[], fh), eg) -> new_ltEs3(vwx300, vwx400, fh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(Right(vwx300), Right(vwx400), ga, app(ty_Maybe, gb)) -> new_ltEs(vwx300, vwx400, gb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(Left(vwx300), Left(vwx400), app(ty_Maybe, ef), eg) -> new_ltEs(vwx300, vwx400, ef) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), hc, app(app(app(ty_@3, bbd), bbe), bbf), bag) -> new_lt2(vwx301, vwx401, bbd, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(app(ty_@3, bce), bcf), bcg), hd, bag) -> new_lt2(vwx300, vwx400, bce, bcf, bcg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), hc, app(ty_[], bbg), bag) -> new_lt3(vwx301, vwx401, bbg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(ty_[], bch), hd, bag) -> new_lt3(vwx300, vwx400, bch) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), hc, app(ty_Maybe, baf), bag) -> new_lt(vwx301, vwx401, baf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(ty_Maybe, bbh), hd, bag) -> new_lt(vwx300, vwx400, bbh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(ty_@2, bca), bcb), hd, bag) -> new_lt0(vwx300, vwx400, bca, bcb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), hc, app(app(ty_@2, bah), bba), bag) -> new_lt0(vwx301, vwx401, bah, bba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(ty_Either, bcc), bcd), hd, bag) -> new_lt1(vwx300, vwx400, bcc, bcd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), hc, app(app(ty_Either, bbb), bbc), bag) -> new_lt1(vwx301, vwx401, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 ---------------------------------------- (20) YES ---------------------------------------- (21) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMulNat(Succ(vwx30000), Succ(vwx40100)) -> new_primMulNat(vwx30000, Succ(vwx40100)) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (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_primMulNat(Succ(vwx30000), Succ(vwx40100)) -> new_primMulNat(vwx30000, Succ(vwx40100)) The graph contains the following edges 1 > 1, 2 >= 2 ---------------------------------------- (23) YES ---------------------------------------- (24) Obligation: Q DP problem: The TRS P consists of the following rules: new_esEs(@2(vwx370, vwx371), @2(vwx380, vwx381), cb, app(ty_[], cf)) -> new_esEs1(vwx371, vwx381, cf) new_esEs3(Left(vwx370), Left(vwx380), app(app(ty_Either, bcg), bch), bca) -> new_esEs3(vwx370, vwx380, bcg, bch) new_esEs3(Right(vwx370), Right(vwx380), bda, app(ty_[], bde)) -> new_esEs1(vwx370, vwx380, bde) new_esEs2(@3(vwx370, vwx371, vwx372), @3(vwx380, vwx381, vwx382), hd, gc, app(app(ty_@2, baf), bag)) -> new_esEs(vwx372, vwx382, baf, bag) new_esEs2(@3(vwx370, vwx371, vwx372), @3(vwx380, vwx381, vwx382), app(app(ty_@2, ga), gb), gc, gd) -> new_esEs(vwx370, vwx380, ga, gb) new_esEs(@2(vwx370, vwx371), @2(vwx380, vwx381), app(app(ty_@2, h), ba), bb) -> new_esEs(vwx370, vwx380, h, ba) new_esEs(@2(vwx370, vwx371), @2(vwx380, vwx381), app(ty_[], bd), bb) -> new_esEs1(vwx370, vwx380, bd) new_esEs1(:(vwx370, vwx371), :(vwx380, vwx381), app(ty_Maybe, eh)) -> new_esEs0(vwx370, vwx380, eh) new_esEs(@2(vwx370, vwx371), @2(vwx380, vwx381), app(app(ty_Either, bh), ca), bb) -> new_esEs3(vwx370, vwx380, bh, ca) new_esEs1(:(vwx370, vwx371), :(vwx380, vwx381), app(app(ty_Either, ff), fg)) -> new_esEs3(vwx370, vwx380, ff, fg) new_esEs2(@3(vwx370, vwx371, vwx372), @3(vwx380, vwx381, vwx382), hd, gc, app(app(ty_Either, bbe), bbf)) -> new_esEs3(vwx372, vwx382, bbe, bbf) new_esEs0(Just(vwx370), Just(vwx380), app(app(ty_Either, ed), ee)) -> new_esEs3(vwx370, vwx380, ed, ee) new_esEs2(@3(vwx370, vwx371, vwx372), @3(vwx380, vwx381, vwx382), hd, app(app(app(ty_@3, baa), bab), bac), gd) -> new_esEs2(vwx371, vwx381, baa, bab, bac) new_esEs3(Right(vwx370), Right(vwx380), bda, app(app(ty_Either, bea), beb)) -> new_esEs3(vwx370, vwx380, bea, beb) new_esEs0(Just(vwx370), Just(vwx380), app(app(app(ty_@3, ea), eb), ec)) -> new_esEs2(vwx370, vwx380, ea, eb, ec) new_esEs2(@3(vwx370, vwx371, vwx372), @3(vwx380, vwx381, vwx382), app(app(app(ty_@3, gg), gh), ha), gc, gd) -> new_esEs2(vwx370, vwx380, gg, gh, ha) new_esEs(@2(vwx370, vwx371), @2(vwx380, vwx381), app(app(app(ty_@3, be), bf), bg), bb) -> new_esEs2(vwx370, vwx380, be, bf, bg) new_esEs(@2(vwx370, vwx371), @2(vwx380, vwx381), cb, app(app(ty_@2, cc), cd)) -> new_esEs(vwx371, vwx381, cc, cd) new_esEs3(Right(vwx370), Right(vwx380), bda, app(ty_Maybe, bdd)) -> new_esEs0(vwx370, vwx380, bdd) new_esEs3(Left(vwx370), Left(vwx380), app(app(ty_@2, bbg), bbh), bca) -> new_esEs(vwx370, vwx380, bbg, bbh) new_esEs(@2(vwx370, vwx371), @2(vwx380, vwx381), cb, app(app(app(ty_@3, cg), da), db)) -> new_esEs2(vwx371, vwx381, cg, da, db) new_esEs2(@3(vwx370, vwx371, vwx372), @3(vwx380, vwx381, vwx382), hd, gc, app(ty_Maybe, bah)) -> new_esEs0(vwx372, vwx382, bah) new_esEs3(Right(vwx370), Right(vwx380), bda, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs2(vwx370, vwx380, bdf, bdg, bdh) new_esEs3(Left(vwx370), Left(vwx380), app(ty_[], bcc), bca) -> new_esEs1(vwx370, vwx380, bcc) new_esEs(@2(vwx370, vwx371), @2(vwx380, vwx381), cb, app(app(ty_Either, dc), dd)) -> new_esEs3(vwx371, vwx381, dc, dd) new_esEs1(:(vwx370, vwx371), :(vwx380, vwx381), fh) -> new_esEs1(vwx371, vwx381, fh) new_esEs1(:(vwx370, vwx371), :(vwx380, vwx381), app(app(ty_@2, ef), eg)) -> new_esEs(vwx370, vwx380, ef, eg) new_esEs0(Just(vwx370), Just(vwx380), app(app(ty_@2, de), df)) -> new_esEs(vwx370, vwx380, de, df) new_esEs1(:(vwx370, vwx371), :(vwx380, vwx381), app(ty_[], fa)) -> new_esEs1(vwx370, vwx380, fa) new_esEs2(@3(vwx370, vwx371, vwx372), @3(vwx380, vwx381, vwx382), app(ty_Maybe, ge), gc, gd) -> new_esEs0(vwx370, vwx380, ge) new_esEs2(@3(vwx370, vwx371, vwx372), @3(vwx380, vwx381, vwx382), hd, app(app(ty_Either, bad), bae), gd) -> new_esEs3(vwx371, vwx381, bad, bae) new_esEs3(Left(vwx370), Left(vwx380), app(ty_Maybe, bcb), bca) -> new_esEs0(vwx370, vwx380, bcb) new_esEs2(@3(vwx370, vwx371, vwx372), @3(vwx380, vwx381, vwx382), app(ty_[], gf), gc, gd) -> new_esEs1(vwx370, vwx380, gf) new_esEs2(@3(vwx370, vwx371, vwx372), @3(vwx380, vwx381, vwx382), hd, app(ty_Maybe, hg), gd) -> new_esEs0(vwx371, vwx381, hg) new_esEs0(Just(vwx370), Just(vwx380), app(ty_Maybe, dg)) -> new_esEs0(vwx370, vwx380, dg) new_esEs1(:(vwx370, vwx371), :(vwx380, vwx381), app(app(app(ty_@3, fb), fc), fd)) -> new_esEs2(vwx370, vwx380, fb, fc, fd) new_esEs2(@3(vwx370, vwx371, vwx372), @3(vwx380, vwx381, vwx382), hd, gc, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs2(vwx372, vwx382, bbb, bbc, bbd) new_esEs3(Right(vwx370), Right(vwx380), bda, app(app(ty_@2, bdb), bdc)) -> new_esEs(vwx370, vwx380, bdb, bdc) new_esEs(@2(vwx370, vwx371), @2(vwx380, vwx381), app(ty_Maybe, bc), bb) -> new_esEs0(vwx370, vwx380, bc) new_esEs3(Left(vwx370), Left(vwx380), app(app(app(ty_@3, bcd), bce), bcf), bca) -> new_esEs2(vwx370, vwx380, bcd, bce, bcf) new_esEs2(@3(vwx370, vwx371, vwx372), @3(vwx380, vwx381, vwx382), hd, app(app(ty_@2, he), hf), gd) -> new_esEs(vwx371, vwx381, he, hf) new_esEs2(@3(vwx370, vwx371, vwx372), @3(vwx380, vwx381, vwx382), hd, app(ty_[], hh), gd) -> new_esEs1(vwx371, vwx381, hh) new_esEs2(@3(vwx370, vwx371, vwx372), @3(vwx380, vwx381, vwx382), app(app(ty_Either, hb), hc), gc, gd) -> new_esEs3(vwx370, vwx380, hb, hc) new_esEs(@2(vwx370, vwx371), @2(vwx380, vwx381), cb, app(ty_Maybe, ce)) -> new_esEs0(vwx371, vwx381, ce) new_esEs0(Just(vwx370), Just(vwx380), app(ty_[], dh)) -> new_esEs1(vwx370, vwx380, dh) new_esEs2(@3(vwx370, vwx371, vwx372), @3(vwx380, vwx381, vwx382), hd, gc, app(ty_[], bba)) -> new_esEs1(vwx372, vwx382, bba) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (25) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_esEs1(:(vwx370, vwx371), :(vwx380, vwx381), app(app(ty_@2, ef), eg)) -> new_esEs(vwx370, vwx380, ef, eg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(:(vwx370, vwx371), :(vwx380, vwx381), app(app(ty_Either, ff), fg)) -> new_esEs3(vwx370, vwx380, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(:(vwx370, vwx371), :(vwx380, vwx381), app(app(app(ty_@3, fb), fc), fd)) -> new_esEs2(vwx370, vwx380, fb, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(:(vwx370, vwx371), :(vwx380, vwx381), app(ty_Maybe, eh)) -> new_esEs0(vwx370, vwx380, eh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(Just(vwx370), Just(vwx380), app(app(ty_@2, de), df)) -> new_esEs(vwx370, vwx380, de, df) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(Just(vwx370), Just(vwx380), app(app(ty_Either, ed), ee)) -> new_esEs3(vwx370, vwx380, ed, ee) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(Just(vwx370), Just(vwx380), app(app(app(ty_@3, ea), eb), ec)) -> new_esEs2(vwx370, vwx380, ea, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(Just(vwx370), Just(vwx380), app(ty_[], dh)) -> new_esEs1(vwx370, vwx380, dh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(Just(vwx370), Just(vwx380), app(ty_Maybe, dg)) -> new_esEs0(vwx370, vwx380, dg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(:(vwx370, vwx371), :(vwx380, vwx381), fh) -> new_esEs1(vwx371, vwx381, fh) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs1(:(vwx370, vwx371), :(vwx380, vwx381), app(ty_[], fa)) -> new_esEs1(vwx370, vwx380, fa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(Left(vwx370), Left(vwx380), app(app(ty_@2, bbg), bbh), bca) -> new_esEs(vwx370, vwx380, bbg, bbh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(Right(vwx370), Right(vwx380), bda, app(app(ty_@2, bdb), bdc)) -> new_esEs(vwx370, vwx380, bdb, bdc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(@2(vwx370, vwx371), @2(vwx380, vwx381), app(app(ty_@2, h), ba), bb) -> new_esEs(vwx370, vwx380, h, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(@2(vwx370, vwx371), @2(vwx380, vwx381), cb, app(app(ty_@2, cc), cd)) -> new_esEs(vwx371, vwx381, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(@3(vwx370, vwx371, vwx372), @3(vwx380, vwx381, vwx382), hd, gc, app(app(ty_@2, baf), bag)) -> new_esEs(vwx372, vwx382, baf, bag) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs2(@3(vwx370, vwx371, vwx372), @3(vwx380, vwx381, vwx382), app(app(ty_@2, ga), gb), gc, gd) -> new_esEs(vwx370, vwx380, ga, gb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(@3(vwx370, vwx371, vwx372), @3(vwx380, vwx381, vwx382), hd, app(app(ty_@2, he), hf), gd) -> new_esEs(vwx371, vwx381, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(Left(vwx370), Left(vwx380), app(app(ty_Either, bcg), bch), bca) -> new_esEs3(vwx370, vwx380, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(Right(vwx370), Right(vwx380), bda, app(app(ty_Either, bea), beb)) -> new_esEs3(vwx370, vwx380, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(Right(vwx370), Right(vwx380), bda, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs2(vwx370, vwx380, bdf, bdg, bdh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs3(Left(vwx370), Left(vwx380), app(app(app(ty_@3, bcd), bce), bcf), bca) -> new_esEs2(vwx370, vwx380, bcd, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(Right(vwx370), Right(vwx380), bda, app(ty_[], bde)) -> new_esEs1(vwx370, vwx380, bde) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(Left(vwx370), Left(vwx380), app(ty_[], bcc), bca) -> new_esEs1(vwx370, vwx380, bcc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(Right(vwx370), Right(vwx380), bda, app(ty_Maybe, bdd)) -> new_esEs0(vwx370, vwx380, bdd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(Left(vwx370), Left(vwx380), app(ty_Maybe, bcb), bca) -> new_esEs0(vwx370, vwx380, bcb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(@2(vwx370, vwx371), @2(vwx380, vwx381), app(app(ty_Either, bh), ca), bb) -> new_esEs3(vwx370, vwx380, bh, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(@2(vwx370, vwx371), @2(vwx380, vwx381), cb, app(app(ty_Either, dc), dd)) -> new_esEs3(vwx371, vwx381, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(@3(vwx370, vwx371, vwx372), @3(vwx380, vwx381, vwx382), hd, gc, app(app(ty_Either, bbe), bbf)) -> new_esEs3(vwx372, vwx382, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs2(@3(vwx370, vwx371, vwx372), @3(vwx380, vwx381, vwx382), hd, app(app(ty_Either, bad), bae), gd) -> new_esEs3(vwx371, vwx381, bad, bae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(@3(vwx370, vwx371, vwx372), @3(vwx380, vwx381, vwx382), app(app(ty_Either, hb), hc), gc, gd) -> new_esEs3(vwx370, vwx380, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(@2(vwx370, vwx371), @2(vwx380, vwx381), app(app(app(ty_@3, be), bf), bg), bb) -> new_esEs2(vwx370, vwx380, be, bf, bg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs(@2(vwx370, vwx371), @2(vwx380, vwx381), cb, app(app(app(ty_@3, cg), da), db)) -> new_esEs2(vwx371, vwx381, cg, da, db) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs(@2(vwx370, vwx371), @2(vwx380, vwx381), cb, app(ty_[], cf)) -> new_esEs1(vwx371, vwx381, cf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(@2(vwx370, vwx371), @2(vwx380, vwx381), app(ty_[], bd), bb) -> new_esEs1(vwx370, vwx380, bd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(@2(vwx370, vwx371), @2(vwx380, vwx381), app(ty_Maybe, bc), bb) -> new_esEs0(vwx370, vwx380, bc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(@2(vwx370, vwx371), @2(vwx380, vwx381), cb, app(ty_Maybe, ce)) -> new_esEs0(vwx371, vwx381, ce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(@3(vwx370, vwx371, vwx372), @3(vwx380, vwx381, vwx382), hd, app(app(app(ty_@3, baa), bab), bac), gd) -> new_esEs2(vwx371, vwx381, baa, bab, bac) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs2(@3(vwx370, vwx371, vwx372), @3(vwx380, vwx381, vwx382), app(app(app(ty_@3, gg), gh), ha), gc, gd) -> new_esEs2(vwx370, vwx380, gg, gh, ha) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(@3(vwx370, vwx371, vwx372), @3(vwx380, vwx381, vwx382), hd, gc, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs2(vwx372, vwx382, bbb, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs2(@3(vwx370, vwx371, vwx372), @3(vwx380, vwx381, vwx382), app(ty_[], gf), gc, gd) -> new_esEs1(vwx370, vwx380, gf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(@3(vwx370, vwx371, vwx372), @3(vwx380, vwx381, vwx382), hd, app(ty_[], hh), gd) -> new_esEs1(vwx371, vwx381, hh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(@3(vwx370, vwx371, vwx372), @3(vwx380, vwx381, vwx382), hd, gc, app(ty_[], bba)) -> new_esEs1(vwx372, vwx382, bba) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs2(@3(vwx370, vwx371, vwx372), @3(vwx380, vwx381, vwx382), hd, gc, app(ty_Maybe, bah)) -> new_esEs0(vwx372, vwx382, bah) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs2(@3(vwx370, vwx371, vwx372), @3(vwx380, vwx381, vwx382), app(ty_Maybe, ge), gc, gd) -> new_esEs0(vwx370, vwx380, ge) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(@3(vwx370, vwx371, vwx372), @3(vwx380, vwx381, vwx382), hd, app(ty_Maybe, hg), gd) -> new_esEs0(vwx371, vwx381, hg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 ---------------------------------------- (26) YES ---------------------------------------- (27) Obligation: Q DP problem: The TRS P consists of the following rules: new_primEqNat(Succ(vwx3700), Succ(vwx3800)) -> new_primEqNat(vwx3700, vwx3800) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (28) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primEqNat(Succ(vwx3700), Succ(vwx3800)) -> new_primEqNat(vwx3700, vwx3800) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (29) YES ---------------------------------------- (30) Obligation: Q DP problem: The TRS P consists of the following rules: new_primPlusNat(Succ(vwx6700), Succ(vwx401000)) -> new_primPlusNat(vwx6700, vwx401000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (31) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primPlusNat(Succ(vwx6700), Succ(vwx401000)) -> new_primPlusNat(vwx6700, vwx401000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (32) YES