TSTP Solution File: KLE025+2 by LEO-II---1.7.0

View Problem - Process Solution

%------------------------------------------------------------------------------
% File     : LEO-II---1.7.0
% Problem  : KLE025+2 : TPTP v8.1.0. Released v4.0.0.
% Transfm  : none
% Format   : tptp
% Command  : leo --timeout %d --proofoutput 1 --foatp e --atp e=./eprover %s

% Computer : n021.cluster.edu
% Model    : x86_64 x86_64
% CPU      : Intel(R) Xeon(R) CPU E5-2620 v4 2.10GHz
% Memory   : 8042.1875MB
% OS       : Linux 3.10.0-693.el7.x86_64
% CPULimit : 300s
% WCLimit  : 600s
% DateTime : Sun Jul 17 02:10:57 EDT 2022

% Result   : Theorem 68.26s 68.44s
% Output   : CNFRefutation 68.26s
% Verified : 
% SZS Type : Refutation
%            Derivation depth      :   19
%            Number of leaves      :   31
% Syntax   : Number of formulae    :  206 ( 146 unt;  12 typ;   0 def)
%            Number of atoms       :  945 ( 471 equ;   0 cnn)
%            Maximal formula atoms :    4 (   4 avg)
%            Number of connectives : 1699 ( 250   ~; 231   |;  26   &;1164   @)
%                                         (   8 <=>;  20  =>;   0  <=;   0 <~>)
%            Maximal formula depth :    7 (   2 avg)
%            Number of types       :    2 (   0 usr)
%            Number of type conns  :   11 (  11   >;   0   *;   0   +;   0  <<)
%            Number of symbols     :   15 (  12 usr;   7 con; 0-2 aty)
%            Number of variables   :  415 (   0   ^ 413   !;   2   ?; 415   :)

% Comments : 
%------------------------------------------------------------------------------
thf(tp_addition,type,
    addition: $i > $i > $i ).

thf(tp_c,type,
    c: $i > $i ).

thf(tp_complement,type,
    complement: $i > $i > $o ).

thf(tp_leq,type,
    leq: $i > $i > $o ).

thf(tp_multiplication,type,
    multiplication: $i > $i > $i ).

thf(tp_one,type,
    one: $i ).

thf(tp_sK1_X0,type,
    sK1_X0: $i ).

thf(tp_sK2_SY36,type,
    sK2_SY36: $i ).

thf(tp_sK3_SY38,type,
    sK3_SY38: $i ).

thf(tp_sK4_X1,type,
    sK4_X1: $i > $i ).

thf(tp_test,type,
    test: $i > $o ).

thf(tp_zero,type,
    zero: $i ).

thf(1,axiom,
    ! [X0: $i,X1: $i] :
      ( ( ( test @ X0 )
        & ( test @ X1 ) )
     => ( ( c @ ( multiplication @ X0 @ X1 ) )
        = ( addition @ ( c @ X0 ) @ ( c @ X1 ) ) ) ),
    file('/export/starexec/sandbox/benchmark/theBenchmark.p',test_deMorgan2) ).

thf(2,axiom,
    ! [X0: $i,X1: $i] :
      ( ( ( test @ X0 )
        & ( test @ X1 ) )
     => ( ( c @ ( addition @ X0 @ X1 ) )
        = ( multiplication @ ( c @ X0 ) @ ( c @ X1 ) ) ) ),
    file('/export/starexec/sandbox/benchmark/theBenchmark.p',test_deMorgan1) ).

thf(3,axiom,
    ! [X0: $i] :
      ( ~ ( test @ X0 )
     => ( ( c @ X0 )
        = zero ) ),
    file('/export/starexec/sandbox/benchmark/theBenchmark.p',test_4) ).

thf(4,axiom,
    ! [X0: $i,X1: $i] :
      ( ( test @ X0 )
     => ( ( ( c @ X0 )
          = X1 )
      <=> ( complement @ X0 @ X1 ) ) ),
    file('/export/starexec/sandbox/benchmark/theBenchmark.p',test_3) ).

thf(5,axiom,
    ! [X0: $i,X1: $i] :
      ( ( complement @ X1 @ X0 )
    <=> ( ( ( multiplication @ X0 @ X1 )
          = zero )
        & ( ( multiplication @ X1 @ X0 )
          = zero )
        & ( ( addition @ X0 @ X1 )
          = one ) ) ),
    file('/export/starexec/sandbox/benchmark/theBenchmark.p',test_2) ).

thf(6,axiom,
    ! [X0: $i] :
      ( ( test @ X0 )
    <=> ? [X1: $i] : ( complement @ X1 @ X0 ) ),
    file('/export/starexec/sandbox/benchmark/theBenchmark.p',test_1) ).

thf(7,axiom,
    ! [A: $i,B: $i] :
      ( ( leq @ A @ B )
    <=> ( ( addition @ A @ B )
        = B ) ),
    file('/export/starexec/sandbox/benchmark/theBenchmark.p',order) ).

thf(8,axiom,
    ! [A: $i] :
      ( ( multiplication @ zero @ A )
      = zero ),
    file('/export/starexec/sandbox/benchmark/theBenchmark.p',left_annihilation) ).

thf(9,axiom,
    ! [A: $i] :
      ( ( multiplication @ A @ zero )
      = zero ),
    file('/export/starexec/sandbox/benchmark/theBenchmark.p',right_annihilation) ).

thf(10,axiom,
    ! [A: $i,B: $i,C: $i] :
      ( ( multiplication @ ( addition @ A @ B ) @ C )
      = ( addition @ ( multiplication @ A @ C ) @ ( multiplication @ B @ C ) ) ),
    file('/export/starexec/sandbox/benchmark/theBenchmark.p',left_distributivity) ).

thf(11,axiom,
    ! [A: $i,B: $i,C: $i] :
      ( ( multiplication @ A @ ( addition @ B @ C ) )
      = ( addition @ ( multiplication @ A @ B ) @ ( multiplication @ A @ C ) ) ),
    file('/export/starexec/sandbox/benchmark/theBenchmark.p',right_distributivity) ).

thf(12,axiom,
    ! [A: $i] :
      ( ( multiplication @ one @ A )
      = A ),
    file('/export/starexec/sandbox/benchmark/theBenchmark.p',multiplicative_left_identity) ).

thf(13,axiom,
    ! [A: $i] :
      ( ( multiplication @ A @ one )
      = A ),
    file('/export/starexec/sandbox/benchmark/theBenchmark.p',multiplicative_right_identity) ).

thf(14,axiom,
    ! [A: $i,B: $i,C: $i] :
      ( ( multiplication @ A @ ( multiplication @ B @ C ) )
      = ( multiplication @ ( multiplication @ A @ B ) @ C ) ),
    file('/export/starexec/sandbox/benchmark/theBenchmark.p',multiplicative_associativity) ).

thf(15,axiom,
    ! [A: $i] :
      ( ( addition @ A @ A )
      = A ),
    file('/export/starexec/sandbox/benchmark/theBenchmark.p',additive_idempotence) ).

thf(16,axiom,
    ! [A: $i] :
      ( ( addition @ A @ zero )
      = A ),
    file('/export/starexec/sandbox/benchmark/theBenchmark.p',additive_identity) ).

thf(17,axiom,
    ! [C: $i,B: $i,A: $i] :
      ( ( addition @ A @ ( addition @ B @ C ) )
      = ( addition @ ( addition @ A @ B ) @ C ) ),
    file('/export/starexec/sandbox/benchmark/theBenchmark.p',additive_associativity) ).

thf(18,axiom,
    ! [A: $i,B: $i] :
      ( ( addition @ A @ B )
      = ( addition @ B @ A ) ),
    file('/export/starexec/sandbox/benchmark/theBenchmark.p',additive_commutativity) ).

thf(19,conjecture,
    ! [X0: $i,X1: $i,X2: $i] :
      ( ( ( test @ X1 )
        & ( test @ X2 ) )
     => ( ( ( multiplication @ ( multiplication @ X1 @ X0 ) @ ( c @ X2 ) )
          = zero )
       => ( ( multiplication @ X1 @ X0 )
          = ( multiplication @ ( multiplication @ X1 @ X0 ) @ X2 ) ) ) ),
    file('/export/starexec/sandbox/benchmark/theBenchmark.p',goals) ).

thf(20,negated_conjecture,
    ( ( ! [X0: $i,X1: $i,X2: $i] :
          ( ( ( test @ X1 )
            & ( test @ X2 ) )
         => ( ( ( multiplication @ ( multiplication @ X1 @ X0 ) @ ( c @ X2 ) )
              = zero )
           => ( ( multiplication @ X1 @ X0 )
              = ( multiplication @ ( multiplication @ X1 @ X0 ) @ X2 ) ) ) ) )
    = $false ),
    inference(negate_conjecture,[status(cth)],[19]) ).

thf(21,plain,
    ( ( ! [X0: $i,X1: $i,X2: $i] :
          ( ( ( test @ X1 )
            & ( test @ X2 ) )
         => ( ( ( multiplication @ ( multiplication @ X1 @ X0 ) @ ( c @ X2 ) )
              = zero )
           => ( ( multiplication @ X1 @ X0 )
              = ( multiplication @ ( multiplication @ X1 @ X0 ) @ X2 ) ) ) ) )
    = $false ),
    inference(unfold_def,[status(thm)],[20]) ).

