final class org.apache.lucene.geo.Rectangle2D implements org.apache.lucene.geo.Component2D
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: org.apache.lucene.geo.Rectangle2D
  super_class: java.lang.Object
{
  private final double minX;
    descriptor: D
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final double maxX;
    descriptor: D
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final double minY;
    descriptor: D
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final double maxY;
    descriptor: D
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private static double MIN_LON_INCL_QUANTIZE;
    descriptor: D
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC

  private static double MAX_LON_INCL_QUANTIZE;
    descriptor: D
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 230
            getstatic org.apache.lucene.geo.GeoEncodingUtils.MIN_LON_ENCODED:I
            invokestatic org.apache.lucene.geo.GeoEncodingUtils.decodeLongitude:(I)D
            putstatic org.apache.lucene.geo.Rectangle2D.MIN_LON_INCL_QUANTIZE:D
         1: .line 231
            getstatic org.apache.lucene.geo.GeoEncodingUtils.MAX_LON_ENCODED:I
            invokestatic org.apache.lucene.geo.GeoEncodingUtils.decodeLongitude:(I)D
            putstatic org.apache.lucene.geo.Rectangle2D.MAX_LON_INCL_QUANTIZE:D
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private void <init>(double, double, double, double);
    descriptor: (DDDD)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=9, args_size=5
        start local 0 // org.apache.lucene.geo.Rectangle2D this
        start local 1 // double minX
        start local 3 // double maxX
        start local 5 // double minY
        start local 7 // double maxY
         0: .line 42
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 43
            aload 0 /* this */
            dload 1 /* minX */
            putfield org.apache.lucene.geo.Rectangle2D.minX:D
         2: .line 44
            aload 0 /* this */
            dload 3 /* maxX */
            putfield org.apache.lucene.geo.Rectangle2D.maxX:D
         3: .line 45
            aload 0 /* this */
            dload 5 /* minY */
            putfield org.apache.lucene.geo.Rectangle2D.minY:D
         4: .line 46
            aload 0 /* this */
            dload 7 /* maxY */
            putfield org.apache.lucene.geo.Rectangle2D.maxY:D
         5: .line 47
            return
        end local 7 // double maxY
        end local 5 // double minY
        end local 3 // double maxX
        end local 1 // double minX
        end local 0 // org.apache.lucene.geo.Rectangle2D this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/lucene/geo/Rectangle2D;
            0    6     1  minX  D
            0    6     3  maxX  D
            0    6     5  minY  D
            0    6     7  maxY  D
    MethodParameters:
      Name  Flags
      minX  
      maxX  
      minY  
      maxY  

  public double getMinX();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.lucene.geo.Rectangle2D this
         0: .line 51
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.minX:D
            dreturn
        end local 0 // org.apache.lucene.geo.Rectangle2D this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/geo/Rectangle2D;

  public double getMaxX();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.lucene.geo.Rectangle2D this
         0: .line 56
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.maxX:D
            dreturn
        end local 0 // org.apache.lucene.geo.Rectangle2D this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/geo/Rectangle2D;

  public double getMinY();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.lucene.geo.Rectangle2D this
         0: .line 61
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.minY:D
            dreturn
        end local 0 // org.apache.lucene.geo.Rectangle2D this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/geo/Rectangle2D;

  public double getMaxY();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.lucene.geo.Rectangle2D this
         0: .line 66
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.maxY:D
            dreturn
        end local 0 // org.apache.lucene.geo.Rectangle2D this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/geo/Rectangle2D;

  public boolean contains(double, double);
    descriptor: (DD)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=12, locals=5, args_size=3
        start local 0 // org.apache.lucene.geo.Rectangle2D this
        start local 1 // double x
        start local 3 // double y
         0: .line 71
            dload 1 /* x */
            dload 3 /* y */
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.minX:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.maxX:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.minY:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.maxY:D
            invokestatic org.apache.lucene.geo.Component2D.containsPoint:(DDDDDD)Z
            ireturn
        end local 3 // double y
        end local 1 // double x
        end local 0 // org.apache.lucene.geo.Rectangle2D this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/geo/Rectangle2D;
            0    1     1     x  D
            0    1     3     y  D
    MethodParameters:
      Name  Flags
      x     
      y     

  public org.apache.lucene.index.PointValues$Relation relate(double, double, double, double);
    descriptor: (DDDD)Lorg/apache/lucene/index/PointValues$Relation;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=16, locals=9, args_size=5
        start local 0 // org.apache.lucene.geo.Rectangle2D this
        start local 1 // double minX
        start local 3 // double maxX
        start local 5 // double minY
        start local 7 // double maxY
         0: .line 76
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.minX:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.maxX:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.minY:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.maxY:D
            dload 1 /* minX */
            dload 3 /* maxX */
            dload 5 /* minY */
            dload 7 /* maxY */
            invokestatic org.apache.lucene.geo.Component2D.disjoint:(DDDDDDDD)Z
            ifeq 2
         1: .line 77
            getstatic org.apache.lucene.index.PointValues$Relation.CELL_OUTSIDE_QUERY:Lorg/apache/lucene/index/PointValues$Relation;
            areturn
         2: .line 79
      StackMap locals:
      StackMap stack:
            dload 1 /* minX */
            dload 3 /* maxX */
            dload 5 /* minY */
            dload 7 /* maxY */
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.minX:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.maxX:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.minY:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.maxY:D
            invokestatic org.apache.lucene.geo.Component2D.within:(DDDDDDDD)Z
            ifeq 4
         3: .line 80
            getstatic org.apache.lucene.index.PointValues$Relation.CELL_INSIDE_QUERY:Lorg/apache/lucene/index/PointValues$Relation;
            areturn
         4: .line 82
      StackMap locals:
      StackMap stack:
            getstatic org.apache.lucene.index.PointValues$Relation.CELL_CROSSES_QUERY:Lorg/apache/lucene/index/PointValues$Relation;
            areturn
        end local 7 // double maxY
        end local 5 // double minY
        end local 3 // double maxX
        end local 1 // double minX
        end local 0 // org.apache.lucene.geo.Rectangle2D this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/lucene/geo/Rectangle2D;
            0    5     1  minX  D
            0    5     3  maxX  D
            0    5     5  minY  D
            0    5     7  maxY  D
    MethodParameters:
      Name  Flags
      minX  
      maxX  
      minY  
      maxY  

  public boolean intersectsLine(double, double, double, double, double, double, double, double);
    descriptor: (DDDDDDDD)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=16, locals=17, args_size=9
        start local 0 // org.apache.lucene.geo.Rectangle2D this
        start local 1 // double minX
        start local 3 // double maxX
        start local 5 // double minY
        start local 7 // double maxY
        start local 9 // double aX
        start local 11 // double aY
        start local 13 // double bX
        start local 15 // double bY
         0: .line 88
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.minX:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.maxX:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.minY:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.maxY:D
            dload 1 /* minX */
            dload 3 /* maxX */
            dload 5 /* minY */
            dload 7 /* maxY */
            invokestatic org.apache.lucene.geo.Component2D.disjoint:(DDDDDDDD)Z
            ifeq 2
         1: .line 89
            iconst_0
            ireturn
         2: .line 91
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dload 9 /* aX */
            dload 11 /* aY */
            invokevirtual org.apache.lucene.geo.Rectangle2D.contains:(DD)Z
            ifne 3
            aload 0 /* this */
            dload 13 /* bX */
            dload 15 /* bY */
            invokevirtual org.apache.lucene.geo.Rectangle2D.contains:(DD)Z
            ifne 3
            aload 0 /* this */
            dload 9 /* aX */
            dload 11 /* aY */
            dload 13 /* bX */
            dload 15 /* bY */
            invokevirtual org.apache.lucene.geo.Rectangle2D.edgesIntersect:(DDDD)Z
            ifne 3
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         3: iconst_1
            ireturn
        end local 15 // double bY
        end local 13 // double bX
        end local 11 // double aY
        end local 9 // double aX
        end local 7 // double maxY
        end local 5 // double minY
        end local 3 // double maxX
        end local 1 // double minX
        end local 0 // org.apache.lucene.geo.Rectangle2D this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/lucene/geo/Rectangle2D;
            0    4     1  minX  D
            0    4     3  maxX  D
            0    4     5  minY  D
            0    4     7  maxY  D
            0    4     9    aX  D
            0    4    11    aY  D
            0    4    13    bX  D
            0    4    15    bY  D
    MethodParameters:
      Name  Flags
      minX  
      maxX  
      minY  
      maxY  
      aX    
      aY    
      bX    
      bY    

  public boolean intersectsTriangle(double, double, double, double, double, double, double, double, double, double);
    descriptor: (DDDDDDDDDD)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=24, locals=21, args_size=11
        start local 0 // org.apache.lucene.geo.Rectangle2D this
        start local 1 // double minX
        start local 3 // double maxX
        start local 5 // double minY
        start local 7 // double maxY
        start local 9 // double aX
        start local 11 // double aY
        start local 13 // double bX
        start local 15 // double bY
        start local 17 // double cX
        start local 19 // double cY
         0: .line 97
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.minX:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.maxX:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.minY:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.maxY:D
            dload 1 /* minX */
            dload 3 /* maxX */
            dload 5 /* minY */
            dload 7 /* maxY */
            invokestatic org.apache.lucene.geo.Component2D.disjoint:(DDDDDDDD)Z
            ifeq 2
         1: .line 98
            iconst_0
            ireturn
         2: .line 100
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dload 9 /* aX */
            dload 11 /* aY */
            invokevirtual org.apache.lucene.geo.Rectangle2D.contains:(DD)Z
            ifne 8
            aload 0 /* this */
            dload 13 /* bX */
            dload 15 /* bY */
            invokevirtual org.apache.lucene.geo.Rectangle2D.contains:(DD)Z
            ifne 8
            aload 0 /* this */
            dload 17 /* cX */
            dload 19 /* cY */
            invokevirtual org.apache.lucene.geo.Rectangle2D.contains:(DD)Z
            ifne 8
         3: .line 101
            dload 1 /* minX */
            dload 3 /* maxX */
            dload 5 /* minY */
            dload 7 /* maxY */
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.minX:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.minY:D
            dload 9 /* aX */
            dload 11 /* aY */
            dload 13 /* bX */
            dload 15 /* bY */
            dload 17 /* cX */
            dload 19 /* cY */
            invokestatic org.apache.lucene.geo.Component2D.pointInTriangle:(DDDDDDDDDDDD)Z
            ifne 8
         4: .line 102
            aload 0 /* this */
            dload 9 /* aX */
            dload 11 /* aY */
            dload 13 /* bX */
            dload 15 /* bY */
            invokevirtual org.apache.lucene.geo.Rectangle2D.edgesIntersect:(DDDD)Z
            ifne 8
         5: .line 103
            aload 0 /* this */
            dload 13 /* bX */
            dload 15 /* bY */
            dload 17 /* cX */
            dload 19 /* cY */
            invokevirtual org.apache.lucene.geo.Rectangle2D.edgesIntersect:(DDDD)Z
            ifne 8
         6: .line 104
            aload 0 /* this */
            dload 17 /* cX */
            dload 19 /* cY */
            dload 9 /* aX */
            dload 11 /* aY */
            invokevirtual org.apache.lucene.geo.Rectangle2D.edgesIntersect:(DDDD)Z
            ifne 8
         7: .line 100
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         8: iconst_1
            ireturn
        end local 19 // double cY
        end local 17 // double cX
        end local 15 // double bY
        end local 13 // double bX
        end local 11 // double aY
        end local 9 // double aX
        end local 7 // double maxY
        end local 5 // double minY
        end local 3 // double maxX
        end local 1 // double minX
        end local 0 // org.apache.lucene.geo.Rectangle2D this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lorg/apache/lucene/geo/Rectangle2D;
            0    9     1  minX  D
            0    9     3  maxX  D
            0    9     5  minY  D
            0    9     7  maxY  D
            0    9     9    aX  D
            0    9    11    aY  D
            0    9    13    bX  D
            0    9    15    bY  D
            0    9    17    cX  D
            0    9    19    cY  D
    MethodParameters:
      Name  Flags
      minX  
      maxX  
      minY  
      maxY  
      aX    
      aY    
      bX    
      bY    
      cX    
      cY    

  public boolean containsLine(double, double, double, double, double, double, double, double);
    descriptor: (DDDDDDDD)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=16, locals=17, args_size=9
        start local 0 // org.apache.lucene.geo.Rectangle2D this
        start local 1 // double minX
        start local 3 // double maxX
        start local 5 // double minY
        start local 7 // double maxY
        start local 9 // double aX
        start local 11 // double aY
        start local 13 // double bX
        start local 15 // double bY
         0: .line 110
            dload 1 /* minX */
            dload 3 /* maxX */
            dload 5 /* minY */
            dload 7 /* maxY */
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.minX:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.maxX:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.minY:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.maxY:D
            invokestatic org.apache.lucene.geo.Component2D.within:(DDDDDDDD)Z
            ireturn
        end local 15 // double bY
        end local 13 // double bX
        end local 11 // double aY
        end local 9 // double aX
        end local 7 // double maxY
        end local 5 // double minY
        end local 3 // double maxX
        end local 1 // double minX
        end local 0 // org.apache.lucene.geo.Rectangle2D this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/geo/Rectangle2D;
            0    1     1  minX  D
            0    1     3  maxX  D
            0    1     5  minY  D
            0    1     7  maxY  D
            0    1     9    aX  D
            0    1    11    aY  D
            0    1    13    bX  D
            0    1    15    bY  D
    MethodParameters:
      Name  Flags
      minX  
      maxX  
      minY  
      maxY  
      aX    
      aY    
      bX    
      bY    

  public boolean containsTriangle(double, double, double, double, double, double, double, double, double, double);
    descriptor: (DDDDDDDDDD)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=16, locals=21, args_size=11
        start local 0 // org.apache.lucene.geo.Rectangle2D this
        start local 1 // double minX
        start local 3 // double maxX
        start local 5 // double minY
        start local 7 // double maxY
        start local 9 // double aX
        start local 11 // double aY
        start local 13 // double bX
        start local 15 // double bY
        start local 17 // double cX
        start local 19 // double cY
         0: .line 116
            dload 1 /* minX */
            dload 3 /* maxX */
            dload 5 /* minY */
            dload 7 /* maxY */
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.minX:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.maxX:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.minY:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.maxY:D
            invokestatic org.apache.lucene.geo.Component2D.within:(DDDDDDDD)Z
            ireturn
        end local 19 // double cY
        end local 17 // double cX
        end local 15 // double bY
        end local 13 // double bX
        end local 11 // double aY
        end local 9 // double aX
        end local 7 // double maxY
        end local 5 // double minY
        end local 3 // double maxX
        end local 1 // double minX
        end local 0 // org.apache.lucene.geo.Rectangle2D this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/geo/Rectangle2D;
            0    1     1  minX  D
            0    1     3  maxX  D
            0    1     5  minY  D
            0    1     7  maxY  D
            0    1     9    aX  D
            0    1    11    aY  D
            0    1    13    bX  D
            0    1    15    bY  D
            0    1    17    cX  D
            0    1    19    cY  D
    MethodParameters:
      Name  Flags
      minX  
      maxX  
      minY  
      maxY  
      aX    
      aY    
      bX    
      bY    
      cX    
      cY    

  public org.apache.lucene.geo.Component2D$WithinRelation withinPoint(double, double);
    descriptor: (DD)Lorg/apache/lucene/geo/Component2D$WithinRelation;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=5, args_size=3
        start local 0 // org.apache.lucene.geo.Rectangle2D this
        start local 1 // double x
        start local 3 // double y
         0: .line 121
            getstatic org.apache.lucene.geo.Component2D$WithinRelation.DISJOINT:Lorg/apache/lucene/geo/Component2D$WithinRelation;
            areturn
        end local 3 // double y
        end local 1 // double x
        end local 0 // org.apache.lucene.geo.Rectangle2D this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/geo/Rectangle2D;
            0    1     1     x  D
            0    1     3     y  D
    MethodParameters:
      Name  Flags
      x     
      y     

  public org.apache.lucene.geo.Component2D$WithinRelation withinLine(double, double, double, double, double, double, boolean, double, double);
    descriptor: (DDDDDDZDD)Lorg/apache/lucene/geo/Component2D$WithinRelation;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=16, locals=18, args_size=10
        start local 0 // org.apache.lucene.geo.Rectangle2D this
        start local 1 // double minX
        start local 3 // double maxX
        start local 5 // double minY
        start local 7 // double maxY
        start local 9 // double aX
        start local 11 // double aY
        start local 13 // boolean ab
        start local 14 // double bX
        start local 16 // double bY
         0: .line 127
            iload 13 /* ab */
            ifeq 3
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.minX:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.maxX:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.minY:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.maxY:D
            dload 1 /* minX */
            dload 3 /* maxX */
            dload 5 /* minY */
            dload 7 /* maxY */
            invokestatic org.apache.lucene.geo.Component2D.disjoint:(DDDDDDDD)Z
            ifne 3
         1: .line 128
            aload 0 /* this */
            dload 9 /* aX */
            dload 11 /* aY */
            dload 14 /* bX */
            dload 16 /* bY */
            invokevirtual org.apache.lucene.geo.Rectangle2D.edgesIntersect:(DDDD)Z
            ifeq 3
         2: .line 129
            getstatic org.apache.lucene.geo.Component2D$WithinRelation.NOTWITHIN:Lorg/apache/lucene/geo/Component2D$WithinRelation;
            areturn
         3: .line 131
      StackMap locals:
      StackMap stack:
            getstatic org.apache.lucene.geo.Component2D$WithinRelation.DISJOINT:Lorg/apache/lucene/geo/Component2D$WithinRelation;
            areturn
        end local 16 // double bY
        end local 14 // double bX
        end local 13 // boolean ab
        end local 11 // double aY
        end local 9 // double aX
        end local 7 // double maxY
        end local 5 // double minY
        end local 3 // double maxX
        end local 1 // double minX
        end local 0 // org.apache.lucene.geo.Rectangle2D this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/lucene/geo/Rectangle2D;
            0    4     1  minX  D
            0    4     3  maxX  D
            0    4     5  minY  D
            0    4     7  maxY  D
            0    4     9    aX  D
            0    4    11    aY  D
            0    4    13    ab  Z
            0    4    14    bX  D
            0    4    16    bY  D
    MethodParameters:
      Name  Flags
      minX  
      maxX  
      minY  
      maxY  
      aX    
      aY    
      ab    
      bX    
      bY    

  public org.apache.lucene.geo.Component2D$WithinRelation withinTriangle(double, double, double, double, double, double, boolean, double, double, boolean, double, double, boolean);
    descriptor: (DDDDDDZDDZDDZ)Lorg/apache/lucene/geo/Component2D$WithinRelation;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=24, locals=25, args_size=14
        start local 0 // org.apache.lucene.geo.Rectangle2D this
        start local 1 // double minX
        start local 3 // double maxX
        start local 5 // double minY
        start local 7 // double maxY
        start local 9 // double aX
        start local 11 // double aY
        start local 13 // boolean ab
        start local 14 // double bX
        start local 16 // double bY
        start local 18 // boolean bc
        start local 19 // double cX
        start local 21 // double cY
        start local 23 // boolean ca
         0: .line 138
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.minX:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.maxX:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.minY:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.maxY:D
            dload 1 /* minX */
            dload 3 /* maxX */
            dload 5 /* minY */
            dload 7 /* maxY */
            invokestatic org.apache.lucene.geo.Component2D.disjoint:(DDDDDDDD)Z
            ifeq 2
         1: .line 139
            getstatic org.apache.lucene.geo.Component2D$WithinRelation.DISJOINT:Lorg/apache/lucene/geo/Component2D$WithinRelation;
            areturn
         2: .line 143
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dload 9 /* aX */
            dload 11 /* aY */
            invokevirtual org.apache.lucene.geo.Rectangle2D.contains:(DD)Z
            ifne 3
            aload 0 /* this */
            dload 14 /* bX */
            dload 16 /* bY */
            invokevirtual org.apache.lucene.geo.Rectangle2D.contains:(DD)Z
            ifne 3
            aload 0 /* this */
            dload 19 /* cX */
            dload 21 /* cY */
            invokevirtual org.apache.lucene.geo.Rectangle2D.contains:(DD)Z
            ifeq 4
         3: .line 144
      StackMap locals:
      StackMap stack:
            getstatic org.apache.lucene.geo.Component2D$WithinRelation.NOTWITHIN:Lorg/apache/lucene/geo/Component2D$WithinRelation;
            areturn
         4: .line 147
      StackMap locals:
      StackMap stack:
            getstatic org.apache.lucene.geo.Component2D$WithinRelation.DISJOINT:Lorg/apache/lucene/geo/Component2D$WithinRelation;
            astore 24 /* relation */
        start local 24 // org.apache.lucene.geo.Component2D$WithinRelation relation
         5: .line 148
            aload 0 /* this */
            dload 9 /* aX */
            dload 11 /* aY */
            dload 14 /* bX */
            dload 16 /* bY */
            invokevirtual org.apache.lucene.geo.Rectangle2D.edgesIntersect:(DDDD)Z
            ifeq 9
         6: .line 149
            iload 13 /* ab */
            ifeq 8
         7: .line 150
            getstatic org.apache.lucene.geo.Component2D$WithinRelation.NOTWITHIN:Lorg/apache/lucene/geo/Component2D$WithinRelation;
            areturn
         8: .line 152
      StackMap locals: org.apache.lucene.geo.Component2D$WithinRelation
      StackMap stack:
            getstatic org.apache.lucene.geo.Component2D$WithinRelation.CANDIDATE:Lorg/apache/lucene/geo/Component2D$WithinRelation;
            astore 24 /* relation */
         9: .line 155
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dload 14 /* bX */
            dload 16 /* bY */
            dload 19 /* cX */
            dload 21 /* cY */
            invokevirtual org.apache.lucene.geo.Rectangle2D.edgesIntersect:(DDDD)Z
            ifeq 13
        10: .line 156
            iload 18 /* bc */
            ifeq 12
        11: .line 157
            getstatic org.apache.lucene.geo.Component2D$WithinRelation.NOTWITHIN:Lorg/apache/lucene/geo/Component2D$WithinRelation;
            areturn
        12: .line 159
      StackMap locals:
      StackMap stack:
            getstatic org.apache.lucene.geo.Component2D$WithinRelation.CANDIDATE:Lorg/apache/lucene/geo/Component2D$WithinRelation;
            astore 24 /* relation */
        13: .line 163
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dload 19 /* cX */
            dload 21 /* cY */
            dload 9 /* aX */
            dload 11 /* aY */
            invokevirtual org.apache.lucene.geo.Rectangle2D.edgesIntersect:(DDDD)Z
            ifeq 17
        14: .line 164
            iload 23 /* ca */
            ifeq 16
        15: .line 165
            getstatic org.apache.lucene.geo.Component2D$WithinRelation.NOTWITHIN:Lorg/apache/lucene/geo/Component2D$WithinRelation;
            areturn
        16: .line 167
      StackMap locals:
      StackMap stack:
            getstatic org.apache.lucene.geo.Component2D$WithinRelation.CANDIDATE:Lorg/apache/lucene/geo/Component2D$WithinRelation;
            astore 24 /* relation */
        17: .line 172
      StackMap locals:
      StackMap stack:
            aload 24 /* relation */
            getstatic org.apache.lucene.geo.Component2D$WithinRelation.CANDIDATE:Lorg/apache/lucene/geo/Component2D$WithinRelation;
            if_acmpne 19
        18: .line 173
            getstatic org.apache.lucene.geo.Component2D$WithinRelation.CANDIDATE:Lorg/apache/lucene/geo/Component2D$WithinRelation;
            areturn
        19: .line 176
      StackMap locals:
      StackMap stack:
            dload 1 /* minX */
            dload 3 /* maxX */
            dload 5 /* minY */
            dload 7 /* maxY */
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.minX:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.minY:D
            dload 9 /* aX */
            dload 11 /* aY */
            dload 14 /* bX */
            dload 16 /* bY */
            dload 19 /* cX */
            dload 21 /* cY */
            invokestatic org.apache.lucene.geo.Component2D.pointInTriangle:(DDDDDDDDDDDD)Z
            ifeq 21
        20: .line 177
            getstatic org.apache.lucene.geo.Component2D$WithinRelation.CANDIDATE:Lorg/apache/lucene/geo/Component2D$WithinRelation;
            areturn
        21: .line 179
      StackMap locals:
      StackMap stack:
            aload 24 /* relation */
            areturn
        end local 24 // org.apache.lucene.geo.Component2D$WithinRelation relation
        end local 23 // boolean ca
        end local 21 // double cY
        end local 19 // double cX
        end local 18 // boolean bc
        end local 16 // double bY
        end local 14 // double bX
        end local 13 // boolean ab
        end local 11 // double aY
        end local 9 // double aX
        end local 7 // double maxY
        end local 5 // double minY
        end local 3 // double maxX
        end local 1 // double minX
        end local 0 // org.apache.lucene.geo.Rectangle2D this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   22     0      this  Lorg/apache/lucene/geo/Rectangle2D;
            0   22     1      minX  D
            0   22     3      maxX  D
            0   22     5      minY  D
            0   22     7      maxY  D
            0   22     9        aX  D
            0   22    11        aY  D
            0   22    13        ab  Z
            0   22    14        bX  D
            0   22    16        bY  D
            0   22    18        bc  Z
            0   22    19        cX  D
            0   22    21        cY  D
            0   22    23        ca  Z
            5   22    24  relation  Lorg/apache/lucene/geo/Component2D$WithinRelation;
    MethodParameters:
      Name  Flags
      minX  
      maxX  
      minY  
      maxY  
      aX    
      aY    
      ab    
      bX    
      bY    
      bc    
      cX    
      cY    
      ca    

  private boolean edgesIntersect(double, double, double, double);
    descriptor: (DDDD)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=16, locals=9, args_size=5
        start local 0 // org.apache.lucene.geo.Rectangle2D this
        start local 1 // double aX
        start local 3 // double aY
        start local 5 // double bX
        start local 7 // double bY
         0: .line 184
            dload 1 /* aX */
            dload 5 /* bX */
            invokestatic java.lang.Math.max:(DD)D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.minX:D
            dcmpg
            iflt 1
            dload 1 /* aX */
            dload 5 /* bX */
            invokestatic java.lang.Math.min:(DD)D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.maxX:D
            dcmpl
            ifgt 1
            dload 3 /* aY */
            dload 7 /* bY */
            invokestatic java.lang.Math.min:(DD)D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.maxY:D
            dcmpl
            ifgt 1
            dload 3 /* aY */
            dload 7 /* bY */
            invokestatic java.lang.Math.max:(DD)D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.minY:D
            dcmpg
            ifge 2
         1: .line 185
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         2: .line 187
      StackMap locals:
      StackMap stack:
            dload 1 /* aX */
            dload 3 /* aY */
            dload 5 /* bX */
            dload 7 /* bY */
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.minX:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.maxY:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.maxX:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.maxY:D
            invokestatic org.apache.lucene.geo.GeoUtils.lineCrossesLineWithBoundary:(DDDDDDDD)Z
            ifne 7
         3: .line 188
            dload 1 /* aX */
            dload 3 /* aY */
            dload 5 /* bX */
            dload 7 /* bY */
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.maxX:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.maxY:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.maxX:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.minY:D
            invokestatic org.apache.lucene.geo.GeoUtils.lineCrossesLineWithBoundary:(DDDDDDDD)Z
            ifne 7
         4: .line 189
            dload 1 /* aX */
            dload 3 /* aY */
            dload 5 /* bX */
            dload 7 /* bY */
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.maxX:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.minY:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.minX:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.minY:D
            invokestatic org.apache.lucene.geo.GeoUtils.lineCrossesLineWithBoundary:(DDDDDDDD)Z
            ifne 7
         5: .line 190
            dload 1 /* aX */
            dload 3 /* aY */
            dload 5 /* bX */
            dload 7 /* bY */
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.minX:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.minY:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.minX:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.maxY:D
            invokestatic org.apache.lucene.geo.GeoUtils.lineCrossesLineWithBoundary:(DDDDDDDD)Z
            ifne 7
         6: .line 187
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         7: iconst_1
            ireturn
        end local 7 // double bY
        end local 5 // double bX
        end local 3 // double aY
        end local 1 // double aX
        end local 0 // org.apache.lucene.geo.Rectangle2D this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/apache/lucene/geo/Rectangle2D;
            0    8     1    aX  D
            0    8     3    aY  D
            0    8     5    bX  D
            0    8     7    bY  D
    MethodParameters:
      Name  Flags
      aX    
      aY    
      bX    
      bY    

  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.apache.lucene.geo.Rectangle2D this
        start local 1 // java.lang.Object o
         0: .line 195
            aload 0 /* this */
            aload 1 /* o */
            if_acmpne 1
            iconst_1
            ireturn
         1: .line 196
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            instanceof org.apache.lucene.geo.Rectangle2D
            ifne 2
            iconst_0
            ireturn
         2: .line 197
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            checkcast org.apache.lucene.geo.Rectangle2D
            astore 2 /* that */
        start local 2 // org.apache.lucene.geo.Rectangle2D that
         3: .line 198
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.minX:D
            aload 2 /* that */
            getfield org.apache.lucene.geo.Rectangle2D.minX:D
            dcmpl
            ifne 8
         4: .line 199
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.maxX:D
            aload 2 /* that */
            getfield org.apache.lucene.geo.Rectangle2D.maxX:D
            dcmpl
            ifne 8
         5: .line 200
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.minY:D
            aload 2 /* that */
            getfield org.apache.lucene.geo.Rectangle2D.minY:D
            dcmpl
            ifne 8
         6: .line 201
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.maxY:D
            aload 2 /* that */
            getfield org.apache.lucene.geo.Rectangle2D.maxY:D
            dcmpl
            ifne 8
         7: .line 198
            iconst_1
            ireturn
      StackMap locals: org.apache.lucene.geo.Rectangle2D
      StackMap stack:
         8: iconst_0
            ireturn
        end local 2 // org.apache.lucene.geo.Rectangle2D that
        end local 1 // java.lang.Object o
        end local 0 // org.apache.lucene.geo.Rectangle2D this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lorg/apache/lucene/geo/Rectangle2D;
            0    9     1     o  Ljava/lang/Object;
            3    9     2  that  Lorg/apache/lucene/geo/Rectangle2D;
    MethodParameters:
      Name  Flags
      o     

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // org.apache.lucene.geo.Rectangle2D this
         0: .line 206
            iconst_4
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.minX:D
            invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
            aastore
            dup
            iconst_1
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.maxX:D
            invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
            aastore
            dup
            iconst_2
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.minY:D
            invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
            aastore
            dup
            iconst_3
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.maxY:D
            invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
            aastore
            invokestatic java.util.Objects.hash:([Ljava/lang/Object;)I
            istore 1 /* result */
        start local 1 // int result
         1: .line 207
            iload 1 /* result */
            ireturn
        end local 1 // int result
        end local 0 // org.apache.lucene.geo.Rectangle2D this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/apache/lucene/geo/Rectangle2D;
            1    2     1  result  I

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.apache.lucene.geo.Rectangle2D this
         0: .line 212
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 1 /* sb */
        start local 1 // java.lang.StringBuilder sb
         1: .line 213
            aload 1 /* sb */
            ldc "XYRectangle(x="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         2: .line 214
            aload 1 /* sb */
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.minX:D
            invokevirtual java.lang.StringBuilder.append:(D)Ljava/lang/StringBuilder;
            pop
         3: .line 215
            aload 1 /* sb */
            ldc " TO "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         4: .line 216
            aload 1 /* sb */
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.maxX:D
            invokevirtual java.lang.StringBuilder.append:(D)Ljava/lang/StringBuilder;
            pop
         5: .line 217
            aload 1 /* sb */
            ldc " y="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         6: .line 218
            aload 1 /* sb */
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.minY:D
            invokevirtual java.lang.StringBuilder.append:(D)Ljava/lang/StringBuilder;
            pop
         7: .line 219
            aload 1 /* sb */
            ldc " TO "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         8: .line 220
            aload 1 /* sb */
            aload 0 /* this */
            getfield org.apache.lucene.geo.Rectangle2D.maxY:D
            invokevirtual java.lang.StringBuilder.append:(D)Ljava/lang/StringBuilder;
            pop
         9: .line 221
            aload 1 /* sb */
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        10: .line 222
            aload 1 /* sb */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 1 // java.lang.StringBuilder sb
        end local 0 // org.apache.lucene.geo.Rectangle2D this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lorg/apache/lucene/geo/Rectangle2D;
            1   11     1    sb  Ljava/lang/StringBuilder;

  static org.apache.lucene.geo.Component2D create(org.apache.lucene.geo.XYRectangle);
    descriptor: (Lorg/apache/lucene/geo/XYRectangle;)Lorg/apache/lucene/geo/Component2D;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=10, locals=1, args_size=1
        start local 0 // org.apache.lucene.geo.XYRectangle rectangle
         0: .line 227
            new org.apache.lucene.geo.Rectangle2D
            dup
            aload 0 /* rectangle */
            getfield org.apache.lucene.geo.XYRectangle.minX:F
            f2d
            aload 0 /* rectangle */
            getfield org.apache.lucene.geo.XYRectangle.maxX:F
            f2d
            aload 0 /* rectangle */
            getfield org.apache.lucene.geo.XYRectangle.minY:F
            f2d
            aload 0 /* rectangle */
            getfield org.apache.lucene.geo.XYRectangle.maxY:F
            f2d
            invokespecial org.apache.lucene.geo.Rectangle2D.<init>:(DDDD)V
            areturn
        end local 0 // org.apache.lucene.geo.XYRectangle rectangle
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0  rectangle  Lorg/apache/lucene/geo/XYRectangle;
    MethodParameters:
           Name  Flags
      rectangle  

  static org.apache.lucene.geo.Component2D create(org.apache.lucene.geo.Rectangle);
    descriptor: (Lorg/apache/lucene/geo/Rectangle;)Lorg/apache/lucene/geo/Component2D;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=12, locals=10, args_size=1
        start local 0 // org.apache.lucene.geo.Rectangle rectangle
         0: .line 236
            aload 0 /* rectangle */
            getfield org.apache.lucene.geo.Rectangle.minLat:D
            invokestatic org.apache.lucene.geo.GeoEncodingUtils.encodeLatitudeCeil:(D)I
            invokestatic org.apache.lucene.geo.GeoEncodingUtils.decodeLatitude:(I)D
            dstore 1 /* qMinLat */
        start local 1 // double qMinLat
         1: .line 237
            aload 0 /* rectangle */
            getfield org.apache.lucene.geo.Rectangle.maxLat:D
            invokestatic org.apache.lucene.geo.GeoEncodingUtils.encodeLatitude:(D)I
            invokestatic org.apache.lucene.geo.GeoEncodingUtils.decodeLatitude:(I)D
            dstore 3 /* qMaxLat */
        start local 3 // double qMaxLat
         2: .line 238
            aload 0 /* rectangle */
            getfield org.apache.lucene.geo.Rectangle.minLon:D
            invokestatic org.apache.lucene.geo.GeoEncodingUtils.encodeLongitudeCeil:(D)I
            invokestatic org.apache.lucene.geo.GeoEncodingUtils.decodeLongitude:(I)D
            dstore 5 /* qMinLon */
        start local 5 // double qMinLon
         3: .line 239
            aload 0 /* rectangle */
            getfield org.apache.lucene.geo.Rectangle.maxLon:D
            invokestatic org.apache.lucene.geo.GeoEncodingUtils.encodeLongitude:(D)I
            invokestatic org.apache.lucene.geo.GeoEncodingUtils.decodeLongitude:(I)D
            dstore 7 /* qMaxLon */
        start local 7 // double qMaxLon
         4: .line 240
            dload 1 /* qMinLat */
            dload 3 /* qMaxLat */
            dcmpl
            ifle 6
         5: .line 243
            dload 3 /* qMaxLat */
            dstore 1 /* qMinLat */
         6: .line 245
      StackMap locals: org.apache.lucene.geo.Rectangle double double double double
      StackMap stack:
            aload 0 /* rectangle */
            getfield org.apache.lucene.geo.Rectangle.minLon:D
            aload 0 /* rectangle */
            getfield org.apache.lucene.geo.Rectangle.maxLon:D
            dcmpl
            ifle 11
         7: .line 247
            iconst_2
            anewarray org.apache.lucene.geo.Component2D
            astore 9 /* components */
        start local 9 // org.apache.lucene.geo.Component2D[] components
         8: .line 248
            aload 9 /* components */
            iconst_0
            new org.apache.lucene.geo.Rectangle2D
            dup
            getstatic org.apache.lucene.geo.Rectangle2D.MIN_LON_INCL_QUANTIZE:D
            dload 7 /* qMaxLon */
            dload 1 /* qMinLat */
            dload 3 /* qMaxLat */
            invokespecial org.apache.lucene.geo.Rectangle2D.<init>:(DDDD)V
            aastore
         9: .line 249
            aload 9 /* components */
            iconst_1
            new org.apache.lucene.geo.Rectangle2D
            dup
            dload 5 /* qMinLon */
            getstatic org.apache.lucene.geo.Rectangle2D.MAX_LON_INCL_QUANTIZE:D
            dload 1 /* qMinLat */
            dload 3 /* qMaxLat */
            invokespecial org.apache.lucene.geo.Rectangle2D.<init>:(DDDD)V
            aastore
        10: .line 250
            aload 9 /* components */
            invokestatic org.apache.lucene.geo.ComponentTree.create:([Lorg/apache/lucene/geo/Component2D;)Lorg/apache/lucene/geo/Component2D;
            areturn
        end local 9 // org.apache.lucene.geo.Component2D[] components
        11: .line 254
      StackMap locals:
      StackMap stack:
            dload 5 /* qMinLon */
            dload 7 /* qMaxLon */
            dcmpl
            ifle 13
        12: .line 255
            dload 7 /* qMaxLon */
            dstore 5 /* qMinLon */
        13: .line 257
      StackMap locals:
      StackMap stack:
            new org.apache.lucene.geo.Rectangle2D
            dup
            dload 5 /* qMinLon */
            dload 7 /* qMaxLon */
            dload 1 /* qMinLat */
            dload 3 /* qMaxLat */
            invokespecial org.apache.lucene.geo.Rectangle2D.<init>:(DDDD)V
            areturn
        end local 7 // double qMaxLon
        end local 5 // double qMinLon
        end local 3 // double qMaxLat
        end local 1 // double qMinLat
        end local 0 // org.apache.lucene.geo.Rectangle rectangle
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   14     0   rectangle  Lorg/apache/lucene/geo/Rectangle;
            1   14     1     qMinLat  D
            2   14     3     qMaxLat  D
            3   14     5     qMinLon  D
            4   14     7     qMaxLon  D
            8   11     9  components  [Lorg/apache/lucene/geo/Component2D;
    MethodParameters:
           Name  Flags
      rectangle  
}
SourceFile: "Rectangle2D.java"
InnerClasses:
  public final WithinRelation = org.apache.lucene.geo.Component2D$WithinRelation of org.apache.lucene.geo.Component2D
  public final Relation = org.apache.lucene.index.PointValues$Relation of org.apache.lucene.index.PointValues