1 !<arch> 2 __.PKGDEF 0 0 0 644 6862 ` 3 go object linux amd64 go1.5.1 X:none 4 build id "4a3684a5f958c707342a46193f0e970310a3bf2d" 5 6 $$ 7 package io 8 import runtime "runtime" 9 import errors "errors" 10 import sync "sync" 11 var @"".ErrShortWrite error 12 var @"".ErrShortBuffer error 13 var @"".EOF error 14 var @"".ErrUnexpectedEOF error 15 var @"".ErrNoProgress error 16 type @"".Reader interface { Read(@"".p []byte) (@"".n int, @"".err error) } 17 type @"".Writer interface { Write(@"".p []byte) (@"".n int, @"".err error) } 18 type @"".Closer interface { Close() (? error) } 19 type @"".Seeker interface { Seek(@"".offset int64, @"".whence int) (? int64, ? error) } 20 type @"".ReadWriter interface { Read(@"".p []byte) (@"".n int, @"".err error); Write(@"".p []byte) (@"".n int, @"".err error) } 21 type @"".ReadCloser interface { Close() (? error); Read(@"".p []byte) (@"".n int, @"".err error) } 22 type @"".WriteCloser interface { Close() (? error); Write(@"".p []byte) (@"".n int, @"".err error) } 23 type @"".ReadWriteCloser interface { Close() (? error); Read(@"".p []byte) (@"".n int, @"".err error); Write(@"".p []byte) (@"".n int, @"".err error) } 24 type @"".ReadSeeker interface { Read(@"".p []byte) (@"".n int, @"".err error); Seek(@"".offset int64, @"".whence int) (? int64, ? error) } 25 type @"".WriteSeeker interface { Seek(@"".offset int64, @"".whence int) (? int64, ? error); Write(@"".p []byte) (@"".n int, @"".err error) } 26 type @"".ReadWriteSeeker interface { Read(@"".p []byte) (@"".n int, @"".err error); Seek(@"".offset int64, @"".whence int) (? int64, ? error); Write(@"".p []byte) (@"".n int, @"".err error) } 27 type @"".ReaderFrom interface { ReadFrom(@"".r @"".Reader) (@"".n int64, @"".err error) } 28 type @"".WriterTo interface { WriteTo(@"".w @"".Writer) (@"".n int64, @"".err error) } 29 type @"".ReaderAt interface { ReadAt(@"".p []byte, @"".off int64) (@"".n int, @"".err error) } 30 type @"".WriterAt interface { WriteAt(@"".p []byte, @"".off int64) (@"".n int, @"".err error) } 31 type @"".ByteReader interface { ReadByte() (@"".c byte, @"".err error) } 32 type @"".ByteScanner interface { ReadByte() (@"".c byte, @"".err error); UnreadByte() (? error) } 33 type @"".ByteWriter interface { WriteByte(@"".c byte) (? error) } 34 type @"".RuneReader interface { ReadRune() (@"".r rune, @"".size int, @"".err error) } 35 type @"".RuneScanner interface { ReadRune() (@"".r rune, @"".size int, @"".err error); UnreadRune() (? error) } 36 func @"".WriteString (@"".w3 @"".Writer, @"".s4 string) (@"".n1 int, @"".err2 error) 37 func @"".ReadAtLeast (@"".r3 @"".Reader, @"".buf4 []byte, @"".min5 int) (@"".n1 int, @"".err2 error) 38 func @"".ReadFull (@"".r3 @"".Reader, @"".buf4 []byte) (@"".n1 int, @"".err2 error) 39 func @"".CopyN (@"".dst3 @"".Writer, @"".src4 @"".Reader, @"".n5 int64) (@"".written1 int64, @"".err2 error) 40 func @"".Copy (@"".dst3 @"".Writer, @"".src4 @"".Reader) (@"".written1 int64, @"".err2 error) 41 func @"".CopyBuffer (@"".dst3 @"".Writer, @"".src4 @"".Reader, @"".buf5 []byte) (@"".written1 int64, @"".err2 error) 42 func @"".LimitReader (@"".r2 @"".Reader, @"".n3 int64) (? @"".Reader) { return (&@"".LimitedReader{ R:@"".r2, N:@"".n3 }) } 43 type @"".LimitedReader struct { R @"".Reader; N int64 } 44 func (@"".l3 *@"".LimitedReader "esc:0x9") Read (@"".p4 []byte) (@"".n1 int, @"".err2 error) 45 type @"".SectionReader struct { @"".r @"".ReaderAt; @"".base int64; @"".off int64; @"".limit int64 } 46 func (@"".s3 *@"".SectionReader "esc:0x9") Read (@"".p4 []byte) (@"".n1 int, @"".err2 error) 47 func (@"".s3 *@"".SectionReader "esc:0x9") ReadAt (@"".p4 []byte, @"".off5 int64) (@"".n1 int, @"".err2 error) 48 func (@"".s3 *@"".SectionReader "esc:0x1") Seek (@"".offset4 int64, @"".whence5 int) (? int64, ? error) 49 func (@"".s2 *@"".SectionReader "esc:0x1") Size () (? int64) { return @"".s2.@"".limit - @"".s2.@"".base } 50 func @"".NewSectionReader (@"".r2 @"".ReaderAt, @"".off3 int64, @"".n4 int64) (? *@"".SectionReader) { return (&@"".SectionReader{ @"".r:@"".r2, @"".base:@"".off3, @"".off:@"".off3, @"".limit:@"".off3 + @"".n4 }) } 51 func @"".TeeReader (@"".r2 @"".Reader, @"".w3 @"".Writer) (? @"".Reader) { return (&@"".teeReader{ @"".r:@"".r2, @"".w:@"".w3 }) } 52 func @"".MultiReader (@"".readers2 ...@"".Reader "esc:0x9") (? @"".Reader) 53 func @"".MultiWriter (@"".writers2 ...@"".Writer "esc:0x9") (? @"".Writer) 54 var @"".ErrClosedPipe error 55 type @"sync".Mutex struct { @"sync".state int32; @"sync".sema uint32 } 56 func (@"sync".m1 *@"sync".Mutex) Lock () 57 func (@"sync".m1 *@"sync".Mutex) Unlock () 58 type @"sync".Locker interface { Lock(); Unlock() } 59 type @"sync".syncSema struct { @"sync".lock uintptr; @"sync".head @"unsafe".Pointer; @"sync".tail @"unsafe".Pointer } 60 type @"sync".copyChecker uintptr 61 func (@"sync".c1 *@"sync".copyChecker) @"sync".check () 62 type @"sync".Cond struct { L @"sync".Locker; @"sync".sema @"sync".syncSema; @"sync".waiters uint32; @"sync".checker @"sync".copyChecker } 63 func (@"sync".c1 *@"sync".Cond) Broadcast () 64 func (@"sync".c1 *@"sync".Cond) Signal () 65 func (@"sync".c1 *@"sync".Cond) Wait () 66 func (@"sync".c1 *@"sync".Cond) @"sync".signalImpl (@"sync".all2 bool) 67 type @"".pipe struct { @"".rl @"sync".Mutex; @"".wl @"sync".Mutex; @"".l @"sync".Mutex; @"".data []byte; @"".rwait @"sync".Cond; @"".wwait @"sync".Cond; @"".rerr error; @"".werr error } 68 func (@"".p1 *@"".pipe) @"".rclose (@"".err2 error) 69 func (@"".p3 *@"".pipe) @"".read (@"".b4 []byte "esc:0x1") (@"".n1 int, @"".err2 error) 70 func (@"".p1 *@"".pipe) @"".wclose (@"".err2 error) 71 func (@"".p3 *@"".pipe) @"".write (@"".b4 []byte) (@"".n1 int, @"".err2 error) 72 type @"".PipeReader struct { @"".p *@"".pipe } 73 func (@"".r2 *@"".PipeReader "esc:0x9") Close () (? error) 74 func (@"".r2 *@"".PipeReader "esc:0x9") CloseWithError (@"".err3 error) (? error) 75 func (@"".r3 *@"".PipeReader "esc:0x9") Read (@"".data4 []byte "esc:0x1") (@"".n1 int, @"".err2 error) 76 type @"".PipeWriter struct { @"".p *@"".pipe } 77 func (@"".w2 *@"".PipeWriter "esc:0x9") Close () (? error) 78 func (@"".w2 *@"".PipeWriter "esc:0x9") CloseWithError (@"".err3 error) (? error) 79 func (@"".w3 *@"".PipeWriter "esc:0x9") Write (@"".data4 []byte) (@"".n1 int, @"".err2 error) 80 func @"".Pipe () (? *@"".PipeReader, ? *@"".PipeWriter) { var @"".p3 *@"".pipe; @"".p3 = new(@"".pipe); @"".p3.@"".rwait.L = &@"".p3.@"".l; @"".p3.@"".wwait.L = &@"".p3.@"".l; var @"".r4 *@"".PipeReader; @"".r4 = (&@"".PipeReader{ @"".p:@"".p3 }); var @"".w5 *@"".PipeWriter; @"".w5 = (&@"".PipeWriter{ @"".p:@"".p3 }); return @"".r4, @"".w5 } 81 func @"".init () 82 type @"".teeReader struct { @"".r @"".Reader; @"".w @"".Writer } 83 func (@"".t3 *@"".teeReader "esc:0x9") Read (@"".p4 []byte) (@"".n1 int, @"".err2 error) 84 85 $$ 86 _go_.o 0 0 0 644 166171 ` 87 go object linux amd64 go1.5.1 X:none 88 89 ! 90 go13lderrors.async.a"".WriteStringdH%H;aoHxH\$xH$11H$H$1H\$hH\$pHH$H$H\$H$H\$H\$hH\$H$H$\$ Ht$hHt$8Hl$pHl$@tOHT$HL$H,$H^ HD$HT$ HL$(H$HT$XH$HL$`H$HxH$HT$HL$H\$H|$HHHKHOHKHOH$H$H$H[ HT$ HL$(HD$0H$HL$HH$HD$PH$Hxt 94 B 95 *runtime.racefuncenter(type."".stringWriter 96 $runtime.assertI2I2 97 (runtime.racefuncexit 98 2runtime.stringtoslicebyte 99 (runtime.racefuncexit 100 0runtime.morestack_noctxtp"".autotmp_0008type.error"".autotmp_0007type.int"".autotmp_0006type.error"".autotmp_0005type.int"".autotmp_0004_type.error"".autotmp_0002?type.error"".autotmp_0000(type."".stringWriter 101 "".sw(type."".stringWriter"".errPtype.error"".n@type.int"".s type.string"".wtype."".Writer(*nE TE3pTgclocalsbe227ddf4f0f283981fc4ade0ed36ff8Tgclocals7f75a99eed77b4d0bd8e91532aef4647Fprebuilts/go/linux-x86/src/io/io.go"".ReadAtLeast dH%H;a%H`H\$`H$H$11H$H$H$1H9}NHH$H HH$HL$8H$HD$@H$H`H9HH$H$L$H9_LL$xH)I)ItMLL$HLL$Hl$PHl$LD$XLD$H\$pH$H\$hH[ H$HD$ HT$(HL$0H$H$H$HHH9PH$H9|1H$H$H`H~HH$H$H-H9uHH$H$H,$H$Hl$H-Hl$H-Hl$\$ xHH$HH$HH$E. 107 B 108 *runtime.racefuncenter""".ErrShortBuffer 109 runtime.raceread""".ErrShortBuffer""".ErrShortBuffer 110 (runtime.racefuncexit 111 (runtime.racefuncexit"".EOF 113 runtime.raceread"".EOF"".EOF 116 runtime.raceread"".EOF"".EOF 119 runtime.ifaceeq&"".ErrUnexpectedEOF 120 runtime.raceread&"".ErrUnexpectedEOF&"".ErrUnexpectedEOF 121 $runtime.panicslice 122 0runtime.morestack_noctxt"".autotmp_0014Otype.error"".autotmp_0013type.int"".autotmp_0012type.error"".autotmp_0011type.int"".autotmp_0010/type.[]uint8"".errptype.error"".n`type.int"".minPtype.int"".buf type.[]uint8"".rtype."".Reader*ZD 126 128 ~. t_GTgclocalse666601616cf0fe680da12e820a0d8ceTgclocals98a935522f11e180b06d5a082b7d09c1Fprebuilts/go/linux-x86/src/io/io.go"".ReadFulldH%H;aHXH\$XH$HL$x11H$H$H\$`H$H\$hH\$H\$pH\$HL$H$H\$ HL$(HD$0HT$8HL$@H$HT$HH$HL$PH$HXD 131 132 B 133 *runtime.racefuncenter 134 "".ReadAtLeast 135 (runtime.racefuncexit 136 0runtime.morestack_noctxt 137 "".autotmp_0016type.error"".err`type.error"".nPtype.int"".buf type.[]uint8"".rtype."".Readert Tgclocalsd2fd9951e910becfd07ba7f8ff7b525aTgclocalsc55cf99de9cdd8c8202a466952fa1a45Fprebuilts/go/linux-x86/src/io/io.go"".CopyNdH%H;aHxH\$xH$11H$H$H$H\$XH$H\$`H$H\$81H\$HH\$PHH$HD$HD$@H$H\$@Hl$XH+Hl$`=JHkH\$@H$H$HD$@Hl$8HhHD$@H1H9HL$@HD$hHL$pH$H$H$H\$HD$HHD$HL$PHL$H$HT$ HL$(HD$0H$H$H9u$H$1H$H$HxH$H9}4Hu.HH$HH$HH$HxHH$HH\$HH\$HD$LCL$Hl$* 141 B 142 *runtime.racefuncenter*type."".LimitedReader 143 "runtime.newobject 144 "runtime.racewrite6runtime.writeBarrierEnabled 145 "runtime.racewriteFgo.itab.*"".LimitedReader."".Reader 146 "".Copy 147 (runtime.racefuncexit"".EOF 149 runtime.raceread"".EOF"".EOF 152 (runtime.racefuncexit,type.*"".LimitedReadertype."".ReaderFgo.itab.*"".LimitedReader."".Reader 153 runtime.typ2Itab 154 .runtime.writebarrierptr 155 0runtime.morestack_noctxt"".autotmp_0024type."".Reader"".autotmp_0023o,type.*"".LimitedReader"".autotmp_0020,type.*"".LimitedReader"".~r2_type."".Reader"".ntype.int64"".r?type."".Reader"".err`type.error"".writtenPtype.int64"".n@type.int64"".src type."".Reader"".dsttype."".Writer&JZ:. 162 I* W6fK(#-7Tgclocalsb52e85fe5c3dc5f066c32eb89d6366f9Tgclocals279027db98a4c11e939f611867af596fFprebuilts/go/linux-x86/src/io/io.go"".CopydH%H;aH`H\$`H$11H$H$H\$hH$H\$pH\$H\$xH\$H$H\$1H\$ H\$(H\$0HD$8HT$@HL$HH$HT$PH$HL$XH$H`B 164 165 B 166 *runtime.racefuncenter 167 "".copyBuffer 168 (runtime.racefuncexit 169 0runtime.morestack_noctxtp 170 "".autotmp_0028type.error"".errPtype.error"".written@type.int64"".src type."".Reader"".dsttype."".Writer{ Tgclocals20f975231109e49d1f6a7c3f993396a2Tgclocalsc55cf99de9cdd8c8202a466952fa1a45Fprebuilts/go/linux-x86/src/io/io.go"".CopyBufferdH%H;aHpH\$pH$H$H$11H$H$HtZHuTHH\$`HD$hHH$H\$`H\$HD$H\$HH$HKHL$H\$xH$H$H\$H$H\$H$H\$HT$ HL$(H$H\$0HD$8HT$@HL$HH$HT$PH$HL$XH$Hp 180 B 181 *runtime.racefuncenterRgo.string."empty buffer in io.CopyBuffer"type.string 182 runtime.convT2E 183 runtime.gopanic 184 "".copyBuffer 185 (runtime.racefuncexit 186 0runtime.morestack_noctxt"".autotmp_0034?type.error"".autotmp_0032type.string"".errtype.error"".writtenptype.int64"".buf@type.[]uint8"".src type."".Reader"".dsttype."".Writer"T hh6Tgclocals25ba8ffa628ab7e57281948c1f5e5758Tgclocals4839c181b903023c3ae99be60aaf4271Fprebuilts/go/linux-x86/src/io/io.go"".copyBufferdH%HD$H;AHH$H$11H$ H$(H$1H$H$HH$H$H\$H$H\$H$H\$H$H$\$ H$Ht$@H$Hl$HtXHT$HL$H,$H^ HD$HT$ HL$(H$H$H$ H$H$(H1H$H$HH$HT$HL$H$H\$\$ H$HT$PH$HL$XthH$H\$H$H\$H$HZ HT$HL$ HD$(H$H$H$ H$H$(HH$HuIHH$HD$HD$HT$HL$ HD$(H$H$H$H$H\$H$H\$H$H\$H$H$H$H[ HD$ HT$(HL$0HT$pHL$xHHD$8H$H9sL$L$LD$H$HD$H$Hl$H$H$H$H[ HD$ HT$(Ht$0Ht$hH~H$HHH$HT$`HtH$ H$(HH\$8H9t0HH$HH$ HH$(HH$HD$pH-H9uSHH$Hl$pH,$Hl$xHl$H-Hl$H-Hl$HD$p\$ EH-H$ H\$xH$(!: 195 X 196 *runtime.racefuncenter type."".WriterTo 197 $runtime.assertI2I2 198 (runtime.racefuncexit$type."".ReaderFrom 199 $runtime.assertI2I2 200 (runtime.racefuncexittype.[]uint8 201 "runtime.makeslice 202 205 (runtime.racefuncexit "".ErrShortWrite 208 runtime.raceread "".ErrShortWrite "".ErrShortWrite"".EOF 211 runtime.raceread"".EOF"".EOF 214 runtime.raceread"".EOF"".EOF 217 runtime.ifaceeq 218 $runtime.panicslice 219 0runtime.morestack_noctxt0"".autotmp_0053type.int64"".autotmp_0052type.error"".autotmp_0051type.int"".autotmp_0050type.[]uint8"".autotmp_0049type.error"".autotmp_0047/type.[]uint8"".autotmp_0046type.error"".autotmp_0045type.int64"".autotmp_0044type.error"".autotmp_0043type.int64"".autotmp_0042$type."".ReaderFrom"".autotmp_0041type.error"".autotmp_0039otype.error"".autotmp_0037O type."".WriterTo 220 "".ewtype.error 221 "".ertype.error 222 "".nrtype.int 223 "".rt$type."".ReaderFrom 224 "".wt type."".WriterTo"".errtype.error"".writtenptype.int64"".buf@type.[]uint8"".src type."".Reader"".dsttype."".Writer8|JI }KBA][:9IZ 229 s 232 .t 233 ):+iK9AK9M"0Tgclocalsb8f6103f3a94bd8f39d14f4afe3addabTgclocals28ecaa5b2129cd40f8add06e52c97613Fprebuilts/go/linux-x86/src/io/io.go"".LimitReaderdH%H;aH(H\$(H$1H\$HH\$PHH$HD$HD$ H$H\$ Hl$0H+Hl$8=HkH\$ H$H$HD$ Hl$@HhHD$ H1H9tH\$ H\$PHD$HH(HH$HH\$HH\$HD$LCL$Hl$m 236 B 237 *runtime.racefuncenterh*type."".LimitedReaderz 238 "runtime.newobject 239 "runtime.racewrite6runtime.writeBarrierEnabled 240 "runtime.racewriteFgo.itab.*"".LimitedReader."".Reader 241 (runtime.racefuncexit,type.*"".LimitedReadertype."".ReaderFgo.itab.*"".LimitedReader."".Reader 242 runtime.typ2Itab 243 .runtime.writebarrierptr 244 0runtime.morestack_noctxtPP 245 "".autotmp_0055,type.*"".LimitedReader"".autotmp_0054,type.*"".LimitedReader"".~r20type."".Reader"".n type.int64"".rtype."".ReaderPOP\ 247 /k-9Tgclocals4493fa78a39865f4172589e05fc599e2Tgclocalsf891aedf0f80c97cb1c7cc75a7fd6349Fprebuilts/go/linux-x86/src/io/io.go0"".(*LimitedReader).ReaddH%H;aHhH\$hH$11H$H$H\$pH$H$HD$pHXHNHH$H HH$HL$XH$HD$`H$HhH$H\$@H$H$HL$pH\$@HiH9~0H$H$HL$pHYH$H9H$H$H\$pHHHkH\$xH\$H$H\$H$H\$Hl$PH,$HL$HHY HD$ HT$(HL$0H$H$H$H\$pH$H$HD$pHhHl$8H$H$H\$pH$LD$8I)LCHhA" 254 B 255 *runtime.racefuncenter 256 runtime.raceread"".EOF 258 runtime.raceread"".EOF"".EOF 261 (runtime.racefuncexit 262 runtime.raceread 263 runtime.raceread 264 runtime.raceread 265 runtime.raceread 266 "runtime.racewrite 267 (runtime.racefuncexit 268 $runtime.panicslice 269 0runtime.morestack_noctxtp"".autotmp_0063type.error"".autotmp_0062type.int64"".autotmp_0061type.error"".autotmp_0060type.int"".autotmp_0059_type.int64"".autotmp_0058Otype.int"".errPtype.error"".n@type.int"".ptype.[]uint8"".l,type.*"".LimitedReader(@"D .0~H 272 KTgclocals8cf14f50ac1bf7ae2848fda35f0590ecTgclocals64ca935d1a2110a30e2d604686188539Fprebuilts/go/linux-x86/src/io/io.go&"".NewSectionReaderdH%H;aHH\$H$HH$HD$HD$H$H\$Hl$ H+Hl$(=utHkH\$H$H$HD$Hl$0HhH$H$HD$Hl$0HhH$H$ HD$Hl$0LD$8LHh HD$@HLCL$Hl$y 275 B 276 *runtime.racefuncenterP*type."".SectionReaderb 277 "runtime.newobject 278 "runtime.racewrite6runtime.writeBarrierEnabled 279 "runtime.racewrite 280 "runtime.racewrite 281 "runtime.racewrite 282 (runtime.racefuncexit 283 .runtime.writebarrierptr 284 0runtime.morestack_noctxtP0 285 "".autotmp_0065,type.*"".SectionReader"".~r3@,type.*"".SectionReader"".n0type.int64"".off type.int64"".r type."".ReaderAt0/0) #Tgclocals05dfbb0deaac2761715bba2eb22051dcTgclocalsf891aedf0f80c97cb1c7cc75a7fd6349Fprebuilts/go/linux-x86/src/io/io.go0"".(*SectionReader).ReaddH%H;aHhH\$hH$11H$H$H\$pH$H$H\$pH$H$ HD$pHXHh H9|NHH$H HH$HL$XH$HD$`H$HhH$H$ H\$pH$H$HT$pHB HjH$H)H9H$H9H$H$H\$pH$H$HT$pHH 290 HBH\$xH\$H$H\$H$H\$HjHl$ HD$PH$HL$HHY HD$(HT$0HL$8H$H$H$H\$pH$H$HD$pHhHl$@H$H$H\$pH$LD$@LHkHh8& 292 B 293 *runtime.racefuncenter 294 runtime.raceread 295 runtime.raceread"".EOF 297 runtime.raceread"".EOF"".EOF 300 (runtime.racefuncexit 301 runtime.raceread 302 runtime.raceread 303 runtime.raceread 304 runtime.raceread 305 runtime.raceread 306 "runtime.racewrite 307 (runtime.racefuncexit 308 $runtime.panicslice 309 0runtime.morestack_noctxtp"".autotmp_0070type.error"".autotmp_0069Otype.int64"".autotmp_0068type.error"".autotmp_0067type.int"".errPtype.error"".n@type.int"".ptype.[]uint8"".s,type.*"".SectionReader(*F8D BH 312 K#Tgclocals8cf14f50ac1bf7ae2848fda35f0590ecTgclocals64ca935d1a2110a30e2d604686188539Fprebuilts/go/linux-x86/src/io/io.go0"".(*SectionReader).SeekdH%H;aHH\$H$HT$ HL$1H\$8H\$@HD$(HHT$H$H$HD$HXHl$HH\$ H$H$HD$HXHl$ H9~;HH$HD$0HH\$8HH\$@HH$H$HD$Hl$ HhH$H$Hl$H]Hl$ H)Hl$01H\$8H\$@HHu.HT$H$H$HD$HXHl$HH\$ Hu.HT$H$H$ HD$HX Hl$HH\$ HH$HD$0HH\$8HH\$@H.( 318 B 319 *runtime.racefuncenter 320 runtime.raceread 321 runtime.raceread"".errOffset 322 runtime.raceread"".errOffset"".errOffset 323 (runtime.racefuncexit 324 "runtime.racewrite 325 runtime.raceread 326 (runtime.racefuncexit 327 runtime.raceread 328 runtime.raceread"".errWhence 329 runtime.raceread"".errWhence"".errWhence 330 (runtime.racefuncexit 331 0runtime.morestack_noctxt` "".autotmp_0074type.int64"".autotmp_0073type.int64"".autotmp_0072type.int64"".~r3@type.error"".~r20type.int64"".whence type.int"".offsettype.int64"".s,type.*"".SectionReader& U \ 335 )!1:))1" C"Tgclocals385909f76d6de739e72f24698b953b71Tgclocals69c1753bd5f81501d95132d08af04464Fprebuilts/go/linux-x86/src/io/io.go4"".(*SectionReader).ReadAtdH%H;aHxH\$xH$11H$H$H$HWH$H$H$ H$H$H$H$H$HX HhH)H9HL$@H$H$H$HXHl$@HH$H$H$ H$HB H$H$H)H9H$H9H$H$H$HHHkH$H\$H$H\$H$H\$H$H\$ Hl$PH,$HL$HHY HD$(HT$0HL$8H$H$H$Hu.HH$HH$HH$HxEH$H$HHHkH$H\$H$H\$H$H\$H$H\$ Hl$PH,$HL$HHY HD$(HT$0HL$8H$HT$hH$HL$pH$HxoHH$H HH$HL$XH$HD$`H$Hx. 344 B 345 *runtime.racefuncenter 346 runtime.raceread 347 runtime.raceread 348 runtime.raceread 349 runtime.raceread 350 runtime.raceread"".EOF 352 runtime.raceread"".EOF"".EOF 355 (runtime.racefuncexit 356 $runtime.panicslice 357 runtime.raceread 358 359 (runtime.racefuncexit 360 "".EOF 362 363 runtime.raceread 364 "".EOF 366 "".EOF 369 (runtime.racefuncexit 371 0runtime.morestack_noctxt"".autotmp_0084?type.error"".autotmp_0083type.error"".autotmp_0082type.int"".autotmp_0081type.error"".autotmp_0080type.int"".autotmp_0079type.error"".autotmp_0076otype.int64"".err`type.error"".nPtype.int"".off@type.int64"".ptype.[]uint8"".s,type.*"".SectionReader4TTb/6.D" 9Tgclocals105f3855eb890a8acc612838e7807774Tgclocalsae0a20890c9ac6bfbea3383f34532babFprebuilts/go/linux-x86/src/io/io.go0"".(*SectionReader).SizedH%H;avWHH\$H$H\$H$H$ H\$H$H$HD$HX HhH)H\$H 376 : 377 *runtime.racefuncenter` 378 runtime.raceread 379 runtime.raceread 380 (runtime.racefuncexit 381 0runtime.morestack_noctxt "".~r0type.int64"".s,type.*"".SectionReaderR 383 pp 384 TTgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals33cdeccccebe80329f1fdbee7f5874cbFprebuilts/go/linux-x86/src/io/io.go"".TeeReaderdH%H;a"H(H\$(H$1H\$PH\$XHH$HD$HD$ H$H\$ Hl$0H+Hl$8=HkH\$ H$H$H\$ Hl$@HkHl$H=udHkH\$ H\$ H1H9tH\$ H\$XHD$PH(HH$HH\$HH\$HD$LCL$Hl$LCL$Hl$B" 386 B 387 *runtime.racefuncenterh"type."".teeReaderz 388 "runtime.newobject 389 "runtime.racewrite6runtime.writeBarrierEnabled 390 "runtime.racewrite6runtime.writeBarrierEnabled>go.itab.*"".teeReader."".Reader 391 (runtime.racefuncexit$type.*"".teeReadertype."".Reader>go.itab.*"".teeReader."".Reader 392 runtime.typ2Itab 393 .runtime.writebarrierptr 394 .runtime.writebarrierptr 395 0runtime.morestack_noctxt`P 396 "".autotmp_0088$type.*"".teeReader"".autotmp_0087$type.*"".teeReader"".~r2@type."".Reader"".w type."".Writer"".rtype."".ReaderPOPe1_ /-BTgclocals0321d1b5df75a0a4e103a3d97b5bb9c5Tgclocalsf891aedf0f80c97cb1c7cc75a7fd6349Fprebuilts/go/linux-x86/src/io/io.go("".(*teeReader).ReaddH%H;aHH$H$11H$H$H$H$H$H\HHkH$H\$H$H\$H$H\$Hl$`H,$HL$XHY HT$ HL$(HD$0H$H$H$HH$H9L$HT$pHl$xLD$hH$H$H$H$HHKHkH\$hH\$H\$pH\$H\$xH\$Hl$PH,$HL$HHY HL$ HD$(HT$0HT$@HD$8Ht%H$H$H$HHn1 402 N 403 *runtime.racefuncenter 404 runtime.raceread 405 runtime.raceread 406 (runtime.racefuncexit 407 (runtime.racefuncexit 408 $runtime.panicslice 409 0runtime.morestack_noctxtp"".autotmp_0095type.error"".autotmp_0094type.int"".autotmp_0093/type.[]uint8"".errtype.error"".errPtype.error"".n@type.int"".ptype.[]uint8"".t$type.*"".teeReader& < &OZTgclocals00c43ac85ea523b9c2b9f85fd538f62eTgclocals8dacdca6a9d3d5c313f9478f38bacba5Fprebuilts/go/linux-x86/src/io/io.go,"".(*multiReader).ReaddH%H;aHpH\$pH$HD$x11H$H$H$HL$xHiH{H$H\$xHHCHkHl$hHL$XHHD$`BH$H\$xH#HHCHkHl$hHHL$XHHD$`H HkH$H\$H$H\$H$H\$Hl$@H,$HL$8HY HT$ HL$(HD$0H$H$H$HHH$H$H-H9HH$H$H,$H$Hl$H-Hl$H-Hl$\$ tzH\$xH$H\$xH$HD$xHhL@HrDHILItIHhL@=uL-H$LL$HD$xHH$H$H-H9ubHH$H$H,$H$Hl$H-Hl$H-Hl$\$ t1H$H$HpHH$H HH$HL$HH$HD$PH$HpH 427 B 428 *runtime.racefuncenter 429 runtime.raceread 430 runtime.raceread 431 runtime.raceread"".EOF 433 runtime.raceread"".EOF"".EOF 436 runtime.raceread"".EOF"".EOF 439 runtime.ifaceeq 440 "runtime.racewrite 441 runtime.raceread6runtime.writeBarrierEnabled 442 .runtime.writebarrierptr 443 $runtime.panicslice"".EOF 445 runtime.raceread "".EOF "".EOF 448 runtime.raceread 449 "".EOF 451 "".EOF 453 454 runtime.ifaceeq 455 456 (runtime.racefuncexit 458 $runtime.panicindex 460 $runtime.panicindex"".EOF 464 runtime.raceread"".EOF"".EOF 470 (runtime.racefuncexit 472 0runtime.morestack_noctxtp"".autotmp_0101type.error"".autotmp_0100Otype.error"".errPtype.error"".n@type.int"".ptype.[]uint8 475 "".mr(type.*"".multiReader&b NV t N " v|YTgclocals8cf14f50ac1bf7ae2848fda35f0590ecTgclocals2c837ca001512a37037efd3161e20199Lprebuilts/go/linux-x86/src/io/multi.go"".MultiReaderdH%H;a_H`H\$`H$1H$H$HD$pHH$HD$HD$HT$HL$ HD$(HH$HT$HHT$HL$PHL$HD$XHD$H\$hH\$ H\$pH\$(H\$xH\$0HH$HD$HD$@H$H\$@Hl$PHkHl$XHkHl$H=uiH+H\$@H\$@H1H9tH\$@H$H$H`HH$HH\$HH\$HD$H$Hl$$ 482 B 483 *runtime.racefuncenter~ type.[]"".Reader 484 "runtime.makeslicetype."".Reader 485 ,runtime.typedslicecopy&type."".multiReader 486 "runtime.newobject 487 "runtime.racewrite6runtime.writeBarrierEnabledBgo.itab.*"".multiReader."".Reader 488 (runtime.racefuncexit(type.*"".multiReadertype."".ReaderBgo.itab.*"".multiReader."".Reader 489 runtime.typ2Itab 490 .runtime.writebarrierptr 491 0runtime.morestack_noctxtP 492 "".autotmp_0108?(type.*"".multiReader"".autotmp_0107(type.*"".multiReader"".r/ type.[]"".Reader"".~r10type."".Reader"".readers type.[]"".ReaderM@7.LxD #Z-*Tgclocals6205473c48c5b9d038be1bc15d6ecfbcTgclocals85b708e0eb749713cb73a30a27c2999cLprebuilts/go/linux-x86/src/io/multi.go."".(*multiWriter).WritedH%HD$H;AHH$H$11H$H$H$H$H$HHHCHkH$1HD$xHD$8HT$pHHL$@Hl$8H9HD$HH$H\$HH!HHkHL$`Hl$hH$H\$H$H\$H$H\$Hl$XH,$HL$PHY HT$ HL$(HD$0H$H$H$Ht HH$H9t;HH$HH$HH$HHD$HHL$@HHHL$@Hl$8H9H$H$1H$H$Hz 497 X 498 *runtime.racefuncenter 499 runtime.raceread 500 runtime.raceread 501 (runtime.racefuncexit "".ErrShortWrite 502 runtime.raceread "".ErrShortWrite "".ErrShortWrite 503 (runtime.racefuncexit 504 (runtime.racefuncexit 505 0runtime.morestack_noctxtp"".autotmp_0119Otype."".Writer"".autotmp_0118type.*"".Writer"".autotmp_0117type.int"".autotmp_0116type.int"".autotmp_0115type.int"".autotmp_0114type.int"".autotmp_0111/ type.[]"".Writer"".wotype."".Writer"".errPtype.error"".n@type.int"".ptype.[]uint8"".t(type.*"".multiWriter2GR!DTDZ . $"+%#Tgclocals251e3cc4f2373456f57cb9541b8e1a97Tgclocals80ea1f01cbb3ac057493519ab3f7bef7Lprebuilts/go/linux-x86/src/io/multi.go"".MultiWriterdH%H;a_H`H\$`H$1H$H$HD$pHH$HD$HD$HT$HL$ HD$(HH$HT$HHT$HL$PHL$HD$XHD$H\$hH\$ H\$pH\$(H\$xH\$0HH$HD$HD$@H$H\$@Hl$PHkHl$XHkHl$H=uiH+H\$@H\$@H1H9tH\$@H$H$H`HH$HH\$HH\$HD$H$Hl$$ 511 B 512 *runtime.racefuncenter~ type.[]"".Writer 513 "runtime.makeslicetype."".Writer 514 ,runtime.typedslicecopy&type."".multiWriter 515 "runtime.newobject 516 "runtime.racewrite6runtime.writeBarrierEnabledBgo.itab.*"".multiWriter."".Writer 517 (runtime.racefuncexit(type.*"".multiWritertype."".WriterBgo.itab.*"".multiWriter."".Writer 518 runtime.typ2Itab 519 .runtime.writebarrierptr 520 0runtime.morestack_noctxtP 521 "".autotmp_0123?(type.*"".multiWriter"".autotmp_0122(type.*"".multiWriter"".w/ type.[]"".Writer"".~r10type."".Writer"".writers type.[]"".WriterMt7.LxD #Z-*Tgclocals6205473c48c5b9d038be1bc15d6ecfbcTgclocals85b708e0eb749713cb73a30a27c2999cLprebuilts/go/linux-x86/src/io/multi.go"".(*pipe).readdH%H;aHPH\$PH$HD$x1H$H$1H$H$HD$xH\$XH$H<$H\$XH\$H|$h$HHD$7H\$XH$H<$H$H\$XH\$H|$HD$$HHD$H\$XH$H$HD$XHHtQHH$HH HD$xHT$@H$HL$HH$HPH$H$HD$XHhHsH$H$H\$`H$H\$hH\$H\$pH\$Ht$XH2H^H|$HHHKHOHKHOHD$0H\$8H\$xH\$XH$H$H\$XH$H$HD$XHl$xL@ LH(L9LPI)I)ItM*L@ LH(=urLPH$H$HT$XHj HuOH$H$HD$X1HhHh Hh(H$H<$tH$hHP%HhH,$LT$HD$XvH$H$HD$XHHtaH$H$H\$XHtAHHHD$xHT$@H$Hl$HH$HPH$H<$tH$0U%HP% %HP%%eL 527 B 528 *runtime.racefuncenter 529 $sync.(*Mutex).Lock.sync.(*Mutex).Unlockf 530 "runtime.deferproc 531 $sync.(*Mutex).Lock.sync.(*Mutex).Unlockf 532 "runtime.deferproc 533 runtime.raceread "".ErrClosedPipe 534 runtime.raceread "".ErrClosedPipe "".ErrClosedPipe 535 &runtime.deferreturn 536 (runtime.racefuncexit 537 runtime.raceread 538 runtime.raceread 539 "runtime.slicecopy 540 "runtime.racewrite 541 runtime.raceread 6runtime.writeBarrierEnabled 542 543 runtime.raceread 544 545 "runtime.racewrite 547 &sync.(*Cond).Signal 549 &runtime.deferreturn 551 (runtime.racefuncexit 553 .runtime.writebarrierptr 555 $runtime.panicslice 557 runtime.raceread 559 runtime.raceread 560 &runtime.deferreturn 561 (runtime.racefuncexit 562 "sync.(*Cond).Wait 563 &runtime.deferreturn 564 (runtime.racefuncexit 565 &runtime.deferreturn 566 (runtime.racefuncexit 567 0runtime.morestack_noctxtp"".autotmp_0129type.error"".autotmp_0128type.error"".autotmp_0127type.int"".errPtype.error"".n@type.int"".btype.[]uint8"".ptype.*"".pipeN6'.H2167=(G !qj! #S &%,+, O6#ATgclocals8cf14f50ac1bf7ae2848fda35f0590ecTgclocalsc55cf99de9cdd8c8202a466952fa1a45Jprebuilts/go/linux-x86/src/io/pipe.go "".(*pipe).writedH%H;aH H\$ H$HD$H1H\$PH\$X1H\$PH\$XHD$HH\$0Hu(HHMHD$8HD$@H\$0H\$(H$H<$H$H\$(H\$H|$HD$$HHD$H\$(H$H<$H$H\$(H\$H|$gHD$$HHD$0H\$(H$H$HD$(HHt8HH$HH\$PHH\$XH H$H$H\$(Hl$8Hk Hl$@Hk(Hl$0=HkH\$(H$H<$^H$0H\$(H$H$HD$(HhHu_H\$8H\$H$H$HL$(Hi H\$H)H\$HH$H$H\$(1HkHk Hk(H H$H$HD$(HHt=H$H$HD$(HtHHl$PHHl$XEH$H$H\$(HHt(HH$HH\$PHH\$XH\$(H$H<$tH$h%%LCL$Hl$kH %%aH % 573 %7L 574 B 575 *runtime.racefuncenter"".zero 576 $sync.(*Mutex).Lock.sync.(*Mutex).Unlockf 577 "runtime.deferproc 578 $sync.(*Mutex).Lock.sync.(*Mutex).Unlockf 579 "runtime.deferproc 580 runtime.raceread "".ErrClosedPipe 581 runtime.raceread "".ErrClosedPipe "".ErrClosedPipe 582 &runtime.deferreturn 583 (runtime.racefuncexit 584 "runtime.racewrite6runtime.writeBarrierEnabled 585 &sync.(*Cond).Signal 586 runtime.raceread 587 runtime.raceread 588 "runtime.racewrite 589 &runtime.deferreturn 590 (runtime.racefuncexit 591 runtime.raceread 592 593 runtime.raceread 595 runtime.raceread "".ErrClosedPipe 598 runtime.raceread "".ErrClosedPipe "".ErrClosedPipe 602 "sync.(*Cond).Wait 604 .runtime.writebarrierptr 606 &runtime.deferreturn 608 (runtime.racefuncexit 609 &runtime.deferreturn 610 (runtime.racefuncexit 611 0runtime.morestack_noctxtp@ 612 "".autotmp_0130type.int"".errPtype.error"".n@type.int"".btype.[]uint8"".ptype.*"".pipe0@?@?@?@'?@0BA*(==((&%;".!#4#( ,+21, {="2Tgclocals8cf14f50ac1bf7ae2848fda35f0590ecTgclocals69c1753bd5f81501d95132d08af04464Jprebuilts/go/linux-x86/src/io/pipe.go""".(*pipe).rclosedH%H;aqHH\$H$H\$(Hu(HH$HH\$(HH\$0H\$ H$H<$H$H\$ H\$H|$HD$$HHD$H\$ H$H$H\$ Hl$(HHl$0=u]HH\$ H$H<$t=H$0H\$ H$H<$tH$hH%%LL$Hl$H%%r& 621 B 622 *runtime.racefuncenterf "".ErrClosedPipex 623 runtime.raceread "".ErrClosedPipe "".ErrClosedPipe 624 $sync.(*Mutex).Lock.sync.(*Mutex).Unlockf 625 "runtime.deferproc 626 "runtime.racewrite6runtime.writeBarrierEnabled 627 &sync.(*Cond).Signal 628 &sync.(*Cond).Signal 629 &runtime.deferreturn 630 (runtime.racefuncexit 631 .runtime.writebarrierptr 632 &runtime.deferreturn 633 (runtime.racefuncexit 634 0runtime.morestack_noctxt00"".errtype.error"".ptype.*"".pipe0/08/0$X (=< Tgclocals5c5a9f3dff47a8940bdc317b9324ac2aTgclocals33cdeccccebe80329f1fdbee7f5874cbJprebuilts/go/linux-x86/src/io/pipe.go""".(*pipe).wclosedH%H;aqHH\$H$H\$(Hu(HH$HH\$(HH\$0H\$ H$H<$H$H\$ H\$H|$HD$$HHD$H\$ H$H$H\$ Hl$(HHl$0=u]HH\$ H$H<$t=H$0H\$ H$H<$tH$hH%%LL$Hl$H%%r& 643 B 644 *runtime.racefuncenterf"".EOFx 646 runtime.raceread"".EOF"".EOF 649 $sync.(*Mutex).Lock.sync.(*Mutex).Unlockf 650 "runtime.deferproc 651 "runtime.racewrite6runtime.writeBarrierEnabled 652 &sync.(*Cond).Signal 653 &sync.(*Cond).Signal 654 &runtime.deferreturn 655 (runtime.racefuncexit 656 .runtime.writebarrierptr 657 &runtime.deferreturn 658 (runtime.racefuncexit 659 0runtime.morestack_noctxt00"".errtype.error"".ptype.*"".pipe0/08/0$X (=< Tgclocals5c5a9f3dff47a8940bdc317b9324ac2aTgclocals33cdeccccebe80329f1fdbee7f5874cbJprebuilts/go/linux-x86/src/io/pipe.go*"".(*PipeReader).ReaddH%H;aHHH\$HH$11H\$xH$H\$PH$H\$PH+H,$H\$XH\$H\$`H\$H\$hH\$HD$ HT$(HL$0HD$pHT$8HT$xHL$@H$HHN 668 B 669 *runtime.racefuncenter 670 runtime.raceread 671 "".(*pipe).read 672 (runtime.racefuncexit 673 0runtime.morestack_noctxtp 674 "".autotmp_0133type.error"".errPtype.error"".n@type.int"".datatype.[]uint8"".r&type.*"".PipeReaderr ~"Tgclocals8cf14f50ac1bf7ae2848fda35f0590ecTgclocalsc55cf99de9cdd8c8202a466952fa1a45Jprebuilts/go/linux-x86/src/io/pipe.go,"".(*PipeReader).ClosedH%H;av`H8H\$8H$1H\$HH\$PH\$@H$1H\$H\$HL$HD$ HL$(HL$HHD$0HD$PH8 677 678 : 679 *runtime.racefuncenter 680 >"".(*PipeReader).CloseWithError 681 (runtime.racefuncexit 682 0runtime.morestack_noctxt0p"".autotmp_0136type.error"".~r0type.error"".r&type.*"".PipeReaderp[op-8ITgclocalscad14e25fd48dddd762418d02c031d67Tgclocalsc55cf99de9cdd8c8202a466952fa1a45Jprebuilts/go/linux-x86/src/io/pipe.go>"".(*PipeReader).CloseWithErrordH%H;avgHH\$H$1H\$8H\$@H\$ H$H\$ H+H,$H\$(H\$H\$0H\$1H\$8H\$@H 686 : 687 *runtime.racefuncentern 688 runtime.raceread 689 """.(*pipe).rclose 690 (runtime.racefuncexit 691 0runtime.morestack_noctxtP0"".~r10type.error"".errtype.error"".r&type.*"".PipeReader0b/0 694 3 696 PTgclocalsb9e2f210c3a206b5352d33144c6a1618Tgclocals69c1753bd5f81501d95132d08af04464Jprebuilts/go/linux-x86/src/io/pipe.go,"".(*PipeWriter).WritedH%H;aHHH\$HH$11H\$xH$H\$PH$H\$PH+H,$H\$XH\$H\$`H\$H\$hH\$HD$ HT$(HL$0HD$pHT$8HT$xHL$@H$HHN 699 B 700 *runtime.racefuncenter 701 runtime.raceread 702 "".(*pipe).write 703 (runtime.racefuncexit 704 0runtime.morestack_noctxtp 705 "".autotmp_0138type.error"".errPtype.error"".n@type.int"".datatype.[]uint8"".w&type.*"".PipeWriterr ~"Tgclocals8cf14f50ac1bf7ae2848fda35f0590ecTgclocalsc55cf99de9cdd8c8202a466952fa1a45Jprebuilts/go/linux-x86/src/io/pipe.go,"".(*PipeWriter).ClosedH%H;av`H8H\$8H$1H\$HH\$PH\$@H$1H\$H\$HL$HD$ HL$(HL$HHD$0HD$PH8 708 709 : 710 *runtime.racefuncenter 711 >"".(*PipeWriter).CloseWithError 712 (runtime.racefuncexit 713 0runtime.morestack_noctxt0p"".autotmp_0141type.error"".~r0type.error"".w&type.*"".PipeWriterp[op-8ITgclocalscad14e25fd48dddd762418d02c031d67Tgclocalsc55cf99de9cdd8c8202a466952fa1a45Jprebuilts/go/linux-x86/src/io/pipe.go>"".(*PipeWriter).CloseWithErrordH%H;avgHH\$H$1H\$8H\$@H\$ H$H\$ H+H,$H\$(H\$H\$0H\$1H\$8H\$@H 717 : 718 *runtime.racefuncentern 719 runtime.raceread 720 """.(*pipe).wclose 721 (runtime.racefuncexit 722 0runtime.morestack_noctxtP0"".~r10type.error"".errtype.error"".w&type.*"".PipeWriter0b/0 725 3 727 PTgclocalsb9e2f210c3a206b5352d33144c6a1618Tgclocals69c1753bd5f81501d95132d08af04464Jprebuilts/go/linux-x86/src/io/pipe.go"".PipedH%H;aH`H\$`H$HH$HL$HL$(HHnHHD$HHHD$@1H9H$H$0HL$HHD$@H\$(HHD$PHC0HL$X=HK8HD$(HHHD$HHHD$@1H9AH\$(H$H$hHL$HHD$@H\$(HHD$PHChHL$X=HKpHH$HD$HD$8H$H\$8HHl$(=u~H+H\$8H\$ HH$HD$HD$0H$H\$0Ht?Hl$(=u!H+HD$0H\$ H\$hHD$pH`H$Hl$H$Hl$rZLCpL$HL$HH$HH\$HH\$H\$H\$@aLC8L$HL$;HH$HH\$HH\$HL$(H\$H\$@5@ 732 B 733 *runtime.racefuncenterPtype."".pipeb 734 "runtime.newobject>go.itab.*sync.Mutex.sync.Locker 735 "runtime.racewrite6runtime.writeBarrierEnabled>go.itab.*sync.Mutex.sync.Locker 736 "runtime.racewrite6runtime.writeBarrierEnabled$type."".PipeReader 737 "runtime.newobject 738 "runtime.racewrite6runtime.writeBarrierEnabled$type."".PipeWriter 739 "runtime.newobject 740 "runtime.racewrite6runtime.writeBarrierEnabled 741 (runtime.racefuncexit 742 .runtime.writebarrierptr 743 .runtime.writebarrierptr 744 .runtime.writebarrierptr type.*sync.Mutex type.sync.Locker>go.itab.*sync.Mutex.sync.Locker 745 runtime.typ2Itab 746 .runtime.writebarrierptr 747 type.*sync.Mutex 748 type.sync.Locker 749 >go.itab.*sync.Mutex.sync.Locker 750 751 runtime.typ2Itab 753 0runtime.morestack_noctxt "".autotmp_0148_&type.*"".PipeWriter"".autotmp_0147O&type.*"".PipeReader"".autotmp_0146type.*uint8"".autotmp_0145?type.*uint8"".autotmp_0144 type.*sync.Mutex"".autotmp_0143/ type.*sync.Mutex"".r&type.*"".PipeReader"".potype.*"".pipe"".~r1&type.*"".PipeWriter"".~r0&type.*"".PipeReaderH xzMDEJ< U:54(4/Tgclocals87d5b3689f076a1cf3fe0944f617ec2fTgclocals42f7e9ebeb5a2ecdc7a894b0b664317cJprebuilts/go/linux-x86/src/io/pipe.go"".initdH%H;aqH0H\$0H$HH$t-HH$u 758 H0HH$HH$HD$H\$H\$ H\$H\$(HH$H\$ HH\$(=HHH$HD$H\$H\$ H\$H\$(HH$H\$ HH\$(= HHH$HD$H\$H\$ H\$H\$(HH$H\$ HH\$(=HHH$HD$H\$H\$ H\$H\$(HH$H\$ HH\$(=HHH$HD$+H\$H\$ H\$H\$(HH$H\$ HH\$(=HHH$HD$H\$H\$ H\$H\$(HH$H\$ HH\$(=HHH$HD$H\$H\$ H\$H\$(HH$H\$ HH\$(=HHH$HD$H\$H\$ H\$H\$(HH$H\$ HH\$(=u(HHH$H0H-H,$H\$H-H,$H\$PH-H,$H\$H-H,$H\$XH-H,$H\$H-H,$H\$`H-H,$H\$H-H,$H\$hr 762 B 763 *runtime.racefuncenterP"".initdoneb 764 runtime.racereadp"".initdone"".initdone 765 runtime.raceread"".initdone 766 (runtime.racefuncexit 767 "runtime.throwinit"".initdone 768 "runtime.racewrite"".initdone 769 sync.init.go.string."short write" 770 errors.New "".ErrShortWrite 771 "runtime.racewrite "".ErrShortWrite6runtime.writeBarrierEnabled "".ErrShortWrite0go.string."short buffer" 772 errors.New""".ErrShortBuffer 773 "runtime.racewrite""".ErrShortBuffer6runtime.writeBarrierEnabled""".ErrShortBuffergo.string."EOF" 774 errors.New"".EOF 776 "runtime.racewrite"".EOF6runtime.writeBarrierEnabled"".EOF4go.string."unexpected EOF" 779 errors.New&"".ErrUnexpectedEOF 780 "runtime.racewrite&"".ErrUnexpectedEOF6runtime.writeBarrierEnabled&"".ErrUnexpectedEOFngo.string."multiple Read calls return no data or error" 781 errors.New "".ErrNoProgress 782 "runtime.racewrite "".ErrNoProgress 6runtime.writeBarrierEnabled "".ErrNoProgress @go.string."Seek: invalid whence" 783 784 errors.New 785 "".errWhence 786 787 "runtime.racewrite 788 "".errWhence6runtime.writeBarrierEnabled"".errWhence@go.string."Seek: invalid offset" 793 errors.New"".errOffset 796 "runtime.racewrite"".errOffset6runtime.writeBarrierEnabled"".errOffsetRgo.string."io: read/write on closed pipe" 802 errors.New "".ErrClosedPipe 805 "runtime.racewrite "".ErrClosedPipe6runtime.writeBarrierEnabled "".ErrClosedPipe"".initdone 807 "runtime.racewrite"".initdone 808 (runtime.racefuncexit "".ErrClosedPipe 809 .runtime.writebarrierptr"".errOffset 810 .runtime.writebarrierptr"".errWhence 811 .runtime.writebarrierptr "".ErrNoProgress 812 .runtime.writebarrierptr&"".ErrUnexpectedEOF 813 .runtime.writebarrierptr"".EOF 815 .runtime.writebarrierptr""".ErrShortBuffer 816 .runtime.writebarrierptr "".ErrShortWrite 817 .runtime.writebarrierptr 818 0runtime.morestack_noctxt`"".autotmp_0160type.error"".autotmp_0159type.error"".autotmp_0158type.error"".autotmp_0157type.error"".autotmp_0156type.error"".autotmp_0155type.error"".autotmp_0154type.error"".autotmp_0153type.error`O_`_`&bbbb 820 bbb^! 821 N >$>$>$>$>$>$>$1Tgclocals69c1753bd5f81501d95132d08af04464Tgclocals21a8f585a14d020f181242c5256583dcJprebuilts/go/linux-x86/src/io/pipe.goFprebuilts/go/linux-x86/src/io/io.go6"".stringWriter.WriteStringdH%H;aH@HY Ht H|$HH9;uH#H\$@H$11H\$pH\$xH\$XH\$H\$`H\$H\$PH$H\$HH[ HD$HT$ HL$(HD$hHT$0HT$pHL$8HL$xH@S 825 826 n 827 *runtime.racefuncenter 828 (runtime.racefuncexit 829 0runtime.morestack_noctxtp 830 "".autotmp_0162type.error"".errPtype.error"".n@type.int"".s type.string""..this(type."".stringWriter 6cTgclocals270dbb58aee7585490a002657bf0b796Tgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>"".Writer.WritedH%H;aHHHY Ht H|$PH9;uH#H\$HH$11H$H$H\$`H\$H\$hH\$H\$pH\$H\$XH$H\$PH[ HD$ HT$(HL$0HD$xHT$8H$HL$@H$HH= 835 836 n 837 *runtime.racefuncenter 838 (runtime.racefuncexit 839 0runtime.morestack_noctxt 840 "".autotmp_0166type.error"".err`type.error"".nPtype.int"".p type.[]uint8""..thistype."".Writer6y!Tgclocalsd2fd9951e910becfd07ba7f8ff7b525aTgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>"".Reader.ReaddH%H;aHHHY Ht H|$PH9;uH#H\$HH$11H$H$H\$`H\$H\$hH\$H\$pH\$H\$XH$H\$PH[ HD$ HT$(HL$0HD$xHT$8H$HL$@H$HH= 844 845 n 846 *runtime.racefuncenter 847 (runtime.racefuncexit 848 0runtime.morestack_noctxt 849 "".autotmp_0170type.error"".err`type.error"".nPtype.int"".p type.[]uint8""..thistype."".Reader6y!Tgclocalsd2fd9951e910becfd07ba7f8ff7b525aTgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>6type..hash."".LimitedReaderdH%H;aH H\$ H$H\$(H$H<$tcH\$0H\$HD$H\$(H$H<$t6H$HD$0HD$HD$HD$HD$0HD$8H %%U 853 B 854 *runtime.racefuncenter 855 "runtime.interhash 856 runtime.memhash 857 (runtime.racefuncexit 858 0runtime.morestack_noctxt0@"".autotmp_0174type.uintptr"".~r2 type.uintptr"".htype.uintptr"".p,type.*"".LimitedReader@w?@! Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbFprebuilts/go/linux-x86/src/io/io.go2type..eq."".LimitedReaderdH%H;aHHH\$HH$H\$XH$H\$XHH+Hl$8HkHl$@H\$PH$HT$8H\$PHHHKHL$0HD$(H9H$HL$HT$Hl$@Hl$\$ t[H\$PH$H$H\$XH$H$Hl$PH]LD$XIhH9tD$`HHD$`HHD$`HHN 862 B 863 *runtime.racefuncenter^ 864 runtime.raceread 865 runtime.raceread 866 runtime.ifaceeq 867 runtime.raceread 868 runtime.raceread 869 (runtime.racefuncexit 870 (runtime.racefuncexit 871 (runtime.racefuncexit 872 0runtime.morestack_noctxt0 873 "".autotmp_0176?type."".Reader"".autotmp_0175type."".Reader"".~r2 type.bool"".q,type.*"".LimitedReader"".p,type.*"".LimitedReader2 <KTgclocals51af24152615272c3d9efc8538f95767Tgclocals2c78d3ad9d760b5f66e2e47be684c787Fprebuilts/go/linux-x86/src/io/io.go&"".WriterTo.WriteTodH%H;aH@HY Ht H|$HH9;uH#H\$@H$11H\$pH\$xH\$XH\$H\$`H\$H\$PH$H\$HH[ HD$HT$ HL$(HD$hHT$0HT$pHL$8HL$xH@S 877 878 n 879 *runtime.racefuncenter 880 (runtime.racefuncexit 881 0runtime.morestack_noctxtp 882 "".autotmp_0178type.error"".errPtype.error"".n@type.int64"".w type."".Writer""..this type."".WriterTo 885 6cTgclocals20f975231109e49d1f6a7c3f993396a2Tgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>,"".ReaderFrom.ReadFromdH%H;aH@HY Ht H|$HH9;uH#H\$@H$11H\$pH\$xH\$XH\$H\$`H\$H\$PH$H\$HH[ HD$HT$ HL$(HD$hHT$0HT$pHL$8HL$xH@S 888 889 n 890 *runtime.racefuncenter 891 (runtime.racefuncexit 892 0runtime.morestack_noctxtp 893 "".autotmp_0182type.error"".errPtype.error"".n@type.int64"".r type."".Reader""..this$type."".ReaderFrom 6cTgclocals20f975231109e49d1f6a7c3f993396a2Tgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>$"".ReaderAt.ReadAtdH%H;aHPHY Ht H|$XH9;uH#H\$PH$11H$H$H\$hH\$H\$pH\$H\$xH\$H$H\$ H\$`H$H\$XH[ HD$(HT$0HL$8H$HT$@H$HL$HH$HP- 899 900 n 901 *runtime.racefuncenter 902 (runtime.racefuncexit 903 0runtime.morestack_noctxt"".autotmp_0186type.error"".errptype.error"".n`type.int"".offPtype.int64"".p type.[]uint8""..this type."".ReaderAt6!Tgclocalse666601616cf0fe680da12e820a0d8ceTgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>6type..hash."".SectionReaderdH%H;aH H\$ H$H\$(H$H<$tcH\$0H\$HD$H\$(H$H<$t6H$HD$0HD$HD$HD$HD$0HD$8H %%U 909 B 910 *runtime.racefuncenter 911 "runtime.interhash 912 runtime.memhash 913 (runtime.racefuncexit 914 0runtime.morestack_noctxt0@"".autotmp_0190type.uintptr"".~r2 type.uintptr"".htype.uintptr"".p,type.*"".SectionReader@w?@! Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbFprebuilts/go/linux-x86/src/io/io.go2type..eq."".SectionReaderdH%H;a5HHH\$HH$H\$XH$H\$XHH+Hl$8HkHl$@H\$PH$HT$8H\$PHHHKHL$0HD$(H9H$HL$HT$Hl$@Hl$\$ tuH\$PH$H<$t\H$H\$XH\$H|$t<HD$HD$\$uD$`HHD$`HH%%D$`HH4 918 B 919 *runtime.racefuncenter^ 920 runtime.raceread 921 runtime.raceread 922 runtime.ifaceeq 923 runtime.memequal 924 (runtime.racefuncexit 925 (runtime.racefuncexit 926 (runtime.racefuncexit 927 0runtime.morestack_noctxt0 928 "".autotmp_0193? type."".ReaderAt"".autotmp_0192 type."".ReaderAt"".~r2 type.bool"".q,type.*"".SectionReader"".p,type.*"".SectionReader2 & <KTgclocals51af24152615272c3d9efc8538f95767Tgclocals2c78d3ad9d760b5f66e2e47be684c787Fprebuilts/go/linux-x86/src/io/io.go.type..hash."".teeReaderdH%H;aHH\$H$H\$ H$H<$tZH\$(H\$HD$H\$ H$H<$t-H$HD$(HD$HD$HD$(HD$0H%%^ 932 B 933 *runtime.racefuncenter 934 "runtime.interhash 935 "runtime.interhash 936 (runtime.racefuncexit 937 0runtime.morestack_noctxt00"".autotmp_0195type.uintptr"".~r2 type.uintptr"".htype.uintptr"".p$type.*"".teeReader0n/0* Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbFprebuilts/go/linux-x86/src/io/io.go*type..eq."".teeReaderdH%H;aHhH\$hH$H\$xH$H\$xHUH+Hl$XHkHl$`H\$pH$HT$XH\$pHHHKHL$PHD$HH9H$HL$HT$Hl$`Hl$\$ H\$xH$H$H\$xHHkHl$8HkHl$@H\$pH$H$HT$8H\$pHtbHCHKHL$0HD$(H9u9H$HL$HT$Hl$@Hl$\$ t$Hh$Hh^$HhX 941 B 942 *runtime.racefuncenter^ 943 runtime.raceread 944 runtime.raceread 945 runtime.ifaceeq 946 runtime.raceread 947 runtime.raceread 948 runtime.ifaceeq 949 (runtime.racefuncexit 950 (runtime.racefuncexit 951 (runtime.racefuncexit 952 0runtime.morestack_noctxt0"".autotmp_0199type."".Writer"".autotmp_0198_type."".Writer"".autotmp_0197?type."".Reader"".autotmp_0196type."".Reader"".~r2 type.bool"".q$type.*"".teeReader"".p$type.*"".teeReader2 <KUDpTgclocals9c91d8a91ac42440a3d1507bc8d2e808Tgclocalse85dd0d10221e69476a0daf9bc0a53b6Fprebuilts/go/linux-x86/src/io/io.go"".Closer.ClosedH%H;avpH(HY Ht H|$0H9;uH#H\$(H$1H\$@H\$HH\$8H$H\$0H[ HL$HD$HL$HL$@HD$ HD$HH(w 956 957 f 958 *runtime.racefuncenter 959 (runtime.racefuncexit 960 0runtime.morestack_noctxt@P"".autotmp_0200type.error"".~r0 type.error""..thistype."".CloserPkOP2CTgclocals19b49d53e9c11805652fa4c0885cbb29Tgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>"".Seeker.SeekdH%H;aH@HY Ht H|$HH9;uH#H\$@H$1H\$pH\$xH\$XH\$H\$`H\$H\$PH$H\$HH[ HD$HT$ HL$(HD$hHT$0HT$pHL$8HL$xH@U 964 965 n 966 *runtime.racefuncenter 967 (runtime.racefuncexit 968 0runtime.morestack_noctxtp"".autotmp_0202type.error"".~r3Ptype.error"".~r2@type.int64"".whence0type.int"".offset type.int64""..thistype."".Seeker6aTgclocals8cf14f50ac1bf7ae2848fda35f0590ecTgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>$"".ReadWriter.ReaddH%H;aHHHY Ht H|$PH9;uH#H\$HH$11H$H$H\$`H\$H\$hH\$H\$pH\$H\$XH$H\$PH[ HD$ HT$(HL$0HD$xHT$8H$HL$@H$HH= 974 975 n 976 *runtime.racefuncenter 977 (runtime.racefuncexit 978 0runtime.morestack_noctxt 979 "".autotmp_0206type.error"".err`type.error"".nPtype.int"".p type.[]uint8""..this$type."".ReadWriter6y!Tgclocalsd2fd9951e910becfd07ba7f8ff7b525aTgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>&"".ReadWriter.WritedH%H;aHHHY Ht H|$PH9;uH#H\$HH$11H$H$H\$`H\$H\$hH\$H\$pH\$H\$XH$H\$PH[(HD$ HT$(HL$0HD$xHT$8H$HL$@H$HH= 983 984 n 985 *runtime.racefuncenter 986 (runtime.racefuncexit 987 0runtime.morestack_noctxt 988 "".autotmp_0210type.error"".err`type.error"".nPtype.int"".p type.[]uint8""..this$type."".ReadWriter6y!Tgclocalsd2fd9951e910becfd07ba7f8ff7b525aTgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>&"".ReadCloser.ClosedH%H;avpH(HY Ht H|$0H9;uH#H\$(H$1H\$@H\$HH\$8H$H\$0H[ HL$HD$HL$HL$@HD$ HD$HH(w 992 993 f 994 *runtime.racefuncenter 995 (runtime.racefuncexit 996 0runtime.morestack_noctxt@P"".autotmp_0213type.error"".~r0 type.error""..this$type."".ReadCloserPkOP2CTgclocals19b49d53e9c11805652fa4c0885cbb29Tgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>$"".ReadCloser.ReaddH%H;aHHHY Ht H|$PH9;uH#H\$HH$11H$H$H\$`H\$H\$hH\$H\$pH\$H\$XH$H\$PH[(HD$ HT$(HL$0HD$xHT$8H$HL$@H$HH= 1000 1001 n 1002 *runtime.racefuncenter 1003 (runtime.racefuncexit 1004 0runtime.morestack_noctxt 1005 "".autotmp_0215type.error"".err`type.error"".nPtype.int"".p type.[]uint8""..this$type."".ReadCloser6y!Tgclocalsd2fd9951e910becfd07ba7f8ff7b525aTgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>("".WriteCloser.ClosedH%H;avpH(HY Ht H|$0H9;uH#H\$(H$1H\$@H\$HH\$8H$H\$0H[ HL$HD$HL$HL$@HD$ HD$HH(w 1009 1010 f 1011 *runtime.racefuncenter 1012 (runtime.racefuncexit 1013 0runtime.morestack_noctxt@P"".autotmp_0218type.error"".~r0 type.error""..this&type."".WriteCloserPkOP2CTgclocals19b49d53e9c11805652fa4c0885cbb29Tgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>("".WriteCloser.WritedH%H;aHHHY Ht H|$PH9;uH#H\$HH$11H$H$H\$`H\$H\$hH\$H\$pH\$H\$XH$H\$PH[(HD$ HT$(HL$0HD$xHT$8H$HL$@H$HH= 1017 1018 n 1019 *runtime.racefuncenter 1020 (runtime.racefuncexit 1021 0runtime.morestack_noctxt 1022 "".autotmp_0220type.error"".err`type.error"".nPtype.int"".p type.[]uint8""..this&type."".WriteCloser6y!Tgclocalsd2fd9951e910becfd07ba7f8ff7b525aTgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>0"".ReadWriteCloser.ClosedH%H;avpH(HY Ht H|$0H9;uH#H\$(H$1H\$@H\$HH\$8H$H\$0H[ HL$HD$HL$HL$@HD$ HD$HH(w 1026 1027 f 1028 *runtime.racefuncenter 1029 (runtime.racefuncexit 1030 0runtime.morestack_noctxt@P"".autotmp_0223type.error"".~r0 type.error""..this.type."".ReadWriteCloserPkOP 2CTgclocals19b49d53e9c11805652fa4c0885cbb29Tgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>."".ReadWriteCloser.ReaddH%H;aHHHY Ht H|$PH9;uH#H\$HH$11H$H$H\$`H\$H\$hH\$H\$pH\$H\$XH$H\$PH[(HD$ HT$(HL$0HD$xHT$8H$HL$@H$HH= 1034 1035 n 1036 *runtime.racefuncenter 1037 (runtime.racefuncexit 1038 0runtime.morestack_noctxt 1039 "".autotmp_0225type.error"".err`type.error"".nPtype.int"".p type.[]uint8""..this.type."".ReadWriteCloser"6y!Tgclocalsd2fd9951e910becfd07ba7f8ff7b525aTgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>0"".ReadWriteCloser.WritedH%H;aHHHY Ht H|$PH9;uH#H\$HH$11H$H$H\$`H\$H\$hH\$H\$pH\$H\$XH$H\$PH[0HD$ HT$(HL$0HD$xHT$8H$HL$@H$HH= 1043 1044 n 1045 *runtime.racefuncenter 1046 (runtime.racefuncexit 1047 0runtime.morestack_noctxt 1048 "".autotmp_0229type.error"".err`type.error"".nPtype.int"".p type.[]uint8""..this.type."".ReadWriteCloser$6y!Tgclocalsd2fd9951e910becfd07ba7f8ff7b525aTgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>$"".ReadSeeker.ReaddH%H;aHHHY Ht H|$PH9;uH#H\$HH$11H$H$H\$`H\$H\$hH\$H\$pH\$H\$XH$H\$PH[ HD$ HT$(HL$0HD$xHT$8H$HL$@H$HH= 1052 1053 n 1054 *runtime.racefuncenter 1055 (runtime.racefuncexit 1056 0runtime.morestack_noctxt 1057 "".autotmp_0233type.error"".err`type.error"".nPtype.int"".p type.[]uint8""..this$type."".ReadSeeker&6y!Tgclocalsd2fd9951e910becfd07ba7f8ff7b525aTgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>$"".ReadSeeker.SeekdH%H;aH@HY Ht H|$HH9;uH#H\$@H$1H\$pH\$xH\$XH\$H\$`H\$H\$PH$H\$HH[(HD$HT$ HL$(HD$hHT$0HT$pHL$8HL$xH@U 1061 1062 n 1063 *runtime.racefuncenter 1064 (runtime.racefuncexit 1065 0runtime.morestack_noctxtp"".autotmp_0237type.error"".~r3Ptype.error"".~r2@type.int64"".whence0type.int"".offset type.int64""..this$type."".ReadSeeker(6aTgclocals8cf14f50ac1bf7ae2848fda35f0590ecTgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>&"".WriteSeeker.SeekdH%H;aH@HY Ht H|$HH9;uH#H\$@H$1H\$pH\$xH\$XH\$H\$`H\$H\$PH$H\$HH[ HD$HT$ HL$(HD$hHT$0HT$pHL$8HL$xH@U 1071 1072 n 1073 *runtime.racefuncenter 1074 (runtime.racefuncexit 1075 0runtime.morestack_noctxtp"".autotmp_0241type.error"".~r3Ptype.error"".~r2@type.int64"".whence0type.int"".offset type.int64""..this&type."".WriteSeeker*6aTgclocals8cf14f50ac1bf7ae2848fda35f0590ecTgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>("".WriteSeeker.WritedH%H;aHHHY Ht H|$PH9;uH#H\$HH$11H$H$H\$`H\$H\$hH\$H\$pH\$H\$XH$H\$PH[(HD$ HT$(HL$0HD$xHT$8H$HL$@H$HH= 1081 1082 n 1083 *runtime.racefuncenter 1084 (runtime.racefuncexit 1085 0runtime.morestack_noctxt 1086 "".autotmp_0245type.error"".err`type.error"".nPtype.int"".p type.[]uint8""..this&type."".WriteSeeker,6y!Tgclocalsd2fd9951e910becfd07ba7f8ff7b525aTgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>."".ReadWriteSeeker.ReaddH%H;aHHHY Ht H|$PH9;uH#H\$HH$11H$H$H\$`H\$H\$hH\$H\$pH\$H\$XH$H\$PH[ HD$ HT$(HL$0HD$xHT$8H$HL$@H$HH= 1090 1091 n 1092 *runtime.racefuncenter 1093 (runtime.racefuncexit 1094 0runtime.morestack_noctxt 1095 "".autotmp_0249type.error"".err`type.error"".nPtype.int"".p type.[]uint8""..this.type."".ReadWriteSeeker.6y!Tgclocalsd2fd9951e910becfd07ba7f8ff7b525aTgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>."".ReadWriteSeeker.SeekdH%H;aH@HY Ht H|$HH9;uH#H\$@H$1H\$pH\$xH\$XH\$H\$`H\$H\$PH$H\$HH[(HD$HT$ HL$(HD$hHT$0HT$pHL$8HL$xH@U 1099 1100 n 1101 *runtime.racefuncenter 1102 (runtime.racefuncexit 1103 0runtime.morestack_noctxtp"".autotmp_0253type.error"".~r3Ptype.error"".~r2@type.int64"".whence0type.int"".offset type.int64""..this.type."".ReadWriteSeeker06aTgclocals8cf14f50ac1bf7ae2848fda35f0590ecTgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>0"".ReadWriteSeeker.WritedH%H;aHHHY Ht H|$PH9;uH#H\$HH$11H$H$H\$`H\$H\$hH\$H\$pH\$H\$XH$H\$PH[0HD$ HT$(HL$0HD$xHT$8H$HL$@H$HH= 1109 1110 n 1111 *runtime.racefuncenter 1112 (runtime.racefuncexit 1113 0runtime.morestack_noctxt 1114 "".autotmp_0257type.error"".err`type.error"".nPtype.int"".p type.[]uint8""..this.type."".ReadWriteSeeker26y!Tgclocalsd2fd9951e910becfd07ba7f8ff7b525aTgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>&"".WriterAt.WriteAtdH%H;aHPHY Ht H|$XH9;uH#H\$PH$11H$H$H\$hH\$H\$pH\$H\$xH\$H$H\$ H\$`H$H\$XH[ HD$(HT$0HL$8H$HT$@H$HL$HH$HP- 1118 1119 n 1120 *runtime.racefuncenter 1121 (runtime.racefuncexit 1122 0runtime.morestack_noctxt"".autotmp_0261type.error"".errptype.error"".n`type.int"".offPtype.int64"".p type.[]uint8""..this type."".WriterAt46!Tgclocalse666601616cf0fe680da12e820a0d8ceTgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>,"".ByteReader.ReadBytedH%H;av{H0HY Ht H|$8H9;uH#H\$0H$11H\$PH\$XH\$@H$H\$8H[ \$HT$HL$\$HHT$ HT$PHL$(HL$XH0l 1128 1129 f 1130 *runtime.racefuncenter 1131 (runtime.racefuncexit 1132 0runtime.morestack_noctxtP`"".autotmp_0265type.error"".err0type.error"".c type.uint8""..this$type."".ByteReader`v_`62N Tgclocalse4b5616e5783a0b08ed3851f8c75ffedTgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>."".ByteScanner.ReadBytedH%H;av{H0HY Ht H|$8H9;uH#H\$0H$11H\$PH\$XH\$@H$H\$8H[ \$HT$HL$\$HHT$ HT$PHL$(HL$XH0l 1136 1137 f 1138 *runtime.racefuncenter 1139 (runtime.racefuncexit 1140 0runtime.morestack_noctxtP`"".autotmp_0269type.error"".err0type.error"".c type.uint8""..this&type."".ByteScanner`v_`82N Tgclocalse4b5616e5783a0b08ed3851f8c75ffedTgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>2"".ByteScanner.UnreadBytedH%H;avpH(HY Ht H|$0H9;uH#H\$(H$1H\$@H\$HH\$8H$H\$0H[(HL$HD$HL$HL$@HD$ HD$HH(w 1144 1145 f 1146 *runtime.racefuncenter 1147 (runtime.racefuncexit 1148 0runtime.morestack_noctxt@P"".autotmp_0272type.error"".~r0 type.error""..this&type."".ByteScannerPkOP:2CTgclocals19b49d53e9c11805652fa4c0885cbb29Tgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>."".ByteWriter.WriteBytedH%H;avyH0HY Ht H|$8H9;uH#H\$0H$1H\$PH\$X\$H\$H\$@H$H\$8H[ HL$HD$HL$ HL$PHD$(HD$XH0n 1152 1153 f 1154 *runtime.racefuncenter 1155 (runtime.racefuncexit 1156 0runtime.morestack_noctxtP`"".autotmp_0273type.error"".~r10type.error"".c type.uint8""..this$type."".ByteWriter`t_`<2L"Tgclocalse4b5616e5783a0b08ed3851f8c75ffedTgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>,"".RuneReader.ReadRunedH%H;aH8HY Ht H|$@H9;uH#H\$8H$11H\$`H\$hH\$HH$H\$@H[ L$HD$Hl$HT$ L$PHD$XHl$(Hl$`HT$0HT$hH8_ 1160 1161 n 1162 *runtime.racefuncenter 1163 (runtime.racefuncexit 1164 0runtime.morestack_noctxt`p 1165 "".autotmp_0276type.error"".err@type.error"".size0type.int"".r type.int32""..this$type."".RuneReaderpop>6W#Tgclocalsb6338434a483b71ecf7a1963213f75e2Tgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>."".RuneScanner.ReadRunedH%H;aH8HY Ht H|$@H9;uH#H\$8H$11H\$`H\$hH\$HH$H\$@H[ L$HD$Hl$HT$ L$PHD$XHl$(Hl$`HT$0HT$hH8_ 1169 1170 n 1171 *runtime.racefuncenter 1172 (runtime.racefuncexit 1173 0runtime.morestack_noctxt`p 1174 "".autotmp_0282type.error"".err@type.error"".size0type.int"".r type.int32""..this&type."".RuneScannerpop@6W#Tgclocalsb6338434a483b71ecf7a1963213f75e2Tgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>2"".RuneScanner.UnreadRunedH%H;avpH(HY Ht H|$0H9;uH#H\$(H$1H\$@H\$HH\$8H$H\$0H[(HL$HD$HL$HL$@HD$ HD$HH(w 1178 1179 f 1180 *runtime.racefuncenter 1181 (runtime.racefuncexit 1182 0runtime.morestack_noctxt@P"".autotmp_0286type.error"".~r0 type.error""..this&type."".RuneScannerPkOPB2CTgclocals19b49d53e9c11805652fa4c0885cbb29Tgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>0type..hash."".pipeResultdH%H;aH H\$ H$H\$(H$H<$tcH\$0H\$HD$HD$H\$(H$H<$t-H$HD$0HD$HD$HD$0HD$8H %%U 1186 B 1187 *runtime.racefuncenter 1188 runtime.memhash 1189 "runtime.interhash 1190 (runtime.racefuncexit 1191 0runtime.morestack_noctxt0@"".autotmp_0288type.uintptr"".~r2 type.uintptr"".htype.uintptr"".p&type.*"".pipeResult@w?@! Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbFprebuilts/go/linux-x86/src/io/io.go,type..eq."".pipeResultdH%H;aHHH\$HH$H\$PH$H\$XH$HD$XHl$PH]H(H9tD$`HHH$H$H\$XHHkHl$8HkHl$@H\$PH$H$HT$8H\$PHt\HCHKHL$0HD$(H9u6H$HL$HT$Hl$@Hl$\$ tD$`HHD$`HHd 1196 B 1197 *runtime.racefuncenter^ 1198 runtime.racereadz 1199 runtime.raceread 1200 (runtime.racefuncexit 1201 runtime.raceread 1202 runtime.raceread 1203 runtime.ifaceeq 1204 (runtime.racefuncexit 1205 (runtime.racefuncexit 1206 0runtime.morestack_noctxt0 1207 "".autotmp_0290?type.error"".autotmp_0289type.error"".~r2 type.bool"".q&type.*"".pipeResult"".p&type.*"".pipeResult2N DITgclocals51af24152615272c3d9efc8538f95767Tgclocals2c78d3ad9d760b5f66e2e47be684c787Fprebuilts/go/linux-x86/src/io/io.goTgclocals7f75a99eed77b4d0bd8e91532aef4647((Tgclocalsbe227ddf4f0f283981fc4ade0ed36ff8((gTgclocals98a935522f11e180b06d5a082b7d09c1 Tgclocalse666601616cf0fe680da12e820a0d8ce Tgclocalsc55cf99de9cdd8c8202a466952fa1a45 Tgclocalsd2fd9951e910becfd07ba7f8ff7b525a 0Fgo.itab.*"".LimitedReader."".ReaderTgclocals279027db98a4c11e939f611867af596f88Tgclocalsb52e85fe5c3dc5f066c32eb89d6366f988Tgclocalsc55cf99de9cdd8c8202a466952fa1a45 Tgclocals20f975231109e49d1f6a7c3f993396a2 oZgo.string.hdr."empty buffer in io.CopyBuffer" Rgo.string."empty buffer in io.CopyBuffer"Rgo.string."empty buffer in io.CopyBuffer"@<empty buffer in io.CopyBufferTgclocals4839c181b903023c3ae99be60aaf4271((Tgclocals25ba8ffa628ab7e57281948c1f5e5758(( 1209 Tgclocals28ecaa5b2129cd40f8add06e52c9761388Tgclocalsb8f6103f3a94bd8f39d14f4afe3addab88 1210 Tgclocalsf891aedf0f80c97cb1c7cc75a7fd6349((Tgclocals4493fa78a39865f4172589e05fc599e2((Tgclocals64ca935d1a2110a30e2d604686188539 Tgclocals8cf14f50ac1bf7ae2848fda35f0590ec cTgclocalsf891aedf0f80c97cb1c7cc75a7fd6349((Tgclocals05dfbb0deaac2761715bba2eb22051dc((Tgclocals64ca935d1a2110a30e2d604686188539 Tgclocals8cf14f50ac1bf7ae2848fda35f0590ec cTgclocals69c1753bd5f81501d95132d08af04464Tgclocals385909f76d6de739e72f24698b953b71 1Tgclocalsae0a20890c9ac6bfbea3383f34532bab Tgclocals105f3855eb890a8acc612838e7807774 Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals3f5c1f818fa7055d0400cecd340571620>go.itab.*"".teeReader."".ReaderTgclocalsf891aedf0f80c97cb1c7cc75a7fd6349((Tgclocals0321d1b5df75a0a4e103a3d97b5bb9c5((?Tgclocals8dacdca6a9d3d5c313f9478f38bacba5(( @Tgclocals00c43ac85ea523b9c2b9f85fd538f62e((ccTgclocals2c837ca001512a37037efd3161e20199 Tgclocals8cf14f50ac1bf7ae2848fda35f0590ec c0Bgo.itab.*"".multiReader."".ReaderTgclocals85b708e0eb749713cb73a30a27c2999c88Tgclocals6205473c48c5b9d038be1bc15d6ecfbc88Tgclocals80ea1f01cbb3ac057493519ab3f7bef7((Tgclocals251e3cc4f2373456f57cb9541b8e1a97((c0Bgo.itab.*"".multiWriter."".WriterTgclocals85b708e0eb749713cb73a30a27c2999c88Tgclocals6205473c48c5b9d038be1bc15d6ecfbc88Tgclocalsc55cf99de9cdd8c8202a466952fa1a45 Tgclocals8cf14f50ac1bf7ae2848fda35f0590ec cTgclocals69c1753bd5f81501d95132d08af04464Tgclocals8cf14f50ac1bf7ae2848fda35f0590ec cTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals5c5a9f3dff47a8940bdc317b9324ac2aTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals5c5a9f3dff47a8940bdc317b9324ac2aTgclocalsc55cf99de9cdd8c8202a466952fa1a45 Tgclocals8cf14f50ac1bf7ae2848fda35f0590ec cTgclocalsc55cf99de9cdd8c8202a466952fa1a45 Tgclocalscad14e25fd48dddd762418d02c031d67 Tgclocals69c1753bd5f81501d95132d08af04464Tgclocalsb9e2f210c3a206b5352d33144c6a1618 Tgclocalsc55cf99de9cdd8c8202a466952fa1a45 Tgclocals8cf14f50ac1bf7ae2848fda35f0590ec cTgclocalsc55cf99de9cdd8c8202a466952fa1a45 Tgclocalscad14e25fd48dddd762418d02c031d67 Tgclocals69c1753bd5f81501d95132d08af04464Tgclocalsb9e2f210c3a206b5352d33144c6a1618 0>go.itab.*sync.Mutex.sync.LockerTgclocals42f7e9ebeb5a2ecdc7a894b0b664317cXX "2 1211 Tgclocals87d5b3689f076a1cf3fe0944f617ec2fXX 6go.string.hdr."short write" .go.string."short write".go.string."short write" short write8go.string.hdr."short buffer" 0go.string."short buffer"0go.string."short buffer" short buffer&go.string.hdr."EOF" go.string."EOF"go.string."EOF"EOF<go.string.hdr."unexpected EOF" 4go.string."unexpected EOF"4go.string."unexpected EOF" unexpected EOFvgo.string.hdr."multiple Read calls return no data or error" +ngo.string."multiple Read calls return no data or error"ngo.string."multiple Read calls return no data or error"`Xmultiple Read calls return no data or errorHgo.string.hdr."Seek: invalid whence" @go.string."Seek: invalid whence"@go.string."Seek: invalid whence"0*Seek: invalid whenceHgo.string.hdr."Seek: invalid offset" @go.string."Seek: invalid offset"@go.string."Seek: invalid offset"0*Seek: invalid offsetZgo.string.hdr."io: read/write on closed pipe" Rgo.string."io: read/write on closed pipe"Rgo.string."io: read/write on closed pipe"@<io: read/write on closed pipeTgclocals21a8f585a14d020f181242c5256583dc Tgclocals69c1753bd5f81501d95132d08af04464. "".ErrShortWrite type.error.""".ErrShortBuffer type.error."".EOF type.error.&"".ErrUnexpectedEOF type.error. "".ErrNoProgress type.error."".errWhence type.error."".errOffset type.error. "".ErrClosedPipe type.error0"".zerotype.[0]uint80"".initdonetype.uint8""".WriteStringf"".WriteString""".ReadAtLeastf"".ReadAtLeast"".ReadFullf"".ReadFull"".CopyNf"".CopyN"".Copyf"".Copy "".CopyBufferf"".CopyBuffer "".copyBufferf"".copyBuffer""".LimitReaderf"".LimitReader6"".(*LimitedReader).Readf0"".(*LimitedReader).Read,"".NewSectionReaderf&"".NewSectionReader6"".(*SectionReader).Readf0"".(*SectionReader).Read6"".(*SectionReader).Seekf0"".(*SectionReader).Seek:"".(*SectionReader).ReadAtf4"".(*SectionReader).ReadAt6"".(*SectionReader).Sizef0"".(*SectionReader).Size"".TeeReaderf"".TeeReader."".(*teeReader).Readf("".(*teeReader).Read2"".(*multiReader).Readf,"".(*multiReader).Read""".MultiReaderf"".MultiReader4"".(*multiWriter).Writef."".(*multiWriter).Write""".MultiWriterf"".MultiWriter$"".(*pipe).readf"".(*pipe).read&"".(*pipe).writef "".(*pipe).write("".(*pipe).rclosef""".(*pipe).rclose("".(*pipe).wclosef""".(*pipe).wclose0"".(*PipeReader).Readf*"".(*PipeReader).Read2"".(*PipeReader).Closef,"".(*PipeReader).CloseD"".(*PipeReader).CloseWithErrorf>"".(*PipeReader).CloseWithError2"".(*PipeWriter).Writef,"".(*PipeWriter).Write2"".(*PipeWriter).Closef,"".(*PipeWriter).CloseD"".(*PipeWriter).CloseWithErrorf>"".(*PipeWriter).CloseWithError"".Pipef"".Pipe"".initf"".initTgclocalsc55cf99de9cdd8c8202a466952fa1a45 Tgclocals270dbb58aee7585490a002657bf0b796 g"runtime.gcbits.01Rgo.string.hdr."func(string) (int, error)" Jgo.string."func(string) (int, error)"Jgo.string."func(string) (int, error)"@4func(string) (int, error)<type.func(string) (int, error)G30 runtime.algarray@"runtime.gcbits.01PRgo.string.hdr."func(string) (int, error)"pNgo.weak.type.*func(string) (int, error)"runtime.zerovalue<type.func(string) (int, error)<type.func(string) (int, error)type.stringtype.inttype.error~go.typelink.func(string) (int, error) func(string) (int, error)<type.func(string) (int, error)@go.string.hdr."*io.stringWriter" 8go.string."*io.stringWriter"8go.string."*io.stringWriter"0"*io.stringWriter*type.*"".stringWriteruk60 runtime.algarray@"runtime.gcbits.01P@go.string.hdr."*io.stringWriter"p<go.weak.type.**"".stringWriter"runtime.zerovalue(type."".stringWriter"runtime.gcbits.03>go.string.hdr."io.stringWriter" 6go.string."io.stringWriter"6go.string."io.stringWriter" io.stringWriter6go.string.hdr."WriteString" .go.string."WriteString".go.string."WriteString" WriteString8go.string.hdr."stringWriter" 0go.string."stringWriter"0go.string."stringWriter" stringWriter$go.string.hdr."io" go.string."io"go.string."io"io"go.importpath."". go.string."io"(type."".stringWriter,:0 runtime.algarray@"runtime.gcbits.03P>go.string.hdr."io.stringWriter"p*type.*"".stringWriter"runtime.zerovalue(type."".stringWriter6go.string.hdr."WriteString"<type.func(string) (int, error)`(type."".stringWriter8go.string.hdr."stringWriter""go.importpath."".(type."".stringWriterTgclocalsc55cf99de9cdd8c8202a466952fa1a45 Tgclocalsd2fd9951e910becfd07ba7f8ff7b525a .go.string.hdr."[]uint8" &go.string."[]uint8"&go.string."[]uint8"[]uint8type.[]uint8~.80 runtime.algarray@"runtime.gcbits.01P.go.string.hdr."[]uint8"p*go.weak.type.*[]uint8"runtime.zerovaluetype.uint86go.typelink.[]uint8 []uint8type.[]uint8Tgo.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)4go.string.hdr."*io.Writer" 1219 ,go.string."*io.Writer",go.string."*io.Writer" *io.Writertype.*"".Writer}60 runtime.algarray@"runtime.gcbits.01P4go.string.hdr."*io.Writer"p0go.weak.type.**"".Writer"runtime.zerovaluetype."".Writer2go.string.hdr."io.Writer" *go.string."io.Writer"*go.string."io.Writer" io.Writer*go.string.hdr."Write" "go.string."Write""go.string."Write"Write,go.string.hdr."Writer" $go.string."Writer"$go.string."Writer"Writertype."".Writer!F0 runtime.algarray@"runtime.gcbits.03P2go.string.hdr."io.Writer"ptype.*"".Writer"runtime.zerovaluetype."".Writer*go.string.hdr."Write">type.func([]uint8) (int, error)`type."".Writer,go.string.hdr."Writer""go.importpath."".type."".WriterTgclocalsc55cf99de9cdd8c8202a466952fa1a45 Tgclocalsd2fd9951e910becfd07ba7f8ff7b525a 4go.string.hdr."*io.Reader" 1222 ,go.string."*io.Reader",go.string."*io.Reader" *io.Readertype.*"".Reader's60 runtime.algarray@"runtime.gcbits.01P4go.string.hdr."*io.Reader"p0go.weak.type.**"".Reader"runtime.zerovaluetype."".Reader2go.string.hdr."io.Reader" *go.string."io.Reader"*go.string."io.Reader" io.Reader(go.string.hdr."Read" go.string."Read" go.string."Read" 1224 Read,go.string.hdr."Reader" $go.string."Reader"$go.string."Reader"Readertype."".Reader%(0 runtime.algarray@"runtime.gcbits.03P2go.string.hdr."io.Reader"ptype.*"".Reader"runtime.zerovaluetype."".Reader(go.string.hdr."Read">type.func([]uint8) (int, error)`type."".Reader,go.string.hdr."Reader""go.importpath."".type."".ReaderTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals2c78d3ad9d760b5f66e2e47be684c787 Tgclocals51af24152615272c3d9efc8538f95767 >type..hashfunc."".LimitedReader6type..hash."".LimitedReader:type..eqfunc."".LimitedReader2type..eq."".LimitedReader4type..alg."".LimitedReader >type..hashfunc."".LimitedReader:type..eqfunc."".LimitedReaderBgo.string.hdr."*io.LimitedReader" :go.string."*io.LimitedReader":go.string."*io.LimitedReader"0$*io.LimitedReaderzgo.string.hdr."func(*io.LimitedReader, []uint8) (int, error)" -rgo.string."func(*io.LimitedReader, []uint8) (int, error)"rgo.string."func(*io.LimitedReader, []uint8) (int, error)"`\func(*io.LimitedReader, []uint8) (int, error)dtype.func(*"".LimitedReader, []uint8) (int, error)=\p30 runtime.algarray@"runtime.gcbits.01Pzgo.string.hdr."func(*io.LimitedReader, []uint8) (int, error)"pvgo.weak.type.*func(*"".LimitedReader, []uint8) (int, error)"runtime.zerovaluedtype.func(*"".LimitedReader, []uint8) (int, error)dtype.func(*"".LimitedReader, []uint8) (int, error),type.*"".LimitedReadertype.[]uint8type.inttype.errorgo.typelink.func(*io.LimitedReader, []uint8) (int, error) func(*"".LimitedReader, []uint8) (int, error)dtype.func(*"".LimitedReader, []uint8) (int, error),type.*"".LimitedReader:60 runtime.algarray@"runtime.gcbits.01PBgo.string.hdr."*io.LimitedReader"p>go.weak.type.**"".LimitedReader"runtime.zerovalue*type."".LimitedReader`,type.*"".LimitedReader,type.*"".LimitedReader(go.string.hdr."Read">type.func([]uint8) (int, error)dtype.func(*"".LimitedReader, []uint8) (int, error)0"".(*LimitedReader).Read0"".(*LimitedReader).Read@go.string.hdr."io.LimitedReader" 8go.string."io.LimitedReader"8go.string."io.LimitedReader"0"io.LimitedReader"go.string.hdr."R" go.string."R"go.string."R"R"go.string.hdr."N" go.string."N"go.string."N"N:go.string.hdr."LimitedReader" 2go.string."LimitedReader"2go.string."LimitedReader" LimitedReader*type."".LimitedReaders804type..alg."".LimitedReader@"runtime.gcbits.03P@go.string.hdr."io.LimitedReader"p,type.*"".LimitedReader"runtime.zerovalue*type."".LimitedReader"go.string.hdr."R"type."".Reader"go.string.hdr."N"type.int64`*type."".LimitedReader:go.string.hdr."LimitedReader""go.importpath."".*type."".LimitedReaderTgclocalsc55cf99de9cdd8c8202a466952fa1a45 Tgclocals20f975231109e49d1f6a7c3f993396a2 o\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("".Writer) (int64, error)\30 runtime.algarray@"runtime.gcbits.01P\go.string.hdr."func(io.Writer) (int64, error)"pXgo.weak.type.*func("".Writer) (int64, error)"runtime.zerovalueFtype.func("".Writer) (int64, error)Ftype.func("".Writer) (int64, error)type."".Writertype.int64type.errorgo.typelink.func(io.Writer) (int64, error) func("".Writer) (int64, error)Ftype.func("".Writer) (int64, error)8go.string.hdr."*io.WriterTo" 0go.string."*io.WriterTo"0go.string."*io.WriterTo" *io.WriterTo"type.*"".WriterTo%sf60 runtime.algarray@"runtime.gcbits.01P8go.string.hdr."*io.WriterTo"p4go.weak.type.**"".WriterTo"runtime.zerovalue type."".WriterTo6go.string.hdr."io.WriterTo" .go.string."io.WriterTo".go.string."io.WriterTo" io.WriterTo.go.string.hdr."WriteTo" &go.string."WriteTo"&go.string."WriteTo"WriteTo0go.string.hdr."WriterTo" (go.string."WriterTo"(go.string."WriterTo" WriterTo type."".WriterTo!0 runtime.algarray@"runtime.gcbits.03P6go.string.hdr."io.WriterTo"p"type.*"".WriterTo"runtime.zerovalue type."".WriterTo.go.string.hdr."WriteTo"Ftype.func("".Writer) (int64, error)` type."".WriterTo0go.string.hdr."WriterTo""go.importpath."". type."".WriterToTgclocalsc55cf99de9cdd8c8202a466952fa1a45 Tgclocals20f975231109e49d1f6a7c3f993396a2 o\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("".Reader) (int64, error)Y30 runtime.algarray@"runtime.gcbits.01P\go.string.hdr."func(io.Reader) (int64, error)"pXgo.weak.type.*func("".Reader) (int64, error)"runtime.zerovalueFtype.func("".Reader) (int64, error)Ftype.func("".Reader) (int64, error)type."".Readertype.int64type.errorgo.typelink.func(io.Reader) (int64, error) func("".Reader) (int64, error)Ftype.func("".Reader) (int64, error)<go.string.hdr."*io.ReaderFrom" 4go.string."*io.ReaderFrom"4go.string."*io.ReaderFrom" *io.ReaderFrom&type.*"".ReaderFromr=60 runtime.algarray@"runtime.gcbits.01P<go.string.hdr."*io.ReaderFrom"p8go.weak.type.**"".ReaderFrom"runtime.zerovalue$type."".ReaderFrom:go.string.hdr."io.ReaderFrom" 2go.string."io.ReaderFrom"2go.string."io.ReaderFrom" io.ReaderFrom0go.string.hdr."ReadFrom" (go.string."ReadFrom"(go.string."ReadFrom" ReadFrom4go.string.hdr."ReaderFrom" 1232 ,go.string."ReaderFrom",go.string."ReaderFrom" ReaderFrom$type."".ReaderFrom>0 runtime.algarray@"runtime.gcbits.03P:go.string.hdr."io.ReaderFrom"p&type.*"".ReaderFrom"runtime.zerovalue$type."".ReaderFrom0go.string.hdr."ReadFrom"Ftype.func("".Reader) (int64, error)`$type."".ReaderFrom4go.string.hdr."ReaderFrom""go.importpath."".$type."".ReaderFromTgclocalsc55cf99de9cdd8c8202a466952fa1a45 Tgclocalse666601616cf0fe680da12e820a0d8ce bgo.string.hdr."func([]uint8, int64) (int, error)" !Zgo.string."func([]uint8, int64) (int, error)"Zgo.string."func([]uint8, int64) (int, error)"PDfunc([]uint8, int64) (int, error)Ltype.func([]uint8, int64) (int, error)C,30 runtime.algarray@"runtime.gcbits.01Pbgo.string.hdr."func([]uint8, int64) (int, error)"p^go.weak.type.*func([]uint8, int64) (int, error)"runtime.zerovalueLtype.func([]uint8, int64) (int, error)Ltype.func([]uint8, int64) (int, error)type.[]uint8type.int64type.inttype.errorgo.typelink.func([]uint8, int64) (int, error) func([]uint8, int64) (int, error)Ltype.func([]uint8, int64) (int, error)8go.string.hdr."*io.ReaderAt" 0go.string."*io.ReaderAt"0go.string."*io.ReaderAt" *io.ReaderAt"type.*"".ReaderAt60 runtime.algarray@"runtime.gcbits.01P8go.string.hdr."*io.ReaderAt"p4go.weak.type.**"".ReaderAt"runtime.zerovalue type."".ReaderAt6go.string.hdr."io.ReaderAt" .go.string."io.ReaderAt".go.string."io.ReaderAt" io.ReaderAt,go.string.hdr."ReadAt" $go.string."ReadAt"$go.string."ReadAt"ReadAt0go.string.hdr."ReaderAt" (go.string."ReaderAt"(go.string."ReaderAt" ReaderAt type."".ReaderAtKb0 runtime.algarray@"runtime.gcbits.03P6go.string.hdr."io.ReaderAt"p"type.*"".ReaderAt"runtime.zerovalue type."".ReaderAt,go.string.hdr."ReadAt"Ltype.func([]uint8, int64) (int, error)` type."".ReaderAt0go.string.hdr."ReaderAt""go.importpath."". type."".ReaderAtTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals2c78d3ad9d760b5f66e2e47be684c787 Tgclocals51af24152615272c3d9efc8538f95767 >type..hashfunc."".SectionReader6type..hash."".SectionReader:type..eqfunc."".SectionReader2type..eq."".SectionReader4type..alg."".SectionReader >type..hashfunc."".SectionReader:type..eqfunc."".SectionReaderBgo.string.hdr."*io.SectionReader" :go.string."*io.SectionReader":go.string."*io.SectionReader"0$*io.SectionReaderzgo.string.hdr."func(*io.SectionReader, []uint8) (int, error)" -rgo.string."func(*io.SectionReader, []uint8) (int, error)"rgo.string."func(*io.SectionReader, []uint8) (int, error)"`\func(*io.SectionReader, []uint8) (int, error)dtype.func(*"".SectionReader, []uint8) (int, error)T#w30 runtime.algarray@"runtime.gcbits.01Pzgo.string.hdr."func(*io.SectionReader, []uint8) (int, error)"pvgo.weak.type.*func(*"".SectionReader, []uint8) (int, error)"runtime.zerovaluedtype.func(*"".SectionReader, []uint8) (int, error)dtype.func(*"".SectionReader, []uint8) (int, error),type.*"".SectionReadertype.[]uint8type.inttype.errorgo.typelink.func(*io.SectionReader, []uint8) (int, error) func(*"".SectionReader, []uint8) (int, error)dtype.func(*"".SectionReader, []uint8) (int, error)go.string.hdr."func(*io.SectionReader, []uint8, int64) (int, error)" 4go.string."func(*io.SectionReader, []uint8, int64) (int, error)"go.string."func(*io.SectionReader, []uint8, int64) (int, error)"pjfunc(*io.SectionReader, []uint8, int64) (int, error)rtype.func(*"".SectionReader, []uint8, int64) (int, error)uQ30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*io.SectionReader, []uint8, int64) (int, error)"pgo.weak.type.*func(*"".SectionReader, []uint8, int64) (int, error)"runtime.zerovaluertype.func(*"".SectionReader, []uint8, int64) (int, error)rtype.func(*"".SectionReader, []uint8, int64) (int, error),type.*"".SectionReadertype.[]uint8type.int64type.inttype.errorgo.typelink.func(*io.SectionReader, []uint8, int64) (int, error) func(*"".SectionReader, []uint8, int64) (int, error)rtype.func(*"".SectionReader, []uint8, int64) (int, error)go.string.hdr."func(*io.SectionReader, int64, int) (int64, error)" 2|go.string."func(*io.SectionReader, int64, int) (int64, error)"|go.string."func(*io.SectionReader, int64, int) (int64, error)"pffunc(*io.SectionReader, int64, int) (int64, error)ntype.func(*"".SectionReader, int64, int) (int64, error)D30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*io.SectionReader, int64, int) (int64, error)"pgo.weak.type.*func(*"".SectionReader, int64, int) (int64, error)"runtime.zerovaluentype.func(*"".SectionReader, int64, int) (int64, error)ntype.func(*"".SectionReader, int64, int) (int64, error),type.*"".SectionReadertype.int64type.inttype.int64type.errorgo.typelink.func(*io.SectionReader, int64, int) (int64, error) func(*"".SectionReader, int64, int) (int64, error)ntype.func(*"".SectionReader, int64, int) (int64, error)Zgo.string.hdr."func(*io.SectionReader) int64" Rgo.string."func(*io.SectionReader) int64"Rgo.string."func(*io.SectionReader) int64"@<func(*io.SectionReader) int64Dtype.func(*"".SectionReader) int64yh30 runtime.algarray@"runtime.gcbits.01PZgo.string.hdr."func(*io.SectionReader) int64"pVgo.weak.type.*func(*"".SectionReader) int64"runtime.zerovalueDtype.func(*"".SectionReader) int64Dtype.func(*"".SectionReader) int64,type.*"".SectionReadertype.int64go.typelink.func(*io.SectionReader) int64 func(*"".SectionReader) int64Dtype.func(*"".SectionReader) int64(go.string.hdr."Seek" go.string."Seek" go.string."Seek" 1237 Seek^go.string.hdr."func(int64, int) (int64, error)" Vgo.string."func(int64, int) (int64, error)"Vgo.string."func(int64, int) (int64, error)"@@func(int64, int) (int64, error)Htype.func(int64, int) (int64, error)30 runtime.algarray@"runtime.gcbits.01P^go.string.hdr."func(int64, int) (int64, error)"pZgo.weak.type.*func(int64, int) (int64, error)"runtime.zerovalueHtype.func(int64, int) (int64, error)Htype.func(int64, int) (int64, error)type.int64type.inttype.int64type.errorgo.typelink.func(int64, int) (int64, error) func(int64, int) (int64, error)Htype.func(int64, int) (int64, error)(go.string.hdr."Size" go.string."Size" go.string."Size" 1238 Size8go.string.hdr."func() int64" 0go.string."func() int64"0go.string."func() int64" func() int64"type.func() int64a|30 runtime.algarray@"runtime.gcbits.01P8go.string.hdr."func() int64"p4go.weak.type.*func() int64"runtime.zerovalue"type.func() int64"type.func() int64type.int64Jgo.typelink.func() int64 func() int64"type.func() int64,type.*"".SectionReaderQ680 runtime.algarray@"runtime.gcbits.01PBgo.string.hdr."*io.SectionReader"p>go.weak.type.**"".SectionReader"runtime.zerovalue*type."".SectionReader`,type.*"".SectionReader,type.*"".SectionReader(go.string.hdr."Read">type.func([]uint8) (int, error)dtype.func(*"".SectionReader, []uint8) (int, error)0"".(*SectionReader).Read0"".(*SectionReader).Read,go.string.hdr."ReadAt"Ltype.func([]uint8, int64) (int, error)rtype.func(*"".SectionReader, []uint8, int64) (int, error)4"".(*SectionReader).ReadAt4"".(*SectionReader).ReadAt(go.string.hdr."Seek"Htype.func(int64, int) (int64, error)ntype.func(*"".SectionReader, int64, int) (int64, error)0"".(*SectionReader).Seek0"".(*SectionReader).Seek(go.string.hdr."Size""type.func() int64Dtype.func(*"".SectionReader) int640"".(*SectionReader).Size0"".(*SectionReader).Size@go.string.hdr."io.SectionReader" 8go.string."io.SectionReader"8go.string."io.SectionReader"0"io.SectionReader"go.string.hdr."r" go.string."r"go.string."r"r(go.string.hdr."base" go.string."base" go.string."base" 1240 base&go.string.hdr."off" go.string."off"go.string."off"off*go.string.hdr."limit" "go.string."limit""go.string."limit"limit:go.string.hdr."SectionReader" 2go.string."SectionReader"2go.string."SectionReader" SectionReader*type."".SectionReader(MS ,04type..alg."".SectionReader@"runtime.gcbits.03P@go.string.hdr."io.SectionReader"p,type.*"".SectionReader"runtime.zerovalue*type."".SectionReader"go.string.hdr."r""go.importpath."". type."".ReaderAt(go.string.hdr."base""go.importpath."".type.int64&go.string.hdr."off""go.importpath."".type.int64*go.string.hdr."limit""go.importpath."".type.int64`*type."".SectionReader:go.string.hdr."SectionReader""go.importpath."".*type."".SectionReaderTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocalse85dd0d10221e69476a0daf9bc0a53b6((Tgclocals9c91d8a91ac42440a3d1507bc8d2e808((6type..hashfunc."".teeReader.type..hash."".teeReader2type..eqfunc."".teeReader*type..eq."".teeReader,type..alg."".teeReader 6type..hashfunc."".teeReader2type..eqfunc."".teeReader:go.string.hdr."*io.teeReader" 2go.string."*io.teeReader"2go.string."*io.teeReader" *io.teeReaderrgo.string.hdr."func(*io.teeReader, []uint8) (int, error)" )jgo.string."func(*io.teeReader, []uint8) (int, error)"jgo.string."func(*io.teeReader, []uint8) (int, error)"`Tfunc(*io.teeReader, []uint8) (int, error)\type.func(*"".teeReader, []uint8) (int, error)30 runtime.algarray@"runtime.gcbits.01Prgo.string.hdr."func(*io.teeReader, []uint8) (int, error)"pngo.weak.type.*func(*"".teeReader, []uint8) (int, error)"runtime.zerovalue\type.func(*"".teeReader, []uint8) (int, error)\type.func(*"".teeReader, []uint8) (int, error)$type.*"".teeReadertype.[]uint8type.inttype.errorgo.typelink.func(*io.teeReader, []uint8) (int, error) func(*"".teeReader, []uint8) (int, error)\type.func(*"".teeReader, []uint8) (int, error)$type.*"".teeReader60 runtime.algarray@"runtime.gcbits.01P:go.string.hdr."*io.teeReader"p6go.weak.type.**"".teeReader"runtime.zerovalue"type."".teeReader`$type.*"".teeReader$type.*"".teeReader(go.string.hdr."Read">type.func([]uint8) (int, error)\type.func(*"".teeReader, []uint8) (int, error)("".(*teeReader).Read("".(*teeReader).Read"runtime.gcbits.0f8go.string.hdr."io.teeReader" 0go.string."io.teeReader"0go.string."io.teeReader" io.teeReader"go.string.hdr."w" go.string."w"go.string."w"w2go.string.hdr."teeReader" *go.string."teeReader"*go.string."teeReader" teeReader"type."".teeReader f<B 0,type..alg."".teeReader@"runtime.gcbits.0fP8go.string.hdr."io.teeReader"p$type.*"".teeReader"runtime.zerovalue"type."".teeReader"go.string.hdr."r""go.importpath."".type."".Reader"go.string.hdr."w""go.importpath."".type."".Writer`"type."".teeReader2go.string.hdr."teeReader""go.importpath.""."type."".teeReader6go.string.hdr."[]io.Reader" .go.string."[]io.Reader".go.string."[]io.Reader" []io.Reader type.[]"".Reader~z|0 runtime.algarray@"runtime.gcbits.01P6go.string.hdr."[]io.Reader"p2go.weak.type.*[]"".Reader"runtime.zerovaluetype."".ReaderFgo.typelink.[]io.Reader []"".Reader type.[]"".Reader<go.string.hdr."io.multiReader" 4go.string."io.multiReader"4go.string."io.multiReader" io.multiReader.go.string.hdr."readers" &go.string."readers"&go.string."readers"readers6go.string.hdr."multiReader" .go.string."multiReader".go.string."multiReader" multiReader&type."".multiReaderIK0 runtime.algarray@"runtime.gcbits.01P<go.string.hdr."io.multiReader"p(type.*"".multiReader"runtime.zerovalue&type."".multiReader.go.string.hdr."readers""go.importpath."". type.[]"".Reader`&type."".multiReader6go.string.hdr."multiReader""go.importpath."".&type."".multiReader>go.string.hdr."*io.multiReader" 6go.string."*io.multiReader"6go.string."*io.multiReader" *io.multiReadervgo.string.hdr."func(*io.multiReader, []uint8) (int, error)" +ngo.string."func(*io.multiReader, []uint8) (int, error)"ngo.string."func(*io.multiReader, []uint8) (int, error)"`Xfunc(*io.multiReader, []uint8) (int, error)`type.func(*"".multiReader, []uint8) (int, error)30 runtime.algarray@"runtime.gcbits.01Pvgo.string.hdr."func(*io.multiReader, []uint8) (int, error)"prgo.weak.type.*func(*"".multiReader, []uint8) (int, error)"runtime.zerovalue`type.func(*"".multiReader, []uint8) (int, error)`type.func(*"".multiReader, []uint8) (int, error)(type.*"".multiReadertype.[]uint8type.inttype.errorgo.typelink.func(*io.multiReader, []uint8) (int, error) func(*"".multiReader, []uint8) (int, error)`type.func(*"".multiReader, []uint8) (int, error)(type.*"".multiReaderk60 runtime.algarray@"runtime.gcbits.01P>go.string.hdr."*io.multiReader"p:go.weak.type.**"".multiReader"runtime.zerovalue&type."".multiReader`(type.*"".multiReader(type.*"".multiReader(go.string.hdr."Read">type.func([]uint8) (int, error)`type.func(*"".multiReader, []uint8) (int, error),"".(*multiReader).Read,"".(*multiReader).Read6go.string.hdr."[]io.Writer" .go.string."[]io.Writer".go.string."[]io.Writer" []io.Writer type.[]"".Writero 1251 n0 runtime.algarray@"runtime.gcbits.01P6go.string.hdr."[]io.Writer"p2go.weak.type.*[]"".Writer"runtime.zerovaluetype."".WriterFgo.typelink.[]io.Writer []"".Writer type.[]"".Writer<go.string.hdr."io.multiWriter" 4go.string."io.multiWriter"4go.string."io.multiWriter" io.multiWriter.go.string.hdr."writers" &go.string."writers"&go.string."writers"writers6go.string.hdr."multiWriter" .go.string."multiWriter".go.string."multiWriter" multiWriter&type."".multiWritero0 runtime.algarray@"runtime.gcbits.01P<go.string.hdr."io.multiWriter"p(type.*"".multiWriter"runtime.zerovalue&type."".multiWriter.go.string.hdr."writers""go.importpath."". type.[]"".Writer`&type."".multiWriter6go.string.hdr."multiWriter""go.importpath."".&type."".multiWriter>go.string.hdr."*io.multiWriter" 6go.string."*io.multiWriter"6go.string."*io.multiWriter" *io.multiWritervgo.string.hdr."func(*io.multiWriter, []uint8) (int, error)" +ngo.string."func(*io.multiWriter, []uint8) (int, error)"ngo.string."func(*io.multiWriter, []uint8) (int, error)"`Xfunc(*io.multiWriter, []uint8) (int, error)`type.func(*"".multiWriter, []uint8) (int, error)>W 1254 30 runtime.algarray@"runtime.gcbits.01Pvgo.string.hdr."func(*io.multiWriter, []uint8) (int, error)"prgo.weak.type.*func(*"".multiWriter, []uint8) (int, error)"runtime.zerovalue`type.func(*"".multiWriter, []uint8) (int, error)`type.func(*"".multiWriter, []uint8) (int, error)(type.*"".multiWritertype.[]uint8type.inttype.errorgo.typelink.func(*io.multiWriter, []uint8) (int, error) func(*"".multiWriter, []uint8) (int, error)`type.func(*"".multiWriter, []uint8) (int, error)(type.*"".multiWriterhe"60 runtime.algarray@"runtime.gcbits.01P>go.string.hdr."*io.multiWriter"p:go.weak.type.**"".multiWriter"runtime.zerovalue&type."".multiWriter`(type.*"".multiWriter(type.*"".multiWriter*go.string.hdr."Write">type.func([]uint8) (int, error)`type.func(*"".multiWriter, []uint8) (int, error)."".(*multiWriter).Write."".(*multiWriter).Write*runtime.gcbits.c866f3f.go.string.hdr."io.pipe" &go.string."io.pipe"&go.string."io.pipe"io.pipe$go.string.hdr."rl" go.string."rl"go.string."rl"rl$go.string.hdr."wl" go.string."wl"go.string."wl"wl"go.string.hdr."l" go.string."l"go.string."l"l(go.string.hdr."data" go.string."data" go.string."data" 1255 data*go.string.hdr."rwait" "go.string."rwait""go.string."rwait"rwait*go.string.hdr."wwait" "go.string."wwait""go.string."wwait"wwait(go.string.hdr."rerr" go.string."rerr" go.string."rerr" 1258 rerr(go.string.hdr."werr" go.string."werr" go.string."werr" 1259 werr(go.string.hdr."pipe" go.string."pipe" go.string."pipe" 1260 pipetype."".pipej0hD0 runtime.algarray@*runtime.gcbits.c866f3P.go.string.hdr."io.pipe"ptype.*"".pipe"runtime.zerovaluetype."".pipe$go.string.hdr."rl""go.importpath."".type.sync.Mutex$go.string.hdr."wl""go.importpath."".type.sync.Mutex"go.string.hdr."l""go.importpath."".type.sync.Mutex(go.string.hdr."data""go.importpath."".type.[]uint8*go.string.hdr."rwait""go.importpath."".type.sync.Cond*go.string.hdr."wwait""go.importpath."".type.sync.Cond(go.string.hdr."rerr""go.importpath."".type.error(go.string.hdr."werr""go.importpath."".type.error`type."".pipe(go.string.hdr."pipe""go.importpath."".type."".pipe0go.string.hdr."*io.pipe" (go.string."*io.pipe"(go.string."*io.pipe" *io.pipeJgo.string.hdr."func(*io.pipe, error)" Bgo.string."func(*io.pipe, error)"Bgo.string."func(*io.pipe, error)"0,func(*io.pipe, error)4type.func(*"".pipe, error)*30 runtime.algarray@"runtime.gcbits.01PJgo.string.hdr."func(*io.pipe, error)"pFgo.weak.type.*func(*"".pipe, error)"runtime.zerovalue4type.func(*"".pipe, error)4type.func(*"".pipe, error)type.*"".pipetype.errorngo.typelink.func(*io.pipe, error) func(*"".pipe, error)4type.func(*"".pipe, error)hgo.string.hdr."func(*io.pipe, []uint8) (int, error)" $`go.string."func(*io.pipe, []uint8) (int, error)"`go.string."func(*io.pipe, []uint8) (int, error)"PJfunc(*io.pipe, []uint8) (int, error)Rtype.func(*"".pipe, []uint8) (int, error)30 runtime.algarray@"runtime.gcbits.01Phgo.string.hdr."func(*io.pipe, []uint8) (int, error)"pdgo.weak.type.*func(*"".pipe, []uint8) (int, error)"runtime.zerovalueRtype.func(*"".pipe, []uint8) (int, error)Rtype.func(*"".pipe, []uint8) (int, error)type.*"".pipetype.[]uint8type.inttype.errorgo.typelink.func(*io.pipe, []uint8) (int, error) func(*"".pipe, []uint8) (int, error)Rtype.func(*"".pipe, []uint8) (int, error),go.string.hdr."rclose" $go.string."rclose"$go.string."rclose"rclose6go.string.hdr."func(error)" .go.string."func(error)".go.string."func(error)" func(error) type.func(error)['g30 runtime.algarray@"runtime.gcbits.01P6go.string.hdr."func(error)"p2go.weak.type.*func(error)"runtime.zerovalue type.func(error) type.func(error)type.errorFgo.typelink.func(error) func(error) type.func(error)(go.string.hdr."read" go.string."read" go.string."read" 1262 read,go.string.hdr."wclose" $go.string."wclose"$go.string."wclose"wclose*go.string.hdr."write" "go.string."write""go.string."write"writetype.*"".pipe5j6@0 runtime.algarray@"runtime.gcbits.01P0go.string.hdr."*io.pipe"p,go.weak.type.**"".pipe"runtime.zerovaluetype."".pipe`type.*"".pipetype.*"".pipe,go.string.hdr."rclose""go.importpath."". type.func(error)4type.func(*"".pipe, error)""".(*pipe).rclose""".(*pipe).rclose(go.string.hdr."read""go.importpath."".>type.func([]uint8) (int, error)Rtype.func(*"".pipe, []uint8) (int, error)"".(*pipe).read"".(*pipe).read,go.string.hdr."wclose""go.importpath."". type.func(error)4type.func(*"".pipe, error)""".(*pipe).wclose""".(*pipe).wclose*go.string.hdr."write""go.importpath."".>type.func([]uint8) (int, error)Rtype.func(*"".pipe, []uint8) (int, error) "".(*pipe).write "".(*pipe).write:go.string.hdr."io.PipeReader" 2go.string."io.PipeReader"2go.string."io.PipeReader" io.PipeReader"go.string.hdr."p" go.string."p"go.string."p"p4go.string.hdr."PipeReader" 1265 ,go.string."PipeReader",go.string."PipeReader" PipeReader$type."".PipeReaderb90 runtime.algarray@"runtime.gcbits.01P:go.string.hdr."io.PipeReader"p&type.*"".PipeReader"runtime.zerovalue$type."".PipeReader"go.string.hdr."p""go.importpath."".type.*"".pipe`$type."".PipeReader4go.string.hdr."PipeReader""go.importpath."".$type."".PipeReader<go.string.hdr."*io.PipeReader" 4go.string."*io.PipeReader"4go.string."*io.PipeReader" *io.PipeReaderTgo.string.hdr."func(*io.PipeReader) error" Lgo.string."func(*io.PipeReader) error"Lgo.string."func(*io.PipeReader) error"@6func(*io.PipeReader) error>type.func(*"".PipeReader) errorDj30 runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."func(*io.PipeReader) error"pPgo.weak.type.*func(*"".PipeReader) error"runtime.zerovalue>type.func(*"".PipeReader) error>type.func(*"".PipeReader) error&type.*"".PipeReadertype.errorgo.typelink.func(*io.PipeReader) error func(*"".PipeReader) error>type.func(*"".PipeReader) errorbgo.string.hdr."func(*io.PipeReader, error) error" !Zgo.string."func(*io.PipeReader, error) error"Zgo.string."func(*io.PipeReader, error) error"PDfunc(*io.PipeReader, error) errorLtype.func(*"".PipeReader, error) error30 runtime.algarray@"runtime.gcbits.01Pbgo.string.hdr."func(*io.PipeReader, error) error"p^go.weak.type.*func(*"".PipeReader, error) error"runtime.zerovalueLtype.func(*"".PipeReader, error) errorLtype.func(*"".PipeReader, error) error&type.*"".PipeReadertype.errortype.errorgo.typelink.func(*io.PipeReader, error) error func(*"".PipeReader, error) errorLtype.func(*"".PipeReader, error) errortgo.string.hdr."func(*io.PipeReader, []uint8) (int, error)" *lgo.string."func(*io.PipeReader, []uint8) (int, error)"lgo.string."func(*io.PipeReader, []uint8) (int, error)"`Vfunc(*io.PipeReader, []uint8) (int, error)^type.func(*"".PipeReader, []uint8) (int, error)F30 runtime.algarray@"runtime.gcbits.01Ptgo.string.hdr."func(*io.PipeReader, []uint8) (int, error)"ppgo.weak.type.*func(*"".PipeReader, []uint8) (int, error)"runtime.zerovalue^type.func(*"".PipeReader, []uint8) (int, error)^type.func(*"".PipeReader, []uint8) (int, error)&type.*"".PipeReadertype.[]uint8type.inttype.errorgo.typelink.func(*io.PipeReader, []uint8) (int, error) func(*"".PipeReader, []uint8) (int, error)^type.func(*"".PipeReader, []uint8) (int, error)*go.string.hdr."Close" "go.string."Close""go.string."Close"Close8go.string.hdr."func() error" 0go.string."func() error"0go.string."func() error" func() error"type.func() error30 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() error<go.string.hdr."CloseWithError" 4go.string."CloseWithError"4go.string."CloseWithError" CloseWithErrorBgo.string.hdr."func(error) error" :go.string."func(error) error":go.string."func(error) error"0$func(error) error,type.func(error) error}6%30 runtime.algarray@"runtime.gcbits.01PBgo.string.hdr."func(error) error"p>go.weak.type.*func(error) error"runtime.zerovalue,type.func(error) error,type.func(error) errortype.errortype.error^go.typelink.func(error) error func(error) error,type.func(error) error&type.*"".PipeReaderp!6.0 runtime.algarray@"runtime.gcbits.01P<go.string.hdr."*io.PipeReader"p8go.weak.type.**"".PipeReader"runtime.zerovalue$type."".PipeReader`&type.*"".PipeReader&type.*"".PipeReader*go.string.hdr."Close""type.func() error>type.func(*"".PipeReader) error,"".(*PipeReader).Close,"".(*PipeReader).Close<go.string.hdr."CloseWithError",type.func(error) errorLtype.func(*"".PipeReader, error) error>"".(*PipeReader).CloseWithError>"".(*PipeReader).CloseWithError(go.string.hdr."Read">type.func([]uint8) (int, error)^type.func(*"".PipeReader, []uint8) (int, error)*"".(*PipeReader).Read*"".(*PipeReader).Read:go.string.hdr."io.PipeWriter" 2go.string."io.PipeWriter"2go.string."io.PipeWriter" io.PipeWriter4go.string.hdr."PipeWriter" 1270 ,go.string."PipeWriter",go.string."PipeWriter" PipeWriter$type."".PipeWriter,90 runtime.algarray@"runtime.gcbits.01P:go.string.hdr."io.PipeWriter"p&type.*"".PipeWriter"runtime.zerovalue$type."".PipeWriter"go.string.hdr."p""go.importpath."".type.*"".pipe`$type."".PipeWriter4go.string.hdr."PipeWriter""go.importpath."".$type."".PipeWriter<go.string.hdr."*io.PipeWriter" 4go.string."*io.PipeWriter"4go.string."*io.PipeWriter" *io.PipeWriterTgo.string.hdr."func(*io.PipeWriter) error" Lgo.string."func(*io.PipeWriter) error"Lgo.string."func(*io.PipeWriter) error"@6func(*io.PipeWriter) error>type.func(*"".PipeWriter) error*h30 runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."func(*io.PipeWriter) error"pPgo.weak.type.*func(*"".PipeWriter) error"runtime.zerovalue>type.func(*"".PipeWriter) error>type.func(*"".PipeWriter) error&type.*"".PipeWritertype.errorgo.typelink.func(*io.PipeWriter) error func(*"".PipeWriter) error>type.func(*"".PipeWriter) errorbgo.string.hdr."func(*io.PipeWriter, error) error" !Zgo.string."func(*io.PipeWriter, error) error"Zgo.string."func(*io.PipeWriter, error) error"PDfunc(*io.PipeWriter, error) errorLtype.func(*"".PipeWriter, error) error 30 runtime.algarray@"runtime.gcbits.01Pbgo.string.hdr."func(*io.PipeWriter, error) error"p^go.weak.type.*func(*"".PipeWriter, error) error"runtime.zerovalueLtype.func(*"".PipeWriter, error) errorLtype.func(*"".PipeWriter, error) error&type.*"".PipeWritertype.errortype.errorgo.typelink.func(*io.PipeWriter, error) error func(*"".PipeWriter, error) errorLtype.func(*"".PipeWriter, error) errortgo.string.hdr."func(*io.PipeWriter, []uint8) (int, error)" *lgo.string."func(*io.PipeWriter, []uint8) (int, error)"lgo.string."func(*io.PipeWriter, []uint8) (int, error)"`Vfunc(*io.PipeWriter, []uint8) (int, error)^type.func(*"".PipeWriter, []uint8) (int, error);30 runtime.algarray@"runtime.gcbits.01Ptgo.string.hdr."func(*io.PipeWriter, []uint8) (int, error)"ppgo.weak.type.*func(*"".PipeWriter, []uint8) (int, error)"runtime.zerovalue^type.func(*"".PipeWriter, []uint8) (int, error)^type.func(*"".PipeWriter, []uint8) (int, error)&type.*"".PipeWritertype.[]uint8type.inttype.errorgo.typelink.func(*io.PipeWriter, []uint8) (int, error) func(*"".PipeWriter, []uint8) (int, error)^type.func(*"".PipeWriter, []uint8) (int, error)&type.*"".PipeWriter@q6.0 runtime.algarray@"runtime.gcbits.01P<go.string.hdr."*io.PipeWriter"p8go.weak.type.**"".PipeWriter"runtime.zerovalue$type."".PipeWriter`&type.*"".PipeWriter&type.*"".PipeWriter*go.string.hdr."Close""type.func() error>type.func(*"".PipeWriter) error,"".(*PipeWriter).Close,"".(*PipeWriter).Close<go.string.hdr."CloseWithError",type.func(error) errorLtype.func(*"".PipeWriter, error) error>"".(*PipeWriter).CloseWithError>"".(*PipeWriter).CloseWithError*go.string.hdr."Write">type.func([]uint8) (int, error)^type.func(*"".PipeWriter, []uint8) (int, error),"".(*PipeWriter).Write,"".(*PipeWriter).Writeruntime.gcbits.0go.string.hdr."[0]uint8" (go.string."[0]uint8"(go.string."[0]uint8" [0]uint8type.[0]uint8l0 runtime.algarray@runtime.gcbits.P0go.string.hdr."[0]uint8"p,go.weak.type.*[0]uint8"runtime.zerovaluetype.uint8type.[]uint8:go.typelink.[0]uint8 [0]uint8type.[0]uint8Tgclocalsc55cf99de9cdd8c8202a466952fa1a45 Tgclocals19b49d53e9c11805652fa4c0885cbb29 4go.string.hdr."*io.Closer" 1272 ,go.string."*io.Closer",go.string."*io.Closer" *io.Closertype.*"".Closer 60 runtime.algarray@"runtime.gcbits.01P4go.string.hdr."*io.Closer"p0go.weak.type.**"".Closer"runtime.zerovaluetype."".Closer2go.string.hdr."io.Closer" *go.string."io.Closer"*go.string."io.Closer" io.Closer,go.string.hdr."Closer" $go.string."Closer"$go.string."Closer"Closertype."".CloserR80 runtime.algarray@"runtime.gcbits.03P2go.string.hdr."io.Closer"ptype.*"".Closer"runtime.zerovaluetype."".Closer*go.string.hdr."Close""type.func() error`type."".Closer,go.string.hdr."Closer""go.importpath."".type."".CloserTgclocalsc55cf99de9cdd8c8202a466952fa1a45 Tgclocals8cf14f50ac1bf7ae2848fda35f0590ec c4go.string.hdr."*io.Seeker" 1274 ,go.string."*io.Seeker",go.string."*io.Seeker" *io.Seekertype.*"".Seeker l60 runtime.algarray@"runtime.gcbits.01P4go.string.hdr."*io.Seeker"p0go.weak.type.**"".Seeker"runtime.zerovaluetype."".Seeker2go.string.hdr."io.Seeker" *go.string."io.Seeker"*go.string."io.Seeker" io.Seeker,go.string.hdr."Seeker" $go.string."Seeker"$go.string."Seeker"Seekertype."".Seeker0 runtime.algarray@"runtime.gcbits.03P2go.string.hdr."io.Seeker"ptype.*"".Seeker"runtime.zerovaluetype."".Seeker(go.string.hdr."Seek"Htype.func(int64, int) (int64, error)`type."".Seeker,go.string.hdr."Seeker""go.importpath."".type."".SeekerTgclocalsc55cf99de9cdd8c8202a466952fa1a45 Tgclocalsd2fd9951e910becfd07ba7f8ff7b525a Tgclocalsc55cf99de9cdd8c8202a466952fa1a45 Tgclocalsd2fd9951e910becfd07ba7f8ff7b525a <go.string.hdr."*io.ReadWriter" 4go.string."*io.ReadWriter"4go.string."*io.ReadWriter" *io.ReadWriter&type.*"".ReadWriterq:~60 runtime.algarray@"runtime.gcbits.01P<go.string.hdr."*io.ReadWriter"p8go.weak.type.**"".ReadWriter"runtime.zerovalue$type."".ReadWriter:go.string.hdr."io.ReadWriter" 2go.string."io.ReadWriter"2go.string."io.ReadWriter" io.ReadWriter4go.string.hdr."ReadWriter" 1279 ,go.string."ReadWriter",go.string."ReadWriter" ReadWriter$type."".ReadWriterz0 runtime.algarray@"runtime.gcbits.03P:go.string.hdr."io.ReadWriter"p&type.*"".ReadWriter"runtime.zerovalue$type."".ReadWriter(go.string.hdr."Read">type.func([]uint8) (int, error)*go.string.hdr."Write">type.func([]uint8) (int, error)`$type."".ReadWriter4go.string.hdr."ReadWriter""go.importpath."".$type."".ReadWriterTgclocalsc55cf99de9cdd8c8202a466952fa1a45 Tgclocals19b49d53e9c11805652fa4c0885cbb29 Tgclocalsc55cf99de9cdd8c8202a466952fa1a45 Tgclocalsd2fd9951e910becfd07ba7f8ff7b525a <go.string.hdr."*io.ReadCloser" 4go.string."*io.ReadCloser"4go.string."*io.ReadCloser" *io.ReadCloser&type.*"".ReadCloser60 runtime.algarray@"runtime.gcbits.01P<go.string.hdr."*io.ReadCloser"p8go.weak.type.**"".ReadCloser"runtime.zerovalue$type."".ReadCloser:go.string.hdr."io.ReadCloser" 2go.string."io.ReadCloser"2go.string."io.ReadCloser" io.ReadCloser4go.string.hdr."ReadCloser" 1283 ,go.string."ReadCloser",go.string."ReadCloser" ReadCloser$type."".ReadCloser40 runtime.algarray@"runtime.gcbits.03P:go.string.hdr."io.ReadCloser"p&type.*"".ReadCloser"runtime.zerovalue$type."".ReadCloser*go.string.hdr."Close""type.func() error(go.string.hdr."Read">type.func([]uint8) (int, error)`$type."".ReadCloser4go.string.hdr."ReadCloser""go.importpath."".$type."".ReadCloserTgclocalsc55cf99de9cdd8c8202a466952fa1a45 Tgclocals19b49d53e9c11805652fa4c0885cbb29 Tgclocalsc55cf99de9cdd8c8202a466952fa1a45 Tgclocalsd2fd9951e910becfd07ba7f8ff7b525a >go.string.hdr."*io.WriteCloser" 6go.string."*io.WriteCloser"6go.string."*io.WriteCloser" *io.WriteCloser(type.*"".WriteCloser660 runtime.algarray@"runtime.gcbits.01P>go.string.hdr."*io.WriteCloser"p:go.weak.type.**"".WriteCloser"runtime.zerovalue&type."".WriteCloser<go.string.hdr."io.WriteCloser" 4go.string."io.WriteCloser"4go.string."io.WriteCloser" io.WriteCloser6go.string.hdr."WriteCloser" .go.string."WriteCloser".go.string."WriteCloser" WriteCloser&type."".WriteCloser0 runtime.algarray@"runtime.gcbits.03P<go.string.hdr."io.WriteCloser"p(type.*"".WriteCloser"runtime.zerovalue&type."".WriteCloser*go.string.hdr."Close""type.func() error*go.string.hdr."Write">type.func([]uint8) (int, error)`&type."".WriteCloser6go.string.hdr."WriteCloser""go.importpath."".&type."".WriteCloserTgclocalsc55cf99de9cdd8c8202a466952fa1a45 Tgclocals19b49d53e9c11805652fa4c0885cbb29 Tgclocalsc55cf99de9cdd8c8202a466952fa1a45 Tgclocalsd2fd9951e910becfd07ba7f8ff7b525a Tgclocalsc55cf99de9cdd8c8202a466952fa1a45 Tgclocalsd2fd9951e910becfd07ba7f8ff7b525a Fgo.string.hdr."*io.ReadWriteCloser" >go.string."*io.ReadWriteCloser">go.string."*io.ReadWriteCloser"0(*io.ReadWriteCloser0type.*"".ReadWriteCloser'460 runtime.algarray@"runtime.gcbits.01PFgo.string.hdr."*io.ReadWriteCloser"pBgo.weak.type.**"".ReadWriteCloser"runtime.zerovalue.type."".ReadWriteCloserDgo.string.hdr."io.ReadWriteCloser" <go.string."io.ReadWriteCloser"<go.string."io.ReadWriteCloser"0&io.ReadWriteCloser>go.string.hdr."ReadWriteCloser" 6go.string."ReadWriteCloser"6go.string."ReadWriteCloser" ReadWriteCloser.type."".ReadWriteCloserr@ 0 runtime.algarray@"runtime.gcbits.03PDgo.string.hdr."io.ReadWriteCloser"p0type.*"".ReadWriteCloser"runtime.zerovalue.type."".ReadWriteCloser*go.string.hdr."Close""type.func() error(go.string.hdr."Read">type.func([]uint8) (int, error)*go.string.hdr."Write">type.func([]uint8) (int, error)`.type."".ReadWriteCloser>go.string.hdr."ReadWriteCloser""go.importpath.""..type."".ReadWriteCloserTgclocalsc55cf99de9cdd8c8202a466952fa1a45 Tgclocalsd2fd9951e910becfd07ba7f8ff7b525a Tgclocalsc55cf99de9cdd8c8202a466952fa1a45 Tgclocals8cf14f50ac1bf7ae2848fda35f0590ec c<go.string.hdr."*io.ReadSeeker" 4go.string."*io.ReadSeeker"4go.string."*io.ReadSeeker" *io.ReadSeeker&type.*"".ReadSeeker60 runtime.algarray@"runtime.gcbits.01P<go.string.hdr."*io.ReadSeeker"p8go.weak.type.**"".ReadSeeker"runtime.zerovalue$type."".ReadSeeker:go.string.hdr."io.ReadSeeker" 2go.string."io.ReadSeeker"2go.string."io.ReadSeeker" io.ReadSeeker4go.string.hdr."ReadSeeker" 1289 ,go.string."ReadSeeker",go.string."ReadSeeker" ReadSeeker$type."".ReadSeekerV3 1290 :0 runtime.algarray@"runtime.gcbits.03P:go.string.hdr."io.ReadSeeker"p&type.*"".ReadSeeker"runtime.zerovalue$type."".ReadSeeker(go.string.hdr."Read">type.func([]uint8) (int, error)(go.string.hdr."Seek"Htype.func(int64, int) (int64, error)`$type."".ReadSeeker4go.string.hdr."ReadSeeker""go.importpath."".$type."".ReadSeekerTgclocalsc55cf99de9cdd8c8202a466952fa1a45 Tgclocals8cf14f50ac1bf7ae2848fda35f0590ec cTgclocalsc55cf99de9cdd8c8202a466952fa1a45 Tgclocalsd2fd9951e910becfd07ba7f8ff7b525a >go.string.hdr."*io.WriteSeeker" 6go.string."*io.WriteSeeker"6go.string."*io.WriteSeeker" *io.WriteSeeker(type.*"".WriteSeekerq60 runtime.algarray@"runtime.gcbits.01P>go.string.hdr."*io.WriteSeeker"p:go.weak.type.**"".WriteSeeker"runtime.zerovalue&type."".WriteSeeker<go.string.hdr."io.WriteSeeker" 4go.string."io.WriteSeeker"4go.string."io.WriteSeeker" io.WriteSeeker6go.string.hdr."WriteSeeker" .go.string."WriteSeeker".go.string."WriteSeeker" WriteSeeker&type."".WriteSeeker-0 runtime.algarray@"runtime.gcbits.03P<go.string.hdr."io.WriteSeeker"p(type.*"".WriteSeeker"runtime.zerovalue&type."".WriteSeeker(go.string.hdr."Seek"Htype.func(int64, int) (int64, error)*go.string.hdr."Write">type.func([]uint8) (int, error)`&type."".WriteSeeker6go.string.hdr."WriteSeeker""go.importpath."".&type."".WriteSeekerTgclocalsc55cf99de9cdd8c8202a466952fa1a45 Tgclocalsd2fd9951e910becfd07ba7f8ff7b525a Tgclocalsc55cf99de9cdd8c8202a466952fa1a45 Tgclocals8cf14f50ac1bf7ae2848fda35f0590ec cTgclocalsc55cf99de9cdd8c8202a466952fa1a45 Tgclocalsd2fd9951e910becfd07ba7f8ff7b525a Fgo.string.hdr."*io.ReadWriteSeeker" >go.string."*io.ReadWriteSeeker">go.string."*io.ReadWriteSeeker"0(*io.ReadWriteSeeker0type.*"".ReadWriteSeekerSS60 runtime.algarray@"runtime.gcbits.01PFgo.string.hdr."*io.ReadWriteSeeker"pBgo.weak.type.**"".ReadWriteSeeker"runtime.zerovalue.type."".ReadWriteSeekerDgo.string.hdr."io.ReadWriteSeeker" <go.string."io.ReadWriteSeeker"<go.string."io.ReadWriteSeeker"0&io.ReadWriteSeeker>go.string.hdr."ReadWriteSeeker" 6go.string."ReadWriteSeeker"6go.string."ReadWriteSeeker" ReadWriteSeeker.type."".ReadWriteSeeker 0 runtime.algarray@"runtime.gcbits.03PDgo.string.hdr."io.ReadWriteSeeker"p0type.*"".ReadWriteSeeker"runtime.zerovalue.type."".ReadWriteSeeker(go.string.hdr."Read">type.func([]uint8) (int, error)(go.string.hdr."Seek"Htype.func(int64, int) (int64, error)*go.string.hdr."Write">type.func([]uint8) (int, error)`.type."".ReadWriteSeeker>go.string.hdr."ReadWriteSeeker""go.importpath.""..type."".ReadWriteSeekerTgclocalsc55cf99de9cdd8c8202a466952fa1a45 Tgclocalse666601616cf0fe680da12e820a0d8ce 8go.string.hdr."*io.WriterAt" 0go.string."*io.WriterAt"0go.string."*io.WriterAt" *io.WriterAt"type.*"".WriterAttd60 runtime.algarray@"runtime.gcbits.01P8go.string.hdr."*io.WriterAt"p4go.weak.type.**"".WriterAt"runtime.zerovalue type."".WriterAt6go.string.hdr."io.WriterAt" .go.string."io.WriterAt".go.string."io.WriterAt" io.WriterAt.go.string.hdr."WriteAt" &go.string."WriteAt"&go.string."WriteAt"WriteAt0go.string.hdr."WriterAt" (go.string."WriterAt"(go.string."WriterAt" WriterAt type."".WriterAt0 runtime.algarray@"runtime.gcbits.03P6go.string.hdr."io.WriterAt"p"type.*"".WriterAt"runtime.zerovalue type."".WriterAt.go.string.hdr."WriteAt"Ltype.func([]uint8, int64) (int, error)` type."".WriterAt0go.string.hdr."WriterAt""go.importpath."". type."".WriterAtTgclocalsc55cf99de9cdd8c8202a466952fa1a45 Tgclocalse4b5616e5783a0b08ed3851f8c75ffed Jgo.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)<go.string.hdr."*io.ByteReader" 4go.string."*io.ByteReader"4go.string."*io.ByteReader" *io.ByteReader&type.*"".ByteReader60 runtime.algarray@"runtime.gcbits.01P<go.string.hdr."*io.ByteReader"p8go.weak.type.**"".ByteReader"runtime.zerovalue$type."".ByteReader:go.string.hdr."io.ByteReader" 2go.string."io.ByteReader"2go.string."io.ByteReader" io.ByteReader0go.string.hdr."ReadByte" (go.string."ReadByte"(go.string."ReadByte" ReadByte4go.string.hdr."ByteReader" 1300 ,go.string."ByteReader",go.string."ByteReader" ByteReader$type."".ByteReaderim0 runtime.algarray@"runtime.gcbits.03P:go.string.hdr."io.ByteReader"p&type.*"".ByteReader"runtime.zerovalue$type."".ByteReader0go.string.hdr."ReadByte"4type.func() (uint8, error)`$type."".ByteReader4go.string.hdr."ByteReader""go.importpath."".$type."".ByteReaderTgclocalsc55cf99de9cdd8c8202a466952fa1a45 Tgclocalse4b5616e5783a0b08ed3851f8c75ffed Tgclocalsc55cf99de9cdd8c8202a466952fa1a45 Tgclocals19b49d53e9c11805652fa4c0885cbb29 >go.string.hdr."*io.ByteScanner" 6go.string."*io.ByteScanner"6go.string."*io.ByteScanner" *io.ByteScanner(type.*"".ByteScanner360 runtime.algarray@"runtime.gcbits.01P>go.string.hdr."*io.ByteScanner"p:go.weak.type.**"".ByteScanner"runtime.zerovalue&type."".ByteScanner<go.string.hdr."io.ByteScanner" 4go.string."io.ByteScanner"4go.string."io.ByteScanner" io.ByteScanner4go.string.hdr."UnreadByte" 1302 ,go.string."UnreadByte",go.string."UnreadByte" UnreadByte6go.string.hdr."ByteScanner" .go.string."ByteScanner".go.string."ByteScanner" ByteScanner&type."".ByteScanner("0 runtime.algarray@"runtime.gcbits.03P<go.string.hdr."io.ByteScanner"p(type.*"".ByteScanner"runtime.zerovalue&type."".ByteScanner0go.string.hdr."ReadByte"4type.func() (uint8, error)4go.string.hdr."UnreadByte""type.func() error`&type."".ByteScanner6go.string.hdr."ByteScanner""go.importpath."".&type."".ByteScannerTgclocalsc55cf99de9cdd8c8202a466952fa1a45 Tgclocalse4b5616e5783a0b08ed3851f8c75ffed Bgo.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) error<go.string.hdr."*io.ByteWriter" 4go.string."*io.ByteWriter"4go.string."*io.ByteWriter" *io.ByteWriter&type.*"".ByteWriterm)60 runtime.algarray@"runtime.gcbits.01P<go.string.hdr."*io.ByteWriter"p8go.weak.type.**"".ByteWriter"runtime.zerovalue$type."".ByteWriter:go.string.hdr."io.ByteWriter" 2go.string."io.ByteWriter"2go.string."io.ByteWriter" io.ByteWriter2go.string.hdr."WriteByte" *go.string."WriteByte"*go.string."WriteByte" WriteByte4go.string.hdr."ByteWriter" 1306 ,go.string."ByteWriter",go.string."ByteWriter" ByteWriter$type."".ByteWriterM0 runtime.algarray@"runtime.gcbits.03P:go.string.hdr."io.ByteWriter"p&type.*"".ByteWriter"runtime.zerovalue$type."".ByteWriter2go.string.hdr."WriteByte",type.func(uint8) error`$type."".ByteWriter4go.string.hdr."ByteWriter""go.importpath."".$type."".ByteWriterTgclocalsc55cf99de9cdd8c8202a466952fa1a45 Tgclocalsb6338434a483b71ecf7a1963213f75e2 3Tgo.string.hdr."func() (int32, int, error)" Lgo.string."func() (int32, int, error)"Lgo.string."func() (int32, int, error)"@6func() (int32, int, 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)<go.string.hdr."*io.RuneReader" 4go.string."*io.RuneReader"4go.string."*io.RuneReader" *io.RuneReader&type.*"".RuneReader 60 runtime.algarray@"runtime.gcbits.01P<go.string.hdr."*io.RuneReader"p8go.weak.type.**"".RuneReader"runtime.zerovalue$type."".RuneReader:go.string.hdr."io.RuneReader" 2go.string."io.RuneReader"2go.string."io.RuneReader" io.RuneReader0go.string.hdr."ReadRune" (go.string."ReadRune"(go.string."ReadRune" ReadRune4go.string.hdr."RuneReader" 1310 ,go.string."RuneReader",go.string."RuneReader" RuneReader$type."".RuneReader20 runtime.algarray@"runtime.gcbits.03P:go.string.hdr."io.RuneReader"p&type.*"".RuneReader"runtime.zerovalue$type."".RuneReader0go.string.hdr."ReadRune">type.func() (int32, int, error)`$type."".RuneReader4go.string.hdr."RuneReader""go.importpath."".$type."".RuneReaderTgclocalsc55cf99de9cdd8c8202a466952fa1a45 Tgclocalsb6338434a483b71ecf7a1963213f75e2 3Tgclocalsc55cf99de9cdd8c8202a466952fa1a45 Tgclocals19b49d53e9c11805652fa4c0885cbb29 >go.string.hdr."*io.RuneScanner" 6go.string."*io.RuneScanner"6go.string."*io.RuneScanner" *io.RuneScanner(type.*"".RuneScanner'60 runtime.algarray@"runtime.gcbits.01P>go.string.hdr."*io.RuneScanner"p:go.weak.type.**"".RuneScanner"runtime.zerovalue&type."".RuneScanner<go.string.hdr."io.RuneScanner" 4go.string."io.RuneScanner"4go.string."io.RuneScanner" io.RuneScanner4go.string.hdr."UnreadRune" 1312 ,go.string."UnreadRune",go.string."UnreadRune" UnreadRune6go.string.hdr."RuneScanner" .go.string."RuneScanner".go.string."RuneScanner" RuneScanner&type."".RuneScannerz0 runtime.algarray@"runtime.gcbits.03P<go.string.hdr."io.RuneScanner"p(type.*"".RuneScanner"runtime.zerovalue&type."".RuneScanner0go.string.hdr."ReadRune">type.func() (int32, int, error)4go.string.hdr."UnreadRune""type.func() error`&type."".RuneScanner6go.string.hdr."RuneScanner""go.importpath."".&type."".RuneScannerTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals2c78d3ad9d760b5f66e2e47be684c787 Tgclocals51af24152615272c3d9efc8538f95767 8type..hashfunc."".pipeResult0type..hash."".pipeResult4type..eqfunc."".pipeResult,type..eq."".pipeResult.type..alg."".pipeResult 8type..hashfunc."".pipeResult4type..eqfunc."".pipeResult<go.string.hdr."*io.pipeResult" 4go.string."*io.pipeResult"4go.string."*io.pipeResult" *io.pipeResult&type.*"".pipeResultC=60 runtime.algarray@"runtime.gcbits.01P<go.string.hdr."*io.pipeResult"p8go.weak.type.**"".pipeResult"runtime.zerovalue$type."".pipeResult"runtime.gcbits.06:go.string.hdr."io.pipeResult" 2go.string."io.pipeResult"2go.string."io.pipeResult" io.pipeResult"go.string.hdr."n" go.string."n"go.string."n"n&go.string.hdr."err" go.string."err"go.string."err"err4go.string.hdr."pipeResult" 1318 ,go.string."pipeResult",go.string."pipeResult" pipeResult$type."".pipeResult(~@ 0.type..alg."".pipeResult@"runtime.gcbits.06P:go.string.hdr."io.pipeResult"p&type.*"".pipeResult"runtime.zerovalue$type."".pipeResult"go.string.hdr."n""go.importpath."".type.int&go.string.hdr."err""go.importpath."".type.error`$type."".pipeResult4go.string.hdr."pipeResult""go.importpath."".$type."".pipeResult.go.string.hdr."runtime" &go.string."runtime"&go.string."runtime"runtime,go.importpath.runtime. &go.string."runtime",go.string.hdr."errors" $go.string."errors"$go.string."errors"errors*go.importpath.errors. $go.string."errors"(go.string.hdr."sync" go.string."sync" go.string."sync" 1319 sync&go.importpath.sync. go.string."sync"<"".stringWriter.WriteStringf6"".stringWriter.WriteString$"".Writer.Writef"".Writer.Write""".Reader.Readf"".Reader.Read<type..hash."".LimitedReaderf6type..hash."".LimitedReader8type..eq."".LimitedReaderf2type..eq."".LimitedReader,"".WriterTo.WriteTof&"".WriterTo.WriteTo2"".ReaderFrom.ReadFromf,"".ReaderFrom.ReadFrom*"".ReaderAt.ReadAtf$"".ReaderAt.ReadAt<type..hash."".SectionReaderf6type..hash."".SectionReader8type..eq."".SectionReaderf2type..eq."".SectionReader4type..hash."".teeReaderf.type..hash."".teeReader0type..eq."".teeReaderf*type..eq."".teeReader$"".Closer.Closef"".Closer.Close""".Seeker.Seekf"".Seeker.Seek*"".ReadWriter.Readf$"".ReadWriter.Read,"".ReadWriter.Writef&"".ReadWriter.Write,"".ReadCloser.Closef&"".ReadCloser.Close*"".ReadCloser.Readf$"".ReadCloser.Read."".WriteCloser.Closef("".WriteCloser.Close."".WriteCloser.Writef("".WriteCloser.Write6"".ReadWriteCloser.Closef0"".ReadWriteCloser.Close4"".ReadWriteCloser.Readf."".ReadWriteCloser.Read6"".ReadWriteCloser.Writef0"".ReadWriteCloser.Write*"".ReadSeeker.Readf$"".ReadSeeker.Read*"".ReadSeeker.Seekf$"".ReadSeeker.Seek,"".WriteSeeker.Seekf&"".WriteSeeker.Seek."".WriteSeeker.Writef("".WriteSeeker.Write4"".ReadWriteSeeker.Readf."".ReadWriteSeeker.Read4"".ReadWriteSeeker.Seekf."".ReadWriteSeeker.Seek6"".ReadWriteSeeker.Writef0"".ReadWriteSeeker.Write,"".WriterAt.WriteAtf&"".WriterAt.WriteAt2"".ByteReader.ReadBytef,"".ByteReader.ReadByte4"".ByteScanner.ReadBytef."".ByteScanner.ReadByte8"".ByteScanner.UnreadBytef2"".ByteScanner.UnreadByte4"".ByteWriter.WriteBytef."".ByteWriter.WriteByte2"".RuneReader.ReadRunef,"".RuneReader.ReadRune4"".RuneScanner.ReadRunef."".RuneScanner.ReadRune8"".RuneScanner.UnreadRunef2"".RuneScanner.UnreadRune6type..hash."".pipeResultf0type..hash."".pipeResult2type..eq."".pipeResultf,type..eq."".pipeResult"runtime.zerovaluego13ld