public class org.eclipse.jetty.util.ArrayTernaryTrie<V> extends org.eclipse.jetty.util.AbstractTrie<V>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.jetty.util.ArrayTernaryTrie
  super_class: org.eclipse.jetty.util.AbstractTrie
{
  private static int LO;
    descriptor: I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC

  private static int EQ;
    descriptor: I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC

  private static int HI;
    descriptor: I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC

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

  private final char[] _tree;
    descriptor: [C
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.String[] _key;
    descriptor: [Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final V[] _value;
    descriptor: [Ljava/lang/Object;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: [TV;

  private char _rows;
    descriptor: C
    flags: (0x0002) ACC_PRIVATE

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 62
            iconst_1
            putstatic org.eclipse.jetty.util.ArrayTernaryTrie.LO:I
         1: .line 63
            iconst_2
            putstatic org.eclipse.jetty.util.ArrayTernaryTrie.EQ:I
         2: .line 64
            iconst_3
            putstatic org.eclipse.jetty.util.ArrayTernaryTrie.HI:I
         3: .line 70
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.util.ArrayTernaryTrie this
         0: .line 101
            aload 0 /* this */
            sipush 128
            invokespecial org.eclipse.jetty.util.ArrayTernaryTrie.<init>:(I)V
         1: .line 102
            return
        end local 0 // org.eclipse.jetty.util.ArrayTernaryTrie this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jetty/util/ArrayTernaryTrie<TV;>;

  public void <init>(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.util.ArrayTernaryTrie this
        start local 1 // boolean insensitive
         0: .line 111
            aload 0 /* this */
            iload 1 /* insensitive */
            sipush 128
            invokespecial org.eclipse.jetty.util.ArrayTernaryTrie.<init>:(ZI)V
         1: .line 112
            return
        end local 1 // boolean insensitive
        end local 0 // org.eclipse.jetty.util.ArrayTernaryTrie this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lorg/eclipse/jetty/util/ArrayTernaryTrie<TV;>;
            0    2     1  insensitive  Z
    MethodParameters:
             Name  Flags
      insensitive  

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.util.ArrayTernaryTrie this
        start local 1 // int capacity
         0: .line 126
            aload 0 /* this */
            iconst_1
            iload 1 /* capacity */
            invokespecial org.eclipse.jetty.util.ArrayTernaryTrie.<init>:(ZI)V
         1: .line 127
            return
        end local 1 // int capacity
        end local 0 // org.eclipse.jetty.util.ArrayTernaryTrie this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/jetty/util/ArrayTernaryTrie<TV;>;
            0    2     1  capacity  I
    MethodParameters:
          Name  Flags
      capacity  

  public void <init>(boolean, int);
    descriptor: (ZI)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.jetty.util.ArrayTernaryTrie this
        start local 1 // boolean insensitive
        start local 2 // int capacity
         0: .line 142
            aload 0 /* this */
            iload 1 /* insensitive */
            invokespecial org.eclipse.jetty.util.AbstractTrie.<init>:(Z)V
         1: .line 143
            aload 0 /* this */
            iload 2 /* capacity */
            anewarray java.lang.Object
            putfield org.eclipse.jetty.util.ArrayTernaryTrie._value:[Ljava/lang/Object;
         2: .line 144
            aload 0 /* this */
            iload 2 /* capacity */
            iconst_4
            imul
            newarray 5
            putfield org.eclipse.jetty.util.ArrayTernaryTrie._tree:[C
         3: .line 145
            aload 0 /* this */
            iload 2 /* capacity */
            anewarray java.lang.String
            putfield org.eclipse.jetty.util.ArrayTernaryTrie._key:[Ljava/lang/String;
         4: .line 146
            return
        end local 2 // int capacity
        end local 1 // boolean insensitive
        end local 0 // org.eclipse.jetty.util.ArrayTernaryTrie this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    5     0         this  Lorg/eclipse/jetty/util/ArrayTernaryTrie<TV;>;
            0    5     1  insensitive  Z
            0    5     2     capacity  I
    MethodParameters:
             Name  Flags
      insensitive  
      capacity     

  public void <init>(org.eclipse.jetty.util.ArrayTernaryTrie<V>, );
    descriptor: (Lorg/eclipse/jetty/util/ArrayTernaryTrie;D)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // org.eclipse.jetty.util.ArrayTernaryTrie this
        start local 1 // org.eclipse.jetty.util.ArrayTernaryTrie trie
        start local 2 // double factor
         0: .line 156
            aload 0 /* this */
            aload 1 /* trie */
            invokevirtual org.eclipse.jetty.util.ArrayTernaryTrie.isCaseInsensitive:()Z
            invokespecial org.eclipse.jetty.util.AbstractTrie.<init>:(Z)V
         1: .line 157
            aload 1 /* trie */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._value:[Ljava/lang/Object;
            arraylength
            i2d
            dload 2 /* factor */
            dmul
            d2i
            istore 4 /* capacity */
        start local 4 // int capacity
         2: .line 158
            aload 0 /* this */
            aload 1 /* trie */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._rows:C
            putfield org.eclipse.jetty.util.ArrayTernaryTrie._rows:C
         3: .line 159
            aload 0 /* this */
            aload 1 /* trie */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._value:[Ljava/lang/Object;
            iload 4 /* capacity */
            invokestatic java.util.Arrays.copyOf:([Ljava/lang/Object;I)[Ljava/lang/Object;
            putfield org.eclipse.jetty.util.ArrayTernaryTrie._value:[Ljava/lang/Object;
         4: .line 160
            aload 0 /* this */
            aload 1 /* trie */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._tree:[C
            iload 4 /* capacity */
            iconst_4
            imul
            invokestatic java.util.Arrays.copyOf:([CI)[C
            putfield org.eclipse.jetty.util.ArrayTernaryTrie._tree:[C
         5: .line 161
            aload 0 /* this */
            aload 1 /* trie */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._key:[Ljava/lang/String;
            iload 4 /* capacity */
            invokestatic java.util.Arrays.copyOf:([Ljava/lang/Object;I)[Ljava/lang/Object;
            checkcast java.lang.String[]
            putfield org.eclipse.jetty.util.ArrayTernaryTrie._key:[Ljava/lang/String;
         6: .line 162
            return
        end local 4 // int capacity
        end local 2 // double factor
        end local 1 // org.eclipse.jetty.util.ArrayTernaryTrie trie
        end local 0 // org.eclipse.jetty.util.ArrayTernaryTrie this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lorg/eclipse/jetty/util/ArrayTernaryTrie<TV;>;
            0    7     1      trie  Lorg/eclipse/jetty/util/ArrayTernaryTrie<TV;>;
            0    7     2    factor  D
            2    7     4  capacity  I
    Signature: (Lorg/eclipse/jetty/util/ArrayTernaryTrie<TV;>;D)V
    MethodParameters:
        Name  Flags
      trie    
      factor  

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.util.ArrayTernaryTrie this
         0: .line 167
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.jetty.util.ArrayTernaryTrie._rows:C
         1: .line 168
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._value:[Ljava/lang/Object;
            aconst_null
            invokestatic java.util.Arrays.fill:([Ljava/lang/Object;Ljava/lang/Object;)V
         2: .line 169
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._tree:[C
            iconst_0
            invokestatic java.util.Arrays.fill:([CC)V
         3: .line 170
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._key:[Ljava/lang/String;
            aconst_null
            invokestatic java.util.Arrays.fill:([Ljava/lang/Object;Ljava/lang/Object;)V
         4: .line 171
            return
        end local 0 // org.eclipse.jetty.util.ArrayTernaryTrie this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/jetty/util/ArrayTernaryTrie<TV;>;

  public boolean put(java.lang.String, );
    descriptor: (Ljava/lang/String;Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=11, args_size=3
        start local 0 // org.eclipse.jetty.util.ArrayTernaryTrie this
        start local 1 // java.lang.String s
        start local 2 // java.lang.Object v
         0: .line 176
            iconst_0
            istore 3 /* t */
        start local 3 // int t
         1: .line 177
            aload 1 /* s */
            invokevirtual java.lang.String.length:()I
            istore 4 /* limit */
        start local 4 // int limit
         2: .line 178
            iconst_0
            istore 5 /* last */
        start local 5 // int last
         3: .line 179
            iconst_0
            istore 6 /* k */
        start local 6 // int k
         4: goto 27
         5: .line 181
      StackMap locals: org.eclipse.jetty.util.ArrayTernaryTrie java.lang.String java.lang.Object int int int int
      StackMap stack:
            aload 1 /* s */
            iload 6 /* k */
            invokevirtual java.lang.String.charAt:(I)C
            istore 7 /* c */
        start local 7 // char c
         6: .line 182
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.util.ArrayTernaryTrie.isCaseInsensitive:()Z
            ifeq 8
            iload 7 /* c */
            sipush 128
            if_icmpge 8
         7: .line 183
            getstatic org.eclipse.jetty.util.StringUtil.lowercases:[C
            iload 7 /* c */
            caload
            istore 7 /* c */
         8: .line 187
      StackMap locals: int
      StackMap stack:
            iconst_4
            iload 3 /* t */
            imul
            istore 8 /* row */
        start local 8 // int row
         9: .line 190
            iload 3 /* t */
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._rows:C
            if_icmpne 15
        10: .line 192
            aload 0 /* this */
            dup
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._rows:C
            iconst_1
            iadd
            i2c
            putfield org.eclipse.jetty.util.ArrayTernaryTrie._rows:C
        11: .line 193
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._rows:C
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._key:[Ljava/lang/String;
            arraylength
            if_icmplt 14
        12: .line 195
            aload 0 /* this */
            dup
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._rows:C
            iconst_1
            isub
            i2c
            putfield org.eclipse.jetty.util.ArrayTernaryTrie._rows:C
        13: .line 196
            iconst_0
            ireturn
        14: .line 198
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._tree:[C
            iload 8 /* row */
            iload 7 /* c */
            castore
        15: .line 201
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._tree:[C
            iload 8 /* row */
            caload
            istore 9 /* n */
        start local 9 // char n
        16: .line 202
            iload 9 /* n */
            iload 7 /* c */
            isub
            istore 10 /* diff */
        start local 10 // int diff
        17: .line 203
            iload 10 /* diff */
            ifne 19
        18: .line 204
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._tree:[C
            iload 8 /* row */
            getstatic org.eclipse.jetty.util.ArrayTernaryTrie.EQ:I
            iadd
            dup
            istore 5 /* last */
            caload
            istore 3 /* t */
            goto 22
        19: .line 205
      StackMap locals: int int
      StackMap stack:
            iload 10 /* diff */
            ifge 21
        20: .line 206
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._tree:[C
            iload 8 /* row */
            getstatic org.eclipse.jetty.util.ArrayTernaryTrie.LO:I
            iadd
            dup
            istore 5 /* last */
            caload
            istore 3 /* t */
            goto 22
        21: .line 208
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._tree:[C
            iload 8 /* row */
            getstatic org.eclipse.jetty.util.ArrayTernaryTrie.HI:I
            iadd
            dup
            istore 5 /* last */
            caload
            istore 3 /* t */
        22: .line 211
      StackMap locals:
      StackMap stack:
            iload 3 /* t */
            ifne 25
        23: .line 213
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._rows:C
            istore 3 /* t */
        24: .line 214
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._tree:[C
            iload 5 /* last */
            iload 3 /* t */
            i2c
            castore
        25: .line 217
      StackMap locals:
      StackMap stack:
            iload 10 /* diff */
            ifne 8
        end local 10 // int diff
        end local 9 // char n
        end local 8 // int row
        end local 7 // char c
        26: .line 179
            iinc 6 /* k */ 1
      StackMap locals: org.eclipse.jetty.util.ArrayTernaryTrie java.lang.String java.lang.Object int int int int
      StackMap stack:
        27: iload 6 /* k */
            iload 4 /* limit */
            if_icmplt 5
        end local 6 // int k
        28: .line 223
            iload 3 /* t */
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._rows:C
            if_icmpne 33
        29: .line 225
            aload 0 /* this */
            dup
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._rows:C
            iconst_1
            iadd
            i2c
            putfield org.eclipse.jetty.util.ArrayTernaryTrie._rows:C
        30: .line 226
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._rows:C
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._key:[Ljava/lang/String;
            arraylength
            if_icmplt 33
        31: .line 228
            aload 0 /* this */
            dup
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._rows:C
            iconst_1
            isub
            i2c
            putfield org.eclipse.jetty.util.ArrayTernaryTrie._rows:C
        32: .line 229
            iconst_0
            ireturn
        33: .line 234
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._key:[Ljava/lang/String;
            iload 3 /* t */
            aload 2 /* v */
            ifnonnull 34
            aconst_null
            goto 35
      StackMap locals: org.eclipse.jetty.util.ArrayTernaryTrie java.lang.String java.lang.Object int int int
      StackMap stack: java.lang.String[] int
        34: aload 1 /* s */
      StackMap locals: org.eclipse.jetty.util.ArrayTernaryTrie java.lang.String java.lang.Object int int int
      StackMap stack: java.lang.String[] int java.lang.String
        35: aastore
        36: .line 235
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._value:[Ljava/lang/Object;
            iload 3 /* t */
            aload 2 /* v */
            aastore
        37: .line 237
            iconst_1
            ireturn
        end local 5 // int last
        end local 4 // int limit
        end local 3 // int t
        end local 2 // java.lang.Object v
        end local 1 // java.lang.String s
        end local 0 // org.eclipse.jetty.util.ArrayTernaryTrie this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   38     0   this  Lorg/eclipse/jetty/util/ArrayTernaryTrie<TV;>;
            0   38     1      s  Ljava/lang/String;
            0   38     2      v  TV;
            1   38     3      t  I
            2   38     4  limit  I
            3   38     5   last  I
            4   28     6      k  I
            6   26     7      c  C
            9   26     8    row  I
           16   26     9      n  C
           17   26    10   diff  I
    Signature: (Ljava/lang/String;TV;)Z
    MethodParameters:
      Name  Flags
      s     
      v     

  public V get(java.lang.String, int, );
    descriptor: (Ljava/lang/String;II)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=10, args_size=4
        start local 0 // org.eclipse.jetty.util.ArrayTernaryTrie this
        start local 1 // java.lang.String s
        start local 2 // int offset
        start local 3 // int len
         0: .line 243
            iconst_0
            istore 4 /* t */
        start local 4 // int t
         1: .line 244
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         2: goto 16
         3: .line 246
      StackMap locals: int int
      StackMap stack:
            aload 1 /* s */
            iload 2 /* offset */
            iload 5 /* i */
            iinc 5 /* i */ 1
            iadd
            invokevirtual java.lang.String.charAt:(I)C
            istore 6 /* c */
        start local 6 // char c
         4: .line 247
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.util.ArrayTernaryTrie.isCaseInsensitive:()Z
            ifeq 6
            iload 6 /* c */
            sipush 128
            if_icmpge 6
         5: .line 248
            getstatic org.eclipse.jetty.util.StringUtil.lowercases:[C
            iload 6 /* c */
            caload
            istore 6 /* c */
         6: .line 252
      StackMap locals: int
      StackMap stack:
            iconst_4
            iload 4 /* t */
            imul
            istore 7 /* row */
        start local 7 // int row
         7: .line 253
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._tree:[C
            iload 7 /* row */
            caload
            istore 8 /* n */
        start local 8 // char n
         8: .line 254
            iload 8 /* n */
            iload 6 /* c */
            isub
            istore 9 /* diff */
        start local 9 // int diff
         9: .line 256
            iload 9 /* diff */
            ifne 13
        10: .line 258
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._tree:[C
            iload 7 /* row */
            getstatic org.eclipse.jetty.util.ArrayTernaryTrie.EQ:I
            iadd
            caload
            istore 4 /* t */
        11: .line 259
            iload 4 /* t */
            ifne 16
        12: .line 260
            aconst_null
            areturn
        13: .line 264
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._tree:[C
            iload 7 /* row */
            iload 9 /* diff */
            invokestatic org.eclipse.jetty.util.ArrayTernaryTrie.hilo:(I)I
            iadd
            caload
            istore 4 /* t */
        14: .line 265
            iload 4 /* t */
            ifne 6
        15: .line 266
            aconst_null
            areturn
        end local 9 // int diff
        end local 8 // char n
        end local 7 // int row
        end local 6 // char c
        16: .line 244
      StackMap locals: org.eclipse.jetty.util.ArrayTernaryTrie java.lang.String int int int int
      StackMap stack:
            iload 5 /* i */
            iload 3 /* len */
            if_icmplt 3
        end local 5 // int i
        17: .line 270
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._value:[Ljava/lang/Object;
            iload 4 /* t */
            aaload
            areturn
        end local 4 // int t
        end local 3 // int len
        end local 2 // int offset
        end local 1 // java.lang.String s
        end local 0 // org.eclipse.jetty.util.ArrayTernaryTrie this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   18     0    this  Lorg/eclipse/jetty/util/ArrayTernaryTrie<TV;>;
            0   18     1       s  Ljava/lang/String;
            0   18     2  offset  I
            0   18     3     len  I
            1   18     4       t  I
            2   17     5       i  I
            4   16     6       c  C
            7   16     7     row  I
            8   16     8       n  C
            9   16     9    diff  I
    Signature: (Ljava/lang/String;II)TV;
    MethodParameters:
        Name  Flags
      s       
      offset  
      len     

  public V get(java.nio.ByteBuffer, int, );
    descriptor: (Ljava/nio/ByteBuffer;II)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=10, args_size=4
        start local 0 // org.eclipse.jetty.util.ArrayTernaryTrie this
        start local 1 // java.nio.ByteBuffer b
        start local 2 // int offset
        start local 3 // int len
         0: .line 276
            iconst_0
            istore 4 /* t */
        start local 4 // int t
         1: .line 277
            iload 2 /* offset */
            aload 1 /* b */
            invokevirtual java.nio.ByteBuffer.position:()I
            iadd
            istore 2 /* offset */
         2: .line 279
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         3: goto 17
         4: .line 281
      StackMap locals: int int
      StackMap stack:
            aload 1 /* b */
            iload 2 /* offset */
            iload 5 /* i */
            iinc 5 /* i */ 1
            iadd
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 127
            iand
            i2b
            istore 6 /* c */
        start local 6 // byte c
         5: .line 282
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.util.ArrayTernaryTrie.isCaseInsensitive:()Z
            ifeq 7
         6: .line 283
            getstatic org.eclipse.jetty.util.StringUtil.lowercases:[C
            iload 6 /* c */
            caload
            i2b
            istore 6 /* c */
         7: .line 287
      StackMap locals: int
      StackMap stack:
            iconst_4
            iload 4 /* t */
            imul
            istore 7 /* row */
        start local 7 // int row
         8: .line 288
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._tree:[C
            iload 7 /* row */
            caload
            istore 8 /* n */
        start local 8 // char n
         9: .line 289
            iload 8 /* n */
            iload 6 /* c */
            isub
            istore 9 /* diff */
        start local 9 // int diff
        10: .line 291
            iload 9 /* diff */
            ifne 14
        11: .line 293
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._tree:[C
            iload 7 /* row */
            getstatic org.eclipse.jetty.util.ArrayTernaryTrie.EQ:I
            iadd
            caload
            istore 4 /* t */
        12: .line 294
            iload 4 /* t */
            ifne 17
        13: .line 295
            aconst_null
            areturn
        14: .line 299
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._tree:[C
            iload 7 /* row */
            iload 9 /* diff */
            invokestatic org.eclipse.jetty.util.ArrayTernaryTrie.hilo:(I)I
            iadd
            caload
            istore 4 /* t */
        15: .line 300
            iload 4 /* t */
            ifne 7
        16: .line 301
            aconst_null
            areturn
        end local 9 // int diff
        end local 8 // char n
        end local 7 // int row
        end local 6 // byte c
        17: .line 279
      StackMap locals: org.eclipse.jetty.util.ArrayTernaryTrie java.nio.ByteBuffer int int int int
      StackMap stack:
            iload 5 /* i */
            iload 3 /* len */
            if_icmplt 4
        end local 5 // int i
        18: .line 305
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._value:[Ljava/lang/Object;
            iload 4 /* t */
            aaload
            areturn
        end local 4 // int t
        end local 3 // int len
        end local 2 // int offset
        end local 1 // java.nio.ByteBuffer b
        end local 0 // org.eclipse.jetty.util.ArrayTernaryTrie this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   19     0    this  Lorg/eclipse/jetty/util/ArrayTernaryTrie<TV;>;
            0   19     1       b  Ljava/nio/ByteBuffer;
            0   19     2  offset  I
            0   19     3     len  I
            1   19     4       t  I
            3   18     5       i  I
            5   17     6       c  B
            8   17     7     row  I
            9   17     8       n  C
           10   17     9    diff  I
    Signature: (Ljava/nio/ByteBuffer;II)TV;
    MethodParameters:
        Name  Flags
      b       
      offset  
      len     

  public V getBest(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.util.ArrayTernaryTrie this
        start local 1 // java.lang.String s
         0: .line 311
            aload 0 /* this */
            iconst_0
            aload 1 /* s */
            iconst_0
            aload 1 /* s */
            invokevirtual java.lang.String.length:()I
            invokevirtual org.eclipse.jetty.util.ArrayTernaryTrie.getBest:(ILjava/lang/String;II)Ljava/lang/Object;
            areturn
        end local 1 // java.lang.String s
        end local 0 // org.eclipse.jetty.util.ArrayTernaryTrie this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/util/ArrayTernaryTrie<TV;>;
            0    1     1     s  Ljava/lang/String;
    Signature: (Ljava/lang/String;)TV;
    MethodParameters:
      Name  Flags
      s     

  public V getBest(java.lang.String, int, );
    descriptor: (Ljava/lang/String;II)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // org.eclipse.jetty.util.ArrayTernaryTrie this
        start local 1 // java.lang.String s
        start local 2 // int offset
        start local 3 // int length
         0: .line 317
            aload 0 /* this */
            iconst_0
            aload 1 /* s */
            iload 2 /* offset */
            iload 3 /* length */
            invokevirtual org.eclipse.jetty.util.ArrayTernaryTrie.getBest:(ILjava/lang/String;II)Ljava/lang/Object;
            areturn
        end local 3 // int length
        end local 2 // int offset
        end local 1 // java.lang.String s
        end local 0 // org.eclipse.jetty.util.ArrayTernaryTrie this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/jetty/util/ArrayTernaryTrie<TV;>;
            0    1     1       s  Ljava/lang/String;
            0    1     2  offset  I
            0    1     3  length  I
    Signature: (Ljava/lang/String;II)TV;
    MethodParameters:
        Name  Flags
      s       
      offset  
      length  

  private V getBest(int, java.lang.String, int, );
    descriptor: (ILjava/lang/String;II)Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=12, args_size=5
        start local 0 // org.eclipse.jetty.util.ArrayTernaryTrie this
        start local 1 // int t
        start local 2 // java.lang.String s
        start local 3 // int offset
        start local 4 // int len
         0: .line 322
            iload 1 /* t */
            istore 5 /* node */
        start local 5 // int node
         1: .line 323
            iload 3 /* offset */
            iload 4 /* len */
            iadd
            istore 6 /* end */
        start local 6 // int end
         2: .line 325
            goto 22
         3: .line 327
      StackMap locals: int int
      StackMap stack:
            aload 2 /* s */
            iload 3 /* offset */
            iinc 3 /* offset */ 1
            invokevirtual java.lang.String.charAt:(I)C
            istore 7 /* c */
        start local 7 // char c
         4: .line 328
            iinc 4 /* len */ -1
         5: .line 329
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.util.ArrayTernaryTrie.isCaseInsensitive:()Z
            ifeq 7
            iload 7 /* c */
            sipush 128
            if_icmpge 7
         6: .line 330
            getstatic org.eclipse.jetty.util.StringUtil.lowercases:[C
            iload 7 /* c */
            caload
            istore 7 /* c */
         7: .line 334
      StackMap locals: int
      StackMap stack:
            iconst_4
            iload 1 /* t */
            imul
            istore 8 /* row */
        start local 8 // int row
         8: .line 335
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._tree:[C
            iload 8 /* row */
            caload
            istore 9 /* n */
        start local 9 // char n
         9: .line 336
            iload 9 /* n */
            iload 7 /* c */
            isub
            istore 10 /* diff */
        start local 10 // int diff
        10: .line 338
            iload 10 /* diff */
            ifne 19
        11: .line 340
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._tree:[C
            iload 8 /* row */
            getstatic org.eclipse.jetty.util.ArrayTernaryTrie.EQ:I
            iadd
            caload
            istore 1 /* t */
        12: .line 341
            iload 1 /* t */
            ifne 14
        13: .line 342
            goto 23
        14: .line 345
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._key:[Ljava/lang/String;
            iload 1 /* t */
            aaload
            ifnull 22
        15: .line 347
            iload 1 /* t */
            istore 5 /* node */
        16: .line 348
            aload 0 /* this */
            iload 1 /* t */
            aload 2 /* s */
            iload 3 /* offset */
            iload 4 /* len */
            invokevirtual org.eclipse.jetty.util.ArrayTernaryTrie.getBest:(ILjava/lang/String;II)Ljava/lang/Object;
            astore 11 /* better */
        start local 11 // java.lang.Object better
        17: .line 349
            aload 11 /* better */
            ifnull 22
        18: .line 350
            aload 11 /* better */
            areturn
        end local 11 // java.lang.Object better
        19: .line 355
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._tree:[C
            iload 8 /* row */
            iload 10 /* diff */
            invokestatic org.eclipse.jetty.util.ArrayTernaryTrie.hilo:(I)I
            iadd
            caload
            istore 1 /* t */
        20: .line 356
            iload 1 /* t */
            ifne 7
        21: .line 357
            goto 23
        end local 10 // int diff
        end local 9 // char n
        end local 8 // int row
        end local 7 // char c
        22: .line 325
      StackMap locals: org.eclipse.jetty.util.ArrayTernaryTrie int java.lang.String int int int int
      StackMap stack:
            iload 3 /* offset */
            iload 6 /* end */
            if_icmplt 3
        23: .line 360
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._value:[Ljava/lang/Object;
            iload 5 /* node */
            aaload
            areturn
        end local 6 // int end
        end local 5 // int node
        end local 4 // int len
        end local 3 // int offset
        end local 2 // java.lang.String s
        end local 1 // int t
        end local 0 // org.eclipse.jetty.util.ArrayTernaryTrie this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   24     0    this  Lorg/eclipse/jetty/util/ArrayTernaryTrie<TV;>;
            0   24     1       t  I
            0   24     2       s  Ljava/lang/String;
            0   24     3  offset  I
            0   24     4     len  I
            1   24     5    node  I
            2   24     6     end  I
            4   22     7       c  C
            8   22     8     row  I
            9   22     9       n  C
           10   22    10    diff  I
           17   19    11  better  TV;
    Signature: (ILjava/lang/String;II)TV;
    MethodParameters:
        Name  Flags
      t       
      s       
      offset  
      len     

  public V getBest(java.nio.ByteBuffer, int, );
    descriptor: (Ljava/nio/ByteBuffer;II)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // org.eclipse.jetty.util.ArrayTernaryTrie this
        start local 1 // java.nio.ByteBuffer b
        start local 2 // int offset
        start local 3 // int len
         0: .line 366
            aload 1 /* b */
            invokevirtual java.nio.ByteBuffer.hasArray:()Z
            ifeq 2
         1: .line 367
            aload 0 /* this */
            iconst_0
            aload 1 /* b */
            invokevirtual java.nio.ByteBuffer.array:()[B
            aload 1 /* b */
            invokevirtual java.nio.ByteBuffer.arrayOffset:()I
            aload 1 /* b */
            invokevirtual java.nio.ByteBuffer.position:()I
            iadd
            iload 2 /* offset */
            iadd
            iload 3 /* len */
            invokevirtual org.eclipse.jetty.util.ArrayTernaryTrie.getBest:(I[BII)Ljava/lang/Object;
            areturn
         2: .line 368
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            aload 1 /* b */
            iload 2 /* offset */
            iload 3 /* len */
            invokevirtual org.eclipse.jetty.util.ArrayTernaryTrie.getBest:(ILjava/nio/ByteBuffer;II)Ljava/lang/Object;
            areturn
        end local 3 // int len
        end local 2 // int offset
        end local 1 // java.nio.ByteBuffer b
        end local 0 // org.eclipse.jetty.util.ArrayTernaryTrie this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/eclipse/jetty/util/ArrayTernaryTrie<TV;>;
            0    3     1       b  Ljava/nio/ByteBuffer;
            0    3     2  offset  I
            0    3     3     len  I
    Signature: (Ljava/nio/ByteBuffer;II)TV;
    MethodParameters:
        Name  Flags
      b       
      offset  
      len     

  private V getBest(int, byte[], int, );
    descriptor: (I[BII)Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=12, args_size=5
        start local 0 // org.eclipse.jetty.util.ArrayTernaryTrie this
        start local 1 // int t
        start local 2 // byte[] b
        start local 3 // int offset
        start local 4 // int len
         0: .line 373
            iload 1 /* t */
            istore 5 /* node */
        start local 5 // int node
         1: .line 374
            iload 3 /* offset */
            iload 4 /* len */
            iadd
            istore 6 /* end */
        start local 6 // int end
         2: .line 376
            goto 22
         3: .line 378
      StackMap locals: int int
      StackMap stack:
            aload 2 /* b */
            iload 3 /* offset */
            iinc 3 /* offset */ 1
            baload
            bipush 127
            iand
            i2b
            istore 7 /* c */
        start local 7 // byte c
         4: .line 379
            iinc 4 /* len */ -1
         5: .line 380
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.util.ArrayTernaryTrie.isCaseInsensitive:()Z
            ifeq 7
         6: .line 381
            getstatic org.eclipse.jetty.util.StringUtil.lowercases:[C
            iload 7 /* c */
            caload
            i2b
            istore 7 /* c */
         7: .line 385
      StackMap locals: int
      StackMap stack:
            iconst_4
            iload 1 /* t */
            imul
            istore 8 /* row */
        start local 8 // int row
         8: .line 386
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._tree:[C
            iload 8 /* row */
            caload
            istore 9 /* n */
        start local 9 // char n
         9: .line 387
            iload 9 /* n */
            iload 7 /* c */
            isub
            istore 10 /* diff */
        start local 10 // int diff
        10: .line 389
            iload 10 /* diff */
            ifne 19
        11: .line 391
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._tree:[C
            iload 8 /* row */
            getstatic org.eclipse.jetty.util.ArrayTernaryTrie.EQ:I
            iadd
            caload
            istore 1 /* t */
        12: .line 392
            iload 1 /* t */
            ifne 14
        13: .line 393
            goto 23
        14: .line 396
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._key:[Ljava/lang/String;
            iload 1 /* t */
            aaload
            ifnull 22
        15: .line 398
            iload 1 /* t */
            istore 5 /* node */
        16: .line 399
            aload 0 /* this */
            iload 1 /* t */
            aload 2 /* b */
            iload 3 /* offset */
            iload 4 /* len */
            invokevirtual org.eclipse.jetty.util.ArrayTernaryTrie.getBest:(I[BII)Ljava/lang/Object;
            astore 11 /* better */
        start local 11 // java.lang.Object better
        17: .line 400
            aload 11 /* better */
            ifnull 22
        18: .line 401
            aload 11 /* better */
            areturn
        end local 11 // java.lang.Object better
        19: .line 406
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._tree:[C
            iload 8 /* row */
            iload 10 /* diff */
            invokestatic org.eclipse.jetty.util.ArrayTernaryTrie.hilo:(I)I
            iadd
            caload
            istore 1 /* t */
        20: .line 407
            iload 1 /* t */
            ifne 7
        21: .line 408
            goto 23
        end local 10 // int diff
        end local 9 // char n
        end local 8 // int row
        end local 7 // byte c
        22: .line 376
      StackMap locals: org.eclipse.jetty.util.ArrayTernaryTrie int byte[] int int int int
      StackMap stack:
            iload 3 /* offset */
            iload 6 /* end */
            if_icmplt 3
        23: .line 411
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._value:[Ljava/lang/Object;
            iload 5 /* node */
            aaload
            areturn
        end local 6 // int end
        end local 5 // int node
        end local 4 // int len
        end local 3 // int offset
        end local 2 // byte[] b
        end local 1 // int t
        end local 0 // org.eclipse.jetty.util.ArrayTernaryTrie this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   24     0    this  Lorg/eclipse/jetty/util/ArrayTernaryTrie<TV;>;
            0   24     1       t  I
            0   24     2       b  [B
            0   24     3  offset  I
            0   24     4     len  I
            1   24     5    node  I
            2   24     6     end  I
            4   22     7       c  B
            8   22     8     row  I
            9   22     9       n  C
           10   22    10    diff  I
           17   19    11  better  TV;
    Signature: (I[BII)TV;
    MethodParameters:
        Name  Flags
      t       
      b       
      offset  
      len     

  private V getBest(int, java.nio.ByteBuffer, int, );
    descriptor: (ILjava/nio/ByteBuffer;II)Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=13, args_size=5
        start local 0 // org.eclipse.jetty.util.ArrayTernaryTrie this
        start local 1 // int t
        start local 2 // java.nio.ByteBuffer b
        start local 3 // int offset
        start local 4 // int len
         0: .line 416
            iload 1 /* t */
            istore 5 /* node */
        start local 5 // int node
         1: .line 417
            iload 3 /* offset */
            aload 2 /* b */
            invokevirtual java.nio.ByteBuffer.position:()I
            iadd
            istore 6 /* o */
        start local 6 // int o
         2: .line 420
            iconst_0
            istore 7 /* i */
        start local 7 // int i
         3: goto 23
         4: .line 422
      StackMap locals: int int int
      StackMap stack:
            aload 2 /* b */
            iload 6 /* o */
            iload 7 /* i */
            iadd
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 127
            iand
            i2b
            istore 8 /* c */
        start local 8 // byte c
         5: .line 423
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.util.ArrayTernaryTrie.isCaseInsensitive:()Z
            ifeq 7
         6: .line 424
            getstatic org.eclipse.jetty.util.StringUtil.lowercases:[C
            iload 8 /* c */
            caload
            i2b
            istore 8 /* c */
         7: .line 428
      StackMap locals: int
      StackMap stack:
            iconst_4
            iload 1 /* t */
            imul
            istore 9 /* row */
        start local 9 // int row
         8: .line 429
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._tree:[C
            iload 9 /* row */
            caload
            istore 10 /* n */
        start local 10 // char n
         9: .line 430
            iload 10 /* n */
            iload 8 /* c */
            isub
            istore 11 /* diff */
        start local 11 // int diff
        10: .line 432
            iload 11 /* diff */
            ifne 19
        11: .line 434
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._tree:[C
            iload 9 /* row */
            getstatic org.eclipse.jetty.util.ArrayTernaryTrie.EQ:I
            iadd
            caload
            istore 1 /* t */
        12: .line 435
            iload 1 /* t */
            ifne 14
        13: .line 436
            goto 24
        14: .line 439
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._key:[Ljava/lang/String;
            iload 1 /* t */
            aaload
            ifnull 22
        15: .line 441
            iload 1 /* t */
            istore 5 /* node */
        16: .line 442
            aload 0 /* this */
            iload 1 /* t */
            aload 2 /* b */
            iload 3 /* offset */
            iload 7 /* i */
            iadd
            iconst_1
            iadd
            iload 4 /* len */
            iload 7 /* i */
            isub
            iconst_1
            isub
            invokevirtual org.eclipse.jetty.util.ArrayTernaryTrie.getBest:(ILjava/nio/ByteBuffer;II)Ljava/lang/Object;
            astore 12 /* best */
        start local 12 // java.lang.Object best
        17: .line 443
            aload 12 /* best */
            ifnull 22
        18: .line 444
            aload 12 /* best */
            areturn
        end local 12 // java.lang.Object best
        19: .line 449
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._tree:[C
            iload 9 /* row */
            iload 11 /* diff */
            invokestatic org.eclipse.jetty.util.ArrayTernaryTrie.hilo:(I)I
            iadd
            caload
            istore 1 /* t */
        20: .line 450
            iload 1 /* t */
            ifne 7
        21: .line 451
            goto 24
        end local 11 // int diff
        end local 10 // char n
        end local 9 // int row
        end local 8 // byte c
        22: .line 420
      StackMap locals: org.eclipse.jetty.util.ArrayTernaryTrie int java.nio.ByteBuffer int int int int int
      StackMap stack:
            iinc 7 /* i */ 1
      StackMap locals:
      StackMap stack:
        23: iload 7 /* i */
            iload 4 /* len */
            if_icmplt 4
        end local 7 // int i
        24: .line 454
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._value:[Ljava/lang/Object;
            iload 5 /* node */
            aaload
            areturn
        end local 6 // int o
        end local 5 // int node
        end local 4 // int len
        end local 3 // int offset
        end local 2 // java.nio.ByteBuffer b
        end local 1 // int t
        end local 0 // org.eclipse.jetty.util.ArrayTernaryTrie this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   25     0    this  Lorg/eclipse/jetty/util/ArrayTernaryTrie<TV;>;
            0   25     1       t  I
            0   25     2       b  Ljava/nio/ByteBuffer;
            0   25     3  offset  I
            0   25     4     len  I
            1   25     5    node  I
            2   25     6       o  I
            3   24     7       i  I
            5   22     8       c  B
            8   22     9     row  I
            9   22    10       n  C
           10   22    11    diff  I
           17   19    12    best  TV;
    Signature: (ILjava/nio/ByteBuffer;II)TV;
    MethodParameters:
        Name  Flags
      t       
      b       
      offset  
      len     

  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.eclipse.jetty.util.ArrayTernaryTrie this
         0: .line 460
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 1 /* buf */
        start local 1 // java.lang.StringBuilder buf
         1: .line 461
            iconst_0
            istore 2 /* r */
        start local 2 // int r
         2: goto 9
         3: .line 463
      StackMap locals: java.lang.StringBuilder int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._key:[Ljava/lang/String;
            iload 2 /* r */
            aaload
            ifnull 8
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._value:[Ljava/lang/Object;
            iload 2 /* r */
            aaload
            ifnull 8
         4: .line 465
            aload 1 /* buf */
            bipush 44
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
         5: .line 466
            aload 1 /* buf */
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._key:[Ljava/lang/String;
            iload 2 /* r */
            aaload
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         6: .line 467
            aload 1 /* buf */
            bipush 61
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
         7: .line 468
            aload 1 /* buf */
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._value:[Ljava/lang/Object;
            iload 2 /* r */
            aaload
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         8: .line 461
      StackMap locals:
      StackMap stack:
            iinc 2 /* r */ 1
      StackMap locals:
      StackMap stack:
         9: iload 2 /* r */
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._rows:C
            if_icmple 3
        end local 2 // int r
        10: .line 471
            aload 1 /* buf */
            invokevirtual java.lang.StringBuilder.length:()I
            ifne 12
        11: .line 472
            ldc "{}"
            areturn
        12: .line 474
      StackMap locals:
      StackMap stack:
            aload 1 /* buf */
            iconst_0
            bipush 123
            invokevirtual java.lang.StringBuilder.setCharAt:(IC)V
        13: .line 475
            aload 1 /* buf */
            bipush 125
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
        14: .line 476
            aload 1 /* buf */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 1 // java.lang.StringBuilder buf
        end local 0 // org.eclipse.jetty.util.ArrayTernaryTrie this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   15     0  this  Lorg/eclipse/jetty/util/ArrayTernaryTrie<TV;>;
            1   15     1   buf  Ljava/lang/StringBuilder;
            2   10     2     r  I

  public java.util.Set<java.lang.String> keySet();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // org.eclipse.jetty.util.ArrayTernaryTrie this
         0: .line 482
            new java.util.HashSet
            dup
            invokespecial java.util.HashSet.<init>:()V
            astore 1 /* keys */
        start local 1 // java.util.Set keys
         1: .line 484
            iconst_0
            istore 2 /* r */
        start local 2 // int r
         2: goto 6
         3: .line 486
      StackMap locals: java.util.Set int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._key:[Ljava/lang/String;
            iload 2 /* r */
            aaload
            ifnull 5
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._value:[Ljava/lang/Object;
            iload 2 /* r */
            aaload
            ifnull 5
         4: .line 487
            aload 1 /* keys */
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._key:[Ljava/lang/String;
            iload 2 /* r */
            aaload
            invokeinterface java.util.Set.add:(Ljava/lang/Object;)Z
            pop
         5: .line 484
      StackMap locals:
      StackMap stack:
            iinc 2 /* r */ 1
      StackMap locals:
      StackMap stack:
         6: iload 2 /* r */
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._rows:C
            if_icmple 3
        end local 2 // int r
         7: .line 489
            aload 1 /* keys */
            areturn
        end local 1 // java.util.Set keys
        end local 0 // org.eclipse.jetty.util.ArrayTernaryTrie this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/eclipse/jetty/util/ArrayTernaryTrie<TV;>;
            1    8     1  keys  Ljava/util/Set<Ljava/lang/String;>;
            2    7     2     r  I
    Signature: ()Ljava/util/Set<Ljava/lang/String;>;

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // org.eclipse.jetty.util.ArrayTernaryTrie this
         0: .line 494
            iconst_0
            istore 1 /* s */
        start local 1 // int s
         1: .line 495
            iconst_0
            istore 2 /* r */
        start local 2 // int r
         2: goto 6
         3: .line 497
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._key:[Ljava/lang/String;
            iload 2 /* r */
            aaload
            ifnull 5
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._value:[Ljava/lang/Object;
            iload 2 /* r */
            aaload
            ifnull 5
         4: .line 498
            iinc 1 /* s */ 1
         5: .line 495
      StackMap locals:
      StackMap stack:
            iinc 2 /* r */ 1
      StackMap locals:
      StackMap stack:
         6: iload 2 /* r */
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._rows:C
            if_icmple 3
        end local 2 // int r
         7: .line 500
            iload 1 /* s */
            ireturn
        end local 1 // int s
        end local 0 // org.eclipse.jetty.util.ArrayTernaryTrie this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/eclipse/jetty/util/ArrayTernaryTrie<TV;>;
            1    8     1     s  I
            2    7     2     r  I

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.jetty.util.ArrayTernaryTrie this
         0: .line 505
            iconst_0
            istore 1 /* r */
        start local 1 // int r
         1: goto 5
         2: .line 507
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._key:[Ljava/lang/String;
            iload 1 /* r */
            aaload
            ifnull 4
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._value:[Ljava/lang/Object;
            iload 1 /* r */
            aaload
            ifnull 4
         3: .line 508
            iconst_0
            ireturn
         4: .line 505
      StackMap locals:
      StackMap stack:
            iinc 1 /* r */ 1
      StackMap locals:
      StackMap stack:
         5: iload 1 /* r */
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._rows:C
            if_icmple 2
        end local 1 // int r
         6: .line 510
            iconst_1
            ireturn
        end local 0 // org.eclipse.jetty.util.ArrayTernaryTrie this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/eclipse/jetty/util/ArrayTernaryTrie<TV;>;
            1    6     1     r  I

  public java.util.Set<java.util.Map$Entry<java.lang.String, V>> entrySet();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=1
        start local 0 // org.eclipse.jetty.util.ArrayTernaryTrie this
         0: .line 515
            new java.util.HashSet
            dup
            invokespecial java.util.HashSet.<init>:()V
            astore 1 /* entries */
        start local 1 // java.util.Set entries
         1: .line 516
            iconst_0
            istore 2 /* r */
        start local 2 // int r
         2: goto 6
         3: .line 518
      StackMap locals: java.util.Set int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._key:[Ljava/lang/String;
            iload 2 /* r */
            aaload
            ifnull 5
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._value:[Ljava/lang/Object;
            iload 2 /* r */
            aaload
            ifnull 5
         4: .line 519
            aload 1 /* entries */
            new java.util.AbstractMap$SimpleEntry
            dup
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._key:[Ljava/lang/String;
            iload 2 /* r */
            aaload
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._value:[Ljava/lang/Object;
            iload 2 /* r */
            aaload
            invokespecial java.util.AbstractMap$SimpleEntry.<init>:(Ljava/lang/Object;Ljava/lang/Object;)V
            invokeinterface java.util.Set.add:(Ljava/lang/Object;)Z
            pop
         5: .line 516
      StackMap locals:
      StackMap stack:
            iinc 2 /* r */ 1
      StackMap locals:
      StackMap stack:
         6: iload 2 /* r */
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._rows:C
            if_icmple 3
        end local 2 // int r
         7: .line 521
            aload 1 /* entries */
            areturn
        end local 1 // java.util.Set entries
        end local 0 // org.eclipse.jetty.util.ArrayTernaryTrie this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Lorg/eclipse/jetty/util/ArrayTernaryTrie<TV;>;
            1    8     1  entries  Ljava/util/Set<Ljava/util/Map$Entry<Ljava/lang/String;TV;>;>;
            2    7     2        r  I
    Signature: ()Ljava/util/Set<Ljava/util/Map$Entry<Ljava/lang/String;TV;>;>;

  public boolean isFull();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.util.ArrayTernaryTrie this
         0: .line 527
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._rows:C
            iconst_1
            iadd
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._key:[Ljava/lang/String;
            arraylength
            if_icmpne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.eclipse.jetty.util.ArrayTernaryTrie this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jetty/util/ArrayTernaryTrie<TV;>;

  public static int hilo(int);
    descriptor: (I)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // int diff
         0: .line 534
            iconst_1
            iload 0 /* diff */
            ldc 2147483647
            ior
            ldc 1073741823
            idiv
            iadd
            ireturn
        end local 0 // int diff
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  diff  I
    MethodParameters:
      Name  Flags
      diff  

  public void dump();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=3, args_size=1
        start local 0 // org.eclipse.jetty.util.ArrayTernaryTrie this
         0: .line 539
            iconst_0
            istore 1 /* r */
        start local 1 // int r
         1: goto 16
         2: .line 541
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._tree:[C
            iload 1 /* r */
            iconst_4
            imul
            iconst_0
            iadd
            caload
            istore 2 /* c */
        start local 2 // char c
         3: .line 542
            getstatic java.lang.System.err:Ljava/io/PrintStream;
            ldc "%4d [%s,%d,%d,%d] '%s':%s%n"
            bipush 7
            anewarray java.lang.Object
            dup
            iconst_0
         4: .line 543
            iload 1 /* r */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_1
         5: .line 544
            iload 2 /* c */
            bipush 32
            if_icmplt 6
            iload 2 /* c */
            bipush 127
            if_icmple 7
      StackMap locals: org.eclipse.jetty.util.ArrayTernaryTrie int int
      StackMap stack: java.io.PrintStream java.lang.String java.lang.Object[] java.lang.Object[] int
         6: new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            iload 2 /* c */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            goto 8
      StackMap locals: org.eclipse.jetty.util.ArrayTernaryTrie int int
      StackMap stack: java.io.PrintStream java.lang.String java.lang.Object[] java.lang.Object[] int
         7: new java.lang.StringBuilder
            dup
            ldc "'"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 2 /* c */
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            ldc "'"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
      StackMap locals: org.eclipse.jetty.util.ArrayTernaryTrie int int
      StackMap stack: java.io.PrintStream java.lang.String java.lang.Object[] java.lang.Object[] int java.lang.String
         8: aastore
            dup
            iconst_2
         9: .line 545
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._tree:[C
            iload 1 /* r */
            iconst_4
            imul
            getstatic org.eclipse.jetty.util.ArrayTernaryTrie.LO:I
            iadd
            caload
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_3
        10: .line 546
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._tree:[C
            iload 1 /* r */
            iconst_4
            imul
            getstatic org.eclipse.jetty.util.ArrayTernaryTrie.EQ:I
            iadd
            caload
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_4
        11: .line 547
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._tree:[C
            iload 1 /* r */
            iconst_4
            imul
            getstatic org.eclipse.jetty.util.ArrayTernaryTrie.HI:I
            iadd
            caload
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_5
        12: .line 548
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._key:[Ljava/lang/String;
            iload 1 /* r */
            aaload
            aastore
            dup
            bipush 6
        13: .line 549
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._value:[Ljava/lang/Object;
            iload 1 /* r */
            aaload
            aastore
        14: .line 542
            invokevirtual java.io.PrintStream.printf:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/PrintStream;
            pop
        end local 2 // char c
        15: .line 539
            iinc 1 /* r */ 1
      StackMap locals:
      StackMap stack:
        16: iload 1 /* r */
            aload 0 /* this */
            getfield org.eclipse.jetty.util.ArrayTernaryTrie._rows:C
            if_icmplt 2
        end local 1 // int r
        17: .line 551
            return
        end local 0 // org.eclipse.jetty.util.ArrayTernaryTrie this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   18     0  this  Lorg/eclipse/jetty/util/ArrayTernaryTrie<TV;>;
            1   17     1     r  I
            3   15     2     c  C
}
Signature: <V:Ljava/lang/Object;>Lorg/eclipse/jetty/util/AbstractTrie<TV;>;
SourceFile: "ArrayTernaryTrie.java"
NestMembers:
  org.eclipse.jetty.util.ArrayTernaryTrie$Growing
InnerClasses:
  public SimpleEntry = java.util.AbstractMap$SimpleEntry of java.util.AbstractMap
  public abstract Entry = java.util.Map$Entry of java.util.Map
  public Growing = org.eclipse.jetty.util.ArrayTernaryTrie$Growing of org.eclipse.jetty.util.ArrayTernaryTrie