thf(22,plain,
    ( ( ! [X0: $i,X1: $i] :
          ( ( ( test @ X0 )
            & ( test @ X1 ) )
         => ( ( c @ ( multiplication @ X0 @ X1 ) )
            = ( addition @ ( c @ X0 ) @ ( c @ X1 ) ) ) ) )
    = $true ),
    inference(unfold_def,[status(thm)],[1]) ).

thf(23,plain,
    ( ( ! [X0: $i,X1: $i] :
          ( ( ( test @ X0 )
            & ( test @ X1 ) )
         => ( ( c @ ( addition @ X0 @ X1 ) )
            = ( multiplication @ ( c @ X0 ) @ ( c @ X1 ) ) ) ) )
    = $true ),
    inference(unfold_def,[status(thm)],[2]) ).

thf(24,plain,
    ( ( ! [X0: $i] :
          ( ~ ( test @ X0 )
         => ( ( c @ X0 )
            = zero ) ) )
    = $true ),
    inference(unfold_def,[status(thm)],[3]) ).

thf(25,plain,
    ( ( ! [X0: $i,X1: $i] :
          ( ( test @ X0 )
         => ( ( ( c @ X0 )
              = X1 )
          <=> ( complement @ X0 @ X1 ) ) ) )
    = $true ),
    inference(unfold_def,[status(thm)],[4]) ).

thf(26,plain,
    ( ( ! [X0: $i,X1: $i] :
          ( ( complement @ X1 @ X0 )
        <=> ( ( ( multiplication @ X0 @ X1 )
              = zero )
            & ( ( multiplication @ X1 @ X0 )
              = zero )
            & ( ( addition @ X0 @ X1 )
              = one ) ) ) )
    = $true ),
    inference(unfold_def,[status(thm)],[5]) ).

thf(27,plain,
    ( ( ! [X0: $i] :
          ( ( test @ X0 )
        <=> ? [X1: $i] : ( complement @ X1 @ X0 ) ) )
    = $true ),
    inference(unfold_def,[status(thm)],[6]) ).

thf(28,plain,
    ( ( ! [A: $i,B: $i] :
          ( ( leq @ A @ B )
        <=> ( ( addition @ A @ B )
            = B ) ) )
    = $true ),
    inference(unfold_def,[status(thm)],[7]) ).

thf(29,plain,
    ( ( ! [A: $i] :
          ( ( multiplication @ zero @ A )
          = zero ) )
    = $true ),
    inference(unfold_def,[status(thm)],[8]) ).

thf(30,plain,
    ( ( ! [A: $i] :
          ( ( multiplication @ A @ zero )
          = zero ) )
    = $true ),
    inference(unfold_def,[status(thm)],[9]) ).

thf(31,plain,
    ( ( ! [A: $i,B: $i,C: $i] :
          ( ( multiplication @ ( addition @ A @ B ) @ C )
          = ( addition @ ( multiplication @ A @ C ) @ ( multiplication @ B @ C ) ) ) )
    = $true ),
    inference(unfold_def,[status(thm)],[10]) ).

thf(32,plain,
    ( ( ! [A: $i,B: $i,C: $i] :
          ( ( multiplication @ A @ ( addition @ B @ C ) )
          = ( addition @ ( multiplication @ A @ B ) @ ( multiplication @ A @ C ) ) ) )
    = $true ),
    inference(unfold_def,[status(thm)],[11]) ).

thf(33,plain,
    ( ( ! [A: $i] :
          ( ( multiplication @ one @ A )
          = A ) )
    = $true ),
    inference(unfold_def,[status(thm)],[12]) ).

thf(34,plain,
    ( ( ! [A: $i] :
          ( ( multiplication @ A @ one )
          = A ) )
    = $true ),
    inference(unfold_def,[status(thm)],[13]) ).

thf(35,plain,
    ( ( ! [A: $i,B: $i,C: $i] :
          ( ( multiplication @ A @ ( multiplication @ B @ C ) )
          = ( multiplication @ ( multiplication @ A @ B ) @ C ) ) )
    = $true ),
    inference(unfold_def,[status(thm)],[14]) ).

thf(36,plain,
    ( ( ! [A: $i] :
          ( ( addition @ A @ A )
          = A ) )
    = $true ),
    inference(unfold_def,[status(thm)],[15]) ).

thf(37,plain,
    ( ( ! [A: $i] :
          ( ( addition @ A @ zero )
          = A ) )
    = $true ),
    inference(unfold_def,[status(thm)],[16]) ).

thf(38,plain,
    ( ( ! [C: $i,B: $i,A: $i] :
          ( ( addition @ A @ ( addition @ B @ C ) )
          = ( addition @ ( addition @ A @ B ) @ C ) ) )
    = $true ),
    inference(unfold_def,[status(thm)],[17]) ).

thf(39,plain,
    ( ( ! [A: $i,B: $i] :
          ( ( addition @ A @ B )
          = ( addition @ B @ A ) ) )
    = $true ),
    inference(unfold_def,[status(thm)],[18]) ).

thf(40,plain,
    ( ( ! [SY36: $i,SY37: $i] :
          ( ( ( test @ SY36 )
            & ( test @ SY37 ) )
         => ( ( ( multiplication @ ( multiplication @ SY36 @ sK1_X0 ) @ ( c @ SY37 ) )
              = zero )
           => ( ( multiplication @ SY36 @ sK1_X0 )
              = ( multiplication @ ( multiplication @ SY36 @ sK1_X0 ) @ SY37 ) ) ) ) )
    = $false ),
    inference(extcnf_forall_neg,[status(esa)],[21]) ).

thf(41,plain,
    ( ( ! [SY38: $i] :
          ( ( ( test @ sK2_SY36 )
            & ( test @ SY38 ) )
         => ( ( ( multiplication @ ( multiplication @ sK2_SY36 @ sK1_X0 ) @ ( c @ SY38 ) )
              = zero )
           => ( ( multiplication @ sK2_SY36 @ sK1_X0 )
              = ( multiplication @ ( multiplication @ sK2_SY36 @ sK1_X0 ) @ SY38 ) ) ) ) )
    = $false ),
    inference(extcnf_forall_neg,[status(esa)],[40]) ).

thf(42,plain,
    ( ( ( ( test @ sK2_SY36 )
        & ( test @ sK3_SY38 ) )
     => ( ( ( multiplication @ ( multiplication @ sK2_SY36 @ sK1_X0 ) @ ( c @ sK3_SY38 ) )
          = zero )
       => ( ( multiplication @ sK2_SY36 @ sK1_X0 )
          = ( multiplication @ ( multiplication @ sK2_SY36 @ sK1_X0 ) @ sK3_SY38 ) ) ) )
    = $false ),
    inference(extcnf_forall_neg,[status(esa)],[41]) ).

thf(43,plain,
    ( ( test @ sK2_SY36 )
    = $true ),
    inference(standard_cnf,[status(thm)],[42]) ).

thf(44,plain,
    ( ( test @ sK3_SY38 )
    = $true ),
    inference(standard_cnf,[status(thm)],[42]) ).

thf(45,plain,
    ( ( ( multiplication @ ( multiplication @ sK2_SY36 @ sK1_X0 ) @ ( c @ sK3_SY38 ) )
      = zero )
    = $true ),
    inference(standard_cnf,[status(thm)],[42]) ).

thf(46,plain,
    ( ( ( multiplication @ sK2_SY36 @ sK1_X0 )
      = ( multiplication @ ( multiplication @ sK2_SY36 @ sK1_X0 ) @ sK3_SY38 ) )
    = $false ),
    inference(standard_cnf,[status(thm)],[42]) ).

thf(47,plain,
    ( ( ( ( multiplication @ sK2_SY36 @ sK1_X0 )
       != ( multiplication @ ( multiplication @ sK2_SY36 @ sK1_X0 ) @ sK3_SY38 ) ) )
    = $true ),
    inference(polarity_switch,[status(thm)],[46]) ).

thf(48,plain,
    ( ( ! [X0: $i,X1: $i] :
          ( ~ ( test @ X0 )
          | ~ ( test @ X1 )
          | ( ( c @ ( multiplication @ X0 @ X1 ) )
            = ( addition @ ( c @ X0 ) @ ( c @ X1 ) ) ) ) )
    = $true ),
    inference(extcnf_combined,[status(esa)],[22]) ).

thf(49,plain,
    ( ( ! [X0: $i,X1: $i] :
          ( ~ ( test @ X0 )
          | ~ ( test @ X1 )
          | ( ( c @ ( addition @ X0 @ X1 ) )
            = ( multiplication @ ( c @ X0 ) @ ( c @ X1 ) ) ) ) )
    = $true ),
    inference(extcnf_combined,[status(esa)],[23]) ).

thf(50,plain,
    ( ( ! [X0: $i] :
          ( ( test @ X0 )
          | ( ( c @ X0 )
            = zero ) ) )
    = $true ),
    inference(extcnf_combined,[status(esa)],[24]) ).

