! __.PKGDEF 0 0 0 644 7750 ` go object linux amd64 go1.5.1 X:none build id "2707b471ac4a0e40408caa0ad2f4fdf1e1e06401" $$ package bufio import runtime "runtime" import bytes "bytes" import errors "errors" import io "io" import utf8 "unicode/utf8" var @"".ErrInvalidUnreadByte error var @"".ErrInvalidUnreadRune error var @"".ErrBufferFull error var @"".ErrNegativeCount error type @"io".Reader interface { Read(@"io".p []byte) (@"io".n int, @"io".err error) } type @"io".Writer interface { Write(@"io".p []byte) (@"io".n int, @"io".err error) } type @"".Reader struct { @"".buf []byte; @"".rd @"io".Reader; @"".r int; @"".w int; @"".err error; @"".lastByte int; @"".lastRuneSize int } func (@"".b·2 *@"".Reader "esc:0x1") Buffered () (? int) { return @"".b·2.@"".w - @"".b·2.@"".r } func (@"".b·3 *@"".Reader "esc:0x10a") Discard (@"".n·4 int) (@"".discarded·1 int, @"".err·2 error) func (@"".b·3 *@"".Reader "esc:0x12a") Peek (@"".n·4 int) (? []byte, ? error) func (@"".b·3 *@"".Reader "esc:0x10a") Read (@"".p·4 []byte) (@"".n·1 int, @"".err·2 error) func (@"".b·3 *@"".Reader "esc:0x10a") ReadByte () (@"".c·1 byte, @"".err·2 error) func (@"".b·3 *@"".Reader "esc:0x10a") ReadBytes (@"".delim·4 byte) (@"".line·1 []byte, @"".err·2 error) func (@"".b·4 *@"".Reader "esc:0x82a") ReadLine () (@"".line·1 []byte, @"".isPrefix·2 bool, @"".err·3 error) func (@"".b·4 *@"".Reader "esc:0x80a") ReadRune () (@"".r·1 rune, @"".size·2 int, @"".err·3 error) func (@"".b·3 *@"".Reader "esc:0x12a") ReadSlice (@"".delim·4 byte) (@"".line·1 []byte, @"".err·2 error) func (@"".b·3 *@"".Reader "esc:0x10a") ReadString (@"".delim·4 byte) (@"".line·1 string, @"".err·2 error) func (@"".b·1 *@"".Reader "esc:0x9") Reset (@"".r·2 @"io".Reader) { @"".b·1.@"".reset(@"".b·1.@"".buf, @"".r·2) } func (@"".b·2 *@"".Reader "esc:0x1") UnreadByte () (? error) { if @"".b·2.@"".lastByte < 0x0 || @"".b·2.@"".r == 0x0 && @"".b·2.@"".w > 0x0 { return @"".ErrInvalidUnreadByte }; if @"".b·2.@"".r > 0x0 { @"".b·2.@"".r-- } else { @"".b·2.@"".w = 0x1 }; @"".b·2.@"".buf[@"".b·2.@"".r] = byte(@"".b·2.@"".lastByte); @"".b·2.@"".lastByte = -0x1; @"".b·2.@"".lastRuneSize = -0x1; return nil } func (@"".b·2 *@"".Reader "esc:0x1") UnreadRune () (? error) { if @"".b·2.@"".lastRuneSize < 0x0 || @"".b·2.@"".r < @"".b·2.@"".lastRuneSize { return @"".ErrInvalidUnreadRune }; @"".b·2.@"".r -= @"".b·2.@"".lastRuneSize; @"".b·2.@"".lastByte = -0x1; @"".b·2.@"".lastRuneSize = -0x1; return nil } func (@"".b·3 *@"".Reader "esc:0x10a") WriteTo (@"".w·4 @"io".Writer) (@"".n·1 int64, @"".err·2 error) func (@"".b·1 *@"".Reader "esc:0x9") @"".fill () func (@"".b·2 *@"".Reader "esc:0x22") @"".readErr () (? error) { var @"".err·3 error; @"".err·3 = @"".b·2.@"".err; @"".b·2.@"".err = nil; return @"".err·3 } func (@"".b·1 *@"".Reader "esc:0x1") @"".reset (@"".buf·2 []byte, @"".r·3 @"io".Reader) { *@"".b·1 = (@"".Reader{ @"".buf:@"".buf·2, @"".rd:@"".r·3, @"".lastByte:-0x1, @"".lastRuneSize:-0x1 }) } func (@"".b·3 *@"".Reader "esc:0x9") @"".writeBuf (@"".w·4 @"io".Writer) (? int64, ? error) func @"".NewReaderSize (@"".rd·2 @"io".Reader, @"".size·3 int) (? *@"".Reader) { var @"".b·4 *@"".Reader; var @"".ok·5 bool; @"".b·4, @"".ok·5 = @"".rd·2.(*@"".Reader); if @"".ok·5 && len(@"".b·4.@"".buf) >= @"".size·3 { return @"".b·4 }; if @"".size·3 < 0x10 { @"".size·3 = 0x10 }; var @"".r·6 *@"".Reader; @"".r·6 = new(@"".Reader); @"".r·6.@"".reset(make([]byte, @"".size·3), @"".rd·2); return @"".r·6 } func @"".NewReader (@"".rd·2 @"io".Reader) (? *@"".Reader) { return @"".NewReaderSize(@"".rd·2, 0x1000) } type @"".Writer struct { @"".err error; @"".buf []byte; @"".n int; @"".wr @"io".Writer } func (@"".b·2 *@"".Writer "esc:0x1") Available () (? int) { return len(@"".b·2.@"".buf) - @"".b·2.@"".n } func (@"".b·2 *@"".Writer "esc:0x1") Buffered () (? int) { return @"".b·2.@"".n } func (@"".b·2 *@"".Writer "esc:0x2a") Flush () (? error) func (@"".b·3 *@"".Writer "esc:0x10a") ReadFrom (@"".r·4 @"io".Reader) (@"".n·1 int64, @"".err·2 error) func (@"".b·1 *@"".Writer "esc:0x1") Reset (@"".w·2 @"io".Writer) { @"".b·1.@"".err = nil; @"".b·1.@"".n = 0x0; @"".b·1.@"".wr = @"".w·2 } func (@"".b·3 *@"".Writer "esc:0x10a") Write (@"".p·4 []byte) (@"".nn·1 int, @"".err·2 error) func (@"".b·2 *@"".Writer "esc:0x2a") WriteByte (@"".c·3 byte) (? error) func (@"".b·3 *@"".Writer "esc:0x10a") WriteRune (@"".r·4 rune) (@"".size·1 int, @"".err·2 error) func (@"".b·3 *@"".Writer "esc:0x10a") WriteString (@"".s·4 string "esc:0x9") (? int, ? error) func (@"".b·2 *@"".Writer "esc:0x2a") @"".flush () (? error) func @"".NewWriterSize (@"".w·2 @"io".Writer, @"".size·3 int) (? *@"".Writer) { var @"".b·4 *@"".Writer; var @"".ok·5 bool; @"".b·4, @"".ok·5 = @"".w·2.(*@"".Writer); if @"".ok·5 && len(@"".b·4.@"".buf) >= @"".size·3 { return @"".b·4 }; if @"".size·3 <= 0x0 { @"".size·3 = 0x1000 }; return (&@"".Writer{ @"".buf:make([]byte, @"".size·3), @"".wr:@"".w·2 }) } func @"".NewWriter (@"".w·2 @"io".Writer) (? *@"".Writer) { return @"".NewWriterSize(@"".w·2, 0x1000) } type @"".ReadWriter struct { ? *@"".Reader; ? *@"".Writer } func @"".NewReadWriter (@"".r·2 *@"".Reader, @"".w·3 *@"".Writer) (? *@"".ReadWriter) { return (&@"".ReadWriter{ Reader:@"".r·2, Writer:@"".w·3 }) } type @"".SplitFunc func(@"".data []byte, @"".atEOF bool) (@"".advance int, @"".token []byte, @"".err error) type @"".Scanner struct { @"".r @"io".Reader; @"".split @"".SplitFunc; @"".maxTokenSize int; @"".token []byte; @"".buf []byte; @"".start int; @"".end int; @"".err error; @"".empties int } func (@"".s·2 *@"".Scanner "esc:0x22") Bytes () (? []byte) { return @"".s·2.@"".token } func (@"".s·2 *@"".Scanner "esc:0x22") Err () (? error) { if @"".s·2.@"".err == @"io".EOF { return nil }; return @"".s·2.@"".err } func (@"".s·2 *@"".Scanner "esc:0x9") Scan () (? bool) func (@"".s·1 *@"".Scanner "esc:0x1") Split (@"".split·2 @"".SplitFunc) { @"".s·1.@"".split = @"".split·2 } func (@"".s·2 *@"".Scanner "esc:0x1") Text () (? string) { return string(@"".s·2.@"".token) } func (@"".s·2 *@"".Scanner "esc:0x1") @"".advance (@"".n·3 int) (? bool) { if @"".n·3 < 0x0 { @"".s·2.@"".setErr(@"".ErrNegativeAdvance); return false }; if @"".n·3 > @"".s·2.@"".end - @"".s·2.@"".start { @"".s·2.@"".setErr(@"".ErrAdvanceTooFar); return false }; @"".s·2.@"".start += @"".n·3; return true } func (@"".s·1 *@"".Scanner "esc:0x1") @"".setErr (@"".err·2 error) { if @"".s·1.@"".err == nil || @"".s·1.@"".err == @"io".EOF { @"".s·1.@"".err = @"".err·2 } } var @"".ErrTooLong error var @"".ErrNegativeAdvance error var @"".ErrAdvanceTooFar error const @"".MaxScanTokenSize = 0x10000 func @"".NewScanner (@"".r·2 @"io".Reader) (? *@"".Scanner) { return (&@"".Scanner{ @"".r:@"".r·2, @"".split:@"".ScanLines, @"".maxTokenSize:0x10000, @"".buf:make([]byte, 0x1000) }) } func @"".ScanBytes (@"".data·4 []byte "esc:0x82", @"".atEOF·5 bool) (@"".advance·1 int, @"".token·2 []byte, @"".err·3 error) { if @"".atEOF·5 && len(@"".data·4) == 0x0 { return 0x0, nil, nil }; return 0x1, @"".data·4[0x0:0x1], nil } func @"".ScanRunes (@"".data·4 []byte "esc:0x82", @"".atEOF·5 bool) (@"".advance·1 int, @"".token·2 []byte, @"".err·3 error) func @"".ScanLines (@"".data·4 []byte "esc:0x82", @"".atEOF·5 bool) (@"".advance·1 int, @"".token·2 []byte, @"".err·3 error) func @"".ScanWords (@"".data·4 []byte "esc:0x82", @"".atEOF·5 bool) (@"".advance·1 int, @"".token·2 []byte, @"".err·3 error) func @"".init () const @"".minReadBufferSize = 0x10 const @"".defaultBufSize = 0x1000 var @"io".EOF error $$ _go_.o 0 0 0 644 213485 ` go object linux amd64 go1.5.1 X:none ! go13ldbytes.aerrors.aio.aunicode/utf8.a "".NewReaderSizedH %HD$H;A}HH$H$1H9tH[H-H9BH$HtHXH9|H$HH} HDŽ$HH$H$HD$HD$0HD$8HH$HL$HL$LD$Ht$ Hl$(H$H$H|$h1HLD$PLD$hHt$XHt$pHl$`Hl$xHT$@H$HL$HH$HDŽ$HDŽ$H\$8Ht4Hl$hH\$Hl$H-H,$H\$0H$HÉ11a ztype.*"".Readertype."".Reader "runtime.newobjecttype.[]uint8 "runtime.makeslice  runtime.duffzerotype."".Reader (runtime.typedmemmove 0runtime.morestack_noctxt@"".autotmp_0003type."".Reader"".rtype.io.Reader "".buftype.[]uint8"".btype.*"".Reader"".rtype.*"".Reader "".~r20type.*"".Reader"".size type.int "".rdtype.io.Reader&W<^'2 *  12Tgclocals·14c16763214c88f6ebc22b4b638329b7Tgclocals·de63343370a27ae1278a3558a8c673c0Rprebuilts/go/linux-x86/src/bufio/bufio.go"".NewReaderdH %HD$H;AHH$H$HD$PHH\$H1H9tH[H-H97HtHXH9|H$HHT$0H} HD$0HH$HL$0HD$HD$8HD$@HH$HL$HL$LD$Ht$ Hl$(HT$HHL$PH$1HLD$hL$Ht$pH$Hl$xH$HT$XH$HL$`H$HDŽ$HDŽ$H\$@Ht,H$H\$Hl$H-H,$HD$811[ type.*"".Readertype."".Reader "runtime.newobjecttype.[]uint8 "runtime.makeslice  runtime.duffzerotype."".Reader (runtime.typedmemmove 0runtime.morestack_noctxt0"".autotmp_0007type."".Reader"".rtype.io.Reader "".buftype.[]uint8"".btype.*"".Reader"".rtype.*"".Reader"".sizetype.int "".rdtype.io.Reader "".~r1 type.*"".Reader "".rdtype.io.Reader`|  D.1Tgclocals·42e7756549fd1f1e78e70fcb9f08dd2bTgclocals·b5b1f48fc385a1e7578af006b7551e41Rprebuilts/go/linux-x86/src/bufio/bufio.go$"".(*Reader).ResetdH %HD$H;AHH$HL LAHqH$H$H|$@1HLL$(LL$@LD$0LD$HHt$8Ht$PHl$Hl$XHT$ HT$`HDŽ$HDŽ$Hl$@HL$Hl$H-H,$HĘÉ]"   runtime.duffzerotype."".Reader (runtime.typedmemmove 0runtime.morestack_noctxt0 "".autotmp_0008type."".Reader"".rtype.io.Reader "".buftype.[]uint8"".rtype.io.Reader"".btype.*"".Reader'   Tgclocals·5c5a9f3dff47a8940bdc317b9324ac2aTgclocals·607cdd8af25133e14ee3a0c0aab33c85Rprebuilts/go/linux-x86/src/bufio/bufio.go$"".(*Reader).resetdH %H;aHpH|$1HH$H\$H$H\$ H$H\$(H$H\$0H$H\$8HD$`HD$hH\$xHt$Hl$H\$Hl$H-H,$HpÉI F  runtime.duffzerotype."".Reader (runtime.typedmemmove 0runtime.morestack_noctxt`"".autotmp_0009type."".Reader"".r@type.io.Reader "".buftype.[]uint8"".btype.*"".Reader  Q*  !Tgclocals·57cb53c6e1baf060ff3024e169f48a16Tgclocals·55b93fc8500931e797aa082d87ba0d9eRprebuilts/go/linux-x86/src/bufio/bufio.go""".(*Reader).fill dH %HD$H;AHH$HX(HHP(L@0LHM9L9LI)I)ItMHHH0H@HkH$L$LL$L$L$H$LD$xI9}LH$H4$HT$pHT$HD$H$L@0Hh(I)L@0H@(HHHX0H9|THH\$`HD$h HH$H\$`H\$HD$H\$H H $HKHL$ HdHL$8H7Hh0L@LHL9dLI)I)ItM*H@HHHh L$LT$L$LD$L$LL$Hl$XH,$HL$PHY H$HL$ Ht$(Ht$@H|$0H|$HH}8HH$HH\$H\$H H $HKHL$ Hh0HHh0Ht-Hp8=u Hx@HĸL@@L$H|$H~HĸHL$8HHL$8HH-Hh8H-=u Hh@HĸL@@L$Hl$ x (  runtime.memmoveXgo.string."bufio: tried to fill full buffer"type.string runtime.convT2E runtime.gopanic$"".errNegativeRead$"".errNegativeRead runtime.convI2E  runtime.gopanic 6runtime.writeBarrierEnabled  .runtime.writebarrierptr  io.ErrNoProgress  io.ErrNoProgress 6runtime.writeBarrierEnabled  .runtime.writebarrierptr  $runtime.panicslice  $runtime.panicslice  0runtime.morestack_noctxt"".autotmp_0021type.[]uint8"".autotmp_0020_type.[]uint8"".autotmp_0019type.int"".autotmp_0018type.int"".autotmp_0017type.[]uint8"".autotmp_0016type.int"".autotmp_0015type.string"".autotmp_0014type.int"".autotmp_0013type.int"".autotmp_0012/type.[]uint8 "".errtype.error"".itype.int"".btype.*"".Reader2!=>t' T8 dTgclocals·51fa0e13d53d6bad7f86670d3edaeac6Tgclocals·f31330adfba2a741643485f4a6eda68aRprebuilts/go/linux-x86/src/bufio/bufio.go("".(*Reader).readErr`\HT$1HtHJ8HB@1Hj8Hj@HL$HD$É0 "".~r0type.error"".btype.*"".Reader00  Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/bufio/bufio.go""".(*Reader).PeekdH %H;aVHHt$HD$1H\$ H\$(H\$01H\$8H\$@H}.1H\$ H\$(H\$0HH\$8HH\$@HHhH9~.1H\$ H\$(H\$0HH\$8HH\$@HHX0Hh(H)H9}Hh8HuH$Ht$HD$1HHx0Hh(H)H9}+H1HH8HP@1Hh8Hh@HuH HHx(L@(ILHM9w6L9w1LI)I)ItM:LT$ LD$(LL$0HL$8HT$@H  &"".ErrNegativeCount&"".ErrNegativeCount "".ErrBufferFull "".ErrBufferFull """.(*Reader).fill "".ErrBufferFull "".ErrBufferFull $runtime.panicslice 0runtime.morestack_noctxtp "".autotmp_0026type.int "".~r2Ptype.error "".~r1 type.[]uint8"".ntype.int"".btype.*"".Reader$Z6D>. .Q)Tgclocals·a041240a37ce609efec56707c330d1a4Tgclocals·33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/bufio/bufio.go("".(*Reader).DiscarddH %H;aHHL$11H\$0H\$8HD$(H\$ H}&H HHD$(HL$0HD$8HH\$ HuHHT$ HT$HA0Hi(H)HuH $HT$HL$HA0Hi(H)H9~HHi(HHi(H)HT$HuH\$ H\$(1H\$0H\$8HHi8HtH1Hq8HI@1Hh8Hh@HHL$ H)HL$(Ht$0HD$8H &"".ErrNegativeCount&"".ErrNegativeCount """.(*Reader).fill 0runtime.morestack_noctxtP "".autotmp_0035type.error"".autotmp_0034type.int"".autotmp_0033type.int"".autotmp_0030type.int"".autotmp_0029type.int"".remaintype.int "".err0type.error"".discarded type.int"".ntype.int"".btype.*"".Reader* L  t ? P3 &       6-Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/bufio/bufio.go""".(*Reader).ReaddH %HD$H;AHH$H$11H$H$HuB1Ht6HP8HH@1Hh8Hh@HDŽ$H$H$HĨÉHX(Hh0H9Hh8Ht81HP8HH@1Hh8Hh@HDŽ$H$H$HĨHhH9lHHHh H$H\$Ht$H$H\$Hl$HH,$HL$@HY H$HL$ H$Ht$(HT$0HHt$PHp8HT$X=HP@H}8HH$HH\$H\$H H $HKHL$ H~6HtmIIH$L$M9sKJlmHhHH@P1Ht*HP8HH@1Hh8Hh@H$H$HĨÉ L@@L$HT$H$H$H$H$H$HX(Hh0H9u81HP8HH@1Hh8Hh@HDŽ$H$H$HĨHH(L@0LHM9L9LI)I)ItM H$H$H$L$LL$L$LL$pH$HLD$hI9}LHD$8H|$xH<$HT$`HT$HD$H$HT$8Hh(H$HHh(Hp(HHHPHhH9s-H1HXHH@P1H$H$HĨ  , 6runtime.writeBarrierEnabled$"".errNegativeRead$"".errNegativeRead runtime.convI2E runtime.gopanic $runtime.panicindex .runtime.writebarrierptr  """.(*Reader).fill  runtime.memmove $runtime.panicindex $runtime.panicslice 0runtime.morestack_noctxtp "".autotmp_0049type.int"".autotmp_0048type.[]uint8"".autotmp_0047_type.[]uint8"".autotmp_0046type.error"".autotmp_0045type.error"".autotmp_0044type.error"".autotmp_0043type.error"".autotmp_0042type.error"".autotmp_0041type.int"".autotmp_0040/type.[]uint8"".autotmp_0039type.int"".autotmp_0038type.int "".errPtype.error"".n@type.int"".ptype.[]uint8"".btype.*"".ReaderNgV$|CB 8 8.6 " 8 "9Tgclocals·b60dc0a6046c556b02baa766a3fd5a27Tgclocals·0ebab88fa809a64715f990f20954c3c3Rprebuilts/go/linux-x86/src/bufio/bufio.go*"".(*Reader).ReadBytedH %H;aHHD$11H\$ H\$(H@PHX(Hh0H9uMHh8Ht(1HP8HH@1Hh8Hh@D$HT$ HL$(HH$HD$HX(Hh0H9tHp(HHHHhH9s1H2+HHh(HHh(T$HhH1H\$ H\$(H   """.(*Reader).fill $runtime.panicindex 0runtime.morestack_noctxt@"".autotmp_0054type.int "".err type.error"".ctype.uint8"".btype.*"".ReaderY_8*  (    u{Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/bufio/bufio.go."".(*Reader).UnreadBytedH %H;aHD$1HXHH|HX(Hu#HX0H~HH\$HH\$HX(H~NHh(HHh(Hp(HHHHhH9s(H2HhH@+H@HH@P1H\$H\$ H@0C v."".ErrInvalidUnreadByte."".ErrInvalidUnreadByte $runtime.panicindex 0runtime.morestack_noctxt0 "".~r0type.error"".btype.*"".Reader8     Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/bufio/bufio.go*"".(*Reader).ReadRunedH %H;aH@HD$H11H\$`H\$hHX(HHh0H9HP(L@0LHM9L9LI)I)ItMLT$(L$LD$0LD$LL$8LL$HD$H\$u1Hh8Hu'HHHX0Hh(H)H9}H$HD$HXH@PHX(Hh0H9u41HP8HH@1Hh8Hh@D$PHD$XHT$`HL$hH@Hp(HHPHhH9H1+Hl$P|eHP(L@0LHM9L9LI)I)ItMLT$(L$LD$0LD$LL$8LL$HD$H\$\$PHL$ Hh(HHh(Hx(HHHpHhH9s%H:HXHHL$XHHP1H\$`H\$hH@      *unicode/utf8.FullRune """.(*Reader).fill .unicode/utf8.DecodeRune $runtime.panicindex $runtime.panicslice $runtime.panicindex $runtime.panicslice 0runtime.morestack_noctxtP"".autotmp_0069type.int"".autotmp_0068type.[]uint8"".autotmp_0067type.int"".autotmp_0066type.int"".autotmp_0063/type.[]uint8 "".err0type.error"".size type.int"".rtype.int32"".btype.*"".Reader$'R* 4& e "   Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·790e5cc5051fc0affc980ade09e929ecRprebuilts/go/linux-x86/src/bufio/bufio.go."".(*Reader).UnreadRuneHD$1HXPH|9HX(HhPH9|,L@(HhPI)L@(H@HH@P1H\$H\$HH\$HH\$."".ErrInvalidUnreadRune."".ErrInvalidUnreadRune0 "".~r0type.error"".btype.*"".Readerpp  &Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/bufio/bufio.go*"".(*Reader).Buffered@,HD$HX0Hh(H)H\$  "".~r0type.int"".btype.*"".Reader   Tgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/bufio/bufio.go,"".(*Reader).ReadSlice dH %H;aH@HT$H111H\$pH\$x1H\$XH\$`H\$hHJ(LB0LJM9L9LI)I)ItM LT$(L$LD$0LD$LL$8LL$\$P\$HD$HHL$ HHp(L@(IILHM9wyL9wtLI)I)ItM2LLL$hMLT$XHp(HHHHh(HT$`HHH|Ht%H9sI, mHhHH@PH@  Hh8HtuHP(L@0LHM9w]L9wXLI)I)ItMLLL$hMLT$XHt+Hh0Hh(1Hx8Hp@1Hh8Hh@H|$pHt$xE HH0Hh(H)HhH9|:Hh0Hh(LLL$XHPHhHl$hHH\$pHH\$xH$HT$H   bytes.IndexByte $runtime.panicindex $runtime.panicslice $runtime.panicslice "".ErrBufferFull "".ErrBufferFull """.(*Reader).fill $runtime.panicslice 0runtime.morestack_noctxtp"".autotmp_0087type.int"".autotmp_0086type.int"".autotmp_0085type.int"".autotmp_0084type.int"".autotmp_0083type.int"".autotmp_0082type.int"".autotmp_0081type.int"".autotmp_0080type.int"".autotmp_0079/type.[]uint8 "".errPtype.error"".line type.[]uint8"".delimtype.uint8"".btype.*"".Readerh=p?0 3 9 !+ Tgclocals·88a82235651174c058e0addadab4e659Tgclocals·f56b2291fa344104975cb6587be42b9bRprebuilts/go/linux-x86/src/bufio/bufio.go*"".(*Reader).ReadLine dH %H;aDHH111H\$xH$D$p1H\$XH\$`H\$hH\$PH$D$ Ht$Ht$XHD$HD$`LL$ LL$hH|$(HL$0H$H-H9H|$xH<$HL$H-Hl$H-Hl$LL$hH|$xHt$XHT$PHD$`\$ HHHH9H. HZ(HuTHH\$8HD$@+HH$H\$8H\$HD$H\$H H $HKHL$ Hj(HHj(HHL9wH\$`D$p1H\$xH$HH  Hu!H|$xHt1H\$XH\$`H\$hHH1H\$xH$HHH9s_H. uQHH~;HHH9s1H. u#HHH)L9w H\$`HH    ,"".(*Reader).ReadSlice "".ErrBufferFull "".ErrBufferFull "".ErrBufferFull runtime.ifaceeqngo.string."bufio: tried to rewind past start of buffer"type.string runtime.convT2E runtime.gopanic $runtime.panicslice $runtime.panicindex $runtime.panicslice  $runtime.panicindex  $runtime.panicindex  0runtime.morestack_noctxtp"".autotmp_0099type.int"".autotmp_0098type.int"".autotmp_0097type.int"".autotmp_0096type.int"".autotmp_0095type.int"".autotmp_0094type.int"".autotmp_0092type.int"".autotmp_0090type.string "".errPtype.error"".isPrefix@type.bool"".linetype.[]uint8"".btype.*"".Reader26f2t@Cb) T     1NkUTgclocals·8eb852d251341d0179cb59584c49209fTgclocals·21628ef15e17a47b249310bffa1e8bd0Rprebuilts/go/linux-x86/src/bufio/bufio.go,"".(*Reader).ReadBytesdH %H$hH;ABH111H$HH$P1H$0H$8H$@1H$H$H$1H\$pH\$xH$1H\$`H\$hH$ H$$(\$H\$H$LL$L$H\$ H$HD$(HL$0HL$hHD$`HH|$x11H9},H\$pLD$xHL9rHkHHkHHH9|HLHH$HD$HD$H\$H$H\$ H$H\$(H$H\$x11H\$@Hl$@H9HL$XHD$PH$L$H9L$H)I)ItM HL$LH$L$L$H\$pLD$xHL9tHkHHHKHkH$H$HH$H9}HHD$HH$H<$H$HT$HD$HD$HH\$PHHHL$XHHl$@H9H$L$H9L$H)I)ItM L$LH$L$L$H$H$H$H$H$HH$H9}HH$H$H$Ht$HD$H$H$0H$H$8H$H$@H    H-H9H$HL$H-Hl$H-Hl$L$HL$hHD$`\$ gHH$LL$LL$Ht$HD$ HL$(H$H$H$H$H$H$H$H$H$H$H9}HH$H4$H$HT$HD$HL$pH\$xH$HHH9wVH\$xHHHkHH$HkH$HkH$=uH+H$Hl$H-H,$HL$HD$HT$H\$ HL$(H\$0HT$8HHH\$xH$HL$p_H$HH$P,  ,"".(*Reader).ReadSlicetype.[]uint8 "runtime.makeslice  runtime.memmove  runtime.memmove  $runtime.panicslice  $runtime.panicindex  $runtime.panicslice $runtime.panicindex "".ErrBufferFull "".ErrBufferFull "".ErrBufferFull runtime.ifaceeqtype.[]uint8 "runtime.makeslice runtime.memmove6runtime.writeBarrierEnabled .runtime.writebarrierptrtype.[][]uint8 "runtime.growslice 0runtime.morestack_noctxtpB"".autotmp_0124type.uintptr"".autotmp_0123type.int"".autotmp_0122type.[]uint8"".autotmp_0121type.[]uint8"".autotmp_0120type.uintptr"".autotmp_0119type.int"".autotmp_0118type.[]uint8"".autotmp_0117type.[]uint8"".autotmp_0116type.int"".autotmp_0115type.int"".autotmp_0114type.int"".autotmp_0113type.int"".autotmp_0111type.int"".autotmp_0110_type.[]uint8"".autotmp_0109/type.[]uint8"".autotmp_0108type.[]uint8"".autotmp_0107type.int"".autotmp_0106type.[]uint8"".autotmp_0105type.int"".autotmp_0104type.int"".autotmp_0103type.int"".autotmp_0102type.int"".autotmp_0101type.int"".autotmp_0100type.int "".buftype.[]uint8 "".buftype.[]uint8"".etype.error"".fulltype.[][]uint8"".fragtype.[]uint8 "".errPtype.error"".line type.[]uint8"".delimtype.uint8"".btype.*"".Reader" R S $A8V ){[P 18= M:n)YTgclocals·233dc4ecce920b62f981fc792ec53848Tgclocals·171b616403558434c53ff861c413f69eRprebuilts/go/linux-x86/src/bufio/bufio.go."".(*Reader).ReadStringdH %H;aHP111H\$xH$1H\$hH\$pH\$XH$\$`\$HT$HL$HD$ H\$(H\$xH\$0H$H$HT$8HT$HL$@HL$HD$HHD$H\$ H\$hH\$(H\$pHP?  ,"".(*Reader).ReadBytes 2runtime.slicebytetostring 0runtime.morestack_noctxt` "".bytes/type.[]uint8 "".err@type.error"".line type.string"".delimtype.uint8"".btype.*"".Reader6=?HQ7Tgclocals·385909f76d6de739e72f24698b953b71Tgclocals·f56b2291fa344104975cb6587be42b9bRprebuilts/go/linux-x86/src/bufio/bufio.go("".(*Reader).WriteTodH %HD$H;AH11H$H$H$H$H$H\$H$H\$H\$H$HD$ H\$(H$H$HtHĐ1H$H$HH$H$HH^H|$H HHKHOH$H\$H$H$\$ H$HT$@H$HL$HtNHt$Hl$H $HZ Ht$HT$ HL$(H$HH$H$H$HĐ1H\$pH\$xHH$Ht$Hl$H\$pH\$H$\$ Hl$pHl$0HT$xHT$8teHt[HXH|$H HHKHOH$H] HT$HL$ HD$(H$HH$H$H$HĐÉHHHX0Hh(H)H9OH$H$HX(Hh0H9H$H$H\$H$H\$HD$HT$ Ht$(Ht$XH$HH$HT$PHtH$H$HĐH$H$H$HX(Hh0H9iHH8HP@H-H9uLHL$`H $HT$hHT$H-Hl$H-Hl$H$\$ t 1Hh8Hh@1Ht*HP8HH@1Hh8Hh@H$H$HĐÉ'[  *"".(*Reader).writeBuf type.io.WriterTo $runtime.assertI2I2$type.io.ReaderFrom $runtime.assertI2I2  """.(*Reader).fill  *"".(*Reader).writeBuf  """.(*Reader).fill  io.EOF  io.EOF  io.EOF  runtime.ifaceeq 0runtime.morestack_noctxt`"".autotmp_0135type.error"".autotmp_0134_type.error"".autotmp_0133type.int64"".autotmp_0131type.int64"".autotmp_0130?$type.io.ReaderFrom"".autotmp_0128 type.io.WriterTo "".errtype.error"".w$type.io.ReaderFrom"".r type.io.WriterTo "".err@type.error"".n0type.int64"".wtype.io.Writer"".btype.*"".ReaderPs%v3J#V6 7  V 6 YKgPTgclocals·aeadbc73530d5f877ac2661d18e94fa0Tgclocals·669c7d9f0df32c6735ae27d87c97b25cRprebuilts/go/linux-x86/src/bufio/bufio.go*"".(*Reader).writeBufdH %H;a H`HT$h1H$H$HJ(LB0LJM9L9LI)I)ItM LT$HLT$LD$PLD$LL$XLL$H\$xH$H\$pH[ H|$hHD$ Ht$(Ht$8HT$0HT$@H}8HH$HH\$H\$H H $HKHL$ Ho(HHo(H$H$H$H`  &"".errNegativeWrite&"".errNegativeWrite runtime.convI2E runtime.gopanic $runtime.panicslice 0runtime.morestack_noctxt`"".autotmp_0139type.int"".autotmp_0138/type.[]uint8 "".errOtype.error "".~r2@type.error "".~r10type.int64"".wtype.io.Writer"".btype.*"".Reader&.8  Tgclocals·13a990b4a341857296a1c12de153dcaaTgclocals·12fc1489b12fcdedb8fc818b7369b5d9Rprebuilts/go/linux-x86/src/bufio/bufio.go "".NewWriterSizedH %H;aVHPHD$hH\$X1H9tH[H-H9$HL$`HtHYH9| HL$pHPHHHH$HD$HD$hHD$H\$H\$8H\$ H\$@H\$(H\$HHH$HD$1H(HhHhHhHh Hh(Hh0Hh8HD$0Hl$@HhHl$HHh Hl$8=uBHhHl$XHh0Hl$`=uHh8HD$pHPL@8L$Hl$HD$0L@L$Hl$HD$011 ^type.*"".Writertype.[]uint8 "runtime.makeslicetype."".Writer "runtime.newobject6runtime.writeBarrierEnabled6runtime.writeBarrierEnabled .runtime.writebarrierptr .runtime.writebarrierptr 0runtime.morestack_noctxt@ "".autotmp_0143type.*"".Writer"".autotmp_0142/type.[]uint8"".autotmp_0140?type.*"".Writer "".~r20type.*"".Writer"".size type.int"".wtype.io.Writer&HR@, =z .ETgclocals·14c16763214c88f6ebc22b4b638329b7Tgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0fRprebuilts/go/linux-x86/src/bufio/bufio.go"".NewWriterdH %H;a^H`H\$hHL$pHL$@HH\$81H9tH[H-H9HtHYH9| HHD$xH`HHHH$HD$HD$H\$H\$HH\$ H\$PH\$(H\$XHH$HD$1H(HhHhHhHh Hh(Hh0Hh8HD$0Hl$PHhHl$XHh Hl$H=u@HhHl$8Hh0Hl$@=u Hh82L@8L$Hl$HD$0L@L$Hl$HD$011 type.*"".Writertype.[]uint8 "runtime.makeslicetype."".Writer "runtime.newobject6runtime.writeBarrierEnabled6runtime.writeBarrierEnabled .runtime.writebarrierptr .runtime.writebarrierptr 0runtime.morestack_noctxt0"".autotmp_0148type.*"".Writer"".autotmp_0147type.*"".Writer"".autotmp_0146/type.[]uint8"".autotmp_0144_type.*"".Writer"".wOtype.io.Writer "".~r1 type.*"".Writer"".wtype.io.WriterW.$Tgclocals·aa52d274abdec77c8c6f0039727529fbTgclocals·30cbcc4cbf7928c6a8c16f3943e312adRprebuilts/go/linux-x86/src/bufio/bufio.go$"".(*Writer).ResetdH %H;avNHHD$1H(HhH@(Hl$ Hh0Hl$(=u Hh8HL@8L$Hl$ r6runtime.writeBarrierEnabled .runtime.writebarrierptr 0runtime.morestack_noctxt0 "".wtype.io.Writer"".btype.*"".Writer 5 'p$  VTgclocals·5c5a9f3dff47a8940bdc317b9324ac2aTgclocals·33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/bufio/bufio.go$"".(*Writer).FlushdH %H;av7H1H\$(H\$0H\$ H$HL$HD$HL$(HD$0H R $"".(*Writer).flush 0runtime.morestack_noctxt00 "".~r0type.error"".btype.*"".Writer02/0 P  ((Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/bufio/bufio.go$"".(*Writer).flush dH %HD$H;AHH$1H$H$H(HtH(H$HhH$HHX(Hu1H$H$HHh(L@ L9 LHHHH0Hh8L$LL$H$H|$L$LD$Hl$XH,$HL$PHY H$HL$ HT$(H\$0H\$HHX(H9~HuHHH\$HHT$@HSHHX(H9HP(H)L@ L9!HpIML@(HL$8LH M9L9LPI)I)ItM H$L$L$L$L$LL$L$LL$pL$LLD$hM9}LHt$xH4$HT$`HT$HD$HT$@HL$8H$Hh(H)Hh(HHl$H=u!HhH$H\$HH$HL@L$Hl$HT$@  H@(1H$H$H M  io.ErrShortWrite io.ErrShortWrite runtime.memmove6runtime.writeBarrierEnabled  .runtime.writebarrierptr  $runtime.panicslice  $runtime.panicslice  $runtime.panicslice  0runtime.morestack_noctxt0"".autotmp_0157type.[]uint8"".autotmp_0156type.[]uint8"".autotmp_0155type.int"".autotmp_0154_type.[]uint8"".autotmp_0152type.[]uint8"".autotmp_0151type.int"".autotmp_0150/type.[]uint8 "".errtype.error"".ntype.int "".~r0type.error"".btype.*"".Writer>A#HZ9  w   mNTgclocals·41a13ac73c712c01973b8fe23f62d694Tgclocals·21545c880057c850155b44b51d3dfff9Rprebuilts/go/linux-x86/src/bufio/bufio.go,"".(*Writer).Available@,HL$HiHY(H)Hl$  "".~r0type.int"".btype.*"".Writer   Tgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/bufio/bufio.go*"".(*Writer).Buffered H\$Hk(Hl$  "".~r0type.int"".btype.*"".Writer Tgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/bufio/bufio.go$"".(*Writer).WritedH %HD$H;AHL$L$H$H$11H$H$HDŽ$HhHX(H)H9H(HHh(HHH0Hh8L$Ld$H$H|$L$L\$Hl$XH,$HL$PHY H$H\$ H\$8HT$(HL$0HHT$`HHL$h=ucHHH$Hl$8HH$H\$8H$L$H9w&L$H)I)ItM HMM L@L$HL$H$녉dHh(L@LH L9LPI)I)ItM*L$LL$L$L$L$LH$L$L$L$LH|$xL9}HHD$@H$H4$HT$pHT$HD$H$HT$@Hi(HT$8HHi(H $H$ H(HtH(H$HhH$HĸHh(L@LH L9LPI)I)ItM*L$LL$L$L$L$LH$L$L$LD$xLH$L9}HHD$HHT$pH$H$Ht$HD$H$HD$HHj(HHj(H$HH$1H$H$Hĸ ] 6runtime.writeBarrierEnabled $runtime.panicslice .runtime.writebarrierptr runtime.memmove  $"".(*Writer).flush  $runtime.panicslice  runtime.memmove $runtime.panicslice 0runtime.morestack_noctxtp."".autotmp_0181type.uintptr"".autotmp_0180type.int"".autotmp_0179type.[]uint8"".autotmp_0178type.[]uint8"".autotmp_0176type.int"".autotmp_0175type.[]uint8"".autotmp_0174_type.[]uint8"".autotmp_0173type.error"".autotmp_0172type.int"".autotmp_0171type.int"".autotmp_0170type.int"".autotmp_0169type.[]uint8"".autotmp_0168type.int"".autotmp_0167type.int"".autotmp_0166type.int"".autotmp_0165/type.[]uint8"".autotmp_0164type.int"".autotmp_0163type.int"".ntype.int "".errPtype.error "".nn@type.int"".ptype.[]uint8"".btype.*"".Writer(j _! ;     #Tgclocals·b60dc0a6046c556b02baa766a3fd5a27Tgclocals·0ebab88fa809a64715f990f20954c3c3Rprebuilts/go/linux-x86/src/bufio/bufio.go,"".(*Writer).WriteBytedH %H;aHHD$ 1H\$0H\$8H(HtH(Hl$0HhHl$8HHhHX(H)H>H$HD$ HL$H\$Ht HtH(Hl$0HhHl$8HÉHp(HPHHHh H9s(H2l$(@+Hh(HHh(1H\$0H\$8H   $"".(*Writer).flush $runtime.panicindex 0runtime.morestack_noctxt@0"".autotmp_0185type.int "".~r1 type.error"".ctype.uint8"".btype.*"".Writer"0//0J/0@/0, ( / !   \Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/bufio/bufio.go,"".(*Writer).WriteRunedH %H;aHPt$`HD$X11H\$pH\$x}PH$@t$HD$H\$H\$xHD$pHtHD$hHPHD$h1H\$pH\$xHPH(HtHHhHD$hHL$pHl$xHPHhHX(H)HH$t$`HD$XH(HtHHhHD$hHL$pHl$xHPHhHX(H)H}_H\$4H$HcH\$H\$H|$H HHKHOH\$XH$HD$HT$ HL$(HD$hHT$pHL$xHPHh(L@LH L9weLPI)I)ItM*LT$8L$LD$@LD$LL$HLL$t$HL$XHT$ Hi(HT$hHHi(1H\$pH\$xHP   ,"".(*Writer).WriteByte $"".(*Writer).flush "runtime.intstring 0"".(*Writer).WriteString .unicode/utf8.EncodeRune $runtime.panicslice 0runtime.morestack_noctxtP"".autotmp_02007type.[4]uint8"".autotmp_0199type.int"".autotmp_0198type.error"".autotmp_0195type.int"".autotmp_0194/type.[]uint8"".autotmp_0193type.int"".autotmp_0192type.error"".autotmp_0191type.int"".autotmp_0190type.int "".err0type.error"".size type.int"".rtype.int32"".btype.*"".WriterTT'NouT .     _U+ ?Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·790e5cc5051fc0affc980ade09e929ecRprebuilts/go/linux-x86/src/bufio/bufio.go0"".(*Writer).WriteString dH %H;a1HhH$HD$p1H$H$HD$HhHX(H)H9H(HHh(L@LH L9LPI)I)ItM*LT$PLLD$XLL$`LL$HHT$xLD$@LH|$0L9}HHD$ Ht$8H4$HT$(HT$HD$HT$pHD$ Hj(HHj(H\$HH\$H$H9w:LD$xH)HtMH$LD$xH$H$HD$p  H(Ht)H\$H$H(H$HhH$HhHh(L@LH L9LPI)I)ItM*LT$PLLD$XLL$`LL$HHT$xLD$@LH|$0L9}HHD$ Ht$8H4$HT$(HT$HD$HT$pHD$ Hj(HHj(H\$HH$1H$H$Hh   runtime.memmove $"".(*Writer).flush $runtime.panicslice $runtime.panicslice runtime.memmove $runtime.panicslice  0runtime.morestack_noctxt`*"".autotmp_0219type.uintptr"".autotmp_0218type.int"".autotmp_0217type.string"".autotmp_0216type.[]uint8"".autotmp_0214type.int"".autotmp_0213type.string"".autotmp_0212_type.[]uint8"".autotmp_0211type.int"".autotmp_0210type.int"".autotmp_0209type.int"".autotmp_0208type.[]uint8"".autotmp_0207type.int"".autotmp_0206type.int"".autotmp_0205type.int"".autotmp_0204/type.[]uint8"".autotmp_0203type.int "".nntype.int "".~r2@type.error "".~r10type.int"".stype.string"".btype.*"".Writer(T 6 !  ,  )  Tgclocals·d98f60bd8519d0c68364b2a1d83af357Tgclocals·895d0569a38a56443b84805daa09d838Rprebuilts/go/linux-x86/src/bufio/bufio.go*"".(*Writer).ReadFrom dH %HD$H;A,HH$11H$H$HDŽ$Hh(H1H\$hH\$pHH$HX0H|$H HHKHOH\$hH\$H$H$\$ Hl$hHl$HHT$pHT$PtSH$H\$H$H\$H$H] HT$HL$ HD$(H$H$H$HĐ1HT$@HhHX(H)HuPH$H$HT$@H$HL$Hl$Hl$`HL$XHtH$H$HĐ1HL$8HdHh(L@LH L9LPI)I)ItM*LT$xLT$L$LD$L$LL$H$H$H$H[ HL$8H$HT$ H|$(H\$0H$Hu H$HuHHL$8HdOHdu&HH$HH$HĐHh(HHh(H$HHT$@HH$H$HyH-H9utH<$H$Hl$H-Hl$H-Hl$H$\$ t4HjHZ(H)Hu+H$H\$H$H\$H$HĐ1H$H$  $type.io.ReaderFrom $runtime.assertI2I2 $"".(*Writer).flush  io.ErrNoProgress  io.ErrNoProgress  io.EOF  io.EOF  io.EOF  runtime.ifaceeq  $"".(*Writer).flush  $runtime.panicslice  0runtime.morestack_noctxt` "".autotmp_0231type.int"".autotmp_0229type.int"".autotmp_0228type.int64"".autotmp_0227type.int"".autotmp_0226type.int"".autotmp_0225/type.[]uint8"".autotmp_0224type.int"".autotmp_0220O$type.io.ReaderFrom "".nrtype.int"".err1otype.error"".mtype.int"".w$type.io.ReaderFrom "".err@type.error"".n0type.int64"".rtype.io.Reader"".btype.*"".WriterBg'r GkS8 & L# - $UM,NTgclocals·3b058289e87a1930e774a55a7e38340fTgclocals·9693f46e60a90ce4cc19ba9e42baf1e0Rprebuilts/go/linux-x86/src/bufio/bufio.go "".NewReadWriterdH %H;aHHH$HD$HD$HteHl$ =uBH(Ht5Hl$(=uHhHD$0HL@L$Hl$HD$݉H$Hl$HD$묉V 4$type."".ReadWriterF "runtime.newobject|6runtime.writeBarrierEnabled6runtime.writeBarrierEnabled .runtime.writebarrierptr .runtime.writebarrierptr 0runtime.morestack_noctxt00"".autotmp_0232&type.*"".ReadWriter "".~r2 &type.*"".ReadWriter"".wtype.*"".Writer"".rtype.*"".Reader0R/0F "U9Tgclocals·51af24152615272c3d9efc8538f95767Tgclocals·0c8aa8e80191a30eac23f1a218103f16Rprebuilts/go/linux-x86/src/bufio/bufio.go"".NewScannerdH %H;a=HPHH$HD$HD$H\$H\$8H\$ H\$@H\$(H\$HHH$HL$HH1HHL$0Hl$XH)Hl$`=HiHt|H-=uSHiHAHl$@Hi@Hl$HHiHHl$8=uHi8HL$hHPLA8L$Hl$HL$0LAL$Hl$HL$0똉LAL$Hl$HL$0^) 4type.[]uint8j "runtime.makeslicetype."".Scanner "runtime.newobject  runtime.duffzero6runtime.writeBarrierEnabled"".ScanLines·f6runtime.writeBarrierEnabled6runtime.writeBarrierEnabled .runtime.writebarrierptr .runtime.writebarrierptr .runtime.writebarrierptr 0runtime.morestack_noctxt0"".autotmp_0234? type.*"".Scanner"".autotmp_0233/type.[]uint8 "".~r1  type.*"".Scanner"".rtype.io.Readeri2 F  4.CTgclocals·42e7756549fd1f1e78e70fcb9f08dd2bTgclocals·63cd04555cdf6098214cf65f28956084Pprebuilts/go/linux-x86/src/bufio/scan.go""".(*Scanner).ErrdH %H;aH81H\$HH\$PH\$@HHC`HKhH-H9uKHD$(H$HL$0HL$H-Hl$H-Hl$\$ t1H\$HH\$PH8H\$@HtHk`Hl$HHkhHl$PH8Ét8 z io.EOF io.EOF io.EOF runtime.ifaceeq 0runtime.morestack_noctxt0p"".autotmp_0235type.error "".~r0type.error"".s type.*"".Scannerpyop!op#]& q_Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·23e8278e2b69a3a75fa59b23c49ed6adPprebuilts/go/linux-x86/src/bufio/scan.go&"".(*Scanner).Bytes`Z1H\$HtHk Hl$Hk(Hl$Hk0Hl$ É@ "".~r0type.[]uint8"".s type.*"".Scanner00 .Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cbPprebuilts/go/linux-x86/src/bufio/scan.go$"".(*Scanner).TextdH %H;avdH01H\$@H\$HH$Ht$8Ht=H^ H|$H HHKHOHKHOH\$ H\$@H\$(H\$HH0É  2runtime.slicebytetostring 0runtime.morestack_noctxt0` "".~r0type.string"".s type.*"".Scanner`[_`T  Q/Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cbPprebuilts/go/linux-x86/src/bufio/scan.go$"".(*Scanner).Scan/.dH %H$H;A HH$HXXHhPH9Hh`HHh`Ht H@PH@XƄ$HĸHXPH~2HH@HXXH9= L@@HXPLH?I)LHH9 HH@HXXH9*HH@HXH9HH$HH$Hh`HtaHHD$hH@`HKhH-H9ufH$ H$H$(HL$H-Hl$H-Hl$HD$h\$ t!H$Hh`H$=uHhhƄ$HĸL@hL$Hl$HH@HHXH9}HHHH$HL$HL$H$L\$H|$ Ht$(HJPLBXLJHM9L9LR8I)I)ItM LL$XMH$`H$hH$L$pLH$xL$L$H$HH$H9}HL$L$H$HT$HD$H$H$`Hh@H$hHhHH$X=Hh8L@XHhPI)L@XH@PHXXHhPH9=HPPL@XLHHM9L9LP8I)I)ItML$L$L$LD$L$LL$Hh`HD$HPHH$H\$ H\$XH\$(H$@H\$0H$HH\$8H$PHL$@HT$HH$H$HH$H$Hh`HtgHH$H@`HKhH-H9uiH$ H$H$(HL$H-Hl$H-Hl$H$\$ t!H$Hh`H$=uHhhƄ$HĸL@hL$Hl$HT$XH HHH$HH$Hh`HtsHHL$`HHI`HShH$(H$ H-H9ubH $HT$H-Hl$H-Hl$HL$`H$\$ t%H$Hi`H$=&Hih1ɀuƄ$HĸH$HHh(H$PHh0H$@=Hh H$@HHh`HH\$XHHhpHHhpHXpHd~]HH$0HDŽ$80HH$H$0H\$HD$H\$H H $HKHL$ Ƅ$HĸH@pL@ L$Hl$H$&LAhL$Hl$H$2HXXHhPH)H9HHH$HH$Hh`HtsHHL$pHHI`HShH$(H$ H-H9u^H $HT$H-Hl$H-Hl$HL$pH$\$ t!H$Hi`H$=u Hih1LAhL$Hl$H$݉THhPHHhPH L@8L$Hl$H$ HD$PHPXL@@LHHM9L9LP8I)I)ItMHHHhL$pLT$L$xLD$L$LL$H$H,$H$HY H$HL$ Ht$(H|$0H$HhXHHhXH$HHH$H$Hh`Ht{HHL$xHHI`HShH$(H$ H-H9 H $HT$H-Hl$H-Hl$HL$xH$\$ H$Hi`H$=u HihLAhL$Hl$H$KH~ H@pHL$PHHL$PHd2HHH$HH$Hh`HHH$HHI`HShH$(H$ H-H9H $HT$H-Hl$H-Hl$H$H$\$ H$Hi`H$=u HihLAhL$Hl$H$tHk HPPL@XLHHM9L9LP8I)I)ItMHHHp8H@@HkHH$L$LL$L$L$H$L$xI9}LH$H4$H$pHT$HD$H$L@XHhPI)L@XH@Pc H "".ErrTooLong"".ErrTooLong io.EOF io.EOF io.EOF runtime.ifaceeq6runtime.writeBarrierEnabled .runtime.writebarrierptrtype.[]uint8 "runtime.makeslice  runtime.memmove 6runtime.writeBarrierEnabled  io.EOF io.EOF io.EOF runtime.ifaceeq6runtime.writeBarrierEnabled .runtime.writebarrierptr*"".ErrNegativeAdvance*"".ErrNegativeAdvance io.EOF io.EOF io.EOF runtime.ifaceeq6runtime.writeBarrierEnabled6runtime.writeBarrierEnabledxgo.string."bufio.Scan: 100 empty tokens without progressing"type.string runtime.convT2E runtime.gopanic .runtime.writebarrierptr .runtime.writebarrierptr&"".ErrAdvanceTooFar&"".ErrAdvanceTooFar io.EOF io.EOF io.EOF runtime.ifaceeq6runtime.writeBarrierEnabled .runtime.writebarrierptr $runtime.panicslice .runtime.writebarrierptr $runtime.panicslice!# io.EOF$ io.EOF$ io.EOF$ runtime.ifaceeq%6runtime.writeBarrierEnabled% .runtime.writebarrierptr' io.ErrNoProgress' io.ErrNoProgress( io.EOF( io.EOF) io.EOF) runtime.ifaceeq*6runtime.writeBarrierEnabled* .runtime.writebarrierptr+ $runtime.panicslice- runtime.memmove. $runtime.panicslice. 0runtime.morestack_noctxt f"".autotmp_0273type.error"".autotmp_0272type.error"".autotmp_0271type.uintptr"".autotmp_0269type.[]uint8"".autotmp_0268type.[]uint8"".autotmp_0267type.error"".autotmp_0264type.[]uint8"".autotmp_0263_type.[]uint8"".autotmp_0262type.error"".autotmp_0261type.error"".autotmp_0260type.error"".autotmp_0259type.int"".autotmp_0258type.int"".autotmp_0257type.[]uint8"".autotmp_0256type.int"".autotmp_0255type.int"".autotmp_0254type.int"".autotmp_0253type.[]uint8"".autotmp_0252type.int"".autotmp_0251type.int"".autotmp_0250type.int"".autotmp_0249type.int"".autotmp_0248type.int"".autotmp_0247type.int"".autotmp_0246type.[]uint8"".autotmp_0243type.int"".autotmp_0242type.int"".autotmp_0241type.string"".autotmp_0240type.int"".autotmp_0239type.int"".autotmp_0238/type.[]uint8 "".errtype.error"".s type.*"".Scanner "".errtype.error"".s type.*"".Scanner "".errtype.error"".s type.*"".Scanner "".errtype.error"".s type.*"".Scanner "".errtype.error"".s type.*"".Scanner "".errtype.error"".s type.*"".Scanner "".errtype.error"".looptype.int"".newBuftype.[]uint8 "".errtype.error"".tokentype.[]uint8"".advancetype.int "".~r0type.bool"".s type.*"".ScannerR"P * 2  <  11i1  ] d  }~}~1 QZR  UHQ-SVTgclocals·0241939093ad48db63b213bcfccb79ffTgclocals·c902f3593191ae78e3a4f8da0146b76aPprebuilts/go/linux-x86/src/bufio/scan.go*"".(*Scanner).advancedH %H;aHhHT$xHD$pHHH\$HHH\$PHh`Ht[HHD$0H@`HKhH-H9uZHD$XH$HL$`HL$H-Hl$H-Hl$HD$0\$ tHl$HHh`Hl$P=uHhhƄ$HhL@hL$Hl$HXXHhPH)H9HH\$8HH\$@Hh`Ht[HHD$(H@`HKhH-H9uZHD$XH$HL$`HL$H-Hl$H-Hl$HD$(\$ tHl$8Hh`Hl$@=uHhhƄ$HhL@hL$Hl$HhPHHhPƄ$Hh-$ \*"".ErrNegativeAdvancet*"".ErrNegativeAdvance io.EOF io.EOF io.EOF runtime.ifaceeq6runtime.writeBarrierEnabled .runtime.writebarrierptr&"".ErrAdvanceTooFar&"".ErrAdvanceTooFar io.EOF io.EOF io.EOF runtime.ifaceeq6runtime.writeBarrierEnabled .runtime.writebarrierptr 0runtime.morestack_noctxt0"".autotmp_0277type.error"".autotmp_0276type.error "".err_type.error"".s type.*"".Scanner "".err?type.error"".so type.*"".Scanner "".~r1 type.bool"".ntype.int"".s type.*"".Scanner4+@!     II6Tgclocals·cb395d89503762333b1bfb09ba74eb12Tgclocals·11248568c735471f107fcdfd00b1e355Pprebuilts/go/linux-x86/src/bufio/scan.go("".(*Scanner).setErrdH %H;aH8HD$@Hh`HtVHH@`HKhH-H9uZHD$(H$HL$0HL$H-Hl$H-Hl$HD$@\$ tHl$HHh`Hl$P=u HhhH8L@hL$Hl$F h io.EOF io.EOF io.EOF runtime.ifaceeq6runtime.writeBarrierEnabled .runtime.writebarrierptr 0runtime.morestack_noctxt0p"".autotmp_0278type.error "".errtype.error"".s type.*"".Scannerpop$ ` hXTgclocals·5c5a9f3dff47a8940bdc317b9324ac2aTgclocals·23e8278e2b69a3a75fa59b23c49ed6adPprebuilts/go/linux-x86/src/bufio/scan.go&"".(*Scanner).SplitdH %H;av>HH\$Ht+Hl$ =u HkHLCL$Hl$ J6runtime.writeBarrierEnabled .runtime.writebarrierptr 0runtime.morestack_noctxt "".split"type."".SplitFunc"".s type.*"".Scanner ! +`  BTgclocals·2a1dd1e1e59d0a384c26951e316cd7e6Tgclocals·33cdeccccebe80329f1fdbee7f5874cbPprebuilts/go/linux-x86/src/bufio/scan.go"".ScanBytesdH %H;a1111ۀ|$ t2H\$Hu'HD$(1H\$0H\$8H\$@1H\$HH\$PH\$Hr1Hl$HHD$(Hl$0HT$8H\$@1H\$HH\$P _  $runtime.panicslice 0runtime.morestack_noctxt "".errtype.error"".tokenPtype.[]uint8"".advance@type.int"".atEOF0type.bool"".datatype.[]uint8'C  Tgclocals·4d8870d794128007eafd160e912f2b3dTgclocals·33cdeccccebe80329f1fdbee7f5874cbPprebuilts/go/linux-x86/src/bufio/scan.go"".ScanRunesdH %H;aH(Hl$@HT$8HD$0111H\$pH\$x1H\$XH\$`H\$h|$Ht1Hu+HD$P1H\$XH\$`H\$h1H\$pH\$xH(H0s=Hr0HHD$PHD$XHT$`Hl$h1H\$pH\$xH( H$HT$Hl$HT$0HL$@HD$ H~1H9w%HD$PHT$XHD$`HL$h1H\$pH\$xH( |$HuMH$H\$8H\$HL$\$u+HD$P1H\$XH\$`H\$h1H\$pH\$xH(HHH HD$PHD$XHT$`HL$h1H\$pH\$xH( 6  $runtime.panicslice .unicode/utf8.DecodeRune $runtime.panicslice *unicode/utf8.FullRune"".errorRune"".errorRune "".errorRune $runtime.panicindex 0runtime.morestack_noctxtP"".autotmp_0285type.[]uint8"".autotmp_0283type.[]uint8 "".errtype.error"".tokenPtype.[]uint8"".advance@type.int"".atEOF0type.bool"".datatype.[]uint82PgOPGOPXOPZOP=OP8G +="1 )+ >- Tgclocals·4d8870d794128007eafd160e912f2b3dTgclocals·33cdeccccebe80329f1fdbee7f5874cbPprebuilts/go/linux-x86/src/bufio/scan.go"".dropCRdH %H;avgHt$HL$HD$1H~9HHH9s>H) u"HHH9wHL$ H\$(Ht$0 HL$ HD$(Ht$0   $runtime.panicslice $runtime.panicindex 0runtime.morestack_noctxt`"".autotmp_0289type.int "".~r10type.[]uint8"".datatype.[]uint8 "  X(Tgclocals·6432f8c6a0d23fa7bee6c5d96f21a92aTgclocals·33cdeccccebe80329f1fdbee7f5874cbPprebuilts/go/linux-x86/src/bufio/scan.go"".ScanLinesdH %H;aH(HL$8111H\$pH\$x1H\$XH\$`H\$h|$Ht1Hu+HD$P1H\$XH\$`H\$h1H\$pH\$xH(H\$0H$HL$H\$@H\$D$ Hl$8HD$0Ht$@HT$ HH9w}HH1H~]HHH9s]H) uFHHH9w4HHHHHHt$PHl$XHL$`HD$h1H\$pH\$xH( HHH  |$HtzHHH1H~WHHH9sWH) u@HHH9w.HHHH|$PHT$XHL$`HD$h1H\$pH\$xH( HHH HD$P1H\$XH\$`H\$h1H\$pH\$xH(   bytes.IndexByte $runtime.panicslice $runtime.panicindex $runtime.panicslice $runtime.panicslice $runtime.panicindex 0runtime.morestack_noctxtP"".autotmp_0306type.[]uint8"".autotmp_0305type.[]uint8"".autotmp_0304type.int"".autotmp_0303type.[]uint8"".autotmp_0301type.int"".autotmp_0300type.int"".autotmp_0299type.int"".autotmp_0298type.int"".autotmp_0297type.[]uint8"".autotmp_0293type.int "".errtype.error"".tokenPtype.[]uint8"".advance@type.int"".atEOF0type.bool"".datatype.[]uint8.P]OPOPOPCOP*= +@z+Tgclocals·4d8870d794128007eafd160e912f2b3dTgclocals·33cdeccccebe80329f1fdbee7f5874cbPprebuilts/go/linux-x86/src/bufio/scan.go"".isSpaceD$=S '  uD$Ã tD$Ã t t  tك t=uD$=t= | = D$=) !=uD$=( t=) tD$=/ t=_ t=0t "".autotmp_0308type.int32 "".~r1type.bool"".rtype.int32h     Tgclocals·23e8278e2b69a3a75fa59b23c49ed6adTgclocals·33cdeccccebe80329f1fdbee7f5874cbPprebuilts/go/linux-x86/src/bufio/scan.go"".ScanWords dH %H;aH`LL$xH|$hHD$p111H$H$1H$H$H$1H9HT$8HMH96H)I)IItM LL$HL $Hl$PHl$LD$XLD$D$H\$ H\$($LL$xH|$hHT$8HD$p\$HT$8HH9HL$@HMH9H)I)IItM LL$HL $Hl$PHl$LD$XLD$D$H\$ H\$0$LL$xH|$hLT$0Ht$@HT$8HD$p\$tgHML9wUH9wPH)I)IItM HLH$L$H$L$1H$H$H` HLH9$tdH9~_HHMH9wJH)I)IItM H$L$H$L$1H$H$H` H$1H$H$H$1H$H$H` Hl$(H D  .unicode/utf8.DecodeRune "".isSpace .unicode/utf8.DecodeRune "".isSpace $runtime.panicslice  $runtime.panicslice  $runtime.panicslice  $runtime.panicslice  0runtime.morestack_noctxt&"".autotmp_0320type.[]uint8"".autotmp_0319type.int"".autotmp_0318type.int"".autotmp_0317type.int"".autotmp_0316type.[]uint8"".autotmp_0315type.bool"".autotmp_0314type.[]uint8"".autotmp_0313type.int"".autotmp_0310/type.[]uint8"".autotmp_0309type.int"".i?type.int"".width_type.int"".widthotype.int"".startOtype.int "".errtype.error"".tokenPtype.[]uint8"".advance@type.int"".atEOF0type.bool"".datatype.[]uint82|?)HV W* W0g_9  Tgclocals·4d8870d794128007eafd160e912f2b3dTgclocals·790e5cc5051fc0affc980ade09e929ecPprebuilts/go/linux-x86/src/bufio/scan.go"".init dH %H;aOH tuH  HH$HD$ H\$HH\$=HHH$HD$ H\$HH\$=mHHH$HD$H\$HH\$=HHH$HD$H\$HH\$=HHH$HD$/H\$HH\$=eHHH$HD$0H\$HH\$= HHH$HD$H\$HH\$=HHH$HD$7H\$HH\$=udHHH$HD$;H\$HH\$=uHH H-H,$H\$H-H,$H\$H-H,$H\$8H-H,$H\$H-H,$H\$H-H,$H\$0H-H,$H\$H-H,$H\$H-H,$H\$( 4"".initdone·L"".initdone·j "runtime.throwinitz"".initdone· bytes.init io.initXgo.string."bufio: invalid use of UnreadByte" errors.New."".ErrInvalidUnreadByte6runtime.writeBarrierEnabled."".ErrInvalidUnreadByteXgo.string."bufio: invalid use of UnreadRune" errors.New."".ErrInvalidUnreadRune6runtime.writeBarrierEnabled."".ErrInvalidUnreadRune>>>n>>>:: $no 4Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·33cdeccccebe80329f1fdbee7f5874cbPprebuilts/go/linux-x86/src/bufio/scan.goRprebuilts/go/linux-x86/src/bufio/bufio.go,"".(*ReadWriter).reset@$H\$H+Hl$$"".(*Reader).reset`"".r@type.io.Reader "".buftype.[]uint8""..this&type.*"".ReadWriter   Tgclocals·57cb53c6e1baf060ff3024e169f48a16Tgclocals·33cdeccccebe80329f1fdbee7f5874cb*"".(*ReadWriter).fill@$H\$H+Hl$""".(*Reader).fill""..this&type.*"".ReadWriter   Tgclocals·87d20ce1b58390b294df80b886db78bfTgclocals·33cdeccccebe80329f1fdbee7f5874cb0"".(*ReadWriter).readErr@<1H\$H\$H\$H+Hl$4("".(*Reader).readErr0 "".~r0type.error""..this&type.*"".ReadWriter   Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cb*"".(*ReadWriter).Peek`^1H\$H\$ H\$(1H\$0H\$8H\$H+Hl$V""".(*Reader).Peekp "".~r2Ptype.error "".~r1 type.[]uint8"".ntype.int""..this&type.*"".ReadWriter00 0Tgclocals·a041240a37ce609efec56707c330d1a4Tgclocals·33cdeccccebe80329f1fdbee7f5874cb0"".(*ReadWriter).Discard`R11H\$ H\$(HD$H\$H+Hl$J("".(*Reader).DiscardP "".err0type.error"".discarded type.int"".ntype.int""..this&type.*"".ReadWriter00 0Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb*"".(*ReadWriter).Read`R11H\$0H\$8HD$(H\$H+Hl$J""".(*Reader).Readp "".errPtype.error"".n@type.int"".ptype.[]uint8""..this&type.*"".ReadWriter000Tgclocals·b60dc0a6046c556b02baa766a3fd5a27Tgclocals·33cdeccccebe80329f1fdbee7f5874cb2"".(*ReadWriter).ReadByte`J11H\$H\$ D$H\$H+Hl$B*"".(*Reader).ReadByte@ "".err type.error"".ctype.uint8""..this&type.*"".ReadWriter000Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb6"".(*ReadWriter).UnreadByte@<1H\$H\$H\$H+Hl$4."".(*Reader).UnreadByte0 "".~r0type.error""..this&type.*"".ReadWriter   Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cb2"".(*ReadWriter).ReadRuneb11H\$ H\$(HD$D$H\$H+Hl$Z*"".(*Reader).ReadRuneP "".err0type.error"".size type.int"".rtype.int32""..this&type.*"".ReadWriter@@@Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb6"".(*ReadWriter).UnreadRune@<1H\$H\$H\$H+Hl$4."".(*Reader).UnreadRune0 "".~r0type.error""..this&type.*"".ReadWriter   Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4"".(*ReadWriter).ReadSlicef111H\$0H\$81H\$H\$ H\$(H\$H+Hl$^,"".(*Reader).ReadSlicep "".errPtype.error"".line type.[]uint8"".delimtype.uint8""..this&type.*"".ReadWriter@@@Tgclocals·a041240a37ce609efec56707c330d1a4Tgclocals·33cdeccccebe80329f1fdbee7f5874cb2"".(*ReadWriter).ReadLinep111H\$0H\$8D$(1H\$H\$H\$ H\$H+Hl$h*"".(*Reader).ReadLinep "".errPtype.error"".isPrefix@type.bool"".linetype.[]uint8""..this&type.*"".ReadWriter@@@Tgclocals·a041240a37ce609efec56707c330d1a4Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4"".(*ReadWriter).ReadBytesf111H\$0H\$81H\$H\$ H\$(H\$H+Hl$^,"".(*Reader).ReadBytesp "".errPtype.error"".line type.[]uint8"".delimtype.uint8""..this&type.*"".ReadWriter@@@Tgclocals·a041240a37ce609efec56707c330d1a4Tgclocals·33cdeccccebe80329f1fdbee7f5874cb6"".(*ReadWriter).ReadString`\111H\$(H\$01H\$H\$ H\$H+Hl$T."".(*Reader).ReadString` "".err@type.error"".line type.string"".delimtype.uint8""..this&type.*"".ReadWriter000Tgclocals·6432f8c6a0d23fa7bee6c5d96f21a92aTgclocals·33cdeccccebe80329f1fdbee7f5874cb0"".(*ReadWriter).WriteTo`R11H\$(H\$0HD$ H\$H+Hl$J("".(*Reader).WriteTo` "".err@type.error"".n0type.int64"".wtype.io.Writer""..this&type.*"".ReadWriter00 0Tgclocals·13a990b4a341857296a1c12de153dcaaTgclocals·33cdeccccebe80329f1fdbee7f5874cb2"".(*ReadWriter).writeBuf`NHD$ 1H\$(H\$0H\$H+Hl$F*"".(*Reader).writeBuf` "".~r2@type.error "".~r10type.int64"".wtype.io.Writer""..this&type.*"".ReadWriter00"0Tgclocals·13a990b4a341857296a1c12de153dcaaTgclocals·33cdeccccebe80329f1fdbee7f5874cb,"".(*ReadWriter).Flush@>1H\$H\$H\$HkHl$6$"".(*Writer).Flush0 "".~r0type.error""..this&type.*"".ReadWriter  $ Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cb,"".(*ReadWriter).flush@>1H\$H\$H\$HkHl$6$"".(*Writer).flush0 "".~r0type.error""..this&type.*"".ReadWriter  & Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4"".(*ReadWriter).Available@8HD$H\$HkHl$0,"".(*Writer).Available  "".~r0type.int""..this&type.*"".ReadWriter  ( Tgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·33cdeccccebe80329f1fdbee7f5874cb,"".(*ReadWriter).Write`T11H\$0H\$8HD$(H\$HkHl$L$"".(*Writer).Writep "".errPtype.error "".nn@type.int"".ptype.[]uint8""..this&type.*"".ReadWriter00*0Tgclocals·b60dc0a6046c556b02baa766a3fd5a27Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4"".(*ReadWriter).WriteByte@>1H\$H\$ H\$HkHl$6,"".(*Writer).WriteByte@ "".~r1 type.error"".ctype.uint8""..this&type.*"".ReadWriter  , Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4"".(*ReadWriter).WriteRune`T11H\$ H\$(HD$H\$HkHl$L,"".(*Writer).WriteRuneP "".err0type.error"".size type.int"".rtype.int32""..this&type.*"".ReadWriter00.0Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb8"".(*ReadWriter).WriteString`PHD$ 1H\$(H\$0H\$HkHl$H0"".(*Writer).WriteString` "".~r2@type.error "".~r10type.int"".stype.string""..this&type.*"".ReadWriter0000Tgclocals·d98f60bd8519d0c68364b2a1d83af357Tgclocals·33cdeccccebe80329f1fdbee7f5874cb2"".(*ReadWriter).ReadFrom`T11H\$(H\$0HD$ H\$HkHl$L*"".(*Writer).ReadFrom` "".err@type.error"".n0type.int64"".rtype.io.Reader""..this&type.*"".ReadWriter0020Tgclocals·13a990b4a341857296a1c12de153dcaaTgclocals·33cdeccccebe80329f1fdbee7f5874cb&"".ReadWriter.resetdH %HD$H;AHHY HtH$H9;uH#H$L$L$H$H$H$H|$@1HLL$(LL$@LD$0LD$HHt$8Ht$PHl$Hl$XHT$ HT$`HDŽ$HDŽ$Ht'Hl$@HL$Hl$H-H,$HĘÉ   runtime.duffzerotype."".Reader (runtime.typedmemmove 0runtime.morestack_noctxtp "".autotmp_0322type."".Reader"".rtype.io.Reader "".buftype.[]uint8"".rPtype.io.Reader "".buf type.[]uint8""..this$type."".ReadWriter4 Tgclocals·d988fd9f0c4cd978acb91b92bfe23525Tgclocals·607cdd8af25133e14ee3a0c0aab33c85$"".ReadWriter.filldH %H;av-HHY Ht H|$H9;uH#H\$H$H f """.(*Reader).fillz 0runtime.morestack_noctxt ""..this$type."".ReadWriter(P6P 2Tgclocals·2a1dd1e1e59d0a384c26951e316cd7e6Tgclocals·33cdeccccebe80329f1fdbee7f5874cb*"".ReadWriter.readErrdH %HY Ht H|$H9;uH#1HD$1HtHP8HH@1Hh8Hh@HT$HL$ É @ "".~r0 type.error""..this$type."".ReadWriterPP8PTgclocals·0ebb2d1da58c1b4224bf5a7b370d7578Tgclocals·33cdeccccebe80329f1fdbee7f5874cb$"".ReadWriter.PeekdH %H;aH8HY Ht H|$@H9;uH#1H\$XH\$`H\$h1H\$pH\$xH\$@H$H\$PH\$Ht$Hl$HT$ HL$(HD$0Ht$XHl$`HT$hHL$pHD$xH8]  """.(*Reader).Peek 0runtime.morestack_noctxtp "".~r2`type.error "".~r10type.[]uint8"".n type.int""..this$type."".ReadWriterpop: ]STgclocals·6d46c0650eba7dbebc0db316e0e0cf3bTgclocals·33cdeccccebe80329f1fdbee7f5874cb*"".ReadWriter.DiscarddH %H;avcH(HY Ht H|$0H9;uH#11H\$PH\$XH\$0H$H\$@H\$HT$HL$HD$ HT$HHL$PHD$XH(  ("".(*Reader).Discard 0runtime.morestack_noctxt`P "".err@type.error"".discarded0type.int"".n type.int""..this$type."".ReadWriterP^OP< J6Tgclocals·d98f60bd8519d0c68364b2a1d83af357Tgclocals·33cdeccccebe80329f1fdbee7f5874cb$"".ReadWriter.ReaddH %H;avwH8HY Ht H|$@H9;uH#11H\$pH\$xH\$@H$H\$PH\$H\$XH\$H\$`H\$HT$ HL$(HD$0HT$hHL$pHD$xH8p  """.(*Reader).Read 0runtime.morestack_noctxtp "".err`type.error"".nPtype.int"".p type.[]uint8""..this$type."".ReadWriterprop > ^2Tgclocals·dacebcad73eed5073009fd67170948d0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb,"".ReadWriter.ReadBytedH %H;avXH HY Ht H|$(H9;uH#11H\$@H\$HH\$(H$\$HL$HD$\$8HL$@HD$HH   *"".(*Reader).ReadByte 0runtime.morestack_noctxtP@ "".err0type.error"".c type.uint8""..this$type."".ReadWriter@S?@ p@p @0Tgclocals·1347047f6245a35b91e9a4f213167d52Tgclocals·33cdeccccebe80329f1fdbee7f5874cb0"".ReadWriter.UnreadBytedH %H;aHY Ht H|$H9;uH#1HD$1HXHH|HX(Hu#HX0H~H HHL$HD$ HX(H~HHh(HHh(Hp(HHHHhH9s"H2HhH@+H@HH@P1H H@01 ."".ErrInvalidUnreadByte."".ErrInvalidUnreadByte $runtime.panicindex 0runtime.morestack_noctxt@ "".~r0 type.error""..this$type."".ReadWriterB Tgclocals·0ebb2d1da58c1b4224bf5a7b370d7578Tgclocals·33cdeccccebe80329f1fdbee7f5874cb,"".ReadWriter.ReadRunedH %H;avaH(HY Ht H|$0H9;uH#11H\$PH\$XH\$0H$l$HT$HL$HD$ l$@HT$HHL$PHD$XH(  *"".(*Reader).ReadRune 0runtime.morestack_noctxt`P "".err@type.error"".size0type.int"".r type.int32""..this$type."".ReadWriterP\OPD @@Tgclocals·d98f60bd8519d0c68364b2a1d83af357Tgclocals·33cdeccccebe80329f1fdbee7f5874cb0"".ReadWriter.UnreadRunedH %HY Ht H|$H9;uH#1HD$1HXPH|."".ReadWriter.ReadSlicedH %H;aH8HY Ht H|$@H9;uH#111H\$pH\$x1H\$XH\$`H\$hH\$@H$\$P\$Ht$Hl$HT$ HL$(HD$0Ht$XHl$`HT$hHL$pHD$xH8Z  ,"".(*Reader).ReadSlice 0runtime.morestack_noctxtp "".err`type.error"".line0type.[]uint8"".delim type.uint8""..this$type."".ReadWriterpopH `PTgclocals·6d46c0650eba7dbebc0db316e0e0cf3bTgclocals·33cdeccccebe80329f1fdbee7f5874cb,"".ReadWriter.ReadLinedH %H;aH8HY Ht H|$@H9;uH#111H\$pH\$x1H\$PH\$XH\$`H\$@H$H|$Ht$Hl$\$ HL$(HD$0H|$PHt$XHl$`\$hHL$pHD$xH8Z  *"".(*Reader).ReadLine 0runtime.morestack_noctxtp "".err`type.error"".isPrefixPtype.bool"".line type.[]uint8""..this$type."".ReadWriterpopJ WYTgclocals·6d46c0650eba7dbebc0db316e0e0cf3bTgclocals·33cdeccccebe80329f1fdbee7f5874cb."".ReadWriter.ReadBytesdH %H;aH8HY Ht H|$@H9;uH#111H\$pH\$x1H\$XH\$`H\$hH\$@H$\$P\$Ht$Hl$HT$ HL$(HD$0Ht$XHl$`HT$hHL$pHD$xH8Z  ,"".(*Reader).ReadBytes 0runtime.morestack_noctxtp "".err`type.error"".line0type.[]uint8"".delim type.uint8""..this$type."".ReadWriterpopL `PTgclocals·6d46c0650eba7dbebc0db316e0e0cf3bTgclocals·33cdeccccebe80329f1fdbee7f5874cb0"".ReadWriter.ReadStringdH %H;avzH0HY Ht H|$8H9;uH#111H\$`H\$h1H\$PH\$XH\$8H$\$H\$Hl$HT$HL$ HD$(Hl$PHT$XHL$`HD$hH0m  ."".(*Reader).ReadString 0runtime.morestack_noctxtp` "".errPtype.error"".line0type.string"".delim type.uint8""..this$type."".ReadWriter`u_`N WITgclocals·b60dc0a6046c556b02baa766a3fd5a27Tgclocals·33cdeccccebe80329f1fdbee7f5874cb*"".ReadWriter.WriteTodH %H;avmH0HY Ht H|$8H9;uH#11H\$`H\$hH\$8H$H\$HH\$H\$PH\$HT$HL$ HD$(HT$XHL$`HD$hH0z  ("".(*Reader).WriteTo 0runtime.morestack_noctxtp` "".errPtype.error"".n@type.int64"".w type.io.Writer""..this$type."".ReadWriter`h_`P T<Tgclocals·a5947a078ff8f32dc378f6b0b238531dTgclocals·33cdeccccebe80329f1fdbee7f5874cb,"".ReadWriter.writeBufdH %H;avkH0HY Ht H|$8H9;uH#1H\$`H\$hH\$8H$H\$HH\$H\$PH\$HT$HL$ HD$(HT$XHL$`HD$hH0|  *"".(*Reader).writeBuf 0runtime.morestack_noctxtp` "".~r2Ptype.error "".~r1@type.int64"".w type.io.Writer""..this$type."".ReadWriter`f_`R R>Tgclocals·a5947a078ff8f32dc378f6b0b238531dTgclocals·33cdeccccebe80329f1fdbee7f5874cb&"".ReadWriter.FlushdH %H;avMHHY Ht H|$ H9;uH#1H\$0H\$8H\$(H$HL$HD$HL$0HD$8H ~ $"".(*Writer).Flush 0runtime.morestack_noctxt@0 "".~r0 type.error""..this$type."".ReadWriter0H/0pTp >2Tgclocals·0ebb2d1da58c1b4224bf5a7b370d7578Tgclocals·33cdeccccebe80329f1fdbee7f5874cb&"".ReadWriter.flushdH %H;avMHHY Ht H|$ H9;uH#1H\$0H\$8H\$(H$HL$HD$HL$0HD$8H ~ $"".(*Writer).flush 0runtime.morestack_noctxt@0 "".~r0 type.error""..this$type."".ReadWriter0H/0pVp >2Tgclocals·0ebb2d1da58c1b4224bf5a7b370d7578Tgclocals·33cdeccccebe80329f1fdbee7f5874cb."".ReadWriter.AvailablejdH %HY Ht H|$H9;uH#HD$HhHX(H)Hl$ 0 "".~r0 type.int""..this$type."".ReadWriter@@X@Tgclocals·3bb21ca8fe1d99a3e492463bd711418aTgclocals·33cdeccccebe80329f1fdbee7f5874cb&"".ReadWriter.WritedH %H;avwH8HY Ht H|$@H9;uH#11H\$pH\$xH\$HH$H\$PH\$H\$XH\$H\$`H\$HT$ HL$(HD$0HT$hHL$pHD$xH8p  $"".(*Writer).Write 0runtime.morestack_noctxtp "".err`type.error "".nnPtype.int"".p type.[]uint8""..this$type."".ReadWriterprop Z ^2Tgclocals·dacebcad73eed5073009fd67170948d0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb."".ReadWriter.WriteBytedH %H;avVH HY Ht H|$(H9;uH#1H\$@H\$HH\$0H$\$8\$HL$HD$HL$@HD$HH   ,"".(*Writer).WriteByte 0runtime.morestack_noctxtP@ "".~r10type.error"".c type.uint8""..this$type."".ReadWriter@Q?@ p\p G)Tgclocals·1347047f6245a35b91e9a4f213167d52Tgclocals·33cdeccccebe80329f1fdbee7f5874cb."".ReadWriter.WriteRunedH %H;avaH(HY Ht H|$0H9;uH#11H\$PH\$XH\$8H$\$@\$HT$HL$HD$ HT$HHL$PHD$XH(  ,"".(*Writer).WriteRune 0runtime.morestack_noctxt`P "".err@type.error"".size0type.int"".r type.int32""..this$type."".ReadWriterP\OP^ H8Tgclocals·d98f60bd8519d0c68364b2a1d83af357Tgclocals·33cdeccccebe80329f1fdbee7f5874cb2"".ReadWriter.WriteStringdH %H;avkH0HY Ht H|$8H9;uH#1H\$`H\$hH\$@H$H\$HH\$H\$PH\$HT$HL$ HD$(HT$XHL$`HD$hH0|  0"".(*Writer).WriteString 0runtime.morestack_noctxtp` "".~r2Ptype.error "".~r1@type.int"".s type.string""..this$type."".ReadWriter`f_`` R>Tgclocals·33bd09daed8d27c6aa5688ccfd7468adTgclocals·33cdeccccebe80329f1fdbee7f5874cb,"".ReadWriter.ReadFromdH %H;avmH0HY Ht H|$8H9;uH#11H\$`H\$hH\$@H$H\$HH\$H\$PH\$HT$HL$ HD$(HT$XHL$`HD$hH0z  *"".(*Writer).ReadFrom 0runtime.morestack_noctxtp` "".errPtype.error"".n@type.int64"".r type.io.Reader""..this$type."".ReadWriter`h_`b T<Tgclocals·a5947a078ff8f32dc378f6b0b238531dTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·de63343370a27ae1278a3558a8c673c0((Tgclocals·14c16763214c88f6ebc22b4b638329b7((Tgclocals·b5b1f48fc385a1e7578af006b7551e4100 Tgclocals·42e7756549fd1f1e78e70fcb9f08dd2b00Tgclocals·607cdd8af25133e14ee3a0c0aab33c85Tgclocals·5c5a9f3dff47a8940bdc317b9324ac2aTgclocals·55b93fc8500931e797aa082d87ba0d9e Tgclocals·57cb53c6e1baf060ff3024e169f48a163`go.string.hdr."bufio: tried to fill full buffer" Xgo.string."bufio: tried to fill full buffer"Xgo.string."bufio: tried to fill full buffer"PBbufio: tried to fill full bufferTgclocals·f31330adfba2a741643485f4a6eda68a Tgclocals·51fa0e13d53d6bad7f86670d3edaeac6 Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·a041240a37ce609efec56707c330d1a4Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·0ebab88fa809a64715f990f20954c3c3 Tgclocals·b60dc0a6046c556b02baa766a3fd5a27Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·790e5cc5051fc0affc980ade09e929ecTgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·f56b2291fa344104975cb6587be42b9b Tgclocals·88a82235651174c058e0addadab4e659 avgo.string.hdr."bufio: tried to rewind past start of buffer" +ngo.string."bufio: tried to rewind past start of buffer"ngo.string."bufio: tried to rewind past start of buffer"`Xbufio: tried to rewind past start of bufferTgclocals·21628ef15e17a47b249310bffa1e8bd0((Tgclocals·8eb852d251341d0179cb59584c49209f((cTgclocals·171b616403558434c53ff861c413f69ePP'$$Tgclocals·233dc4ecce920b62f981fc792ec53848PPaaaaaaaTgclocals·f56b2291fa344104975cb6587be42b9b Tgclocals·385909f76d6de739e72f24698b953b71 1Tgclocals·669c7d9f0df32c6735ae27d87c97b25c(( Tgclocals·aeadbc73530d5f877ac2661d18e94fa0((Tgclocals·12fc1489b12fcdedb8fc818b7369b5d9Tgclocals·13a990b4a341857296a1c12de153dcaaTgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f((Tgclocals·14c16763214c88f6ebc22b4b638329b7((Tgclocals·30cbcc4cbf7928c6a8c16f3943e312ad88Tgclocals·aa52d274abdec77c8c6f0039727529fb88Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·5c5a9f3dff47a8940bdc317b9324ac2aTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·21545c880057c850155b44b51d3dfff9 Tgclocals·41a13ac73c712c01973b8fe23f62d694 Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·0ebab88fa809a64715f990f20954c3c3 Tgclocals·b60dc0a6046c556b02baa766a3fd5a27Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·790e5cc5051fc0affc980ade09e929ecTgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·895d0569a38a56443b84805daa09d838Tgclocals·d98f60bd8519d0c68364b2a1d83af357Tgclocals·9693f46e60a90ce4cc19ba9e42baf1e0(( 0Tgclocals·3b058289e87a1930e774a55a7e38340f((77Tgclocals·0c8aa8e80191a30eac23f1a218103f16 Tgclocals·51af24152615272c3d9efc8538f95767 Tgclocals·63cd04555cdf6098214cf65f2895608400Tgclocals·42e7756549fd1f1e78e70fcb9f08dd2b00Tgclocals·23e8278e2b69a3a75fa59b23c49ed6adTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2go.string.hdr."bufio.Scan: 100 empty tokens without progressing" 0xgo.string."bufio.Scan: 100 empty tokens without progressing"xgo.string."bufio.Scan: 100 empty tokens without progressing"pbbufio.Scan: 100 empty tokens without progressingTgclocals·c902f3593191ae78e3a4f8da0146b76a +00  Tgclocals·0241939093ad48db63b213bcfccb79ff`` Tgclocals·11248568c735471f107fcdfd00b1e355((2 Tgclocals·cb395d89503762333b1bfb09ba74eb12((Tgclocals·23e8278e2b69a3a75fa59b23c49ed6adTgclocals·5c5a9f3dff47a8940bdc317b9324ac2aTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·2a1dd1e1e59d0a384c26951e316cd7e6Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·4d8870d794128007eafd160e912f2b3d Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·4d8870d794128007eafd160e912f2b3d Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·6432f8c6a0d23fa7bee6c5d96f21a92aTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·4d8870d794128007eafd160e912f2b3d Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·23e8278e2b69a3a75fa59b23c49ed6adTgclocals·790e5cc5051fc0affc980ade09e929ecTgclocals·4d8870d794128007eafd160e912f2b3d 0""..gobytes.1�`go.string.hdr."bufio: invalid use of UnreadByte" Xgo.string."bufio: invalid use of UnreadByte"Xgo.string."bufio: invalid use of UnreadByte"PBbufio: invalid use of UnreadByte`go.string.hdr."bufio: invalid use of UnreadRune" Xgo.string."bufio: invalid use of UnreadRune"Xgo.string."bufio: invalid use of UnreadRune"PBbufio: invalid use of UnreadRuneDgo.string.hdr."bufio: buffer full" func(*bufio.Reader, io.Reader)@type.func(*"".Reader, io.Reader):o30 runtime.algarray@"runtime.gcbits.01P\go.string.hdr."func(*bufio.Reader, io.Reader)"pRgo.weak.type.*func(*"".Reader, io.Reader)"runtime.zerovalue@type.func(*"".Reader, io.Reader)@type.func(*"".Reader, io.Reader)type.*"".Readertype.io.Readergo.typelink.func(*bufio.Reader, io.Reader) func(*"".Reader, io.Reader)@type.func(*"".Reader, io.Reader)Rgo.string.hdr."func(*bufio.Reader) error" Jgo.string."func(*bufio.Reader) error"Jgo.string."func(*bufio.Reader) error"@4func(*bufio.Reader) error6type.func(*"".Reader) errorx30 runtime.algarray@"runtime.gcbits.01PRgo.string.hdr."func(*bufio.Reader) error"pHgo.weak.type.*func(*"".Reader) error"runtime.zerovalue6type.func(*"".Reader) error6type.func(*"".Reader) errortype.*"".Readertype.errorxgo.typelink.func(*bufio.Reader) error func(*"".Reader) error6type.func(*"".Reader) errorzgo.string.hdr."func(*bufio.Reader, io.Writer) (int64, error)" -rgo.string."func(*bufio.Reader, io.Writer) (int64, error)"rgo.string."func(*bufio.Reader, io.Writer) (int64, error)"`\func(*bufio.Reader, io.Writer) (int64, error)^type.func(*"".Reader, io.Writer) (int64, error)B030 runtime.algarray@"runtime.gcbits.01Pzgo.string.hdr."func(*bufio.Reader, io.Writer) (int64, error)"ppgo.weak.type.*func(*"".Reader, io.Writer) (int64, error)"runtime.zerovalue^type.func(*"".Reader, io.Writer) (int64, error)^type.func(*"".Reader, io.Writer) (int64, error)type.*"".Readertype.io.Writertype.int64type.errorgo.typelink.func(*bufio.Reader, io.Writer) (int64, error) func(*"".Reader, io.Writer) (int64, error)^type.func(*"".Reader, io.Writer) (int64, error)Fgo.string.hdr."func(*bufio.Reader)" >go.string."func(*bufio.Reader)">go.string."func(*bufio.Reader)"0(func(*bufio.Reader)*type.func(*"".Reader);30 runtime.algarray@"runtime.gcbits.01PFgo.string.hdr."func(*bufio.Reader)"ptype.func(int) ([]uint8, error)type.func(int) ([]uint8, error)>type.func(int) ([]uint8, error)type.inttype.[]uint8type.errorgo.typelink.func(int) ([]uint8, error) func(int) ([]uint8, error)>type.func(int) ([]uint8, error)(go.string.hdr."Read"  go.string."Read" go.string."Read" ReadTgo.string.hdr."func([]uint8) (int, error)" Lgo.string."func([]uint8) (int, error)"Lgo.string."func([]uint8) (int, error)"@6func([]uint8) (int, error)>type.func([]uint8) (int, error)N4P30 runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."func([]uint8) (int, error)"pPgo.weak.type.*func([]uint8) (int, error)"runtime.zerovalue>type.func([]uint8) (int, error)>type.func([]uint8) (int, error)type.[]uint8type.inttype.errorgo.typelink.func([]uint8) (int, error) func([]uint8) (int, error)>type.func([]uint8) (int, error)0go.string.hdr."ReadByte" (go.string."ReadByte"(go.string."ReadByte" ReadByteJgo.string.hdr."func() (uint8, error)" Bgo.string."func() (uint8, error)"Bgo.string."func() (uint8, error)"0,func() (uint8, error)4type.func() (uint8, error)T30 runtime.algarray@"runtime.gcbits.01PJgo.string.hdr."func() (uint8, error)"pFgo.weak.type.*func() (uint8, error)"runtime.zerovalue4type.func() (uint8, error)4type.func() (uint8, error)type.uint8type.errorngo.typelink.func() (uint8, error) func() (uint8, error)4type.func() (uint8, error)2go.string.hdr."ReadBytes" *go.string."ReadBytes"*go.string."ReadBytes" ReadBytesXgo.string.hdr."func(uint8) ([]uint8, error)" Pgo.string."func(uint8) ([]uint8, error)"Pgo.string."func(uint8) ([]uint8, error)"@:func(uint8) ([]uint8, error)Btype.func(uint8) ([]uint8, error){30 runtime.algarray@"runtime.gcbits.01PXgo.string.hdr."func(uint8) ([]uint8, error)"pTgo.weak.type.*func(uint8) ([]uint8, error)"runtime.zerovalueBtype.func(uint8) ([]uint8, error)Btype.func(uint8) ([]uint8, error)type.uint8type.[]uint8type.errorgo.typelink.func(uint8) ([]uint8, error) func(uint8) ([]uint8, error)Btype.func(uint8) ([]uint8, error)0go.string.hdr."ReadLine" (go.string."ReadLine"(go.string."ReadLine" ReadLineZgo.string.hdr."func() ([]uint8, bool, error)" Rgo.string."func() ([]uint8, bool, error)"Rgo.string."func() ([]uint8, bool, error)"@type.func() (int32, int, error)q630 runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."func() (int32, int, error)"pPgo.weak.type.*func() (int32, int, error)"runtime.zerovalue>type.func() (int32, int, error)>type.func() (int32, int, error)type.int32type.inttype.errorgo.typelink.func() (int32, int, error) func() (int32, int, error)>type.func() (int32, int, error)2go.string.hdr."ReadSlice" *go.string."ReadSlice"*go.string."ReadSlice" ReadSlice4go.string.hdr."ReadString" ,go.string."ReadString",go.string."ReadString" ReadStringVgo.string.hdr."func(uint8) (string, error)" Ngo.string."func(uint8) (string, error)"Ngo.string."func(uint8) (string, error)"@8func(uint8) (string, error)@type.func(uint8) (string, error)|^30 runtime.algarray@"runtime.gcbits.01PVgo.string.hdr."func(uint8) (string, error)"pRgo.weak.type.*func(uint8) (string, error)"runtime.zerovalue@type.func(uint8) (string, error)@type.func(uint8) (string, error)type.uint8type.stringtype.errorgo.typelink.func(uint8) (string, error) func(uint8) (string, error)@type.func(uint8) (string, error)*go.string.hdr."Reset" "go.string."Reset""go.string."Reset" Reset>go.string.hdr."func(io.Reader)" 6go.string."func(io.Reader)"6go.string."func(io.Reader)" func(io.Reader)(type.func(io.Reader)ȹ30 runtime.algarray@"runtime.gcbits.01P>go.string.hdr."func(io.Reader)"p:go.weak.type.*func(io.Reader)"runtime.zerovalue(type.func(io.Reader)(type.func(io.Reader)type.io.ReaderVgo.typelink.func(io.Reader) func(io.Reader)(type.func(io.Reader)4go.string.hdr."UnreadByte" ,go.string."UnreadByte",go.string."UnreadByte" UnreadByte8go.string.hdr."func() error" 0go.string."func() error"0go.string."func() error" func() error"type.func() errorֵ30 runtime.algarray@"runtime.gcbits.01P8go.string.hdr."func() error"p4go.weak.type.*func() error"runtime.zerovalue"type.func() error"type.func() errortype.errorJgo.typelink.func() error func() error"type.func() error4go.string.hdr."UnreadRune" ,go.string."UnreadRune",go.string."UnreadRune" UnreadRune.go.string.hdr."WriteTo" &go.string."WriteTo"&go.string."WriteTo"WriteTo\go.string.hdr."func(io.Writer) (int64, error)" Tgo.string."func(io.Writer) (int64, error)"Tgo.string."func(io.Writer) (int64, error)"@>func(io.Writer) (int64, error)Ftype.func(io.Writer) (int64, error)\30 runtime.algarray@"runtime.gcbits.01P\go.string.hdr."func(io.Writer) (int64, error)"pXgo.weak.type.*func(io.Writer) (int64, error)"runtime.zerovalueFtype.func(io.Writer) (int64, error)Ftype.func(io.Writer) (int64, error)type.io.Writertype.int64type.errorgo.typelink.func(io.Writer) (int64, error) func(io.Writer) (int64, error)Ftype.func(io.Writer) (int64, error)(go.string.hdr."fill"  go.string."fill" go.string."fill" fill*go.string.hdr."bufio" "go.string."bufio""go.string."bufio" bufio"go.importpath."". "go.string."bufio",go.string.hdr."func()" $go.string."func()"$go.string."func()"func()type.func()30 runtime.algarray@"runtime.gcbits.01P,go.string.hdr."func()"p(go.weak.type.*func()"runtime.zerovaluetype.func()type.func()2go.typelink.func() func()type.func().go.string.hdr."readErr" &go.string."readErr"&go.string."readErr"readErr*go.string.hdr."reset" "go.string."reset""go.string."reset" resetPgo.string.hdr."func([]uint8, io.Reader)" Hgo.string."func([]uint8, io.Reader)"Hgo.string."func([]uint8, io.Reader)"@2func([]uint8, io.Reader):type.func([]uint8, io.Reader);)ߤ30 runtime.algarray@"runtime.gcbits.01PPgo.string.hdr."func([]uint8, io.Reader)"pLgo.weak.type.*func([]uint8, io.Reader)"runtime.zerovalue:type.func([]uint8, io.Reader):type.func([]uint8, io.Reader)type.[]uint8type.io.Readerzgo.typelink.func([]uint8, io.Reader) func([]uint8, io.Reader):type.func([]uint8, io.Reader)0go.string.hdr."writeBuf" (go.string."writeBuf"(go.string."writeBuf" writeBuftype.*"".Readerܯ60 runtime.algarray@"runtime.gcbits.01P:go.string.hdr."*bufio.Reader"p0go.weak.type.**"".Reader"runtime.zerovaluetype."".Reader`type.*"".Readertype.*"".Reader0go.string.hdr."Buffered"type.func() int2type.func(*"".Reader) int*"".(*Reader).Buffered*"".(*Reader).Buffered.go.string.hdr."Discard"6type.func(int) (int, error)Ntype.func(*"".Reader, int) (int, error)("".(*Reader).Discard("".(*Reader).Discard(go.string.hdr."Peek">type.func(int) ([]uint8, error)Vtype.func(*"".Reader, int) ([]uint8, error)""".(*Reader).Peek""".(*Reader).Peek(go.string.hdr."Read">type.func([]uint8) (int, error)Vtype.func(*"".Reader, []uint8) (int, error)""".(*Reader).Read""".(*Reader).Read0go.string.hdr."ReadByte"4type.func() (uint8, error)Htype.func(*"".Reader) (uint8, error)*"".(*Reader).ReadByte*"".(*Reader).ReadByte2go.string.hdr."ReadBytes"Btype.func(uint8) ([]uint8, error)Ztype.func(*"".Reader, uint8) ([]uint8, error),"".(*Reader).ReadBytes,"".(*Reader).ReadBytes0go.string.hdr."ReadLine"Dtype.func() ([]uint8, bool, error)Xtype.func(*"".Reader) ([]uint8, bool, error)*"".(*Reader).ReadLine*"".(*Reader).ReadLine0go.string.hdr."ReadRune">type.func() (int32, int, error)Rtype.func(*"".Reader) (int32, int, error)*"".(*Reader).ReadRune*"".(*Reader).ReadRune2go.string.hdr."ReadSlice"Btype.func(uint8) ([]uint8, error)Ztype.func(*"".Reader, uint8) ([]uint8, error),"".(*Reader).ReadSlice,"".(*Reader).ReadSlice4go.string.hdr."ReadString"@type.func(uint8) (string, error) Xtype.func(*"".Reader, uint8) (string, error) ."".(*Reader).ReadString ."".(*Reader).ReadString *go.string.hdr."Reset" (type.func(io.Reader) @type.func(*"".Reader, io.Reader) $"".(*Reader).Reset $"".(*Reader).Reset 4go.string.hdr."UnreadByte" "type.func() error 6type.func(*"".Reader) error ."".(*Reader).UnreadByte ."".(*Reader).UnreadByte 4go.string.hdr."UnreadRune" "type.func() error 6type.func(*"".Reader) error ."".(*Reader).UnreadRune ."".(*Reader).UnreadRune .go.string.hdr."WriteTo" Ftype.func(io.Writer) (int64, error) ^type.func(*"".Reader, io.Writer) (int64, error) ("".(*Reader).WriteTo ("".(*Reader).WriteTo (go.string.hdr."fill" "go.importpath."". type.func() *type.func(*"".Reader) """.(*Reader).fill """.(*Reader).fill .go.string.hdr."readErr" "go.importpath."". "type.func() error 6type.func(*"".Reader) error ("".(*Reader).readErr ("".(*Reader).readErr *go.string.hdr."reset""go.importpath."".:type.func([]uint8, io.Reader)Rtype.func(*"".Reader, []uint8, io.Reader)$"".(*Reader).reset$"".(*Reader).reset0go.string.hdr."writeBuf""go.importpath."".Ftype.func(io.Writer) (int64, error)^type.func(*"".Reader, io.Writer) (int64, error)*"".(*Reader).writeBuf*"".(*Reader).writeBuf&runtime.gcbits.99018go.string.hdr."bufio.Reader" 0go.string."bufio.Reader"0go.string."bufio.Reader" bufio.Reader&go.string.hdr."buf" go.string."buf"go.string."buf"buf$go.string.hdr."rd" go.string."rd"go.string."rd"rd"go.string.hdr."r" go.string."r"go.string."r"r"go.string.hdr."w" go.string."w"go.string."w"w&go.string.hdr."err" go.string."err"go.string."err"err0go.string.hdr."lastByte" (go.string."lastByte"(go.string."lastByte" lastByte8go.string.hdr."lastRuneSize" 0go.string."lastRuneSize"0go.string."lastRuneSize" lastRuneSize,go.string.hdr."Reader" $go.string."Reader"$go.string."Reader"Readertype."".ReaderXH.(08HP>0 runtime.algarray@&runtime.gcbits.9901P8go.string.hdr."bufio.Reader"ptype.*"".Reader"runtime.zerovaluetype."".Reader&go.string.hdr."buf""go.importpath."".type.[]uint8$go.string.hdr."rd""go.importpath."".type.io.Reader"go.string.hdr."r""go.importpath."".type.int"go.string.hdr."w""go.importpath."".type.int&go.string.hdr."err""go.importpath."".type.error0go.string.hdr."lastByte""go.importpath."".type.int8go.string.hdr."lastRuneSize""go.importpath."".type.int`type."".Reader,go.string.hdr."Reader""go.importpath."".type."".Reader2go.string.hdr."[][]uint8" *go.string."[][]uint8"*go.string."[][]uint8" [][]uint8type.[][]uint8} 0 runtime.algarray@"runtime.gcbits.01P2go.string.hdr."[][]uint8"p.go.weak.type.*[][]uint8"runtime.zerovaluetype.[]uint8>go.typelink.[][]uint8 [][]uint8type.[][]uint8:go.string.hdr."*bufio.Writer" 2go.string."*bufio.Writer"2go.string."*bufio.Writer" *bufio.WriterNgo.string.hdr."func(*bufio.Writer) int" Fgo.string."func(*bufio.Writer) int"Fgo.string."func(*bufio.Writer) int"00func(*bufio.Writer) int2type.func(*"".Writer) int0@c30 runtime.algarray@"runtime.gcbits.01PNgo.string.hdr."func(*bufio.Writer) int"pDgo.weak.type.*func(*"".Writer) int"runtime.zerovalue2type.func(*"".Writer) int2type.func(*"".Writer) inttype.*"".Writertype.intpgo.typelink.func(*bufio.Writer) int func(*"".Writer) int2type.func(*"".Writer) intRgo.string.hdr."func(*bufio.Writer) error" Jgo.string."func(*bufio.Writer) error"Jgo.string."func(*bufio.Writer) error"@4func(*bufio.Writer) error6type.func(*"".Writer) error30 runtime.algarray@"runtime.gcbits.01PRgo.string.hdr."func(*bufio.Writer) error"pHgo.weak.type.*func(*"".Writer) error"runtime.zerovalue6type.func(*"".Writer) error6type.func(*"".Writer) errortype.*"".Writertype.errorxgo.typelink.func(*bufio.Writer) error func(*"".Writer) error6type.func(*"".Writer) errorzgo.string.hdr."func(*bufio.Writer, io.Reader) (int64, error)" -rgo.string."func(*bufio.Writer, io.Reader) (int64, error)"rgo.string."func(*bufio.Writer, io.Reader) (int64, error)"`\func(*bufio.Writer, io.Reader) (int64, error)^type.func(*"".Writer, io.Reader) (int64, error)B]30 runtime.algarray@"runtime.gcbits.01Pzgo.string.hdr."func(*bufio.Writer, io.Reader) (int64, error)"ppgo.weak.type.*func(*"".Writer, io.Reader) (int64, error)"runtime.zerovalue^type.func(*"".Writer, io.Reader) (int64, error)^type.func(*"".Writer, io.Reader) (int64, error)type.*"".Writertype.io.Readertype.int64type.errorgo.typelink.func(*bufio.Writer, io.Reader) (int64, error) func(*"".Writer, io.Reader) (int64, error)^type.func(*"".Writer, io.Reader) (int64, error)\go.string.hdr."func(*bufio.Writer, io.Writer)" Tgo.string."func(*bufio.Writer, io.Writer)"Tgo.string."func(*bufio.Writer, io.Writer)"@>func(*bufio.Writer, io.Writer)@type.func(*"".Writer, io.Writer)v30 runtime.algarray@"runtime.gcbits.01P\go.string.hdr."func(*bufio.Writer, io.Writer)"pRgo.weak.type.*func(*"".Writer, io.Writer)"runtime.zerovalue@type.func(*"".Writer, io.Writer)@type.func(*"".Writer, io.Writer)type.*"".Writertype.io.Writergo.typelink.func(*bufio.Writer, io.Writer) func(*"".Writer, io.Writer)@type.func(*"".Writer, io.Writer)rgo.string.hdr."func(*bufio.Writer, []uint8) (int, error)" )jgo.string."func(*bufio.Writer, []uint8) (int, error)"jgo.string."func(*bufio.Writer, []uint8) (int, error)"`Tfunc(*bufio.Writer, []uint8) (int, error)Vtype.func(*"".Writer, []uint8) (int, error)ee 30 runtime.algarray@"runtime.gcbits.01Prgo.string.hdr."func(*bufio.Writer, []uint8) (int, error)"phgo.weak.type.*func(*"".Writer, []uint8) (int, error)"runtime.zerovalueVtype.func(*"".Writer, []uint8) (int, error)Vtype.func(*"".Writer, []uint8) (int, error)type.*"".Writertype.[]uint8type.inttype.errorgo.typelink.func(*bufio.Writer, []uint8) (int, error) func(*"".Writer, []uint8) (int, error)Vtype.func(*"".Writer, []uint8) (int, error)`go.string.hdr."func(*bufio.Writer, uint8) error" Xgo.string."func(*bufio.Writer, uint8) error"Xgo.string."func(*bufio.Writer, uint8) error"PBfunc(*bufio.Writer, uint8) errorDtype.func(*"".Writer, uint8) errordj30 runtime.algarray@"runtime.gcbits.01P`go.string.hdr."func(*bufio.Writer, uint8) error"pVgo.weak.type.*func(*"".Writer, uint8) error"runtime.zerovalueDtype.func(*"".Writer, uint8) errorDtype.func(*"".Writer, uint8) errortype.*"".Writertype.uint8type.errorgo.typelink.func(*bufio.Writer, uint8) error func(*"".Writer, uint8) errorDtype.func(*"".Writer, uint8) errorngo.string.hdr."func(*bufio.Writer, int32) (int, error)" 'fgo.string."func(*bufio.Writer, int32) (int, error)"fgo.string."func(*bufio.Writer, int32) (int, error)"PPfunc(*bufio.Writer, int32) (int, error)Rtype.func(*"".Writer, int32) (int, error)30 runtime.algarray@"runtime.gcbits.01Pngo.string.hdr."func(*bufio.Writer, int32) (int, error)"pdgo.weak.type.*func(*"".Writer, int32) (int, error)"runtime.zerovalueRtype.func(*"".Writer, int32) (int, error)Rtype.func(*"".Writer, int32) (int, error)type.*"".Writertype.int32type.inttype.errorgo.typelink.func(*bufio.Writer, int32) (int, error) func(*"".Writer, int32) (int, error)Rtype.func(*"".Writer, int32) (int, error)pgo.string.hdr."func(*bufio.Writer, string) (int, error)" (hgo.string."func(*bufio.Writer, string) (int, error)"hgo.string."func(*bufio.Writer, string) (int, error)"`Rfunc(*bufio.Writer, string) (int, error)Ttype.func(*"".Writer, string) (int, error)Bҋ30 runtime.algarray@"runtime.gcbits.01Ppgo.string.hdr."func(*bufio.Writer, string) (int, error)"pfgo.weak.type.*func(*"".Writer, string) (int, error)"runtime.zerovalueTtype.func(*"".Writer, string) (int, error)Ttype.func(*"".Writer, string) (int, error)type.*"".Writertype.stringtype.inttype.errorgo.typelink.func(*bufio.Writer, string) (int, error) func(*"".Writer, string) (int, error)Ttype.func(*"".Writer, string) (int, error)2go.string.hdr."Available" *go.string."Available"*go.string."Available" Available*go.string.hdr."Flush" "go.string."Flush""go.string."Flush" Flush0go.string.hdr."ReadFrom" (go.string."ReadFrom"(go.string."ReadFrom" ReadFrom\go.string.hdr."func(io.Reader) (int64, error)" Tgo.string."func(io.Reader) (int64, error)"Tgo.string."func(io.Reader) (int64, error)"@>func(io.Reader) (int64, error)Ftype.func(io.Reader) (int64, error)Y30 runtime.algarray@"runtime.gcbits.01P\go.string.hdr."func(io.Reader) (int64, error)"pXgo.weak.type.*func(io.Reader) (int64, error)"runtime.zerovalueFtype.func(io.Reader) (int64, error)Ftype.func(io.Reader) (int64, error)type.io.Readertype.int64type.errorgo.typelink.func(io.Reader) (int64, error) func(io.Reader) (int64, error)Ftype.func(io.Reader) (int64, error)>go.string.hdr."func(io.Writer)" 6go.string."func(io.Writer)"6go.string."func(io.Writer)" func(io.Writer)(type.func(io.Writer)Z[30 runtime.algarray@"runtime.gcbits.01P>go.string.hdr."func(io.Writer)"p:go.weak.type.*func(io.Writer)"runtime.zerovalue(type.func(io.Writer)(type.func(io.Writer)type.io.WriterVgo.typelink.func(io.Writer) func(io.Writer)(type.func(io.Writer)*go.string.hdr."Write" "go.string."Write""go.string."Write" Write2go.string.hdr."WriteByte" *go.string."WriteByte"*go.string."WriteByte" WriteByteBgo.string.hdr."func(uint8) error" :go.string."func(uint8) error":go.string."func(uint8) error"0$func(uint8) error,type.func(uint8) errorIX30 runtime.algarray@"runtime.gcbits.01PBgo.string.hdr."func(uint8) error"p>go.weak.type.*func(uint8) error"runtime.zerovalue,type.func(uint8) error,type.func(uint8) errortype.uint8type.error^go.typelink.func(uint8) error func(uint8) error,type.func(uint8) error2go.string.hdr."WriteRune" *go.string."WriteRune"*go.string."WriteRune" WriteRunePgo.string.hdr."func(int32) (int, error)" Hgo.string."func(int32) (int, error)"Hgo.string."func(int32) (int, error)"@2func(int32) (int, error):type.func(int32) (int, error)30 runtime.algarray@"runtime.gcbits.01PPgo.string.hdr."func(int32) (int, error)"pLgo.weak.type.*func(int32) (int, error)"runtime.zerovalue:type.func(int32) (int, error):type.func(int32) (int, error)type.int32type.inttype.errorzgo.typelink.func(int32) (int, error) func(int32) (int, error):type.func(int32) (int, error)6go.string.hdr."WriteString" .go.string."WriteString".go.string."WriteString" WriteStringRgo.string.hdr."func(string) (int, error)" Jgo.string."func(string) (int, error)"Jgo.string."func(string) (int, error)"@4func(string) (int, error)type.func([]uint8) (int, error)Vtype.func(*"".Writer, []uint8) (int, error)$"".(*Writer).Write$"".(*Writer).Write2go.string.hdr."WriteByte",type.func(uint8) errorDtype.func(*"".Writer, uint8) error,"".(*Writer).WriteByte,"".(*Writer).WriteByte2go.string.hdr."WriteRune":type.func(int32) (int, error)Rtype.func(*"".Writer, int32) (int, error),"".(*Writer).WriteRune,"".(*Writer).WriteRune6go.string.hdr."WriteString"type.func(*"".ReadWriter) errorA_30 runtime.algarray@"runtime.gcbits.01PZgo.string.hdr."func(*bufio.ReadWriter) error"pPgo.weak.type.*func(*"".ReadWriter) error"runtime.zerovalue>type.func(*"".ReadWriter) error>type.func(*"".ReadWriter) error&type.*"".ReadWritertype.errorgo.typelink.func(*bufio.ReadWriter) error func(*"".ReadWriter) error>type.func(*"".ReadWriter) errorzgo.string.hdr."func(*bufio.ReadWriter, int) ([]uint8, error)" -rgo.string."func(*bufio.ReadWriter, int) ([]uint8, error)"rgo.string."func(*bufio.ReadWriter, int) ([]uint8, error)"`\func(*bufio.ReadWriter, int) ([]uint8, error)^type.func(*"".ReadWriter, int) ([]uint8, error)] 30 runtime.algarray@"runtime.gcbits.01Pzgo.string.hdr."func(*bufio.ReadWriter, int) ([]uint8, error)"ppgo.weak.type.*func(*"".ReadWriter, int) ([]uint8, error)"runtime.zerovalue^type.func(*"".ReadWriter, int) ([]uint8, error)^type.func(*"".ReadWriter, int) ([]uint8, error)&type.*"".ReadWritertype.inttype.[]uint8type.errorgo.typelink.func(*bufio.ReadWriter, int) ([]uint8, error) func(*"".ReadWriter, int) ([]uint8, error)^type.func(*"".ReadWriter, int) ([]uint8, error)zgo.string.hdr."func(*bufio.ReadWriter, []uint8) (int, error)" -rgo.string."func(*bufio.ReadWriter, []uint8) (int, error)"rgo.string."func(*bufio.ReadWriter, []uint8) (int, error)"`\func(*bufio.ReadWriter, []uint8) (int, error)^type.func(*"".ReadWriter, []uint8) (int, error)30 runtime.algarray@"runtime.gcbits.01Pzgo.string.hdr."func(*bufio.ReadWriter, []uint8) (int, error)"ppgo.weak.type.*func(*"".ReadWriter, []uint8) (int, error)"runtime.zerovalue^type.func(*"".ReadWriter, []uint8) (int, error)^type.func(*"".ReadWriter, []uint8) (int, error)&type.*"".ReadWritertype.[]uint8type.inttype.errorgo.typelink.func(*bufio.ReadWriter, []uint8) (int, error) func(*"".ReadWriter, []uint8) (int, error)^type.func(*"".ReadWriter, []uint8) (int, error)lgo.string.hdr."func(*bufio.ReadWriter) (uint8, error)" &dgo.string."func(*bufio.ReadWriter) (uint8, error)"dgo.string."func(*bufio.ReadWriter) (uint8, error)"PNfunc(*bufio.ReadWriter) (uint8, error)Ptype.func(*"".ReadWriter) (uint8, error)g>30 runtime.algarray@"runtime.gcbits.01Plgo.string.hdr."func(*bufio.ReadWriter) (uint8, error)"pbgo.weak.type.*func(*"".ReadWriter) (uint8, error)"runtime.zerovaluePtype.func(*"".ReadWriter) (uint8, error)Ptype.func(*"".ReadWriter) (uint8, error)&type.*"".ReadWritertype.uint8type.errorgo.typelink.func(*bufio.ReadWriter) (uint8, error) func(*"".ReadWriter) (uint8, error)Ptype.func(*"".ReadWriter) (uint8, error)~go.string.hdr."func(*bufio.ReadWriter, uint8) ([]uint8, error)" /vgo.string."func(*bufio.ReadWriter, uint8) ([]uint8, error)"vgo.string."func(*bufio.ReadWriter, uint8) ([]uint8, error)"``func(*bufio.ReadWriter, uint8) ([]uint8, error)btype.func(*"".ReadWriter, uint8) ([]uint8, error)V30 runtime.algarray@"runtime.gcbits.01P~go.string.hdr."func(*bufio.ReadWriter, uint8) ([]uint8, error)"ptgo.weak.type.*func(*"".ReadWriter, uint8) ([]uint8, error)"runtime.zerovaluebtype.func(*"".ReadWriter, uint8) ([]uint8, error)btype.func(*"".ReadWriter, uint8) ([]uint8, error)&type.*"".ReadWritertype.uint8type.[]uint8type.errorgo.typelink.func(*bufio.ReadWriter, uint8) ([]uint8, error) func(*"".ReadWriter, uint8) ([]uint8, error)btype.func(*"".ReadWriter, uint8) ([]uint8, error)go.string.hdr."func(*bufio.ReadWriter, io.Reader) (int64, error)" 1zgo.string."func(*bufio.ReadWriter, io.Reader) (int64, error)"zgo.string."func(*bufio.ReadWriter, io.Reader) (int64, error)"pdfunc(*bufio.ReadWriter, io.Reader) (int64, error)ftype.func(*"".ReadWriter, io.Reader) (int64, error) 430 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*bufio.ReadWriter, io.Reader) (int64, error)"pxgo.weak.type.*func(*"".ReadWriter, io.Reader) (int64, error)"runtime.zerovalueftype.func(*"".ReadWriter, io.Reader) (int64, error)ftype.func(*"".ReadWriter, io.Reader) (int64, error)&type.*"".ReadWritertype.io.Readertype.int64type.errorgo.typelink.func(*bufio.ReadWriter, io.Reader) (int64, error) func(*"".ReadWriter, io.Reader) (int64, error)ftype.func(*"".ReadWriter, io.Reader) (int64, error)|go.string.hdr."func(*bufio.ReadWriter) ([]uint8, bool, error)" .tgo.string."func(*bufio.ReadWriter) ([]uint8, bool, error)"tgo.string."func(*bufio.ReadWriter) ([]uint8, bool, error)"`^func(*bufio.ReadWriter) ([]uint8, bool, error)`type.func(*"".ReadWriter) ([]uint8, bool, error)Jqܮ30 runtime.algarray@"runtime.gcbits.01P|go.string.hdr."func(*bufio.ReadWriter) ([]uint8, bool, error)"prgo.weak.type.*func(*"".ReadWriter) ([]uint8, bool, error)"runtime.zerovalue`type.func(*"".ReadWriter) ([]uint8, bool, error)`type.func(*"".ReadWriter) ([]uint8, bool, error)&type.*"".ReadWritertype.[]uint8type.booltype.errorgo.typelink.func(*bufio.ReadWriter) ([]uint8, bool, error) func(*"".ReadWriter) ([]uint8, bool, error)`type.func(*"".ReadWriter) ([]uint8, bool, error)vgo.string.hdr."func(*bufio.ReadWriter) (int32, int, error)" +ngo.string."func(*bufio.ReadWriter) (int32, int, error)"ngo.string."func(*bufio.ReadWriter) (int32, int, error)"`Xfunc(*bufio.ReadWriter) (int32, int, error)Ztype.func(*"".ReadWriter) (int32, int, error)1'30 runtime.algarray@"runtime.gcbits.01Pvgo.string.hdr."func(*bufio.ReadWriter) (int32, int, error)"plgo.weak.type.*func(*"".ReadWriter) (int32, int, error)"runtime.zerovalueZtype.func(*"".ReadWriter) (int32, int, error)Ztype.func(*"".ReadWriter) (int32, int, error)&type.*"".ReadWritertype.int32type.inttype.errorgo.typelink.func(*bufio.ReadWriter) (int32, int, error) func(*"".ReadWriter) (int32, int, error)Ztype.func(*"".ReadWriter) (int32, int, error)|go.string.hdr."func(*bufio.ReadWriter, uint8) (string, error)" .tgo.string."func(*bufio.ReadWriter, uint8) (string, error)"tgo.string."func(*bufio.ReadWriter, uint8) (string, error)"`^func(*bufio.ReadWriter, uint8) (string, error)`type.func(*"".ReadWriter, uint8) (string, error)u©30 runtime.algarray@"runtime.gcbits.01P|go.string.hdr."func(*bufio.ReadWriter, uint8) (string, error)"prgo.weak.type.*func(*"".ReadWriter, uint8) (string, error)"runtime.zerovalue`type.func(*"".ReadWriter, uint8) (string, error)`type.func(*"".ReadWriter, uint8) (string, error)&type.*"".ReadWritertype.uint8type.stringtype.errorgo.typelink.func(*bufio.ReadWriter, uint8) (string, error) func(*"".ReadWriter, uint8) (string, error)`type.func(*"".ReadWriter, uint8) (string, error)hgo.string.hdr."func(*bufio.ReadWriter, uint8) error" $`go.string."func(*bufio.ReadWriter, uint8) error"`go.string."func(*bufio.ReadWriter, uint8) error"PJfunc(*bufio.ReadWriter, uint8) errorLtype.func(*"".ReadWriter, uint8) error,:f30 runtime.algarray@"runtime.gcbits.01Phgo.string.hdr."func(*bufio.ReadWriter, uint8) error"p^go.weak.type.*func(*"".ReadWriter, uint8) error"runtime.zerovalueLtype.func(*"".ReadWriter, uint8) errorLtype.func(*"".ReadWriter, uint8) error&type.*"".ReadWritertype.uint8type.errorgo.typelink.func(*bufio.ReadWriter, uint8) error func(*"".ReadWriter, uint8) errorLtype.func(*"".ReadWriter, uint8) errorvgo.string.hdr."func(*bufio.ReadWriter, int32) (int, error)" +ngo.string."func(*bufio.ReadWriter, int32) (int, error)"ngo.string."func(*bufio.ReadWriter, int32) (int, error)"`Xfunc(*bufio.ReadWriter, int32) (int, error)Ztype.func(*"".ReadWriter, int32) (int, error)|30 runtime.algarray@"runtime.gcbits.01Pvgo.string.hdr."func(*bufio.ReadWriter, int32) (int, error)"plgo.weak.type.*func(*"".ReadWriter, int32) (int, error)"runtime.zerovalueZtype.func(*"".ReadWriter, int32) (int, error)Ztype.func(*"".ReadWriter, int32) (int, error)&type.*"".ReadWritertype.int32type.inttype.errorgo.typelink.func(*bufio.ReadWriter, int32) (int, error) func(*"".ReadWriter, int32) (int, error)Ztype.func(*"".ReadWriter, int32) (int, error)xgo.string.hdr."func(*bufio.ReadWriter, string) (int, error)" ,pgo.string."func(*bufio.ReadWriter, string) (int, error)"pgo.string."func(*bufio.ReadWriter, string) (int, error)"`Zfunc(*bufio.ReadWriter, string) (int, error)\type.func(*"".ReadWriter, string) (int, error)?30 runtime.algarray@"runtime.gcbits.01Pxgo.string.hdr."func(*bufio.ReadWriter, string) (int, error)"pngo.weak.type.*func(*"".ReadWriter, string) (int, error)"runtime.zerovalue\type.func(*"".ReadWriter, string) (int, error)\type.func(*"".ReadWriter, string) (int, error)&type.*"".ReadWritertype.stringtype.inttype.errorgo.typelink.func(*bufio.ReadWriter, string) (int, error) func(*"".ReadWriter, string) (int, error)\type.func(*"".ReadWriter, string) (int, error)go.string.hdr."func(*bufio.ReadWriter, io.Writer) (int64, error)" 1zgo.string."func(*bufio.ReadWriter, io.Writer) (int64, error)"zgo.string."func(*bufio.ReadWriter, io.Writer) (int64, error)"pdfunc(*bufio.ReadWriter, io.Writer) (int64, error)ftype.func(*"".ReadWriter, io.Writer) (int64, error)XӬ30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*bufio.ReadWriter, io.Writer) (int64, error)"pxgo.weak.type.*func(*"".ReadWriter, io.Writer) (int64, error)"runtime.zerovalueftype.func(*"".ReadWriter, io.Writer) (int64, error)ftype.func(*"".ReadWriter, io.Writer) (int64, error)&type.*"".ReadWritertype.io.Writertype.int64type.errorgo.typelink.func(*bufio.ReadWriter, io.Writer) (int64, error) func(*"".ReadWriter, io.Writer) (int64, error)ftype.func(*"".ReadWriter, io.Writer) (int64, error)Ngo.string.hdr."func(*bufio.ReadWriter)" Fgo.string."func(*bufio.ReadWriter)"Fgo.string."func(*bufio.ReadWriter)"00func(*bufio.ReadWriter)2type.func(*"".ReadWriter)/30 runtime.algarray@"runtime.gcbits.01PNgo.string.hdr."func(*bufio.ReadWriter)"pDgo.weak.type.*func(*"".ReadWriter)"runtime.zerovalue2type.func(*"".ReadWriter)2type.func(*"".ReadWriter)&type.*"".ReadWriterpgo.typelink.func(*bufio.ReadWriter) func(*"".ReadWriter)2type.func(*"".ReadWriter)vgo.string.hdr."func(*bufio.ReadWriter, []uint8, io.Reader)" +ngo.string."func(*bufio.ReadWriter, []uint8, io.Reader)"ngo.string."func(*bufio.ReadWriter, []uint8, io.Reader)"`Xfunc(*bufio.ReadWriter, []uint8, io.Reader)Ztype.func(*"".ReadWriter, []uint8, io.Reader)嫤30 runtime.algarray@"runtime.gcbits.01Pvgo.string.hdr."func(*bufio.ReadWriter, []uint8, io.Reader)"plgo.weak.type.*func(*"".ReadWriter, []uint8, io.Reader)"runtime.zerovalueZtype.func(*"".ReadWriter, []uint8, io.Reader)Ztype.func(*"".ReadWriter, []uint8, io.Reader)&type.*"".ReadWritertype.[]uint8type.io.Readergo.typelink.func(*bufio.ReadWriter, []uint8, io.Reader) func(*"".ReadWriter, []uint8, io.Reader)Ztype.func(*"".ReadWriter, []uint8, io.Reader)&type.*"".ReadWriter#60 runtime.algarray@"runtime.gcbits.01PBgo.string.hdr."*bufio.ReadWriter"p8go.weak.type.**"".ReadWriter"runtime.zerovalue$type."".ReadWriter`&type.*"".ReadWriter&type.*"".ReadWriter2go.string.hdr."Available"type.func() int:type.func(*"".ReadWriter) int4"".(*ReadWriter).Available4"".(*ReadWriter).Available.go.string.hdr."Discard"6type.func(int) (int, error)Vtype.func(*"".ReadWriter, int) (int, error)0"".(*ReadWriter).Discard0"".(*ReadWriter).Discard*go.string.hdr."Flush""type.func() error>type.func(*"".ReadWriter) error,"".(*ReadWriter).Flush,"".(*ReadWriter).Flush(go.string.hdr."Peek">type.func(int) ([]uint8, error)^type.func(*"".ReadWriter, int) ([]uint8, error)*"".(*ReadWriter).Peek*"".(*ReadWriter).Peek(go.string.hdr."Read">type.func([]uint8) (int, error)^type.func(*"".ReadWriter, []uint8) (int, error)*"".(*ReadWriter).Read*"".(*ReadWriter).Read0go.string.hdr."ReadByte"4type.func() (uint8, error)Ptype.func(*"".ReadWriter) (uint8, error)2"".(*ReadWriter).ReadByte2"".(*ReadWriter).ReadByte2go.string.hdr."ReadBytes"Btype.func(uint8) ([]uint8, error)btype.func(*"".ReadWriter, uint8) ([]uint8, error)4"".(*ReadWriter).ReadBytes4"".(*ReadWriter).ReadBytes0go.string.hdr."ReadFrom"Ftype.func(io.Reader) (int64, error)ftype.func(*"".ReadWriter, io.Reader) (int64, error)2"".(*ReadWriter).ReadFrom2"".(*ReadWriter).ReadFrom0go.string.hdr."ReadLine"Dtype.func() ([]uint8, bool, error)`type.func(*"".ReadWriter) ([]uint8, bool, error)2"".(*ReadWriter).ReadLine2"".(*ReadWriter).ReadLine0go.string.hdr."ReadRune">type.func() (int32, int, error) Ztype.func(*"".ReadWriter) (int32, int, error) 2"".(*ReadWriter).ReadRune 2"".(*ReadWriter).ReadRune 2go.string.hdr."ReadSlice" Btype.func(uint8) ([]uint8, error) btype.func(*"".ReadWriter, uint8) ([]uint8, error) 4"".(*ReadWriter).ReadSlice 4"".(*ReadWriter).ReadSlice 4go.string.hdr."ReadString" @type.func(uint8) (string, error) `type.func(*"".ReadWriter, uint8) (string, error) 6"".(*ReadWriter).ReadString 6"".(*ReadWriter).ReadString 4go.string.hdr."UnreadByte" "type.func() error >type.func(*"".ReadWriter) error 6"".(*ReadWriter).UnreadByte 6"".(*ReadWriter).UnreadByte 4go.string.hdr."UnreadRune" "type.func() error >type.func(*"".ReadWriter) error 6"".(*ReadWriter).UnreadRune 6"".(*ReadWriter).UnreadRune *go.string.hdr."Write" >type.func([]uint8) (int, error) ^type.func(*"".ReadWriter, []uint8) (int, error) ,"".(*ReadWriter).Write ,"".(*ReadWriter).Write 2go.string.hdr."WriteByte" ,type.func(uint8) error Ltype.func(*"".ReadWriter, uint8) error 4"".(*ReadWriter).WriteByte 4"".(*ReadWriter).WriteByte 2go.string.hdr."WriteRune":type.func(int32) (int, error)Ztype.func(*"".ReadWriter, int32) (int, error)4"".(*ReadWriter).WriteRune4"".(*ReadWriter).WriteRune6go.string.hdr."WriteString"type.func(*"".ReadWriter) error,"".(*ReadWriter).flush,"".(*ReadWriter).flush.go.string.hdr."readErr""go.importpath.""."type.func() error>type.func(*"".ReadWriter) error0"".(*ReadWriter).readErr0"".(*ReadWriter).readErr*go.string.hdr."reset""go.importpath."".:type.func([]uint8, io.Reader)Ztype.func(*"".ReadWriter, []uint8, io.Reader),"".(*ReadWriter).reset,"".(*ReadWriter).reset0go.string.hdr."writeBuf""go.importpath."".Ftype.func(io.Writer) (int64, error)ftype.func(*"".ReadWriter, io.Writer) (int64, error)2"".(*ReadWriter).writeBuf2"".(*ReadWriter).writeBuf"runtime.gcbits.03@go.string.hdr."bufio.ReadWriter" 8go.string."bufio.ReadWriter"8go.string."bufio.ReadWriter"0"bufio.ReadWriterTgclocals·607cdd8af25133e14ee3a0c0aab33c85Tgclocals·d988fd9f0c4cd978acb91b92bfe23525gTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·2a1dd1e1e59d0a384c26951e316cd7e6Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·0ebb2d1da58c1b4224bf5a7b370d7578Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·6d46c0650eba7dbebc0db316e0e0cf3bTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·d98f60bd8519d0c68364b2a1d83af357Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·dacebcad73eed5073009fd67170948d0Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·1347047f6245a35b91e9a4f213167d52Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·0ebb2d1da58c1b4224bf5a7b370d7578Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·d98f60bd8519d0c68364b2a1d83af357Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·0ebb2d1da58c1b4224bf5a7b370d7578Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·6d46c0650eba7dbebc0db316e0e0cf3bTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·6d46c0650eba7dbebc0db316e0e0cf3bTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·6d46c0650eba7dbebc0db316e0e0cf3bTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·b60dc0a6046c556b02baa766a3fd5a27Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·a5947a078ff8f32dc378f6b0b238531dTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·a5947a078ff8f32dc378f6b0b238531dTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·0ebb2d1da58c1b4224bf5a7b370d7578Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·0ebb2d1da58c1b4224bf5a7b370d7578Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·3bb21ca8fe1d99a3e492463bd711418aTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·dacebcad73eed5073009fd67170948d0Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·1347047f6245a35b91e9a4f213167d52Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·d98f60bd8519d0c68364b2a1d83af357Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·33bd09daed8d27c6aa5688ccfd7468adTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·a5947a078ff8f32dc378f6b0b238531dTgo.string.hdr."func(bufio.ReadWriter) int" Lgo.string."func(bufio.ReadWriter) int"Lgo.string."func(bufio.ReadWriter) int"@6func(bufio.ReadWriter) int8type.func("".ReadWriter) int͵V30 runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."func(bufio.ReadWriter) int"pJgo.weak.type.*func("".ReadWriter) int"runtime.zerovalue8type.func("".ReadWriter) int8type.func("".ReadWriter) int$type."".ReadWritertype.int|go.typelink.func(bufio.ReadWriter) int func("".ReadWriter) int8type.func("".ReadWriter) intpgo.string.hdr."func(bufio.ReadWriter, int) (int, error)" (hgo.string."func(bufio.ReadWriter, int) (int, error)"hgo.string."func(bufio.ReadWriter, int) (int, error)"`Rfunc(bufio.ReadWriter, int) (int, error)Ttype.func("".ReadWriter, int) (int, error)Bz30 runtime.algarray@"runtime.gcbits.01Ppgo.string.hdr."func(bufio.ReadWriter, int) (int, error)"pfgo.weak.type.*func("".ReadWriter, int) (int, error)"runtime.zerovalueTtype.func("".ReadWriter, int) (int, error)Ttype.func("".ReadWriter, int) (int, error)$type."".ReadWritertype.inttype.inttype.errorgo.typelink.func(bufio.ReadWriter, int) (int, error) func("".ReadWriter, int) (int, error)Ttype.func("".ReadWriter, int) (int, error)Xgo.string.hdr."func(bufio.ReadWriter) error" Pgo.string."func(bufio.ReadWriter) error"Pgo.string."func(bufio.ReadWriter) error"@:func(bufio.ReadWriter) errortype.func(int) ([]uint8, error)\type.func("".ReadWriter, int) ([]uint8, error)*"".(*ReadWriter).Peek$"".ReadWriter.Peek(go.string.hdr."Read">type.func([]uint8) (int, error)\type.func("".ReadWriter, []uint8) (int, error)*"".(*ReadWriter).Read$"".ReadWriter.Read0go.string.hdr."ReadByte"4type.func() (uint8, error)Ntype.func("".ReadWriter) (uint8, error)2"".(*ReadWriter).ReadByte,"".ReadWriter.ReadByte2go.string.hdr."ReadBytes"Btype.func(uint8) ([]uint8, error)`type.func("".ReadWriter, uint8) ([]uint8, error)4"".(*ReadWriter).ReadBytes."".ReadWriter.ReadBytes0go.string.hdr."ReadFrom"Ftype.func(io.Reader) (int64, error) dtype.func("".ReadWriter, io.Reader) (int64, error) 2"".(*ReadWriter).ReadFrom ,"".ReadWriter.ReadFrom 0go.string.hdr."ReadLine" Dtype.func() ([]uint8, bool, error) ^type.func("".ReadWriter) ([]uint8, bool, error) 2"".(*ReadWriter).ReadLine ,"".ReadWriter.ReadLine 0go.string.hdr."ReadRune" >type.func() (int32, int, error) Xtype.func("".ReadWriter) (int32, int, error) 2"".(*ReadWriter).ReadRune ,"".ReadWriter.ReadRune 2go.string.hdr."ReadSlice" Btype.func(uint8) ([]uint8, error) `type.func("".ReadWriter, uint8) ([]uint8, error) 4"".(*ReadWriter).ReadSlice ."".ReadWriter.ReadSlice 4go.string.hdr."ReadString" @type.func(uint8) (string, error) ^type.func("".ReadWriter, uint8) (string, error) 6"".(*ReadWriter).ReadString 0"".ReadWriter.ReadString 4go.string.hdr."UnreadByte" "type.func() error type.func([]uint8) (int, error)\type.func("".ReadWriter, []uint8) (int, error),"".(*ReadWriter).Write&"".ReadWriter.Write2go.string.hdr."WriteByte",type.func(uint8) errorJtype.func("".ReadWriter, uint8) error4"".(*ReadWriter).WriteByte."".ReadWriter.WriteByte2go.string.hdr."WriteRune":type.func(int32) (int, error)Xtype.func("".ReadWriter, int32) (int, error)4"".(*ReadWriter).WriteRune."".ReadWriter.WriteRune6go.string.hdr."WriteString"go.string.hdr."bufio.SplitFunc" 6go.string."bufio.SplitFunc"6go.string."bufio.SplitFunc" bufio.SplitFunc2go.string.hdr."SplitFunc" *go.string."SplitFunc"*go.string."SplitFunc" SplitFunc"type."".SplitFuncb3 0 runtime.algarray@"runtime.gcbits.01P>go.string.hdr."bufio.SplitFunc"p$type.*"".SplitFunc"runtime.zerovalue"type."".SplitFunc"type."".SplitFunctype.[]uint8type.booltype.inttype.[]uint8type.error`"type."".SplitFunc2go.string.hdr."SplitFunc""go.importpath.""."type."".SplitFuncfunc(*bufio.Scanner, int) bool@type.func(*"".Scanner, int) bool730 runtime.algarray@"runtime.gcbits.01P\go.string.hdr."func(*bufio.Scanner, int) bool"pRgo.weak.type.*func(*"".Scanner, int) bool"runtime.zerovalue@type.func(*"".Scanner, int) bool@type.func(*"".Scanner, int) bool type.*"".Scannertype.inttype.boolgo.typelink.func(*bufio.Scanner, int) bool func(*"".Scanner, int) bool@type.func(*"".Scanner, int) boolVgo.string.hdr."func(*bufio.Scanner, error)" Ngo.string."func(*bufio.Scanner, error)"Ngo.string."func(*bufio.Scanner, error)"@8func(*bufio.Scanner, error):type.func(*"".Scanner, error)S-30 runtime.algarray@"runtime.gcbits.01PVgo.string.hdr."func(*bufio.Scanner, error)"pLgo.weak.type.*func(*"".Scanner, error)"runtime.zerovalue:type.func(*"".Scanner, error):type.func(*"".Scanner, error) type.*"".Scannertype.errorgo.typelink.func(*bufio.Scanner, error) func(*"".Scanner, error):type.func(*"".Scanner, error)*go.string.hdr."Bytes" "go.string."Bytes""go.string."Bytes" Bytes"".(*ReadWriter).WriteString·f8"".(*ReadWriter).WriteString8"".(*ReadWriter).ReadFrom·f2"".(*ReadWriter).ReadFrom,"".ReadWriter.reset·f&"".ReadWriter.reset*"".ReadWriter.fill·f$"".ReadWriter.fill0"".ReadWriter.readErr·f*"".ReadWriter.readErr*"".ReadWriter.Peek·f$"".ReadWriter.Peek0"".ReadWriter.Discard·f*"".ReadWriter.Discard*"".ReadWriter.Read·f$"".ReadWriter.Read2"".ReadWriter.ReadByte·f,"".ReadWriter.ReadByte6"".ReadWriter.UnreadByte·f0"".ReadWriter.UnreadByte2"".ReadWriter.ReadRune·f,"".ReadWriter.ReadRune6"".ReadWriter.UnreadRune·f0"".ReadWriter.UnreadRune4"".ReadWriter.ReadSlice·f."".ReadWriter.ReadSlice2"".ReadWriter.ReadLine·f,"".ReadWriter.ReadLine4"".ReadWriter.ReadBytes·f."".ReadWriter.ReadBytes6"".ReadWriter.ReadString·f0"".ReadWriter.ReadString0"".ReadWriter.WriteTo·f*"".ReadWriter.WriteTo2"".ReadWriter.writeBuf·f,"".ReadWriter.writeBuf,"".ReadWriter.Flush·f&"".ReadWriter.Flush,"".ReadWriter.flush·f&"".ReadWriter.flush4"".ReadWriter.Available·f."".ReadWriter.Available,"".ReadWriter.Write·f&"".ReadWriter.Write4"".ReadWriter.WriteByte·f."".ReadWriter.WriteByte4"".ReadWriter.WriteRune·f."".ReadWriter.WriteRune8"".ReadWriter.WriteString·f2"".ReadWriter.WriteString2"".ReadWriter.ReadFrom·f,"".ReadWriter.ReadFrom"runtime.zerovaluego13ld