Home | History | Annotate | Download | only in mime
      1 !<arch>
      2 __.PKGDEF       0           0     0     644     5555      `
      3 go object linux amd64 go1.5.1 X:none
      4 build id "cd87830180fde9e2fd1cc557ec8bd12fb58b7ac3"
      5 
      6 $$
      7 package quotedprintable
      8 	import runtime "runtime"
      9 	import bufio "bufio"
     10 	import bytes "bytes"
     11 	import io "io"
     12 	import fmt "fmt"
     13 	type @"io".Reader interface { Read(@"io".p []byte) (@"io".n int, @"io".err error) }
     14 	type @"io".Writer interface { Write(@"io".p []byte) (@"io".n int, @"io".err error) }
     15 	type @"bufio".Reader struct { @"bufio".buf []byte; @"bufio".rd @"io".Reader; @"bufio".r int; @"bufio".w int; @"bufio".err error; @"bufio".lastByte int; @"bufio".lastRuneSize int }
     16 	func (@"bufio".b2 *@"bufio".Reader "esc:0x1") Buffered () (? int) { return @"bufio".b2.@"bufio".w - @"bufio".b2.@"bufio".r }
     17 	func (@"bufio".b3 *@"bufio".Reader "esc:0x10a") Discard (@"bufio".n4 int) (@"bufio".discarded1 int, @"bufio".err2 error)
     18 	func (@"bufio".b3 *@"bufio".Reader "esc:0x12a") Peek (@"bufio".n4 int) (? []byte, ? error)
     19 	func (@"bufio".b3 *@"bufio".Reader "esc:0x10a") Read (@"bufio".p4 []byte) (@"bufio".n1 int, @"bufio".err2 error)
     20 	func (@"bufio".b3 *@"bufio".Reader "esc:0x10a") ReadByte () (@"bufio".c1 byte, @"bufio".err2 error)
     21 	func (@"bufio".b3 *@"bufio".Reader "esc:0x10a") ReadBytes (@"bufio".delim4 byte) (@"bufio".line1 []byte, @"bufio".err2 error)
     22 	func (@"bufio".b4 *@"bufio".Reader "esc:0x82a") ReadLine () (@"bufio".line1 []byte, @"bufio".isPrefix2 bool, @"bufio".err3 error)
     23 	func (@"bufio".b4 *@"bufio".Reader "esc:0x80a") ReadRune () (@"bufio".r1 rune, @"bufio".size2 int, @"bufio".err3 error)
     24 	func (@"bufio".b3 *@"bufio".Reader "esc:0x12a") ReadSlice (@"bufio".delim4 byte) (@"bufio".line1 []byte, @"bufio".err2 error)
     25 	func (@"bufio".b3 *@"bufio".Reader "esc:0x10a") ReadString (@"bufio".delim4 byte) (@"bufio".line1 string, @"bufio".err2 error)
     26 	func (@"bufio".b1 *@"bufio".Reader "esc:0x9") Reset (@"bufio".r2 @"io".Reader) { @"bufio".b1.@"bufio".reset(@"bufio".b1.@"bufio".buf, @"bufio".r2) }
     27 	func (@"bufio".b2 *@"bufio".Reader "esc:0x1") UnreadByte () (? error) { if @"bufio".b2.@"bufio".lastByte < 0x0 || @"bufio".b2.@"bufio".r == 0x0 && @"bufio".b2.@"bufio".w > 0x0 { return @"bufio".ErrInvalidUnreadByte }; if @"bufio".b2.@"bufio".r > 0x0 { @"bufio".b2.@"bufio".r-- } else { @"bufio".b2.@"bufio".w = 0x1 }; @"bufio".b2.@"bufio".buf[@"bufio".b2.@"bufio".r] = byte(@"bufio".b2.@"bufio".lastByte); @"bufio".b2.@"bufio".lastByte = -0x1; @"bufio".b2.@"bufio".lastRuneSize = -0x1; return nil }
     28 	func (@"bufio".b2 *@"bufio".Reader "esc:0x1") UnreadRune () (? error) { if @"bufio".b2.@"bufio".lastRuneSize < 0x0 || @"bufio".b2.@"bufio".r < @"bufio".b2.@"bufio".lastRuneSize { return @"bufio".ErrInvalidUnreadRune }; @"bufio".b2.@"bufio".r -= @"bufio".b2.@"bufio".lastRuneSize; @"bufio".b2.@"bufio".lastByte = -0x1; @"bufio".b2.@"bufio".lastRuneSize = -0x1; return nil }
     29 	func (@"bufio".b3 *@"bufio".Reader "esc:0x10a") WriteTo (@"bufio".w4 @"io".Writer) (@"bufio".n1 int64, @"bufio".err2 error)
     30 	func (@"bufio".b1 *@"bufio".Reader "esc:0x9") @"bufio".fill ()
     31 	func (@"bufio".b2 *@"bufio".Reader "esc:0x22") @"bufio".readErr () (? error) { var @"bufio".err3 error; ; @"bufio".err3 = @"bufio".b2.@"bufio".err; @"bufio".b2.@"bufio".err = nil; return @"bufio".err3 }
     32 	func (@"bufio".b1 *@"bufio".Reader "esc:0x1") @"bufio".reset (@"bufio".buf2 []byte, @"bufio".r3 @"io".Reader) { *@"bufio".b1 = (@"bufio".Reader{ @"bufio".buf:@"bufio".buf2, @"bufio".rd:@"bufio".r3, @"bufio".lastByte:-0x1, @"bufio".lastRuneSize:-0x1 }) }
     33 	func (@"bufio".b3 *@"bufio".Reader "esc:0x9") @"bufio".writeBuf (@"bufio".w4 @"io".Writer) (? int64, ? error)
     34 	type @"".Reader struct { @"".br *@"bufio".Reader; @"".rerr error; @"".line []byte }
     35 	func (@"".r3 *@"".Reader "esc:0x10a") Read (@"".p4 []byte "esc:0x1") (@"".n1 int, @"".err2 error)
     36 	func @"".NewReader (@"".r2 @"io".Reader) (? *@"".Reader) { return (&@"".Reader{ @"".br:@"bufio".NewReader(@"".r2) }) }
     37 	type @"".Writer struct { Binary bool; @"".w @"io".Writer; @"".i int; @"".line [78]byte; @"".cr bool }
     38 	func (@"".w2 *@"".Writer) Close () (? error)
     39 	func (@"".w3 *@"".Writer) Write (@"".p4 []byte "esc:0x1") (@"".n1 int, @"".err2 error)
     40 	func (@"".w2 *@"".Writer) @"".checkLastByte () (? error)
     41 	func (@"".w2 *@"".Writer) @"".encode (@"".b3 byte) (? error)
     42 	func (@"".w2 *@"".Writer) @"".flush () (? error)
     43 	func (@"".w2 *@"".Writer) @"".insertCRLF () (? error)
     44 	func (@"".w2 *@"".Writer) @"".insertSoftLineBreak () (? error)
     45 	func (@"".w2 *@"".Writer) @"".write (@"".p3 []byte "esc:0x1") (? error)
     46 	func @"".NewWriter (@"".w2 @"io".Writer) (? *@"".Writer) { return (&@"".Writer{ @"".w:@"".w2 }) }
     47 	func @"".init ()
     48 	var @"bufio".ErrInvalidUnreadByte error
     49 	var @"bufio".ErrInvalidUnreadRune error
     50 	func @"bufio".NewReader (@"bufio".rd2 @"io".Reader) (? *@"bufio".Reader) { return @"bufio".NewReaderSize(@"bufio".rd2, 0x1000) }
     51 	func @"bufio".NewReaderSize (@"bufio".rd2 @"io".Reader, @"bufio".size3 int) (? *@"bufio".Reader) { var @"bufio".b4 *@"bufio".Reader; ; var @"bufio".ok5 bool; ; @"bufio".b4, @"bufio".ok5 = @"bufio".rd2.(*@"bufio".Reader); if @"bufio".ok5 && len(@"bufio".b4.@"bufio".buf) >= @"bufio".size3 { return @"bufio".b4 }; if @"bufio".size3 < 0x10 { @"bufio".size3 = 0x10 }; var @"bufio".r6 *@"bufio".Reader; ; @"bufio".r6 = new(@"bufio".Reader); @"bufio".r6.@"bufio".reset(make([]byte, @"bufio".size3), @"bufio".rd2); return @"bufio".r6 }
     52 
     53 $$
     54 _go_.o          0           0     0     644     56905     `
     55 go object linux amd64 go1.5.1 X:none
     56 
     57 !
     58 go13ldbufio.abytes.a
     59 fmt.aio.a"".NewReader
     61 dH%H$xH;AHH$H$H$H$HL$xH$HD$0HD$`HH$H$HL$H$HD$H\$`H\$\$ HL$`HL$HH$HL$HHYHl$0H9HHD$8HH$HD$HD$XH$HD$0HD$X1H(HhHhHhHh Hh(H$H\$XHt;Hl$8=uH+H\$XH$ HH$Hl$H\$0H}	HD$0HH$HL$0HD$HD$@HD$PHH$HL$HL$LD$Ht$ Hl$(H$H$H$1HL$L$H$H$H$H$HT$hH$HL$pH$H$H$H\$PH$HD$XH\$PHt,H$H\$Hl$H-H,$HD$@*K*
     64 ^
     65 *runtime.racefuncenter$type.*bufio.Reader
     66 $runtime.assertI2T2
     67  runtime.racereadtype."".Reader
     68 "runtime.newobject
     69 ,runtime.racewriterange
     70 "runtime.racewrite6runtime.writeBarrierEnabled
     71 (runtime.racefuncexit
     72 .runtime.writebarrierptr"type.bufio.Reader
     73 "runtime.newobjecttype.[]uint8
     74 "runtime.makeslice
     75  runtime.duffzero	
     76 ,runtime.racewriterange
     77 "type.bufio.Reader
     78 
     79 (runtime.typedmemmove
     80 
     81 0runtime.morestack_noctxt0"".autotmp_0006type.*"".Reader"".autotmp_0005$type.*bufio.Reader"".autotmp_0004"type.bufio.Reader"".autotmp_0000$type.*bufio.Readerbufio.r3type.io.Readerbufio.buf2type.[]uint8bufio.b1$type.*bufio.Readerbufio.r6$type.*bufio.Readerbufio.b4$type.*bufio.Readerbufio.size3type.intbufio.rd2type.io.Reader"".~r0$type.*bufio.Readerbufio.rd2type.io.Reader"".~r1 type.*"".Reader"".rtype.io.Reader"&2"4.c!/
     84 U*.-(Tgclocals18310a6dd63e7a794250f9cd20493cf0Tgclocals956b03b2b61cb4f2c4d4917d520f1a14rprebuilts/go/linux-x86/src/mime/quotedprintable/reader.go"".fromHexdH%HD$H;AHH$H$$1H$H$<0r1<9w-HH0$1H$H$H<Ar5<Fw1HHAH
     87 $1H$H$H<ar5<fw1HHaH
     88 $1H$H$HD$?1H\$PH\$XH\$PHHD$xH$H\$pHH$H\$?H\$HD$H\$H\$@H\$ H\$HH\$pH$H\$pHl$@H+Hl$H=uwHkHH$HD$(H\$pH\$H\$xH\$H$H\$ HL$(HD$0$HL$`H$HD$hH$HLCL$Hl$v
     89 X
     90 *runtime.racefuncenter
     91 (runtime.racefuncexit
     92 (runtime.racefuncexit
     93 (runtime.racefuncexittype.uint8
     94 runtime.convT2E
     95 "runtime.racewrite6runtime.writeBarrierEnabledhgo.string."quotedprintable: invalid hex byte 0x%02x"
     96 fmt.Errorf
     97 (runtime.racefuncexit
     98 .runtime.writebarrierptr
     99 0runtime.morestack_noctxt@"".autotmp_0013"type.interface {}"".autotmp_0012o(type.[1]interface {}"".autotmp_0009/&type.[]interface {}"".autotmp_0008Otype.error"".autotmp_0007type.uint8"".~r2 type.error"".~r1type.uint8"".btype.uint8>_88/H>J $	
    102 $&$+G"Y1"Tgclocalseceacbb109c183f11a0ddfd9f0672c46Tgclocals8abf0427981eb9c17713fe800a78fa79rprebuilts/go/linux-x86/src/mime/quotedprintable/reader.go"".readHexBytedH%H;aH8H\$8H$HL$H11H\$`H\$hH}AHH$H
HD$XHL$(HL$`HD$0HD$hH8H\$@HH$H\$@H|$H+@,$\$HT$HL$\$'HL$hHT$`HtD$XH8H\$@H|$HHH$H\$@H|$HvfH+@,$\$HHT$HL$HL$hHT$`HtD$XH8\$'HH	\$X1H\$`H\$hH8d&
    109 B
    110 *runtime.racefuncenter&io.ErrUnexpectedEOF
    111  runtime.raceread&io.ErrUnexpectedEOF&io.ErrUnexpectedEOF
    112 (runtime.racefuncexit
    113  runtime.raceread
    114 "".fromHex
    115 (runtime.racefuncexit
    116  runtime.raceread
    117 "".fromHex
    118 (runtime.racefuncexit
    119 (runtime.racefuncexit
    120 $runtime.panicindex
    121 $runtime.panicindex
    122 $runtime.panicindex
    123 $runtime.panicindex
    124 0runtime.morestack_noctxt`p"".autotmp_0020type.uint8"".autotmp_0019type.error"".autotmp_0018type.error"".autotmp_0017type.uint8"".autotmp_0016type.error
    125 "".hb!type.uint8"".err@type.error"".b0type.uint8"".vtype.[]uint8*pgopfopiop%op*NX7X
    127 	[&	" UJ"H0*Tgclocals385909f76d6de739e72f24698b953b71Tgclocalsc55cf99de9cdd8c8202a466952fa1a45rprebuilts/go/linux-x86/src/mime/quotedprintable/reader.go0"".isQPDiscardWhitespacedH%H;avOHH\$H$D$
    129 (	uD$H
    130 tD$H
t t
    132 
    133 :
    134 *runtime.racefuncenterj
    135 (runtime.racefuncexit
    136 (runtime.racefuncexit
    137 0runtime.morestack_noctxt "".~r1type.bool"".rtype.int32*p2t
    139 	
    140 	
    141 TTgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals33cdeccccebe80329f1fdbee7f5874cbrprebuilts/go/linux-x86/src/mime/quotedprintable/reader.go""".(*Reader).Read@?dH%H$pH;AH1HD$xH$H$H$11H$@H$HH$8H$(H4H$H$H$H$Hi H
    143 H$H$H$HhHtEH$H$H$Ht%HkH$@HkH$HHH$H$H+H,$D$
    145 H\$H$H\$H$H\$ H$H\$(H$H\$0H$H$H$H$H$H$Hk H$Hk(H$=	HkH$H$H$H$H$HkH$=3	HkH$H$H$HH$H$HH^HH$HKHL$HKHL$HH\$HH\$ HH\$(\$0\$DH$H$H$HH$H$HbH^HH$HKHL$HKHL$HH\$HH\$ HH\$(\$0\$EH$H$H$H$HHSHK Hk(H$H$H$HL$H$Hl$HH\$H\$ H$H\$(H$H\$0H$H$H$H$H$H$Hk H$Hk(H$=HkH$H$H$HH$H$HH^HH$HKHL$HKHL$HH\$HH\$ HH\$(\$0H$H$H$H$HY H$L$H9XL$H)I)ItMH$L$L$H$H$H$HY HH\$HH$H$H$H$H$H$Hl$HLC(L9Hk HH$H$H$H$H\$H$H\$HH\$HH\$ HH\$(\$0KHH$H$H$H$H\$H$H\$HH\$HH\$ HH\$(\$0H$H$H$H$H$H$1H\$xH$H\$xHH$H$H$HH$H$H\$HD$H\$H\$hH\$ H\$pH$H$H$Hl$hH+Hl$p=HkHH$HD$*H$H\$H$H\$H$H\$ H\$(H$H\$0H$H$H$H$H$H$HkH$=u5HkH$(H1H$@H$HHLCL$Hl$LCL$Hl$pa|$DH|$E~H$H$H$H$HOHSHC H[(HH)H}RHH$H$HT$HD$H$HL$HH$HH\$ HT$(HD$0HL$8HHH$H9H$H$HD$PHH$H$HD$PH
HHD$PHH$H$Hl$PH+
    158 H$H$H$H$H$Hk H$Hk(H$=u	HkLCL$Hl$H$H$H$H$H$HSHC H[(HH)H}QHH$H$HT$HD$H$HL$HH$HH\$ HT$(HD$0HL$8HHH$H9H$H$HD$PHH$H$Hl$PH+
    160 H$H$H$H$H$Hk H$Hk(H$=u	HkLCL$Hl$z$LCL$Hl$	LCL$Hl$LCL$Hl$`H$H$H$HKHC Hk(H$H$HH$GH$H$H%HJHB Hj(H$H$HH$)H@=qH$H$H$Hk LC(HBHILKItIL$L$H$Hl$L$LD$\$HT$ HL$(\$FH$HH$@Ht
HH$H$H$H$H$H$H$Hh L@(HLHHIItIHh L@(=?LHH$ H$(H$H$(H$ Hl$F@(H$0HHHHIHtIH$(H$0L$ H$H$H$H$H$H$H$Hk LC(Hr\HILKItIH$Hk LC(=uLKH$8HH$8RLSL$LL$LPL$LL$@l$F@	@
@
    173 }@ r<~oD$G1H\$XH\$`H\$XHH$H$H$HH$H\$GH\$HD$H\$H\$hH\$ H\$pH$H$H$Hl$hH+Hl$p=u{HkHH$HD$6H$H\$H$H\$H$H\$ HL$(HD$0H$H$@H$H$HHLCL$Hl$r
    177 |
    178 *runtime.racefuncenter
    179  runtime.raceread
    180  runtime.raceread
    181  runtime.raceread
    182 (runtime.racefuncexit
    183  runtime.raceread
    184 2bufio.(*Reader).ReadSlice
    185 "runtime.racewrite6runtime.writeBarrierEnabled
    186 "runtime.racewrite6runtime.writeBarrierEnabled
    187  runtime.raceread
    188 "".lf
    189  runtime.raceread	
    190 "".lf	
    191 "".lf	 
    192 "".lf	
    193 bytes.HasSuffix
    194 
    195  runtime.raceread
    196 "".crlf
    197 
    198  runtime.raceread"".crlf"".crlf "".crlf
    203 bytes.HasSuffix
    205  runtime.raceread
6"".isQPDiscardWhitespacef
    208 &bytes.TrimRightFunc
    209 "runtime.racewrite6runtime.writeBarrierEnabled
    210  runtime.raceread"".softSuffix
    211  runtime.raceread"".softSuffix"".softSuffix "".softSuffix
    212 bytes.HasSuffix
    213  runtime.raceread
    214  runtime.raceread
    215 "runtime.racewrite
    216  runtime.raceread
    217 "".lf
    218  runtime.raceread
    219 "".lf
    220 "".lf 
    221 "".lf
    222 bytes.HasPrefix"".crlf
    223  runtime.raceread"".crlf"".crlf "".crlf
    224 bytes.HasPrefixtype.[]uint8
    225 runtime.convT2E
    226 "runtime.racewrite6runtime.writeBarrierEnabledlgo.string."quotedprintable: invalid bytes after =: %q"
    227 fmt.Errorf
    228 "runtime.racewrite6runtime.writeBarrierEnabled
    229 (runtime.racefuncexit
    230 .runtime.writebarrierptr
    231 .runtime.writebarrierptr 
    232 $runtime.panicslice 
    233 $runtime.panicslice 
    234  runtime.raceread!type.[]uint8"
    235 "runtime.growslice#
    236 "runtime.racewrite$
    237 "runtime.racewrite%
    238 "runtime.racewrite%6runtime.writeBarrierEnabled&
    239 .runtime.writebarrierptr&
    240 $runtime.panicslice&
    241  runtime.raceread'type.[]uint8(
    242 "runtime.growslice)
    243 "runtime.racewrite*
    244 "runtime.racewrite+6runtime.writeBarrierEnabled+
    245 .runtime.writebarrierptr+
    246 $runtime.panicslice,
    247 .runtime.writebarrierptr,
    248 .runtime.writebarrierptr-
    249 .runtime.writebarrierptr-
    250  runtime.raceread.
    251  runtime.raceread/
    252  runtime.raceread1
    253 "".readHexByte2
    254 (runtime.racefuncexit2
    255 "runtime.racewrite2
    256  runtime.raceread36runtime.writeBarrierEnabled4
    257 "runtime.racewrite6
    258 "runtime.racewrite6
    259  runtime.raceread76runtime.writeBarrierEnabled8
    260 .runtime.writebarrierptr8
    261 $runtime.panicslice8
    262 $runtime.panicslice8
    263 $runtime.panicindex8
    264 $runtime.panicindex9
    265 .runtime.writebarrierptr9
    266 $runtime.panicslice9
    267 $runtime.panicslice;type.uint8;
    268 runtime.convT2E<
    269 "runtime.racewrite<6runtime.writeBarrierEnabled=go.string."quotedprintable: invalid unescaped byte 0x%02x in body"=
    270 fmt.Errorf>
    271 (runtime.racefuncexit?
    272 .runtime.writebarrierptr?
    273 $runtime.panicindex?
    274 $runtime.panicindex?
    275 0runtime.morestack_noctxtpF"".autotmp_0056"type.interface {}"".autotmp_0055(type.[1]interface {}"".autotmp_0053*type.*[1]interface {}"".autotmp_0052&type.[]interface {}"".autotmp_0051type.int"".autotmp_0050type.[]uint8"".autotmp_0049type.int"".autotmp_0048type.[]uint8"".autotmp_0047"type.interface {}"".autotmp_0046(type.[1]interface {}"".autotmp_0043&type.[]interface {}"".autotmp_0042type.int"".autotmp_0041type.error"".autotmp_0040type.uint8"".autotmp_0039type.error"".autotmp_0037type.[]uint8"".autotmp_0036type.error"".autotmp_0035_type.[]uint8"".autotmp_0032type.int"".autotmp_0031type.int"".autotmp_0030type.int"".autotmp_0029type.bool"".autotmp_0028type.[]uint8"".autotmp_0027type.bool"".autotmp_0025type.error"".autotmp_0024/type.[]uint8"".btype.uint8 "".rightStrippedtype.[]uint8"".wholeLinetype.[]uint8"".hasCRtype.bool"".hasLFtype.bool"".errPtype.error"".n@type.int"".ptype.[]uint8"".rtype.*"".ReaderD"
	J 1fe 
    278 , 4VU4kd\; 
    280 '('(+,+,,
    283 uB?rWV
    288 #
&?=pOC=O%f0R
v,,%b/,Tgclocalsbab5f0def62148db64292511a586628bTgclocals5eaed03e9198252497940a047a3ace86rprebuilts/go/linux-x86/src/mime/quotedprintable/reader.go"".NewWriterdH%H;aHH\$H$HH$HD$HD$H$HD$pHL$HHta1HH$H$H\$Hl$ HkHl$(=uHkH\$H\$0HLCL$Hl$2
    293 B
    294 *runtime.racefuncenterPtype."".Writerb
    295 "runtime.newobject
    296 ,runtime.racewriterange
    297  runtime.duffzero
    298 "runtime.racewrite6runtime.writeBarrierEnabled
    299 (runtime.racefuncexit
    300 .runtime.writebarrierptr
    301 0runtime.morestack_noctxt00"".autotmp_0059type.*"".Writer"".~r1 type.*"".Writer"".wtype.io.Writer0/0$2 ,VTgclocalsfb59fd9ce9376dfcd2105aa0993acf24Tgclocalsf891aedf0f80c97cb1c7cc75a7fd6349rprebuilts/go/linux-x86/src/mime/quotedprintable/writer.go$"".(*Writer).WritedH%HD$H;A}HH$H$11H$H$1H$H$H$H$H$1H$HD$@H$HHL$HHl$@H9}dHD$PH$H$H\$P+H\$HH\$8H@!4<~,<=$HD$PHHL$HHHL$HHl$@H9|H$H9u1H$H$HH$L$H9L$H)I)ItM1H$H$L$LL$H$Hl$L$LD$HD$ HL$(H$HD$xHtH$H$HH$H$1H$H$HD$7< }<	<H$H$H$HD$8T$7H$]u
    307 
}H9L$HL9H9L$H)I)ItM1H$H$L$LL$H$Hl$L$LD$T$7HL$ HD$(HD$`HL$XHtH$H$HH\$8H$H$H$T$HL$HD$HD$pHL$hHtH$H$HH$HH$ZH|a
    311 X
    312 *runtime.racefuncenter
    313  runtime.raceread
    314 (runtime.racefuncexit
    315 $"".(*Writer).write
    316 (runtime.racefuncexit
    317 (runtime.racefuncexit
    318 $runtime.panicslice
    319  runtime.raceread
    321 $"".(*Writer).write
    323 (runtime.racefuncexit
    325 &"".(*Writer).encode
    327 (runtime.racefuncexit
    328 $runtime.panicslice
    329 0runtime.morestack_noctxtp&"".autotmp_0071type.*uint8"".autotmp_0070type.int"".autotmp_0069type.int"".autotmp_0068type.int"".autotmp_0067type.error"".autotmp_0066type.[]uint8"".autotmp_0065type.int"".autotmp_0063type.error"".autotmp_0061_type.[]uint8"".autotmp_0060/type.[]uint8"".errtype.error"".errtype.error"".errtype.error"".btype.uint8"".itype.int"".errPtype.error"".n@type.int"".ptype.[]uint8"".wtype.*"".WriterN.X6@Nt,
/078"=>)_	
/#$%	4+uzq2<,*/%Tgclocals251e3cc4f2373456f57cb9541b8e1a97Tgclocalsa98731f35b56f2a1769dba783f3f6078rprebuilts/go/linux-x86/src/mime/quotedprintable/writer.go$"".(*Writer).ClosedH%H;aH8H\$8H$1H\$HH\$PH\$@H$HD$HL$HL$ HD$HtHD$HHL$PH8H\$@H$HL$HD$HL$(HL$HHD$0HD$PH8S
    340 B
    341 *runtime.racefuncenterv
    342 4"".(*Writer).checkLastByte
    343 (runtime.racefuncexit
    344 $"".(*Writer).flush
    345 (runtime.racefuncexit
    346 0runtime.morestack_noctxt0p
    347 "".autotmp_0075type.error"".autotmp_0074type.error"".err?type.error"".~r0type.error"".wtype.*"".WriterpUop5op
(1(
    351 ,	
    352 	
 C#Tgclocalscad14e25fd48dddd762418d02c031d67Tgclocals64ca935d1a2110a30e2d604686188539rprebuilts/go/linux-x86/src/mime/quotedprintable/writer.go$"".(*Writer).write
dH%HD$H;AHH$H$1H$H$H$H$H$H$1HD$xHD$(HT$pHHL$0Hl$(H9|HD$8H$H$H\$8+@l$@
    357 |@
rH$H$H$HZHKuHH$H$HL$HD$HD$hHL$`HtH$H$HH$H$H$HAHi HNHlH,$H$HAHi HNHl\$]H$H$H$HhHl$ H$H$H$Hl$ HHhH$H$nH$1@knHD$8HHL$0HHL$0Hl$(H91H$H$HH$H$nL$H$Xnt&
    364 u!H$H$nH$1@knf
u!H$H$nH$H@hnH$HL$HD$HD$HHL$@HtH$H$HH$H$HL$HD$HD$XHL$PHH$H$H,
    366 X
    367 *runtime.racefuncenter
    368  runtime.raceread
    369  runtime.raceread
    370 @"".(*Writer).insertSoftLineBreak
    371 (runtime.racefuncexit
    372  runtime.raceread
    373 "runtime.racewrite
    374  runtime.raceread
    375 "runtime.racewrite
    376 "runtime.racewrite
    377 (runtime.racefuncexit
    378 $runtime.panicindex
    379 $runtime.panicindex
    380  runtime.raceread	
    381 "runtime.racewrite
    382 
    383 "runtime.racewrite
    384 
    385 4"".(*Writer).checkLastByte
    387 (runtime.racefuncexit
    389 ."".(*Writer).insertCRLF
    391 (runtime.racefuncexit
    393 0runtime.morestack_noctxt`"".autotmp_0083type.*uint8"".autotmp_0082type.int"".autotmp_0081type.int"".autotmp_0080type.int"".autotmp_0079type.error"".autotmp_0078type.error"".autotmp_0076/type.[]uint8"".errOtype.error"".errotype.error"".errtype.error"".btype.uint8"".~r1@type.error"".ptype.[]uint8"".wtype.*"".WriterBK|BAe( +]A9#@	/)!#&%/ !4+g
3Tgclocals7df840e6df89f4ee8e5ec8cf7bef06daTgclocalsee3248603950cee2f4a8bfff582f9025rprebuilts/go/linux-x86/src/mime/quotedprintable/writer.go&"".(*Writer).encode
    399 	dH%H;a]H0H\$0H$1H\$HH\$PH\$8H$H$HT$8HZHKH)H}<H$HT$8HD$HL$HL$(HD$ HtHD$HHL$PH0H$H$HL$8HAHi HNHlH,$HL$8HAHi HNHlE=H$H$HL$8HAHHi HD$HNBHlH,$HD$8HHh H\$HNHl\$@LIA]H$H$HL$8HAHHi HD$HNHlH,$HD$8HHh H\$HNstHl\$@HLIA]H$H$HD$8HhHl$H$H$H\$8Hl$HHk1H\$HH\$PH0o.
    408 B
    409 *runtime.racefuncenter
    410  runtime.raceread
    411 @"".(*Writer).insertSoftLineBreak
    412 (runtime.racefuncexit
    413  runtime.raceread
    414 "runtime.racewrite
    415  runtime.raceread
    416 "runtime.racewrite8go.string."0123456789ABCDEF"
    417  runtime.raceread
    418 "runtime.racewrite8go.string."0123456789ABCDEF"
    419  runtime.raceread
    420 "runtime.racewrite
    421 (runtime.racefuncexit
    422 $runtime.panicindex	
    423 $runtime.panicindex	
    424 $runtime.panicindex	
    425 $runtime.panicindex	
    426 $runtime.panicindex	
    427 $runtime.panicindex	
    428 0runtime.morestack_noctxt@`"".autotmp_0090type.int"".autotmp_0089type.int"".autotmp_0088type.int"".errtype.error"".~r1 type.error"".btype.uint8"".wtype.*"".Writer`_`_`HH,(
    432 S~|<
 o
    434 HTgclocals170309d2da858695ebefc5e7e0d9c320Tgclocalsc55cf99de9cdd8c8202a466952fa1a45rprebuilts/go/linux-x86/src/mime/quotedprintable/writer.go4"".(*Writer).checkLastBytedH%H;aqH@H\$@H$1H\$PH\$XH\$HH$H$HD$HHXHu1H\$PH\$XH@H$H$HL$HHAHHi HNHlH,$HL$HHAHHi HNHl]\$' 	<t{H$H$HD$HHhHl$(H$H$HD$HHl$(HHhH$\$'\$HD$HL$HL$8HD$0HtHD$PHL$XH@1H\$PH\$XH@H_r
    439 B
    440 *runtime.racefuncenter
    441  runtime.raceread
    442 (runtime.racefuncexit
    443  runtime.raceread
    444  runtime.raceread
    445  runtime.raceread
    446 "runtime.racewrite
    447 &"".(*Writer).encode
    448 (runtime.racefuncexit
    449 (runtime.racefuncexit
    450 $runtime.panicindex
    451 $runtime.panicindex
    452 0runtime.morestack_noctxt0
    453 "".autotmp_0093type.int"".errtype.error"".b1type.uint8"".~r0type.error"".wtype.*"".Writer,Q&L"Y;,
    458 
	 ?,Tgclocalscad14e25fd48dddd762418d02c031d67Tgclocalsc55cf99de9cdd8c8202a466952fa1a45rprebuilts/go/linux-x86/src/mime/quotedprintable/writer.go@"".(*Writer).insertSoftLineBreakdH%H;aH0H\$0H$1H\$@H\$HH\$8H$H$HL$8HAHi HNHlH,$HL$8HAHi HNsuHlE=H$H$HD$8HhHl$H$H$HD$8Hl$HHhH$HL$HD$HL$ HL$@HD$(HD$HH0
    466 B
    467 *runtime.racefuncenter
    468  runtime.raceread
    469 "runtime.racewrite
    470  runtime.raceread
    471 "runtime.racewrite
    472 ."".(*Writer).insertCRLF
    473 (runtime.racefuncexit
    474 $runtime.panicindex
    475 $runtime.panicindex
    476 0runtime.morestack_noctxt0`"".autotmp_0099type.error"".autotmp_0098type.int"".~r0type.error"".wtype.*"".Writer`_`$1T;' 
    478 Tgclocalscad14e25fd48dddd762418d02c031d67Tgclocalsc55cf99de9cdd8c8202a466952fa1a45rprebuilts/go/linux-x86/src/mime/quotedprintable/writer.go."".(*Writer).insertCRLFdH%H;ahH0H\$0H$1H\$@H\$HH\$8H$H$HL$8HAHi HNHlH,$HL$8HAHi HNHlE
H$H$HL$8HAHHi HD$HNHlH,$HD$8HHh H\$HNsvHlE
    482 H$H$HD$8HhHl$H$H$HD$8Hl$HHhH$HL$HD$HL$ HL$@HD$(HD$HH0m{
    487 B
    488 *runtime.racefuncenter
    489  runtime.raceread
    490 "runtime.racewrite
    491  runtime.raceread
    492 "runtime.racewrite
    493  runtime.raceread
    494 "runtime.racewrite
    495 $"".(*Writer).flush
    496 (runtime.racefuncexit
    497 $runtime.panicindex
    498 $runtime.panicindex
    499 $runtime.panicindex
    500 $runtime.panicindex
    501 0runtime.morestack_noctxt0`
    502 "".autotmp_0104type.int"".autotmp_0103type.error"".autotmp_0102type.int"".~r0type.error"".wtype.*"".Writer`_`8,1Xb<'	
    504  
    505 8Tgclocalscad14e25fd48dddd762418d02c031d67Tgclocalsc55cf99de9cdd8c8202a466952fa1a45rprebuilts/go/linux-x86/src/mime/quotedprintable/writer.go$"".(*Writer).flushdH%H;aKHpH\$pH$1H$H$H\$xH$H$HL$xHYHNHH HH\$`HD$hNHl$XH$H$H\$xHHKHkH\$XH\$H\$`H\$H\$hH\$Hl$PH,$HL$HHY HD$(HL$0HL$@HD$8HtH$H$HpH\$xH$H$H\$xHC1H$H$HpOE
    509 B
    510 *runtime.racefuncenter
    511  runtime.raceread
    512  runtime.raceread
    513 (runtime.racefuncexit
    514 "runtime.racewrite
    515 (runtime.racefuncexit
    516 $runtime.panicslice
    517 0runtime.morestack_noctxt0"".autotmp_0108/type.[]uint8"".errotype.error"".~r0type.error"".wtype.*"".Writer&;(2 	" jL,$Tgclocals27f94a2fe0ff5b305b2385471201b6d7Tgclocals585c0c3f718a3f7f815cb1ef3994ecb1rprebuilts/go/linux-x86/src/mime/quotedprintable/writer.go"".isWhitespacedH%H;av3HH\$H$D$< t<	D$HD$
    523 :
    524 *runtime.racefuncenterd
    525 (runtime.racefuncexit
    526 0runtime.morestack_noctxt "".~r1type.bool"".btype.uint8'P,
    529 
    530 4Tgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals33cdeccccebe80329f1fdbee7f5874cbrprebuilts/go/linux-x86/src/mime/quotedprintable/writer.go"".initdH%H;aHH\$H$HH$t-HH$u
    532 HHH$HH$H<,
    534 B
    535 *runtime.racefuncenterP"".initdoneb
    536  runtime.racereadp"".initdone"".initdone
    537  runtime.raceread"".initdone
    538 (runtime.racefuncexit
    539 "runtime.throwinit"".initdone
    540 "runtime.racewrite"".initdone
    541 bufio.init
    542 bytes.init
    543 fmt.init
    544 io.init"".initdone
    545 "runtime.racewrite"".initdone
    546 (runtime.racefuncexit
    547 0runtime.morestack_noctxtOR
    548  Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals33cdeccccebe80329f1fdbee7f5874cbrprebuilts/go/linux-x86/src/mime/quotedprintable/writer.go4type..hash.[1]interface {}dH%H;aH(H\$(H$HT$81HD$Hl$H9}\HD$ HHHHckRHHH\$0HtEHHH$HD$8HD$HT$HD$ HHl$H9|HT$8HT$@H(C
    551 
    552 B
    553 *runtime.racefuncenter
    554 (runtime.nilinterhash
    555 (runtime.racefuncexit
    556 0runtime.morestack_noctxt0P
    557 "".autotmp_0113type.int"".autotmp_0112type.int"".~r2 type.uintptr"".htype.uintptr"".p*type.*[1]interface {}POP Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbrprebuilts/go/linux-x86/src/mime/quotedprintable/reader.go0type..eq.[1]interface {}dH%H;a/H`H\$`H$1HD$0Hl$0H9HD$8H\$pHHD$(HHH$HD$(H\$pHHHHH+Hl$PHkHl$XH\$hHHHH$HT$PH\$hHt}Hl$(HHHHKHL$HHD$@H9uLH$HL$HT$Hl$XHl$\$ t%HD$8HHl$0H9(D$xH`D$xH`|2
    561 B
    562 *runtime.racefuncenter
    563  runtime.raceread
    564  runtime.raceread
    565 runtime.efaceeq
    566 (runtime.racefuncexit
    567 (runtime.racefuncexit
    568 0runtime.morestack_noctxt0"".autotmp_0117?"type.interface {}"".autotmp_0116"type.interface {}"".autotmp_0115_type.int"".autotmp_0114Otype.int"".iotype.int"".~r2 type.bool"".q*type.*[1]interface {}"".p*type.*[1]interface {}& O_Tgclocals51af24152615272c3d9efc8538f95767Tgclocals2c78d3ad9d760b5f66e2e47be684c787rprebuilts/go/linux-x86/src/mime/quotedprintable/reader.go(type..hash."".WriterdH%H;aH H\$ H$H\$(H$H<$H\$0H\$HD$HD$H\$(H$H<$thH$HD$0HD$HD$H\$(H$H<$t6H$HD$0HD$HD$WHD$HD$0HD$8H %%%V
    571 B
    572 *runtime.racefuncenter
    573 runtime.memhash
    574 "runtime.interhash
    575 runtime.memhash
    576 (runtime.racefuncexit
    577 0runtime.morestack_noctxt0@
    578 "".autotmp_0120type.uintptr"".autotmp_0119type.uintptr"".~r2 type.uintptr"".htype.uintptr"".ptype.*"".Writer@?@+ Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbrprebuilts/go/linux-x86/src/mime/quotedprintable/reader.go$type..eq."".WriterdH%H;a}HHH\$HH$H\$PH$H\$XH$HD$XHl$P](@8tD$`HHH$H$H\$XHHkHl$8HkHl$@H\$PH$H$HT$8H\$PHHCHKHL$0HD$(H9H$HL$HT$Hl$@Hl$\$ tuH\$PH$H<$t\H$H\$XH\$H|$t<HD$HD$W\$uD$`HHD$`HH%%D$`HH3f
    582 B
    583 *runtime.racefuncenter^
    584  runtime.racereadz
    585  runtime.raceread
    586 (runtime.racefuncexit
    587  runtime.raceread
    588  runtime.raceread
    589 runtime.ifaceeq
    590  runtime.memequal
    591 (runtime.racefuncexit
    592 (runtime.racefuncexit
    593 (runtime.racefuncexit
    594 0runtime.morestack_noctxt0
    595 "".autotmp_0123?type.io.Writer"".autotmp_0122type.io.Writer"".~r2 type.bool"".qtype.*"".Writer"".ptype.*"".Writer>N  LTgclocals51af24152615272c3d9efc8538f95767Tgclocals2c78d3ad9d760b5f66e2e47be684c787rprebuilts/go/linux-x86/src/mime/quotedprintable/reader.goTgclocals956b03b2b61cb4f2c4d4917d520f1a14hh 
    601 
    603 Tgclocals18310a6dd63e7a794250f9cd20493cf0hhpgo.string.hdr."quotedprintable: invalid hex byte 0x%02x"  (hgo.string."quotedprintable: invalid hex byte 0x%02x"hgo.string."quotedprintable: invalid hex byte 0x%02x"`Rquotedprintable: invalid hex byte 0x%02xTgclocals8abf0427981eb9c17713fe800a78fa79@@	LOTgclocalseceacbb109c183f11a0ddfd9f0672c46@@Tgclocalsc55cf99de9cdd8c8202a466952fa1a45  Tgclocals385909f76d6de739e72f24698b953b71  1Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals23e8278e2b69a3a75fa59b23c49ed6adtgo.string.hdr."quotedprintable: invalid bytes after =: %q"  *lgo.string."quotedprintable: invalid bytes after =: %q"lgo.string."quotedprintable: invalid bytes after =: %q"`Vquotedprintable: invalid bytes after =: %qgo.string.hdr."quotedprintable: invalid unescaped byte 0x%02x in body"  6go.string."quotedprintable: invalid unescaped byte 0x%02x in body"go.string."quotedprintable: invalid unescaped byte 0x%02x in body"pnquotedprintable: invalid unescaped byte 0x%02x in bodyTgclocals5eaed03e9198252497940a047a3ace86000000@<@003@?@33Tgclocalsbab5f0def62148db64292511a586628bccTgclocalsf891aedf0f80c97cb1c7cc75a7fd6349((Tgclocalsfb59fd9ce9376dfcd2105aa0993acf24((Tgclocalsa98731f35b56f2a1769dba783f3f6078((
Tgclocals251e3cc4f2373456f57cb9541b8e1a97((cTgclocals64ca935d1a2110a30e2d604686188539  Tgclocalscad14e25fd48dddd762418d02c031d67  Tgclocalsee3248603950cee2f4a8bfff582f9025((
    610 Tgclocals7df840e6df89f4ee8e5ec8cf7bef06da((3@go.string.hdr."0123456789ABCDEF"  8go.string."0123456789ABCDEF"8go.string."0123456789ABCDEF"0"0123456789ABCDEFTgclocalsc55cf99de9cdd8c8202a466952fa1a45  Tgclocals170309d2da858695ebefc5e7e0d9c320  
Tgclocalsc55cf99de9cdd8c8202a466952fa1a45  Tgclocalscad14e25fd48dddd762418d02c031d67  Tgclocalsc55cf99de9cdd8c8202a466952fa1a45  Tgclocalscad14e25fd48dddd762418d02c031d67  Tgclocalsc55cf99de9cdd8c8202a466952fa1a45  Tgclocalscad14e25fd48dddd762418d02c031d67  Tgclocals585c0c3f718a3f7f815cb1ef3994ecb1((Tgclocals27f94a2fe0ff5b305b2385471201b6d7((Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals23e8278e2b69a3a75fa59b23c49ed6ad0""..gobytes.1
    612 0""..gobytes.2
    613 0""..gobytes.3=Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals33cdeccccebe80329f1fdbee7f5874cb,"".crlf0type.[]uint80""..gobytes.1,
    614 "".lf0type.[]uint80""..gobytes.2,"".softSuffix0type.[]uint80""..gobytes.30"".initdonetype.uint8"".NewReaderf"".NewReader"".fromHexf"".fromHex""".readHexBytef"".readHexByte6"".isQPDiscardWhitespacef0"".isQPDiscardWhitespace("".(*Reader).Readf""".(*Reader).Read"".NewWriterf"".NewWriter*"".(*Writer).Writef$"".(*Writer).Write*"".(*Writer).Closef$"".(*Writer).Close*"".(*Writer).writef$"".(*Writer).write,"".(*Writer).encodef&"".(*Writer).encode:"".(*Writer).checkLastBytef4"".(*Writer).checkLastByteF"".(*Writer).insertSoftLineBreakf@"".(*Writer).insertSoftLineBreak4"".(*Writer).insertCRLFf."".(*Writer).insertCRLF*"".(*Writer).flushf$"".(*Writer).flush$"".isWhitespacef"".isWhitespace"".initf"".init"runtime.gcbits.01.go.string.hdr."[]uint8"  &go.string."[]uint8"&go.string."[]uint8"[]uint8type.[]uint8~.80 runtime.algarray@"runtime.gcbits.01P.go.string.hdr."[]uint8"p*go.weak.type.*[]uint8"runtime.zerovaluetype.uint86go.typelink.[]uint8	[]uint8type.[]uint8Ngo.string.hdr."*quotedprintable.Reader"  Fgo.string."*quotedprintable.Reader"Fgo.string."*quotedprintable.Reader"00*quotedprintable.Readergo.string.hdr."func(*quotedprintable.Reader, []uint8) (int, error)"  3~go.string."func(*quotedprintable.Reader, []uint8) (int, error)"~go.string."func(*quotedprintable.Reader, []uint8) (int, error)"phfunc(*quotedprintable.Reader, []uint8) (int, error)Vtype.func(*"".Reader, []uint8) (int, error)_30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*quotedprintable.Reader, []uint8) (int, error)"phgo.weak.type.*func(*"".Reader, []uint8) (int, error)"runtime.zerovalueVtype.func(*"".Reader, []uint8) (int, error)Vtype.func(*"".Reader, []uint8) (int, error)type.*"".Readertype.[]uint8type.inttype.errorgo.typelink.func(*quotedprintable.Reader, []uint8) (int, error)	func(*"".Reader, []uint8) (int, error)Vtype.func(*"".Reader, []uint8) (int, error)(go.string.hdr."Read"   go.string."Read" go.string."Read"
    616 ReadTgo.string.hdr."func([]uint8) (int, error)"  Lgo.string."func([]uint8) (int, error)"Lgo.string."func([]uint8) (int, error)"@6func([]uint8) (int, error)>type.func([]uint8) (int, error)N4P30 runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."func([]uint8) (int, error)"pPgo.weak.type.*func([]uint8) (int, error)"runtime.zerovalue>type.func([]uint8) (int, error)>type.func([]uint8) (int, error)type.[]uint8type.inttype.errorgo.typelink.func([]uint8) (int, error)	func([]uint8) (int, error)>type.func([]uint8) (int, error)type.*"".Reader
    617 
    618 60 runtime.algarray@"runtime.gcbits.01PNgo.string.hdr."*quotedprintable.Reader"p0go.weak.type.**"".Reader"runtime.zerovaluetype."".Reader`type.*"".Readertype.*"".Reader(go.string.hdr."Read">type.func([]uint8) (int, error)Vtype.func(*"".Reader, []uint8) (int, error)""".(*Reader).Read""".(*Reader).Read"runtime.gcbits.0fLgo.string.hdr."quotedprintable.Reader"  Dgo.string."quotedprintable.Reader"Dgo.string."quotedprintable.Reader"0.quotedprintable.Reader$go.string.hdr."br"  go.string."br"go.string."br"brHgo.string.hdr."mime/quotedprintable"  @go.string."mime/quotedprintable"@go.string."mime/quotedprintable"0*mime/quotedprintable"go.importpath."".  @go.string."mime/quotedprintable"(go.string.hdr."rerr"   go.string."rerr" go.string."rerr"
    619 rerr(go.string.hdr."line"   go.string."line" go.string."line"
    620 line,go.string.hdr."Reader"  $go.string."Reader"$go.string."Reader"Readertype."".Reader0 x&0 runtime.algarray@"runtime.gcbits.0fPLgo.string.hdr."quotedprintable.Reader"ptype.*"".Reader"runtime.zerovaluetype."".Reader$go.string.hdr."br""go.importpath."".$type.*bufio.Reader(go.string.hdr."rerr""go.importpath."".type.error(go.string.hdr."line""go.importpath."".type.[]uint8`type."".Reader,go.string.hdr."Reader""go.importpath."".type."".Reader"runtime.gcbits.038go.string.hdr."interface {}"  0go.string."interface {}"0go.string."interface {}" interface {}"type.interface {}W0 runtime.algarray@"runtime.gcbits.03P8go.string.hdr."interface {}"p4go.weak.type.*interface {}"runtime.zerovalue"type.interface {}<go.string.hdr."[]interface {}"  4go.string."[]interface {}"4go.string."[]interface {}" []interface {}&type.[]interface {}p/0 runtime.algarray@"runtime.gcbits.01P<go.string.hdr."[]interface {}"p8go.weak.type.*[]interface {}"runtime.zerovalue"type.interface {}Rgo.typelink.[]interface {}	[]interface {}&type.[]interface {}Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals2c78d3ad9d760b5f66e2e47be684c787  Tgclocals51af24152615272c3d9efc8538f95767  <type..hashfunc.[1]interface {}4type..hash.[1]interface {}8type..eqfunc.[1]interface {}0type..eq.[1]interface {}2type..alg.[1]interface {}  <type..hashfunc.[1]interface {}8type..eqfunc.[1]interface {}>go.string.hdr."[1]interface {}"  6go.string."[1]interface {}"6go.string."[1]interface {}"  [1]interface {}(type.[1]interface {}P[02type..alg.[1]interface {}@"runtime.gcbits.03P>go.string.hdr."[1]interface {}"p:go.weak.type.*[1]interface {}"runtime.zerovalue"type.interface {}&type.[]interface {}Vgo.typelink.[1]interface {}	[1]interface {}(type.[1]interface {}@go.string.hdr."*[1]interface {}"  8go.string."*[1]interface {}"8go.string."*[1]interface {}"0"*[1]interface {}*type.*[1]interface {}560 runtime.algarray@"runtime.gcbits.01P@go.string.hdr."*[1]interface {}"p<go.weak.type.**[1]interface {}"runtime.zerovalue(type.[1]interface {} type..hashfunc78  N,runtime.memhash_varlentype..eqfunc78  N.runtime.memequal_varlentype..alg78   type..hashfunc78type..eqfunc78runtime.gcbits.2go.string.hdr."[78]uint8"  	*go.string."[78]uint8"*go.string."[78]uint8" [78]uint8type.[78]uint8N7hN0type..alg78@runtime.gcbits.P2go.string.hdr."[78]uint8"p.go.weak.type.*[78]uint8"runtime.zerovaluetype.uint8type.[]uint8>go.typelink.[78]uint8	[78]uint8type.[78]uint8Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals2c78d3ad9d760b5f66e2e47be684c787  Tgclocals51af24152615272c3d9efc8538f95767  0type..hashfunc."".Writer(type..hash."".Writer,type..eqfunc."".Writer$type..eq."".Writer&type..alg."".Writer  0type..hashfunc."".Writer,type..eqfunc."".WriterNgo.string.hdr."*quotedprintable.Writer"  Fgo.string."*quotedprintable.Writer"Fgo.string."*quotedprintable.Writer"00*quotedprintable.Writerfgo.string.hdr."func(*quotedprintable.Writer) error"  #^go.string."func(*quotedprintable.Writer) error"^go.string."func(*quotedprintable.Writer) error"PHfunc(*quotedprintable.Writer) error6type.func(*"".Writer) errorL30 runtime.algarray@"runtime.gcbits.01Pfgo.string.hdr."func(*quotedprintable.Writer) error"pHgo.weak.type.*func(*"".Writer) error"runtime.zerovalue6type.func(*"".Writer) error6type.func(*"".Writer) errortype.*"".Writertype.errorgo.typelink.func(*quotedprintable.Writer) error	func(*"".Writer) error6type.func(*"".Writer) errorgo.string.hdr."func(*quotedprintable.Writer, []uint8) (int, error)"  3~go.string."func(*quotedprintable.Writer, []uint8) (int, error)"~go.string."func(*quotedprintable.Writer, []uint8) (int, error)"phfunc(*quotedprintable.Writer, []uint8) (int, error)Vtype.func(*"".Writer, []uint8) (int, error))gB30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*quotedprintable.Writer, []uint8) (int, error)"phgo.weak.type.*func(*"".Writer, []uint8) (int, error)"runtime.zerovalueVtype.func(*"".Writer, []uint8) (int, error)Vtype.func(*"".Writer, []uint8) (int, error)type.*"".Writertype.[]uint8type.inttype.errorgo.typelink.func(*quotedprintable.Writer, []uint8) (int, error)	func(*"".Writer, []uint8) (int, error)Vtype.func(*"".Writer, []uint8) (int, error)tgo.string.hdr."func(*quotedprintable.Writer, uint8) error"  *lgo.string."func(*quotedprintable.Writer, uint8) error"lgo.string."func(*quotedprintable.Writer, uint8) error"`Vfunc(*quotedprintable.Writer, uint8) errorDtype.func(*"".Writer, uint8) error30 runtime.algarray@"runtime.gcbits.01Ptgo.string.hdr."func(*quotedprintable.Writer, uint8) error"pVgo.weak.type.*func(*"".Writer, uint8) error"runtime.zerovalueDtype.func(*"".Writer, uint8) errorDtype.func(*"".Writer, uint8) errortype.*"".Writertype.uint8type.errorgo.typelink.func(*quotedprintable.Writer, uint8) error	func(*"".Writer, uint8) errorDtype.func(*"".Writer, uint8) errorxgo.string.hdr."func(*quotedprintable.Writer, []uint8) error"  ,pgo.string."func(*quotedprintable.Writer, []uint8) error"pgo.string."func(*quotedprintable.Writer, []uint8) error"`Zfunc(*quotedprintable.Writer, []uint8) errorHtype.func(*"".Writer, []uint8) errorM[30 runtime.algarray@"runtime.gcbits.01Pxgo.string.hdr."func(*quotedprintable.Writer, []uint8) error"pZgo.weak.type.*func(*"".Writer, []uint8) error"runtime.zerovalueHtype.func(*"".Writer, []uint8) errorHtype.func(*"".Writer, []uint8) errortype.*"".Writertype.[]uint8type.errorgo.typelink.func(*quotedprintable.Writer, []uint8) error	func(*"".Writer, []uint8) errorHtype.func(*"".Writer, []uint8) 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."Write"  "go.string."Write""go.string."Write"Write:go.string.hdr."checkLastByte"  
2go.string."checkLastByte"2go.string."checkLastByte" checkLastByte,go.string.hdr."encode"  $go.string."encode"$go.string."encode"encodeBgo.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."flush"  "go.string."flush""go.string."flush"flush4go.string.hdr."insertCRLF"  
    632 ,go.string."insertCRLF",go.string."insertCRLF" insertCRLFFgo.string.hdr."insertSoftLineBreak"  >go.string."insertSoftLineBreak">go.string."insertSoftLineBreak"0(insertSoftLineBreak*go.string.hdr."write"  "go.string."write""go.string."write"writeFgo.string.hdr."func([]uint8) error"  >go.string."func([]uint8) error">go.string."func([]uint8) error"0(func([]uint8) error0type.func([]uint8) error_[:30 runtime.algarray@"runtime.gcbits.01PFgo.string.hdr."func([]uint8) error"pBgo.weak.type.*func([]uint8) error"runtime.zerovalue0type.func([]uint8) error0type.func([]uint8) errortype.[]uint8type.errorfgo.typelink.func([]uint8) error	func([]uint8) error0type.func([]uint8) errortype.*"".WriterR6l0 runtime.algarray@"runtime.gcbits.01PNgo.string.hdr."*quotedprintable.Writer"p0go.weak.type.**"".Writer"runtime.zerovaluetype."".Writer`type.*"".Writertype.*"".Writer*go.string.hdr."Close""type.func() error6type.func(*"".Writer) error$"".(*Writer).Close$"".(*Writer).Close*go.string.hdr."Write">type.func([]uint8) (int, error)Vtype.func(*"".Writer, []uint8) (int, error)$"".(*Writer).Write$"".(*Writer).Write:go.string.hdr."checkLastByte""go.importpath.""."type.func() error6type.func(*"".Writer) error4"".(*Writer).checkLastByte4"".(*Writer).checkLastByte,go.string.hdr."encode""go.importpath."".,type.func(uint8) errorDtype.func(*"".Writer, uint8) error&"".(*Writer).encode&"".(*Writer).encode*go.string.hdr."flush""go.importpath.""."type.func() error6type.func(*"".Writer) error$"".(*Writer).flush$"".(*Writer).flush4go.string.hdr."insertCRLF""go.importpath.""."type.func() error6type.func(*"".Writer) error."".(*Writer).insertCRLF."".(*Writer).insertCRLFFgo.string.hdr."insertSoftLineBreak""go.importpath.""."type.func() error6type.func(*"".Writer) error@"".(*Writer).insertSoftLineBreak@"".(*Writer).insertSoftLineBreak*go.string.hdr."write""go.importpath."".0type.func([]uint8) errorHtype.func(*"".Writer, []uint8) error$"".(*Writer).write$"".(*Writer).write"runtime.gcbits.06Lgo.string.hdr."quotedprintable.Writer"  Dgo.string."quotedprintable.Writer"Dgo.string."quotedprintable.Writer"0.quotedprintable.Writer,go.string.hdr."Binary"  $go.string."Binary"$go.string."Binary"Binary"go.string.hdr."w"  go.string."w"go.string."w"w"go.string.hdr."i"  go.string."i"go.string."i"i$go.string.hdr."cr"  go.string."cr"go.string."cr"cr,go.string.hdr."Writer"  $go.string."Writer"$go.string."Writer"Writertype."".Writerp`	o n00&type..alg."".Writer@"runtime.gcbits.06PLgo.string.hdr."quotedprintable.Writer"ptype.*"".Writer"runtime.zerovaluetype."".Writer,go.string.hdr."Binary"type.bool"go.string.hdr."w""go.importpath."".type.io.Writer"go.string.hdr."i""go.importpath."".type.int(go.string.hdr."line""go.importpath."".type.[78]uint8$go.string.hdr."cr""go.importpath."".type.bool`type."".Writer,go.string.hdr."Writer""go.importpath."".type."".Writer.go.string.hdr."runtime"  &go.string."runtime"&go.string."runtime"runtime,go.importpath.runtime.  &go.string."runtime"*go.string.hdr."bufio"  "go.string."bufio""go.string."bufio"bufio(go.importpath.bufio.  "go.string."bufio"*go.string.hdr."bytes"  "go.string."bytes""go.string."bytes"bytes(go.importpath.bytes.  "go.string."bytes"$go.string.hdr."io"  go.string."io"go.string."io"io"go.importpath.io.  go.string."io"&go.string.hdr."fmt"  go.string."fmt"go.string."fmt"fmt$go.importpath.fmt.  go.string."fmt":type..hash.[1]interface {}f4type..hash.[1]interface {}6type..eq.[1]interface {}f0type..eq.[1]interface {}.type..hash."".Writerf(type..hash."".Writer*type..eq."".Writerf$type..eq."".Writer"runtime.zerovaluego13ld