thf(51,plain,
    ( ( ! [X0: $i] :
          ( ~ ( test @ X0 )
          | ! [X1: $i] :
              ( ( ( c @ X0 )
               != X1 )
              | ( complement @ X0 @ X1 ) ) )
      & ! [X0: $i] :
          ( ~ ( test @ X0 )
          | ! [X1: $i] :
              ( ~ ( complement @ X0 @ X1 )
              | ( ( c @ X0 )
                = X1 ) ) ) )
    = $true ),
    inference(extcnf_combined,[status(esa)],[25]) ).

thf(52,plain,
    ( ( ! [X0: $i,X1: $i] :
          ( ( ( multiplication @ X0 @ X1 )
           != zero )
          | ( ( multiplication @ X1 @ X0 )
           != zero )
          | ( ( addition @ X0 @ X1 )
           != one )
          | ( complement @ X1 @ X0 ) )
      & ! [X0: $i,X1: $i] :
          ( ~ ( complement @ X1 @ X0 )
          | ( ( multiplication @ X0 @ X1 )
            = zero ) )
      & ! [X0: $i,X1: $i] :
          ( ~ ( complement @ X1 @ X0 )
          | ( ( multiplication @ X1 @ X0 )
            = zero ) )
      & ! [X0: $i,X1: $i] :
          ( ~ ( complement @ X1 @ X0 )
          | ( ( addition @ X0 @ X1 )
            = one ) ) )
    = $true ),
    inference(extcnf_combined,[status(esa)],[26]) ).

thf(53,plain,
    ( ( ! [X0: $i] :
          ( ! [X1: $i] :
              ~ ( complement @ X1 @ X0 )
          | ( test @ X0 ) )
      & ! [X0: $i] :
          ( ~ ( test @ X0 )
          | ( complement @ ( sK4_X1 @ X0 ) @ X0 ) ) )
    = $true ),
    inference(extcnf_combined,[status(esa)],[27]) ).

thf(54,plain,
    ( ( ! [A: $i,B: $i] :
          ( ( ( addition @ A @ B )
           != B )
          | ( leq @ A @ B ) )
      & ! [A: $i,B: $i] :
          ( ~ ( leq @ A @ B )
          | ( ( addition @ A @ B )
            = B ) ) )
    = $true ),
    inference(extcnf_combined,[status(esa)],[28]) ).

thf(55,plain,
    ( ( ! [A: $i,B: $i] :
          ( ( addition @ A @ B )
          = ( addition @ B @ A ) ) )
    = $true ),
    inference(copy,[status(thm)],[39]) ).

thf(56,plain,
    ( ( ! [C: $i,B: $i,A: $i] :
          ( ( addition @ A @ ( addition @ B @ C ) )
          = ( addition @ ( addition @ A @ B ) @ C ) ) )
    = $true ),
    inference(copy,[status(thm)],[38]) ).

thf(57,plain,
    ( ( ! [A: $i] :
          ( ( addition @ A @ zero )
          = A ) )
    = $true ),
    inference(copy,[status(thm)],[37]) ).

thf(58,plain,
    ( ( ! [A: $i] :
          ( ( addition @ A @ A )
          = A ) )
    = $true ),
    inference(copy,[status(thm)],[36]) ).

thf(59,plain,
    ( ( ! [A: $i,B: $i,C: $i] :
          ( ( multiplication @ A @ ( multiplication @ B @ C ) )
          = ( multiplication @ ( multiplication @ A @ B ) @ C ) ) )
    = $true ),
    inference(copy,[status(thm)],[35]) ).

thf(60,plain,
    ( ( ! [A: $i] :
          ( ( multiplication @ A @ one )
          = A ) )
    = $true ),
    inference(copy,[status(thm)],[34]) ).

thf(61,plain,
    ( ( ! [A: $i] :
          ( ( multiplication @ one @ A )
          = A ) )
    = $true ),
    inference(copy,[status(thm)],[33]) ).

thf(62,plain,
    ( ( ! [A: $i,B: $i,C: $i] :
          ( ( multiplication @ A @ ( addition @ B @ C ) )
          = ( addition @ ( multiplication @ A @ B ) @ ( multiplication @ A @ C ) ) ) )
    = $true ),
    inference(copy,[status(thm)],[32]) ).

thf(63,plain,
    ( ( ! [A: $i,B: $i,C: $i] :
          ( ( multiplication @ ( addition @ A @ B ) @ C )
          = ( addition @ ( multiplication @ A @ C ) @ ( multiplication @ B @ C ) ) ) )
    = $true ),
    inference(copy,[status(thm)],[31]) ).

thf(64,plain,
    ( ( ! [A: $i] :
          ( ( multiplication @ A @ zero )
          = zero ) )
    = $true ),
    inference(copy,[status(thm)],[30]) ).

thf(65,plain,
    ( ( ! [A: $i] :
          ( ( multiplication @ zero @ A )
          = zero ) )
    = $true ),
    inference(copy,[status(thm)],[29]) ).

thf(66,plain,
    ( ( ! [A: $i,B: $i] :
          ( ( ( addition @ A @ B )
           != B )
          | ( leq @ A @ B ) )
      & ! [A: $i,B: $i] :
          ( ~ ( leq @ A @ B )
          | ( ( addition @ A @ B )
            = B ) ) )
    = $true ),
    inference(copy,[status(thm)],[54]) ).

thf(67,plain,
    ( ( ! [X0: $i] :
          ( ! [X1: $i] :
              ~ ( complement @ X1 @ X0 )
          | ( test @ X0 ) )
      & ! [X0: $i] :
          ( ~ ( test @ X0 )
          | ( complement @ ( sK4_X1 @ X0 ) @ X0 ) ) )
    = $true ),
    inference(copy,[status(thm)],[53]) ).

thf(68,plain,
    ( ( ! [X0: $i,X1: $i] :
          ( ( ( multiplication @ X0 @ X1 )
           != zero )
          | ( ( multiplication @ X1 @ X0 )
           != zero )
          | ( ( addition @ X0 @ X1 )
           != one )
          | ( complement @ X1 @ X0 ) )
      & ! [X0: $i,X1: $i] :
          ( ~ ( complement @ X1 @ X0 )
          | ( ( multiplication @ X0 @ X1 )
            = zero ) )
      & ! [X0: $i,X1: $i] :
          ( ~ ( complement @ X1 @ X0 )
          | ( ( multiplication @ X1 @ X0 )
            = zero ) )
      & ! [X0: $i,X1: $i] :
          ( ~ ( complement @ X1 @ X0 )
          | ( ( addition @ X0 @ X1 )
            = one ) ) )
    = $true ),
    inference(copy,[status(thm)],[52]) ).

thf(69,plain,
    ( ( ! [X0: $i] :
          ( ~ ( test @ X0 )
          | ! [X1: $i] :
              ( ( ( c @ X0 )
               != X1 )
              | ( complement @ X0 @ X1 ) ) )
      & ! [X0: $i] :
          ( ~ ( test @ X0 )
          | ! [X1: $i] :
              ( ~ ( complement @ X0 @ X1 )
              | ( ( c @ X0 )
                = X1 ) ) ) )
    = $true ),
    inference(copy,[status(thm)],[51]) ).

thf(70,plain,
    ( ( ! [X0: $i] :
          ( ( test @ X0 )
          | ( ( c @ X0 )
            = zero ) ) )
    = $true ),
    inference(copy,[status(thm)],[50]) ).

thf(71,plain,
    ( ( ! [X0: $i,X1: $i] :
          ( ~ ( test @ X0 )
          | ~ ( test @ X1 )
          | ( ( c @ ( addition @ X0 @ X1 ) )
            = ( multiplication @ ( c @ X0 ) @ ( c @ X1 ) ) ) ) )
    = $true ),
    inference(copy,[status(thm)],[49]) ).

thf(72,plain,
    ( ( ! [X0: $i,X1: $i] :
          ( ~ ( test @ X0 )
          | ~ ( test @ X1 )
          | ( ( c @ ( multiplication @ X0 @ X1 ) )
            = ( addition @ ( c @ X0 ) @ ( c @ X1 ) ) ) ) )
    = $true ),
    inference(copy,[status(thm)],[48]) ).

thf(73,plain,
    ( ( ( multiplication @ ( multiplication @ sK2_SY36 @ sK1_X0 ) @ ( c @ sK3_SY38 ) )
      = zero )
    = $true ),
    inference(copy,[status(thm)],[45]) ).

thf(74,plain,
    ( ( test @ sK3_SY38 )
    = $true ),
    inference(copy,[status(thm)],[44]) ).

thf(75,plain,
    ( ( test @ sK2_SY36 )
    = $true ),
    inference(copy,[status(thm)],[43]) ).

thf(76,plain,
    ( ( ( ( multiplication @ sK2_SY36 @ sK1_X0 )
       != ( multiplication @ ( multiplication @ sK2_SY36 @ sK1_X0 ) @ sK3_SY38 ) ) )
    = $true ),
    inference(copy,[status(thm)],[47]) ).

