final class com.mongodb.client.model.geojson.codecs.GeometryDecoderHelper
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: com.mongodb.client.model.geojson.codecs.GeometryDecoderHelper
  super_class: java.lang.Object
{
  static <T extends com.mongodb.client.model.geojson.Geometry> T decodeGeometry(org.bson.BsonReader, java.lang.Class<T>);
    descriptor: (Lorg/bson/BsonReader;Ljava/lang/Class;)Lcom/mongodb/client/model/geojson/Geometry;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=7, locals=2, args_size=2
        start local 0 // org.bson.BsonReader reader
        start local 1 // java.lang.Class clazz
         0: .line 46
            aload 1 /* clazz */
            ldc Lcom/mongodb/client/model/geojson/Point;
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 2
         1: .line 47
            aload 0 /* reader */
            invokestatic com.mongodb.client.model.geojson.codecs.GeometryDecoderHelper.decodePoint:(Lorg/bson/BsonReader;)Lcom/mongodb/client/model/geojson/Point;
            areturn
         2: .line 48
      StackMap locals:
      StackMap stack:
            aload 1 /* clazz */
            ldc Lcom/mongodb/client/model/geojson/MultiPoint;
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 4
         3: .line 49
            aload 0 /* reader */
            invokestatic com.mongodb.client.model.geojson.codecs.GeometryDecoderHelper.decodeMultiPoint:(Lorg/bson/BsonReader;)Lcom/mongodb/client/model/geojson/MultiPoint;
            areturn
         4: .line 50
      StackMap locals:
      StackMap stack:
            aload 1 /* clazz */
            ldc Lcom/mongodb/client/model/geojson/Polygon;
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 6
         5: .line 51
            aload 0 /* reader */
            invokestatic com.mongodb.client.model.geojson.codecs.GeometryDecoderHelper.decodePolygon:(Lorg/bson/BsonReader;)Lcom/mongodb/client/model/geojson/Polygon;
            areturn
         6: .line 52
      StackMap locals:
      StackMap stack:
            aload 1 /* clazz */
            ldc Lcom/mongodb/client/model/geojson/MultiPolygon;
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
         7: .line 53
            aload 0 /* reader */
            invokestatic com.mongodb.client.model.geojson.codecs.GeometryDecoderHelper.decodeMultiPolygon:(Lorg/bson/BsonReader;)Lcom/mongodb/client/model/geojson/MultiPolygon;
            areturn
         8: .line 54
      StackMap locals:
      StackMap stack:
            aload 1 /* clazz */
            ldc Lcom/mongodb/client/model/geojson/LineString;
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 10
         9: .line 55
            aload 0 /* reader */
            invokestatic com.mongodb.client.model.geojson.codecs.GeometryDecoderHelper.decodeLineString:(Lorg/bson/BsonReader;)Lcom/mongodb/client/model/geojson/LineString;
            areturn
        10: .line 56
      StackMap locals:
      StackMap stack:
            aload 1 /* clazz */
            ldc Lcom/mongodb/client/model/geojson/MultiLineString;
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 12
        11: .line 57
            aload 0 /* reader */
            invokestatic com.mongodb.client.model.geojson.codecs.GeometryDecoderHelper.decodeMultiLineString:(Lorg/bson/BsonReader;)Lcom/mongodb/client/model/geojson/MultiLineString;
            areturn
        12: .line 58
      StackMap locals:
      StackMap stack:
            aload 1 /* clazz */
            ldc Lcom/mongodb/client/model/geojson/GeometryCollection;
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 14
        13: .line 59
            aload 0 /* reader */
            invokestatic com.mongodb.client.model.geojson.codecs.GeometryDecoderHelper.decodeGeometryCollection:(Lorg/bson/BsonReader;)Lcom/mongodb/client/model/geojson/GeometryCollection;
            areturn
        14: .line 60
      StackMap locals:
      StackMap stack:
            aload 1 /* clazz */
            ldc Lcom/mongodb/client/model/geojson/Geometry;
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 16
        15: .line 61
            aload 0 /* reader */
            invokestatic com.mongodb.client.model.geojson.codecs.GeometryDecoderHelper.decodeGeometry:(Lorg/bson/BsonReader;)Lcom/mongodb/client/model/geojson/Geometry;
            areturn
        16: .line 64
      StackMap locals:
      StackMap stack:
            new org.bson.codecs.configuration.CodecConfigurationException
            dup
            ldc "Unsupported Geometry: %s"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 1 /* clazz */
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokespecial org.bson.codecs.configuration.CodecConfigurationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // java.lang.Class clazz
        end local 0 // org.bson.BsonReader reader
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   17     0  reader  Lorg/bson/BsonReader;
            0   17     1   clazz  Ljava/lang/Class<TT;>;
    Signature: <T:Lcom/mongodb/client/model/geojson/Geometry;>(Lorg/bson/BsonReader;Ljava/lang/Class<TT;>;)TT;
    MethodParameters:
        Name  Flags
      reader  final
      clazz   final

  private static com.mongodb.client.model.geojson.Point decodePoint(org.bson.BsonReader);
    descriptor: (Lorg/bson/BsonReader;)Lcom/mongodb/client/model/geojson/Point;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=7, locals=5, args_size=1
        start local 0 // org.bson.BsonReader reader
         0: .line 68
            aconst_null
            astore 1 /* type */
        start local 1 // java.lang.String type
         1: .line 69
            aconst_null
            astore 2 /* position */
        start local 2 // com.mongodb.client.model.geojson.Position position
         2: .line 70
            aconst_null
            astore 3 /* crs */
        start local 3 // com.mongodb.client.model.geojson.CoordinateReferenceSystem crs
         3: .line 71
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readStartDocument:()V
         4: .line 72
            goto 16
         5: .line 73
      StackMap locals: java.lang.String com.mongodb.client.model.geojson.Position com.mongodb.client.model.geojson.CoordinateReferenceSystem
      StackMap stack:
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readName:()Ljava/lang/String;
            astore 4 /* key */
        start local 4 // java.lang.String key
         6: .line 74
            aload 4 /* key */
            ldc "type"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 9
         7: .line 75
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readString:()Ljava/lang/String;
            astore 1 /* type */
         8: .line 76
            goto 16
      StackMap locals: java.lang.String
      StackMap stack:
         9: aload 4 /* key */
            ldc "coordinates"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 12
        10: .line 77
            aload 0 /* reader */
            invokestatic com.mongodb.client.model.geojson.codecs.GeometryDecoderHelper.decodePosition:(Lorg/bson/BsonReader;)Lcom/mongodb/client/model/geojson/Position;
            astore 2 /* position */
        11: .line 78
            goto 16
      StackMap locals:
      StackMap stack:
        12: aload 4 /* key */
            ldc "crs"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 15
        13: .line 79
            aload 0 /* reader */
            invokestatic com.mongodb.client.model.geojson.codecs.GeometryDecoderHelper.decodeCoordinateReferenceSystem:(Lorg/bson/BsonReader;)Lcom/mongodb/client/model/geojson/CoordinateReferenceSystem;
            astore 3 /* crs */
        14: .line 80
            goto 16
        15: .line 81
      StackMap locals:
      StackMap stack:
            new org.bson.codecs.configuration.CodecConfigurationException
            dup
            ldc "Unexpected key '%s' found when decoding a GeoJSON point"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 4 /* key */
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokespecial org.bson.codecs.configuration.CodecConfigurationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 4 // java.lang.String key
        16: .line 72
      StackMap locals:
      StackMap stack:
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readBsonType:()Lorg/bson/BsonType;
            getstatic org.bson.BsonType.END_OF_DOCUMENT:Lorg/bson/BsonType;
            if_acmpne 5
        17: .line 84
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readEndDocument:()V
        18: .line 86
            aload 1 /* type */
            ifnonnull 20
        19: .line 87
            new org.bson.codecs.configuration.CodecConfigurationException
            dup
            ldc "Invalid Point, document contained no type information."
            invokespecial org.bson.codecs.configuration.CodecConfigurationException.<init>:(Ljava/lang/String;)V
            athrow
        20: .line 88
      StackMap locals:
      StackMap stack:
            aload 1 /* type */
            ldc "Point"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 22
        21: .line 89
            new org.bson.codecs.configuration.CodecConfigurationException
            dup
            ldc "Invalid Point, found type '%s'."
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 1 /* type */
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokespecial org.bson.codecs.configuration.CodecConfigurationException.<init>:(Ljava/lang/String;)V
            athrow
        22: .line 90
      StackMap locals:
      StackMap stack:
            aload 2 /* position */
            ifnonnull 24
        23: .line 91
            new org.bson.codecs.configuration.CodecConfigurationException
            dup
            ldc "Invalid Point, missing position coordinates."
            invokespecial org.bson.codecs.configuration.CodecConfigurationException.<init>:(Ljava/lang/String;)V
            athrow
        24: .line 93
      StackMap locals:
      StackMap stack:
            aload 3 /* crs */
            ifnull 25
            new com.mongodb.client.model.geojson.Point
            dup
            aload 3 /* crs */
            aload 2 /* position */
            invokespecial com.mongodb.client.model.geojson.Point.<init>:(Lcom/mongodb/client/model/geojson/CoordinateReferenceSystem;Lcom/mongodb/client/model/geojson/Position;)V
            goto 26
      StackMap locals:
      StackMap stack:
        25: new com.mongodb.client.model.geojson.Point
            dup
            aload 2 /* position */
            invokespecial com.mongodb.client.model.geojson.Point.<init>:(Lcom/mongodb/client/model/geojson/Position;)V
      StackMap locals:
      StackMap stack: com.mongodb.client.model.geojson.Point
        26: areturn
        end local 3 // com.mongodb.client.model.geojson.CoordinateReferenceSystem crs
        end local 2 // com.mongodb.client.model.geojson.Position position
        end local 1 // java.lang.String type
        end local 0 // org.bson.BsonReader reader
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   27     0    reader  Lorg/bson/BsonReader;
            1   27     1      type  Ljava/lang/String;
            2   27     2  position  Lcom/mongodb/client/model/geojson/Position;
            3   27     3       crs  Lcom/mongodb/client/model/geojson/CoordinateReferenceSystem;
            6   16     4       key  Ljava/lang/String;
    MethodParameters:
        Name  Flags
      reader  final

  private static com.mongodb.client.model.geojson.MultiPoint decodeMultiPoint(org.bson.BsonReader);
    descriptor: (Lorg/bson/BsonReader;)Lcom/mongodb/client/model/geojson/MultiPoint;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=7, locals=5, args_size=1
        start local 0 // org.bson.BsonReader reader
         0: .line 97
            aconst_null
            astore 1 /* type */
        start local 1 // java.lang.String type
         1: .line 98
            aconst_null
            astore 2 /* coordinates */
        start local 2 // java.util.List coordinates
         2: .line 99
            aconst_null
            astore 3 /* crs */
        start local 3 // com.mongodb.client.model.geojson.CoordinateReferenceSystem crs
         3: .line 100
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readStartDocument:()V
         4: .line 101
            goto 16
         5: .line 102
      StackMap locals: java.lang.String java.util.List com.mongodb.client.model.geojson.CoordinateReferenceSystem
      StackMap stack:
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readName:()Ljava/lang/String;
            astore 4 /* key */
        start local 4 // java.lang.String key
         6: .line 103
            aload 4 /* key */
            ldc "type"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 9
         7: .line 104
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readString:()Ljava/lang/String;
            astore 1 /* type */
         8: .line 105
            goto 16
      StackMap locals: java.lang.String
      StackMap stack:
         9: aload 4 /* key */
            ldc "coordinates"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 12
        10: .line 106
            aload 0 /* reader */
            invokestatic com.mongodb.client.model.geojson.codecs.GeometryDecoderHelper.decodeCoordinates:(Lorg/bson/BsonReader;)Ljava/util/List;
            astore 2 /* coordinates */
        11: .line 107
            goto 16
      StackMap locals:
      StackMap stack:
        12: aload 4 /* key */
            ldc "crs"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 15
        13: .line 108
            aload 0 /* reader */
            invokestatic com.mongodb.client.model.geojson.codecs.GeometryDecoderHelper.decodeCoordinateReferenceSystem:(Lorg/bson/BsonReader;)Lcom/mongodb/client/model/geojson/CoordinateReferenceSystem;
            astore 3 /* crs */
        14: .line 109
            goto 16
        15: .line 110
      StackMap locals:
      StackMap stack:
            new org.bson.codecs.configuration.CodecConfigurationException
            dup
            ldc "Unexpected key '%s' found when decoding a GeoJSON point"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 4 /* key */
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokespecial org.bson.codecs.configuration.CodecConfigurationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 4 // java.lang.String key
        16: .line 101
      StackMap locals:
      StackMap stack:
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readBsonType:()Lorg/bson/BsonType;
            getstatic org.bson.BsonType.END_OF_DOCUMENT:Lorg/bson/BsonType;
            if_acmpne 5
        17: .line 113
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readEndDocument:()V
        18: .line 115
            aload 1 /* type */
            ifnonnull 20
        19: .line 116
            new org.bson.codecs.configuration.CodecConfigurationException
            dup
            ldc "Invalid MultiPoint, document contained no type information."
            invokespecial org.bson.codecs.configuration.CodecConfigurationException.<init>:(Ljava/lang/String;)V
            athrow
        20: .line 117
      StackMap locals:
      StackMap stack:
            aload 1 /* type */
            ldc "MultiPoint"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 22
        21: .line 118
            new org.bson.codecs.configuration.CodecConfigurationException
            dup
            ldc "Invalid MultiPoint, found type '%s'."
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 1 /* type */
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokespecial org.bson.codecs.configuration.CodecConfigurationException.<init>:(Ljava/lang/String;)V
            athrow
        22: .line 119
      StackMap locals:
      StackMap stack:
            aload 2 /* coordinates */
            ifnonnull 24
        23: .line 120
            new org.bson.codecs.configuration.CodecConfigurationException
            dup
            ldc "Invalid MultiPoint, missing position coordinates."
            invokespecial org.bson.codecs.configuration.CodecConfigurationException.<init>:(Ljava/lang/String;)V
            athrow
        24: .line 122
      StackMap locals:
      StackMap stack:
            aload 3 /* crs */
            ifnull 25
            new com.mongodb.client.model.geojson.MultiPoint
            dup
            aload 3 /* crs */
            aload 2 /* coordinates */
            invokespecial com.mongodb.client.model.geojson.MultiPoint.<init>:(Lcom/mongodb/client/model/geojson/CoordinateReferenceSystem;Ljava/util/List;)V
            goto 26
      StackMap locals:
      StackMap stack:
        25: new com.mongodb.client.model.geojson.MultiPoint
            dup
            aload 2 /* coordinates */
            invokespecial com.mongodb.client.model.geojson.MultiPoint.<init>:(Ljava/util/List;)V
      StackMap locals:
      StackMap stack: com.mongodb.client.model.geojson.MultiPoint
        26: areturn
        end local 3 // com.mongodb.client.model.geojson.CoordinateReferenceSystem crs
        end local 2 // java.util.List coordinates
        end local 1 // java.lang.String type
        end local 0 // org.bson.BsonReader reader
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   27     0       reader  Lorg/bson/BsonReader;
            1   27     1         type  Ljava/lang/String;
            2   27     2  coordinates  Ljava/util/List<Lcom/mongodb/client/model/geojson/Position;>;
            3   27     3          crs  Lcom/mongodb/client/model/geojson/CoordinateReferenceSystem;
            6   16     4          key  Ljava/lang/String;
    MethodParameters:
        Name  Flags
      reader  final

  private static com.mongodb.client.model.geojson.Polygon decodePolygon(org.bson.BsonReader);
    descriptor: (Lorg/bson/BsonReader;)Lcom/mongodb/client/model/geojson/Polygon;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=7, locals=5, args_size=1
        start local 0 // org.bson.BsonReader reader
         0: .line 126
            aconst_null
            astore 1 /* type */
        start local 1 // java.lang.String type
         1: .line 127
            aconst_null
            astore 2 /* coordinates */
        start local 2 // com.mongodb.client.model.geojson.PolygonCoordinates coordinates
         2: .line 128
            aconst_null
            astore 3 /* crs */
        start local 3 // com.mongodb.client.model.geojson.CoordinateReferenceSystem crs
         3: .line 130
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readStartDocument:()V
         4: .line 131
            goto 16
         5: .line 132
      StackMap locals: java.lang.String com.mongodb.client.model.geojson.PolygonCoordinates com.mongodb.client.model.geojson.CoordinateReferenceSystem
      StackMap stack:
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readName:()Ljava/lang/String;
            astore 4 /* key */
        start local 4 // java.lang.String key
         6: .line 133
            aload 4 /* key */
            ldc "type"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 9
         7: .line 134
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readString:()Ljava/lang/String;
            astore 1 /* type */
         8: .line 135
            goto 16
      StackMap locals: java.lang.String
      StackMap stack:
         9: aload 4 /* key */
            ldc "coordinates"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 12
        10: .line 136
            aload 0 /* reader */
            invokestatic com.mongodb.client.model.geojson.codecs.GeometryDecoderHelper.decodePolygonCoordinates:(Lorg/bson/BsonReader;)Lcom/mongodb/client/model/geojson/PolygonCoordinates;
            astore 2 /* coordinates */
        11: .line 137
            goto 16
      StackMap locals:
      StackMap stack:
        12: aload 4 /* key */
            ldc "crs"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 15
        13: .line 138
            aload 0 /* reader */
            invokestatic com.mongodb.client.model.geojson.codecs.GeometryDecoderHelper.decodeCoordinateReferenceSystem:(Lorg/bson/BsonReader;)Lcom/mongodb/client/model/geojson/CoordinateReferenceSystem;
            astore 3 /* crs */
        14: .line 139
            goto 16
        15: .line 140
      StackMap locals:
      StackMap stack:
            new org.bson.codecs.configuration.CodecConfigurationException
            dup
            ldc "Unexpected key '%s' found when decoding a GeoJSON Polygon"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 4 /* key */
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokespecial org.bson.codecs.configuration.CodecConfigurationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 4 // java.lang.String key
        16: .line 131
      StackMap locals:
      StackMap stack:
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readBsonType:()Lorg/bson/BsonType;
            getstatic org.bson.BsonType.END_OF_DOCUMENT:Lorg/bson/BsonType;
            if_acmpne 5
        17: .line 143
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readEndDocument:()V
        18: .line 145
            aload 1 /* type */
            ifnonnull 20
        19: .line 146
            new org.bson.codecs.configuration.CodecConfigurationException
            dup
            ldc "Invalid Polygon, document contained no type information."
            invokespecial org.bson.codecs.configuration.CodecConfigurationException.<init>:(Ljava/lang/String;)V
            athrow
        20: .line 147
      StackMap locals:
      StackMap stack:
            aload 1 /* type */
            ldc "Polygon"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 22
        21: .line 148
            new org.bson.codecs.configuration.CodecConfigurationException
            dup
            ldc "Invalid Polygon, found type '%s'."
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 1 /* type */
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokespecial org.bson.codecs.configuration.CodecConfigurationException.<init>:(Ljava/lang/String;)V
            athrow
        22: .line 149
      StackMap locals:
      StackMap stack:
            aload 2 /* coordinates */
            ifnonnull 24
        23: .line 150
            new org.bson.codecs.configuration.CodecConfigurationException
            dup
            ldc "Invalid Polygon, missing coordinates."
            invokespecial org.bson.codecs.configuration.CodecConfigurationException.<init>:(Ljava/lang/String;)V
            athrow
        24: .line 152
      StackMap locals:
      StackMap stack:
            aload 3 /* crs */
            ifnull 25
            new com.mongodb.client.model.geojson.Polygon
            dup
            aload 3 /* crs */
            aload 2 /* coordinates */
            invokespecial com.mongodb.client.model.geojson.Polygon.<init>:(Lcom/mongodb/client/model/geojson/CoordinateReferenceSystem;Lcom/mongodb/client/model/geojson/PolygonCoordinates;)V
            goto 26
      StackMap locals:
      StackMap stack:
        25: new com.mongodb.client.model.geojson.Polygon
            dup
            aload 2 /* coordinates */
            invokespecial com.mongodb.client.model.geojson.Polygon.<init>:(Lcom/mongodb/client/model/geojson/PolygonCoordinates;)V
      StackMap locals:
      StackMap stack: com.mongodb.client.model.geojson.Polygon
        26: areturn
        end local 3 // com.mongodb.client.model.geojson.CoordinateReferenceSystem crs
        end local 2 // com.mongodb.client.model.geojson.PolygonCoordinates coordinates
        end local 1 // java.lang.String type
        end local 0 // org.bson.BsonReader reader
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   27     0       reader  Lorg/bson/BsonReader;
            1   27     1         type  Ljava/lang/String;
            2   27     2  coordinates  Lcom/mongodb/client/model/geojson/PolygonCoordinates;
            3   27     3          crs  Lcom/mongodb/client/model/geojson/CoordinateReferenceSystem;
            6   16     4          key  Ljava/lang/String;
    MethodParameters:
        Name  Flags
      reader  final

  private static com.mongodb.client.model.geojson.MultiPolygon decodeMultiPolygon(org.bson.BsonReader);
    descriptor: (Lorg/bson/BsonReader;)Lcom/mongodb/client/model/geojson/MultiPolygon;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=7, locals=5, args_size=1
        start local 0 // org.bson.BsonReader reader
         0: .line 156
            aconst_null
            astore 1 /* type */
        start local 1 // java.lang.String type
         1: .line 157
            aconst_null
            astore 2 /* coordinates */
        start local 2 // java.util.List coordinates
         2: .line 158
            aconst_null
            astore 3 /* crs */
        start local 3 // com.mongodb.client.model.geojson.CoordinateReferenceSystem crs
         3: .line 160
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readStartDocument:()V
         4: .line 161
            goto 16
         5: .line 162
      StackMap locals: java.lang.String java.util.List com.mongodb.client.model.geojson.CoordinateReferenceSystem
      StackMap stack:
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readName:()Ljava/lang/String;
            astore 4 /* key */
        start local 4 // java.lang.String key
         6: .line 163
            aload 4 /* key */
            ldc "type"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 9
         7: .line 164
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readString:()Ljava/lang/String;
            astore 1 /* type */
         8: .line 165
            goto 16
      StackMap locals: java.lang.String
      StackMap stack:
         9: aload 4 /* key */
            ldc "coordinates"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 12
        10: .line 166
            aload 0 /* reader */
            invokestatic com.mongodb.client.model.geojson.codecs.GeometryDecoderHelper.decodeMultiPolygonCoordinates:(Lorg/bson/BsonReader;)Ljava/util/List;
            astore 2 /* coordinates */
        11: .line 167
            goto 16
      StackMap locals:
      StackMap stack:
        12: aload 4 /* key */
            ldc "crs"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 15
        13: .line 168
            aload 0 /* reader */
            invokestatic com.mongodb.client.model.geojson.codecs.GeometryDecoderHelper.decodeCoordinateReferenceSystem:(Lorg/bson/BsonReader;)Lcom/mongodb/client/model/geojson/CoordinateReferenceSystem;
            astore 3 /* crs */
        14: .line 169
            goto 16
        15: .line 170
      StackMap locals:
      StackMap stack:
            new org.bson.codecs.configuration.CodecConfigurationException
            dup
            ldc "Unexpected key '%s' found when decoding a GeoJSON Polygon"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 4 /* key */
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokespecial org.bson.codecs.configuration.CodecConfigurationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 4 // java.lang.String key
        16: .line 161
      StackMap locals:
      StackMap stack:
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readBsonType:()Lorg/bson/BsonType;
            getstatic org.bson.BsonType.END_OF_DOCUMENT:Lorg/bson/BsonType;
            if_acmpne 5
        17: .line 173
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readEndDocument:()V
        18: .line 175
            aload 1 /* type */
            ifnonnull 20
        19: .line 176
            new org.bson.codecs.configuration.CodecConfigurationException
            dup
            ldc "Invalid MultiPolygon, document contained no type information."
            invokespecial org.bson.codecs.configuration.CodecConfigurationException.<init>:(Ljava/lang/String;)V
            athrow
        20: .line 177
      StackMap locals:
      StackMap stack:
            aload 1 /* type */
            ldc "MultiPolygon"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 22
        21: .line 178
            new org.bson.codecs.configuration.CodecConfigurationException
            dup
            ldc "Invalid MultiPolygon, found type '%s'."
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 1 /* type */
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokespecial org.bson.codecs.configuration.CodecConfigurationException.<init>:(Ljava/lang/String;)V
            athrow
        22: .line 179
      StackMap locals:
      StackMap stack:
            aload 2 /* coordinates */
            ifnonnull 24
        23: .line 180
            new org.bson.codecs.configuration.CodecConfigurationException
            dup
            ldc "Invalid MultiPolygon, missing coordinates."
            invokespecial org.bson.codecs.configuration.CodecConfigurationException.<init>:(Ljava/lang/String;)V
            athrow
        24: .line 182
      StackMap locals:
      StackMap stack:
            aload 3 /* crs */
            ifnull 25
            new com.mongodb.client.model.geojson.MultiPolygon
            dup
            aload 3 /* crs */
            aload 2 /* coordinates */
            invokespecial com.mongodb.client.model.geojson.MultiPolygon.<init>:(Lcom/mongodb/client/model/geojson/CoordinateReferenceSystem;Ljava/util/List;)V
            goto 26
      StackMap locals:
      StackMap stack:
        25: new com.mongodb.client.model.geojson.MultiPolygon
            dup
            aload 2 /* coordinates */
            invokespecial com.mongodb.client.model.geojson.MultiPolygon.<init>:(Ljava/util/List;)V
      StackMap locals:
      StackMap stack: com.mongodb.client.model.geojson.MultiPolygon
        26: areturn
        end local 3 // com.mongodb.client.model.geojson.CoordinateReferenceSystem crs
        end local 2 // java.util.List coordinates
        end local 1 // java.lang.String type
        end local 0 // org.bson.BsonReader reader
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   27     0       reader  Lorg/bson/BsonReader;
            1   27     1         type  Ljava/lang/String;
            2   27     2  coordinates  Ljava/util/List<Lcom/mongodb/client/model/geojson/PolygonCoordinates;>;
            3   27     3          crs  Lcom/mongodb/client/model/geojson/CoordinateReferenceSystem;
            6   16     4          key  Ljava/lang/String;
    MethodParameters:
        Name  Flags
      reader  final

  private static com.mongodb.client.model.geojson.LineString decodeLineString(org.bson.BsonReader);
    descriptor: (Lorg/bson/BsonReader;)Lcom/mongodb/client/model/geojson/LineString;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=7, locals=5, args_size=1
        start local 0 // org.bson.BsonReader reader
         0: .line 186
            aconst_null
            astore 1 /* type */
        start local 1 // java.lang.String type
         1: .line 187
            aconst_null
            astore 2 /* coordinates */
        start local 2 // java.util.List coordinates
         2: .line 188
            aconst_null
            astore 3 /* crs */
        start local 3 // com.mongodb.client.model.geojson.CoordinateReferenceSystem crs
         3: .line 190
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readStartDocument:()V
         4: .line 191
            goto 16
         5: .line 192
      StackMap locals: java.lang.String java.util.List com.mongodb.client.model.geojson.CoordinateReferenceSystem
      StackMap stack:
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readName:()Ljava/lang/String;
            astore 4 /* key */
        start local 4 // java.lang.String key
         6: .line 193
            aload 4 /* key */
            ldc "type"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 9
         7: .line 194
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readString:()Ljava/lang/String;
            astore 1 /* type */
         8: .line 195
            goto 16
      StackMap locals: java.lang.String
      StackMap stack:
         9: aload 4 /* key */
            ldc "coordinates"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 12
        10: .line 196
            aload 0 /* reader */
            invokestatic com.mongodb.client.model.geojson.codecs.GeometryDecoderHelper.decodeCoordinates:(Lorg/bson/BsonReader;)Ljava/util/List;
            astore 2 /* coordinates */
        11: .line 197
            goto 16
      StackMap locals:
      StackMap stack:
        12: aload 4 /* key */
            ldc "crs"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 15
        13: .line 198
            aload 0 /* reader */
            invokestatic com.mongodb.client.model.geojson.codecs.GeometryDecoderHelper.decodeCoordinateReferenceSystem:(Lorg/bson/BsonReader;)Lcom/mongodb/client/model/geojson/CoordinateReferenceSystem;
            astore 3 /* crs */
        14: .line 199
            goto 16
        15: .line 200
      StackMap locals:
      StackMap stack:
            new org.bson.codecs.configuration.CodecConfigurationException
            dup
            ldc "Unexpected key '%s' found when decoding a GeoJSON Polygon"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 4 /* key */
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokespecial org.bson.codecs.configuration.CodecConfigurationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 4 // java.lang.String key
        16: .line 191
      StackMap locals:
      StackMap stack:
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readBsonType:()Lorg/bson/BsonType;
            getstatic org.bson.BsonType.END_OF_DOCUMENT:Lorg/bson/BsonType;
            if_acmpne 5
        17: .line 203
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readEndDocument:()V
        18: .line 205
            aload 1 /* type */
            ifnonnull 20
        19: .line 206
            new org.bson.codecs.configuration.CodecConfigurationException
            dup
            ldc "Invalid LineString, document contained no type information."
            invokespecial org.bson.codecs.configuration.CodecConfigurationException.<init>:(Ljava/lang/String;)V
            athrow
        20: .line 207
      StackMap locals:
      StackMap stack:
            aload 1 /* type */
            ldc "LineString"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 22
        21: .line 208
            new org.bson.codecs.configuration.CodecConfigurationException
            dup
            ldc "Invalid LineString, found type '%s'."
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 1 /* type */
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokespecial org.bson.codecs.configuration.CodecConfigurationException.<init>:(Ljava/lang/String;)V
            athrow
        22: .line 209
      StackMap locals:
      StackMap stack:
            aload 2 /* coordinates */
            ifnonnull 24
        23: .line 210
            new org.bson.codecs.configuration.CodecConfigurationException
            dup
            ldc "Invalid LineString, missing coordinates."
            invokespecial org.bson.codecs.configuration.CodecConfigurationException.<init>:(Ljava/lang/String;)V
            athrow
        24: .line 212
      StackMap locals:
      StackMap stack:
            aload 3 /* crs */
            ifnull 25
            new com.mongodb.client.model.geojson.LineString
            dup
            aload 3 /* crs */
            aload 2 /* coordinates */
            invokespecial com.mongodb.client.model.geojson.LineString.<init>:(Lcom/mongodb/client/model/geojson/CoordinateReferenceSystem;Ljava/util/List;)V
            goto 26
      StackMap locals:
      StackMap stack:
        25: new com.mongodb.client.model.geojson.LineString
            dup
            aload 2 /* coordinates */
            invokespecial com.mongodb.client.model.geojson.LineString.<init>:(Ljava/util/List;)V
      StackMap locals:
      StackMap stack: com.mongodb.client.model.geojson.LineString
        26: areturn
        end local 3 // com.mongodb.client.model.geojson.CoordinateReferenceSystem crs
        end local 2 // java.util.List coordinates
        end local 1 // java.lang.String type
        end local 0 // org.bson.BsonReader reader
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   27     0       reader  Lorg/bson/BsonReader;
            1   27     1         type  Ljava/lang/String;
            2   27     2  coordinates  Ljava/util/List<Lcom/mongodb/client/model/geojson/Position;>;
            3   27     3          crs  Lcom/mongodb/client/model/geojson/CoordinateReferenceSystem;
            6   16     4          key  Ljava/lang/String;
    MethodParameters:
        Name  Flags
      reader  final

  private static com.mongodb.client.model.geojson.MultiLineString decodeMultiLineString(org.bson.BsonReader);
    descriptor: (Lorg/bson/BsonReader;)Lcom/mongodb/client/model/geojson/MultiLineString;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=7, locals=5, args_size=1
        start local 0 // org.bson.BsonReader reader
         0: .line 216
            aconst_null
            astore 1 /* type */
        start local 1 // java.lang.String type
         1: .line 217
            aconst_null
            astore 2 /* coordinates */
        start local 2 // java.util.List coordinates
         2: .line 218
            aconst_null
            astore 3 /* crs */
        start local 3 // com.mongodb.client.model.geojson.CoordinateReferenceSystem crs
         3: .line 220
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readStartDocument:()V
         4: .line 221
            goto 16
         5: .line 222
      StackMap locals: java.lang.String java.util.List com.mongodb.client.model.geojson.CoordinateReferenceSystem
      StackMap stack:
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readName:()Ljava/lang/String;
            astore 4 /* key */
        start local 4 // java.lang.String key
         6: .line 223
            aload 4 /* key */
            ldc "type"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 9
         7: .line 224
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readString:()Ljava/lang/String;
            astore 1 /* type */
         8: .line 225
            goto 16
      StackMap locals: java.lang.String
      StackMap stack:
         9: aload 4 /* key */
            ldc "coordinates"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 12
        10: .line 226
            aload 0 /* reader */
            invokestatic com.mongodb.client.model.geojson.codecs.GeometryDecoderHelper.decodeMultiCoordinates:(Lorg/bson/BsonReader;)Ljava/util/List;
            astore 2 /* coordinates */
        11: .line 227
            goto 16
      StackMap locals:
      StackMap stack:
        12: aload 4 /* key */
            ldc "crs"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 15
        13: .line 228
            aload 0 /* reader */
            invokestatic com.mongodb.client.model.geojson.codecs.GeometryDecoderHelper.decodeCoordinateReferenceSystem:(Lorg/bson/BsonReader;)Lcom/mongodb/client/model/geojson/CoordinateReferenceSystem;
            astore 3 /* crs */
        14: .line 229
            goto 16
        15: .line 230
      StackMap locals:
      StackMap stack:
            new org.bson.codecs.configuration.CodecConfigurationException
            dup
            ldc "Unexpected key '%s' found when decoding a GeoJSON Polygon"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 4 /* key */
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokespecial org.bson.codecs.configuration.CodecConfigurationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 4 // java.lang.String key
        16: .line 221
      StackMap locals:
      StackMap stack:
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readBsonType:()Lorg/bson/BsonType;
            getstatic org.bson.BsonType.END_OF_DOCUMENT:Lorg/bson/BsonType;
            if_acmpne 5
        17: .line 233
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readEndDocument:()V
        18: .line 235
            aload 1 /* type */
            ifnonnull 20
        19: .line 236
            new org.bson.codecs.configuration.CodecConfigurationException
            dup
            ldc "Invalid MultiLineString, document contained no type information."
            invokespecial org.bson.codecs.configuration.CodecConfigurationException.<init>:(Ljava/lang/String;)V
            athrow
        20: .line 237
      StackMap locals:
      StackMap stack:
            aload 1 /* type */
            ldc "MultiLineString"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 22
        21: .line 238
            new org.bson.codecs.configuration.CodecConfigurationException
            dup
            ldc "Invalid MultiLineString, found type '%s'."
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 1 /* type */
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokespecial org.bson.codecs.configuration.CodecConfigurationException.<init>:(Ljava/lang/String;)V
            athrow
        22: .line 239
      StackMap locals:
      StackMap stack:
            aload 2 /* coordinates */
            ifnonnull 24
        23: .line 240
            new org.bson.codecs.configuration.CodecConfigurationException
            dup
            ldc "Invalid MultiLineString, missing coordinates."
            invokespecial org.bson.codecs.configuration.CodecConfigurationException.<init>:(Ljava/lang/String;)V
            athrow
        24: .line 242
      StackMap locals:
      StackMap stack:
            aload 3 /* crs */
            ifnull 25
            new com.mongodb.client.model.geojson.MultiLineString
            dup
            aload 3 /* crs */
            aload 2 /* coordinates */
            invokespecial com.mongodb.client.model.geojson.MultiLineString.<init>:(Lcom/mongodb/client/model/geojson/CoordinateReferenceSystem;Ljava/util/List;)V
            goto 26
      StackMap locals:
      StackMap stack:
        25: new com.mongodb.client.model.geojson.MultiLineString
            dup
            aload 2 /* coordinates */
            invokespecial com.mongodb.client.model.geojson.MultiLineString.<init>:(Ljava/util/List;)V
      StackMap locals:
      StackMap stack: com.mongodb.client.model.geojson.MultiLineString
        26: areturn
        end local 3 // com.mongodb.client.model.geojson.CoordinateReferenceSystem crs
        end local 2 // java.util.List coordinates
        end local 1 // java.lang.String type
        end local 0 // org.bson.BsonReader reader
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   27     0       reader  Lorg/bson/BsonReader;
            1   27     1         type  Ljava/lang/String;
            2   27     2  coordinates  Ljava/util/List<Ljava/util/List<Lcom/mongodb/client/model/geojson/Position;>;>;
            3   27     3          crs  Lcom/mongodb/client/model/geojson/CoordinateReferenceSystem;
            6   16     4          key  Ljava/lang/String;
    MethodParameters:
        Name  Flags
      reader  final

  private static com.mongodb.client.model.geojson.GeometryCollection decodeGeometryCollection(org.bson.BsonReader);
    descriptor: (Lorg/bson/BsonReader;)Lcom/mongodb/client/model/geojson/GeometryCollection;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=7, locals=5, args_size=1
        start local 0 // org.bson.BsonReader reader
         0: .line 246
            aconst_null
            astore 1 /* type */
        start local 1 // java.lang.String type
         1: .line 247
            aconst_null
            astore 2 /* geometries */
        start local 2 // java.util.List geometries
         2: .line 248
            aconst_null
            astore 3 /* crs */
        start local 3 // com.mongodb.client.model.geojson.CoordinateReferenceSystem crs
         3: .line 250
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readStartDocument:()V
         4: .line 251
            goto 16
         5: .line 252
      StackMap locals: java.lang.String java.util.List com.mongodb.client.model.geojson.CoordinateReferenceSystem
      StackMap stack:
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readName:()Ljava/lang/String;
            astore 4 /* key */
        start local 4 // java.lang.String key
         6: .line 253
            aload 4 /* key */
            ldc "type"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 9
         7: .line 254
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readString:()Ljava/lang/String;
            astore 1 /* type */
         8: .line 255
            goto 16
      StackMap locals: java.lang.String
      StackMap stack:
         9: aload 4 /* key */
            ldc "geometries"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 12
        10: .line 256
            aload 0 /* reader */
            invokestatic com.mongodb.client.model.geojson.codecs.GeometryDecoderHelper.decodeGeometries:(Lorg/bson/BsonReader;)Ljava/util/List;
            astore 2 /* geometries */
        11: .line 257
            goto 16
      StackMap locals:
      StackMap stack:
        12: aload 4 /* key */
            ldc "crs"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 15
        13: .line 258
            aload 0 /* reader */
            invokestatic com.mongodb.client.model.geojson.codecs.GeometryDecoderHelper.decodeCoordinateReferenceSystem:(Lorg/bson/BsonReader;)Lcom/mongodb/client/model/geojson/CoordinateReferenceSystem;
            astore 3 /* crs */
        14: .line 259
            goto 16
        15: .line 260
      StackMap locals:
      StackMap stack:
            new org.bson.codecs.configuration.CodecConfigurationException
            dup
            ldc "Unexpected key '%s' found when decoding a GeoJSON Polygon"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 4 /* key */
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokespecial org.bson.codecs.configuration.CodecConfigurationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 4 // java.lang.String key
        16: .line 251
      StackMap locals:
      StackMap stack:
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readBsonType:()Lorg/bson/BsonType;
            getstatic org.bson.BsonType.END_OF_DOCUMENT:Lorg/bson/BsonType;
            if_acmpne 5
        17: .line 263
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readEndDocument:()V
        18: .line 265
            aload 1 /* type */
            ifnonnull 20
        19: .line 266
            new org.bson.codecs.configuration.CodecConfigurationException
            dup
            ldc "Invalid GeometryCollection, document contained no type information."
            invokespecial org.bson.codecs.configuration.CodecConfigurationException.<init>:(Ljava/lang/String;)V
            athrow
        20: .line 267
      StackMap locals:
      StackMap stack:
            aload 1 /* type */
            ldc "GeometryCollection"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 22
        21: .line 268
            new org.bson.codecs.configuration.CodecConfigurationException
            dup
            ldc "Invalid GeometryCollection, found type '%s'."
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 1 /* type */
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokespecial org.bson.codecs.configuration.CodecConfigurationException.<init>:(Ljava/lang/String;)V
            athrow
        22: .line 269
      StackMap locals:
      StackMap stack:
            aload 2 /* geometries */
            ifnonnull 24
        23: .line 270
            new org.bson.codecs.configuration.CodecConfigurationException
            dup
            ldc "Invalid GeometryCollection, missing geometries."
            invokespecial org.bson.codecs.configuration.CodecConfigurationException.<init>:(Ljava/lang/String;)V
            athrow
        24: .line 272
      StackMap locals:
      StackMap stack:
            aload 3 /* crs */
            ifnull 25
            new com.mongodb.client.model.geojson.GeometryCollection
            dup
            aload 3 /* crs */
            aload 2 /* geometries */
            invokespecial com.mongodb.client.model.geojson.GeometryCollection.<init>:(Lcom/mongodb/client/model/geojson/CoordinateReferenceSystem;Ljava/util/List;)V
            goto 26
      StackMap locals:
      StackMap stack:
        25: new com.mongodb.client.model.geojson.GeometryCollection
            dup
            aload 2 /* geometries */
            invokespecial com.mongodb.client.model.geojson.GeometryCollection.<init>:(Ljava/util/List;)V
      StackMap locals:
      StackMap stack: com.mongodb.client.model.geojson.GeometryCollection
        26: areturn
        end local 3 // com.mongodb.client.model.geojson.CoordinateReferenceSystem crs
        end local 2 // java.util.List geometries
        end local 1 // java.lang.String type
        end local 0 // org.bson.BsonReader reader
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   27     0      reader  Lorg/bson/BsonReader;
            1   27     1        type  Ljava/lang/String;
            2   27     2  geometries  Ljava/util/List<+Lcom/mongodb/client/model/geojson/Geometry;>;
            3   27     3         crs  Lcom/mongodb/client/model/geojson/CoordinateReferenceSystem;
            6   16     4         key  Ljava/lang/String;
    MethodParameters:
        Name  Flags
      reader  final

  private static java.util.List<? extends com.mongodb.client.model.geojson.Geometry> decodeGeometries(org.bson.BsonReader);
    descriptor: (Lorg/bson/BsonReader;)Ljava/util/List;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // org.bson.BsonReader reader
         0: .line 276
            aload 0 /* reader */
            invokestatic com.mongodb.client.model.geojson.codecs.GeometryDecoderHelper.validateIsArray:(Lorg/bson/BsonReader;)V
         1: .line 277
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readStartArray:()V
         2: .line 278
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 1 /* values */
        start local 1 // java.util.List values
         3: .line 279
            goto 6
         4: .line 280
      StackMap locals: java.util.List
      StackMap stack:
            aload 0 /* reader */
            invokestatic com.mongodb.client.model.geojson.codecs.GeometryDecoderHelper.decodeGeometry:(Lorg/bson/BsonReader;)Lcom/mongodb/client/model/geojson/Geometry;
            astore 2 /* geometry */
        start local 2 // com.mongodb.client.model.geojson.Geometry geometry
         5: .line 281
            aload 1 /* values */
            aload 2 /* geometry */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        end local 2 // com.mongodb.client.model.geojson.Geometry geometry
         6: .line 279
      StackMap locals:
      StackMap stack:
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readBsonType:()Lorg/bson/BsonType;
            getstatic org.bson.BsonType.END_OF_DOCUMENT:Lorg/bson/BsonType;
            if_acmpne 4
         7: .line 283
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readEndArray:()V
         8: .line 286
            aload 1 /* values */
            areturn
        end local 1 // java.util.List values
        end local 0 // org.bson.BsonReader reader
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    9     0    reader  Lorg/bson/BsonReader;
            3    9     1    values  Ljava/util/List<Lcom/mongodb/client/model/geojson/Geometry;>;
            5    6     2  geometry  Lcom/mongodb/client/model/geojson/Geometry;
    Signature: (Lorg/bson/BsonReader;)Ljava/util/List<+Lcom/mongodb/client/model/geojson/Geometry;>;
    MethodParameters:
        Name  Flags
      reader  final

  private static com.mongodb.client.model.geojson.Geometry decodeGeometry(org.bson.BsonReader);
    descriptor: (Lorg/bson/BsonReader;)Lcom/mongodb/client/model/geojson/Geometry;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=7, locals=4, args_size=1
        start local 0 // org.bson.BsonReader reader
         0: .line 290
            aconst_null
            astore 1 /* type */
        start local 1 // java.lang.String type
         1: .line 291
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.getMark:()Lorg/bson/BsonReaderMark;
            astore 2 /* mark */
        start local 2 // org.bson.BsonReaderMark mark
         2: .line 292
            aload 0 /* reader */
            invokestatic com.mongodb.client.model.geojson.codecs.GeometryDecoderHelper.validateIsDocument:(Lorg/bson/BsonReader;)V
         3: .line 293
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readStartDocument:()V
         4: .line 294
            goto 10
         5: .line 295
      StackMap locals: java.lang.String org.bson.BsonReaderMark
      StackMap stack:
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readName:()Ljava/lang/String;
            astore 3 /* key */
        start local 3 // java.lang.String key
         6: .line 296
            aload 3 /* key */
            ldc "type"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 9
         7: .line 297
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readString:()Ljava/lang/String;
            astore 1 /* type */
         8: .line 298
            goto 11
         9: .line 300
      StackMap locals: java.lang.String
      StackMap stack:
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.skipValue:()V
        end local 3 // java.lang.String key
        10: .line 294
      StackMap locals:
      StackMap stack:
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readBsonType:()Lorg/bson/BsonType;
            getstatic org.bson.BsonType.END_OF_DOCUMENT:Lorg/bson/BsonType;
            if_acmpne 5
        11: .line 303
      StackMap locals:
      StackMap stack:
            aload 2 /* mark */
            invokeinterface org.bson.BsonReaderMark.reset:()V
        12: .line 305
            aload 1 /* type */
            ifnonnull 14
        13: .line 306
            new org.bson.codecs.configuration.CodecConfigurationException
            dup
            ldc "Invalid Geometry item, document contained no type information."
            invokespecial org.bson.codecs.configuration.CodecConfigurationException.<init>:(Ljava/lang/String;)V
            athrow
        14: .line 308
      StackMap locals:
      StackMap stack:
            aconst_null
            astore 3 /* geometry */
        start local 3 // com.mongodb.client.model.geojson.Geometry geometry
        15: .line 309
            aload 1 /* type */
            ldc "Point"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 18
        16: .line 310
            aload 0 /* reader */
            invokestatic com.mongodb.client.model.geojson.codecs.GeometryDecoderHelper.decodePoint:(Lorg/bson/BsonReader;)Lcom/mongodb/client/model/geojson/Point;
            astore 3 /* geometry */
        17: .line 311
            goto 37
      StackMap locals: com.mongodb.client.model.geojson.Geometry
      StackMap stack:
        18: aload 1 /* type */
            ldc "MultiPoint"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 21
        19: .line 312
            aload 0 /* reader */
            invokestatic com.mongodb.client.model.geojson.codecs.GeometryDecoderHelper.decodeMultiPoint:(Lorg/bson/BsonReader;)Lcom/mongodb/client/model/geojson/MultiPoint;
            astore 3 /* geometry */
        20: .line 313
            goto 37
      StackMap locals:
      StackMap stack:
        21: aload 1 /* type */
            ldc "Polygon"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 24
        22: .line 314
            aload 0 /* reader */
            invokestatic com.mongodb.client.model.geojson.codecs.GeometryDecoderHelper.decodePolygon:(Lorg/bson/BsonReader;)Lcom/mongodb/client/model/geojson/Polygon;
            astore 3 /* geometry */
        23: .line 315
            goto 37
      StackMap locals:
      StackMap stack:
        24: aload 1 /* type */
            ldc "MultiPolygon"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 27
        25: .line 316
            aload 0 /* reader */
            invokestatic com.mongodb.client.model.geojson.codecs.GeometryDecoderHelper.decodeMultiPolygon:(Lorg/bson/BsonReader;)Lcom/mongodb/client/model/geojson/MultiPolygon;
            astore 3 /* geometry */
        26: .line 317
            goto 37
      StackMap locals:
      StackMap stack:
        27: aload 1 /* type */
            ldc "LineString"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 30
        28: .line 318
            aload 0 /* reader */
            invokestatic com.mongodb.client.model.geojson.codecs.GeometryDecoderHelper.decodeLineString:(Lorg/bson/BsonReader;)Lcom/mongodb/client/model/geojson/LineString;
            astore 3 /* geometry */
        29: .line 319
            goto 37
      StackMap locals:
      StackMap stack:
        30: aload 1 /* type */
            ldc "MultiLineString"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 33
        31: .line 320
            aload 0 /* reader */
            invokestatic com.mongodb.client.model.geojson.codecs.GeometryDecoderHelper.decodeMultiLineString:(Lorg/bson/BsonReader;)Lcom/mongodb/client/model/geojson/MultiLineString;
            astore 3 /* geometry */
        32: .line 321
            goto 37
      StackMap locals:
      StackMap stack:
        33: aload 1 /* type */
            ldc "GeometryCollection"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 36
        34: .line 322
            aload 0 /* reader */
            invokestatic com.mongodb.client.model.geojson.codecs.GeometryDecoderHelper.decodeGeometryCollection:(Lorg/bson/BsonReader;)Lcom/mongodb/client/model/geojson/GeometryCollection;
            astore 3 /* geometry */
        35: .line 323
            goto 37
        36: .line 324
      StackMap locals:
      StackMap stack:
            new org.bson.codecs.configuration.CodecConfigurationException
            dup
            ldc "Invalid Geometry item, found type '%s'."
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 1 /* type */
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokespecial org.bson.codecs.configuration.CodecConfigurationException.<init>:(Ljava/lang/String;)V
            athrow
        37: .line 326
      StackMap locals:
      StackMap stack:
            aload 3 /* geometry */
            areturn
        end local 3 // com.mongodb.client.model.geojson.Geometry geometry
        end local 2 // org.bson.BsonReaderMark mark
        end local 1 // java.lang.String type
        end local 0 // org.bson.BsonReader reader
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   38     0    reader  Lorg/bson/BsonReader;
            1   38     1      type  Ljava/lang/String;
            2   38     2      mark  Lorg/bson/BsonReaderMark;
            6   10     3       key  Ljava/lang/String;
           15   38     3  geometry  Lcom/mongodb/client/model/geojson/Geometry;
    MethodParameters:
        Name  Flags
      reader  final

  private static com.mongodb.client.model.geojson.PolygonCoordinates decodePolygonCoordinates(org.bson.BsonReader);
    descriptor: (Lorg/bson/BsonReader;)Lcom/mongodb/client/model/geojson/PolygonCoordinates;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=7, locals=5, args_size=1
        start local 0 // org.bson.BsonReader reader
         0: .line 331
            aload 0 /* reader */
            invokestatic com.mongodb.client.model.geojson.codecs.GeometryDecoderHelper.validateIsArray:(Lorg/bson/BsonReader;)V
         1: .line 332
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readStartArray:()V
         2: .line 333
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 1 /* values */
        start local 1 // java.util.List values
         3: .line 334
            goto 5
         4: .line 335
      StackMap locals: java.util.List
      StackMap stack:
            aload 1 /* values */
            aload 0 /* reader */
            invokestatic com.mongodb.client.model.geojson.codecs.GeometryDecoderHelper.decodeCoordinates:(Lorg/bson/BsonReader;)Ljava/util/List;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         5: .line 334
      StackMap locals:
      StackMap stack:
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readBsonType:()Lorg/bson/BsonType;
            getstatic org.bson.BsonType.END_OF_DOCUMENT:Lorg/bson/BsonType;
            if_acmpne 4
         6: .line 337
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readEndArray:()V
         7: .line 339
            aload 1 /* values */
            invokeinterface java.util.List.isEmpty:()Z
            ifeq 9
         8: .line 340
            new org.bson.codecs.configuration.CodecConfigurationException
            dup
            ldc "Invalid Polygon no coordinates."
            invokespecial org.bson.codecs.configuration.CodecConfigurationException.<init>:(Ljava/lang/String;)V
            athrow
         9: .line 343
      StackMap locals:
      StackMap stack:
            aload 1 /* values */
            iconst_0
            invokeinterface java.util.List.remove:(I)Ljava/lang/Object;
            checkcast java.util.List
            astore 2 /* exterior */
        start local 2 // java.util.List exterior
        10: .line 344
            aload 1 /* values */
            aload 1 /* values */
            invokeinterface java.util.List.size:()I
            anewarray java.util.ArrayList
            invokeinterface java.util.List.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            checkcast java.util.ArrayList[]
            astore 3 /* holes */
        start local 3 // java.util.ArrayList[] holes
        11: .line 347
            new com.mongodb.client.model.geojson.PolygonCoordinates
            dup
            aload 2 /* exterior */
            aload 3 /* holes */
            invokespecial com.mongodb.client.model.geojson.PolygonCoordinates.<init>:(Ljava/util/List;[Ljava/util/List;)V
        12: areturn
        13: .line 348
      StackMap locals: org.bson.BsonReader java.util.List java.util.List java.util.ArrayList[]
      StackMap stack: java.lang.IllegalArgumentException
            astore 4 /* e */
        start local 4 // java.lang.IllegalArgumentException e
        14: .line 349
            new org.bson.codecs.configuration.CodecConfigurationException
            dup
            ldc "Invalid Polygon: %s"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 4 /* e */
            invokevirtual java.lang.IllegalArgumentException.getMessage:()Ljava/lang/String;
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokespecial org.bson.codecs.configuration.CodecConfigurationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 4 // java.lang.IllegalArgumentException e
        end local 3 // java.util.ArrayList[] holes
        end local 2 // java.util.List exterior
        end local 1 // java.util.List values
        end local 0 // org.bson.BsonReader reader
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   15     0    reader  Lorg/bson/BsonReader;
            3   15     1    values  Ljava/util/List<Ljava/util/List<Lcom/mongodb/client/model/geojson/Position;>;>;
           10   15     2  exterior  Ljava/util/List<Lcom/mongodb/client/model/geojson/Position;>;
           11   15     3     holes  [Ljava/util/ArrayList;
           14   15     4         e  Ljava/lang/IllegalArgumentException;
      Exception table:
        from    to  target  type
          11    12      13  Class java.lang.IllegalArgumentException
    MethodParameters:
        Name  Flags
      reader  final

  private static java.util.List<com.mongodb.client.model.geojson.PolygonCoordinates> decodeMultiPolygonCoordinates(org.bson.BsonReader);
    descriptor: (Lorg/bson/BsonReader;)Ljava/util/List;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.bson.BsonReader reader
         0: .line 354
            aload 0 /* reader */
            invokestatic com.mongodb.client.model.geojson.codecs.GeometryDecoderHelper.validateIsArray:(Lorg/bson/BsonReader;)V
         1: .line 355
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readStartArray:()V
         2: .line 356
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 1 /* values */
        start local 1 // java.util.List values
         3: .line 357
            goto 5
         4: .line 358
      StackMap locals: java.util.List
      StackMap stack:
            aload 1 /* values */
            aload 0 /* reader */
            invokestatic com.mongodb.client.model.geojson.codecs.GeometryDecoderHelper.decodePolygonCoordinates:(Lorg/bson/BsonReader;)Lcom/mongodb/client/model/geojson/PolygonCoordinates;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         5: .line 357
      StackMap locals:
      StackMap stack:
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readBsonType:()Lorg/bson/BsonType;
            getstatic org.bson.BsonType.END_OF_DOCUMENT:Lorg/bson/BsonType;
            if_acmpne 4
         6: .line 360
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readEndArray:()V
         7: .line 362
            aload 1 /* values */
            invokeinterface java.util.List.isEmpty:()Z
            ifeq 9
         8: .line 363
            new org.bson.codecs.configuration.CodecConfigurationException
            dup
            ldc "Invalid MultiPolygon no coordinates."
            invokespecial org.bson.codecs.configuration.CodecConfigurationException.<init>:(Ljava/lang/String;)V
            athrow
         9: .line 365
      StackMap locals:
      StackMap stack:
            aload 1 /* values */
            areturn
        end local 1 // java.util.List values
        end local 0 // org.bson.BsonReader reader
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   10     0  reader  Lorg/bson/BsonReader;
            3   10     1  values  Ljava/util/List<Lcom/mongodb/client/model/geojson/PolygonCoordinates;>;
    Signature: (Lorg/bson/BsonReader;)Ljava/util/List<Lcom/mongodb/client/model/geojson/PolygonCoordinates;>;
    MethodParameters:
        Name  Flags
      reader  final

  private static java.util.List<com.mongodb.client.model.geojson.Position> decodeCoordinates(org.bson.BsonReader);
    descriptor: (Lorg/bson/BsonReader;)Ljava/util/List;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.bson.BsonReader reader
         0: .line 369
            aload 0 /* reader */
            invokestatic com.mongodb.client.model.geojson.codecs.GeometryDecoderHelper.validateIsArray:(Lorg/bson/BsonReader;)V
         1: .line 370
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readStartArray:()V
         2: .line 371
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 1 /* values */
        start local 1 // java.util.List values
         3: .line 372
            goto 5
         4: .line 373
      StackMap locals: java.util.List
      StackMap stack:
            aload 1 /* values */
            aload 0 /* reader */
            invokestatic com.mongodb.client.model.geojson.codecs.GeometryDecoderHelper.decodePosition:(Lorg/bson/BsonReader;)Lcom/mongodb/client/model/geojson/Position;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         5: .line 372
      StackMap locals:
      StackMap stack:
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readBsonType:()Lorg/bson/BsonType;
            getstatic org.bson.BsonType.END_OF_DOCUMENT:Lorg/bson/BsonType;
            if_acmpne 4
         6: .line 375
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readEndArray:()V
         7: .line 376
            aload 1 /* values */
            areturn
        end local 1 // java.util.List values
        end local 0 // org.bson.BsonReader reader
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0  reader  Lorg/bson/BsonReader;
            3    8     1  values  Ljava/util/List<Lcom/mongodb/client/model/geojson/Position;>;
    Signature: (Lorg/bson/BsonReader;)Ljava/util/List<Lcom/mongodb/client/model/geojson/Position;>;
    MethodParameters:
        Name  Flags
      reader  final

  private static java.util.List<java.util.List<com.mongodb.client.model.geojson.Position>> decodeMultiCoordinates(org.bson.BsonReader);
    descriptor: (Lorg/bson/BsonReader;)Ljava/util/List;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.bson.BsonReader reader
         0: .line 380
            aload 0 /* reader */
            invokestatic com.mongodb.client.model.geojson.codecs.GeometryDecoderHelper.validateIsArray:(Lorg/bson/BsonReader;)V
         1: .line 381
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readStartArray:()V
         2: .line 382
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 1 /* values */
        start local 1 // java.util.List values
         3: .line 383
            goto 5
         4: .line 384
      StackMap locals: java.util.List
      StackMap stack:
            aload 1 /* values */
            aload 0 /* reader */
            invokestatic com.mongodb.client.model.geojson.codecs.GeometryDecoderHelper.decodeCoordinates:(Lorg/bson/BsonReader;)Ljava/util/List;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         5: .line 383
      StackMap locals:
      StackMap stack:
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readBsonType:()Lorg/bson/BsonType;
            getstatic org.bson.BsonType.END_OF_DOCUMENT:Lorg/bson/BsonType;
            if_acmpne 4
         6: .line 386
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readEndArray:()V
         7: .line 387
            aload 1 /* values */
            areturn
        end local 1 // java.util.List values
        end local 0 // org.bson.BsonReader reader
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0  reader  Lorg/bson/BsonReader;
            3    8     1  values  Ljava/util/List<Ljava/util/List<Lcom/mongodb/client/model/geojson/Position;>;>;
    Signature: (Lorg/bson/BsonReader;)Ljava/util/List<Ljava/util/List<Lcom/mongodb/client/model/geojson/Position;>;>;
    MethodParameters:
        Name  Flags
      reader  final

  private static com.mongodb.client.model.geojson.Position decodePosition(org.bson.BsonReader);
    descriptor: (Lorg/bson/BsonReader;)Lcom/mongodb/client/model/geojson/Position;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=7, locals=3, args_size=1
        start local 0 // org.bson.BsonReader reader
         0: .line 391
            aload 0 /* reader */
            invokestatic com.mongodb.client.model.geojson.codecs.GeometryDecoderHelper.validateIsArray:(Lorg/bson/BsonReader;)V
         1: .line 392
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readStartArray:()V
         2: .line 393
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 1 /* values */
        start local 1 // java.util.List values
         3: .line 394
            goto 7
         4: .line 395
      StackMap locals: java.util.List
      StackMap stack:
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.getCurrentBsonType:()Lorg/bson/BsonType;
            getstatic org.bson.BsonType.DOUBLE:Lorg/bson/BsonType;
            if_acmpeq 6
         5: .line 396
            new org.bson.codecs.configuration.CodecConfigurationException
            dup
            ldc "Invalid position"
            invokespecial org.bson.codecs.configuration.CodecConfigurationException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 398
      StackMap locals:
      StackMap stack:
            aload 1 /* values */
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readDouble:()D
            invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         7: .line 394
      StackMap locals:
      StackMap stack:
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readBsonType:()Lorg/bson/BsonType;
            getstatic org.bson.BsonType.END_OF_DOCUMENT:Lorg/bson/BsonType;
            if_acmpne 4
         8: .line 400
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readEndArray:()V
         9: .line 403
            new com.mongodb.client.model.geojson.Position
            dup
            aload 1 /* values */
            invokespecial com.mongodb.client.model.geojson.Position.<init>:(Ljava/util/List;)V
        10: areturn
        11: .line 404
      StackMap locals:
      StackMap stack: java.lang.IllegalArgumentException
            astore 2 /* e */
        start local 2 // java.lang.IllegalArgumentException e
        12: .line 405
            new org.bson.codecs.configuration.CodecConfigurationException
            dup
            ldc "Invalid Position: %s"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 2 /* e */
            invokevirtual java.lang.IllegalArgumentException.getMessage:()Ljava/lang/String;
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokespecial org.bson.codecs.configuration.CodecConfigurationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 2 // java.lang.IllegalArgumentException e
        end local 1 // java.util.List values
        end local 0 // org.bson.BsonReader reader
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   13     0  reader  Lorg/bson/BsonReader;
            3   13     1  values  Ljava/util/List<Ljava/lang/Double;>;
           12   13     2       e  Ljava/lang/IllegalArgumentException;
      Exception table:
        from    to  target  type
           9    10      11  Class java.lang.IllegalArgumentException
    MethodParameters:
        Name  Flags
      reader  final

  static com.mongodb.client.model.geojson.CoordinateReferenceSystem decodeCoordinateReferenceSystem(org.bson.BsonReader);
    descriptor: (Lorg/bson/BsonReader;)Lcom/mongodb/client/model/geojson/CoordinateReferenceSystem;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=7, locals=4, args_size=1
        start local 0 // org.bson.BsonReader reader
         0: .line 411
            aconst_null
            astore 1 /* crsName */
        start local 1 // java.lang.String crsName
         1: .line 412
            aload 0 /* reader */
            invokestatic com.mongodb.client.model.geojson.codecs.GeometryDecoderHelper.validateIsDocument:(Lorg/bson/BsonReader;)V
         2: .line 413
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readStartDocument:()V
         3: .line 414
            goto 13
         4: .line 415
      StackMap locals: java.lang.String
      StackMap stack:
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readName:()Ljava/lang/String;
            astore 2 /* name */
        start local 2 // java.lang.String name
         5: .line 416
            aload 2 /* name */
            ldc "type"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 9
         6: .line 417
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readString:()Ljava/lang/String;
            astore 3 /* type */
        start local 3 // java.lang.String type
         7: .line 418
            aload 3 /* type */
            ldc "name"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 13
         8: .line 419
            new org.bson.codecs.configuration.CodecConfigurationException
            dup
            ldc "Unsupported CoordinateReferenceSystem '%s'."
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 3 /* type */
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokespecial org.bson.codecs.configuration.CodecConfigurationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 3 // java.lang.String type
         9: .line 421
      StackMap locals: java.lang.String
      StackMap stack:
            aload 2 /* name */
            ldc "properties"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 12
        10: .line 422
            aload 0 /* reader */
            invokestatic com.mongodb.client.model.geojson.codecs.GeometryDecoderHelper.decodeCoordinateReferenceSystemProperties:(Lorg/bson/BsonReader;)Ljava/lang/String;
            astore 1 /* crsName */
        11: .line 423
            goto 13
        12: .line 424
      StackMap locals:
      StackMap stack:
            new org.bson.codecs.configuration.CodecConfigurationException
            dup
            ldc "Found invalid key '%s' in the CoordinateReferenceSystem."
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 2 /* name */
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokespecial org.bson.codecs.configuration.CodecConfigurationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 2 // java.lang.String name
        13: .line 414
      StackMap locals:
      StackMap stack:
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readBsonType:()Lorg/bson/BsonType;
            getstatic org.bson.BsonType.END_OF_DOCUMENT:Lorg/bson/BsonType;
            if_acmpne 4
        14: .line 427
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readEndDocument:()V
        15: .line 429
            aload 1 /* crsName */
            ifnull 16
            new com.mongodb.client.model.geojson.NamedCoordinateReferenceSystem
            dup
            aload 1 /* crsName */
            invokespecial com.mongodb.client.model.geojson.NamedCoordinateReferenceSystem.<init>:(Ljava/lang/String;)V
            goto 17
      StackMap locals:
      StackMap stack:
        16: aconst_null
      StackMap locals:
      StackMap stack: com.mongodb.client.model.geojson.NamedCoordinateReferenceSystem
        17: areturn
        end local 1 // java.lang.String crsName
        end local 0 // org.bson.BsonReader reader
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   18     0   reader  Lorg/bson/BsonReader;
            1   18     1  crsName  Ljava/lang/String;
            5   13     2     name  Ljava/lang/String;
            7    9     3     type  Ljava/lang/String;
    RuntimeVisibleAnnotations: 
      com.mongodb.lang.Nullable()
    MethodParameters:
        Name  Flags
      reader  final

  private static java.lang.String decodeCoordinateReferenceSystemProperties(org.bson.BsonReader);
    descriptor: (Lorg/bson/BsonReader;)Ljava/lang/String;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=7, locals=3, args_size=1
        start local 0 // org.bson.BsonReader reader
         0: .line 433
            aconst_null
            astore 1 /* crsName */
        start local 1 // java.lang.String crsName
         1: .line 434
            aload 0 /* reader */
            invokestatic com.mongodb.client.model.geojson.codecs.GeometryDecoderHelper.validateIsDocument:(Lorg/bson/BsonReader;)V
         2: .line 435
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readStartDocument:()V
         3: .line 436
            goto 9
         4: .line 437
      StackMap locals: java.lang.String
      StackMap stack:
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readName:()Ljava/lang/String;
            astore 2 /* name */
        start local 2 // java.lang.String name
         5: .line 438
            aload 2 /* name */
            ldc "name"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 8
         6: .line 439
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readString:()Ljava/lang/String;
            astore 1 /* crsName */
         7: .line 440
            goto 9
         8: .line 441
      StackMap locals: java.lang.String
      StackMap stack:
            new org.bson.codecs.configuration.CodecConfigurationException
            dup
            ldc "Found invalid key '%s' in the CoordinateReferenceSystem."
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 2 /* name */
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokespecial org.bson.codecs.configuration.CodecConfigurationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 2 // java.lang.String name
         9: .line 436
      StackMap locals:
      StackMap stack:
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readBsonType:()Lorg/bson/BsonType;
            getstatic org.bson.BsonType.END_OF_DOCUMENT:Lorg/bson/BsonType;
            if_acmpne 4
        10: .line 444
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readEndDocument:()V
        11: .line 446
            aload 1 /* crsName */
            ifnonnull 13
        12: .line 447
            new org.bson.codecs.configuration.CodecConfigurationException
            dup
            ldc "Found invalid properties in the CoordinateReferenceSystem."
            invokespecial org.bson.codecs.configuration.CodecConfigurationException.<init>:(Ljava/lang/String;)V
            athrow
        13: .line 449
      StackMap locals:
      StackMap stack:
            aload 1 /* crsName */
            areturn
        end local 1 // java.lang.String crsName
        end local 0 // org.bson.BsonReader reader
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   14     0   reader  Lorg/bson/BsonReader;
            1   14     1  crsName  Ljava/lang/String;
            5    9     2     name  Ljava/lang/String;
    MethodParameters:
        Name  Flags
      reader  final

  private static void validateIsDocument(org.bson.BsonReader);
    descriptor: (Lorg/bson/BsonReader;)V
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.bson.BsonReader reader
         0: .line 453
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.getCurrentBsonType:()Lorg/bson/BsonType;
            astore 1 /* currentType */
        start local 1 // org.bson.BsonType currentType
         1: .line 454
            aload 1 /* currentType */
            ifnonnull 3
         2: .line 455
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.readBsonType:()Lorg/bson/BsonType;
            astore 1 /* currentType */
         3: .line 457
      StackMap locals: org.bson.BsonType
      StackMap stack:
            aload 1 /* currentType */
            getstatic org.bson.BsonType.DOCUMENT:Lorg/bson/BsonType;
            invokevirtual org.bson.BsonType.equals:(Ljava/lang/Object;)Z
            ifne 5
         4: .line 458
            new org.bson.codecs.configuration.CodecConfigurationException
            dup
            ldc "Invalid BsonType expecting a Document"
            invokespecial org.bson.codecs.configuration.CodecConfigurationException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 460
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.bson.BsonType currentType
        end local 0 // org.bson.BsonReader reader
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    6     0       reader  Lorg/bson/BsonReader;
            1    6     1  currentType  Lorg/bson/BsonType;
    MethodParameters:
        Name  Flags
      reader  final

  private static void validateIsArray(org.bson.BsonReader);
    descriptor: (Lorg/bson/BsonReader;)V
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.bson.BsonReader reader
         0: .line 463
            aload 0 /* reader */
            invokeinterface org.bson.BsonReader.getCurrentBsonType:()Lorg/bson/BsonType;
            getstatic org.bson.BsonType.ARRAY:Lorg/bson/BsonType;
            if_acmpeq 2
         1: .line 464
            new org.bson.codecs.configuration.CodecConfigurationException
            dup
            ldc "Invalid BsonType expecting an Array"
            invokespecial org.bson.codecs.configuration.CodecConfigurationException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 466
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.bson.BsonReader reader
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0  reader  Lorg/bson/BsonReader;
    MethodParameters:
        Name  Flags
      reader  final

  private void <init>();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.mongodb.client.model.geojson.codecs.GeometryDecoderHelper this
         0: .line 468
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 469
            return
        end local 0 // com.mongodb.client.model.geojson.codecs.GeometryDecoderHelper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/mongodb/client/model/geojson/codecs/GeometryDecoderHelper;
}
SourceFile: "GeometryDecoderHelper.java"