public class org.h2.mvstore.StreamStore
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.h2.mvstore.StreamStore
  super_class: java.lang.Object
{
  private final java.util.Map<java.lang.Long, byte[]> map;
    descriptor: Ljava/util/Map;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Map<Ljava/lang/Long;[B>;

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

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

  private final java.util.concurrent.atomic.AtomicLong nextKey;
    descriptor: Ljava/util/concurrent/atomic/AtomicLong;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.util.concurrent.atomic.AtomicReference<byte[]> nextBuffer;
    descriptor: Ljava/util/concurrent/atomic/AtomicReference;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/concurrent/atomic/AtomicReference<[B>;

  public void <init>(java.util.Map<java.lang.Long, byte[]>);
    descriptor: (Ljava/util/Map;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.h2.mvstore.StreamStore this
        start local 1 // java.util.Map map
         0: .line 51
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 40
            aload 0 /* this */
            sipush 256
            putfield org.h2.mvstore.StreamStore.minBlockSize:I
         2: .line 41
            aload 0 /* this */
            ldc 262144
            putfield org.h2.mvstore.StreamStore.maxBlockSize:I
         3: .line 42
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicLong
            dup
            invokespecial java.util.concurrent.atomic.AtomicLong.<init>:()V
            putfield org.h2.mvstore.StreamStore.nextKey:Ljava/util/concurrent/atomic/AtomicLong;
         4: .line 43
            aload 0 /* this */
         5: .line 44
            new java.util.concurrent.atomic.AtomicReference
            dup
            invokespecial java.util.concurrent.atomic.AtomicReference.<init>:()V
            putfield org.h2.mvstore.StreamStore.nextBuffer:Ljava/util/concurrent/atomic/AtomicReference;
         6: .line 52
            aload 0 /* this */
            aload 1 /* map */
            putfield org.h2.mvstore.StreamStore.map:Ljava/util/Map;
         7: .line 53
            return
        end local 1 // java.util.Map map
        end local 0 // org.h2.mvstore.StreamStore this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/h2/mvstore/StreamStore;
            0    8     1   map  Ljava/util/Map<Ljava/lang/Long;[B>;
    Signature: (Ljava/util/Map<Ljava/lang/Long;[B>;)V
    MethodParameters:
      Name  Flags
      map   

  public java.util.Map<java.lang.Long, byte[]> getMap();
    descriptor: ()Ljava/util/Map;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.mvstore.StreamStore this
         0: .line 56
            aload 0 /* this */
            getfield org.h2.mvstore.StreamStore.map:Ljava/util/Map;
            areturn
        end local 0 // org.h2.mvstore.StreamStore this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/mvstore/StreamStore;
    Signature: ()Ljava/util/Map<Ljava/lang/Long;[B>;

  public void setNextKey(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.h2.mvstore.StreamStore this
        start local 1 // long nextKey
         0: .line 60
            aload 0 /* this */
            getfield org.h2.mvstore.StreamStore.nextKey:Ljava/util/concurrent/atomic/AtomicLong;
            lload 1 /* nextKey */
            invokevirtual java.util.concurrent.atomic.AtomicLong.set:(J)V
         1: .line 61
            return
        end local 1 // long nextKey
        end local 0 // org.h2.mvstore.StreamStore this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/h2/mvstore/StreamStore;
            0    2     1  nextKey  J
    MethodParameters:
         Name  Flags
      nextKey  

  public long getNextKey();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.h2.mvstore.StreamStore this
         0: .line 64
            aload 0 /* this */
            getfield org.h2.mvstore.StreamStore.nextKey:Ljava/util/concurrent/atomic/AtomicLong;
            invokevirtual java.util.concurrent.atomic.AtomicLong.get:()J
            lreturn
        end local 0 // org.h2.mvstore.StreamStore this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/mvstore/StreamStore;

  public void setMinBlockSize(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.h2.mvstore.StreamStore this
        start local 1 // int minBlockSize
         0: .line 73
            aload 0 /* this */
            iload 1 /* minBlockSize */
            putfield org.h2.mvstore.StreamStore.minBlockSize:I
         1: .line 74
            return
        end local 1 // int minBlockSize
        end local 0 // org.h2.mvstore.StreamStore this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0          this  Lorg/h2/mvstore/StreamStore;
            0    2     1  minBlockSize  I
    MethodParameters:
              Name  Flags
      minBlockSize  

  public int getMinBlockSize();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.mvstore.StreamStore this
         0: .line 77
            aload 0 /* this */
            getfield org.h2.mvstore.StreamStore.minBlockSize:I
            ireturn
        end local 0 // org.h2.mvstore.StreamStore this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/mvstore/StreamStore;

  public void setMaxBlockSize(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.h2.mvstore.StreamStore this
        start local 1 // int maxBlockSize
         0: .line 86
            aload 0 /* this */
            iload 1 /* maxBlockSize */
            putfield org.h2.mvstore.StreamStore.maxBlockSize:I
         1: .line 87
            return
        end local 1 // int maxBlockSize
        end local 0 // org.h2.mvstore.StreamStore this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0          this  Lorg/h2/mvstore/StreamStore;
            0    2     1  maxBlockSize  I
    MethodParameters:
              Name  Flags
      maxBlockSize  

  public long getMaxBlockSize();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.h2.mvstore.StreamStore this
         0: .line 90
            aload 0 /* this */
            getfield org.h2.mvstore.StreamStore.maxBlockSize:I
            i2l
            lreturn
        end local 0 // org.h2.mvstore.StreamStore this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/mvstore/StreamStore;

  public byte[] put(java.io.InputStream);
    descriptor: (Ljava/io/InputStream;)[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // org.h2.mvstore.StreamStore this
        start local 1 // java.io.InputStream in
         0: .line 102
            new java.io.ByteArrayOutputStream
            dup
            invokespecial java.io.ByteArrayOutputStream.<init>:()V
            astore 2 /* id */
        start local 2 // java.io.ByteArrayOutputStream id
         1: .line 103
            iconst_0
            istore 3 /* level */
        start local 3 // int level
         2: .line 105
            goto 6
         3: .line 106
      StackMap locals: java.io.ByteArrayOutputStream int
      StackMap stack:
            aload 2 /* id */
            invokevirtual java.io.ByteArrayOutputStream.size:()I
            aload 0 /* this */
            getfield org.h2.mvstore.StreamStore.maxBlockSize:I
            iconst_2
            idiv
            if_icmple 6
         4: .line 107
            aload 0 /* this */
            aload 2 /* id */
            invokevirtual org.h2.mvstore.StreamStore.putIndirectId:(Ljava/io/ByteArrayOutputStream;)Ljava/io/ByteArrayOutputStream;
            astore 2 /* id */
         5: .line 108
            iinc 3 /* level */ 1
         6: .line 105
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* id */
            aload 1 /* in */
            iload 3 /* level */
            invokevirtual org.h2.mvstore.StreamStore.put:(Ljava/io/ByteArrayOutputStream;Ljava/io/InputStream;I)Z
            ifeq 3
         7: .line 111
            goto 11
      StackMap locals:
      StackMap stack: java.io.IOException
         8: astore 4 /* e */
        start local 4 // java.io.IOException e
         9: .line 112
            aload 0 /* this */
            aload 2 /* id */
            invokevirtual java.io.ByteArrayOutputStream.toByteArray:()[B
            invokevirtual org.h2.mvstore.StreamStore.remove:([B)V
        10: .line 113
            aload 4 /* e */
            athrow
        end local 4 // java.io.IOException e
        11: .line 115
      StackMap locals:
      StackMap stack:
            aload 2 /* id */
            invokevirtual java.io.ByteArrayOutputStream.size:()I
            aload 0 /* this */
            getfield org.h2.mvstore.StreamStore.minBlockSize:I
            iconst_2
            imul
            if_icmple 13
        12: .line 116
            aload 0 /* this */
            aload 2 /* id */
            invokevirtual org.h2.mvstore.StreamStore.putIndirectId:(Ljava/io/ByteArrayOutputStream;)Ljava/io/ByteArrayOutputStream;
            astore 2 /* id */
        13: .line 118
      StackMap locals:
      StackMap stack:
            aload 2 /* id */
            invokevirtual java.io.ByteArrayOutputStream.toByteArray:()[B
            areturn
        end local 3 // int level
        end local 2 // java.io.ByteArrayOutputStream id
        end local 1 // java.io.InputStream in
        end local 0 // org.h2.mvstore.StreamStore this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   14     0   this  Lorg/h2/mvstore/StreamStore;
            0   14     1     in  Ljava/io/InputStream;
            1   14     2     id  Ljava/io/ByteArrayOutputStream;
            2   14     3  level  I
            9   11     4      e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           2     7       8  Class java.io.IOException
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      in    

  private boolean put(java.io.ByteArrayOutputStream, java.io.InputStream, int);
    descriptor: (Ljava/io/ByteArrayOutputStream;Ljava/io/InputStream;I)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=8, args_size=4
        start local 0 // org.h2.mvstore.StreamStore this
        start local 1 // java.io.ByteArrayOutputStream id
        start local 2 // java.io.InputStream in
        start local 3 // int level
         0: .line 123
            iload 3 /* level */
            ifle 10
         1: .line 124
            new java.io.ByteArrayOutputStream
            dup
            invokespecial java.io.ByteArrayOutputStream.<init>:()V
            astore 4 /* id2 */
        start local 4 // java.io.ByteArrayOutputStream id2
         2: .line 126
      StackMap locals: java.io.ByteArrayOutputStream
      StackMap stack:
            aload 0 /* this */
            aload 4 /* id2 */
            aload 2 /* in */
            iload 3 /* level */
            iconst_1
            isub
            invokevirtual org.h2.mvstore.StreamStore.put:(Ljava/io/ByteArrayOutputStream;Ljava/io/InputStream;I)Z
            istore 5 /* eof */
        start local 5 // boolean eof
         3: .line 127
            aload 4 /* id2 */
            invokevirtual java.io.ByteArrayOutputStream.size:()I
            aload 0 /* this */
            getfield org.h2.mvstore.StreamStore.maxBlockSize:I
            iconst_2
            idiv
            if_icmple 7
         4: .line 128
            aload 0 /* this */
            aload 4 /* id2 */
            invokevirtual org.h2.mvstore.StreamStore.putIndirectId:(Ljava/io/ByteArrayOutputStream;)Ljava/io/ByteArrayOutputStream;
            astore 4 /* id2 */
         5: .line 129
            aload 4 /* id2 */
            aload 1 /* id */
            invokevirtual java.io.ByteArrayOutputStream.writeTo:(Ljava/io/OutputStream;)V
         6: .line 130
            iload 5 /* eof */
            ireturn
         7: .line 131
      StackMap locals: int
      StackMap stack:
            iload 5 /* eof */
            ifeq 2
         8: .line 132
            aload 4 /* id2 */
            aload 1 /* id */
            invokevirtual java.io.ByteArrayOutputStream.writeTo:(Ljava/io/OutputStream;)V
         9: .line 133
            iconst_1
            ireturn
        end local 5 // boolean eof
        end local 4 // java.io.ByteArrayOutputStream id2
        10: .line 137
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.mvstore.StreamStore.nextBuffer:Ljava/util/concurrent/atomic/AtomicReference;
            aconst_null
            invokevirtual java.util.concurrent.atomic.AtomicReference.getAndSet:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast byte[]
            astore 4 /* readBuffer */
        start local 4 // byte[] readBuffer
        11: .line 138
            aload 4 /* readBuffer */
            ifnonnull 13
        12: .line 139
            aload 0 /* this */
            getfield org.h2.mvstore.StreamStore.maxBlockSize:I
            newarray 8
            astore 4 /* readBuffer */
        13: .line 141
      StackMap locals: byte[]
      StackMap stack:
            aload 2 /* in */
            aload 4 /* readBuffer */
            invokestatic org.h2.mvstore.StreamStore.read:(Ljava/io/InputStream;[B)[B
            astore 5 /* buff */
        start local 5 // byte[] buff
        14: .line 142
            aload 5 /* buff */
            aload 4 /* readBuffer */
            if_acmpeq 16
        15: .line 144
            aload 0 /* this */
            getfield org.h2.mvstore.StreamStore.nextBuffer:Ljava/util/concurrent/atomic/AtomicReference;
            aload 4 /* readBuffer */
            invokevirtual java.util.concurrent.atomic.AtomicReference.set:(Ljava/lang/Object;)V
        16: .line 146
      StackMap locals: byte[]
      StackMap stack:
            aload 5 /* buff */
            arraylength
            istore 6 /* len */
        start local 6 // int len
        17: .line 147
            iload 6 /* len */
            ifne 19
        18: .line 148
            iconst_1
            ireturn
        19: .line 150
      StackMap locals: int
      StackMap stack:
            iload 6 /* len */
            aload 0 /* this */
            getfield org.h2.mvstore.StreamStore.maxBlockSize:I
            if_icmpge 20
            iconst_1
            goto 21
      StackMap locals:
      StackMap stack:
        20: iconst_0
      StackMap locals:
      StackMap stack: int
        21: istore 7 /* eof */
        start local 7 // boolean eof
        22: .line 151
            iload 6 /* len */
            aload 0 /* this */
            getfield org.h2.mvstore.StreamStore.minBlockSize:I
            if_icmpge 27
        23: .line 153
            aload 1 /* id */
            iconst_0
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
        24: .line 154
            aload 1 /* id */
            iload 6 /* len */
            invokestatic org.h2.mvstore.DataUtils.writeVarInt:(Ljava/io/OutputStream;I)V
        25: .line 155
            aload 1 /* id */
            aload 5 /* buff */
            invokevirtual java.io.ByteArrayOutputStream.write:([B)V
        26: .line 156
            goto 30
        27: .line 158
      StackMap locals: int
      StackMap stack:
            aload 1 /* id */
            iconst_1
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
        28: .line 159
            aload 1 /* id */
            iload 6 /* len */
            invokestatic org.h2.mvstore.DataUtils.writeVarInt:(Ljava/io/OutputStream;I)V
        29: .line 160
            aload 1 /* id */
            aload 0 /* this */
            aload 5 /* buff */
            invokevirtual org.h2.mvstore.StreamStore.writeBlock:([B)J
            invokestatic org.h2.mvstore.DataUtils.writeVarLong:(Ljava/io/OutputStream;J)V
        30: .line 162
      StackMap locals:
      StackMap stack:
            iload 7 /* eof */
            ireturn
        end local 7 // boolean eof
        end local 6 // int len
        end local 5 // byte[] buff
        end local 4 // byte[] readBuffer
        end local 3 // int level
        end local 2 // java.io.InputStream in
        end local 1 // java.io.ByteArrayOutputStream id
        end local 0 // org.h2.mvstore.StreamStore this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   31     0        this  Lorg/h2/mvstore/StreamStore;
            0   31     1          id  Ljava/io/ByteArrayOutputStream;
            0   31     2          in  Ljava/io/InputStream;
            0   31     3       level  I
            2   10     4         id2  Ljava/io/ByteArrayOutputStream;
            3   10     5         eof  Z
           11   31     4  readBuffer  [B
           14   31     5        buff  [B
           17   31     6         len  I
           22   31     7         eof  Z
    Exceptions:
      throws java.io.IOException
    MethodParameters:
       Name  Flags
      id     
      in     
      level  

  private static byte[] read(java.io.InputStream, byte[]);
    descriptor: (Ljava/io/InputStream;[B)[B
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // java.io.InputStream in
        start local 1 // byte[] target
         0: .line 167
            iconst_0
            istore 2 /* copied */
        start local 2 // int copied
         1: .line 168
            aload 1 /* target */
            arraylength
            istore 3 /* remaining */
        start local 3 // int remaining
         2: .line 169
            goto 12
         3: .line 171
      StackMap locals: int int
      StackMap stack:
            aload 0 /* in */
            aload 1 /* target */
            iload 2 /* copied */
            iload 3 /* remaining */
            invokevirtual java.io.InputStream.read:([BII)I
            istore 4 /* len */
        start local 4 // int len
         4: .line 172
            iload 4 /* len */
            ifge 7
         5: .line 173
            aload 1 /* target */
            iload 2 /* copied */
            invokestatic java.util.Arrays.copyOf:([BI)[B
         6: areturn
         7: .line 175
      StackMap locals: int
      StackMap stack:
            iload 2 /* copied */
            iload 4 /* len */
            iadd
            istore 2 /* copied */
         8: .line 176
            iload 3 /* remaining */
            iload 4 /* len */
            isub
            istore 3 /* remaining */
        end local 4 // int len
         9: .line 177
            goto 12
      StackMap locals: java.io.InputStream byte[] int int
      StackMap stack: java.lang.RuntimeException
        10: astore 4 /* e */
        start local 4 // java.lang.RuntimeException e
        11: .line 178
            new java.io.IOException
            dup
            aload 4 /* e */
            invokespecial java.io.IOException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 4 // java.lang.RuntimeException e
        12: .line 169
      StackMap locals:
      StackMap stack:
            iload 3 /* remaining */
            ifgt 3
        13: .line 181
            aload 1 /* target */
            areturn
        end local 3 // int remaining
        end local 2 // int copied
        end local 1 // byte[] target
        end local 0 // java.io.InputStream in
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   14     0         in  Ljava/io/InputStream;
            0   14     1     target  [B
            1   14     2     copied  I
            2   14     3  remaining  I
            4    9     4        len  I
           11   12     4          e  Ljava/lang/RuntimeException;
      Exception table:
        from    to  target  type
           3     6      10  Class java.lang.RuntimeException
           7     9      10  Class java.lang.RuntimeException
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      in      
      target  

  private java.io.ByteArrayOutputStream putIndirectId(java.io.ByteArrayOutputStream);
    descriptor: (Ljava/io/ByteArrayOutputStream;)Ljava/io/ByteArrayOutputStream;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.h2.mvstore.StreamStore this
        start local 1 // java.io.ByteArrayOutputStream id
         0: .line 186
            aload 1 /* id */
            invokevirtual java.io.ByteArrayOutputStream.toByteArray:()[B
            astore 2 /* data */
        start local 2 // byte[] data
         1: .line 187
            new java.io.ByteArrayOutputStream
            dup
            invokespecial java.io.ByteArrayOutputStream.<init>:()V
            astore 1 /* id */
         2: .line 189
            aload 1 /* id */
            iconst_2
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
         3: .line 190
            aload 1 /* id */
            aload 0 /* this */
            aload 2 /* data */
            invokevirtual org.h2.mvstore.StreamStore.length:([B)J
            invokestatic org.h2.mvstore.DataUtils.writeVarLong:(Ljava/io/OutputStream;J)V
         4: .line 191
            aload 1 /* id */
            aload 0 /* this */
            aload 2 /* data */
            invokevirtual org.h2.mvstore.StreamStore.writeBlock:([B)J
            invokestatic org.h2.mvstore.DataUtils.writeVarLong:(Ljava/io/OutputStream;J)V
         5: .line 192
            aload 1 /* id */
            areturn
        end local 2 // byte[] data
        end local 1 // java.io.ByteArrayOutputStream id
        end local 0 // org.h2.mvstore.StreamStore this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/h2/mvstore/StreamStore;
            0    6     1    id  Ljava/io/ByteArrayOutputStream;
            1    6     2  data  [B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      id    

  private long writeBlock(byte[]);
    descriptor: ([B)J
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.h2.mvstore.StreamStore this
        start local 1 // byte[] data
         0: .line 196
            aload 0 /* this */
            invokevirtual org.h2.mvstore.StreamStore.getAndIncrementNextKey:()J
            lstore 2 /* key */
        start local 2 // long key
         1: .line 197
            aload 0 /* this */
            getfield org.h2.mvstore.StreamStore.map:Ljava/util/Map;
            lload 2 /* key */
            invokestatic java.lang.Long.valueOf:(J)Ljava/lang/Long;
            aload 1 /* data */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         2: .line 198
            aload 0 /* this */
            aload 1 /* data */
            arraylength
            invokevirtual org.h2.mvstore.StreamStore.onStore:(I)V
         3: .line 199
            lload 2 /* key */
            lreturn
        end local 2 // long key
        end local 1 // byte[] data
        end local 0 // org.h2.mvstore.StreamStore this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/h2/mvstore/StreamStore;
            0    4     1  data  [B
            1    4     2   key  J
    MethodParameters:
      Name  Flags
      data  

  protected void onStore(int);
    descriptor: (I)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // org.h2.mvstore.StreamStore this
        start local 1 // int len
         0: .line 211
            return
        end local 1 // int len
        end local 0 // org.h2.mvstore.StreamStore this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/mvstore/StreamStore;
            0    1     1   len  I
    MethodParameters:
      Name  Flags
      len   

  private long getAndIncrementNextKey();
    descriptor: ()J
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=10, args_size=1
        start local 0 // org.h2.mvstore.StreamStore this
         0: .line 219
            aload 0 /* this */
            getfield org.h2.mvstore.StreamStore.nextKey:Ljava/util/concurrent/atomic/AtomicLong;
            invokevirtual java.util.concurrent.atomic.AtomicLong.getAndIncrement:()J
            lstore 1 /* key */
        start local 1 // long key
         1: .line 220
            aload 0 /* this */
            getfield org.h2.mvstore.StreamStore.map:Ljava/util/Map;
            lload 1 /* key */
            invokestatic java.lang.Long.valueOf:(J)Ljava/lang/Long;
            invokeinterface java.util.Map.containsKey:(Ljava/lang/Object;)Z
            ifne 3
         2: .line 221
            lload 1 /* key */
            lreturn
         3: .line 224
      StackMap locals: long
      StackMap stack:
            aload 0 /* this */
            dup
            astore 3
            monitorenter
         4: .line 225
            lload 1 /* key */
            lstore 4 /* low */
        start local 4 // long low
         5: ldc 9223372036854775807
            lstore 6 /* high */
        start local 6 // long high
         6: .line 226
            goto 12
         7: .line 227
      StackMap locals: org.h2.mvstore.StreamStore long long
      StackMap stack:
            lload 4 /* low */
            lload 6 /* high */
            ladd
            iconst_1
            lushr
            lstore 8 /* x */
        start local 8 // long x
         8: .line 228
            aload 0 /* this */
            getfield org.h2.mvstore.StreamStore.map:Ljava/util/Map;
            lload 8 /* x */
            invokestatic java.lang.Long.valueOf:(J)Ljava/lang/Long;
            invokeinterface java.util.Map.containsKey:(Ljava/lang/Object;)Z
            ifeq 11
         9: .line 229
            lload 8 /* x */
            lconst_1
            ladd
            lstore 4 /* low */
        10: .line 230
            goto 12
        11: .line 231
      StackMap locals: long
      StackMap stack:
            lload 8 /* x */
            lstore 6 /* high */
        end local 8 // long x
        12: .line 226
      StackMap locals:
      StackMap stack:
            lload 4 /* low */
            lload 6 /* high */
            lcmp
            iflt 7
        13: .line 234
            lload 4 /* low */
            lstore 1 /* key */
        14: .line 235
            aload 0 /* this */
            getfield org.h2.mvstore.StreamStore.nextKey:Ljava/util/concurrent/atomic/AtomicLong;
            lload 1 /* key */
            lconst_1
            ladd
            invokevirtual java.util.concurrent.atomic.AtomicLong.set:(J)V
        15: .line 236
            lload 1 /* key */
            aload 3
            monitorexit
        16: lreturn
        end local 6 // long high
        end local 4 // long low
        17: .line 224
      StackMap locals: org.h2.mvstore.StreamStore long org.h2.mvstore.StreamStore
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
        18: athrow
        end local 1 // long key
        end local 0 // org.h2.mvstore.StreamStore this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   19     0  this  Lorg/h2/mvstore/StreamStore;
            1   19     1   key  J
            5   17     4   low  J
            6   17     6  high  J
            8   12     8     x  J
      Exception table:
        from    to  target  type
           4    16      17  any
          17    18      17  any

  public long getMaxBlockKey(byte[]);
    descriptor: ([B)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=13, args_size=2
        start local 0 // org.h2.mvstore.StreamStore this
        start local 1 // byte[] id
         0: .line 248
            ldc -1
            lstore 2 /* maxKey */
        start local 2 // long maxKey
         1: .line 249
            aload 1 /* id */
            invokestatic java.nio.ByteBuffer.wrap:([B)Ljava/nio/ByteBuffer;
            astore 4 /* idBuffer */
        start local 4 // java.nio.ByteBuffer idBuffer
         2: .line 250
            goto 21
         3: .line 251
      StackMap locals: long java.nio.ByteBuffer
      StackMap stack:
            aload 4 /* idBuffer */
            invokevirtual java.nio.ByteBuffer.get:()B
            tableswitch { // 0 - 2
                    0: 4
                    1: 7
                    2: 11
              default: 19
          }
         4: .line 254
      StackMap locals:
      StackMap stack:
            aload 4 /* idBuffer */
            invokestatic org.h2.mvstore.DataUtils.readVarInt:(Ljava/nio/ByteBuffer;)I
            istore 5 /* len */
        start local 5 // int len
         5: .line 255
            aload 4 /* idBuffer */
            aload 4 /* idBuffer */
            invokevirtual java.nio.ByteBuffer.position:()I
            iload 5 /* len */
            iadd
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/Buffer;
            pop
         6: .line 256
            goto 21
        end local 5 // int len
         7: .line 259
      StackMap locals:
      StackMap stack:
            aload 4 /* idBuffer */
            invokestatic org.h2.mvstore.DataUtils.readVarInt:(Ljava/nio/ByteBuffer;)I
            pop
         8: .line 260
            aload 4 /* idBuffer */
            invokestatic org.h2.mvstore.DataUtils.readVarLong:(Ljava/nio/ByteBuffer;)J
            lstore 6 /* k */
        start local 6 // long k
         9: .line 261
            lload 2 /* maxKey */
            lload 6 /* k */
            invokestatic java.lang.Math.max:(JJ)J
            lstore 2 /* maxKey */
        10: .line 262
            goto 21
        end local 6 // long k
        11: .line 265
      StackMap locals:
      StackMap stack:
            aload 4 /* idBuffer */
            invokestatic org.h2.mvstore.DataUtils.readVarLong:(Ljava/nio/ByteBuffer;)J
            pop2
        12: .line 266
            aload 4 /* idBuffer */
            invokestatic org.h2.mvstore.DataUtils.readVarLong:(Ljava/nio/ByteBuffer;)J
            lstore 8 /* k2 */
        start local 8 // long k2
        13: .line 267
            lload 8 /* k2 */
            lstore 2 /* maxKey */
        14: .line 268
            aload 0 /* this */
            getfield org.h2.mvstore.StreamStore.map:Ljava/util/Map;
            lload 8 /* k2 */
            invokestatic java.lang.Long.valueOf:(J)Ljava/lang/Long;
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast byte[]
            astore 10 /* r */
        start local 10 // byte[] r
        15: .line 270
            aload 0 /* this */
            aload 10 /* r */
            invokevirtual org.h2.mvstore.StreamStore.getMaxBlockKey:([B)J
            lstore 11 /* m */
        start local 11 // long m
        16: .line 271
            lload 11 /* m */
            lconst_0
            lcmp
            iflt 21
        17: .line 272
            lload 2 /* maxKey */
            lload 11 /* m */
            invokestatic java.lang.Math.max:(JJ)J
            lstore 2 /* maxKey */
        18: .line 274
            goto 21
        end local 11 // long m
        end local 10 // byte[] r
        end local 8 // long k2
        19: .line 277
      StackMap locals:
      StackMap stack:
            ldc "Unsupported id {0}"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 1 /* id */
            invokestatic java.util.Arrays.toString:([B)Ljava/lang/String;
            aastore
        20: .line 276
            invokestatic org.h2.mvstore.DataUtils.newIllegalArgumentException:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/IllegalArgumentException;
            athrow
        21: .line 250
      StackMap locals:
      StackMap stack:
            aload 4 /* idBuffer */
            invokevirtual java.nio.ByteBuffer.hasRemaining:()Z
            ifne 3
        22: .line 280
            lload 2 /* maxKey */
            lreturn
        end local 4 // java.nio.ByteBuffer idBuffer
        end local 2 // long maxKey
        end local 1 // byte[] id
        end local 0 // org.h2.mvstore.StreamStore this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   23     0      this  Lorg/h2/mvstore/StreamStore;
            0   23     1        id  [B
            1   23     2    maxKey  J
            2   23     4  idBuffer  Ljava/nio/ByteBuffer;
            5    7     5       len  I
            9   11     6         k  J
           13   19     8        k2  J
           15   19    10         r  [B
           16   19    11         m  J
    MethodParameters:
      Name  Flags
      id    

  public void remove(byte[]);
    descriptor: ([B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=8, args_size=2
        start local 0 // org.h2.mvstore.StreamStore this
        start local 1 // byte[] id
         0: .line 289
            aload 1 /* id */
            invokestatic java.nio.ByteBuffer.wrap:([B)Ljava/nio/ByteBuffer;
            astore 2 /* idBuffer */
        start local 2 // java.nio.ByteBuffer idBuffer
         1: .line 290
            goto 17
         2: .line 291
      StackMap locals: java.nio.ByteBuffer
      StackMap stack:
            aload 2 /* idBuffer */
            invokevirtual java.nio.ByteBuffer.get:()B
            tableswitch { // 0 - 2
                    0: 3
                    1: 6
                    2: 10
              default: 15
          }
         3: .line 294
      StackMap locals:
      StackMap stack:
            aload 2 /* idBuffer */
            invokestatic org.h2.mvstore.DataUtils.readVarInt:(Ljava/nio/ByteBuffer;)I
            istore 3 /* len */
        start local 3 // int len
         4: .line 295
            aload 2 /* idBuffer */
            aload 2 /* idBuffer */
            invokevirtual java.nio.ByteBuffer.position:()I
            iload 3 /* len */
            iadd
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/Buffer;
            pop
         5: .line 296
            goto 17
        end local 3 // int len
         6: .line 299
      StackMap locals:
      StackMap stack:
            aload 2 /* idBuffer */
            invokestatic org.h2.mvstore.DataUtils.readVarInt:(Ljava/nio/ByteBuffer;)I
            pop
         7: .line 300
            aload 2 /* idBuffer */
            invokestatic org.h2.mvstore.DataUtils.readVarLong:(Ljava/nio/ByteBuffer;)J
            lstore 4 /* k */
        start local 4 // long k
         8: .line 301
            aload 0 /* this */
            getfield org.h2.mvstore.StreamStore.map:Ljava/util/Map;
            lload 4 /* k */
            invokestatic java.lang.Long.valueOf:(J)Ljava/lang/Long;
            invokeinterface java.util.Map.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         9: .line 302
            goto 17
        end local 4 // long k
        10: .line 305
      StackMap locals:
      StackMap stack:
            aload 2 /* idBuffer */
            invokestatic org.h2.mvstore.DataUtils.readVarLong:(Ljava/nio/ByteBuffer;)J
            pop2
        11: .line 306
            aload 2 /* idBuffer */
            invokestatic org.h2.mvstore.DataUtils.readVarLong:(Ljava/nio/ByteBuffer;)J
            lstore 6 /* k2 */
        start local 6 // long k2
        12: .line 308
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.mvstore.StreamStore.map:Ljava/util/Map;
            lload 6 /* k2 */
            invokestatic java.lang.Long.valueOf:(J)Ljava/lang/Long;
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast byte[]
            invokevirtual org.h2.mvstore.StreamStore.remove:([B)V
        13: .line 309
            aload 0 /* this */
            getfield org.h2.mvstore.StreamStore.map:Ljava/util/Map;
            lload 6 /* k2 */
            invokestatic java.lang.Long.valueOf:(J)Ljava/lang/Long;
            invokeinterface java.util.Map.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
        14: .line 310
            goto 17
        end local 6 // long k2
        15: .line 313
      StackMap locals:
      StackMap stack:
            ldc "Unsupported id {0}"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 1 /* id */
            invokestatic java.util.Arrays.toString:([B)Ljava/lang/String;
            aastore
        16: .line 312
            invokestatic org.h2.mvstore.DataUtils.newIllegalArgumentException:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/IllegalArgumentException;
            athrow
        17: .line 290
      StackMap locals:
      StackMap stack:
            aload 2 /* idBuffer */
            invokevirtual java.nio.ByteBuffer.hasRemaining:()Z
            ifne 2
        18: .line 316
            return
        end local 2 // java.nio.ByteBuffer idBuffer
        end local 1 // byte[] id
        end local 0 // org.h2.mvstore.StreamStore this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   19     0      this  Lorg/h2/mvstore/StreamStore;
            0   19     1        id  [B
            1   19     2  idBuffer  Ljava/nio/ByteBuffer;
            4    6     3       len  I
            8   10     4         k  J
           12   15     6        k2  J
    MethodParameters:
      Name  Flags
      id    

  public static java.lang.String toString(byte[]);
    descriptor: ([B)Ljava/lang/String;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=8, args_size=1
        start local 0 // byte[] id
         0: .line 325
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 1 /* buff */
        start local 1 // java.lang.StringBuilder buff
         1: .line 326
            aload 0 /* id */
            invokestatic java.nio.ByteBuffer.wrap:([B)Ljava/nio/ByteBuffer;
            astore 2 /* idBuffer */
        start local 2 // java.nio.ByteBuffer idBuffer
         2: .line 327
            lconst_0
            lstore 3 /* length */
        start local 3 // long length
         3: .line 328
            goto 22
         4: .line 331
      StackMap locals: java.lang.StringBuilder java.nio.ByteBuffer long
      StackMap stack:
            aload 2 /* idBuffer */
            invokevirtual java.nio.ByteBuffer.get:()B
            tableswitch { // 0 - 2
                    0: 5
                    1: 10
                    2: 15
              default: 20
          }
         5: .line 334
      StackMap locals:
      StackMap stack:
            aload 2 /* idBuffer */
            invokestatic org.h2.mvstore.DataUtils.readVarInt:(Ljava/nio/ByteBuffer;)I
            istore 7 /* len */
        start local 7 // int len
         6: .line 335
            aload 2 /* idBuffer */
            aload 2 /* idBuffer */
            invokevirtual java.nio.ByteBuffer.position:()I
            iload 7 /* len */
            iadd
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/Buffer;
            pop
         7: .line 336
            aload 1 /* buff */
            ldc "data len="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 7 /* len */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            pop
         8: .line 337
            lload 3 /* length */
            iload 7 /* len */
            i2l
            ladd
            lstore 3 /* length */
         9: .line 338
            goto 21
        end local 7 // int len
        10: .line 341
      StackMap locals:
      StackMap stack:
            aload 2 /* idBuffer */
            invokestatic org.h2.mvstore.DataUtils.readVarInt:(Ljava/nio/ByteBuffer;)I
            istore 7 /* len */
        start local 7 // int len
        11: .line 342
            lload 3 /* length */
            iload 7 /* len */
            i2l
            ladd
            lstore 3 /* length */
        12: .line 343
            aload 2 /* idBuffer */
            invokestatic org.h2.mvstore.DataUtils.readVarLong:(Ljava/nio/ByteBuffer;)J
            lstore 5 /* block */
        start local 5 // long block
        13: .line 344
            aload 1 /* buff */
            ldc "block "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            lload 5 /* block */
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
            ldc " len="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 7 /* len */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            pop
        14: .line 345
            goto 21
        end local 7 // int len
        end local 5 // long block
        15: .line 348
      StackMap locals:
      StackMap stack:
            aload 2 /* idBuffer */
            invokestatic org.h2.mvstore.DataUtils.readVarInt:(Ljava/nio/ByteBuffer;)I
            istore 7 /* len */
        start local 7 // int len
        16: .line 349
            lload 3 /* length */
            aload 2 /* idBuffer */
            invokestatic org.h2.mvstore.DataUtils.readVarLong:(Ljava/nio/ByteBuffer;)J
            ladd
            lstore 3 /* length */
        17: .line 350
            aload 2 /* idBuffer */
            invokestatic org.h2.mvstore.DataUtils.readVarLong:(Ljava/nio/ByteBuffer;)J
            lstore 5 /* block */
        start local 5 // long block
        18: .line 351
            aload 1 /* buff */
            ldc "indirect block "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            lload 5 /* block */
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
            ldc " len="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 7 /* len */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            pop
        19: .line 352
            goto 21
        end local 7 // int len
        end local 5 // long block
        20: .line 354
      StackMap locals:
      StackMap stack:
            aload 1 /* buff */
            ldc "error"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        21: .line 356
      StackMap locals:
      StackMap stack:
            aload 1 /* buff */
            ldc ", "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        22: .line 328
      StackMap locals:
      StackMap stack:
            aload 2 /* idBuffer */
            invokevirtual java.nio.ByteBuffer.hasRemaining:()Z
            ifne 4
        23: .line 358
            aload 1 /* buff */
            ldc "length="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            lload 3 /* length */
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
            pop
        24: .line 359
            aload 1 /* buff */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 3 // long length
        end local 2 // java.nio.ByteBuffer idBuffer
        end local 1 // java.lang.StringBuilder buff
        end local 0 // byte[] id
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   25     0        id  [B
            1   25     1      buff  Ljava/lang/StringBuilder;
            2   25     2  idBuffer  Ljava/nio/ByteBuffer;
            3   25     3    length  J
           13   15     5     block  J
           18   20     5     block  J
            6   10     7       len  I
           11   15     7       len  I
           16   20     7       len  I
    MethodParameters:
      Name  Flags
      id    

  public long length(byte[]);
    descriptor: ([B)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=2
        start local 0 // org.h2.mvstore.StreamStore this
        start local 1 // byte[] id
         0: .line 370
            aload 1 /* id */
            invokestatic java.nio.ByteBuffer.wrap:([B)Ljava/nio/ByteBuffer;
            astore 2 /* idBuffer */
        start local 2 // java.nio.ByteBuffer idBuffer
         1: .line 371
            lconst_0
            lstore 3 /* length */
        start local 3 // long length
         2: .line 372
            goto 16
         3: .line 373
      StackMap locals: java.nio.ByteBuffer long
      StackMap stack:
            aload 2 /* idBuffer */
            invokevirtual java.nio.ByteBuffer.get:()B
            tableswitch { // 0 - 2
                    0: 4
                    1: 8
                    2: 11
              default: 14
          }
         4: .line 376
      StackMap locals:
      StackMap stack:
            aload 2 /* idBuffer */
            invokestatic org.h2.mvstore.DataUtils.readVarInt:(Ljava/nio/ByteBuffer;)I
            istore 5 /* len */
        start local 5 // int len
         5: .line 377
            aload 2 /* idBuffer */
            aload 2 /* idBuffer */
            invokevirtual java.nio.ByteBuffer.position:()I
            iload 5 /* len */
            iadd
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/Buffer;
            pop
         6: .line 378
            lload 3 /* length */
            iload 5 /* len */
            i2l
            ladd
            lstore 3 /* length */
         7: .line 379
            goto 16
        end local 5 // int len
         8: .line 382
      StackMap locals:
      StackMap stack:
            lload 3 /* length */
            aload 2 /* idBuffer */
            invokestatic org.h2.mvstore.DataUtils.readVarInt:(Ljava/nio/ByteBuffer;)I
            i2l
            ladd
            lstore 3 /* length */
         9: .line 383
            aload 2 /* idBuffer */
            invokestatic org.h2.mvstore.DataUtils.readVarLong:(Ljava/nio/ByteBuffer;)J
            pop2
        10: .line 384
            goto 16
        11: .line 387
      StackMap locals:
      StackMap stack:
            lload 3 /* length */
            aload 2 /* idBuffer */
            invokestatic org.h2.mvstore.DataUtils.readVarLong:(Ljava/nio/ByteBuffer;)J
            ladd
            lstore 3 /* length */
        12: .line 388
            aload 2 /* idBuffer */
            invokestatic org.h2.mvstore.DataUtils.readVarLong:(Ljava/nio/ByteBuffer;)J
            pop2
        13: .line 389
            goto 16
        14: .line 392
      StackMap locals:
      StackMap stack:
            ldc "Unsupported id {0}"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 1 /* id */
            invokestatic java.util.Arrays.toString:([B)Ljava/lang/String;
            aastore
        15: .line 391
            invokestatic org.h2.mvstore.DataUtils.newIllegalArgumentException:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/IllegalArgumentException;
            athrow
        16: .line 372
      StackMap locals:
      StackMap stack:
            aload 2 /* idBuffer */
            invokevirtual java.nio.ByteBuffer.hasRemaining:()Z
            ifne 3
        17: .line 395
            lload 3 /* length */
            lreturn
        end local 3 // long length
        end local 2 // java.nio.ByteBuffer idBuffer
        end local 1 // byte[] id
        end local 0 // org.h2.mvstore.StreamStore this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   18     0      this  Lorg/h2/mvstore/StreamStore;
            0   18     1        id  [B
            1   18     2  idBuffer  Ljava/nio/ByteBuffer;
            2   18     3    length  J
            5    8     5       len  I
    MethodParameters:
      Name  Flags
      id    

  public boolean isInPlace(byte[]);
    descriptor: ([B)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.h2.mvstore.StreamStore this
        start local 1 // byte[] id
         0: .line 406
            aload 1 /* id */
            invokestatic java.nio.ByteBuffer.wrap:([B)Ljava/nio/ByteBuffer;
            astore 2 /* idBuffer */
        start local 2 // java.nio.ByteBuffer idBuffer
         1: .line 407
            goto 6
         2: .line 408
      StackMap locals: java.nio.ByteBuffer
      StackMap stack:
            aload 2 /* idBuffer */
            invokevirtual java.nio.ByteBuffer.get:()B
            ifeq 4
         3: .line 409
            iconst_0
            ireturn
         4: .line 411
      StackMap locals:
      StackMap stack:
            aload 2 /* idBuffer */
            invokestatic org.h2.mvstore.DataUtils.readVarInt:(Ljava/nio/ByteBuffer;)I
            istore 3 /* len */
        start local 3 // int len
         5: .line 412
            aload 2 /* idBuffer */
            aload 2 /* idBuffer */
            invokevirtual java.nio.ByteBuffer.position:()I
            iload 3 /* len */
            iadd
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/Buffer;
            pop
        end local 3 // int len
         6: .line 407
      StackMap locals:
      StackMap stack:
            aload 2 /* idBuffer */
            invokevirtual java.nio.ByteBuffer.hasRemaining:()Z
            ifne 2
         7: .line 414
            iconst_1
            ireturn
        end local 2 // java.nio.ByteBuffer idBuffer
        end local 1 // byte[] id
        end local 0 // org.h2.mvstore.StreamStore this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    8     0      this  Lorg/h2/mvstore/StreamStore;
            0    8     1        id  [B
            1    8     2  idBuffer  Ljava/nio/ByteBuffer;
            5    6     3       len  I
    MethodParameters:
      Name  Flags
      id    

  public java.io.InputStream get(byte[]);
    descriptor: ([B)Ljava/io/InputStream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.h2.mvstore.StreamStore this
        start local 1 // byte[] id
         0: .line 424
            new org.h2.mvstore.StreamStore$Stream
            dup
            aload 0 /* this */
            aload 1 /* id */
            invokespecial org.h2.mvstore.StreamStore$Stream.<init>:(Lorg/h2/mvstore/StreamStore;[B)V
            areturn
        end local 1 // byte[] id
        end local 0 // org.h2.mvstore.StreamStore this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/mvstore/StreamStore;
            0    1     1    id  [B
    MethodParameters:
      Name  Flags
      id    

  byte[] getBlock(long);
    descriptor: (J)[B
    flags: (0x0000) 
    Code:
      stack=7, locals=4, args_size=2
        start local 0 // org.h2.mvstore.StreamStore this
        start local 1 // long key
         0: .line 434
            aload 0 /* this */
            getfield org.h2.mvstore.StreamStore.map:Ljava/util/Map;
            lload 1 /* key */
            invokestatic java.lang.Long.valueOf:(J)Ljava/lang/Long;
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast byte[]
            astore 3 /* data */
        start local 3 // byte[] data
         1: .line 435
            aload 3 /* data */
            ifnonnull 5
         2: .line 437
            bipush 50
         3: .line 438
            ldc "Block {0} not found"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            lload 1 /* key */
            invokestatic java.lang.Long.valueOf:(J)Ljava/lang/Long;
            aastore
         4: .line 436
            invokestatic org.h2.mvstore.DataUtils.newIllegalStateException:(ILjava/lang/String;[Ljava/lang/Object;)Ljava/lang/IllegalStateException;
            athrow
         5: .line 440
      StackMap locals: byte[]
      StackMap stack:
            aload 3 /* data */
            areturn
        end local 3 // byte[] data
        end local 1 // long key
        end local 0 // org.h2.mvstore.StreamStore this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/h2/mvstore/StreamStore;
            0    6     1   key  J
            1    6     3  data  [B
    MethodParameters:
      Name  Flags
      key   
}
SourceFile: "StreamStore.java"
NestMembers:
  org.h2.mvstore.StreamStore$Stream
InnerClasses:
  Stream = org.h2.mvstore.StreamStore$Stream of org.h2.mvstore.StreamStore