public class org.h2.value.ValueLong extends org.h2.value.Value
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.h2.value.ValueLong
  super_class: org.h2.value.Value
{
  public static final org.h2.value.ValueLong MIN;
    descriptor: Lorg/h2/value/ValueLong;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  public static final org.h2.value.ValueLong MAX;
    descriptor: Lorg/h2/value/ValueLong;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  public static final java.math.BigInteger MAX_BI;
    descriptor: Ljava/math/BigInteger;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  public static final int PRECISION;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 19

  public static final int DISPLAY_SIZE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 20

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

  private static final org.h2.value.ValueLong[] STATIC_CACHE;
    descriptor: [Lorg/h2/value/ValueLong;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private final long value;
    descriptor: J
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=6, locals=1, args_size=0
         0: .line 23
            ldc -9223372036854775808
            invokestatic org.h2.value.ValueLong.get:(J)Lorg/h2/value/ValueLong;
            putstatic org.h2.value.ValueLong.MIN:Lorg/h2/value/ValueLong;
         1: .line 28
            ldc 9223372036854775807
            invokestatic org.h2.value.ValueLong.get:(J)Lorg/h2/value/ValueLong;
            putstatic org.h2.value.ValueLong.MAX:Lorg/h2/value/ValueLong;
         2: .line 33
            ldc 9223372036854775807
            invokestatic java.math.BigInteger.valueOf:(J)Ljava/math/BigInteger;
            putstatic org.h2.value.ValueLong.MAX_BI:Ljava/math/BigInteger;
         3: .line 52
            bipush 100
            anewarray org.h2.value.ValueLong
            putstatic org.h2.value.ValueLong.STATIC_CACHE:[Lorg/h2/value/ValueLong;
         4: .line 53
            iconst_0
            istore 0 /* i */
        start local 0 // int i
         5: goto 8
         6: .line 54
      StackMap locals: int
      StackMap stack:
            getstatic org.h2.value.ValueLong.STATIC_CACHE:[Lorg/h2/value/ValueLong;
            iload 0 /* i */
            new org.h2.value.ValueLong
            dup
            iload 0 /* i */
            i2l
            invokespecial org.h2.value.ValueLong.<init>:(J)V
            aastore
         7: .line 53
            iinc 0 /* i */ 1
      StackMap locals:
      StackMap stack:
         8: iload 0 /* i */
            bipush 100
            if_icmplt 6
        end local 0 // int i
         9: .line 56
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            5    9     0     i  I

  private void <init>(long);
    descriptor: (J)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.h2.value.ValueLong this
        start local 1 // long value
         0: .line 58
            aload 0 /* this */
            invokespecial org.h2.value.Value.<init>:()V
         1: .line 59
            aload 0 /* this */
            lload 1 /* value */
            putfield org.h2.value.ValueLong.value:J
         2: .line 60
            return
        end local 1 // long value
        end local 0 // org.h2.value.ValueLong this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/h2/value/ValueLong;
            0    3     1  value  J
    MethodParameters:
       Name  Flags
      value  

  public org.h2.value.Value add(org.h2.value.Value);
    descriptor: (Lorg/h2/value/Value;)Lorg/h2/value/Value;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=8, args_size=2
        start local 0 // org.h2.value.ValueLong this
        start local 1 // org.h2.value.Value v
         0: .line 64
            aload 0 /* this */
            getfield org.h2.value.ValueLong.value:J
            lstore 2 /* x */
        start local 2 // long x
         1: .line 65
            aload 1 /* v */
            checkcast org.h2.value.ValueLong
            getfield org.h2.value.ValueLong.value:J
            lstore 4 /* y */
        start local 4 // long y
         2: .line 66
            lload 2 /* x */
            lload 4 /* y */
            ladd
            lstore 6 /* result */
        start local 6 // long result
         3: .line 71
            lload 2 /* x */
            lload 6 /* result */
            lxor
            lload 4 /* y */
            lload 6 /* result */
            lxor
            land
            lconst_0
            lcmp
            ifge 5
         4: .line 72
            aload 0 /* this */
            invokevirtual org.h2.value.ValueLong.getOverflow:()Lorg/h2/message/DbException;
            athrow
         5: .line 74
      StackMap locals: long long long
      StackMap stack:
            lload 6 /* result */
            invokestatic org.h2.value.ValueLong.get:(J)Lorg/h2/value/ValueLong;
            areturn
        end local 6 // long result
        end local 4 // long y
        end local 2 // long x
        end local 1 // org.h2.value.Value v
        end local 0 // org.h2.value.ValueLong this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lorg/h2/value/ValueLong;
            0    6     1       v  Lorg/h2/value/Value;
            1    6     2       x  J
            2    6     4       y  J
            3    6     6  result  J
    MethodParameters:
      Name  Flags
      v     

  public int getSignum();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.h2.value.ValueLong this
         0: .line 79
            aload 0 /* this */
            getfield org.h2.value.ValueLong.value:J
            invokestatic java.lang.Long.signum:(J)I
            ireturn
        end local 0 // org.h2.value.ValueLong this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/value/ValueLong;

  public org.h2.value.Value negate();
    descriptor: ()Lorg/h2/value/Value;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.h2.value.ValueLong this
         0: .line 84
            aload 0 /* this */
            getfield org.h2.value.ValueLong.value:J
            ldc -9223372036854775808
            lcmp
            ifne 2
         1: .line 85
            aload 0 /* this */
            invokevirtual org.h2.value.ValueLong.getOverflow:()Lorg/h2/message/DbException;
            athrow
         2: .line 87
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.value.ValueLong.value:J
            lneg
            invokestatic org.h2.value.ValueLong.get:(J)Lorg/h2/value/ValueLong;
            areturn
        end local 0 // org.h2.value.ValueLong this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/h2/value/ValueLong;

  private org.h2.message.DbException getOverflow();
    descriptor: ()Lorg/h2/message/DbException;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.h2.value.ValueLong this
         0: .line 91
            sipush 22003
         1: .line 92
            aload 0 /* this */
            getfield org.h2.value.ValueLong.value:J
            invokestatic java.lang.Long.toString:(J)Ljava/lang/String;
         2: .line 91
            invokestatic org.h2.message.DbException.get:(ILjava/lang/String;)Lorg/h2/message/DbException;
            areturn
        end local 0 // org.h2.value.ValueLong this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/h2/value/ValueLong;

  public org.h2.value.Value subtract(org.h2.value.Value);
    descriptor: (Lorg/h2/value/Value;)Lorg/h2/value/Value;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=8, args_size=2
        start local 0 // org.h2.value.ValueLong this
        start local 1 // org.h2.value.Value v
         0: .line 97
            aload 0 /* this */
            getfield org.h2.value.ValueLong.value:J
            lstore 2 /* x */
        start local 2 // long x
         1: .line 98
            aload 1 /* v */
            checkcast org.h2.value.ValueLong
            getfield org.h2.value.ValueLong.value:J
            lstore 4 /* y */
        start local 4 // long y
         2: .line 99
            lload 2 /* x */
            lload 4 /* y */
            lsub
            lstore 6 /* result */
        start local 6 // long result
         3: .line 104
            lload 2 /* x */
            lload 4 /* y */
            lxor
            lload 2 /* x */
            lload 6 /* result */
            lxor
            land
            lconst_0
            lcmp
            ifge 5
         4: .line 105
            aload 0 /* this */
            invokevirtual org.h2.value.ValueLong.getOverflow:()Lorg/h2/message/DbException;
            athrow
         5: .line 107
      StackMap locals: long long long
      StackMap stack:
            lload 6 /* result */
            invokestatic org.h2.value.ValueLong.get:(J)Lorg/h2/value/ValueLong;
            areturn
        end local 6 // long result
        end local 4 // long y
        end local 2 // long x
        end local 1 // org.h2.value.Value v
        end local 0 // org.h2.value.ValueLong this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lorg/h2/value/ValueLong;
            0    6     1       v  Lorg/h2/value/Value;
            1    6     2       x  J
            2    6     4       y  J
            3    6     6  result  J
    MethodParameters:
      Name  Flags
      v     

  public org.h2.value.Value multiply(org.h2.value.Value);
    descriptor: (Lorg/h2/value/Value;)Lorg/h2/value/Value;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=8, args_size=2
        start local 0 // org.h2.value.ValueLong this
        start local 1 // org.h2.value.Value v
         0: .line 112
            aload 0 /* this */
            getfield org.h2.value.ValueLong.value:J
            lstore 2 /* x */
        start local 2 // long x
         1: .line 113
            aload 1 /* v */
            checkcast org.h2.value.ValueLong
            getfield org.h2.value.ValueLong.value:J
            lstore 4 /* y */
        start local 4 // long y
         2: .line 114
            lload 2 /* x */
            lload 4 /* y */
            lmul
            lstore 6 /* result */
        start local 6 // long result
         3: .line 116
            lload 2 /* x */
            invokestatic java.lang.Math.abs:(J)J
            lload 4 /* y */
            invokestatic java.lang.Math.abs:(J)J
            lor
            bipush 31
            lushr
            lconst_0
            lcmp
            ifeq 7
            lload 4 /* y */
            lconst_0
            lcmp
            ifeq 7
         4: .line 118
            lload 6 /* result */
            lload 4 /* y */
            ldiv
            lload 2 /* x */
            lcmp
            ifne 6
         5: .line 120
            lload 2 /* x */
            ldc -9223372036854775808
            lcmp
            ifne 7
            lload 4 /* y */
            ldc -1
            lcmp
            ifne 7
         6: .line 121
      StackMap locals: long long long
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.value.ValueLong.getOverflow:()Lorg/h2/message/DbException;
            athrow
         7: .line 123
      StackMap locals:
      StackMap stack:
            lload 6 /* result */
            invokestatic org.h2.value.ValueLong.get:(J)Lorg/h2/value/ValueLong;
            areturn
        end local 6 // long result
        end local 4 // long y
        end local 2 // long x
        end local 1 // org.h2.value.Value v
        end local 0 // org.h2.value.ValueLong this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lorg/h2/value/ValueLong;
            0    8     1       v  Lorg/h2/value/Value;
            1    8     2       x  J
            2    8     4       y  J
            3    8     6  result  J
    MethodParameters:
      Name  Flags
      v     

  public org.h2.value.Value divide(org.h2.value.Value);
    descriptor: (Lorg/h2/value/Value;)Lorg/h2/value/Value;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=2
        start local 0 // org.h2.value.ValueLong this
        start local 1 // org.h2.value.Value v
         0: .line 128
            aload 1 /* v */
            checkcast org.h2.value.ValueLong
            getfield org.h2.value.ValueLong.value:J
            lstore 2 /* y */
        start local 2 // long y
         1: .line 129
            lload 2 /* y */
            lconst_0
            lcmp
            ifne 3
         2: .line 130
            sipush 22012
            aload 0 /* this */
            invokevirtual org.h2.value.ValueLong.getSQL:()Ljava/lang/String;
            invokestatic org.h2.message.DbException.get:(ILjava/lang/String;)Lorg/h2/message/DbException;
            athrow
         3: .line 132
      StackMap locals: long
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.value.ValueLong.value:J
            lstore 4 /* x */
        start local 4 // long x
         4: .line 133
            lload 4 /* x */
            ldc -9223372036854775808
            lcmp
            ifne 6
            lload 2 /* y */
            ldc -1
            lcmp
            ifne 6
         5: .line 134
            aload 0 /* this */
            invokevirtual org.h2.value.ValueLong.getOverflow:()Lorg/h2/message/DbException;
            athrow
         6: .line 136
      StackMap locals: long
      StackMap stack:
            lload 4 /* x */
            lload 2 /* y */
            ldiv
            invokestatic org.h2.value.ValueLong.get:(J)Lorg/h2/value/ValueLong;
            areturn
        end local 4 // long x
        end local 2 // long y
        end local 1 // org.h2.value.Value v
        end local 0 // org.h2.value.ValueLong this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/h2/value/ValueLong;
            0    7     1     v  Lorg/h2/value/Value;
            1    7     2     y  J
            4    7     4     x  J
    MethodParameters:
      Name  Flags
      v     

  public org.h2.value.Value modulus(org.h2.value.Value);
    descriptor: (Lorg/h2/value/Value;)Lorg/h2/value/Value;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.h2.value.ValueLong this
        start local 1 // org.h2.value.Value v
         0: .line 141
            aload 1 /* v */
            checkcast org.h2.value.ValueLong
            astore 2 /* other */
        start local 2 // org.h2.value.ValueLong other
         1: .line 142
            aload 2 /* other */
            getfield org.h2.value.ValueLong.value:J
            lconst_0
            lcmp
            ifne 3
         2: .line 143
            sipush 22012
            aload 0 /* this */
            invokevirtual org.h2.value.ValueLong.getSQL:()Ljava/lang/String;
            invokestatic org.h2.message.DbException.get:(ILjava/lang/String;)Lorg/h2/message/DbException;
            athrow
         3: .line 145
      StackMap locals: org.h2.value.ValueLong
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.value.ValueLong.value:J
            aload 2 /* other */
            getfield org.h2.value.ValueLong.value:J
            lrem
            invokestatic org.h2.value.ValueLong.get:(J)Lorg/h2/value/ValueLong;
            areturn
        end local 2 // org.h2.value.ValueLong other
        end local 1 // org.h2.value.Value v
        end local 0 // org.h2.value.ValueLong this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/h2/value/ValueLong;
            0    4     1      v  Lorg/h2/value/Value;
            1    4     2  other  Lorg/h2/value/ValueLong;
    MethodParameters:
      Name  Flags
      v     

  public java.lang.StringBuilder getSQL(java.lang.StringBuilder);
    descriptor: (Ljava/lang/StringBuilder;)Ljava/lang/StringBuilder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.h2.value.ValueLong this
        start local 1 // java.lang.StringBuilder builder
         0: .line 150
            aload 1 /* builder */
            aload 0 /* this */
            getfield org.h2.value.ValueLong.value:J
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
            areturn
        end local 1 // java.lang.StringBuilder builder
        end local 0 // org.h2.value.ValueLong this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/h2/value/ValueLong;
            0    1     1  builder  Ljava/lang/StringBuilder;
    MethodParameters:
         Name  Flags
      builder  

  public org.h2.value.TypeInfo getType();
    descriptor: ()Lorg/h2/value/TypeInfo;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.value.ValueLong this
         0: .line 155
            getstatic org.h2.value.TypeInfo.TYPE_LONG:Lorg/h2/value/TypeInfo;
            areturn
        end local 0 // org.h2.value.ValueLong this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/value/ValueLong;

  public int getValueType();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.value.ValueLong this
         0: .line 160
            iconst_5
            ireturn
        end local 0 // org.h2.value.ValueLong this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/value/ValueLong;

  public long getLong();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.h2.value.ValueLong this
         0: .line 165
            aload 0 /* this */
            getfield org.h2.value.ValueLong.value:J
            lreturn
        end local 0 // org.h2.value.ValueLong this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/value/ValueLong;

  public int compareTypeSafe(org.h2.value.Value, org.h2.value.CompareMode);
    descriptor: (Lorg/h2/value/Value;Lorg/h2/value/CompareMode;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.h2.value.ValueLong this
        start local 1 // org.h2.value.Value o
        start local 2 // org.h2.value.CompareMode mode
         0: .line 170
            aload 0 /* this */
            getfield org.h2.value.ValueLong.value:J
            aload 1 /* o */
            checkcast org.h2.value.ValueLong
            getfield org.h2.value.ValueLong.value:J
            invokestatic java.lang.Long.compare:(JJ)I
            ireturn
        end local 2 // org.h2.value.CompareMode mode
        end local 1 // org.h2.value.Value o
        end local 0 // org.h2.value.ValueLong this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/value/ValueLong;
            0    1     1     o  Lorg/h2/value/Value;
            0    1     2  mode  Lorg/h2/value/CompareMode;
    MethodParameters:
      Name  Flags
      o     
      mode  

  public java.lang.String getString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.h2.value.ValueLong this
         0: .line 175
            aload 0 /* this */
            getfield org.h2.value.ValueLong.value:J
            invokestatic java.lang.Long.toString:(J)Ljava/lang/String;
            areturn
        end local 0 // org.h2.value.ValueLong this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/value/ValueLong;

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // org.h2.value.ValueLong this
         0: .line 180
            aload 0 /* this */
            getfield org.h2.value.ValueLong.value:J
            aload 0 /* this */
            getfield org.h2.value.ValueLong.value:J
            bipush 32
            lshr
            lxor
            l2i
            ireturn
        end local 0 // org.h2.value.ValueLong this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/value/ValueLong;

  public java.lang.Object getObject();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.h2.value.ValueLong this
         0: .line 185
            aload 0 /* this */
            getfield org.h2.value.ValueLong.value:J
            invokestatic java.lang.Long.valueOf:(J)Ljava/lang/Long;
            areturn
        end local 0 // org.h2.value.ValueLong this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/value/ValueLong;

  public void set(java.sql.PreparedStatement, int);
    descriptor: (Ljava/sql/PreparedStatement;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.h2.value.ValueLong this
        start local 1 // java.sql.PreparedStatement prep
        start local 2 // int parameterIndex
         0: .line 191
            aload 1 /* prep */
            iload 2 /* parameterIndex */
            aload 0 /* this */
            getfield org.h2.value.ValueLong.value:J
            invokeinterface java.sql.PreparedStatement.setLong:(IJ)V
         1: .line 192
            return
        end local 2 // int parameterIndex
        end local 1 // java.sql.PreparedStatement prep
        end local 0 // org.h2.value.ValueLong this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0            this  Lorg/h2/value/ValueLong;
            0    2     1            prep  Ljava/sql/PreparedStatement;
            0    2     2  parameterIndex  I
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
                Name  Flags
      prep            
      parameterIndex  

  public static org.h2.value.ValueLong get(long);
    descriptor: (J)Lorg/h2/value/ValueLong;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // long i
         0: .line 201
            lload 0 /* i */
            lconst_0
            lcmp
            iflt 2
            lload 0 /* i */
            ldc 100
            lcmp
            ifge 2
         1: .line 202
            getstatic org.h2.value.ValueLong.STATIC_CACHE:[Lorg/h2/value/ValueLong;
            lload 0 /* i */
            l2i
            aaload
            areturn
         2: .line 204
      StackMap locals:
      StackMap stack:
            new org.h2.value.ValueLong
            dup
            lload 0 /* i */
            invokespecial org.h2.value.ValueLong.<init>:(J)V
            invokestatic org.h2.value.Value.cache:(Lorg/h2/value/Value;)Lorg/h2/value/Value;
            checkcast org.h2.value.ValueLong
            areturn
        end local 0 // long i
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0     i  J
    MethodParameters:
      Name  Flags
      i     

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.h2.value.ValueLong this
        start local 1 // java.lang.Object other
         0: .line 209
            aload 1 /* other */
            instanceof org.h2.value.ValueLong
            ifeq 1
            aload 0 /* this */
            getfield org.h2.value.ValueLong.value:J
            aload 1 /* other */
            checkcast org.h2.value.ValueLong
            getfield org.h2.value.ValueLong.value:J
            lcmp
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // java.lang.Object other
        end local 0 // org.h2.value.ValueLong this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/h2/value/ValueLong;
            0    2     1  other  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      other  
}
SourceFile: "ValueLong.java"