public class org.h2.index.PageBtreeLeaf extends org.h2.index.PageBtree
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.h2.index.PageBtreeLeaf
  super_class: org.h2.index.PageBtree
{
  private static final int OFFSET_LENGTH;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 2

  private final boolean optimizeUpdate;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  private void <init>(org.h2.index.PageBtreeIndex, int, org.h2.store.Data);
    descriptor: (Lorg/h2/index/PageBtreeIndex;ILorg/h2/store/Data;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.h2.index.PageBtreeLeaf this
        start local 1 // org.h2.index.PageBtreeIndex index
        start local 2 // int pageId
        start local 3 // org.h2.store.Data data
         0: .line 38
            aload 0 /* this */
            aload 1 /* index */
            iload 2 /* pageId */
            aload 3 /* data */
            invokespecial org.h2.index.PageBtree.<init>:(Lorg/h2/index/PageBtreeIndex;ILorg/h2/store/Data;)V
         1: .line 39
            aload 0 /* this */
            aload 1 /* index */
            invokevirtual org.h2.index.PageBtreeIndex.getDatabase:()Lorg/h2/engine/Database;
            invokevirtual org.h2.engine.Database.getSettings:()Lorg/h2/engine/DbSettings;
            getfield org.h2.engine.DbSettings.optimizeUpdate:Z
            putfield org.h2.index.PageBtreeLeaf.optimizeUpdate:Z
         2: .line 40
            return
        end local 3 // org.h2.store.Data data
        end local 2 // int pageId
        end local 1 // org.h2.index.PageBtreeIndex index
        end local 0 // org.h2.index.PageBtreeLeaf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/h2/index/PageBtreeLeaf;
            0    3     1   index  Lorg/h2/index/PageBtreeIndex;
            0    3     2  pageId  I
            0    3     3    data  Lorg/h2/store/Data;
    MethodParameters:
        Name  Flags
      index   
      pageId  
      data    

  public static org.h2.store.Page read(org.h2.index.PageBtreeIndex, org.h2.store.Data, int);
    descriptor: (Lorg/h2/index/PageBtreeIndex;Lorg/h2/store/Data;I)Lorg/h2/store/Page;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // org.h2.index.PageBtreeIndex index
        start local 1 // org.h2.store.Data data
        start local 2 // int pageId
         0: .line 51
            new org.h2.index.PageBtreeLeaf
            dup
            aload 0 /* index */
            iload 2 /* pageId */
            aload 1 /* data */
            invokespecial org.h2.index.PageBtreeLeaf.<init>:(Lorg/h2/index/PageBtreeIndex;ILorg/h2/store/Data;)V
            astore 3 /* p */
        start local 3 // org.h2.index.PageBtreeLeaf p
         1: .line 52
            aload 3 /* p */
            invokevirtual org.h2.index.PageBtreeLeaf.read:()V
         2: .line 53
            aload 3 /* p */
            areturn
        end local 3 // org.h2.index.PageBtreeLeaf p
        end local 2 // int pageId
        end local 1 // org.h2.store.Data data
        end local 0 // org.h2.index.PageBtreeIndex index
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0   index  Lorg/h2/index/PageBtreeIndex;
            0    3     1    data  Lorg/h2/store/Data;
            0    3     2  pageId  I
            1    3     3       p  Lorg/h2/index/PageBtreeLeaf;
    MethodParameters:
        Name  Flags
      index   
      data    
      pageId  

  static org.h2.index.PageBtreeLeaf create(org.h2.index.PageBtreeIndex, int, int);
    descriptor: (Lorg/h2/index/PageBtreeIndex;II)Lorg/h2/index/PageBtreeLeaf;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // org.h2.index.PageBtreeIndex index
        start local 1 // int pageId
        start local 2 // int parentPageId
         0: .line 66
            new org.h2.index.PageBtreeLeaf
            dup
            aload 0 /* index */
            iload 1 /* pageId */
            aload 0 /* index */
            invokevirtual org.h2.index.PageBtreeIndex.getPageStore:()Lorg/h2/store/PageStore;
         1: .line 67
            invokevirtual org.h2.store.PageStore.createData:()Lorg/h2/store/Data;
         2: .line 66
            invokespecial org.h2.index.PageBtreeLeaf.<init>:(Lorg/h2/index/PageBtreeIndex;ILorg/h2/store/Data;)V
            astore 3 /* p */
        start local 3 // org.h2.index.PageBtreeLeaf p
         3: .line 68
            aload 0 /* index */
            invokevirtual org.h2.index.PageBtreeIndex.getPageStore:()Lorg/h2/store/PageStore;
            aload 3 /* p */
            aconst_null
            invokevirtual org.h2.store.PageStore.logUndo:(Lorg/h2/store/Page;Lorg/h2/store/Data;)V
         4: .line 69
            aload 3 /* p */
            getstatic org.h2.result.SearchRow.EMPTY_ARRAY:[Lorg/h2/result/SearchRow;
            putfield org.h2.index.PageBtreeLeaf.rows:[Lorg/h2/result/SearchRow;
         5: .line 70
            aload 3 /* p */
            iload 2 /* parentPageId */
            putfield org.h2.index.PageBtreeLeaf.parentPageId:I
         6: .line 71
            aload 3 /* p */
            invokevirtual org.h2.index.PageBtreeLeaf.writeHead:()V
         7: .line 72
            aload 3 /* p */
            aload 3 /* p */
            getfield org.h2.index.PageBtreeLeaf.data:Lorg/h2/store/Data;
            invokevirtual org.h2.store.Data.length:()I
            putfield org.h2.index.PageBtreeLeaf.start:I
         8: .line 73
            aload 3 /* p */
            areturn
        end local 3 // org.h2.index.PageBtreeLeaf p
        end local 2 // int parentPageId
        end local 1 // int pageId
        end local 0 // org.h2.index.PageBtreeIndex index
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    9     0         index  Lorg/h2/index/PageBtreeIndex;
            0    9     1        pageId  I
            0    9     2  parentPageId  I
            3    9     3             p  Lorg/h2/index/PageBtreeLeaf;
    MethodParameters:
              Name  Flags
      index         
      pageId        
      parentPageId  

  private void read();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // org.h2.index.PageBtreeLeaf this
         0: .line 77
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.data:Lorg/h2/store/Data;
            invokevirtual org.h2.store.Data.reset:()V
         1: .line 78
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.data:Lorg/h2/store/Data;
            invokevirtual org.h2.store.Data.readByte:()B
            istore 1 /* type */
        start local 1 // int type
         2: .line 79
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.data:Lorg/h2/store/Data;
            invokevirtual org.h2.store.Data.readShortInt:()S
            pop
         3: .line 80
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.data:Lorg/h2/store/Data;
            invokevirtual org.h2.store.Data.readInt:()I
            putfield org.h2.index.PageBtreeLeaf.parentPageId:I
         4: .line 81
            aload 0 /* this */
            iload 1 /* type */
            bipush 16
            iand
            ifne 5
            iconst_1
            goto 6
      StackMap locals: org.h2.index.PageBtreeLeaf int
      StackMap stack: org.h2.index.PageBtreeLeaf
         5: iconst_0
      StackMap locals: org.h2.index.PageBtreeLeaf int
      StackMap stack: org.h2.index.PageBtreeLeaf int
         6: putfield org.h2.index.PageBtreeLeaf.onlyPosition:Z
         7: .line 82
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.data:Lorg/h2/store/Data;
            invokevirtual org.h2.store.Data.readVarInt:()I
            istore 2 /* indexId */
        start local 2 // int indexId
         8: .line 83
            iload 2 /* indexId */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getId:()I
            if_icmpeq 14
         9: .line 84
            ldc 90030
        10: .line 85
            new java.lang.StringBuilder
            dup
            ldc "page:"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual org.h2.index.PageBtreeLeaf.getPos:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " expected index:"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getId:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
        11: .line 86
            ldc "got:"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 2 /* indexId */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
        12: .line 85
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        13: .line 84
            invokestatic org.h2.message.DbException.get:(ILjava/lang/String;)Lorg/h2/message/DbException;
            athrow
        14: .line 88
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.data:Lorg/h2/store/Data;
            invokevirtual org.h2.store.Data.readShortInt:()S
            putfield org.h2.index.PageBtreeLeaf.entryCount:I
        15: .line 89
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.entryCount:I
            newarray 10
            putfield org.h2.index.PageBtreeLeaf.offsets:[I
        16: .line 90
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.entryCount:I
            anewarray org.h2.result.SearchRow
            putfield org.h2.index.PageBtreeLeaf.rows:[Lorg/h2/result/SearchRow;
        17: .line 91
            iconst_0
            istore 3 /* i */
        start local 3 // int i
        18: goto 21
        19: .line 92
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.offsets:[I
            iload 3 /* i */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.data:Lorg/h2/store/Data;
            invokevirtual org.h2.store.Data.readShortInt:()S
            iastore
        20: .line 91
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        21: iload 3 /* i */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.entryCount:I
            if_icmplt 19
        end local 3 // int i
        22: .line 94
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.data:Lorg/h2/store/Data;
            invokevirtual org.h2.store.Data.length:()I
            putfield org.h2.index.PageBtreeLeaf.start:I
        23: .line 95
            aload 0 /* this */
            iconst_1
            putfield org.h2.index.PageBtreeLeaf.written:Z
        24: .line 96
            aload 0 /* this */
            iconst_1
            putfield org.h2.index.PageBtreeLeaf.writtenData:Z
        25: .line 97
            return
        end local 2 // int indexId
        end local 1 // int type
        end local 0 // org.h2.index.PageBtreeLeaf this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   26     0     this  Lorg/h2/index/PageBtreeLeaf;
            2   26     1     type  I
            8   26     2  indexId  I
           18   22     3        i  I

  int addRowTry(org.h2.result.SearchRow);
    descriptor: (Lorg/h2/result/SearchRow;)I
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.h2.index.PageBtreeLeaf this
        start local 1 // org.h2.result.SearchRow row
         0: .line 101
            aload 0 /* this */
            aload 1 /* row */
            iconst_1
            invokevirtual org.h2.index.PageBtreeLeaf.addRow:(Lorg/h2/result/SearchRow;Z)I
            istore 2 /* x */
        start local 2 // int x
         1: .line 102
            aload 0 /* this */
            invokevirtual org.h2.index.PageBtreeLeaf.memoryChange:()V
         2: .line 103
            iload 2 /* x */
            ireturn
        end local 2 // int x
        end local 1 // org.h2.result.SearchRow row
        end local 0 // org.h2.index.PageBtreeLeaf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/h2/index/PageBtreeLeaf;
            0    3     1   row  Lorg/h2/result/SearchRow;
            1    3     2     x  I
    MethodParameters:
      Name  Flags
      row   

  private int addRow(org.h2.result.SearchRow, boolean);
    descriptor: (Lorg/h2/result/SearchRow;Z)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=10, args_size=3
        start local 0 // org.h2.index.PageBtreeLeaf this
        start local 1 // org.h2.result.SearchRow row
        start local 2 // boolean tryOnly
         0: .line 107
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.index:Lorg/h2/index/PageBtreeIndex;
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.data:Lorg/h2/store/Data;
            aload 1 /* row */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.onlyPosition:Z
            invokevirtual org.h2.index.PageBtreeIndex.getRowSize:(Lorg/h2/store/Data;Lorg/h2/result/SearchRow;Z)I
            istore 3 /* rowLength */
        start local 3 // int rowLength
         1: .line 108
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getPageStore:()Lorg/h2/store/PageStore;
            invokevirtual org.h2.store.PageStore.getPageSize:()I
            istore 4 /* pageSize */
        start local 4 // int pageSize
         2: .line 109
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.entryCount:I
            ifne 3
            iload 4 /* pageSize */
            goto 4
      StackMap locals: int int
      StackMap stack:
         3: aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.offsets:[I
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.entryCount:I
            iconst_1
            isub
            iaload
      StackMap locals:
      StackMap stack: int
         4: istore 5 /* last */
        start local 5 // int last
         5: .line 110
            iload 5 /* last */
            iload 3 /* rowLength */
            isub
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.start:I
            iconst_2
            iadd
            if_icmpge 31
         6: .line 111
            iload 2 /* tryOnly */
            ifeq 15
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.entryCount:I
            iconst_1
            if_icmple 15
         7: .line 112
            aload 0 /* this */
            aload 1 /* row */
            iconst_0
            iconst_1
            iconst_1
            invokevirtual org.h2.index.PageBtreeLeaf.find:(Lorg/h2/result/SearchRow;ZZZ)I
            istore 6 /* x */
        start local 6 // int x
         8: .line 113
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.entryCount:I
            iconst_5
            if_icmpge 10
         9: .line 115
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.entryCount:I
            iconst_2
            idiv
            ireturn
        10: .line 120
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.entryCount:I
            iconst_3
            idiv
            istore 7 /* third */
        start local 7 // int third
        11: .line 121
            iload 6 /* x */
            iload 7 /* third */
            if_icmpge 12
            iload 7 /* third */
            goto 14
      StackMap locals: int
      StackMap stack:
        12: iload 6 /* x */
            iconst_2
            iload 7 /* third */
            imul
            if_icmplt 13
            iconst_2
            iload 7 /* third */
            imul
            goto 14
      StackMap locals:
      StackMap stack:
        13: iload 6 /* x */
      StackMap locals:
      StackMap stack: int
        14: ireturn
        end local 7 // int third
        end local 6 // int x
        15: .line 123
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.index.PageBtreeLeaf.readAllRows:()V
        16: .line 124
            aload 0 /* this */
            iconst_0
            putfield org.h2.index.PageBtreeLeaf.writtenData:Z
        17: .line 125
            aload 0 /* this */
            iconst_1
            putfield org.h2.index.PageBtreeLeaf.onlyPosition:Z
        18: .line 127
            iload 4 /* pageSize */
            istore 6 /* o */
        start local 6 // int o
        19: .line 128
            iconst_0
            istore 7 /* i */
        start local 7 // int i
        20: goto 24
        21: .line 129
      StackMap locals: int int
      StackMap stack:
            iload 6 /* o */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.index:Lorg/h2/index/PageBtreeIndex;
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.data:Lorg/h2/store/Data;
            aload 0 /* this */
            iload 7 /* i */
            invokevirtual org.h2.index.PageBtreeLeaf.getRow:(I)Lorg/h2/result/SearchRow;
            iconst_1
            invokevirtual org.h2.index.PageBtreeIndex.getRowSize:(Lorg/h2/store/Data;Lorg/h2/result/SearchRow;Z)I
            isub
            istore 6 /* o */
        22: .line 130
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.offsets:[I
            iload 7 /* i */
            iload 6 /* o */
            iastore
        23: .line 128
            iinc 7 /* i */ 1
      StackMap locals:
      StackMap stack:
        24: iload 7 /* i */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.entryCount:I
            if_icmplt 21
        end local 7 // int i
        25: .line 132
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.entryCount:I
            ifne 26
            iload 4 /* pageSize */
            goto 27
      StackMap locals:
      StackMap stack:
        26: aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.offsets:[I
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.entryCount:I
            iconst_1
            isub
            iaload
      StackMap locals:
      StackMap stack: int
        27: istore 5 /* last */
        28: .line 133
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.index:Lorg/h2/index/PageBtreeIndex;
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.data:Lorg/h2/store/Data;
            aload 1 /* row */
            iconst_1
            invokevirtual org.h2.index.PageBtreeIndex.getRowSize:(Lorg/h2/store/Data;Lorg/h2/result/SearchRow;Z)I
            istore 3 /* rowLength */
        29: .line 134
            iload 5 /* last */
            iload 3 /* rowLength */
            isub
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.start:I
            iconst_2
            iadd
            if_icmpge 31
        30: .line 135
            invokestatic org.h2.message.DbException.throwInternalError:()Ljava/lang/RuntimeException;
            athrow
        end local 6 // int o
        31: .line 138
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getPageStore:()Lorg/h2/store/PageStore;
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.data:Lorg/h2/store/Data;
            invokevirtual org.h2.store.PageStore.logUndo:(Lorg/h2/store/Page;Lorg/h2/store/Data;)V
        32: .line 139
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.optimizeUpdate:Z
            ifne 34
        33: .line 140
            aload 0 /* this */
            invokevirtual org.h2.index.PageBtreeLeaf.readAllRows:()V
        34: .line 142
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getPageStore:()Lorg/h2/store/PageStore;
            invokevirtual org.h2.store.PageStore.getChangeCount:()J
            putfield org.h2.index.PageBtreeLeaf.changeCount:J
        35: .line 143
            aload 0 /* this */
            iconst_0
            putfield org.h2.index.PageBtreeLeaf.written:Z
        36: .line 145
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.entryCount:I
            ifne 39
        37: .line 146
            iconst_0
            istore 6 /* x */
        start local 6 // int x
        38: .line 147
            goto 40
        end local 6 // int x
        39: .line 148
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* row */
            iconst_0
            iconst_1
            iconst_1
            invokevirtual org.h2.index.PageBtreeLeaf.find:(Lorg/h2/result/SearchRow;ZZZ)I
            istore 6 /* x */
        start local 6 // int x
        40: .line 150
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.h2.index.PageBtreeLeaf.start:I
            iconst_2
            iadd
            putfield org.h2.index.PageBtreeLeaf.start:I
        41: .line 151
            iload 6 /* x */
            ifne 42
            iload 4 /* pageSize */
            goto 43
      StackMap locals:
      StackMap stack:
        42: aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.offsets:[I
            iload 6 /* x */
            iconst_1
            isub
            iaload
      StackMap locals:
      StackMap stack: int
        43: iload 3 /* rowLength */
            isub
            istore 7 /* offset */
        start local 7 // int offset
        44: .line 152
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.optimizeUpdate:Z
            ifeq 52
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.writtenData:Z
            ifeq 52
        45: .line 153
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.entryCount:I
            ifle 51
        46: .line 154
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.data:Lorg/h2/store/Data;
            invokevirtual org.h2.store.Data.getBytes:()[B
            astore 8 /* d */
        start local 8 // byte[] d
        47: .line 155
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.offsets:[I
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.entryCount:I
            iconst_1
            isub
            iaload
            istore 9 /* dataStart */
        start local 9 // int dataStart
        48: .line 156
            aload 8 /* d */
            iload 9 /* dataStart */
            aload 8 /* d */
            iload 9 /* dataStart */
            iload 3 /* rowLength */
            isub
        49: .line 157
            iload 7 /* offset */
            iload 9 /* dataStart */
            isub
            iload 3 /* rowLength */
            iadd
        50: .line 156
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        end local 9 // int dataStart
        end local 8 // byte[] d
        51: .line 159
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.index:Lorg/h2/index/PageBtreeIndex;
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.data:Lorg/h2/store/Data;
            iload 7 /* offset */
            aload 1 /* row */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.onlyPosition:Z
            invokevirtual org.h2.index.PageBtreeIndex.writeRow:(Lorg/h2/store/Data;ILorg/h2/result/SearchRow;Z)V
        52: .line 161
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.offsets:[I
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.entryCount:I
            iload 6 /* x */
            iload 7 /* offset */
            invokestatic org.h2.index.PageBtreeLeaf.insert:([IIII)[I
            putfield org.h2.index.PageBtreeLeaf.offsets:[I
        53: .line 162
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.offsets:[I
            iload 6 /* x */
            iconst_1
            iadd
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.entryCount:I
            iconst_1
            iadd
            iload 3 /* rowLength */
            ineg
            invokestatic org.h2.index.PageBtreeLeaf.add:([IIII)V
        54: .line 163
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.rows:[Lorg/h2/result/SearchRow;
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.entryCount:I
            iload 6 /* x */
            aload 1 /* row */
            invokestatic org.h2.index.PageBtreeLeaf.insert:([Ljava/lang/Object;IILjava/lang/Object;)[Ljava/lang/Object;
            checkcast org.h2.result.SearchRow[]
            putfield org.h2.index.PageBtreeLeaf.rows:[Lorg/h2/result/SearchRow;
        55: .line 164
            aload 0 /* this */
            dup
            getfield org.h2.index.PageBtreeLeaf.entryCount:I
            iconst_1
            iadd
            putfield org.h2.index.PageBtreeLeaf.entryCount:I
        56: .line 165
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getPageStore:()Lorg/h2/store/PageStore;
            aload 0 /* this */
            invokevirtual org.h2.store.PageStore.update:(Lorg/h2/store/Page;)V
        57: .line 166
            iconst_m1
            ireturn
        end local 7 // int offset
        end local 6 // int x
        end local 5 // int last
        end local 4 // int pageSize
        end local 3 // int rowLength
        end local 2 // boolean tryOnly
        end local 1 // org.h2.result.SearchRow row
        end local 0 // org.h2.index.PageBtreeLeaf this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   58     0       this  Lorg/h2/index/PageBtreeLeaf;
            0   58     1        row  Lorg/h2/result/SearchRow;
            0   58     2    tryOnly  Z
            1   58     3  rowLength  I
            2   58     4   pageSize  I
            5   58     5       last  I
            8   15     6          x  I
           11   15     7      third  I
           19   31     6          o  I
           20   25     7          i  I
           38   39     6          x  I
           40   58     6          x  I
           44   58     7     offset  I
           47   51     8          d  [B
           48   51     9  dataStart  I
    MethodParameters:
         Name  Flags
      row      
      tryOnly  

  private void removeRow(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=6, args_size=2
        start local 0 // org.h2.index.PageBtreeLeaf this
        start local 1 // int at
         0: .line 170
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.optimizeUpdate:Z
            ifne 2
         1: .line 171
            aload 0 /* this */
            invokevirtual org.h2.index.PageBtreeLeaf.readAllRows:()V
         2: .line 173
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getPageStore:()Lorg/h2/store/PageStore;
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.data:Lorg/h2/store/Data;
            invokevirtual org.h2.store.PageStore.logUndo:(Lorg/h2/store/Page;Lorg/h2/store/Data;)V
         3: .line 174
            aload 0 /* this */
            dup
            getfield org.h2.index.PageBtreeLeaf.entryCount:I
            iconst_1
            isub
            putfield org.h2.index.PageBtreeLeaf.entryCount:I
         4: .line 175
            aload 0 /* this */
            iconst_0
            putfield org.h2.index.PageBtreeLeaf.written:Z
         5: .line 176
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getPageStore:()Lorg/h2/store/PageStore;
            invokevirtual org.h2.store.PageStore.getChangeCount:()J
            putfield org.h2.index.PageBtreeLeaf.changeCount:J
         6: .line 177
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.entryCount:I
            ifgt 8
         7: .line 178
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.entryCount:I
            invokestatic java.lang.Integer.toString:(I)Ljava/lang/String;
            invokestatic org.h2.message.DbException.throwInternalError:(Ljava/lang/String;)Ljava/lang/RuntimeException;
            pop
         8: .line 180
      StackMap locals:
      StackMap stack:
            iload 1 /* at */
            ifle 9
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.offsets:[I
            iload 1 /* at */
            iconst_1
            isub
            iaload
            goto 10
      StackMap locals:
      StackMap stack:
         9: aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getPageStore:()Lorg/h2/store/PageStore;
            invokevirtual org.h2.store.PageStore.getPageSize:()I
      StackMap locals:
      StackMap stack: int
        10: istore 2 /* startNext */
        start local 2 // int startNext
        11: .line 181
            iload 2 /* startNext */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.offsets:[I
            iload 1 /* at */
            iaload
            isub
            istore 3 /* rowLength */
        start local 3 // int rowLength
        12: .line 182
            aload 0 /* this */
            dup
            getfield org.h2.index.PageBtreeLeaf.start:I
            iconst_2
            isub
            putfield org.h2.index.PageBtreeLeaf.start:I
        13: .line 184
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.optimizeUpdate:Z
            ifeq 21
        14: .line 185
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.writtenData:Z
            ifeq 21
        15: .line 186
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.data:Lorg/h2/store/Data;
            invokevirtual org.h2.store.Data.getBytes:()[B
            astore 4 /* d */
        start local 4 // byte[] d
        16: .line 187
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.offsets:[I
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.entryCount:I
            iaload
            istore 5 /* dataStart */
        start local 5 // int dataStart
        17: .line 188
            aload 4 /* d */
            iload 5 /* dataStart */
            aload 4 /* d */
        18: .line 189
            iload 5 /* dataStart */
            iload 3 /* rowLength */
            iadd
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.offsets:[I
            iload 1 /* at */
            iaload
            iload 5 /* dataStart */
            isub
        19: .line 188
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        20: .line 190
            aload 4 /* d */
            iload 5 /* dataStart */
            iload 5 /* dataStart */
            iload 3 /* rowLength */
            iadd
            iconst_0
            invokestatic java.util.Arrays.fill:([BIIB)V
        end local 5 // int dataStart
        end local 4 // byte[] d
        21: .line 194
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.offsets:[I
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.entryCount:I
            iconst_1
            iadd
            iload 1 /* at */
            invokestatic org.h2.index.PageBtreeLeaf.remove:([III)[I
            putfield org.h2.index.PageBtreeLeaf.offsets:[I
        22: .line 195
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.offsets:[I
            iload 1 /* at */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.entryCount:I
            iload 3 /* rowLength */
            invokestatic org.h2.index.PageBtreeLeaf.add:([IIII)V
        23: .line 196
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.rows:[Lorg/h2/result/SearchRow;
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.entryCount:I
            iconst_1
            iadd
            iload 1 /* at */
            invokestatic org.h2.index.PageBtreeLeaf.remove:([Ljava/lang/Object;II)[Ljava/lang/Object;
            checkcast org.h2.result.SearchRow[]
            putfield org.h2.index.PageBtreeLeaf.rows:[Lorg/h2/result/SearchRow;
        24: .line 197
            return
        end local 3 // int rowLength
        end local 2 // int startNext
        end local 1 // int at
        end local 0 // org.h2.index.PageBtreeLeaf this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   25     0       this  Lorg/h2/index/PageBtreeLeaf;
            0   25     1         at  I
           11   25     2  startNext  I
           12   25     3  rowLength  I
           16   21     4          d  [B
           17   21     5  dataStart  I
    MethodParameters:
      Name  Flags
      at    

  int getEntryCount();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.index.PageBtreeLeaf this
         0: .line 200
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.entryCount:I
            ireturn
        end local 0 // org.h2.index.PageBtreeLeaf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/index/PageBtreeLeaf;

  org.h2.index.PageBtree split(int);
    descriptor: (I)Lorg/h2/index/PageBtree;
    flags: (0x0000) 
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.h2.index.PageBtreeLeaf this
        start local 1 // int splitPoint
         0: .line 205
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getPageStore:()Lorg/h2/store/PageStore;
            invokevirtual org.h2.store.PageStore.allocatePage:()I
            istore 2 /* newPageId */
        start local 2 // int newPageId
         1: .line 206
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.index:Lorg/h2/index/PageBtreeIndex;
            iload 2 /* newPageId */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.parentPageId:I
            invokestatic org.h2.index.PageBtreeLeaf.create:(Lorg/h2/index/PageBtreeIndex;II)Lorg/h2/index/PageBtreeLeaf;
            astore 3 /* p2 */
        start local 3 // org.h2.index.PageBtreeLeaf p2
         2: .line 207
            goto 5
         3: .line 208
      StackMap locals: int org.h2.index.PageBtreeLeaf
      StackMap stack:
            aload 3 /* p2 */
            aload 0 /* this */
            iload 1 /* splitPoint */
            invokevirtual org.h2.index.PageBtreeLeaf.getRow:(I)Lorg/h2/result/SearchRow;
            iconst_0
            invokevirtual org.h2.index.PageBtreeLeaf.addRow:(Lorg/h2/result/SearchRow;Z)I
            pop
         4: .line 209
            aload 0 /* this */
            iload 1 /* splitPoint */
            invokevirtual org.h2.index.PageBtreeLeaf.removeRow:(I)V
         5: .line 207
      StackMap locals:
      StackMap stack:
            iload 1 /* splitPoint */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.entryCount:I
            if_icmplt 3
         6: .line 211
            aload 0 /* this */
            invokevirtual org.h2.index.PageBtreeLeaf.memoryChange:()V
         7: .line 212
            aload 3 /* p2 */
            invokevirtual org.h2.index.PageBtreeLeaf.memoryChange:()V
         8: .line 213
            aload 3 /* p2 */
            areturn
        end local 3 // org.h2.index.PageBtreeLeaf p2
        end local 2 // int newPageId
        end local 1 // int splitPoint
        end local 0 // org.h2.index.PageBtreeLeaf this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    9     0        this  Lorg/h2/index/PageBtreeLeaf;
            0    9     1  splitPoint  I
            1    9     2   newPageId  I
            2    9     3          p2  Lorg/h2/index/PageBtreeLeaf;
    MethodParameters:
            Name  Flags
      splitPoint  

  org.h2.index.PageBtreeLeaf getFirstLeaf();
    descriptor: ()Lorg/h2/index/PageBtreeLeaf;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.index.PageBtreeLeaf this
         0: .line 218
            aload 0 /* this */
            areturn
        end local 0 // org.h2.index.PageBtreeLeaf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/index/PageBtreeLeaf;

  org.h2.index.PageBtreeLeaf getLastLeaf();
    descriptor: ()Lorg/h2/index/PageBtreeLeaf;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.index.PageBtreeLeaf this
         0: .line 223
            aload 0 /* this */
            areturn
        end local 0 // org.h2.index.PageBtreeLeaf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/index/PageBtreeLeaf;

  org.h2.result.SearchRow remove(org.h2.result.SearchRow);
    descriptor: (Lorg/h2/result/SearchRow;)Lorg/h2/result/SearchRow;
    flags: (0x0000) 
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // org.h2.index.PageBtreeLeaf this
        start local 1 // org.h2.result.SearchRow row
         0: .line 228
            aload 0 /* this */
            aload 1 /* row */
            iconst_0
            iconst_0
            iconst_1
            invokevirtual org.h2.index.PageBtreeLeaf.find:(Lorg/h2/result/SearchRow;ZZZ)I
            istore 2 /* at */
        start local 2 // int at
         1: .line 229
            aload 0 /* this */
            iload 2 /* at */
            invokevirtual org.h2.index.PageBtreeLeaf.getRow:(I)Lorg/h2/result/SearchRow;
            astore 3 /* delete */
        start local 3 // org.h2.result.SearchRow delete
         2: .line 230
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.index:Lorg/h2/index/PageBtreeIndex;
            aload 1 /* row */
            aload 3 /* delete */
            invokevirtual org.h2.index.PageBtreeIndex.compareRows:(Lorg/h2/result/SearchRow;Lorg/h2/result/SearchRow;)I
            ifne 3
            aload 3 /* delete */
            invokeinterface org.h2.result.SearchRow.getKey:()J
            aload 1 /* row */
            invokeinterface org.h2.result.SearchRow.getKey:()J
            lcmp
            ifeq 6
         3: .line 231
      StackMap locals: int org.h2.result.SearchRow
      StackMap stack:
            ldc 90112
         4: .line 232
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.index:Lorg/h2/index/PageBtreeIndex;
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            iconst_0
            invokevirtual org.h2.index.PageBtreeIndex.getSQL:(Ljava/lang/StringBuilder;Z)Ljava/lang/StringBuilder;
            ldc ": "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 1 /* row */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         5: .line 231
            invokestatic org.h2.message.DbException.get:(ILjava/lang/String;)Lorg/h2/message/DbException;
            athrow
         6: .line 234
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getPageStore:()Lorg/h2/store/PageStore;
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.data:Lorg/h2/store/Data;
            invokevirtual org.h2.store.PageStore.logUndo:(Lorg/h2/store/Page;Lorg/h2/store/Data;)V
         7: .line 235
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.entryCount:I
            iconst_1
            if_icmpne 9
         8: .line 237
            aload 1 /* row */
            areturn
         9: .line 239
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* at */
            invokevirtual org.h2.index.PageBtreeLeaf.removeRow:(I)V
        10: .line 240
            aload 0 /* this */
            invokevirtual org.h2.index.PageBtreeLeaf.memoryChange:()V
        11: .line 241
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getPageStore:()Lorg/h2/store/PageStore;
            aload 0 /* this */
            invokevirtual org.h2.store.PageStore.update:(Lorg/h2/store/Page;)V
        12: .line 242
            iload 2 /* at */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.entryCount:I
            if_icmpne 14
        13: .line 244
            aload 0 /* this */
            iload 2 /* at */
            iconst_1
            isub
            invokevirtual org.h2.index.PageBtreeLeaf.getRow:(I)Lorg/h2/result/SearchRow;
            areturn
        14: .line 247
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 3 // org.h2.result.SearchRow delete
        end local 2 // int at
        end local 1 // org.h2.result.SearchRow row
        end local 0 // org.h2.index.PageBtreeLeaf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   15     0    this  Lorg/h2/index/PageBtreeLeaf;
            0   15     1     row  Lorg/h2/result/SearchRow;
            1   15     2      at  I
            2   15     3  delete  Lorg/h2/result/SearchRow;
    MethodParameters:
      Name  Flags
      row   

  void freeRecursive();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.h2.index.PageBtreeLeaf this
         0: .line 252
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getPageStore:()Lorg/h2/store/PageStore;
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.data:Lorg/h2/store/Data;
            invokevirtual org.h2.store.PageStore.logUndo:(Lorg/h2/store/Page;Lorg/h2/store/Data;)V
         1: .line 253
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getPageStore:()Lorg/h2/store/PageStore;
            aload 0 /* this */
            invokevirtual org.h2.index.PageBtreeLeaf.getPos:()I
            invokevirtual org.h2.store.PageStore.free:(I)V
         2: .line 254
            return
        end local 0 // org.h2.index.PageBtreeLeaf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/h2/index/PageBtreeLeaf;

  int getRowCount();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.index.PageBtreeLeaf this
         0: .line 258
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.entryCount:I
            ireturn
        end local 0 // org.h2.index.PageBtreeLeaf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/index/PageBtreeLeaf;

  void setRowCountStored(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // org.h2.index.PageBtreeLeaf this
        start local 1 // int rowCount
         0: .line 264
            return
        end local 1 // int rowCount
        end local 0 // org.h2.index.PageBtreeLeaf this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/h2/index/PageBtreeLeaf;
            0    1     1  rowCount  I
    MethodParameters:
          Name  Flags
      rowCount  

  public void write();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.h2.index.PageBtreeLeaf this
         0: .line 268
            aload 0 /* this */
            invokevirtual org.h2.index.PageBtreeLeaf.writeData:()V
         1: .line 269
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getPageStore:()Lorg/h2/store/PageStore;
            aload 0 /* this */
            invokevirtual org.h2.index.PageBtreeLeaf.getPos:()I
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.data:Lorg/h2/store/Data;
            invokevirtual org.h2.store.PageStore.writePage:(ILorg/h2/store/Data;)V
         2: .line 270
            return
        end local 0 // org.h2.index.PageBtreeLeaf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/h2/index/PageBtreeLeaf;

  private void writeHead();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.h2.index.PageBtreeLeaf this
         0: .line 273
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.data:Lorg/h2/store/Data;
            invokevirtual org.h2.store.Data.reset:()V
         1: .line 274
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.data:Lorg/h2/store/Data;
            iconst_4
         2: .line 275
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.onlyPosition:Z
            ifeq 3
            iconst_0
            goto 4
      StackMap locals: org.h2.index.PageBtreeLeaf
      StackMap stack: org.h2.store.Data int
         3: bipush 16
      StackMap locals: org.h2.index.PageBtreeLeaf
      StackMap stack: org.h2.store.Data int int
         4: ior
            i2b
         5: .line 274
            invokevirtual org.h2.store.Data.writeByte:(B)V
         6: .line 276
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.data:Lorg/h2/store/Data;
            iconst_0
            invokevirtual org.h2.store.Data.writeShortInt:(I)V
         7: .line 277
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.data:Lorg/h2/store/Data;
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.parentPageId:I
            invokevirtual org.h2.store.Data.writeInt:(I)V
         8: .line 278
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.data:Lorg/h2/store/Data;
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getId:()I
            invokevirtual org.h2.store.Data.writeVarInt:(I)V
         9: .line 279
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.data:Lorg/h2/store/Data;
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.entryCount:I
            invokevirtual org.h2.store.Data.writeShortInt:(I)V
        10: .line 280
            return
        end local 0 // org.h2.index.PageBtreeLeaf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lorg/h2/index/PageBtreeLeaf;

  private void writeData();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // org.h2.index.PageBtreeLeaf this
         0: .line 283
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.written:Z
            ifeq 2
         1: .line 284
            return
         2: .line 286
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.optimizeUpdate:Z
            ifne 4
         3: .line 287
            aload 0 /* this */
            invokevirtual org.h2.index.PageBtreeLeaf.readAllRows:()V
         4: .line 289
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.index.PageBtreeLeaf.writeHead:()V
         5: .line 290
            iconst_0
            istore 1 /* i */
        start local 1 // int i
         6: goto 9
         7: .line 291
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.data:Lorg/h2/store/Data;
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.offsets:[I
            iload 1 /* i */
            iaload
            invokevirtual org.h2.store.Data.writeShortInt:(I)V
         8: .line 290
            iinc 1 /* i */ 1
      StackMap locals:
      StackMap stack:
         9: iload 1 /* i */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.entryCount:I
            if_icmplt 7
        end local 1 // int i
        10: .line 293
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.writtenData:Z
            ifeq 11
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.optimizeUpdate:Z
            ifne 17
        11: .line 294
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 1 /* i */
        start local 1 // int i
        12: goto 15
        13: .line 295
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.index:Lorg/h2/index/PageBtreeIndex;
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.data:Lorg/h2/store/Data;
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.offsets:[I
            iload 1 /* i */
            iaload
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.rows:[Lorg/h2/result/SearchRow;
            iload 1 /* i */
            aaload
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.onlyPosition:Z
            invokevirtual org.h2.index.PageBtreeIndex.writeRow:(Lorg/h2/store/Data;ILorg/h2/result/SearchRow;Z)V
        14: .line 294
            iinc 1 /* i */ 1
      StackMap locals:
      StackMap stack:
        15: iload 1 /* i */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.entryCount:I
            if_icmplt 13
        end local 1 // int i
        16: .line 297
            aload 0 /* this */
            iconst_1
            putfield org.h2.index.PageBtreeLeaf.writtenData:Z
        17: .line 299
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield org.h2.index.PageBtreeLeaf.written:Z
        18: .line 300
            aload 0 /* this */
            invokevirtual org.h2.index.PageBtreeLeaf.memoryChange:()V
        19: .line 301
            return
        end local 0 // org.h2.index.PageBtreeLeaf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   20     0  this  Lorg/h2/index/PageBtreeLeaf;
            6   10     1     i  I
           12   16     1     i  I

  void find(org.h2.index.PageBtreeCursor, org.h2.result.SearchRow, boolean);
    descriptor: (Lorg/h2/index/PageBtreeCursor;Lorg/h2/result/SearchRow;Z)V
    flags: (0x0000) 
    Code:
      stack=5, locals=6, args_size=4
        start local 0 // org.h2.index.PageBtreeLeaf this
        start local 1 // org.h2.index.PageBtreeCursor cursor
        start local 2 // org.h2.result.SearchRow first
        start local 3 // boolean bigger
         0: .line 305
            aload 0 /* this */
            aload 2 /* first */
            iload 3 /* bigger */
            iconst_0
            iconst_0
            invokevirtual org.h2.index.PageBtreeLeaf.find:(Lorg/h2/result/SearchRow;ZZZ)I
            istore 4 /* i */
        start local 4 // int i
         1: .line 306
            iload 4 /* i */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.entryCount:I
            if_icmple 7
         2: .line 307
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.parentPageId:I
            ifne 4
         3: .line 308
            return
         4: .line 310
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.index:Lorg/h2/index/PageBtreeIndex;
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.parentPageId:I
            invokevirtual org.h2.index.PageBtreeIndex.getPage:(I)Lorg/h2/index/PageBtree;
            checkcast org.h2.index.PageBtreeNode
            astore 5 /* next */
        start local 5 // org.h2.index.PageBtreeNode next
         5: .line 311
            aload 5 /* next */
            aload 1 /* cursor */
            aload 2 /* first */
            iload 3 /* bigger */
            invokevirtual org.h2.index.PageBtreeNode.find:(Lorg/h2/index/PageBtreeCursor;Lorg/h2/result/SearchRow;Z)V
         6: .line 312
            return
        end local 5 // org.h2.index.PageBtreeNode next
         7: .line 314
      StackMap locals:
      StackMap stack:
            aload 1 /* cursor */
            aload 0 /* this */
            iload 4 /* i */
            invokevirtual org.h2.index.PageBtreeCursor.setCurrent:(Lorg/h2/index/PageBtreeLeaf;I)V
         8: .line 315
            return
        end local 4 // int i
        end local 3 // boolean bigger
        end local 2 // org.h2.result.SearchRow first
        end local 1 // org.h2.index.PageBtreeCursor cursor
        end local 0 // org.h2.index.PageBtreeLeaf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Lorg/h2/index/PageBtreeLeaf;
            0    9     1  cursor  Lorg/h2/index/PageBtreeCursor;
            0    9     2   first  Lorg/h2/result/SearchRow;
            0    9     3  bigger  Z
            1    9     4       i  I
            5    7     5    next  Lorg/h2/index/PageBtreeNode;
    MethodParameters:
        Name  Flags
      cursor  
      first   
      bigger  

  void last(org.h2.index.PageBtreeCursor);
    descriptor: (Lorg/h2/index/PageBtreeCursor;)V
    flags: (0x0000) 
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.h2.index.PageBtreeLeaf this
        start local 1 // org.h2.index.PageBtreeCursor cursor
         0: .line 319
            aload 1 /* cursor */
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.entryCount:I
            iconst_1
            isub
            invokevirtual org.h2.index.PageBtreeCursor.setCurrent:(Lorg/h2/index/PageBtreeLeaf;I)V
         1: .line 320
            return
        end local 1 // org.h2.index.PageBtreeCursor cursor
        end local 0 // org.h2.index.PageBtreeLeaf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/h2/index/PageBtreeLeaf;
            0    2     1  cursor  Lorg/h2/index/PageBtreeCursor;
    MethodParameters:
        Name  Flags
      cursor  

  void remapChildren();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // org.h2.index.PageBtreeLeaf this
         0: .line 325
            return
        end local 0 // org.h2.index.PageBtreeLeaf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/index/PageBtreeLeaf;

  void nextPage(org.h2.index.PageBtreeCursor);
    descriptor: (Lorg/h2/index/PageBtreeCursor;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.h2.index.PageBtreeLeaf this
        start local 1 // org.h2.index.PageBtreeCursor cursor
         0: .line 333
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.parentPageId:I
            ifne 3
         1: .line 334
            aload 1 /* cursor */
            aconst_null
            iconst_0
            invokevirtual org.h2.index.PageBtreeCursor.setCurrent:(Lorg/h2/index/PageBtreeLeaf;I)V
         2: .line 335
            return
         3: .line 337
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.index:Lorg/h2/index/PageBtreeIndex;
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.parentPageId:I
            invokevirtual org.h2.index.PageBtreeIndex.getPage:(I)Lorg/h2/index/PageBtree;
            checkcast org.h2.index.PageBtreeNode
            astore 2 /* next */
        start local 2 // org.h2.index.PageBtreeNode next
         4: .line 338
            aload 2 /* next */
            aload 1 /* cursor */
            aload 0 /* this */
            invokevirtual org.h2.index.PageBtreeLeaf.getPos:()I
            invokevirtual org.h2.index.PageBtreeNode.nextPage:(Lorg/h2/index/PageBtreeCursor;I)V
         5: .line 339
            return
        end local 2 // org.h2.index.PageBtreeNode next
        end local 1 // org.h2.index.PageBtreeCursor cursor
        end local 0 // org.h2.index.PageBtreeLeaf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lorg/h2/index/PageBtreeLeaf;
            0    6     1  cursor  Lorg/h2/index/PageBtreeCursor;
            4    6     2    next  Lorg/h2/index/PageBtreeNode;
    MethodParameters:
        Name  Flags
      cursor  

  void previousPage(org.h2.index.PageBtreeCursor);
    descriptor: (Lorg/h2/index/PageBtreeCursor;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.h2.index.PageBtreeLeaf this
        start local 1 // org.h2.index.PageBtreeCursor cursor
         0: .line 347
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.parentPageId:I
            ifne 3
         1: .line 348
            aload 1 /* cursor */
            aconst_null
            iconst_0
            invokevirtual org.h2.index.PageBtreeCursor.setCurrent:(Lorg/h2/index/PageBtreeLeaf;I)V
         2: .line 349
            return
         3: .line 351
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.index:Lorg/h2/index/PageBtreeIndex;
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.parentPageId:I
            invokevirtual org.h2.index.PageBtreeIndex.getPage:(I)Lorg/h2/index/PageBtree;
            checkcast org.h2.index.PageBtreeNode
            astore 2 /* next */
        start local 2 // org.h2.index.PageBtreeNode next
         4: .line 352
            aload 2 /* next */
            aload 1 /* cursor */
            aload 0 /* this */
            invokevirtual org.h2.index.PageBtreeLeaf.getPos:()I
            invokevirtual org.h2.index.PageBtreeNode.previousPage:(Lorg/h2/index/PageBtreeCursor;I)V
         5: .line 353
            return
        end local 2 // org.h2.index.PageBtreeNode next
        end local 1 // org.h2.index.PageBtreeCursor cursor
        end local 0 // org.h2.index.PageBtreeLeaf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lorg/h2/index/PageBtreeLeaf;
            0    6     1  cursor  Lorg/h2/index/PageBtreeCursor;
            4    6     2    next  Lorg/h2/index/PageBtreeNode;
    MethodParameters:
        Name  Flags
      cursor  

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.h2.index.PageBtreeLeaf this
         0: .line 357
            new java.lang.StringBuilder
            dup
            ldc "page["
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual org.h2.index.PageBtreeLeaf.getPos:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc "] b-tree leaf table:"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         1: .line 358
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getId:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " entries:"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.entryCount:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
         2: .line 357
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.h2.index.PageBtreeLeaf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/h2/index/PageBtreeLeaf;

  public void moveTo(org.h2.engine.Session, int);
    descriptor: (Lorg/h2/engine/Session;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=3
        start local 0 // org.h2.index.PageBtreeLeaf this
        start local 1 // org.h2.engine.Session session
        start local 2 // int newPos
         0: .line 363
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getPageStore:()Lorg/h2/store/PageStore;
            astore 3 /* store */
        start local 3 // org.h2.store.PageStore store
         1: .line 364
            aload 0 /* this */
            invokevirtual org.h2.index.PageBtreeLeaf.readAllRows:()V
         2: .line 365
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.index:Lorg/h2/index/PageBtreeIndex;
            iload 2 /* newPos */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.parentPageId:I
            invokestatic org.h2.index.PageBtreeLeaf.create:(Lorg/h2/index/PageBtreeIndex;II)Lorg/h2/index/PageBtreeLeaf;
            astore 4 /* p2 */
        start local 4 // org.h2.index.PageBtreeLeaf p2
         3: .line 366
            aload 3 /* store */
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.data:Lorg/h2/store/Data;
            invokevirtual org.h2.store.PageStore.logUndo:(Lorg/h2/store/Page;Lorg/h2/store/Data;)V
         4: .line 367
            aload 3 /* store */
            aload 4 /* p2 */
            aconst_null
            invokevirtual org.h2.store.PageStore.logUndo:(Lorg/h2/store/Page;Lorg/h2/store/Data;)V
         5: .line 368
            aload 4 /* p2 */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.rows:[Lorg/h2/result/SearchRow;
            putfield org.h2.index.PageBtreeLeaf.rows:[Lorg/h2/result/SearchRow;
         6: .line 369
            aload 4 /* p2 */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.entryCount:I
            putfield org.h2.index.PageBtreeLeaf.entryCount:I
         7: .line 370
            aload 4 /* p2 */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.offsets:[I
            putfield org.h2.index.PageBtreeLeaf.offsets:[I
         8: .line 371
            aload 4 /* p2 */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.onlyPosition:Z
            putfield org.h2.index.PageBtreeLeaf.onlyPosition:Z
         9: .line 372
            aload 4 /* p2 */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.parentPageId:I
            putfield org.h2.index.PageBtreeLeaf.parentPageId:I
        10: .line 373
            aload 4 /* p2 */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.start:I
            putfield org.h2.index.PageBtreeLeaf.start:I
        11: .line 374
            aload 3 /* store */
            aload 4 /* p2 */
            invokevirtual org.h2.store.PageStore.update:(Lorg/h2/store/Page;)V
        12: .line 375
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.parentPageId:I
            ifne 15
        13: .line 376
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.index:Lorg/h2/index/PageBtreeIndex;
            aload 1 /* session */
            iload 2 /* newPos */
            invokevirtual org.h2.index.PageBtreeIndex.setRootPageId:(Lorg/h2/engine/Session;I)V
        14: .line 377
            goto 17
        15: .line 378
      StackMap locals: org.h2.store.PageStore org.h2.index.PageBtreeLeaf
      StackMap stack:
            aload 3 /* store */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.parentPageId:I
            invokevirtual org.h2.store.PageStore.getPage:(I)Lorg/h2/store/Page;
            checkcast org.h2.index.PageBtreeNode
            astore 5 /* p */
        start local 5 // org.h2.index.PageBtreeNode p
        16: .line 379
            aload 5 /* p */
            aload 0 /* this */
            invokevirtual org.h2.index.PageBtreeLeaf.getPos:()I
            iload 2 /* newPos */
            invokevirtual org.h2.index.PageBtreeNode.moveChild:(II)V
        end local 5 // org.h2.index.PageBtreeNode p
        17: .line 381
      StackMap locals:
      StackMap stack:
            aload 3 /* store */
            aload 0 /* this */
            invokevirtual org.h2.index.PageBtreeLeaf.getPos:()I
            invokevirtual org.h2.store.PageStore.free:(I)V
        18: .line 382
            return
        end local 4 // org.h2.index.PageBtreeLeaf p2
        end local 3 // org.h2.store.PageStore store
        end local 2 // int newPos
        end local 1 // org.h2.engine.Session session
        end local 0 // org.h2.index.PageBtreeLeaf this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   19     0     this  Lorg/h2/index/PageBtreeLeaf;
            0   19     1  session  Lorg/h2/engine/Session;
            0   19     2   newPos  I
            1   19     3    store  Lorg/h2/store/PageStore;
            3   19     4       p2  Lorg/h2/index/PageBtreeLeaf;
           16   17     5        p  Lorg/h2/index/PageBtreeNode;
    MethodParameters:
         Name  Flags
      session  
      newPos   

  protected void memoryChange();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=4, args_size=1
        start local 0 // org.h2.index.PageBtreeLeaf this
         0: .line 386
            invokestatic org.h2.index.PageBtreeIndex.isMemoryChangeRequired:()Z
            ifne 2
         1: .line 387
            return
         2: .line 389
      StackMap locals:
      StackMap stack:
            sipush 184
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getPageStore:()Lorg/h2/store/PageStore;
            invokevirtual org.h2.store.PageStore.getPageSize:()I
            iadd
            istore 1 /* memory */
        start local 1 // int memory
         3: .line 390
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.rows:[Lorg/h2/result/SearchRow;
            ifnull 12
         4: .line 391
            iload 1 /* memory */
            aload 0 /* this */
            invokevirtual org.h2.index.PageBtreeLeaf.getEntryCount:()I
            bipush 12
            imul
            iadd
            istore 1 /* memory */
         5: .line 392
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         6: goto 11
         7: .line 393
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.rows:[Lorg/h2/result/SearchRow;
            iload 2 /* i */
            aaload
            astore 3 /* r */
        start local 3 // org.h2.result.SearchRow r
         8: .line 394
            aload 3 /* r */
            ifnull 10
         9: .line 395
            iload 1 /* memory */
            aload 3 /* r */
            invokeinterface org.h2.result.SearchRow.getMemory:()I
            iadd
            istore 1 /* memory */
        end local 3 // org.h2.result.SearchRow r
        10: .line 392
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        11: iload 2 /* i */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.entryCount:I
            if_icmplt 7
        end local 2 // int i
        12: .line 399
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.index.PageBtreeLeaf.index:Lorg/h2/index/PageBtreeIndex;
            iload 1 /* memory */
            iconst_2
            ishr
            invokevirtual org.h2.index.PageBtreeIndex.memoryChange:(I)V
        13: .line 400
            return
        end local 1 // int memory
        end local 0 // org.h2.index.PageBtreeLeaf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   14     0    this  Lorg/h2/index/PageBtreeLeaf;
            3   14     1  memory  I
            6   12     2       i  I
            8   10     3       r  Lorg/h2/result/SearchRow;
}
SourceFile: "PageBtreeLeaf.java"