thf(77,plain,
    ( ( ~ ( ~ ! [SX0: $i,SX1: $i] :
                ( ( ( addition @ SX0 @ SX1 )
                 != SX1 )
                | ( leq @ SX0 @ SX1 ) )
          | ~ ! [SX0: $i,SX1: $i] :
                ( ~ ( leq @ SX0 @ SX1 )
                | ( ( addition @ SX0 @ SX1 )
                  = SX1 ) ) ) )
    = $true ),
    inference(unfold_def,[status(thm)],[66]) ).

thf(78,plain,
    ( ( ~ ( ~ ! [SX0: $i] :
                ( ! [SX1: $i] :
                    ~ ( complement @ SX1 @ SX0 )
                | ( test @ SX0 ) )
          | ~ ! [SX0: $i] :
                ( ~ ( test @ SX0 )
                | ( complement @ ( sK4_X1 @ SX0 ) @ SX0 ) ) ) )
    = $true ),
    inference(unfold_def,[status(thm)],[67]) ).

thf(79,plain,
    ( ( ~ ( ~ ! [SX0: $i,SX1: $i] :
                ( ( ( multiplication @ SX0 @ SX1 )
                 != zero )
                | ( ( multiplication @ SX1 @ SX0 )
                 != zero )
                | ( ( addition @ SX0 @ SX1 )
                 != one )
                | ( complement @ SX1 @ SX0 ) )
          | ~ ~ ( ~ ~ ( ~ ! [SX0: $i,SX1: $i] :
                            ( ~ ( complement @ SX1 @ SX0 )
                            | ( ( multiplication @ SX0 @ SX1 )
                              = zero ) )
                      | ~ ! [SX0: $i,SX1: $i] :
                            ( ~ ( complement @ SX1 @ SX0 )
                            | ( ( multiplication @ SX1 @ SX0 )
                              = zero ) ) )
                | ~ ! [SX0: $i,SX1: $i] :
                      ( ~ ( complement @ SX1 @ SX0 )
                      | ( ( addition @ SX0 @ SX1 )
                        = one ) ) ) ) )
    = $true ),
    inference(unfold_def,[status(thm)],[68]) ).

thf(80,plain,
    ( ( ~ ( ~ ! [SX0: $i] :
                ( ~ ( test @ SX0 )
                | ! [SX1: $i] :
                    ( ( ( c @ SX0 )
                     != SX1 )
                    | ( complement @ SX0 @ SX1 ) ) )
          | ~ ! [SX0: $i] :
                ( ~ ( test @ SX0 )
                | ! [SX1: $i] :
                    ( ~ ( complement @ SX0 @ SX1 )
                    | ( ( c @ SX0 )
                      = SX1 ) ) ) ) )
    = $true ),
    inference(unfold_def,[status(thm)],[69]) ).

thf(81,plain,
    ! [SV1: $i] :
      ( ( ! [SY39: $i] :
            ( ( addition @ SV1 @ SY39 )
            = ( addition @ SY39 @ SV1 ) ) )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[55]) ).

thf(82,plain,
    ! [SV2: $i] :
      ( ( ! [SY40: $i,SY41: $i] :
            ( ( addition @ SY41 @ ( addition @ SY40 @ SV2 ) )
            = ( addition @ ( addition @ SY41 @ SY40 ) @ SV2 ) ) )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[56]) ).

thf(83,plain,
    ! [SV3: $i] :
      ( ( ( addition @ SV3 @ zero )
        = SV3 )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[57]) ).

thf(84,plain,
    ! [SV4: $i] :
      ( ( ( addition @ SV4 @ SV4 )
        = SV4 )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[58]) ).

thf(85,plain,
    ! [SV5: $i] :
      ( ( ! [SY42: $i,SY43: $i] :
            ( ( multiplication @ SV5 @ ( multiplication @ SY42 @ SY43 ) )
            = ( multiplication @ ( multiplication @ SV5 @ SY42 ) @ SY43 ) ) )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[59]) ).

thf(86,plain,
    ! [SV6: $i] :
      ( ( ( multiplication @ SV6 @ one )
        = SV6 )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[60]) ).

thf(87,plain,
    ! [SV7: $i] :
      ( ( ( multiplication @ one @ SV7 )
        = SV7 )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[61]) ).

thf(88,plain,
    ! [SV8: $i] :
      ( ( ! [SY44: $i,SY45: $i] :
            ( ( multiplication @ SV8 @ ( addition @ SY44 @ SY45 ) )
            = ( addition @ ( multiplication @ SV8 @ SY44 ) @ ( multiplication @ SV8 @ SY45 ) ) ) )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[62]) ).

thf(89,plain,
    ! [SV9: $i] :
      ( ( ! [SY46: $i,SY47: $i] :
            ( ( multiplication @ ( addition @ SV9 @ SY46 ) @ SY47 )
            = ( addition @ ( multiplication @ SV9 @ SY47 ) @ ( multiplication @ SY46 @ SY47 ) ) ) )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[63]) ).

thf(90,plain,
    ! [SV10: $i] :
      ( ( ( multiplication @ SV10 @ zero )
        = zero )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[64]) ).

thf(91,plain,
    ! [SV11: $i] :
      ( ( ( multiplication @ zero @ SV11 )
        = zero )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[65]) ).

thf(92,plain,
    ! [SV12: $i] :
      ( ( ( test @ SV12 )
        | ( ( c @ SV12 )
          = zero ) )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[70]) ).

thf(93,plain,
    ! [SV13: $i] :
      ( ( ! [SY48: $i] :
            ( ~ ( test @ SV13 )
            | ~ ( test @ SY48 )
            | ( ( c @ ( addition @ SV13 @ SY48 ) )
              = ( multiplication @ ( c @ SV13 ) @ ( c @ SY48 ) ) ) ) )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[71]) ).

thf(94,plain,
    ! [SV14: $i] :
      ( ( ! [SY49: $i] :
            ( ~ ( test @ SV14 )
            | ~ ( test @ SY49 )
            | ( ( c @ ( multiplication @ SV14 @ SY49 ) )
              = ( addition @ ( c @ SV14 ) @ ( c @ SY49 ) ) ) ) )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[72]) ).

thf(95,plain,
    ( ( ( multiplication @ sK2_SY36 @ sK1_X0 )
      = ( multiplication @ ( multiplication @ sK2_SY36 @ sK1_X0 ) @ sK3_SY38 ) )
    = $false ),
    inference(extcnf_not_pos,[status(thm)],[76]) ).

thf(96,plain,
    ( ( ~ ! [SX0: $i,SX1: $i] :
            ( ( ( addition @ SX0 @ SX1 )
             != SX1 )
            | ( leq @ SX0 @ SX1 ) )
      | ~ ! [SX0: $i,SX1: $i] :
            ( ~ ( leq @ SX0 @ SX1 )
            | ( ( addition @ SX0 @ SX1 )
              = SX1 ) ) )
    = $false ),
    inference(extcnf_not_pos,[status(thm)],[77]) ).

thf(97,plain,
    ( ( ~ ! [SX0: $i] :
            ( ! [SX1: $i] :
                ~ ( complement @ SX1 @ SX0 )
            | ( test @ SX0 ) )
      | ~ ! [SX0: $i] :
            ( ~ ( test @ SX0 )
            | ( complement @ ( sK4_X1 @ SX0 ) @ SX0 ) ) )
    = $false ),
    inference(extcnf_not_pos,[status(thm)],[78]) ).

thf(98,plain,
    ( ( ~ ! [SX0: $i,SX1: $i] :
            ( ( ( multiplication @ SX0 @ SX1 )
             != zero )
            | ( ( multiplication @ SX1 @ SX0 )
             != zero )
            | ( ( addition @ SX0 @ SX1 )
             != one )
            | ( complement @ SX1 @ SX0 ) )
      | ~ ~ ( ~ ~ ( ~ ! [SX0: $i,SX1: $i] :
                        ( ~ ( complement @ SX1 @ SX0 )
                        | ( ( multiplication @ SX0 @ SX1 )
                          = zero ) )
                  | ~ ! [SX0: $i,SX1: $i] :
                        ( ~ ( complement @ SX1 @ SX0 )
                        | ( ( multiplication @ SX1 @ SX0 )
                          = zero ) ) )
            | ~ ! [SX0: $i,SX1: $i] :
                  ( ~ ( complement @ SX1 @ SX0 )
                  | ( ( addition @ SX0 @ SX1 )
                    = one ) ) ) )
    = $false ),
    inference(extcnf_not_pos,[status(thm)],[79]) ).

thf(99,plain,
    ( ( ~ ! [SX0: $i] :
            ( ~ ( test @ SX0 )
            | ! [SX1: $i] :
                ( ( ( c @ SX0 )
                 != SX1 )
                | ( complement @ SX0 @ SX1 ) ) )
      | ~ ! [SX0: $i] :
            ( ~ ( test @ SX0 )
            | ! [SX1: $i] :
                ( ~ ( complement @ SX0 @ SX1 )
                | ( ( c @ SX0 )
                  = SX1 ) ) ) )
    = $false ),
    inference(extcnf_not_pos,[status(thm)],[80]) ).

thf(100,plain,
    ! [SV15: $i,SV1: $i] :
      ( ( ( addition @ SV1 @ SV15 )
        = ( addition @ SV15 @ SV1 ) )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[81]) ).

