public class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator extends com.fasterxml.jackson.core.json.JsonGeneratorImpl
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
  super_class: com.fasterxml.jackson.core.json.JsonGeneratorImpl
{
  protected static final int SHORT_WRITE;
    descriptor: I
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL
    ConstantValue: 32

  protected static final char[] HEX_CHARS;
    descriptor: [C
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL

  protected final java.io.Writer _writer;
    descriptor: Ljava/io/Writer;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  protected char _quoteChar;
    descriptor: C
    flags: (0x0004) ACC_PROTECTED

  protected char[] _outputBuffer;
    descriptor: [C
    flags: (0x0004) ACC_PROTECTED

  protected int _outputHead;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected int _outputTail;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected int _outputEnd;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected char[] _entityBuffer;
    descriptor: [C
    flags: (0x0004) ACC_PROTECTED

  protected com.fasterxml.jackson.core.SerializableString _currentEscape;
    descriptor: Lcom/fasterxml/jackson/core/SerializableString;
    flags: (0x0004) ACC_PROTECTED

  protected char[] _copyBuffer;
    descriptor: [C
    flags: (0x0004) ACC_PROTECTED

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 22
            invokestatic com.fasterxml.jackson.core.io.CharTypes.copyHexChars:()[C
            putstatic com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.HEX_CHARS:[C
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(com.fasterxml.jackson.core.io.IOContext, int, com.fasterxml.jackson.core.ObjectCodec, java.io.Writer);
    descriptor: (Lcom/fasterxml/jackson/core/io/IOContext;ILcom/fasterxml/jackson/core/ObjectCodec;Ljava/io/Writer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=5
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // com.fasterxml.jackson.core.io.IOContext ctxt
        start local 2 // int features
        start local 3 // com.fasterxml.jackson.core.ObjectCodec codec
        start local 4 // java.io.Writer w
         0: .line 96
            aload 0 /* this */
            aload 1 /* ctxt */
            iload 2 /* features */
            aload 3 /* codec */
            aload 4 /* w */
            bipush 34
            invokespecial com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.<init>:(Lcom/fasterxml/jackson/core/io/IOContext;ILcom/fasterxml/jackson/core/ObjectCodec;Ljava/io/Writer;C)V
         1: .line 97
            return
        end local 4 // java.io.Writer w
        end local 3 // com.fasterxml.jackson.core.ObjectCodec codec
        end local 2 // int features
        end local 1 // com.fasterxml.jackson.core.io.IOContext ctxt
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0    2     1      ctxt  Lcom/fasterxml/jackson/core/io/IOContext;
            0    2     2  features  I
            0    2     3     codec  Lcom/fasterxml/jackson/core/ObjectCodec;
            0    2     4         w  Ljava/io/Writer;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
          Name  Flags
      ctxt      
      features  
      codec     
      w         

  public void <init>(com.fasterxml.jackson.core.io.IOContext, int, com.fasterxml.jackson.core.ObjectCodec, java.io.Writer, char);
    descriptor: (Lcom/fasterxml/jackson/core/io/IOContext;ILcom/fasterxml/jackson/core/ObjectCodec;Ljava/io/Writer;C)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=6
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // com.fasterxml.jackson.core.io.IOContext ctxt
        start local 2 // int features
        start local 3 // com.fasterxml.jackson.core.ObjectCodec codec
        start local 4 // java.io.Writer w
        start local 5 // char quoteChar
         0: .line 107
            aload 0 /* this */
            aload 1 /* ctxt */
            iload 2 /* features */
            aload 3 /* codec */
            invokespecial com.fasterxml.jackson.core.json.JsonGeneratorImpl.<init>:(Lcom/fasterxml/jackson/core/io/IOContext;ILcom/fasterxml/jackson/core/ObjectCodec;)V
         1: .line 108
            aload 0 /* this */
            aload 4 /* w */
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writer:Ljava/io/Writer;
         2: .line 109
            aload 0 /* this */
            aload 1 /* ctxt */
            invokevirtual com.fasterxml.jackson.core.io.IOContext.allocConcatBuffer:()[C
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
         3: .line 110
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            arraylength
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
         4: .line 111
            aload 0 /* this */
            iload 5 /* quoteChar */
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._quoteChar:C
         5: .line 112
            iload 5 /* quoteChar */
            bipush 34
            if_icmpeq 7
         6: .line 113
            aload 0 /* this */
            iload 5 /* quoteChar */
            invokestatic com.fasterxml.jackson.core.io.CharTypes.get7BitOutputEscapes:(I)[I
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEscapes:[I
         7: .line 115
      StackMap locals: com.fasterxml.jackson.core.json.WriterBasedJsonGenerator com.fasterxml.jackson.core.io.IOContext int com.fasterxml.jackson.core.ObjectCodec java.io.Writer int
      StackMap stack:
            return
        end local 5 // char quoteChar
        end local 4 // java.io.Writer w
        end local 3 // com.fasterxml.jackson.core.ObjectCodec codec
        end local 2 // int features
        end local 1 // com.fasterxml.jackson.core.io.IOContext ctxt
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    8     0       this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0    8     1       ctxt  Lcom/fasterxml/jackson/core/io/IOContext;
            0    8     2   features  I
            0    8     3      codec  Lcom/fasterxml/jackson/core/ObjectCodec;
            0    8     4          w  Ljava/io/Writer;
            0    8     5  quoteChar  C
    MethodParameters:
           Name  Flags
      ctxt       
      features   
      codec      
      w          
      quoteChar  

  public java.lang.Object getOutputTarget();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
         0: .line 125
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writer:Ljava/io/Writer;
            areturn
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;

  public int getOutputBuffered();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
         0: .line 131
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputHead:I
            isub
            istore 1 /* len */
        start local 1 // int len
         1: .line 132
            iconst_0
            iload 1 /* len */
            invokestatic java.lang.Math.max:(II)I
            ireturn
        end local 1 // int len
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            1    2     1   len  I

  public boolean canWriteFormattedNumbers();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
         0: .line 137
            iconst_1
            ireturn
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;

  public void writeFieldName(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // java.lang.String name
         0: .line 148
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeContext:Lcom/fasterxml/jackson/core/json/JsonWriteContext;
            aload 1 /* name */
            invokevirtual com.fasterxml.jackson.core.json.JsonWriteContext.writeFieldName:(Ljava/lang/String;)I
            istore 2 /* status */
        start local 2 // int status
         1: .line 149
            iload 2 /* status */
            iconst_4
            if_icmpne 3
         2: .line 150
            aload 0 /* this */
            ldc "Can not write a field name, expecting a value"
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._reportError:(Ljava/lang/String;)V
         3: .line 152
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* name */
            iload 2 /* status */
            iconst_1
            if_icmpne 4
            iconst_1
            goto 5
      StackMap locals: com.fasterxml.jackson.core.json.WriterBasedJsonGenerator java.lang.String int
      StackMap stack: com.fasterxml.jackson.core.json.WriterBasedJsonGenerator java.lang.String
         4: iconst_0
      StackMap locals: com.fasterxml.jackson.core.json.WriterBasedJsonGenerator java.lang.String int
      StackMap stack: com.fasterxml.jackson.core.json.WriterBasedJsonGenerator java.lang.String int
         5: invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeFieldName:(Ljava/lang/String;Z)V
         6: .line 153
            return
        end local 2 // int status
        end local 1 // java.lang.String name
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0    7     1    name  Ljava/lang/String;
            1    7     2  status  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      name  

  public void writeFieldName(com.fasterxml.jackson.core.SerializableString);
    descriptor: (Lcom/fasterxml/jackson/core/SerializableString;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // com.fasterxml.jackson.core.SerializableString name
         0: .line 159
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeContext:Lcom/fasterxml/jackson/core/json/JsonWriteContext;
            aload 1 /* name */
            invokeinterface com.fasterxml.jackson.core.SerializableString.getValue:()Ljava/lang/String;
            invokevirtual com.fasterxml.jackson.core.json.JsonWriteContext.writeFieldName:(Ljava/lang/String;)I
            istore 2 /* status */
        start local 2 // int status
         1: .line 160
            iload 2 /* status */
            iconst_4
            if_icmpne 3
         2: .line 161
            aload 0 /* this */
            ldc "Can not write a field name, expecting a value"
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._reportError:(Ljava/lang/String;)V
         3: .line 163
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* name */
            iload 2 /* status */
            iconst_1
            if_icmpne 4
            iconst_1
            goto 5
      StackMap locals: com.fasterxml.jackson.core.json.WriterBasedJsonGenerator com.fasterxml.jackson.core.SerializableString int
      StackMap stack: com.fasterxml.jackson.core.json.WriterBasedJsonGenerator com.fasterxml.jackson.core.SerializableString
         4: iconst_0
      StackMap locals: com.fasterxml.jackson.core.json.WriterBasedJsonGenerator com.fasterxml.jackson.core.SerializableString int
      StackMap stack: com.fasterxml.jackson.core.json.WriterBasedJsonGenerator com.fasterxml.jackson.core.SerializableString int
         5: invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeFieldName:(Lcom/fasterxml/jackson/core/SerializableString;Z)V
         6: .line 164
            return
        end local 2 // int status
        end local 1 // com.fasterxml.jackson.core.SerializableString name
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0    7     1    name  Lcom/fasterxml/jackson/core/SerializableString;
            1    7     2  status  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      name  

  protected final void _writeFieldName(java.lang.String, boolean);
    descriptor: (Ljava/lang/String;Z)V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // java.lang.String name
        start local 2 // boolean commaBefore
         0: .line 168
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._cfgPrettyPrinter:Lcom/fasterxml/jackson/core/PrettyPrinter;
            ifnull 3
         1: .line 169
            aload 0 /* this */
            aload 1 /* name */
            iload 2 /* commaBefore */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writePPFieldName:(Ljava/lang/String;Z)V
         2: .line 170
            return
         3: .line 173
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iconst_1
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmplt 5
         4: .line 174
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
         5: .line 176
      StackMap locals:
      StackMap stack:
            iload 2 /* commaBefore */
            ifeq 7
         6: .line 177
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            bipush 44
            castore
         7: .line 180
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._cfgUnqNames:Z
            ifeq 10
         8: .line 181
            aload 0 /* this */
            aload 1 /* name */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeString:(Ljava/lang/String;)V
         9: .line 182
            return
        10: .line 185
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._quoteChar:C
            castore
        11: .line 187
            aload 0 /* this */
            aload 1 /* name */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeString:(Ljava/lang/String;)V
        12: .line 189
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmplt 14
        13: .line 190
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
        14: .line 192
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._quoteChar:C
            castore
        15: .line 193
            return
        end local 2 // boolean commaBefore
        end local 1 // java.lang.String name
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   16     0         this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0   16     1         name  Ljava/lang/String;
            0   16     2  commaBefore  Z
    Exceptions:
      throws java.io.IOException
    MethodParameters:
             Name  Flags
      name         
      commaBefore  

  protected final void _writeFieldName(com.fasterxml.jackson.core.SerializableString, boolean);
    descriptor: (Lcom/fasterxml/jackson/core/SerializableString;Z)V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // com.fasterxml.jackson.core.SerializableString name
        start local 2 // boolean commaBefore
         0: .line 197
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._cfgPrettyPrinter:Lcom/fasterxml/jackson/core/PrettyPrinter;
            ifnull 3
         1: .line 198
            aload 0 /* this */
            aload 1 /* name */
            iload 2 /* commaBefore */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writePPFieldName:(Lcom/fasterxml/jackson/core/SerializableString;Z)V
         2: .line 199
            return
         3: .line 202
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iconst_1
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmplt 5
         4: .line 203
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
         5: .line 205
      StackMap locals:
      StackMap stack:
            iload 2 /* commaBefore */
            ifeq 7
         6: .line 206
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            bipush 44
            castore
         7: .line 209
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._cfgUnqNames:Z
            ifeq 11
         8: .line 210
            aload 1 /* name */
            invokeinterface com.fasterxml.jackson.core.SerializableString.asQuotedChars:()[C
            astore 3 /* ch */
        start local 3 // char[] ch
         9: .line 211
            aload 0 /* this */
            aload 3 /* ch */
            iconst_0
            aload 3 /* ch */
            arraylength
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.writeRaw:([CII)V
        10: .line 212
            return
        end local 3 // char[] ch
        11: .line 215
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._quoteChar:C
            castore
        12: .line 218
            aload 1 /* name */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            invokeinterface com.fasterxml.jackson.core.SerializableString.appendQuoted:([CI)I
            istore 3 /* len */
        start local 3 // int len
        13: .line 219
            iload 3 /* len */
            ifge 16
        14: .line 220
            aload 0 /* this */
            aload 1 /* name */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeFieldNameTail:(Lcom/fasterxml/jackson/core/SerializableString;)V
        15: .line 221
            return
        16: .line 223
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iload 3 /* len */
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
        17: .line 224
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmplt 19
        18: .line 225
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
        19: .line 227
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._quoteChar:C
            castore
        20: .line 228
            return
        end local 3 // int len
        end local 2 // boolean commaBefore
        end local 1 // com.fasterxml.jackson.core.SerializableString name
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   21     0         this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0   21     1         name  Lcom/fasterxml/jackson/core/SerializableString;
            0   21     2  commaBefore  Z
            9   11     3           ch  [C
           13   21     3          len  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
             Name  Flags
      name         
      commaBefore  

  private final void _writeFieldNameTail(com.fasterxml.jackson.core.SerializableString);
    descriptor: (Lcom/fasterxml/jackson/core/SerializableString;)V
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // com.fasterxml.jackson.core.SerializableString name
         0: .line 232
            aload 1 /* name */
            invokeinterface com.fasterxml.jackson.core.SerializableString.asQuotedChars:()[C
            astore 2 /* quoted */
        start local 2 // char[] quoted
         1: .line 233
            aload 0 /* this */
            aload 2 /* quoted */
            iconst_0
            aload 2 /* quoted */
            arraylength
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.writeRaw:([CII)V
         2: .line 234
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmplt 4
         3: .line 235
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
         4: .line 237
      StackMap locals: char[]
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._quoteChar:C
            castore
         5: .line 238
            return
        end local 2 // char[] quoted
        end local 1 // com.fasterxml.jackson.core.SerializableString name
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0    6     1    name  Lcom/fasterxml/jackson/core/SerializableString;
            1    6     2  quoted  [C
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      name  

  public void writeStartArray();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
         0: .line 249
            aload 0 /* this */
            ldc "start an array"
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._verifyValueWrite:(Ljava/lang/String;)V
         1: .line 250
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeContext:Lcom/fasterxml/jackson/core/json/JsonWriteContext;
            invokevirtual com.fasterxml.jackson.core.json.JsonWriteContext.createChildArrayContext:()Lcom/fasterxml/jackson/core/json/JsonWriteContext;
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeContext:Lcom/fasterxml/jackson/core/json/JsonWriteContext;
         2: .line 251
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._cfgPrettyPrinter:Lcom/fasterxml/jackson/core/PrettyPrinter;
            ifnull 5
         3: .line 252
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._cfgPrettyPrinter:Lcom/fasterxml/jackson/core/PrettyPrinter;
            aload 0 /* this */
            invokeinterface com.fasterxml.jackson.core.PrettyPrinter.writeStartArray:(Lcom/fasterxml/jackson/core/JsonGenerator;)V
         4: .line 253
            goto 8
         5: .line 254
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmplt 7
         6: .line 255
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
         7: .line 257
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            bipush 91
            castore
         8: .line 259
      StackMap locals:
      StackMap stack:
            return
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
    Exceptions:
      throws java.io.IOException

  public void writeStartArray(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // int size
         0: .line 264
            aload 0 /* this */
            ldc "start an array"
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._verifyValueWrite:(Ljava/lang/String;)V
         1: .line 265
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeContext:Lcom/fasterxml/jackson/core/json/JsonWriteContext;
            invokevirtual com.fasterxml.jackson.core.json.JsonWriteContext.createChildArrayContext:()Lcom/fasterxml/jackson/core/json/JsonWriteContext;
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeContext:Lcom/fasterxml/jackson/core/json/JsonWriteContext;
         2: .line 266
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._cfgPrettyPrinter:Lcom/fasterxml/jackson/core/PrettyPrinter;
            ifnull 5
         3: .line 267
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._cfgPrettyPrinter:Lcom/fasterxml/jackson/core/PrettyPrinter;
            aload 0 /* this */
            invokeinterface com.fasterxml.jackson.core.PrettyPrinter.writeStartArray:(Lcom/fasterxml/jackson/core/JsonGenerator;)V
         4: .line 268
            goto 8
         5: .line 269
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmplt 7
         6: .line 270
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
         7: .line 272
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            bipush 91
            castore
         8: .line 274
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int size
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0    9     1  size  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      size  

  public void writeEndArray();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
         0: .line 279
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeContext:Lcom/fasterxml/jackson/core/json/JsonWriteContext;
            invokevirtual com.fasterxml.jackson.core.json.JsonWriteContext.inArray:()Z
            ifne 2
         1: .line 280
            aload 0 /* this */
            new java.lang.StringBuilder
            dup
            ldc "Current context not Array but "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeContext:Lcom/fasterxml/jackson/core/json/JsonWriteContext;
            invokevirtual com.fasterxml.jackson.core.json.JsonWriteContext.typeDesc:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._reportError:(Ljava/lang/String;)V
         2: .line 282
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._cfgPrettyPrinter:Lcom/fasterxml/jackson/core/PrettyPrinter;
            ifnull 5
         3: .line 283
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._cfgPrettyPrinter:Lcom/fasterxml/jackson/core/PrettyPrinter;
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeContext:Lcom/fasterxml/jackson/core/json/JsonWriteContext;
            invokevirtual com.fasterxml.jackson.core.json.JsonWriteContext.getEntryCount:()I
            invokeinterface com.fasterxml.jackson.core.PrettyPrinter.writeEndArray:(Lcom/fasterxml/jackson/core/JsonGenerator;I)V
         4: .line 284
            goto 8
         5: .line 285
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmplt 7
         6: .line 286
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
         7: .line 288
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            bipush 93
            castore
         8: .line 290
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeContext:Lcom/fasterxml/jackson/core/json/JsonWriteContext;
            invokevirtual com.fasterxml.jackson.core.json.JsonWriteContext.clearAndGetParent:()Lcom/fasterxml/jackson/core/json/JsonWriteContext;
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeContext:Lcom/fasterxml/jackson/core/json/JsonWriteContext;
         9: .line 291
            return
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
    Exceptions:
      throws java.io.IOException

  public void writeStartObject();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
         0: .line 296
            aload 0 /* this */
            ldc "start an object"
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._verifyValueWrite:(Ljava/lang/String;)V
         1: .line 297
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeContext:Lcom/fasterxml/jackson/core/json/JsonWriteContext;
            invokevirtual com.fasterxml.jackson.core.json.JsonWriteContext.createChildObjectContext:()Lcom/fasterxml/jackson/core/json/JsonWriteContext;
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeContext:Lcom/fasterxml/jackson/core/json/JsonWriteContext;
         2: .line 298
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._cfgPrettyPrinter:Lcom/fasterxml/jackson/core/PrettyPrinter;
            ifnull 5
         3: .line 299
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._cfgPrettyPrinter:Lcom/fasterxml/jackson/core/PrettyPrinter;
            aload 0 /* this */
            invokeinterface com.fasterxml.jackson.core.PrettyPrinter.writeStartObject:(Lcom/fasterxml/jackson/core/JsonGenerator;)V
         4: .line 300
            goto 8
         5: .line 301
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmplt 7
         6: .line 302
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
         7: .line 304
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            bipush 123
            castore
         8: .line 306
      StackMap locals:
      StackMap stack:
            return
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
    Exceptions:
      throws java.io.IOException

  public void writeStartObject(java.lang.Object);
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // java.lang.Object forValue
         0: .line 311
            aload 0 /* this */
            ldc "start an object"
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._verifyValueWrite:(Ljava/lang/String;)V
         1: .line 312
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeContext:Lcom/fasterxml/jackson/core/json/JsonWriteContext;
            aload 1 /* forValue */
            invokevirtual com.fasterxml.jackson.core.json.JsonWriteContext.createChildObjectContext:(Ljava/lang/Object;)Lcom/fasterxml/jackson/core/json/JsonWriteContext;
            astore 2 /* ctxt */
        start local 2 // com.fasterxml.jackson.core.json.JsonWriteContext ctxt
         2: .line 313
            aload 0 /* this */
            aload 2 /* ctxt */
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeContext:Lcom/fasterxml/jackson/core/json/JsonWriteContext;
         3: .line 314
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._cfgPrettyPrinter:Lcom/fasterxml/jackson/core/PrettyPrinter;
            ifnull 6
         4: .line 315
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._cfgPrettyPrinter:Lcom/fasterxml/jackson/core/PrettyPrinter;
            aload 0 /* this */
            invokeinterface com.fasterxml.jackson.core.PrettyPrinter.writeStartObject:(Lcom/fasterxml/jackson/core/JsonGenerator;)V
         5: .line 316
            goto 9
         6: .line 317
      StackMap locals: com.fasterxml.jackson.core.json.JsonWriteContext
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmplt 8
         7: .line 318
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
         8: .line 320
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            bipush 123
            castore
         9: .line 322
      StackMap locals:
      StackMap stack:
            return
        end local 2 // com.fasterxml.jackson.core.json.JsonWriteContext ctxt
        end local 1 // java.lang.Object forValue
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   10     0      this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0   10     1  forValue  Ljava/lang/Object;
            2   10     2      ctxt  Lcom/fasterxml/jackson/core/json/JsonWriteContext;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      forValue  

  public void writeEndObject();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
         0: .line 327
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeContext:Lcom/fasterxml/jackson/core/json/JsonWriteContext;
            invokevirtual com.fasterxml.jackson.core.json.JsonWriteContext.inObject:()Z
            ifne 2
         1: .line 328
            aload 0 /* this */
            new java.lang.StringBuilder
            dup
            ldc "Current context not Object but "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeContext:Lcom/fasterxml/jackson/core/json/JsonWriteContext;
            invokevirtual com.fasterxml.jackson.core.json.JsonWriteContext.typeDesc:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._reportError:(Ljava/lang/String;)V
         2: .line 330
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._cfgPrettyPrinter:Lcom/fasterxml/jackson/core/PrettyPrinter;
            ifnull 5
         3: .line 331
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._cfgPrettyPrinter:Lcom/fasterxml/jackson/core/PrettyPrinter;
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeContext:Lcom/fasterxml/jackson/core/json/JsonWriteContext;
            invokevirtual com.fasterxml.jackson.core.json.JsonWriteContext.getEntryCount:()I
            invokeinterface com.fasterxml.jackson.core.PrettyPrinter.writeEndObject:(Lcom/fasterxml/jackson/core/JsonGenerator;I)V
         4: .line 332
            goto 8
         5: .line 333
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmplt 7
         6: .line 334
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
         7: .line 336
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            bipush 125
            castore
         8: .line 338
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeContext:Lcom/fasterxml/jackson/core/json/JsonWriteContext;
            invokevirtual com.fasterxml.jackson.core.json.JsonWriteContext.clearAndGetParent:()Lcom/fasterxml/jackson/core/json/JsonWriteContext;
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeContext:Lcom/fasterxml/jackson/core/json/JsonWriteContext;
         9: .line 339
            return
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
    Exceptions:
      throws java.io.IOException

  protected final void _writePPFieldName(java.lang.String, boolean);
    descriptor: (Ljava/lang/String;Z)V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // java.lang.String name
        start local 2 // boolean commaBefore
         0: .line 347
            iload 2 /* commaBefore */
            ifeq 3
         1: .line 348
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._cfgPrettyPrinter:Lcom/fasterxml/jackson/core/PrettyPrinter;
            aload 0 /* this */
            invokeinterface com.fasterxml.jackson.core.PrettyPrinter.writeObjectEntrySeparator:(Lcom/fasterxml/jackson/core/JsonGenerator;)V
         2: .line 349
            goto 4
         3: .line 350
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._cfgPrettyPrinter:Lcom/fasterxml/jackson/core/PrettyPrinter;
            aload 0 /* this */
            invokeinterface com.fasterxml.jackson.core.PrettyPrinter.beforeObjectEntries:(Lcom/fasterxml/jackson/core/JsonGenerator;)V
         4: .line 353
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._cfgUnqNames:Z
            ifeq 7
         5: .line 354
            aload 0 /* this */
            aload 1 /* name */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeString:(Ljava/lang/String;)V
         6: .line 355
            goto 14
         7: .line 356
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmplt 9
         8: .line 357
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
         9: .line 359
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._quoteChar:C
            castore
        10: .line 360
            aload 0 /* this */
            aload 1 /* name */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeString:(Ljava/lang/String;)V
        11: .line 361
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmplt 13
        12: .line 362
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
        13: .line 364
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._quoteChar:C
            castore
        14: .line 366
      StackMap locals:
      StackMap stack:
            return
        end local 2 // boolean commaBefore
        end local 1 // java.lang.String name
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   15     0         this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0   15     1         name  Ljava/lang/String;
            0   15     2  commaBefore  Z
    Exceptions:
      throws java.io.IOException
    MethodParameters:
             Name  Flags
      name         
      commaBefore  

  protected final void _writePPFieldName(com.fasterxml.jackson.core.SerializableString, boolean);
    descriptor: (Lcom/fasterxml/jackson/core/SerializableString;Z)V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // com.fasterxml.jackson.core.SerializableString name
        start local 2 // boolean commaBefore
         0: .line 370
            iload 2 /* commaBefore */
            ifeq 3
         1: .line 371
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._cfgPrettyPrinter:Lcom/fasterxml/jackson/core/PrettyPrinter;
            aload 0 /* this */
            invokeinterface com.fasterxml.jackson.core.PrettyPrinter.writeObjectEntrySeparator:(Lcom/fasterxml/jackson/core/JsonGenerator;)V
         2: .line 372
            goto 4
         3: .line 373
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._cfgPrettyPrinter:Lcom/fasterxml/jackson/core/PrettyPrinter;
            aload 0 /* this */
            invokeinterface com.fasterxml.jackson.core.PrettyPrinter.beforeObjectEntries:(Lcom/fasterxml/jackson/core/JsonGenerator;)V
         4: .line 375
      StackMap locals:
      StackMap stack:
            aload 1 /* name */
            invokeinterface com.fasterxml.jackson.core.SerializableString.asQuotedChars:()[C
            astore 3 /* quoted */
        start local 3 // char[] quoted
         5: .line 376
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._cfgUnqNames:Z
            ifeq 8
         6: .line 377
            aload 0 /* this */
            aload 3 /* quoted */
            iconst_0
            aload 3 /* quoted */
            arraylength
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.writeRaw:([CII)V
         7: .line 378
            goto 15
         8: .line 379
      StackMap locals: char[]
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmplt 10
         9: .line 380
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
        10: .line 382
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._quoteChar:C
            castore
        11: .line 383
            aload 0 /* this */
            aload 3 /* quoted */
            iconst_0
            aload 3 /* quoted */
            arraylength
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.writeRaw:([CII)V
        12: .line 384
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmplt 14
        13: .line 385
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
        14: .line 387
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._quoteChar:C
            castore
        15: .line 389
      StackMap locals:
      StackMap stack:
            return
        end local 3 // char[] quoted
        end local 2 // boolean commaBefore
        end local 1 // com.fasterxml.jackson.core.SerializableString name
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   16     0         this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0   16     1         name  Lcom/fasterxml/jackson/core/SerializableString;
            0   16     2  commaBefore  Z
            5   16     3       quoted  [C
    Exceptions:
      throws java.io.IOException
    MethodParameters:
             Name  Flags
      name         
      commaBefore  

  public void writeString(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // java.lang.String text
         0: .line 400
            aload 0 /* this */
            ldc "write a string"
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._verifyValueWrite:(Ljava/lang/String;)V
         1: .line 401
            aload 1 /* text */
            ifnonnull 4
         2: .line 402
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeNull:()V
         3: .line 403
            return
         4: .line 405
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmplt 6
         5: .line 406
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
         6: .line 408
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._quoteChar:C
            castore
         7: .line 409
            aload 0 /* this */
            aload 1 /* text */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeString:(Ljava/lang/String;)V
         8: .line 411
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmplt 10
         9: .line 412
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
        10: .line 414
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._quoteChar:C
            castore
        11: .line 415
            return
        end local 1 // java.lang.String text
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0   12     1  text  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      text  

  public void writeString(java.io.Reader, int);
    descriptor: (Ljava/io/Reader;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=7, args_size=3
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // java.io.Reader reader
        start local 2 // int len
         0: .line 419
            aload 0 /* this */
            ldc "write a string"
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._verifyValueWrite:(Ljava/lang/String;)V
         1: .line 420
            aload 1 /* reader */
            ifnonnull 3
         2: .line 421
            aload 0 /* this */
            ldc "null reader"
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._reportError:(Ljava/lang/String;)V
         3: .line 423
      StackMap locals:
      StackMap stack:
            iload 2 /* len */
            iflt 4
            iload 2 /* len */
            goto 5
      StackMap locals:
      StackMap stack:
         4: ldc 2147483647
      StackMap locals:
      StackMap stack: int
         5: istore 3 /* toRead */
        start local 3 // int toRead
         6: .line 425
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iload 2 /* len */
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmplt 8
         7: .line 426
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
         8: .line 428
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._quoteChar:C
            castore
         9: .line 430
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._allocateCopyBuffer:()[C
            astore 4 /* buf */
        start local 4 // char[] buf
        10: .line 432
            goto 19
        11: .line 433
      StackMap locals: char[]
      StackMap stack:
            iload 3 /* toRead */
            aload 4 /* buf */
            arraylength
            invokestatic java.lang.Math.min:(II)I
            istore 5 /* toReadNow */
        start local 5 // int toReadNow
        12: .line 434
            aload 1 /* reader */
            aload 4 /* buf */
            iconst_0
            iload 5 /* toReadNow */
            invokevirtual java.io.Reader.read:([CII)I
            istore 6 /* numRead */
        start local 6 // int numRead
        13: .line 435
            iload 6 /* numRead */
            ifgt 15
        14: .line 436
            goto 20
        15: .line 438
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iload 2 /* len */
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmplt 17
        16: .line 439
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
        17: .line 441
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 4 /* buf */
            iconst_0
            iload 6 /* numRead */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeString:([CII)V
        18: .line 444
            iload 3 /* toRead */
            iload 6 /* numRead */
            isub
            istore 3 /* toRead */
        end local 6 // int numRead
        end local 5 // int toReadNow
        19: .line 432
      StackMap locals:
      StackMap stack:
            iload 3 /* toRead */
            ifgt 11
        20: .line 447
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iload 2 /* len */
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmplt 22
        21: .line 448
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
        22: .line 450
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._quoteChar:C
            castore
        23: .line 452
            iload 3 /* toRead */
            ifle 25
            iload 2 /* len */
            iflt 25
        24: .line 453
            aload 0 /* this */
            ldc "Didn't read enough from reader"
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._reportError:(Ljava/lang/String;)V
        25: .line 455
      StackMap locals:
      StackMap stack:
            return
        end local 4 // char[] buf
        end local 3 // int toRead
        end local 2 // int len
        end local 1 // java.io.Reader reader
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   26     0       this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0   26     1     reader  Ljava/io/Reader;
            0   26     2        len  I
            6   26     3     toRead  I
           10   26     4        buf  [C
           12   19     5  toReadNow  I
           13   19     6    numRead  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      reader  
      len     

  public void writeString(char[], int, int);
    descriptor: ([CII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // char[] text
        start local 2 // int offset
        start local 3 // int len
         0: .line 460
            aload 0 /* this */
            ldc "write a string"
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._verifyValueWrite:(Ljava/lang/String;)V
         1: .line 461
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmplt 3
         2: .line 462
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
         3: .line 464
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._quoteChar:C
            castore
         4: .line 465
            aload 0 /* this */
            aload 1 /* text */
            iload 2 /* offset */
            iload 3 /* len */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeString:([CII)V
         5: .line 467
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmplt 7
         6: .line 468
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
         7: .line 470
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._quoteChar:C
            castore
         8: .line 471
            return
        end local 3 // int len
        end local 2 // int offset
        end local 1 // char[] text
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0    9     1    text  [C
            0    9     2  offset  I
            0    9     3     len  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      text    
      offset  
      len     

  public void writeString(com.fasterxml.jackson.core.SerializableString);
    descriptor: (Lcom/fasterxml/jackson/core/SerializableString;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // com.fasterxml.jackson.core.SerializableString sstr
         0: .line 476
            aload 0 /* this */
            ldc "write a string"
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._verifyValueWrite:(Ljava/lang/String;)V
         1: .line 477
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmplt 3
         2: .line 478
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
         3: .line 480
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._quoteChar:C
            castore
         4: .line 481
            aload 1 /* sstr */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            invokeinterface com.fasterxml.jackson.core.SerializableString.appendQuoted:([CI)I
            istore 2 /* len */
        start local 2 // int len
         5: .line 482
            iload 2 /* len */
            ifge 8
         6: .line 483
            aload 0 /* this */
            aload 1 /* sstr */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeString2:(Lcom/fasterxml/jackson/core/SerializableString;)V
         7: .line 484
            return
         8: .line 486
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iload 2 /* len */
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
         9: .line 487
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmplt 11
        10: .line 488
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
        11: .line 490
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._quoteChar:C
            castore
        12: .line 491
            return
        end local 2 // int len
        end local 1 // com.fasterxml.jackson.core.SerializableString sstr
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     0  this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0   13     1  sstr  Lcom/fasterxml/jackson/core/SerializableString;
            5   13     2   len  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      sstr  

  private void _writeString2(com.fasterxml.jackson.core.SerializableString);
    descriptor: (Lcom/fasterxml/jackson/core/SerializableString;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=5, args_size=2
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // com.fasterxml.jackson.core.SerializableString sstr
         0: .line 496
            aload 1 /* sstr */
            invokeinterface com.fasterxml.jackson.core.SerializableString.asQuotedChars:()[C
            astore 2 /* text */
        start local 2 // char[] text
         1: .line 497
            aload 2 /* text */
            arraylength
            istore 3 /* len */
        start local 3 // int len
         2: .line 498
            iload 3 /* len */
            bipush 32
            if_icmpge 9
         3: .line 499
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            isub
            istore 4 /* room */
        start local 4 // int room
         4: .line 500
            iload 3 /* len */
            iload 4 /* room */
            if_icmple 6
         5: .line 501
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
         6: .line 503
      StackMap locals: char[] int int
      StackMap stack:
            aload 2 /* text */
            iconst_0
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iload 3 /* len */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         7: .line 504
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iload 3 /* len */
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
        end local 4 // int room
         8: .line 505
            goto 11
         9: .line 506
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
        10: .line 507
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writer:Ljava/io/Writer;
            aload 2 /* text */
            iconst_0
            iload 3 /* len */
            invokevirtual java.io.Writer.write:([CII)V
        11: .line 509
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmplt 13
        12: .line 510
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
        13: .line 512
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._quoteChar:C
            castore
        14: .line 513
            return
        end local 3 // int len
        end local 2 // char[] text
        end local 1 // com.fasterxml.jackson.core.SerializableString sstr
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   15     0  this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0   15     1  sstr  Lcom/fasterxml/jackson/core/SerializableString;
            1   15     2  text  [C
            2   15     3   len  I
            4    8     4  room  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      sstr  

  public void writeRawUTF8String(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=4, args_size=4
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // byte[] text
        start local 2 // int offset
        start local 3 // int length
         0: .line 518
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._reportUnsupportedOperation:()V
         1: .line 519
            return
        end local 3 // int length
        end local 2 // int offset
        end local 1 // byte[] text
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0    2     1    text  [B
            0    2     2  offset  I
            0    2     3  length  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      text    
      offset  
      length  

  public void writeUTF8String(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=4, args_size=4
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // byte[] text
        start local 2 // int offset
        start local 3 // int length
         0: .line 524
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._reportUnsupportedOperation:()V
         1: .line 525
            return
        end local 3 // int length
        end local 2 // int offset
        end local 1 // byte[] text
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0    2     1    text  [B
            0    2     2  offset  I
            0    2     3  length  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      text    
      offset  
      length  

  public void writeRaw(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // java.lang.String text
         0: .line 537
            aload 1 /* text */
            invokevirtual java.lang.String.length:()I
            istore 2 /* len */
        start local 2 // int len
         1: .line 538
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            isub
            istore 3 /* room */
        start local 3 // int room
         2: .line 540
            iload 3 /* room */
            ifne 5
         3: .line 541
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
         4: .line 542
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            isub
            istore 3 /* room */
         5: .line 545
      StackMap locals: int int
      StackMap stack:
            iload 3 /* room */
            iload 2 /* len */
            if_icmplt 9
         6: .line 546
            aload 1 /* text */
            iconst_0
            iload 2 /* len */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            invokevirtual java.lang.String.getChars:(II[CI)V
         7: .line 547
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iload 2 /* len */
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
         8: .line 548
            goto 10
         9: .line 549
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* text */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.writeRawLong:(Ljava/lang/String;)V
        10: .line 551
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int room
        end local 2 // int len
        end local 1 // java.lang.String text
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0   11     1  text  Ljava/lang/String;
            1   11     2   len  I
            2   11     3  room  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      text  

  public void writeRaw(java.lang.String, int, int);
    descriptor: (Ljava/lang/String;II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // java.lang.String text
        start local 2 // int start
        start local 3 // int len
         0: .line 557
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            isub
            istore 4 /* room */
        start local 4 // int room
         1: .line 559
            iload 4 /* room */
            iload 3 /* len */
            if_icmpge 4
         2: .line 560
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
         3: .line 561
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            isub
            istore 4 /* room */
         4: .line 564
      StackMap locals: int
      StackMap stack:
            iload 4 /* room */
            iload 3 /* len */
            if_icmplt 8
         5: .line 565
            aload 1 /* text */
            iload 2 /* start */
            iload 2 /* start */
            iload 3 /* len */
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            invokevirtual java.lang.String.getChars:(II[CI)V
         6: .line 566
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iload 3 /* len */
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
         7: .line 567
            goto 9
         8: .line 568
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* text */
            iload 2 /* start */
            iload 2 /* start */
            iload 3 /* len */
            iadd
            invokevirtual java.lang.String.substring:(II)Ljava/lang/String;
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.writeRawLong:(Ljava/lang/String;)V
         9: .line 570
      StackMap locals:
      StackMap stack:
            return
        end local 4 // int room
        end local 3 // int len
        end local 2 // int start
        end local 1 // java.lang.String text
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0   10     1   text  Ljava/lang/String;
            0   10     2  start  I
            0   10     3    len  I
            1   10     4   room  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
       Name  Flags
      text   
      start  
      len    

  public void writeRaw(com.fasterxml.jackson.core.SerializableString);
    descriptor: (Lcom/fasterxml/jackson/core/SerializableString;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // com.fasterxml.jackson.core.SerializableString text
         0: .line 575
            aload 1 /* text */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            invokeinterface com.fasterxml.jackson.core.SerializableString.appendUnquoted:([CI)I
            istore 2 /* len */
        start local 2 // int len
         1: .line 576
            iload 2 /* len */
            ifge 4
         2: .line 577
            aload 0 /* this */
            aload 1 /* text */
            invokeinterface com.fasterxml.jackson.core.SerializableString.getValue:()Ljava/lang/String;
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.writeRaw:(Ljava/lang/String;)V
         3: .line 578
            return
         4: .line 580
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iload 2 /* len */
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
         5: .line 581
            return
        end local 2 // int len
        end local 1 // com.fasterxml.jackson.core.SerializableString text
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0    6     1  text  Lcom/fasterxml/jackson/core/SerializableString;
            1    6     2   len  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      text  

  public void writeRaw(char[], int, int);
    descriptor: ([CII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // char[] text
        start local 2 // int offset
        start local 3 // int len
         0: .line 587
            iload 3 /* len */
            bipush 32
            if_icmpge 7
         1: .line 588
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            isub
            istore 4 /* room */
        start local 4 // int room
         2: .line 589
            iload 3 /* len */
            iload 4 /* room */
            if_icmple 4
         3: .line 590
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
         4: .line 592
      StackMap locals: int
      StackMap stack:
            aload 1 /* text */
            iload 2 /* offset */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iload 3 /* len */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         5: .line 593
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iload 3 /* len */
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
         6: .line 594
            return
        end local 4 // int room
         7: .line 597
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
         8: .line 598
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writer:Ljava/io/Writer;
            aload 1 /* text */
            iload 2 /* offset */
            iload 3 /* len */
            invokevirtual java.io.Writer.write:([CII)V
         9: .line 599
            return
        end local 3 // int len
        end local 2 // int offset
        end local 1 // char[] text
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   10     0    this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0   10     1    text  [C
            0   10     2  offset  I
            0   10     3     len  I
            2    7     4    room  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      text    
      offset  
      len     

  public void writeRaw(char);
    descriptor: (C)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // char c
         0: .line 604
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmplt 2
         1: .line 605
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
         2: .line 607
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iload 1 /* c */
            castore
         3: .line 608
            return
        end local 1 // char c
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0    4     1     c  C
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      c     

  private void writeRawLong(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=6, args_size=2
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // java.lang.String text
         0: .line 612
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            isub
            istore 2 /* room */
        start local 2 // int room
         1: .line 614
            aload 1 /* text */
            iconst_0
            iload 2 /* room */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            invokevirtual java.lang.String.getChars:(II[CI)V
         2: .line 615
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iload 2 /* room */
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
         3: .line 616
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
         4: .line 617
            iload 2 /* room */
            istore 3 /* offset */
        start local 3 // int offset
         5: .line 618
            aload 1 /* text */
            invokevirtual java.lang.String.length:()I
            iload 2 /* room */
            isub
            istore 4 /* len */
        start local 4 // int len
         6: .line 620
            goto 14
         7: .line 621
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            istore 5 /* amount */
        start local 5 // int amount
         8: .line 622
            aload 1 /* text */
            iload 3 /* offset */
            iload 3 /* offset */
            iload 5 /* amount */
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            iconst_0
            invokevirtual java.lang.String.getChars:(II[CI)V
         9: .line 623
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputHead:I
        10: .line 624
            aload 0 /* this */
            iload 5 /* amount */
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
        11: .line 625
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
        12: .line 626
            iload 3 /* offset */
            iload 5 /* amount */
            iadd
            istore 3 /* offset */
        13: .line 627
            iload 4 /* len */
            iload 5 /* amount */
            isub
            istore 4 /* len */
        end local 5 // int amount
        14: .line 620
      StackMap locals:
      StackMap stack:
            iload 4 /* len */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmpgt 7
        15: .line 630
            aload 1 /* text */
            iload 3 /* offset */
            iload 3 /* offset */
            iload 4 /* len */
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            iconst_0
            invokevirtual java.lang.String.getChars:(II[CI)V
        16: .line 631
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputHead:I
        17: .line 632
            aload 0 /* this */
            iload 4 /* len */
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
        18: .line 633
            return
        end local 4 // int len
        end local 3 // int offset
        end local 2 // int room
        end local 1 // java.lang.String text
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   19     0    this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0   19     1    text  Ljava/lang/String;
            1   19     2    room  I
            5   19     3  offset  I
            6   19     4     len  I
            8   14     5  amount  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      text  

  public void writeBinary(com.fasterxml.jackson.core.Base64Variant, byte[], int, int);
    descriptor: (Lcom/fasterxml/jackson/core/Base64Variant;[BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=5
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // com.fasterxml.jackson.core.Base64Variant b64variant
        start local 2 // byte[] data
        start local 3 // int offset
        start local 4 // int len
         0: .line 645
            aload 0 /* this */
            ldc "write a binary value"
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._verifyValueWrite:(Ljava/lang/String;)V
         1: .line 647
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmplt 3
         2: .line 648
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
         3: .line 650
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._quoteChar:C
            castore
         4: .line 651
            aload 0 /* this */
            aload 1 /* b64variant */
            aload 2 /* data */
            iload 3 /* offset */
            iload 3 /* offset */
            iload 4 /* len */
            iadd
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeBinary:(Lcom/fasterxml/jackson/core/Base64Variant;[BII)V
         5: .line 653
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmplt 7
         6: .line 654
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
         7: .line 656
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._quoteChar:C
            castore
         8: .line 657
            return
        end local 4 // int len
        end local 3 // int offset
        end local 2 // byte[] data
        end local 1 // com.fasterxml.jackson.core.Base64Variant b64variant
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    9     0        this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0    9     1  b64variant  Lcom/fasterxml/jackson/core/Base64Variant;
            0    9     2        data  [B
            0    9     3      offset  I
            0    9     4         len  I
    Exceptions:
      throws java.io.IOException, com.fasterxml.jackson.core.JsonGenerationException
    MethodParameters:
            Name  Flags
      b64variant  
      data        
      offset      
      len         

  public int writeBinary(com.fasterxml.jackson.core.Base64Variant, java.io.InputStream, int);
    descriptor: (Lcom/fasterxml/jackson/core/Base64Variant;Ljava/io/InputStream;I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=8, args_size=4
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // com.fasterxml.jackson.core.Base64Variant b64variant
        start local 2 // java.io.InputStream data
        start local 3 // int dataLength
         0: .line 664
            aload 0 /* this */
            ldc "write a binary value"
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._verifyValueWrite:(Ljava/lang/String;)V
         1: .line 666
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmplt 3
         2: .line 667
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
         3: .line 669
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._quoteChar:C
            castore
         4: .line 670
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._ioContext:Lcom/fasterxml/jackson/core/io/IOContext;
            invokevirtual com.fasterxml.jackson.core.io.IOContext.allocBase64Buffer:()[B
            astore 4 /* encodingBuffer */
        start local 4 // byte[] encodingBuffer
         5: .line 673
            iload 3 /* dataLength */
            ifge 8
         6: .line 674
            aload 0 /* this */
            aload 1 /* b64variant */
            aload 2 /* data */
            aload 4 /* encodingBuffer */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeBinary:(Lcom/fasterxml/jackson/core/Base64Variant;Ljava/io/InputStream;[B)I
            istore 5 /* bytes */
        start local 5 // int bytes
         7: .line 675
            goto 16
        end local 5 // int bytes
         8: .line 676
      StackMap locals: byte[]
      StackMap stack:
            aload 0 /* this */
            aload 1 /* b64variant */
            aload 2 /* data */
            aload 4 /* encodingBuffer */
            iload 3 /* dataLength */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeBinary:(Lcom/fasterxml/jackson/core/Base64Variant;Ljava/io/InputStream;[BI)I
            istore 6 /* missing */
        start local 6 // int missing
         9: .line 677
            iload 6 /* missing */
            ifle 11
        10: .line 678
            aload 0 /* this */
            new java.lang.StringBuilder
            dup
            ldc "Too few bytes available: missing "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 6 /* missing */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " bytes (out of "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 3 /* dataLength */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._reportError:(Ljava/lang/String;)V
        11: .line 680
      StackMap locals: com.fasterxml.jackson.core.json.WriterBasedJsonGenerator com.fasterxml.jackson.core.Base64Variant java.io.InputStream int byte[] top int
      StackMap stack:
            iload 3 /* dataLength */
            istore 5 /* bytes */
        end local 6 // int missing
        start local 5 // int bytes
        12: .line 682
            goto 16
        end local 5 // int bytes
      StackMap locals: com.fasterxml.jackson.core.json.WriterBasedJsonGenerator com.fasterxml.jackson.core.Base64Variant java.io.InputStream int byte[]
      StackMap stack: java.lang.Throwable
        13: astore 7
        14: .line 683
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._ioContext:Lcom/fasterxml/jackson/core/io/IOContext;
            aload 4 /* encodingBuffer */
            invokevirtual com.fasterxml.jackson.core.io.IOContext.releaseBase64Buffer:([B)V
        15: .line 684
            aload 7
            athrow
        start local 5 // int bytes
        16: .line 683
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._ioContext:Lcom/fasterxml/jackson/core/io/IOContext;
            aload 4 /* encodingBuffer */
            invokevirtual com.fasterxml.jackson.core.io.IOContext.releaseBase64Buffer:([B)V
        17: .line 686
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmplt 19
        18: .line 687
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
        19: .line 689
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._quoteChar:C
            castore
        20: .line 690
            iload 5 /* bytes */
            ireturn
        end local 5 // int bytes
        end local 4 // byte[] encodingBuffer
        end local 3 // int dataLength
        end local 2 // java.io.InputStream data
        end local 1 // com.fasterxml.jackson.core.Base64Variant b64variant
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   21     0            this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0   21     1      b64variant  Lcom/fasterxml/jackson/core/Base64Variant;
            0   21     2            data  Ljava/io/InputStream;
            0   21     3      dataLength  I
            5   21     4  encodingBuffer  [B
            7    8     5           bytes  I
           12   13     5           bytes  I
           16   21     5           bytes  I
            9   12     6         missing  I
      Exception table:
        from    to  target  type
           5    13      13  any
    Exceptions:
      throws java.io.IOException, com.fasterxml.jackson.core.JsonGenerationException
    MethodParameters:
            Name  Flags
      b64variant  
      data        
      dataLength  

  public void writeNumber(short);
    descriptor: (S)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // short s
         0: .line 702
            aload 0 /* this */
            ldc "write a number"
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._verifyValueWrite:(Ljava/lang/String;)V
         1: .line 703
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._cfgNumbersAsStrings:Z
            ifeq 4
         2: .line 704
            aload 0 /* this */
            iload 1 /* s */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeQuotedShort:(S)V
         3: .line 705
            return
         4: .line 708
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            bipush 6
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmplt 6
         5: .line 709
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
         6: .line 711
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* s */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            invokestatic com.fasterxml.jackson.core.io.NumberOutput.outputInt:(I[CI)I
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
         7: .line 712
            return
        end local 1 // short s
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0    8     1     s  S
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      s     

  private void _writeQuotedShort(short);
    descriptor: (S)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // short s
         0: .line 715
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            bipush 8
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmplt 2
         1: .line 716
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
         2: .line 718
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._quoteChar:C
            castore
         3: .line 719
            aload 0 /* this */
            iload 1 /* s */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            invokestatic com.fasterxml.jackson.core.io.NumberOutput.outputInt:(I[CI)I
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
         4: .line 720
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._quoteChar:C
            castore
         5: .line 721
            return
        end local 1 // short s
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0    6     1     s  S
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      s     

  public void writeNumber(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // int i
         0: .line 726
            aload 0 /* this */
            ldc "write a number"
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._verifyValueWrite:(Ljava/lang/String;)V
         1: .line 727
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._cfgNumbersAsStrings:Z
            ifeq 4
         2: .line 728
            aload 0 /* this */
            iload 1 /* i */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeQuotedInt:(I)V
         3: .line 729
            return
         4: .line 732
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            bipush 11
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmplt 6
         5: .line 733
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
         6: .line 735
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* i */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            invokestatic com.fasterxml.jackson.core.io.NumberOutput.outputInt:(I[CI)I
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
         7: .line 736
            return
        end local 1 // int i
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0    8     1     i  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      i     

  private void _writeQuotedInt(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // int i
         0: .line 739
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            bipush 13
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmplt 2
         1: .line 740
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
         2: .line 742
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._quoteChar:C
            castore
         3: .line 743
            aload 0 /* this */
            iload 1 /* i */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            invokestatic com.fasterxml.jackson.core.io.NumberOutput.outputInt:(I[CI)I
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
         4: .line 744
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._quoteChar:C
            castore
         5: .line 745
            return
        end local 1 // int i
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0    6     1     i  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      i     

  public void writeNumber(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // long l
         0: .line 750
            aload 0 /* this */
            ldc "write a number"
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._verifyValueWrite:(Ljava/lang/String;)V
         1: .line 751
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._cfgNumbersAsStrings:Z
            ifeq 4
         2: .line 752
            aload 0 /* this */
            lload 1 /* l */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeQuotedLong:(J)V
         3: .line 753
            return
         4: .line 755
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            bipush 21
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmplt 6
         5: .line 757
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
         6: .line 759
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            lload 1 /* l */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            invokestatic com.fasterxml.jackson.core.io.NumberOutput.outputLong:(J[CI)I
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
         7: .line 760
            return
        end local 1 // long l
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0    8     1     l  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      l     

  private void _writeQuotedLong(long);
    descriptor: (J)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // long l
         0: .line 763
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            bipush 23
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmplt 2
         1: .line 764
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
         2: .line 766
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._quoteChar:C
            castore
         3: .line 767
            aload 0 /* this */
            lload 1 /* l */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            invokestatic com.fasterxml.jackson.core.io.NumberOutput.outputLong:(J[CI)I
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
         4: .line 768
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._quoteChar:C
            castore
         5: .line 769
            return
        end local 1 // long l
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0    6     1     l  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      l     

  public void writeNumber(java.math.BigInteger);
    descriptor: (Ljava/math/BigInteger;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // java.math.BigInteger value
         0: .line 776
            aload 0 /* this */
            ldc "write a number"
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._verifyValueWrite:(Ljava/lang/String;)V
         1: .line 777
            aload 1 /* value */
            ifnonnull 4
         2: .line 778
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeNull:()V
         3: .line 779
            goto 8
      StackMap locals:
      StackMap stack:
         4: aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._cfgNumbersAsStrings:Z
            ifeq 7
         5: .line 780
            aload 0 /* this */
            aload 1 /* value */
            invokevirtual java.math.BigInteger.toString:()Ljava/lang/String;
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeQuotedRaw:(Ljava/lang/String;)V
         6: .line 781
            goto 8
         7: .line 782
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* value */
            invokevirtual java.math.BigInteger.toString:()Ljava/lang/String;
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.writeRaw:(Ljava/lang/String;)V
         8: .line 784
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.math.BigInteger value
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0    9     1  value  Ljava/math/BigInteger;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
       Name  Flags
      value  

  public void writeNumber(double);
    descriptor: (D)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // double d
         0: .line 790
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._cfgNumbersAsStrings:Z
            ifne 2
         1: .line 791
            dload 1 /* d */
            invokestatic com.fasterxml.jackson.core.io.NumberOutput.notFinite:(D)Z
            ifeq 4
            aload 0 /* this */
            getstatic com.fasterxml.jackson.core.JsonGenerator$Feature.QUOTE_NON_NUMERIC_NUMBERS:Lcom/fasterxml/jackson/core/JsonGenerator$Feature;
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.isEnabled:(Lcom/fasterxml/jackson/core/JsonGenerator$Feature;)Z
            ifeq 4
         2: .line 792
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dload 1 /* d */
            invokestatic java.lang.String.valueOf:(D)Ljava/lang/String;
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.writeString:(Ljava/lang/String;)V
         3: .line 793
            return
         4: .line 796
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            ldc "write a number"
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._verifyValueWrite:(Ljava/lang/String;)V
         5: .line 797
            aload 0 /* this */
            dload 1 /* d */
            invokestatic java.lang.String.valueOf:(D)Ljava/lang/String;
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.writeRaw:(Ljava/lang/String;)V
         6: .line 798
            return
        end local 1 // double d
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0    7     1     d  D
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      d     

  public void writeNumber(float);
    descriptor: (F)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // float f
         0: .line 804
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._cfgNumbersAsStrings:Z
            ifne 2
         1: .line 805
            fload 1 /* f */
            invokestatic com.fasterxml.jackson.core.io.NumberOutput.notFinite:(F)Z
            ifeq 4
            aload 0 /* this */
            getstatic com.fasterxml.jackson.core.JsonGenerator$Feature.QUOTE_NON_NUMERIC_NUMBERS:Lcom/fasterxml/jackson/core/JsonGenerator$Feature;
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.isEnabled:(Lcom/fasterxml/jackson/core/JsonGenerator$Feature;)Z
            ifeq 4
         2: .line 806
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            fload 1 /* f */
            invokestatic java.lang.String.valueOf:(F)Ljava/lang/String;
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.writeString:(Ljava/lang/String;)V
         3: .line 807
            return
         4: .line 810
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            ldc "write a number"
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._verifyValueWrite:(Ljava/lang/String;)V
         5: .line 811
            aload 0 /* this */
            fload 1 /* f */
            invokestatic java.lang.String.valueOf:(F)Ljava/lang/String;
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.writeRaw:(Ljava/lang/String;)V
         6: .line 812
            return
        end local 1 // float f
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0    7     1     f  F
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      f     

  public void writeNumber(java.math.BigDecimal);
    descriptor: (Ljava/math/BigDecimal;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // java.math.BigDecimal value
         0: .line 818
            aload 0 /* this */
            ldc "write a number"
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._verifyValueWrite:(Ljava/lang/String;)V
         1: .line 819
            aload 1 /* value */
            ifnonnull 4
         2: .line 820
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeNull:()V
         3: .line 821
            goto 8
      StackMap locals:
      StackMap stack:
         4: aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._cfgNumbersAsStrings:Z
            ifeq 7
         5: .line 822
            aload 0 /* this */
            aload 0 /* this */
            aload 1 /* value */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._asString:(Ljava/math/BigDecimal;)Ljava/lang/String;
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeQuotedRaw:(Ljava/lang/String;)V
         6: .line 823
            goto 8
         7: .line 824
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            aload 1 /* value */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._asString:(Ljava/math/BigDecimal;)Ljava/lang/String;
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.writeRaw:(Ljava/lang/String;)V
         8: .line 826
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.math.BigDecimal value
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0    9     1  value  Ljava/math/BigDecimal;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
       Name  Flags
      value  

  public void writeNumber(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // java.lang.String encodedValue
         0: .line 831
            aload 0 /* this */
            ldc "write a number"
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._verifyValueWrite:(Ljava/lang/String;)V
         1: .line 832
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._cfgNumbersAsStrings:Z
            ifeq 4
         2: .line 833
            aload 0 /* this */
            aload 1 /* encodedValue */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeQuotedRaw:(Ljava/lang/String;)V
         3: .line 834
            goto 5
         4: .line 835
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* encodedValue */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.writeRaw:(Ljava/lang/String;)V
         5: .line 837
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.String encodedValue
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    6     0          this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0    6     1  encodedValue  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
              Name  Flags
      encodedValue  

  public void writeNumber(char[], int, int);
    descriptor: ([CII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // char[] encodedValueBuffer
        start local 2 // int offset
        start local 3 // int length
         0: .line 841
            aload 0 /* this */
            ldc "write a number"
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._verifyValueWrite:(Ljava/lang/String;)V
         1: .line 842
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._cfgNumbersAsStrings:Z
            ifeq 4
         2: .line 843
            aload 0 /* this */
            aload 1 /* encodedValueBuffer */
            iload 2 /* offset */
            iload 3 /* length */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeQuotedRaw:([CII)V
         3: .line 844
            goto 5
         4: .line 845
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* encodedValueBuffer */
            iload 2 /* offset */
            iload 3 /* length */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.writeRaw:([CII)V
         5: .line 847
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int length
        end local 2 // int offset
        end local 1 // char[] encodedValueBuffer
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    6     0                this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0    6     1  encodedValueBuffer  [C
            0    6     2              offset  I
            0    6     3              length  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
                    Name  Flags
      encodedValueBuffer  
      offset              
      length              

  private void _writeQuotedRaw(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // java.lang.String value
         0: .line 851
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmplt 2
         1: .line 852
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
         2: .line 854
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._quoteChar:C
            castore
         3: .line 855
            aload 0 /* this */
            aload 1 /* value */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.writeRaw:(Ljava/lang/String;)V
         4: .line 856
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmplt 6
         5: .line 857
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
         6: .line 859
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._quoteChar:C
            castore
         7: .line 860
            return
        end local 1 // java.lang.String value
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0   this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0    8     1  value  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
       Name  Flags
      value  

  private void _writeQuotedRaw(char[], int, int);
    descriptor: ([CII)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // char[] text
        start local 2 // int offset
        start local 3 // int length
         0: .line 864
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmplt 2
         1: .line 865
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
         2: .line 867
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._quoteChar:C
            castore
         3: .line 868
            aload 0 /* this */
            aload 1 /* text */
            iload 2 /* offset */
            iload 3 /* length */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.writeRaw:([CII)V
         4: .line 869
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmplt 6
         5: .line 870
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
         6: .line 872
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._quoteChar:C
            castore
         7: .line 873
            return
        end local 3 // int length
        end local 2 // int offset
        end local 1 // char[] text
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0    8     1    text  [C
            0    8     2  offset  I
            0    8     3  length  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      text    
      offset  
      length  

  public void writeBoolean(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // boolean state
         0: .line 878
            aload 0 /* this */
            ldc "write a boolean value"
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._verifyValueWrite:(Ljava/lang/String;)V
         1: .line 879
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iconst_5
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmplt 3
         2: .line 880
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
         3: .line 882
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            istore 2 /* ptr */
        start local 2 // int ptr
         4: .line 883
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            astore 3 /* buf */
        start local 3 // char[] buf
         5: .line 884
            iload 1 /* state */
            ifeq 11
         6: .line 885
            aload 3 /* buf */
            iload 2 /* ptr */
            bipush 116
            castore
         7: .line 886
            aload 3 /* buf */
            iinc 2 /* ptr */ 1
            iload 2 /* ptr */
            bipush 114
            castore
         8: .line 887
            aload 3 /* buf */
            iinc 2 /* ptr */ 1
            iload 2 /* ptr */
            bipush 117
            castore
         9: .line 888
            aload 3 /* buf */
            iinc 2 /* ptr */ 1
            iload 2 /* ptr */
            bipush 101
            castore
        10: .line 889
            goto 16
        11: .line 890
      StackMap locals: int char[]
      StackMap stack:
            aload 3 /* buf */
            iload 2 /* ptr */
            bipush 102
            castore
        12: .line 891
            aload 3 /* buf */
            iinc 2 /* ptr */ 1
            iload 2 /* ptr */
            bipush 97
            castore
        13: .line 892
            aload 3 /* buf */
            iinc 2 /* ptr */ 1
            iload 2 /* ptr */
            bipush 108
            castore
        14: .line 893
            aload 3 /* buf */
            iinc 2 /* ptr */ 1
            iload 2 /* ptr */
            bipush 115
            castore
        15: .line 894
            aload 3 /* buf */
            iinc 2 /* ptr */ 1
            iload 2 /* ptr */
            bipush 101
            castore
        16: .line 896
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* ptr */
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
        17: .line 897
            return
        end local 3 // char[] buf
        end local 2 // int ptr
        end local 1 // boolean state
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   18     0   this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0   18     1  state  Z
            4   18     2    ptr  I
            5   18     3    buf  [C
    Exceptions:
      throws java.io.IOException
    MethodParameters:
       Name  Flags
      state  

  public void writeNull();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
         0: .line 901
            aload 0 /* this */
            ldc "write a null"
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._verifyValueWrite:(Ljava/lang/String;)V
         1: .line 902
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeNull:()V
         2: .line 903
            return
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
    Exceptions:
      throws java.io.IOException

  protected final void _verifyValueWrite(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // java.lang.String typeMsg
         0: .line 914
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeContext:Lcom/fasterxml/jackson/core/json/JsonWriteContext;
            invokevirtual com.fasterxml.jackson.core.json.JsonWriteContext.writeValue:()I
            istore 2 /* status */
        start local 2 // int status
         1: .line 915
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._cfgPrettyPrinter:Lcom/fasterxml/jackson/core/PrettyPrinter;
            ifnull 4
         2: .line 917
            aload 0 /* this */
            aload 1 /* typeMsg */
            iload 2 /* status */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._verifyPrettyValueWrite:(Ljava/lang/String;I)V
         3: .line 918
            return
         4: .line 921
      StackMap locals: int
      StackMap stack:
            iload 2 /* status */
            tableswitch { // 0 - 5
                    0: 5
                    1: 6
                    2: 8
                    3: 10
                    4: 5
                    5: 13
              default: 5
          }
         5: .line 924
      StackMap locals:
      StackMap stack:
            return
         6: .line 926
      StackMap locals:
      StackMap stack:
            bipush 44
            istore 3 /* c */
        start local 3 // char c
         7: .line 927
            goto 15
        end local 3 // char c
         8: .line 929
      StackMap locals:
      StackMap stack:
            bipush 58
            istore 3 /* c */
        start local 3 // char c
         9: .line 930
            goto 15
        end local 3 // char c
        10: .line 932
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._rootValueSeparator:Lcom/fasterxml/jackson/core/SerializableString;
            ifnull 12
        11: .line 933
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._rootValueSeparator:Lcom/fasterxml/jackson/core/SerializableString;
            invokeinterface com.fasterxml.jackson.core.SerializableString.getValue:()Ljava/lang/String;
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.writeRaw:(Ljava/lang/String;)V
        12: .line 935
      StackMap locals:
      StackMap stack:
            return
        13: .line 937
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* typeMsg */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._reportCantWriteValueExpectName:(Ljava/lang/String;)V
        14: .line 938
            return
        start local 3 // char c
        15: .line 940
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmplt 17
        16: .line 941
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
        17: .line 943
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iload 3 /* c */
            castore
        18: .line 944
            return
        end local 3 // char c
        end local 2 // int status
        end local 1 // java.lang.String typeMsg
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   19     0     this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0   19     1  typeMsg  Ljava/lang/String;
            1   19     2   status  I
            7    8     3        c  C
            9   10     3        c  C
           15   19     3        c  C
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      typeMsg  

  public void flush();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
         0: .line 955
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
         1: .line 956
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writer:Ljava/io/Writer;
            ifnull 4
         2: .line 957
            aload 0 /* this */
            getstatic com.fasterxml.jackson.core.JsonGenerator$Feature.FLUSH_PASSED_TO_STREAM:Lcom/fasterxml/jackson/core/JsonGenerator$Feature;
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.isEnabled:(Lcom/fasterxml/jackson/core/JsonGenerator$Feature;)Z
            ifeq 4
         3: .line 958
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writer:Ljava/io/Writer;
            invokevirtual java.io.Writer.flush:()V
         4: .line 961
      StackMap locals:
      StackMap stack:
            return
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
    Exceptions:
      throws java.io.IOException

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
         0: .line 966
            aload 0 /* this */
            invokespecial com.fasterxml.jackson.core.json.JsonGeneratorImpl.close:()V
         1: .line 972
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            ifnull 10
         2: .line 973
            aload 0 /* this */
            getstatic com.fasterxml.jackson.core.JsonGenerator$Feature.AUTO_CLOSE_JSON_CONTENT:Lcom/fasterxml/jackson/core/JsonGenerator$Feature;
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.isEnabled:(Lcom/fasterxml/jackson/core/JsonGenerator$Feature;)Z
            ifeq 10
         3: .line 975
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.getOutputContext:()Lcom/fasterxml/jackson/core/JsonStreamContext;
            astore 1 /* ctxt */
        start local 1 // com.fasterxml.jackson.core.JsonStreamContext ctxt
         4: .line 976
            aload 1 /* ctxt */
            invokevirtual com.fasterxml.jackson.core.JsonStreamContext.inArray:()Z
            ifeq 7
         5: .line 977
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.writeEndArray:()V
         6: .line 978
            goto 3
      StackMap locals: com.fasterxml.jackson.core.JsonStreamContext
      StackMap stack:
         7: aload 1 /* ctxt */
            invokevirtual com.fasterxml.jackson.core.JsonStreamContext.inObject:()Z
            ifeq 10
         8: .line 979
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.writeEndObject:()V
        end local 1 // com.fasterxml.jackson.core.JsonStreamContext ctxt
         9: .line 974
            goto 3
        10: .line 985
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
        11: .line 986
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputHead:I
        12: .line 987
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
        13: .line 995
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writer:Ljava/io/Writer;
            ifnull 19
        14: .line 996
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._ioContext:Lcom/fasterxml/jackson/core/io/IOContext;
            invokevirtual com.fasterxml.jackson.core.io.IOContext.isResourceManaged:()Z
            ifne 15
            aload 0 /* this */
            getstatic com.fasterxml.jackson.core.JsonGenerator$Feature.AUTO_CLOSE_TARGET:Lcom/fasterxml/jackson/core/JsonGenerator$Feature;
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.isEnabled:(Lcom/fasterxml/jackson/core/JsonGenerator$Feature;)Z
            ifeq 17
        15: .line 997
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writer:Ljava/io/Writer;
            invokevirtual java.io.Writer.close:()V
        16: .line 998
            goto 19
      StackMap locals:
      StackMap stack:
        17: aload 0 /* this */
            getstatic com.fasterxml.jackson.core.JsonGenerator$Feature.FLUSH_PASSED_TO_STREAM:Lcom/fasterxml/jackson/core/JsonGenerator$Feature;
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.isEnabled:(Lcom/fasterxml/jackson/core/JsonGenerator$Feature;)Z
            ifeq 19
        18: .line 1000
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writer:Ljava/io/Writer;
            invokevirtual java.io.Writer.flush:()V
        19: .line 1004
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._releaseBuffers:()V
        20: .line 1005
            return
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   21     0  this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            4    9     1  ctxt  Lcom/fasterxml/jackson/core/JsonStreamContext;
    Exceptions:
      throws java.io.IOException

  protected void _releaseBuffers();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
         0: .line 1010
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            astore 1 /* buf */
        start local 1 // char[] buf
         1: .line 1011
            aload 1 /* buf */
            ifnull 4
         2: .line 1012
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
         3: .line 1013
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._ioContext:Lcom/fasterxml/jackson/core/io/IOContext;
            aload 1 /* buf */
            invokevirtual com.fasterxml.jackson.core.io.IOContext.releaseConcatBuffer:([C)V
         4: .line 1015
      StackMap locals: char[]
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._copyBuffer:[C
            astore 1 /* buf */
         5: .line 1016
            aload 1 /* buf */
            ifnull 8
         6: .line 1017
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._copyBuffer:[C
         7: .line 1018
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._ioContext:Lcom/fasterxml/jackson/core/io/IOContext;
            aload 1 /* buf */
            invokevirtual com.fasterxml.jackson.core.io.IOContext.releaseNameCopyBuffer:([C)V
         8: .line 1020
      StackMap locals:
      StackMap stack:
            return
        end local 1 // char[] buf
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            1    9     1   buf  [C

  private void _writeString(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // java.lang.String text
         0: .line 1035
            aload 1 /* text */
            invokevirtual java.lang.String.length:()I
            istore 2 /* len */
        start local 2 // int len
         1: .line 1036
            iload 2 /* len */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmple 4
         2: .line 1037
            aload 0 /* this */
            aload 1 /* text */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeLongString:(Ljava/lang/String;)V
         3: .line 1038
            return
         4: .line 1043
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iload 2 /* len */
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmple 6
         5: .line 1044
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
         6: .line 1046
      StackMap locals:
      StackMap stack:
            aload 1 /* text */
            iconst_0
            iload 2 /* len */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            invokevirtual java.lang.String.getChars:(II[CI)V
         7: .line 1048
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._characterEscapes:Lcom/fasterxml/jackson/core/io/CharacterEscapes;
            ifnull 10
         8: .line 1049
            aload 0 /* this */
            iload 2 /* len */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeStringCustom:(I)V
         9: .line 1050
            goto 14
      StackMap locals:
      StackMap stack:
        10: aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._maximumNonEscapedChar:I
            ifeq 13
        11: .line 1051
            aload 0 /* this */
            iload 2 /* len */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._maximumNonEscapedChar:I
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeStringASCII:(II)V
        12: .line 1052
            goto 14
        13: .line 1053
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* len */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeString2:(I)V
        14: .line 1055
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int len
        end local 1 // java.lang.String text
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   15     0  this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0   15     1  text  Ljava/lang/String;
            1   15     2   len  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      text  

  private void _writeString2(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=7, args_size=2
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // int len
         0: .line 1060
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iload 1 /* len */
            iadd
            istore 2 /* end */
        start local 2 // int end
         1: .line 1061
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEscapes:[I
            astore 3 /* escCodes */
        start local 3 // int[] escCodes
         2: .line 1062
            aload 3 /* escCodes */
            arraylength
            istore 4 /* escLen */
        start local 4 // int escLen
         3: .line 1065
            goto 14
         4: .line 1069
      StackMap locals: int int[] int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            caload
            istore 5 /* c */
        start local 5 // char c
         5: .line 1070
            iload 5 /* c */
            iload 4 /* escLen */
            if_icmpge 7
            aload 3 /* escCodes */
            iload 5 /* c */
            iaload
            ifeq 7
         6: .line 1071
            goto 9
         7: .line 1073
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iconst_1
            iadd
            dup_x1
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iload 2 /* end */
            if_icmplt 4
         8: .line 1074
            goto 15
        end local 5 // char c
         9: .line 1082
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputHead:I
            isub
            istore 5 /* flushLen */
        start local 5 // int flushLen
        10: .line 1083
            iload 5 /* flushLen */
            ifle 12
        11: .line 1084
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writer:Ljava/io/Writer;
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputHead:I
            iload 5 /* flushLen */
            invokevirtual java.io.Writer.write:([CII)V
        12: .line 1089
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            caload
            istore 6 /* c */
        start local 6 // char c
        13: .line 1090
            aload 0 /* this */
            iload 6 /* c */
            aload 3 /* escCodes */
            iload 6 /* c */
            iaload
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._prependOrWriteCharacterEscape:(CI)V
        end local 6 // char c
        end local 5 // int flushLen
        14: .line 1065
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iload 2 /* end */
            if_icmplt 4
        15: .line 1092
      StackMap locals:
      StackMap stack:
            return
        end local 4 // int escLen
        end local 3 // int[] escCodes
        end local 2 // int end
        end local 1 // int len
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   16     0      this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0   16     1       len  I
            1   16     2       end  I
            2   16     3  escCodes  [I
            3   16     4    escLen  I
            5    9     5         c  C
           10   14     5  flushLen  I
           13   14     6         c  C
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      len   final

  private void _writeLongString(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=6, args_size=2
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // java.lang.String text
         0: .line 1101
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
         1: .line 1104
            aload 1 /* text */
            invokevirtual java.lang.String.length:()I
            istore 2 /* textLen */
        start local 2 // int textLen
         2: .line 1105
            iconst_0
            istore 3 /* offset */
        start local 3 // int offset
         3: .line 1107
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            istore 4 /* max */
        start local 4 // int max
         4: .line 1108
            iload 3 /* offset */
            iload 4 /* max */
            iadd
            iload 2 /* textLen */
            if_icmple 6
         5: .line 1109
            iload 2 /* textLen */
            iload 3 /* offset */
            isub
            goto 7
      StackMap locals: int
      StackMap stack:
         6: iload 4 /* max */
         7: .line 1108
      StackMap locals:
      StackMap stack: int
            istore 5 /* segmentLen */
        start local 5 // int segmentLen
         8: .line 1110
            aload 1 /* text */
            iload 3 /* offset */
            iload 3 /* offset */
            iload 5 /* segmentLen */
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            iconst_0
            invokevirtual java.lang.String.getChars:(II[CI)V
         9: .line 1111
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._characterEscapes:Lcom/fasterxml/jackson/core/io/CharacterEscapes;
            ifnull 12
        10: .line 1112
            aload 0 /* this */
            iload 5 /* segmentLen */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeSegmentCustom:(I)V
        11: .line 1113
            goto 16
      StackMap locals: int
      StackMap stack:
        12: aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._maximumNonEscapedChar:I
            ifeq 15
        13: .line 1114
            aload 0 /* this */
            iload 5 /* segmentLen */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._maximumNonEscapedChar:I
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeSegmentASCII:(II)V
        14: .line 1115
            goto 16
        15: .line 1116
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 5 /* segmentLen */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeSegment:(I)V
        16: .line 1118
      StackMap locals:
      StackMap stack:
            iload 3 /* offset */
            iload 5 /* segmentLen */
            iadd
            istore 3 /* offset */
        end local 5 // int segmentLen
        end local 4 // int max
        17: .line 1119
            iload 3 /* offset */
            iload 2 /* textLen */
        18: .line 1106
            if_icmplt 3
        19: .line 1120
            return
        end local 3 // int offset
        end local 2 // int textLen
        end local 1 // java.lang.String text
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   20     0        this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0   20     1        text  Ljava/lang/String;
            2   20     2     textLen  I
            3   20     3      offset  I
            4   17     4         max  I
            8   17     5  segmentLen  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      text  

  private void _writeSegment(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=8, args_size=2
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // int end
         0: .line 1133
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEscapes:[I
            astore 2 /* escCodes */
        start local 2 // int[] escCodes
         1: .line 1134
            aload 2 /* escCodes */
            arraylength
            istore 3 /* escLen */
        start local 3 // int escLen
         2: .line 1136
            iconst_0
            istore 4 /* ptr */
        start local 4 // int ptr
         3: .line 1137
            iload 4 /* ptr */
            istore 5 /* start */
        start local 5 // int start
         4: .line 1140
            goto 16
         5: .line 1144
      StackMap locals: com.fasterxml.jackson.core.json.WriterBasedJsonGenerator int int[] int int int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            iload 4 /* ptr */
            caload
            istore 6 /* c */
        start local 6 // char c
         6: .line 1145
            iload 6 /* c */
            iload 3 /* escLen */
            if_icmpge 8
            aload 2 /* escCodes */
            iload 6 /* c */
            iaload
            ifeq 8
         7: .line 1146
            goto 9
         8: .line 1148
      StackMap locals: int
      StackMap stack:
            iinc 4 /* ptr */ 1
            iload 4 /* ptr */
            iload 1 /* end */
            if_icmplt 5
         9: .line 1157
      StackMap locals:
      StackMap stack:
            iload 4 /* ptr */
            iload 5 /* start */
            isub
            istore 7 /* flushLen */
        start local 7 // int flushLen
        10: .line 1158
            iload 7 /* flushLen */
            ifle 14
        11: .line 1159
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writer:Ljava/io/Writer;
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            iload 5 /* start */
            iload 7 /* flushLen */
            invokevirtual java.io.Writer.write:([CII)V
        12: .line 1160
            iload 4 /* ptr */
            iload 1 /* end */
            if_icmplt 14
        13: .line 1161
            goto 17
        14: .line 1164
      StackMap locals: int
      StackMap stack:
            iinc 4 /* ptr */ 1
        15: .line 1166
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            iload 4 /* ptr */
            iload 1 /* end */
            iload 6 /* c */
            aload 2 /* escCodes */
            iload 6 /* c */
            iaload
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._prependOrWriteCharacterEscape:([CIICI)I
            istore 5 /* start */
        end local 7 // int flushLen
        end local 6 // char c
        16: .line 1140
      StackMap locals:
      StackMap stack:
            iload 4 /* ptr */
            iload 1 /* end */
            if_icmplt 5
        17: .line 1168
      StackMap locals:
      StackMap stack:
            return
        end local 5 // int start
        end local 4 // int ptr
        end local 3 // int escLen
        end local 2 // int[] escCodes
        end local 1 // int end
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   18     0      this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0   18     1       end  I
            1   18     2  escCodes  [I
            2   18     3    escLen  I
            3   18     4       ptr  I
            4   18     5     start  I
            6   16     6         c  C
           10   16     7  flushLen  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      end   

  private void _writeString(char[], int, int);
    descriptor: ([CII)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=9, args_size=4
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // char[] text
        start local 2 // int offset
        start local 3 // int len
         0: .line 1176
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._characterEscapes:Lcom/fasterxml/jackson/core/io/CharacterEscapes;
            ifnull 3
         1: .line 1177
            aload 0 /* this */
            aload 1 /* text */
            iload 2 /* offset */
            iload 3 /* len */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeStringCustom:([CII)V
         2: .line 1178
            return
         3: .line 1180
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._maximumNonEscapedChar:I
            ifeq 6
         4: .line 1181
            aload 0 /* this */
            aload 1 /* text */
            iload 2 /* offset */
            iload 3 /* len */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._maximumNonEscapedChar:I
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writeStringASCII:([CIII)V
         5: .line 1182
            return
         6: .line 1188
      StackMap locals:
      StackMap stack:
            iload 3 /* len */
            iload 2 /* offset */
            iadd
            istore 3 /* len */
         7: .line 1189
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEscapes:[I
            astore 4 /* escCodes */
        start local 4 // int[] escCodes
         8: .line 1190
            aload 4 /* escCodes */
            arraylength
            istore 5 /* escLen */
        start local 5 // int escLen
         9: .line 1191
            goto 29
        10: .line 1192
      StackMap locals: int[] int
      StackMap stack:
            iload 2 /* offset */
            istore 6 /* start */
        start local 6 // int start
        11: .line 1195
      StackMap locals: int
      StackMap stack:
            aload 1 /* text */
            iload 2 /* offset */
            caload
            istore 7 /* c */
        start local 7 // char c
        12: .line 1196
            iload 7 /* c */
            iload 5 /* escLen */
            if_icmpge 14
            aload 4 /* escCodes */
            iload 7 /* c */
            iaload
            ifeq 14
        13: .line 1197
            goto 15
        14: .line 1199
      StackMap locals: int
      StackMap stack:
            iinc 2 /* offset */ 1
            iload 2 /* offset */
            iload 3 /* len */
            if_icmplt 11
        end local 7 // char c
        15: .line 1205
      StackMap locals:
      StackMap stack:
            iload 2 /* offset */
            iload 6 /* start */
            isub
            istore 7 /* newAmount */
        start local 7 // int newAmount
        16: .line 1206
            iload 7 /* newAmount */
            bipush 32
            if_icmpge 23
        17: .line 1208
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iload 7 /* newAmount */
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmple 19
        18: .line 1209
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
        19: .line 1211
      StackMap locals: int
      StackMap stack:
            iload 7 /* newAmount */
            ifle 25
        20: .line 1212
            aload 1 /* text */
            iload 6 /* start */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iload 7 /* newAmount */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        21: .line 1213
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iload 7 /* newAmount */
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
        22: .line 1215
            goto 25
        23: .line 1216
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
        24: .line 1217
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writer:Ljava/io/Writer;
            aload 1 /* text */
            iload 6 /* start */
            iload 7 /* newAmount */
            invokevirtual java.io.Writer.write:([CII)V
        25: .line 1220
      StackMap locals:
      StackMap stack:
            iload 2 /* offset */
            iload 3 /* len */
            if_icmplt 27
        26: .line 1221
            goto 30
        27: .line 1224
      StackMap locals:
      StackMap stack:
            aload 1 /* text */
            iload 2 /* offset */
            iinc 2 /* offset */ 1
            caload
            istore 8 /* c */
        start local 8 // char c
        28: .line 1225
            aload 0 /* this */
            iload 8 /* c */
            aload 4 /* escCodes */
            iload 8 /* c */
            iaload
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._appendCharacterEscape:(CI)V
        end local 8 // char c
        end local 7 // int newAmount
        end local 6 // int start
        29: .line 1191
      StackMap locals:
      StackMap stack:
            iload 2 /* offset */
            iload 3 /* len */
            if_icmplt 10
        30: .line 1227
      StackMap locals:
      StackMap stack:
            return
        end local 5 // int escLen
        end local 4 // int[] escCodes
        end local 3 // int len
        end local 2 // int offset
        end local 1 // char[] text
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   31     0       this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0   31     1       text  [C
            0   31     2     offset  I
            0   31     3        len  I
            8   31     4   escCodes  [I
            9   31     5     escLen  I
           11   29     6      start  I
           12   15     7          c  C
           16   29     7  newAmount  I
           28   29     8          c  C
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      text    
      offset  
      len     

  private void _writeStringASCII(int, int);
    descriptor: (II)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=9, args_size=3
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // int len
        start local 2 // int maxNonEscaped
         0: .line 1243
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iload 1 /* len */
            iadd
            istore 3 /* end */
        start local 3 // int end
         1: .line 1244
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEscapes:[I
            astore 4 /* escCodes */
        start local 4 // int[] escCodes
         2: .line 1245
            aload 4 /* escCodes */
            arraylength
            iload 2 /* maxNonEscaped */
            iconst_1
            iadd
            invokestatic java.lang.Math.min:(II)I
            istore 5 /* escLimit */
        start local 5 // int escLimit
         3: .line 1246
            iconst_0
            istore 6 /* escCode */
        start local 6 // int escCode
         4: .line 1249
            goto 20
         5: .line 1254
      StackMap locals: com.fasterxml.jackson.core.json.WriterBasedJsonGenerator int int int int[] int int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            caload
            istore 7 /* c */
        start local 7 // char c
         6: .line 1255
            iload 7 /* c */
            iload 5 /* escLimit */
            if_icmpge 10
         7: .line 1256
            aload 4 /* escCodes */
            iload 7 /* c */
            iaload
            istore 6 /* escCode */
         8: .line 1257
            iload 6 /* escCode */
            ifeq 13
         9: .line 1258
            goto 15
        10: .line 1260
      StackMap locals: int
      StackMap stack:
            iload 7 /* c */
            iload 2 /* maxNonEscaped */
            if_icmple 13
        11: .line 1261
            iconst_m1
            istore 6 /* escCode */
        12: .line 1262
            goto 15
        13: .line 1264
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iconst_1
            iadd
            dup_x1
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iload 3 /* end */
            if_icmplt 5
        14: .line 1265
            goto 21
        15: .line 1268
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputHead:I
            isub
            istore 8 /* flushLen */
        start local 8 // int flushLen
        16: .line 1269
            iload 8 /* flushLen */
            ifle 18
        17: .line 1270
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writer:Ljava/io/Writer;
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputHead:I
            iload 8 /* flushLen */
            invokevirtual java.io.Writer.write:([CII)V
        18: .line 1272
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
        19: .line 1273
            aload 0 /* this */
            iload 7 /* c */
            iload 6 /* escCode */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._prependOrWriteCharacterEscape:(CI)V
        end local 8 // int flushLen
        end local 7 // char c
        20: .line 1249
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iload 3 /* end */
            if_icmplt 5
        21: .line 1275
      StackMap locals:
      StackMap stack:
            return
        end local 6 // int escCode
        end local 5 // int escLimit
        end local 4 // int[] escCodes
        end local 3 // int end
        end local 2 // int maxNonEscaped
        end local 1 // int len
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   22     0           this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0   22     1            len  I
            0   22     2  maxNonEscaped  I
            1   22     3            end  I
            2   22     4       escCodes  [I
            3   22     5       escLimit  I
            4   22     6        escCode  I
            6   20     7              c  C
           16   20     8       flushLen  I
    Exceptions:
      throws java.io.IOException, com.fasterxml.jackson.core.JsonGenerationException
    MethodParameters:
               Name  Flags
      len            final
      maxNonEscaped  final

  private void _writeSegmentASCII(int, int);
    descriptor: (II)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=10, args_size=3
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // int end
        start local 2 // int maxNonEscaped
         0: .line 1280
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEscapes:[I
            astore 3 /* escCodes */
        start local 3 // int[] escCodes
         1: .line 1281
            aload 3 /* escCodes */
            arraylength
            iload 2 /* maxNonEscaped */
            iconst_1
            iadd
            invokestatic java.lang.Math.min:(II)I
            istore 4 /* escLimit */
        start local 4 // int escLimit
         2: .line 1283
            iconst_0
            istore 5 /* ptr */
        start local 5 // int ptr
         3: .line 1284
            iconst_0
            istore 6 /* escCode */
        start local 6 // int escCode
         4: .line 1285
            iload 5 /* ptr */
            istore 7 /* start */
        start local 7 // int start
         5: .line 1288
            goto 22
         6: .line 1292
      StackMap locals: com.fasterxml.jackson.core.json.WriterBasedJsonGenerator int int int[] int int int int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            iload 5 /* ptr */
            caload
            istore 8 /* c */
        start local 8 // char c
         7: .line 1293
            iload 8 /* c */
            iload 4 /* escLimit */
            if_icmpge 11
         8: .line 1294
            aload 3 /* escCodes */
            iload 8 /* c */
            iaload
            istore 6 /* escCode */
         9: .line 1295
            iload 6 /* escCode */
            ifeq 14
        10: .line 1296
            goto 15
        11: .line 1298
      StackMap locals: int
      StackMap stack:
            iload 8 /* c */
            iload 2 /* maxNonEscaped */
            if_icmple 14
        12: .line 1299
            iconst_m1
            istore 6 /* escCode */
        13: .line 1300
            goto 15
        14: .line 1302
      StackMap locals:
      StackMap stack:
            iinc 5 /* ptr */ 1
            iload 5 /* ptr */
            iload 1 /* end */
            if_icmplt 6
        15: .line 1306
      StackMap locals:
      StackMap stack:
            iload 5 /* ptr */
            iload 7 /* start */
            isub
            istore 9 /* flushLen */
        start local 9 // int flushLen
        16: .line 1307
            iload 9 /* flushLen */
            ifle 20
        17: .line 1308
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writer:Ljava/io/Writer;
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            iload 7 /* start */
            iload 9 /* flushLen */
            invokevirtual java.io.Writer.write:([CII)V
        18: .line 1309
            iload 5 /* ptr */
            iload 1 /* end */
            if_icmplt 20
        19: .line 1310
            goto 23
        20: .line 1313
      StackMap locals: int
      StackMap stack:
            iinc 5 /* ptr */ 1
        21: .line 1314
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            iload 5 /* ptr */
            iload 1 /* end */
            iload 8 /* c */
            iload 6 /* escCode */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._prependOrWriteCharacterEscape:([CIICI)I
            istore 7 /* start */
        end local 9 // int flushLen
        end local 8 // char c
        22: .line 1288
      StackMap locals:
      StackMap stack:
            iload 5 /* ptr */
            iload 1 /* end */
            if_icmplt 6
        23: .line 1316
      StackMap locals:
      StackMap stack:
            return
        end local 7 // int start
        end local 6 // int escCode
        end local 5 // int ptr
        end local 4 // int escLimit
        end local 3 // int[] escCodes
        end local 2 // int maxNonEscaped
        end local 1 // int end
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   24     0           this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0   24     1            end  I
            0   24     2  maxNonEscaped  I
            1   24     3       escCodes  [I
            2   24     4       escLimit  I
            3   24     5            ptr  I
            4   24     6        escCode  I
            5   24     7          start  I
            7   22     8              c  C
           16   22     9       flushLen  I
    Exceptions:
      throws java.io.IOException, com.fasterxml.jackson.core.JsonGenerationException
    MethodParameters:
               Name  Flags
      end            
      maxNonEscaped  final

  private void _writeStringASCII(char[], int, int, int);
    descriptor: ([CIII)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=11, args_size=5
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // char[] text
        start local 2 // int offset
        start local 3 // int len
        start local 4 // int maxNonEscaped
         0: .line 1322
            iload 3 /* len */
            iload 2 /* offset */
            iadd
            istore 3 /* len */
         1: .line 1323
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEscapes:[I
            astore 5 /* escCodes */
        start local 5 // int[] escCodes
         2: .line 1324
            aload 5 /* escCodes */
            arraylength
            iload 4 /* maxNonEscaped */
            iconst_1
            iadd
            invokestatic java.lang.Math.min:(II)I
            istore 6 /* escLimit */
        start local 6 // int escLimit
         3: .line 1326
            iconst_0
            istore 7 /* escCode */
        start local 7 // int escCode
         4: .line 1328
            goto 29
         5: .line 1329
      StackMap locals: int[] int int
      StackMap stack:
            iload 2 /* offset */
            istore 8 /* start */
        start local 8 // int start
         6: .line 1333
      StackMap locals: int
      StackMap stack:
            aload 1 /* text */
            iload 2 /* offset */
            caload
            istore 9 /* c */
        start local 9 // char c
         7: .line 1334
            iload 9 /* c */
            iload 6 /* escLimit */
            if_icmpge 11
         8: .line 1335
            aload 5 /* escCodes */
            iload 9 /* c */
            iaload
            istore 7 /* escCode */
         9: .line 1336
            iload 7 /* escCode */
            ifeq 14
        10: .line 1337
            goto 15
        11: .line 1339
      StackMap locals: int
      StackMap stack:
            iload 9 /* c */
            iload 4 /* maxNonEscaped */
            if_icmple 14
        12: .line 1340
            iconst_m1
            istore 7 /* escCode */
        13: .line 1341
            goto 15
        14: .line 1343
      StackMap locals:
      StackMap stack:
            iinc 2 /* offset */ 1
            iload 2 /* offset */
            iload 3 /* len */
            if_icmplt 6
        15: .line 1349
      StackMap locals:
      StackMap stack:
            iload 2 /* offset */
            iload 8 /* start */
            isub
            istore 10 /* newAmount */
        start local 10 // int newAmount
        16: .line 1350
            iload 10 /* newAmount */
            bipush 32
            if_icmpge 23
        17: .line 1352
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iload 10 /* newAmount */
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmple 19
        18: .line 1353
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
        19: .line 1355
      StackMap locals: int
      StackMap stack:
            iload 10 /* newAmount */
            ifle 25
        20: .line 1356
            aload 1 /* text */
            iload 8 /* start */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iload 10 /* newAmount */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        21: .line 1357
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iload 10 /* newAmount */
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
        22: .line 1359
            goto 25
        23: .line 1360
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
        24: .line 1361
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writer:Ljava/io/Writer;
            aload 1 /* text */
            iload 8 /* start */
            iload 10 /* newAmount */
            invokevirtual java.io.Writer.write:([CII)V
        25: .line 1364
      StackMap locals:
      StackMap stack:
            iload 2 /* offset */
            iload 3 /* len */
            if_icmplt 27
        26: .line 1365
            goto 30
        27: .line 1368
      StackMap locals:
      StackMap stack:
            iinc 2 /* offset */ 1
        28: .line 1369
            aload 0 /* this */
            iload 9 /* c */
            iload 7 /* escCode */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._appendCharacterEscape:(CI)V
        end local 10 // int newAmount
        end local 9 // char c
        end local 8 // int start
        29: .line 1328
      StackMap locals:
      StackMap stack:
            iload 2 /* offset */
            iload 3 /* len */
            if_icmplt 5
        30: .line 1371
      StackMap locals:
      StackMap stack:
            return
        end local 7 // int escCode
        end local 6 // int escLimit
        end local 5 // int[] escCodes
        end local 4 // int maxNonEscaped
        end local 3 // int len
        end local 2 // int offset
        end local 1 // char[] text
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   31     0           this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0   31     1           text  [C
            0   31     2         offset  I
            0   31     3            len  I
            0   31     4  maxNonEscaped  I
            2   31     5       escCodes  [I
            3   31     6       escLimit  I
            4   31     7        escCode  I
            6   29     8          start  I
            7   29     9              c  C
           16   29    10      newAmount  I
    Exceptions:
      throws java.io.IOException, com.fasterxml.jackson.core.JsonGenerationException
    MethodParameters:
               Name  Flags
      text           
      offset         
      len            
      maxNonEscaped  final

  private void _writeStringCustom(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=10, args_size=2
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // int len
         0: .line 1387
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iload 1 /* len */
            iadd
            istore 2 /* end */
        start local 2 // int end
         1: .line 1388
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEscapes:[I
            astore 3 /* escCodes */
        start local 3 // int[] escCodes
         2: .line 1389
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._maximumNonEscapedChar:I
            iconst_1
            if_icmpge 3
            ldc 65535
            goto 4
      StackMap locals: int int[]
      StackMap stack:
         3: aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._maximumNonEscapedChar:I
      StackMap locals:
      StackMap stack: int
         4: istore 4 /* maxNonEscaped */
        start local 4 // int maxNonEscaped
         5: .line 1390
            aload 3 /* escCodes */
            arraylength
            iload 4 /* maxNonEscaped */
            iconst_1
            iadd
            invokestatic java.lang.Math.min:(II)I
            istore 5 /* escLimit */
        start local 5 // int escLimit
         6: .line 1391
            iconst_0
            istore 6 /* escCode */
        start local 6 // int escCode
         7: .line 1392
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._characterEscapes:Lcom/fasterxml/jackson/core/io/CharacterEscapes;
            astore 7 /* customEscapes */
        start local 7 // com.fasterxml.jackson.core.io.CharacterEscapes customEscapes
         8: .line 1395
            goto 27
         9: .line 1400
      StackMap locals: com.fasterxml.jackson.core.json.WriterBasedJsonGenerator int int int[] int int int com.fasterxml.jackson.core.io.CharacterEscapes
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            caload
            istore 8 /* c */
        start local 8 // char c
        10: .line 1401
            iload 8 /* c */
            iload 5 /* escLimit */
            if_icmpge 14
        11: .line 1402
            aload 3 /* escCodes */
            iload 8 /* c */
            iaload
            istore 6 /* escCode */
        12: .line 1403
            iload 6 /* escCode */
            ifeq 20
        13: .line 1404
            goto 22
        14: .line 1406
      StackMap locals: int
      StackMap stack:
            iload 8 /* c */
            iload 4 /* maxNonEscaped */
            if_icmple 17
        15: .line 1407
            iconst_m1
            istore 6 /* escCode */
        16: .line 1408
            goto 22
        17: .line 1410
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 7 /* customEscapes */
            iload 8 /* c */
            invokevirtual com.fasterxml.jackson.core.io.CharacterEscapes.getEscapeSequence:(I)Lcom/fasterxml/jackson/core/SerializableString;
            dup_x1
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._currentEscape:Lcom/fasterxml/jackson/core/SerializableString;
            ifnull 20
        18: .line 1411
            bipush -2
            istore 6 /* escCode */
        19: .line 1412
            goto 22
        20: .line 1415
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iconst_1
            iadd
            dup_x1
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iload 2 /* end */
            if_icmplt 9
        21: .line 1416
            goto 28
        22: .line 1419
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputHead:I
            isub
            istore 9 /* flushLen */
        start local 9 // int flushLen
        23: .line 1420
            iload 9 /* flushLen */
            ifle 25
        24: .line 1421
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writer:Ljava/io/Writer;
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputHead:I
            iload 9 /* flushLen */
            invokevirtual java.io.Writer.write:([CII)V
        25: .line 1423
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
        26: .line 1424
            aload 0 /* this */
            iload 8 /* c */
            iload 6 /* escCode */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._prependOrWriteCharacterEscape:(CI)V
        end local 9 // int flushLen
        end local 8 // char c
        27: .line 1395
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iload 2 /* end */
            if_icmplt 9
        28: .line 1426
      StackMap locals:
      StackMap stack:
            return
        end local 7 // com.fasterxml.jackson.core.io.CharacterEscapes customEscapes
        end local 6 // int escCode
        end local 5 // int escLimit
        end local 4 // int maxNonEscaped
        end local 3 // int[] escCodes
        end local 2 // int end
        end local 1 // int len
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   29     0           this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0   29     1            len  I
            1   29     2            end  I
            2   29     3       escCodes  [I
            5   29     4  maxNonEscaped  I
            6   29     5       escLimit  I
            7   29     6        escCode  I
            8   29     7  customEscapes  Lcom/fasterxml/jackson/core/io/CharacterEscapes;
           10   27     8              c  C
           23   27     9       flushLen  I
    Exceptions:
      throws java.io.IOException, com.fasterxml.jackson.core.JsonGenerationException
    MethodParameters:
      Name  Flags
      len   final

  private void _writeSegmentCustom(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=11, args_size=2
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // int end
         0: .line 1431
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEscapes:[I
            astore 2 /* escCodes */
        start local 2 // int[] escCodes
         1: .line 1432
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._maximumNonEscapedChar:I
            iconst_1
            if_icmpge 2
            ldc 65535
            goto 3
      StackMap locals: int[]
      StackMap stack:
         2: aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._maximumNonEscapedChar:I
      StackMap locals:
      StackMap stack: int
         3: istore 3 /* maxNonEscaped */
        start local 3 // int maxNonEscaped
         4: .line 1433
            aload 2 /* escCodes */
            arraylength
            iload 3 /* maxNonEscaped */
            iconst_1
            iadd
            invokestatic java.lang.Math.min:(II)I
            istore 4 /* escLimit */
        start local 4 // int escLimit
         5: .line 1434
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._characterEscapes:Lcom/fasterxml/jackson/core/io/CharacterEscapes;
            astore 5 /* customEscapes */
        start local 5 // com.fasterxml.jackson.core.io.CharacterEscapes customEscapes
         6: .line 1436
            iconst_0
            istore 6 /* ptr */
        start local 6 // int ptr
         7: .line 1437
            iconst_0
            istore 7 /* escCode */
        start local 7 // int escCode
         8: .line 1438
            iload 6 /* ptr */
            istore 8 /* start */
        start local 8 // int start
         9: .line 1441
            goto 29
        10: .line 1445
      StackMap locals: com.fasterxml.jackson.core.json.WriterBasedJsonGenerator int int[] int int com.fasterxml.jackson.core.io.CharacterEscapes int int int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            iload 6 /* ptr */
            caload
            istore 9 /* c */
        start local 9 // char c
        11: .line 1446
            iload 9 /* c */
            iload 4 /* escLimit */
            if_icmpge 15
        12: .line 1447
            aload 2 /* escCodes */
            iload 9 /* c */
            iaload
            istore 7 /* escCode */
        13: .line 1448
            iload 7 /* escCode */
            ifeq 21
        14: .line 1449
            goto 22
        15: .line 1451
      StackMap locals: int
      StackMap stack:
            iload 9 /* c */
            iload 3 /* maxNonEscaped */
            if_icmple 18
        16: .line 1452
            iconst_m1
            istore 7 /* escCode */
        17: .line 1453
            goto 22
        18: .line 1455
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 5 /* customEscapes */
            iload 9 /* c */
            invokevirtual com.fasterxml.jackson.core.io.CharacterEscapes.getEscapeSequence:(I)Lcom/fasterxml/jackson/core/SerializableString;
            dup_x1
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._currentEscape:Lcom/fasterxml/jackson/core/SerializableString;
            ifnull 21
        19: .line 1456
            bipush -2
            istore 7 /* escCode */
        20: .line 1457
            goto 22
        21: .line 1460
      StackMap locals:
      StackMap stack:
            iinc 6 /* ptr */ 1
            iload 6 /* ptr */
            iload 1 /* end */
            if_icmplt 10
        22: .line 1464
      StackMap locals:
      StackMap stack:
            iload 6 /* ptr */
            iload 8 /* start */
            isub
            istore 10 /* flushLen */
        start local 10 // int flushLen
        23: .line 1465
            iload 10 /* flushLen */
            ifle 27
        24: .line 1466
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writer:Ljava/io/Writer;
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            iload 8 /* start */
            iload 10 /* flushLen */
            invokevirtual java.io.Writer.write:([CII)V
        25: .line 1467
            iload 6 /* ptr */
            iload 1 /* end */
            if_icmplt 27
        26: .line 1468
            goto 30
        27: .line 1471
      StackMap locals: int
      StackMap stack:
            iinc 6 /* ptr */ 1
        28: .line 1472
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            iload 6 /* ptr */
            iload 1 /* end */
            iload 9 /* c */
            iload 7 /* escCode */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._prependOrWriteCharacterEscape:([CIICI)I
            istore 8 /* start */
        end local 10 // int flushLen
        end local 9 // char c
        29: .line 1441
      StackMap locals:
      StackMap stack:
            iload 6 /* ptr */
            iload 1 /* end */
            if_icmplt 10
        30: .line 1474
      StackMap locals:
      StackMap stack:
            return
        end local 8 // int start
        end local 7 // int escCode
        end local 6 // int ptr
        end local 5 // com.fasterxml.jackson.core.io.CharacterEscapes customEscapes
        end local 4 // int escLimit
        end local 3 // int maxNonEscaped
        end local 2 // int[] escCodes
        end local 1 // int end
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   31     0           this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0   31     1            end  I
            1   31     2       escCodes  [I
            4   31     3  maxNonEscaped  I
            5   31     4       escLimit  I
            6   31     5  customEscapes  Lcom/fasterxml/jackson/core/io/CharacterEscapes;
            7   31     6            ptr  I
            8   31     7        escCode  I
            9   31     8          start  I
           11   29     9              c  C
           23   29    10       flushLen  I
    Exceptions:
      throws java.io.IOException, com.fasterxml.jackson.core.JsonGenerationException
    MethodParameters:
      Name  Flags
      end   

  private void _writeStringCustom(char[], int, int);
    descriptor: ([CII)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=12, args_size=4
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // char[] text
        start local 2 // int offset
        start local 3 // int len
         0: .line 1479
            iload 3 /* len */
            iload 2 /* offset */
            iadd
            istore 3 /* len */
         1: .line 1480
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEscapes:[I
            astore 4 /* escCodes */
        start local 4 // int[] escCodes
         2: .line 1481
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._maximumNonEscapedChar:I
            iconst_1
            if_icmpge 3
            ldc 65535
            goto 4
      StackMap locals: int[]
      StackMap stack:
         3: aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._maximumNonEscapedChar:I
      StackMap locals:
      StackMap stack: int
         4: istore 5 /* maxNonEscaped */
        start local 5 // int maxNonEscaped
         5: .line 1482
            aload 4 /* escCodes */
            arraylength
            iload 5 /* maxNonEscaped */
            iconst_1
            iadd
            invokestatic java.lang.Math.min:(II)I
            istore 6 /* escLimit */
        start local 6 // int escLimit
         6: .line 1483
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._characterEscapes:Lcom/fasterxml/jackson/core/io/CharacterEscapes;
            astore 7 /* customEscapes */
        start local 7 // com.fasterxml.jackson.core.io.CharacterEscapes customEscapes
         7: .line 1485
            iconst_0
            istore 8 /* escCode */
        start local 8 // int escCode
         8: .line 1487
            goto 36
         9: .line 1488
      StackMap locals: com.fasterxml.jackson.core.json.WriterBasedJsonGenerator char[] int int int[] int int com.fasterxml.jackson.core.io.CharacterEscapes int
      StackMap stack:
            iload 2 /* offset */
            istore 9 /* start */
        start local 9 // int start
        10: .line 1492
      StackMap locals: int
      StackMap stack:
            aload 1 /* text */
            iload 2 /* offset */
            caload
            istore 10 /* c */
        start local 10 // char c
        11: .line 1493
            iload 10 /* c */
            iload 6 /* escLimit */
            if_icmpge 15
        12: .line 1494
            aload 4 /* escCodes */
            iload 10 /* c */
            iaload
            istore 8 /* escCode */
        13: .line 1495
            iload 8 /* escCode */
            ifeq 21
        14: .line 1496
            goto 22
        15: .line 1498
      StackMap locals: int
      StackMap stack:
            iload 10 /* c */
            iload 5 /* maxNonEscaped */
            if_icmple 18
        16: .line 1499
            iconst_m1
            istore 8 /* escCode */
        17: .line 1500
            goto 22
        18: .line 1502
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 7 /* customEscapes */
            iload 10 /* c */
            invokevirtual com.fasterxml.jackson.core.io.CharacterEscapes.getEscapeSequence:(I)Lcom/fasterxml/jackson/core/SerializableString;
            dup_x1
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._currentEscape:Lcom/fasterxml/jackson/core/SerializableString;
            ifnull 21
        19: .line 1503
            bipush -2
            istore 8 /* escCode */
        20: .line 1504
            goto 22
        21: .line 1507
      StackMap locals:
      StackMap stack:
            iinc 2 /* offset */ 1
            iload 2 /* offset */
            iload 3 /* len */
            if_icmplt 10
        22: .line 1513
      StackMap locals:
      StackMap stack:
            iload 2 /* offset */
            iload 9 /* start */
            isub
            istore 11 /* newAmount */
        start local 11 // int newAmount
        23: .line 1514
            iload 11 /* newAmount */
            bipush 32
            if_icmpge 30
        24: .line 1516
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iload 11 /* newAmount */
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmple 26
        25: .line 1517
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
        26: .line 1519
      StackMap locals: int
      StackMap stack:
            iload 11 /* newAmount */
            ifle 32
        27: .line 1520
            aload 1 /* text */
            iload 9 /* start */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iload 11 /* newAmount */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        28: .line 1521
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iload 11 /* newAmount */
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
        29: .line 1523
            goto 32
        30: .line 1524
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
        31: .line 1525
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writer:Ljava/io/Writer;
            aload 1 /* text */
            iload 9 /* start */
            iload 11 /* newAmount */
            invokevirtual java.io.Writer.write:([CII)V
        32: .line 1528
      StackMap locals:
      StackMap stack:
            iload 2 /* offset */
            iload 3 /* len */
            if_icmplt 34
        33: .line 1529
            goto 37
        34: .line 1532
      StackMap locals:
      StackMap stack:
            iinc 2 /* offset */ 1
        35: .line 1533
            aload 0 /* this */
            iload 10 /* c */
            iload 8 /* escCode */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._appendCharacterEscape:(CI)V
        end local 11 // int newAmount
        end local 10 // char c
        end local 9 // int start
        36: .line 1487
      StackMap locals:
      StackMap stack:
            iload 2 /* offset */
            iload 3 /* len */
            if_icmplt 9
        37: .line 1535
      StackMap locals:
      StackMap stack:
            return
        end local 8 // int escCode
        end local 7 // com.fasterxml.jackson.core.io.CharacterEscapes customEscapes
        end local 6 // int escLimit
        end local 5 // int maxNonEscaped
        end local 4 // int[] escCodes
        end local 3 // int len
        end local 2 // int offset
        end local 1 // char[] text
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   38     0           this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0   38     1           text  [C
            0   38     2         offset  I
            0   38     3            len  I
            2   38     4       escCodes  [I
            5   38     5  maxNonEscaped  I
            6   38     6       escLimit  I
            7   38     7  customEscapes  Lcom/fasterxml/jackson/core/io/CharacterEscapes;
            8   38     8        escCode  I
           10   36     9          start  I
           11   36    10              c  C
           23   36    11      newAmount  I
    Exceptions:
      throws java.io.IOException, com.fasterxml.jackson.core.JsonGenerationException
    MethodParameters:
        Name  Flags
      text    
      offset  
      len     

  protected final void _writeBinary(com.fasterxml.jackson.core.Base64Variant, byte[], int, int);
    descriptor: (Lcom/fasterxml/jackson/core/Base64Variant;[BII)V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=6, locals=10, args_size=5
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // com.fasterxml.jackson.core.Base64Variant b64variant
        start local 2 // byte[] input
        start local 3 // int inputPtr
        start local 4 // int inputEnd
         0: .line 1547
            iload 4 /* inputEnd */
            iconst_3
            isub
            istore 5 /* safeInputEnd */
        start local 5 // int safeInputEnd
         1: .line 1549
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            bipush 6
            isub
            istore 6 /* safeOutputEnd */
        start local 6 // int safeOutputEnd
         2: .line 1550
            aload 1 /* b64variant */
            invokevirtual com.fasterxml.jackson.core.Base64Variant.getMaxLineLength:()I
            iconst_2
            ishr
            istore 7 /* chunksBeforeLF */
        start local 7 // int chunksBeforeLF
         3: .line 1553
            goto 14
         4: .line 1554
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iload 6 /* safeOutputEnd */
            if_icmple 6
         5: .line 1555
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
         6: .line 1558
      StackMap locals:
      StackMap stack:
            aload 2 /* input */
            iload 3 /* inputPtr */
            iinc 3 /* inputPtr */ 1
            baload
            bipush 8
            ishl
            istore 8 /* b24 */
        start local 8 // int b24
         7: .line 1559
            iload 8 /* b24 */
            aload 2 /* input */
            iload 3 /* inputPtr */
            iinc 3 /* inputPtr */ 1
            baload
            sipush 255
            iand
            ior
            istore 8 /* b24 */
         8: .line 1560
            iload 8 /* b24 */
            bipush 8
            ishl
            aload 2 /* input */
            iload 3 /* inputPtr */
            iinc 3 /* inputPtr */ 1
            baload
            sipush 255
            iand
            ior
            istore 8 /* b24 */
         9: .line 1561
            aload 0 /* this */
            aload 1 /* b64variant */
            iload 8 /* b24 */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            invokevirtual com.fasterxml.jackson.core.Base64Variant.encodeBase64Chunk:(I[CI)I
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
        10: .line 1562
            iinc 7 /* chunksBeforeLF */ -1
            iload 7 /* chunksBeforeLF */
            ifgt 14
        11: .line 1564
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            bipush 92
            castore
        12: .line 1565
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            bipush 110
            castore
        13: .line 1566
            aload 1 /* b64variant */
            invokevirtual com.fasterxml.jackson.core.Base64Variant.getMaxLineLength:()I
            iconst_2
            ishr
            istore 7 /* chunksBeforeLF */
        end local 8 // int b24
        14: .line 1553
      StackMap locals:
      StackMap stack:
            iload 3 /* inputPtr */
            iload 5 /* safeInputEnd */
            if_icmple 4
        15: .line 1571
            iload 4 /* inputEnd */
            iload 3 /* inputPtr */
            isub
            istore 8 /* inputLeft */
        start local 8 // int inputLeft
        16: .line 1572
            iload 8 /* inputLeft */
            ifle 23
        17: .line 1573
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iload 6 /* safeOutputEnd */
            if_icmple 19
        18: .line 1574
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
        19: .line 1576
      StackMap locals: int
      StackMap stack:
            aload 2 /* input */
            iload 3 /* inputPtr */
            iinc 3 /* inputPtr */ 1
            baload
            bipush 16
            ishl
            istore 9 /* b24 */
        start local 9 // int b24
        20: .line 1577
            iload 8 /* inputLeft */
            iconst_2
            if_icmpne 22
        21: .line 1578
            iload 9 /* b24 */
            aload 2 /* input */
            iload 3 /* inputPtr */
            iinc 3 /* inputPtr */ 1
            baload
            sipush 255
            iand
            bipush 8
            ishl
            ior
            istore 9 /* b24 */
        22: .line 1580
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* b64variant */
            iload 9 /* b24 */
            iload 8 /* inputLeft */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            invokevirtual com.fasterxml.jackson.core.Base64Variant.encodeBase64Partial:(II[CI)I
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
        end local 9 // int b24
        23: .line 1582
      StackMap locals:
      StackMap stack:
            return
        end local 8 // int inputLeft
        end local 7 // int chunksBeforeLF
        end local 6 // int safeOutputEnd
        end local 5 // int safeInputEnd
        end local 4 // int inputEnd
        end local 3 // int inputPtr
        end local 2 // byte[] input
        end local 1 // com.fasterxml.jackson.core.Base64Variant b64variant
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   24     0            this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0   24     1      b64variant  Lcom/fasterxml/jackson/core/Base64Variant;
            0   24     2           input  [B
            0   24     3        inputPtr  I
            0   24     4        inputEnd  I
            1   24     5    safeInputEnd  I
            2   24     6   safeOutputEnd  I
            3   24     7  chunksBeforeLF  I
            7   14     8             b24  I
           16   24     8       inputLeft  I
           20   23     9             b24  I
    Exceptions:
      throws java.io.IOException, com.fasterxml.jackson.core.JsonGenerationException
    MethodParameters:
            Name  Flags
      b64variant  
      input       
      inputPtr    
      inputEnd    final

  protected final int _writeBinary(com.fasterxml.jackson.core.Base64Variant, java.io.InputStream, byte[], int);
    descriptor: (Lcom/fasterxml/jackson/core/Base64Variant;Ljava/io/InputStream;[BI)I
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=6, locals=12, args_size=5
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // com.fasterxml.jackson.core.Base64Variant b64variant
        start local 2 // java.io.InputStream data
        start local 3 // byte[] readBuffer
        start local 4 // int bytesLeft
         0: .line 1589
            iconst_0
            istore 5 /* inputPtr */
        start local 5 // int inputPtr
         1: .line 1590
            iconst_0
            istore 6 /* inputEnd */
        start local 6 // int inputEnd
         2: .line 1591
            bipush -3
            istore 7 /* lastFullOffset */
        start local 7 // int lastFullOffset
         3: .line 1594
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            bipush 6
            isub
            istore 8 /* safeOutputEnd */
        start local 8 // int safeOutputEnd
         4: .line 1595
            aload 1 /* b64variant */
            invokevirtual com.fasterxml.jackson.core.Base64Variant.getMaxLineLength:()I
            iconst_2
            ishr
            istore 9 /* chunksBeforeLF */
        start local 9 // int chunksBeforeLF
         5: .line 1597
            goto 23
         6: .line 1598
      StackMap locals: com.fasterxml.jackson.core.json.WriterBasedJsonGenerator com.fasterxml.jackson.core.Base64Variant java.io.InputStream byte[] int int int int int int
      StackMap stack:
            iload 5 /* inputPtr */
            iload 7 /* lastFullOffset */
            if_icmple 12
         7: .line 1599
            aload 0 /* this */
            aload 2 /* data */
            aload 3 /* readBuffer */
            iload 5 /* inputPtr */
            iload 6 /* inputEnd */
            iload 4 /* bytesLeft */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._readMore:(Ljava/io/InputStream;[BIII)I
            istore 6 /* inputEnd */
         8: .line 1600
            iconst_0
            istore 5 /* inputPtr */
         9: .line 1601
            iload 6 /* inputEnd */
            iconst_3
            if_icmpge 11
        10: .line 1602
            goto 24
        11: .line 1604
      StackMap locals:
      StackMap stack:
            iload 6 /* inputEnd */
            iconst_3
            isub
            istore 7 /* lastFullOffset */
        12: .line 1606
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iload 8 /* safeOutputEnd */
            if_icmple 14
        13: .line 1607
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
        14: .line 1609
      StackMap locals:
      StackMap stack:
            aload 3 /* readBuffer */
            iload 5 /* inputPtr */
            iinc 5 /* inputPtr */ 1
            baload
            bipush 8
            ishl
            istore 10 /* b24 */
        start local 10 // int b24
        15: .line 1610
            iload 10 /* b24 */
            aload 3 /* readBuffer */
            iload 5 /* inputPtr */
            iinc 5 /* inputPtr */ 1
            baload
            sipush 255
            iand
            ior
            istore 10 /* b24 */
        16: .line 1611
            iload 10 /* b24 */
            bipush 8
            ishl
            aload 3 /* readBuffer */
            iload 5 /* inputPtr */
            iinc 5 /* inputPtr */ 1
            baload
            sipush 255
            iand
            ior
            istore 10 /* b24 */
        17: .line 1612
            iinc 4 /* bytesLeft */ -3
        18: .line 1613
            aload 0 /* this */
            aload 1 /* b64variant */
            iload 10 /* b24 */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            invokevirtual com.fasterxml.jackson.core.Base64Variant.encodeBase64Chunk:(I[CI)I
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
        19: .line 1614
            iinc 9 /* chunksBeforeLF */ -1
            iload 9 /* chunksBeforeLF */
            ifgt 23
        20: .line 1615
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            bipush 92
            castore
        21: .line 1616
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            bipush 110
            castore
        22: .line 1617
            aload 1 /* b64variant */
            invokevirtual com.fasterxml.jackson.core.Base64Variant.getMaxLineLength:()I
            iconst_2
            ishr
            istore 9 /* chunksBeforeLF */
        end local 10 // int b24
        23: .line 1597
      StackMap locals:
      StackMap stack:
            iload 4 /* bytesLeft */
            iconst_2
            if_icmpgt 6
        24: .line 1622
      StackMap locals:
      StackMap stack:
            iload 4 /* bytesLeft */
            ifle 38
        25: .line 1623
            aload 0 /* this */
            aload 2 /* data */
            aload 3 /* readBuffer */
            iload 5 /* inputPtr */
            iload 6 /* inputEnd */
            iload 4 /* bytesLeft */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._readMore:(Ljava/io/InputStream;[BIII)I
            istore 6 /* inputEnd */
        26: .line 1624
            iconst_0
            istore 5 /* inputPtr */
        27: .line 1625
            iload 6 /* inputEnd */
            ifle 38
        28: .line 1626
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iload 8 /* safeOutputEnd */
            if_icmple 30
        29: .line 1627
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
        30: .line 1629
      StackMap locals:
      StackMap stack:
            aload 3 /* readBuffer */
            iload 5 /* inputPtr */
            iinc 5 /* inputPtr */ 1
            baload
            bipush 16
            ishl
            istore 10 /* b24 */
        start local 10 // int b24
        31: .line 1631
            iload 5 /* inputPtr */
            iload 6 /* inputEnd */
            if_icmpge 35
        32: .line 1632
            iload 10 /* b24 */
            aload 3 /* readBuffer */
            iload 5 /* inputPtr */
            baload
            sipush 255
            iand
            bipush 8
            ishl
            ior
            istore 10 /* b24 */
        33: .line 1633
            iconst_2
            istore 11 /* amount */
        start local 11 // int amount
        34: .line 1634
            goto 36
        end local 11 // int amount
        35: .line 1635
      StackMap locals: int
      StackMap stack:
            iconst_1
            istore 11 /* amount */
        start local 11 // int amount
        36: .line 1637
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* b64variant */
            iload 10 /* b24 */
            iload 11 /* amount */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            invokevirtual com.fasterxml.jackson.core.Base64Variant.encodeBase64Partial:(II[CI)I
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
        37: .line 1638
            iload 4 /* bytesLeft */
            iload 11 /* amount */
            isub
            istore 4 /* bytesLeft */
        end local 11 // int amount
        end local 10 // int b24
        38: .line 1641
      StackMap locals:
      StackMap stack:
            iload 4 /* bytesLeft */
            ireturn
        end local 9 // int chunksBeforeLF
        end local 8 // int safeOutputEnd
        end local 7 // int lastFullOffset
        end local 6 // int inputEnd
        end local 5 // int inputPtr
        end local 4 // int bytesLeft
        end local 3 // byte[] readBuffer
        end local 2 // java.io.InputStream data
        end local 1 // com.fasterxml.jackson.core.Base64Variant b64variant
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   39     0            this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0   39     1      b64variant  Lcom/fasterxml/jackson/core/Base64Variant;
            0   39     2            data  Ljava/io/InputStream;
            0   39     3      readBuffer  [B
            0   39     4       bytesLeft  I
            1   39     5        inputPtr  I
            2   39     6        inputEnd  I
            3   39     7  lastFullOffset  I
            4   39     8   safeOutputEnd  I
            5   39     9  chunksBeforeLF  I
           15   23    10             b24  I
           31   38    10             b24  I
           34   35    11          amount  I
           36   38    11          amount  I
    Exceptions:
      throws java.io.IOException, com.fasterxml.jackson.core.JsonGenerationException
    MethodParameters:
            Name  Flags
      b64variant  
      data        
      readBuffer  
      bytesLeft   

  protected final int _writeBinary(com.fasterxml.jackson.core.Base64Variant, java.io.InputStream, byte[]);
    descriptor: (Lcom/fasterxml/jackson/core/Base64Variant;Ljava/io/InputStream;[B)I
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=6, locals=12, args_size=4
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // com.fasterxml.jackson.core.Base64Variant b64variant
        start local 2 // java.io.InputStream data
        start local 3 // byte[] readBuffer
         0: .line 1649
            iconst_0
            istore 4 /* inputPtr */
        start local 4 // int inputPtr
         1: .line 1650
            iconst_0
            istore 5 /* inputEnd */
        start local 5 // int inputEnd
         2: .line 1651
            bipush -3
            istore 6 /* lastFullOffset */
        start local 6 // int lastFullOffset
         3: .line 1652
            iconst_0
            istore 7 /* bytesDone */
        start local 7 // int bytesDone
         4: .line 1655
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            bipush 6
            isub
            istore 8 /* safeOutputEnd */
        start local 8 // int safeOutputEnd
         5: .line 1656
            aload 1 /* b64variant */
            invokevirtual com.fasterxml.jackson.core.Base64Variant.getMaxLineLength:()I
            iconst_2
            ishr
            istore 9 /* chunksBeforeLF */
        start local 9 // int chunksBeforeLF
         6: .line 1660
      StackMap locals: com.fasterxml.jackson.core.json.WriterBasedJsonGenerator com.fasterxml.jackson.core.Base64Variant java.io.InputStream byte[] int int int int int int
      StackMap stack:
            iload 4 /* inputPtr */
            iload 6 /* lastFullOffset */
            if_icmple 12
         7: .line 1661
            aload 0 /* this */
            aload 2 /* data */
            aload 3 /* readBuffer */
            iload 4 /* inputPtr */
            iload 5 /* inputEnd */
            aload 3 /* readBuffer */
            arraylength
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._readMore:(Ljava/io/InputStream;[BIII)I
            istore 5 /* inputEnd */
         8: .line 1662
            iconst_0
            istore 4 /* inputPtr */
         9: .line 1663
            iload 5 /* inputEnd */
            iconst_3
            if_icmpge 11
        10: .line 1664
            goto 24
        11: .line 1666
      StackMap locals:
      StackMap stack:
            iload 5 /* inputEnd */
            iconst_3
            isub
            istore 6 /* lastFullOffset */
        12: .line 1668
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iload 8 /* safeOutputEnd */
            if_icmple 14
        13: .line 1669
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
        14: .line 1672
      StackMap locals:
      StackMap stack:
            aload 3 /* readBuffer */
            iload 4 /* inputPtr */
            iinc 4 /* inputPtr */ 1
            baload
            bipush 8
            ishl
            istore 10 /* b24 */
        start local 10 // int b24
        15: .line 1673
            iload 10 /* b24 */
            aload 3 /* readBuffer */
            iload 4 /* inputPtr */
            iinc 4 /* inputPtr */ 1
            baload
            sipush 255
            iand
            ior
            istore 10 /* b24 */
        16: .line 1674
            iload 10 /* b24 */
            bipush 8
            ishl
            aload 3 /* readBuffer */
            iload 4 /* inputPtr */
            iinc 4 /* inputPtr */ 1
            baload
            sipush 255
            iand
            ior
            istore 10 /* b24 */
        17: .line 1675
            iinc 7 /* bytesDone */ 3
        18: .line 1676
            aload 0 /* this */
            aload 1 /* b64variant */
            iload 10 /* b24 */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            invokevirtual com.fasterxml.jackson.core.Base64Variant.encodeBase64Chunk:(I[CI)I
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
        19: .line 1677
            iinc 9 /* chunksBeforeLF */ -1
            iload 9 /* chunksBeforeLF */
            ifgt 6
        20: .line 1678
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            bipush 92
            castore
        21: .line 1679
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            bipush 110
            castore
        22: .line 1680
            aload 1 /* b64variant */
            invokevirtual com.fasterxml.jackson.core.Base64Variant.getMaxLineLength:()I
            iconst_2
            ishr
            istore 9 /* chunksBeforeLF */
        end local 10 // int b24
        23: .line 1659
            goto 6
        24: .line 1685
      StackMap locals:
      StackMap stack:
            iload 4 /* inputPtr */
            iload 5 /* inputEnd */
            if_icmpge 34
        25: .line 1686
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iload 8 /* safeOutputEnd */
            if_icmple 27
        26: .line 1687
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
        27: .line 1689
      StackMap locals:
      StackMap stack:
            aload 3 /* readBuffer */
            iload 4 /* inputPtr */
            iinc 4 /* inputPtr */ 1
            baload
            bipush 16
            ishl
            istore 10 /* b24 */
        start local 10 // int b24
        28: .line 1690
            iconst_1
            istore 11 /* amount */
        start local 11 // int amount
        29: .line 1691
            iload 4 /* inputPtr */
            iload 5 /* inputEnd */
            if_icmpge 32
        30: .line 1692
            iload 10 /* b24 */
            aload 3 /* readBuffer */
            iload 4 /* inputPtr */
            baload
            sipush 255
            iand
            bipush 8
            ishl
            ior
            istore 10 /* b24 */
        31: .line 1693
            iconst_2
            istore 11 /* amount */
        32: .line 1695
      StackMap locals: int int
      StackMap stack:
            iload 7 /* bytesDone */
            iload 11 /* amount */
            iadd
            istore 7 /* bytesDone */
        33: .line 1696
            aload 0 /* this */
            aload 1 /* b64variant */
            iload 10 /* b24 */
            iload 11 /* amount */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            invokevirtual com.fasterxml.jackson.core.Base64Variant.encodeBase64Partial:(II[CI)I
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
        end local 11 // int amount
        end local 10 // int b24
        34: .line 1698
      StackMap locals:
      StackMap stack:
            iload 7 /* bytesDone */
            ireturn
        end local 9 // int chunksBeforeLF
        end local 8 // int safeOutputEnd
        end local 7 // int bytesDone
        end local 6 // int lastFullOffset
        end local 5 // int inputEnd
        end local 4 // int inputPtr
        end local 3 // byte[] readBuffer
        end local 2 // java.io.InputStream data
        end local 1 // com.fasterxml.jackson.core.Base64Variant b64variant
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   35     0            this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0   35     1      b64variant  Lcom/fasterxml/jackson/core/Base64Variant;
            0   35     2            data  Ljava/io/InputStream;
            0   35     3      readBuffer  [B
            1   35     4        inputPtr  I
            2   35     5        inputEnd  I
            3   35     6  lastFullOffset  I
            4   35     7       bytesDone  I
            5   35     8   safeOutputEnd  I
            6   35     9  chunksBeforeLF  I
           15   23    10             b24  I
           28   34    10             b24  I
           29   34    11          amount  I
    Exceptions:
      throws java.io.IOException, com.fasterxml.jackson.core.JsonGenerationException
    MethodParameters:
            Name  Flags
      b64variant  
      data        
      readBuffer  

  private int _readMore(java.io.InputStream, byte[], int, int, int);
    descriptor: (Ljava/io/InputStream;[BIII)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=9, args_size=6
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // java.io.InputStream in
        start local 2 // byte[] readBuffer
        start local 3 // int inputPtr
        start local 4 // int inputEnd
        start local 5 // int maxRead
         0: .line 1706
            iconst_0
            istore 6 /* i */
        start local 6 // int i
         1: .line 1707
            goto 3
         2: .line 1708
      StackMap locals: int
      StackMap stack:
            aload 2 /* readBuffer */
            iload 6 /* i */
            iinc 6 /* i */ 1
            aload 2 /* readBuffer */
            iload 3 /* inputPtr */
            iinc 3 /* inputPtr */ 1
            baload
            bastore
         3: .line 1707
      StackMap locals:
      StackMap stack:
            iload 3 /* inputPtr */
            iload 4 /* inputEnd */
            if_icmplt 2
         4: .line 1710
            iconst_0
            istore 3 /* inputPtr */
         5: .line 1711
            iload 6 /* i */
            istore 4 /* inputEnd */
         6: .line 1712
            iload 5 /* maxRead */
            aload 2 /* readBuffer */
            arraylength
            invokestatic java.lang.Math.min:(II)I
            istore 5 /* maxRead */
         7: .line 1715
      StackMap locals:
      StackMap stack:
            iload 5 /* maxRead */
            iload 4 /* inputEnd */
            isub
            istore 7 /* length */
        start local 7 // int length
         8: .line 1716
            iload 7 /* length */
            ifne 10
         9: .line 1717
            goto 16
        10: .line 1719
      StackMap locals: int
      StackMap stack:
            aload 1 /* in */
            aload 2 /* readBuffer */
            iload 4 /* inputEnd */
            iload 7 /* length */
            invokevirtual java.io.InputStream.read:([BII)I
            istore 8 /* count */
        start local 8 // int count
        11: .line 1720
            iload 8 /* count */
            ifge 13
        12: .line 1721
            iload 4 /* inputEnd */
            ireturn
        13: .line 1723
      StackMap locals: int
      StackMap stack:
            iload 4 /* inputEnd */
            iload 8 /* count */
            iadd
            istore 4 /* inputEnd */
        end local 8 // int count
        end local 7 // int length
        14: .line 1724
            iload 4 /* inputEnd */
            iconst_3
        15: .line 1714
            if_icmplt 7
        16: .line 1725
      StackMap locals:
      StackMap stack:
            iload 4 /* inputEnd */
            ireturn
        end local 6 // int i
        end local 5 // int maxRead
        end local 4 // int inputEnd
        end local 3 // int inputPtr
        end local 2 // byte[] readBuffer
        end local 1 // java.io.InputStream in
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   17     0        this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0   17     1          in  Ljava/io/InputStream;
            0   17     2  readBuffer  [B
            0   17     3    inputPtr  I
            0   17     4    inputEnd  I
            0   17     5     maxRead  I
            1   17     6           i  I
            8   14     7      length  I
           11   14     8       count  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
            Name  Flags
      in          
      readBuffer  
      inputPtr    
      inputEnd    
      maxRead     

  private final void _writeNull();
    descriptor: ()V
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
         0: .line 1736
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iconst_4
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmplt 2
         1: .line 1737
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
         2: .line 1739
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            istore 1 /* ptr */
        start local 1 // int ptr
         3: .line 1740
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            astore 2 /* buf */
        start local 2 // char[] buf
         4: .line 1741
            aload 2 /* buf */
            iload 1 /* ptr */
            bipush 110
            castore
         5: .line 1742
            aload 2 /* buf */
            iinc 1 /* ptr */ 1
            iload 1 /* ptr */
            bipush 117
            castore
         6: .line 1743
            aload 2 /* buf */
            iinc 1 /* ptr */ 1
            iload 1 /* ptr */
            bipush 108
            castore
         7: .line 1744
            aload 2 /* buf */
            iinc 1 /* ptr */ 1
            iload 1 /* ptr */
            bipush 108
            castore
         8: .line 1745
            aload 0 /* this */
            iload 1 /* ptr */
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
         9: .line 1746
            return
        end local 2 // char[] buf
        end local 1 // int ptr
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            3   10     1   ptr  I
            4   10     2   buf  [C
    Exceptions:
      throws java.io.IOException

  private void _prependOrWriteCharacterEscape(char, int);
    descriptor: (CI)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=6, args_size=3
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // char ch
        start local 2 // int escCode
         0: .line 1762
            iload 2 /* escCode */
            iflt 14
         1: .line 1763
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iconst_2
            if_icmplt 7
         2: .line 1764
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iconst_2
            isub
            istore 3 /* ptr */
        start local 3 // int ptr
         3: .line 1765
            aload 0 /* this */
            iload 3 /* ptr */
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputHead:I
         4: .line 1766
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            iload 3 /* ptr */
            iinc 3 /* ptr */ 1
            bipush 92
            castore
         5: .line 1767
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            iload 3 /* ptr */
            iload 2 /* escCode */
            i2c
            castore
         6: .line 1768
            return
        end local 3 // int ptr
         7: .line 1771
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._entityBuffer:[C
            astore 3 /* buf */
        start local 3 // char[] buf
         8: .line 1772
            aload 3 /* buf */
            ifnonnull 10
         9: .line 1773
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._allocateEntityBuffer:()[C
            astore 3 /* buf */
        10: .line 1775
      StackMap locals: char[]
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputHead:I
        11: .line 1776
            aload 3 /* buf */
            iconst_1
            iload 2 /* escCode */
            i2c
            castore
        12: .line 1777
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writer:Ljava/io/Writer;
            aload 3 /* buf */
            iconst_0
            iconst_2
            invokevirtual java.io.Writer.write:([CII)V
        13: .line 1778
            return
        end local 3 // char[] buf
        14: .line 1780
      StackMap locals:
      StackMap stack:
            iload 2 /* escCode */
            bipush -2
            if_icmpeq 49
        15: .line 1781
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            bipush 6
            if_icmplt 32
        16: .line 1782
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            astore 3 /* buf */
        start local 3 // char[] buf
        17: .line 1783
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            bipush 6
            isub
            istore 4 /* ptr */
        start local 4 // int ptr
        18: .line 1784
            aload 0 /* this */
            iload 4 /* ptr */
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputHead:I
        19: .line 1785
            aload 3 /* buf */
            iload 4 /* ptr */
            bipush 92
            castore
        20: .line 1786
            aload 3 /* buf */
            iinc 4 /* ptr */ 1
            iload 4 /* ptr */
            bipush 117
            castore
        21: .line 1788
            iload 1 /* ch */
            sipush 255
            if_icmple 27
        22: .line 1789
            iload 1 /* ch */
            bipush 8
            ishr
            sipush 255
            iand
            istore 5 /* hi */
        start local 5 // int hi
        23: .line 1790
            aload 3 /* buf */
            iinc 4 /* ptr */ 1
            iload 4 /* ptr */
            getstatic com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.HEX_CHARS:[C
            iload 5 /* hi */
            iconst_4
            ishr
            caload
            castore
        24: .line 1791
            aload 3 /* buf */
            iinc 4 /* ptr */ 1
            iload 4 /* ptr */
            getstatic com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.HEX_CHARS:[C
            iload 5 /* hi */
            bipush 15
            iand
            caload
            castore
        25: .line 1792
            iload 1 /* ch */
            sipush 255
            iand
            i2c
            istore 1 /* ch */
        end local 5 // int hi
        26: .line 1793
            goto 29
        27: .line 1794
      StackMap locals: char[] int
      StackMap stack:
            aload 3 /* buf */
            iinc 4 /* ptr */ 1
            iload 4 /* ptr */
            bipush 48
            castore
        28: .line 1795
            aload 3 /* buf */
            iinc 4 /* ptr */ 1
            iload 4 /* ptr */
            bipush 48
            castore
        29: .line 1797
      StackMap locals:
      StackMap stack:
            aload 3 /* buf */
            iinc 4 /* ptr */ 1
            iload 4 /* ptr */
            getstatic com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.HEX_CHARS:[C
            iload 1 /* ch */
            iconst_4
            ishr
            caload
            castore
        30: .line 1798
            aload 3 /* buf */
            iinc 4 /* ptr */ 1
            iload 4 /* ptr */
            getstatic com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.HEX_CHARS:[C
            iload 1 /* ch */
            bipush 15
            iand
            caload
            castore
        31: .line 1799
            return
        end local 4 // int ptr
        end local 3 // char[] buf
        32: .line 1802
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._entityBuffer:[C
            astore 3 /* buf */
        start local 3 // char[] buf
        33: .line 1803
            aload 3 /* buf */
            ifnonnull 35
        34: .line 1804
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._allocateEntityBuffer:()[C
            astore 3 /* buf */
        35: .line 1806
      StackMap locals: char[]
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputHead:I
        36: .line 1807
            iload 1 /* ch */
            sipush 255
            if_icmple 45
        37: .line 1808
            iload 1 /* ch */
            bipush 8
            ishr
            sipush 255
            iand
            istore 4 /* hi */
        start local 4 // int hi
        38: .line 1809
            iload 1 /* ch */
            sipush 255
            iand
            istore 5 /* lo */
        start local 5 // int lo
        39: .line 1810
            aload 3 /* buf */
            bipush 10
            getstatic com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.HEX_CHARS:[C
            iload 4 /* hi */
            iconst_4
            ishr
            caload
            castore
        40: .line 1811
            aload 3 /* buf */
            bipush 11
            getstatic com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.HEX_CHARS:[C
            iload 4 /* hi */
            bipush 15
            iand
            caload
            castore
        41: .line 1812
            aload 3 /* buf */
            bipush 12
            getstatic com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.HEX_CHARS:[C
            iload 5 /* lo */
            iconst_4
            ishr
            caload
            castore
        42: .line 1813
            aload 3 /* buf */
            bipush 13
            getstatic com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.HEX_CHARS:[C
            iload 5 /* lo */
            bipush 15
            iand
            caload
            castore
        43: .line 1814
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writer:Ljava/io/Writer;
            aload 3 /* buf */
            bipush 8
            bipush 6
            invokevirtual java.io.Writer.write:([CII)V
        end local 5 // int lo
        end local 4 // int hi
        44: .line 1815
            goto 48
        45: .line 1816
      StackMap locals:
      StackMap stack:
            aload 3 /* buf */
            bipush 6
            getstatic com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.HEX_CHARS:[C
            iload 1 /* ch */
            iconst_4
            ishr
            caload
            castore
        46: .line 1817
            aload 3 /* buf */
            bipush 7
            getstatic com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.HEX_CHARS:[C
            iload 1 /* ch */
            bipush 15
            iand
            caload
            castore
        47: .line 1818
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writer:Ljava/io/Writer;
            aload 3 /* buf */
            iconst_2
            bipush 6
            invokevirtual java.io.Writer.write:([CII)V
        48: .line 1820
      StackMap locals:
      StackMap stack:
            return
        end local 3 // char[] buf
        49: .line 1824
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._currentEscape:Lcom/fasterxml/jackson/core/SerializableString;
            ifnonnull 52
        50: .line 1825
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._characterEscapes:Lcom/fasterxml/jackson/core/io/CharacterEscapes;
            iload 1 /* ch */
            invokevirtual com.fasterxml.jackson.core.io.CharacterEscapes.getEscapeSequence:(I)Lcom/fasterxml/jackson/core/SerializableString;
            invokeinterface com.fasterxml.jackson.core.SerializableString.getValue:()Ljava/lang/String;
            astore 3 /* escape */
        start local 3 // java.lang.String escape
        51: .line 1826
            goto 54
        end local 3 // java.lang.String escape
        52: .line 1827
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._currentEscape:Lcom/fasterxml/jackson/core/SerializableString;
            invokeinterface com.fasterxml.jackson.core.SerializableString.getValue:()Ljava/lang/String;
            astore 3 /* escape */
        start local 3 // java.lang.String escape
        53: .line 1828
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._currentEscape:Lcom/fasterxml/jackson/core/SerializableString;
        54: .line 1830
      StackMap locals: java.lang.String
      StackMap stack:
            aload 3 /* escape */
            invokevirtual java.lang.String.length:()I
            istore 4 /* len */
        start local 4 // int len
        55: .line 1831
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iload 4 /* len */
            if_icmplt 60
        56: .line 1832
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iload 4 /* len */
            isub
            istore 5 /* ptr */
        start local 5 // int ptr
        57: .line 1833
            aload 0 /* this */
            iload 5 /* ptr */
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputHead:I
        58: .line 1834
            aload 3 /* escape */
            iconst_0
            iload 4 /* len */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            iload 5 /* ptr */
            invokevirtual java.lang.String.getChars:(II[CI)V
        59: .line 1835
            return
        end local 5 // int ptr
        60: .line 1838
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputHead:I
        61: .line 1839
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writer:Ljava/io/Writer;
            aload 3 /* escape */
            invokevirtual java.io.Writer.write:(Ljava/lang/String;)V
        62: .line 1840
            return
        end local 4 // int len
        end local 3 // java.lang.String escape
        end local 2 // int escCode
        end local 1 // char ch
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   63     0     this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0   63     1       ch  C
            0   63     2  escCode  I
            3    7     3      ptr  I
            8   14     3      buf  [C
           17   32     3      buf  [C
           18   32     4      ptr  I
           23   26     5       hi  I
           33   49     3      buf  [C
           38   44     4       hi  I
           39   44     5       lo  I
           51   52     3   escape  Ljava/lang/String;
           53   63     3   escape  Ljava/lang/String;
           55   63     4      len  I
           57   60     5      ptr  I
    Exceptions:
      throws java.io.IOException, com.fasterxml.jackson.core.JsonGenerationException
    MethodParameters:
         Name  Flags
      ch       
      escCode  

  private int _prependOrWriteCharacterEscape(char[], int, int, char, int);
    descriptor: ([CIICI)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=9, args_size=6
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // char[] buffer
        start local 2 // int ptr
        start local 3 // int end
        start local 4 // char ch
        start local 5 // int escCode
         0: .line 1853
            iload 5 /* escCode */
            iflt 12
         1: .line 1854
            iload 2 /* ptr */
            iconst_1
            if_icmple 6
            iload 2 /* ptr */
            iload 3 /* end */
            if_icmpge 6
         2: .line 1855
            iinc 2 /* ptr */ -2
         3: .line 1856
            aload 1 /* buffer */
            iload 2 /* ptr */
            bipush 92
            castore
         4: .line 1857
            aload 1 /* buffer */
            iload 2 /* ptr */
            iconst_1
            iadd
            iload 5 /* escCode */
            i2c
            castore
         5: .line 1858
            goto 11
         6: .line 1859
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._entityBuffer:[C
            astore 6 /* ent */
        start local 6 // char[] ent
         7: .line 1860
            aload 6 /* ent */
            ifnonnull 9
         8: .line 1861
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._allocateEntityBuffer:()[C
            astore 6 /* ent */
         9: .line 1863
      StackMap locals: char[]
      StackMap stack:
            aload 6 /* ent */
            iconst_1
            iload 5 /* escCode */
            i2c
            castore
        10: .line 1864
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writer:Ljava/io/Writer;
            aload 6 /* ent */
            iconst_0
            iconst_2
            invokevirtual java.io.Writer.write:([CII)V
        end local 6 // char[] ent
        11: .line 1866
      StackMap locals:
      StackMap stack:
            iload 2 /* ptr */
            ireturn
        12: .line 1868
      StackMap locals:
      StackMap stack:
            iload 5 /* escCode */
            bipush -2
            if_icmpeq 46
        13: .line 1869
            iload 2 /* ptr */
            iconst_5
            if_icmple 29
            iload 2 /* ptr */
            iload 3 /* end */
            if_icmpge 29
        14: .line 1870
            iinc 2 /* ptr */ -6
        15: .line 1871
            aload 1 /* buffer */
            iload 2 /* ptr */
            iinc 2 /* ptr */ 1
            bipush 92
            castore
        16: .line 1872
            aload 1 /* buffer */
            iload 2 /* ptr */
            iinc 2 /* ptr */ 1
            bipush 117
            castore
        17: .line 1874
            iload 4 /* ch */
            sipush 255
            if_icmple 23
        18: .line 1875
            iload 4 /* ch */
            bipush 8
            ishr
            sipush 255
            iand
            istore 6 /* hi */
        start local 6 // int hi
        19: .line 1876
            aload 1 /* buffer */
            iload 2 /* ptr */
            iinc 2 /* ptr */ 1
            getstatic com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.HEX_CHARS:[C
            iload 6 /* hi */
            iconst_4
            ishr
            caload
            castore
        20: .line 1877
            aload 1 /* buffer */
            iload 2 /* ptr */
            iinc 2 /* ptr */ 1
            getstatic com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.HEX_CHARS:[C
            iload 6 /* hi */
            bipush 15
            iand
            caload
            castore
        21: .line 1878
            iload 4 /* ch */
            sipush 255
            iand
            i2c
            istore 4 /* ch */
        end local 6 // int hi
        22: .line 1879
            goto 25
        23: .line 1880
      StackMap locals:
      StackMap stack:
            aload 1 /* buffer */
            iload 2 /* ptr */
            iinc 2 /* ptr */ 1
            bipush 48
            castore
        24: .line 1881
            aload 1 /* buffer */
            iload 2 /* ptr */
            iinc 2 /* ptr */ 1
            bipush 48
            castore
        25: .line 1883
      StackMap locals:
      StackMap stack:
            aload 1 /* buffer */
            iload 2 /* ptr */
            iinc 2 /* ptr */ 1
            getstatic com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.HEX_CHARS:[C
            iload 4 /* ch */
            iconst_4
            ishr
            caload
            castore
        26: .line 1884
            aload 1 /* buffer */
            iload 2 /* ptr */
            getstatic com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.HEX_CHARS:[C
            iload 4 /* ch */
            bipush 15
            iand
            caload
            castore
        27: .line 1885
            iinc 2 /* ptr */ -5
        28: .line 1886
            goto 45
        29: .line 1888
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._entityBuffer:[C
            astore 6 /* ent */
        start local 6 // char[] ent
        30: .line 1889
            aload 6 /* ent */
            ifnonnull 32
        31: .line 1890
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._allocateEntityBuffer:()[C
            astore 6 /* ent */
        32: .line 1892
      StackMap locals: char[]
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputHead:I
        33: .line 1893
            iload 4 /* ch */
            sipush 255
            if_icmple 42
        34: .line 1894
            iload 4 /* ch */
            bipush 8
            ishr
            sipush 255
            iand
            istore 7 /* hi */
        start local 7 // int hi
        35: .line 1895
            iload 4 /* ch */
            sipush 255
            iand
            istore 8 /* lo */
        start local 8 // int lo
        36: .line 1896
            aload 6 /* ent */
            bipush 10
            getstatic com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.HEX_CHARS:[C
            iload 7 /* hi */
            iconst_4
            ishr
            caload
            castore
        37: .line 1897
            aload 6 /* ent */
            bipush 11
            getstatic com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.HEX_CHARS:[C
            iload 7 /* hi */
            bipush 15
            iand
            caload
            castore
        38: .line 1898
            aload 6 /* ent */
            bipush 12
            getstatic com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.HEX_CHARS:[C
            iload 8 /* lo */
            iconst_4
            ishr
            caload
            castore
        39: .line 1899
            aload 6 /* ent */
            bipush 13
            getstatic com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.HEX_CHARS:[C
            iload 8 /* lo */
            bipush 15
            iand
            caload
            castore
        40: .line 1900
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writer:Ljava/io/Writer;
            aload 6 /* ent */
            bipush 8
            bipush 6
            invokevirtual java.io.Writer.write:([CII)V
        end local 8 // int lo
        end local 7 // int hi
        41: .line 1901
            goto 45
        42: .line 1902
      StackMap locals:
      StackMap stack:
            aload 6 /* ent */
            bipush 6
            getstatic com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.HEX_CHARS:[C
            iload 4 /* ch */
            iconst_4
            ishr
            caload
            castore
        43: .line 1903
            aload 6 /* ent */
            bipush 7
            getstatic com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.HEX_CHARS:[C
            iload 4 /* ch */
            bipush 15
            iand
            caload
            castore
        44: .line 1904
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writer:Ljava/io/Writer;
            aload 6 /* ent */
            iconst_2
            bipush 6
            invokevirtual java.io.Writer.write:([CII)V
        end local 6 // char[] ent
        45: .line 1907
      StackMap locals:
      StackMap stack:
            iload 2 /* ptr */
            ireturn
        46: .line 1910
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._currentEscape:Lcom/fasterxml/jackson/core/SerializableString;
            ifnonnull 49
        47: .line 1911
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._characterEscapes:Lcom/fasterxml/jackson/core/io/CharacterEscapes;
            iload 4 /* ch */
            invokevirtual com.fasterxml.jackson.core.io.CharacterEscapes.getEscapeSequence:(I)Lcom/fasterxml/jackson/core/SerializableString;
            invokeinterface com.fasterxml.jackson.core.SerializableString.getValue:()Ljava/lang/String;
            astore 6 /* escape */
        start local 6 // java.lang.String escape
        48: .line 1912
            goto 51
        end local 6 // java.lang.String escape
        49: .line 1913
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._currentEscape:Lcom/fasterxml/jackson/core/SerializableString;
            invokeinterface com.fasterxml.jackson.core.SerializableString.getValue:()Ljava/lang/String;
            astore 6 /* escape */
        start local 6 // java.lang.String escape
        50: .line 1914
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._currentEscape:Lcom/fasterxml/jackson/core/SerializableString;
        51: .line 1916
      StackMap locals: java.lang.String
      StackMap stack:
            aload 6 /* escape */
            invokevirtual java.lang.String.length:()I
            istore 7 /* len */
        start local 7 // int len
        52: .line 1917
            iload 2 /* ptr */
            iload 7 /* len */
            if_icmplt 56
            iload 2 /* ptr */
            iload 3 /* end */
            if_icmpge 56
        53: .line 1918
            iload 2 /* ptr */
            iload 7 /* len */
            isub
            istore 2 /* ptr */
        54: .line 1919
            aload 6 /* escape */
            iconst_0
            iload 7 /* len */
            aload 1 /* buffer */
            iload 2 /* ptr */
            invokevirtual java.lang.String.getChars:(II[CI)V
        55: .line 1920
            goto 57
        56: .line 1921
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writer:Ljava/io/Writer;
            aload 6 /* escape */
            invokevirtual java.io.Writer.write:(Ljava/lang/String;)V
        57: .line 1923
      StackMap locals:
      StackMap stack:
            iload 2 /* ptr */
            ireturn
        end local 7 // int len
        end local 6 // java.lang.String escape
        end local 5 // int escCode
        end local 4 // char ch
        end local 3 // int end
        end local 2 // int ptr
        end local 1 // char[] buffer
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   58     0     this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0   58     1   buffer  [C
            0   58     2      ptr  I
            0   58     3      end  I
            0   58     4       ch  C
            0   58     5  escCode  I
            7   11     6      ent  [C
           19   22     6       hi  I
           30   45     6      ent  [C
           35   41     7       hi  I
           36   41     8       lo  I
           48   49     6   escape  Ljava/lang/String;
           50   58     6   escape  Ljava/lang/String;
           52   58     7      len  I
    Exceptions:
      throws java.io.IOException, com.fasterxml.jackson.core.JsonGenerationException
    MethodParameters:
         Name  Flags
      buffer   
      ptr      
      end      
      ch       
      escCode  

  private void _appendCharacterEscape(char, int);
    descriptor: (CI)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=6, args_size=3
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
        start local 1 // char ch
        start local 2 // int escCode
         0: .line 1933
            iload 2 /* escCode */
            iflt 6
         1: .line 1934
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iconst_2
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmple 3
         2: .line 1935
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
         3: .line 1937
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            bipush 92
            castore
         4: .line 1938
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iload 2 /* escCode */
            i2c
            castore
         5: .line 1939
            return
         6: .line 1941
      StackMap locals:
      StackMap stack:
            iload 2 /* escCode */
            bipush -2
            if_icmpeq 25
         7: .line 1942
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iconst_5
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmplt 9
         8: .line 1943
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
         9: .line 1945
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            istore 3 /* ptr */
        start local 3 // int ptr
        10: .line 1946
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            astore 4 /* buf */
        start local 4 // char[] buf
        11: .line 1947
            aload 4 /* buf */
            iload 3 /* ptr */
            iinc 3 /* ptr */ 1
            bipush 92
            castore
        12: .line 1948
            aload 4 /* buf */
            iload 3 /* ptr */
            iinc 3 /* ptr */ 1
            bipush 117
            castore
        13: .line 1950
            iload 1 /* ch */
            sipush 255
            if_icmple 19
        14: .line 1951
            iload 1 /* ch */
            bipush 8
            ishr
            sipush 255
            iand
            istore 5 /* hi */
        start local 5 // int hi
        15: .line 1952
            aload 4 /* buf */
            iload 3 /* ptr */
            iinc 3 /* ptr */ 1
            getstatic com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.HEX_CHARS:[C
            iload 5 /* hi */
            iconst_4
            ishr
            caload
            castore
        16: .line 1953
            aload 4 /* buf */
            iload 3 /* ptr */
            iinc 3 /* ptr */ 1
            getstatic com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.HEX_CHARS:[C
            iload 5 /* hi */
            bipush 15
            iand
            caload
            castore
        17: .line 1954
            iload 1 /* ch */
            sipush 255
            iand
            i2c
            istore 1 /* ch */
        end local 5 // int hi
        18: .line 1955
            goto 21
        19: .line 1956
      StackMap locals: int char[]
      StackMap stack:
            aload 4 /* buf */
            iload 3 /* ptr */
            iinc 3 /* ptr */ 1
            bipush 48
            castore
        20: .line 1957
            aload 4 /* buf */
            iload 3 /* ptr */
            iinc 3 /* ptr */ 1
            bipush 48
            castore
        21: .line 1959
      StackMap locals:
      StackMap stack:
            aload 4 /* buf */
            iload 3 /* ptr */
            iinc 3 /* ptr */ 1
            getstatic com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.HEX_CHARS:[C
            iload 1 /* ch */
            iconst_4
            ishr
            caload
            castore
        22: .line 1960
            aload 4 /* buf */
            iload 3 /* ptr */
            iinc 3 /* ptr */ 1
            getstatic com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.HEX_CHARS:[C
            iload 1 /* ch */
            bipush 15
            iand
            caload
            castore
        23: .line 1961
            aload 0 /* this */
            iload 3 /* ptr */
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
        24: .line 1962
            return
        end local 4 // char[] buf
        end local 3 // int ptr
        25: .line 1965
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._currentEscape:Lcom/fasterxml/jackson/core/SerializableString;
            ifnonnull 28
        26: .line 1966
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._characterEscapes:Lcom/fasterxml/jackson/core/io/CharacterEscapes;
            iload 1 /* ch */
            invokevirtual com.fasterxml.jackson.core.io.CharacterEscapes.getEscapeSequence:(I)Lcom/fasterxml/jackson/core/SerializableString;
            invokeinterface com.fasterxml.jackson.core.SerializableString.getValue:()Ljava/lang/String;
            astore 3 /* escape */
        start local 3 // java.lang.String escape
        27: .line 1967
            goto 30
        end local 3 // java.lang.String escape
        28: .line 1968
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._currentEscape:Lcom/fasterxml/jackson/core/SerializableString;
            invokeinterface com.fasterxml.jackson.core.SerializableString.getValue:()Ljava/lang/String;
            astore 3 /* escape */
        start local 3 // java.lang.String escape
        29: .line 1969
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._currentEscape:Lcom/fasterxml/jackson/core/SerializableString;
        30: .line 1971
      StackMap locals: java.lang.String
      StackMap stack:
            aload 3 /* escape */
            invokevirtual java.lang.String.length:()I
            istore 4 /* len */
        start local 4 // int len
        31: .line 1972
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iload 4 /* len */
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmple 36
        32: .line 1973
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._flushBuffer:()V
        33: .line 1974
            iload 4 /* len */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputEnd:I
            if_icmple 36
        34: .line 1975
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writer:Ljava/io/Writer;
            aload 3 /* escape */
            invokevirtual java.io.Writer.write:(Ljava/lang/String;)V
        35: .line 1976
            return
        36: .line 1979
      StackMap locals: int
      StackMap stack:
            aload 3 /* escape */
            iconst_0
            iload 4 /* len */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            invokevirtual java.lang.String.getChars:(II[CI)V
        37: .line 1980
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            iload 4 /* len */
            iadd
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
        38: .line 1981
            return
        end local 4 // int len
        end local 3 // java.lang.String escape
        end local 2 // int escCode
        end local 1 // char ch
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   39     0     this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            0   39     1       ch  C
            0   39     2  escCode  I
           10   25     3      ptr  I
           11   25     4      buf  [C
           15   18     5       hi  I
           27   28     3   escape  Ljava/lang/String;
           29   39     3   escape  Ljava/lang/String;
           31   39     4      len  I
    Exceptions:
      throws java.io.IOException, com.fasterxml.jackson.core.JsonGenerationException
    MethodParameters:
         Name  Flags
      ch       
      escCode  

  private char[] _allocateEntityBuffer();
    descriptor: ()[C
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
         0: .line 1985
            bipush 14
            newarray 5
            astore 1 /* buf */
        start local 1 // char[] buf
         1: .line 1987
            aload 1 /* buf */
            iconst_0
            bipush 92
            castore
         2: .line 1989
            aload 1 /* buf */
            iconst_2
            bipush 92
            castore
         3: .line 1990
            aload 1 /* buf */
            iconst_3
            bipush 117
            castore
         4: .line 1991
            aload 1 /* buf */
            iconst_4
            bipush 48
            castore
         5: .line 1992
            aload 1 /* buf */
            iconst_5
            bipush 48
            castore
         6: .line 1994
            aload 1 /* buf */
            bipush 8
            bipush 92
            castore
         7: .line 1995
            aload 1 /* buf */
            bipush 9
            bipush 117
            castore
         8: .line 1996
            aload 0 /* this */
            aload 1 /* buf */
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._entityBuffer:[C
         9: .line 1997
            aload 1 /* buf */
            areturn
        end local 1 // char[] buf
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            1   10     1   buf  [C

  private char[] _allocateCopyBuffer();
    descriptor: ()[C
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
         0: .line 2004
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._copyBuffer:[C
            ifnonnull 2
         1: .line 2005
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._ioContext:Lcom/fasterxml/jackson/core/io/IOContext;
            sipush 2000
            invokevirtual com.fasterxml.jackson.core.io.IOContext.allocNameCopyBuffer:(I)[C
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._copyBuffer:[C
         2: .line 2007
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._copyBuffer:[C
            areturn
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;

  protected void _flushBuffer();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
         0: .line 2012
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputHead:I
            isub
            istore 1 /* len */
        start local 1 // int len
         1: .line 2013
            iload 1 /* len */
            ifle 5
         2: .line 2014
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputHead:I
            istore 2 /* offset */
        start local 2 // int offset
         3: .line 2015
            aload 0 /* this */
            aload 0 /* this */
            iconst_0
            dup_x1
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputHead:I
            putfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputTail:I
         4: .line 2016
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._writer:Ljava/io/Writer;
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.json.WriterBasedJsonGenerator._outputBuffer:[C
            iload 2 /* offset */
            iload 1 /* len */
            invokevirtual java.io.Writer.write:([CII)V
        end local 2 // int offset
         5: .line 2018
      StackMap locals: int
      StackMap stack:
            return
        end local 1 // int len
        end local 0 // com.fasterxml.jackson.core.json.WriterBasedJsonGenerator this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator;
            1    6     1     len  I
            3    5     2  offset  I
    Exceptions:
      throws java.io.IOException
}
SourceFile: "WriterBasedJsonGenerator.java"
InnerClasses:
  public final Feature = com.fasterxml.jackson.core.JsonGenerator$Feature of com.fasterxml.jackson.core.JsonGenerator