public class org.apache.lucene.util.automaton.Automaton implements org.apache.lucene.util.Accountable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.lucene.util.automaton.Automaton
  super_class: java.lang.Object
{
  private int nextState;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int nextTransition;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int curState;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int[] states;
    descriptor: [I
    flags: (0x0002) ACC_PRIVATE

  private final java.util.BitSet isAccept;
    descriptor: Ljava/util/BitSet;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private int[] transitions;
    descriptor: [I
    flags: (0x0002) ACC_PRIVATE

  private boolean deterministic;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private final org.apache.lucene.util.Sorter destMinMaxSorter;
    descriptor: Lorg/apache/lucene/util/Sorter;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.apache.lucene.util.Sorter minMaxDestSorter;
    descriptor: Lorg/apache/lucene/util/Sorter;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  static final boolean $assertionsDisabled;
    descriptor: Z
    flags: (0x1018) ACC_STATIC, ACC_FINAL, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 56
            ldc Lorg/apache/lucene/util/automaton/Automaton;
            invokevirtual java.lang.Class.desiredAssertionStatus:()Z
            ifne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: putstatic org.apache.lucene.util.automaton.Automaton.$assertionsDisabled:Z
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.lucene.util.automaton.Automaton this
         0: .line 89
            aload 0 /* this */
            iconst_2
            iconst_2
            invokespecial org.apache.lucene.util.automaton.Automaton.<init>:(II)V
         1: .line 90
            return
        end local 0 // org.apache.lucene.util.automaton.Automaton this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/lucene/util/automaton/Automaton;

  public void <init>(int, int);
    descriptor: (II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.apache.lucene.util.automaton.Automaton this
        start local 1 // int numStates
        start local 2 // int numTransitions
         0: .line 101
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 71
            aload 0 /* this */
            iconst_m1
            putfield org.apache.lucene.util.automaton.Automaton.curState:I
         2: .line 85
            aload 0 /* this */
            iconst_1
            putfield org.apache.lucene.util.automaton.Automaton.deterministic:Z
         3: .line 364
            aload 0 /* this */
            new org.apache.lucene.util.automaton.Automaton$1
            dup
            aload 0 /* this */
            invokespecial org.apache.lucene.util.automaton.Automaton$1.<init>:(Lorg/apache/lucene/util/automaton/Automaton;)V
            putfield org.apache.lucene.util.automaton.Automaton.destMinMaxSorter:Lorg/apache/lucene/util/Sorter;
         4: .line 418
            aload 0 /* this */
            new org.apache.lucene.util.automaton.Automaton$2
            dup
            aload 0 /* this */
            invokespecial org.apache.lucene.util.automaton.Automaton$2.<init>:(Lorg/apache/lucene/util/automaton/Automaton;)V
            putfield org.apache.lucene.util.automaton.Automaton.minMaxDestSorter:Lorg/apache/lucene/util/Sorter;
         5: .line 102
            aload 0 /* this */
            iload 1 /* numStates */
            iconst_2
            imul
            newarray 10
            putfield org.apache.lucene.util.automaton.Automaton.states:[I
         6: .line 103
            aload 0 /* this */
            new java.util.BitSet
            dup
            iload 1 /* numStates */
            invokespecial java.util.BitSet.<init>:(I)V
            putfield org.apache.lucene.util.automaton.Automaton.isAccept:Ljava/util/BitSet;
         7: .line 104
            aload 0 /* this */
            iload 2 /* numTransitions */
            iconst_3
            imul
            newarray 10
            putfield org.apache.lucene.util.automaton.Automaton.transitions:[I
         8: .line 105
            return
        end local 2 // int numTransitions
        end local 1 // int numStates
        end local 0 // org.apache.lucene.util.automaton.Automaton this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    9     0            this  Lorg/apache/lucene/util/automaton/Automaton;
            0    9     1       numStates  I
            0    9     2  numTransitions  I
    MethodParameters:
                Name  Flags
      numStates       
      numTransitions  

  public int createState();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.apache.lucene.util.automaton.Automaton this
         0: .line 109
            aload 0 /* this */
            invokevirtual org.apache.lucene.util.automaton.Automaton.growStates:()V
         1: .line 110
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.nextState:I
            iconst_2
            idiv
            istore 1 /* state */
        start local 1 // int state
         2: .line 111
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.states:[I
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.nextState:I
            iconst_m1
            iastore
         3: .line 112
            aload 0 /* this */
            dup
            getfield org.apache.lucene.util.automaton.Automaton.nextState:I
            iconst_2
            iadd
            putfield org.apache.lucene.util.automaton.Automaton.nextState:I
         4: .line 113
            iload 1 /* state */
            ireturn
        end local 1 // int state
        end local 0 // org.apache.lucene.util.automaton.Automaton this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/apache/lucene/util/automaton/Automaton;
            2    5     1  state  I

  public void setAccept(int, boolean);
    descriptor: (IZ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.apache.lucene.util.automaton.Automaton this
        start local 1 // int state
        start local 2 // boolean accept
         0: .line 118
            iload 1 /* state */
            aload 0 /* this */
            invokevirtual org.apache.lucene.util.automaton.Automaton.getNumStates:()I
            invokestatic org.apache.lucene.util.FutureObjects.checkIndex:(II)I
            pop
         1: .line 119
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.isAccept:Ljava/util/BitSet;
            iload 1 /* state */
            iload 2 /* accept */
            invokevirtual java.util.BitSet.set:(IZ)V
         2: .line 120
            return
        end local 2 // boolean accept
        end local 1 // int state
        end local 0 // org.apache.lucene.util.automaton.Automaton this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/apache/lucene/util/automaton/Automaton;
            0    3     1   state  I
            0    3     2  accept  Z
    MethodParameters:
        Name  Flags
      state   
      accept  

  public org.apache.lucene.util.automaton.Transition[][] getSortedTransitions();
    descriptor: ()[[Lorg/apache/lucene/util/automaton/Transition;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=1
        start local 0 // org.apache.lucene.util.automaton.Automaton this
         0: .line 125
            aload 0 /* this */
            invokevirtual org.apache.lucene.util.automaton.Automaton.getNumStates:()I
            istore 1 /* numStates */
        start local 1 // int numStates
         1: .line 126
            iload 1 /* numStates */
            anewarray org.apache.lucene.util.automaton.Transition[]
            astore 2 /* transitions */
        start local 2 // org.apache.lucene.util.automaton.Transition[][] transitions
         2: .line 127
            iconst_0
            istore 3 /* s */
        start local 3 // int s
         3: goto 14
         4: .line 128
      StackMap locals: int org.apache.lucene.util.automaton.Transition[][] int
      StackMap stack:
            aload 0 /* this */
            iload 3 /* s */
            invokevirtual org.apache.lucene.util.automaton.Automaton.getNumTransitions:(I)I
            istore 4 /* numTransitions */
        start local 4 // int numTransitions
         5: .line 129
            aload 2 /* transitions */
            iload 3 /* s */
            iload 4 /* numTransitions */
            anewarray org.apache.lucene.util.automaton.Transition
            aastore
         6: .line 130
            iconst_0
            istore 5 /* t */
        start local 5 // int t
         7: goto 12
         8: .line 131
      StackMap locals: int int
      StackMap stack:
            new org.apache.lucene.util.automaton.Transition
            dup
            invokespecial org.apache.lucene.util.automaton.Transition.<init>:()V
            astore 6 /* transition */
        start local 6 // org.apache.lucene.util.automaton.Transition transition
         9: .line 132
            aload 0 /* this */
            iload 3 /* s */
            iload 5 /* t */
            aload 6 /* transition */
            invokevirtual org.apache.lucene.util.automaton.Automaton.getTransition:(IILorg/apache/lucene/util/automaton/Transition;)V
        10: .line 133
            aload 2 /* transitions */
            iload 3 /* s */
            aaload
            iload 5 /* t */
            aload 6 /* transition */
            aastore
        end local 6 // org.apache.lucene.util.automaton.Transition transition
        11: .line 130
            iinc 5 /* t */ 1
      StackMap locals:
      StackMap stack:
        12: iload 5 /* t */
            iload 4 /* numTransitions */
            if_icmplt 8
        end local 5 // int t
        end local 4 // int numTransitions
        13: .line 127
            iinc 3 /* s */ 1
      StackMap locals:
      StackMap stack:
        14: iload 3 /* s */
            iload 1 /* numStates */
            if_icmplt 4
        end local 3 // int s
        15: .line 137
            aload 2 /* transitions */
            areturn
        end local 2 // org.apache.lucene.util.automaton.Transition[][] transitions
        end local 1 // int numStates
        end local 0 // org.apache.lucene.util.automaton.Automaton this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   16     0            this  Lorg/apache/lucene/util/automaton/Automaton;
            1   16     1       numStates  I
            2   16     2     transitions  [[Lorg/apache/lucene/util/automaton/Transition;
            3   15     3               s  I
            5   13     4  numTransitions  I
            7   13     5               t  I
            9   11     6      transition  Lorg/apache/lucene/util/automaton/Transition;

  java.util.BitSet getAcceptStates();
    descriptor: ()Ljava/util/BitSet;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.util.automaton.Automaton this
         0: .line 142
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.isAccept:Ljava/util/BitSet;
            areturn
        end local 0 // org.apache.lucene.util.automaton.Automaton this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/util/automaton/Automaton;

  public boolean isAccept(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.lucene.util.automaton.Automaton this
        start local 1 // int state
         0: .line 147
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.isAccept:Ljava/util/BitSet;
            iload 1 /* state */
            invokevirtual java.util.BitSet.get:(I)Z
            ireturn
        end local 1 // int state
        end local 0 // org.apache.lucene.util.automaton.Automaton this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/apache/lucene/util/automaton/Automaton;
            0    1     1  state  I
    MethodParameters:
       Name  Flags
      state  

  public void addTransition(int, int, int);
    descriptor: (III)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // org.apache.lucene.util.automaton.Automaton this
        start local 1 // int source
        start local 2 // int dest
        start local 3 // int label
         0: .line 152
            aload 0 /* this */
            iload 1 /* source */
            iload 2 /* dest */
            iload 3 /* label */
            iload 3 /* label */
            invokevirtual org.apache.lucene.util.automaton.Automaton.addTransition:(IIII)V
         1: .line 153
            return
        end local 3 // int label
        end local 2 // int dest
        end local 1 // int source
        end local 0 // org.apache.lucene.util.automaton.Automaton this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/apache/lucene/util/automaton/Automaton;
            0    2     1  source  I
            0    2     2    dest  I
            0    2     3   label  I
    MethodParameters:
        Name  Flags
      source  
      dest    
      label   

  public void addTransition(int, int, int, int);
    descriptor: (IIII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=5
        start local 0 // org.apache.lucene.util.automaton.Automaton this
        start local 1 // int source
        start local 2 // int dest
        start local 3 // int min
        start local 4 // int max
         0: .line 157
            getstatic org.apache.lucene.util.automaton.Automaton.$assertionsDisabled:Z
            ifne 1
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.nextTransition:I
            iconst_3
            irem
            ifeq 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 159
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.nextState:I
            iconst_2
            idiv
            istore 5 /* bounds */
        start local 5 // int bounds
         2: .line 160
            iload 1 /* source */
            iload 5 /* bounds */
            invokestatic org.apache.lucene.util.FutureObjects.checkIndex:(II)I
            pop
         3: .line 161
            iload 2 /* dest */
            iload 5 /* bounds */
            invokestatic org.apache.lucene.util.FutureObjects.checkIndex:(II)I
            pop
         4: .line 163
            aload 0 /* this */
            invokevirtual org.apache.lucene.util.automaton.Automaton.growTransitions:()V
         5: .line 164
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.curState:I
            iload 1 /* source */
            if_icmpeq 13
         6: .line 165
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.curState:I
            iconst_m1
            if_icmpeq 8
         7: .line 166
            aload 0 /* this */
            invokevirtual org.apache.lucene.util.automaton.Automaton.finishCurrentState:()V
         8: .line 170
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* source */
            putfield org.apache.lucene.util.automaton.Automaton.curState:I
         9: .line 171
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.states:[I
            iconst_2
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.curState:I
            imul
            iaload
            iconst_m1
            if_icmpeq 11
        10: .line 172
            new java.lang.IllegalStateException
            dup
            new java.lang.StringBuilder
            dup
            ldc "from state ("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* source */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ") already had transitions added"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
        11: .line 174
      StackMap locals:
      StackMap stack:
            getstatic org.apache.lucene.util.automaton.Automaton.$assertionsDisabled:Z
            ifne 12
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.states:[I
            iconst_2
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.curState:I
            imul
            iconst_1
            iadd
            iaload
            ifeq 12
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        12: .line 175
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.states:[I
            iconst_2
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.curState:I
            imul
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.nextTransition:I
            iastore
        13: .line 178
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.transitions:[I
            aload 0 /* this */
            dup
            getfield org.apache.lucene.util.automaton.Automaton.nextTransition:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.lucene.util.automaton.Automaton.nextTransition:I
            iload 2 /* dest */
            iastore
        14: .line 179
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.transitions:[I
            aload 0 /* this */
            dup
            getfield org.apache.lucene.util.automaton.Automaton.nextTransition:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.lucene.util.automaton.Automaton.nextTransition:I
            iload 3 /* min */
            iastore
        15: .line 180
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.transitions:[I
            aload 0 /* this */
            dup
            getfield org.apache.lucene.util.automaton.Automaton.nextTransition:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.lucene.util.automaton.Automaton.nextTransition:I
            iload 4 /* max */
            iastore
        16: .line 183
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.states:[I
            iconst_2
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.curState:I
            imul
            iconst_1
            iadd
            dup2
            iaload
            iconst_1
            iadd
            iastore
        17: .line 184
            return
        end local 5 // int bounds
        end local 4 // int max
        end local 3 // int min
        end local 2 // int dest
        end local 1 // int source
        end local 0 // org.apache.lucene.util.automaton.Automaton this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   18     0    this  Lorg/apache/lucene/util/automaton/Automaton;
            0   18     1  source  I
            0   18     2    dest  I
            0   18     3     min  I
            0   18     4     max  I
            2   18     5  bounds  I
    MethodParameters:
        Name  Flags
      source  
      dest    
      min     
      max     

  public void addEpsilon(int, int);
    descriptor: (II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=3
        start local 0 // org.apache.lucene.util.automaton.Automaton this
        start local 1 // int source
        start local 2 // int dest
         0: .line 190
            new org.apache.lucene.util.automaton.Transition
            dup
            invokespecial org.apache.lucene.util.automaton.Transition.<init>:()V
            astore 3 /* t */
        start local 3 // org.apache.lucene.util.automaton.Transition t
         1: .line 191
            aload 0 /* this */
            iload 2 /* dest */
            aload 3 /* t */
            invokevirtual org.apache.lucene.util.automaton.Automaton.initTransition:(ILorg/apache/lucene/util/automaton/Transition;)I
            istore 4 /* count */
        start local 4 // int count
         2: .line 192
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         3: goto 7
         4: .line 193
      StackMap locals: org.apache.lucene.util.automaton.Transition int int
      StackMap stack:
            aload 0 /* this */
            aload 3 /* t */
            invokevirtual org.apache.lucene.util.automaton.Automaton.getNextTransition:(Lorg/apache/lucene/util/automaton/Transition;)V
         5: .line 194
            aload 0 /* this */
            iload 1 /* source */
            aload 3 /* t */
            getfield org.apache.lucene.util.automaton.Transition.dest:I
            aload 3 /* t */
            getfield org.apache.lucene.util.automaton.Transition.min:I
            aload 3 /* t */
            getfield org.apache.lucene.util.automaton.Transition.max:I
            invokevirtual org.apache.lucene.util.automaton.Automaton.addTransition:(IIII)V
         6: .line 192
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 5 /* i */
            iload 4 /* count */
            if_icmplt 4
        end local 5 // int i
         8: .line 196
            aload 0 /* this */
            iload 2 /* dest */
            invokevirtual org.apache.lucene.util.automaton.Automaton.isAccept:(I)Z
            ifeq 10
         9: .line 197
            aload 0 /* this */
            iload 1 /* source */
            iconst_1
            invokevirtual org.apache.lucene.util.automaton.Automaton.setAccept:(IZ)V
        10: .line 199
      StackMap locals:
      StackMap stack:
            return
        end local 4 // int count
        end local 3 // org.apache.lucene.util.automaton.Transition t
        end local 2 // int dest
        end local 1 // int source
        end local 0 // org.apache.lucene.util.automaton.Automaton this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   11     0    this  Lorg/apache/lucene/util/automaton/Automaton;
            0   11     1  source  I
            0   11     2    dest  I
            1   11     3       t  Lorg/apache/lucene/util/automaton/Transition;
            2   11     4   count  I
            3    8     5       i  I
    MethodParameters:
        Name  Flags
      source  
      dest    

  public void copy(org.apache.lucene.util.automaton.Automaton);
    descriptor: (Lorg/apache/lucene/util/automaton/Automaton;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=7, args_size=2
        start local 0 // org.apache.lucene.util.automaton.Automaton this
        start local 1 // org.apache.lucene.util.automaton.Automaton other
         0: .line 206
            aload 0 /* this */
            invokevirtual org.apache.lucene.util.automaton.Automaton.getNumStates:()I
            istore 2 /* stateOffset */
        start local 2 // int stateOffset
         1: .line 207
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.states:[I
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.nextState:I
            aload 1 /* other */
            getfield org.apache.lucene.util.automaton.Automaton.nextState:I
            iadd
            invokestatic org.apache.lucene.util.ArrayUtil.grow:([II)[I
            putfield org.apache.lucene.util.automaton.Automaton.states:[I
         2: .line 208
            aload 1 /* other */
            getfield org.apache.lucene.util.automaton.Automaton.states:[I
            iconst_0
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.states:[I
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.nextState:I
            aload 1 /* other */
            getfield org.apache.lucene.util.automaton.Automaton.nextState:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         3: .line 209
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         4: goto 8
         5: .line 210
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.states:[I
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.nextState:I
            iload 3 /* i */
            iadd
            iaload
            iconst_m1
            if_icmpeq 7
         6: .line 211
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.states:[I
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.nextState:I
            iload 3 /* i */
            iadd
            dup2
            iaload
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.nextTransition:I
            iadd
            iastore
         7: .line 209
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 2
      StackMap locals:
      StackMap stack:
         8: iload 3 /* i */
            aload 1 /* other */
            getfield org.apache.lucene.util.automaton.Automaton.nextState:I
            if_icmplt 5
        end local 3 // int i
         9: .line 214
            aload 0 /* this */
            dup
            getfield org.apache.lucene.util.automaton.Automaton.nextState:I
            aload 1 /* other */
            getfield org.apache.lucene.util.automaton.Automaton.nextState:I
            iadd
            putfield org.apache.lucene.util.automaton.Automaton.nextState:I
        10: .line 215
            aload 1 /* other */
            invokevirtual org.apache.lucene.util.automaton.Automaton.getNumStates:()I
            istore 3 /* otherNumStates */
        start local 3 // int otherNumStates
        11: .line 216
            aload 1 /* other */
            invokevirtual org.apache.lucene.util.automaton.Automaton.getAcceptStates:()Ljava/util/BitSet;
            astore 4 /* otherAcceptStates */
        start local 4 // java.util.BitSet otherAcceptStates
        12: .line 217
            iconst_0
            istore 5 /* state */
        start local 5 // int state
        13: .line 218
            goto 16
        14: .line 219
      StackMap locals: java.util.BitSet int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* stateOffset */
            iload 5 /* state */
            iadd
            iconst_1
            invokevirtual org.apache.lucene.util.automaton.Automaton.setAccept:(IZ)V
        15: .line 220
            iinc 5 /* state */ 1
        16: .line 218
      StackMap locals:
      StackMap stack:
            iload 5 /* state */
            iload 3 /* otherNumStates */
            if_icmpge 17
            aload 4 /* otherAcceptStates */
            iload 5 /* state */
            invokevirtual java.util.BitSet.nextSetBit:(I)I
            dup
            istore 5 /* state */
            iconst_m1
            if_icmpne 14
        17: .line 224
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.transitions:[I
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.nextTransition:I
            aload 1 /* other */
            getfield org.apache.lucene.util.automaton.Automaton.nextTransition:I
            iadd
            invokestatic org.apache.lucene.util.ArrayUtil.grow:([II)[I
            putfield org.apache.lucene.util.automaton.Automaton.transitions:[I
        18: .line 225
            aload 1 /* other */
            getfield org.apache.lucene.util.automaton.Automaton.transitions:[I
            iconst_0
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.transitions:[I
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.nextTransition:I
            aload 1 /* other */
            getfield org.apache.lucene.util.automaton.Automaton.nextTransition:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        19: .line 226
            iconst_0
            istore 6 /* i */
        start local 6 // int i
        20: goto 23
        21: .line 227
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.transitions:[I
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.nextTransition:I
            iload 6 /* i */
            iadd
            dup2
            iaload
            iload 2 /* stateOffset */
            iadd
            iastore
        22: .line 226
            iinc 6 /* i */ 3
      StackMap locals:
      StackMap stack:
        23: iload 6 /* i */
            aload 1 /* other */
            getfield org.apache.lucene.util.automaton.Automaton.nextTransition:I
            if_icmplt 21
        end local 6 // int i
        24: .line 229
            aload 0 /* this */
            dup
            getfield org.apache.lucene.util.automaton.Automaton.nextTransition:I
            aload 1 /* other */
            getfield org.apache.lucene.util.automaton.Automaton.nextTransition:I
            iadd
            putfield org.apache.lucene.util.automaton.Automaton.nextTransition:I
        25: .line 231
            aload 1 /* other */
            getfield org.apache.lucene.util.automaton.Automaton.deterministic:Z
            ifne 27
        26: .line 232
            aload 0 /* this */
            iconst_0
            putfield org.apache.lucene.util.automaton.Automaton.deterministic:Z
        27: .line 234
      StackMap locals:
      StackMap stack:
            return
        end local 5 // int state
        end local 4 // java.util.BitSet otherAcceptStates
        end local 3 // int otherNumStates
        end local 2 // int stateOffset
        end local 1 // org.apache.lucene.util.automaton.Automaton other
        end local 0 // org.apache.lucene.util.automaton.Automaton this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   28     0               this  Lorg/apache/lucene/util/automaton/Automaton;
            0   28     1              other  Lorg/apache/lucene/util/automaton/Automaton;
            1   28     2        stateOffset  I
            4    9     3                  i  I
           11   28     3     otherNumStates  I
           12   28     4  otherAcceptStates  Ljava/util/BitSet;
           13   28     5              state  I
           20   24     6                  i  I
    MethodParameters:
       Name  Flags
      other  

  private void finishCurrentState();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=12, args_size=1
        start local 0 // org.apache.lucene.util.automaton.Automaton this
         0: .line 238
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.states:[I
            iconst_2
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.curState:I
            imul
            iconst_1
            iadd
            iaload
            istore 1 /* numTransitions */
        start local 1 // int numTransitions
         1: .line 239
            getstatic org.apache.lucene.util.automaton.Automaton.$assertionsDisabled:Z
            ifne 2
            iload 1 /* numTransitions */
            ifgt 2
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         2: .line 241
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.states:[I
            iconst_2
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.curState:I
            imul
            iaload
            istore 2 /* offset */
        start local 2 // int offset
         3: .line 242
            iload 2 /* offset */
            iconst_3
            idiv
            istore 3 /* start */
        start local 3 // int start
         4: .line 243
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.destMinMaxSorter:Lorg/apache/lucene/util/Sorter;
            iload 3 /* start */
            iload 3 /* start */
            iload 1 /* numTransitions */
            iadd
            invokevirtual org.apache.lucene.util.Sorter.sort:(II)V
         5: .line 246
            iconst_0
            istore 4 /* upto */
        start local 4 // int upto
         6: .line 247
            iconst_m1
            istore 5 /* min */
        start local 5 // int min
         7: .line 248
            iconst_m1
            istore 6 /* max */
        start local 6 // int max
         8: .line 249
            iconst_m1
            istore 7 /* dest */
        start local 7 // int dest
         9: .line 251
            iconst_0
            istore 8 /* i */
        start local 8 // int i
        10: goto 36
        11: .line 252
      StackMap locals: org.apache.lucene.util.automaton.Automaton int int int int int int int int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.transitions:[I
            iload 2 /* offset */
            iconst_3
            iload 8 /* i */
            imul
            iadd
            iaload
            istore 9 /* tDest */
        start local 9 // int tDest
        12: .line 253
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.transitions:[I
            iload 2 /* offset */
            iconst_3
            iload 8 /* i */
            imul
            iadd
            iconst_1
            iadd
            iaload
            istore 10 /* tMin */
        start local 10 // int tMin
        13: .line 254
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.transitions:[I
            iload 2 /* offset */
            iconst_3
            iload 8 /* i */
            imul
            iadd
            iconst_2
            iadd
            iaload
            istore 11 /* tMax */
        start local 11 // int tMax
        14: .line 256
            iload 7 /* dest */
            iload 9 /* tDest */
            if_icmpne 27
        15: .line 257
            iload 10 /* tMin */
            iload 6 /* max */
            iconst_1
            iadd
            if_icmpgt 19
        16: .line 258
            iload 11 /* tMax */
            iload 6 /* max */
            if_icmple 35
        17: .line 259
            iload 11 /* tMax */
            istore 6 /* max */
        18: .line 261
            goto 35
        19: .line 262
      StackMap locals: int int int
      StackMap stack:
            iload 7 /* dest */
            iconst_m1
            if_icmpeq 24
        20: .line 263
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.transitions:[I
            iload 2 /* offset */
            iconst_3
            iload 4 /* upto */
            imul
            iadd
            iload 7 /* dest */
            iastore
        21: .line 264
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.transitions:[I
            iload 2 /* offset */
            iconst_3
            iload 4 /* upto */
            imul
            iadd
            iconst_1
            iadd
            iload 5 /* min */
            iastore
        22: .line 265
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.transitions:[I
            iload 2 /* offset */
            iconst_3
            iload 4 /* upto */
            imul
            iadd
            iconst_2
            iadd
            iload 6 /* max */
            iastore
        23: .line 266
            iinc 4 /* upto */ 1
        24: .line 268
      StackMap locals:
      StackMap stack:
            iload 10 /* tMin */
            istore 5 /* min */
        25: .line 269
            iload 11 /* tMax */
            istore 6 /* max */
        26: .line 271
            goto 35
        27: .line 272
      StackMap locals:
      StackMap stack:
            iload 7 /* dest */
            iconst_m1
            if_icmpeq 32
        28: .line 273
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.transitions:[I
            iload 2 /* offset */
            iconst_3
            iload 4 /* upto */
            imul
            iadd
            iload 7 /* dest */
            iastore
        29: .line 274
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.transitions:[I
            iload 2 /* offset */
            iconst_3
            iload 4 /* upto */
            imul
            iadd
            iconst_1
            iadd
            iload 5 /* min */
            iastore
        30: .line 275
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.transitions:[I
            iload 2 /* offset */
            iconst_3
            iload 4 /* upto */
            imul
            iadd
            iconst_2
            iadd
            iload 6 /* max */
            iastore
        31: .line 276
            iinc 4 /* upto */ 1
        32: .line 278
      StackMap locals:
      StackMap stack:
            iload 9 /* tDest */
            istore 7 /* dest */
        33: .line 279
            iload 10 /* tMin */
            istore 5 /* min */
        34: .line 280
            iload 11 /* tMax */
            istore 6 /* max */
        end local 11 // int tMax
        end local 10 // int tMin
        end local 9 // int tDest
        35: .line 251
      StackMap locals:
      StackMap stack:
            iinc 8 /* i */ 1
      StackMap locals:
      StackMap stack:
        36: iload 8 /* i */
            iload 1 /* numTransitions */
            if_icmplt 11
        end local 8 // int i
        37: .line 284
            iload 7 /* dest */
            iconst_m1
            if_icmpeq 42
        38: .line 286
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.transitions:[I
            iload 2 /* offset */
            iconst_3
            iload 4 /* upto */
            imul
            iadd
            iload 7 /* dest */
            iastore
        39: .line 287
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.transitions:[I
            iload 2 /* offset */
            iconst_3
            iload 4 /* upto */
            imul
            iadd
            iconst_1
            iadd
            iload 5 /* min */
            iastore
        40: .line 288
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.transitions:[I
            iload 2 /* offset */
            iconst_3
            iload 4 /* upto */
            imul
            iadd
            iconst_2
            iadd
            iload 6 /* max */
            iastore
        41: .line 289
            iinc 4 /* upto */ 1
        42: .line 292
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.apache.lucene.util.automaton.Automaton.nextTransition:I
            iload 1 /* numTransitions */
            iload 4 /* upto */
            isub
            iconst_3
            imul
            isub
            putfield org.apache.lucene.util.automaton.Automaton.nextTransition:I
        43: .line 293
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.states:[I
            iconst_2
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.curState:I
            imul
            iconst_1
            iadd
            iload 4 /* upto */
            iastore
        44: .line 296
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.minMaxDestSorter:Lorg/apache/lucene/util/Sorter;
            iload 3 /* start */
            iload 3 /* start */
            iload 4 /* upto */
            iadd
            invokevirtual org.apache.lucene.util.Sorter.sort:(II)V
        45: .line 298
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.deterministic:Z
            ifeq 56
            iload 4 /* upto */
            iconst_1
            if_icmple 56
        46: .line 299
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.transitions:[I
            iload 2 /* offset */
            iconst_2
            iadd
            iaload
            istore 8 /* lastMax */
        start local 8 // int lastMax
        47: .line 300
            iconst_1
            istore 9 /* i */
        start local 9 // int i
        48: goto 55
        49: .line 301
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.transitions:[I
            iload 2 /* offset */
            iconst_3
            iload 9 /* i */
            imul
            iadd
            iconst_1
            iadd
            iaload
            istore 5 /* min */
        50: .line 302
            iload 5 /* min */
            iload 8 /* lastMax */
            if_icmpgt 53
        51: .line 303
            aload 0 /* this */
            iconst_0
            putfield org.apache.lucene.util.automaton.Automaton.deterministic:Z
        52: .line 304
            goto 56
        53: .line 306
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.transitions:[I
            iload 2 /* offset */
            iconst_3
            iload 9 /* i */
            imul
            iadd
            iconst_2
            iadd
            iaload
            istore 8 /* lastMax */
        54: .line 300
            iinc 9 /* i */ 1
      StackMap locals:
      StackMap stack:
        55: iload 9 /* i */
            iload 4 /* upto */
            if_icmplt 49
        end local 9 // int i
        end local 8 // int lastMax
        56: .line 309
      StackMap locals:
      StackMap stack:
            return
        end local 7 // int dest
        end local 6 // int max
        end local 5 // int min
        end local 4 // int upto
        end local 3 // int start
        end local 2 // int offset
        end local 1 // int numTransitions
        end local 0 // org.apache.lucene.util.automaton.Automaton this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   57     0            this  Lorg/apache/lucene/util/automaton/Automaton;
            1   57     1  numTransitions  I
            3   57     2          offset  I
            4   57     3           start  I
            6   57     4            upto  I
            7   57     5             min  I
            8   57     6             max  I
            9   57     7            dest  I
           10   37     8               i  I
           12   35     9           tDest  I
           13   35    10            tMin  I
           14   35    11            tMax  I
           47   56     8         lastMax  I
           48   56     9               i  I

  public boolean isDeterministic();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.util.automaton.Automaton this
         0: .line 314
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.deterministic:Z
            ireturn
        end local 0 // org.apache.lucene.util.automaton.Automaton this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/util/automaton/Automaton;

  public void finishState();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.lucene.util.automaton.Automaton this
         0: .line 322
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.curState:I
            iconst_m1
            if_icmpeq 3
         1: .line 323
            aload 0 /* this */
            invokevirtual org.apache.lucene.util.automaton.Automaton.finishCurrentState:()V
         2: .line 324
            aload 0 /* this */
            iconst_m1
            putfield org.apache.lucene.util.automaton.Automaton.curState:I
         3: .line 326
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.apache.lucene.util.automaton.Automaton this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/lucene/util/automaton/Automaton;

  public int getNumStates();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.lucene.util.automaton.Automaton this
         0: .line 332
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.nextState:I
            iconst_2
            idiv
            ireturn
        end local 0 // org.apache.lucene.util.automaton.Automaton this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/util/automaton/Automaton;

  public int getNumTransitions();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.lucene.util.automaton.Automaton this
         0: .line 337
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.nextTransition:I
            iconst_3
            idiv
            ireturn
        end local 0 // org.apache.lucene.util.automaton.Automaton this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/util/automaton/Automaton;

  public int getNumTransitions(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.apache.lucene.util.automaton.Automaton this
        start local 1 // int state
         0: .line 342
            getstatic org.apache.lucene.util.automaton.Automaton.$assertionsDisabled:Z
            ifne 1
            iload 1 /* state */
            ifge 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 343
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.states:[I
            iconst_2
            iload 1 /* state */
            imul
            iconst_1
            iadd
            iaload
            istore 2 /* count */
        start local 2 // int count
         2: .line 344
            iload 2 /* count */
            iconst_m1
            if_icmpne 4
         3: .line 345
            iconst_0
            ireturn
         4: .line 347
      StackMap locals: int
      StackMap stack:
            iload 2 /* count */
            ireturn
        end local 2 // int count
        end local 1 // int state
        end local 0 // org.apache.lucene.util.automaton.Automaton this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/apache/lucene/util/automaton/Automaton;
            0    5     1  state  I
            2    5     2  count  I
    MethodParameters:
       Name  Flags
      state  

  private void growStates();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.apache.lucene.util.automaton.Automaton this
         0: .line 352
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.nextState:I
            iconst_2
            iadd
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.states:[I
            arraylength
            if_icmple 2
         1: .line 353
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.states:[I
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.nextState:I
            iconst_2
            iadd
            invokestatic org.apache.lucene.util.ArrayUtil.grow:([II)[I
            putfield org.apache.lucene.util.automaton.Automaton.states:[I
         2: .line 355
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.apache.lucene.util.automaton.Automaton this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/lucene/util/automaton/Automaton;

  private void growTransitions();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.apache.lucene.util.automaton.Automaton this
         0: .line 358
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.nextTransition:I
            iconst_3
            iadd
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.transitions:[I
            arraylength
            if_icmple 2
         1: .line 359
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.transitions:[I
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.nextTransition:I
            iconst_3
            iadd
            invokestatic org.apache.lucene.util.ArrayUtil.grow:([II)[I
            putfield org.apache.lucene.util.automaton.Automaton.transitions:[I
         2: .line 361
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.apache.lucene.util.automaton.Automaton this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/lucene/util/automaton/Automaton;

  public int initTransition(int, org.apache.lucene.util.automaton.Transition);
    descriptor: (ILorg/apache/lucene/util/automaton/Transition;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.apache.lucene.util.automaton.Automaton this
        start local 1 // int state
        start local 2 // org.apache.lucene.util.automaton.Transition t
         0: .line 476
            getstatic org.apache.lucene.util.automaton.Automaton.$assertionsDisabled:Z
            ifne 1
            iload 1 /* state */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.nextState:I
            iconst_2
            idiv
            if_icmplt 1
            new java.lang.AssertionError
            dup
            new java.lang.StringBuilder
            dup
            ldc "state="
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* state */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " nextState="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.nextState:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         1: .line 477
      StackMap locals:
      StackMap stack:
            aload 2 /* t */
            iload 1 /* state */
            putfield org.apache.lucene.util.automaton.Transition.source:I
         2: .line 478
            aload 2 /* t */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.states:[I
            iconst_2
            iload 1 /* state */
            imul
            iaload
            putfield org.apache.lucene.util.automaton.Transition.transitionUpto:I
         3: .line 479
            aload 0 /* this */
            iload 1 /* state */
            invokevirtual org.apache.lucene.util.automaton.Automaton.getNumTransitions:(I)I
            ireturn
        end local 2 // org.apache.lucene.util.automaton.Transition t
        end local 1 // int state
        end local 0 // org.apache.lucene.util.automaton.Automaton this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/apache/lucene/util/automaton/Automaton;
            0    4     1  state  I
            0    4     2      t  Lorg/apache/lucene/util/automaton/Transition;
    MethodParameters:
       Name  Flags
      state  
      t      

  public void getNextTransition(org.apache.lucene.util.automaton.Transition);
    descriptor: (Lorg/apache/lucene/util/automaton/Transition;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // org.apache.lucene.util.automaton.Automaton this
        start local 1 // org.apache.lucene.util.automaton.Transition t
         0: .line 485
            getstatic org.apache.lucene.util.automaton.Automaton.$assertionsDisabled:Z
            ifne 1
            aload 1 /* t */
            getfield org.apache.lucene.util.automaton.Transition.transitionUpto:I
            iconst_3
            iadd
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.states:[I
            iconst_2
            aload 1 /* t */
            getfield org.apache.lucene.util.automaton.Transition.source:I
            imul
            iaload
            isub
            iconst_3
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.states:[I
            iconst_2
            aload 1 /* t */
            getfield org.apache.lucene.util.automaton.Transition.source:I
            imul
            iconst_1
            iadd
            iaload
            imul
            if_icmple 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 488
      StackMap locals:
      StackMap stack:
            getstatic org.apache.lucene.util.automaton.Automaton.$assertionsDisabled:Z
            ifne 2
            aload 0 /* this */
            aload 1 /* t */
            invokevirtual org.apache.lucene.util.automaton.Automaton.transitionSorted:(Lorg/apache/lucene/util/automaton/Transition;)Z
            ifne 2
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         2: .line 490
      StackMap locals:
      StackMap stack:
            aload 1 /* t */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.transitions:[I
            aload 1 /* t */
            dup
            getfield org.apache.lucene.util.automaton.Transition.transitionUpto:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.lucene.util.automaton.Transition.transitionUpto:I
            iaload
            putfield org.apache.lucene.util.automaton.Transition.dest:I
         3: .line 491
            aload 1 /* t */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.transitions:[I
            aload 1 /* t */
            dup
            getfield org.apache.lucene.util.automaton.Transition.transitionUpto:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.lucene.util.automaton.Transition.transitionUpto:I
            iaload
            putfield org.apache.lucene.util.automaton.Transition.min:I
         4: .line 492
            aload 1 /* t */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.transitions:[I
            aload 1 /* t */
            dup
            getfield org.apache.lucene.util.automaton.Transition.transitionUpto:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.lucene.util.automaton.Transition.transitionUpto:I
            iaload
            putfield org.apache.lucene.util.automaton.Transition.max:I
         5: .line 493
            return
        end local 1 // org.apache.lucene.util.automaton.Transition t
        end local 0 // org.apache.lucene.util.automaton.Automaton this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/lucene/util/automaton/Automaton;
            0    6     1     t  Lorg/apache/lucene/util/automaton/Transition;
    MethodParameters:
      Name  Flags
      t     

  private boolean transitionSorted(org.apache.lucene.util.automaton.Transition);
    descriptor: (Lorg/apache/lucene/util/automaton/Transition;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=6, args_size=2
        start local 0 // org.apache.lucene.util.automaton.Automaton this
        start local 1 // org.apache.lucene.util.automaton.Transition t
         0: .line 497
            aload 1 /* t */
            getfield org.apache.lucene.util.automaton.Transition.transitionUpto:I
            istore 2 /* upto */
        start local 2 // int upto
         1: .line 498
            iload 2 /* upto */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.states:[I
            iconst_2
            aload 1 /* t */
            getfield org.apache.lucene.util.automaton.Transition.source:I
            imul
            iaload
            if_icmpne 3
         2: .line 500
            iconst_1
            ireturn
         3: .line 503
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.transitions:[I
            iload 2 /* upto */
            iaload
            istore 3 /* nextDest */
        start local 3 // int nextDest
         4: .line 504
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.transitions:[I
            iload 2 /* upto */
            iconst_1
            iadd
            iaload
            istore 4 /* nextMin */
        start local 4 // int nextMin
         5: .line 505
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.transitions:[I
            iload 2 /* upto */
            iconst_2
            iadd
            iaload
            istore 5 /* nextMax */
        start local 5 // int nextMax
         6: .line 506
            iload 4 /* nextMin */
            aload 1 /* t */
            getfield org.apache.lucene.util.automaton.Transition.min:I
            if_icmple 8
         7: .line 507
            iconst_1
            ireturn
         8: .line 508
      StackMap locals: int int int
      StackMap stack:
            iload 4 /* nextMin */
            aload 1 /* t */
            getfield org.apache.lucene.util.automaton.Transition.min:I
            if_icmpge 10
         9: .line 509
            iconst_0
            ireturn
        10: .line 513
      StackMap locals:
      StackMap stack:
            iload 5 /* nextMax */
            aload 1 /* t */
            getfield org.apache.lucene.util.automaton.Transition.max:I
            if_icmple 12
        11: .line 514
            iconst_1
            ireturn
        12: .line 515
      StackMap locals:
      StackMap stack:
            iload 5 /* nextMax */
            aload 1 /* t */
            getfield org.apache.lucene.util.automaton.Transition.max:I
            if_icmpge 14
        13: .line 516
            iconst_0
            ireturn
        14: .line 520
      StackMap locals:
      StackMap stack:
            iload 3 /* nextDest */
            aload 1 /* t */
            getfield org.apache.lucene.util.automaton.Transition.dest:I
            if_icmple 16
        15: .line 521
            iconst_1
            ireturn
        16: .line 522
      StackMap locals:
      StackMap stack:
            iload 3 /* nextDest */
            aload 1 /* t */
            getfield org.apache.lucene.util.automaton.Transition.dest:I
            if_icmpge 18
        17: .line 523
            iconst_0
            ireturn
        18: .line 527
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 5 // int nextMax
        end local 4 // int nextMin
        end local 3 // int nextDest
        end local 2 // int upto
        end local 1 // org.apache.lucene.util.automaton.Transition t
        end local 0 // org.apache.lucene.util.automaton.Automaton this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   19     0      this  Lorg/apache/lucene/util/automaton/Automaton;
            0   19     1         t  Lorg/apache/lucene/util/automaton/Transition;
            1   19     2      upto  I
            4   19     3  nextDest  I
            5   19     4   nextMin  I
            6   19     5   nextMax  I
    MethodParameters:
      Name  Flags
      t     

  public void getTransition(int, int, org.apache.lucene.util.automaton.Transition);
    descriptor: (IILorg/apache/lucene/util/automaton/Transition;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // org.apache.lucene.util.automaton.Automaton this
        start local 1 // int state
        start local 2 // int index
        start local 3 // org.apache.lucene.util.automaton.Transition t
         0: .line 533
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.states:[I
            iconst_2
            iload 1 /* state */
            imul
            iaload
            iconst_3
            iload 2 /* index */
            imul
            iadd
            istore 4 /* i */
        start local 4 // int i
         1: .line 534
            aload 3 /* t */
            iload 1 /* state */
            putfield org.apache.lucene.util.automaton.Transition.source:I
         2: .line 535
            aload 3 /* t */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.transitions:[I
            iload 4 /* i */
            iinc 4 /* i */ 1
            iaload
            putfield org.apache.lucene.util.automaton.Transition.dest:I
         3: .line 536
            aload 3 /* t */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.transitions:[I
            iload 4 /* i */
            iinc 4 /* i */ 1
            iaload
            putfield org.apache.lucene.util.automaton.Transition.min:I
         4: .line 537
            aload 3 /* t */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.transitions:[I
            iload 4 /* i */
            iinc 4 /* i */ 1
            iaload
            putfield org.apache.lucene.util.automaton.Transition.max:I
         5: .line 538
            return
        end local 4 // int i
        end local 3 // org.apache.lucene.util.automaton.Transition t
        end local 2 // int index
        end local 1 // int state
        end local 0 // org.apache.lucene.util.automaton.Automaton this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lorg/apache/lucene/util/automaton/Automaton;
            0    6     1  state  I
            0    6     2  index  I
            0    6     3      t  Lorg/apache/lucene/util/automaton/Transition;
            1    6     4      i  I
    MethodParameters:
       Name  Flags
      state  
      index  
      t      

  static void appendCharString(int, java.lang.StringBuilder);
    descriptor: (ILjava/lang/StringBuilder;)V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // int c
        start local 1 // java.lang.StringBuilder b
         0: .line 541
            iload 0 /* c */
            bipush 33
            if_icmplt 1
            iload 0 /* c */
            bipush 126
            if_icmpgt 1
            iload 0 /* c */
            bipush 92
            if_icmpeq 1
            iload 0 /* c */
            bipush 34
            if_icmpeq 1
            aload 1 /* b */
            iload 0 /* c */
            invokevirtual java.lang.StringBuilder.appendCodePoint:(I)Ljava/lang/StringBuilder;
            pop
            goto 11
         1: .line 543
      StackMap locals:
      StackMap stack:
            aload 1 /* b */
            ldc "\\\\U"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         2: .line 544
            iload 0 /* c */
            invokestatic java.lang.Integer.toHexString:(I)Ljava/lang/String;
            astore 2 /* s */
        start local 2 // java.lang.String s
         3: .line 545
            iload 0 /* c */
            bipush 16
            if_icmpge 4
            aload 1 /* b */
            ldc "0000000"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 2 /* s */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
            goto 11
         4: .line 546
      StackMap locals: java.lang.String
      StackMap stack:
            iload 0 /* c */
            sipush 256
            if_icmpge 5
            aload 1 /* b */
            ldc "000000"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 2 /* s */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
            goto 11
         5: .line 547
      StackMap locals:
      StackMap stack:
            iload 0 /* c */
            sipush 4096
            if_icmpge 6
            aload 1 /* b */
            ldc "00000"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 2 /* s */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
            goto 11
         6: .line 548
      StackMap locals:
      StackMap stack:
            iload 0 /* c */
            ldc 65536
            if_icmpge 7
            aload 1 /* b */
            ldc "0000"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 2 /* s */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
            goto 11
         7: .line 549
      StackMap locals:
      StackMap stack:
            iload 0 /* c */
            ldc 1048576
            if_icmpge 8
            aload 1 /* b */
            ldc "000"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 2 /* s */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
            goto 11
         8: .line 550
      StackMap locals:
      StackMap stack:
            iload 0 /* c */
            ldc 16777216
            if_icmpge 9
            aload 1 /* b */
            ldc "00"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 2 /* s */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
            goto 11
         9: .line 551
      StackMap locals:
      StackMap stack:
            iload 0 /* c */
            ldc 268435456
            if_icmpge 10
            aload 1 /* b */
            ldc "0"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 2 /* s */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
            goto 11
        10: .line 552
      StackMap locals:
      StackMap stack:
            aload 1 /* b */
            aload 2 /* s */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        end local 2 // java.lang.String s
        11: .line 554
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.StringBuilder b
        end local 0 // int c
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0     c  I
            0   12     1     b  Ljava/lang/StringBuilder;
            3   11     2     s  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      c     
      b     

  public java.lang.String toDot();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=7, args_size=1
        start local 0 // org.apache.lucene.util.automaton.Automaton this
         0: .line 576
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 1 /* b */
        start local 1 // java.lang.StringBuilder b
         1: .line 577
            aload 1 /* b */
            ldc "digraph Automaton {\n"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         2: .line 578
            aload 1 /* b */
            ldc "  rankdir = LR\n"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         3: .line 579
            aload 1 /* b */
            ldc "  node [width=0.2, height=0.2, fontsize=8]\n"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         4: .line 580
            aload 0 /* this */
            invokevirtual org.apache.lucene.util.automaton.Automaton.getNumStates:()I
            istore 2 /* numStates */
        start local 2 // int numStates
         5: .line 581
            iload 2 /* numStates */
            ifle 8
         6: .line 582
            aload 1 /* b */
            ldc "  initial [shape=plaintext,label=\"\"]\n"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         7: .line 583
            aload 1 /* b */
            ldc "  initial -> 0\n"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         8: .line 586
      StackMap locals: java.lang.StringBuilder int
      StackMap stack:
            new org.apache.lucene.util.automaton.Transition
            dup
            invokespecial org.apache.lucene.util.automaton.Transition.<init>:()V
            astore 3 /* t */
        start local 3 // org.apache.lucene.util.automaton.Transition t
         9: .line 588
            iconst_0
            istore 4 /* state */
        start local 4 // int state
        10: goto 35
        11: .line 589
      StackMap locals: org.apache.lucene.util.automaton.Transition int
      StackMap stack:
            aload 1 /* b */
            ldc "  "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        12: .line 590
            aload 1 /* b */
            iload 4 /* state */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            pop
        13: .line 591
            aload 0 /* this */
            iload 4 /* state */
            invokevirtual org.apache.lucene.util.automaton.Automaton.isAccept:(I)Z
            ifeq 16
        14: .line 592
            aload 1 /* b */
            ldc " [shape=doublecircle,label=\""
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 4 /* state */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc "\"]\n"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        15: .line 593
            goto 17
        16: .line 594
      StackMap locals:
      StackMap stack:
            aload 1 /* b */
            ldc " [shape=circle,label=\""
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 4 /* state */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc "\"]\n"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        17: .line 596
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 4 /* state */
            aload 3 /* t */
            invokevirtual org.apache.lucene.util.automaton.Automaton.initTransition:(ILorg/apache/lucene/util/automaton/Transition;)I
            istore 5 /* numTransitions */
        start local 5 // int numTransitions
        18: .line 598
            iconst_0
            istore 6 /* i */
        start local 6 // int i
        19: goto 33
        20: .line 599
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            aload 3 /* t */
            invokevirtual org.apache.lucene.util.automaton.Automaton.getNextTransition:(Lorg/apache/lucene/util/automaton/Transition;)V
        21: .line 601
            getstatic org.apache.lucene.util.automaton.Automaton.$assertionsDisabled:Z
            ifne 22
            aload 3 /* t */
            getfield org.apache.lucene.util.automaton.Transition.max:I
            aload 3 /* t */
            getfield org.apache.lucene.util.automaton.Transition.min:I
            if_icmpge 22
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        22: .line 602
      StackMap locals:
      StackMap stack:
            aload 1 /* b */
            ldc "  "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        23: .line 603
            aload 1 /* b */
            iload 4 /* state */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            pop
        24: .line 604
            aload 1 /* b */
            ldc " -> "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        25: .line 605
            aload 1 /* b */
            aload 3 /* t */
            getfield org.apache.lucene.util.automaton.Transition.dest:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            pop
        26: .line 606
            aload 1 /* b */
            ldc " [label=\""
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        27: .line 607
            aload 3 /* t */
            getfield org.apache.lucene.util.automaton.Transition.min:I
            aload 1 /* b */
            invokestatic org.apache.lucene.util.automaton.Automaton.appendCharString:(ILjava/lang/StringBuilder;)V
        28: .line 608
            aload 3 /* t */
            getfield org.apache.lucene.util.automaton.Transition.max:I
            aload 3 /* t */
            getfield org.apache.lucene.util.automaton.Transition.min:I
            if_icmpeq 31
        29: .line 609
            aload 1 /* b */
            bipush 45
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
        30: .line 610
            aload 3 /* t */
            getfield org.apache.lucene.util.automaton.Transition.max:I
            aload 1 /* b */
            invokestatic org.apache.lucene.util.automaton.Automaton.appendCharString:(ILjava/lang/StringBuilder;)V
        31: .line 612
      StackMap locals:
      StackMap stack:
            aload 1 /* b */
            ldc "\"]\n"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        32: .line 598
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        33: iload 6 /* i */
            iload 5 /* numTransitions */
            if_icmplt 20
        end local 6 // int i
        end local 5 // int numTransitions
        34: .line 588
            iinc 4 /* state */ 1
      StackMap locals:
      StackMap stack:
        35: iload 4 /* state */
            iload 2 /* numStates */
            if_icmplt 11
        end local 4 // int state
        36: .line 616
            aload 1 /* b */
            bipush 125
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
        37: .line 617
            aload 1 /* b */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 3 // org.apache.lucene.util.automaton.Transition t
        end local 2 // int numStates
        end local 1 // java.lang.StringBuilder b
        end local 0 // org.apache.lucene.util.automaton.Automaton this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   38     0            this  Lorg/apache/lucene/util/automaton/Automaton;
            1   38     1               b  Ljava/lang/StringBuilder;
            5   38     2       numStates  I
            9   38     3               t  Lorg/apache/lucene/util/automaton/Transition;
           10   36     4           state  I
           18   34     5  numTransitions  I
           19   34     6               i  I

  int[] getStartPoints();
    descriptor: ()[I
    flags: (0x0000) 
    Code:
      stack=5, locals=7, args_size=1
        start local 0 // org.apache.lucene.util.automaton.Automaton this
         0: .line 624
            new java.util.HashSet
            dup
            invokespecial java.util.HashSet.<init>:()V
            astore 1 /* pointset */
        start local 1 // java.util.Set pointset
         1: .line 625
            aload 1 /* pointset */
            iconst_0
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.Set.add:(Ljava/lang/Object;)Z
            pop
         2: .line 627
            iconst_0
            istore 2 /* s */
        start local 2 // int s
         3: goto 15
         4: .line 628
      StackMap locals: java.util.Set int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.states:[I
            iload 2 /* s */
            iaload
            istore 3 /* trans */
        start local 3 // int trans
         5: .line 629
            iload 3 /* trans */
            iconst_3
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.states:[I
            iload 2 /* s */
            iconst_1
            iadd
            iaload
            imul
            iadd
            istore 4 /* limit */
        start local 4 // int limit
         6: .line 631
            goto 13
         7: .line 632
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.transitions:[I
            iload 3 /* trans */
            iconst_1
            iadd
            iaload
            istore 5 /* min */
        start local 5 // int min
         8: .line 633
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.transitions:[I
            iload 3 /* trans */
            iconst_2
            iadd
            iaload
            istore 6 /* max */
        start local 6 // int max
         9: .line 635
            aload 1 /* pointset */
            iload 5 /* min */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.Set.add:(Ljava/lang/Object;)Z
            pop
        10: .line 636
            iload 6 /* max */
            ldc 1114111
            if_icmpge 12
        11: .line 637
            aload 1 /* pointset */
            iload 6 /* max */
            iconst_1
            iadd
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.Set.add:(Ljava/lang/Object;)Z
            pop
        12: .line 639
      StackMap locals: int int
      StackMap stack:
            iinc 3 /* trans */ 3
        end local 6 // int max
        end local 5 // int min
        13: .line 631
      StackMap locals:
      StackMap stack:
            iload 3 /* trans */
            iload 4 /* limit */
            if_icmplt 7
        end local 4 // int limit
        end local 3 // int trans
        14: .line 627
            iinc 2 /* s */ 2
      StackMap locals:
      StackMap stack:
        15: iload 2 /* s */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.nextState:I
            if_icmplt 4
        end local 2 // int s
        16: .line 642
            aload 1 /* pointset */
            invokeinterface java.util.Set.size:()I
            newarray 10
            astore 2 /* points */
        start local 2 // int[] points
        17: .line 643
            iconst_0
            istore 3 /* n */
        start local 3 // int n
        18: .line 644
            aload 1 /* pointset */
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 5
            goto 21
      StackMap locals: org.apache.lucene.util.automaton.Automaton java.util.Set int[] int top java.util.Iterator
      StackMap stack:
        19: aload 5
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.Integer
            astore 4 /* m */
        start local 4 // java.lang.Integer m
        20: .line 645
            aload 2 /* points */
            iload 3 /* n */
            iinc 3 /* n */ 1
            aload 4 /* m */
            invokevirtual java.lang.Integer.intValue:()I
            iastore
        end local 4 // java.lang.Integer m
        21: .line 644
      StackMap locals:
      StackMap stack:
            aload 5
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 19
        22: .line 647
            aload 2 /* points */
            invokestatic java.util.Arrays.sort:([I)V
        23: .line 648
            aload 2 /* points */
            areturn
        end local 3 // int n
        end local 2 // int[] points
        end local 1 // java.util.Set pointset
        end local 0 // org.apache.lucene.util.automaton.Automaton this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   24     0      this  Lorg/apache/lucene/util/automaton/Automaton;
            1   24     1  pointset  Ljava/util/Set<Ljava/lang/Integer;>;
            3   16     2         s  I
            5   14     3     trans  I
            6   14     4     limit  I
            8   13     5       min  I
            9   13     6       max  I
           17   24     2    points  [I
           18   24     3         n  I
           20   21     4         m  Ljava/lang/Integer;

  public int step(int, int);
    descriptor: (II)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=8, args_size=3
        start local 0 // org.apache.lucene.util.automaton.Automaton this
        start local 1 // int state
        start local 2 // int label
         0: .line 659
            getstatic org.apache.lucene.util.automaton.Automaton.$assertionsDisabled:Z
            ifne 1
            iload 1 /* state */
            ifge 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 660
      StackMap locals:
      StackMap stack:
            getstatic org.apache.lucene.util.automaton.Automaton.$assertionsDisabled:Z
            ifne 2
            iload 2 /* label */
            ifge 2
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         2: .line 661
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.states:[I
            iconst_2
            iload 1 /* state */
            imul
            iaload
            istore 3 /* trans */
        start local 3 // int trans
         3: .line 662
            iload 3 /* trans */
            iconst_3
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.states:[I
            iconst_2
            iload 1 /* state */
            imul
            iconst_1
            iadd
            iaload
            imul
            iadd
            istore 4 /* limit */
        start local 4 // int limit
         4: .line 664
            goto 11
         5: .line 665
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.transitions:[I
            iload 3 /* trans */
            iaload
            istore 5 /* dest */
        start local 5 // int dest
         6: .line 666
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.transitions:[I
            iload 3 /* trans */
            iconst_1
            iadd
            iaload
            istore 6 /* min */
        start local 6 // int min
         7: .line 667
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.transitions:[I
            iload 3 /* trans */
            iconst_2
            iadd
            iaload
            istore 7 /* max */
        start local 7 // int max
         8: .line 668
            iload 6 /* min */
            iload 2 /* label */
            if_icmpgt 10
            iload 2 /* label */
            iload 7 /* max */
            if_icmpgt 10
         9: .line 669
            iload 5 /* dest */
            ireturn
        10: .line 671
      StackMap locals: int int int
      StackMap stack:
            iinc 3 /* trans */ 3
        end local 7 // int max
        end local 6 // int min
        end local 5 // int dest
        11: .line 664
      StackMap locals:
      StackMap stack:
            iload 3 /* trans */
            iload 4 /* limit */
            if_icmplt 5
        12: .line 674
            iconst_m1
            ireturn
        end local 4 // int limit
        end local 3 // int trans
        end local 2 // int label
        end local 1 // int state
        end local 0 // org.apache.lucene.util.automaton.Automaton this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   13     0   this  Lorg/apache/lucene/util/automaton/Automaton;
            0   13     1  state  I
            0   13     2  label  I
            3   13     3  trans  I
            4   13     4  limit  I
            6   11     5   dest  I
            7   11     6    min  I
            8   11     7    max  I
    MethodParameters:
       Name  Flags
      state  
      label  

  public long ramBytesUsed();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.apache.lucene.util.automaton.Automaton this
         0: .line 883
            getstatic org.apache.lucene.util.RamUsageEstimator.NUM_BYTES_OBJECT_HEADER:I
            i2l
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.states:[I
            invokestatic org.apache.lucene.util.RamUsageEstimator.sizeOf:([I)J
            ladd
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.transitions:[I
            invokestatic org.apache.lucene.util.RamUsageEstimator.sizeOf:([I)J
            ladd
         1: .line 884
            getstatic org.apache.lucene.util.RamUsageEstimator.NUM_BYTES_OBJECT_HEADER:I
            i2l
         2: .line 883
            ladd
         3: .line 884
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.Automaton.isAccept:Ljava/util/BitSet;
            invokevirtual java.util.BitSet.size:()I
            bipush 8
            idiv
            i2l
         4: .line 883
            ladd
         5: .line 884
            getstatic org.apache.lucene.util.RamUsageEstimator.NUM_BYTES_OBJECT_REF:I
            i2l
         6: .line 883
            ladd
         7: .line 885
            iconst_2
            getstatic org.apache.lucene.util.RamUsageEstimator.NUM_BYTES_OBJECT_REF:I
            imul
            i2l
         8: .line 883
            ladd
         9: .line 886
            ldc 12
        10: .line 883
            ladd
        11: .line 887
            lconst_1
        12: .line 883
            ladd
            lreturn
        end local 0 // org.apache.lucene.util.automaton.Automaton this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     0  this  Lorg/apache/lucene/util/automaton/Automaton;
}
SourceFile: "Automaton.java"
NestMembers:
  org.apache.lucene.util.automaton.Automaton$1  org.apache.lucene.util.automaton.Automaton$2  org.apache.lucene.util.automaton.Automaton$Builder  org.apache.lucene.util.automaton.Automaton$Builder$1
InnerClasses:
  org.apache.lucene.util.automaton.Automaton$1
  org.apache.lucene.util.automaton.Automaton$2
  public Builder = org.apache.lucene.util.automaton.Automaton$Builder of org.apache.lucene.util.automaton.Automaton