thf(101,plain,
    ! [SV2: $i,SV16: $i] :
      ( ( ! [SY50: $i] :
            ( ( addition @ SY50 @ ( addition @ SV16 @ SV2 ) )
            = ( addition @ ( addition @ SY50 @ SV16 ) @ SV2 ) ) )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[82]) ).

thf(102,plain,
    ! [SV17: $i,SV5: $i] :
      ( ( ! [SY51: $i] :
            ( ( multiplication @ SV5 @ ( multiplication @ SV17 @ SY51 ) )
            = ( multiplication @ ( multiplication @ SV5 @ SV17 ) @ SY51 ) ) )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[85]) ).

thf(103,plain,
    ! [SV18: $i,SV8: $i] :
      ( ( ! [SY52: $i] :
            ( ( multiplication @ SV8 @ ( addition @ SV18 @ SY52 ) )
            = ( addition @ ( multiplication @ SV8 @ SV18 ) @ ( multiplication @ SV8 @ SY52 ) ) ) )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[88]) ).

thf(104,plain,
    ! [SV19: $i,SV9: $i] :
      ( ( ! [SY53: $i] :
            ( ( multiplication @ ( addition @ SV9 @ SV19 ) @ SY53 )
            = ( addition @ ( multiplication @ SV9 @ SY53 ) @ ( multiplication @ SV19 @ SY53 ) ) ) )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[89]) ).

thf(105,plain,
    ! [SV12: $i] :
      ( ( ( test @ SV12 )
        = $true )
      | ( ( ( c @ SV12 )
          = zero )
        = $true ) ),
    inference(extcnf_or_pos,[status(thm)],[92]) ).

thf(106,plain,
    ! [SV20: $i,SV13: $i] :
      ( ( ~ ( test @ SV13 )
        | ~ ( test @ SV20 )
        | ( ( c @ ( addition @ SV13 @ SV20 ) )
          = ( multiplication @ ( c @ SV13 ) @ ( c @ SV20 ) ) ) )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[93]) ).

thf(107,plain,
    ! [SV21: $i,SV14: $i] :
      ( ( ~ ( test @ SV14 )
        | ~ ( test @ SV21 )
        | ( ( c @ ( multiplication @ SV14 @ SV21 ) )
          = ( addition @ ( c @ SV14 ) @ ( c @ SV21 ) ) ) )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[94]) ).

thf(108,plain,
    ( ( ~ ! [SX0: $i,SX1: $i] :
            ( ( ( addition @ SX0 @ SX1 )
             != SX1 )
            | ( leq @ SX0 @ SX1 ) ) )
    = $false ),
    inference(extcnf_or_neg,[status(thm)],[96]) ).

thf(109,plain,
    ( ( ~ ! [SX0: $i,SX1: $i] :
            ( ~ ( leq @ SX0 @ SX1 )
            | ( ( addition @ SX0 @ SX1 )
              = SX1 ) ) )
    = $false ),
    inference(extcnf_or_neg,[status(thm)],[96]) ).

thf(110,plain,
    ( ( ~ ! [SX0: $i] :
            ( ! [SX1: $i] :
                ~ ( complement @ SX1 @ SX0 )
            | ( test @ SX0 ) ) )
    = $false ),
    inference(extcnf_or_neg,[status(thm)],[97]) ).

thf(111,plain,
    ( ( ~ ! [SX0: $i] :
            ( ~ ( test @ SX0 )
            | ( complement @ ( sK4_X1 @ SX0 ) @ SX0 ) ) )
    = $false ),
    inference(extcnf_or_neg,[status(thm)],[97]) ).

thf(112,plain,
    ( ( ~ ! [SX0: $i,SX1: $i] :
            ( ( ( multiplication @ SX0 @ SX1 )
             != zero )
            | ( ( multiplication @ SX1 @ SX0 )
             != zero )
            | ( ( addition @ SX0 @ SX1 )
             != one )
            | ( complement @ SX1 @ SX0 ) ) )
    = $false ),
    inference(extcnf_or_neg,[status(thm)],[98]) ).

thf(113,plain,
    ( ( ~ ~ ( ~ ~ ( ~ ! [SX0: $i,SX1: $i] :
                        ( ~ ( complement @ SX1 @ SX0 )
                        | ( ( multiplication @ SX0 @ SX1 )
                          = zero ) )
                  | ~ ! [SX0: $i,SX1: $i] :
                        ( ~ ( complement @ SX1 @ SX0 )
                        | ( ( multiplication @ SX1 @ SX0 )
                          = zero ) ) )
            | ~ ! [SX0: $i,SX1: $i] :
                  ( ~ ( complement @ SX1 @ SX0 )
                  | ( ( addition @ SX0 @ SX1 )
                    = one ) ) ) )
    = $false ),
    inference(extcnf_or_neg,[status(thm)],[98]) ).

thf(114,plain,
    ( ( ~ ! [SX0: $i] :
            ( ~ ( test @ SX0 )
            | ! [SX1: $i] :
                ( ( ( c @ SX0 )
                 != SX1 )
                | ( complement @ SX0 @ SX1 ) ) ) )
    = $false ),
    inference(extcnf_or_neg,[status(thm)],[99]) ).

thf(115,plain,
    ( ( ~ ! [SX0: $i] :
            ( ~ ( test @ SX0 )
            | ! [SX1: $i] :
                ( ~ ( complement @ SX0 @ SX1 )
                | ( ( c @ SX0 )
                  = SX1 ) ) ) )
    = $false ),
    inference(extcnf_or_neg,[status(thm)],[99]) ).

thf(116,plain,
    ! [SV2: $i,SV16: $i,SV22: $i] :
      ( ( ( addition @ SV22 @ ( addition @ SV16 @ SV2 ) )
        = ( addition @ ( addition @ SV22 @ SV16 ) @ SV2 ) )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[101]) ).

thf(117,plain,
    ! [SV23: $i,SV17: $i,SV5: $i] :
      ( ( ( multiplication @ SV5 @ ( multiplication @ SV17 @ SV23 ) )
        = ( multiplication @ ( multiplication @ SV5 @ SV17 ) @ SV23 ) )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[102]) ).

thf(118,plain,
    ! [SV24: $i,SV18: $i,SV8: $i] :
      ( ( ( multiplication @ SV8 @ ( addition @ SV18 @ SV24 ) )
        = ( addition @ ( multiplication @ SV8 @ SV18 ) @ ( multiplication @ SV8 @ SV24 ) ) )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[103]) ).

thf(119,plain,
    ! [SV25: $i,SV19: $i,SV9: $i] :
      ( ( ( multiplication @ ( addition @ SV9 @ SV19 ) @ SV25 )
        = ( addition @ ( multiplication @ SV9 @ SV25 ) @ ( multiplication @ SV19 @ SV25 ) ) )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[104]) ).

thf(120,plain,
    ! [SV20: $i,SV13: $i] :
      ( ( ( ~ ( test @ SV13 )
          | ~ ( test @ SV20 ) )
        = $true )
      | ( ( ( c @ ( addition @ SV13 @ SV20 ) )
          = ( multiplication @ ( c @ SV13 ) @ ( c @ SV20 ) ) )
        = $true ) ),
    inference(extcnf_or_pos,[status(thm)],[106]) ).

thf(121,plain,
    ! [SV21: $i,SV14: $i] :
      ( ( ( ~ ( test @ SV14 )
          | ~ ( test @ SV21 ) )
        = $true )
      | ( ( ( c @ ( multiplication @ SV14 @ SV21 ) )
          = ( addition @ ( c @ SV14 ) @ ( c @ SV21 ) ) )
        = $true ) ),
    inference(extcnf_or_pos,[status(thm)],[107]) ).

thf(122,plain,
    ( ( ! [SX0: $i,SX1: $i] :
          ( ( ( addition @ SX0 @ SX1 )
           != SX1 )
          | ( leq @ SX0 @ SX1 ) ) )
    = $true ),
    inference(extcnf_not_neg,[status(thm)],[108]) ).

thf(123,plain,
    ( ( ! [SX0: $i,SX1: $i] :
          ( ~ ( leq @ SX0 @ SX1 )
          | ( ( addition @ SX0 @ SX1 )
            = SX1 ) ) )
    = $true ),
    inference(extcnf_not_neg,[status(thm)],[109]) ).

thf(124,plain,
    ( ( ! [SX0: $i] :
          ( ! [SX1: $i] :
              ~ ( complement @ SX1 @ SX0 )
          | ( test @ SX0 ) ) )
    = $true ),
    inference(extcnf_not_neg,[status(thm)],[110]) ).

thf(125,plain,
    ( ( ! [SX0: $i] :
          ( ~ ( test @ SX0 )
          | ( complement @ ( sK4_X1 @ SX0 ) @ SX0 ) ) )
    = $true ),
    inference(extcnf_not_neg,[status(thm)],[111]) ).

thf(126,plain,
    ( ( ! [SX0: $i,SX1: $i] :
          ( ( ( multiplication @ SX0 @ SX1 )
           != zero )
          | ( ( multiplication @ SX1 @ SX0 )
           != zero )
          | ( ( addition @ SX0 @ SX1 )
           != one )
          | ( complement @ SX1 @ SX0 ) ) )
    = $true ),
    inference(extcnf_not_neg,[status(thm)],[112]) ).

