public final class org.bson.types.Decimal128 extends java.lang.Number implements java.lang.Comparable<org.bson.types.Decimal128>
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.bson.types.Decimal128
  super_class: java.lang.Number
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 4570973266503637887

  private static final long INFINITY_MASK;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 8646911284551352320

  private static final long NaN_MASK;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 8935141660703064064

  private static final long SIGN_BIT_MASK;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: -9223372036854775808

  private static final int MIN_EXPONENT;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: -6176

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

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

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

  private static final java.math.BigInteger BIG_INT_TEN;
    descriptor: Ljava/math/BigInteger;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final java.math.BigInteger BIG_INT_ONE;
    descriptor: Ljava/math/BigInteger;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final java.math.BigInteger BIG_INT_ZERO;
    descriptor: Ljava/math/BigInteger;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final java.util.Set<java.lang.String> NaN_STRINGS;
    descriptor: Ljava/util/Set;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    Signature: Ljava/util/Set<Ljava/lang/String;>;

  private static final java.util.Set<java.lang.String> NEGATIVE_NaN_STRINGS;
    descriptor: Ljava/util/Set;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    Signature: Ljava/util/Set<Ljava/lang/String;>;

  private static final java.util.Set<java.lang.String> POSITIVE_INFINITY_STRINGS;
    descriptor: Ljava/util/Set;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    Signature: Ljava/util/Set<Ljava/lang/String;>;

  private static final java.util.Set<java.lang.String> NEGATIVE_INFINITY_STRINGS;
    descriptor: Ljava/util/Set;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    Signature: Ljava/util/Set<Ljava/lang/String;>;

  public static final org.bson.types.Decimal128 POSITIVE_INFINITY;
    descriptor: Lorg/bson/types/Decimal128;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  public static final org.bson.types.Decimal128 NEGATIVE_INFINITY;
    descriptor: Lorg/bson/types/Decimal128;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  public static final org.bson.types.Decimal128 NEGATIVE_NaN;
    descriptor: Lorg/bson/types/Decimal128;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  public static final org.bson.types.Decimal128 NaN;
    descriptor: Lorg/bson/types/Decimal128;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  public static final org.bson.types.Decimal128 POSITIVE_ZERO;
    descriptor: Lorg/bson/types/Decimal128;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  public static final org.bson.types.Decimal128 NEGATIVE_ZERO;
    descriptor: Lorg/bson/types/Decimal128;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

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

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

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=6, locals=0, args_size=0
         0: .line 52
            new java.math.BigInteger
            dup
            ldc "10"
            invokespecial java.math.BigInteger.<init>:(Ljava/lang/String;)V
            putstatic org.bson.types.Decimal128.BIG_INT_TEN:Ljava/math/BigInteger;
         1: .line 53
            new java.math.BigInteger
            dup
            ldc "1"
            invokespecial java.math.BigInteger.<init>:(Ljava/lang/String;)V
            putstatic org.bson.types.Decimal128.BIG_INT_ONE:Ljava/math/BigInteger;
         2: .line 54
            new java.math.BigInteger
            dup
            ldc "0"
            invokespecial java.math.BigInteger.<init>:(Ljava/lang/String;)V
            putstatic org.bson.types.Decimal128.BIG_INT_ZERO:Ljava/math/BigInteger;
         3: .line 56
            new java.util.HashSet
            dup
            ldc "nan"
            invokestatic java.util.Collections.singletonList:(Ljava/lang/Object;)Ljava/util/List;
            invokespecial java.util.HashSet.<init>:(Ljava/util/Collection;)V
            putstatic org.bson.types.Decimal128.NaN_STRINGS:Ljava/util/Set;
         4: .line 57
            new java.util.HashSet
            dup
            ldc "-nan"
            invokestatic java.util.Collections.singletonList:(Ljava/lang/Object;)Ljava/util/List;
            invokespecial java.util.HashSet.<init>:(Ljava/util/Collection;)V
            putstatic org.bson.types.Decimal128.NEGATIVE_NaN_STRINGS:Ljava/util/Set;
         5: .line 58
            new java.util.HashSet
            dup
            iconst_4
            anewarray java.lang.String
            dup
            iconst_0
            ldc "inf"
            aastore
            dup
            iconst_1
            ldc "+inf"
            aastore
            dup
            iconst_2
            ldc "infinity"
            aastore
            dup
            iconst_3
            ldc "+infinity"
            aastore
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
            invokespecial java.util.HashSet.<init>:(Ljava/util/Collection;)V
            putstatic org.bson.types.Decimal128.POSITIVE_INFINITY_STRINGS:Ljava/util/Set;
         6: .line 59
            new java.util.HashSet
            dup
            iconst_2
            anewarray java.lang.String
            dup
            iconst_0
            ldc "-inf"
            aastore
            dup
            iconst_1
            ldc "-infinity"
            aastore
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
            invokespecial java.util.HashSet.<init>:(Ljava/util/Collection;)V
            putstatic org.bson.types.Decimal128.NEGATIVE_INFINITY_STRINGS:Ljava/util/Set;
         7: .line 65
            ldc 8646911284551352320
            lconst_0
            invokestatic org.bson.types.Decimal128.fromIEEE754BIDEncoding:(JJ)Lorg/bson/types/Decimal128;
            putstatic org.bson.types.Decimal128.POSITIVE_INFINITY:Lorg/bson/types/Decimal128;
         8: .line 71
            ldc -576460752303423488
            lconst_0
            invokestatic org.bson.types.Decimal128.fromIEEE754BIDEncoding:(JJ)Lorg/bson/types/Decimal128;
            putstatic org.bson.types.Decimal128.NEGATIVE_INFINITY:Lorg/bson/types/Decimal128;
         9: .line 77
            ldc -288230376151711744
            lconst_0
            invokestatic org.bson.types.Decimal128.fromIEEE754BIDEncoding:(JJ)Lorg/bson/types/Decimal128;
            putstatic org.bson.types.Decimal128.NEGATIVE_NaN:Lorg/bson/types/Decimal128;
        10: .line 83
            ldc 8935141660703064064
            lconst_0
            invokestatic org.bson.types.Decimal128.fromIEEE754BIDEncoding:(JJ)Lorg/bson/types/Decimal128;
            putstatic org.bson.types.Decimal128.NaN:Lorg/bson/types/Decimal128;
        11: .line 89
            ldc 3476778912330022912
            lconst_0
            invokestatic org.bson.types.Decimal128.fromIEEE754BIDEncoding:(JJ)Lorg/bson/types/Decimal128;
            putstatic org.bson.types.Decimal128.POSITIVE_ZERO:Lorg/bson/types/Decimal128;
        12: .line 95
            ldc -5746593124524752896
            lconst_0
            invokestatic org.bson.types.Decimal128.fromIEEE754BIDEncoding:(JJ)Lorg/bson/types/Decimal128;
            putstatic org.bson.types.Decimal128.NEGATIVE_ZERO:Lorg/bson/types/Decimal128;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static org.bson.types.Decimal128 parse(java.lang.String);
    descriptor: (Ljava/lang/String;)Lorg/bson/types/Decimal128;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // java.lang.String value
         0: .line 111
            aload 0 /* value */
            invokevirtual java.lang.String.toLowerCase:()Ljava/lang/String;
            astore 1 /* lowerCasedValue */
        start local 1 // java.lang.String lowerCasedValue
         1: .line 113
            getstatic org.bson.types.Decimal128.NaN_STRINGS:Ljava/util/Set;
            aload 1 /* lowerCasedValue */
            invokeinterface java.util.Set.contains:(Ljava/lang/Object;)Z
            ifeq 3
         2: .line 114
            getstatic org.bson.types.Decimal128.NaN:Lorg/bson/types/Decimal128;
            areturn
         3: .line 116
      StackMap locals: java.lang.String
      StackMap stack:
            getstatic org.bson.types.Decimal128.NEGATIVE_NaN_STRINGS:Ljava/util/Set;
            aload 1 /* lowerCasedValue */
            invokeinterface java.util.Set.contains:(Ljava/lang/Object;)Z
            ifeq 5
         4: .line 117
            getstatic org.bson.types.Decimal128.NEGATIVE_NaN:Lorg/bson/types/Decimal128;
            areturn
         5: .line 119
      StackMap locals:
      StackMap stack:
            getstatic org.bson.types.Decimal128.POSITIVE_INFINITY_STRINGS:Ljava/util/Set;
            aload 1 /* lowerCasedValue */
            invokeinterface java.util.Set.contains:(Ljava/lang/Object;)Z
            ifeq 7
         6: .line 120
            getstatic org.bson.types.Decimal128.POSITIVE_INFINITY:Lorg/bson/types/Decimal128;
            areturn
         7: .line 122
      StackMap locals:
      StackMap stack:
            getstatic org.bson.types.Decimal128.NEGATIVE_INFINITY_STRINGS:Ljava/util/Set;
            aload 1 /* lowerCasedValue */
            invokeinterface java.util.Set.contains:(Ljava/lang/Object;)Z
            ifeq 9
         8: .line 123
            getstatic org.bson.types.Decimal128.NEGATIVE_INFINITY:Lorg/bson/types/Decimal128;
            areturn
         9: .line 125
      StackMap locals:
      StackMap stack:
            new org.bson.types.Decimal128
            dup
            new java.math.BigDecimal
            dup
            aload 0 /* value */
            invokespecial java.math.BigDecimal.<init>:(Ljava/lang/String;)V
            aload 0 /* value */
            iconst_0
            invokevirtual java.lang.String.charAt:(I)C
            bipush 45
            if_icmpne 10
            iconst_1
            goto 11
      StackMap locals: java.lang.String java.lang.String
      StackMap stack: new 9 new 9 java.math.BigDecimal
        10: iconst_0
      StackMap locals: java.lang.String java.lang.String
      StackMap stack: new 9 new 9 java.math.BigDecimal int
        11: invokespecial org.bson.types.Decimal128.<init>:(Ljava/math/BigDecimal;Z)V
            areturn
        end local 1 // java.lang.String lowerCasedValue
        end local 0 // java.lang.String value
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   12     0            value  Ljava/lang/String;
            1   12     1  lowerCasedValue  Ljava/lang/String;
    MethodParameters:
       Name  Flags
      value  final

  public static org.bson.types.Decimal128 fromIEEE754BIDEncoding(long, long);
    descriptor: (JJ)Lorg/bson/types/Decimal128;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=6, locals=4, args_size=2
        start local 0 // long high
        start local 2 // long low
         0: .line 137
            new org.bson.types.Decimal128
            dup
            lload 0 /* high */
            lload 2 /* low */
            invokespecial org.bson.types.Decimal128.<init>:(JJ)V
            areturn
        end local 2 // long low
        end local 0 // long high
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  high  J
            0    1     2   low  J
    MethodParameters:
      Name  Flags
      high  final
      low   final

  public void <init>(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // org.bson.types.Decimal128 this
        start local 1 // long value
         0: .line 146
            aload 0 /* this */
            new java.math.BigDecimal
            dup
            lload 1 /* value */
            getstatic java.math.MathContext.DECIMAL128:Ljava/math/MathContext;
            invokespecial java.math.BigDecimal.<init>:(JLjava/math/MathContext;)V
            invokespecial org.bson.types.Decimal128.<init>:(Ljava/math/BigDecimal;)V
         1: .line 147
            return
        end local 1 // long value
        end local 0 // org.bson.types.Decimal128 this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/bson/types/Decimal128;
            0    2     1  value  J
    MethodParameters:
       Name  Flags
      value  final

  public void <init>(java.math.BigDecimal);
    descriptor: (Ljava/math/BigDecimal;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.bson.types.Decimal128 this
        start local 1 // java.math.BigDecimal value
         0: .line 156
            aload 0 /* this */
            aload 1 /* value */
            aload 1 /* value */
            invokevirtual java.math.BigDecimal.signum:()I
            iconst_m1
            if_icmpne 1
            iconst_1
            goto 2
      StackMap locals: uninitialized-this java.math.BigDecimal
      StackMap stack: uninitialized-this java.math.BigDecimal
         1: iconst_0
      StackMap locals: uninitialized-this java.math.BigDecimal
      StackMap stack: uninitialized-this java.math.BigDecimal int
         2: invokespecial org.bson.types.Decimal128.<init>:(Ljava/math/BigDecimal;Z)V
         3: .line 157
            return
        end local 1 // java.math.BigDecimal value
        end local 0 // org.bson.types.Decimal128 this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/bson/types/Decimal128;
            0    4     1  value  Ljava/math/BigDecimal;
    MethodParameters:
       Name  Flags
      value  final

  private void <init>(long, long);
    descriptor: (JJ)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // org.bson.types.Decimal128 this
        start local 1 // long high
        start local 3 // long low
         0: .line 159
            aload 0 /* this */
            invokespecial java.lang.Number.<init>:()V
         1: .line 160
            aload 0 /* this */
            lload 1 /* high */
            putfield org.bson.types.Decimal128.high:J
         2: .line 161
            aload 0 /* this */
            lload 3 /* low */
            putfield org.bson.types.Decimal128.low:J
         3: .line 162
            return
        end local 3 // long low
        end local 1 // long high
        end local 0 // org.bson.types.Decimal128 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/bson/types/Decimal128;
            0    4     1  high  J
            0    4     3   low  J
    MethodParameters:
      Name  Flags
      high  final
      low   final

  private void <init>(java.math.BigDecimal, boolean);
    descriptor: (Ljava/math/BigDecimal;Z)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=14, args_size=3
        start local 0 // org.bson.types.Decimal128 this
        start local 1 // java.math.BigDecimal initialValue
        start local 2 // boolean isNegative
         0: .line 165
            aload 0 /* this */
            invokespecial java.lang.Number.<init>:()V
         1: .line 166
            lconst_0
            lstore 3 /* localHigh */
        start local 3 // long localHigh
         2: .line 167
            lconst_0
            lstore 5 /* localLow */
        start local 5 // long localLow
         3: .line 169
            aload 0 /* this */
            aload 1 /* initialValue */
            invokevirtual org.bson.types.Decimal128.clampAndRound:(Ljava/math/BigDecimal;)Ljava/math/BigDecimal;
            astore 7 /* value */
        start local 7 // java.math.BigDecimal value
         4: .line 171
            aload 7 /* value */
            invokevirtual java.math.BigDecimal.scale:()I
            ineg
            i2l
            lstore 8 /* exponent */
        start local 8 // long exponent
         5: .line 173
            lload 8 /* exponent */
            ldc -6176
            lcmp
            iflt 6
            lload 8 /* exponent */
            ldc 6111
            lcmp
            ifle 7
         6: .line 174
      StackMap locals: org.bson.types.Decimal128 java.math.BigDecimal int long long java.math.BigDecimal long
      StackMap stack:
            new java.lang.AssertionError
            dup
            new java.lang.StringBuilder
            dup
            ldc "Exponent is out of range for Decimal128 encoding: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            lload 8 /* exponent */
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         7: .line 176
      StackMap locals:
      StackMap stack:
            aload 7 /* value */
            invokevirtual java.math.BigDecimal.unscaledValue:()Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.bitLength:()I
            bipush 113
            if_icmple 9
         8: .line 177
            new java.lang.AssertionError
            dup
            new java.lang.StringBuilder
            dup
            ldc "Unscaled roundedValue is out of range for Decimal128 encoding:"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 7 /* value */
            invokevirtual java.math.BigDecimal.unscaledValue:()Ljava/math/BigInteger;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         9: .line 180
      StackMap locals:
      StackMap stack:
            aload 7 /* value */
            invokevirtual java.math.BigDecimal.unscaledValue:()Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.abs:()Ljava/math/BigInteger;
            astore 10 /* significand */
        start local 10 // java.math.BigInteger significand
        10: .line 181
            aload 10 /* significand */
            invokevirtual java.math.BigInteger.bitLength:()I
            istore 11 /* bitLength */
        start local 11 // int bitLength
        11: .line 183
            iconst_0
            istore 12 /* i */
        start local 12 // int i
        12: goto 16
        13: .line 184
      StackMap locals: java.math.BigInteger int int
      StackMap stack:
            aload 10 /* significand */
            iload 12 /* i */
            invokevirtual java.math.BigInteger.testBit:(I)Z
            ifeq 15
        14: .line 185
            lload 5 /* localLow */
            lconst_1
            iload 12 /* i */
            lshl
            lor
            lstore 5 /* localLow */
        15: .line 183
      StackMap locals:
      StackMap stack:
            iinc 12 /* i */ 1
      StackMap locals:
      StackMap stack:
        16: iload 12 /* i */
            bipush 64
            iload 11 /* bitLength */
            invokestatic java.lang.Math.min:(II)I
            if_icmplt 13
        end local 12 // int i
        17: .line 189
            bipush 64
            istore 12 /* i */
        start local 12 // int i
        18: goto 22
        19: .line 190
      StackMap locals:
      StackMap stack:
            aload 10 /* significand */
            iload 12 /* i */
            invokevirtual java.math.BigInteger.testBit:(I)Z
            ifeq 21
        20: .line 191
            lload 3 /* localHigh */
            lconst_1
            iload 12 /* i */
            bipush 64
            isub
            lshl
            lor
            lstore 3 /* localHigh */
        21: .line 189
      StackMap locals:
      StackMap stack:
            iinc 12 /* i */ 1
      StackMap locals:
      StackMap stack:
        22: iload 12 /* i */
            iload 11 /* bitLength */
            if_icmplt 19
        end local 12 // int i
        23: .line 195
            lload 8 /* exponent */
            ldc 6176
            ladd
            lstore 12 /* biasedExponent */
        start local 12 // long biasedExponent
        24: .line 197
            lload 3 /* localHigh */
            lload 12 /* biasedExponent */
            bipush 49
            lshl
            lor
            lstore 3 /* localHigh */
        25: .line 199
            aload 7 /* value */
            invokevirtual java.math.BigDecimal.signum:()I
            iconst_m1
            if_icmpeq 26
            iload 2 /* isNegative */
            ifeq 27
        26: .line 200
      StackMap locals: org.bson.types.Decimal128 java.math.BigDecimal int long long java.math.BigDecimal long java.math.BigInteger int long
      StackMap stack:
            lload 3 /* localHigh */
            ldc -9223372036854775808
            lor
            lstore 3 /* localHigh */
        27: .line 203
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            lload 3 /* localHigh */
            putfield org.bson.types.Decimal128.high:J
        28: .line 204
            aload 0 /* this */
            lload 5 /* localLow */
            putfield org.bson.types.Decimal128.low:J
        29: .line 205
            return
        end local 12 // long biasedExponent
        end local 11 // int bitLength
        end local 10 // java.math.BigInteger significand
        end local 8 // long exponent
        end local 7 // java.math.BigDecimal value
        end local 5 // long localLow
        end local 3 // long localHigh
        end local 2 // boolean isNegative
        end local 1 // java.math.BigDecimal initialValue
        end local 0 // org.bson.types.Decimal128 this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   30     0            this  Lorg/bson/types/Decimal128;
            0   30     1    initialValue  Ljava/math/BigDecimal;
            0   30     2      isNegative  Z
            2   30     3       localHigh  J
            3   30     5        localLow  J
            4   30     7           value  Ljava/math/BigDecimal;
            5   30     8        exponent  J
           10   30    10     significand  Ljava/math/BigInteger;
           11   30    11       bitLength  I
           12   17    12               i  I
           18   23    12               i  I
           24   30    12  biasedExponent  J
    MethodParameters:
              Name  Flags
      initialValue  final
      isNegative    final

  private java.math.BigDecimal clampAndRound(java.math.BigDecimal);
    descriptor: (Ljava/math/BigDecimal;)Ljava/math/BigDecimal;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=6, args_size=2
        start local 0 // org.bson.types.Decimal128 this
        start local 1 // java.math.BigDecimal initialValue
         0: .line 209
            aload 1 /* initialValue */
            invokevirtual java.math.BigDecimal.scale:()I
            ineg
            sipush 6111
            if_icmple 10
         1: .line 210
            aload 1 /* initialValue */
            invokevirtual java.math.BigDecimal.scale:()I
            ineg
            sipush 6111
            isub
            istore 3 /* diff */
        start local 3 // int diff
         2: .line 211
            aload 1 /* initialValue */
            invokevirtual java.math.BigDecimal.unscaledValue:()Ljava/math/BigInteger;
            getstatic org.bson.types.Decimal128.BIG_INT_ZERO:Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.equals:(Ljava/lang/Object;)Z
            ifeq 5
         3: .line 212
            new java.math.BigDecimal
            dup
            aload 1 /* initialValue */
            invokevirtual java.math.BigDecimal.unscaledValue:()Ljava/math/BigInteger;
            sipush -6111
            invokespecial java.math.BigDecimal.<init>:(Ljava/math/BigInteger;I)V
            astore 2 /* value */
        start local 2 // java.math.BigDecimal value
         4: .line 213
            goto 22
        end local 2 // java.math.BigDecimal value
      StackMap locals: org.bson.types.Decimal128 java.math.BigDecimal top int
      StackMap stack:
         5: iload 3 /* diff */
            aload 1 /* initialValue */
            invokevirtual java.math.BigDecimal.precision:()I
            iadd
            bipush 34
            if_icmple 7
         6: .line 214
            new java.lang.NumberFormatException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Exponent is out of range for Decimal128 encoding of "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* initialValue */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.NumberFormatException.<init>:(Ljava/lang/String;)V
            athrow
         7: .line 216
      StackMap locals:
      StackMap stack:
            getstatic org.bson.types.Decimal128.BIG_INT_TEN:Ljava/math/BigInteger;
            iload 3 /* diff */
            invokevirtual java.math.BigInteger.pow:(I)Ljava/math/BigInteger;
            astore 4 /* multiplier */
        start local 4 // java.math.BigInteger multiplier
         8: .line 217
            new java.math.BigDecimal
            dup
            aload 1 /* initialValue */
            invokevirtual java.math.BigDecimal.unscaledValue:()Ljava/math/BigInteger;
            aload 4 /* multiplier */
            invokevirtual java.math.BigInteger.multiply:(Ljava/math/BigInteger;)Ljava/math/BigInteger;
            aload 1 /* initialValue */
            invokevirtual java.math.BigDecimal.scale:()I
            iload 3 /* diff */
            iadd
            invokespecial java.math.BigDecimal.<init>:(Ljava/math/BigInteger;I)V
            astore 2 /* value */
        end local 4 // java.math.BigInteger multiplier
        end local 3 // int diff
        start local 2 // java.math.BigDecimal value
         9: .line 219
            goto 22
        end local 2 // java.math.BigDecimal value
      StackMap locals: org.bson.types.Decimal128 java.math.BigDecimal
      StackMap stack:
        10: aload 1 /* initialValue */
            invokevirtual java.math.BigDecimal.scale:()I
            ineg
            sipush -6176
            if_icmpge 18
        11: .line 224
            aload 1 /* initialValue */
            invokevirtual java.math.BigDecimal.scale:()I
            sipush -6176
            iadd
            istore 3 /* diff */
        start local 3 // int diff
        12: .line 225
            aload 0 /* this */
            aload 1 /* initialValue */
            iload 3 /* diff */
            invokevirtual org.bson.types.Decimal128.ensureExactRounding:(Ljava/math/BigDecimal;I)I
            istore 4 /* undiscardedPrecision */
        start local 4 // int undiscardedPrecision
        13: .line 226
            iload 4 /* undiscardedPrecision */
            ifne 14
            getstatic org.bson.types.Decimal128.BIG_INT_ONE:Ljava/math/BigInteger;
            goto 15
      StackMap locals: org.bson.types.Decimal128 java.math.BigDecimal top int int
      StackMap stack:
        14: getstatic org.bson.types.Decimal128.BIG_INT_TEN:Ljava/math/BigInteger;
            iload 3 /* diff */
            invokevirtual java.math.BigInteger.pow:(I)Ljava/math/BigInteger;
      StackMap locals:
      StackMap stack: java.math.BigInteger
        15: astore 5 /* divisor */
        start local 5 // java.math.BigInteger divisor
        16: .line 227
            new java.math.BigDecimal
            dup
            aload 1 /* initialValue */
            invokevirtual java.math.BigDecimal.unscaledValue:()Ljava/math/BigInteger;
            aload 5 /* divisor */
            invokevirtual java.math.BigInteger.divide:(Ljava/math/BigInteger;)Ljava/math/BigInteger;
            aload 1 /* initialValue */
            invokevirtual java.math.BigDecimal.scale:()I
            iload 3 /* diff */
            isub
            invokespecial java.math.BigDecimal.<init>:(Ljava/math/BigInteger;I)V
            astore 2 /* value */
        end local 5 // java.math.BigInteger divisor
        end local 4 // int undiscardedPrecision
        end local 3 // int diff
        start local 2 // java.math.BigDecimal value
        17: .line 228
            goto 22
        end local 2 // java.math.BigDecimal value
        18: .line 229
      StackMap locals: org.bson.types.Decimal128 java.math.BigDecimal
      StackMap stack:
            aload 1 /* initialValue */
            getstatic java.math.MathContext.DECIMAL128:Ljava/math/MathContext;
            invokevirtual java.math.BigDecimal.round:(Ljava/math/MathContext;)Ljava/math/BigDecimal;
            astore 2 /* value */
        start local 2 // java.math.BigDecimal value
        19: .line 230
            aload 1 /* initialValue */
            invokevirtual java.math.BigDecimal.precision:()I
            aload 2 /* value */
            invokevirtual java.math.BigDecimal.precision:()I
            isub
            istore 3 /* extraPrecision */
        start local 3 // int extraPrecision
        20: .line 231
            iload 3 /* extraPrecision */
            ifle 22
        21: .line 233
            aload 0 /* this */
            aload 1 /* initialValue */
            iload 3 /* extraPrecision */
            invokevirtual org.bson.types.Decimal128.ensureExactRounding:(Ljava/math/BigDecimal;I)I
            pop
        end local 3 // int extraPrecision
        22: .line 236
      StackMap locals: java.math.BigDecimal
      StackMap stack:
            aload 2 /* value */
            areturn
        end local 2 // java.math.BigDecimal value
        end local 1 // java.math.BigDecimal initialValue
        end local 0 // org.bson.types.Decimal128 this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0   23     0                  this  Lorg/bson/types/Decimal128;
            0   23     1          initialValue  Ljava/math/BigDecimal;
            4    5     2                 value  Ljava/math/BigDecimal;
            9   10     2                 value  Ljava/math/BigDecimal;
           17   18     2                 value  Ljava/math/BigDecimal;
           19   23     2                 value  Ljava/math/BigDecimal;
            2    9     3                  diff  I
            8    9     4            multiplier  Ljava/math/BigInteger;
           12   17     3                  diff  I
           13   17     4  undiscardedPrecision  I
           16   17     5               divisor  Ljava/math/BigInteger;
           20   22     3        extraPrecision  I
    MethodParameters:
              Name  Flags
      initialValue  final

  private int ensureExactRounding(java.math.BigDecimal, int);
    descriptor: (Ljava/math/BigDecimal;I)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=6, args_size=3
        start local 0 // org.bson.types.Decimal128 this
        start local 1 // java.math.BigDecimal initialValue
        start local 2 // int extraPrecision
         0: .line 240
            aload 1 /* initialValue */
            invokevirtual java.math.BigDecimal.unscaledValue:()Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.abs:()Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.toString:()Ljava/lang/String;
            astore 3 /* significand */
        start local 3 // java.lang.String significand
         1: .line 241
            iconst_0
            aload 3 /* significand */
            invokevirtual java.lang.String.length:()I
            iload 2 /* extraPrecision */
            isub
            invokestatic java.lang.Math.max:(II)I
            istore 4 /* undiscardedPrecision */
        start local 4 // int undiscardedPrecision
         2: .line 242
            iload 4 /* undiscardedPrecision */
            istore 5 /* i */
        start local 5 // int i
         3: goto 7
         4: .line 243
      StackMap locals: java.lang.String int int
      StackMap stack:
            aload 3 /* significand */
            iload 5 /* i */
            invokevirtual java.lang.String.charAt:(I)C
            bipush 48
            if_icmpeq 6
         5: .line 244
            new java.lang.NumberFormatException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Conversion to Decimal128 would require inexact rounding of "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* initialValue */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.NumberFormatException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 242
      StackMap locals:
      StackMap stack:
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 5 /* i */
            aload 3 /* significand */
            invokevirtual java.lang.String.length:()I
            if_icmplt 4
        end local 5 // int i
         8: .line 247
            iload 4 /* undiscardedPrecision */
            ireturn
        end local 4 // int undiscardedPrecision
        end local 3 // java.lang.String significand
        end local 2 // int extraPrecision
        end local 1 // java.math.BigDecimal initialValue
        end local 0 // org.bson.types.Decimal128 this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    9     0                  this  Lorg/bson/types/Decimal128;
            0    9     1          initialValue  Ljava/math/BigDecimal;
            0    9     2        extraPrecision  I
            1    9     3           significand  Ljava/lang/String;
            2    9     4  undiscardedPrecision  I
            3    8     5                     i  I
    MethodParameters:
                Name  Flags
      initialValue    final
      extraPrecision  final

  public long getHigh();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.bson.types.Decimal128 this
         0: .line 257
            aload 0 /* this */
            getfield org.bson.types.Decimal128.high:J
            lreturn
        end local 0 // org.bson.types.Decimal128 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bson/types/Decimal128;

  public long getLow();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.bson.types.Decimal128 this
         0: .line 267
            aload 0 /* this */
            getfield org.bson.types.Decimal128.low:J
            lreturn
        end local 0 // org.bson.types.Decimal128 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bson/types/Decimal128;

  public java.math.BigDecimal bigDecimalValue();
    descriptor: ()Ljava/math/BigDecimal;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.bson.types.Decimal128 this
         0: .line 279
            aload 0 /* this */
            invokevirtual org.bson.types.Decimal128.isNaN:()Z
            ifeq 2
         1: .line 280
            new java.lang.ArithmeticException
            dup
            ldc "NaN can not be converted to a BigDecimal"
            invokespecial java.lang.ArithmeticException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 283
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.bson.types.Decimal128.isInfinite:()Z
            ifeq 4
         3: .line 284
            new java.lang.ArithmeticException
            dup
            ldc "Infinity can not be converted to a BigDecimal"
            invokespecial java.lang.ArithmeticException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 287
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.bson.types.Decimal128.bigDecimalValueNoNegativeZeroCheck:()Ljava/math/BigDecimal;
            astore 1 /* bigDecimal */
        start local 1 // java.math.BigDecimal bigDecimal
         5: .line 290
            aload 0 /* this */
            invokevirtual org.bson.types.Decimal128.isNegative:()Z
            ifeq 7
            aload 1 /* bigDecimal */
            invokevirtual java.math.BigDecimal.signum:()I
            ifne 7
         6: .line 291
            new java.lang.ArithmeticException
            dup
            ldc "Negative zero can not be converted to a BigDecimal"
            invokespecial java.lang.ArithmeticException.<init>:(Ljava/lang/String;)V
            athrow
         7: .line 294
      StackMap locals: java.math.BigDecimal
      StackMap stack:
            aload 1 /* bigDecimal */
            areturn
        end local 1 // java.math.BigDecimal bigDecimal
        end local 0 // org.bson.types.Decimal128 this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    8     0        this  Lorg/bson/types/Decimal128;
            5    8     1  bigDecimal  Ljava/math/BigDecimal;

  private boolean hasDifferentSign(java.math.BigDecimal);
    descriptor: (Ljava/math/BigDecimal;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.bson.types.Decimal128 this
        start local 1 // java.math.BigDecimal bigDecimal
         0: .line 299
            aload 0 /* this */
            invokevirtual org.bson.types.Decimal128.isNegative:()Z
            ifeq 1
            aload 1 /* bigDecimal */
            invokevirtual java.math.BigDecimal.signum:()I
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // java.math.BigDecimal bigDecimal
        end local 0 // org.bson.types.Decimal128 this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/bson/types/Decimal128;
            0    2     1  bigDecimal  Ljava/math/BigDecimal;
    MethodParameters:
            Name  Flags
      bigDecimal  final

  private boolean isZero(java.math.BigDecimal);
    descriptor: (Ljava/math/BigDecimal;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.bson.types.Decimal128 this
        start local 1 // java.math.BigDecimal bigDecimal
         0: .line 303
            aload 0 /* this */
            invokevirtual org.bson.types.Decimal128.isNaN:()Z
            ifne 1
            aload 0 /* this */
            invokevirtual org.bson.types.Decimal128.isInfinite:()Z
            ifne 1
            aload 1 /* bigDecimal */
            getstatic java.math.BigDecimal.ZERO:Ljava/math/BigDecimal;
            invokevirtual java.math.BigDecimal.compareTo:(Ljava/math/BigDecimal;)I
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // java.math.BigDecimal bigDecimal
        end local 0 // org.bson.types.Decimal128 this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/bson/types/Decimal128;
            0    2     1  bigDecimal  Ljava/math/BigDecimal;
    MethodParameters:
            Name  Flags
      bigDecimal  final

  private java.math.BigDecimal bigDecimalValueNoNegativeZeroCheck();
    descriptor: ()Ljava/math/BigDecimal;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=2, args_size=1
        start local 0 // org.bson.types.Decimal128 this
         0: .line 307
            aload 0 /* this */
            invokevirtual org.bson.types.Decimal128.getExponent:()I
            ineg
            istore 1 /* scale */
        start local 1 // int scale
         1: .line 309
            aload 0 /* this */
            invokevirtual org.bson.types.Decimal128.twoHighestCombinationBitsAreSet:()Z
            ifeq 3
         2: .line 310
            lconst_0
            iload 1 /* scale */
            invokestatic java.math.BigDecimal.valueOf:(JI)Ljava/math/BigDecimal;
            areturn
         3: .line 313
      StackMap locals: int
      StackMap stack:
            new java.math.BigDecimal
            dup
         4: new java.math.BigInteger
            dup
            aload 0 /* this */
            invokevirtual org.bson.types.Decimal128.isNegative:()Z
            ifeq 5
            iconst_m1
            goto 6
      StackMap locals: org.bson.types.Decimal128 int
      StackMap stack: new 3 new 3 new 4 new 4
         5: iconst_1
      StackMap locals: org.bson.types.Decimal128 int
      StackMap stack: new 3 new 3 new 4 new 4 int
         6: aload 0 /* this */
            invokevirtual org.bson.types.Decimal128.getBytes:()[B
            invokespecial java.math.BigInteger.<init>:(I[B)V
            iload 1 /* scale */
            invokespecial java.math.BigDecimal.<init>:(Ljava/math/BigInteger;I)V
            areturn
        end local 1 // int scale
        end local 0 // org.bson.types.Decimal128 this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lorg/bson/types/Decimal128;
            1    7     1  scale  I

  private byte[] getBytes();
    descriptor: ()[B
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=5, args_size=1
        start local 0 // org.bson.types.Decimal128 this
         0: .line 318
            bipush 15
            newarray 8
            astore 1 /* bytes */
        start local 1 // byte[] bytes
         1: .line 320
            ldc 255
            lstore 2 /* mask */
        start local 2 // long mask
         2: .line 321
            bipush 14
            istore 4 /* i */
        start local 4 // int i
         3: goto 7
         4: .line 322
      StackMap locals: byte[] long int
      StackMap stack:
            aload 1 /* bytes */
            iload 4 /* i */
            aload 0 /* this */
            getfield org.bson.types.Decimal128.low:J
            lload 2 /* mask */
            land
            bipush 14
            iload 4 /* i */
            isub
            iconst_3
            ishl
            lushr
            l2i
            i2b
            bastore
         5: .line 323
            lload 2 /* mask */
            bipush 8
            lshl
            lstore 2 /* mask */
         6: .line 321
            iinc 4 /* i */ -1
      StackMap locals:
      StackMap stack:
         7: iload 4 /* i */
            bipush 7
            if_icmpge 4
        end local 4 // int i
         8: .line 326
            ldc 255
            lstore 2 /* mask */
         9: .line 327
            bipush 6
            istore 4 /* i */
        start local 4 // int i
        10: goto 14
        11: .line 328
      StackMap locals:
      StackMap stack:
            aload 1 /* bytes */
            iload 4 /* i */
            aload 0 /* this */
            getfield org.bson.types.Decimal128.high:J
            lload 2 /* mask */
            land
            bipush 6
            iload 4 /* i */
            isub
            iconst_3
            ishl
            lushr
            l2i
            i2b
            bastore
        12: .line 329
            lload 2 /* mask */
            bipush 8
            lshl
            lstore 2 /* mask */
        13: .line 327
            iinc 4 /* i */ -1
      StackMap locals:
      StackMap stack:
        14: iload 4 /* i */
            iconst_1
            if_icmpge 11
        end local 4 // int i
        15: .line 332
            ldc 281474976710656
            lstore 2 /* mask */
        16: .line 333
            aload 1 /* bytes */
            iconst_0
            aload 0 /* this */
            getfield org.bson.types.Decimal128.high:J
            lload 2 /* mask */
            land
            bipush 48
            lushr
            l2i
            i2b
            bastore
        17: .line 334
            aload 1 /* bytes */
            areturn
        end local 2 // long mask
        end local 1 // byte[] bytes
        end local 0 // org.bson.types.Decimal128 this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   18     0   this  Lorg/bson/types/Decimal128;
            1   18     1  bytes  [B
            2   18     2   mask  J
            3    8     4      i  I
           10   15     4      i  I

  private int getExponent();
    descriptor: ()I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.bson.types.Decimal128 this
         0: .line 338
            aload 0 /* this */
            invokevirtual org.bson.types.Decimal128.twoHighestCombinationBitsAreSet:()Z
            ifeq 2
         1: .line 339
            aload 0 /* this */
            getfield org.bson.types.Decimal128.high:J
            ldc 2305807824841605120
            land
            bipush 47
            lushr
            l2i
            sipush 6176
            isub
            ireturn
         2: .line 341
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.bson.types.Decimal128.high:J
            ldc 9223231299366420480
            land
            bipush 49
            lushr
            l2i
            sipush 6176
            isub
            ireturn
        end local 0 // org.bson.types.Decimal128 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/bson/types/Decimal128;

  private boolean twoHighestCombinationBitsAreSet();
    descriptor: ()Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.bson.types.Decimal128 this
         0: .line 346
            aload 0 /* this */
            getfield org.bson.types.Decimal128.high:J
            ldc 6917529027641081856
            land
            ldc 6917529027641081856
            lcmp
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.bson.types.Decimal128 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/bson/types/Decimal128;

  public boolean isNegative();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.bson.types.Decimal128 this
         0: .line 355
            aload 0 /* this */
            getfield org.bson.types.Decimal128.high:J
            ldc -9223372036854775808
            land
            ldc -9223372036854775808
            lcmp
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.bson.types.Decimal128 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/bson/types/Decimal128;

  public boolean isInfinite();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.bson.types.Decimal128 this
         0: .line 364
            aload 0 /* this */
            getfield org.bson.types.Decimal128.high:J
            ldc 8646911284551352320
            land
            ldc 8646911284551352320
            lcmp
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.bson.types.Decimal128 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/bson/types/Decimal128;

  public boolean isFinite();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.bson.types.Decimal128 this
         0: .line 373
            aload 0 /* this */
            invokevirtual org.bson.types.Decimal128.isInfinite:()Z
            ifeq 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_1
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 0 // org.bson.types.Decimal128 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/bson/types/Decimal128;

  public boolean isNaN();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.bson.types.Decimal128 this
         0: .line 382
            aload 0 /* this */
            getfield org.bson.types.Decimal128.high:J
            ldc 8935141660703064064
            land
            ldc 8935141660703064064
            lcmp
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.bson.types.Decimal128 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/bson/types/Decimal128;

  public int compareTo(org.bson.types.Decimal128);
    descriptor: (Lorg/bson/types/Decimal128;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.bson.types.Decimal128 this
        start local 1 // org.bson.types.Decimal128 o
         0: .line 388
            aload 0 /* this */
            invokevirtual org.bson.types.Decimal128.isNaN:()Z
            ifeq 4
         1: .line 389
            aload 1 /* o */
            invokevirtual org.bson.types.Decimal128.isNaN:()Z
            ifeq 2
            iconst_0
            goto 3
      StackMap locals:
      StackMap stack:
         2: iconst_1
      StackMap locals:
      StackMap stack: int
         3: ireturn
         4: .line 391
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.bson.types.Decimal128.isInfinite:()Z
            ifeq 14
         5: .line 392
            aload 0 /* this */
            invokevirtual org.bson.types.Decimal128.isNegative:()Z
            ifeq 9
         6: .line 393
            aload 1 /* o */
            invokevirtual org.bson.types.Decimal128.isInfinite:()Z
            ifeq 8
            aload 1 /* o */
            invokevirtual org.bson.types.Decimal128.isNegative:()Z
            ifeq 8
         7: .line 394
            iconst_0
            ireturn
         8: .line 396
      StackMap locals:
      StackMap stack:
            iconst_m1
            ireturn
         9: .line 399
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            invokevirtual org.bson.types.Decimal128.isNaN:()Z
            ifeq 11
        10: .line 400
            iconst_m1
            ireturn
        11: .line 401
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            invokevirtual org.bson.types.Decimal128.isInfinite:()Z
            ifeq 13
            aload 1 /* o */
            invokevirtual org.bson.types.Decimal128.isNegative:()Z
            ifne 13
        12: .line 402
            iconst_0
            ireturn
        13: .line 404
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        14: .line 408
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.bson.types.Decimal128.bigDecimalValueNoNegativeZeroCheck:()Ljava/math/BigDecimal;
            astore 2 /* bigDecimal */
        start local 2 // java.math.BigDecimal bigDecimal
        15: .line 409
            aload 1 /* o */
            invokevirtual org.bson.types.Decimal128.bigDecimalValueNoNegativeZeroCheck:()Ljava/math/BigDecimal;
            astore 3 /* otherBigDecimal */
        start local 3 // java.math.BigDecimal otherBigDecimal
        16: .line 411
            aload 0 /* this */
            aload 2 /* bigDecimal */
            invokevirtual org.bson.types.Decimal128.isZero:(Ljava/math/BigDecimal;)Z
            ifeq 23
            aload 1 /* o */
            aload 3 /* otherBigDecimal */
            invokevirtual org.bson.types.Decimal128.isZero:(Ljava/math/BigDecimal;)Z
            ifeq 23
        17: .line 412
            aload 0 /* this */
            aload 2 /* bigDecimal */
            invokevirtual org.bson.types.Decimal128.hasDifferentSign:(Ljava/math/BigDecimal;)Z
            ifeq 21
        18: .line 413
            aload 1 /* o */
            aload 3 /* otherBigDecimal */
            invokevirtual org.bson.types.Decimal128.hasDifferentSign:(Ljava/math/BigDecimal;)Z
            ifeq 20
        19: .line 414
            iconst_0
            ireturn
        20: .line 417
      StackMap locals: java.math.BigDecimal java.math.BigDecimal
      StackMap stack:
            iconst_m1
            ireturn
        21: .line 419
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            aload 3 /* otherBigDecimal */
            invokevirtual org.bson.types.Decimal128.hasDifferentSign:(Ljava/math/BigDecimal;)Z
            ifeq 23
        22: .line 420
            iconst_1
            ireturn
        23: .line 424
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            invokevirtual org.bson.types.Decimal128.isNaN:()Z
            ifeq 25
        24: .line 425
            iconst_m1
            ireturn
        25: .line 426
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            invokevirtual org.bson.types.Decimal128.isInfinite:()Z
            ifeq 29
        26: .line 427
            aload 1 /* o */
            invokevirtual org.bson.types.Decimal128.isNegative:()Z
            ifeq 28
        27: .line 428
            iconst_1
            ireturn
        28: .line 430
      StackMap locals:
      StackMap stack:
            iconst_m1
            ireturn
        29: .line 433
      StackMap locals:
      StackMap stack:
            aload 2 /* bigDecimal */
            aload 3 /* otherBigDecimal */
            invokevirtual java.math.BigDecimal.compareTo:(Ljava/math/BigDecimal;)I
            ireturn
        end local 3 // java.math.BigDecimal otherBigDecimal
        end local 2 // java.math.BigDecimal bigDecimal
        end local 1 // org.bson.types.Decimal128 o
        end local 0 // org.bson.types.Decimal128 this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   30     0             this  Lorg/bson/types/Decimal128;
            0   30     1                o  Lorg/bson/types/Decimal128;
           15   30     2       bigDecimal  Ljava/math/BigDecimal;
           16   30     3  otherBigDecimal  Ljava/math/BigDecimal;
    MethodParameters:
      Name  Flags
      o     final

  public int intValue();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.bson.types.Decimal128 this
         0: .line 450
            aload 0 /* this */
            invokevirtual org.bson.types.Decimal128.doubleValue:()D
            d2i
            ireturn
        end local 0 // org.bson.types.Decimal128 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bson/types/Decimal128;

  public long longValue();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.bson.types.Decimal128 this
         0: .line 466
            aload 0 /* this */
            invokevirtual org.bson.types.Decimal128.doubleValue:()D
            d2l
            lreturn
        end local 0 // org.bson.types.Decimal128 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bson/types/Decimal128;

  public float floatValue();
    descriptor: ()F
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.bson.types.Decimal128 this
         0: .line 481
            aload 0 /* this */
            invokevirtual org.bson.types.Decimal128.doubleValue:()D
            d2f
            freturn
        end local 0 // org.bson.types.Decimal128 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bson/types/Decimal128;

  public double doubleValue();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.bson.types.Decimal128 this
         0: .line 496
            aload 0 /* this */
            invokevirtual org.bson.types.Decimal128.isNaN:()Z
            ifeq 2
         1: .line 497
            ldc NaN
            dreturn
         2: .line 499
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.bson.types.Decimal128.isInfinite:()Z
            ifeq 6
         3: .line 500
            aload 0 /* this */
            invokevirtual org.bson.types.Decimal128.isNegative:()Z
            ifeq 5
         4: .line 501
            ldc -Infinity
            dreturn
         5: .line 503
      StackMap locals:
      StackMap stack:
            ldc Infinity
            dreturn
         6: .line 507
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.bson.types.Decimal128.bigDecimalValueNoNegativeZeroCheck:()Ljava/math/BigDecimal;
            astore 1 /* bigDecimal */
        start local 1 // java.math.BigDecimal bigDecimal
         7: .line 509
            aload 0 /* this */
            aload 1 /* bigDecimal */
            invokevirtual org.bson.types.Decimal128.hasDifferentSign:(Ljava/math/BigDecimal;)Z
            ifeq 9
         8: .line 510
            ldc -0.0
            dreturn
         9: .line 513
      StackMap locals: java.math.BigDecimal
      StackMap stack:
            aload 1 /* bigDecimal */
            invokevirtual java.math.BigDecimal.doubleValue:()D
            dreturn
        end local 1 // java.math.BigDecimal bigDecimal
        end local 0 // org.bson.types.Decimal128 this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   10     0        this  Lorg/bson/types/Decimal128;
            7   10     1  bigDecimal  Ljava/math/BigDecimal;

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.bson.types.Decimal128 this
        start local 1 // java.lang.Object o
         0: .line 532
            aload 0 /* this */
            aload 1 /* o */
            if_acmpne 2
         1: .line 533
            iconst_1
            ireturn
         2: .line 535
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            ifnull 3
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            aload 1 /* o */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            if_acmpeq 4
         3: .line 536
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         4: .line 539
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            checkcast org.bson.types.Decimal128
            astore 2 /* that */
        start local 2 // org.bson.types.Decimal128 that
         5: .line 541
            aload 0 /* this */
            getfield org.bson.types.Decimal128.high:J
            aload 2 /* that */
            getfield org.bson.types.Decimal128.high:J
            lcmp
            ifeq 7
         6: .line 542
            iconst_0
            ireturn
         7: .line 544
      StackMap locals: org.bson.types.Decimal128
      StackMap stack:
            aload 0 /* this */
            getfield org.bson.types.Decimal128.low:J
            aload 2 /* that */
            getfield org.bson.types.Decimal128.low:J
            lcmp
            ifeq 9
         8: .line 545
            iconst_0
            ireturn
         9: .line 548
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 2 // org.bson.types.Decimal128 that
        end local 1 // java.lang.Object o
        end local 0 // org.bson.types.Decimal128 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lorg/bson/types/Decimal128;
            0   10     1     o  Ljava/lang/Object;
            5   10     2  that  Lorg/bson/types/Decimal128;
    MethodParameters:
      Name  Flags
      o     final

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=1
        start local 0 // org.bson.types.Decimal128 this
         0: .line 553
            aload 0 /* this */
            getfield org.bson.types.Decimal128.low:J
            aload 0 /* this */
            getfield org.bson.types.Decimal128.low:J
            bipush 32
            lushr
            lxor
            l2i
            istore 1 /* result */
        start local 1 // int result
         1: .line 554
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield org.bson.types.Decimal128.high:J
            aload 0 /* this */
            getfield org.bson.types.Decimal128.high:J
            bipush 32
            lushr
            lxor
            l2i
            iadd
            istore 1 /* result */
         2: .line 555
            iload 1 /* result */
            ireturn
        end local 1 // int result
        end local 0 // org.bson.types.Decimal128 this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/bson/types/Decimal128;
            1    3     1  result  I

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.bson.types.Decimal128 this
         0: .line 567
            aload 0 /* this */
            invokevirtual org.bson.types.Decimal128.isNaN:()Z
            ifeq 2
         1: .line 568
            ldc "NaN"
            areturn
         2: .line 570
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.bson.types.Decimal128.isInfinite:()Z
            ifeq 6
         3: .line 571
            aload 0 /* this */
            invokevirtual org.bson.types.Decimal128.isNegative:()Z
            ifeq 5
         4: .line 572
            ldc "-Infinity"
            areturn
         5: .line 574
      StackMap locals:
      StackMap stack:
            ldc "Infinity"
            areturn
         6: .line 577
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.bson.types.Decimal128.toStringWithBigDecimal:()Ljava/lang/String;
            areturn
        end local 0 // org.bson.types.Decimal128 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/bson/types/Decimal128;

  private java.lang.String toStringWithBigDecimal();
    descriptor: ()Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=8, args_size=1
        start local 0 // org.bson.types.Decimal128 this
         0: .line 581
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 1 /* buffer */
        start local 1 // java.lang.StringBuilder buffer
         1: .line 583
            aload 0 /* this */
            invokevirtual org.bson.types.Decimal128.bigDecimalValueNoNegativeZeroCheck:()Ljava/math/BigDecimal;
            astore 2 /* bigDecimal */
        start local 2 // java.math.BigDecimal bigDecimal
         2: .line 584
            aload 2 /* bigDecimal */
            invokevirtual java.math.BigDecimal.unscaledValue:()Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.abs:()Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.toString:()Ljava/lang/String;
            astore 3 /* significand */
        start local 3 // java.lang.String significand
         3: .line 586
            aload 0 /* this */
            invokevirtual org.bson.types.Decimal128.isNegative:()Z
            ifeq 5
         4: .line 587
            aload 1 /* buffer */
            bipush 45
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
         5: .line 590
      StackMap locals: java.lang.StringBuilder java.math.BigDecimal java.lang.String
      StackMap stack:
            aload 2 /* bigDecimal */
            invokevirtual java.math.BigDecimal.scale:()I
            ineg
            istore 4 /* exponent */
        start local 4 // int exponent
         6: .line 591
            iload 4 /* exponent */
            aload 3 /* significand */
            invokevirtual java.lang.String.length:()I
            iconst_1
            isub
            iadd
            istore 5 /* adjustedExponent */
        start local 5 // int adjustedExponent
         7: .line 592
            iload 4 /* exponent */
            ifgt 26
            iload 5 /* adjustedExponent */
            bipush -6
            if_icmplt 26
         8: .line 593
            iload 4 /* exponent */
            ifne 11
         9: .line 594
            aload 1 /* buffer */
            aload 3 /* significand */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        10: .line 595
            goto 34
        11: .line 596
      StackMap locals: int int
      StackMap stack:
            iload 4 /* exponent */
            ineg
            aload 3 /* significand */
            invokevirtual java.lang.String.length:()I
            isub
            istore 6 /* pad */
        start local 6 // int pad
        12: .line 597
            iload 6 /* pad */
            iflt 22
        13: .line 598
            aload 1 /* buffer */
            bipush 48
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
        14: .line 599
            aload 1 /* buffer */
            bipush 46
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
        15: .line 600
            iconst_0
            istore 7 /* i */
        start local 7 // int i
        16: goto 19
        17: .line 601
      StackMap locals: int int
      StackMap stack:
            aload 1 /* buffer */
            bipush 48
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
        18: .line 600
            iinc 7 /* i */ 1
      StackMap locals:
      StackMap stack:
        19: iload 7 /* i */
            iload 6 /* pad */
            if_icmplt 17
        end local 7 // int i
        20: .line 603
            aload 1 /* buffer */
            aload 3 /* significand */
            iconst_0
            aload 3 /* significand */
            invokevirtual java.lang.String.length:()I
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/CharSequence;II)Ljava/lang/StringBuilder;
            pop
        21: .line 604
            goto 34
        22: .line 605
      StackMap locals:
      StackMap stack:
            aload 1 /* buffer */
            aload 3 /* significand */
            iconst_0
            iload 6 /* pad */
            ineg
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/CharSequence;II)Ljava/lang/StringBuilder;
            pop
        23: .line 606
            aload 1 /* buffer */
            bipush 46
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
        24: .line 607
            aload 1 /* buffer */
            aload 3 /* significand */
            iload 6 /* pad */
            ineg
            iload 6 /* pad */
            ineg
            iload 4 /* exponent */
            isub
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/CharSequence;II)Ljava/lang/StringBuilder;
            pop
        end local 6 // int pad
        25: .line 610
            goto 34
        26: .line 611
      StackMap locals:
      StackMap stack:
            aload 1 /* buffer */
            aload 3 /* significand */
            iconst_0
            invokevirtual java.lang.String.charAt:(I)C
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
        27: .line 612
            aload 3 /* significand */
            invokevirtual java.lang.String.length:()I
            iconst_1
            if_icmple 30
        28: .line 613
            aload 1 /* buffer */
            bipush 46
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
        29: .line 614
            aload 1 /* buffer */
            aload 3 /* significand */
            iconst_1
            aload 3 /* significand */
            invokevirtual java.lang.String.length:()I
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/CharSequence;II)Ljava/lang/StringBuilder;
            pop
        30: .line 616
      StackMap locals:
      StackMap stack:
            aload 1 /* buffer */
            bipush 69
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
        31: .line 617
            iload 5 /* adjustedExponent */
            ifle 33
        32: .line 618
            aload 1 /* buffer */
            bipush 43
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
        33: .line 620
      StackMap locals:
      StackMap stack:
            aload 1 /* buffer */
            iload 5 /* adjustedExponent */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            pop
        34: .line 622
      StackMap locals:
      StackMap stack:
            aload 1 /* buffer */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 5 // int adjustedExponent
        end local 4 // int exponent
        end local 3 // java.lang.String significand
        end local 2 // java.math.BigDecimal bigDecimal
        end local 1 // java.lang.StringBuilder buffer
        end local 0 // org.bson.types.Decimal128 this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   35     0              this  Lorg/bson/types/Decimal128;
            1   35     1            buffer  Ljava/lang/StringBuilder;
            2   35     2        bigDecimal  Ljava/math/BigDecimal;
            3   35     3       significand  Ljava/lang/String;
            6   35     4          exponent  I
            7   35     5  adjustedExponent  I
           12   25     6               pad  I
           16   20     7                 i  I

  public int compareTo(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.bson.types.Decimal128
            invokevirtual org.bson.types.Decimal128.compareTo:(Lorg/bson/types/Decimal128;)I
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Ljava/lang/Number;Ljava/lang/Comparable<Lorg/bson/types/Decimal128;>;
SourceFile: "Decimal128.java"