public final class org.apache.commons.collections.StaticBucketMap implements java.util.Map
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.apache.commons.collections.StaticBucketMap
  super_class: java.lang.Object
{
  private static final int DEFAULT_BUCKETS;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 255

  private org.apache.commons.collections.StaticBucketMap$Node[] m_buckets;
    descriptor: [Lorg/apache/commons/collections/StaticBucketMap$Node;
    flags: (0x0002) ACC_PRIVATE

  private org.apache.commons.collections.StaticBucketMap$Lock[] m_locks;
    descriptor: [Lorg/apache/commons/collections/StaticBucketMap$Lock;
    flags: (0x0002) ACC_PRIVATE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.StaticBucketMap this
         0: .line 114
            aload 0 /* this */
            sipush 255
            invokespecial org.apache.commons.collections.StaticBucketMap.<init>:(I)V
         1: .line 115
            return
        end local 0 // org.apache.commons.collections.StaticBucketMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/collections/StaticBucketMap;

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // org.apache.commons.collections.StaticBucketMap this
        start local 1 // int numBuckets
         0: .line 127
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 129
            bipush 17
            iload 1 /* numBuckets */
            invokestatic java.lang.Math.max:(II)I
            istore 2 /* size */
        start local 2 // int size
         2: .line 132
            iload 2 /* size */
            iconst_2
            irem
            ifne 4
         3: .line 134
            iinc 2 /* size */ -1
         4: .line 137
      StackMap locals: org.apache.commons.collections.StaticBucketMap int int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* size */
            anewarray org.apache.commons.collections.StaticBucketMap$Node
            putfield org.apache.commons.collections.StaticBucketMap.m_buckets:[Lorg/apache/commons/collections/StaticBucketMap$Node;
         5: .line 138
            aload 0 /* this */
            iload 2 /* size */
            anewarray org.apache.commons.collections.StaticBucketMap$Lock
            putfield org.apache.commons.collections.StaticBucketMap.m_locks:[Lorg/apache/commons/collections/StaticBucketMap$Lock;
         6: .line 140
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         7: goto 10
         8: .line 142
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.StaticBucketMap.m_locks:[Lorg/apache/commons/collections/StaticBucketMap$Lock;
            iload 3 /* i */
            new org.apache.commons.collections.StaticBucketMap$Lock
            dup
            invokespecial org.apache.commons.collections.StaticBucketMap$Lock.<init>:()V
            aastore
         9: .line 140
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 3 /* i */
            iload 2 /* size */
            if_icmplt 8
        end local 3 // int i
        11: .line 144
            return
        end local 2 // int size
        end local 1 // int numBuckets
        end local 0 // org.apache.commons.collections.StaticBucketMap this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   12     0        this  Lorg/apache/commons/collections/StaticBucketMap;
            0   12     1  numBuckets  I
            2   12     2        size  I
            7   11     3           i  I
    MethodParameters:
            Name  Flags
      numBuckets  

  private final int getHash(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.apache.commons.collections.StaticBucketMap this
        start local 1 // java.lang.Object key
         0: .line 161
            aload 1 /* key */
            ifnonnull 1
            iconst_0
            ireturn
         1: .line 162
      StackMap locals:
      StackMap stack:
            aload 1 /* key */
            invokevirtual java.lang.Object.hashCode:()I
            istore 2 /* hash */
        start local 2 // int hash
         2: .line 163
            iload 2 /* hash */
            iload 2 /* hash */
            bipush 15
            ishl
            iconst_m1
            ixor
            iadd
            istore 2 /* hash */
         3: .line 164
            iload 2 /* hash */
            iload 2 /* hash */
            bipush 10
            iushr
            ixor
            istore 2 /* hash */
         4: .line 165
            iload 2 /* hash */
            iload 2 /* hash */
            iconst_3
            ishl
            iadd
            istore 2 /* hash */
         5: .line 166
            iload 2 /* hash */
            iload 2 /* hash */
            bipush 6
            iushr
            ixor
            istore 2 /* hash */
         6: .line 167
            iload 2 /* hash */
            iload 2 /* hash */
            bipush 11
            ishl
            iconst_m1
            ixor
            iadd
            istore 2 /* hash */
         7: .line 168
            iload 2 /* hash */
            iload 2 /* hash */
            bipush 16
            iushr
            ixor
            istore 2 /* hash */
         8: .line 169
            iload 2 /* hash */
            aload 0 /* this */
            getfield org.apache.commons.collections.StaticBucketMap.m_buckets:[Lorg/apache/commons/collections/StaticBucketMap$Node;
            arraylength
            irem
            istore 2 /* hash */
         9: .line 170
            iload 2 /* hash */
            ifge 10
            iload 2 /* hash */
            iconst_m1
            imul
            goto 11
      StackMap locals: int
      StackMap stack:
        10: iload 2 /* hash */
      StackMap locals:
      StackMap stack: int
        11: ireturn
        end local 2 // int hash
        end local 1 // java.lang.Object key
        end local 0 // org.apache.commons.collections.StaticBucketMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Lorg/apache/commons/collections/StaticBucketMap;
            0   12     1   key  Ljava/lang/Object;
            2   12     2  hash  I
    MethodParameters:
      Name  Flags
      key   

  public java.util.Set keySet();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.StaticBucketMap this
         0: .line 178
            new org.apache.commons.collections.StaticBucketMap$KeySet
            dup
            aload 0 /* this */
            invokespecial org.apache.commons.collections.StaticBucketMap$KeySet.<init>:(Lorg/apache/commons/collections/StaticBucketMap;)V
            areturn
        end local 0 // org.apache.commons.collections.StaticBucketMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/collections/StaticBucketMap;

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // org.apache.commons.collections.StaticBucketMap this
         0: .line 186
            iconst_0
            istore 1 /* cnt */
        start local 1 // int cnt
         1: .line 188
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 5
         3: .line 190
      StackMap locals: int int
      StackMap stack:
            iload 1 /* cnt */
            aload 0 /* this */
            getfield org.apache.commons.collections.StaticBucketMap.m_locks:[Lorg/apache/commons/collections/StaticBucketMap$Lock;
            iload 2 /* i */
            aaload
            getfield org.apache.commons.collections.StaticBucketMap$Lock.size:I
            iadd
            istore 1 /* cnt */
         4: .line 188
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 2 /* i */
            aload 0 /* this */
            getfield org.apache.commons.collections.StaticBucketMap.m_buckets:[Lorg/apache/commons/collections/StaticBucketMap$Node;
            arraylength
            if_icmplt 3
        end local 2 // int i
         6: .line 193
            iload 1 /* cnt */
            ireturn
        end local 1 // int cnt
        end local 0 // org.apache.commons.collections.StaticBucketMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/apache/commons/collections/StaticBucketMap;
            1    7     1   cnt  I
            2    6     2     i  I

  public java.lang.Object put(java.lang.Object, java.lang.Object);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=8, args_size=3
        start local 0 // org.apache.commons.collections.StaticBucketMap this
        start local 1 // java.lang.Object key
        start local 2 // java.lang.Object value
         0: .line 201
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual org.apache.commons.collections.StaticBucketMap.getHash:(Ljava/lang/Object;)I
            istore 3 /* hash */
        start local 3 // int hash
         1: .line 203
            aload 0 /* this */
            getfield org.apache.commons.collections.StaticBucketMap.m_locks:[Lorg/apache/commons/collections/StaticBucketMap$Lock;
            iload 3 /* hash */
            aaload
            dup
            astore 4
            monitorenter
         2: .line 205
            aload 0 /* this */
            getfield org.apache.commons.collections.StaticBucketMap.m_buckets:[Lorg/apache/commons/collections/StaticBucketMap$Node;
            iload 3 /* hash */
            aaload
            astore 5 /* n */
        start local 5 // org.apache.commons.collections.StaticBucketMap$Node n
         3: .line 207
            aload 5 /* n */
            ifnonnull 11
         4: .line 209
            new org.apache.commons.collections.StaticBucketMap$Node
            dup
            invokespecial org.apache.commons.collections.StaticBucketMap$Node.<init>:()V
            astore 5 /* n */
         5: .line 210
            aload 5 /* n */
            aload 1 /* key */
            putfield org.apache.commons.collections.StaticBucketMap$Node.key:Ljava/lang/Object;
         6: .line 211
            aload 5 /* n */
            aload 2 /* value */
            putfield org.apache.commons.collections.StaticBucketMap$Node.value:Ljava/lang/Object;
         7: .line 212
            aload 0 /* this */
            getfield org.apache.commons.collections.StaticBucketMap.m_buckets:[Lorg/apache/commons/collections/StaticBucketMap$Node;
            iload 3 /* hash */
            aload 5 /* n */
            aastore
         8: .line 213
            aload 0 /* this */
            getfield org.apache.commons.collections.StaticBucketMap.m_locks:[Lorg/apache/commons/collections/StaticBucketMap$Lock;
            iload 3 /* hash */
            aaload
            dup
            getfield org.apache.commons.collections.StaticBucketMap$Lock.size:I
            iconst_1
            iadd
            putfield org.apache.commons.collections.StaticBucketMap$Lock.size:I
         9: .line 214
            aload 4
            monitorexit
        10: aconst_null
            areturn
        11: .line 220
      StackMap locals: int org.apache.commons.collections.StaticBucketMap$Lock org.apache.commons.collections.StaticBucketMap$Node
      StackMap stack:
            aload 5 /* n */
            astore 6 /* next */
        start local 6 // org.apache.commons.collections.StaticBucketMap$Node next
        12: goto 20
        13: .line 222
      StackMap locals: org.apache.commons.collections.StaticBucketMap$Node
      StackMap stack:
            aload 6 /* next */
            astore 5 /* n */
        14: .line 224
            aload 5 /* n */
            getfield org.apache.commons.collections.StaticBucketMap$Node.key:Ljava/lang/Object;
            aload 1 /* key */
            if_acmpeq 15
            aload 5 /* n */
            getfield org.apache.commons.collections.StaticBucketMap$Node.key:Ljava/lang/Object;
            ifnull 19
            aload 5 /* n */
            getfield org.apache.commons.collections.StaticBucketMap$Node.key:Ljava/lang/Object;
            aload 1 /* key */
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 19
        15: .line 226
      StackMap locals:
      StackMap stack:
            aload 5 /* n */
            getfield org.apache.commons.collections.StaticBucketMap$Node.value:Ljava/lang/Object;
            astore 7 /* returnVal */
        start local 7 // java.lang.Object returnVal
        16: .line 227
            aload 5 /* n */
            aload 2 /* value */
            putfield org.apache.commons.collections.StaticBucketMap$Node.value:Ljava/lang/Object;
        17: .line 228
            aload 7 /* returnVal */
            aload 4
            monitorexit
        18: areturn
        end local 7 // java.lang.Object returnVal
        19: .line 220
      StackMap locals:
      StackMap stack:
            aload 6 /* next */
            getfield org.apache.commons.collections.StaticBucketMap$Node.next:Lorg/apache/commons/collections/StaticBucketMap$Node;
            astore 6 /* next */
      StackMap locals:
      StackMap stack:
        20: aload 6 /* next */
            ifnonnull 13
        end local 6 // org.apache.commons.collections.StaticBucketMap$Node next
        21: .line 234
            new org.apache.commons.collections.StaticBucketMap$Node
            dup
            invokespecial org.apache.commons.collections.StaticBucketMap$Node.<init>:()V
            astore 6 /* newNode */
        start local 6 // org.apache.commons.collections.StaticBucketMap$Node newNode
        22: .line 235
            aload 6 /* newNode */
            aload 1 /* key */
            putfield org.apache.commons.collections.StaticBucketMap$Node.key:Ljava/lang/Object;
        23: .line 236
            aload 6 /* newNode */
            aload 2 /* value */
            putfield org.apache.commons.collections.StaticBucketMap$Node.value:Ljava/lang/Object;
        24: .line 237
            aload 5 /* n */
            aload 6 /* newNode */
            putfield org.apache.commons.collections.StaticBucketMap$Node.next:Lorg/apache/commons/collections/StaticBucketMap$Node;
        25: .line 238
            aload 0 /* this */
            getfield org.apache.commons.collections.StaticBucketMap.m_locks:[Lorg/apache/commons/collections/StaticBucketMap$Lock;
            iload 3 /* hash */
            aaload
            dup
            getfield org.apache.commons.collections.StaticBucketMap$Lock.size:I
            iconst_1
            iadd
            putfield org.apache.commons.collections.StaticBucketMap$Lock.size:I
        end local 6 // org.apache.commons.collections.StaticBucketMap$Node newNode
        end local 5 // org.apache.commons.collections.StaticBucketMap$Node n
        26: .line 203
            aload 4
            monitorexit
        27: goto 30
      StackMap locals: org.apache.commons.collections.StaticBucketMap java.lang.Object java.lang.Object int org.apache.commons.collections.StaticBucketMap$Lock
      StackMap stack: java.lang.Throwable
        28: aload 4
            monitorexit
        29: athrow
        30: .line 241
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 3 // int hash
        end local 2 // java.lang.Object value
        end local 1 // java.lang.Object key
        end local 0 // org.apache.commons.collections.StaticBucketMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   31     0       this  Lorg/apache/commons/collections/StaticBucketMap;
            0   31     1        key  Ljava/lang/Object;
            0   31     2      value  Ljava/lang/Object;
            1   31     3       hash  I
            3   26     5          n  Lorg/apache/commons/collections/StaticBucketMap$Node;
           12   21     6       next  Lorg/apache/commons/collections/StaticBucketMap$Node;
           16   19     7  returnVal  Ljava/lang/Object;
           22   26     6    newNode  Lorg/apache/commons/collections/StaticBucketMap$Node;
      Exception table:
        from    to  target  type
           2    10      28  any
          11    18      28  any
          19    27      28  any
          28    29      28  any
    MethodParameters:
       Name  Flags
      key    final
      value  final

  public java.lang.Object get(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // org.apache.commons.collections.StaticBucketMap this
        start local 1 // java.lang.Object key
         0: .line 249
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual org.apache.commons.collections.StaticBucketMap.getHash:(Ljava/lang/Object;)I
            istore 2 /* hash */
        start local 2 // int hash
         1: .line 251
            aload 0 /* this */
            getfield org.apache.commons.collections.StaticBucketMap.m_locks:[Lorg/apache/commons/collections/StaticBucketMap$Lock;
            iload 2 /* hash */
            aaload
            dup
            astore 3
            monitorenter
         2: .line 253
            aload 0 /* this */
            getfield org.apache.commons.collections.StaticBucketMap.m_buckets:[Lorg/apache/commons/collections/StaticBucketMap$Node;
            iload 2 /* hash */
            aaload
            astore 4 /* n */
        start local 4 // org.apache.commons.collections.StaticBucketMap$Node n
         3: .line 255
            goto 8
         4: .line 257
      StackMap locals: int org.apache.commons.collections.StaticBucketMap$Lock org.apache.commons.collections.StaticBucketMap$Node
      StackMap stack:
            aload 4 /* n */
            getfield org.apache.commons.collections.StaticBucketMap$Node.key:Ljava/lang/Object;
            aload 1 /* key */
            if_acmpeq 5
            aload 4 /* n */
            getfield org.apache.commons.collections.StaticBucketMap$Node.key:Ljava/lang/Object;
            ifnull 7
            aload 4 /* n */
            getfield org.apache.commons.collections.StaticBucketMap$Node.key:Ljava/lang/Object;
            aload 1 /* key */
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 7
         5: .line 259
      StackMap locals:
      StackMap stack:
            aload 4 /* n */
            getfield org.apache.commons.collections.StaticBucketMap$Node.value:Ljava/lang/Object;
            aload 3
            monitorexit
         6: areturn
         7: .line 262
      StackMap locals:
      StackMap stack:
            aload 4 /* n */
            getfield org.apache.commons.collections.StaticBucketMap$Node.next:Lorg/apache/commons/collections/StaticBucketMap$Node;
            astore 4 /* n */
         8: .line 255
      StackMap locals:
      StackMap stack:
            aload 4 /* n */
            ifnonnull 4
        end local 4 // org.apache.commons.collections.StaticBucketMap$Node n
         9: .line 251
            aload 3
            monitorexit
        10: goto 13
      StackMap locals: org.apache.commons.collections.StaticBucketMap java.lang.Object int org.apache.commons.collections.StaticBucketMap$Lock
      StackMap stack: java.lang.Throwable
        11: aload 3
            monitorexit
        12: athrow
        13: .line 266
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 2 // int hash
        end local 1 // java.lang.Object key
        end local 0 // org.apache.commons.collections.StaticBucketMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   14     0  this  Lorg/apache/commons/collections/StaticBucketMap;
            0   14     1   key  Ljava/lang/Object;
            1   14     2  hash  I
            3    9     4     n  Lorg/apache/commons/collections/StaticBucketMap$Node;
      Exception table:
        from    to  target  type
           2     6      11  any
           7    10      11  any
          11    12      11  any
    MethodParameters:
      Name  Flags
      key   final

  public boolean containsKey(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // org.apache.commons.collections.StaticBucketMap this
        start local 1 // java.lang.Object key
         0: .line 274
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual org.apache.commons.collections.StaticBucketMap.getHash:(Ljava/lang/Object;)I
            istore 2 /* hash */
        start local 2 // int hash
         1: .line 276
            aload 0 /* this */
            getfield org.apache.commons.collections.StaticBucketMap.m_locks:[Lorg/apache/commons/collections/StaticBucketMap$Lock;
            iload 2 /* hash */
            aaload
            dup
            astore 3
            monitorenter
         2: .line 278
            aload 0 /* this */
            getfield org.apache.commons.collections.StaticBucketMap.m_buckets:[Lorg/apache/commons/collections/StaticBucketMap$Node;
            iload 2 /* hash */
            aaload
            astore 4 /* n */
        start local 4 // org.apache.commons.collections.StaticBucketMap$Node n
         3: .line 280
            goto 8
         4: .line 282
      StackMap locals: int org.apache.commons.collections.StaticBucketMap$Lock org.apache.commons.collections.StaticBucketMap$Node
      StackMap stack:
            aload 4 /* n */
            getfield org.apache.commons.collections.StaticBucketMap$Node.key:Ljava/lang/Object;
            aload 1 /* key */
            if_acmpeq 5
            aload 4 /* n */
            getfield org.apache.commons.collections.StaticBucketMap$Node.key:Ljava/lang/Object;
            ifnull 7
            aload 4 /* n */
            getfield org.apache.commons.collections.StaticBucketMap$Node.key:Ljava/lang/Object;
            aload 1 /* key */
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 7
         5: .line 284
      StackMap locals:
      StackMap stack:
            aload 3
            monitorexit
         6: iconst_1
            ireturn
         7: .line 287
      StackMap locals:
      StackMap stack:
            aload 4 /* n */
            getfield org.apache.commons.collections.StaticBucketMap$Node.next:Lorg/apache/commons/collections/StaticBucketMap$Node;
            astore 4 /* n */
         8: .line 280
      StackMap locals:
      StackMap stack:
            aload 4 /* n */
            ifnonnull 4
        end local 4 // org.apache.commons.collections.StaticBucketMap$Node n
         9: .line 276
            aload 3
            monitorexit
        10: goto 13
      StackMap locals: org.apache.commons.collections.StaticBucketMap java.lang.Object int org.apache.commons.collections.StaticBucketMap$Lock
      StackMap stack: java.lang.Throwable
        11: aload 3
            monitorexit
        12: athrow
        13: .line 291
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 2 // int hash
        end local 1 // java.lang.Object key
        end local 0 // org.apache.commons.collections.StaticBucketMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   14     0  this  Lorg/apache/commons/collections/StaticBucketMap;
            0   14     1   key  Ljava/lang/Object;
            1   14     2  hash  I
            3    9     4     n  Lorg/apache/commons/collections/StaticBucketMap$Node;
      Exception table:
        from    to  target  type
           2     6      11  any
           7    10      11  any
          11    12      11  any
    MethodParameters:
      Name  Flags
      key   final

  public boolean containsValue(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // org.apache.commons.collections.StaticBucketMap this
        start local 1 // java.lang.Object value
         0: .line 299
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         1: goto 16
         2: .line 301
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.StaticBucketMap.m_locks:[Lorg/apache/commons/collections/StaticBucketMap$Lock;
            iload 2 /* i */
            aaload
            dup
            astore 3
            monitorenter
         3: .line 303
            aload 0 /* this */
            getfield org.apache.commons.collections.StaticBucketMap.m_buckets:[Lorg/apache/commons/collections/StaticBucketMap$Node;
            iload 2 /* i */
            aaload
            astore 4 /* n */
        start local 4 // org.apache.commons.collections.StaticBucketMap$Node n
         4: .line 305
            goto 10
         5: .line 307
      StackMap locals: org.apache.commons.collections.StaticBucketMap$Lock org.apache.commons.collections.StaticBucketMap$Node
      StackMap stack:
            aload 4 /* n */
            getfield org.apache.commons.collections.StaticBucketMap$Node.value:Ljava/lang/Object;
            aload 1 /* value */
            if_acmpeq 7
         6: .line 308
            aload 4 /* n */
            getfield org.apache.commons.collections.StaticBucketMap$Node.value:Ljava/lang/Object;
            ifnull 9
            aload 4 /* n */
            getfield org.apache.commons.collections.StaticBucketMap$Node.value:Ljava/lang/Object;
            aload 1 /* value */
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 9
         7: .line 310
      StackMap locals:
      StackMap stack:
            aload 3
            monitorexit
         8: iconst_1
            ireturn
         9: .line 313
      StackMap locals:
      StackMap stack:
            aload 4 /* n */
            getfield org.apache.commons.collections.StaticBucketMap$Node.next:Lorg/apache/commons/collections/StaticBucketMap$Node;
            astore 4 /* n */
        10: .line 305
      StackMap locals:
      StackMap stack:
            aload 4 /* n */
            ifnonnull 5
        end local 4 // org.apache.commons.collections.StaticBucketMap$Node n
        11: .line 301
            aload 3
            monitorexit
        12: goto 15
      StackMap locals: org.apache.commons.collections.StaticBucketMap java.lang.Object int org.apache.commons.collections.StaticBucketMap$Lock
      StackMap stack: java.lang.Throwable
        13: aload 3
            monitorexit
        14: athrow
        15: .line 299
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        16: iload 2 /* i */
            aload 0 /* this */
            getfield org.apache.commons.collections.StaticBucketMap.m_buckets:[Lorg/apache/commons/collections/StaticBucketMap$Node;
            arraylength
            if_icmplt 2
        end local 2 // int i
        17: .line 318
            iconst_0
            ireturn
        end local 1 // java.lang.Object value
        end local 0 // org.apache.commons.collections.StaticBucketMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   18     0   this  Lorg/apache/commons/collections/StaticBucketMap;
            0   18     1  value  Ljava/lang/Object;
            1   17     2      i  I
            4   11     4      n  Lorg/apache/commons/collections/StaticBucketMap$Node;
      Exception table:
        from    to  target  type
           3     8      13  any
           9    12      13  any
          13    14      13  any
    MethodParameters:
       Name  Flags
      value  final

  public java.util.Collection values();
    descriptor: ()Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.StaticBucketMap this
         0: .line 326
            new org.apache.commons.collections.StaticBucketMap$Values
            dup
            aload 0 /* this */
            invokespecial org.apache.commons.collections.StaticBucketMap$Values.<init>:(Lorg/apache/commons/collections/StaticBucketMap;)V
            areturn
        end local 0 // org.apache.commons.collections.StaticBucketMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/collections/StaticBucketMap;

  public java.util.Set entrySet();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.StaticBucketMap this
         0: .line 334
            new org.apache.commons.collections.StaticBucketMap$EntrySet
            dup
            aload 0 /* this */
            invokespecial org.apache.commons.collections.StaticBucketMap$EntrySet.<init>:(Lorg/apache/commons/collections/StaticBucketMap;)V
            areturn
        end local 0 // org.apache.commons.collections.StaticBucketMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/collections/StaticBucketMap;

  public void putAll(java.util.Map);
    descriptor: (Ljava/util/Map;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // org.apache.commons.collections.StaticBucketMap this
        start local 1 // java.util.Map other
         0: .line 342
            aload 1 /* other */
            invokeinterface java.util.Map.keySet:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 2 /* i */
        start local 2 // java.util.Iterator i
         1: .line 344
            goto 4
         2: .line 346
      StackMap locals: java.util.Iterator
      StackMap stack:
            aload 2 /* i */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            astore 3 /* key */
        start local 3 // java.lang.Object key
         3: .line 347
            aload 0 /* this */
            aload 3 /* key */
            aload 1 /* other */
            aload 3 /* key */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokevirtual org.apache.commons.collections.StaticBucketMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
        end local 3 // java.lang.Object key
         4: .line 344
      StackMap locals:
      StackMap stack:
            aload 2 /* i */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 349
            return
        end local 2 // java.util.Iterator i
        end local 1 // java.util.Map other
        end local 0 // org.apache.commons.collections.StaticBucketMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lorg/apache/commons/collections/StaticBucketMap;
            0    6     1  other  Ljava/util/Map;
            1    6     2      i  Ljava/util/Iterator;
            3    4     3    key  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      other  

  public java.lang.Object remove(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // org.apache.commons.collections.StaticBucketMap this
        start local 1 // java.lang.Object key
         0: .line 356
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual org.apache.commons.collections.StaticBucketMap.getHash:(Ljava/lang/Object;)I
            istore 2 /* hash */
        start local 2 // int hash
         1: .line 358
            aload 0 /* this */
            getfield org.apache.commons.collections.StaticBucketMap.m_locks:[Lorg/apache/commons/collections/StaticBucketMap$Lock;
            iload 2 /* hash */
            aaload
            dup
            astore 3
            monitorenter
         2: .line 360
            aload 0 /* this */
            getfield org.apache.commons.collections.StaticBucketMap.m_buckets:[Lorg/apache/commons/collections/StaticBucketMap$Node;
            iload 2 /* hash */
            aaload
            astore 4 /* n */
        start local 4 // org.apache.commons.collections.StaticBucketMap$Node n
         3: .line 361
            aconst_null
            astore 5 /* prev */
        start local 5 // org.apache.commons.collections.StaticBucketMap$Node prev
         4: .line 363
            goto 15
         5: .line 365
      StackMap locals: org.apache.commons.collections.StaticBucketMap java.lang.Object int org.apache.commons.collections.StaticBucketMap$Lock org.apache.commons.collections.StaticBucketMap$Node org.apache.commons.collections.StaticBucketMap$Node
      StackMap stack:
            aload 4 /* n */
            getfield org.apache.commons.collections.StaticBucketMap$Node.key:Ljava/lang/Object;
            aload 1 /* key */
            if_acmpeq 6
            aload 4 /* n */
            getfield org.apache.commons.collections.StaticBucketMap$Node.key:Ljava/lang/Object;
            ifnull 13
            aload 4 /* n */
            getfield org.apache.commons.collections.StaticBucketMap$Node.key:Ljava/lang/Object;
            aload 1 /* key */
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 13
         6: .line 368
      StackMap locals:
      StackMap stack:
            aload 5 /* prev */
            ifnonnull 9
         7: .line 371
            aload 0 /* this */
            getfield org.apache.commons.collections.StaticBucketMap.m_buckets:[Lorg/apache/commons/collections/StaticBucketMap$Node;
            iload 2 /* hash */
            aload 4 /* n */
            getfield org.apache.commons.collections.StaticBucketMap$Node.next:Lorg/apache/commons/collections/StaticBucketMap$Node;
            aastore
         8: .line 372
            goto 10
         9: .line 376
      StackMap locals:
      StackMap stack:
            aload 5 /* prev */
            aload 4 /* n */
            getfield org.apache.commons.collections.StaticBucketMap$Node.next:Lorg/apache/commons/collections/StaticBucketMap$Node;
            putfield org.apache.commons.collections.StaticBucketMap$Node.next:Lorg/apache/commons/collections/StaticBucketMap$Node;
        10: .line 378
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.StaticBucketMap.m_locks:[Lorg/apache/commons/collections/StaticBucketMap$Lock;
            iload 2 /* hash */
            aaload
            dup
            getfield org.apache.commons.collections.StaticBucketMap$Lock.size:I
            iconst_1
            isub
            putfield org.apache.commons.collections.StaticBucketMap$Lock.size:I
        11: .line 379
            aload 4 /* n */
            getfield org.apache.commons.collections.StaticBucketMap$Node.value:Ljava/lang/Object;
            aload 3
            monitorexit
        12: areturn
        13: .line 382
      StackMap locals:
      StackMap stack:
            aload 4 /* n */
            astore 5 /* prev */
        14: .line 383
            aload 4 /* n */
            getfield org.apache.commons.collections.StaticBucketMap$Node.next:Lorg/apache/commons/collections/StaticBucketMap$Node;
            astore 4 /* n */
        15: .line 363
      StackMap locals:
      StackMap stack:
            aload 4 /* n */
            ifnonnull 5
        end local 5 // org.apache.commons.collections.StaticBucketMap$Node prev
        end local 4 // org.apache.commons.collections.StaticBucketMap$Node n
        16: .line 358
            aload 3
            monitorexit
        17: goto 20
      StackMap locals: org.apache.commons.collections.StaticBucketMap java.lang.Object int org.apache.commons.collections.StaticBucketMap$Lock
      StackMap stack: java.lang.Throwable
        18: aload 3
            monitorexit
        19: athrow
        20: .line 387
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 2 // int hash
        end local 1 // java.lang.Object key
        end local 0 // org.apache.commons.collections.StaticBucketMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   21     0  this  Lorg/apache/commons/collections/StaticBucketMap;
            0   21     1   key  Ljava/lang/Object;
            1   21     2  hash  I
            3   16     4     n  Lorg/apache/commons/collections/StaticBucketMap$Node;
            4   16     5  prev  Lorg/apache/commons/collections/StaticBucketMap$Node;
      Exception table:
        from    to  target  type
           2    12      18  any
          13    17      18  any
          18    19      18  any
    MethodParameters:
      Name  Flags
      key   

  public final boolean isEmpty();
    descriptor: ()Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.StaticBucketMap this
         0: .line 395
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.StaticBucketMap.size:()I
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.apache.commons.collections.StaticBucketMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/collections/StaticBucketMap;

  public final void clear();
    descriptor: ()V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=4, args_size=1
        start local 0 // org.apache.commons.collections.StaticBucketMap this
         0: .line 403
            iconst_0
            istore 1 /* i */
        start local 1 // int i
         1: goto 11
         2: .line 405
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.StaticBucketMap.m_locks:[Lorg/apache/commons/collections/StaticBucketMap$Lock;
            iload 1 /* i */
            aaload
            astore 2 /* lock */
        start local 2 // org.apache.commons.collections.StaticBucketMap$Lock lock
         3: .line 406
            aload 2 /* lock */
            dup
            astore 3
            monitorenter
         4: .line 407
            aload 0 /* this */
            getfield org.apache.commons.collections.StaticBucketMap.m_buckets:[Lorg/apache/commons/collections/StaticBucketMap$Node;
            iload 1 /* i */
            aconst_null
            aastore
         5: .line 408
            aload 2 /* lock */
            iconst_0
            putfield org.apache.commons.collections.StaticBucketMap$Lock.size:I
         6: .line 406
            aload 3
            monitorexit
         7: goto 10
      StackMap locals: org.apache.commons.collections.StaticBucketMap int org.apache.commons.collections.StaticBucketMap$Lock org.apache.commons.collections.StaticBucketMap$Lock
      StackMap stack: java.lang.Throwable
         8: aload 3
            monitorexit
         9: athrow
        end local 2 // org.apache.commons.collections.StaticBucketMap$Lock lock
        10: .line 403
      StackMap locals:
      StackMap stack:
            iinc 1 /* i */ 1
      StackMap locals:
      StackMap stack:
        11: iload 1 /* i */
            aload 0 /* this */
            getfield org.apache.commons.collections.StaticBucketMap.m_buckets:[Lorg/apache/commons/collections/StaticBucketMap$Node;
            arraylength
            if_icmplt 2
        end local 1 // int i
        12: .line 411
            return
        end local 0 // org.apache.commons.collections.StaticBucketMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     0  this  Lorg/apache/commons/collections/StaticBucketMap;
            1   12     1     i  I
            3   10     2  lock  Lorg/apache/commons/collections/StaticBucketMap$Lock;
      Exception table:
        from    to  target  type
           4     7       8  any
           8     9       8  any

  public final boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.commons.collections.StaticBucketMap this
        start local 1 // java.lang.Object obj
         0: .line 418
            aload 1 /* obj */
            ifnonnull 1
            iconst_0
            ireturn
         1: .line 419
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            aload 0 /* this */
            if_acmpne 2
            iconst_1
            ireturn
         2: .line 421
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            instanceof java.util.Map
            ifne 3
            iconst_0
            ireturn
         3: .line 423
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            checkcast java.util.Map
            astore 2 /* other */
        start local 2 // java.util.Map other
         4: .line 425
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.StaticBucketMap.entrySet:()Ljava/util/Set;
            aload 2 /* other */
            invokeinterface java.util.Map.entrySet:()Ljava/util/Set;
            invokeinterface java.util.Set.equals:(Ljava/lang/Object;)Z
            ireturn
        end local 2 // java.util.Map other
        end local 1 // java.lang.Object obj
        end local 0 // org.apache.commons.collections.StaticBucketMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/apache/commons/collections/StaticBucketMap;
            0    5     1    obj  Ljava/lang/Object;
            4    5     2  other  Ljava/util/Map;
    MethodParameters:
      Name  Flags
      obj   

  public final int hashCode();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=5, args_size=1
        start local 0 // org.apache.commons.collections.StaticBucketMap this
         0: .line 433
            iconst_0
            istore 1 /* hashCode */
        start local 1 // int hashCode
         1: .line 435
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 14
         3: .line 437
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.StaticBucketMap.m_locks:[Lorg/apache/commons/collections/StaticBucketMap$Lock;
            iload 2 /* i */
            aaload
            dup
            astore 3
            monitorenter
         4: .line 439
            aload 0 /* this */
            getfield org.apache.commons.collections.StaticBucketMap.m_buckets:[Lorg/apache/commons/collections/StaticBucketMap$Node;
            iload 2 /* i */
            aaload
            astore 4 /* n */
        start local 4 // org.apache.commons.collections.StaticBucketMap$Node n
         5: .line 441
            goto 8
         6: .line 443
      StackMap locals: org.apache.commons.collections.StaticBucketMap$Lock org.apache.commons.collections.StaticBucketMap$Node
      StackMap stack:
            iload 1 /* hashCode */
            aload 4 /* n */
            invokevirtual org.apache.commons.collections.StaticBucketMap$Node.hashCode:()I
            iadd
            istore 1 /* hashCode */
         7: .line 444
            aload 4 /* n */
            getfield org.apache.commons.collections.StaticBucketMap$Node.next:Lorg/apache/commons/collections/StaticBucketMap$Node;
            astore 4 /* n */
         8: .line 441
      StackMap locals:
      StackMap stack:
            aload 4 /* n */
            ifnonnull 6
        end local 4 // org.apache.commons.collections.StaticBucketMap$Node n
         9: .line 437
            aload 3
            monitorexit
        10: goto 13
      StackMap locals: org.apache.commons.collections.StaticBucketMap int int org.apache.commons.collections.StaticBucketMap$Lock
      StackMap stack: java.lang.Throwable
        11: aload 3
            monitorexit
        12: athrow
        13: .line 435
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        14: iload 2 /* i */
            aload 0 /* this */
            getfield org.apache.commons.collections.StaticBucketMap.m_buckets:[Lorg/apache/commons/collections/StaticBucketMap$Node;
            arraylength
            if_icmplt 3
        end local 2 // int i
        15: .line 448
            iload 1 /* hashCode */
            ireturn
        end local 1 // int hashCode
        end local 0 // org.apache.commons.collections.StaticBucketMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   16     0      this  Lorg/apache/commons/collections/StaticBucketMap;
            1   16     1  hashCode  I
            2   15     2         i  I
            5    9     4         n  Lorg/apache/commons/collections/StaticBucketMap$Node;
      Exception table:
        from    to  target  type
           4    10      11  any
          11    12      11  any

  public void atomic(java.lang.Runnable);
    descriptor: (Ljava/lang/Runnable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.collections.StaticBucketMap this
        start local 1 // java.lang.Runnable r
         0: .line 696
            aload 1 /* r */
            ifnonnull 1
            new java.lang.NullPointerException
            dup
            invokespecial java.lang.NullPointerException.<init>:()V
            athrow
         1: .line 697
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* r */
            iconst_0
            invokevirtual org.apache.commons.collections.StaticBucketMap.atomic:(Ljava/lang/Runnable;I)V
         2: .line 698
            return
        end local 1 // java.lang.Runnable r
        end local 0 // org.apache.commons.collections.StaticBucketMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/collections/StaticBucketMap;
            0    3     1     r  Ljava/lang/Runnable;
    MethodParameters:
      Name  Flags
      r     

  private void atomic(java.lang.Runnable, int);
    descriptor: (Ljava/lang/Runnable;I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.apache.commons.collections.StaticBucketMap this
        start local 1 // java.lang.Runnable r
        start local 2 // int bucket
         0: .line 701
            iload 2 /* bucket */
            aload 0 /* this */
            getfield org.apache.commons.collections.StaticBucketMap.m_buckets:[Lorg/apache/commons/collections/StaticBucketMap$Node;
            arraylength
            if_icmplt 3
         1: .line 702
            aload 1 /* r */
            invokeinterface java.lang.Runnable.run:()V
         2: .line 703
            return
         3: .line 705
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.StaticBucketMap.m_locks:[Lorg/apache/commons/collections/StaticBucketMap$Lock;
            iload 2 /* bucket */
            aaload
            dup
            astore 3
            monitorenter
         4: .line 706
            aload 0 /* this */
            aload 1 /* r */
            iload 2 /* bucket */
            iconst_1
            iadd
            invokevirtual org.apache.commons.collections.StaticBucketMap.atomic:(Ljava/lang/Runnable;I)V
         5: .line 705
            aload 3
            monitorexit
         6: goto 9
      StackMap locals: org.apache.commons.collections.StaticBucketMap java.lang.Runnable int org.apache.commons.collections.StaticBucketMap$Lock
      StackMap stack: java.lang.Throwable
         7: aload 3
            monitorexit
         8: athrow
         9: .line 708
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int bucket
        end local 1 // java.lang.Runnable r
        end local 0 // org.apache.commons.collections.StaticBucketMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   10     0    this  Lorg/apache/commons/collections/StaticBucketMap;
            0   10     1       r  Ljava/lang/Runnable;
            0   10     2  bucket  I
      Exception table:
        from    to  target  type
           4     6       7  any
           7     8       7  any
    MethodParameters:
        Name  Flags
      r       
      bucket  
}
SourceFile: "StaticBucketMap.java"
NestMembers:
  org.apache.commons.collections.StaticBucketMap$EntryIterator  org.apache.commons.collections.StaticBucketMap$EntrySet  org.apache.commons.collections.StaticBucketMap$KeyIterator  org.apache.commons.collections.StaticBucketMap$KeySet  org.apache.commons.collections.StaticBucketMap$Lock  org.apache.commons.collections.StaticBucketMap$Node  org.apache.commons.collections.StaticBucketMap$ValueIterator  org.apache.commons.collections.StaticBucketMap$Values
InnerClasses:
  public abstract Entry = java.util.Map$Entry of java.util.Map
  private EntryIterator = org.apache.commons.collections.StaticBucketMap$EntryIterator of org.apache.commons.collections.StaticBucketMap
  private EntrySet = org.apache.commons.collections.StaticBucketMap$EntrySet of org.apache.commons.collections.StaticBucketMap
  private KeyIterator = org.apache.commons.collections.StaticBucketMap$KeyIterator of org.apache.commons.collections.StaticBucketMap
  private KeySet = org.apache.commons.collections.StaticBucketMap$KeySet of org.apache.commons.collections.StaticBucketMap
  private final Lock = org.apache.commons.collections.StaticBucketMap$Lock of org.apache.commons.collections.StaticBucketMap
  private final Node = org.apache.commons.collections.StaticBucketMap$Node of org.apache.commons.collections.StaticBucketMap
  private ValueIterator = org.apache.commons.collections.StaticBucketMap$ValueIterator of org.apache.commons.collections.StaticBucketMap
  private Values = org.apache.commons.collections.StaticBucketMap$Values of org.apache.commons.collections.StaticBucketMap