thf(127,plain,
    ( ( ~ ( ~ ~ ( ~ ! [SX0: $i,SX1: $i] :
                      ( ~ ( complement @ SX1 @ SX0 )
                      | ( ( multiplication @ SX0 @ SX1 )
                        = zero ) )
                | ~ ! [SX0: $i,SX1: $i] :
                      ( ~ ( complement @ SX1 @ SX0 )
                      | ( ( multiplication @ SX1 @ SX0 )
                        = zero ) ) )
          | ~ ! [SX0: $i,SX1: $i] :
                ( ~ ( complement @ SX1 @ SX0 )
                | ( ( addition @ SX0 @ SX1 )
                  = one ) ) ) )
    = $true ),
    inference(extcnf_not_neg,[status(thm)],[113]) ).

thf(128,plain,
    ( ( ! [SX0: $i] :
          ( ~ ( test @ SX0 )
          | ! [SX1: $i] :
              ( ( ( c @ SX0 )
               != SX1 )
              | ( complement @ SX0 @ SX1 ) ) ) )
    = $true ),
    inference(extcnf_not_neg,[status(thm)],[114]) ).

thf(129,plain,
    ( ( ! [SX0: $i] :
          ( ~ ( test @ SX0 )
          | ! [SX1: $i] :
              ( ~ ( complement @ SX0 @ SX1 )
              | ( ( c @ SX0 )
                = SX1 ) ) ) )
    = $true ),
    inference(extcnf_not_neg,[status(thm)],[115]) ).

thf(130,plain,
    ! [SV20: $i,SV13: $i] :
      ( ( ( ~ ( test @ SV13 ) )
        = $true )
      | ( ( ~ ( test @ SV20 ) )
        = $true )
      | ( ( ( c @ ( addition @ SV13 @ SV20 ) )
          = ( multiplication @ ( c @ SV13 ) @ ( c @ SV20 ) ) )
        = $true ) ),
    inference(extcnf_or_pos,[status(thm)],[120]) ).

thf(131,plain,
    ! [SV21: $i,SV14: $i] :
      ( ( ( ~ ( test @ SV14 ) )
        = $true )
      | ( ( ~ ( test @ SV21 ) )
        = $true )
      | ( ( ( c @ ( multiplication @ SV14 @ SV21 ) )
          = ( addition @ ( c @ SV14 ) @ ( c @ SV21 ) ) )
        = $true ) ),
    inference(extcnf_or_pos,[status(thm)],[121]) ).

thf(132,plain,
    ! [SV26: $i] :
      ( ( ! [SY54: $i] :
            ( ( ( addition @ SV26 @ SY54 )
             != SY54 )
            | ( leq @ SV26 @ SY54 ) ) )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[122]) ).

thf(133,plain,
    ! [SV27: $i] :
      ( ( ! [SY55: $i] :
            ( ~ ( leq @ SV27 @ SY55 )
            | ( ( addition @ SV27 @ SY55 )
              = SY55 ) ) )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[123]) ).

thf(134,plain,
    ! [SV28: $i] :
      ( ( ! [SY56: $i] :
            ~ ( complement @ SY56 @ SV28 )
        | ( test @ SV28 ) )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[124]) ).

thf(135,plain,
    ! [SV29: $i] :
      ( ( ~ ( test @ SV29 )
        | ( complement @ ( sK4_X1 @ SV29 ) @ SV29 ) )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[125]) ).

thf(136,plain,
    ! [SV30: $i] :
      ( ( ! [SY57: $i] :
            ( ( ( multiplication @ SV30 @ SY57 )
             != zero )
            | ( ( multiplication @ SY57 @ SV30 )
             != zero )
            | ( ( addition @ SV30 @ SY57 )
             != one )
            | ( complement @ SY57 @ SV30 ) ) )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[126]) ).

thf(137,plain,
    ( ( ~ ~ ( ~ ! [SX0: $i,SX1: $i] :
                  ( ~ ( complement @ SX1 @ SX0 )
                  | ( ( multiplication @ SX0 @ SX1 )
                    = zero ) )
            | ~ ! [SX0: $i,SX1: $i] :
                  ( ~ ( complement @ SX1 @ SX0 )
                  | ( ( multiplication @ SX1 @ SX0 )
                    = zero ) ) )
      | ~ ! [SX0: $i,SX1: $i] :
            ( ~ ( complement @ SX1 @ SX0 )
            | ( ( addition @ SX0 @ SX1 )
              = one ) ) )
    = $false ),
    inference(extcnf_not_pos,[status(thm)],[127]) ).

thf(138,plain,
    ! [SV31: $i] :
      ( ( ~ ( test @ SV31 )
        | ! [SY58: $i] :
            ( ( ( c @ SV31 )
             != SY58 )
            | ( complement @ SV31 @ SY58 ) ) )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[128]) ).

thf(139,plain,
    ! [SV32: $i] :
      ( ( ~ ( test @ SV32 )
        | ! [SY59: $i] :
            ( ~ ( complement @ SV32 @ SY59 )
            | ( ( c @ SV32 )
              = SY59 ) ) )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[129]) ).

thf(140,plain,
    ! [SV20: $i,SV13: $i] :
      ( ( ( test @ SV13 )
        = $false )
      | ( ( ~ ( test @ SV20 ) )
        = $true )
      | ( ( ( c @ ( addition @ SV13 @ SV20 ) )
          = ( multiplication @ ( c @ SV13 ) @ ( c @ SV20 ) ) )
        = $true ) ),
    inference(extcnf_not_pos,[status(thm)],[130]) ).

thf(141,plain,
    ! [SV21: $i,SV14: $i] :
      ( ( ( test @ SV14 )
        = $false )
      | ( ( ~ ( test @ SV21 ) )
        = $true )
      | ( ( ( c @ ( multiplication @ SV14 @ SV21 ) )
          = ( addition @ ( c @ SV14 ) @ ( c @ SV21 ) ) )
        = $true ) ),
    inference(extcnf_not_pos,[status(thm)],[131]) ).

thf(142,plain,
    ! [SV33: $i,SV26: $i] :
      ( ( ( ( addition @ SV26 @ SV33 )
         != SV33 )
        | ( leq @ SV26 @ SV33 ) )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[132]) ).

thf(143,plain,
    ! [SV34: $i,SV27: $i] :
      ( ( ~ ( leq @ SV27 @ SV34 )
        | ( ( addition @ SV27 @ SV34 )
          = SV34 ) )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[133]) ).

thf(144,plain,
    ! [SV28: $i] :
      ( ( ( ! [SY56: $i] :
              ~ ( complement @ SY56 @ SV28 ) )
        = $true )
      | ( ( test @ SV28 )
        = $true ) ),
    inference(extcnf_or_pos,[status(thm)],[134]) ).

thf(145,plain,
    ! [SV29: $i] :
      ( ( ( ~ ( test @ SV29 ) )
        = $true )
      | ( ( complement @ ( sK4_X1 @ SV29 ) @ SV29 )
        = $true ) ),
    inference(extcnf_or_pos,[status(thm)],[135]) ).

thf(146,plain,
    ! [SV35: $i,SV30: $i] :
      ( ( ( ( multiplication @ SV30 @ SV35 )
         != zero )
        | ( ( multiplication @ SV35 @ SV30 )
         != zero )
        | ( ( addition @ SV30 @ SV35 )
         != one )
        | ( complement @ SV35 @ SV30 ) )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[136]) ).

thf(147,plain,
    ( ( ~ ~ ( ~ ! [SX0: $i,SX1: $i] :
                  ( ~ ( complement @ SX1 @ SX0 )
                  | ( ( multiplication @ SX0 @ SX1 )
                    = zero ) )
            | ~ ! [SX0: $i,SX1: $i] :
                  ( ~ ( complement @ SX1 @ SX0 )
                  | ( ( multiplication @ SX1 @ SX0 )
                    = zero ) ) ) )
    = $false ),
    inference(extcnf_or_neg,[status(thm)],[137]) ).

thf(148,plain,
    ( ( ~ ! [SX0: $i,SX1: $i] :
            ( ~ ( complement @ SX1 @ SX0 )
            | ( ( addition @ SX0 @ SX1 )
              = one ) ) )
    = $false ),
    inference(extcnf_or_neg,[status(thm)],[137]) ).

thf(149,plain,
    ! [SV31: $i] :
      ( ( ( ~ ( test @ SV31 ) )
        = $true )
      | ( ( ! [SY58: $i] :
              ( ( ( c @ SV31 )
               != SY58 )
              | ( complement @ SV31 @ SY58 ) ) )
        = $true ) ),
    inference(extcnf_or_pos,[status(thm)],[138]) ).

thf(150,plain,
    ! [SV32: $i] :
      ( ( ( ~ ( test @ SV32 ) )
        = $true )
      | ( ( ! [SY59: $i] :
              ( ~ ( complement @ SV32 @ SY59 )
              | ( ( c @ SV32 )
                = SY59 ) ) )
        = $true ) ),
    inference(extcnf_or_pos,[status(thm)],[139]) ).

