final class org.apache.lucene.util.automaton.SortedIntSet
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: org.apache.lucene.util.automaton.SortedIntSet
  super_class: java.lang.Object
{
  int[] values;
    descriptor: [I
    flags: (0x0000) 

  int[] counts;
    descriptor: [I
    flags: (0x0000) 

  int upto;
    descriptor: I
    flags: (0x0000) 

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

  private static final int TREE_MAP_CUTOVER;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 30

  private final java.util.Map<java.lang.Integer, java.lang.Integer> map;
    descriptor: Ljava/util/Map;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Map<Ljava/lang/Integer;Ljava/lang/Integer;>;

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

  int state;
    descriptor: I
    flags: (0x0000) 

  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 26
            ldc Lorg/apache/lucene/util/automaton/SortedIntSet;
            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.SortedIntSet.$assertionsDisabled:Z
         3: .line 34
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.lucene.util.automaton.SortedIntSet this
        start local 1 // int capacity
         0: .line 42
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 36
            aload 0 /* this */
            new java.util.TreeMap
            dup
            invokespecial java.util.TreeMap.<init>:()V
            putfield org.apache.lucene.util.automaton.SortedIntSet.map:Ljava/util/Map;
         2: .line 43
            aload 0 /* this */
            iload 1 /* capacity */
            newarray 10
            putfield org.apache.lucene.util.automaton.SortedIntSet.values:[I
         3: .line 44
            aload 0 /* this */
            iload 1 /* capacity */
            newarray 10
            putfield org.apache.lucene.util.automaton.SortedIntSet.counts:[I
         4: .line 45
            return
        end local 1 // int capacity
        end local 0 // org.apache.lucene.util.automaton.SortedIntSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/apache/lucene/util/automaton/SortedIntSet;
            0    5     1  capacity  I
    MethodParameters:
          Name  Flags
      capacity  

  public void incr(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // org.apache.lucene.util.automaton.SortedIntSet this
        start local 1 // int num
         0: .line 49
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.useTreeMap:Z
            ifeq 8
         1: .line 50
            iload 1 /* num */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            astore 2 /* key */
        start local 2 // java.lang.Integer key
         2: .line 51
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.map:Ljava/util/Map;
            aload 2 /* key */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.Integer
            astore 3 /* val */
        start local 3 // java.lang.Integer val
         3: .line 52
            aload 3 /* val */
            ifnonnull 6
         4: .line 53
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.map:Ljava/util/Map;
            aload 2 /* key */
            iconst_1
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         5: .line 54
            goto 7
         6: .line 55
      StackMap locals: java.lang.Integer java.lang.Integer
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.map:Ljava/util/Map;
            aload 2 /* key */
            iconst_1
            aload 3 /* val */
            invokevirtual java.lang.Integer.intValue:()I
            iadd
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         7: .line 57
      StackMap locals:
      StackMap stack:
            return
        end local 3 // java.lang.Integer val
        end local 2 // java.lang.Integer key
         8: .line 60
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.upto:I
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.values:[I
            arraylength
            if_icmpne 11
         9: .line 61
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.values:[I
            iconst_1
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.upto:I
            iadd
            invokestatic org.apache.lucene.util.ArrayUtil.grow:([II)[I
            putfield org.apache.lucene.util.automaton.SortedIntSet.values:[I
        10: .line 62
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.counts:[I
            iconst_1
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.upto:I
            iadd
            invokestatic org.apache.lucene.util.ArrayUtil.grow:([II)[I
            putfield org.apache.lucene.util.automaton.SortedIntSet.counts:[I
        11: .line 65
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* i */
        start local 2 // int i
        12: goto 28
        13: .line 66
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.values:[I
            iload 2 /* i */
            iaload
            iload 1 /* num */
            if_icmpne 16
        14: .line 67
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.counts:[I
            iload 2 /* i */
            dup2
            iaload
            iconst_1
            iadd
            iastore
        15: .line 68
            return
        16: .line 69
      StackMap locals:
      StackMap stack:
            iload 1 /* num */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.values:[I
            iload 2 /* i */
            iaload
            if_icmpge 27
        17: .line 71
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.upto:I
            iconst_1
            isub
            istore 3 /* j */
        start local 3 // int j
        18: .line 72
            goto 22
        19: .line 73
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.values:[I
            iconst_1
            iload 3 /* j */
            iadd
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.values:[I
            iload 3 /* j */
            iaload
            iastore
        20: .line 74
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.counts:[I
            iconst_1
            iload 3 /* j */
            iadd
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.counts:[I
            iload 3 /* j */
            iaload
            iastore
        21: .line 75
            iinc 3 /* j */ -1
        22: .line 72
      StackMap locals:
      StackMap stack:
            iload 3 /* j */
            iload 2 /* i */
            if_icmpge 19
        23: .line 77
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.values:[I
            iload 2 /* i */
            iload 1 /* num */
            iastore
        24: .line 78
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.counts:[I
            iload 2 /* i */
            iconst_1
            iastore
        25: .line 79
            aload 0 /* this */
            dup
            getfield org.apache.lucene.util.automaton.SortedIntSet.upto:I
            iconst_1
            iadd
            putfield org.apache.lucene.util.automaton.SortedIntSet.upto:I
        26: .line 80
            return
        end local 3 // int j
        27: .line 65
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        28: iload 2 /* i */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.upto:I
            if_icmplt 13
        end local 2 // int i
        29: .line 85
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.values:[I
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.upto:I
            iload 1 /* num */
            iastore
        30: .line 86
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.counts:[I
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.upto:I
            iconst_1
            iastore
        31: .line 87
            aload 0 /* this */
            dup
            getfield org.apache.lucene.util.automaton.SortedIntSet.upto:I
            iconst_1
            iadd
            putfield org.apache.lucene.util.automaton.SortedIntSet.upto:I
        32: .line 89
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.upto:I
            bipush 30
            if_icmpne 39
        33: .line 90
            aload 0 /* this */
            iconst_1
            putfield org.apache.lucene.util.automaton.SortedIntSet.useTreeMap:Z
        34: .line 91
            iconst_0
            istore 2 /* i */
        start local 2 // int i
        35: goto 38
        36: .line 92
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.map:Ljava/util/Map;
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.values:[I
            iload 2 /* i */
            iaload
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.counts:[I
            iload 2 /* i */
            iaload
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
        37: .line 91
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        38: iload 2 /* i */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.upto:I
            if_icmplt 36
        end local 2 // int i
        39: .line 95
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int num
        end local 0 // org.apache.lucene.util.automaton.SortedIntSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   40     0  this  Lorg/apache/lucene/util/automaton/SortedIntSet;
            0   40     1   num  I
            2    8     2   key  Ljava/lang/Integer;
            3    8     3   val  Ljava/lang/Integer;
           12   29     2     i  I
           18   27     3     j  I
           35   39     2     i  I
    MethodParameters:
      Name  Flags
      num   

  public void decr(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // org.apache.lucene.util.automaton.SortedIntSet this
        start local 1 // int num
         0: .line 100
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.useTreeMap:Z
            ifeq 10
         1: .line 101
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.map:Ljava/util/Map;
            iload 1 /* num */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            istore 2 /* count */
        start local 2 // int count
         2: .line 102
            iload 2 /* count */
            iconst_1
            if_icmpne 5
         3: .line 103
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.map:Ljava/util/Map;
            iload 1 /* num */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.Map.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         4: .line 104
            goto 6
         5: .line 105
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.map:Ljava/util/Map;
            iload 1 /* num */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            iload 2 /* count */
            iconst_1
            isub
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         6: .line 108
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.map:Ljava/util/Map;
            invokeinterface java.util.Map.size:()I
            ifne 9
         7: .line 109
            aload 0 /* this */
            iconst_0
            putfield org.apache.lucene.util.automaton.SortedIntSet.useTreeMap:Z
         8: .line 110
            aload 0 /* this */
            iconst_0
            putfield org.apache.lucene.util.automaton.SortedIntSet.upto:I
         9: .line 112
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int count
        10: .line 115
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* i */
        start local 2 // int i
        11: goto 24
        12: .line 116
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.values:[I
            iload 2 /* i */
            iaload
            iload 1 /* num */
            if_icmpne 23
        13: .line 117
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.counts:[I
            iload 2 /* i */
            dup2
            iaload
            iconst_1
            isub
            iastore
        14: .line 118
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.counts:[I
            iload 2 /* i */
            iaload
            ifne 22
        15: .line 119
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.upto:I
            iconst_1
            isub
            istore 3 /* limit */
        start local 3 // int limit
        16: .line 120
            goto 20
        17: .line 121
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.values:[I
            iload 2 /* i */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.values:[I
            iload 2 /* i */
            iconst_1
            iadd
            iaload
            iastore
        18: .line 122
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.counts:[I
            iload 2 /* i */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.counts:[I
            iload 2 /* i */
            iconst_1
            iadd
            iaload
            iastore
        19: .line 123
            iinc 2 /* i */ 1
        20: .line 120
      StackMap locals:
      StackMap stack:
            iload 2 /* i */
            iload 3 /* limit */
            if_icmplt 17
        21: .line 125
            aload 0 /* this */
            iload 3 /* limit */
            putfield org.apache.lucene.util.automaton.SortedIntSet.upto:I
        end local 3 // int limit
        22: .line 127
      StackMap locals:
      StackMap stack:
            return
        23: .line 115
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        24: iload 2 /* i */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.upto:I
            if_icmplt 12
        end local 2 // int i
        25: .line 130
            getstatic org.apache.lucene.util.automaton.SortedIntSet.$assertionsDisabled:Z
            ifne 26
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        26: .line 131
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int num
        end local 0 // org.apache.lucene.util.automaton.SortedIntSet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   27     0   this  Lorg/apache/lucene/util/automaton/SortedIntSet;
            0   27     1    num  I
            2   10     2  count  I
           11   25     2      i  I
           16   22     3  limit  I
    MethodParameters:
      Name  Flags
      num   

  public void computeHash();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=1
        start local 0 // org.apache.lucene.util.automaton.SortedIntSet this
         0: .line 134
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.useTreeMap:Z
            ifeq 13
         1: .line 135
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.map:Ljava/util/Map;
            invokeinterface java.util.Map.size:()I
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.values:[I
            arraylength
            if_icmple 5
         2: .line 136
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.map:Ljava/util/Map;
            invokeinterface java.util.Map.size:()I
            iconst_4
            invokestatic org.apache.lucene.util.ArrayUtil.oversize:(II)I
            istore 1 /* size */
        start local 1 // int size
         3: .line 137
            aload 0 /* this */
            iload 1 /* size */
            newarray 10
            putfield org.apache.lucene.util.automaton.SortedIntSet.values:[I
         4: .line 138
            aload 0 /* this */
            iload 1 /* size */
            newarray 10
            putfield org.apache.lucene.util.automaton.SortedIntSet.counts:[I
        end local 1 // int size
         5: .line 140
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.map:Ljava/util/Map;
            invokeinterface java.util.Map.size:()I
            putfield org.apache.lucene.util.automaton.SortedIntSet.hashCode:I
         6: .line 141
            aload 0 /* this */
            iconst_0
            putfield org.apache.lucene.util.automaton.SortedIntSet.upto:I
         7: .line 142
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.map:Ljava/util/Map;
            invokeinterface java.util.Map.keySet:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 2
            goto 11
      StackMap locals: org.apache.lucene.util.automaton.SortedIntSet top java.util.Iterator
      StackMap stack:
         8: aload 2
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            istore 1 /* state */
        start local 1 // int state
         9: .line 143
            aload 0 /* this */
            sipush 683
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.hashCode:I
            imul
            iload 1 /* state */
            iadd
            putfield org.apache.lucene.util.automaton.SortedIntSet.hashCode:I
        10: .line 144
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.values:[I
            aload 0 /* this */
            dup
            getfield org.apache.lucene.util.automaton.SortedIntSet.upto:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.lucene.util.automaton.SortedIntSet.upto:I
            iload 1 /* state */
            iastore
        end local 1 // int state
        11: .line 142
      StackMap locals:
      StackMap stack:
            aload 2
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 8
        12: .line 146
            goto 19
        13: .line 147
      StackMap locals: org.apache.lucene.util.automaton.SortedIntSet
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.upto:I
            putfield org.apache.lucene.util.automaton.SortedIntSet.hashCode:I
        14: .line 148
            iconst_0
            istore 1 /* i */
        start local 1 // int i
        15: goto 18
        16: .line 149
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            sipush 683
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.hashCode:I
            imul
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.values:[I
            iload 1 /* i */
            iaload
            iadd
            putfield org.apache.lucene.util.automaton.SortedIntSet.hashCode:I
        17: .line 148
            iinc 1 /* i */ 1
      StackMap locals:
      StackMap stack:
        18: iload 1 /* i */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.upto:I
            if_icmplt 16
        end local 1 // int i
        19: .line 152
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.apache.lucene.util.automaton.SortedIntSet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   20     0   this  Lorg/apache/lucene/util/automaton/SortedIntSet;
            3    5     1   size  I
            9   11     1  state  I
           15   19     1      i  I

  public org.apache.lucene.util.automaton.SortedIntSet$FrozenIntSet freeze(int);
    descriptor: (I)Lorg/apache/lucene/util/automaton/SortedIntSet$FrozenIntSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.apache.lucene.util.automaton.SortedIntSet this
        start local 1 // int state
         0: .line 155
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.upto:I
            newarray 10
            astore 2 /* c */
        start local 2 // int[] c
         1: .line 156
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.values:[I
            iconst_0
            aload 2 /* c */
            iconst_0
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.upto:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         2: .line 157
            new org.apache.lucene.util.automaton.SortedIntSet$FrozenIntSet
            dup
            aload 2 /* c */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.hashCode:I
            iload 1 /* state */
            invokespecial org.apache.lucene.util.automaton.SortedIntSet$FrozenIntSet.<init>:([III)V
            areturn
        end local 2 // int[] c
        end local 1 // int state
        end local 0 // org.apache.lucene.util.automaton.SortedIntSet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/apache/lucene/util/automaton/SortedIntSet;
            0    3     1  state  I
            1    3     2      c  [I
    MethodParameters:
       Name  Flags
      state  

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

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.apache.lucene.util.automaton.SortedIntSet this
        start local 1 // java.lang.Object _other
         0: .line 167
            aload 1 /* _other */
            ifnonnull 2
         1: .line 168
            iconst_0
            ireturn
         2: .line 170
      StackMap locals:
      StackMap stack:
            aload 1 /* _other */
            instanceof org.apache.lucene.util.automaton.SortedIntSet$FrozenIntSet
            ifne 4
         3: .line 171
            iconst_0
            ireturn
         4: .line 173
      StackMap locals:
      StackMap stack:
            aload 1 /* _other */
            checkcast org.apache.lucene.util.automaton.SortedIntSet$FrozenIntSet
            astore 2 /* other */
        start local 2 // org.apache.lucene.util.automaton.SortedIntSet$FrozenIntSet other
         5: .line 174
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.hashCode:I
            aload 2 /* other */
            getfield org.apache.lucene.util.automaton.SortedIntSet$FrozenIntSet.hashCode:I
            if_icmpeq 7
         6: .line 175
            iconst_0
            ireturn
         7: .line 177
      StackMap locals: org.apache.lucene.util.automaton.SortedIntSet$FrozenIntSet
      StackMap stack:
            aload 2 /* other */
            getfield org.apache.lucene.util.automaton.SortedIntSet$FrozenIntSet.values:[I
            arraylength
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.upto:I
            if_icmpeq 9
         8: .line 178
            iconst_0
            ireturn
         9: .line 180
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
        10: goto 14
        11: .line 181
      StackMap locals: int
      StackMap stack:
            aload 2 /* other */
            getfield org.apache.lucene.util.automaton.SortedIntSet$FrozenIntSet.values:[I
            iload 3 /* i */
            iaload
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.values:[I
            iload 3 /* i */
            iaload
            if_icmpeq 13
        12: .line 182
            iconst_0
            ireturn
        13: .line 180
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        14: iload 3 /* i */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.upto:I
            if_icmplt 11
        end local 3 // int i
        15: .line 186
            iconst_1
            ireturn
        end local 2 // org.apache.lucene.util.automaton.SortedIntSet$FrozenIntSet other
        end local 1 // java.lang.Object _other
        end local 0 // org.apache.lucene.util.automaton.SortedIntSet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   16     0    this  Lorg/apache/lucene/util/automaton/SortedIntSet;
            0   16     1  _other  Ljava/lang/Object;
            5   16     2   other  Lorg/apache/lucene/util/automaton/SortedIntSet$FrozenIntSet;
           10   15     3       i  I
    MethodParameters:
        Name  Flags
      _other  

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // org.apache.lucene.util.automaton.SortedIntSet this
         0: .line 191
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            bipush 91
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            astore 1 /* sb */
        start local 1 // java.lang.StringBuilder sb
         1: .line 192
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 7
         3: .line 193
      StackMap locals: java.lang.StringBuilder int
      StackMap stack:
            iload 2 /* i */
            ifle 5
         4: .line 194
            aload 1 /* sb */
            bipush 32
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
         5: .line 196
      StackMap locals:
      StackMap stack:
            aload 1 /* sb */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.values:[I
            iload 2 /* i */
            iaload
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            bipush 58
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.counts:[I
            iload 2 /* i */
            iaload
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            pop
         6: .line 192
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 2 /* i */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.SortedIntSet.upto:I
            if_icmplt 3
        end local 2 // int i
         8: .line 198
            aload 1 /* sb */
            bipush 93
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
         9: .line 199
            aload 1 /* sb */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 1 // java.lang.StringBuilder sb
        end local 0 // org.apache.lucene.util.automaton.SortedIntSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lorg/apache/lucene/util/automaton/SortedIntSet;
            1   10     1    sb  Ljava/lang/StringBuilder;
            2    8     2     i  I
}
SourceFile: "SortedIntSet.java"
NestMembers:
  org.apache.lucene.util.automaton.SortedIntSet$FrozenIntSet
InnerClasses:
  public final FrozenIntSet = org.apache.lucene.util.automaton.SortedIntSet$FrozenIntSet of org.apache.lucene.util.automaton.SortedIntSet