chiark / gitweb /
layout can do crossover labels as implied by ours.redacted.segjoins.manual but we...
authorian <ian>
Sun, 11 May 2008 23:24:31 +0000 (23:24 +0000)
committerian <ian>
Sun, 11 May 2008 23:24:31 +0000 (23:24 +0000)
layout/informat.txt
layout/layout
layout/ours.redacted.segjoins.manual [new file with mode: 0644]

index 0b71b89deae826b9e78b41ed50348fe8e85c90d9..834a3034c51692635b22cada46867bcdbe6dbade 100644 (file)
@@ -201,15 +201,15 @@ Commands
   Map segment S to colours using postscript commands P... (which
   should be a postscript fragment to modify the graphics state,
   typically `N setgray' or the like.  This is used for the drawing
-  element Q (see below).  S should be the bare segment (no movfeat or
-  `-').
+  element Q (see below).  S may be a bare segment (no movfeat or
+  `-'), or a position; specifications for specific features take
+  precedence for those features.
 
  segend L S
-  Notes that segment S (which should not specify a movfeat but may
+  Notes that segment S (which may specify a movfeat and pos but may
   specify `-') has an end at location L.  This is fed back from
   extractgraph's run on a previous result of running layout, and used
-  to determine where to place the segment labels for E.  NOT YET
-  IMPLEMENTED
+  to determine where to place the segment labels for E.
 
 Command-line options
 
index 678878c1648a29b5d7861b4e7b30f5b07ba8053c..4109dbe5cf11d7e1e73ec691b2d1d176fac6ad80 100755 (executable)
@@ -249,11 +249,13 @@ our $allwidthmin= allwidth(undef);
 #
 #  $subsegcmap{$csss} = "$green $blue"
 #                         # $csss is canonical subseg spec; always has '/'
-#  $segcmap{$bareseg} = "$postscript"
+#  $segcmap{$seg} = "$postscript"
+#                         # $seg is bareseg or with /movpos
 #
-#  $seggraphends{"$bareseg"}[]{X}
-#  $seggraphends{"$bareseg"}[]{Y}
-#  $seggraphends{"$bareseg"}[]{A}
+#  $seggraphends{"$seg"}[]{X}
+#  $seggraphends{"$seg"}[]{Y}
+#  $seggraphends{"$seg"}[]{A}
+#  $seggraphaim->{SegPrint}
 #  $seggraphaim->{X}
 #  $seggraphaim->{Y}
 #  $seggraphbest{$bareseg}{X}
@@ -732,13 +734,19 @@ sub segment_state_restore ($) {
 }
 
 sub segment__check_graphends () {
-    my ($bare,$ge,$i,$key,@end);
+    my ($targ,$ge,$i,$key,@end,$bare);
     $seggraphaim= undef;
-    $segments[0] =~ m/^\-?(\w+)/ or return;
-    $bare= $1;
-    $ge= $seggraphends{$bare};
-    defined $ge or return;
+    $segments[0] =~ m/^\-?(.*)/ or return;
+    $targ= $1;
+    $ge= $seggraphends{$targ};
+    if (!defined $ge) {
+       $segments[0] =~ m/^\-?(\w+)/ or return;
+       $targ= $1;
+       $ge= $seggraphends{$targ};
+       defined $ge or return;
+    }
     $seggraphaim= v_mean(@$ge);
+    $seggraphaim->{SegPrint}= $targ;
 }
 
 sub segment_used_begin ($) {
@@ -776,7 +784,8 @@ print DEBUG "ps $p0 $p1 $lenperp ($ppu)\n";
     $draw= current_draw();
     if ($draw =~ m/[QGE]/) {
        my ($pt,$going,$red,$csegbare,$movfeat,$movstroke);
-       my ($used_last,$me,$segsave,$diff, $best,$dist2,$segvbare,$segvbaren);
+       my ($used_last,$me,$segsave,$diff, $best,$dist2);
+       my ($segprintn,$segprint);
        o("gsave\n");
        $segsave= segment_state_save();
        foreach $me ($draw =~ m/Q/ ? qw(q) : qw(e m)) {
@@ -797,9 +806,13 @@ print DEBUG "ps $p0 $p1 $lenperp ($ppu)\n";
                    }
                } else {
                    if ($draw =~ m/Q/) {
-                       $csegbare =~ m,^[^/]*,;
+#print STDERR "looking for \`$csegbare' $me\n";
+                       $movstroke= $segcmap{$csegbare};
+                       if (!defined $movstroke) {
+                           $csegbare =~ m,^[^/]*,;
 #print STDERR "looking for \`$&' $me\n";
-                       $movstroke= $segcmap{$&};
+                           $movstroke= $segcmap{$&};
+                       }
                        $movstroke= "%     no-colour    "
                            unless defined $movstroke;
                    } elsif ($draw =~ m/G/) {
@@ -834,17 +847,17 @@ print DEBUG "ps $p0 $p1 $lenperp ($ppu)\n";
                last if $param>=$p1;
                $pt= &$calcfn;
                if ($draw =~ m/E/ && $seggraphaim) {
-                   $segments[0] =~ m/^(\-?)(\w+)/ or die;
-                   ($segvbaren,$segvbare)=($1,$2);
+                   $segments[0] =~ m/^(\-?)/ or die;
+                   ($segprintn,$segprint)=($1,$seggraphaim->{SegPrint});
                    $dist2= v_distsquared($pt, $seggraphaim);
-                   $best= $seggraphbest{$segvbare};
+                   $best= $seggraphbest{$segprint};
                    if (!$best or $dist2 < $best->{D2}) {
                        $best= { X => $pt->{X},
                                 Y => $pt->{Y},
                                 A => $pt->{A},
                                 D2 => $dist2 };
-                       $best->{A} += $pi if length($segvbaren);
-                       $seggraphbest{$segvbare}= $best;
+                       $best->{A} += $pi if length($segprintn);
+                       $seggraphbest{$segprint}= $best;
                    }
                }
                segment_used_middle($psu_ulen,$pt);
@@ -1438,7 +1451,7 @@ sub cmd_segmap {
 
 sub cmd_segcmap {
     my ($seg,$colour);
-    $seg= can(\&cva_segment);
+    $seg= can(\&cva_segmap_s);
     $segcmap{$seg}= "@al";
     @al= ();
 };
@@ -1446,7 +1459,7 @@ sub cmd_segcmap {
 sub cmd_segend {
     my ($from,$sp) = @_;
     $from= can(\&cva_idex);
-    $sp= can(\&cva_segment);
+    $sp= can(\&cva_segmap_s);
 #print STDERR "setting $from ".join('|',keys %$from),"<\n";
     push @{ $seggraphends{$sp} }, $from;
 };
diff --git a/layout/ours.redacted.segjoins.manual b/layout/ours.redacted.segjoins.manual
new file mode 100644 (file)
index 0000000..e8319d5
--- /dev/null
@@ -0,0 +1,5068 @@
+# consistency check (command-line request) ...
+#  consistency n0
+#  consistency n0 O
+#  consistency n0 O e0 I
+#  consistency n0 I
+#  consistency n0 I e1 O
+#  consistency n1
+#  consistency n1 O
+#  consistency n1 O e4 I
+#  consistency n1 I
+#  consistency n1 I e0 O
+#  consistency n2
+#  consistency n2 O
+#  consistency n2 O e1 I
+#  consistency n2 I
+#  consistency n2 I e16 I
+#  consistency n3
+#  consistency n3 O
+#  consistency n3 O e2 O
+#  consistency n3 I
+#  consistency n3 I e3 I
+#  consistency n4
+#  consistency n4 O
+#  consistency n4 O e10 O
+#  consistency n4 I
+#  consistency n4 I e2 I
+#  consistency n5
+#  consistency n5 O
+#  consistency n5 O e3 O
+#  consistency n5 I
+#  consistency n5 I e36 O
+#  consistency n6
+#  consistency n6 O
+#  consistency n6 O e5 I
+#  consistency n6 I
+#  consistency n6 I e4 O
+#  consistency n7
+#  consistency n7 O
+#  consistency n7 O e9 I
+#  consistency n7 I
+#  consistency n7 I e5 O
+#  consistency n8
+#  consistency n8 O
+#  consistency n8 O e6 O
+#  consistency n8 O e7 O
+#  consistency n8 I
+#  consistency n8 I e32 I
+#  consistency n9
+#  consistency n9 O
+#  consistency n9 O e40 O
+#  consistency n9 I
+#  consistency n9 I e6 I
+#  consistency n10
+#  consistency n10 O
+#  consistency n10 O e8 O
+#  consistency n10 I
+#  consistency n10 I e7 I
+#  consistency n11
+#  consistency n11 O
+#  consistency n11 O e9 O
+#  consistency n11 I
+#  consistency n11 I e8 I
+#  consistency n12
+#  consistency n12 O
+#  consistency n12 O e11 O
+#  consistency n12 I
+#  consistency n12 I e10 I
+#  consistency n13
+#  consistency n13 O
+#  consistency n13 O e15 O
+#  consistency n13 I
+#  consistency n13 I e11 I
+#  consistency n14
+#  consistency n14 O
+#  consistency n14 O e12 I
+#  consistency n14 O e13 I
+#  consistency n14 I
+#  consistency n14 I e126 O
+#  consistency n15
+#  consistency n15 O
+#  consistency n15 O e39 I
+#  consistency n15 I
+#  consistency n15 I e12 O
+#  consistency n16
+#  consistency n16 O
+#  consistency n16 O e14 I
+#  consistency n16 I
+#  consistency n16 I e13 O
+#  consistency n17
+#  consistency n17 O
+#  consistency n17 O e15 I
+#  consistency n17 I
+#  consistency n17 I e14 O
+#  consistency n18
+#  consistency n18 O
+#  consistency n18 O e17 I
+#  consistency n18 I
+#  consistency n18 I e16 O
+#  consistency n19
+#  consistency n19 O
+#  consistency n19 O e17 O
+#  consistency n19 O e18 O
+#  consistency n19 I
+#  consistency n19 I e21 I
+#  consistency n20
+#  consistency n20 O
+#  consistency n20 O e19 O
+#  consistency n20 I
+#  consistency n20 I e18 I
+#  consistency n21
+#  consistency n21 O
+#  consistency n21 O e20 O
+#  consistency n21 I
+#  consistency n21 I e19 I
+#  consistency n22
+#  consistency n22 O
+#  consistency n22 I
+#  consistency n22 I e20 I
+#  consistency n23
+#  consistency n23 O
+#  consistency n23 O e22 I
+#  consistency n23 I
+#  consistency n23 I e21 O
+#  consistency n24
+#  consistency n24 O
+#  consistency n24 O e26 I
+#  consistency n24 I
+#  consistency n24 I e22 O
+#  consistency n25
+#  consistency n25 O
+#  consistency n25 O e23 O
+#  consistency n25 O e24 O
+#  consistency n25 I
+#  consistency n25 I e27 I
+#  consistency n26
+#  consistency n26 O
+#  consistency n26 O e82 O
+#  consistency n26 I
+#  consistency n26 I e23 I
+#  consistency n27
+#  consistency n27 O
+#  consistency n27 O e25 O
+#  consistency n27 I
+#  consistency n27 I e24 I
+#  consistency n28
+#  consistency n28 O
+#  consistency n28 O e26 O
+#  consistency n28 I
+#  consistency n28 I e25 I
+#  consistency n29
+#  consistency n29 O
+#  consistency n29 O e123 I
+#  consistency n29 I
+#  consistency n29 I e27 O
+#  consistency n30
+#  consistency n30 O
+#  consistency n30 O e28 I
+#  consistency n30 O e29 I
+#  consistency n30 I
+#  consistency n30 I e112 O
+#  consistency n31
+#  consistency n31 O
+#  consistency n31 O e69 I
+#  consistency n31 I
+#  consistency n31 I e28 O
+#  consistency n32
+#  consistency n32 O
+#  consistency n32 O e30 I
+#  consistency n32 I
+#  consistency n32 I e29 O
+#  consistency n33
+#  consistency n33 O
+#  consistency n33 O e31 I
+#  consistency n33 I
+#  consistency n33 I e30 O
+#  consistency n34
+#  consistency n34 O
+#  consistency n34 O e33 I
+#  consistency n34 I
+#  consistency n34 I e31 O
+#  consistency n35
+#  consistency n35 O
+#  consistency n35 O e37 I
+#  consistency n35 I
+#  consistency n35 I e32 O
+#  consistency n36
+#  consistency n36 O
+#  consistency n36 O e34 I
+#  consistency n36 I
+#  consistency n36 I e33 O
+#  consistency n37
+#  consistency n37 O
+#  consistency n37 O e35 I
+#  consistency n37 I
+#  consistency n37 I e34 O
+#  consistency n38
+#  consistency n38 O
+#  consistency n38 O e36 I
+#  consistency n38 I
+#  consistency n38 I e35 O
+#  consistency n39
+#  consistency n39 O
+#  consistency n39 O e38 I
+#  consistency n39 I
+#  consistency n39 I e37 O
+#  consistency n40
+#  consistency n40 O
+#  consistency n40 O e110 I
+#  consistency n40 I
+#  consistency n40 I e38 O
+#  consistency n41
+#  consistency n41 O
+#  consistency n41 O e40 I
+#  consistency n41 I
+#  consistency n41 I e39 O
+#  consistency n42
+#  consistency n42 O
+#  consistency n42 O e60 I
+#  consistency n42 I
+#  consistency n42 I e61 O
+#  consistency n43
+#  consistency n43 O
+#  consistency n43 O e75 I
+#  consistency n43 I
+#  consistency n43 I e60 O
+#  consistency n44
+#  consistency n44 O
+#  consistency n44 O e61 I
+#  consistency n44 I
+#  consistency n45
+#  consistency n45 O
+#  consistency n45 O e62 I
+#  consistency n45 I
+#  consistency n45 I e63 O
+#  consistency n46
+#  consistency n46 O
+#  consistency n46 I
+#  consistency n46 I e62 O
+#  consistency n47
+#  consistency n47 O
+#  consistency n47 O e63 I
+#  consistency n47 I
+#  consistency n47 I e64 O
+#  consistency n48
+#  consistency n48 O
+#  consistency n48 O e68 O
+#  consistency n48 I
+#  consistency n48 I e64 I
+#  consistency n49
+#  consistency n49 O
+#  consistency n49 O e65 I
+#  consistency n49 O e66 I
+#  consistency n49 I
+#  consistency n49 I e71 O
+#  consistency n50
+#  consistency n50 O
+#  consistency n50 O e76 I
+#  consistency n50 I
+#  consistency n50 I e65 O
+#  consistency n51
+#  consistency n51 O
+#  consistency n51 O e67 I
+#  consistency n51 I
+#  consistency n51 I e66 O
+#  consistency n52
+#  consistency n52 O
+#  consistency n52 O e68 I
+#  consistency n52 I
+#  consistency n52 I e67 O
+#  consistency n53
+#  consistency n53 O
+#  consistency n53 O e70 I
+#  consistency n53 I
+#  consistency n53 I e69 O
+#  consistency n54
+#  consistency n54 O
+#  consistency n54 O e71 I
+#  consistency n54 I
+#  consistency n54 I e70 O
+#  consistency n55
+#  consistency n55 O
+#  consistency n55 O e72 O
+#  consistency n55 O e73 O
+#  consistency n55 I
+#  consistency n55 I e80 I
+#  consistency n56
+#  consistency n56 O
+#  consistency n56 O e79 O
+#  consistency n56 I
+#  consistency n56 I e72 I
+#  consistency n57
+#  consistency n57 O
+#  consistency n57 O e74 O
+#  consistency n57 I
+#  consistency n57 I e73 I
+#  consistency n58
+#  consistency n58 O
+#  consistency n58 O e75 O
+#  consistency n58 I
+#  consistency n58 I e74 I
+#  consistency n59
+#  consistency n59 O
+#  consistency n59 O e77 I
+#  consistency n59 I
+#  consistency n59 I e76 O
+#  consistency n60
+#  consistency n60 O
+#  consistency n60 O e78 I
+#  consistency n60 I
+#  consistency n60 I e77 O
+#  consistency n61
+#  consistency n61 O
+#  consistency n61 O e79 I
+#  consistency n61 I
+#  consistency n61 I e78 O
+#  consistency n62
+#  consistency n62 O
+#  consistency n62 O e81 I
+#  consistency n62 I
+#  consistency n62 I e80 O
+#  consistency n63
+#  consistency n63 O
+#  consistency n63 O e82 I
+#  consistency n63 I
+#  consistency n63 I e81 O
+#  consistency n64
+#  consistency n64 O
+#  consistency n64 O e111 I
+#  consistency n64 I
+#  consistency n64 I e110 O
+#  consistency n65
+#  consistency n65 O
+#  consistency n65 O e112 I
+#  consistency n65 I
+#  consistency n65 I e111 O
+#  consistency n66
+#  consistency n66 O
+#  consistency n66 O e124 I
+#  consistency n66 I
+#  consistency n66 I e123 O
+#  consistency n67
+#  consistency n67 O
+#  consistency n67 O e125 I
+#  consistency n67 I
+#  consistency n67 I e124 O
+#  consistency n68
+#  consistency n68 O
+#  consistency n68 O e126 I
+#  consistency n68 I
+#  consistency n68 I e125 O
+# consistency e0 count=2
+# consistency e1 count=2
+# consistency e4 count=2
+# consistency e16 count=2
+# consistency e2 count=2
+# consistency e3 count=2
+# consistency e10 count=2
+# consistency e36 count=2
+# consistency e5 count=2
+# consistency e9 count=2
+# consistency e6 count=2
+# consistency e7 count=2
+# consistency e32 count=2
+# consistency e40 count=2
+# consistency e8 count=2
+# consistency e11 count=2
+# consistency e15 count=2
+# consistency e12 count=2
+# consistency e13 count=2
+# consistency e126 count=2
+# consistency e39 count=2
+# consistency e14 count=2
+# consistency e17 count=2
+# consistency e18 count=2
+# consistency e21 count=2
+# consistency e19 count=2
+# consistency e20 count=2
+# consistency e22 count=2
+# consistency e26 count=2
+# consistency e23 count=2
+# consistency e24 count=2
+# consistency e27 count=2
+# consistency e82 count=2
+# consistency e25 count=2
+# consistency e123 count=2
+# consistency e28 count=2
+# consistency e29 count=2
+# consistency e112 count=2
+# consistency e69 count=2
+# consistency e30 count=2
+# consistency e31 count=2
+# consistency e33 count=2
+# consistency e37 count=2
+# consistency e34 count=2
+# consistency e35 count=2
+# consistency e38 count=2
+# consistency e110 count=2
+# consistency e60 count=2
+# consistency e61 count=2
+# consistency e75 count=2
+# consistency e62 count=2
+# consistency e63 count=2
+# consistency e64 count=2
+# consistency e68 count=2
+# consistency e65 count=2
+# consistency e66 count=2
+# consistency e71 count=2
+# consistency e76 count=2
+# consistency e67 count=2
+# consistency e70 count=2
+# consistency e72 count=2
+# consistency e73 count=2
+# consistency e80 count=2
+# consistency e79 count=2
+# consistency e74 count=2
+# consistency e77 count=2
+# consistency e78 count=2
+# consistency e81 count=2
+# consistency e111 count=2
+# consistency e124 count=2
+# consistency e125 count=2
+# consistency check (command-line request) ok
+# movfeatsplitedges ...
+# movfeatsplitedges e1 segment X2 new *R(2) R(x1) ...
+# movfeatsplitedges  *R0 excluded
+# movfeatsplitedges  *R1[new:e1/*1][attach:e1/*1 O-n0 I][attach:e1/*1 I-n2 O][detach:e1 I-n2 O][detach:e1 O-n0 I][delete:e1]movfeatsplitedges e1/*1 segment X2 *-feature
+# movfeatsplitedges e0 segment X2 old *R(2) R(x1) ...
+# movfeatsplitedges  *R0 excluded
+# movfeatsplitedges  *R1[new:e0/*1][attach:e0/*1 O-n1 I][attach:e0/*1 I-n0 O][detach:e0 I-n0 O][detach:e0 O-n1 I][delete:e0]movfeatsplitedges e0/*1 segment X2 *-feature
+# movfeatsplitedges e2 segment X2 old *R(2) R(x1) ...
+# movfeatsplitedges  *R0[new:e2/*0][attach:e2/*0 O-n3 O][attach:e2/*0 I-n4 I]movfeatsplitedges  *R1 excluded
+# [detach:e2 I-n4 I][detach:e2 O-n3 O][delete:e2]movfeatsplitedges e2/*0 segment X2 *-feature
+# movfeatsplitedges e10 segment X2 old *R(2) R(x1) ...
+# movfeatsplitedges  *R0[new:e10/*0][attach:e10/*0 O-n4 O][attach:e10/*0 I-n12 I]movfeatsplitedges  *R1 excluded
+# [detach:e10 I-n12 I][detach:e10 O-n4 O][delete:e10]movfeatsplitedges e10/*0 segment X2 *-feature
+# movfeatsplitedges e3 segment X2 old *R(2) R(x1) ...
+# movfeatsplitedges  *R0[new:e3/*0][attach:e3/*0 O-n5 O][attach:e3/*0 I-n3 I]movfeatsplitedges  *R1 excluded
+# [detach:e3 I-n3 I][detach:e3 O-n5 O][delete:e3]movfeatsplitedges e3/*0 segment X2 *-feature
+# movfeatsplitedges e36 segment A1 no moveables
+# movfeatsplitedges e4 segment X2 old *R(2) R(x1) ...
+# movfeatsplitedges  *R0 excluded
+# movfeatsplitedges  *R1[new:e4/*1][attach:e4/*1 O-n6 I][attach:e4/*1 I-n1 O][detach:e4 I-n1 O][detach:e4 O-n6 I][delete:e4]movfeatsplitedges e4/*1 segment X2 *-feature
+# movfeatsplitedges e5 segment X3 no moveables
+# movfeatsplitedges e6 segment X7 new *P(2) P(x1) ...
+# movfeatsplitedges  *P0[new:e6/*0][attach:e6/*0 O-n8 O][attach:e6/*0 I-n9 I]movfeatsplitedges  *P1 excluded
+# [detach:e6 I-n9 I][detach:e6 O-n8 O][delete:e6]movfeatsplitedges e7 segment X7 old *P(2) P(x1) ...
+# movfeatsplitedges  *P0 excluded
+# movfeatsplitedges  *P1[new:e7/*1][attach:e7/*1 O-n8 O][attach:e7/*1 I-n10 I][detach:e7 I-n10 I][detach:e7 O-n8 O][delete:e7]movfeatsplitedges e6/*0 segment X7 *-feature
+# movfeatsplitedges e7/*1 segment X7 *-feature
+# movfeatsplitedges e40 segment X5 no moveables
+# movfeatsplitedges e8 segment X7 old *P(2) P(x1) ...
+# movfeatsplitedges  *P0 excluded
+# movfeatsplitedges  *P1[new:e8/*1][attach:e8/*1 O-n10 O][attach:e8/*1 I-n11 I][detach:e8 I-n11 I][detach:e8 O-n10 O][delete:e8]movfeatsplitedges e8/*1 segment X7 *-feature
+# movfeatsplitedges e9 segment X7 old *P(2) P(x1) ...
+# movfeatsplitedges  *P0 excluded
+# movfeatsplitedges  *P1[new:e9/*1][attach:e9/*1 O-n11 O][attach:e9/*1 I-n7 O][detach:e9 I-n7 O][detach:e9 O-n11 O][delete:e9]movfeatsplitedges e9/*1 segment X7 *-feature
+# movfeatsplitedges e11 segment X4 no moveables
+# movfeatsplitedges e15 segment X8 new *P(2) P(x1) ...
+# movfeatsplitedges  *P0 excluded
+# movfeatsplitedges  *P1[new:e15/*1][attach:e15/*1 O-n13 O][attach:e15/*1 I-n17 O][detach:e15 I-n17 O][detach:e15 O-n13 O][delete:e15]movfeatsplitedges e15/*1 segment X8 *-feature
+# movfeatsplitedges e126 segment X8 old *P(2) fixed ...
+# movfeatsplitedges  *P0[new:e126/*0][attach:e126/*0 O-n14 I][attach:e126/*0 I-n68 O]movfeatsplitedges  *P1[new:e126/*1][attach:e126/*1 O-n14 I][attach:e126/*1 I-n68 O][detach:e126 I-n68 O][detach:e126 O-n14 I][delete:e126]movfeatsplitedges e126/*0 segment X8 *-feature
+# movfeatsplitedges e126/*1 segment X8 *-feature
+# movfeatsplitedges e12 segment X8 old *P(2) P(x1) ...
+# movfeatsplitedges  *P0[new:e12/*0][attach:e12/*0 O-n15 I][attach:e12/*0 I-n14 O]movfeatsplitedges  *P1 excluded
+# [detach:e12 I-n14 O][detach:e12 O-n15 I][delete:e12]movfeatsplitedges e12/*0 segment X8 *-feature
+# movfeatsplitedges e13 segment X8 old *P(2) P(x1) ...
+# movfeatsplitedges  *P0 excluded
+# movfeatsplitedges  *P1[new:e13/*1][attach:e13/*1 O-n16 I][attach:e13/*1 I-n14 O][detach:e13 I-n14 O][detach:e13 O-n16 I][delete:e13]movfeatsplitedges e13/*1 segment X8 *-feature
+# movfeatsplitedges e14 segment X8 old *P(2) P(x1) ...
+# movfeatsplitedges  *P0 excluded
+# movfeatsplitedges  *P1[new:e14/*1][attach:e14/*1 O-n17 I][attach:e14/*1 I-n16 O][detach:e14 I-n16 O][detach:e14 O-n17 I][delete:e14]movfeatsplitedges e14/*1 segment X8 *-feature
+# movfeatsplitedges e16 segment A2 new *P(2) P(x1) ...
+# movfeatsplitedges  *P0[new:e16/*0][attach:e16/*0 O-n18 I][attach:e16/*0 I-n2 I]movfeatsplitedges  *P1 excluded
+# [detach:e16 I-n2 I][detach:e16 O-n18 I][delete:e16]movfeatsplitedges e16/*0 segment A2 *-feature
+# movfeatsplitedges e17 segment A2 old *P(2) P(x1) ...
+# movfeatsplitedges  *P0[new:e17/*0][attach:e17/*0 O-n19 O][attach:e17/*0 I-n18 O]movfeatsplitedges  *P1 excluded
+# [detach:e17 I-n18 O][detach:e17 O-n19 O][delete:e17]movfeatsplitedges e18 segment A2 old *P(2) P(x1) ...
+# movfeatsplitedges  *P0 excluded
+# movfeatsplitedges  *P1[new:e18/*1][attach:e18/*1 O-n19 O][attach:e18/*1 I-n20 I][detach:e18 I-n20 I][detach:e18 O-n19 O][delete:e18]movfeatsplitedges e17/*0 segment A2 *-feature
+# movfeatsplitedges e18/*1 segment A2 *-feature
+# movfeatsplitedges e19 segment A2 old *P(2) P(x1) ...
+# movfeatsplitedges  *P0 excluded
+# movfeatsplitedges  *P1[new:e19/*1][attach:e19/*1 O-n20 O][attach:e19/*1 I-n21 I][detach:e19 I-n21 I][detach:e19 O-n20 O][delete:e19]movfeatsplitedges e19/*1 segment A2 *-feature
+# movfeatsplitedges e20 segment A2 old *P(2) P(x1) ...
+# movfeatsplitedges  *P0 excluded
+# movfeatsplitedges  *P1[new:e20/*1][attach:e20/*1 O-n21 O][attach:e20/*1 I-n22 I][detach:e20 I-n22 I][detach:e20 O-n21 O][delete:e20]movfeatsplitedges e20/*1 segment A2 *-feature
+# movfeatsplitedges e21 segment A2 old *P(2) fixed ...
+# movfeatsplitedges  *P0[new:e21/*0][attach:e21/*0 O-n23 I][attach:e21/*0 I-n19 I]movfeatsplitedges  *P1[new:e21/*1][attach:e21/*1 O-n23 I][attach:e21/*1 I-n19 I][detach:e21 I-n19 I][detach:e21 O-n23 I][delete:e21]movfeatsplitedges e21/*0 segment A2 *-feature
+# movfeatsplitedges e21/*1 segment A2 *-feature
+# movfeatsplitedges e22 segment A4 no moveables
+# movfeatsplitedges e23 segment A6 new *PJ(4) P(x1) ...
+# movfeatsplitedges  *P0J0[new:e23/*0][attach:e23/*0 O-n25 O][attach:e23/*0 I-n26 I]movfeatsplitedges  *P1J0 excluded
+# movfeatsplitedges  *P0J1[new:e23/*2][attach:e23/*2 O-n25 O][attach:e23/*2 I-n26 I]movfeatsplitedges  *P1J1 excluded
+# [detach:e23 I-n26 I][detach:e23 O-n25 O][delete:e23]movfeatsplitedges e24 segment A6 old *PJ(4) P(x1) ...
+# movfeatsplitedges  *P0J0 excluded
+# movfeatsplitedges  *P1J0[new:e24/*1][attach:e24/*1 O-n25 O][attach:e24/*1 I-n27 I]movfeatsplitedges  *P0J1 excluded
+# movfeatsplitedges  *P1J1[new:e24/*3][attach:e24/*3 O-n25 O][attach:e24/*3 I-n27 I][detach:e24 I-n27 I][detach:e24 O-n25 O][delete:e24]movfeatsplitedges e23/*0 segment A6 *-feature
+# movfeatsplitedges e23/*2 segment A6 *-feature
+# movfeatsplitedges e24/*1 segment A6 *-feature
+# movfeatsplitedges e24/*3 segment A6 *-feature
+# movfeatsplitedges e82 segment A6 old *PJ(4) fixed ...
+# movfeatsplitedges  *P0J0[new:e82/*0][attach:e82/*0 O-n26 O][attach:e82/*0 I-n63 O]movfeatsplitedges  *P1J0[new:e82/*1][attach:e82/*1 O-n26 O][attach:e82/*1 I-n63 O]movfeatsplitedges  *P0J1[new:e82/*2][attach:e82/*2 O-n26 O][attach:e82/*2 I-n63 O]movfeatsplitedges  *P1J1[new:e82/*3][attach:e82/*3 O-n26 O][attach:e82/*3 I-n63 O][detach:e82 I-n63 O][detach:e82 O-n26 O][delete:e82]movfeatsplitedges e82/*0 segment A6 *-feature
+# movfeatsplitedges e82/*1 segment A6 *-feature
+# movfeatsplitedges e82/*2 segment A6 *-feature
+# movfeatsplitedges e82/*3 segment A6 *-feature
+# movfeatsplitedges e25 segment A6 old *PJ(4) P(x1) ...
+# movfeatsplitedges  *P0J0 excluded
+# movfeatsplitedges  *P1J0[new:e25/*1][attach:e25/*1 O-n27 O][attach:e25/*1 I-n28 I]movfeatsplitedges  *P0J1 excluded
+# movfeatsplitedges  *P1J1[new:e25/*3][attach:e25/*3 O-n27 O][attach:e25/*3 I-n28 I][detach:e25 I-n28 I][detach:e25 O-n27 O][delete:e25]movfeatsplitedges e25/*1 segment A6 *-feature
+# movfeatsplitedges e25/*3 segment A6 *-feature
+# movfeatsplitedges e26 segment A6 old *PJ(4) P(x1) ...
+# movfeatsplitedges  *P0J0 excluded
+# movfeatsplitedges  *P1J0[new:e26/*1][attach:e26/*1 O-n28 O][attach:e26/*1 I-n24 O]movfeatsplitedges  *P0J1 excluded
+# movfeatsplitedges  *P1J1[new:e26/*3][attach:e26/*3 O-n28 O][attach:e26/*3 I-n24 O][detach:e26 I-n24 O][detach:e26 O-n28 O][delete:e26]movfeatsplitedges e26/*1 segment A6 *-feature
+# movfeatsplitedges e26/*3 segment A6 *-feature
+# movfeatsplitedges e27 segment X10 no moveables
+# movfeatsplitedges e112 segment X9 no moveables
+# movfeatsplitedges e28 segment A5 new *PJ(4) P(x1) ...
+# movfeatsplitedges  *P0J0[new:e28/*0][attach:e28/*0 O-n31 I][attach:e28/*0 I-n30 O]movfeatsplitedges  *P1J0 excluded
+# movfeatsplitedges  *P0J1[new:e28/*2][attach:e28/*2 O-n31 I][attach:e28/*2 I-n30 O]movfeatsplitedges  *P1J1 excluded
+# [detach:e28 I-n30 O][detach:e28 O-n31 I][delete:e28]movfeatsplitedges e28/*0 segment A5 *-feature
+# movfeatsplitedges e28/*2 segment A5 *-feature
+# movfeatsplitedges e29 segment A5 old *PJ(4) P(x1) ...
+# movfeatsplitedges  *P0J0 excluded
+# movfeatsplitedges  *P1J0[new:e29/*1][attach:e29/*1 O-n32 I][attach:e29/*1 I-n30 O]movfeatsplitedges  *P0J1 excluded
+# movfeatsplitedges  *P1J1[new:e29/*3][attach:e29/*3 O-n32 I][attach:e29/*3 I-n30 O][detach:e29 I-n30 O][detach:e29 O-n32 I][delete:e29]movfeatsplitedges e29/*1 segment A5 *-feature
+# movfeatsplitedges e29/*3 segment A5 *-feature
+# movfeatsplitedges e30 segment A5 old *PJ(4) P(x1) ...
+# movfeatsplitedges  *P0J0 excluded
+# movfeatsplitedges  *P1J0[new:e30/*1][attach:e30/*1 O-n33 I][attach:e30/*1 I-n32 O]movfeatsplitedges  *P0J1 excluded
+# movfeatsplitedges  *P1J1[new:e30/*3][attach:e30/*3 O-n33 I][attach:e30/*3 I-n32 O][detach:e30 I-n32 O][detach:e30 O-n33 I][delete:e30]movfeatsplitedges e30/*1 segment A5 *-feature
+# movfeatsplitedges e30/*3 segment A5 *-feature
+# movfeatsplitedges e31 segment A5 old *PJ(4) P(x1) ...
+# movfeatsplitedges  *P0J0 excluded
+# movfeatsplitedges  *P1J0[new:e31/*1][attach:e31/*1 O-n34 I][attach:e31/*1 I-n33 O]movfeatsplitedges  *P0J1 excluded
+# movfeatsplitedges  *P1J1[new:e31/*3][attach:e31/*3 O-n34 I][attach:e31/*3 I-n33 O][detach:e31 I-n33 O][detach:e31 O-n34 I][delete:e31]movfeatsplitedges e31/*1 segment A5 *-feature
+# movfeatsplitedges e31/*3 segment A5 *-feature
+# movfeatsplitedges e32 segment X7 old *P(2) fixed ...
+# movfeatsplitedges  *P0[new:e32/*0][attach:e32/*0 O-n35 I][attach:e32/*0 I-n8 I]movfeatsplitedges  *P1[new:e32/*1][attach:e32/*1 O-n35 I][attach:e32/*1 I-n8 I][detach:e32 I-n8 I][detach:e32 O-n35 I][delete:e32]movfeatsplitedges e32/*0 segment X7 *-feature
+# movfeatsplitedges e32/*1 segment X7 *-feature
+# movfeatsplitedges e33 segment A3 no moveables
+# movfeatsplitedges e34 segment A1 no moveables
+# movfeatsplitedges e35 segment A1 no moveables
+# movfeatsplitedges e37 segment X7 old *P(2) fixed ...
+# movfeatsplitedges  *P0[new:e37/*0][attach:e37/*0 O-n39 I][attach:e37/*0 I-n35 O]movfeatsplitedges  *P1[new:e37/*1][attach:e37/*1 O-n39 I][attach:e37/*1 I-n35 O][detach:e37 I-n35 O][detach:e37 O-n39 I][delete:e37]movfeatsplitedges e37/*0 segment X7 *-feature
+# movfeatsplitedges e37/*1 segment X7 *-feature
+# movfeatsplitedges e38 segment X7 old *P(2) fixed ...
+# movfeatsplitedges  *P0[new:e38/*0][attach:e38/*0 O-n40 I][attach:e38/*0 I-n39 O]movfeatsplitedges  *P1[new:e38/*1][attach:e38/*1 O-n40 I][attach:e38/*1 I-n39 O][detach:e38 I-n39 O][detach:e38 O-n40 I][delete:e38]movfeatsplitedges e38/*0 segment X7 *-feature
+# movfeatsplitedges e38/*1 segment X7 *-feature
+# movfeatsplitedges e39 segment X6 no moveables
+# movfeatsplitedges e61 segment A6 old *PJ(4) fixed ...
+# movfeatsplitedges  *P0J0[new:e61/*0][attach:e61/*0 O-n42 I][attach:e61/*0 I-n44 O]movfeatsplitedges  *P1J0[new:e61/*1][attach:e61/*1 O-n42 I][attach:e61/*1 I-n44 O]movfeatsplitedges  *P0J1[new:e61/*2][attach:e61/*2 O-n42 I][attach:e61/*2 I-n44 O]movfeatsplitedges  *P1J1[new:e61/*3][attach:e61/*3 O-n42 I][attach:e61/*3 I-n44 O][detach:e61 I-n44 O][detach:e61 O-n42 I][delete:e61]movfeatsplitedges e61/*0 segment A6 *-feature
+# movfeatsplitedges e61/*1 segment A6 *-feature
+# movfeatsplitedges e61/*2 segment A6 *-feature
+# movfeatsplitedges e61/*3 segment A6 *-feature
+# movfeatsplitedges e60 segment A6 old *PJ(4) fixed ...
+# movfeatsplitedges  *P0J0[new:e60/*0][attach:e60/*0 O-n43 I][attach:e60/*0 I-n42 O]movfeatsplitedges  *P1J0[new:e60/*1][attach:e60/*1 O-n43 I][attach:e60/*1 I-n42 O]movfeatsplitedges  *P0J1[new:e60/*2][attach:e60/*2 O-n43 I][attach:e60/*2 I-n42 O]movfeatsplitedges  *P1J1[new:e60/*3][attach:e60/*3 O-n43 I][attach:e60/*3 I-n42 O][detach:e60 I-n42 O][detach:e60 O-n43 I][delete:e60]movfeatsplitedges e60/*0 segment A6 *-feature
+# movfeatsplitedges e60/*1 segment A6 *-feature
+# movfeatsplitedges e60/*2 segment A6 *-feature
+# movfeatsplitedges e60/*3 segment A6 *-feature
+# movfeatsplitedges e63 segment A5 old *PJ(4) fixed ...
+# movfeatsplitedges  *P0J0[new:e63/*0][attach:e63/*0 O-n45 I][attach:e63/*0 I-n47 O]movfeatsplitedges  *P1J0[new:e63/*1][attach:e63/*1 O-n45 I][attach:e63/*1 I-n47 O]movfeatsplitedges  *P0J1[new:e63/*2][attach:e63/*2 O-n45 I][attach:e63/*2 I-n47 O]movfeatsplitedges  *P1J1[new:e63/*3][attach:e63/*3 O-n45 I][attach:e63/*3 I-n47 O][detach:e63 I-n47 O][detach:e63 O-n45 I][delete:e63]movfeatsplitedges e63/*0 segment A5 *-feature
+# movfeatsplitedges e63/*1 segment A5 *-feature
+# movfeatsplitedges e63/*2 segment A5 *-feature
+# movfeatsplitedges e63/*3 segment A5 *-feature
+# movfeatsplitedges e62 segment A5 old *PJ(4) fixed ...
+# movfeatsplitedges  *P0J0[new:e62/*0][attach:e62/*0 O-n46 I][attach:e62/*0 I-n45 O]movfeatsplitedges  *P1J0[new:e62/*1][attach:e62/*1 O-n46 I][attach:e62/*1 I-n45 O]movfeatsplitedges  *P0J1[new:e62/*2][attach:e62/*2 O-n46 I][attach:e62/*2 I-n45 O]movfeatsplitedges  *P1J1[new:e62/*3][attach:e62/*3 O-n46 I][attach:e62/*3 I-n45 O][detach:e62 I-n45 O][detach:e62 O-n46 I][delete:e62]movfeatsplitedges e62/*0 segment A5 *-feature
+# movfeatsplitedges e62/*1 segment A5 *-feature
+# movfeatsplitedges e62/*2 segment A5 *-feature
+# movfeatsplitedges e62/*3 segment A5 *-feature
+# movfeatsplitedges e64 segment A5 old *PJ(4) fixed ...
+# movfeatsplitedges  *P0J0[new:e64/*0][attach:e64/*0 O-n47 I][attach:e64/*0 I-n48 I]movfeatsplitedges  *P1J0[new:e64/*1][attach:e64/*1 O-n47 I][attach:e64/*1 I-n48 I]movfeatsplitedges  *P0J1[new:e64/*2][attach:e64/*2 O-n47 I][attach:e64/*2 I-n48 I]movfeatsplitedges  *P1J1[new:e64/*3][attach:e64/*3 O-n47 I][attach:e64/*3 I-n48 I][detach:e64 I-n48 I][detach:e64 O-n47 I][delete:e64]movfeatsplitedges e64/*0 segment A5 *-feature
+# movfeatsplitedges e64/*1 segment A5 *-feature
+# movfeatsplitedges e64/*2 segment A5 *-feature
+# movfeatsplitedges e64/*3 segment A5 *-feature
+# movfeatsplitedges e68 segment A5 old *PJ(4) J(x2) ...
+# movfeatsplitedges  *P0J0 excluded
+# movfeatsplitedges  *P1J0 excluded
+# movfeatsplitedges  *P0J1[new:e68/*2][attach:e68/*2 O-n48 O][attach:e68/*2 I-n52 O]movfeatsplitedges  *P1J1[new:e68/*3][attach:e68/*3 O-n48 O][attach:e68/*3 I-n52 O][detach:e68 I-n52 O][detach:e68 O-n48 O][delete:e68]movfeatsplitedges e68/*2 segment A5 *-feature
+# movfeatsplitedges e68/*3 segment A5 *-feature
+# movfeatsplitedges e71 segment A5 old *PJ(4) fixed ...
+# movfeatsplitedges  *P0J0[new:e71/*0][attach:e71/*0 O-n49 I][attach:e71/*0 I-n54 O]movfeatsplitedges  *P1J0[new:e71/*1][attach:e71/*1 O-n49 I][attach:e71/*1 I-n54 O]movfeatsplitedges  *P0J1[new:e71/*2][attach:e71/*2 O-n49 I][attach:e71/*2 I-n54 O]movfeatsplitedges  *P1J1[new:e71/*3][attach:e71/*3 O-n49 I][attach:e71/*3 I-n54 O][detach:e71 I-n54 O][detach:e71 O-n49 I][delete:e71]movfeatsplitedges e71/*0 segment A5 *-feature
+# movfeatsplitedges e71/*1 segment A5 *-feature
+# movfeatsplitedges e71/*2 segment A5 *-feature
+# movfeatsplitedges e71/*3 segment A5 *-feature
+# movfeatsplitedges e65 segment A5 old *PJ(4) J(x2) ...
+# movfeatsplitedges  *P0J0[new:e65/*0][attach:e65/*0 O-n50 I][attach:e65/*0 I-n49 O]movfeatsplitedges  *P1J0[new:e65/*1][attach:e65/*1 O-n50 I][attach:e65/*1 I-n49 O]movfeatsplitedges  *P0J1 excluded
+# movfeatsplitedges  *P1J1 excluded
+# [detach:e65 I-n49 O][detach:e65 O-n50 I][delete:e65]movfeatsplitedges e65/*0 segment A5 *-feature
+# movfeatsplitedges e65/*1 segment A5 *-feature
+# movfeatsplitedges e66 segment A5 old *PJ(4) J(x2) ...
+# movfeatsplitedges  *P0J0 excluded
+# movfeatsplitedges  *P1J0 excluded
+# movfeatsplitedges  *P0J1[new:e66/*2][attach:e66/*2 O-n51 I][attach:e66/*2 I-n49 O]movfeatsplitedges  *P1J1[new:e66/*3][attach:e66/*3 O-n51 I][attach:e66/*3 I-n49 O][detach:e66 I-n49 O][detach:e66 O-n51 I][delete:e66]movfeatsplitedges e66/*2 segment A5 *-feature
+# movfeatsplitedges e66/*3 segment A5 *-feature
+# movfeatsplitedges e67 segment A5 old *PJ(4) J(x2) ...
+# movfeatsplitedges  *P0J0 excluded
+# movfeatsplitedges  *P1J0 excluded
+# movfeatsplitedges  *P0J1[new:e67/*2][attach:e67/*2 O-n52 I][attach:e67/*2 I-n51 O]movfeatsplitedges  *P1J1[new:e67/*3][attach:e67/*3 O-n52 I][attach:e67/*3 I-n51 O][detach:e67 I-n51 O][detach:e67 O-n52 I][delete:e67]movfeatsplitedges e67/*2 segment A5 *-feature
+# movfeatsplitedges e67/*3 segment A5 *-feature
+# movfeatsplitedges e69 segment A5 old *PJ(4) fixed ...
+# movfeatsplitedges  *P0J0[new:e69/*0][attach:e69/*0 O-n53 I][attach:e69/*0 I-n31 O]movfeatsplitedges  *P1J0[new:e69/*1][attach:e69/*1 O-n53 I][attach:e69/*1 I-n31 O]movfeatsplitedges  *P0J1[new:e69/*2][attach:e69/*2 O-n53 I][attach:e69/*2 I-n31 O]movfeatsplitedges  *P1J1[new:e69/*3][attach:e69/*3 O-n53 I][attach:e69/*3 I-n31 O][detach:e69 I-n31 O][detach:e69 O-n53 I][delete:e69]movfeatsplitedges e69/*0 segment A5 *-feature
+# movfeatsplitedges e69/*1 segment A5 *-feature
+# movfeatsplitedges e69/*2 segment A5 *-feature
+# movfeatsplitedges e69/*3 segment A5 *-feature
+# movfeatsplitedges e70 segment A5 old *PJ(4) fixed ...
+# movfeatsplitedges  *P0J0[new:e70/*0][attach:e70/*0 O-n54 I][attach:e70/*0 I-n53 O]movfeatsplitedges  *P1J0[new:e70/*1][attach:e70/*1 O-n54 I][attach:e70/*1 I-n53 O]movfeatsplitedges  *P0J1[new:e70/*2][attach:e70/*2 O-n54 I][attach:e70/*2 I-n53 O]movfeatsplitedges  *P1J1[new:e70/*3][attach:e70/*3 O-n54 I][attach:e70/*3 I-n53 O][detach:e70 I-n53 O][detach:e70 O-n54 I][delete:e70]movfeatsplitedges e70/*0 segment A5 *-feature
+# movfeatsplitedges e70/*1 segment A5 *-feature
+# movfeatsplitedges e70/*2 segment A5 *-feature
+# movfeatsplitedges e70/*3 segment A5 *-feature
+# movfeatsplitedges e72 segment A6 old *PJ(4) J(x2) ...
+# movfeatsplitedges  *P0J0[new:e72/*0][attach:e72/*0 O-n55 O][attach:e72/*0 I-n56 I]movfeatsplitedges  *P1J0[new:e72/*1][attach:e72/*1 O-n55 O][attach:e72/*1 I-n56 I]movfeatsplitedges  *P0J1 excluded
+# movfeatsplitedges  *P1J1 excluded
+# [detach:e72 I-n56 I][detach:e72 O-n55 O][delete:e72]movfeatsplitedges e73 segment A6 old *PJ(4) J(x2) ...
+# movfeatsplitedges  *P0J0 excluded
+# movfeatsplitedges  *P1J0 excluded
+# movfeatsplitedges  *P0J1[new:e73/*2][attach:e73/*2 O-n55 O][attach:e73/*2 I-n57 I]movfeatsplitedges  *P1J1[new:e73/*3][attach:e73/*3 O-n55 O][attach:e73/*3 I-n57 I][detach:e73 I-n57 I][detach:e73 O-n55 O][delete:e73]movfeatsplitedges e72/*0 segment A6 *-feature
+# movfeatsplitedges e72/*1 segment A6 *-feature
+# movfeatsplitedges e73/*2 segment A6 *-feature
+# movfeatsplitedges e73/*3 segment A6 *-feature
+# movfeatsplitedges e79 segment A6 old *PJ(4) fixed ...
+# movfeatsplitedges  *P0J0[new:e79/*0][attach:e79/*0 O-n56 O][attach:e79/*0 I-n61 O]movfeatsplitedges  *P1J0[new:e79/*1][attach:e79/*1 O-n56 O][attach:e79/*1 I-n61 O]movfeatsplitedges  *P0J1[new:e79/*2][attach:e79/*2 O-n56 O][attach:e79/*2 I-n61 O]movfeatsplitedges  *P1J1[new:e79/*3][attach:e79/*3 O-n56 O][attach:e79/*3 I-n61 O][detach:e79 I-n61 O][detach:e79 O-n56 O][delete:e79]movfeatsplitedges e79/*0 segment A6 *-feature
+# movfeatsplitedges e79/*1 segment A6 *-feature
+# movfeatsplitedges e79/*2 segment A6 *-feature
+# movfeatsplitedges e79/*3 segment A6 *-feature
+# movfeatsplitedges e74 segment A6 old *PJ(4) J(x2) ...
+# movfeatsplitedges  *P0J0 excluded
+# movfeatsplitedges  *P1J0 excluded
+# movfeatsplitedges  *P0J1[new:e74/*2][attach:e74/*2 O-n57 O][attach:e74/*2 I-n58 I]movfeatsplitedges  *P1J1[new:e74/*3][attach:e74/*3 O-n57 O][attach:e74/*3 I-n58 I][detach:e74 I-n58 I][detach:e74 O-n57 O][delete:e74]movfeatsplitedges e74/*2 segment A6 *-feature
+# movfeatsplitedges e74/*3 segment A6 *-feature
+# movfeatsplitedges e75 segment A6 old *PJ(4) J(x2) ...
+# movfeatsplitedges  *P0J0 excluded
+# movfeatsplitedges  *P1J0 excluded
+# movfeatsplitedges  *P0J1[new:e75/*2][attach:e75/*2 O-n58 O][attach:e75/*2 I-n43 O]movfeatsplitedges  *P1J1[new:e75/*3][attach:e75/*3 O-n58 O][attach:e75/*3 I-n43 O][detach:e75 I-n43 O][detach:e75 O-n58 O][delete:e75]movfeatsplitedges e75/*2 segment A6 *-feature
+# movfeatsplitedges e75/*3 segment A6 *-feature
+# movfeatsplitedges e76 segment A5 old *PJ(4) fixed ...
+# movfeatsplitedges  *P0J0[new:e76/*0][attach:e76/*0 O-n59 I][attach:e76/*0 I-n50 O]movfeatsplitedges  *P1J0[new:e76/*1][attach:e76/*1 O-n59 I][attach:e76/*1 I-n50 O]movfeatsplitedges  *P0J1[new:e76/*2][attach:e76/*2 O-n59 I][attach:e76/*2 I-n50 O]movfeatsplitedges  *P1J1[new:e76/*3][attach:e76/*3 O-n59 I][attach:e76/*3 I-n50 O][detach:e76 I-n50 O][detach:e76 O-n59 I][delete:e76]movfeatsplitedges e76/*0 segment A5 *-feature
+# movfeatsplitedges e76/*1 segment A5 *-feature
+# movfeatsplitedges e76/*2 segment A5 *-feature
+# movfeatsplitedges e76/*3 segment A5 *-feature
+# movfeatsplitedges e77 segment A5 old *PJ(4) fixed ...
+# movfeatsplitedges  *P0J0[new:e77/*0][attach:e77/*0 O-n60 I][attach:e77/*0 I-n59 O]movfeatsplitedges  *P1J0[new:e77/*1][attach:e77/*1 O-n60 I][attach:e77/*1 I-n59 O]movfeatsplitedges  *P0J1[new:e77/*2][attach:e77/*2 O-n60 I][attach:e77/*2 I-n59 O]movfeatsplitedges  *P1J1[new:e77/*3][attach:e77/*3 O-n60 I][attach:e77/*3 I-n59 O][detach:e77 I-n59 O][detach:e77 O-n60 I][delete:e77]movfeatsplitedges e77/*0 segment A5 *-feature
+# movfeatsplitedges e77/*1 segment A5 *-feature
+# movfeatsplitedges e77/*2 segment A5 *-feature
+# movfeatsplitedges e77/*3 segment A5 *-feature
+# movfeatsplitedges e78 segment A6 old *PJ(4) fixed ...
+# movfeatsplitedges  *P0J0[new:e78/*0][attach:e78/*0 O-n61 I][attach:e78/*0 I-n60 O]movfeatsplitedges  *P1J0[new:e78/*1][attach:e78/*1 O-n61 I][attach:e78/*1 I-n60 O]movfeatsplitedges  *P0J1[new:e78/*2][attach:e78/*2 O-n61 I][attach:e78/*2 I-n60 O]movfeatsplitedges  *P1J1[new:e78/*3][attach:e78/*3 O-n61 I][attach:e78/*3 I-n60 O][detach:e78 I-n60 O][detach:e78 O-n61 I][delete:e78]movfeatsplitedges e78/*0 segment A6 *-feature
+# movfeatsplitedges e78/*1 segment A6 *-feature
+# movfeatsplitedges e78/*2 segment A6 *-feature
+# movfeatsplitedges e78/*3 segment A6 *-feature
+# movfeatsplitedges e80 segment A6 old *PJ(4) fixed ...
+# movfeatsplitedges  *P0J0[new:e80/*0][attach:e80/*0 O-n62 I][attach:e80/*0 I-n55 I]movfeatsplitedges  *P1J0[new:e80/*1][attach:e80/*1 O-n62 I][attach:e80/*1 I-n55 I]movfeatsplitedges  *P0J1[new:e80/*2][attach:e80/*2 O-n62 I][attach:e80/*2 I-n55 I]movfeatsplitedges  *P1J1[new:e80/*3][attach:e80/*3 O-n62 I][attach:e80/*3 I-n55 I][detach:e80 I-n55 I][detach:e80 O-n62 I][delete:e80]movfeatsplitedges e80/*0 segment A6 *-feature
+# movfeatsplitedges e80/*1 segment A6 *-feature
+# movfeatsplitedges e80/*2 segment A6 *-feature
+# movfeatsplitedges e80/*3 segment A6 *-feature
+# movfeatsplitedges e81 segment A6 old *PJ(4) fixed ...
+# movfeatsplitedges  *P0J0[new:e81/*0][attach:e81/*0 O-n63 I][attach:e81/*0 I-n62 O]movfeatsplitedges  *P1J0[new:e81/*1][attach:e81/*1 O-n63 I][attach:e81/*1 I-n62 O]movfeatsplitedges  *P0J1[new:e81/*2][attach:e81/*2 O-n63 I][attach:e81/*2 I-n62 O]movfeatsplitedges  *P1J1[new:e81/*3][attach:e81/*3 O-n63 I][attach:e81/*3 I-n62 O][detach:e81 I-n62 O][detach:e81 O-n63 I][delete:e81]movfeatsplitedges e81/*0 segment A6 *-feature
+# movfeatsplitedges e81/*1 segment A6 *-feature
+# movfeatsplitedges e81/*2 segment A6 *-feature
+# movfeatsplitedges e81/*3 segment A6 *-feature
+# movfeatsplitedges e110 segment X7 old *P(2) fixed ...
+# movfeatsplitedges  *P0[new:e110/*0][attach:e110/*0 O-n64 I][attach:e110/*0 I-n40 O]movfeatsplitedges  *P1[new:e110/*1][attach:e110/*1 O-n64 I][attach:e110/*1 I-n40 O][detach:e110 I-n40 O][detach:e110 O-n64 I][delete:e110]movfeatsplitedges e110/*0 segment X7 *-feature
+# movfeatsplitedges e110/*1 segment X7 *-feature
+# movfeatsplitedges e111 segment X9 no moveables
+# movfeatsplitedges e123 segment X10 no moveables
+# movfeatsplitedges e124 segment X10 no moveables
+# movfeatsplitedges e125 segment X8 old *P(2) fixed ...
+# movfeatsplitedges  *P0[new:e125/*0][attach:e125/*0 O-n68 I][attach:e125/*0 I-n67 O]movfeatsplitedges  *P1[new:e125/*1][attach:e125/*1 O-n68 I][attach:e125/*1 I-n67 O][detach:e125 I-n67 O][detach:e125 O-n68 I][delete:e125]movfeatsplitedges e125/*0 segment X8 *-feature
+# movfeatsplitedges e125/*1 segment X8 *-feature
+# movfeatsplitedges complete.
+# consistency check (command-line request) ...
+#  consistency n0
+#  consistency n0 O
+#  consistency n0 O e0/*1 I
+#  consistency n0 I
+#  consistency n0 I e1/*1 O
+#  consistency n1
+#  consistency n1 O
+#  consistency n1 O e4/*1 I
+#  consistency n1 I
+#  consistency n1 I e0/*1 O
+#  consistency n2
+#  consistency n2 O
+#  consistency n2 O e1/*1 I
+#  consistency n2 I
+#  consistency n2 I e16/*0 I
+#  consistency n3
+#  consistency n3 O
+#  consistency n3 O e2/*0 O
+#  consistency n3 I
+#  consistency n3 I e3/*0 I
+#  consistency n4
+#  consistency n4 O
+#  consistency n4 O e10/*0 O
+#  consistency n4 I
+#  consistency n4 I e2/*0 I
+#  consistency n5
+#  consistency n5 O
+#  consistency n5 O e3/*0 O
+#  consistency n5 I
+#  consistency n5 I e36 O
+#  consistency n6
+#  consistency n6 O
+#  consistency n6 O e5 I
+#  consistency n6 I
+#  consistency n6 I e4/*1 O
+#  consistency n7
+#  consistency n7 O
+#  consistency n7 O e9/*1 I
+#  consistency n7 I
+#  consistency n7 I e5 O
+#  consistency n8
+#  consistency n8 O
+#  consistency n8 O e6/*0 O
+#  consistency n8 O e7/*1 O
+#  consistency n8 I
+#  consistency n8 I e32/*0 I
+#  consistency n8 I e32/*1 I
+#  consistency n9
+#  consistency n9 O
+#  consistency n9 O e40 O
+#  consistency n9 I
+#  consistency n9 I e6/*0 I
+#  consistency n10
+#  consistency n10 O
+#  consistency n10 O e8/*1 O
+#  consistency n10 I
+#  consistency n10 I e7/*1 I
+#  consistency n11
+#  consistency n11 O
+#  consistency n11 O e9/*1 O
+#  consistency n11 I
+#  consistency n11 I e8/*1 I
+#  consistency n12
+#  consistency n12 O
+#  consistency n12 O e11 O
+#  consistency n12 I
+#  consistency n12 I e10/*0 I
+#  consistency n13
+#  consistency n13 O
+#  consistency n13 O e15/*1 O
+#  consistency n13 I
+#  consistency n13 I e11 I
+#  consistency n14
+#  consistency n14 O
+#  consistency n14 O e12/*0 I
+#  consistency n14 O e13/*1 I
+#  consistency n14 I
+#  consistency n14 I e126/*0 O
+#  consistency n14 I e126/*1 O
+#  consistency n15
+#  consistency n15 O
+#  consistency n15 O e39 I
+#  consistency n15 I
+#  consistency n15 I e12/*0 O
+#  consistency n16
+#  consistency n16 O
+#  consistency n16 O e14/*1 I
+#  consistency n16 I
+#  consistency n16 I e13/*1 O
+#  consistency n17
+#  consistency n17 O
+#  consistency n17 O e15/*1 I
+#  consistency n17 I
+#  consistency n17 I e14/*1 O
+#  consistency n18
+#  consistency n18 O
+#  consistency n18 O e17/*0 I
+#  consistency n18 I
+#  consistency n18 I e16/*0 O
+#  consistency n19
+#  consistency n19 O
+#  consistency n19 O e17/*0 O
+#  consistency n19 O e18/*1 O
+#  consistency n19 I
+#  consistency n19 I e21/*0 I
+#  consistency n19 I e21/*1 I
+#  consistency n20
+#  consistency n20 O
+#  consistency n20 O e19/*1 O
+#  consistency n20 I
+#  consistency n20 I e18/*1 I
+#  consistency n21
+#  consistency n21 O
+#  consistency n21 O e20/*1 O
+#  consistency n21 I
+#  consistency n21 I e19/*1 I
+#  consistency n22
+#  consistency n22 O
+#  consistency n22 I
+#  consistency n22 I e20/*1 I
+#  consistency n23
+#  consistency n23 O
+#  consistency n23 O e22 I
+#  consistency n23 I
+#  consistency n23 I e21/*0 O
+#  consistency n23 I e21/*1 O
+#  consistency n24
+#  consistency n24 O
+#  consistency n24 O e26/*1 I
+#  consistency n24 O e26/*3 I
+#  consistency n24 I
+#  consistency n24 I e22 O
+#  consistency n25
+#  consistency n25 O
+#  consistency n25 O e23/*0 O
+#  consistency n25 O e23/*2 O
+#  consistency n25 O e24/*1 O
+#  consistency n25 O e24/*3 O
+#  consistency n25 I
+#  consistency n25 I e27 I
+#  consistency n26
+#  consistency n26 O
+#  consistency n26 O e82/*0 O
+#  consistency n26 O e82/*1 O
+#  consistency n26 O e82/*2 O
+#  consistency n26 O e82/*3 O
+#  consistency n26 I
+#  consistency n26 I e23/*0 I
+#  consistency n26 I e23/*2 I
+#  consistency n27
+#  consistency n27 O
+#  consistency n27 O e25/*1 O
+#  consistency n27 O e25/*3 O
+#  consistency n27 I
+#  consistency n27 I e24/*1 I
+#  consistency n27 I e24/*3 I
+#  consistency n28
+#  consistency n28 O
+#  consistency n28 O e26/*1 O
+#  consistency n28 O e26/*3 O
+#  consistency n28 I
+#  consistency n28 I e25/*1 I
+#  consistency n28 I e25/*3 I
+#  consistency n29
+#  consistency n29 O
+#  consistency n29 O e123 I
+#  consistency n29 I
+#  consistency n29 I e27 O
+#  consistency n30
+#  consistency n30 O
+#  consistency n30 O e28/*0 I
+#  consistency n30 O e28/*2 I
+#  consistency n30 O e29/*1 I
+#  consistency n30 O e29/*3 I
+#  consistency n30 I
+#  consistency n30 I e112 O
+#  consistency n31
+#  consistency n31 O
+#  consistency n31 O e69/*0 I
+#  consistency n31 O e69/*1 I
+#  consistency n31 O e69/*2 I
+#  consistency n31 O e69/*3 I
+#  consistency n31 I
+#  consistency n31 I e28/*0 O
+#  consistency n31 I e28/*2 O
+#  consistency n32
+#  consistency n32 O
+#  consistency n32 O e30/*1 I
+#  consistency n32 O e30/*3 I
+#  consistency n32 I
+#  consistency n32 I e29/*1 O
+#  consistency n32 I e29/*3 O
+#  consistency n33
+#  consistency n33 O
+#  consistency n33 O e31/*1 I
+#  consistency n33 O e31/*3 I
+#  consistency n33 I
+#  consistency n33 I e30/*1 O
+#  consistency n33 I e30/*3 O
+#  consistency n34
+#  consistency n34 O
+#  consistency n34 O e33 I
+#  consistency n34 I
+#  consistency n34 I e31/*1 O
+#  consistency n34 I e31/*3 O
+#  consistency n35
+#  consistency n35 O
+#  consistency n35 O e37/*0 I
+#  consistency n35 O e37/*1 I
+#  consistency n35 I
+#  consistency n35 I e32/*0 O
+#  consistency n35 I e32/*1 O
+#  consistency n36
+#  consistency n36 O
+#  consistency n36 O e34 I
+#  consistency n36 I
+#  consistency n36 I e33 O
+#  consistency n37
+#  consistency n37 O
+#  consistency n37 O e35 I
+#  consistency n37 I
+#  consistency n37 I e34 O
+#  consistency n38
+#  consistency n38 O
+#  consistency n38 O e36 I
+#  consistency n38 I
+#  consistency n38 I e35 O
+#  consistency n39
+#  consistency n39 O
+#  consistency n39 O e38/*0 I
+#  consistency n39 O e38/*1 I
+#  consistency n39 I
+#  consistency n39 I e37/*0 O
+#  consistency n39 I e37/*1 O
+#  consistency n40
+#  consistency n40 O
+#  consistency n40 O e110/*0 I
+#  consistency n40 O e110/*1 I
+#  consistency n40 I
+#  consistency n40 I e38/*0 O
+#  consistency n40 I e38/*1 O
+#  consistency n41
+#  consistency n41 O
+#  consistency n41 O e40 I
+#  consistency n41 I
+#  consistency n41 I e39 O
+#  consistency n42
+#  consistency n42 O
+#  consistency n42 O e60/*0 I
+#  consistency n42 O e60/*1 I
+#  consistency n42 O e60/*2 I
+#  consistency n42 O e60/*3 I
+#  consistency n42 I
+#  consistency n42 I e61/*0 O
+#  consistency n42 I e61/*1 O
+#  consistency n42 I e61/*2 O
+#  consistency n42 I e61/*3 O
+#  consistency n43
+#  consistency n43 O
+#  consistency n43 O e75/*2 I
+#  consistency n43 O e75/*3 I
+#  consistency n43 I
+#  consistency n43 I e60/*0 O
+#  consistency n43 I e60/*1 O
+#  consistency n43 I e60/*2 O
+#  consistency n43 I e60/*3 O
+#  consistency n44
+#  consistency n44 O
+#  consistency n44 O e61/*0 I
+#  consistency n44 O e61/*1 I
+#  consistency n44 O e61/*2 I
+#  consistency n44 O e61/*3 I
+#  consistency n44 I
+#  consistency n45
+#  consistency n45 O
+#  consistency n45 O e62/*0 I
+#  consistency n45 O e62/*1 I
+#  consistency n45 O e62/*2 I
+#  consistency n45 O e62/*3 I
+#  consistency n45 I
+#  consistency n45 I e63/*0 O
+#  consistency n45 I e63/*1 O
+#  consistency n45 I e63/*2 O
+#  consistency n45 I e63/*3 O
+#  consistency n46
+#  consistency n46 O
+#  consistency n46 I
+#  consistency n46 I e62/*0 O
+#  consistency n46 I e62/*1 O
+#  consistency n46 I e62/*2 O
+#  consistency n46 I e62/*3 O
+#  consistency n47
+#  consistency n47 O
+#  consistency n47 O e63/*0 I
+#  consistency n47 O e63/*1 I
+#  consistency n47 O e63/*2 I
+#  consistency n47 O e63/*3 I
+#  consistency n47 I
+#  consistency n47 I e64/*0 O
+#  consistency n47 I e64/*1 O
+#  consistency n47 I e64/*2 O
+#  consistency n47 I e64/*3 O
+#  consistency n48
+#  consistency n48 O
+#  consistency n48 O e68/*2 O
+#  consistency n48 O e68/*3 O
+#  consistency n48 I
+#  consistency n48 I e64/*0 I
+#  consistency n48 I e64/*1 I
+#  consistency n48 I e64/*2 I
+#  consistency n48 I e64/*3 I
+#  consistency n49
+#  consistency n49 O
+#  consistency n49 O e65/*0 I
+#  consistency n49 O e65/*1 I
+#  consistency n49 O e66/*2 I
+#  consistency n49 O e66/*3 I
+#  consistency n49 I
+#  consistency n49 I e71/*0 O
+#  consistency n49 I e71/*1 O
+#  consistency n49 I e71/*2 O
+#  consistency n49 I e71/*3 O
+#  consistency n50
+#  consistency n50 O
+#  consistency n50 O e76/*0 I
+#  consistency n50 O e76/*1 I
+#  consistency n50 O e76/*2 I
+#  consistency n50 O e76/*3 I
+#  consistency n50 I
+#  consistency n50 I e65/*0 O
+#  consistency n50 I e65/*1 O
+#  consistency n51
+#  consistency n51 O
+#  consistency n51 O e67/*2 I
+#  consistency n51 O e67/*3 I
+#  consistency n51 I
+#  consistency n51 I e66/*2 O
+#  consistency n51 I e66/*3 O
+#  consistency n52
+#  consistency n52 O
+#  consistency n52 O e68/*2 I
+#  consistency n52 O e68/*3 I
+#  consistency n52 I
+#  consistency n52 I e67/*2 O
+#  consistency n52 I e67/*3 O
+#  consistency n53
+#  consistency n53 O
+#  consistency n53 O e70/*0 I
+#  consistency n53 O e70/*1 I
+#  consistency n53 O e70/*2 I
+#  consistency n53 O e70/*3 I
+#  consistency n53 I
+#  consistency n53 I e69/*0 O
+#  consistency n53 I e69/*1 O
+#  consistency n53 I e69/*2 O
+#  consistency n53 I e69/*3 O
+#  consistency n54
+#  consistency n54 O
+#  consistency n54 O e71/*0 I
+#  consistency n54 O e71/*1 I
+#  consistency n54 O e71/*2 I
+#  consistency n54 O e71/*3 I
+#  consistency n54 I
+#  consistency n54 I e70/*0 O
+#  consistency n54 I e70/*1 O
+#  consistency n54 I e70/*2 O
+#  consistency n54 I e70/*3 O
+#  consistency n55
+#  consistency n55 O
+#  consistency n55 O e72/*0 O
+#  consistency n55 O e72/*1 O
+#  consistency n55 O e73/*2 O
+#  consistency n55 O e73/*3 O
+#  consistency n55 I
+#  consistency n55 I e80/*0 I
+#  consistency n55 I e80/*1 I
+#  consistency n55 I e80/*2 I
+#  consistency n55 I e80/*3 I
+#  consistency n56
+#  consistency n56 O
+#  consistency n56 O e79/*0 O
+#  consistency n56 O e79/*1 O
+#  consistency n56 O e79/*2 O
+#  consistency n56 O e79/*3 O
+#  consistency n56 I
+#  consistency n56 I e72/*0 I
+#  consistency n56 I e72/*1 I
+#  consistency n57
+#  consistency n57 O
+#  consistency n57 O e74/*2 O
+#  consistency n57 O e74/*3 O
+#  consistency n57 I
+#  consistency n57 I e73/*2 I
+#  consistency n57 I e73/*3 I
+#  consistency n58
+#  consistency n58 O
+#  consistency n58 O e75/*2 O
+#  consistency n58 O e75/*3 O
+#  consistency n58 I
+#  consistency n58 I e74/*2 I
+#  consistency n58 I e74/*3 I
+#  consistency n59
+#  consistency n59 O
+#  consistency n59 O e77/*0 I
+#  consistency n59 O e77/*1 I
+#  consistency n59 O e77/*2 I
+#  consistency n59 O e77/*3 I
+#  consistency n59 I
+#  consistency n59 I e76/*0 O
+#  consistency n59 I e76/*1 O
+#  consistency n59 I e76/*2 O
+#  consistency n59 I e76/*3 O
+#  consistency n60
+#  consistency n60 O
+#  consistency n60 O e78/*0 I
+#  consistency n60 O e78/*1 I
+#  consistency n60 O e78/*2 I
+#  consistency n60 O e78/*3 I
+#  consistency n60 I
+#  consistency n60 I e77/*0 O
+#  consistency n60 I e77/*1 O
+#  consistency n60 I e77/*2 O
+#  consistency n60 I e77/*3 O
+#  consistency n61
+#  consistency n61 O
+#  consistency n61 O e79/*0 I
+#  consistency n61 O e79/*1 I
+#  consistency n61 O e79/*2 I
+#  consistency n61 O e79/*3 I
+#  consistency n61 I
+#  consistency n61 I e78/*0 O
+#  consistency n61 I e78/*1 O
+#  consistency n61 I e78/*2 O
+#  consistency n61 I e78/*3 O
+#  consistency n62
+#  consistency n62 O
+#  consistency n62 O e81/*0 I
+#  consistency n62 O e81/*1 I
+#  consistency n62 O e81/*2 I
+#  consistency n62 O e81/*3 I
+#  consistency n62 I
+#  consistency n62 I e80/*0 O
+#  consistency n62 I e80/*1 O
+#  consistency n62 I e80/*2 O
+#  consistency n62 I e80/*3 O
+#  consistency n63
+#  consistency n63 O
+#  consistency n63 O e82/*0 I
+#  consistency n63 O e82/*1 I
+#  consistency n63 O e82/*2 I
+#  consistency n63 O e82/*3 I
+#  consistency n63 I
+#  consistency n63 I e81/*0 O
+#  consistency n63 I e81/*1 O
+#  consistency n63 I e81/*2 O
+#  consistency n63 I e81/*3 O
+#  consistency n64
+#  consistency n64 O
+#  consistency n64 O e111 I
+#  consistency n64 I
+#  consistency n64 I e110/*0 O
+#  consistency n64 I e110/*1 O
+#  consistency n65
+#  consistency n65 O
+#  consistency n65 O e112 I
+#  consistency n65 I
+#  consistency n65 I e111 O
+#  consistency n66
+#  consistency n66 O
+#  consistency n66 O e124 I
+#  consistency n66 I
+#  consistency n66 I e123 O
+#  consistency n67
+#  consistency n67 O
+#  consistency n67 O e125/*0 I
+#  consistency n67 O e125/*1 I
+#  consistency n67 I
+#  consistency n67 I e124 O
+#  consistency n68
+#  consistency n68 O
+#  consistency n68 O e126/*0 I
+#  consistency n68 O e126/*1 I
+#  consistency n68 I
+#  consistency n68 I e125/*0 O
+#  consistency n68 I e125/*1 O
+# consistency e0/*1 count=2
+# consistency e1/*1 count=2
+# consistency e4/*1 count=2
+# consistency e16/*0 count=2
+# consistency e2/*0 count=2
+# consistency e3/*0 count=2
+# consistency e10/*0 count=2
+# consistency e36 count=2
+# consistency e5 count=2
+# consistency e9/*1 count=2
+# consistency e6/*0 count=2
+# consistency e7/*1 count=2
+# consistency e32/*0 count=2
+# consistency e32/*1 count=2
+# consistency e40 count=2
+# consistency e8/*1 count=2
+# consistency e11 count=2
+# consistency e15/*1 count=2
+# consistency e12/*0 count=2
+# consistency e13/*1 count=2
+# consistency e126/*0 count=2
+# consistency e126/*1 count=2
+# consistency e39 count=2
+# consistency e14/*1 count=2
+# consistency e17/*0 count=2
+# consistency e18/*1 count=2
+# consistency e21/*0 count=2
+# consistency e21/*1 count=2
+# consistency e19/*1 count=2
+# consistency e20/*1 count=2
+# consistency e22 count=2
+# consistency e26/*1 count=2
+# consistency e26/*3 count=2
+# consistency e23/*0 count=2
+# consistency e23/*2 count=2
+# consistency e24/*1 count=2
+# consistency e24/*3 count=2
+# consistency e27 count=2
+# consistency e82/*0 count=2
+# consistency e82/*1 count=2
+# consistency e82/*2 count=2
+# consistency e82/*3 count=2
+# consistency e25/*1 count=2
+# consistency e25/*3 count=2
+# consistency e123 count=2
+# consistency e28/*0 count=2
+# consistency e28/*2 count=2
+# consistency e29/*1 count=2
+# consistency e29/*3 count=2
+# consistency e112 count=2
+# consistency e69/*0 count=2
+# consistency e69/*1 count=2
+# consistency e69/*2 count=2
+# consistency e69/*3 count=2
+# consistency e30/*1 count=2
+# consistency e30/*3 count=2
+# consistency e31/*1 count=2
+# consistency e31/*3 count=2
+# consistency e33 count=2
+# consistency e37/*0 count=2
+# consistency e37/*1 count=2
+# consistency e34 count=2
+# consistency e35 count=2
+# consistency e38/*0 count=2
+# consistency e38/*1 count=2
+# consistency e110/*0 count=2
+# consistency e110/*1 count=2
+# consistency e60/*0 count=2
+# consistency e60/*1 count=2
+# consistency e60/*2 count=2
+# consistency e60/*3 count=2
+# consistency e61/*0 count=2
+# consistency e61/*1 count=2
+# consistency e61/*2 count=2
+# consistency e61/*3 count=2
+# consistency e75/*2 count=2
+# consistency e75/*3 count=2
+# consistency e62/*0 count=2
+# consistency e62/*1 count=2
+# consistency e62/*2 count=2
+# consistency e62/*3 count=2
+# consistency e63/*0 count=2
+# consistency e63/*1 count=2
+# consistency e63/*2 count=2
+# consistency e63/*3 count=2
+# consistency e64/*0 count=2
+# consistency e64/*1 count=2
+# consistency e64/*2 count=2
+# consistency e64/*3 count=2
+# consistency e68/*2 count=2
+# consistency e68/*3 count=2
+# consistency e65/*0 count=2
+# consistency e65/*1 count=2
+# consistency e66/*2 count=2
+# consistency e66/*3 count=2
+# consistency e71/*0 count=2
+# consistency e71/*1 count=2
+# consistency e71/*2 count=2
+# consistency e71/*3 count=2
+# consistency e76/*0 count=2
+# consistency e76/*1 count=2
+# consistency e76/*2 count=2
+# consistency e76/*3 count=2
+# consistency e67/*2 count=2
+# consistency e67/*3 count=2
+# consistency e70/*0 count=2
+# consistency e70/*1 count=2
+# consistency e70/*2 count=2
+# consistency e70/*3 count=2
+# consistency e72/*0 count=2
+# consistency e72/*1 count=2
+# consistency e73/*2 count=2
+# consistency e73/*3 count=2
+# consistency e80/*0 count=2
+# consistency e80/*1 count=2
+# consistency e80/*2 count=2
+# consistency e80/*3 count=2
+# consistency e79/*0 count=2
+# consistency e79/*1 count=2
+# consistency e79/*2 count=2
+# consistency e79/*3 count=2
+# consistency e74/*2 count=2
+# consistency e74/*3 count=2
+# consistency e77/*0 count=2
+# consistency e77/*1 count=2
+# consistency e77/*2 count=2
+# consistency e77/*3 count=2
+# consistency e78/*0 count=2
+# consistency e78/*1 count=2
+# consistency e78/*2 count=2
+# consistency e78/*3 count=2
+# consistency e81/*0 count=2
+# consistency e81/*1 count=2
+# consistency e81/*2 count=2
+# consistency e81/*3 count=2
+# consistency e111 count=2
+# consistency e124 count=2
+# consistency e125/*0 count=2
+# consistency e125/*1 count=2
+# consistency check (command-line request) ok
+# movfeatrmstubs pass 1 ...
+# movfeatrmstubs n0 inner X2 (e0/*1 I)(e1/*1 O)
+# movfeatrmstubs n1 inner X2 (e4/*1 I)(e0/*1 O)
+# movfeatrmstubs n2 not inner: X2 and A2
+# movfeatrmstubs n3 inner X2 (e2/*0 O)(e3/*0 I)
+# movfeatrmstubs n4 inner X2 (e10/*0 O)(e2/*0 I)
+# movfeatrmstubs n5 not inner: X2 and A1
+# movfeatrmstubs n6 not inner: X3 and X2
+# movfeatrmstubs n7 not inner: X7 and X3
+# movfeatrmstubs n8 inner X7 (e6/*0 O)(e7/*1 O)(e32/*0 I)(e32/*1 I)
+# movfeatrmstubs n9 not inner: X5 and X7
+# movfeatrmstubs n10 inner X7 (e8/*1 O)(e7/*1 I)
+# movfeatrmstubs n11 inner X7 (e9/*1 O)(e8/*1 I)
+# movfeatrmstubs n12 not inner: X4 and X2
+# movfeatrmstubs n13 not inner: X8 and X4
+# movfeatrmstubs n14 inner X8 (e12/*0 I)(e13/*1 I)(e126/*0 O)(e126/*1 O)
+# movfeatrmstubs n15 not inner: X6 and X8
+# movfeatrmstubs n16 inner X8 (e14/*1 I)(e13/*1 O)
+# movfeatrmstubs n17 inner X8 (e15/*1 I)(e14/*1 O)
+# movfeatrmstubs n18 inner A2 (e17/*0 I)(e16/*0 O)
+# movfeatrmstubs n19 inner A2 (e17/*0 O)(e18/*1 O)(e21/*0 I)(e21/*1 I)
+# movfeatrmstubs n20 inner A2 (e19/*1 O)(e18/*1 I)
+# movfeatrmstubs n21 inner A2 (e20/*1 O)(e19/*1 I)
+# movfeatrmstubs n22 O terminus
+# movfeatrmstubs n23 not inner: A4 and A2
+# movfeatrmstubs n24 not inner: A6 and A4
+# movfeatrmstubs n25 not inner: A6 and X10
+# movfeatrmstubs n26 inner A6 (e82/*0 O)[detach:e82/*1 I-n63 O][detach:e82/*1 O-n26 O][delete:e82/*1](e82/*2 O)[detach:e82/*3 I-n63 O][detach:e82/*3 O-n26 O][delete:e82/*3](e23/*0 I)(e23/*2 I)
+# movfeatrmstubs n27 inner A6 (e25/*1 O)(e25/*3 O)(e24/*1 I)(e24/*3 I)
+# movfeatrmstubs n28 inner A6 (e26/*1 O)(e26/*3 O)(e25/*1 I)(e25/*3 I)
+# movfeatrmstubs n29 inner X10 (e123 I)(e27 O)
+# movfeatrmstubs n30 not inner: A5 and X9
+# movfeatrmstubs n31 inner A5 (e69/*0 I)[detach:e69/*1 O-n53 I][detach:e69/*1 I-n31 O][delete:e69/*1](e69/*2 I)[detach:e69/*3 O-n53 I][detach:e69/*3 I-n31 O][delete:e69/*3](e28/*0 O)(e28/*2 O)
+# movfeatrmstubs n32 inner A5 (e30/*1 I)(e30/*3 I)(e29/*1 O)(e29/*3 O)
+# movfeatrmstubs n33 inner A5 (e31/*1 I)(e31/*3 I)(e30/*1 O)(e30/*3 O)
+# movfeatrmstubs n34 not inner: A3 and A5
+# movfeatrmstubs n35 inner X7 (e37/*0 I)(e37/*1 I)(e32/*0 O)(e32/*1 O)
+# movfeatrmstubs n36 not inner: A1 and A3
+# movfeatrmstubs n37 inner A1 (e35 I)(e34 O)
+# movfeatrmstubs n38 inner A1 (e36 I)(e35 O)
+# movfeatrmstubs n39 inner X7 (e38/*0 I)(e38/*1 I)(e37/*0 O)(e37/*1 O)
+# movfeatrmstubs n40 inner X7 (e110/*0 I)(e110/*1 I)(e38/*0 O)(e38/*1 O)
+# movfeatrmstubs n41 not inner: X5 and X6
+# movfeatrmstubs n42 inner A6 (e60/*0 I)(e60/*1 I)(e60/*2 I)(e60/*3 I)(e61/*0 O)(e61/*1 O)(e61/*2 O)(e61/*3 O)
+# movfeatrmstubs n43 inner A6 (e75/*2 I)(e75/*3 I)[detach:e60/*0 I-n42 O][detach:e60/*0 O-n43 I][delete:e60/*0][detach:e60/*1 I-n42 O][detach:e60/*1 O-n43 I][delete:e60/*1](e60/*2 O)(e60/*3 O)
+# movfeatrmstubs n44 I terminus
+# movfeatrmstubs n45 inner A5 (e62/*0 I)(e62/*1 I)(e62/*2 I)(e62/*3 I)(e63/*0 O)(e63/*1 O)(e63/*2 O)(e63/*3 O)
+# movfeatrmstubs n46 O terminus
+# movfeatrmstubs n47 inner A5 (e63/*0 I)(e63/*1 I)(e63/*2 I)(e63/*3 I)(e64/*0 O)(e64/*1 O)(e64/*2 O)(e64/*3 O)
+# movfeatrmstubs n48 inner A5 (e68/*2 O)(e68/*3 O)[detach:e64/*0 O-n47 I][detach:e64/*0 I-n48 I][delete:e64/*0][detach:e64/*1 O-n47 I][detach:e64/*1 I-n48 I][delete:e64/*1](e64/*2 I)(e64/*3 I)
+# movfeatrmstubs n49 inner A5 (e65/*0 I)(e65/*1 I)(e66/*2 I)(e66/*3 I)(e71/*0 O)(e71/*1 O)(e71/*2 O)(e71/*3 O)
+# movfeatrmstubs n50 inner A5 (e76/*0 I)(e76/*1 I)[detach:e76/*2 O-n59 I][detach:e76/*2 I-n50 O][delete:e76/*2][detach:e76/*3 O-n59 I][detach:e76/*3 I-n50 O][delete:e76/*3](e65/*0 O)(e65/*1 O)
+# movfeatrmstubs n51 inner A5 (e67/*2 I)(e67/*3 I)(e66/*2 O)(e66/*3 O)
+# movfeatrmstubs n52 inner A5 (e68/*2 I)(e68/*3 I)(e67/*2 O)(e67/*3 O)
+# movfeatrmstubs n53 inner A5 (e70/*0 I)[detach:e70/*1 O-n54 I][detach:e70/*1 I-n53 O][delete:e70/*1](e70/*2 I)[detach:e70/*3 O-n54 I][detach:e70/*3 I-n53 O][delete:e70/*3](e69/*0 O)(e69/*2 O)
+# movfeatrmstubs n54 inner A5 (e71/*0 I)[detach:e71/*1 O-n49 I][detach:e71/*1 I-n54 O][delete:e71/*1](e71/*2 I)[detach:e71/*3 O-n49 I][detach:e71/*3 I-n54 O][delete:e71/*3](e70/*0 O)(e70/*2 O)
+# movfeatrmstubs n55 inner A6 (e72/*0 O)(e72/*1 O)(e73/*2 O)(e73/*3 O)(e80/*0 I)(e80/*1 I)(e80/*2 I)(e80/*3 I)
+# movfeatrmstubs n56 inner A6 (e79/*0 O)(e79/*1 O)[detach:e79/*2 I-n61 O][detach:e79/*2 O-n56 O][delete:e79/*2][detach:e79/*3 I-n61 O][detach:e79/*3 O-n56 O][delete:e79/*3](e72/*0 I)(e72/*1 I)
+# movfeatrmstubs n57 inner A6 (e74/*2 O)(e74/*3 O)(e73/*2 I)(e73/*3 I)
+# movfeatrmstubs n58 inner A6 (e75/*2 O)(e75/*3 O)(e74/*2 I)(e74/*3 I)
+# movfeatrmstubs n59 inner A5 (e77/*0 I)(e77/*1 I)[detach:e77/*2 O-n60 I][detach:e77/*2 I-n59 O][delete:e77/*2][detach:e77/*3 O-n60 I][detach:e77/*3 I-n59 O][delete:e77/*3](e76/*0 O)(e76/*1 O)
+# movfeatrmstubs n60 not inner: A6 and A5
+# movfeatrmstubs n61 inner A6 (e79/*0 I)(e79/*1 I)(e78/*0 O)(e78/*1 O)[detach:e78/*2 I-n60 O][detach:e78/*2 O-n61 I][delete:e78/*2][detach:e78/*3 I-n60 O][detach:e78/*3 O-n61 I][delete:e78/*3]
+# movfeatrmstubs n62 inner A6 (e81/*0 I)(e81/*1 I)(e81/*2 I)(e81/*3 I)(e80/*0 O)(e80/*1 O)(e80/*2 O)(e80/*3 O)
+# movfeatrmstubs n63 inner A6 (e82/*0 I)(e82/*2 I)(e81/*0 O)[detach:e81/*1 I-n62 O][detach:e81/*1 O-n63 I][delete:e81/*1](e81/*2 O)[detach:e81/*3 I-n62 O][detach:e81/*3 O-n63 I][delete:e81/*3]
+# movfeatrmstubs n64 not inner: X9 and X7
+# movfeatrmstubs n65 inner X9 (e112 I)(e111 O)
+# movfeatrmstubs n66 inner X10 (e124 I)(e123 O)
+# movfeatrmstubs n67 not inner: X8 and X10
+# movfeatrmstubs n68 inner X8 (e126/*0 I)(e126/*1 I)(e125/*0 O)(e125/*1 O)
+# movfeatrmstubs pass 1 changed
+# movfeatrmstubs pass 2 ...
+# movfeatrmstubs n0 inner X2 (e0/*1 I)(e1/*1 O)
+# movfeatrmstubs n1 inner X2 (e4/*1 I)(e0/*1 O)
+# movfeatrmstubs n2 not inner: X2 and A2
+# movfeatrmstubs n3 inner X2 (e2/*0 O)(e3/*0 I)
+# movfeatrmstubs n4 inner X2 (e10/*0 O)(e2/*0 I)
+# movfeatrmstubs n5 not inner: X2 and A1
+# movfeatrmstubs n6 not inner: X3 and X2
+# movfeatrmstubs n7 not inner: X7 and X3
+# movfeatrmstubs n8 inner X7 (e6/*0 O)(e7/*1 O)(e32/*0 I)(e32/*1 I)
+# movfeatrmstubs n9 not inner: X5 and X7
+# movfeatrmstubs n10 inner X7 (e8/*1 O)(e7/*1 I)
+# movfeatrmstubs n11 inner X7 (e9/*1 O)(e8/*1 I)
+# movfeatrmstubs n12 not inner: X4 and X2
+# movfeatrmstubs n13 not inner: X8 and X4
+# movfeatrmstubs n14 inner X8 (e12/*0 I)(e13/*1 I)(e126/*0 O)(e126/*1 O)
+# movfeatrmstubs n15 not inner: X6 and X8
+# movfeatrmstubs n16 inner X8 (e14/*1 I)(e13/*1 O)
+# movfeatrmstubs n17 inner X8 (e15/*1 I)(e14/*1 O)
+# movfeatrmstubs n18 inner A2 (e17/*0 I)(e16/*0 O)
+# movfeatrmstubs n19 inner A2 (e17/*0 O)(e18/*1 O)(e21/*0 I)(e21/*1 I)
+# movfeatrmstubs n20 inner A2 (e19/*1 O)(e18/*1 I)
+# movfeatrmstubs n21 inner A2 (e20/*1 O)(e19/*1 I)
+# movfeatrmstubs n22 O terminus
+# movfeatrmstubs n23 not inner: A4 and A2
+# movfeatrmstubs n24 not inner: A6 and A4
+# movfeatrmstubs n25 not inner: A6 and X10
+# movfeatrmstubs n26 inner A6 (e82/*0 O)(e82/*2 O)(e23/*0 I)(e23/*2 I)
+# movfeatrmstubs n27 inner A6 (e25/*1 O)(e25/*3 O)(e24/*1 I)(e24/*3 I)
+# movfeatrmstubs n28 inner A6 (e26/*1 O)(e26/*3 O)(e25/*1 I)(e25/*3 I)
+# movfeatrmstubs n29 inner X10 (e123 I)(e27 O)
+# movfeatrmstubs n30 not inner: A5 and X9
+# movfeatrmstubs n31 inner A5 (e69/*0 I)(e69/*2 I)(e28/*0 O)(e28/*2 O)
+# movfeatrmstubs n32 inner A5 (e30/*1 I)(e30/*3 I)(e29/*1 O)(e29/*3 O)
+# movfeatrmstubs n33 inner A5 (e31/*1 I)(e31/*3 I)(e30/*1 O)(e30/*3 O)
+# movfeatrmstubs n34 not inner: A3 and A5
+# movfeatrmstubs n35 inner X7 (e37/*0 I)(e37/*1 I)(e32/*0 O)(e32/*1 O)
+# movfeatrmstubs n36 not inner: A1 and A3
+# movfeatrmstubs n37 inner A1 (e35 I)(e34 O)
+# movfeatrmstubs n38 inner A1 (e36 I)(e35 O)
+# movfeatrmstubs n39 inner X7 (e38/*0 I)(e38/*1 I)(e37/*0 O)(e37/*1 O)
+# movfeatrmstubs n40 inner X7 (e110/*0 I)(e110/*1 I)(e38/*0 O)(e38/*1 O)
+# movfeatrmstubs n41 not inner: X5 and X6
+# movfeatrmstubs n42 inner A6 (e60/*2 I)(e60/*3 I)[detach:e61/*0 I-n44 O][detach:e61/*0 O-n42 I][delete:e61/*0][detach:e61/*1 I-n44 O][detach:e61/*1 O-n42 I][delete:e61/*1](e61/*2 O)(e61/*3 O)
+# movfeatrmstubs n43 inner A6 (e75/*2 I)(e75/*3 I)(e60/*2 O)(e60/*3 O)
+# movfeatrmstubs n44 I terminus
+# movfeatrmstubs n45 inner A5 (e62/*0 I)(e62/*1 I)(e62/*2 I)(e62/*3 I)(e63/*0 O)(e63/*1 O)(e63/*2 O)(e63/*3 O)
+# movfeatrmstubs n46 O terminus
+# movfeatrmstubs n47 inner A5 [detach:e63/*0 O-n45 I][detach:e63/*0 I-n47 O][delete:e63/*0][detach:e63/*1 O-n45 I][detach:e63/*1 I-n47 O][delete:e63/*1](e63/*2 I)(e63/*3 I)(e64/*2 O)(e64/*3 O)
+# movfeatrmstubs n48 inner A5 (e68/*2 O)(e68/*3 O)(e64/*2 I)(e64/*3 I)
+# movfeatrmstubs n49 inner A5 (e65/*0 I)[detach:e65/*1 O-n50 I][detach:e65/*1 I-n49 O][delete:e65/*1](e66/*2 I)[detach:e66/*3 O-n51 I][detach:e66/*3 I-n49 O][delete:e66/*3](e71/*0 O)(e71/*2 O)
+# movfeatrmstubs n50 inner A5 (e76/*0 I)[detach:e76/*1 O-n59 I][detach:e76/*1 I-n50 O][delete:e76/*1](e65/*0 O)
+# movfeatrmstubs n51 inner A5 (e67/*2 I)[detach:e67/*3 O-n52 I][detach:e67/*3 I-n51 O][delete:e67/*3](e66/*2 O)
+# movfeatrmstubs n52 inner A5 (e68/*2 I)[detach:e68/*3 O-n48 O][detach:e68/*3 I-n52 O][delete:e68/*3](e67/*2 O)
+# movfeatrmstubs n53 inner A5 (e70/*0 I)(e70/*2 I)(e69/*0 O)(e69/*2 O)
+# movfeatrmstubs n54 inner A5 (e71/*0 I)(e71/*2 I)(e70/*0 O)(e70/*2 O)
+# movfeatrmstubs n55 inner A6 (e72/*0 O)(e72/*1 O)(e73/*2 O)(e73/*3 O)(e80/*0 I)(e80/*1 I)(e80/*2 I)(e80/*3 I)
+# movfeatrmstubs n56 inner A6 (e79/*0 O)(e79/*1 O)(e72/*0 I)(e72/*1 I)
+# movfeatrmstubs n57 inner A6 (e74/*2 O)(e74/*3 O)(e73/*2 I)(e73/*3 I)
+# movfeatrmstubs n58 inner A6 (e75/*2 O)(e75/*3 O)(e74/*2 I)(e74/*3 I)
+# movfeatrmstubs n59 inner A5 (e77/*0 I)[detach:e77/*1 O-n60 I][detach:e77/*1 I-n59 O][delete:e77/*1](e76/*0 O)
+# movfeatrmstubs n60 not inner: A6 and A5
+# movfeatrmstubs n61 inner A6 (e79/*0 I)(e79/*1 I)(e78/*0 O)(e78/*1 O)
+# movfeatrmstubs n62 inner A6 (e81/*0 I)(e81/*2 I)(e80/*0 O)[detach:e80/*1 I-n55 I][detach:e80/*1 O-n62 I][delete:e80/*1](e80/*2 O)[detach:e80/*3 I-n55 I][detach:e80/*3 O-n62 I][delete:e80/*3]
+# movfeatrmstubs n63 inner A6 (e82/*0 I)(e82/*2 I)(e81/*0 O)(e81/*2 O)
+# movfeatrmstubs n64 not inner: X9 and X7
+# movfeatrmstubs n65 inner X9 (e112 I)(e111 O)
+# movfeatrmstubs n66 inner X10 (e124 I)(e123 O)
+# movfeatrmstubs n67 not inner: X8 and X10
+# movfeatrmstubs n68 inner X8 (e126/*0 I)(e126/*1 I)(e125/*0 O)(e125/*1 O)
+# movfeatrmstubs pass 2 changed
+# movfeatrmstubs pass 3 ...
+# movfeatrmstubs n0 inner X2 (e0/*1 I)(e1/*1 O)
+# movfeatrmstubs n1 inner X2 (e4/*1 I)(e0/*1 O)
+# movfeatrmstubs n2 not inner: X2 and A2
+# movfeatrmstubs n3 inner X2 (e2/*0 O)(e3/*0 I)
+# movfeatrmstubs n4 inner X2 (e10/*0 O)(e2/*0 I)
+# movfeatrmstubs n5 not inner: X2 and A1
+# movfeatrmstubs n6 not inner: X3 and X2
+# movfeatrmstubs n7 not inner: X7 and X3
+# movfeatrmstubs n8 inner X7 (e6/*0 O)(e7/*1 O)(e32/*0 I)(e32/*1 I)
+# movfeatrmstubs n9 not inner: X5 and X7
+# movfeatrmstubs n10 inner X7 (e8/*1 O)(e7/*1 I)
+# movfeatrmstubs n11 inner X7 (e9/*1 O)(e8/*1 I)
+# movfeatrmstubs n12 not inner: X4 and X2
+# movfeatrmstubs n13 not inner: X8 and X4
+# movfeatrmstubs n14 inner X8 (e12/*0 I)(e13/*1 I)(e126/*0 O)(e126/*1 O)
+# movfeatrmstubs n15 not inner: X6 and X8
+# movfeatrmstubs n16 inner X8 (e14/*1 I)(e13/*1 O)
+# movfeatrmstubs n17 inner X8 (e15/*1 I)(e14/*1 O)
+# movfeatrmstubs n18 inner A2 (e17/*0 I)(e16/*0 O)
+# movfeatrmstubs n19 inner A2 (e17/*0 O)(e18/*1 O)(e21/*0 I)(e21/*1 I)
+# movfeatrmstubs n20 inner A2 (e19/*1 O)(e18/*1 I)
+# movfeatrmstubs n21 inner A2 (e20/*1 O)(e19/*1 I)
+# movfeatrmstubs n22 O terminus
+# movfeatrmstubs n23 not inner: A4 and A2
+# movfeatrmstubs n24 not inner: A6 and A4
+# movfeatrmstubs n25 not inner: A6 and X10
+# movfeatrmstubs n26 inner A6 (e82/*0 O)(e82/*2 O)(e23/*0 I)(e23/*2 I)
+# movfeatrmstubs n27 inner A6 (e25/*1 O)(e25/*3 O)(e24/*1 I)(e24/*3 I)
+# movfeatrmstubs n28 inner A6 (e26/*1 O)(e26/*3 O)(e25/*1 I)(e25/*3 I)
+# movfeatrmstubs n29 inner X10 (e123 I)(e27 O)
+# movfeatrmstubs n30 not inner: A5 and X9
+# movfeatrmstubs n31 inner A5 (e69/*0 I)(e69/*2 I)(e28/*0 O)(e28/*2 O)
+# movfeatrmstubs n32 inner A5 (e30/*1 I)(e30/*3 I)(e29/*1 O)(e29/*3 O)
+# movfeatrmstubs n33 inner A5 (e31/*1 I)(e31/*3 I)(e30/*1 O)(e30/*3 O)
+# movfeatrmstubs n34 not inner: A3 and A5
+# movfeatrmstubs n35 inner X7 (e37/*0 I)(e37/*1 I)(e32/*0 O)(e32/*1 O)
+# movfeatrmstubs n36 not inner: A1 and A3
+# movfeatrmstubs n37 inner A1 (e35 I)(e34 O)
+# movfeatrmstubs n38 inner A1 (e36 I)(e35 O)
+# movfeatrmstubs n39 inner X7 (e38/*0 I)(e38/*1 I)(e37/*0 O)(e37/*1 O)
+# movfeatrmstubs n40 inner X7 (e110/*0 I)(e110/*1 I)(e38/*0 O)(e38/*1 O)
+# movfeatrmstubs n41 not inner: X5 and X6
+# movfeatrmstubs n42 inner A6 (e60/*2 I)(e60/*3 I)(e61/*2 O)(e61/*3 O)
+# movfeatrmstubs n43 inner A6 (e75/*2 I)(e75/*3 I)(e60/*2 O)(e60/*3 O)
+# movfeatrmstubs n44 I terminus
+# movfeatrmstubs n45 inner A5 [detach:e62/*0 O-n46 I][detach:e62/*0 I-n45 O][delete:e62/*0][detach:e62/*1 O-n46 I][detach:e62/*1 I-n45 O][delete:e62/*1](e62/*2 I)(e62/*3 I)(e63/*2 O)(e63/*3 O)
+# movfeatrmstubs n46 O terminus
+# movfeatrmstubs n47 inner A5 (e63/*2 I)(e63/*3 I)(e64/*2 O)(e64/*3 O)
+# movfeatrmstubs n48 inner A5 (e68/*2 O)(e64/*2 I)[detach:e64/*3 O-n47 I][detach:e64/*3 I-n48 I][delete:e64/*3]
+# movfeatrmstubs n49 inner A5 (e65/*0 I)(e66/*2 I)(e71/*0 O)(e71/*2 O)
+# movfeatrmstubs n50 inner A5 (e76/*0 I)(e65/*0 O)
+# movfeatrmstubs n51 inner A5 (e67/*2 I)(e66/*2 O)
+# movfeatrmstubs n52 inner A5 (e68/*2 I)(e67/*2 O)
+# movfeatrmstubs n53 inner A5 (e70/*0 I)(e70/*2 I)(e69/*0 O)(e69/*2 O)
+# movfeatrmstubs n54 inner A5 (e71/*0 I)(e71/*2 I)(e70/*0 O)(e70/*2 O)
+# movfeatrmstubs n55 inner A6 (e72/*0 O)[detach:e72/*1 I-n56 I][detach:e72/*1 O-n55 O][delete:e72/*1](e73/*2 O)[detach:e73/*3 I-n57 I][detach:e73/*3 O-n55 O][delete:e73/*3](e80/*0 I)(e80/*2 I)
+# movfeatrmstubs n56 inner A6 (e79/*0 O)[detach:e79/*1 I-n61 O][detach:e79/*1 O-n56 O][delete:e79/*1](e72/*0 I)
+# movfeatrmstubs n57 inner A6 (e74/*2 O)[detach:e74/*3 I-n58 I][detach:e74/*3 O-n57 O][delete:e74/*3](e73/*2 I)
+# movfeatrmstubs n58 inner A6 (e75/*2 O)[detach:e75/*3 I-n43 O][detach:e75/*3 O-n58 O][delete:e75/*3](e74/*2 I)
+# movfeatrmstubs n59 inner A5 (e77/*0 I)(e76/*0 O)
+# movfeatrmstubs n60 not inner: A6 and A5
+# movfeatrmstubs n61 inner A6 (e79/*0 I)(e78/*0 O)[detach:e78/*1 I-n60 O][detach:e78/*1 O-n61 I][delete:e78/*1]
+# movfeatrmstubs n62 inner A6 (e81/*0 I)(e81/*2 I)(e80/*0 O)(e80/*2 O)
+# movfeatrmstubs n63 inner A6 (e82/*0 I)(e82/*2 I)(e81/*0 O)(e81/*2 O)
+# movfeatrmstubs n64 not inner: X9 and X7
+# movfeatrmstubs n65 inner X9 (e112 I)(e111 O)
+# movfeatrmstubs n66 inner X10 (e124 I)(e123 O)
+# movfeatrmstubs n67 not inner: X8 and X10
+# movfeatrmstubs n68 inner X8 (e126/*0 I)(e126/*1 I)(e125/*0 O)(e125/*1 O)
+# movfeatrmstubs pass 3 changed
+# movfeatrmstubs pass 4 ...
+# movfeatrmstubs n0 inner X2 (e0/*1 I)(e1/*1 O)
+# movfeatrmstubs n1 inner X2 (e4/*1 I)(e0/*1 O)
+# movfeatrmstubs n2 not inner: X2 and A2
+# movfeatrmstubs n3 inner X2 (e2/*0 O)(e3/*0 I)
+# movfeatrmstubs n4 inner X2 (e10/*0 O)(e2/*0 I)
+# movfeatrmstubs n5 not inner: X2 and A1
+# movfeatrmstubs n6 not inner: X3 and X2
+# movfeatrmstubs n7 not inner: X7 and X3
+# movfeatrmstubs n8 inner X7 (e6/*0 O)(e7/*1 O)(e32/*0 I)(e32/*1 I)
+# movfeatrmstubs n9 not inner: X5 and X7
+# movfeatrmstubs n10 inner X7 (e8/*1 O)(e7/*1 I)
+# movfeatrmstubs n11 inner X7 (e9/*1 O)(e8/*1 I)
+# movfeatrmstubs n12 not inner: X4 and X2
+# movfeatrmstubs n13 not inner: X8 and X4
+# movfeatrmstubs n14 inner X8 (e12/*0 I)(e13/*1 I)(e126/*0 O)(e126/*1 O)
+# movfeatrmstubs n15 not inner: X6 and X8
+# movfeatrmstubs n16 inner X8 (e14/*1 I)(e13/*1 O)
+# movfeatrmstubs n17 inner X8 (e15/*1 I)(e14/*1 O)
+# movfeatrmstubs n18 inner A2 (e17/*0 I)(e16/*0 O)
+# movfeatrmstubs n19 inner A2 (e17/*0 O)(e18/*1 O)(e21/*0 I)(e21/*1 I)
+# movfeatrmstubs n20 inner A2 (e19/*1 O)(e18/*1 I)
+# movfeatrmstubs n21 inner A2 (e20/*1 O)(e19/*1 I)
+# movfeatrmstubs n22 O terminus
+# movfeatrmstubs n23 not inner: A4 and A2
+# movfeatrmstubs n24 not inner: A6 and A4
+# movfeatrmstubs n25 not inner: A6 and X10
+# movfeatrmstubs n26 inner A6 (e82/*0 O)(e82/*2 O)(e23/*0 I)(e23/*2 I)
+# movfeatrmstubs n27 inner A6 (e25/*1 O)(e25/*3 O)(e24/*1 I)(e24/*3 I)
+# movfeatrmstubs n28 inner A6 (e26/*1 O)(e26/*3 O)(e25/*1 I)(e25/*3 I)
+# movfeatrmstubs n29 inner X10 (e123 I)(e27 O)
+# movfeatrmstubs n30 not inner: A5 and X9
+# movfeatrmstubs n31 inner A5 (e69/*0 I)(e69/*2 I)(e28/*0 O)(e28/*2 O)
+# movfeatrmstubs n32 inner A5 (e30/*1 I)(e30/*3 I)(e29/*1 O)(e29/*3 O)
+# movfeatrmstubs n33 inner A5 (e31/*1 I)(e31/*3 I)(e30/*1 O)(e30/*3 O)
+# movfeatrmstubs n34 not inner: A3 and A5
+# movfeatrmstubs n35 inner X7 (e37/*0 I)(e37/*1 I)(e32/*0 O)(e32/*1 O)
+# movfeatrmstubs n36 not inner: A1 and A3
+# movfeatrmstubs n37 inner A1 (e35 I)(e34 O)
+# movfeatrmstubs n38 inner A1 (e36 I)(e35 O)
+# movfeatrmstubs n39 inner X7 (e38/*0 I)(e38/*1 I)(e37/*0 O)(e37/*1 O)
+# movfeatrmstubs n40 inner X7 (e110/*0 I)(e110/*1 I)(e38/*0 O)(e38/*1 O)
+# movfeatrmstubs n41 not inner: X5 and X6
+# movfeatrmstubs n42 inner A6 (e60/*2 I)(e60/*3 I)(e61/*2 O)(e61/*3 O)
+# movfeatrmstubs n43 inner A6 (e75/*2 I)(e60/*2 O)[detach:e60/*3 I-n42 O][detach:e60/*3 O-n43 I][delete:e60/*3]
+# movfeatrmstubs n44 I terminus
+# movfeatrmstubs n45 inner A5 (e62/*2 I)(e62/*3 I)(e63/*2 O)(e63/*3 O)
+# movfeatrmstubs n46 O terminus
+# movfeatrmstubs n47 inner A5 (e63/*2 I)[detach:e63/*3 O-n45 I][detach:e63/*3 I-n47 O][delete:e63/*3](e64/*2 O)
+# movfeatrmstubs n48 inner A5 (e68/*2 O)(e64/*2 I)
+# movfeatrmstubs n49 inner A5 (e65/*0 I)(e66/*2 I)(e71/*0 O)(e71/*2 O)
+# movfeatrmstubs n50 inner A5 (e76/*0 I)(e65/*0 O)
+# movfeatrmstubs n51 inner A5 (e67/*2 I)(e66/*2 O)
+# movfeatrmstubs n52 inner A5 (e68/*2 I)(e67/*2 O)
+# movfeatrmstubs n53 inner A5 (e70/*0 I)(e70/*2 I)(e69/*0 O)(e69/*2 O)
+# movfeatrmstubs n54 inner A5 (e71/*0 I)(e71/*2 I)(e70/*0 O)(e70/*2 O)
+# movfeatrmstubs n55 inner A6 (e72/*0 O)(e73/*2 O)(e80/*0 I)(e80/*2 I)
+# movfeatrmstubs n56 inner A6 (e79/*0 O)(e72/*0 I)
+# movfeatrmstubs n57 inner A6 (e74/*2 O)(e73/*2 I)
+# movfeatrmstubs n58 inner A6 (e75/*2 O)(e74/*2 I)
+# movfeatrmstubs n59 inner A5 (e77/*0 I)(e76/*0 O)
+# movfeatrmstubs n60 not inner: A6 and A5
+# movfeatrmstubs n61 inner A6 (e79/*0 I)(e78/*0 O)
+# movfeatrmstubs n62 inner A6 (e81/*0 I)(e81/*2 I)(e80/*0 O)(e80/*2 O)
+# movfeatrmstubs n63 inner A6 (e82/*0 I)(e82/*2 I)(e81/*0 O)(e81/*2 O)
+# movfeatrmstubs n64 not inner: X9 and X7
+# movfeatrmstubs n65 inner X9 (e112 I)(e111 O)
+# movfeatrmstubs n66 inner X10 (e124 I)(e123 O)
+# movfeatrmstubs n67 not inner: X8 and X10
+# movfeatrmstubs n68 inner X8 (e126/*0 I)(e126/*1 I)(e125/*0 O)(e125/*1 O)
+# movfeatrmstubs pass 4 changed
+# movfeatrmstubs pass 5 ...
+# movfeatrmstubs n0 inner X2 (e0/*1 I)(e1/*1 O)
+# movfeatrmstubs n1 inner X2 (e4/*1 I)(e0/*1 O)
+# movfeatrmstubs n2 not inner: X2 and A2
+# movfeatrmstubs n3 inner X2 (e2/*0 O)(e3/*0 I)
+# movfeatrmstubs n4 inner X2 (e10/*0 O)(e2/*0 I)
+# movfeatrmstubs n5 not inner: X2 and A1
+# movfeatrmstubs n6 not inner: X3 and X2
+# movfeatrmstubs n7 not inner: X7 and X3
+# movfeatrmstubs n8 inner X7 (e6/*0 O)(e7/*1 O)(e32/*0 I)(e32/*1 I)
+# movfeatrmstubs n9 not inner: X5 and X7
+# movfeatrmstubs n10 inner X7 (e8/*1 O)(e7/*1 I)
+# movfeatrmstubs n11 inner X7 (e9/*1 O)(e8/*1 I)
+# movfeatrmstubs n12 not inner: X4 and X2
+# movfeatrmstubs n13 not inner: X8 and X4
+# movfeatrmstubs n14 inner X8 (e12/*0 I)(e13/*1 I)(e126/*0 O)(e126/*1 O)
+# movfeatrmstubs n15 not inner: X6 and X8
+# movfeatrmstubs n16 inner X8 (e14/*1 I)(e13/*1 O)
+# movfeatrmstubs n17 inner X8 (e15/*1 I)(e14/*1 O)
+# movfeatrmstubs n18 inner A2 (e17/*0 I)(e16/*0 O)
+# movfeatrmstubs n19 inner A2 (e17/*0 O)(e18/*1 O)(e21/*0 I)(e21/*1 I)
+# movfeatrmstubs n20 inner A2 (e19/*1 O)(e18/*1 I)
+# movfeatrmstubs n21 inner A2 (e20/*1 O)(e19/*1 I)
+# movfeatrmstubs n22 O terminus
+# movfeatrmstubs n23 not inner: A4 and A2
+# movfeatrmstubs n24 not inner: A6 and A4
+# movfeatrmstubs n25 not inner: A6 and X10
+# movfeatrmstubs n26 inner A6 (e82/*0 O)(e82/*2 O)(e23/*0 I)(e23/*2 I)
+# movfeatrmstubs n27 inner A6 (e25/*1 O)(e25/*3 O)(e24/*1 I)(e24/*3 I)
+# movfeatrmstubs n28 inner A6 (e26/*1 O)(e26/*3 O)(e25/*1 I)(e25/*3 I)
+# movfeatrmstubs n29 inner X10 (e123 I)(e27 O)
+# movfeatrmstubs n30 not inner: A5 and X9
+# movfeatrmstubs n31 inner A5 (e69/*0 I)(e69/*2 I)(e28/*0 O)(e28/*2 O)
+# movfeatrmstubs n32 inner A5 (e30/*1 I)(e30/*3 I)(e29/*1 O)(e29/*3 O)
+# movfeatrmstubs n33 inner A5 (e31/*1 I)(e31/*3 I)(e30/*1 O)(e30/*3 O)
+# movfeatrmstubs n34 not inner: A3 and A5
+# movfeatrmstubs n35 inner X7 (e37/*0 I)(e37/*1 I)(e32/*0 O)(e32/*1 O)
+# movfeatrmstubs n36 not inner: A1 and A3
+# movfeatrmstubs n37 inner A1 (e35 I)(e34 O)
+# movfeatrmstubs n38 inner A1 (e36 I)(e35 O)
+# movfeatrmstubs n39 inner X7 (e38/*0 I)(e38/*1 I)(e37/*0 O)(e37/*1 O)
+# movfeatrmstubs n40 inner X7 (e110/*0 I)(e110/*1 I)(e38/*0 O)(e38/*1 O)
+# movfeatrmstubs n41 not inner: X5 and X6
+# movfeatrmstubs n42 inner A6 (e60/*2 I)(e61/*2 O)[detach:e61/*3 I-n44 O][detach:e61/*3 O-n42 I][delete:e61/*3]
+# movfeatrmstubs n43 inner A6 (e75/*2 I)(e60/*2 O)
+# movfeatrmstubs n44 I terminus
+# movfeatrmstubs n45 inner A5 (e62/*2 I)[detach:e62/*3 O-n46 I][detach:e62/*3 I-n45 O][delete:e62/*3](e63/*2 O)
+# movfeatrmstubs n46 O terminus
+# movfeatrmstubs n47 inner A5 (e63/*2 I)(e64/*2 O)
+# movfeatrmstubs n48 inner A5 (e68/*2 O)(e64/*2 I)
+# movfeatrmstubs n49 inner A5 (e65/*0 I)(e66/*2 I)(e71/*0 O)(e71/*2 O)
+# movfeatrmstubs n50 inner A5 (e76/*0 I)(e65/*0 O)
+# movfeatrmstubs n51 inner A5 (e67/*2 I)(e66/*2 O)
+# movfeatrmstubs n52 inner A5 (e68/*2 I)(e67/*2 O)
+# movfeatrmstubs n53 inner A5 (e70/*0 I)(e70/*2 I)(e69/*0 O)(e69/*2 O)
+# movfeatrmstubs n54 inner A5 (e71/*0 I)(e71/*2 I)(e70/*0 O)(e70/*2 O)
+# movfeatrmstubs n55 inner A6 (e72/*0 O)(e73/*2 O)(e80/*0 I)(e80/*2 I)
+# movfeatrmstubs n56 inner A6 (e79/*0 O)(e72/*0 I)
+# movfeatrmstubs n57 inner A6 (e74/*2 O)(e73/*2 I)
+# movfeatrmstubs n58 inner A6 (e75/*2 O)(e74/*2 I)
+# movfeatrmstubs n59 inner A5 (e77/*0 I)(e76/*0 O)
+# movfeatrmstubs n60 not inner: A6 and A5
+# movfeatrmstubs n61 inner A6 (e79/*0 I)(e78/*0 O)
+# movfeatrmstubs n62 inner A6 (e81/*0 I)(e81/*2 I)(e80/*0 O)(e80/*2 O)
+# movfeatrmstubs n63 inner A6 (e82/*0 I)(e82/*2 I)(e81/*0 O)(e81/*2 O)
+# movfeatrmstubs n64 not inner: X9 and X7
+# movfeatrmstubs n65 inner X9 (e112 I)(e111 O)
+# movfeatrmstubs n66 inner X10 (e124 I)(e123 O)
+# movfeatrmstubs n67 not inner: X8 and X10
+# movfeatrmstubs n68 inner X8 (e126/*0 I)(e126/*1 I)(e125/*0 O)(e125/*1 O)
+# movfeatrmstubs pass 5 changed
+# movfeatrmstubs pass 6 ...
+# movfeatrmstubs n0 inner X2 (e0/*1 I)(e1/*1 O)
+# movfeatrmstubs n1 inner X2 (e4/*1 I)(e0/*1 O)
+# movfeatrmstubs n2 not inner: X2 and A2
+# movfeatrmstubs n3 inner X2 (e2/*0 O)(e3/*0 I)
+# movfeatrmstubs n4 inner X2 (e10/*0 O)(e2/*0 I)
+# movfeatrmstubs n5 not inner: X2 and A1
+# movfeatrmstubs n6 not inner: X3 and X2
+# movfeatrmstubs n7 not inner: X7 and X3
+# movfeatrmstubs n8 inner X7 (e6/*0 O)(e7/*1 O)(e32/*0 I)(e32/*1 I)
+# movfeatrmstubs n9 not inner: X5 and X7
+# movfeatrmstubs n10 inner X7 (e8/*1 O)(e7/*1 I)
+# movfeatrmstubs n11 inner X7 (e9/*1 O)(e8/*1 I)
+# movfeatrmstubs n12 not inner: X4 and X2
+# movfeatrmstubs n13 not inner: X8 and X4
+# movfeatrmstubs n14 inner X8 (e12/*0 I)(e13/*1 I)(e126/*0 O)(e126/*1 O)
+# movfeatrmstubs n15 not inner: X6 and X8
+# movfeatrmstubs n16 inner X8 (e14/*1 I)(e13/*1 O)
+# movfeatrmstubs n17 inner X8 (e15/*1 I)(e14/*1 O)
+# movfeatrmstubs n18 inner A2 (e17/*0 I)(e16/*0 O)
+# movfeatrmstubs n19 inner A2 (e17/*0 O)(e18/*1 O)(e21/*0 I)(e21/*1 I)
+# movfeatrmstubs n20 inner A2 (e19/*1 O)(e18/*1 I)
+# movfeatrmstubs n21 inner A2 (e20/*1 O)(e19/*1 I)
+# movfeatrmstubs n22 O terminus
+# movfeatrmstubs n23 not inner: A4 and A2
+# movfeatrmstubs n24 not inner: A6 and A4
+# movfeatrmstubs n25 not inner: A6 and X10
+# movfeatrmstubs n26 inner A6 (e82/*0 O)(e82/*2 O)(e23/*0 I)(e23/*2 I)
+# movfeatrmstubs n27 inner A6 (e25/*1 O)(e25/*3 O)(e24/*1 I)(e24/*3 I)
+# movfeatrmstubs n28 inner A6 (e26/*1 O)(e26/*3 O)(e25/*1 I)(e25/*3 I)
+# movfeatrmstubs n29 inner X10 (e123 I)(e27 O)
+# movfeatrmstubs n30 not inner: A5 and X9
+# movfeatrmstubs n31 inner A5 (e69/*0 I)(e69/*2 I)(e28/*0 O)(e28/*2 O)
+# movfeatrmstubs n32 inner A5 (e30/*1 I)(e30/*3 I)(e29/*1 O)(e29/*3 O)
+# movfeatrmstubs n33 inner A5 (e31/*1 I)(e31/*3 I)(e30/*1 O)(e30/*3 O)
+# movfeatrmstubs n34 not inner: A3 and A5
+# movfeatrmstubs n35 inner X7 (e37/*0 I)(e37/*1 I)(e32/*0 O)(e32/*1 O)
+# movfeatrmstubs n36 not inner: A1 and A3
+# movfeatrmstubs n37 inner A1 (e35 I)(e34 O)
+# movfeatrmstubs n38 inner A1 (e36 I)(e35 O)
+# movfeatrmstubs n39 inner X7 (e38/*0 I)(e38/*1 I)(e37/*0 O)(e37/*1 O)
+# movfeatrmstubs n40 inner X7 (e110/*0 I)(e110/*1 I)(e38/*0 O)(e38/*1 O)
+# movfeatrmstubs n41 not inner: X5 and X6
+# movfeatrmstubs n42 inner A6 (e60/*2 I)(e61/*2 O)
+# movfeatrmstubs n43 inner A6 (e75/*2 I)(e60/*2 O)
+# movfeatrmstubs n44 I terminus
+# movfeatrmstubs n45 inner A5 (e62/*2 I)(e63/*2 O)
+# movfeatrmstubs n46 O terminus
+# movfeatrmstubs n47 inner A5 (e63/*2 I)(e64/*2 O)
+# movfeatrmstubs n48 inner A5 (e68/*2 O)(e64/*2 I)
+# movfeatrmstubs n49 inner A5 (e65/*0 I)(e66/*2 I)(e71/*0 O)(e71/*2 O)
+# movfeatrmstubs n50 inner A5 (e76/*0 I)(e65/*0 O)
+# movfeatrmstubs n51 inner A5 (e67/*2 I)(e66/*2 O)
+# movfeatrmstubs n52 inner A5 (e68/*2 I)(e67/*2 O)
+# movfeatrmstubs n53 inner A5 (e70/*0 I)(e70/*2 I)(e69/*0 O)(e69/*2 O)
+# movfeatrmstubs n54 inner A5 (e71/*0 I)(e71/*2 I)(e70/*0 O)(e70/*2 O)
+# movfeatrmstubs n55 inner A6 (e72/*0 O)(e73/*2 O)(e80/*0 I)(e80/*2 I)
+# movfeatrmstubs n56 inner A6 (e79/*0 O)(e72/*0 I)
+# movfeatrmstubs n57 inner A6 (e74/*2 O)(e73/*2 I)
+# movfeatrmstubs n58 inner A6 (e75/*2 O)(e74/*2 I)
+# movfeatrmstubs n59 inner A5 (e77/*0 I)(e76/*0 O)
+# movfeatrmstubs n60 not inner: A6 and A5
+# movfeatrmstubs n61 inner A6 (e79/*0 I)(e78/*0 O)
+# movfeatrmstubs n62 inner A6 (e81/*0 I)(e81/*2 I)(e80/*0 O)(e80/*2 O)
+# movfeatrmstubs n63 inner A6 (e82/*0 I)(e82/*2 I)(e81/*0 O)(e81/*2 O)
+# movfeatrmstubs n64 not inner: X9 and X7
+# movfeatrmstubs n65 inner X9 (e112 I)(e111 O)
+# movfeatrmstubs n66 inner X10 (e124 I)(e123 O)
+# movfeatrmstubs n67 not inner: X8 and X10
+# movfeatrmstubs n68 inner X8 (e126/*0 I)(e126/*1 I)(e125/*0 O)(e125/*1 O)
+# movfeatrmstubs pass 6 alldone
+# consistency check (command-line request) ...
+#  consistency n0
+#  consistency n0 O
+#  consistency n0 O e0/*1 I
+#  consistency n0 I
+#  consistency n0 I e1/*1 O
+#  consistency n1
+#  consistency n1 O
+#  consistency n1 O e4/*1 I
+#  consistency n1 I
+#  consistency n1 I e0/*1 O
+#  consistency n2
+#  consistency n2 O
+#  consistency n2 O e1/*1 I
+#  consistency n2 I
+#  consistency n2 I e16/*0 I
+#  consistency n3
+#  consistency n3 O
+#  consistency n3 O e2/*0 O
+#  consistency n3 I
+#  consistency n3 I e3/*0 I
+#  consistency n4
+#  consistency n4 O
+#  consistency n4 O e10/*0 O
+#  consistency n4 I
+#  consistency n4 I e2/*0 I
+#  consistency n5
+#  consistency n5 O
+#  consistency n5 O e3/*0 O
+#  consistency n5 I
+#  consistency n5 I e36 O
+#  consistency n6
+#  consistency n6 O
+#  consistency n6 O e5 I
+#  consistency n6 I
+#  consistency n6 I e4/*1 O
+#  consistency n7
+#  consistency n7 O
+#  consistency n7 O e9/*1 I
+#  consistency n7 I
+#  consistency n7 I e5 O
+#  consistency n8
+#  consistency n8 O
+#  consistency n8 O e6/*0 O
+#  consistency n8 O e7/*1 O
+#  consistency n8 I
+#  consistency n8 I e32/*0 I
+#  consistency n8 I e32/*1 I
+#  consistency n9
+#  consistency n9 O
+#  consistency n9 O e40 O
+#  consistency n9 I
+#  consistency n9 I e6/*0 I
+#  consistency n10
+#  consistency n10 O
+#  consistency n10 O e8/*1 O
+#  consistency n10 I
+#  consistency n10 I e7/*1 I
+#  consistency n11
+#  consistency n11 O
+#  consistency n11 O e9/*1 O
+#  consistency n11 I
+#  consistency n11 I e8/*1 I
+#  consistency n12
+#  consistency n12 O
+#  consistency n12 O e11 O
+#  consistency n12 I
+#  consistency n12 I e10/*0 I
+#  consistency n13
+#  consistency n13 O
+#  consistency n13 O e15/*1 O
+#  consistency n13 I
+#  consistency n13 I e11 I
+#  consistency n14
+#  consistency n14 O
+#  consistency n14 O e12/*0 I
+#  consistency n14 O e13/*1 I
+#  consistency n14 I
+#  consistency n14 I e126/*0 O
+#  consistency n14 I e126/*1 O
+#  consistency n15
+#  consistency n15 O
+#  consistency n15 O e39 I
+#  consistency n15 I
+#  consistency n15 I e12/*0 O
+#  consistency n16
+#  consistency n16 O
+#  consistency n16 O e14/*1 I
+#  consistency n16 I
+#  consistency n16 I e13/*1 O
+#  consistency n17
+#  consistency n17 O
+#  consistency n17 O e15/*1 I
+#  consistency n17 I
+#  consistency n17 I e14/*1 O
+#  consistency n18
+#  consistency n18 O
+#  consistency n18 O e17/*0 I
+#  consistency n18 I
+#  consistency n18 I e16/*0 O
+#  consistency n19
+#  consistency n19 O
+#  consistency n19 O e17/*0 O
+#  consistency n19 O e18/*1 O
+#  consistency n19 I
+#  consistency n19 I e21/*0 I
+#  consistency n19 I e21/*1 I
+#  consistency n20
+#  consistency n20 O
+#  consistency n20 O e19/*1 O
+#  consistency n20 I
+#  consistency n20 I e18/*1 I
+#  consistency n21
+#  consistency n21 O
+#  consistency n21 O e20/*1 O
+#  consistency n21 I
+#  consistency n21 I e19/*1 I
+#  consistency n22
+#  consistency n22 O
+#  consistency n22 I
+#  consistency n22 I e20/*1 I
+#  consistency n23
+#  consistency n23 O
+#  consistency n23 O e22 I
+#  consistency n23 I
+#  consistency n23 I e21/*0 O
+#  consistency n23 I e21/*1 O
+#  consistency n24
+#  consistency n24 O
+#  consistency n24 O e26/*1 I
+#  consistency n24 O e26/*3 I
+#  consistency n24 I
+#  consistency n24 I e22 O
+#  consistency n25
+#  consistency n25 O
+#  consistency n25 O e23/*0 O
+#  consistency n25 O e23/*2 O
+#  consistency n25 O e24/*1 O
+#  consistency n25 O e24/*3 O
+#  consistency n25 I
+#  consistency n25 I e27 I
+#  consistency n26
+#  consistency n26 O
+#  consistency n26 O e82/*0 O
+#  consistency n26 O e82/*2 O
+#  consistency n26 I
+#  consistency n26 I e23/*0 I
+#  consistency n26 I e23/*2 I
+#  consistency n27
+#  consistency n27 O
+#  consistency n27 O e25/*1 O
+#  consistency n27 O e25/*3 O
+#  consistency n27 I
+#  consistency n27 I e24/*1 I
+#  consistency n27 I e24/*3 I
+#  consistency n28
+#  consistency n28 O
+#  consistency n28 O e26/*1 O
+#  consistency n28 O e26/*3 O
+#  consistency n28 I
+#  consistency n28 I e25/*1 I
+#  consistency n28 I e25/*3 I
+#  consistency n29
+#  consistency n29 O
+#  consistency n29 O e123 I
+#  consistency n29 I
+#  consistency n29 I e27 O
+#  consistency n30
+#  consistency n30 O
+#  consistency n30 O e28/*0 I
+#  consistency n30 O e28/*2 I
+#  consistency n30 O e29/*1 I
+#  consistency n30 O e29/*3 I
+#  consistency n30 I
+#  consistency n30 I e112 O
+#  consistency n31
+#  consistency n31 O
+#  consistency n31 O e69/*0 I
+#  consistency n31 O e69/*2 I
+#  consistency n31 I
+#  consistency n31 I e28/*0 O
+#  consistency n31 I e28/*2 O
+#  consistency n32
+#  consistency n32 O
+#  consistency n32 O e30/*1 I
+#  consistency n32 O e30/*3 I
+#  consistency n32 I
+#  consistency n32 I e29/*1 O
+#  consistency n32 I e29/*3 O
+#  consistency n33
+#  consistency n33 O
+#  consistency n33 O e31/*1 I
+#  consistency n33 O e31/*3 I
+#  consistency n33 I
+#  consistency n33 I e30/*1 O
+#  consistency n33 I e30/*3 O
+#  consistency n34
+#  consistency n34 O
+#  consistency n34 O e33 I
+#  consistency n34 I
+#  consistency n34 I e31/*1 O
+#  consistency n34 I e31/*3 O
+#  consistency n35
+#  consistency n35 O
+#  consistency n35 O e37/*0 I
+#  consistency n35 O e37/*1 I
+#  consistency n35 I
+#  consistency n35 I e32/*0 O
+#  consistency n35 I e32/*1 O
+#  consistency n36
+#  consistency n36 O
+#  consistency n36 O e34 I
+#  consistency n36 I
+#  consistency n36 I e33 O
+#  consistency n37
+#  consistency n37 O
+#  consistency n37 O e35 I
+#  consistency n37 I
+#  consistency n37 I e34 O
+#  consistency n38
+#  consistency n38 O
+#  consistency n38 O e36 I
+#  consistency n38 I
+#  consistency n38 I e35 O
+#  consistency n39
+#  consistency n39 O
+#  consistency n39 O e38/*0 I
+#  consistency n39 O e38/*1 I
+#  consistency n39 I
+#  consistency n39 I e37/*0 O
+#  consistency n39 I e37/*1 O
+#  consistency n40
+#  consistency n40 O
+#  consistency n40 O e110/*0 I
+#  consistency n40 O e110/*1 I
+#  consistency n40 I
+#  consistency n40 I e38/*0 O
+#  consistency n40 I e38/*1 O
+#  consistency n41
+#  consistency n41 O
+#  consistency n41 O e40 I
+#  consistency n41 I
+#  consistency n41 I e39 O
+#  consistency n42
+#  consistency n42 O
+#  consistency n42 O e60/*2 I
+#  consistency n42 I
+#  consistency n42 I e61/*2 O
+#  consistency n43
+#  consistency n43 O
+#  consistency n43 O e75/*2 I
+#  consistency n43 I
+#  consistency n43 I e60/*2 O
+#  consistency n44
+#  consistency n44 O
+#  consistency n44 O e61/*2 I
+#  consistency n44 I
+#  consistency n45
+#  consistency n45 O
+#  consistency n45 O e62/*2 I
+#  consistency n45 I
+#  consistency n45 I e63/*2 O
+#  consistency n46
+#  consistency n46 O
+#  consistency n46 I
+#  consistency n46 I e62/*2 O
+#  consistency n47
+#  consistency n47 O
+#  consistency n47 O e63/*2 I
+#  consistency n47 I
+#  consistency n47 I e64/*2 O
+#  consistency n48
+#  consistency n48 O
+#  consistency n48 O e68/*2 O
+#  consistency n48 I
+#  consistency n48 I e64/*2 I
+#  consistency n49
+#  consistency n49 O
+#  consistency n49 O e65/*0 I
+#  consistency n49 O e66/*2 I
+#  consistency n49 I
+#  consistency n49 I e71/*0 O
+#  consistency n49 I e71/*2 O
+#  consistency n50
+#  consistency n50 O
+#  consistency n50 O e76/*0 I
+#  consistency n50 I
+#  consistency n50 I e65/*0 O
+#  consistency n51
+#  consistency n51 O
+#  consistency n51 O e67/*2 I
+#  consistency n51 I
+#  consistency n51 I e66/*2 O
+#  consistency n52
+#  consistency n52 O
+#  consistency n52 O e68/*2 I
+#  consistency n52 I
+#  consistency n52 I e67/*2 O
+#  consistency n53
+#  consistency n53 O
+#  consistency n53 O e70/*0 I
+#  consistency n53 O e70/*2 I
+#  consistency n53 I
+#  consistency n53 I e69/*0 O
+#  consistency n53 I e69/*2 O
+#  consistency n54
+#  consistency n54 O
+#  consistency n54 O e71/*0 I
+#  consistency n54 O e71/*2 I
+#  consistency n54 I
+#  consistency n54 I e70/*0 O
+#  consistency n54 I e70/*2 O
+#  consistency n55
+#  consistency n55 O
+#  consistency n55 O e72/*0 O
+#  consistency n55 O e73/*2 O
+#  consistency n55 I
+#  consistency n55 I e80/*0 I
+#  consistency n55 I e80/*2 I
+#  consistency n56
+#  consistency n56 O
+#  consistency n56 O e79/*0 O
+#  consistency n56 I
+#  consistency n56 I e72/*0 I
+#  consistency n57
+#  consistency n57 O
+#  consistency n57 O e74/*2 O
+#  consistency n57 I
+#  consistency n57 I e73/*2 I
+#  consistency n58
+#  consistency n58 O
+#  consistency n58 O e75/*2 O
+#  consistency n58 I
+#  consistency n58 I e74/*2 I
+#  consistency n59
+#  consistency n59 O
+#  consistency n59 O e77/*0 I
+#  consistency n59 I
+#  consistency n59 I e76/*0 O
+#  consistency n60
+#  consistency n60 O
+#  consistency n60 O e78/*0 I
+#  consistency n60 I
+#  consistency n60 I e77/*0 O
+#  consistency n61
+#  consistency n61 O
+#  consistency n61 O e79/*0 I
+#  consistency n61 I
+#  consistency n61 I e78/*0 O
+#  consistency n62
+#  consistency n62 O
+#  consistency n62 O e81/*0 I
+#  consistency n62 O e81/*2 I
+#  consistency n62 I
+#  consistency n62 I e80/*0 O
+#  consistency n62 I e80/*2 O
+#  consistency n63
+#  consistency n63 O
+#  consistency n63 O e82/*0 I
+#  consistency n63 O e82/*2 I
+#  consistency n63 I
+#  consistency n63 I e81/*0 O
+#  consistency n63 I e81/*2 O
+#  consistency n64
+#  consistency n64 O
+#  consistency n64 O e111 I
+#  consistency n64 I
+#  consistency n64 I e110/*0 O
+#  consistency n64 I e110/*1 O
+#  consistency n65
+#  consistency n65 O
+#  consistency n65 O e112 I
+#  consistency n65 I
+#  consistency n65 I e111 O
+#  consistency n66
+#  consistency n66 O
+#  consistency n66 O e124 I
+#  consistency n66 I
+#  consistency n66 I e123 O
+#  consistency n67
+#  consistency n67 O
+#  consistency n67 O e125/*0 I
+#  consistency n67 O e125/*1 I
+#  consistency n67 I
+#  consistency n67 I e124 O
+#  consistency n68
+#  consistency n68 O
+#  consistency n68 O e126/*0 I
+#  consistency n68 O e126/*1 I
+#  consistency n68 I
+#  consistency n68 I e125/*0 O
+#  consistency n68 I e125/*1 O
+# consistency e0/*1 count=2
+# consistency e1/*1 count=2
+# consistency e4/*1 count=2
+# consistency e16/*0 count=2
+# consistency e2/*0 count=2
+# consistency e3/*0 count=2
+# consistency e10/*0 count=2
+# consistency e36 count=2
+# consistency e5 count=2
+# consistency e9/*1 count=2
+# consistency e6/*0 count=2
+# consistency e7/*1 count=2
+# consistency e32/*0 count=2
+# consistency e32/*1 count=2
+# consistency e40 count=2
+# consistency e8/*1 count=2
+# consistency e11 count=2
+# consistency e15/*1 count=2
+# consistency e12/*0 count=2
+# consistency e13/*1 count=2
+# consistency e126/*0 count=2
+# consistency e126/*1 count=2
+# consistency e39 count=2
+# consistency e14/*1 count=2
+# consistency e17/*0 count=2
+# consistency e18/*1 count=2
+# consistency e21/*0 count=2
+# consistency e21/*1 count=2
+# consistency e19/*1 count=2
+# consistency e20/*1 count=2
+# consistency e22 count=2
+# consistency e26/*1 count=2
+# consistency e26/*3 count=2
+# consistency e23/*0 count=2
+# consistency e23/*2 count=2
+# consistency e24/*1 count=2
+# consistency e24/*3 count=2
+# consistency e27 count=2
+# consistency e82/*0 count=2
+# consistency e82/*2 count=2
+# consistency e25/*1 count=2
+# consistency e25/*3 count=2
+# consistency e123 count=2
+# consistency e28/*0 count=2
+# consistency e28/*2 count=2
+# consistency e29/*1 count=2
+# consistency e29/*3 count=2
+# consistency e112 count=2
+# consistency e69/*0 count=2
+# consistency e69/*2 count=2
+# consistency e30/*1 count=2
+# consistency e30/*3 count=2
+# consistency e31/*1 count=2
+# consistency e31/*3 count=2
+# consistency e33 count=2
+# consistency e37/*0 count=2
+# consistency e37/*1 count=2
+# consistency e34 count=2
+# consistency e35 count=2
+# consistency e38/*0 count=2
+# consistency e38/*1 count=2
+# consistency e110/*0 count=2
+# consistency e110/*1 count=2
+# consistency e60/*2 count=2
+# consistency e61/*2 count=2
+# consistency e75/*2 count=2
+# consistency e62/*2 count=2
+# consistency e63/*2 count=2
+# consistency e64/*2 count=2
+# consistency e68/*2 count=2
+# consistency e65/*0 count=2
+# consistency e66/*2 count=2
+# consistency e71/*0 count=2
+# consistency e71/*2 count=2
+# consistency e76/*0 count=2
+# consistency e67/*2 count=2
+# consistency e70/*0 count=2
+# consistency e70/*2 count=2
+# consistency e72/*0 count=2
+# consistency e73/*2 count=2
+# consistency e80/*0 count=2
+# consistency e80/*2 count=2
+# consistency e79/*0 count=2
+# consistency e74/*2 count=2
+# consistency e77/*0 count=2
+# consistency e78/*0 count=2
+# consistency e81/*0 count=2
+# consistency e81/*2 count=2
+# consistency e111 count=2
+# consistency e124 count=2
+# consistency e125/*0 count=2
+# consistency e125/*1 count=2
+# consistency check (command-line request) ok
+# movfeatsplitnodes n0 inner X2 pair-trivial
+# movfeatsplitnodes n1 inner X2 pair-trivial
+# movfeatsplitnodes n2 not inner: X2 and A2
+# movfeatsplitnodes n3 inner X2 pair-trivial
+# movfeatsplitnodes n4 inner X2 pair-trivial
+# movfeatsplitnodes n5 not inner: X2 and A1
+# movfeatsplitnodes n6 not inner: X3 and X2
+# movfeatsplitnodes n7 not inner: X7 and X3
+# movfeatsplitnodes n8 inner X7 [detach:e32/*0 I-n8 I][attach:e32/*0 I-n8x0 I][detach:e6/*0 O-n8 O][attach:e6/*0 O-n8x0 O][detach:e7/*1 O-n8 O][attach:e7/*1 O-n8x1 O][detach:e32/*1 I-n8 I][attach:e32/*1 I-n8x1 I]movfeatsplitnodes n9 not inner: X5 and X7
+# movfeatsplitnodes n10 inner X7 pair-trivial
+# movfeatsplitnodes n11 inner X7 pair-trivial
+# movfeatsplitnodes n12 not inner: X4 and X2
+# movfeatsplitnodes n13 not inner: X8 and X4
+# movfeatsplitnodes n14 inner X8 [detach:e126/*0 O-n14 I][attach:e126/*0 O-n14x0 I][detach:e12/*0 I-n14 O][attach:e12/*0 I-n14x0 O][detach:e13/*1 I-n14 O][attach:e13/*1 I-n14x1 O][detach:e126/*1 O-n14 I][attach:e126/*1 O-n14x1 I]movfeatsplitnodes n15 not inner: X6 and X8
+# movfeatsplitnodes n16 inner X8 pair-trivial
+# movfeatsplitnodes n17 inner X8 pair-trivial
+# movfeatsplitnodes n18 inner A2 pair-trivial
+# movfeatsplitnodes n19 inner A2 [detach:e21/*0 I-n19 I][attach:e21/*0 I-n19x0 I][detach:e17/*0 O-n19 O][attach:e17/*0 O-n19x0 O][detach:e18/*1 O-n19 O][attach:e18/*1 O-n19x1 O][detach:e21/*1 I-n19 I][attach:e21/*1 I-n19x1 I]movfeatsplitnodes n20 inner A2 pair-trivial
+# movfeatsplitnodes n21 inner A2 pair-trivial
+# movfeatsplitnodes n22 O terminus
+# movfeatsplitnodes n23 not inner: A4 and A2
+# movfeatsplitnodes n24 not inner: A6 and A4
+# movfeatsplitnodes n25 not inner: A6 and X10
+# movfeatsplitnodes n26 inner A6 [detach:e23/*0 I-n26 I][attach:e23/*0 I-n26x0 I][detach:e82/*0 O-n26 O][attach:e82/*0 O-n26x0 O][detach:e82/*2 O-n26 O][attach:e82/*2 O-n26x2 O][detach:e23/*2 I-n26 I][attach:e23/*2 I-n26x2 I]movfeatsplitnodes n27 inner A6 [detach:e24/*1 I-n27 I][attach:e24/*1 I-n27x1 I][detach:e25/*1 O-n27 O][attach:e25/*1 O-n27x1 O][detach:e25/*3 O-n27 O][attach:e25/*3 O-n27x3 O][detach:e24/*3 I-n27 I][attach:e24/*3 I-n27x3 I]movfeatsplitnodes n28 inner A6 [detach:e25/*1 I-n28 I][attach:e25/*1 I-n28x1 I][detach:e26/*1 O-n28 O][attach:e26/*1 O-n28x1 O][detach:e26/*3 O-n28 O][attach:e26/*3 O-n28x3 O][detach:e25/*3 I-n28 I][attach:e25/*3 I-n28x3 I]movfeatsplitnodes n29 inner X10 pair-trivial
+# movfeatsplitnodes n30 not inner: A5 and X9
+# movfeatsplitnodes n31 inner A5 [detach:e28/*0 O-n31 I][attach:e28/*0 O-n31x0 I][detach:e69/*0 I-n31 O][attach:e69/*0 I-n31x0 O][detach:e69/*2 I-n31 O][attach:e69/*2 I-n31x2 O][detach:e28/*2 O-n31 I][attach:e28/*2 O-n31x2 I]movfeatsplitnodes n32 inner A5 [detach:e29/*1 O-n32 I][attach:e29/*1 O-n32x1 I][detach:e30/*1 I-n32 O][attach:e30/*1 I-n32x1 O][detach:e30/*3 I-n32 O][attach:e30/*3 I-n32x3 O][detach:e29/*3 O-n32 I][attach:e29/*3 O-n32x3 I]movfeatsplitnodes n33 inner A5 [detach:e30/*1 O-n33 I][attach:e30/*1 O-n33x1 I][detach:e31/*1 I-n33 O][attach:e31/*1 I-n33x1 O][detach:e31/*3 I-n33 O][attach:e31/*3 I-n33x3 O][detach:e30/*3 O-n33 I][attach:e30/*3 O-n33x3 I]movfeatsplitnodes n34 not inner: A3 and A5
+# movfeatsplitnodes n35 inner X7 [detach:e32/*0 O-n35 I][attach:e32/*0 O-n35x0 I][detach:e37/*0 I-n35 O][attach:e37/*0 I-n35x0 O][detach:e37/*1 I-n35 O][attach:e37/*1 I-n35x1 O][detach:e32/*1 O-n35 I][attach:e32/*1 O-n35x1 I]movfeatsplitnodes n36 not inner: A1 and A3
+# movfeatsplitnodes n37 inner A1 pair-trivial
+# movfeatsplitnodes n38 inner A1 pair-trivial
+# movfeatsplitnodes n39 inner X7 [detach:e37/*0 O-n39 I][attach:e37/*0 O-n39x0 I][detach:e38/*0 I-n39 O][attach:e38/*0 I-n39x0 O][detach:e38/*1 I-n39 O][attach:e38/*1 I-n39x1 O][detach:e37/*1 O-n39 I][attach:e37/*1 O-n39x1 I]movfeatsplitnodes n40 inner X7 [detach:e38/*0 O-n40 I][attach:e38/*0 O-n40x0 I][detach:e110/*0 I-n40 O][attach:e110/*0 I-n40x0 O][detach:e110/*1 I-n40 O][attach:e110/*1 I-n40x1 O][detach:e38/*1 O-n40 I][attach:e38/*1 O-n40x1 I]movfeatsplitnodes n41 not inner: X5 and X6
+# movfeatsplitnodes n42 inner A6 pair-trivial
+# movfeatsplitnodes n43 inner A6 pair-trivial
+# movfeatsplitnodes n44 I terminus
+# movfeatsplitnodes n45 inner A5 pair-trivial
+# movfeatsplitnodes n46 O terminus
+# movfeatsplitnodes n47 inner A5 pair-trivial
+# movfeatsplitnodes n48 inner A5 pair-trivial
+# movfeatsplitnodes n49 inner A5 [detach:e71/*0 O-n49 I][attach:e71/*0 O-n49x0 I][detach:e65/*0 I-n49 O][attach:e65/*0 I-n49x0 O][detach:e66/*2 I-n49 O][attach:e66/*2 I-n49x2 O][detach:e71/*2 O-n49 I][attach:e71/*2 O-n49x2 I]movfeatsplitnodes n50 inner A5 pair-trivial
+# movfeatsplitnodes n51 inner A5 pair-trivial
+# movfeatsplitnodes n52 inner A5 pair-trivial
+# movfeatsplitnodes n53 inner A5 [detach:e69/*0 O-n53 I][attach:e69/*0 O-n53x0 I][detach:e70/*0 I-n53 O][attach:e70/*0 I-n53x0 O][detach:e70/*2 I-n53 O][attach:e70/*2 I-n53x2 O][detach:e69/*2 O-n53 I][attach:e69/*2 O-n53x2 I]movfeatsplitnodes n54 inner A5 [detach:e70/*0 O-n54 I][attach:e70/*0 O-n54x0 I][detach:e71/*0 I-n54 O][attach:e71/*0 I-n54x0 O][detach:e71/*2 I-n54 O][attach:e71/*2 I-n54x2 O][detach:e70/*2 O-n54 I][attach:e70/*2 O-n54x2 I]movfeatsplitnodes n55 inner A6 [detach:e80/*0 I-n55 I][attach:e80/*0 I-n55x0 I][detach:e72/*0 O-n55 O][attach:e72/*0 O-n55x0 O][detach:e73/*2 O-n55 O][attach:e73/*2 O-n55x2 O][detach:e80/*2 I-n55 I][attach:e80/*2 I-n55x2 I]movfeatsplitnodes n56 inner A6 pair-trivial
+# movfeatsplitnodes n57 inner A6 pair-trivial
+# movfeatsplitnodes n58 inner A6 pair-trivial
+# movfeatsplitnodes n59 inner A5 pair-trivial
+# movfeatsplitnodes n60 not inner: A6 and A5
+# movfeatsplitnodes n61 inner A6 pair-trivial
+# movfeatsplitnodes n62 inner A6 [detach:e80/*0 O-n62 I][attach:e80/*0 O-n62x0 I][detach:e81/*0 I-n62 O][attach:e81/*0 I-n62x0 O][detach:e81/*2 I-n62 O][attach:e81/*2 I-n62x2 O][detach:e80/*2 O-n62 I][attach:e80/*2 O-n62x2 I]movfeatsplitnodes n63 inner A6 [detach:e81/*0 O-n63 I][attach:e81/*0 O-n63x0 I][detach:e82/*0 I-n63 O][attach:e82/*0 I-n63x0 O][detach:e82/*2 I-n63 O][attach:e82/*2 I-n63x2 O][detach:e81/*2 O-n63 I][attach:e81/*2 O-n63x2 I]movfeatsplitnodes n64 not inner: X9 and X7
+# movfeatsplitnodes n65 inner X9 pair-trivial
+# movfeatsplitnodes n66 inner X10 pair-trivial
+# movfeatsplitnodes n67 not inner: X8 and X10
+# movfeatsplitnodes n68 inner X8 [detach:e125/*0 O-n68 I][attach:e125/*0 O-n68x0 I][detach:e126/*0 I-n68 O][attach:e126/*0 I-n68x0 O][detach:e126/*1 I-n68 O][attach:e126/*1 I-n68x1 O][detach:e125/*1 O-n68 I][attach:e125/*1 O-n68x1 I]movfeatsplitnodes n8x0 inner X7 pair-trivial
+# movfeatsplitnodes n8x1 inner X7 pair-trivial
+# movfeatsplitnodes n14x0 inner X8 pair-trivial
+# movfeatsplitnodes n14x1 inner X8 pair-trivial
+# movfeatsplitnodes n19x0 inner A2 pair-trivial
+# movfeatsplitnodes n19x1 inner A2 pair-trivial
+# movfeatsplitnodes n26x0 inner A6 pair-trivial
+# movfeatsplitnodes n26x2 inner A6 pair-trivial
+# movfeatsplitnodes n27x1 inner A6 pair-trivial
+# movfeatsplitnodes n27x3 inner A6 pair-trivial
+# movfeatsplitnodes n28x1 inner A6 pair-trivial
+# movfeatsplitnodes n28x3 inner A6 pair-trivial
+# movfeatsplitnodes n31x0 inner A5 pair-trivial
+# movfeatsplitnodes n31x2 inner A5 pair-trivial
+# movfeatsplitnodes n32x1 inner A5 pair-trivial
+# movfeatsplitnodes n32x3 inner A5 pair-trivial
+# movfeatsplitnodes n33x1 inner A5 pair-trivial
+# movfeatsplitnodes n33x3 inner A5 pair-trivial
+# movfeatsplitnodes n35x0 inner X7 pair-trivial
+# movfeatsplitnodes n35x1 inner X7 pair-trivial
+# movfeatsplitnodes n39x0 inner X7 pair-trivial
+# movfeatsplitnodes n39x1 inner X7 pair-trivial
+# movfeatsplitnodes n40x0 inner X7 pair-trivial
+# movfeatsplitnodes n40x1 inner X7 pair-trivial
+# movfeatsplitnodes n49x0 inner A5 pair-trivial
+# movfeatsplitnodes n49x2 inner A5 pair-trivial
+# movfeatsplitnodes n53x0 inner A5 pair-trivial
+# movfeatsplitnodes n53x2 inner A5 pair-trivial
+# movfeatsplitnodes n54x0 inner A5 pair-trivial
+# movfeatsplitnodes n54x2 inner A5 pair-trivial
+# movfeatsplitnodes n55x0 inner A6 pair-trivial
+# movfeatsplitnodes n55x2 inner A6 pair-trivial
+# movfeatsplitnodes n62x0 inner A6 pair-trivial
+# movfeatsplitnodes n62x2 inner A6 pair-trivial
+# movfeatsplitnodes n63x0 inner A6 pair-trivial
+# movfeatsplitnodes n63x2 inner A6 pair-trivial
+# movfeatsplitnodes n68x0 inner X8 pair-trivial
+# movfeatsplitnodes n68x1 inner X8 pair-trivial
+# consistency check (command-line request) ...
+#  consistency n0
+#  consistency n0 O
+#  consistency n0 O e0/*1 I
+#  consistency n0 I
+#  consistency n0 I e1/*1 O
+#  consistency n1
+#  consistency n1 O
+#  consistency n1 O e4/*1 I
+#  consistency n1 I
+#  consistency n1 I e0/*1 O
+#  consistency n2
+#  consistency n2 O
+#  consistency n2 O e1/*1 I
+#  consistency n2 I
+#  consistency n2 I e16/*0 I
+#  consistency n3
+#  consistency n3 O
+#  consistency n3 O e2/*0 O
+#  consistency n3 I
+#  consistency n3 I e3/*0 I
+#  consistency n4
+#  consistency n4 O
+#  consistency n4 O e10/*0 O
+#  consistency n4 I
+#  consistency n4 I e2/*0 I
+#  consistency n5
+#  consistency n5 O
+#  consistency n5 O e3/*0 O
+#  consistency n5 I
+#  consistency n5 I e36 O
+#  consistency n6
+#  consistency n6 O
+#  consistency n6 O e5 I
+#  consistency n6 I
+#  consistency n6 I e4/*1 O
+#  consistency n7
+#  consistency n7 O
+#  consistency n7 O e9/*1 I
+#  consistency n7 I
+#  consistency n7 I e5 O
+#  consistency n8
+#  consistency n8 O
+#  consistency n8 I
+#  consistency n9
+#  consistency n9 O
+#  consistency n9 O e40 O
+#  consistency n9 I
+#  consistency n9 I e6/*0 I
+#  consistency n10
+#  consistency n10 O
+#  consistency n10 O e8/*1 O
+#  consistency n10 I
+#  consistency n10 I e7/*1 I
+#  consistency n11
+#  consistency n11 O
+#  consistency n11 O e9/*1 O
+#  consistency n11 I
+#  consistency n11 I e8/*1 I
+#  consistency n12
+#  consistency n12 O
+#  consistency n12 O e11 O
+#  consistency n12 I
+#  consistency n12 I e10/*0 I
+#  consistency n13
+#  consistency n13 O
+#  consistency n13 O e15/*1 O
+#  consistency n13 I
+#  consistency n13 I e11 I
+#  consistency n14
+#  consistency n14 O
+#  consistency n14 I
+#  consistency n15
+#  consistency n15 O
+#  consistency n15 O e39 I
+#  consistency n15 I
+#  consistency n15 I e12/*0 O
+#  consistency n16
+#  consistency n16 O
+#  consistency n16 O e14/*1 I
+#  consistency n16 I
+#  consistency n16 I e13/*1 O
+#  consistency n17
+#  consistency n17 O
+#  consistency n17 O e15/*1 I
+#  consistency n17 I
+#  consistency n17 I e14/*1 O
+#  consistency n18
+#  consistency n18 O
+#  consistency n18 O e17/*0 I
+#  consistency n18 I
+#  consistency n18 I e16/*0 O
+#  consistency n19
+#  consistency n19 O
+#  consistency n19 I
+#  consistency n20
+#  consistency n20 O
+#  consistency n20 O e19/*1 O
+#  consistency n20 I
+#  consistency n20 I e18/*1 I
+#  consistency n21
+#  consistency n21 O
+#  consistency n21 O e20/*1 O
+#  consistency n21 I
+#  consistency n21 I e19/*1 I
+#  consistency n22
+#  consistency n22 O
+#  consistency n22 I
+#  consistency n22 I e20/*1 I
+#  consistency n23
+#  consistency n23 O
+#  consistency n23 O e22 I
+#  consistency n23 I
+#  consistency n23 I e21/*0 O
+#  consistency n23 I e21/*1 O
+#  consistency n24
+#  consistency n24 O
+#  consistency n24 O e26/*1 I
+#  consistency n24 O e26/*3 I
+#  consistency n24 I
+#  consistency n24 I e22 O
+#  consistency n25
+#  consistency n25 O
+#  consistency n25 O e23/*0 O
+#  consistency n25 O e23/*2 O
+#  consistency n25 O e24/*1 O
+#  consistency n25 O e24/*3 O
+#  consistency n25 I
+#  consistency n25 I e27 I
+#  consistency n26
+#  consistency n26 O
+#  consistency n26 I
+#  consistency n27
+#  consistency n27 O
+#  consistency n27 I
+#  consistency n28
+#  consistency n28 O
+#  consistency n28 I
+#  consistency n29
+#  consistency n29 O
+#  consistency n29 O e123 I
+#  consistency n29 I
+#  consistency n29 I e27 O
+#  consistency n30
+#  consistency n30 O
+#  consistency n30 O e28/*0 I
+#  consistency n30 O e28/*2 I
+#  consistency n30 O e29/*1 I
+#  consistency n30 O e29/*3 I
+#  consistency n30 I
+#  consistency n30 I e112 O
+#  consistency n31
+#  consistency n31 O
+#  consistency n31 I
+#  consistency n32
+#  consistency n32 O
+#  consistency n32 I
+#  consistency n33
+#  consistency n33 O
+#  consistency n33 I
+#  consistency n34
+#  consistency n34 O
+#  consistency n34 O e33 I
+#  consistency n34 I
+#  consistency n34 I e31/*1 O
+#  consistency n34 I e31/*3 O
+#  consistency n35
+#  consistency n35 O
+#  consistency n35 I
+#  consistency n36
+#  consistency n36 O
+#  consistency n36 O e34 I
+#  consistency n36 I
+#  consistency n36 I e33 O
+#  consistency n37
+#  consistency n37 O
+#  consistency n37 O e35 I
+#  consistency n37 I
+#  consistency n37 I e34 O
+#  consistency n38
+#  consistency n38 O
+#  consistency n38 O e36 I
+#  consistency n38 I
+#  consistency n38 I e35 O
+#  consistency n39
+#  consistency n39 O
+#  consistency n39 I
+#  consistency n40
+#  consistency n40 O
+#  consistency n40 I
+#  consistency n41
+#  consistency n41 O
+#  consistency n41 O e40 I
+#  consistency n41 I
+#  consistency n41 I e39 O
+#  consistency n42
+#  consistency n42 O
+#  consistency n42 O e60/*2 I
+#  consistency n42 I
+#  consistency n42 I e61/*2 O
+#  consistency n43
+#  consistency n43 O
+#  consistency n43 O e75/*2 I
+#  consistency n43 I
+#  consistency n43 I e60/*2 O
+#  consistency n44
+#  consistency n44 O
+#  consistency n44 O e61/*2 I
+#  consistency n44 I
+#  consistency n45
+#  consistency n45 O
+#  consistency n45 O e62/*2 I
+#  consistency n45 I
+#  consistency n45 I e63/*2 O
+#  consistency n46
+#  consistency n46 O
+#  consistency n46 I
+#  consistency n46 I e62/*2 O
+#  consistency n47
+#  consistency n47 O
+#  consistency n47 O e63/*2 I
+#  consistency n47 I
+#  consistency n47 I e64/*2 O
+#  consistency n48
+#  consistency n48 O
+#  consistency n48 O e68/*2 O
+#  consistency n48 I
+#  consistency n48 I e64/*2 I
+#  consistency n49
+#  consistency n49 O
+#  consistency n49 I
+#  consistency n50
+#  consistency n50 O
+#  consistency n50 O e76/*0 I
+#  consistency n50 I
+#  consistency n50 I e65/*0 O
+#  consistency n51
+#  consistency n51 O
+#  consistency n51 O e67/*2 I
+#  consistency n51 I
+#  consistency n51 I e66/*2 O
+#  consistency n52
+#  consistency n52 O
+#  consistency n52 O e68/*2 I
+#  consistency n52 I
+#  consistency n52 I e67/*2 O
+#  consistency n53
+#  consistency n53 O
+#  consistency n53 I
+#  consistency n54
+#  consistency n54 O
+#  consistency n54 I
+#  consistency n55
+#  consistency n55 O
+#  consistency n55 I
+#  consistency n56
+#  consistency n56 O
+#  consistency n56 O e79/*0 O
+#  consistency n56 I
+#  consistency n56 I e72/*0 I
+#  consistency n57
+#  consistency n57 O
+#  consistency n57 O e74/*2 O
+#  consistency n57 I
+#  consistency n57 I e73/*2 I
+#  consistency n58
+#  consistency n58 O
+#  consistency n58 O e75/*2 O
+#  consistency n58 I
+#  consistency n58 I e74/*2 I
+#  consistency n59
+#  consistency n59 O
+#  consistency n59 O e77/*0 I
+#  consistency n59 I
+#  consistency n59 I e76/*0 O
+#  consistency n60
+#  consistency n60 O
+#  consistency n60 O e78/*0 I
+#  consistency n60 I
+#  consistency n60 I e77/*0 O
+#  consistency n61
+#  consistency n61 O
+#  consistency n61 O e79/*0 I
+#  consistency n61 I
+#  consistency n61 I e78/*0 O
+#  consistency n62
+#  consistency n62 O
+#  consistency n62 I
+#  consistency n63
+#  consistency n63 O
+#  consistency n63 I
+#  consistency n64
+#  consistency n64 O
+#  consistency n64 O e111 I
+#  consistency n64 I
+#  consistency n64 I e110/*0 O
+#  consistency n64 I e110/*1 O
+#  consistency n65
+#  consistency n65 O
+#  consistency n65 O e112 I
+#  consistency n65 I
+#  consistency n65 I e111 O
+#  consistency n66
+#  consistency n66 O
+#  consistency n66 O e124 I
+#  consistency n66 I
+#  consistency n66 I e123 O
+#  consistency n67
+#  consistency n67 O
+#  consistency n67 O e125/*0 I
+#  consistency n67 O e125/*1 I
+#  consistency n67 I
+#  consistency n67 I e124 O
+#  consistency n68
+#  consistency n68 O
+#  consistency n68 I
+#  consistency n8x0
+#  consistency n8x0 O
+#  consistency n8x0 O e6/*0 O
+#  consistency n8x0 I
+#  consistency n8x0 I e32/*0 I
+#  consistency n8x1
+#  consistency n8x1 O
+#  consistency n8x1 O e7/*1 O
+#  consistency n8x1 I
+#  consistency n8x1 I e32/*1 I
+#  consistency n14x0
+#  consistency n14x0 O
+#  consistency n14x0 O e12/*0 I
+#  consistency n14x0 I
+#  consistency n14x0 I e126/*0 O
+#  consistency n14x1
+#  consistency n14x1 O
+#  consistency n14x1 O e13/*1 I
+#  consistency n14x1 I
+#  consistency n14x1 I e126/*1 O
+#  consistency n19x0
+#  consistency n19x0 O
+#  consistency n19x0 O e17/*0 O
+#  consistency n19x0 I
+#  consistency n19x0 I e21/*0 I
+#  consistency n19x1
+#  consistency n19x1 O
+#  consistency n19x1 O e18/*1 O
+#  consistency n19x1 I
+#  consistency n19x1 I e21/*1 I
+#  consistency n26x0
+#  consistency n26x0 O
+#  consistency n26x0 O e82/*0 O
+#  consistency n26x0 I
+#  consistency n26x0 I e23/*0 I
+#  consistency n26x2
+#  consistency n26x2 O
+#  consistency n26x2 O e82/*2 O
+#  consistency n26x2 I
+#  consistency n26x2 I e23/*2 I
+#  consistency n27x1
+#  consistency n27x1 O
+#  consistency n27x1 O e25/*1 O
+#  consistency n27x1 I
+#  consistency n27x1 I e24/*1 I
+#  consistency n27x3
+#  consistency n27x3 O
+#  consistency n27x3 O e25/*3 O
+#  consistency n27x3 I
+#  consistency n27x3 I e24/*3 I
+#  consistency n28x1
+#  consistency n28x1 O
+#  consistency n28x1 O e26/*1 O
+#  consistency n28x1 I
+#  consistency n28x1 I e25/*1 I
+#  consistency n28x3
+#  consistency n28x3 O
+#  consistency n28x3 O e26/*3 O
+#  consistency n28x3 I
+#  consistency n28x3 I e25/*3 I
+#  consistency n31x0
+#  consistency n31x0 O
+#  consistency n31x0 O e69/*0 I
+#  consistency n31x0 I
+#  consistency n31x0 I e28/*0 O
+#  consistency n31x2
+#  consistency n31x2 O
+#  consistency n31x2 O e69/*2 I
+#  consistency n31x2 I
+#  consistency n31x2 I e28/*2 O
+#  consistency n32x1
+#  consistency n32x1 O
+#  consistency n32x1 O e30/*1 I
+#  consistency n32x1 I
+#  consistency n32x1 I e29/*1 O
+#  consistency n32x3
+#  consistency n32x3 O
+#  consistency n32x3 O e30/*3 I
+#  consistency n32x3 I
+#  consistency n32x3 I e29/*3 O
+#  consistency n33x1
+#  consistency n33x1 O
+#  consistency n33x1 O e31/*1 I
+#  consistency n33x1 I
+#  consistency n33x1 I e30/*1 O
+#  consistency n33x3
+#  consistency n33x3 O
+#  consistency n33x3 O e31/*3 I
+#  consistency n33x3 I
+#  consistency n33x3 I e30/*3 O
+#  consistency n35x0
+#  consistency n35x0 O
+#  consistency n35x0 O e37/*0 I
+#  consistency n35x0 I
+#  consistency n35x0 I e32/*0 O
+#  consistency n35x1
+#  consistency n35x1 O
+#  consistency n35x1 O e37/*1 I
+#  consistency n35x1 I
+#  consistency n35x1 I e32/*1 O
+#  consistency n39x0
+#  consistency n39x0 O
+#  consistency n39x0 O e38/*0 I
+#  consistency n39x0 I
+#  consistency n39x0 I e37/*0 O
+#  consistency n39x1
+#  consistency n39x1 O
+#  consistency n39x1 O e38/*1 I
+#  consistency n39x1 I
+#  consistency n39x1 I e37/*1 O
+#  consistency n40x0
+#  consistency n40x0 O
+#  consistency n40x0 O e110/*0 I
+#  consistency n40x0 I
+#  consistency n40x0 I e38/*0 O
+#  consistency n40x1
+#  consistency n40x1 O
+#  consistency n40x1 O e110/*1 I
+#  consistency n40x1 I
+#  consistency n40x1 I e38/*1 O
+#  consistency n49x0
+#  consistency n49x0 O
+#  consistency n49x0 O e65/*0 I
+#  consistency n49x0 I
+#  consistency n49x0 I e71/*0 O
+#  consistency n49x2
+#  consistency n49x2 O
+#  consistency n49x2 O e66/*2 I
+#  consistency n49x2 I
+#  consistency n49x2 I e71/*2 O
+#  consistency n53x0
+#  consistency n53x0 O
+#  consistency n53x0 O e70/*0 I
+#  consistency n53x0 I
+#  consistency n53x0 I e69/*0 O
+#  consistency n53x2
+#  consistency n53x2 O
+#  consistency n53x2 O e70/*2 I
+#  consistency n53x2 I
+#  consistency n53x2 I e69/*2 O
+#  consistency n54x0
+#  consistency n54x0 O
+#  consistency n54x0 O e71/*0 I
+#  consistency n54x0 I
+#  consistency n54x0 I e70/*0 O
+#  consistency n54x2
+#  consistency n54x2 O
+#  consistency n54x2 O e71/*2 I
+#  consistency n54x2 I
+#  consistency n54x2 I e70/*2 O
+#  consistency n55x0
+#  consistency n55x0 O
+#  consistency n55x0 O e72/*0 O
+#  consistency n55x0 I
+#  consistency n55x0 I e80/*0 I
+#  consistency n55x2
+#  consistency n55x2 O
+#  consistency n55x2 O e73/*2 O
+#  consistency n55x2 I
+#  consistency n55x2 I e80/*2 I
+#  consistency n62x0
+#  consistency n62x0 O
+#  consistency n62x0 O e81/*0 I
+#  consistency n62x0 I
+#  consistency n62x0 I e80/*0 O
+#  consistency n62x2
+#  consistency n62x2 O
+#  consistency n62x2 O e81/*2 I
+#  consistency n62x2 I
+#  consistency n62x2 I e80/*2 O
+#  consistency n63x0
+#  consistency n63x0 O
+#  consistency n63x0 O e82/*0 I
+#  consistency n63x0 I
+#  consistency n63x0 I e81/*0 O
+#  consistency n63x2
+#  consistency n63x2 O
+#  consistency n63x2 O e82/*2 I
+#  consistency n63x2 I
+#  consistency n63x2 I e81/*2 O
+#  consistency n68x0
+#  consistency n68x0 O
+#  consistency n68x0 O e126/*0 I
+#  consistency n68x0 I
+#  consistency n68x0 I e125/*0 O
+#  consistency n68x1
+#  consistency n68x1 O
+#  consistency n68x1 O e126/*1 I
+#  consistency n68x1 I
+#  consistency n68x1 I e125/*1 O
+# consistency e0/*1 count=2
+# consistency e1/*1 count=2
+# consistency e4/*1 count=2
+# consistency e16/*0 count=2
+# consistency e2/*0 count=2
+# consistency e3/*0 count=2
+# consistency e10/*0 count=2
+# consistency e36 count=2
+# consistency e5 count=2
+# consistency e9/*1 count=2
+# consistency e40 count=2
+# consistency e6/*0 count=2
+# consistency e8/*1 count=2
+# consistency e7/*1 count=2
+# consistency e11 count=2
+# consistency e15/*1 count=2
+# consistency e39 count=2
+# consistency e12/*0 count=2
+# consistency e14/*1 count=2
+# consistency e13/*1 count=2
+# consistency e17/*0 count=2
+# consistency e19/*1 count=2
+# consistency e18/*1 count=2
+# consistency e20/*1 count=2
+# consistency e22 count=2
+# consistency e21/*0 count=2
+# consistency e21/*1 count=2
+# consistency e26/*1 count=2
+# consistency e26/*3 count=2
+# consistency e23/*0 count=2
+# consistency e23/*2 count=2
+# consistency e24/*1 count=2
+# consistency e24/*3 count=2
+# consistency e27 count=2
+# consistency e123 count=2
+# consistency e28/*0 count=2
+# consistency e28/*2 count=2
+# consistency e29/*1 count=2
+# consistency e29/*3 count=2
+# consistency e112 count=2
+# consistency e33 count=2
+# consistency e31/*1 count=2
+# consistency e31/*3 count=2
+# consistency e34 count=2
+# consistency e35 count=2
+# consistency e60/*2 count=2
+# consistency e61/*2 count=2
+# consistency e75/*2 count=2
+# consistency e62/*2 count=2
+# consistency e63/*2 count=2
+# consistency e64/*2 count=2
+# consistency e68/*2 count=2
+# consistency e76/*0 count=2
+# consistency e65/*0 count=2
+# consistency e67/*2 count=2
+# consistency e66/*2 count=2
+# consistency e79/*0 count=2
+# consistency e72/*0 count=2
+# consistency e74/*2 count=2
+# consistency e73/*2 count=2
+# consistency e77/*0 count=2
+# consistency e78/*0 count=2
+# consistency e111 count=2
+# consistency e110/*0 count=2
+# consistency e110/*1 count=2
+# consistency e124 count=2
+# consistency e125/*0 count=2
+# consistency e125/*1 count=2
+# consistency e32/*0 count=2
+# consistency e32/*1 count=2
+# consistency e126/*0 count=2
+# consistency e126/*1 count=2
+# consistency e82/*0 count=2
+# consistency e82/*2 count=2
+# consistency e25/*1 count=2
+# consistency e25/*3 count=2
+# consistency e69/*0 count=2
+# consistency e69/*2 count=2
+# consistency e30/*1 count=2
+# consistency e30/*3 count=2
+# consistency e37/*0 count=2
+# consistency e37/*1 count=2
+# consistency e38/*0 count=2
+# consistency e38/*1 count=2
+# consistency e71/*0 count=2
+# consistency e71/*2 count=2
+# consistency e70/*0 count=2
+# consistency e70/*2 count=2
+# consistency e80/*0 count=2
+# consistency e80/*2 count=2
+# consistency e81/*0 count=2
+# consistency e81/*2 count=2
+# consistency check (command-line request) ok
+# trivpairnodes node n0  yes:
+# [detach:e1/*1+ O-n0 I][attach:e1/*1+ O-n1 I][detach:e0/*1 O-n1 I][detach:e0/*1 I-n0 O][delete:e0/*1] trivpairnodes operation complete
+# trivpairnodes node n1  yes:
+# [detach:e1/*1+ O-n1 I][attach:e1/*1+ O-n6 I][detach:e4/*1 O-n6 I][detach:e4/*1 I-n1 O][delete:e4/*1] trivpairnodes operation complete
+# trivpairnodes node n2 no, (sub)segments differ
+# trivpairnodes node n3  yes:
+# [detach:e3/*0+ I-n3 I][attach:e3/*0+ I-n4 I][detach:e2/*0 I-n4 I][detach:e2/*0 O-n3 O][delete:e2/*0] trivpairnodes operation complete
+# trivpairnodes node n4  yes:
+# [detach:e3/*0+ I-n4 I][attach:e3/*0+ I-n12 I][detach:e10/*0 I-n12 I][detach:e10/*0 O-n4 O][delete:e10/*0] trivpairnodes operation complete
+# trivpairnodes node n5 no, (sub)segments differ
+# trivpairnodes node n6 no, (sub)segments differ
+# trivpairnodes node n7 no, (sub)segments differ
+# trivpairnodes node n8 no, a non-unitary side
+# trivpairnodes node n9 no, (sub)segments differ
+# trivpairnodes node n10  yes:
+# [detach:e7/*1+ I-n10 I][attach:e7/*1+ I-n11 I][detach:e8/*1 I-n11 I][detach:e8/*1 O-n10 O][delete:e8/*1] trivpairnodes operation complete
+# trivpairnodes node n11  yes:
+# [detach:e7/*1+ I-n11 I][attach:e7/*1+ I-n7 O][detach:e9/*1 I-n7 O][detach:e9/*1 O-n11 O][delete:e9/*1] trivpairnodes operation complete
+# trivpairnodes node n12 no, (sub)segments differ
+# trivpairnodes node n13 no, (sub)segments differ
+# trivpairnodes node n14 no, a non-unitary side
+# trivpairnodes node n15 no, (sub)segments differ
+# trivpairnodes node n16  yes:
+# [detach:e13/*1+ O-n16 I][attach:e13/*1+ O-n17 I][detach:e14/*1 O-n17 I][detach:e14/*1 I-n16 O][delete:e14/*1] trivpairnodes operation complete
+# trivpairnodes node n17  yes:
+# [detach:e13/*1+ O-n17 I][attach:e13/*1+ O-n13 O][detach:e15/*1 O-n13 O][detach:e15/*1 I-n17 O][delete:e15/*1] trivpairnodes operation complete
+# trivpairnodes node n18  yes:
+# [detach:e16/*0+ O-n18 I][attach:e16/*0+ O-n19x0 O][detach:e17/*0 O-n19x0 O][detach:e17/*0 I-n18 O][delete:e17/*0] trivpairnodes operation complete
+# trivpairnodes node n19 no, a non-unitary side
+# trivpairnodes node n20  yes:
+# [detach:e18/*1+ I-n20 I][attach:e18/*1+ I-n21 I][detach:e19/*1 I-n21 I][detach:e19/*1 O-n20 O][delete:e19/*1] trivpairnodes operation complete
+# trivpairnodes node n21  yes:
+# [detach:e18/*1+ I-n21 I][attach:e18/*1+ I-n22 I][detach:e20/*1 I-n22 I][detach:e20/*1 O-n21 O][delete:e20/*1] trivpairnodes operation complete
+# trivpairnodes node n22 no, a non-unitary side
+# trivpairnodes node n23 no, a non-unitary side
+# trivpairnodes node n24 no, a non-unitary side
+# trivpairnodes node n25 no, a non-unitary side
+# trivpairnodes node n26 no, a non-unitary side
+# trivpairnodes node n27 no, a non-unitary side
+# trivpairnodes node n28 no, a non-unitary side
+# trivpairnodes node n29  yes:
+# [detach:e27+ O-n29 I][attach:e27+ O-n66 I][detach:e123 O-n66 I][detach:e123 I-n29 O][delete:e123] trivpairnodes operation complete
+# trivpairnodes node n30 no, a non-unitary side
+# trivpairnodes node n31 no, a non-unitary side
+# trivpairnodes node n32 no, a non-unitary side
+# trivpairnodes node n33 no, a non-unitary side
+# trivpairnodes node n34 no, a non-unitary side
+# trivpairnodes node n35 no, a non-unitary side
+# trivpairnodes node n36 no, (sub)segments differ
+# trivpairnodes node n37  yes:
+# [detach:e34+ O-n37 I][attach:e34+ O-n38 I][detach:e35 O-n38 I][detach:e35 I-n37 O][delete:e35] trivpairnodes operation complete
+# trivpairnodes node n38  yes:
+# [detach:e34+ O-n38 I][attach:e34+ O-n5 I][detach:e36 O-n5 I][detach:e36 I-n38 O][delete:e36] trivpairnodes operation complete
+# trivpairnodes node n39 no, a non-unitary side
+# trivpairnodes node n40 no, a non-unitary side
+# trivpairnodes node n41 no, (sub)segments differ
+# trivpairnodes node n42  yes:
+# [detach:e61/*2+ O-n42 I][attach:e61/*2+ O-n43 I][detach:e60/*2 O-n43 I][detach:e60/*2 I-n42 O][delete:e60/*2] trivpairnodes operation complete
+# trivpairnodes node n43  yes:
+# [detach:e61/*2+ O-n43 I][attach:e61/*2+ O-n58 O][detach:e75/*2 O-n58 O][detach:e75/*2 I-n43 O][delete:e75/*2] trivpairnodes operation complete
+# trivpairnodes node n44 no, a non-unitary side
+# trivpairnodes node n45  yes:
+# [detach:e63/*2+ O-n45 I][attach:e63/*2+ O-n46 I][detach:e62/*2 O-n46 I][detach:e62/*2 I-n45 O][delete:e62/*2] trivpairnodes operation complete
+# trivpairnodes node n46 no, a non-unitary side
+# trivpairnodes node n47  yes:
+# [detach:e64/*2+ O-n47 I][attach:e64/*2+ O-n46 I][detach:e63/*2+ O-n46 I][detach:e63/*2+ I-n47 O][delete:e63/*2+] trivpairnodes operation complete
+# trivpairnodes node n48  yes:
+# [detach:e64/*2+ I-n48 I][attach:e64/*2+ I-n52 O][detach:e68/*2 I-n52 O][detach:e68/*2 O-n48 O][delete:e68/*2] trivpairnodes operation complete
+# trivpairnodes node n49 no, a non-unitary side
+# trivpairnodes node n50  yes:
+# [detach:e65/*0+ O-n50 I][attach:e65/*0+ O-n59 I][detach:e76/*0 O-n59 I][detach:e76/*0 I-n50 O][delete:e76/*0] trivpairnodes operation complete
+# trivpairnodes node n51  yes:
+# [detach:e66/*2+ O-n51 I][attach:e66/*2+ O-n52 I][detach:e67/*2 O-n52 I][detach:e67/*2 I-n51 O][delete:e67/*2] trivpairnodes operation complete
+# trivpairnodes node n52  yes:
+# [detach:e66/*2+ O-n52 I][attach:e66/*2+ O-n46 I][detach:e64/*2+ O-n46 I][detach:e64/*2+ I-n52 O][delete:e64/*2+] trivpairnodes operation complete
+# trivpairnodes node n53 no, a non-unitary side
+# trivpairnodes node n54 no, a non-unitary side
+# trivpairnodes node n55 no, a non-unitary side
+# trivpairnodes node n56  yes:
+# [detach:e72/*0+ I-n56 I][attach:e72/*0+ I-n61 O][detach:e79/*0 I-n61 O][detach:e79/*0 O-n56 O][delete:e79/*0] trivpairnodes operation complete
+# trivpairnodes node n57  yes:
+# [detach:e73/*2+ I-n57 I][attach:e73/*2+ I-n58 I][detach:e74/*2 I-n58 I][detach:e74/*2 O-n57 O][delete:e74/*2] trivpairnodes operation complete
+# trivpairnodes node n58  yes:
+# [detach:e73/*2+ I-n58 I][attach:e73/*2+ I-n44 O][detach:e61/*2+ I-n44 O][detach:e61/*2+ O-n58 O][delete:e61/*2+] trivpairnodes operation complete
+# trivpairnodes node n59  yes:
+# [detach:e65/*0+ O-n59 I][attach:e65/*0+ O-n60 I][detach:e77/*0 O-n60 I][detach:e77/*0 I-n59 O][delete:e77/*0] trivpairnodes operation complete
+# trivpairnodes node n60 no, (sub)segments differ
+# trivpairnodes node n61  yes:
+# [detach:e78/*0+ O-n61 I][attach:e78/*0+ O-n55x0 O][detach:e72/*0+ O-n55x0 O][detach:e72/*0+ I-n61 O][delete:e72/*0+] trivpairnodes operation complete
+# trivpairnodes node n62 no, a non-unitary side
+# trivpairnodes node n63 no, a non-unitary side
+# trivpairnodes node n64 no, a non-unitary side
+# trivpairnodes node n65  yes:
+# [detach:e111+ O-n65 I][attach:e111+ O-n30 I][detach:e112 O-n30 I][detach:e112 I-n65 O][delete:e112] trivpairnodes operation complete
+# trivpairnodes node n66  yes:
+# [detach:e27+ O-n66 I][attach:e27+ O-n67 I][detach:e124 O-n67 I][detach:e124 I-n66 O][delete:e124] trivpairnodes operation complete
+# trivpairnodes node n67 no, a non-unitary side
+# trivpairnodes node n68 no, a non-unitary side
+# trivpairnodes node n8x0  yes:
+# [detach:e32/*0+ I-n8x0 I][attach:e32/*0+ I-n9 I][detach:e6/*0 I-n9 I][detach:e6/*0 O-n8x0 O][delete:e6/*0] trivpairnodes operation complete
+# trivpairnodes node n8x1  yes:
+# [detach:e32/*1+ I-n8x1 I][attach:e32/*1+ I-n7 O][detach:e7/*1+ I-n7 O][detach:e7/*1+ O-n8x1 O][delete:e7/*1+] trivpairnodes operation complete
+# trivpairnodes node n14x0  yes:
+# [detach:e126/*0+ O-n14x0 I][attach:e126/*0+ O-n15 I][detach:e12/*0 O-n15 I][detach:e12/*0 I-n14x0 O][delete:e12/*0] trivpairnodes operation complete
+# trivpairnodes node n14x1  yes:
+# [detach:e126/*1+ O-n14x1 I][attach:e126/*1+ O-n13 O][detach:e13/*1+ O-n13 O][detach:e13/*1+ I-n14x1 O][delete:e13/*1+] trivpairnodes operation complete
+# trivpairnodes node n19x0  yes:
+# [detach:e21/*0+ I-n19x0 I][attach:e21/*0+ I-n2 I][detach:e16/*0+ I-n2 I][detach:e16/*0+ O-n19x0 O][delete:e16/*0+] trivpairnodes operation complete
+# trivpairnodes node n19x1  yes:
+# [detach:e21/*1+ I-n19x1 I][attach:e21/*1+ I-n22 I][detach:e18/*1+ I-n22 I][detach:e18/*1+ O-n19x1 O][delete:e18/*1+] trivpairnodes operation complete
+# trivpairnodes node n26x0  yes:
+# [detach:e23/*0+ I-n26x0 I][attach:e23/*0+ I-n63x0 O][detach:e82/*0 I-n63x0 O][detach:e82/*0 O-n26x0 O][delete:e82/*0] trivpairnodes operation complete
+# trivpairnodes node n26x2  yes:
+# [detach:e23/*2+ I-n26x2 I][attach:e23/*2+ I-n63x2 O][detach:e82/*2 I-n63x2 O][detach:e82/*2 O-n26x2 O][delete:e82/*2] trivpairnodes operation complete
+# trivpairnodes node n27x1  yes:
+# [detach:e24/*1+ I-n27x1 I][attach:e24/*1+ I-n28x1 I][detach:e25/*1 I-n28x1 I][detach:e25/*1 O-n27x1 O][delete:e25/*1] trivpairnodes operation complete
+# trivpairnodes node n27x3  yes:
+# [detach:e24/*3+ I-n27x3 I][attach:e24/*3+ I-n28x3 I][detach:e25/*3 I-n28x3 I][detach:e25/*3 O-n27x3 O][delete:e25/*3] trivpairnodes operation complete
+# trivpairnodes node n28x1  yes:
+# [detach:e24/*1+ I-n28x1 I][attach:e24/*1+ I-n24 O][detach:e26/*1 I-n24 O][detach:e26/*1 O-n28x1 O][delete:e26/*1] trivpairnodes operation complete
+# trivpairnodes node n28x3  yes:
+# [detach:e24/*3+ I-n28x3 I][attach:e24/*3+ I-n24 O][detach:e26/*3 I-n24 O][detach:e26/*3 O-n28x3 O][delete:e26/*3] trivpairnodes operation complete
+# trivpairnodes node n31x0  yes:
+# [detach:e28/*0+ O-n31x0 I][attach:e28/*0+ O-n53x0 I][detach:e69/*0 O-n53x0 I][detach:e69/*0 I-n31x0 O][delete:e69/*0] trivpairnodes operation complete
+# trivpairnodes node n31x2  yes:
+# [detach:e28/*2+ O-n31x2 I][attach:e28/*2+ O-n53x2 I][detach:e69/*2 O-n53x2 I][detach:e69/*2 I-n31x2 O][delete:e69/*2] trivpairnodes operation complete
+# trivpairnodes node n32x1  yes:
+# [detach:e29/*1+ O-n32x1 I][attach:e29/*1+ O-n33x1 I][detach:e30/*1 O-n33x1 I][detach:e30/*1 I-n32x1 O][delete:e30/*1] trivpairnodes operation complete
+# trivpairnodes node n32x3  yes:
+# [detach:e29/*3+ O-n32x3 I][attach:e29/*3+ O-n33x3 I][detach:e30/*3 O-n33x3 I][detach:e30/*3 I-n32x3 O][delete:e30/*3] trivpairnodes operation complete
+# trivpairnodes node n33x1  yes:
+# [detach:e29/*1+ O-n33x1 I][attach:e29/*1+ O-n34 I][detach:e31/*1 O-n34 I][detach:e31/*1 I-n33x1 O][delete:e31/*1] trivpairnodes operation complete
+# trivpairnodes node n33x3  yes:
+# [detach:e29/*3+ O-n33x3 I][attach:e29/*3+ O-n34 I][detach:e31/*3 O-n34 I][detach:e31/*3 I-n33x3 O][delete:e31/*3] trivpairnodes operation complete
+# trivpairnodes node n35x0  yes:
+# [detach:e32/*0+ O-n35x0 I][attach:e32/*0+ O-n39x0 I][detach:e37/*0 O-n39x0 I][detach:e37/*0 I-n35x0 O][delete:e37/*0] trivpairnodes operation complete
+# trivpairnodes node n35x1  yes:
+# [detach:e32/*1+ O-n35x1 I][attach:e32/*1+ O-n39x1 I][detach:e37/*1 O-n39x1 I][detach:e37/*1 I-n35x1 O][delete:e37/*1] trivpairnodes operation complete
+# trivpairnodes node n39x0  yes:
+# [detach:e32/*0+ O-n39x0 I][attach:e32/*0+ O-n40x0 I][detach:e38/*0 O-n40x0 I][detach:e38/*0 I-n39x0 O][delete:e38/*0] trivpairnodes operation complete
+# trivpairnodes node n39x1  yes:
+# [detach:e32/*1+ O-n39x1 I][attach:e32/*1+ O-n40x1 I][detach:e38/*1 O-n40x1 I][detach:e38/*1 I-n39x1 O][delete:e38/*1] trivpairnodes operation complete
+# trivpairnodes node n40x0  yes:
+# [detach:e32/*0+ O-n40x0 I][attach:e32/*0+ O-n64 I][detach:e110/*0 O-n64 I][detach:e110/*0 I-n40x0 O][delete:e110/*0] trivpairnodes operation complete
+# trivpairnodes node n40x1  yes:
+# [detach:e32/*1+ O-n40x1 I][attach:e32/*1+ O-n64 I][detach:e110/*1 O-n64 I][detach:e110/*1 I-n40x1 O][delete:e110/*1] trivpairnodes operation complete
+# trivpairnodes node n49x0  yes:
+# [detach:e71/*0+ O-n49x0 I][attach:e71/*0+ O-n60 I][detach:e65/*0+ O-n60 I][detach:e65/*0+ I-n49x0 O][delete:e65/*0+] trivpairnodes operation complete
+# trivpairnodes node n49x2  yes:
+# [detach:e71/*2+ O-n49x2 I][attach:e71/*2+ O-n46 I][detach:e66/*2+ O-n46 I][detach:e66/*2+ I-n49x2 O][delete:e66/*2+] trivpairnodes operation complete
+# trivpairnodes node n53x0  yes:
+# [detach:e28/*0+ O-n53x0 I][attach:e28/*0+ O-n54x0 I][detach:e70/*0 O-n54x0 I][detach:e70/*0 I-n53x0 O][delete:e70/*0] trivpairnodes operation complete
+# trivpairnodes node n53x2  yes:
+# [detach:e28/*2+ O-n53x2 I][attach:e28/*2+ O-n54x2 I][detach:e70/*2 O-n54x2 I][detach:e70/*2 I-n53x2 O][delete:e70/*2] trivpairnodes operation complete
+# trivpairnodes node n54x0  yes:
+# [detach:e28/*0+ O-n54x0 I][attach:e28/*0+ O-n60 I][detach:e71/*0+ O-n60 I][detach:e71/*0+ I-n54x0 O][delete:e71/*0+] trivpairnodes operation complete
+# trivpairnodes node n54x2  yes:
+# [detach:e28/*2+ O-n54x2 I][attach:e28/*2+ O-n46 I][detach:e71/*2+ O-n46 I][detach:e71/*2+ I-n54x2 O][delete:e71/*2+] trivpairnodes operation complete
+# trivpairnodes node n55x0  yes:
+# [detach:e80/*0+ I-n55x0 I][attach:e80/*0+ I-n60 O][detach:e78/*0+ I-n60 O][detach:e78/*0+ O-n55x0 O][delete:e78/*0+] trivpairnodes operation complete
+# trivpairnodes node n55x2  yes:
+# [detach:e80/*2+ I-n55x2 I][attach:e80/*2+ I-n44 O][detach:e73/*2+ I-n44 O][detach:e73/*2+ O-n55x2 O][delete:e73/*2+] trivpairnodes operation complete
+# trivpairnodes node n62x0  yes:
+# [detach:e80/*0+ O-n62x0 I][attach:e80/*0+ O-n63x0 I][detach:e81/*0 O-n63x0 I][detach:e81/*0 I-n62x0 O][delete:e81/*0] trivpairnodes operation complete
+# trivpairnodes node n62x2  yes:
+# [detach:e80/*2+ O-n62x2 I][attach:e80/*2+ O-n63x2 I][detach:e81/*2 O-n63x2 I][detach:e81/*2 I-n62x2 O][delete:e81/*2] trivpairnodes operation complete
+# trivpairnodes node n63x0  yes:
+# [detach:e80/*0+ O-n63x0 I][attach:e80/*0+ O-n25 O][detach:e23/*0+ O-n25 O][detach:e23/*0+ I-n63x0 O][delete:e23/*0+] trivpairnodes operation complete
+# trivpairnodes node n63x2  yes:
+# [detach:e80/*2+ O-n63x2 I][attach:e80/*2+ O-n25 O][detach:e23/*2+ O-n25 O][detach:e23/*2+ I-n63x2 O][delete:e23/*2+] trivpairnodes operation complete
+# trivpairnodes node n68x0  yes:
+# [detach:e125/*0+ O-n68x0 I][attach:e125/*0+ O-n15 I][detach:e126/*0+ O-n15 I][detach:e126/*0+ I-n68x0 O][delete:e126/*0+] trivpairnodes operation complete
+# trivpairnodes node n68x1  yes:
+# [detach:e125/*1+ O-n68x1 I][attach:e125/*1+ O-n13 O][detach:e126/*1+ O-n13 O][detach:e126/*1+ I-n68x1 O][delete:e126/*1+] trivpairnodes operation complete
+# consistency check (command-line request) ...
+#  consistency n0
+#  consistency n0 O
+#  consistency n0 I
+#  consistency n1
+#  consistency n1 O
+#  consistency n1 I
+#  consistency n2
+#  consistency n2 O
+#  consistency n2 O e1/*1+ I
+#  consistency n2 I
+#  consistency n2 I e21/*0+ I
+#  consistency n3
+#  consistency n3 O
+#  consistency n3 I
+#  consistency n4
+#  consistency n4 O
+#  consistency n4 I
+#  consistency n5
+#  consistency n5 O
+#  consistency n5 O e3/*0+ O
+#  consistency n5 I
+#  consistency n5 I e34+ O
+#  consistency n6
+#  consistency n6 O
+#  consistency n6 O e5 I
+#  consistency n6 I
+#  consistency n6 I e1/*1+ O
+#  consistency n7
+#  consistency n7 O
+#  consistency n7 O e32/*1+ I
+#  consistency n7 I
+#  consistency n7 I e5 O
+#  consistency n8
+#  consistency n8 O
+#  consistency n8 I
+#  consistency n9
+#  consistency n9 O
+#  consistency n9 O e40 O
+#  consistency n9 I
+#  consistency n9 I e32/*0+ I
+#  consistency n10
+#  consistency n10 O
+#  consistency n10 I
+#  consistency n11
+#  consistency n11 O
+#  consistency n11 I
+#  consistency n12
+#  consistency n12 O
+#  consistency n12 O e11 O
+#  consistency n12 I
+#  consistency n12 I e3/*0+ I
+#  consistency n13
+#  consistency n13 O
+#  consistency n13 O e125/*1+ O
+#  consistency n13 I
+#  consistency n13 I e11 I
+#  consistency n14
+#  consistency n14 O
+#  consistency n14 I
+#  consistency n15
+#  consistency n15 O
+#  consistency n15 O e39 I
+#  consistency n15 I
+#  consistency n15 I e125/*0+ O
+#  consistency n16
+#  consistency n16 O
+#  consistency n16 I
+#  consistency n17
+#  consistency n17 O
+#  consistency n17 I
+#  consistency n18
+#  consistency n18 O
+#  consistency n18 I
+#  consistency n19
+#  consistency n19 O
+#  consistency n19 I
+#  consistency n20
+#  consistency n20 O
+#  consistency n20 I
+#  consistency n21
+#  consistency n21 O
+#  consistency n21 I
+#  consistency n22
+#  consistency n22 O
+#  consistency n22 I
+#  consistency n22 I e21/*1+ I
+#  consistency n23
+#  consistency n23 O
+#  consistency n23 O e22 I
+#  consistency n23 I
+#  consistency n23 I e21/*0+ O
+#  consistency n23 I e21/*1+ O
+#  consistency n24
+#  consistency n24 O
+#  consistency n24 O e24/*1+ I
+#  consistency n24 O e24/*3+ I
+#  consistency n24 I
+#  consistency n24 I e22 O
+#  consistency n25
+#  consistency n25 O
+#  consistency n25 O e24/*1+ O
+#  consistency n25 O e24/*3+ O
+#  consistency n25 O e80/*0+ O
+#  consistency n25 O e80/*2+ O
+#  consistency n25 I
+#  consistency n25 I e27+ I
+#  consistency n26
+#  consistency n26 O
+#  consistency n26 I
+#  consistency n27
+#  consistency n27 O
+#  consistency n27 I
+#  consistency n28
+#  consistency n28 O
+#  consistency n28 I
+#  consistency n29
+#  consistency n29 O
+#  consistency n29 I
+#  consistency n30
+#  consistency n30 O
+#  consistency n30 O e28/*0+ I
+#  consistency n30 O e28/*2+ I
+#  consistency n30 O e29/*1+ I
+#  consistency n30 O e29/*3+ I
+#  consistency n30 I
+#  consistency n30 I e111+ O
+#  consistency n31
+#  consistency n31 O
+#  consistency n31 I
+#  consistency n32
+#  consistency n32 O
+#  consistency n32 I
+#  consistency n33
+#  consistency n33 O
+#  consistency n33 I
+#  consistency n34
+#  consistency n34 O
+#  consistency n34 O e33 I
+#  consistency n34 I
+#  consistency n34 I e29/*1+ O
+#  consistency n34 I e29/*3+ O
+#  consistency n35
+#  consistency n35 O
+#  consistency n35 I
+#  consistency n36
+#  consistency n36 O
+#  consistency n36 O e34+ I
+#  consistency n36 I
+#  consistency n36 I e33 O
+#  consistency n37
+#  consistency n37 O
+#  consistency n37 I
+#  consistency n38
+#  consistency n38 O
+#  consistency n38 I
+#  consistency n39
+#  consistency n39 O
+#  consistency n39 I
+#  consistency n40
+#  consistency n40 O
+#  consistency n40 I
+#  consistency n41
+#  consistency n41 O
+#  consistency n41 O e40 I
+#  consistency n41 I
+#  consistency n41 I e39 O
+#  consistency n42
+#  consistency n42 O
+#  consistency n42 I
+#  consistency n43
+#  consistency n43 O
+#  consistency n43 I
+#  consistency n44
+#  consistency n44 O
+#  consistency n44 O e80/*2+ I
+#  consistency n44 I
+#  consistency n45
+#  consistency n45 O
+#  consistency n45 I
+#  consistency n46
+#  consistency n46 O
+#  consistency n46 I
+#  consistency n46 I e28/*2+ O
+#  consistency n47
+#  consistency n47 O
+#  consistency n47 I
+#  consistency n48
+#  consistency n48 O
+#  consistency n48 I
+#  consistency n49
+#  consistency n49 O
+#  consistency n49 I
+#  consistency n50
+#  consistency n50 O
+#  consistency n50 I
+#  consistency n51
+#  consistency n51 O
+#  consistency n51 I
+#  consistency n52
+#  consistency n52 O
+#  consistency n52 I
+#  consistency n53
+#  consistency n53 O
+#  consistency n53 I
+#  consistency n54
+#  consistency n54 O
+#  consistency n54 I
+#  consistency n55
+#  consistency n55 O
+#  consistency n55 I
+#  consistency n56
+#  consistency n56 O
+#  consistency n56 I
+#  consistency n57
+#  consistency n57 O
+#  consistency n57 I
+#  consistency n58
+#  consistency n58 O
+#  consistency n58 I
+#  consistency n59
+#  consistency n59 O
+#  consistency n59 I
+#  consistency n60
+#  consistency n60 O
+#  consistency n60 O e80/*0+ I
+#  consistency n60 I
+#  consistency n60 I e28/*0+ O
+#  consistency n61
+#  consistency n61 O
+#  consistency n61 I
+#  consistency n62
+#  consistency n62 O
+#  consistency n62 I
+#  consistency n63
+#  consistency n63 O
+#  consistency n63 I
+#  consistency n64
+#  consistency n64 O
+#  consistency n64 O e111+ I
+#  consistency n64 I
+#  consistency n64 I e32/*0+ O
+#  consistency n64 I e32/*1+ O
+#  consistency n65
+#  consistency n65 O
+#  consistency n65 I
+#  consistency n66
+#  consistency n66 O
+#  consistency n66 I
+#  consistency n67
+#  consistency n67 O
+#  consistency n67 O e125/*0+ I
+#  consistency n67 O e125/*1+ I
+#  consistency n67 I
+#  consistency n67 I e27+ O
+#  consistency n68
+#  consistency n68 O
+#  consistency n68 I
+#  consistency n8x0
+#  consistency n8x0 O
+#  consistency n8x0 I
+#  consistency n8x1
+#  consistency n8x1 O
+#  consistency n8x1 I
+#  consistency n14x0
+#  consistency n14x0 O
+#  consistency n14x0 I
+#  consistency n14x1
+#  consistency n14x1 O
+#  consistency n14x1 I
+#  consistency n19x0
+#  consistency n19x0 O
+#  consistency n19x0 I
+#  consistency n19x1
+#  consistency n19x1 O
+#  consistency n19x1 I
+#  consistency n26x0
+#  consistency n26x0 O
+#  consistency n26x0 I
+#  consistency n26x2
+#  consistency n26x2 O
+#  consistency n26x2 I
+#  consistency n27x1
+#  consistency n27x1 O
+#  consistency n27x1 I
+#  consistency n27x3
+#  consistency n27x3 O
+#  consistency n27x3 I
+#  consistency n28x1
+#  consistency n28x1 O
+#  consistency n28x1 I
+#  consistency n28x3
+#  consistency n28x3 O
+#  consistency n28x3 I
+#  consistency n31x0
+#  consistency n31x0 O
+#  consistency n31x0 I
+#  consistency n31x2
+#  consistency n31x2 O
+#  consistency n31x2 I
+#  consistency n32x1
+#  consistency n32x1 O
+#  consistency n32x1 I
+#  consistency n32x3
+#  consistency n32x3 O
+#  consistency n32x3 I
+#  consistency n33x1
+#  consistency n33x1 O
+#  consistency n33x1 I
+#  consistency n33x3
+#  consistency n33x3 O
+#  consistency n33x3 I
+#  consistency n35x0
+#  consistency n35x0 O
+#  consistency n35x0 I
+#  consistency n35x1
+#  consistency n35x1 O
+#  consistency n35x1 I
+#  consistency n39x0
+#  consistency n39x0 O
+#  consistency n39x0 I
+#  consistency n39x1
+#  consistency n39x1 O
+#  consistency n39x1 I
+#  consistency n40x0
+#  consistency n40x0 O
+#  consistency n40x0 I
+#  consistency n40x1
+#  consistency n40x1 O
+#  consistency n40x1 I
+#  consistency n49x0
+#  consistency n49x0 O
+#  consistency n49x0 I
+#  consistency n49x2
+#  consistency n49x2 O
+#  consistency n49x2 I
+#  consistency n53x0
+#  consistency n53x0 O
+#  consistency n53x0 I
+#  consistency n53x2
+#  consistency n53x2 O
+#  consistency n53x2 I
+#  consistency n54x0
+#  consistency n54x0 O
+#  consistency n54x0 I
+#  consistency n54x2
+#  consistency n54x2 O
+#  consistency n54x2 I
+#  consistency n55x0
+#  consistency n55x0 O
+#  consistency n55x0 I
+#  consistency n55x2
+#  consistency n55x2 O
+#  consistency n55x2 I
+#  consistency n62x0
+#  consistency n62x0 O
+#  consistency n62x0 I
+#  consistency n62x2
+#  consistency n62x2 O
+#  consistency n62x2 I
+#  consistency n63x0
+#  consistency n63x0 O
+#  consistency n63x0 I
+#  consistency n63x2
+#  consistency n63x2 O
+#  consistency n63x2 I
+#  consistency n68x0
+#  consistency n68x0 O
+#  consistency n68x0 I
+#  consistency n68x1
+#  consistency n68x1 O
+#  consistency n68x1 I
+# consistency e1/*1+ count=2
+# consistency e21/*0+ count=2
+# consistency e3/*0+ count=2
+# consistency e34+ count=2
+# consistency e5 count=2
+# consistency e32/*1+ count=2
+# consistency e40 count=2
+# consistency e32/*0+ count=2
+# consistency e11 count=2
+# consistency e125/*1+ count=2
+# consistency e39 count=2
+# consistency e125/*0+ count=2
+# consistency e21/*1+ count=2
+# consistency e22 count=2
+# consistency e24/*1+ count=2
+# consistency e24/*3+ count=2
+# consistency e80/*0+ count=2
+# consistency e80/*2+ count=2
+# consistency e27+ count=2
+# consistency e28/*0+ count=2
+# consistency e28/*2+ count=2
+# consistency e29/*1+ count=2
+# consistency e29/*3+ count=2
+# consistency e111+ count=2
+# consistency e33 count=2
+# consistency check (command-line request) ok
+# trivnullnodes [nodeorphan:n0][nodeorphan:n1][nodeorphan:n3][nodeorphan:n4][nodeorphan:n8][nodeorphan:n10][nodeorphan:n11][nodeorphan:n14][nodeorphan:n16][nodeorphan:n17][nodeorphan:n18][nodeorphan:n19][nodeorphan:n20][nodeorphan:n21][nodeorphan:n26][nodeorphan:n27][nodeorphan:n28][nodeorphan:n29][nodeorphan:n31][nodeorphan:n32][nodeorphan:n33][nodeorphan:n35][nodeorphan:n37][nodeorphan:n38][nodeorphan:n39][nodeorphan:n40][nodeorphan:n42][nodeorphan:n43][nodeorphan:n45][nodeorphan:n47][nodeorphan:n48][nodeorphan:n49][nodeorphan:n50][nodeorphan:n51][nodeorphan:n52][nodeorphan:n53][nodeorphan:n54][nodeorphan:n55][nodeorphan:n56][nodeorphan:n57][nodeorphan:n58][nodeorphan:n59][nodeorphan:n61][nodeorphan:n62][nodeorphan:n63][nodeorphan:n65][nodeorphan:n66][nodeorphan:n68][nodeorphan:n8x0][nodeorphan:n8x1][nodeorphan:n14x0][nodeorphan:n14x1][nodeorphan:n19x0][nodeorphan:n19x1][nodeorphan:n26x0][nodeorphan:n26x2][nodeorphan:n27x1][nodeorphan:n27x3][nodeorphan:n28x1][nodeorphan:n28x3][nodeorphan:n31x0][nodeorphan:n31x2][nodeorphan:n32x1][nodeorphan:n32x3][nodeorphan:n33x1][nodeorphan:n33x3][nodeorphan:n35x0][nodeorphan:n35x1][nodeorphan:n39x0][nodeorphan:n39x1][nodeorphan:n40x0][nodeorphan:n40x1][nodeorphan:n49x0][nodeorphan:n49x2][nodeorphan:n53x0][nodeorphan:n53x2][nodeorphan:n54x0][nodeorphan:n54x2][nodeorphan:n55x0][nodeorphan:n55x2][nodeorphan:n62x0][nodeorphan:n62x2][nodeorphan:n63x0][nodeorphan:n63x2][nodeorphan:n68x0][nodeorphan:n68x1] trivnullnodes done.
+# consistency check (command-line request) ...
+#  consistency n2
+#  consistency n2 O
+#  consistency n2 O e1/*1+ I
+#  consistency n2 I
+#  consistency n2 I e21/*0+ I
+#  consistency n5
+#  consistency n5 O
+#  consistency n5 O e3/*0+ O
+#  consistency n5 I
+#  consistency n5 I e34+ O
+#  consistency n6
+#  consistency n6 O
+#  consistency n6 O e5 I
+#  consistency n6 I
+#  consistency n6 I e1/*1+ O
+#  consistency n7
+#  consistency n7 O
+#  consistency n7 O e32/*1+ I
+#  consistency n7 I
+#  consistency n7 I e5 O
+#  consistency n9
+#  consistency n9 O
+#  consistency n9 O e40 O
+#  consistency n9 I
+#  consistency n9 I e32/*0+ I
+#  consistency n12
+#  consistency n12 O
+#  consistency n12 O e11 O
+#  consistency n12 I
+#  consistency n12 I e3/*0+ I
+#  consistency n13
+#  consistency n13 O
+#  consistency n13 O e125/*1+ O
+#  consistency n13 I
+#  consistency n13 I e11 I
+#  consistency n15
+#  consistency n15 O
+#  consistency n15 O e39 I
+#  consistency n15 I
+#  consistency n15 I e125/*0+ O
+#  consistency n22
+#  consistency n22 O
+#  consistency n22 I
+#  consistency n22 I e21/*1+ I
+#  consistency n23
+#  consistency n23 O
+#  consistency n23 O e22 I
+#  consistency n23 I
+#  consistency n23 I e21/*0+ O
+#  consistency n23 I e21/*1+ O
+#  consistency n24
+#  consistency n24 O
+#  consistency n24 O e24/*1+ I
+#  consistency n24 O e24/*3+ I
+#  consistency n24 I
+#  consistency n24 I e22 O
+#  consistency n25
+#  consistency n25 O
+#  consistency n25 O e24/*1+ O
+#  consistency n25 O e24/*3+ O
+#  consistency n25 O e80/*0+ O
+#  consistency n25 O e80/*2+ O
+#  consistency n25 I
+#  consistency n25 I e27+ I
+#  consistency n30
+#  consistency n30 O
+#  consistency n30 O e28/*0+ I
+#  consistency n30 O e28/*2+ I
+#  consistency n30 O e29/*1+ I
+#  consistency n30 O e29/*3+ I
+#  consistency n30 I
+#  consistency n30 I e111+ O
+#  consistency n34
+#  consistency n34 O
+#  consistency n34 O e33 I
+#  consistency n34 I
+#  consistency n34 I e29/*1+ O
+#  consistency n34 I e29/*3+ O
+#  consistency n36
+#  consistency n36 O
+#  consistency n36 O e34+ I
+#  consistency n36 I
+#  consistency n36 I e33 O
+#  consistency n41
+#  consistency n41 O
+#  consistency n41 O e40 I
+#  consistency n41 I
+#  consistency n41 I e39 O
+#  consistency n44
+#  consistency n44 O
+#  consistency n44 O e80/*2+ I
+#  consistency n44 I
+#  consistency n46
+#  consistency n46 O
+#  consistency n46 I
+#  consistency n46 I e28/*2+ O
+#  consistency n60
+#  consistency n60 O
+#  consistency n60 O e80/*0+ I
+#  consistency n60 I
+#  consistency n60 I e28/*0+ O
+#  consistency n64
+#  consistency n64 O
+#  consistency n64 O e111+ I
+#  consistency n64 I
+#  consistency n64 I e32/*0+ O
+#  consistency n64 I e32/*1+ O
+#  consistency n67
+#  consistency n67 O
+#  consistency n67 O e125/*0+ I
+#  consistency n67 O e125/*1+ I
+#  consistency n67 I
+#  consistency n67 I e27+ O
+# consistency e1/*1+ count=2
+# consistency e21/*0+ count=2
+# consistency e3/*0+ count=2
+# consistency e34+ count=2
+# consistency e5 count=2
+# consistency e32/*1+ count=2
+# consistency e40 count=2
+# consistency e32/*0+ count=2
+# consistency e11 count=2
+# consistency e125/*1+ count=2
+# consistency e39 count=2
+# consistency e125/*0+ count=2
+# consistency e21/*1+ count=2
+# consistency e22 count=2
+# consistency e24/*1+ count=2
+# consistency e24/*3+ count=2
+# consistency e80/*0+ count=2
+# consistency e80/*2+ count=2
+# consistency e27+ count=2
+# consistency e28/*0+ count=2
+# consistency e28/*2+ count=2
+# consistency e29/*1+ count=2
+# consistency e29/*3+ count=2
+# consistency e111+ count=2
+# consistency e33 count=2
+# consistency check (command-line request) ok
+layer segjoin0
+abs segjoin_2 920.043778 655.090384 77.500000
+segend segjoin_2 X2/R0
+segend segjoin_2 A2
+
+layer segjoin0
+abs segjoin_5 939.956222 655.090384 102.500000
+segend segjoin_5 X2/R1
+segend segjoin_5 A1
+
+layer segjoin0
+abs segjoin_6 1016.308205 890.694278 47.215088
+segend segjoin_6 X3
+segend segjoin_6 X2/R0
+
+layer segjoin0
+abs segjoin_7 1171.284067 982.374292 14.000000
+segend segjoin_7 X7
+segend segjoin_7 X3
+
+layer segjoin0
+abs segjoin_9 1169.734067 995.584292 180.000000
+segend segjoin_9 X5
+segend segjoin_9 X7
+
+layer segjoin0
+abs segjoin_12 849.709842 884.002672 131.147890
+segend segjoin_12 X4
+segend segjoin_12 X2/R1
+
+layer segjoin0
+abs segjoin_13 688.715933 982.374292 166.000000
+segend segjoin_13 X8
+segend segjoin_13 X4
+
+layer segjoin0
+abs segjoin_15 690.265933 995.584292 0.000000
+segend segjoin_15 X6
+segend segjoin_15 X8
+
+layer segterminus0
+abs segjoin_22 901.129251 649.083370 98.181086
+segend segjoin_22 A2
+
+layer segjoin0
+abs segjoin_23 821.494641 424.275622 227.033197
+segend segjoin_23 A4
+segend segjoin_23 A2
+
+layer segjoin0
+abs segjoin_24 667.199190 333.328438 194.000000
+segend segjoin_24 A6
+segend segjoin_24 A4
+
+layer segjoin0
+abs segjoin_25 542.249190 320.118438 0.000000
+segend segjoin_25 A6
+segend segjoin_25 X10
+
+layer segjoin0
+abs segjoin_30 1309.039762 320.118438 180.000000
+segend segjoin_30 A5
+segend segjoin_30 X9
+
+layer segjoin0
+abs segjoin_34 1184.089762 333.328438 166.000000
+segend segjoin_34 A3
+segend segjoin_34 A5
+
+layer segjoin0
+abs segjoin_36 1030.894299 423.100692 133.259555
+segend segjoin_36 A1
+segend segjoin_36 A3
+
+layer segjoin0
+abs segjoin_41 942.265932 995.584292 0.000000
+segend segjoin_41 X5
+segend segjoin_41 X6
+
+layer segterminus0
+abs segjoin_44 1007.521180 299.915530 169.222414
+segend segjoin_44 A6
+
+layer segterminus0
+abs segjoin_46 905.406021 301.301463 189.222414
+segend segjoin_46 A5
+
+layer segjoin0
+abs segjoin_60 961.253113 333.848039 180.953229
+segend segjoin_60 A6
+segend segjoin_60 A5
+
+layer segjoin0
+abs segjoin_64 1624.039762 658.084292 270.000000
+segend segjoin_64 X9
+segend segjoin_64 X7
+
+layer segjoin0
+abs segjoin_67 267.148764 790.202303 64.674119
+segend segjoin_67 X8
+segend segjoin_67 X10
+
+# max-order 4
+# colour 100
+#  order 4
+# (skip X7 3)
+# (skip X5 2)
+# (skip X6 2)
+# (skip A1 2)
+#   coloured A6
+#  already A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A4
+#  already A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A4
+#  already A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not X10
+#  already A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not X10
+#  already A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not X10
+#  already A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not X10
+#  already A6
+#   therefore-not A6
+#  already A6
+#   therefore-not A6
+#   therefore-not A5
+#  order 4
+# (skip X7 3)
+# (skip X5 2)
+# (skip X6 2)
+# (skip A1 2)
+#   still-clashes A5
+# (skip A2 3)
+# (skip A4 2000002)
+# (skip X4 2)
+# (skip X10 2000002)
+# (skip X8 3)
+# (skip A3 2)
+#   coloured X2
+#  already X2
+#   therefore-not X2
+#   therefore-not A2
+#  already X2
+#   therefore-not X2
+#   therefore-not A1
+#  already X2
+#   therefore-not X3
+#   therefore-not X2
+#  already X2
+#   therefore-not X4
+#   therefore-not X2
+#  already A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A4
+#  already A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A4
+#  already A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not X10
+#  already A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not X10
+#  already A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not X10
+#  already A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not X10
+#  already A6
+#   therefore-not A6
+#  already A6
+#   therefore-not A6
+#   therefore-not A5
+#  order 4
+# (skip X7 3)
+# (skip X5 2)
+# (skip X6 2)
+# (skip A1 2000002)
+#   still-clashes A5
+# (skip A2 2000003)
+# (skip A4 2000002)
+# (skip X4 2000002)
+# (skip X10 2000002)
+# (skip X8 3)
+# (skip A3 2)
+# (skip X3 2000002)
+# (skip X9 2)
+#  order 3
+#   coloured X7
+#  already X2
+#   therefore-not X2
+#   therefore-not A2
+#  already X2
+#   therefore-not X2
+#   therefore-not A1
+#  already X2
+#   therefore-not X3
+#   therefore-not X2
+#  already X7
+#   therefore-not X7
+#   therefore-not X3
+#  already X7
+#   therefore-not X5
+#   therefore-not X7
+#  already X2
+#   therefore-not X4
+#   therefore-not X2
+#  already A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A4
+#  already A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A4
+#  already A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not X10
+#  already A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not X10
+#  already A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not X10
+#  already A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not X10
+#  already A6
+#   therefore-not A6
+#  already A6
+#   therefore-not A6
+#   therefore-not A5
+#  already X7
+#   therefore-not X9
+#   therefore-not X7
+#   therefore-not X7
+#  already X7
+#   therefore-not X9
+#   therefore-not X7
+#   therefore-not X7
+#  order 4
+# (skip X7 2000103)
+# (skip X5 2000002)
+# (skip X6 2)
+# (skip A1 2000002)
+#   still-clashes A5
+# (skip A2 2000003)
+# (skip A4 2000002)
+# (skip X4 2000002)
+# (skip X10 2000002)
+# (skip X8 3)
+# (skip A3 2)
+# (skip X3 2000002)
+# (skip X9 2000002)
+#  order 3
+# (skip X5 2000002)
+# (skip X6 2)
+# (skip A1 2000002)
+# (skip A6 2000104)
+# (skip A5 2000004)
+#   still-clashes A2
+# (skip A4 2000002)
+# (skip X4 2000002)
+# (skip X10 2000002)
+#   coloured X8
+#  already X2
+#   therefore-not X2
+#   therefore-not A2
+#  already X2
+#   therefore-not X2
+#   therefore-not A1
+#  already X2
+#   therefore-not X3
+#   therefore-not X2
+#  already X7
+#   therefore-not X7
+#   therefore-not X3
+#  already X7
+#   therefore-not X5
+#   therefore-not X7
+#  already X2
+#   therefore-not X4
+#   therefore-not X2
+#  already X8
+#   therefore-not X8
+#   therefore-not X4
+#  already X8
+#   therefore-not X6
+#   therefore-not X8
+#  already A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A4
+#  already A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A4
+#  already A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not X10
+#  already A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not X10
+#  already A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not X10
+#  already A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not X10
+#  already A6
+#   therefore-not A6
+#  already A6
+#   therefore-not A6
+#   therefore-not A5
+#  already X7
+#   therefore-not X9
+#   therefore-not X7
+#   therefore-not X7
+#  already X7
+#   therefore-not X9
+#   therefore-not X7
+#   therefore-not X7
+#  already X8
+#   therefore-not X8
+#   therefore-not X8
+#   therefore-not X10
+#  already X8
+#   therefore-not X8
+#   therefore-not X8
+#   therefore-not X10
+#  order 4
+# (skip X7 2000103)
+# (skip X5 2000002)
+# (skip X6 2000002)
+# (skip A1 2000002)
+#   still-clashes A5
+# (skip A2 2000003)
+# (skip A4 2000002)
+# (skip X4 2000002)
+# (skip X10 2000002)
+# (skip X8 2000103)
+# (skip A3 2)
+# (skip X3 2000002)
+# (skip X9 2000002)
+#  order 3
+# (skip X5 2000002)
+# (skip X6 2000002)
+# (skip A1 2000002)
+# (skip A6 2000104)
+# (skip A5 2000004)
+#   still-clashes A2
+# (skip A4 2000002)
+# (skip X4 2000002)
+# (skip X10 2000002)
+# (skip A3 2)
+# (skip X2 2000104)
+# (skip X3 2000002)
+# (skip X9 2000002)
+#  order 2
+# (skip X7 2000103)
+#   still-clashes X5
+#   still-clashes X6
+#   still-clashes A1
+# (skip A6 2000104)
+# (skip A5 2000004)
+# (skip A2 2000003)
+#   still-clashes A4
+#   still-clashes X4
+#   still-clashes X10
+# (skip X8 2000103)
+#   coloured A3
+#  already X2
+#   therefore-not X2
+#   therefore-not A2
+#  already X2
+#   therefore-not X2
+#   therefore-not A1
+#  already X2
+#   therefore-not X3
+#   therefore-not X2
+#  already X7
+#   therefore-not X7
+#   therefore-not X3
+#  already X7
+#   therefore-not X5
+#   therefore-not X7
+#  already X2
+#   therefore-not X4
+#   therefore-not X2
+#  already X8
+#   therefore-not X8
+#   therefore-not X4
+#  already X8
+#   therefore-not X6
+#   therefore-not X8
+#  already A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A4
+#  already A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A4
+#  already A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not X10
+#  already A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not X10
+#  already A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not X10
+#  already A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not X10
+#  already A3
+#   therefore-not A3
+#   therefore-not A5
+#   therefore-not A5
+#  already A3
+#   therefore-not A1
+#   therefore-not A3
+#  already A6
+#   therefore-not A6
+#  already A6
+#   therefore-not A6
+#   therefore-not A5
+#  already X7
+#   therefore-not X9
+#   therefore-not X7
+#   therefore-not X7
+#  already X7
+#   therefore-not X9
+#   therefore-not X7
+#   therefore-not X7
+#  already X8
+#   therefore-not X8
+#   therefore-not X8
+#   therefore-not X10
+#  already X8
+#   therefore-not X8
+#   therefore-not X8
+#   therefore-not X10
+#  order 4
+# (skip X7 2000103)
+# (skip X5 2000002)
+# (skip X6 2000002)
+# (skip A1 2000002)
+#   still-clashes A5
+# (skip A2 2000003)
+# (skip A4 2000002)
+# (skip X4 2000002)
+# (skip X10 2000002)
+# (skip X8 2000103)
+# (skip A3 2000102)
+# (skip X3 2000002)
+# (skip X9 2000002)
+#  order 3
+# (skip X5 2000002)
+# (skip X6 2000002)
+# (skip A1 2000002)
+# (skip A6 2000104)
+# (skip A5 2000004)
+#   still-clashes A2
+# (skip A4 2000002)
+# (skip X4 2000002)
+# (skip X10 2000002)
+# (skip A3 2000102)
+# (skip X2 2000104)
+# (skip X3 2000002)
+# (skip X9 2000002)
+#  order 2
+# (skip X7 2000103)
+#   still-clashes X5
+#   still-clashes X6
+#   still-clashes A1
+# (skip A6 2000104)
+# (skip A5 2000004)
+# (skip A2 2000003)
+#   still-clashes A4
+#   still-clashes X4
+#   still-clashes X10
+# (skip X8 2000103)
+# (skip X2 2000104)
+#   still-clashes X3
+#   still-clashes X9
+#  order 1
+# (skip X7 2000103)
+# (skip X5 2000002)
+# (skip X6 2000002)
+# (skip A1 2000002)
+# (skip A6 2000104)
+# (skip A5 2000004)
+# (skip A2 2000003)
+# (skip A4 2000002)
+# (skip X4 2000002)
+# (skip X10 2000002)
+# (skip X8 2000103)
+# (skip A3 2000102)
+# (skip X2 2000104)
+# (skip X3 2000002)
+# (skip X9 2000002)
+# colour 200
+#  order 4
+# (skip X7 103)
+# (skip X5 2)
+# (skip X6 2)
+# (skip A1 2)
+#   coloured A5
+#  already A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not X9
+#  already A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not X9
+#  already A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not X9
+#  already A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not X9
+#  already A5
+#   therefore-not A3
+#   therefore-not A5
+#   therefore-not A5
+#  already A5
+#   therefore-not A3
+#   therefore-not A5
+#   therefore-not A5
+#  already A5
+#   therefore-not A5
+#  already A5
+#   therefore-not A6
+#   therefore-not A5
+#  order 4
+# (skip X7 103)
+# (skip X5 2)
+# (skip X6 2)
+# (skip A1 2)
+# (skip A2 3)
+# (skip A4 2)
+# (skip X4 2)
+# (skip X10 2)
+# (skip X8 103)
+# (skip A3 2000102)
+# (skip X3 2)
+# (skip X9 2000002)
+#  order 3
+# (skip X5 2)
+# (skip X6 2)
+# (skip A1 2)
+# (skip A6 2000104)
+# (skip A5 2000204)
+#   coloured A2
+#  already A2
+#   therefore-not X2
+#   therefore-not A2
+#  already A2
+#   therefore-not A2
+#  already A2
+#   therefore-not A4
+#   therefore-not A2
+#   therefore-not A2
+#  already A2
+#   therefore-not A4
+#   therefore-not A2
+#   therefore-not A2
+#  already A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not X9
+#  already A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not X9
+#  already A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not X9
+#  already A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not X9
+#  already A5
+#   therefore-not A3
+#   therefore-not A5
+#   therefore-not A5
+#  already A5
+#   therefore-not A3
+#   therefore-not A5
+#   therefore-not A5
+#  already A5
+#   therefore-not A5
+#  already A5
+#   therefore-not A6
+#   therefore-not A5
+#  order 4
+# (skip X7 103)
+# (skip X5 2)
+# (skip X6 2)
+# (skip A1 2)
+# (skip A2 2000203)
+# (skip A4 2000002)
+# (skip X4 2)
+# (skip X10 2)
+# (skip X8 103)
+# (skip A3 2000102)
+# (skip X3 2)
+# (skip X9 2000002)
+#  order 3
+# (skip X5 2)
+# (skip X6 2)
+# (skip A1 2)
+# (skip A6 2000104)
+# (skip A5 2000204)
+# (skip A4 2000002)
+# (skip X4 2)
+# (skip X10 2)
+# (skip A3 2000102)
+# (skip X2 2000104)
+# (skip X3 2)
+# (skip X9 2000002)
+#  order 2
+# (skip X7 103)
+#   coloured X5
+#  already A2
+#   therefore-not X2
+#   therefore-not A2
+#  already X5
+#   therefore-not X5
+#   therefore-not X7
+#  already A2
+#   therefore-not A2
+#  already A2
+#   therefore-not A4
+#   therefore-not A2
+#   therefore-not A2
+#  already A2
+#   therefore-not A4
+#   therefore-not A2
+#   therefore-not A2
+#  already A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not X9
+#  already A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not X9
+#  already A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not X9
+#  already A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not X9
+#  already A5
+#   therefore-not A3
+#   therefore-not A5
+#   therefore-not A5
+#  already A5
+#   therefore-not A3
+#   therefore-not A5
+#   therefore-not A5
+#  already X5
+#   therefore-not X5
+#   therefore-not X6
+#  already A5
+#   therefore-not A5
+#  already A5
+#   therefore-not A6
+#   therefore-not A5
+#  order 4
+# (skip X7 2000103)
+# (skip X5 2000202)
+# (skip X6 2000002)
+# (skip A1 2)
+# (skip A2 2000203)
+# (skip A4 2000002)
+# (skip X4 2)
+# (skip X10 2)
+# (skip X8 103)
+# (skip A3 2000102)
+# (skip X3 2)
+# (skip X9 2000002)
+#  order 3
+# (skip X5 2000202)
+# (skip X6 2000002)
+# (skip A1 2)
+# (skip A6 2000104)
+# (skip A5 2000204)
+# (skip A4 2000002)
+# (skip X4 2)
+# (skip X10 2)
+# (skip A3 2000102)
+# (skip X2 2000104)
+# (skip X3 2)
+# (skip X9 2000002)
+#  order 2
+# (skip X7 2000103)
+#   still-clashes X6
+#   coloured A1
+#  already A2
+#   therefore-not X2
+#   therefore-not A2
+#  already A1
+#   therefore-not X2
+#   therefore-not A1
+#  already X5
+#   therefore-not X5
+#   therefore-not X7
+#  already A2
+#   therefore-not A2
+#  already A2
+#   therefore-not A4
+#   therefore-not A2
+#   therefore-not A2
+#  already A2
+#   therefore-not A4
+#   therefore-not A2
+#   therefore-not A2
+#  already A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not X9
+#  already A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not X9
+#  already A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not X9
+#  already A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not X9
+#  already A5
+#   therefore-not A3
+#   therefore-not A5
+#   therefore-not A5
+#  already A5
+#   therefore-not A3
+#   therefore-not A5
+#   therefore-not A5
+#  already A1
+#   therefore-not A1
+#   therefore-not A3
+#  already X5
+#   therefore-not X5
+#   therefore-not X6
+#  already A5
+#   therefore-not A5
+#  already A5
+#   therefore-not A6
+#   therefore-not A5
+#  order 4
+# (skip X7 2000103)
+# (skip X5 2000202)
+# (skip X6 2000002)
+# (skip A1 2000202)
+# (skip A2 2000203)
+# (skip A4 2000002)
+# (skip X4 2)
+# (skip X10 2)
+# (skip X8 103)
+# (skip A3 2000102)
+# (skip X3 2)
+# (skip X9 2000002)
+#  order 3
+# (skip X5 2000202)
+# (skip X6 2000002)
+# (skip A1 2000202)
+# (skip A6 2000104)
+# (skip A5 2000204)
+# (skip A4 2000002)
+# (skip X4 2)
+# (skip X10 2)
+# (skip A3 2000102)
+# (skip X2 2000104)
+# (skip X3 2)
+# (skip X9 2000002)
+#  order 2
+# (skip X7 2000103)
+#   still-clashes X6
+# (skip A6 2000104)
+# (skip A5 2000204)
+# (skip A2 2000203)
+#   still-clashes A4
+#   coloured X4
+#  already A2
+#   therefore-not X2
+#   therefore-not A2
+#  already A1
+#   therefore-not X2
+#   therefore-not A1
+#  already X5
+#   therefore-not X5
+#   therefore-not X7
+#  already X4
+#   therefore-not X4
+#   therefore-not X2
+#  already X4
+#   therefore-not X8
+#   therefore-not X4
+#  already A2
+#   therefore-not A2
+#  already A2
+#   therefore-not A4
+#   therefore-not A2
+#   therefore-not A2
+#  already A2
+#   therefore-not A4
+#   therefore-not A2
+#   therefore-not A2
+#  already A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not X9
+#  already A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not X9
+#  already A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not X9
+#  already A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not X9
+#  already A5
+#   therefore-not A3
+#   therefore-not A5
+#   therefore-not A5
+#  already A5
+#   therefore-not A3
+#   therefore-not A5
+#   therefore-not A5
+#  already A1
+#   therefore-not A1
+#   therefore-not A3
+#  already X5
+#   therefore-not X5
+#   therefore-not X6
+#  already A5
+#   therefore-not A5
+#  already A5
+#   therefore-not A6
+#   therefore-not A5
+#  order 4
+# (skip X7 2000103)
+# (skip X5 2000202)
+# (skip X6 2000002)
+# (skip A1 2000202)
+# (skip A2 2000203)
+# (skip A4 2000002)
+# (skip X4 2000202)
+# (skip X10 2)
+# (skip X8 2000103)
+# (skip A3 2000102)
+# (skip X3 2)
+# (skip X9 2000002)
+#  order 3
+# (skip X5 2000202)
+# (skip X6 2000002)
+# (skip A1 2000202)
+# (skip A6 2000104)
+# (skip A5 2000204)
+# (skip A4 2000002)
+# (skip X4 2000202)
+# (skip X10 2)
+# (skip A3 2000102)
+# (skip X2 2000104)
+# (skip X3 2)
+# (skip X9 2000002)
+#  order 2
+# (skip X7 2000103)
+#   still-clashes X6
+# (skip A6 2000104)
+# (skip A5 2000204)
+# (skip A2 2000203)
+#   still-clashes A4
+#   coloured X10
+#  already A2
+#   therefore-not X2
+#   therefore-not A2
+#  already A1
+#   therefore-not X2
+#   therefore-not A1
+#  already X5
+#   therefore-not X5
+#   therefore-not X7
+#  already X4
+#   therefore-not X4
+#   therefore-not X2
+#  already X4
+#   therefore-not X8
+#   therefore-not X4
+#  already A2
+#   therefore-not A2
+#  already A2
+#   therefore-not A4
+#   therefore-not A2
+#   therefore-not A2
+#  already A2
+#   therefore-not A4
+#   therefore-not A2
+#   therefore-not A2
+#  already X10
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not X10
+#  already A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not X9
+#  already A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not X9
+#  already A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not X9
+#  already A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not X9
+#  already A5
+#   therefore-not A3
+#   therefore-not A5
+#   therefore-not A5
+#  already A5
+#   therefore-not A3
+#   therefore-not A5
+#   therefore-not A5
+#  already A1
+#   therefore-not A1
+#   therefore-not A3
+#  already X5
+#   therefore-not X5
+#   therefore-not X6
+#  already A5
+#   therefore-not A5
+#  already A5
+#   therefore-not A6
+#   therefore-not A5
+#  already X10
+#   therefore-not X8
+#   therefore-not X8
+#   therefore-not X10
+#  order 4
+# (skip X7 2000103)
+# (skip X5 2000202)
+# (skip X6 2000002)
+# (skip A1 2000202)
+# (skip A2 2000203)
+# (skip A4 2000002)
+# (skip X4 2000202)
+# (skip X10 2000202)
+# (skip X8 2000103)
+# (skip A3 2000102)
+# (skip X3 2)
+# (skip X9 2000002)
+#  order 3
+# (skip X5 2000202)
+# (skip X6 2000002)
+# (skip A1 2000202)
+# (skip A6 2000104)
+# (skip A5 2000204)
+# (skip A4 2000002)
+# (skip X4 2000202)
+# (skip X10 2000202)
+# (skip A3 2000102)
+# (skip X2 2000104)
+# (skip X3 2)
+# (skip X9 2000002)
+#  order 2
+# (skip X7 2000103)
+#   still-clashes X6
+# (skip A6 2000104)
+# (skip A5 2000204)
+# (skip A2 2000203)
+#   still-clashes A4
+# (skip X8 2000103)
+# (skip X2 2000104)
+#   coloured X3
+#  already A2
+#   therefore-not X2
+#   therefore-not A2
+#  already A1
+#   therefore-not X2
+#   therefore-not A1
+#  already X3
+#   therefore-not X3
+#   therefore-not X2
+#  already X3
+#   therefore-not X7
+#   therefore-not X3
+#  already X5
+#   therefore-not X5
+#   therefore-not X7
+#  already X4
+#   therefore-not X4
+#   therefore-not X2
+#  already X4
+#   therefore-not X8
+#   therefore-not X4
+#  already A2
+#   therefore-not A2
+#  already A2
+#   therefore-not A4
+#   therefore-not A2
+#   therefore-not A2
+#  already A2
+#   therefore-not A4
+#   therefore-not A2
+#   therefore-not A2
+#  already X10
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not X10
+#  already A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not X9
+#  already A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not X9
+#  already A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not X9
+#  already A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not X9
+#  already A5
+#   therefore-not A3
+#   therefore-not A5
+#   therefore-not A5
+#  already A5
+#   therefore-not A3
+#   therefore-not A5
+#   therefore-not A5
+#  already A1
+#   therefore-not A1
+#   therefore-not A3
+#  already X5
+#   therefore-not X5
+#   therefore-not X6
+#  already A5
+#   therefore-not A5
+#  already A5
+#   therefore-not A6
+#   therefore-not A5
+#  already X10
+#   therefore-not X8
+#   therefore-not X8
+#   therefore-not X10
+#  order 4
+# (skip X7 2000103)
+# (skip X5 2000202)
+# (skip X6 2000002)
+# (skip A1 2000202)
+# (skip A2 2000203)
+# (skip A4 2000002)
+# (skip X4 2000202)
+# (skip X10 2000202)
+# (skip X8 2000103)
+# (skip A3 2000102)
+# (skip X3 2000202)
+# (skip X9 2000002)
+#  order 3
+# (skip X5 2000202)
+# (skip X6 2000002)
+# (skip A1 2000202)
+# (skip A6 2000104)
+# (skip A5 2000204)
+# (skip A4 2000002)
+# (skip X4 2000202)
+# (skip X10 2000202)
+# (skip A3 2000102)
+# (skip X2 2000104)
+# (skip X3 2000202)
+# (skip X9 2000002)
+#  order 2
+# (skip X7 2000103)
+#   still-clashes X6
+# (skip A6 2000104)
+# (skip A5 2000204)
+# (skip A2 2000203)
+#   still-clashes A4
+# (skip X8 2000103)
+# (skip X2 2000104)
+#   still-clashes X9
+#  order 1
+# (skip X7 2000103)
+# (skip X5 2000202)
+# (skip X6 2000002)
+# (skip A1 2000202)
+# (skip A6 2000104)
+# (skip A5 2000204)
+# (skip A2 2000203)
+# (skip A4 2000002)
+# (skip X4 2000202)
+# (skip X10 2000202)
+# (skip X8 2000103)
+# (skip A3 2000102)
+# (skip X2 2000104)
+# (skip X3 2000202)
+# (skip X9 2000002)
+# colour 300
+#  order 4
+# (skip X7 103)
+# (skip X5 202)
+# (skip X6 2)
+# (skip A1 202)
+# (skip A2 203)
+# (skip A4 2)
+# (skip X4 202)
+# (skip X10 202)
+# (skip X8 103)
+# (skip A3 102)
+# (skip X3 202)
+# (skip X9 2)
+#  order 3
+# (skip X5 202)
+# (skip X6 2)
+# (skip A1 202)
+# (skip A6 104)
+# (skip A5 204)
+# (skip A4 2)
+# (skip X4 202)
+# (skip X10 202)
+# (skip A3 102)
+# (skip X2 104)
+# (skip X3 202)
+# (skip X9 2)
+#  order 2
+# (skip X7 103)
+#   coloured X6
+#  already X6
+#   therefore-not X6
+#   therefore-not X8
+#  already X6
+#   therefore-not X5
+#   therefore-not X6
+#  order 4
+# (skip X7 103)
+# (skip X5 2000202)
+# (skip X6 2000302)
+# (skip A1 202)
+# (skip A2 203)
+# (skip A4 2)
+# (skip X4 202)
+# (skip X10 202)
+# (skip X8 2000103)
+# (skip A3 102)
+# (skip X3 202)
+# (skip X9 2)
+#  order 3
+# (skip X5 2000202)
+# (skip X6 2000302)
+# (skip A1 202)
+# (skip A6 104)
+# (skip A5 204)
+# (skip A4 2)
+# (skip X4 202)
+# (skip X10 202)
+# (skip A3 102)
+# (skip X2 104)
+# (skip X3 202)
+# (skip X9 2)
+#  order 2
+# (skip X7 103)
+# (skip A6 104)
+# (skip A5 204)
+# (skip A2 203)
+#   coloured A4
+#  already X6
+#   therefore-not X6
+#   therefore-not X8
+#  already A4
+#   therefore-not A4
+#   therefore-not A2
+#   therefore-not A2
+#  already A4
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A4
+#  already X6
+#   therefore-not X5
+#   therefore-not X6
+#  order 4
+# (skip X7 103)
+# (skip X5 2000202)
+# (skip X6 2000302)
+# (skip A1 202)
+# (skip A2 2000203)
+# (skip A4 2000302)
+# (skip X4 202)
+# (skip X10 202)
+# (skip X8 2000103)
+# (skip A3 102)
+# (skip X3 202)
+# (skip X9 2)
+#  order 3
+# (skip X5 2000202)
+# (skip X6 2000302)
+# (skip A1 202)
+# (skip A6 2000104)
+# (skip A5 204)
+# (skip A4 2000302)
+# (skip X4 202)
+# (skip X10 202)
+# (skip A3 102)
+# (skip X2 104)
+# (skip X3 202)
+# (skip X9 2)
+#  order 2
+# (skip X7 103)
+# (skip A6 2000104)
+# (skip A5 204)
+# (skip A2 2000203)
+# (skip X8 2000103)
+# (skip X2 104)
+#   coloured X9
+#  already X6
+#   therefore-not X6
+#   therefore-not X8
+#  already A4
+#   therefore-not A4
+#   therefore-not A2
+#   therefore-not A2
+#  already A4
+#   therefore-not A6
+#   therefore-not A6
+#   therefore-not A4
+#  already X9
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not A5
+#   therefore-not X9
+#  already X6
+#   therefore-not X5
+#   therefore-not X6
+#  already X9
+#   therefore-not X9
+#   therefore-not X7
+#   therefore-not X7
+#  order 4
+# (skip X7 2000103)
+# (skip X5 2000202)
+# (skip X6 2000302)
+# (skip A1 202)
+# (skip A2 2000203)
+# (skip A4 2000302)
+# (skip X4 202)
+# (skip X10 202)
+# (skip X8 2000103)
+# (skip A3 102)
+# (skip X3 202)
+# (skip X9 2000302)
+#  order 3
+# (skip X5 2000202)
+# (skip X6 2000302)
+# (skip A1 202)
+# (skip A6 2000104)
+# (skip A5 2000204)
+# (skip A4 2000302)
+# (skip X4 202)
+# (skip X10 202)
+# (skip A3 102)
+# (skip X2 104)
+# (skip X3 202)
+# (skip X9 2000302)
+#  order 2
+# (skip X7 2000103)
+# (skip A6 2000104)
+# (skip A5 2000204)
+# (skip A2 2000203)
+# (skip X8 2000103)
+# (skip X2 104)
+#  order 1
+# (skip X7 2000103)
+# (skip X5 2000202)
+# (skip X6 2000302)
+# (skip A1 202)
+# (skip A6 2000104)
+# (skip A5 2000204)
+# (skip A2 2000203)
+# (skip A4 2000302)
+# (skip X4 202)
+# (skip X10 202)
+# (skip X8 2000103)
+# (skip A3 102)
+# (skip X2 104)
+# (skip X3 202)
+# (skip X9 2000302)
+segcmap X7  0.475000 setgray
+segcmap X5  0.600000 setgray
+segcmap X6  0.725000 setgray
+segcmap A1  0.600000 setgray
+segcmap A6  0.475000 setgray
+segcmap A5  0.600000 setgray
+segcmap A2  0.600000 setgray
+segcmap A4  0.725000 setgray
+segcmap X4  0.600000 setgray
+segcmap X10  0.600000 setgray
+segcmap X8  0.475000 setgray
+segcmap A3  0.475000 setgray
+segcmap X2/R0  0.775000 setgray
+segcmap X2/R1  0.475000 setgray
+segcmap X3  0.600000 setgray
+segcmap X9  0.725000 setgray
+#line 862 redactgraph.c
+ident $Revision$
+# 
+