thf(151,plain,
    ! [SV13: $i,SV20: $i] :
      ( ( ( test @ SV20 )
        = $false )
      | ( ( test @ SV13 )
        = $false )
      | ( ( ( c @ ( addition @ SV13 @ SV20 ) )
          = ( multiplication @ ( c @ SV13 ) @ ( c @ SV20 ) ) )
        = $true ) ),
    inference(extcnf_not_pos,[status(thm)],[140]) ).

thf(152,plain,
    ! [SV14: $i,SV21: $i] :
      ( ( ( test @ SV21 )
        = $false )
      | ( ( test @ SV14 )
        = $false )
      | ( ( ( c @ ( multiplication @ SV14 @ SV21 ) )
          = ( addition @ ( c @ SV14 ) @ ( c @ SV21 ) ) )
        = $true ) ),
    inference(extcnf_not_pos,[status(thm)],[141]) ).

thf(153,plain,
    ! [SV33: $i,SV26: $i] :
      ( ( ( ( ( addition @ SV26 @ SV33 )
           != SV33 ) )
        = $true )
      | ( ( leq @ SV26 @ SV33 )
        = $true ) ),
    inference(extcnf_or_pos,[status(thm)],[142]) ).

thf(154,plain,
    ! [SV34: $i,SV27: $i] :
      ( ( ( ~ ( leq @ SV27 @ SV34 ) )
        = $true )
      | ( ( ( addition @ SV27 @ SV34 )
          = SV34 )
        = $true ) ),
    inference(extcnf_or_pos,[status(thm)],[143]) ).

thf(155,plain,
    ! [SV28: $i,SV36: $i] :
      ( ( ( ~ ( complement @ SV36 @ SV28 ) )
        = $true )
      | ( ( test @ SV28 )
        = $true ) ),
    inference(extcnf_forall_pos,[status(thm)],[144]) ).

thf(156,plain,
    ! [SV29: $i] :
      ( ( ( test @ SV29 )
        = $false )
      | ( ( complement @ ( sK4_X1 @ SV29 ) @ SV29 )
        = $true ) ),
    inference(extcnf_not_pos,[status(thm)],[145]) ).

thf(157,plain,
    ! [SV35: $i,SV30: $i] :
      ( ( ( ( ( multiplication @ SV30 @ SV35 )
           != zero )
          | ( ( multiplication @ SV35 @ SV30 )
           != zero )
          | ( ( addition @ SV30 @ SV35 )
           != one ) )
        = $true )
      | ( ( complement @ SV35 @ SV30 )
        = $true ) ),
    inference(extcnf_or_pos,[status(thm)],[146]) ).

thf(158,plain,
    ( ( ~ ( ~ ! [SX0: $i,SX1: $i] :
                ( ~ ( complement @ SX1 @ SX0 )
                | ( ( multiplication @ SX0 @ SX1 )
                  = zero ) )
          | ~ ! [SX0: $i,SX1: $i] :
                ( ~ ( complement @ SX1 @ SX0 )
                | ( ( multiplication @ SX1 @ SX0 )
                  = zero ) ) ) )
    = $true ),
    inference(extcnf_not_neg,[status(thm)],[147]) ).

thf(159,plain,
    ( ( ! [SX0: $i,SX1: $i] :
          ( ~ ( complement @ SX1 @ SX0 )
          | ( ( addition @ SX0 @ SX1 )
            = one ) ) )
    = $true ),
    inference(extcnf_not_neg,[status(thm)],[148]) ).

thf(160,plain,
    ! [SV31: $i] :
      ( ( ( test @ SV31 )
        = $false )
      | ( ( ! [SY58: $i] :
              ( ( ( c @ SV31 )
               != SY58 )
              | ( complement @ SV31 @ SY58 ) ) )
        = $true ) ),
    inference(extcnf_not_pos,[status(thm)],[149]) ).

thf(161,plain,
    ! [SV32: $i] :
      ( ( ( test @ SV32 )
        = $false )
      | ( ( ! [SY59: $i] :
              ( ~ ( complement @ SV32 @ SY59 )
              | ( ( c @ SV32 )
                = SY59 ) ) )
        = $true ) ),
    inference(extcnf_not_pos,[status(thm)],[150]) ).

thf(162,plain,
    ! [SV33: $i,SV26: $i] :
      ( ( ( ( addition @ SV26 @ SV33 )
          = SV33 )
        = $false )
      | ( ( leq @ SV26 @ SV33 )
        = $true ) ),
    inference(extcnf_not_pos,[status(thm)],[153]) ).

thf(163,plain,
    ! [SV34: $i,SV27: $i] :
      ( ( ( leq @ SV27 @ SV34 )
        = $false )
      | ( ( ( addition @ SV27 @ SV34 )
          = SV34 )
        = $true ) ),
    inference(extcnf_not_pos,[status(thm)],[154]) ).

thf(164,plain,
    ! [SV28: $i,SV36: $i] :
      ( ( ( complement @ SV36 @ SV28 )
        = $false )
      | ( ( test @ SV28 )
        = $true ) ),
    inference(extcnf_not_pos,[status(thm)],[155]) ).

thf(165,plain,
    ! [SV35: $i,SV30: $i] :
      ( ( ( ( ( multiplication @ SV30 @ SV35 )
           != zero )
          | ( ( multiplication @ SV35 @ SV30 )
           != zero ) )
        = $true )
      | ( ( ( ( addition @ SV30 @ SV35 )
           != one ) )
        = $true )
      | ( ( complement @ SV35 @ SV30 )
        = $true ) ),
    inference(extcnf_or_pos,[status(thm)],[157]) ).

thf(166,plain,
    ( ( ~ ! [SX0: $i,SX1: $i] :
            ( ~ ( complement @ SX1 @ SX0 )
            | ( ( multiplication @ SX0 @ SX1 )
              = zero ) )
      | ~ ! [SX0: $i,SX1: $i] :
            ( ~ ( complement @ SX1 @ SX0 )
            | ( ( multiplication @ SX1 @ SX0 )
              = zero ) ) )
    = $false ),
    inference(extcnf_not_pos,[status(thm)],[158]) ).

thf(167,plain,
    ! [SV37: $i] :
      ( ( ! [SY60: $i] :
            ( ~ ( complement @ SY60 @ SV37 )
            | ( ( addition @ SV37 @ SY60 )
              = one ) ) )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[159]) ).

thf(168,plain,
    ! [SV38: $i,SV31: $i] :
      ( ( ( ( ( c @ SV31 )
           != SV38 )
          | ( complement @ SV31 @ SV38 ) )
        = $true )
      | ( ( test @ SV31 )
        = $false ) ),
    inference(extcnf_forall_pos,[status(thm)],[160]) ).

thf(169,plain,
    ! [SV39: $i,SV32: $i] :
      ( ( ( ~ ( complement @ SV32 @ SV39 )
          | ( ( c @ SV32 )
            = SV39 ) )
        = $true )
      | ( ( test @ SV32 )
        = $false ) ),
    inference(extcnf_forall_pos,[status(thm)],[161]) ).

thf(170,plain,
    ! [SV35: $i,SV30: $i] :
      ( ( ( ( ( multiplication @ SV30 @ SV35 )
           != zero ) )
        = $true )
      | ( ( ( ( multiplication @ SV35 @ SV30 )
           != zero ) )
        = $true )
      | ( ( ( ( addition @ SV30 @ SV35 )
           != one ) )
        = $true )
      | ( ( complement @ SV35 @ SV30 )
        = $true ) ),
    inference(extcnf_or_pos,[status(thm)],[165]) ).

thf(171,plain,
    ( ( ~ ! [SX0: $i,SX1: $i] :
            ( ~ ( complement @ SX1 @ SX0 )
            | ( ( multiplication @ SX0 @ SX1 )
              = zero ) ) )
    = $false ),
    inference(extcnf_or_neg,[status(thm)],[166]) ).

thf(172,plain,
    ( ( ~ ! [SX0: $i,SX1: $i] :
            ( ~ ( complement @ SX1 @ SX0 )
            | ( ( multiplication @ SX1 @ SX0 )
              = zero ) ) )
    = $false ),
    inference(extcnf_or_neg,[status(thm)],[166]) ).

thf(173,plain,
    ! [SV37: $i,SV40: $i] :
      ( ( ~ ( complement @ SV40 @ SV37 )
        | ( ( addition @ SV37 @ SV40 )
          = one ) )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[167]) ).

thf(174,plain,
    ! [SV38: $i,SV31: $i] :
      ( ( ( ( ( c @ SV31 )
           != SV38 ) )
        = $true )
      | ( ( complement @ SV31 @ SV38 )
        = $true )
      | ( ( test @ SV31 )
        = $false ) ),
    inference(extcnf_or_pos,[status(thm)],[168]) ).

thf(175,plain,
    ! [SV39: $i,SV32: $i] :
      ( ( ( ~ ( complement @ SV32 @ SV39 ) )
        = $true )
      | ( ( ( c @ SV32 )
          = SV39 )
        = $true )
      | ( ( test @ SV32 )
        = $false ) ),
    inference(extcnf_or_pos,[status(thm)],[169]) ).

thf(176,plain,
    ! [SV35: $i,SV30: $i] :
      ( ( ( ( multiplication @ SV30 @ SV35 )
          = zero )
        = $false )
      | ( ( ( ( multiplication @ SV35 @ SV30 )
           != zero ) )
        = $true )
      | ( ( ( ( addition @ SV30 @ SV35 )
           != one ) )
        = $true )
      | ( ( complement @ SV35 @ SV30 )
        = $true ) ),
    inference(extcnf_not_pos,[status(thm)],[170]) ).

thf(177,plain,
    ( ( ! [SX0: $i,SX1: $i] :
          ( ~ ( complement @ SX1 @ SX0 )
          | ( ( multiplication @ SX0 @ SX1 )
            = zero ) ) )
    = $true ),
    inference(extcnf_not_neg,[status(thm)],[171]) ).

thf(178,plain,
    ( ( ! [SX0: $i,SX1: $i] :
          ( ~ ( complement @ SX1 @ SX0 )
          | ( ( multiplication @ SX1 @ SX0 )
            = zero ) ) )
    = $true ),
    inference(extcnf_not_neg,[status(thm)],[172]) ).

thf(179,plain,
    ! [SV37: $i,SV40: $i] :
      ( ( ( ~ ( complement @ SV40 @ SV37 ) )
        = $true )
      | ( ( ( addition @ SV37 @ SV40 )
          = one )
        = $true ) ),
    inference(extcnf_or_pos,[status(thm)],[173]) ).

thf(180,plain,
    ! [SV38: $i,SV31: $i] :
      ( ( ( ( c @ SV31 )
          = SV38 )
        = $false )
      | ( ( complement @ SV31 @ SV38 )
        = $true )
      | ( ( test @ SV31 )
        = $false ) ),
    inference(extcnf_not_pos,[status(thm)],[174]) ).

thf(181,plain,
    ! [SV39: $i,SV32: $i] :
      ( ( ( complement @ SV32 @ SV39 )
        = $false )
      | ( ( ( c @ SV32 )
          = SV39 )
        = $true )
      | ( ( test @ SV32 )
        = $false ) ),
    inference(extcnf_not_pos,[status(thm)],[175]) ).

thf(182,plain,
    ! [SV30: $i,SV35: $i] :
      ( ( ( ( multiplication @ SV35 @ SV30 )
          = zero )
        = $false )
      | ( ( ( multiplication @ SV30 @ SV35 )
          = zero )
        = $false )
      | ( ( ( ( addition @ SV30 @ SV35 )
           != one ) )
        = $true )
      | ( ( complement @ SV35 @ SV30 )
        = $true ) ),
    inference(extcnf_not_pos,[status(thm)],[176]) ).

thf(183,plain,
    ! [SV41: $i] :
      ( ( ! [SY61: $i] :
            ( ~ ( complement @ SY61 @ SV41 )
            | ( ( multiplication @ SV41 @ SY61 )
              = zero ) ) )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[177]) ).

thf(184,plain,
    ! [SV42: $i] :
      ( ( ! [SY62: $i] :
            ( ~ ( complement @ SY62 @ SV42 )
            | ( ( multiplication @ SY62 @ SV42 )
              = zero ) ) )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[178]) ).

thf(185,plain,
    ! [SV37: $i,SV40: $i] :
      ( ( ( complement @ SV40 @ SV37 )
        = $false )
      | ( ( ( addition @ SV37 @ SV40 )
          = one )
        = $true ) ),
    inference(extcnf_not_pos,[status(thm)],[179]) ).

thf(186,plain,
    ! [SV35: $i,SV30: $i] :
      ( ( ( ( addition @ SV30 @ SV35 )
          = one )
        = $false )
      | ( ( ( multiplication @ SV30 @ SV35 )
          = zero )
        = $false )
      | ( ( ( multiplication @ SV35 @ SV30 )
          = zero )
        = $false )
      | ( ( complement @ SV35 @ SV30 )
        = $true ) ),
    inference(extcnf_not_pos,[status(thm)],[182]) ).

thf(187,plain,
    ! [SV41: $i,SV43: $i] :
      ( ( ~ ( complement @ SV43 @ SV41 )
        | ( ( multiplication @ SV41 @ SV43 )
          = zero ) )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[183]) ).

thf(188,plain,
    ! [SV42: $i,SV44: $i] :
      ( ( ~ ( complement @ SV44 @ SV42 )
        | ( ( multiplication @ SV44 @ SV42 )
          = zero ) )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[184]) ).

thf(189,plain,
    ! [SV41: $i,SV43: $i] :
      ( ( ( ~ ( complement @ SV43 @ SV41 ) )
        = $true )
      | ( ( ( multiplication @ SV41 @ SV43 )
          = zero )
        = $true ) ),
    inference(extcnf_or_pos,[status(thm)],[187]) ).

thf(190,plain,
    ! [SV42: $i,SV44: $i] :
      ( ( ( ~ ( complement @ SV44 @ SV42 ) )
        = $true )
      | ( ( ( multiplication @ SV44 @ SV42 )
          = zero )
        = $true ) ),
    inference(extcnf_or_pos,[status(thm)],[188]) ).

thf(191,plain,
    ! [SV41: $i,SV43: $i] :
      ( ( ( complement @ SV43 @ SV41 )
        = $false )
      | ( ( ( multiplication @ SV41 @ SV43 )
          = zero )
        = $true ) ),
    inference(extcnf_not_pos,[status(thm)],[189]) ).

thf(192,plain,
    ! [SV42: $i,SV44: $i] :
      ( ( ( complement @ SV44 @ SV42 )
        = $false )
      | ( ( ( multiplication @ SV44 @ SV42 )
          = zero )
        = $true ) ),
    inference(extcnf_not_pos,[status(thm)],[190]) ).

thf(193,plain,
    $false = $true,
    inference(fo_atp_e,[status(thm)],[73,192,191,186,185,181,180,164,163,162,156,152,151,119,118,117,116,105,100,95,91,90,87,86,84,83,75,74]) ).

thf(194,plain,
    $false,
    inference(solved_all_splits,[solved_all_splits(join,[])],[193]) ).

%------------------------------------------------------------------------------
%----ORIGINAL SYSTEM OUTPUT
% 0.03/0.12  % Problem  : KLE025+2 : TPTP v8.1.0. Released v4.0.0.
% 0.03/0.13  % Command  : leo --timeout %d --proofoutput 1 --foatp e --atp e=./eprover %s
% 0.12/0.34  % Computer : n021.cluster.edu
% 0.12/0.34  % Model    : x86_64 x86_64
% 0.12/0.34  % CPU      : Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz
% 0.12/0.34  % Memory   : 8042.1875MB
% 0.12/0.34  % OS       : Linux 3.10.0-693.el7.x86_64
% 0.12/0.34  % CPULimit : 300
% 0.12/0.34  % WCLimit  : 600
% 0.12/0.34  % DateTime : Thu Jun 16 09:38:44 EDT 2022
% 0.12/0.34  % CPUTime  : 
% 0.12/0.35  
% 0.12/0.35   No.of.Axioms: 18
% 0.12/0.35  
% 0.12/0.35   Length.of.Defs: 0
% 0.12/0.35  
% 0.12/0.35   Contains.Choice.Funs: false
% 0.12/0.36  (rf:0,axioms:18,ps:3,u:6,ude:true,rLeibEQ:true,rAndEQ:true,use_choice:true,use_extuni:true,use_extcnf_combined:true,expand_extuni:false,foatp:e,atp_timeout:600,atp_calls_frequency:10,ordering:none,proof_output:1,protocol_output:false,clause_count:20,loop_count:0,foatp_calls:0,translation:fof_full)............
% 68.26/68.44  
% 68.26/68.44  ********************************
% 68.26/68.44  *   All subproblems solved!    *
% 68.26/68.44  ********************************
% 68.26/68.44  % SZS status Theorem for /export/starexec/sandbox/benchmark/theBenchmark.p : (rf:0,axioms:21,ps:3,u:6,ude:true,rLeibEQ:true,rAndEQ:true,use_choice:true,use_extuni:true,use_extcnf_combined:true,expand_extuni:false,foatp:e,atp_timeout:74,atp_calls_frequency:10,ordering:none,proof_output:1,protocol_output:false,clause_count:193,loop_count:0,foatp_calls:1,translation:fof_full)
% 68.26/68.45  
% 68.26/68.45  %**** Beginning of derivation protocol ****
% 68.26/68.45  % SZS output start CNFRefutation
% See solution above
% 68.26/68.45  
% 68.26/68.45  %**** End of derivation protocol ****
% 68.26/68.45  %**** no. of clauses in derivation: 194 ****
% 68.26/68.45  %**** clause counter: 193 ****
% 68.26/68.45  
% 68.26/68.45  % SZS status Theorem for /export/starexec/sandbox/benchmark/theBenchmark.p : (rf:0,axioms:21,ps:3,u:6,ude:true,rLeibEQ:true,rAndEQ:true,use_choice:true,use_extuni:true,use_extcnf_combined:true,expand_extuni:false,foatp:e,atp_timeout:74,atp_calls_frequency:10,ordering:none,proof_output:1,protocol_output:false,clause_count:193,loop_count:0,foatp_calls:1,translation:fof_full)
%------------------------------------------------------------------------------