blob: 47635f4fbf8403c8493d4e452812b6bebb5651df [file] [log] [blame]
!<arch>
__.PKGDEF 0 0 0 644 14580 `
go object windows amd64 go1.5.1 X:none
build id "402d2980bdc896e02ae71d99d3cc1d63c47530dd"
$$
package mail
import runtime "runtime"
import bufio "bufio"
import bytes "bytes"
import errors "errors"
import io "io"
import fmt "fmt"
import log "log"
import time "time"
import mime "mime"
import strings "strings"
import textproto "net/textproto"
type @"time".zone struct { @"time".name string; @"time".offset int; @"time".isDST bool }
type @"time".zoneTrans struct { @"time".when int64; @"time".index uint8; @"time".isstd bool; @"time".isutc bool }
type @"time".Location struct { @"time".name string; @"time".zone []@"time".zone; @"time".tx []@"time".zoneTrans; @"time".cacheStart int64; @"time".cacheEnd int64; @"time".cacheZone *@"time".zone }
func (@"time".l·2 *@"time".Location "esc:0x22") String () (? string)
func (@"time".l·2 *@"time".Location "esc:0x1") @"time".firstZoneUsed () (? bool)
func (@"time".l·2 *@"time".Location "esc:0x12") @"time".get () (? *@"time".Location)
func (@"time".l·6 *@"time".Location "esc:0x32") @"time".lookup (@"time".sec·7 int64) (@"time".name·1 string, @"time".offset·2 int, @"time".isDST·3 bool, @"time".start·4 int64, @"time".end·5 int64)
func (@"time".l·2 *@"time".Location "esc:0x1") @"time".lookupFirstZone () (? int)
func (@"time".l·4 *@"time".Location "esc:0x1") @"time".lookupName (@"time".name·5 string "esc:0x1", @"time".unix·6 int64) (@"time".offset·1 int, @"time".isDST·2 bool, @"time".ok·3 bool)
type @"time".Duration int64
func (@"time".d·2 @"time".Duration) Hours () (? float64) { var @"time".hour·3 @"time".Duration; ; @"time".hour·3 = @"time".d·2 / @"time".Duration(0x34630b8a000); var @"time".nsec·4 @"time".Duration; ; @"time".nsec·4 = @"time".d·2 % @"time".Duration(0x34630b8a000); return float64(@"time".hour·3) + float64(@"time".nsec·4) * 8190022623310637111963488201822504381538623676021880892417778544696899264837610290203272971060556344039023584360473938041055625214280336402169897364226048p-553 }
func (@"time".d·2 @"time".Duration) Minutes () (? float64) { var @"time".min·3 @"time".Duration; ; @"time".min·3 = @"time".d·2 / @"time".Duration(0xdf8475800); var @"time".nsec·4 @"time".Duration; ; @"time".nsec·4 = @"time".d·2 % @"time".Duration(0xdf8475800); return float64(@"time".min·3) + float64(@"time".nsec·4) * 7678146209353722106395056769533233877065564876941352542109479049699919628723768656821910653339403201031675627614471533358284117434246264392176261853609984p-547 }
func (@"time".d·2 @"time".Duration) Nanoseconds () (? int64) { return int64(@"time".d·2) }
func (@"time".d·2 @"time".Duration) Seconds () (? float64) { var @"time".sec·3 @"time".Duration; ; @"time".sec·3 = @"time".d·2 / @"time".Duration(0x3b9aca00); var @"time".nsec·4 @"time".Duration; ; @"time".nsec·4 = @"time".d·2 % @"time".Duration(0x3b9aca00); return float64(@"time".sec·3) + float64(@"time".nsec·4) * 7198262071269114660816079141112770740375861891461678802759824945047098083990024106014198994535558872472104883612039846078596891298747423852523262413111296p-541 }
func (@"time".d·2 @"time".Duration) String () (? string)
type @"time".Month int
func (@"time".m·2 @"time".Month) String () (? string) { return @"time".months[@"time".m·2 - @"time".Month(0x1)] }
type @"time".Weekday int
func (@"time".d·2 @"time".Weekday) String () (? string) { return @"time".days[@"time".d·2] }
type @"time".Time struct { @"time".sec int64; @"time".nsec int32; @"time".loc *@"time".Location }
func (@"time".t·2 @"time".Time "esc:0x12") Add (@"time".d·3 @"time".Duration) (? @"time".Time) { @"time".t·2.@"time".sec += int64(@"time".d·3 / @"time".Duration(0x3b9aca00)); var @"time".nsec·4 int32; ; @"time".nsec·4 = int32(@"time".t·2.@"time".nsec) + int32(@"time".d·3 % @"time".Duration(0x3b9aca00)); if @"time".nsec·4 >= 0x3b9aca00 { @"time".t·2.@"time".sec++; @"time".nsec·4 -= 0x3b9aca00 } else { if @"time".nsec·4 < 0x0 { @"time".t·2.@"time".sec--; @"time".nsec·4 += 0x3b9aca00 } }; @"time".t·2.@"time".nsec = @"time".nsec·4; return @"time".t·2 }
func (@"time".t·2 @"time".Time "esc:0x12") AddDate (@"time".years·3 int, @"time".months·4 int, @"time".days·5 int) (? @"time".Time)
func (@"time".t·2 @"time".Time "esc:0x1") After (@"time".u·3 @"time".Time "esc:0x1") (? bool) { return @"time".t·2.@"time".sec > @"time".u·3.@"time".sec || @"time".t·2.@"time".sec == @"time".u·3.@"time".sec && @"time".t·2.@"time".nsec > @"time".u·3.@"time".nsec }
func (@"time".t·2 @"time".Time "esc:0x9") AppendFormat (@"time".b·3 []byte "esc:0x1a", @"time".layout·4 string "esc:0x9") (? []byte)
func (@"time".t·2 @"time".Time "esc:0x1") Before (@"time".u·3 @"time".Time "esc:0x1") (? bool) { return @"time".t·2.@"time".sec < @"time".u·3.@"time".sec || @"time".t·2.@"time".sec == @"time".u·3.@"time".sec && @"time".t·2.@"time".nsec < @"time".u·3.@"time".nsec }
func (@"time".t·4 @"time".Time "esc:0x1") Clock () (@"time".hour·1 int, @"time".min·2 int, @"time".sec·3 int)
func (@"time".t·4 @"time".Time "esc:0x1") Date () (@"time".year·1 int, @"time".month·2 @"time".Month, @"time".day·3 int)
func (@"time".t·2 @"time".Time "esc:0x1") Day () (? int)
func (@"time".t·2 @"time".Time "esc:0x1") Equal (@"time".u·3 @"time".Time "esc:0x1") (? bool) { return @"time".t·2.@"time".sec == @"time".u·3.@"time".sec && @"time".t·2.@"time".nsec == @"time".u·3.@"time".nsec }
func (@"time".t·2 @"time".Time "esc:0x9") Format (@"time".layout·3 string "esc:0x9") (? string)
func (@"time".t·2 *@"time".Time "esc:0x1") GobDecode (@"time".data·3 []byte "esc:0x1") (? error)
func (@"time".t·3 @"time".Time "esc:0x1") GobEncode () (? []byte, ? error)
func (@"time".t·2 @"time".Time "esc:0x1") Hour () (? int)
func (@"time".t·3 @"time".Time "esc:0x1") ISOWeek () (@"time".year·1 int, @"time".week·2 int)
func (@"time".t·2 @"time".Time "esc:0x12") In (@"time".loc·3 *@"time".Location "esc:0x12") (? @"time".Time)
func (@"time".t·2 @"time".Time "esc:0x1") IsZero () (? bool) { return @"time".t·2.@"time".sec == 0x0 && @"time".t·2.@"time".nsec == 0x0 }
func (@"time".t·2 @"time".Time "esc:0x12") Local () (? @"time".Time) { @"time".t·2.@"time".loc = @"time".Local; return @"time".t·2 }
func (@"time".t·2 @"time".Time "esc:0x12") Location () (? *@"time".Location) { var @"time".l·3 *@"time".Location; ; @"time".l·3 = @"time".t·2.@"time".loc; if @"time".l·3 == nil { @"time".l·3 = @"time".UTC }; return @"time".l·3 }
func (@"time".t·3 @"time".Time "esc:0x1") MarshalBinary () (? []byte, ? error)
func (@"time".t·3 @"time".Time "esc:0x9") MarshalJSON () (? []byte, ? error)
func (@"time".t·3 @"time".Time "esc:0x9") MarshalText () (? []byte, ? error)
func (@"time".t·2 @"time".Time "esc:0x1") Minute () (? int)
func (@"time".t·2 @"time".Time "esc:0x1") Month () (? @"time".Month)
func (@"time".t·2 @"time".Time "esc:0x1") Nanosecond () (? int) { return int(@"time".t·2.@"time".nsec) }
func (@"time".t·2 @"time".Time "esc:0x12") Round (@"time".d·3 @"time".Duration) (? @"time".Time)
func (@"time".t·2 @"time".Time "esc:0x1") Second () (? int)
func (@"time".t·2 @"time".Time "esc:0x9") String () (? string)
func (@"time".t·2 @"time".Time "esc:0x1") Sub (@"time".u·3 @"time".Time "esc:0x1") (? @"time".Duration)
func (@"time".t·2 @"time".Time "esc:0x12") Truncate (@"time".d·3 @"time".Duration) (? @"time".Time)
func (@"time".t·2 @"time".Time "esc:0x12") UTC () (? @"time".Time) { @"time".t·2.@"time".loc = @"time".UTC; return @"time".t·2 }
func (@"time".t·2 @"time".Time "esc:0x1") Unix () (? int64) { return @"time".t·2.@"time".sec + -0xe7791f700 }
func (@"time".t·2 @"time".Time "esc:0x1") UnixNano () (? int64) { return (@"time".t·2.@"time".sec + -0xe7791f700) * 0x3b9aca00 + int64(@"time".t·2.@"time".nsec) }
func (@"time".t·2 *@"time".Time "esc:0x1") UnmarshalBinary (@"time".data·3 []byte "esc:0x1") (? error)
func (@"time".t·2 *@"time".Time "esc:0x1") UnmarshalJSON (@"time".data·3 []byte "esc:0x1") (@"time".err·1 error)
func (@"time".t·2 *@"time".Time "esc:0x1") UnmarshalText (@"time".data·3 []byte "esc:0x1") (@"time".err·1 error)
func (@"time".t·2 @"time".Time "esc:0x1") Weekday () (? @"time".Weekday)
func (@"time".t·2 @"time".Time "esc:0x1") Year () (? int)
func (@"time".t·2 @"time".Time "esc:0x1") YearDay () (? int)
func (@"time".t·3 @"time".Time "esc:0x32") Zone () (@"time".name·1 string, @"time".offset·2 int)
func (@"time".t·2 @"time".Time "esc:0x1") @"time".abs () (? uint64)
func (@"time".t·5 @"time".Time "esc:0x1") @"time".date (@"time".full·6 bool) (@"time".year·1 int, @"time".month·2 @"time".Month, @"time".day·3 int, @"time".yday·4 int)
func (@"time".t·4 @"time".Time "esc:0x32") @"time".locabs () (@"time".name·1 string, @"time".offset·2 int, @"time".abs·3 uint64)
type @"".Address struct { Name string; Address string }
func (@"".a·2 *@"".Address "esc:0x9") String () (? string)
type @"".Header map[string][]string
func (@"".h·3 @"".Header "esc:0x1") AddressList (@"".key·4 string "esc:0x1") (? []*@"".Address, ? error)
func (@"".h·3 @"".Header "esc:0x1") Date () (? @"time".Time, ? error)
func (@"".h·2 @"".Header "esc:0x1") Get (@"".key·3 string "esc:0x1") (? string)
type @"io".Reader interface { Read(@"io".p []byte) (@"io".n int, @"io".err error) }
type @"".Message struct { Header @"".Header; Body @"io".Reader }
func @"".ReadMessage (@"".r·3 @"io".Reader) (@"".msg·1 *@"".Message, @"".err·2 error)
var @"".ErrHeaderNotPresent error
func @"".ParseAddress (@"".address·3 string) (? *@"".Address, ? error)
func @"".ParseAddressList (@"".list·3 string) (? []*@"".Address, ? error)
type @"bytes".readOp int
type @"io".Writer interface { Write(@"io".p []byte) (@"io".n int, @"io".err error) }
type @"bytes".Buffer struct { @"bytes".buf []byte; @"bytes".off int; @"bytes".runeBytes [4]byte; @"bytes".bootstrap [64]byte; @"bytes".lastRead @"bytes".readOp }
func (@"bytes".b·2 *@"bytes".Buffer "esc:0x22") Bytes () (? []byte) { return @"bytes".b·2.@"bytes".buf[@"bytes".b·2.@"bytes".off:] }
func (@"bytes".b·2 *@"bytes".Buffer "esc:0x1") Cap () (? int) { return cap(@"bytes".b·2.@"bytes".buf) }
func (@"bytes".b·1 *@"bytes".Buffer) Grow (@"bytes".n·2 int)
func (@"bytes".b·2 *@"bytes".Buffer "esc:0x1") Len () (? int) { return len(@"bytes".b·2.@"bytes".buf) - @"bytes".b·2.@"bytes".off }
func (@"bytes".b·2 *@"bytes".Buffer "esc:0x22") Next (@"bytes".n·3 int) (? []byte) { @"bytes".b·2.@"bytes".lastRead = @"bytes".readOp(0x0); var @"bytes".m·4 int; ; @"bytes".m·4 = @"bytes".b·2.Len(); if @"bytes".n·3 > @"bytes".m·4 { @"bytes".n·3 = @"bytes".m·4 }; var @"bytes".data·5 []byte; ; @"bytes".data·5 = @"bytes".b·2.@"bytes".buf[@"bytes".b·2.@"bytes".off:@"bytes".b·2.@"bytes".off + @"bytes".n·3]; @"bytes".b·2.@"bytes".off += @"bytes".n·3; if @"bytes".n·3 > 0x0 { @"bytes".b·2.@"bytes".lastRead = @"bytes".readOp(0x2) }; return @"bytes".data·5 }
func (@"bytes".b·3 *@"bytes".Buffer "esc:0x9") Read (@"bytes".p·4 []byte "esc:0x1") (@"bytes".n·1 int, @"bytes".err·2 error)
func (@"bytes".b·3 *@"bytes".Buffer "esc:0x1") ReadByte () (@"bytes".c·1 byte, @"bytes".err·2 error)
func (@"bytes".b·3 *@"bytes".Buffer "esc:0x9") ReadBytes (@"bytes".delim·4 byte) (@"bytes".line·1 []byte, @"bytes".err·2 error)
func (@"bytes".b·3 *@"bytes".Buffer "esc:0x9") ReadFrom (@"bytes".r·4 @"io".Reader) (@"bytes".n·1 int64, @"bytes".err·2 error)
func (@"bytes".b·4 *@"bytes".Buffer "esc:0x1") ReadRune () (@"bytes".r·1 rune, @"bytes".size·2 int, @"bytes".err·3 error)
func (@"bytes".b·3 *@"bytes".Buffer "esc:0x1") ReadString (@"bytes".delim·4 byte) (@"bytes".line·1 string, @"bytes".err·2 error)
func (@"bytes".b·1 *@"bytes".Buffer "esc:0x1") Reset ()
func (@"bytes".b·2 *@"bytes".Buffer "esc:0x1") String () (? string) { if @"bytes".b·2 == nil { return "<nil>" }; return string(@"bytes".b·2.@"bytes".buf[@"bytes".b·2.@"bytes".off:]) }
func (@"bytes".b·1 *@"bytes".Buffer "esc:0x1") Truncate (@"bytes".n·2 int)
func (@"bytes".b·2 *@"bytes".Buffer "esc:0x1") UnreadByte () (? error) { if @"bytes".b·2.@"bytes".lastRead != @"bytes".readOp(0x1) && @"bytes".b·2.@"bytes".lastRead != @"bytes".readOp(0x2) { return @"errors".New("bytes.Buffer: UnreadByte: previous operation was not a read") }; @"bytes".b·2.@"bytes".lastRead = @"bytes".readOp(0x0); if @"bytes".b·2.@"bytes".off > 0x0 { @"bytes".b·2.@"bytes".off-- }; return nil }
func (@"bytes".b·2 *@"bytes".Buffer "esc:0x1") UnreadRune () (? error)
func (@"bytes".b·3 *@"bytes".Buffer) Write (@"bytes".p·4 []byte "esc:0x9") (@"bytes".n·1 int, @"bytes".err·2 error)
func (@"bytes".b·2 *@"bytes".Buffer) WriteByte (@"bytes".c·3 byte) (? error)
func (@"bytes".b·3 *@"bytes".Buffer) WriteRune (@"bytes".r·4 rune) (@"bytes".n·1 int, @"bytes".err·2 error)
func (@"bytes".b·3 *@"bytes".Buffer) WriteString (@"bytes".s·4 string "esc:0x9") (@"bytes".n·1 int, @"bytes".err·2 error)
func (@"bytes".b·3 *@"bytes".Buffer "esc:0x9") WriteTo (@"bytes".w·4 @"io".Writer) (@"bytes".n·1 int64, @"bytes".err·2 error)
func (@"bytes".b·2 *@"bytes".Buffer) @"bytes".grow (@"bytes".n·3 int) (? int)
func (@"bytes".b·3 *@"bytes".Buffer "esc:0x22") @"bytes".readSlice (@"bytes".delim·4 byte) (@"bytes".line·1 []byte, @"bytes".err·2 error)
type @"mime".WordDecoder struct { CharsetReader func(@"mime".charset string, @"mime".input @"io".Reader) (? @"io".Reader, ? error) }
func (@"mime".d·3 *@"mime".WordDecoder "esc:0x1") Decode (@"mime".word·4 string) (? string, ? error)
func (@"mime".d·3 *@"mime".WordDecoder "esc:0x1") DecodeHeader (@"mime".header·4 string) (? string, ? error)
func (@"mime".d·2 *@"mime".WordDecoder "esc:0x1") @"mime".convert (@"mime".buf·3 *@"bytes".Buffer, @"mime".charset·4 string, @"mime".content·5 []byte) (? error)
type @"".AddressParser struct { WordDecoder *@"mime".WordDecoder }
func (@"".p·3 *@"".AddressParser "esc:0x9") Parse (@"".address·4 string) (? *@"".Address, ? error)
func (@"".p·3 *@"".AddressParser "esc:0x9") ParseList (@"".list·4 string) (? []*@"".Address, ? error)
func @"".init ()
var @"time".months [12]string
var @"time".days [7]string
var @"time".Local *@"time".Location
var @"time".UTC *@"time".Location
func @"errors".New (@"errors".text·2 string) (? error) { return (&@"errors".errorString{ @"errors".s:@"errors".text·2 }) }
type @"errors".errorString struct { @"errors".s string }
func (@"errors".e·2 *@"errors".errorString "esc:0x22") Error () (? string) { return @"errors".e·2.@"errors".s }
$$
_go_.o 0 0 0 644 160924 `
go object windows amd64 go1.5.1 X:none
!
��go13ldbufio.abytes.aerrors.a
fmt.aio.a
log.a mime.anet/textproto.astrings.a time.a�þ "".debugT.Printf��à��ÆeH‹ %(���H‹‰����H;avFHƒì(€|$0�t6H‹\$8H‰$H‹\$@H‰\$H‹\$HH‰\$H‹\$PH‰\$H‹\$XH‰\$ è����HƒÄ(Ãè����ë������¦
��log.Printf���º
��0runtime.morestack_noctxt���`P��"".args�0&type.[]interface {}�"".format�type.string�"".d��type."".debugT�PAOP�p�H6�
�R�Tgclocals·dc4819cec76b48d37a88e20b1cadd722�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���\prebuilts/go/linux-x86/src/net/mail/message.goþ"".ReadMessage��€��ü eH‹ %(���H‹‰����H„$HÿÿÿH;A†R��Hì8��1Û1ÛH‰œ$X��H‰œ$`��H‹œ$@��H‹„$H��H‰\$pH‰D$xH‰„$ˆ���HÇÂ���H‰œ$€���1íH9ëtH‹[H-����H9ë…â��HÇÁ���€ù�„±��H‹XH9ÓŒ¤��H‰Á1ÀH‰„$¸���H‰„$À���H‰„$È���H‰„$Ð���H‰„$Ø���H„$¸���1íH‰(H‰hH‰hH‰hH‰h H‰H‰D$8H‰$è����H‹\$H‰\$HH‹D$H‹\$H‰œ$`��H‰„$X��Hƒø�tHDŽ$P������HÄ8��ÃH����H‰$è����H‹\$H‰\$XH‹\$XHƒû�„Û���H‹l$H€=�����…¶���H‰+H‹����1íH9ètsH‹\$8H‹ H‹\$XHƒû�t\H‰„$���H‰CH‰Œ$˜���€=�����u+H‰KH‹\$XH‰œ$P��1ÛH‰œ$X��H‰œ$`��HÄ8��ÃLCL‰$H‰L$è����ëʼnë H����H‰$H����H‰\$H����H‰\$è����H‹D$é[ÿÿÿH‰$H‰l$è����é:ÿÿÿ‰éÿÿÿH‰T$0Hƒú} HÇD$0���H����H‰$è����H‹L$0H‹D$H‰D$@H‰D$PH����H‰$H‰L$H‰L$è����L‹D$H‹t$ H‹l$(H‹”$€���H‹Œ$ˆ���H¼$à���1ÀHƒÇøè����L‰„$ ���L‰„$à���H‰´$¨���H‰´$è���H‰¬$°���H‰¬$ð���H‰T$`H‰”$ø���H‰L$hH‰Œ$���HDŽ$(��ÿÿÿÿHDŽ$0��ÿÿÿÿH‹\$PHƒû�t,H¬$à���H‰\$H‰l$H-����H‰,$è����H‹D$@é?ýÿÿ‰ëÐ1À1Ééýÿÿè����é‚üÿÿ,������ø��$type.*bufio.Reader���ú
��Lnet/textproto.(*Reader).ReadMIMEHeader���„��type."".Message���–
��"runtime.newobject���Þ�6runtime.writeBarrierEnabled���€��>go.itab.*bufio.Reader.io.Reader���è�6runtime.writeBarrierEnabled���è
��.runtime.writebarrierptr���‚��$type.*bufio.Reader���˜��type.io.Reader���°��>go.itab.*bufio.Reader.io.Reader���Ä
�� runtime.typ2Itab���ô
��.runtime.writebarrierptr��� ��"type.bufio.Reader���Ô 
��"runtime.newobject���Š
��type.[]uint8���°

��"runtime.makeslice���” 
Ô� runtime.duffzero���  ��"type.bufio.Reader���² 
��(runtime.typedmemmove���ê 
��0runtime.morestack_noctxt���Pð��$"".autotmp_0010�¿ type.*"".Message�"".autotmp_0009�ÿ2type.net/textproto.Reader�"".autotmp_0007��4type.*net/textproto.Reader�"".autotmp_0006��$type.*bufio.Reader�"".autotmp_0005��$type.*bufio.Reader�"".autotmp_0004�¯"type.bufio.Reader�bufio.r·3�¯type.io.Reader�bufio.buf·2�¯type.[]uint8�bufio.b·1�Ï$type.*bufio.Reader�bufio.r·6�ï$type.*bufio.Reader�bufio.size·3�type.int�bufio.rd·2�ïtype.io.Reader�bufio.rd·2�type.io.Reader� "".hdr�ß:type.net/textproto.MIMEHeader�
"".tp�ÿ4type.*net/textproto.Reader� "".err�0type.error� "".msg�  type.*"".Message�"".r��type.io.Reader�*)ð•ïð¦ïðš�€�Jf=¶*
$B'6ª �(�ü
N©.H .Á(�Tgclocals·afdc4e52a65b6727c663d399373e0835�Tgclocals·c9e33b40efb230c089483b3d16ac4c0c���\prebuilts/go/linux-x86/src/net/mail/message.goþ"".init.1��À"��²"eH‹ %(���H‹‰����H„$PýÿÿH;A†m��Hì0��1Û1íH ����HÇÀ���1ÛH����H‰œ$°��HDŽ$¸�����H����H‰œ$À��HDŽ$È�����1ÛH����H‰œ$P��HDŽ$X�����H����H‰œ$`��HDŽ$h�����1ÛH����H‰œ$p��HDŽ$x�����1ÛH‰œ$€��H‰œ$ˆ��1ÛH����H‰œ$P��HDŽ$X�����H����H‰œ$`��HDŽ$h�����H����H‰œ$p��HDŽ$x�� ���H‰¬$��H‰¬$0��H‰¬$˜��H‰¬$8��H‰Œ$ ��H‰Œ$@��H‰„$¨��H‰„$H��HDŽ$�������HDŽ$ˆ������Hœ$0��H‰œ$À���H‹œ$���H‹¬$ˆ���H9덅��H‹œ$À���Hƒû�„È��H‹ H‹kH‰Œ$��H‰¬$��H‹œ$°��H‰œ$��H‹œ$¸��H‰œ$��H‹œ$À��H‰œ$ ��H‹œ$È��H‰œ$(��HDŽ$€�������HÇD$x���Hœ$��H‰œ$¸���H‹œ$€���H‹l$xH9덡��H‹œ$¸���Hƒû�„��H‹ H‹kH‰Œ$��H‰¬$ ��H‹œ$P��H‰œ$ð��H‹œ$X��H‰œ$ø��H‹œ$`��H‰œ$���H‹œ$h��H‰œ$��HÇD$p����HÇD$h���Hœ$ð��H‰œ$°���H‹\$pH‹l$hH9ëÆ��H‹œ$°���Hƒû�„x��H‹ H‹kH‰Œ$Ø���H‰¬$à���H‹œ$p��H‰œ$Ð��H‹œ$x��H‰œ$Ø��H‹œ$€��H‰œ$à��H‹œ$ˆ��H‰œ$è��HÇD$`����HÇD$X���Hœ$Ð��H‰œ$¨���H‹\$`H‹l$XH9ëô��H‹œ$¨���Hƒû�„Ó��H‹ H‹kH‰Œ$è���H‰¬$ð���H‹œ$P��H‰œ$€��H‹œ$X��H‰œ$ˆ��H‹œ$`��H‰œ$��H‹œ$h��H‰œ$˜��H‹œ$p��H‰œ$ ��H‹„$x��H‰„$¨��1ÉHÇD$H���H„$€��H‹l$HH9é��H‰„$ ���Hƒø�„"��H‹H‹hH‰L$PH‰”$(��H‰”$È���H‰¬$0��H‰¬$Ð���Hœ$°��H‰ßHƒû�„Ú��H5����è����HDŽ$@�����HDŽ$H�����H‰ØH‰œ$8��H‹¬$��H‰kH‹¬$��€=�����…o��H‰+H‹¬$ ��H‰ÃHƒÃH‰kH‹¬$��€=�����…)��H‰+H‹¬$à���H‰ÃHƒÃ0H‰kH‹¬$Ø���€=�����…ã��H‰+H‹¬$ð���H‰ÃHƒÃPH‰kH‹¬$è���€=�����…��H‰+H‹¬$Ð���H‰ÃHƒÃpH‰kH‹¬$È���€=�����…W��H‰+HÇ$����H‰D$H‹œ$@��H‰\$H‹œ$H��H‰\$è����H‹\$ H‰œ$ø���H‹\$(H‰œ$���H‹����H‹����H‹ ����H‰ÃHÿÃH9ˇZ��H‰����H‰ÓH‰ÅHkíHëH‹¬$���H‰kH‹¬$ø���€=�����…��H‰+H‹„$ ���H‹L$PHƒÀHÿÁH‹l$HH9éŒêýÿÿH‹œ$¨���HƒÃH‰œ$¨���H‹\$`HÿÃH‰\$`H‹\$`H‹l$XH9ëŒ ýÿÿH‹œ$°���HƒÃH‰œ$°���H‹\$pHÿÃH‰\$pH‹\$pH‹l$hH9ëŒ:üÿÿH‹œ$¸���HƒÃH‰œ$¸���H‹œ$€���HÿÃH‰œ$€���H‹œ$€���H‹l$xH9ëŒ_ûÿÿH‹œ$À���HƒÃH‰œ$À���H‹œ$���HÿÃH‰œ$���H‹œ$���H‹¬$ˆ���H9ëŒ{úÿÿHÄ0��ÃH‰$H‰l$è����éÞþÿÿH-����H‰,$H‰T$H‰D$H‰L$H‰\$ è����H‹T$(H‹D$0H‹L$8H‰ÃH‰D$@HÿÃH‰����H‰ ����H‰”$˜���€=�����u H‰����éDþÿÿH-����H‰,$H‰T$è����H‹”$˜���H‹D$@éþÿÿH‰$H‰l$è����H‹„$8��é‘ýÿÿH‰$H‰l$è����H‹„$8��éKýÿÿH‰$H‰l$è����H‹„$8��éýÿÿH‰$H‰l$è����H‹„$8��é¿üÿÿH‰$H‰l$è����H‹„$8��éyüÿÿ‰éüÿÿ‰�é×ûÿÿ‰é&ûÿÿ‰éúÿÿ‰éÜùÿÿ‰é1ùÿÿè����ég÷ÿÿL������`��"go.string."Mon, "���€��go.string."2"���¶��go.string."02"���ð�� go.string."2006"���¦��go.string."06"���à��go.string.":05"���¾��"go.string."-0700"���ô��go.string."MST"���ª��.go.string."-0700 (MST)"���œ��""".statictmp_0041���¦
À� runtime.duffcopy��� �6runtime.writeBarrierEnabled���ö�6runtime.writeBarrierEnabled���Ì�6runtime.writeBarrierEnabled���¢�6runtime.writeBarrierEnabled���ø�6runtime.writeBarrierEnabled���ä
��*runtime.concatstrings���¦��"".dateLayouts���´�"".dateLayouts��� �"".dateLayouts���î�"".dateLayouts���¼�6runtime.writeBarrierEnabled���Š
��.runtime.writebarrierptr���¢��type.[]string���Ü
��"runtime.growslice���ž�"".dateLayouts���¬ �"".dateLayouts���È�6runtime.writeBarrierEnabled���Ü��"".dateLayouts���ô��"".dateLayouts���
��.runtime.writebarrierptr���Ð
��.runtime.writebarrierptr���† 
��.runtime.writebarrierptr���¼ 
��.runtime.writebarrierptr���ò 
��.runtime.writebarrierptr���¨!
��.runtime.writebarrierptr��� "
��0runtime.morestack_noctxt����à ��L"".autotmp_0040�ïtype.[]string�"".autotmp_0039��type.string�"".autotmp_0038�Ÿ
type.*string�"".autotmp_0037�Ï type.int�"".autotmp_0036�¿ type.int�"".autotmp_0035��type.string�"".autotmp_0034�
type.*string�"".autotmp_0033�¯ type.int�"".autotmp_0032�Ÿ type.int�"".autotmp_0031��type.string�"".autotmp_0030�ÿ type.*string�"".autotmp_0029� type.int�"".autotmp_0028�ÿ
type.int�"".autotmp_0027��type.string�"".autotmp_0026�ï type.*string�"".autotmp_0025�ï
type.int�"".autotmp_0024�ß
type.int�"".autotmp_0023�type.string�"".autotmp_0022�ß type.*string�"".autotmp_0021�Ï
type.int�"".autotmp_0020�¿
type.int�"".autotmp_0019�ÿtype.[8]string�"".autotmp_0018�ßtype.[3]string�"".autotmp_0017�¿type.[2]string�"".autotmp_0016�ÿtype.[2]string�"".autotmp_0015�¿type.[2]string�"".autotmp_0014�ÿtype.[2]string�"".s�ïtype.string�"".zone�Ï type.string�"".second� type.string�"".year�¯ type.string� "".day�¯type.string� "".dow�Ïtype.string�"".zones�¿type.[3]string�"".seconds�ÿtype.[2]string�"".years�¿type.[2]string�"".days�ÿtype.[2]string�"".dows�¿type.[2]string�)à ‘ß à å� �ˆŠ)88/Sª¤žž¿Ú\"44=@ Ž�$�± “)Z ž�Tgclocals·f5be5308b59e045b7c5b33ee8908cfb7�Tgclocals·a6c3968f7745fb0c677d6eed208b96ce���\prebuilts/go/linux-x86/src/net/mail/message.goþ"".parseDate�� 
��”
eH‹ %(���H‹‰����HD$˜H;A†a��Hìè���1ÛH‰œ$���‰œ$��H‰œ$��1ÛH‰œ$��H‰œ$ ��H‹����H‹����H‹����H‰œ$à���1ÉH‰„$Ø���H‰D$HH‰”$Ð���H‰ÐH‹l$HH9éø���H‰D$`Hƒø�„Ô��H‹H‹hH‰L$PH‰”$¨���H‰¬$°���H‰”$ˆ���H‰$H‰¬$���H‰l$H‹œ$ð���H‰\$H‹œ$ø���H‰\$è����H‹l$ H‰¬$¸���‹T$(‰”$À���H‹L$0H‰Œ$È���H‹D$8H‹\$@H‰œ$ ���H‰„$˜���Hƒø�u1H‰¬$���‰”$��H‰Œ$��1ÛH‰œ$��H‰œ$ ��HÄè���ÃH‹D$`H‹L$PHƒÀHÿÁH‹l$HH9éŒÿÿÿH����H‰\$xHDŽ$€��� ���1ÛH‰\$hH‰\$pH����H‰$è����H‹D$H‰D$XH‹¬$€���H‰hH‹l$x€=�����u{H‰(H‰D$XH‹����1íH9èt6H‹l$X1ÉH‰Œ$���‰Œ$��H‰Œ$��H‰„$��H‰¬$ ��HÄè���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$ë›H‰$H‰l$è����H‹D$Xépÿÿÿ‰�é%þÿÿè����évýÿÿ ������¨��"".dateLayouts���¶�"".dateLayouts���Ä �"".dateLayouts���ê
��time.Parse���¢��Xgo.string."mail: header could not be parsed"���ê��.type.errors.errorString���ü
��"runtime.newobject���¾�6runtime.writeBarrierEnabled���â��Bgo.itab.*errors.errorString.error���ê��0type.*errors.errorString���€ ��type.error���˜ ��Bgo.itab.*errors.errorString.error���¬ 
�� runtime.typ2Itab���Ö 
��.runtime.writebarrierptr���‚

��0runtime.morestack_noctxt���pÐ��"".autotmp_0052�Ÿ0type.*errors.errorString�"".autotmp_0051�type.string�"".autotmp_0050�type.*string�"".autotmp_0049�¿type.int�"".autotmp_0048�¯type.int�"".autotmp_0047��0type.*errors.errorString�"".autotmp_0046�/type.[]string� "".~r0�ÿtype.error�errors.text·2�ßtype.string� "".err�Ÿtype.error�"".t�_type.time.Time�"".layout�¿type.string� "".~r2�Ptype.error� "".~r1� type.time.Time�"".date��type.string�(&ÐÈÏÐÂÏÐ^��*ºQpo1 ë ��ôɘ;�Tgclocals·1be7d47bae55850e7016f9662c4ac24a�Tgclocals·191ec12c1ae9b57de36c2ea47562d827���\prebuilts/go/linux-x86/src/net/mail/message.goþ"".Header.Get��à��ÐeH‹ %(���H‹‰����H;avKHƒì(1ÛH‰\$HH‰\$PH‹\$0H‰$H‹\$8H‰\$H‹\$@H‰\$è����H‹L$H‹D$ H‰L$HH‰D$PHƒÄ(Ãè����ë˜������ˆ
��8net/textproto.MIMEHeader.Get���Ä
��0runtime.morestack_noctxt���PP�� "".~r1�0type.string� "".key�type.string�"".h��type."".Header�PFOP�p�Ø&;�
�C-�Tgclocals·1347047f6245a35b91e9a4f213167d52�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���\prebuilts/go/linux-x86/src/net/mail/message.goþ"".Header.Date��€��âeH‹ %(���H‹‰����H;a†Í���HƒìH1ÛH‰\$X‰\$`H‰\$h1ÛH‰\$pH‰\$xH‹\$PH‰$H����H‰\$HÇD$���è����H‹L$H‹D$ Hƒø�u-1ÉH‰L$X‰L$`H‰L$hH‹����H‰\$pH‹����H‰\$xHƒÄHÃH‰L$8H‰ $H‰D$@H‰D$è����H‹t$‹l$H‹T$ H‹L$(H‹D$0H‰t$X‰l$`H‰T$hH‰L$pH‰D$xHƒÄHÃè����éÿÿÿ������Œ�� go.string."Date"���²
��"".Header.Get���€��,"".ErrHeaderNotPresent���˜�,"".ErrHeaderNotPresent���Ü
��"".parseDate���Ð
��0runtime.morestack_noctxt���`��
"".autotmp_0058��type.time.Time� "".hdr�type.string� "".~r1�@type.error� "".~r0�type.time.Time�"".h��type."".Header�${L�€�æ:--M � �X¨�Tgclocals·6432f8c6a0d23fa7bee6c5d96f21a92a�Tgclocals·23e8278e2b69a3a75fa59b23c49ed6ad���\prebuilts/go/linux-x86/src/net/mail/message.goþ*"".Header.AddressList�� ��ŒeH‹ %(���H‹‰����H;a†â���HƒìH1ÛH‰\$hH‰\$pH‰\$x1ÛH‰œ$€���H‰œ$ˆ���H‹\$PH‰$H‹\$XH‰\$H‹\$`H‰\$è����H‹L$H‹D$ Hƒø�u41ÛH‰\$hH‰\$pH‰\$xH‹����H‰œ$€���H‹����H‰œ$ˆ���HƒÄHÃH‰L$8H‰ $H‰D$@H‰D$è����H‹t$H‹l$H‹T$ H‹L$(H‹D$0H‰t$hH‰l$pH‰T$xH‰Œ$€���H‰„$ˆ���HƒÄHÃè����éúþÿÿ ������¾
��"".Header.Get���Ž��,"".ErrHeaderNotPresent���¬�,"".ErrHeaderNotPresent���ö
��&"".ParseAddressList���ú
��0runtime.morestack_noctxt���€��
"".hdr�type.string� "".~r2�`type.error� "".~r1�0$type.[]*"".Address� "".key�type.string�"".h��type."".Header�&ˆT��øA,4U � �^²�Tgclocals·6d46c0650eba7dbebc0db316e0e0cf3b�Tgclocals·23e8278e2b69a3a75fa59b23c49ed6ad���\prebuilts/go/linux-x86/src/net/mail/message.goþ"".ParseAddress�� �� eH‹ %(���H‹‰����H;avpHƒì81ÛH‰\$XH‰\$`1ÀH‰D$ H‰D$(H‰D$0HD$ 1íH‰(H‰hH‰hH‹l$@H‰(H‹l$HH‰hH‰$è����H‹T$H‹L$H‹D$H‰T$PH‰L$XH‰D$`HƒÄ8Ãè����épÿÿÿ������¾
��:"".(*addrParser).parseAddress���Ž
��0runtime.morestack_noctxt���Pp��"".autotmp_0066�/$type."".addrParser� "".~r2�0type.error� "".~r1�  type.*"".Address�"".address��type.string�pkop
��š&`
�
�^2�Tgclocals·3260b5c802f633fd6252c227878dd72a�Tgclocals·34f124440e1e8e607060d08805b548f5���\prebuilts/go/linux-x86/src/net/mail/message.goþ&"".ParseAddressList��€��þeH‹ %(���H‹‰����H;a†›���HƒìH1ÛH‰\$`H‰\$hH‰\$p1ÛH‰\$xH‰œ$€���1ÀH‰D$0H‰D$8H‰D$@HD$01íH‰(H‰hH‰hH‹l$PH‰(H‹l$XH‰hH‰$è����H‹t$H‹l$H‹T$H‹L$ H‹D$(H‰t$`H‰l$hH‰T$pH‰L$xH‰„$€���HƒÄHÃè����éAÿÿÿ������î
��B"".(*addrParser).parseAddressList���ì
��0runtime.morestack_noctxt���p��"".autotmp_0070�/$type."".addrParser� "".~r2�Ptype.error� "".~r1� $type.[]*"".Address�"".list��type.string�– �À�¤>w �
�vJ�Tgclocals·b767a85ad52475ddbcff98293d22a77d�Tgclocals·34f124440e1e8e607060d08805b548f5���\prebuilts/go/linux-x86/src/net/mail/message.goþ2"".(*AddressParser).Parse�� ��žeH‹ %(���H‹‰����H;avoHƒì81ÛH‰\$`H‰\$h1ÀH‰D$ H‰D$(H‰D$0HD$ H‹l$HH‰(H‹l$PH‰hL‹D$@I‹(H‰hH‰$è����H‹T$H‹L$H‹D$H‰T$XH‰L$`H‰D$hHƒÄ8Ãè����éqÿÿÿ������¼
��:"".(*addrParser).parseAddress���Œ
��0runtime.morestack_noctxt���`p��
"".autotmp_0074�/$type."".addrParser� "".~r2�@type.error� "".~r1�0 type.*"".Address�"".address�type.string�"".p��,type.*"".AddressParser�pjop ��¼&_ �
�]3�Tgclocals·aa5118865dd28fc3eaacbfc830efb456�Tgclocals·34f124440e1e8e607060d08805b548f5���\prebuilts/go/linux-x86/src/net/mail/message.goþ:"".(*AddressParser).ParseList�� ��ˆeH‹ %(���H‹‰����H;a† ���HƒìH1ÛH‰\$hH‰\$pH‰\$x1ÛH‰œ$€���H‰œ$ˆ���1ÀH‰D$0H‰D$8H‰D$@HD$0H‹l$XH‰(H‹l$`H‰hL‹D$PI‹(H‰hH‰$è����H‹t$H‹l$H‹T$H‹L$ H‹D$(H‰t$hH‰l$pH‰T$xH‰Œ$€���H‰„$ˆ���HƒÄHÃè����é<ÿÿÿ������ò
��B"".(*addrParser).parseAddressList���ö
��0runtime.morestack_noctxt���€��
"".autotmp_0078�/$type."".addrParser� "".~r2�`type.error� "".~r1�0$type.[]*"".Address�"".list�type.string�"".p��,type.*"".AddressParser�›�Ð�ÈAy�
�xX�Tgclocals·99ef9ff0bd07d0e619cc0988c2dabb63�Tgclocals·34f124440e1e8e607060d08805b548f5���\prebuilts/go/linux-x86/src/net/mail/message.goþ("".(*Address).String��à��ÈeH‹ %(���H‹‰����H„$xÿÿÿH;A†¸��Hì��1ÛH‰œ$��H‰œ$ ��H‹´$��Hƒþ�„†��H^H‹ H‰ $H‹KH‰L$H����H‰\$HÇD$���è����H‹Œ$��H‹D$ 1Û1ÛH‰œ$Ð���H‰œ$Ø���Hƒø�Ê��Hƒù�„¹��H‹qH‹IÆD$n�1ÀH9È}cH‰´$À���H‰D$xH‰Œ$È���H9ȃ€��H¶+@ˆl$o@ˆ,$ÆD$�è����H‹´$À���H‹Œ$È���H‹D$x¶\$€û�„û��HÿÀH9È|€|$n�t(H‰´$À���H‰4$H‰Œ$È���H‰L$è����H‹t$H‹L$HÇ$����H����H‰\$HÇD$���H‰´$À���H‰t$H‰Œ$È���H‰L$ H����H‰\$(HÇD$0���H‹œ$Ð���H‰\$8H‹œ$Ø���H‰\$@H����H‰\$HHÇD$P���è����H‹Œ$��H‹T$XH‰”$°���H‹D$`H‰„$¸���H‹YHƒû�uH‰”$��H‰„$ ��HÄ��ÃHÇÇ���1ÀH‹iH9荎���H‹H‹qH‰”$à���H‰´$è���H9ðƒÃ��H¶+@€ý!‚«��@€ý~–€ú�…y��Hƒù�„Š��H‹H‹qH‰”$à���H‰´$è���H9ðƒc��H¶+@€ý „F��@€ý ”€ú�….��1ÿ@€ÿ�„l��H����H‰œ$ ���HDŽ$¨������H����H‰$è����H‹|$H‰¼$ˆ���Hƒÿ�„#��1ÀHƒÇðè����HÇ$����H‹œ$ ���H‰\$H‹œ$¨���H‰\$è����H‹´$��H‹T$H‹L$ H‹D$(H‹œ$ˆ���Hƒû�„Á��H‰Œ$ø���H‰KH‰„$���H‰CH‰”$ð���€=�����…y��H‰H‹œ$ˆ���H‰œ$€���1ÉH‹nH9é��H‹H‹VH9у@��H¶+@€ý\„(��@€ý"„��@€ý!‚ ��@€ý~–À<�unHƒþ�„ñ��H‹H‹VH‰„$à���H‰L$pH‰”$è���H9уÅ��H¶+@€ý „¨��@€ý ”À<�u#H‹œ$€���H‰$ÆD$\è����H‹´$��H‹L$pH‹œ$€���H‰$Hƒþ�„]��H‹H‹VH‰„$à���H‰L$pH‰”$è���H9у1��H¶+@ˆl$è����H‹´$��H‹L$pHÿÁH‹nH9éŒéþÿÿH‹œ$€���H‰$H����H‰\$HÇD$���è����H‹œ$€���H‰$H‹œ$°���H‰\$H‹œ$¸���H‰\$è����H‹„$€���1ÛH‰œ$���H‰œ$˜���1íH9èu&H ����HÇÀ���H‰Œ$��H‰„$ ��HÄ��ÃH‹hL‹@L‹HL9ÅwSL‹I)èI)éIƒù�tM*HÇ$����L‰”$ð���L‰T$L‰„$ø���L‰D$L‰Œ$���L‰L$è����H‹L$ H‹D$(ë„è���� è���� ‰éœþÿÿHÇÀ���éSþÿÿè���� ‰éþÿÿ1Àéóýÿÿ1Àéìýÿÿè���� H‰$H‰T$è����H‹´$��éoýÿÿ‰é8ýÿÿ‰éÖüÿÿÆ$qH����H‰\$HÇD$���H|$H‰ÎH‹ H‰H‹NH‰Oè����H‹D$(H‹L$0HÇ$����H‰„$à���H‰D$H‰Œ$è���H‰L$H����H‰\$HÇD$ ���H‹œ$°���H‰\$(H‹œ$¸���H‰\$0è����H‹\$8H‰œ$��H‹\$@H‰œ$ ��HÄ��ÃHÿÀé1ûÿÿHÇÂ���éµûÿÿè���� ‰éoûÿÿ1ÒéUûÿÿè���� ¶\$o€û.u-Hƒø�~'H‰ÅHÿÍH9Ís&H.¶€û.tH‰ËHÿËH9Ã~éÎùÿÿÆD$néÌùÿÿè���� è���� ‰é@ùÿÿL‹AL9ÀwSH‹qH‰ÇHÿÀL‹AL9Àw9L‹II)ÀIƒø�tM H‰´$à���H‰¼$è���H‰ùL‰Œ$Ð���L‰„$Ø���éóøÿÿè���� è���� ‰ésøÿÿè����éøÿÿL������È��go.string."@"���î
��"strings.LastIndex���ð
��"".isAtext���
��"".quoteString���Â��go.string."<"��� ��go.string."@"���þ��go.string.">"���¤
��*runtime.concatstring5���– ��go.string."\""���Ì ��"type.bytes.Buffer���Þ 
��"runtime.newobject���¢ 
¶� runtime.duffzero���ð 
��2runtime.stringtoslicebyte���Ž�6runtime.writeBarrierEnabled���¢
��2bytes.(*Buffer).WriteByte���Ô
��2bytes.(*Buffer).WriteByte���´��go.string."\" "���Ú
��6bytes.(*Buffer).WriteString���°
��6bytes.(*Buffer).WriteString���€��"go.string."<nil>"���î
��2runtime.slicebytetostring���
��$runtime.panicslice���ž
��$runtime.panicindex���Ò
��$runtime.panicindex���Š
��$runtime.panicindex���ª
��.runtime.writebarrierptr���ö��"go.string."utf-8"���È
��.mime.WordEncoder.Encode���®��go.string." "���ˆ
��*runtime.concatstring3���þ
��$runtime.panicindex���¨
��$runtime.panicindex���¸
��$runtime.panicindex���Æ
��$runtime.panicindex���Œ
��$runtime.panicslice���š
��$runtime.panicslice���¶
��0runtime.morestack_noctxt���0��8"".autotmp_0099��type.string�"".autotmp_0098��type.bool�"".autotmp_0097��type.bool�"".autotmp_0096�ÿ$type.*bytes.Buffer�"".autotmp_0095��$type.*bytes.Buffer�"".autotmp_0093��type.bool�"".autotmp_0092��type.string�"".autotmp_0091��type.[]uint8�"".autotmp_0090��type.int�"".autotmp_0089��type.int�"".autotmp_0088��type.int�"".autotmp_0087��type.int�"".autotmp_0086��type.int�"".autotmp_0085��type.int�"".autotmp_0082��type.int�"".autotmp_0079�Otype.string� "".~r0�ïtype.string�bytes.s·2�Ïtype.string�"".i�¯type.int�"".b�$type.*bytes.Buffer�"".s�¯type.string�
"".ch�±type.uint8�"".i�Ÿtype.int�"".quoteLocal�³type.bool�"".domain�otype.string�"".local�type.string� "".~r0�type.string�"".a�� type.*"".Address�8)ðÈ††�ð�ÐÖ;M
%6 (¢
Œ
Ý‹#T &+²/)¶)(5
(P   �D�vPŠI™ÇŸ ^O` ­�Tgclocals·add78ec634cef78099972ccd9d767bc6�Tgclocals·722f696ec13123fdfb1a6a1aa61e7a29���\prebuilts/go/linux-x86/src/net/mail/message.goþB"".(*addrParser).parseAddressList��€��äeH‹ %(���H‹‰����HD$ØH;A†‰��Hì¨���H‹¼$°���1ÛH‰œ$¸���H‰œ$À���H‰œ$È���1ÛH‰œ$Ð���H‰œ$Ø���1ÛH‰œ$���H‰œ$˜���H‰œ$ ���H‰<$è����H‹œ$°���H‰$è����H‹\$H‰\$HH‹D$H‹L$H‰L$xH‰D$pHƒø�t21ÛH‰œ$¸���H‰œ$À���H‰œ$È���H‰„$Ð���H‰Œ$Ø���HÄ¨���ÃH‹Œ$���H‹œ$˜���H‹”$ ���H‰ØHÿÃH9Ó‡G��H‰œ$˜���HÁH‹l$H€=�����…��H‰+H‹œ$°���H‰$è����H‹¼$°���H‹oHƒý�”À<�tJH‹œ$���H‰œ$¸���H‹œ$˜���H‰œ$À���H‹œ$ ���H‰œ$È���1ÛH‰œ$Ð���H‰œ$Ø���HÄ¨���ÃH‰øHÇÂ,���H‹oHƒý�”Á€ù�…u��H‹7H‹oH‰´$€���Hƒý�H‰¬$ˆ���†[��¶.@8Õ…H��H‹oHƒý‚3��HÿÍL‹Hƒý�tIÿÀH‰h€=�����…ø���L‰�HÇÀ���<�…KþÿÿH����H‰\$`HÇD$h���1ÛH‰\$PH‰\$XH����H‰$è����H‹D$H‰D$@H‹l$hH‰hH‹l$`€=�����u|H‰(H‰D$@H‹����1íH9èt7H‹L$@1ÛH‰œ$¸���H‰œ$À���H‰œ$È���H‰„$Ð���H‰Œ$Ø���HÄ¨���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$ëšH‰$H‰l$è����H‹D$@éoÿÿÿH‰$L‰D$è����H‹¼$°���éðþÿÿè���� 1Àééþÿÿè���� H‰$H‰l$è����éÚýÿÿH-����H‰,$H‰L$H‰D$H‰T$H‰\$ è����H‹L$(H‹\$0H‹T$8H‰ØHÿÃH‰œ$˜���H‰”$ ���H‰Œ$���ékýÿÿè����éNüÿÿ.������ò
��4"".(*addrParser).skipSpace���”
��:"".(*addrParser).parseAddress���¼�6runtime.writeBarrierEnabled���ò
��4"".(*addrParser).skipSpace���˜�6runtime.writeBarrierEnabled���Ø��@go.string."mail: expected comma"���š ��.type.errors.errorString���¬ 
��"runtime.newobject���è �6runtime.writeBarrierEnabled���Œ
��Bgo.itab.*errors.errorString.error���– ��0type.*errors.errorString���¬ ��type.error���Ä ��Bgo.itab.*errors.errorString.error���Ø 
�� runtime.typ2Itab���‚ 
��.runtime.writebarrierptr���² 
��.runtime.writebarrierptr���Ö 
��$runtime.panicslice���ò 
��$runtime.panicindex���’ 
��.runtime.writebarrierptr���ª ��$type.[]*"".Address���ä 
��"runtime.growslice���Ò
��0runtime.morestack_noctxt���`Ð��"".autotmp_0111�Ï0type.*errors.errorString�"".autotmp_0110��type.bool�"".autotmp_0108��0type.*errors.errorString�"".autotmp_0107��type.int� "".~r0�¯type.error�errors.text·2�type.string� "".err�otype.error�"".addr�¿ type.*"".Address�"".list�/$type.[]*"".Address� "".~r1�@type.error� "".~r0�$type.[]*"".Address�"".p��&type.*"".addrParser�8&нÏйÏЩÏÐø�À�LìZ * 2HJ‹æ0 V�&�xÝ–-)O�Tgclocals·9bbac069deb72cc871842b3a3b7cac0d�Tgclocals·d75c4b68ee9f4cbb7a90537e340d438f���\prebuilts/go/linux-x86/src/net/mail/message.goþ:"".(*addrParser).parseAddress��€2��ð1eH‹ %(���H‹‰����H„$(ÿÿÿH;A†L ��HìX��1Û1ÛH‰œ$p��H‰œ$x��1ÛH‰œ$ ��H‰œ$(��Hœ$ ��Hƒû�„ ��HDŽ$H�����HDŽ$P�����H‰œ$@��H����H‰$H‹œ$`��H‰\$Hƒ|$�„¶ ��HÇD$����è����H‹L$H‹D$ H‹œ$@��H‰Œ$��H‰ H‰„$��€=�����…_ ��H‰C¶����ˆ$H����H‰\$HÇD$���H‹œ$@��H‰\$H‹œ$H��H‰\$ H‹œ$P��H‰\$(è����H‹œ$`��H‰$è����H‹Œ$`��H‹iHƒý�”À<�„Õ���H����H‰\$pHÇD$x���1ÛH‰\$@H‰\$HH����H‰$è����H‹D$H‰D$8H‹l$xH‰hH‹l$p€=�����unH‰(H‰D$8H‹����1íH9èt)H‹L$8HDŽ$h������H‰„$p��H‰Œ$x��HÄX��ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$ë¨H‰$H‰l$è����H‹D$8ë€H‰ $è����H‹\$H‰œ$ ���H‹\$H‰œ$¨���H‹L$H‹T$ H‰”$x��H‰Œ$p��Hƒù�uuH����H‰$è����H‹D$1íH‰(H‰hH‰hH‰hH‰D$0H‹¬$¨���H‰hH‹¬$ ���€=�����uH‰hH‰„$h��HÄX��ÃL@L‰$H‰l$è����H‹D$0ë×1ÛH‰œ$���H‰œ$��Hœ$���Hƒû�„, ��HDŽ$H�����HDŽ$P�����H‰œ$@��H‰ $H‰T$è����H‹L$H‹D$H‹œ$@��H‰Œ$��H‰ H‰„$��€=�����…µ��H‰C¶����ˆ$H����H‰\$HÇD$"���H‹œ$@��H‰\$H‹œ$H��H‰\$ H‹œ$P��H‰\$(è����1ÛH‰œ$ð���H‰œ$ø���Hœ$ð���Hƒû�„;��HDŽ$H�����HDŽ$P�����H‰œ$@��H����H‰$H‹œ$`��H‰\$Hƒ|$�„ë��HÇD$����è����H‹L$H‹D$ H‹œ$@��H‰Œ$��H‰ H‰„$��€=�����…”��H‰C¶����ˆ$H����H‰\$HÇD$���H‹œ$@��H‰\$H‹œ$H��H‰\$ H‹œ$P��H‰\$(è����H‹¼$`��1ÒH‰”$°���H‰ÖH‰”$¸���Hƒÿ�„��H‹H‹oH‰Œ$À���Hƒý�H‰¬$È���†ï��¶)@€ý<tGH‰<$è����H‹t$H‹T$H‹D$H‹\$ H‰œ$x��H‰„$p��Hƒø�tHDŽ$h������HÄX��ÃH‰´$°���H‰´$0��H‰”$¸���H‰”$8��1ÛH‰œ$à���H‰œ$è���Hœ$à���Hƒû�„T��HDŽ$H�����HDŽ$P�����H‰œ$@��H����H‰$Hœ$0��H‰\$HÇD$����è����H‹L$H‹D$ H‹œ$@��H‰Œ$��H‰ H‰„$��€=�����…Å��H‰C¶����ˆ$H����H‰\$HÇD$���H‹œ$@��H‰\$H‹œ$H��H‰\$ H‹œ$P��H‰\$(è����H‹œ$`��H‰$è����H‹„$`��HÇÂ<���H‹hHƒý�”Á€ù�…4��H‹0H‹hH‰´$À���Hƒý�H‰¬$È���†��¶.@8Õ…��H‹hHƒý‚ò��HÿÍL‹�Hƒý�tIÿÀH‰h€=�����…¿��L‰�HÇÀ���<�…á���H����H‰œ$€���HDŽ$ˆ������1ÛH‰\$PH‰\$XH����H‰$è����H‹D$H‰D$8H‹¬$ˆ���H‰hH‹¬$€���€=�����unH‰(H‰D$8H‹����1íH9èt)H‹T$8HDŽ$h������H‰„$p��H‰”$x��HÄX��ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$ë¨H‰$H‰l$è����H‹D$8ë€H‹œ$`��H‰$è����H‹\$H‰œ$ ���H‹\$H‰œ$¨���H‹D$H‹\$ H‰œ$x��H‰„$p��Hƒø�tHDŽ$h������HÄX��ÃH‹„$`��HÇÂ>���H‹hHƒý�”Á€ù�…<��H‹0H‹hH‰´$À���Hƒý�H‰¬$È���†"��¶.@8Õ…��H‹hHƒý‚ú��HÿÍL‹�Hƒý�tIÿÀH‰h€=�����…Ç��L‰�HÇÀ���<�…á���H����H‰œ$���HDŽ$˜������1ÛH‰\$`H‰\$hH����H‰$è����H‹D$H‰D$8H‹¬$˜���H‰hH‹¬$���€=�����unH‰(H‰D$8H‹����1íH9èt)H‹T$8HDŽ$h������H‰„$p��H‰”$x��HÄX��ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$ë¨H‰$H‰l$è����H‹D$8ë€H‹œ$ ���H‰œ$0��H‹œ$¨���H‰œ$8��1ÛH‰œ$Ð���H‰œ$Ø���Hœ$Ð���Hƒû�„‰��HDŽ$H�����HDŽ$P�����H‰œ$@��H����H‰$Hœ$0��H‰\$HÇD$����è����H‹L$H‹D$ H‹œ$@��H‰Œ$��H‰ H‰„$��€=�����…ú���H‰C¶����ˆ$H����H‰\$HÇD$���H‹œ$@��H‰\$H‹œ$H��H‰\$ H‹œ$P��H‰\$(è����H����H‰$è����H‹D$H‰D$0H‹¬$¸���H‰hH‹¬$°���€=�����u_H‰(H‹¬$¨���H‰hH‹¬$ ���€=�����u&H‰hH‰„$h��1ÛH‰œ$p��H‰œ$x��HÄX��ÃL@L‰$H‰l$è����H‹D$0ëÅH‰$H‰l$è����H‹D$0ëLCL‰$H‰D$è����éóþÿÿ‰épþÿÿH‰$L‰D$è����é)ýÿÿè���� 1Àé"ýÿÿè���� H‰$L‰D$è����é1ûÿÿè���� 1Àé*ûÿÿè���� LCL‰$H‰D$è����é(úÿÿ‰é¥ùÿÿè���� ‰éâøÿÿLCL‰$H‰D$è����éYøÿÿ‰%����é øÿÿ‰é¾÷ÿÿLCL‰$H‰D$è����é8÷ÿÿ‰éÍöÿÿLCL‰$H‰D$è����éŽôÿÿ‰%����é>ôÿÿ‰éóóÿÿè����éˆóÿÿ´������ˆ��type.string���Þ
��runtime.convT2E���´�6runtime.writeBarrierEnabled���Ø��"".debug���ì��8go.string."parseAddress: %q"���à
�� "".debugT.Printf���‚
��4"".(*addrParser).skipSpace���Æ��8go.string."mail: no address"���ˆ��.type.errors.errorString���š
��"runtime.newobject���Ö�6runtime.writeBarrierEnabled���ú��Bgo.itab.*errors.errorString.error���è��0type.*errors.errorString���þ��type.error���–��Bgo.itab.*errors.errorString.error���ª
�� runtime.typ2Itab���Ô
��.runtime.writebarrierptr���ô
��@"".(*addrParser).consumeAddrSpec���ö ��type."".Address���ˆ

��"runtime.newobject���ò
�6runtime.writeBarrierEnabled���Ä 
��.runtime.writebarrierptr���ö 
��runtime.convI2E���Ì �6runtime.writeBarrierEnabled���ð ��"".debug���„��\go.string."parseAddress: not an addr-spec: %v"���ø
�� "".debugT.Printf���Ž��type.string���ä
��runtime.convT2E���º�6runtime.writeBarrierEnabled���Þ��"".debug���ò��Rgo.string."parseAddress: state is now %q"���æ
�� "".debugT.Printf���š
��<"".(*addrParser).consumePhrase���ì��type.string���ª
��runtime.convT2E���€�6runtime.writeBarrierEnabled���¤��"".debug���¸��Pgo.string."parseAddress: displayName=%q"���¬
�� "".debugT.Printf���Î
��4"".(*addrParser).skipSpace���¼�6runtime.writeBarrierEnabled���ü��>go.string."mail: no angle-addr"���Ê��.type.errors.errorString���Ü
��"runtime.newobject���¤�6runtime.writeBarrierEnabled���È��Bgo.itab.*errors.errorString.error���¶��0type.*errors.errorString���Ì��type.error���ä��Bgo.itab.*errors.errorString.error���ø
�� runtime.typ2Itab���¢
��.runtime.writebarrierptr���Ò
��@"".(*addrParser).consumeAddrSpec���Ü"�6runtime.writeBarrierEnabled���œ#��Jgo.string."mail: unclosed angle-addr"���ê#��.type.errors.errorString���ü#
��"runtime.newobject���Ä$�6runtime.writeBarrierEnabled���è$��Bgo.itab.*errors.errorString.error���Ö%��0type.*errors.errorString���ì%��type.error���„&��Bgo.itab.*errors.errorString.error���˜&
�� runtime.typ2Itab���Â&
��.runtime.writebarrierptr���¦(��type.string���ä(
��runtime.convT2E���º)�6runtime.writeBarrierEnabled���Þ)��"".debug���ò)��Bgo.string."parseAddress: spec=%q"���æ*
�� "".debugT.Printf���ô*��type."".Address���†+
��"runtime.newobject���Î+�6runtime.writeBarrierEnabled���Ž,�6runtime.writeBarrierEnabled���„-
��.runtime.writebarrierptr���®-
��.runtime.writebarrierptr���à-
��.runtime.writebarrierptr���”.
��.runtime.writebarrierptr���¨.
��$runtime.panicslice���Ä.
��$runtime.panicindex���ä.
��.runtime.writebarrierptr���ø.
��$runtime.panicslice���”/
��$runtime.panicindex���¼/
��.runtime.writebarrierptr���Þ/
��$runtime.panicindex���”0
��.runtime.writebarrierptr���è0
��.runtime.writebarrierptr���¤1
��.runtime.writebarrierptr���Þ1
��0runtime.morestack_noctxt���@°��f"".autotmp_0168�� type.*"".Address�"".autotmp_0167��"type.interface {}�"".autotmp_0166�(type.[1]interface {}�"".autotmp_0164��*type.*[1]interface {}�"".autotmp_0163��&type.[]interface {}�"".autotmp_0162��type.error�"".autotmp_0161��type.*uint8�"".autotmp_0160��type.error�"".autotmp_0159��0type.*errors.errorString�"".autotmp_0158��type.bool�"".autotmp_0157��type.error�"".autotmp_0156��type.*uint8�"".autotmp_0155��type.error�"".autotmp_0154��0type.*errors.errorString�"".autotmp_0153��type.bool�"".autotmp_0152��"type.interface {}�"".autotmp_0151�ï(type.[1]interface {}�"".autotmp_0149��*type.*[1]interface {}�"".autotmp_0148��&type.[]interface {}�"".autotmp_0147��"type.interface {}�"".autotmp_0146�Ï(type.[1]interface {}�"".autotmp_0144��*type.*[1]interface {}�"".autotmp_0143��&type.[]interface {}�"".autotmp_0142��"type.interface {}�"".autotmp_0141�¯(type.[1]interface {}�"".autotmp_0139��*type.*[1]interface {}�"".autotmp_0138��&type.[]interface {}�"".autotmp_0137�Ï type.*"".Address�"".autotmp_0136��type.error�"".autotmp_0133�¿0type.*errors.errorString�"".autotmp_0131�"type.interface {}�"".autotmp_0130�o(type.[1]interface {}�"".autotmp_0127�/&type.[]interface {}�"".autotmp_0126��type.string�"".autotmp_0125��0type.*errors.errorString�"".autotmp_0124��type.int�"".autotmp_0123��0type.*errors.errorString�"".autotmp_0122��type.int�"".autotmp_0121�Otype.string�"".autotmp_0120��0type.*errors.errorString� "".~r0�ïtype.error�errors.text·2�type.string� "".~r0�type.error�errors.text·2�¯type.string� "".~r0�¯type.error�errors.text·2�Ïtype.string�"".displayName�Ïtype.string�"".spec�ïtype.string� "".err� type.error�"".addr� type.*"".Address�"".p��&type.*"".addrParser�p)°Ç¯°â¯°ú¯°È¯°¢¯°¬¯°Ë¯°Ì�€�À˜=÷Õ5LÓÿ4%‹á=á‹["( ( *#*�¨�®]ˆ%J^Yv¢ÇŽ-•
Ž¦

"* /�Tgclocals·16351a11d049f9eae0584cfd18491796�Tgclocals·8b7648950fdf11ae57869c2ff71cd267���\prebuilts/go/linux-x86/src/net/mail/message.goþ@"".(*addrParser).consumeAddrSpec��€(��ä'eH‹ %(���H‹‰����H„$0ÿÿÿH;A†Æ ��HìP��1ÛH‰œ$`��H‰œ$h��1ÛH‰œ$p��H‰œ$x��1ÛH‰œ$p��H‰œ$x��1ÛH‰œ$`��H‰œ$h��1ÛH‰œ$��H‰œ$��Hœ$��Hƒû�„L ��HDŽ$@�����HDŽ$H�����H‰œ$8��H����H‰$H‹œ$X��H‰\$Hƒ|$�„ü��HÇD$����è����H‹L$H‹D$ H‹œ$8��H‰Œ$���H‰ H‰„$��€=�����…¥��H‰C¶����ˆ$H����H‰\$HÇD$���H‹œ$8��H‰\$H‹œ$@��H‰\$ H‹œ$H��H‰\$(è����H‹´$X��Hƒþ�„=��H‹H‹NH‹nHœ$p��H‰\$H‰t$H‰”$ ��H‰T$ H‰Œ$(��H‰L$(H‰¬$0��H‰l$0Ç$(���H����H‰D$è����ƒø�…Ê��1ÛH‰œ$°���H‰œ$¸���H‹œ$X��H‰$è����H‹Œ$X��H‹iHƒý�”À<�„��H����H‰œ$���HDŽ$˜������1ÛH‰\$pH‰\$xH����H‰$è����H‹L$H‰L$HH‹¬$˜���H‰iH‹¬$���€=�����…”���H‰)H‰L$HH‹ ����1íH9étOH‹T$HH‰L$pH‰T$x1ÛH‰œ$`��H‰œ$h��H‰Œ$ð���H‰Œ$p��H‰”$ø���H‰”$x��è����HÄP��ÃH����H‰$H����H‰\$H����H‰\$è����H‹L$ë‚H‰ $H‰l$è����H‹L$HéWÿÿÿH‰ËH‹ H‹kH‰Œ$Ð���Hƒý�H‰¬$Ø���†S��¶)@€ý"…½��¶����ˆ$H����H‰\$HÇD$&���1ÛH‰\$H‰\$ H‰\$(è����H‹œ$X��H‰$è����H‹\$H‰œ$°���H‹\$H‰œ$¸���H‹\$H‰œ$p��H‹\$ H‰œ$x��H‹œ$p��Hƒû�„��1ÛH‰œ$à���H‰œ$è���Hœ$à���Hƒû�„ï���HDŽ$@�����HDŽ$H�����H‰œ$8��H‹œ$p��H‰$H‹œ$x��H‰\$è����H‹L$H‹D$H‹œ$8��H‰Œ$���H‰ H‰„$��€=�����uoH‰C¶����ˆ$H����H‰\$HÇD$���H‹œ$8��H‰\$H‹œ$@��H‰\$ H‹œ$H��H‰\$(è����1ÛH‰œ$`��H‰œ$h��è����HÄP��ÃLCL‰$H‰D$è����끉é
ÿÿÿH‹„$X��HÇÂ@���H‹hHƒý�”Á€ù�…æ��H‹0H‹hH‰´$Ð���Hƒý�H‰¬$Ø���†Ì��¶.@8Õ…¹��H‹hHƒý‚¤��HÿÍL‹�Hƒý�tIÿÀH‰h€=�����…q��L‰�HÇÀ���<�…��H����H‰œ$ ���HDŽ$¨������1ÛH‰\$`H‰\$hH����H‰$è����H‹L$H‰L$HH‹¬$¨���H‰iH‹¬$ ���€=�����…”���H‰)H‰L$HH‹ ����1íH9étOH‹T$HH‰L$`H‰T$h1ÛH‰œ$`��H‰œ$h��H‰Œ$ð���H‰Œ$p��H‰”$ø���H‰”$x��è����HÄP��ÃH����H‰$H����H‰\$H����H‰\$è����H‹L$ë‚H‰ $H‰l$è����H‹L$HéWÿÿÿ1ÛH‰œ$À���H‰œ$È���H‹œ$X��H‰$è����H‹Œ$X��H‹iHƒý�”À<�„��H����H‰œ$€���HDŽ$ˆ������1ÛH‰\$PH‰\$XH����H‰$è����H‹L$H‰L$HH‹¬$ˆ���H‰iH‹¬$€���€=�����…”���H‰)H‰L$HH‹ ����1íH9étOH‹T$HH‰L$PH‰T$X1ÛH‰œ$`��H‰œ$h��H‰Œ$ð���H‰Œ$p��H‰”$ø���H‰”$x��è����HÄP��ÃH����H‰$H����H‰\$H����H‰\$è����H‹L$ë‚H‰ $H‰l$è����H‹L$HéWÿÿÿH‰ $ÆD$ÆD$ �è����H‹T$H‰”$À���H‹L$H‰Œ$È���H‹\$ H‰œ$p��H‹\$(H‰œ$x��H‹œ$p��Hƒû�t 1ÛH‰œ$`��H‰œ$h��è����HÄP��ÃHÇ$����H‹œ$°���H‰\$H‹œ$¸���H‰\$H����H‰\$HÇD$ ���H‰T$(H‰L$0è����H‹T$8H‹L$@H‰”$Ð���H‰”$`��H‰Œ$Ø���H‰Œ$h��1ÛH‰œ$p��H‰œ$x��è����HÄP��ÃH‰$L‰D$è����éüÿÿè���� 1Àéxüÿÿè���� ¶����ˆ$H����H‰\$HÇD$!���1ÛH‰\$H‰\$ H‰\$(è����H‹œ$X��H‰$ÆD$ÆD$ �è����H‹\$H‰œ$°���H‹\$H‰œ$¸���H‹\$ H‰œ$p��H‹\$(H‰œ$x��é4úÿÿè���� è����HÄP��Éé¼÷ÿÿLCL‰$H‰D$è����éH÷ÿÿ‰%����éøöÿÿ‰é­öÿÿè����éöÿÿ������ð��type.string���Æ
��runtime.convT2E���œ�6runtime.writeBarrierEnabled���À��"".debug���Ô��>go.string."consumeAddrSpec: %q"���È
�� "".debugT.Printf�����R"".(*addrParser).consumeAddrSpec.func1·f���¤
��"runtime.deferproc���ü
��4"".(*addrParser).skipSpace���À��<go.string."mail: no addr-spec"���Ž ��.type.errors.errorString���  
��"runtime.newobject���è �6runtime.writeBarrierEnabled���”
��Bgo.itab.*errors.errorString.error���° 
��&runtime.deferreturn���Î ��0type.*errors.errorString���ä ��type.error���ü ��Bgo.itab.*errors.errorString.error��� 
�� runtime.typ2Itab���º 
��.runtime.writebarrierptr���¾ ��"".debug���Ò ��dgo.string."consumeAddrSpec: parsing quoted-string"���š
�� "".debugT.Printf���¼
��H"".(*addrParser).consumeQuotedString���Œ
��runtime.convI2E���â�6runtime.writeBarrierEnabled���þ��"".debug���’��Ngo.string."consumeAddrSpec: failed: %v"���†
�� "".debugT.Printf���¶
��&runtime.deferreturn���ê
��.runtime.writebarrierptr���ê�6runtime.writeBarrierEnabled���ª��Pgo.string."mail: missing @ in addr-spec"���ø��.type.errors.errorString���Š
��"runtime.newobject���Ò�6runtime.writeBarrierEnabled���þ��Bgo.itab.*errors.errorString.error���š
��&runtime.deferreturn���¸��0type.*errors.errorString���Î��type.error���æ��Bgo.itab.*errors.errorString.error���ú
�� runtime.typ2Itab���¤
��.runtime.writebarrierptr���þ
��4"".(*addrParser).skipSpace���Â��Pgo.string."mail: no domain in addr-spec"�����.type.errors.errorString���¢
��"runtime.newobject���ê�6runtime.writeBarrierEnabled���–��Bgo.itab.*errors.errorString.error���²
��&runtime.deferreturn���Ð��0type.*errors.errorString���æ��type.error���þ��Bgo.itab.*errors.errorString.error���’
�� runtime.typ2Itab���¼
��.runtime.writebarrierptr���ö
��8"".(*addrParser).consumeAtom���ª!
��&runtime.deferreturn���Œ"��go.string."@"���Æ"
��*runtime.concatstring3���Ê#
��&runtime.deferreturn���ö#
��.runtime.writebarrierptr���Š$
��$runtime.panicslice���¦$
��$runtime.panicindex���¸$��"".debug���Ì$��Zgo.string."consumeAddrSpec: parsing dot-atom"���”%
�� "".debugT.Printf���Ê%
��8"".(*addrParser).consumeAtom���Æ&
��$runtime.panicindex���Ö&
��&runtime.deferreturn���˜'
��.runtime.writebarrierptr���Ò'
��0runtime.morestack_noctxt���P ��L"".autotmp_0206��type.string�"".autotmp_0205��type.error�"".autotmp_0204��type.*uint8�"".autotmp_0203��type.error�"".autotmp_0202��0type.*errors.errorString�"".autotmp_0201��type.bool�"".autotmp_0200��type.error�"".autotmp_0199��type.*uint8�"".autotmp_0198��type.error�"".autotmp_0197��0type.*errors.errorString�"".autotmp_0196��type.bool�"".autotmp_0195��"type.interface {}�"".autotmp_0194�ß(type.[1]interface {}�"".autotmp_0192��*type.*[1]interface {}�"".autotmp_0191��&type.[]interface {}�"".autotmp_0190��type.error�"".autotmp_0188�¿type.error�"".autotmp_0187�0type.*errors.errorString�"".autotmp_0185�Ÿ"type.interface {}�"".autotmp_0184�(type.[1]interface {}�"".autotmp_0181�/&type.[]interface {}�"".autotmp_0180��0type.*errors.errorString�"".autotmp_0179��type.int�"".autotmp_0178��0type.*errors.errorString�"".autotmp_0177��type.int�"".autotmp_0176��0type.*errors.errorString� "".~r0�ÿtype.error�errors.text·2�Ÿtype.string� "".~r0�ßtype.error�errors.text·2�ßtype.string� "".~r0�¿type.error�errors.text·2�ÿtype.string�"".domain�Ÿtype.string�"".localPart�¿type.string�"".orig�_$type."".addrParser� "".err�0type.error�"".spec�type.string�"".p��&type.*"".addrParser�n) ºŸ ‚Ÿ ñŸ ËŸ »Ÿ Ÿ ÅŸ I�€�š‚qÿ
ZŽ15E ß ŽŽG (5O *�‚�⁚R‡1…¹}Ї1BR‡12Y OA
¥"5�Tgclocals·9d1671071fb8a839544816e0032b4669�Tgclocals·2b6e1b929afcb1764d8fa36062206214���\prebuilts/go/linux-x86/src/net/mail/message.goþ<"".(*addrParser).consumePhrase��€!��þ eH‹ %(���H‹‰����H„$hÿÿÿH;A†��Hì��1ÀH‰„$¨���H‰„$°���1Û1Û1ÛH‰œ$8��H‰œ$@��1ÛH‰œ$(��H‰œ$0��1ÛH‰œ$È���H‰œ$Ð���Hœ$È���Hƒû�„§��HDŽ$�����HDŽ$�����H‰œ$���H����H‰$H‹œ$ ��H‰\$Hƒ|$�„W��HÇD$����è����H‹L$H‹D$ H‹œ$���H‰Œ$¸���H‰ H‰„$À���€=�����…���H‰C¶����ˆ$H����H‰\$HÇD$���H‹œ$���H‰\$H‹œ$��H‰\$ H‹œ$��H‰\$(è����1ÛH‰œ$è���H‰œ$ð���H‰œ$ø���1ÛH‰\$XH‰\$`H‹œ$ ��H‰$è����H‹„$ ��H‹hHƒý�”Á€ù�„Þ���H����H‰\$hHÇD$p���1ÛH‰\$HH‰\$PH����H‰$è����H‹D$H‰D$@H‹l$pH‰hH‹l$h€=�����utH‰(H‰D$@H‹����1íH9èt/H‹L$@1ÛH‰œ$(��H‰œ$0��H‰„$8��H‰Œ$@��HÄ��ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$ë¢H‰$H‰l$è����H‹D$@éwÿÿÿH‹H‹hH‰T$xHƒý�H‰¬$€���†[��¶*@€ý"…��H‰$è����H‹T$H‰T$XH‹L$H‰L$`H‹D$H‹l$ H‰¬$@��H‰„$8��Hƒø�uAH‹œ$ ��H‰$H‰T$H‰L$è����H‹T$H‰T$XH‹L$ H‰L$`H‹D$(H‹l$0H‰¬$@��H‰„$8��Hƒø�„§��Hƒø�„)��H‹œ$ð���Hƒû�…��1ÛH‰œ$˜���H‰œ$ ���Hœ$˜���Hƒû�„ì��HDŽ$�����HDŽ$�����H‰œ$���H‰$H‰l$è����H‹L$H‹D$H‹œ$���H‰Œ$¸���H‰ H‰„$À���€=�����…u��H‰C¶����ˆ$H����H‰\$HÇD$���H‹œ$���H‰\$H‹œ$��H‰\$ H‹œ$��H‰\$(è����1ÛH‰œ$ˆ���H‰œ$���Hœ$ˆ���Hƒû�„û���HDŽ$�����HDŽ$�����H‰œ$���H‹œ$8��H‰$H‹œ$@��H‰\$è����H‹L$H‹D$H‹œ$���H‰Œ$¸���H‰ H‰„$À���€=�����uxH‰CH����H‰$HÇD$ ���H‹œ$���H‰\$H‹œ$��H‰\$H‹œ$��H‰\$ è����H‹D$(H‹L$01ÛH‰œ$(��H‰œ$0��H‰„$8��H‰Œ$@��HÄ��ÃLCL‰$H‰D$è����éuÿÿÿ‰éþþÿÿLCL‰$H‰D$è����éxþÿÿ‰é þÿÿH‹œ$è���H‰$H‹œ$ð���H‰\$H‹œ$ø���H‰\$H����H‰\$HÇD$ ���è����H‹\$(H‰œ$(��H‹\$0H‰œ$0��1ÛH‰œ$8��H‰œ$@��HÄ��ÃH‰”$Ø���H‰Œ$à���1ÛH‰œ$¨���H‰œ$°���Hœ$¨���Hƒû�„ž��HDŽ$�����HDŽ$�����H‰œ$���H����H‰$Hœ$Ø���H‰\$HÇD$����è����H‹L$H‹D$ H‹œ$���H‰Œ$¸���H‰ H‰„$À���€=�����…��H‰C¶����ˆ$H����H‰\$HÇD$���H‹œ$���H‰\$H‹œ$��H‰\$ H‹œ$��H‰\$(è����H‹Œ$è���H‹„$ð���H‹”$ø���H‰ÃHÿÃH9ÓwGH‰œ$ð���H‰ËH‰ÅHkíHëH‹l$`H‰kH‹l$X€=�����uH‰+é5úÿÿH‰$H‰l$è����é"úÿÿH-����H‰,$H‰L$H‰D$H‰T$H‰\$ è����H‹L$(H‹D$0H‹T$8H‰ÃHÿÃH‰œ$ð���H‰”$ø���H‰Œ$è���ékÿÿÿLCL‰$H‰D$è����éÞþÿÿ‰é[þÿÿH‰$ÆD$ÆD$ è����H‹T$H‰T$XH‹L$H‰L$`H‹D$ H‹l$(H‰¬$@��éáúÿÿè���� LCL‰$H‰D$è����éíøÿÿ‰%����éøÿÿ‰éRøÿÿè����éÁ÷ÿÿ`������Ô��type.string���ª
��runtime.convT2E���€�6runtime.writeBarrierEnabled���¤��"".debug���¸��>go.string."consumePhrase: [%s]"���¬
�� "".debugT.Printf���š
��4"".(*addrParser).skipSpace���à��@go.string."mail: missing phrase"���¢��.type.errors.errorString���´
��"runtime.newobject���ð�6runtime.writeBarrierEnabled���”��Bgo.itab.*errors.errorString.error���Ž ��0type.*errors.errorString���¤ ��type.error���¼ ��Bgo.itab.*errors.errorString.error���Ð 
�� runtime.typ2Itab���ú 
��.runtime.writebarrierptr���ö

��H"".(*addrParser).consumeQuotedString���” 
��D"".(*addrParser).decodeRFC2047Word���à
��runtime.convI2E���¶�6runtime.writeBarrierEnabled���Ú��"".debug���î��Lgo.string."consumePhrase: hit err: %v"���â
�� "".debugT.Printf���¦
��runtime.convI2E���ü�6runtime.writeBarrierEnabled���˜��Xgo.string."mail: missing word in phrase: %v"���Š
��fmt.Errorf���–
��.runtime.writebarrierptr���Ò
��.runtime.writebarrierptr���Ä��go.string." "���ê
��strings.Join���ˆ��type.string���Æ
��runtime.convT2E���œ�6runtime.writeBarrierEnabled���À��"".debug���Ô��Lgo.string."consumePhrase: consumed %q"���È
�� "".debugT.Printf���à�6runtime.writeBarrierEnabled���’
��.runtime.writebarrierptr���ª��type.[]string���ä
��"runtime.growslice���ì
��.runtime.writebarrierptr���ª
��8"".(*addrParser).consumeAtom���Š 
��$runtime.panicindex���² 
��.runtime.writebarrierptr���ì 
��0runtime.morestack_noctxt���P°��8"".autotmp_0241��"type.interface {}�"".autotmp_0240�Ÿ(type.[1]interface {}�"".autotmp_0238��*type.*[1]interface {}�"".autotmp_0237��&type.[]interface {}�"".autotmp_0236��"type.interface {}�"".autotmp_0235�ÿ(type.[1]interface {}�"".autotmp_0233��*type.*[1]interface {}�"".autotmp_0232��&type.[]interface {}�"".autotmp_0231��"type.interface {}�"".autotmp_0230�ß(type.[1]interface {}�"".autotmp_0228��*type.*[1]interface {}�"".autotmp_0227��&type.[]interface {}�"".autotmp_0226��type.error�"".autotmp_0223�¯0type.*errors.errorString�"".autotmp_0221�¿"type.interface {}�"".autotmp_0220�Ÿ(type.[1]interface {}�"".autotmp_0217�/&type.[]interface {}�"".autotmp_0216��type.error�"".autotmp_0215��type.int�"".autotmp_0214�type.string�"".autotmp_0213��0type.*errors.errorString� "".~r0�Ÿtype.error�errors.text·2�ßtype.string�"".word�ÿtype.string�"".words�_type.[]string� "".err�0type.error�"".phrase�type.string�"".p��&type.*"".addrParser�8)°š¯°ø¯°¯¯°Ó�À�†æc÷ Þ+/AÓ¦ZûR-.-.V9* �h�ԁ7MŽSõbrFL®e)D 0(�Tgclocals·cc7c0b21313af7ac7dab3855a0f8262d�Tgclocals·3639e062f70a6acc49e8d11877ab0371���\prebuilts/go/linux-x86/src/net/mail/message.goþH"".(*addrParser).consumeQuotedString�� ��ŽeH‹ %(���H‹‰����H„$XÿÿÿH;A†[��Hì(��L‹”$0��1Û1Û1ÛH‰œ$H��H‰œ$P��E1ÛL‰œ$8��L‰œ$@��HÇÁ���L\$VIÇ����AÆC�AÆC �L\$VIƒû�„ï��1ÿH‰¼$���IÇÄ
���L‰¤$��L‰œ$ø���I‹ZH9ˏí���H����H‰œ$¨���HDŽ$°������1ÛH‰\$xH‰œ$€���H����H‰$è����H‹D$H‰D$`H‹¬$°���H‰hH‹¬$¨���€=�����utH‰(H‰D$`H‹����1íH9èt/H‹L$`1ÛH‰œ$8��H‰œ$@��H‰„$H��H‰Œ$P��HÄ(��ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$ë¢H‰$H‰l$è����H‹D$`éwÿÿÿI‹I‹BH‰”$È���H‰L$HH‰„$Ð���H9Áƒ¨��H
¶+H‰î@€ý"…³��H‰ÈHÿÀM‹BL9À‡™��M‹
I)ÀIƒø�tM M‰B€=�����…M��M‰
Hƒÿ�…ð���H����H‰œ$¸���HDŽ$À������1ÛH‰œ$ˆ���H‰œ$���H����H‰$è����H‹D$H‰D$`H‹¬$À���H‰hH‹¬$¸���€=�����utH‰(H‰D$`H‹����1íH9èt/H‹T$`1ÛH‰œ$8��H‰œ$@��H‰„$H��H‰”$P��HÄ(��ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$ë¢H‰$H‰l$è����H‹D$`éwÿÿÿHÇ$����L‰\$H‰|$L‰d$è����H‹L$ H‹D$(H‰Œ$8��H‰„$@��1ÛH‰œ$H��H‰œ$P��HÄ(��ÃL‰$L‰L$è����L‹¤$��L‹œ$ø���H‹¼$���é‹þÿÿè���� @€ý\…Ê��I‹jH‰ËHÿÃH9ë…ê���H����H‰œ$˜���HDŽ$ ������1ÛH‰\$hH‰\$pH����H‰$è����H‹D$H‰D$`H‹¬$ ���H‰hH‹¬$˜���€=�����utH‰(H‰D$`H‹����1íH9èt/H‹T$`1ÛH‰œ$8��H‰œ$@��H‰„$H��H‰”$P��HÄ(��ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$ë¢H‰$H‰l$è����H‹D$`éwÿÿÿH‰ÈHÿÀI‹2I‹RH‰´$È���H‰”$Ð���H9Ѓ ���H¶+@ˆl$FL‰ÚH‰øH‰ûHÿÃL9ãw H‰ßH‰œ$���H¶l$F@ˆ+HƒÁé°ûÿÿH-����H‰,$H‰T$H‰D$L‰d$H‰\$ è����L‹”$0��H‹L$HL‹\$(H‹|$0L‹d$8H‰øHÿÇH‰¼$���L‰¤$��L‰ÚL‰œ$ø���ëˆè���� @ˆl$E@€ý\„÷��@€ý"„í��@€ý!‚Ü��@€ý~–À<�„“���L‰ÚH‰ûH‰øHÿÃL9ãwH‰ßH‰œ$���H@ˆ3HÿÁééúÿÿH-����H‰,$H‰T$H‰D$L‰d$H‰\$ è����L‹”$0��¶t$EH‹L$HL‹\$(H‹|$0L‹d$8H‰øHÿÇH‰¼$���L‰¤$��L‰ÚL‰œ$ø���ë‰@€þ „cÿÿÿ@ˆt$G1ÛH‰œ$è���H‰œ$ð���Hœ$è���Hƒû�„���HDŽ$�����HDŽ$ �����H‰œ$��H����H‰$H\$GH‰\$HÇD$����è����H‹L$H‹D$ H‹œ$��H‰Œ$Ø���H‰ H‰„$à���€=�����uxH‰CH����H‰$HÇD$(���H‹œ$��H‰\$H‹œ$��H‰\$H‹œ$ ��H‰\$ è����H‹D$(H‹L$01ÛH‰œ$8��H‰œ$@��H‰„$H��H‰Œ$P��HÄ(��ÃLCL‰$H‰D$è����éuÿÿÿ‰éùþÿÿ1Àé$þÿÿ1Àéþÿÿè���� A‰é ùÿÿè����éyøÿÿ`������î��Pgo.string."mail: unclosed quoted-string"���Â��.type.errors.errorString���Ô
��"runtime.newobject���œ�6runtime.writeBarrierEnabled���À��Bgo.itab.*errors.errorString.error���º��0type.*errors.errorString���Ð��type.error���è��Bgo.itab.*errors.errorString.error���ü
�� runtime.typ2Itab���¦
��.runtime.writebarrierptr���†�6runtime.writeBarrierEnabled���¼��Jgo.string."mail: empty quoted-string"���– ��.type.errors.errorString���¨ 
��"runtime.newobject���ð �6runtime.writeBarrierEnabled���”
��Bgo.itab.*errors.errorString.error���Ž ��0type.*errors.errorString���¤ ��type.error���¼ ��Bgo.itab.*errors.errorString.error���Ð 
�� runtime.typ2Itab���ú 
��.runtime.writebarrierptr���Æ 
��2runtime.slicebytetostring���Ê 
��.runtime.writebarrierptr���Ž
��$runtime.panicslice���Ú��Pgo.string."mail: unclosed quoted-string"���¨��.type.errors.errorString���º
��"runtime.newobject���‚�6runtime.writeBarrierEnabled���¦��Bgo.itab.*errors.errorString.error��� ��0type.*errors.errorString���¶��type.error���Î��Bgo.itab.*errors.errorString.error���â
�� runtime.typ2Itab���Œ
��.runtime.writebarrierptr���ô��type.[]uint8���®
��"runtime.growslice���¶
��$runtime.panicindex���‚��type.[]uint8���¼
��"runtime.growslice���ø��type.uint8���°
��runtime.convT2E���†�6runtime.writeBarrierEnabled���¢��hgo.string."mail: bad character in quoted-string: %q"���”
��fmt.Errorf��� 
��.runtime.writebarrierptr���Þ
��$runtime.panicindex���ü
��0runtime.morestack_noctxt���PÐ��N"".autotmp_0279��type.string�"".autotmp_0278��type.error�"".autotmp_0277��type.*uint8�"".autotmp_0276��type.error�"".autotmp_0275��0type.*errors.errorString�"".autotmp_0274�Ÿ"type.interface {}�"".autotmp_0273�(type.[1]interface {}�"".autotmp_0270�/&type.[]interface {}�"".autotmp_0269�Ãtype.uint8�"".autotmp_0268��type.int�"".autotmp_0267��type.error�"".autotmp_0266��type.*uint8�"".autotmp_0265��type.error�"".autotmp_0264��0type.*errors.errorString�"".autotmp_0262��type.error�"".autotmp_0259�0type.*errors.errorString�"".autotmp_0258�£type.[10]uint8�"".autotmp_0257��0type.*errors.errorString�"".autotmp_0256��type.int�"".autotmp_0255��type.int�"".autotmp_0254��type.error�"".autotmp_0253�Átype.uint8�"".autotmp_0252��type.int�"".autotmp_0251��type.int�"".autotmp_0250��0type.*errors.errorString�"".autotmp_0249��type.int�"".autotmp_0248��0type.*errors.errorString� "".~r0�¿type.error�errors.text·2�ßtype.string� "".~r0�ÿtype.error�errors.text·2�Ÿtype.string� "".~r0�ßtype.error�errors.text·2�ÿtype.string�"".c�Åtype.uint8� "".qsb�_type.[]uint8�"".i�¿type.int� "".err�0type.error�
"".qs�type.string�"".p��&type.*"".addrParser�R)аÏÐéÏЖÏÐñÏÐôÏÐN��„¸ZF í/
"7
ðP2
êZj2#h
°  �L�é”Ö”;B"V
”¦ rF "�Tgclocals·ac51813a1292b1403f58393ef4d86b40�Tgclocals·277b31b1999b685f086bc212489c9f41���\prebuilts/go/linux-x86/src/net/mail/message.goþ8"".(*addrParser).consumeAtom��à��ÎeH‹ %(���H‹‰����H„$XÿÿÿH;A†;��Hì(��1Û1Û1ÛH‰œ$P��H‰œ$X��1ÛH‰œ$@��H‰œ$H��H‹œ$0��Hƒû�„ó��H‹ H‹kH‰Œ$ø���Hƒý�H‰¬$���†Ë��¶)@ˆ,$ÆD$�è����H‹”$0��¶\$€û�…ê���H����H‰œ$¨���HDŽ$°������1ÛH‰\$XH‰\$`H����H‰$è����H‹D$H‰D$0H‹¬$°���H‰hH‹¬$¨���€=�����utH‰(H‰D$0H‹����1íH9èt/H‹L$01ÛH‰œ$@��H‰œ$H��H‰„$P��H‰Œ$X��HÄ(��ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$ë¢H‰$H‰l$è����H‹D$0éwÿÿÿHÇÀ���H‹ZH9Ã~gH‰ÓH‹H‹KH‰”$ø���H‰D$(H‰Œ$���H9ȃ{��H¶+@ˆ,$¶œ$8��ˆ\$è����H‹”$0��H‹D$(¶\$€û�t HÿÀH‹ZH9ÙL‹BL9À‡(��H‹
I‰ÂL‹BL9À‡��L‹
I)ÀIƒø�tM H‰Œ$ø���L‰”$���H‰Œ$��H‰Œ$@��L‰”$��L‰”$H��Hƒú�„½��L‰„$ ��L‰BL‰Œ$��€=�����…‰��L‰
€¼$9���…4��H‹¼$@��H‰¼$È���H‹”$H��H5����H‰´$è���HÇÀ���H‰”$Ð���H‰„$ð���H9ÂŒ*��H9Ї��H9À…
��H‰¼$��H‰<$H‰„$��H‰D$H‰t$H‰D$è����¶\$ H‰Ø<�„ä���H����H‰\$xHDŽ$€������1ÛH‰\$8H‰\$@H����H‰$è����H‹D$H‰D$0H‹¬$€���H‰hH‹l$x€=�����utH‰(H‰D$0H‹����1íH9èt/H‹T$01ÛH‰œ$@��H‰œ$H��H‰„$P��H‰”$X��HÄ(��ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$ë¢H‰$H‰l$è����H‹D$0éwÿÿÿH‹œ$@��H‰$H‹œ$H��H‰\$H����H‰\$HÇD$���è����¶\$ €û�„ê���H����H‰œ$ˆ���HDŽ$������1ÛH‰\$HH‰\$PH����H‰$è����H‹D$H‰D$0H‹¬$���H‰hH‹¬$ˆ���€=�����utH‰(H‰D$0H‹����1íH9èt/H‹T$01ÛH‰œ$@��H‰œ$H��H‰„$P��H‰”$X��HÄ(��ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$ë¢H‰$H‰l$è����H‹D$0éwÿÿÿH‹¼$@��H‰¼$¸���H‹Œ$H��H5����H‰´$Ø���HÇÀ���H‰Œ$À���H‰„$à���H9ÁŒu��H‰ËH)ÃH‰ÍH9ˇ\��H)ÝI‰øHƒý�tMH9Å…<��L‰„$��L‰$H‰¬$ ��H‰l$H‰t$H‰D$è����¶\$ H‰Ø<�„ê���H����H‰œ$˜���HDŽ$ ������1ÛH‰\$hH‰\$pH����H‰$è����H‹D$H‰D$0H‹¬$ ���H‰hH‹¬$˜���€=�����utH‰(H‰D$0H‹����1íH9èt/H‹T$01ÛH‰œ$@��H‰œ$H��H‰„$P��H‰”$X��HÄ(��ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$ë¢H‰$H‰l$è����H‹D$0éwÿÿÿ1ÛH‰œ$P��H‰œ$X��HÄ(��Ã1Àéíþÿÿè���� 1Àéßþÿÿ1Àéüÿÿè���� 1ÀéüÿÿH‰$L‰L$è����égûÿÿ‰é<ûÿÿè���� è���� è���� è���� ‰éùÿÿè����é™øÿÿt������¢
��"".isAtext���Ü��@go.string."mail: invalid string"���ª��.type.errors.errorString���¼
��"runtime.newobject���„�6runtime.writeBarrierEnabled���¨��Bgo.itab.*errors.errorString.error���¢��0type.*errors.errorString���¸��type.error���Ð��Bgo.itab.*errors.errorString.error���ä
�� runtime.typ2Itab���Ž
��.runtime.writebarrierptr���Ê
��"".isAtext���˜
�6runtime.writeBarrierEnabled���† ��go.string."."���Ê 
�� runtime.eqstring���ø ��Jgo.string."mail: leading dot in atom"���À ��.type.errors.errorString���Ò 
��"runtime.newobject���”�6runtime.writeBarrierEnabled���¸��Bgo.itab.*errors.errorString.error���²��0type.*errors.errorString���È��type.error���à��Bgo.itab.*errors.errorString.error���ô
�� runtime.typ2Itab���ž
��.runtime.writebarrierptr���ò��go.string.".."���˜
�� strings.Contains���Â��Hgo.string."mail: double dot in atom"�����.type.errors.errorString���¢
��"runtime.newobject���ê�6runtime.writeBarrierEnabled���Ž��Bgo.itab.*errors.errorString.error���ˆ��0type.*errors.errorString���ž��type.error���¶��Bgo.itab.*errors.errorString.error���Ê
�� runtime.typ2Itab���ô
��.runtime.writebarrierptr���Æ��go.string."."���¼
�� runtime.eqstring���ê��Lgo.string."mail: trailing dot in atom"���¸��.type.errors.errorString���Ê
��"runtime.newobject���’�6runtime.writeBarrierEnabled���¶��Bgo.itab.*errors.errorString.error���°��0type.*errors.errorString���Æ��type.error���Þ��Bgo.itab.*errors.errorString.error���ò
�� runtime.typ2Itab���œ
��.runtime.writebarrierptr���ü
��$runtime.panicslice���¦
��$runtime.panicslice���Ô
��.runtime.writebarrierptr���ö
��$runtime.panicslice���„
��$runtime.panicslice���’
��$runtime.panicindex��� 
��$runtime.panicindex���¼
��0runtime.morestack_noctxt���`Ð��d"".autotmp_0330��type.error�"".autotmp_0329��type.*uint8�"".autotmp_0328��type.error�"".autotmp_0327��0type.*errors.errorString�"".autotmp_0326��type.bool�"".autotmp_0325��type.error�"".autotmp_0324��type.*uint8�"".autotmp_0323��type.error�"".autotmp_0322��0type.*errors.errorString�"".autotmp_0321��type.error�"".autotmp_0320��type.*uint8�"".autotmp_0319��type.error�"".autotmp_0318��0type.*errors.errorString�"".autotmp_0317��type.bool�"".autotmp_0316�?type.string�"".autotmp_0315��type.error�"".autotmp_0312�ï0type.*errors.errorString�"".autotmp_0311��0type.*errors.errorString�"".autotmp_0310��type.string�"".autotmp_0307��type.int�"".autotmp_0306��type.int�"".autotmp_0305��type.int�"".autotmp_0304��0type.*errors.errorString�"".autotmp_0303��type.bool�"".autotmp_0302��0type.*errors.errorString�"".autotmp_0301��type.string�"".autotmp_0298��type.int�"".autotmp_0297�type.string�"".autotmp_0296��type.string�"".autotmp_0294��type.bool�"".autotmp_0293��type.int�"".autotmp_0292��0type.*errors.errorString� "".~r0�ÿtype.error�errors.text·2�Ÿtype.string�"strings.suffix·3�Ÿtype.string�strings.s·2�ßtype.string� "".~r0�¿type.error�errors.text·2�¿type.string� "".~r0�ßtype.error�errors.text·2�ßtype.string�"strings.prefix·3�type.string�strings.s·2�¿type.string� "".~r0�Ÿtype.error�errors.text·2�ÿtype.string�"".i�ÿtype.int� "".err�@type.error�"".atom� type.string�"".permissive�type.bool� "".dot�type.bool�"".p��&type.*"".addrParser�P)ФÏЇÏЪÏГÏÐ`ÏÐz�ð�j„QZêpŽ‘äAêªê �T�M”sÀD‘RE”¹G”E,6�Tgclocals·d07d0dae6e5530f5726d10f502447b8a�Tgclocals·2b97822c9183ee4c249a2f93774ca8af���\prebuilts/go/linux-x86/src/net/mail/message.goþ0"".(*addrParser).consume��€��þeH‹ %(���H‹‰����H;a†›���Hƒì H‹D$(H‹hHƒý�”Á€ù�uqH‹H‹hH‰T$Hƒý�H‰l$vd¶*H‰ë¶l$0@8ëuJH‹hHƒýr9HÿÍL‹�Hƒý�tIÿÀH‰h€=�����u L‰�ÆD$8HƒÄ ÃH‰$L‰D$è����ëæè���� ÆD$8�HƒÄ Ãè���� è����éAÿÿÿ ������ò�6runtime.writeBarrierEnabled���®
��.runtime.writebarrierptr���¼
��$runtime.panicslice���Þ
��$runtime.panicindex���ì
��0runtime.morestack_noctxt���0@�� "".~r1� type.bool�"".c�type.uint8�"".p��&type.*"".addrParser�@n?@ ?@�À�,°#7)

 � �–*�Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�Tgclocals·23e8278e2b69a3a75fa59b23c49ed6ad���\prebuilts/go/linux-x86/src/net/mail/message.goþ4"".(*addrParser).skipSpace��À��¶eH‹ %(���H‹‰����H;av{Hƒì@H‹t$HH‹H‰ $H‹NH‰L$H����H‰\$HÇD$���è����H‹L$ H‹D$(H‹\$HHƒû�t/H‰D$8H‰CH‰L$0€=�����uH‰ HƒÄ@ÃH‰$H‰L$è����ëë‰ëÍè����éeÿÿÿ ������d��go.string." \t"���Š
�� strings.TrimLeft���Ü�6runtime.writeBarrierEnabled���Ž
��.runtime.writebarrierptr���¤
��0runtime.morestack_noctxt���€��"".autotmp_0340�type.string�"".p��&type.*"".addrParser�€b€#� � Â^�
�D\�Tgclocals·87d20ce1b58390b294df80b886db78bf�Tgclocals·23e8278e2b69a3a75fa59b23c49ed6ad���\prebuilts/go/linux-x86/src/net/mail/message.goþ*"".(*addrParser).peek�� ��’eH‹ %(���H‹‰����H;av,H‹\$Hƒû�tH‹ H‹kHƒý�v ¶)@ˆl$Ãè���� ‰ëßè����ë·������p
��$runtime.panicindex���†
��0runtime.morestack_noctxt��� ��� "".~r0�type.uint8�"".p��&type.*"".addrParser�P�P�Ê,�
�7�Tgclocals·3f5c1f818fa7055d0400cecd34057162�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���\prebuilts/go/linux-x86/src/net/mail/message.goþ,"".(*addrParser).empty��@��&H‹\$H‹kHƒý�”D$Ã� ��� "".~r0�type.bool�"".p��&type.*"".addrParser� � �Ô ��Tgclocals·3f5c1f818fa7055d0400cecd34057162�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���\prebuilts/go/linux-x86/src/net/mail/message.goþ("".(*addrParser).len�� ��H‹\$H‹kH‰l$Ã� ��� "".~r0�type.int�"".p��&type.*"".addrParser���Ü��Tgclocals·3f5c1f818fa7055d0400cecd34057162�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���\prebuilts/go/linux-x86/src/net/mail/message.goþD"".(*addrParser).decodeRFC2047Word��à��ÆeH‹ %(���H‹‰����H;a†��HƒìXH‹T$`H‹L$hH‹D$p1ÛH‰\$xH‰œ$€���1ÛH‰œ$ˆ���H‰œ$���H‹Z1íH9ëtMH‹jH‰,$H‰L$H‰D$è����H‹l$H‹T$ H‹L$(H‹D$0H‰l$xH‰”$€���H‰Œ$ˆ���H‰„$���HƒÄXÃH����H‰$H‰L$H‰D$è����H‹l$H‰l$HH‹T$ H‰T$PH‹D$(H‹L$0Hƒø�u$H‰l$xH‰”$€���1ÛH‰œ$ˆ���H‰œ$���HƒÄXÃH����H‰$H‰D$8H‰D$H‰L$@H‰L$HÇD$����è����H‹T$hH‹L$p¶\$ €û�t,H‰T$xH‰Œ$€���H‹\$8H‰œ$ˆ���H‹\$@H‰œ$���HƒÄXÃH‰T$xH‰Œ$€���1ÛH‰œ$ˆ���H‰œ$���HƒÄXÃè����é]þÿÿ������Ø
��@mime.(*WordDecoder).DecodeHeader���Ò��""".rfc2047Decoder���ø
��4mime.(*WordDecoder).Decode���–��(type."".charsetError���â
��$runtime.assertI2T2���´
��0runtime.morestack_noctxt���p°�� "".err�?type.error� "".dec�type.string� "".~r2�Ptype.error� "".~r1�0type.string�"".s�type.string�"".p��&type.*"".addrParser�>°‡¯°a¯°l¯°#¯°�°�,âN M8$A,$��kÅ€�Tgclocals·5cbd57cf8f9b35eac9551b20a42afe1f�Tgclocals·bade3c5f6d433f8d8fecc50019bf4c85���\prebuilts/go/linux-x86/src/net/mail/message.goþ*"".charsetError.Error�� ��’eH‹ %(���H‹‰����H;a†%��Hì€���1ÛH‰œ$˜���H‰œ$ ���H‹œ$ˆ���H‰\$XH‹œ$���H‰\$`1ÛH‰\$HH‰\$PH\$HHƒû�„Ð���HÇD$p���HÇD$x���H‰\$hH����H‰$H\$XH‰\$HÇD$����è����H‹L$H‹D$ H‹\$hH‰L$8H‰ H‰D$@€=�����u]H‰CH����H‰$HÇD$���H‹\$hH‰\$H‹\$pH‰\$H‹\$xH‰\$ è����H‹L$(H‹D$0H‰Œ$˜���H‰„$ ���HÄ€���ÃLCL‰$H‰D$è����듉é)ÿÿÿè����é·þÿÿ������„��type.string���¼
��runtime.convT2E���€�6runtime.writeBarrierEnabled���œ��Jgo.string."charset not supported: %q"���ü
��fmt.Sprintf���ä
��.runtime.writebarrierptr���€
��0runtime.morestack_noctxt���@€�� "".autotmp_0352�"type.interface {}�"".autotmp_0351�o(type.[1]interface {}�"".autotmp_0348�/&type.[]interface {}�"".autotmp_0346�Otype.string� "".~r0� type.string�"".e��(type."".charsetError�!€‚ÿ€,�Ð�–3Œ��`4�Tgclocals·55cc6ee7528f0b48e5a6d9bfba36524a�Tgclocals·e686e33109a1bc2792301626c7b401c5���\prebuilts/go/linux-x86/src/net/mail/message.goþ"".isAtext��€��ôeH‹ %(���H‹‰����H;av]Hƒì(¶D$0€|$1�t<.u
ÆD$8HƒÄ(ÃH‹����H‰$H‹����H‰\$H‹����H‰\$ˆD$è����H‹\$ Hƒû�D$8HƒÄ(Ãè����ë† ������n��"".atextChars���„�"".atextChars���œ �"".atextChars���¸
��bytes.IndexByte���è
��0runtime.morestack_noctxt��� P�� "".~r2�type.bool� "".dot�type.bool�"".c��type.uint8�POP>OP �€�¬ 
? �
�[%�Tgclocals·23e8278e2b69a3a75fa59b23c49ed6ad�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���\prebuilts/go/linux-x86/src/net/mail/message.goþ"".isQtext��`��L¶D$<\t<"t<!r<~–D$ÃÆD$�ëøÆD$�Ã� ��� "".~r1�type.bool�"".c��type.uint8�0�0�¼��Tgclocals·23e8278e2b69a3a75fa59b23c49ed6ad�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���\prebuilts/go/linux-x86/src/net/mail/message.goþ"".quoteString��à��ÂeH‹ %(���H‹‰����HD$øH;A†ø��Hìˆ���1ÛH‰œ$ ���H‰œ$¨���H����H‰$è����H‹D$H‰D$HH‰$ÆD$"è����H‹œ$���H‰\$`H‹œ$˜���H‰\$h1ÒH‰T$@H‹\$`H‰$H‹\$hH‰\$H‰T$è����H‹l$HH‹T$‹D$ H‰T$8Hƒú�„«���H‰Á<\„™���<"„‘���<!‚‚���<~–À<�uY€ù tk€ù ”À<�uJˆL$7€ù!r=€ù~–À<�„wÿÿÿH‰,$ÆD$\è����H‹\$HH‰$¶\$7ˆ\$è����H‹T$8éHÿÿÿ1ÀëÅH‰,$ˆL$è����H‹T$8é-ÿÿÿHÇÀ���ë’1Àé|ÿÿÿ1ÀéuÿÿÿH‰,$ÆD$"è����H‹D$H1ÛH‰\$PH‰\$X1íH9èu&H ����HÇÀ���H‰Œ$ ���H‰„$¨���HÄˆ���ÃH‹hL‹@L‹HL9ÅwML‹I)èI)éIƒù�tM*HÇ$����L‰T$pL‰T$L‰D$xL‰D$L‰Œ$€���L‰L$è����H‹L$ H‹D$(ëŠè���� è����éßýÿÿ������v��"type.bytes.Buffer���ˆ
��"runtime.newobject���¸
��2bytes.(*Buffer).WriteByte���´
��&runtime.stringiter2���ž
��2bytes.(*Buffer).WriteByte���Ì
��2bytes.(*Buffer).WriteByte���‚
��2bytes.(*Buffer).WriteByte���à
��2bytes.(*Buffer).WriteByte���ž��"go.string."<nil>"���€
��2runtime.slicebytetostring���¢
��$runtime.panicslice���°
��0runtime.morestack_noctxt���@��"".autotmp_0363��type.string�"".autotmp_0358�Ÿtype.int�"".autotmp_0357�type.int�"".autotmp_0356�/type.[]uint8�"".autotmp_0355��type.int�"".autotmp_0354�Otype.string�"".&buf�$type.*bytes.Buffer� "".~r0�otype.string�
"".ch�¡type.uint8� "".~r1� type.string�"".s��type.string�&‹~�°�JÎ8[0 £��C>֐1�Tgclocals·55cc6ee7528f0b48e5a6d9bfba36524a�Tgclocals·bf154057a417536b2b833668ad2a1a11���\prebuilts/go/linux-x86/src/net/mail/message.goþ"".isVchar��@��0¶D$<!r<~–D$ÃÆD$�ëø� ��� "".~r1�type.bool�"".c��type.uint8� � � ð��Tgclocals·23e8278e2b69a3a75fa59b23c49ed6ad�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���\prebuilts/go/linux-x86/src/net/mail/message.goþ"".isWSP��@��0¶D$< t< ”D$ÃÆD$ëø� ��� "".~r1�type.bool�"".c��type.uint8� � � þ��Tgclocals·23e8278e2b69a3a75fa59b23c49ed6ad�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���\prebuilts/go/linux-x86/src/net/mail/message.goþ"".glob.func1��€��ìeH‹ %(���H‹‰����H;a†’���HƒìH1Û1ÛH‰œ$€���H‰œ$ˆ���H‹\$PH‰\$8H‹\$XH‰\$@1ÛH‰\$pH‰\$xH����H‰$H����H‰\$H����H‰\$H\$8H‰\$HÇD$ ����è����H‹\$(H‰œ$€���H‹\$0H‰œ$ˆ���HƒÄHÃè����éJÿÿÿ ������ª��(type."".charsetError���À��type.error���Ø��:go.itab."".charsetError.error���’
��runtime.convT2I���Ú
��0runtime.morestack_noctxt���€��
"".autotmp_0364�(type."".charsetError� "".~r3�`type.error� "".~r2�@type.io.Reader�"".input� type.io.Reader�"".charset��type.string��À�ˆ2z� �ˆ8�Tgclocals·d515b4d2ec11d0a8c27c2de7f0da3fef�Tgclocals·d8fdd2a55187867c76648dc792366181���\prebuilts/go/linux-x86/src/net/mail/message.goþL"".(*addrParser).consumeAddrSpec.func1��à��ÄeH‹ %(���H‹‰����H;avEHƒìH‹\$ H‹+Hƒý�t*H‹\$(Hƒû�t$Hl$0H‰\$H‰l$H-����H‰,$è����HƒÄÉëØè����ëž������Š��$type."".addrParser���œ
��(runtime.typedmemmove���¸
��0runtime.morestack_noctxt���P0��"".orig� $type."".addrParser�"".p�&type.*"".addrParser�"".&err��type.*error�0</0�p�Š*�
�M#�Tgclocals·359e1adf4794caae0441a32ee5b8d4b0�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���\prebuilts/go/linux-x86/src/net/mail/message.goþ"".init�� �� eH‹ %(���H‹‰����H;a†ì���Hƒì ¶����€û�t¶����€ûuHƒÄ Ãè���� Æ����è����è����è����è����è����è����è����è����è����H����H‰$HÇD$���è����H‹\$H‰����H‹\$€=�����uFH‰����H����€=�����uH‰����è����Æ����HƒÄ ÃH-����H‰,$H‰\$è����ëØH-����H‰,$H‰\$è����ëªè����éðþÿÿ:������B��"".initdone·���Z��"".initdone·���x
��"runtime.throwinit���ˆ�"".initdone·���”
��bufio.init���ž
��bytes.init���¨
��fmt.init���²
��io.init���¼
��log.init���Æ
��mime.init���Ð
��$net/textproto.init���Ú
��strings.init���ä
��time.init���ò��Ngo.string."mail: header not in message"���–
��errors.New���®��,"".ErrHeaderNotPresent���Ä�6runtime.writeBarrierEnabled���Ø�,"".ErrHeaderNotPresent���æ�� "".glob.func1·f���ò�6runtime.writeBarrierEnabled���†��""".rfc2047Decoder���
��"".init.1���œ�"".initdone·���¶��""".rfc2047Decoder���Ò
��.runtime.writebarrierptr���ä�,"".ErrHeaderNotPresent���€
��.runtime.writebarrierptr���Ž
��0runtime.morestack_noctxt����@���@?@œ?@8��0‚ v¡:¨zyz¡¨z
� �;Õ�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���\prebuilts/go/linux-x86/src/net/mail/message.goþ&"".(*debugT).Printf��À��®eH‹ %(���H‹‰����H;a†³���Hƒì0H‹Y H…Ût H|$8H9;uH‰#H‹\$81íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$���H����H‰\$ HÇD$(���è���� H‹\$8¶+@ˆ,$H‹\$@H‰\$H‹\$HH‰\$H‹\$PH‰\$H‹\$XH‰\$ H‹\$`H‰\$(è����HƒÄ0Ãè����é)ÿÿÿ������†�� go.string."mail"���®��$go.string."debugT"���Ø��$go.string."Printf"���þ
��"runtime.panicwrap���ˆ
�� "".debugT.Printf���œ
��0runtime.morestack_noctxt���``��"".args�0&type.[]interface {}�"".format�type.string�""..this��type.*"".debugT�`®_`�à�à�
�~b�Tgclocals·c6134a2ac139b68c0737f8b03170e2ac�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ(type..hash.[8]string�à��ØeH‹ %(���H‹‰����H;a†ˆ���Hƒì(H‹L$81ÀHÇD$���H‹l$H9è}\H‰D$ H‰ÅH‰ÈHÁÀH»¿c»kïR�H¯ØH‰ØH‹\$0Hƒû�t;HÁåHëH‰$H‰D$8H‰D$è����H‹L$H‹D$ HÿÀH‹l$H9è|¤H‰L$@HƒÄ(ÉëÁè����éTÿÿÿ������ò
��runtime.strhash���Æ
��0runtime.morestack_noctxt���0P��
"".autotmp_0366�type.int�"".autotmp_0365�type.int� "".~r2� type.uintptr�"".h�type.uintptr�"".p��type.*[8]string�POP�°�°�
�x8�Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���\prebuilts/go/linux-x86/src/net/mail/message.goþ$type..eq.[8]string�€��äeH‹ %(���H‹‰����H;a†Î���HƒìX1ÀHÇD$(���H‹l$(H9荒���H‰D$0H‹\$`Hƒû�„–���H‰ÅHÁåHëH‹3H‹KH‹\$hHƒû�tvH‰ÅHÁåHëH‹H‹CH9ÁuVH‰t$HH‰4$H‰L$PH‰L$H‰T$8H‰T$H‰D$@H‰D$è����¶\$ €û�t H‹D$0HÿÀH‹l$(H9èŒnÿÿÿÆD$pHƒÄXÃÆD$p�HƒÄXÉ놉écÿÿÿè����éÿÿÿ������Ê
�� runtime.eqstring���Ò
��0runtime.morestack_noctxt���0°��"".autotmp_0370�?type.string�"".autotmp_0369�type.string�"".autotmp_0368�_type.int�"".autotmp_0367�Otype.int� "".~r2� type.bool�"".q�type.*[8]string�"".p��type.*[8]string�&°´¯° ¯°#�€�€� �¤\�Tgclocals·3bb21ca8fe1d99a3e492463bd711418a�Tgclocals·a8eabfc4a4514ed6b3b0c61e9680e440���\prebuilts/go/linux-x86/src/net/mail/message.goþ "".(*Header).Get��À��²eH‹ %(���H‹‰����H;a†µ���Hƒì0H‹Y H…Ût H|$8H9;uH‰#1ÛH‰\$PH‰\$XH‹\$81íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$���H����H‰\$ HÇD$(���è���� H‹\$8H‹+H‰,$H‹\$@H‰\$H‹\$HH‰\$è����H‹L$H‹D$ H‰L$PH‰D$XHƒÄ0Ãè����é'ÿÿÿ������ž�� go.string."mail"���Æ��$go.string."Header"���ð��go.string."Get"���–
��"runtime.panicwrap���ä
��"".Header.Get��� 
��0runtime.morestack_noctxt���P`�� "".~r1�0type.string� "".key�type.string�""..this��type.*"".Header�`°_`�à�à� �ŠV�Tgclocals·1347047f6245a35b91e9a4f213167d52�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ""".(*Header).Date��€��âeH‹ %(���H‹‰����H;a†Í���Hƒì0H‹Y H…Ût H|$8H9;uH‰#1ÛH‰\$@‰\$HH‰\$P1ÛH‰\$XH‰\$`H‹\$81íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$���H����H‰\$ HÇD$(���è���� H‹\$8H‹+H‰,$è����H‹t$‹l$H‹T$H‹L$ H‹D$(H‰t$@‰l$HH‰T$PH‰L$XH‰D$`HƒÄ0Ãè����éÿÿÿ������¾�� go.string."mail"���æ��$go.string."Header"����� go.string."Date"���¶
��"runtime.panicwrap���Ü
��"".Header.Date���Ð
��0runtime.morestack_noctxt���``�� "".~r1�@type.error� "".~r0�type.time.Time�""..this��type.*"".Header�`È_`�€�€� �šf�Tgclocals·6432f8c6a0d23fa7bee6c5d96f21a92a�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ0"".(*Header).AddressList�� ��œeH‹ %(���H‹‰����H;a†ê���Hƒì@H‹Y H…Ût H|$HH9;uH‰#1ÛH‰\$`H‰\$hH‰\$p1ÛH‰\$xH‰œ$€���H‹\$H1íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$���H����H‰\$ HÇD$( ���è���� H‹\$HH‹+H‰,$H‹\$PH‰\$H‹\$XH‰\$è����H‹t$H‹l$ H‹T$(H‹L$0H‹D$8H‰t$`H‰l$hH‰T$pH‰L$xH‰„$€���HƒÄ@Ãè����éòþÿÿ������Æ�� go.string."mail"���î��$go.string."Header"���˜��.go.string."AddressList"���¾
��"runtime.panicwrap���Œ
��*"".Header.AddressList���Š
��0runtime.morestack_noctxt���€€�� "".~r2�`type.error� "".~r1�0$type.[]*"".Address� "".key�type.string�""..this��type.*"".Header�€å€ ��
� �žr�Tgclocals·6d46c0650eba7dbebc0db316e0e0cf3b�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ*type..hash."".Address� ��šeH‹ %(���H‹‰����H;avmHƒìH‹\$ H‰$Hƒ<$�tPH‹\$(H‰\$è����H‹D$H‹\$ H‰$Hƒ<$�t#Hƒ$H‰D$(H‰D$è����H‹\$H‰\$0HƒÄÉ%����ëԉ%����ë§è����ésÿÿÿ������j
��runtime.strhash���¼
��runtime.strhash���ˆ
��0runtime.morestack_noctxt���00�� "".~r2� type.uintptr�"".h�type.uintptr�"".p�� type.*"".Address�0V/0���
�4\�Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���\prebuilts/go/linux-x86/src/net/mail/message.goþ&type..eq."".Address�à��ÐeH‹ %(���H‹‰����H;a†��HƒìHH‹\$PHƒû�„ê���H‹3H‹KH‹\$XHƒû�„Í���H‹H‹CH9Á…³���H‰t$8H‰4$H‰L$@H‰L$H‰T$(H‰T$H‰D$0H‰D$è����¶\$ €û�t}H‹\$PHƒû�tnH‹SH‹CH‹\$XHƒû�tWH‹sH‹KH9Èu@H‰T$(H‰$H‰D$0H‰D$H‰t$8H‰t$H‰L$@H‰L$è����¶\$ €û�t
ÆD$`HƒÄHÃÆD$`�HƒÄHÉ륉ëŽÆD$`�HƒÄHÉé,ÿÿÿ‰éÿÿÿè����éØþÿÿ������ö
�� runtime.eqstring���¸
�� runtime.eqstring���¾
��0runtime.morestack_noctxt���0��"".autotmp_0379��type.string�"".autotmp_0378��type.string�"".autotmp_0377�?type.string�"".autotmp_0376�type.string� "".~r2� type.bool�"".q� type.*"".Address�"".p�� type.*"".Address�2Õ  �°�°� �z¶�Tgclocals·3bb21ca8fe1d99a3e492463bd711418a�Tgclocals·a8eabfc4a4514ed6b3b0c61e9680e440���\prebuilts/go/linux-x86/src/net/mail/message.goþ(type..hash.[2]string�à��ØeH‹ %(���H‹‰����H;a†ˆ���Hƒì(H‹L$81ÀHÇD$���H‹l$H9è}\H‰D$ H‰ÅH‰ÈHÁÀH»¿c»kïR�H¯ØH‰ØH‹\$0Hƒû�t;HÁåHëH‰$H‰D$8H‰D$è����H‹L$H‹D$ HÿÀH‹l$H9è|¤H‰L$@HƒÄ(ÉëÁè����éTÿÿÿ������ò
��runtime.strhash���Æ
��0runtime.morestack_noctxt���0P��
"".autotmp_0381�type.int�"".autotmp_0380�type.int� "".~r2� type.uintptr�"".h�type.uintptr�"".p��type.*[2]string�POP�°�°�
�x8�Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���\prebuilts/go/linux-x86/src/net/mail/message.goþ$type..eq.[2]string�€��äeH‹ %(���H‹‰����H;a†Î���HƒìX1ÀHÇD$(���H‹l$(H9荒���H‰D$0H‹\$`Hƒû�„–���H‰ÅHÁåHëH‹3H‹KH‹\$hHƒû�tvH‰ÅHÁåHëH‹H‹CH9ÁuVH‰t$HH‰4$H‰L$PH‰L$H‰T$8H‰T$H‰D$@H‰D$è����¶\$ €û�t H‹D$0HÿÀH‹l$(H9èŒnÿÿÿÆD$pHƒÄXÃÆD$p�HƒÄXÉ놉écÿÿÿè����éÿÿÿ������Ê
�� runtime.eqstring���Ò
��0runtime.morestack_noctxt���0°��"".autotmp_0385�?type.string�"".autotmp_0384�type.string�"".autotmp_0383�_type.int�"".autotmp_0382�Otype.int� "".~r2� type.bool�"".q�type.*[2]string�"".p��type.*[2]string�&°´¯° ¯°#�€�€� �¤\�Tgclocals·3bb21ca8fe1d99a3e492463bd711418a�Tgclocals·a8eabfc4a4514ed6b3b0c61e9680e440���\prebuilts/go/linux-x86/src/net/mail/message.goþ(type..hash.[3]string�à��ØeH‹ %(���H‹‰����H;a†ˆ���Hƒì(H‹L$81ÀHÇD$���H‹l$H9è}\H‰D$ H‰ÅH‰ÈHÁÀH»¿c»kïR�H¯ØH‰ØH‹\$0Hƒû�t;HÁåHëH‰$H‰D$8H‰D$è����H‹L$H‹D$ HÿÀH‹l$H9è|¤H‰L$@HƒÄ(ÉëÁè����éTÿÿÿ������ò
��runtime.strhash���Æ
��0runtime.morestack_noctxt���0P��
"".autotmp_0387�type.int�"".autotmp_0386�type.int� "".~r2� type.uintptr�"".h�type.uintptr�"".p��type.*[3]string�POP�°�°�
�x8�Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���\prebuilts/go/linux-x86/src/net/mail/message.goþ$type..eq.[3]string�€��äeH‹ %(���H‹‰����H;a†Î���HƒìX1ÀHÇD$(���H‹l$(H9荒���H‰D$0H‹\$`Hƒû�„–���H‰ÅHÁåHëH‹3H‹KH‹\$hHƒû�tvH‰ÅHÁåHëH‹H‹CH9ÁuVH‰t$HH‰4$H‰L$PH‰L$H‰T$8H‰T$H‰D$@H‰D$è����¶\$ €û�t H‹D$0HÿÀH‹l$(H9èŒnÿÿÿÆD$pHƒÄXÃÆD$p�HƒÄXÉ놉écÿÿÿè����éÿÿÿ������Ê
�� runtime.eqstring���Ò
��0runtime.morestack_noctxt���0°��"".autotmp_0391�?type.string�"".autotmp_0390�type.string�"".autotmp_0389�_type.int�"".autotmp_0388�Otype.int� "".~r2� type.bool�"".q�type.*[3]string�"".p��type.*[3]string�&°´¯° ¯°#�€�€� �¤\�Tgclocals·3bb21ca8fe1d99a3e492463bd711418a�Tgclocals·a8eabfc4a4514ed6b3b0c61e9680e440���\prebuilts/go/linux-x86/src/net/mail/message.goþ0type..hash."".addrParser�À��¬eH‹ %(���H‹‰����H;avvHƒì H‹\$(H‰$Hƒ<$�tYH‹\$0H‰\$è����H‹D$H‹\$(H‰$Hƒ<$�t,Hƒ$H‰D$0H‰D$HÇD$���è����H‹\$H‰\$8HƒÄ É%����ëˉ%����ëžè����éjÿÿÿ������j
��runtime.strhash���Î
��runtime.memhash���š
��0runtime.morestack_noctxt���0@�� "".~r2� type.uintptr�"".h�type.uintptr�"".p��&type.*"".addrParser�@_?@&� � �
�4l�Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���\prebuilts/go/linux-x86/src/net/mail/message.goþ,type..eq."".addrParser� ��–eH‹ %(���H‹‰����H;a†§���HƒìHH‹\$PHƒû�„���H‹3H‹KH‹\$XHƒû�twH‹H‹CH9ÁuaH‰t$8H‰4$H‰L$@H‰L$H‰T$(H‰T$H‰D$0H‰D$è����¶\$ €û�t+H‹l$PH‹]L‹D$XI‹hH9ët
ÆD$`�HƒÄHÃÆD$`HƒÄHÃÆD$`�HƒÄHÉ녉élÿÿÿè����é5ÿÿÿ������æ
�� runtime.eqstring���„
��0runtime.morestack_noctxt���0��
"".autotmp_0393�?type.string�"".autotmp_0392�type.string� "".~r2� type.bool�"".q�&type.*"".addrParser�"".p��&type.*"".addrParser�2ƒ  �Ð�Ð�
�r^�Tgclocals·3bb21ca8fe1d99a3e492463bd711418a�Tgclocals·a8eabfc4a4514ed6b3b0c61e9680e440���\prebuilts/go/linux-x86/src/net/mail/message.goþ4type..hash.[1]interface {}�à��ØeH‹ %(���H‹‰����H;a†ˆ���Hƒì(H‹L$81ÀHÇD$���H‹l$H9è}\H‰D$ H‰ÅH‰ÈHÁÀH»¿c»kïR�H¯ØH‰ØH‹\$0Hƒû�t;HÁåHëH‰$H‰D$8H‰D$è����H‹L$H‹D$ HÿÀH‹l$H9è|¤H‰L$@HƒÄ(ÉëÁè����éTÿÿÿ������ò
��(runtime.nilinterhash���Æ
��0runtime.morestack_noctxt���0P��
"".autotmp_0395�type.int�"".autotmp_0394�type.int� "".~r2� type.uintptr�"".h�type.uintptr�"".p��*type.*[1]interface {}�POP�°�°�
�x8�Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���\prebuilts/go/linux-x86/src/net/mail/message.goþ0type..eq.[1]interface {}�€��äeH‹ %(���H‹‰����H;a†Î���HƒìX1ÀHÇD$(���H‹l$(H9荒���H‰D$0H‹\$hHƒû�„–���H‰ÅHÁåHëH‹ H‹sH‹\$`Hƒû�tvH‰ÅHÁåHëH‹H‹SH9ÈuVH‰D$8H‰$H‰T$@H‰T$H‰L$HH‰L$H‰t$PH‰t$è����¶\$ €û�t H‹D$0HÿÀH‹l$(H9èŒnÿÿÿÆD$pHƒÄXÃÆD$p�HƒÄXÉ놉écÿÿÿè����éÿÿÿ������Ê
��runtime.efaceeq���Ò
��0runtime.morestack_noctxt���0°��"".autotmp_0399�?"type.interface {}�"".autotmp_0398�"type.interface {}�"".autotmp_0397�_type.int�"".autotmp_0396�Otype.int� "".~r2� type.bool�"".q�*type.*[1]interface {}�"".p��*type.*[1]interface {}�&°´¯° ¯°#�€�€� �¤\�Tgclocals·3bb21ca8fe1d99a3e492463bd711418a�Tgclocals·a8eabfc4a4514ed6b3b0c61e9680e440���\prebuilts/go/linux-x86/src/net/mail/message.goþ0"".(*charsetError).Error�� ��œeH‹ %(���H‹‰����H;a†ª���Hƒì0H‹Y H…Ût H|$8H9;uH‰#1ÛH‰\$@H‰\$HH‹\$81íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$ ���H����H‰\$ HÇD$(���è���� H‹t$8H‹H‰ $H‹NH‰L$è����H‹L$H‹D$H‰L$@H‰D$HHƒÄ0Ãè����é2ÿÿÿ������ž�� go.string."mail"���Æ��0go.string."charsetError"���ð��"go.string."Error"���–
��"runtime.panicwrap���Î
��*"".charsetError.Error���Š
��0runtime.morestack_noctxt���0`�� "".~r0�type.string�""..this��*type.*"".charsetError�`¥_` �Ð� Ð� �ŠF�Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·dc4819cec76b48d37a88e20b1cadd722���������
����þ0>go.itab.*bufio.Reader.io.Reader�����þTgclocals·c9e33b40efb230c089483b3d16ac4c0c�P��P��� ����������
��������������þTgclocals·afdc4e52a65b6727c663d399373e0835�P��P�������������������������������þ*go.string.hdr."Mon, "� �� ������������������"go.string."Mon, "���þ"go.string."Mon, "��� Mon, ��þ"go.string.hdr."2"� �� ������������������go.string."2"���þgo.string."2"���2��þ$go.string.hdr."02"� �� ������������������go.string."02"���þgo.string."02"���02��þ(go.string.hdr."2006"� �� ������������������ go.string."2006"���þ go.string."2006"���
2006��þ$go.string.hdr."06"� �� ������������������go.string."06"���þgo.string."06"���06��þ&go.string.hdr.":05"� �� ������������������go.string.":05"���þgo.string.":05"���:05��þ*go.string.hdr."-0700"� �� ������������������"go.string."-0700"���þ"go.string."-0700"��� -0700��þ&go.string.hdr."MST"� �� ������������������go.string."MST"���þgo.string."MST"���MST��þ6go.string.hdr."-0700 (MST)"� �� �������� ����������.go.string."-0700 (MST)"���þ.go.string."-0700 (MST)"� ��-0700 (MST)��þ*go.string.hdr." Jan "� �� ������������������"go.string." Jan "���þ"go.string." Jan "��� Jan ��þ,go.string.hdr." 15:04"� �� ������������������$go.string." 15:04"���þ$go.string." 15:04"��� 15:04��þ"go.string.hdr." "� �� ������������������go.string." "���þgo.string." "��� ��þTgclocals·a6c3968f7745fb0c677d6eed208b96ce�¸��¸���S���������������~E‘*¨ªªªªª�>E‘*¨ªªªªª�>E*¨ªªªªª�>U*¨ªªª���?U*¨ªªª���>E*¨ªªª����þTgclocals·f5be5308b59e045b7c5b33ee8908cfb7�����������þ0Bgo.itab.*errors.errorString.error�����þ`go.string.hdr."mail: header could not be parsed"� �� �������� ����������Xgo.string."mail: header could not be parsed"���þXgo.string."mail: header could not be parsed"�P��Bmail: header could not be parsed��þTgclocals·191ec12c1ae9b57de36c2ea47562d827�0��0��������������������þTgclocals·1be7d47bae55850e7016f9662c4ac24a�0��0�������������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·1347047f6245a35b91e9a4f213167d52�������������þ(go.string.hdr."Date"� �� ������������������ go.string."Date"���þ go.string."Date"���
Date��þTgclocals·23e8278e2b69a3a75fa59b23c49ed6ad��������������þTgclocals·6432f8c6a0d23fa7bee6c5d96f21a92a�������������þTgclocals·23e8278e2b69a3a75fa59b23c49ed6ad��������������þTgclocals·6d46c0650eba7dbebc0db316e0e0cf3b�������������þTgclocals·34f124440e1e8e607060d08805b548f5� �� ��������������þTgclocals·3260b5c802f633fd6252c227878dd72a� �� �������������þTgclocals·34f124440e1e8e607060d08805b548f5� �� ��������������þTgclocals·b767a85ad52475ddbcff98293d22a77d� �� �������������þTgclocals·34f124440e1e8e607060d08805b548f5� �� ��������������þTgclocals·aa5118865dd28fc3eaacbfc830efb456� �� �������������þTgclocals·34f124440e1e8e607060d08805b548f5� �� ��������������þTgclocals·99ef9ff0bd07d0e619cc0988c2dabb63� �� �������������þ"go.string.hdr."@"� �� ������������������go.string."@"���þgo.string."@"���@��þ"go.string.hdr."<"� �� ������������������go.string."<"���þgo.string."<"���<��þ"go.string.hdr.">"� �� ������������������go.string.">"���þgo.string.">"���>��þ$go.string.hdr."\""� �� ������������������go.string."\""���þgo.string."\""���"��þ&go.string.hdr."\" "� �� ������������������go.string."\" "���þgo.string."\" "���" ��þ*go.string.hdr."<nil>"� �� ������������������"go.string."<nil>"���þ"go.string."<nil>"��� <nil>��þ*go.string.hdr."utf-8"� �� ������������������"go.string."utf-8"���þ"go.string."utf-8"��� utf-8��þTgclocals·722f696ec13123fdfb1a6a1aa61e7a29�P��P����������������P���B���A������@����þTgclocals·add78ec634cef78099972ccd9d767bc6�P��P�������������������������������þHgo.string.hdr."mail: expected comma"� �� ������������������@go.string."mail: expected comma"���þ@go.string."mail: expected comma"�0��*mail: expected comma��þTgclocals·d75c4b68ee9f4cbb7a90537e340d438f�8��8��� ��������������������þTgclocals·9bbac069deb72cc871842b3a3b7cac0d�8��8����������������������þ@go.string.hdr."parseAddress: %q"� �� ������������������8go.string."parseAddress: %q"���þ8go.string."parseAddress: %q"�0��"parseAddress: %q��þ@go.string.hdr."mail: no address"� �� ������������������8go.string."mail: no address"���þ8go.string."mail: no address"�0��"mail: no address��þdgo.string.hdr."parseAddress: not an addr-spec: %v"� �� ��������"����������\go.string."parseAddress: not an addr-spec: %v"���þ\go.string."parseAddress: not an addr-spec: %v"�P��FparseAddress: not an addr-spec: %v��þZgo.string.hdr."parseAddress: state is now %q"� �� ������������������Rgo.string."parseAddress: state is now %q"���þRgo.string."parseAddress: state is now %q"�@��<parseAddress: state is now %q��þXgo.string.hdr."parseAddress: displayName=%q"� �� ������������������Pgo.string."parseAddress: displayName=%q"���þPgo.string."parseAddress: displayName=%q"�@��:parseAddress: displayName=%q��þFgo.string.hdr."mail: no angle-addr"� �� ������������������>go.string."mail: no angle-addr"���þ>go.string."mail: no angle-addr"�0��(mail: no angle-addr��þRgo.string.hdr."mail: unclosed angle-addr"� �� ������������������Jgo.string."mail: unclosed angle-addr"���þJgo.string."mail: unclosed angle-addr"�@��4mail: unclosed angle-addr��þJgo.string.hdr."parseAddress: spec=%q"� �� ������������������Bgo.string."parseAddress: spec=%q"���þBgo.string."parseAddress: spec=%q"�0��,parseAddress: spec=%q��þTgclocals·8b7648950fdf11ae57869c2ff71cd267������%��������������À������À������À������À�����@�À������À�������Ì������Ì�������Ï������Ï������ÁÏ�����ÁÏ�����ÁÏ������ÀÏ�����ÀÏ�����ÀÏ�����@ÁÏ�����ÀÏ�����@ñÏ����@ñÏ����@ñÏ����@ðÏ�����ðÏ�����þTgclocals·16351a11d049f9eae0584cfd18491796�Ð��Ð��������������������� ��� �������������������������������������������������������þFgo.string.hdr."consumeAddrSpec: %q"� �� ������������������>go.string."consumeAddrSpec: %q"���þ>go.string."consumeAddrSpec: %q"�0��(consumeAddrSpec: %q��þDgo.string.hdr."mail: no addr-spec"� �� ������������������<go.string."mail: no addr-spec"���þ<go.string."mail: no addr-spec"�0��&mail: no addr-spec��þlgo.string.hdr."consumeAddrSpec: parsing quoted-string"� �� ��������&����������dgo.string."consumeAddrSpec: parsing quoted-string"���þdgo.string."consumeAddrSpec: parsing quoted-string"�P��NconsumeAddrSpec: parsing quoted-string��þbgo.string.hdr."consumeAddrSpec: parsing dot-atom"� �� ��������!����������Zgo.string."consumeAddrSpec: parsing dot-atom"���þZgo.string."consumeAddrSpec: parsing dot-atom"�P��DconsumeAddrSpec: parsing dot-atom��þVgo.string.hdr."consumeAddrSpec: failed: %v"� �� ������������������Ngo.string."consumeAddrSpec: failed: %v"���þNgo.string."consumeAddrSpec: failed: %v"�@��8consumeAddrSpec: failed: %v��þXgo.string.hdr."mail: missing @ in addr-spec"� �� ������������������Pgo.string."mail: missing @ in addr-spec"���þPgo.string."mail: missing @ in addr-spec"�@��:mail: missing @ in addr-spec��þXgo.string.hdr."mail: no domain in addr-spec"� �� ������������������Pgo.string."mail: no domain in addr-spec"���þPgo.string."mail: no domain in addr-spec"�@��:mail: no domain in addr-spec��þTgclocals·2b6e1b929afcb1764d8fa36062206214�Ð��Ð ���!��������������F��������������������������������F����������������� �����������€�������þTgclocals·9d1671071fb8a839544816e0032b4669�p��p �������������������������������������������þFgo.string.hdr."consumePhrase: [%s]"� �� ������������������>go.string."consumePhrase: [%s]"���þ>go.string."consumePhrase: [%s]"�0��(consumePhrase: [%s]��þHgo.string.hdr."mail: missing phrase"� �� ������������������@go.string."mail: missing phrase"���þ@go.string."mail: missing phrase"�0��*mail: missing phrase��þTgo.string.hdr."consumePhrase: consumed %q"� �� ������������������Lgo.string."consumePhrase: consumed %q"���þLgo.string."consumePhrase: consumed %q"�@��6consumePhrase: consumed %q��þTgo.string.hdr."consumePhrase: hit err: %v"� �� ������������������Lgo.string."consumePhrase: hit err: %v"���þLgo.string."consumePhrase: hit err: %v"�@��6consumePhrase: hit err: %v��þ`go.string.hdr."mail: missing word in phrase: %v"� �� �������� ����������Xgo.string."mail: missing word in phrase: %v"���þXgo.string."mail: missing word in phrase: %v"�P��Bmail: missing word in phrase: %v��þTgclocals·3639e062f70a6acc49e8d11877ab0371�x��x �����������`�`��`&� `�`��x�x��~�~�`.`.�`��þTgclocals·cc7c0b21313af7ac7dab3855a0f8262d�x��x ����������������������������������������������þXgo.string.hdr."mail: unclosed quoted-string"� �� ������������������Pgo.string."mail: unclosed quoted-string"���þPgo.string."mail: unclosed quoted-string"�@��:mail: unclosed quoted-string��þpgo.string.hdr."mail: bad character in quoted-string: %q"� �� ��������(����������hgo.string."mail: bad character in quoted-string: %q"���þhgo.string."mail: bad character in quoted-string: %q"�`��Rmail: bad character in quoted-string: %q��þRgo.string.hdr."mail: empty quoted-string"� �� ������������������Jgo.string."mail: empty quoted-string"���þJgo.string."mail: empty quoted-string"�@��4mail: empty quoted-string��þTgclocals·277b31b1999b685f086bc212489c9f41�P��P����������������������€�����F�����þTgclocals·ac51813a1292b1403f58393ef4d86b40�P��P�������������������������������þHgo.string.hdr."mail: invalid string"� �� ������������������@go.string."mail: invalid string"���þ@go.string."mail: invalid string"�0��*mail: invalid string��þ"go.string.hdr."."� �� ������������������go.string."."���þgo.string."."���.��þRgo.string.hdr."mail: leading dot in atom"� �� ������������������Jgo.string."mail: leading dot in atom"���þJgo.string."mail: leading dot in atom"�@��4mail: leading dot in atom��þ$go.string.hdr.".."� �� ������������������go.string.".."���þgo.string.".."���..��þPgo.string.hdr."mail: double dot in atom"� �� ������������������Hgo.string."mail: double dot in atom"���þHgo.string."mail: double dot in atom"�@��2mail: double dot in atom��þTgo.string.hdr."mail: trailing dot in atom"� �� ������������������Lgo.string."mail: trailing dot in atom"���þLgo.string."mail: trailing dot in atom"�@��6mail: trailing dot in atom��þTgclocals·2b97822c9183ee4c249a2f93774ca8af�H��H�����������€���������������� ���þTgclocals·d07d0dae6e5530f5726d10f502447b8a�H��H����������������������������þTgclocals·23e8278e2b69a3a75fa59b23c49ed6ad��������������þTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�������������þ&go.string.hdr." \t"� �� ������������������go.string." \t"���þgo.string." \t"��� ��þTgclocals·23e8278e2b69a3a75fa59b23c49ed6ad��������������þTgclocals·87d20ce1b58390b294df80b886db78bf�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·3f5c1f818fa7055d0400cecd34057162�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·3f5c1f818fa7055d0400cecd34057162�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·3f5c1f818fa7055d0400cecd34057162�������������þTgclocals·bade3c5f6d433f8d8fecc50019bf4c85� �� ��������������þTgclocals·5cbd57cf8f9b35eac9551b20a42afe1f� �� �������������þRgo.string.hdr."charset not supported: %q"� �� ������������������Jgo.string."charset not supported: %q"���þJgo.string."charset not supported: %q"�@��4charset not supported: %q��þTgclocals·e686e33109a1bc2792301626c7b401c5�(��(��� �������\�������þTgclocals·55cc6ee7528f0b48e5a6d9bfba36524a�(��(����������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·23e8278e2b69a3a75fa59b23c49ed6ad��������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·23e8278e2b69a3a75fa59b23c49ed6ad��������������þTgclocals·bf154057a417536b2b833668ad2a1a11�(��(������������� ����þTgclocals·55cc6ee7528f0b48e5a6d9bfba36524a�(��(����������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·23e8278e2b69a3a75fa59b23c49ed6ad��������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·23e8278e2b69a3a75fa59b23c49ed6ad��������������þ0:go.itab."".charsetError.error�����þTgclocals·d8fdd2a55187867c76648dc792366181� �� ��������������þTgclocals·d515b4d2ec11d0a8c27c2de7f0da3fef� �� ������ ���=����þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·359e1adf4794caae0441a32ee5b8d4b0�������������þ0""..gobytes.1�¢��¢ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789!#$%&'*+-/=?^_`{|}~�þVgo.string.hdr."mail: header not in message"� �� ������������������Ngo.string."mail: header not in message"���þNgo.string."mail: header not in message"�@��8mail: header not in message��þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þ0"".debug��type."".debugT���þ."".dateLayouts��0type.[]string���þ.,"".ErrHeaderNotPresent�� type.error���þ.""".rfc2047Decoder��*type.mime.WordDecoder���þ,"".atextChars��0type.[]uint8�0��������Q�������Q����������""..gobytes.1���þ""".statictmp_0041��€type.[8]string�à�������������������������������������������������������������������������������������������������������������@��"go.string." Jan "���€��$go.string." 15:04"���À��go.string." "���þ0"".initdone·��type.uint8���þ&"".debugT.Printf·f�������������� "".debugT.Printf���þ""".ReadMessage·f��������������"".ReadMessage���þ"".init.1·f��������������"".init.1���þ"".parseDate·f��������������"".parseDate���þ "".Header.Get·f��������������"".Header.Get���þ""".Header.Date·f��������������"".Header.Date���þ0"".Header.AddressList·f��������������*"".Header.AddressList���þ$"".ParseAddress·f��������������"".ParseAddress���þ,"".ParseAddressList·f��������������&"".ParseAddressList���þ8"".(*AddressParser).Parse·f��������������2"".(*AddressParser).Parse���þ@"".(*AddressParser).ParseList·f��������������:"".(*AddressParser).ParseList���þ."".(*Address).String·f��������������("".(*Address).String���þH"".(*addrParser).parseAddressList·f��������������B"".(*addrParser).parseAddressList���þ@"".(*addrParser).parseAddress·f��������������:"".(*addrParser).parseAddress���þF"".(*addrParser).consumeAddrSpec·f��������������@"".(*addrParser).consumeAddrSpec���þB"".(*addrParser).consumePhrase·f��������������<"".(*addrParser).consumePhrase���þN"".(*addrParser).consumeQuotedString·f��������������H"".(*addrParser).consumeQuotedString���þ>"".(*addrParser).consumeAtom·f��������������8"".(*addrParser).consumeAtom���þ6"".(*addrParser).consume·f��������������0"".(*addrParser).consume���þ:"".(*addrParser).skipSpace·f��������������4"".(*addrParser).skipSpace���þ0"".(*addrParser).peek·f��������������*"".(*addrParser).peek���þ2"".(*addrParser).empty·f��������������,"".(*addrParser).empty���þ."".(*addrParser).len·f��������������("".(*addrParser).len���þJ"".(*addrParser).decodeRFC2047Word·f��������������D"".(*addrParser).decodeRFC2047Word���þ0"".charsetError.Error·f��������������*"".charsetError.Error���þ"".isAtext·f��������������"".isAtext���þ"".isQtext·f��������������"".isQtext���þ""".quoteString·f��������������"".quoteString���þ"".isVchar·f��������������"".isVchar���þ"".isWSP·f��������������"".isWSP���þ "".glob.func1·f��������������"".glob.func1���þR"".(*addrParser).consumeAddrSpec.func1·f��������������L"".(*addrParser).consumeAddrSpec.func1���þ"".init·f��������������"".init���þ"runtime.gcbits.01����þ8go.string.hdr."*mail.debugT"� �� �������� ����������0go.string."*mail.debugT"���þ0go.string."*mail.debugT"� ��*mail.debugT��þ(go.string.hdr."mail"� �� ������������������ go.string."mail"���þ go.string."mail"���
mail��þ,go.string.hdr."debugT"� �� ������������������$go.string."debugT"���þ$go.string."debugT"���debugT��þ,go.string.hdr."Printf"� �� ������������������$go.string."Printf"���þ$go.string."Printf"���Printf��þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·c6134a2ac139b68c0737f8b03170e2ac��������� ����þ"runtime.gcbits.03����þ8go.string.hdr."interface {}"� �� �������� ����������0go.string."interface {}"���þ0go.string."interface {}"� ��interface {}��þ"type.interface {}�À��À��������������çW ������������������������������������������������������������������������� 0€� runtime.algarray���@��"runtime.gcbits.03���P��8go.string.hdr."interface {}"���p��4go.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.01���P��<go.string.hdr."[]interface {}"���p��8go.weak.type.*[]interface {}���€��"runtime.zerovalue�����"type.interface {}���þRgo.typelink.[]interface {} []interface {}��������������&type.[]interface {}���þvgo.string.hdr."func(*mail.debugT, string, ...interface {})"� �� ��������+����������ngo.string."func(*mail.debugT, string, ...interface {})"���þngo.string."func(*mail.debugT, string, ...interface {})"�`��Xfunc(*mail.debugT, string, ...interface {})��þ\type.func(*"".debugT, string, ...interface {})�°��°��������������ÚÁ·�3�����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��vgo.string.hdr."func(*mail.debugT, string, ...interface {})"���p��ngo.weak.type.*func(*"".debugT, string, ...interface {})���€��"runtime.zerovalue��� €�\type.func(*"".debugT, string, ...interface {})���а�\type.func(*"".debugT, string, ...interface {})���€��type.*"".debugT�����type.string��� ��&type.[]interface {}���þÂgo.typelink.func(*mail.debugT, string, ...interface {}) func(*"".debugT, string, ...interface {})��������������\type.func(*"".debugT, string, ...interface {})���þZgo.string.hdr."func(string, ...interface {})"� �� ������������������Rgo.string."func(string, ...interface {})"���þRgo.string."func(string, ...interface {})"�@��<func(string, ...interface {})��þDtype.func(string, ...interface {})� �� ��������������õµ@µ�3���������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Zgo.string.hdr."func(string, ...interface {})"���p��Vgo.weak.type.*func(string, ...interface {})���€��"runtime.zerovalue��� €�Dtype.func(string, ...interface {})���Р�Dtype.func(string, ...interface {})���€��type.string�����&type.[]interface {}���þŽgo.typelink.func(string, ...interface {}) func(string, ...interface {})��������������Dtype.func(string, ...interface {})���þtype.*"".debugT��Ð��Ð��������������bŒ—Ó�6����������������������������������������������������������������������������������������������������������������������������������������������0 � runtime.algarray���@��"runtime.gcbits.01���P��8go.string.hdr."*mail.debugT"���p��0go.weak.type.**"".debugT���€��"runtime.zerovalue�����type."".debugT���` �type.*"".debugT���Àð�type.*"".debugT���ð��,go.string.hdr."Printf"�����Dtype.func(string, ...interface {})��� ��\type.func(*"".debugT, string, ...interface {})���°��&"".(*debugT).Printf���À��&"".(*debugT).Printf���þruntime.gcbits.������þ6go.string.hdr."mail.debugT"� �� �������� ����������.go.string."mail.debugT"���þ.go.string."mail.debugT"� ��mail.debugT��þtgo.string.hdr."func(mail.debugT, string, ...interface {})"� �� ��������*����������lgo.string."func(mail.debugT, string, ...interface {})"���þlgo.string."func(mail.debugT, string, ...interface {})"�`��Vfunc(mail.debugT, string, ...interface {})��þZtype.func("".debugT, string, ...interface {})�°��°��������������ÐiÁõ�3�����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��tgo.string.hdr."func(mail.debugT, string, ...interface {})"���p��lgo.weak.type.*func("".debugT, string, ...interface {})���€��"runtime.zerovalue��� €�Ztype.func("".debugT, string, ...interface {})���а�Ztype.func("".debugT, string, ...interface {})���€��type."".debugT�����type.string��� ��&type.[]interface {}���þ¾go.typelink.func(mail.debugT, string, ...interface {}) func("".debugT, string, ...interface {})��������������Ztype.func("".debugT, string, ...interface {})���þ0go.string.hdr."net/mail"� �� ������������������(go.string."net/mail"���þ(go.string."net/mail"� ��net/mail��þ"go.importpath."".� �� ������������������(go.string."net/mail"���þtype."".debugT��À��À���������������ž¸·M���������������������������������������������������������������������������������������������������������������������������������������0@� runtime.algarray���@��runtime.gcbits.���P��6go.string.hdr."mail.debugT"���p��type.*"".debugT���€��"runtime.zerovalue���`�type."".debugT�����,go.string.hdr."debugT"��� ��"go.importpath."".���°à�type."".debugT���à��,go.string.hdr."Printf"���€��Dtype.func(string, ...interface {})�����Ztype.func("".debugT, string, ...interface {})��� ��&"".(*debugT).Printf���°�� "".debugT.Printf���þ.go.string.hdr."[]uint8"� �� ������������������&go.string."[]uint8"���þ&go.string."[]uint8"���[]uint8��þtype.[]uint8� �� ��������������ß~.8��������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��.go.string.hdr."[]uint8"���p��*go.weak.type.*[]uint8���€��"runtime.zerovalue�����type.uint8���þ6go.typelink.[]uint8 []uint8��������������type.[]uint8���þ0go.string.hdr."[]string"� �� ������������������(go.string."[]string"���þ(go.string."[]string"� ��[]string��þtype.[]string� �� ��������������Ó¨ó
��������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��0go.string.hdr."[]string"���p��,go.weak.type.*[]string���€��"runtime.zerovalue�����type.string���þ:go.typelink.[]string []string��������������type.[]string���þ0go.string.hdr."[8]uint8"� �� ������������������(go.string."[8]uint8"���þ(go.string."[8]uint8"� ��[8]uint8��þtype.[8]uint8�À��À���������������>ù0´�‘�����������������������������������������������������������������������0 � runtime.algarray���@��runtime.gcbits.���P��0go.string.hdr."[8]uint8"���p��,go.weak.type.*[8]uint8���€��"runtime.zerovalue�����type.uint8��� ��type.[]uint8���þ:go.typelink.[8]uint8 [8]uint8��������������type.[8]uint8���þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�������������þTgclocals·a8eabfc4a4514ed6b3b0c61e9680e440��������������þTgclocals·3bb21ca8fe1d99a3e492463bd711418a�������������þ0type..hashfunc.[8]string��������������(type..hash.[8]string���þ,type..eqfunc.[8]string��������������$type..eq.[8]string���þ&type..alg.[8]string� �� �������������������0type..hashfunc.[8]string�����,type..eqfunc.[8]string���þ&runtime.gcbits.5555���UU�þ2go.string.hdr."[8]string"� �� �������� ����������*go.string."[8]string"���þ*go.string."[8]string"� ��[8]string��þtype.[8]string�À��À€�������x�������USŒ>������������������������������������������������������������������������0��&type..alg.[8]string���@��&runtime.gcbits.5555���P��2go.string.hdr."[8]string"���p��.go.weak.type.*[8]string���€��"runtime.zerovalue�����type.string��� ��type.[]string���þ>go.typelink.[8]string [8]string��������������type.[8]string���þ4go.string.hdr."[][]string"� �� ��������
����������,go.string."[][]string"���þ,go.string."[][]string"� ��[][]string��þtype.[][]string� �� ��������������¼:è��������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��4go.string.hdr."[][]string"���p��0go.weak.type.*[][]string���€��"runtime.zerovalue�����type.[]string���þBgo.typelink.[][]string [][]string��������������type.[][]string���þ*runtime.gcbits.499224���I’$�þ6go.string.hdr."[8][]string"� �� �������� ����������.go.string."[8][]string"���þ.go.string."[8][]string"� ��[8][]string��þ type.[8][]string�À��ÀÀ�������°�������½e³r������������������������������������������������������������������������0à� runtime.algarray���@��*runtime.gcbits.499224���P��6go.string.hdr."[8][]string"���p��2go.weak.type.*[8][]string���€��"runtime.zerovalue�����type.[]string��� ��type.[][]string���þFgo.typelink.[8][]string [8][]string�������������� type.[8][]string���þVgo.string.hdr."*map.bucket[string][]string"� �� ������������������Ngo.string."*map.bucket[string][]string"���þNgo.string."*map.bucket[string][]string"�@��8*map.bucket[string][]string��þ@type.*map.bucket[string][]string� �� ��������������ÄY¬R�6�������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��Vgo.string.hdr."*map.bucket[string][]string"���p��Rgo.weak.type.**map.bucket[string][]string���€��"runtime.zerovalue�����>type.map.bucket[string][]string���þ6runtime.gcbits.aaaa92244902� �� ªª’$I�þTgo.string.hdr."map.bucket[string][]string"� �� ������������������Lgo.string."map.bucket[string][]string"���þLgo.string."map.bucket[string][]string"�@��6map.bucket[string][]string��þ.go.string.hdr."topbits"� �� ������������������&go.string."topbits"���þ&go.string."topbits"���topbits��þ(go.string.hdr."keys"� �� ������������������ go.string."keys"���þ go.string."keys"���
keys��þ,go.string.hdr."values"� �� ������������������$go.string."values"���þ$go.string."values"���values��þ0go.string.hdr."overflow"� �� ������������������(go.string."overflow"���þ(go.string."overflow"� ��overflow��þ>type.map.bucket[string][]string�€��€P������P������úTJ¹��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ˆ���������������������������������������H������0à� runtime.algarray���@��6runtime.gcbits.aaaa92244902���P��Tgo.string.hdr."map.bucket[string][]string"���p��Pgo.weak.type.*map.bucket[string][]string���€��"runtime.zerovalue���À�>type.map.bucket[string][]string���À��.go.string.hdr."topbits"���à��type.[8]uint8�����(go.string.hdr."keys"���°��type.[8]string���à��,go.string.hdr."values"���€�� type.[8][]string���°��0go.string.hdr."overflow"���Ð��@type.*map.bucket[string][]string���þ"runtime.gcbits.2c���,�þNgo.string.hdr."map.hdr[string][]string"� �� ������������������Fgo.string."map.hdr[string][]string"���þFgo.string."map.hdr[string][]string"�0��0map.hdr[string][]string��þ*go.string.hdr."count"� �� ������������������"go.string."count"���þ"go.string."count"��� count��þ*go.string.hdr."flags"� �� ������������������"go.string."flags"���þ"go.string."flags"��� flags��þ"go.string.hdr."B"� �� ������������������go.string."B"���þgo.string."B"���B��þ*go.string.hdr."hash0"� �� ������������������"go.string."hash0"���þ"go.string."hash0"��� hash0��þ.go.string.hdr."buckets"� �� ������������������&go.string."buckets"���þ&go.string."buckets"���buckets��þ4go.string.hdr."oldbuckets"� �� ��������
����������,go.string."oldbuckets"���þ,go.string."oldbuckets"� ��oldbuckets��þ2go.string.hdr."nevacuate"� �� �������� ����������*go.string."nevacuate"���þ*go.string."nevacuate"� ��nevacuate��þ8type.map.hdr[string][]string�À��À0�������0�������–‹˜�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ��������������������������������������� ��������������������������������������������������������������������������������������������������������������������� ���������������������������������������(�������,0à� runtime.algarray���@��"runtime.gcbits.2c���P��Ngo.string.hdr."map.hdr[string][]string"���p��Jgo.weak.type.*map.hdr[string][]string���€��"runtime.zerovalue���À�8type.map.hdr[string][]string���À��*go.string.hdr."count"���à��type.int�����*go.string.hdr."flags"���°��type.uint8���à��"go.string.hdr."B"���€��type.uint8���°��*go.string.hdr."hash0"���Ð��type.uint32���€��.go.string.hdr."buckets"��� ��@type.*map.bucket[string][]string���Ð��4go.string.hdr."oldbuckets"���ð��@type.*map.bucket[string][]string��� ��2go.string.hdr."nevacuate"���À��type.uintptr���ð��0go.string.hdr."overflow"�����&type.unsafe.Pointer���þ8go.string.hdr."*mail.Header"� �� �������� ����������0go.string."*mail.Header"���þ0go.string."*mail.Header"� ��*mail.Header��þ,go.string.hdr."Header"� �� ������������������$go.string."Header"���þ$go.string."Header"���Header��þ&go.string.hdr."Get"� �� ������������������go.string."Get"���þgo.string."Get"���Get��þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·1347047f6245a35b91e9a4f213167d52�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·6432f8c6a0d23fa7bee6c5d96f21a92a�������������þ6go.string.hdr."AddressList"� �� �������� ����������.go.string."AddressList"���þ.go.string."AddressList"� ��AddressList��þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·6d46c0650eba7dbebc0db316e0e0cf3b�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�������������þTgclocals·a8eabfc4a4514ed6b3b0c61e9680e440��������������þTgclocals·3bb21ca8fe1d99a3e492463bd711418a�������������þ2type..hashfunc."".Address��������������*type..hash."".Address���þ.type..eqfunc."".Address��������������&type..eq."".Address���þ(type..alg."".Address� �� �������������������2type..hashfunc."".Address�����.type..eqfunc."".Address���þ"runtime.gcbits.05����þ8go.string.hdr."mail.Address"� �� �������� ����������0go.string."mail.Address"���þ0go.string."mail.Address"� ��mail.Address��þ(go.string.hdr."Name"� �� ������������������ go.string."Name"���þ go.string."Name"���
Name��þ.go.string.hdr."Address"� �� ������������������&go.string."Address"���þ&go.string."Address"���Address��þtype."".Address��°��° ��������������õDæJ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������0��(type..alg."".Address���@��"runtime.gcbits.05���P��8go.string.hdr."mail.Address"���p�� type.*"".Address���€��"runtime.zerovalue���À�type."".Address���À��(go.string.hdr."Name"���à��type.string�����.go.string.hdr."Address"���°��type.string���`à�type."".Address���à��.go.string.hdr."Address"���ð��"go.importpath."".���€°�type."".Address���þ:go.string.hdr."*mail.Address"� �� �������� ����������2go.string."*mail.Address"���þ2go.string."*mail.Address"� ��*mail.Address��þTgo.string.hdr."func(*mail.Address) string"� �� ������������������Lgo.string."func(*mail.Address) string"���þLgo.string."func(*mail.Address) string"�@��6func(*mail.Address) string��þ:type.func(*"".Address) string� �� ��������������mc{–�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Tgo.string.hdr."func(*mail.Address) string"���p��Lgo.weak.type.*func(*"".Address) string���€��"runtime.zerovalue��� €�:type.func(*"".Address) string���А�:type.func(*"".Address) string���€�� type.*"".Address�����type.string���þ~go.typelink.func(*mail.Address) string func(*"".Address) string��������������:type.func(*"".Address) string���þ,go.string.hdr."String"� �� ������������������$go.string."String"���þ$go.string."String"���String��þ:go.string.hdr."func() string"� �� �������� ����������2go.string."func() string"���þ2go.string."func() string"� ��func() string��þ$type.func() string�����������������¢mË�3��������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��:go.string.hdr."func() string"���p��6go.weak.type.*func() string���€��"runtime.zerovalue��� €�$type.func() string���Ѐ�$type.func() string���€��type.string���þNgo.typelink.func() string func() string��������������$type.func() string���þ type.*"".Address��Ð��Ð��������������núð�6����������������������������������������������������������������������������������������������������������������������������������������������0 � runtime.algarray���@��"runtime.gcbits.01���P��:go.string.hdr."*mail.Address"���p��2go.weak.type.**"".Address���€��"runtime.zerovalue�����type."".Address���` � type.*"".Address���Àð� type.*"".Address���ð��,go.string.hdr."String"�����$type.func() string��� ��:type.func(*"".Address) string���°��("".(*Address).String���À��("".(*Address).String���þ>go.string.hdr."[]*mail.Address"� �� ������������������6go.string."[]*mail.Address"���þ6go.string."[]*mail.Address"� �� []*mail.Address��þ$type.[]*"".Address� �� ��������������æ¿.‚��������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��>go.string.hdr."[]*mail.Address"���p��6go.weak.type.*[]*"".Address���€��"runtime.zerovalue����� type.*"".Address���þRgo.typelink.[]*mail.Address []*"".Address��������������$type.[]*"".Address���þ†go.string.hdr."func(*mail.Header, string) ([]*mail.Address, error)"� �� ��������3����������~go.string."func(*mail.Header, string) ([]*mail.Address, error)"���þ~go.string."func(*mail.Header, string) ([]*mail.Address, error)"�p��hfunc(*mail.Header, string) ([]*mail.Address, error)��þhtype.func(*"".Header, string) ([]*"".Address, error)�À��À��������������~VJX�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��†go.string.hdr."func(*mail.Header, string) ([]*mail.Address, error)"���p��zgo.weak.type.*func(*"".Header, string) ([]*"".Address, error)���€��"runtime.zerovalue��� €�htype.func(*"".Header, string) ([]*"".Address, error)���Р�htype.func(*"".Header, string) ([]*"".Address, error)���€��type.*"".Header�����type.string��� ��$type.[]*"".Address���°��type.error���þÞgo.typelink.func(*mail.Header, string) ([]*mail.Address, error) func(*"".Header, string) ([]*"".Address, error)��������������htype.func(*"".Header, string) ([]*"".Address, error)���þjgo.string.hdr."func(*mail.Header) (time.Time, error)"� �� ��������%����������bgo.string."func(*mail.Header) (time.Time, error)"���þbgo.string."func(*mail.Header) (time.Time, error)"�P��Lfunc(*mail.Header) (time.Time, error)��þPtype.func(*"".Header) (time.Time, error)�°��°��������������b™¬ž�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��jgo.string.hdr."func(*mail.Header) (time.Time, error)"���p��bgo.weak.type.*func(*"".Header) (time.Time, error)���€��"runtime.zerovalue��� €�Ptype.func(*"".Header) (time.Time, error)���А�Ptype.func(*"".Header) (time.Time, error)���€��type.*"".Header�����type.time.Time��� ��type.error���þªgo.typelink.func(*mail.Header) (time.Time, error) func(*"".Header) (time.Time, error)��������������Ptype.func(*"".Header) (time.Time, error)���þbgo.string.hdr."func(*mail.Header, string) string"� �� ��������!����������Zgo.string."func(*mail.Header, string) string"���þZgo.string."func(*mail.Header, string) string"�P��Dfunc(*mail.Header, string) string��þHtype.func(*"".Header, string) string�°��°��������������Füe�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��bgo.string.hdr."func(*mail.Header, string) string"���p��Zgo.weak.type.*func(*"".Header, string) string���€��"runtime.zerovalue��� €�Htype.func(*"".Header, string) string���Р�Htype.func(*"".Header, string) string���€��type.*"".Header�����type.string��� ��type.string���þšgo.typelink.func(*mail.Header, string) string func(*"".Header, string) string��������������Htype.func(*"".Header, string) string���þjgo.string.hdr."func(string) ([]*mail.Address, error)"� �� ��������%����������bgo.string."func(string) ([]*mail.Address, error)"���þbgo.string."func(string) ([]*mail.Address, error)"�P��Lfunc(string) ([]*mail.Address, error)��þPtype.func(string) ([]*"".Address, error)�°��°��������������AM)•�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��jgo.string.hdr."func(string) ([]*mail.Address, error)"���p��bgo.weak.type.*func(string) ([]*"".Address, error)���€��"runtime.zerovalue��� €�Ptype.func(string) ([]*"".Address, error)���А�Ptype.func(string) ([]*"".Address, error)���€��type.string�����$type.[]*"".Address��� ��type.error���þªgo.typelink.func(string) ([]*mail.Address, error) func(string) ([]*"".Address, error)��������������Ptype.func(string) ([]*"".Address, error)���þRgo.string.hdr."func() (time.Time, error)"� �� ������������������Jgo.string."func() (time.Time, error)"���þJgo.string."func() (time.Time, error)"�@��4func() (time.Time, error)��þ<type.func() (time.Time, error)� �� ��������������ÖȒ›�3����������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Rgo.string.hdr."func() (time.Time, error)"���p��Ngo.weak.type.*func() (time.Time, error)���€��"runtime.zerovalue��� €�<type.func() (time.Time, error)���Ѐ�<type.func() (time.Time, error)���€��type.time.Time�����type.error���þ~go.typelink.func() (time.Time, error) func() (time.Time, error)��������������<type.func() (time.Time, error)���þFgo.string.hdr."func(string) string"� �� ������������������>go.string."func(string) string"���þ>go.string."func(string) string"�0��(func(string) string��þ0type.func(string) string� �� ��������������Mü¨ç�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Fgo.string.hdr."func(string) string"���p��Bgo.weak.type.*func(string) string���€��"runtime.zerovalue��� €�0type.func(string) string���А�0type.func(string) string���€��type.string�����type.string���þfgo.typelink.func(string) string func(string) string��������������0type.func(string) string���þtype.*"".Header������������������BÅ@�6����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������.0 � runtime.algarray���@��"runtime.gcbits.01���P��8go.string.hdr."*mail.Header"���p��0go.weak.type.**"".Header���€��"runtime.zerovalue�����type."".Header���` �type.*"".Header���Àð�type.*"".Header���ð��6go.string.hdr."AddressList"�����Ptype.func(string) ([]*"".Address, error)��� ��htype.func(*"".Header, string) ([]*"".Address, error)���°��0"".(*Header).AddressList���À��0"".(*Header).AddressList���Ð��(go.string.hdr."Date"���ð��<type.func() (time.Time, error)���€��Ptype.func(*"".Header) (time.Time, error)�����""".(*Header).Date��� ��""".(*Header).Date���°��&go.string.hdr."Get"���Ð��0type.func(string) string���à��Htype.func(*"".Header, string) string���ð�� "".(*Header).Get���€�� "".(*Header).Get���þ6go.string.hdr."mail.Header"� �� �������� ����������.go.string."mail.Header"���þ.go.string."mail.Header"� ��mail.Header��þ„go.string.hdr."func(mail.Header, string) ([]*mail.Address, error)"� �� ��������2����������|go.string."func(mail.Header, string) ([]*mail.Address, error)"���þ|go.string."func(mail.Header, string) ([]*mail.Address, error)"�p��ffunc(mail.Header, string) ([]*mail.Address, error)��þftype.func("".Header, string) ([]*"".Address, error)�À��À��������������s)3‡�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��„go.string.hdr."func(mail.Header, string) ([]*mail.Address, error)"���p��xgo.weak.type.*func("".Header, string) ([]*"".Address, error)���€��"runtime.zerovalue��� €�ftype.func("".Header, string) ([]*"".Address, error)���Р�ftype.func("".Header, string) ([]*"".Address, error)���€��type."".Header�����type.string��� ��$type.[]*"".Address���°��type.error���þÚgo.typelink.func(mail.Header, string) ([]*mail.Address, error) func("".Header, string) ([]*"".Address, error)��������������ftype.func("".Header, string) ([]*"".Address, error)���þhgo.string.hdr."func(mail.Header) (time.Time, error)"� �� ��������$����������`go.string."func(mail.Header) (time.Time, error)"���þ`go.string."func(mail.Header) (time.Time, error)"�P��Jfunc(mail.Header) (time.Time, error)��þNtype.func("".Header) (time.Time, error)�°��°��������������Ò±2o�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��hgo.string.hdr."func(mail.Header) (time.Time, error)"���p��`go.weak.type.*func("".Header) (time.Time, error)���€��"runtime.zerovalue��� €�Ntype.func("".Header) (time.Time, error)���А�Ntype.func("".Header) (time.Time, error)���€��type."".Header�����type.time.Time��� ��type.error���þ¦go.typelink.func(mail.Header) (time.Time, error) func("".Header) (time.Time, error)��������������Ntype.func("".Header) (time.Time, error)���þ`go.string.hdr."func(mail.Header, string) string"� �� �������� ����������Xgo.string."func(mail.Header, string) string"���þXgo.string."func(mail.Header, string) string"�P��Bfunc(mail.Header, string) string��þFtype.func("".Header, string) string�°��°��������������×r4+�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��`go.string.hdr."func(mail.Header, string) string"���p��Xgo.weak.type.*func("".Header, string) string���€��"runtime.zerovalue��� €�Ftype.func("".Header, string) string���Р�Ftype.func("".Header, string) string���€��type."".Header�����type.string��� ��type.string���þ–go.typelink.func(mail.Header, string) string func("".Header, string) string��������������Ftype.func("".Header, string) string���þtype."".Header��Ð��Ð��������������ž,ÿ,�5����������������������������������������������������������������������������������P���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������80€� runtime.algarray���@��"runtime.gcbits.01���P��6go.string.hdr."mail.Header"���p��type.*"".Header���€��"runtime.zerovalue�����type.string��� ��type.[]string���°��>type.map.bucket[string][]string���À��8type.map.hdr[string][]string���`à�type."".Header���à��,go.string.hdr."Header"���ð��"go.importpath."".���€°�type."".Header���°��6go.string.hdr."AddressList"���Ð��Ptype.func(string) ([]*"".Address, error)���à��ftype.func("".Header, string) ([]*"".Address, error)���ð��*"".Header.AddressList���€��*"".Header.AddressList�����(go.string.hdr."Date"���°��<type.func() (time.Time, error)���À��Ntype.func("".Header) (time.Time, error)���Ð��"".Header.Date���à��"".Header.Date���ð��&go.string.hdr."Get"�����0type.func(string) string��� ��Ftype.func("".Header, string) string���°��"".Header.Get���À��"".Header.Get���þ:go.string.hdr."*mail.Message"� �� �������� ����������2go.string."*mail.Message"���þ2go.string."*mail.Message"� ��*mail.Message��þ type.*"".Message�� �� ��������������≥�6�������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��:go.string.hdr."*mail.Message"���p��2go.weak.type.**"".Message���€��"runtime.zerovalue�����type."".Message���þ"runtime.gcbits.07����þ8go.string.hdr."mail.Message"� �� �������� ����������0go.string."mail.Message"���þ0go.string."mail.Message"� ��mail.Message��þ(go.string.hdr."Body"� �� ������������������ go.string."Body"���þ go.string."Body"���
Body��þ.go.string.hdr."Message"� �� ������������������&go.string."Message"���þ&go.string."Message"���Message��þtype."".Message��°��°��������������´o±����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������0à� runtime.algarray���@��"runtime.gcbits.07���P��8go.string.hdr."mail.Message"���p�� type.*"".Message���€��"runtime.zerovalue���À�type."".Message���À��,go.string.hdr."Header"���à��type."".Header�����(go.string.hdr."Body"���°��type.io.Reader���`à�type."".Message���à��.go.string.hdr."Message"���ð��"go.importpath."".���€°�type."".Message���þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�������������þTgclocals·a8eabfc4a4514ed6b3b0c61e9680e440��������������þTgclocals·3bb21ca8fe1d99a3e492463bd711418a�������������þ0type..hashfunc.[2]string��������������(type..hash.[2]string���þ,type..eqfunc.[2]string��������������$type..eq.[2]string���þ&type..alg.[2]string� �� �������������������0type..hashfunc.[2]string�����,type..eqfunc.[2]string���þ2go.string.hdr."[2]string"� �� �������� ����������*go.string."[2]string"���þ*go.string."[2]string"� ��[2]string��þtype.[2]string�À��À ��������������PXåé������������������������������������������������������������������������0��&type..alg.[2]string���@��"runtime.gcbits.05���P��2go.string.hdr."[2]string"���p��.go.weak.type.*[2]string���€��"runtime.zerovalue�����type.string��� ��type.[]string���þ>go.typelink.[2]string [2]string��������������type.[2]string���þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�������������þTgclocals·a8eabfc4a4514ed6b3b0c61e9680e440��������������þTgclocals·3bb21ca8fe1d99a3e492463bd711418a�������������þ0type..hashfunc.[3]string��������������(type..hash.[3]string���þ,type..eqfunc.[3]string��������������$type..eq.[3]string���þ&type..alg.[3]string� �� �������������������0type..hashfunc.[3]string�����,type..eqfunc.[3]string���þ"runtime.gcbits.15����þ2go.string.hdr."[3]string"� �� �������� ����������*go.string."[3]string"���þ*go.string."[3]string"� ��[3]string��þtype.[3]string�À��À0�������(�������CÙiB������������������������������������������������������������������������0��&type..alg.[3]string���@��"runtime.gcbits.15���P��2go.string.hdr."[3]string"���p��.go.weak.type.*[3]string���€��"runtime.zerovalue�����type.string��� ��type.[]string���þ>go.typelink.[3]string [3]string��������������type.[3]string���þ4go.string.hdr."*[8]string"� �� ��������
����������,go.string."*[8]string"���þ,go.string."*[8]string"� ��*[8]string��þtype.*[8]string� �� ��������������­”o�6�������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��4go.string.hdr."*[8]string"���p��0go.weak.type.**[8]string���€��"runtime.zerovalue�����type.[8]string���þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�������������þTgclocals·a8eabfc4a4514ed6b3b0c61e9680e440��������������þTgclocals·3bb21ca8fe1d99a3e492463bd711418a�������������þ8type..hashfunc."".addrParser��������������0type..hash."".addrParser���þ4type..eqfunc."".addrParser��������������,type..eq."".addrParser���þ.type..alg."".addrParser� �� �������������������8type..hashfunc."".addrParser�����4type..eqfunc."".addrParser���þ>go.string.hdr."mail.addrParser"� �� ������������������6go.string."mail.addrParser"���þ6go.string."mail.addrParser"� �� mail.addrParser��þ"go.string.hdr."s"� �� ������������������go.string."s"���þgo.string."s"���s��þ&go.string.hdr."dec"� �� ������������������go.string."dec"���þgo.string."dec"���dec��þ4go.string.hdr."addrParser"� �� ��������
����������,go.string."addrParser"���þ,go.string."addrParser"� ��addrParser��þ$type."".addrParser��°��°��������������Hcý���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� 0��.type..alg."".addrParser���@��"runtime.gcbits.05���P��>go.string.hdr."mail.addrParser"���p��&type.*"".addrParser���€��"runtime.zerovalue���À�$type."".addrParser���À��"go.string.hdr."s"���Ð��"go.importpath."".���à��type.string�����&go.string.hdr."dec"��� ��"go.importpath."".���°��,type.*mime.WordDecoder���`à�$type."".addrParser���à��4go.string.hdr."addrParser"���ð��"go.importpath."".���€°�$type."".addrParser���þ@go.string.hdr."*mail.addrParser"� �� ������������������8go.string."*mail.addrParser"���þ8go.string."*mail.addrParser"�0��"*mail.addrParser��þdgo.string.hdr."func(*mail.addrParser, uint8) bool"� �� ��������"����������\go.string."func(*mail.addrParser, uint8) bool"���þ\go.string."func(*mail.addrParser, uint8) bool"�P��Ffunc(*mail.addrParser, uint8) bool��þJtype.func(*"".addrParser, uint8) bool�°��°��������������mÙpÛ�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��dgo.string.hdr."func(*mail.addrParser, uint8) bool"���p��\go.weak.type.*func(*"".addrParser, uint8) bool���€��"runtime.zerovalue��� €�Jtype.func(*"".addrParser, uint8) bool���Р�Jtype.func(*"".addrParser, uint8) bool���€��&type.*"".addrParser�����type.uint8��� ��type.bool���þžgo.typelink.func(*mail.addrParser, uint8) bool func(*"".addrParser, uint8) bool��������������Jtype.func(*"".addrParser, uint8) bool���þlgo.string.hdr."func(*mail.addrParser) (string, error)"� �� ��������&����������dgo.string."func(*mail.addrParser) (string, error)"���þdgo.string."func(*mail.addrParser) (string, error)"�P��Nfunc(*mail.addrParser) (string, error)��þRtype.func(*"".addrParser) (string, error)�°��°��������������ä’9ª�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��lgo.string.hdr."func(*mail.addrParser) (string, error)"���p��dgo.weak.type.*func(*"".addrParser) (string, error)���€��"runtime.zerovalue��� €�Rtype.func(*"".addrParser) (string, error)���А�Rtype.func(*"".addrParser) (string, error)���€��&type.*"".addrParser�����type.string��� ��type.error���þ®go.typelink.func(*mail.addrParser) (string, error) func(*"".addrParser) (string, error)��������������Rtype.func(*"".addrParser) (string, error)���þ„go.string.hdr."func(*mail.addrParser, bool, bool) (string, error)"� �� ��������2����������|go.string."func(*mail.addrParser, bool, bool) (string, error)"���þ|go.string."func(*mail.addrParser, bool, bool) (string, error)"�p��ffunc(*mail.addrParser, bool, bool) (string, error)��þjtype.func(*"".addrParser, bool, bool) (string, error)�Ð��Ð�������������� ”¥�3��������������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��„go.string.hdr."func(*mail.addrParser, bool, bool) (string, error)"���p��|go.weak.type.*func(*"".addrParser, bool, bool) (string, error)���€��"runtime.zerovalue��� €�jtype.func(*"".addrParser, bool, bool) (string, error)���а�jtype.func(*"".addrParser, bool, bool) (string, error)���€��&type.*"".addrParser�����type.bool��� ��type.bool���°��type.string���À��type.error���þÞgo.typelink.func(*mail.addrParser, bool, bool) (string, error) func(*"".addrParser, bool, bool) (string, error)��������������jtype.func(*"".addrParser, bool, bool) (string, error)���þ|go.string.hdr."func(*mail.addrParser, string) (string, error)"� �� ��������.����������tgo.string."func(*mail.addrParser, string) (string, error)"���þtgo.string."func(*mail.addrParser, string) (string, error)"�`��^func(*mail.addrParser, string) (string, error)��þbtype.func(*"".addrParser, string) (string, error)�À��À��������������Àׯ&�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��|go.string.hdr."func(*mail.addrParser, string) (string, error)"���p��tgo.weak.type.*func(*"".addrParser, string) (string, error)���€��"runtime.zerovalue��� €�btype.func(*"".addrParser, string) (string, error)���Р�btype.func(*"".addrParser, string) (string, error)���€��&type.*"".addrParser�����type.string��� ��type.string���°��type.error���þÎgo.typelink.func(*mail.addrParser, string) (string, error) func(*"".addrParser, string) (string, error)��������������btype.func(*"".addrParser, string) (string, error)���þVgo.string.hdr."func(*mail.addrParser) bool"� �� ������������������Ngo.string."func(*mail.addrParser) bool"���þNgo.string."func(*mail.addrParser) bool"�@��8func(*mail.addrParser) bool��þ<type.func(*"".addrParser) bool� �� ��������������Ÿ`^�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Vgo.string.hdr."func(*mail.addrParser) bool"���p��Ngo.weak.type.*func(*"".addrParser) bool���€��"runtime.zerovalue��� €�<type.func(*"".addrParser) bool���А�<type.func(*"".addrParser) bool���€��&type.*"".addrParser�����type.bool���þ‚go.typelink.func(*mail.addrParser) bool func(*"".addrParser) bool��������������<type.func(*"".addrParser) bool���þTgo.string.hdr."func(*mail.addrParser) int"� �� ������������������Lgo.string."func(*mail.addrParser) int"���þLgo.string."func(*mail.addrParser) int"�@��6func(*mail.addrParser) int��þ:type.func(*"".addrParser) int� �� ��������������Ž”Ž�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Tgo.string.hdr."func(*mail.addrParser) int"���p��Lgo.weak.type.*func(*"".addrParser) int���€��"runtime.zerovalue��� €�:type.func(*"".addrParser) int���А�:type.func(*"".addrParser) int���€��&type.*"".addrParser�����type.int���þ~go.typelink.func(*mail.addrParser) int func(*"".addrParser) int��������������:type.func(*"".addrParser) int���þzgo.string.hdr."func(*mail.addrParser) (*mail.Address, error)"� �� ��������-����������rgo.string."func(*mail.addrParser) (*mail.Address, error)"���þrgo.string."func(*mail.addrParser) (*mail.Address, error)"�`��\func(*mail.addrParser) (*mail.Address, error)��þ\type.func(*"".addrParser) (*"".Address, error)�°��°��������������¹úvÿ�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��zgo.string.hdr."func(*mail.addrParser) (*mail.Address, error)"���p��ngo.weak.type.*func(*"".addrParser) (*"".Address, error)���€��"runtime.zerovalue��� €�\type.func(*"".addrParser) (*"".Address, error)���А�\type.func(*"".addrParser) (*"".Address, error)���€��&type.*"".addrParser����� type.*"".Address��� ��type.error���þÆgo.typelink.func(*mail.addrParser) (*mail.Address, error) func(*"".addrParser) (*"".Address, error)��������������\type.func(*"".addrParser) (*"".Address, error)���þ~go.string.hdr."func(*mail.addrParser) ([]*mail.Address, error)"� �� ��������/����������vgo.string."func(*mail.addrParser) ([]*mail.Address, error)"���þvgo.string."func(*mail.addrParser) ([]*mail.Address, error)"�`��`func(*mail.addrParser) ([]*mail.Address, error)��þ`type.func(*"".addrParser) ([]*"".Address, error)�°��°��������������È«»_�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��~go.string.hdr."func(*mail.addrParser) ([]*mail.Address, error)"���p��rgo.weak.type.*func(*"".addrParser) ([]*"".Address, error)���€��"runtime.zerovalue��� €�`type.func(*"".addrParser) ([]*"".Address, error)���А�`type.func(*"".addrParser) ([]*"".Address, error)���€��&type.*"".addrParser�����$type.[]*"".Address��� ��type.error���þÎgo.typelink.func(*mail.addrParser) ([]*mail.Address, error) func(*"".addrParser) ([]*"".Address, error)��������������`type.func(*"".addrParser) ([]*"".Address, error)���þXgo.string.hdr."func(*mail.addrParser) uint8"� �� ������������������Pgo.string."func(*mail.addrParser) uint8"���þPgo.string."func(*mail.addrParser) uint8"�@��:func(*mail.addrParser) uint8��þ>type.func(*"".addrParser) uint8� �� ��������������¹ÀgC�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Xgo.string.hdr."func(*mail.addrParser) uint8"���p��Pgo.weak.type.*func(*"".addrParser) uint8���€��"runtime.zerovalue��� €�>type.func(*"".addrParser) uint8���А�>type.func(*"".addrParser) uint8���€��&type.*"".addrParser�����type.uint8���þ†go.typelink.func(*mail.addrParser) uint8 func(*"".addrParser) uint8��������������>type.func(*"".addrParser) uint8���þLgo.string.hdr."func(*mail.addrParser)"� �� ������������������Dgo.string."func(*mail.addrParser)"���þDgo.string."func(*mail.addrParser)"�0��.func(*mail.addrParser)��þ2type.func(*"".addrParser)�����������������‘ m�3��������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Lgo.string.hdr."func(*mail.addrParser)"���p��Dgo.weak.type.*func(*"".addrParser)���€��"runtime.zerovalue��� €�2type.func(*"".addrParser)���А�2type.func(*"".addrParser)���€��&type.*"".addrParser���þngo.typelink.func(*mail.addrParser) func(*"".addrParser)��������������2type.func(*"".addrParser)���þ.go.string.hdr."consume"� �� ������������������&go.string."consume"���þ&go.string."consume"���consume��þ@go.string.hdr."func(uint8) bool"� �� ������������������8go.string."func(uint8) bool"���þ8go.string."func(uint8) bool"�0��"func(uint8) bool��þ*type.func(uint8) bool� �� ��������������Gu�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��@go.string.hdr."func(uint8) bool"���p��<go.weak.type.*func(uint8) bool���€��"runtime.zerovalue��� €�*type.func(uint8) bool���А�*type.func(uint8) bool���€��type.uint8�����type.bool���þZgo.typelink.func(uint8) bool func(uint8) bool��������������*type.func(uint8) bool���þ>go.string.hdr."consumeAddrSpec"� �� ������������������6go.string."consumeAddrSpec"���þ6go.string."consumeAddrSpec"� �� consumeAddrSpec��þLgo.string.hdr."func() (string, error)"� �� ������������������Dgo.string."func() (string, error)"���þDgo.string."func() (string, error)"�0��.func() (string, error)��þ6type.func() (string, error)� �� ��������������¯±u¦�3����������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Lgo.string.hdr."func() (string, error)"���p��Hgo.weak.type.*func() (string, error)���€��"runtime.zerovalue��� €�6type.func() (string, error)���Ѐ�6type.func() (string, error)���€��type.string�����type.error���þrgo.typelink.func() (string, error) func() (string, error)��������������6type.func() (string, error)���þ6go.string.hdr."consumeAtom"� �� �������� ����������.go.string."consumeAtom"���þ.go.string."consumeAtom"� ��consumeAtom��þ`go.string.hdr."func(bool, bool) (string, error)"� �� �������� ����������Xgo.string."func(bool, bool) (string, error)"���þXgo.string."func(bool, bool) (string, error)"�P��Bfunc(bool, bool) (string, error)��þJtype.func(bool, bool) (string, error)�À��À��������������„å-�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��`go.string.hdr."func(bool, bool) (string, error)"���p��\go.weak.type.*func(bool, bool) (string, error)���€��"runtime.zerovalue��� €�Jtype.func(bool, bool) (string, error)���Р�Jtype.func(bool, bool) (string, error)���€��type.bool�����type.bool��� ��type.string���°��type.error���þšgo.typelink.func(bool, bool) (string, error) func(bool, bool) (string, error)��������������Jtype.func(bool, bool) (string, error)���þ:go.string.hdr."consumePhrase"� �� �������� ����������2go.string."consumePhrase"���þ2go.string."consumePhrase"� ��consumePhrase��þFgo.string.hdr."consumeQuotedString"� �� ������������������>go.string."consumeQuotedString"���þ>go.string."consumeQuotedString"�0��(consumeQuotedString��þBgo.string.hdr."decodeRFC2047Word"� �� ������������������:go.string."decodeRFC2047Word"���þ:go.string."decodeRFC2047Word"�0��$decodeRFC2047Word��þXgo.string.hdr."func(string) (string, error)"� �� ������������������Pgo.string."func(string) (string, error)"���þPgo.string."func(string) (string, error)"�@��:func(string) (string, error)��þBtype.func(string) (string, error)�°��°��������������D
j+�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Xgo.string.hdr."func(string) (string, error)"���p��Tgo.weak.type.*func(string) (string, error)���€��"runtime.zerovalue��� €�Btype.func(string) (string, error)���А�Btype.func(string) (string, error)���€��type.string�����type.string��� ��type.error���þŠgo.typelink.func(string) (string, error) func(string) (string, error)��������������Btype.func(string) (string, error)���þ*go.string.hdr."empty"� �� ������������������"go.string."empty"���þ"go.string."empty"��� empty��þ6go.string.hdr."func() bool"� �� �������� ����������.go.string."func() bool"���þ.go.string."func() bool"� ��func() bool��þ type.func() bool�����������������TËx�3��������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��6go.string.hdr."func() bool"���p��2go.weak.type.*func() bool���€��"runtime.zerovalue��� €� type.func() bool���Ѐ� type.func() bool���€��type.bool���þFgo.typelink.func() bool func() bool�������������� type.func() bool���þ&go.string.hdr."len"� �� ������������������go.string."len"���þgo.string."len"���len��þ4go.string.hdr."func() int"� �� ��������
����������,go.string."func() int"���þ,go.string."func() int"� ��func() int��þtype.func() int�����������������å†9à�3��������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��4go.string.hdr."func() int"���p��0go.weak.type.*func() int���€��"runtime.zerovalue��� €�type.func() int���Ѐ�type.func() int���€��type.int���þBgo.typelink.func() int func() int��������������type.func() int���þ8go.string.hdr."parseAddress"� �� �������� ����������0go.string."parseAddress"���þ0go.string."parseAddress"� ��parseAddress��þZgo.string.hdr."func() (*mail.Address, error)"� �� ������������������Rgo.string."func() (*mail.Address, error)"���þRgo.string."func() (*mail.Address, error)"�@��<func() (*mail.Address, error)��þ@type.func() (*"".Address, error)� �� ��������������†VËÎ�3����������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Zgo.string.hdr."func() (*mail.Address, error)"���p��Rgo.weak.type.*func() (*"".Address, error)���€��"runtime.zerovalue��� €�@type.func() (*"".Address, error)���Ѐ�@type.func() (*"".Address, error)���€�� type.*"".Address�����type.error���þŠgo.typelink.func() (*mail.Address, error) func() (*"".Address, error)��������������@type.func() (*"".Address, error)���þ@go.string.hdr."parseAddressList"� �� ������������������8go.string."parseAddressList"���þ8go.string."parseAddressList"�0��"parseAddressList��þ^go.string.hdr."func() ([]*mail.Address, error)"� �� ������������������Vgo.string."func() ([]*mail.Address, error)"���þVgo.string."func() ([]*mail.Address, error)"�@��@func() ([]*mail.Address, error)��þDtype.func() ([]*"".Address, error)� �� ��������������˜…́�3����������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��^go.string.hdr."func() ([]*mail.Address, error)"���p��Vgo.weak.type.*func() ([]*"".Address, error)���€��"runtime.zerovalue��� €�Dtype.func() ([]*"".Address, error)���Ѐ�Dtype.func() ([]*"".Address, error)���€��$type.[]*"".Address�����type.error���þ’go.typelink.func() ([]*mail.Address, error) func() ([]*"".Address, error)��������������Dtype.func() ([]*"".Address, error)���þ(go.string.hdr."peek"� �� ������������������ go.string."peek"���þ go.string."peek"���
peek��þ8go.string.hdr."func() uint8"� �� �������� ����������0go.string."func() uint8"���þ0go.string."func() uint8"� ��func() uint8��þ"type.func() uint8�����������������}S'Ï�3��������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��8go.string.hdr."func() uint8"���p��4go.weak.type.*func() uint8���€��"runtime.zerovalue��� €�"type.func() uint8���Ѐ�"type.func() uint8���€��type.uint8���þJgo.typelink.func() uint8 func() uint8��������������"type.func() uint8���þ2go.string.hdr."skipSpace"� �� �������� ����������*go.string."skipSpace"���þ*go.string."skipSpace"� ��skipSpace��þ,go.string.hdr."func()"� �� ������������������$go.string."func()"���þ$go.string."func()"���func()��þtype.func()�€��€��������������ö¼‚ö�3��������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��,go.string.hdr."func()"���p��(go.weak.type.*func()���€��"runtime.zerovalue��� €�type.func()���Ѐ�type.func()���þ2go.typelink.func() func()��������������type.func()���þ&type.*"".addrParser��ð
��ð
��������������îÇL�6�������������������������������������������������������������������������������� ������� ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��@go.string.hdr."*mail.addrParser"���p��8go.weak.type.**"".addrParser���€��"runtime.zerovalue�����$type."".addrParser���` �&type.*"".addrParser���Àð�&type.*"".addrParser���ð��.go.string.hdr."consume"���€��"go.importpath."".�����*type.func(uint8) bool��� ��Jtype.func(*"".addrParser, uint8) bool���°��0"".(*addrParser).consume���À��0"".(*addrParser).consume���Ð��>go.string.hdr."consumeAddrSpec"���à��"go.importpath."".���ð��6type.func() (string, error)���€��Rtype.func(*"".addrParser) (string, error)�����@"".(*addrParser).consumeAddrSpec��� ��@"".(*addrParser).consumeAddrSpec���°��6go.string.hdr."consumeAtom"���À��"go.importpath."".���Ð��Jtype.func(bool, bool) (string, error)���à��jtype.func(*"".addrParser, bool, bool) (string, error)���ð��8"".(*addrParser).consumeAtom���€��8"".(*addrParser).consumeAtom�����:go.string.hdr."consumePhrase"��� ��"go.importpath."".���°��6type.func() (string, error)���À��Rtype.func(*"".addrParser) (string, error)���Ð��<"".(*addrParser).consumePhrase���à��<"".(*addrParser).consumePhrase���ð��Fgo.string.hdr."consumeQuotedString"���€��"go.importpath."".�����6type.func() (string, error)��� ��Rtype.func(*"".addrParser) (string, error)���°��H"".(*addrParser).consumeQuotedString���À��H"".(*addrParser).consumeQuotedString���Ð��Bgo.string.hdr."decodeRFC2047Word"���à��"go.importpath."".���ð��Btype.func(string) (string, error)���€��btype.func(*"".addrParser, string) (string, error)�����D"".(*addrParser).decodeRFC2047Word��� ��D"".(*addrParser).decodeRFC2047Word���°��*go.string.hdr."empty"���À��"go.importpath."".���Ð�� type.func() bool���à��<type.func(*"".addrParser) bool���ð��,"".(*addrParser).empty���€��,"".(*addrParser).empty�����&go.string.hdr."len"��� ��"go.importpath."".���°��type.func() int���À��:type.func(*"".addrParser) int���Ð��("".(*addrParser).len���à��("".(*addrParser).len���ð��8go.string.hdr."parseAddress"���€��"go.importpath."".�����@type.func() (*"".Address, error)��� ��\type.func(*"".addrParser) (*"".Address, error)���°��:"".(*addrParser).parseAddress���À��:"".(*addrParser).parseAddress���Ð��@go.string.hdr."parseAddressList"���à��"go.importpath."".���ð��Dtype.func() ([]*"".Address, error)���€ ��`type.func(*"".addrParser) ([]*"".Address, error)��� ��B"".(*addrParser).parseAddressList���  ��B"".(*addrParser).parseAddressList���° ��(go.string.hdr."peek"���À ��"go.importpath."".���Ð ��"type.func() uint8���à ��>type.func(*"".addrParser) uint8���ð ��*"".(*addrParser).peek���€
��*"".(*addrParser).peek���
��2go.string.hdr."skipSpace"��� 
��"go.importpath."".���°
��type.func()�����2type.func(*"".addrParser)���Ð
��4"".(*addrParser).skipSpace���à
��4"".(*addrParser).skipSpace���þDgo.string.hdr."mail.AddressParser"� �� ������������������<go.string."mail.AddressParser"���þ<go.string."mail.AddressParser"�0��&mail.AddressParser��þ6go.string.hdr."WordDecoder"� �� �������� ����������.go.string."WordDecoder"���þ.go.string."WordDecoder"� ��WordDecoder��þ:go.string.hdr."AddressParser"� �� �������� ����������2go.string."AddressParser"���þ2go.string."AddressParser"� ��AddressParser��þ*type."".AddressParser��à��à��������������K�9������������������������������������������������������������������������������������������������������������������������������������������������������0 � runtime.algarray���@��"runtime.gcbits.01���P��Dgo.string.hdr."mail.AddressParser"���p��,type.*"".AddressParser���€��"runtime.zerovalue���À�*type."".AddressParser���À��6go.string.hdr."WordDecoder"���à��,type.*mime.WordDecoder���`�*type."".AddressParser�����:go.string.hdr."AddressParser"��� ��"go.importpath."".���°à�*type."".AddressParser���þFgo.string.hdr."*mail.AddressParser"� �� ������������������>go.string."*mail.AddressParser"���þ>go.string."*mail.AddressParser"�0��(*mail.AddressParser��þgo.string.hdr."func(*mail.AddressParser, string) (*mail.Address, error)"� �� ��������8����������ˆgo.string."func(*mail.AddressParser, string) (*mail.Address, error)"���þˆgo.string."func(*mail.AddressParser, string) (*mail.Address, error)"�€��rfunc(*mail.AddressParser, string) (*mail.Address, error)��þrtype.func(*"".AddressParser, string) (*"".Address, error)�À��À��������������âׂV�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��go.string.hdr."func(*mail.AddressParser, string) (*mail.Address, error)"���p��„go.weak.type.*func(*"".AddressParser, string) (*"".Address, error)���€��"runtime.zerovalue��� €�rtype.func(*"".AddressParser, string) (*"".Address, error)���Р�rtype.func(*"".AddressParser, string) (*"".Address, error)���€��,type.*"".AddressParser�����type.string��� �� type.*"".Address���°��type.error���þògo.typelink.func(*mail.AddressParser, string) (*mail.Address, error) func(*"".AddressParser, string) (*"".Address, error)��������������rtype.func(*"".AddressParser, string) (*"".Address, error)���þ”go.string.hdr."func(*mail.AddressParser, string) ([]*mail.Address, error)"� �� ��������:����������Œgo.string."func(*mail.AddressParser, string) ([]*mail.Address, error)"���þŒgo.string."func(*mail.AddressParser, string) ([]*mail.Address, error)"�€��vfunc(*mail.AddressParser, string) ([]*mail.Address, error)��þvtype.func(*"".AddressParser, string) ([]*"".Address, error)�À��À��������������OÆè¬�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��”go.string.hdr."func(*mail.AddressParser, string) ([]*mail.Address, error)"���p��ˆgo.weak.type.*func(*"".AddressParser, string) ([]*"".Address, error)���€��"runtime.zerovalue��� €�vtype.func(*"".AddressParser, string) ([]*"".Address, error)���Р�vtype.func(*"".AddressParser, string) ([]*"".Address, error)���€��,type.*"".AddressParser�����type.string��� ��$type.[]*"".Address���°��type.error���þúgo.typelink.func(*mail.AddressParser, string) ([]*mail.Address, error) func(*"".AddressParser, string) ([]*"".Address, error)��������������vtype.func(*"".AddressParser, string) ([]*"".Address, error)���þ*go.string.hdr."Parse"� �� ������������������"go.string."Parse"���þ"go.string."Parse"��� Parse��þfgo.string.hdr."func(string) (*mail.Address, error)"� �� ��������#����������^go.string."func(string) (*mail.Address, error)"���þ^go.string."func(string) (*mail.Address, error)"�P��Hfunc(string) (*mail.Address, error)��þLtype.func(string) (*"".Address, error)�°��°�������������� !V>�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��fgo.string.hdr."func(string) (*mail.Address, error)"���p��^go.weak.type.*func(string) (*"".Address, error)���€��"runtime.zerovalue��� €�Ltype.func(string) (*"".Address, error)���А�Ltype.func(string) (*"".Address, error)���€��type.string����� type.*"".Address��� ��type.error���þ¢go.typelink.func(string) (*mail.Address, error) func(string) (*"".Address, error)��������������Ltype.func(string) (*"".Address, error)���þ2go.string.hdr."ParseList"� �� �������� ����������*go.string."ParseList"���þ*go.string."ParseList"� ��ParseList��þ,type.*"".AddressParser��°��°��������������à‹17�6����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������$0 � runtime.algarray���@��"runtime.gcbits.01���P��Fgo.string.hdr."*mail.AddressParser"���p��>go.weak.type.**"".AddressParser���€��"runtime.zerovalue�����*type."".AddressParser���` �,type.*"".AddressParser���Àð�,type.*"".AddressParser���ð��*go.string.hdr."Parse"�����Ltype.func(string) (*"".Address, error)��� ��rtype.func(*"".AddressParser, string) (*"".Address, error)���°��2"".(*AddressParser).Parse���À��2"".(*AddressParser).Parse���Ð��2go.string.hdr."ParseList"���ð��Ptype.func(string) ([]*"".Address, error)���€��vtype.func(*"".AddressParser, string) ([]*"".Address, error)�����:"".(*AddressParser).ParseList��� ��:"".(*AddressParser).ParseList���þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�������������þTgclocals·a8eabfc4a4514ed6b3b0c61e9680e440��������������þTgclocals·3bb21ca8fe1d99a3e492463bd711418a�������������þ<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‘[ú������������������������������������������������������������������������0��2type..alg.[1]interface {}���@��"runtime.gcbits.03���P��>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 {}� �� ��������������¿¨5�6�������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��@go.string.hdr."*[1]interface {}"���p��<go.weak.type.**[1]interface {}���€��"runtime.zerovalue�����(type.[1]interface {}���þ type..hashfunc10� �� ��������
����������,runtime.memhash_varlen���þtype..eqfunc10� �� ��������
����������.runtime.memequal_varlen���þtype..alg10� �� ������������������� type..hashfunc10�����type..eqfunc10���þ2go.string.hdr."[10]uint8"� �� �������� ����������*go.string."[10]uint8"���þ*go.string."[10]uint8"� ��[10]uint8��þtype.[10]uint8�À��À
���������������ƒv©x�‘����������������������������������������������������������������
�������0��type..alg10���@��runtime.gcbits.���P��2go.string.hdr."[10]uint8"���p��.go.weak.type.*[10]uint8���€��"runtime.zerovalue�����type.uint8��� ��type.[]uint8���þ>go.typelink.[10]uint8 [10]uint8��������������type.[10]uint8���þDgo.string.hdr."*mail.charsetError"� �� ������������������<go.string."*mail.charsetError"���þ<go.string."*mail.charsetError"�0��&*mail.charsetError��þ8go.string.hdr."charsetError"� �� �������� ����������0go.string."charsetError"���þ0go.string."charsetError"� ��charsetError��þ*go.string.hdr."Error"� �� ������������������"go.string."Error"���þ"go.string."Error"��� Error��þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�������������þ^go.string.hdr."func(*mail.charsetError) string"� �� ������������������Vgo.string."func(*mail.charsetError) string"���þVgo.string."func(*mail.charsetError) string"�@��@func(*mail.charsetError) string��þDtype.func(*"".charsetError) string� �� ��������������2»&x�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��^go.string.hdr."func(*mail.charsetError) string"���p��Vgo.weak.type.*func(*"".charsetError) string���€��"runtime.zerovalue��� €�Dtype.func(*"".charsetError) string���А�Dtype.func(*"".charsetError) string���€��*type.*"".charsetError�����type.string���þ’go.typelink.func(*mail.charsetError) string func(*"".charsetError) string��������������Dtype.func(*"".charsetError) string���þ*type.*"".charsetError��Ð��Ð��������������±èCø�6����������������������������������������������������������������������������������������������������������������������������������������������0 � runtime.algarray���@��"runtime.gcbits.01���P��Dgo.string.hdr."*mail.charsetError"���p��<go.weak.type.**"".charsetError���€��"runtime.zerovalue�����(type."".charsetError���` �*type.*"".charsetError���Àð�*type.*"".charsetError���ð��*go.string.hdr."Error"�����$type.func() string��� ��Dtype.func(*"".charsetError) string���°��0"".(*charsetError).Error���À��0"".(*charsetError).Error���þBgo.string.hdr."mail.charsetError"� �� ������������������:go.string."mail.charsetError"���þ:go.string."mail.charsetError"�0��$mail.charsetError��þ\go.string.hdr."func(mail.charsetError) string"� �� ������������������Tgo.string."func(mail.charsetError) string"���þTgo.string."func(mail.charsetError) string"�@��>func(mail.charsetError) string��þBtype.func("".charsetError) string� �� ��������������>@$Š�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��\go.string.hdr."func(mail.charsetError) string"���p��Tgo.weak.type.*func("".charsetError) string���€��"runtime.zerovalue��� €�Btype.func("".charsetError) string���А�Btype.func("".charsetError) string���€��(type."".charsetError�����type.string���þŽgo.typelink.func(mail.charsetError) string func("".charsetError) string��������������Btype.func("".charsetError) string���þ(type."".charsetError��À��À��������������çI%���������������������������������������������������������������������������������������������������������������������������������������0À� runtime.algarray���@��"runtime.gcbits.01���P��Bgo.string.hdr."mail.charsetError"���p��*type.*"".charsetError���€��"runtime.zerovalue���`�(type."".charsetError�����8go.string.hdr."charsetError"��� ��"go.importpath."".���°à�(type."".charsetError���à��*go.string.hdr."Error"���€��$type.func() string�����Btype.func("".charsetError) string��� ��0"".(*charsetError).Error���°��*"".charsetError.Error���þ4go.string.hdr."*[2]string"� �� ��������
����������,go.string."*[2]string"���þ,go.string."*[2]string"� ��*[2]string��þtype.*[2]string� �� �������������� f<�6�������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��4go.string.hdr."*[2]string"���p��0go.weak.type.**[2]string���€��"runtime.zerovalue�����type.[2]string���þ4go.string.hdr."*[3]string"� �� ��������
����������,go.string."*[3]string"���þ,go.string."*[3]string"� ��*[3]string��þtype.*[3]string� �� ��������������
+é �6�������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��4go.string.hdr."*[3]string"���p��0go.weak.type.**[3]string���€��"runtime.zerovalue�����type.[3]string���þ.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."errors"� �� ������������������$go.string."errors"���þ$go.string."errors"���errors��þ*go.importpath.errors.� �� ������������������$go.string."errors"���þ$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"���þ&go.string.hdr."log"� �� ������������������go.string."log"���þgo.string."log"���log��þ$go.importpath.log.� �� ������������������go.string."log"���þ(go.string.hdr."time"� �� ������������������ go.string."time"���þ go.string."time"���
time��þ&go.importpath.time.� �� ������������������ go.string."time"���þ(go.string.hdr."mime"� �� ������������������ go.string."mime"���þ go.string."mime"���
mime��þ&go.importpath.mime.� �� ������������������ go.string."mime"���þ.go.string.hdr."strings"� �� ������������������&go.string."strings"���þ&go.string."strings"���strings��þ,go.importpath.strings.� �� ������������������&go.string."strings"���þ:go.string.hdr."net/textproto"� �� �������� ����������2go.string."net/textproto"���þ2go.string."net/textproto"� ��net/textproto��þ8go.importpath.net/textproto.� �� �������� ����������2go.string."net/textproto"���þ,"".(*debugT).Printf·f��������������&"".(*debugT).Printf���þ.type..hash.[8]string·f��������������(type..hash.[8]string���þ*type..eq.[8]string·f��������������$type..eq.[8]string���þ&"".(*Header).Get·f�������������� "".(*Header).Get���þ("".(*Header).Date·f��������������""".(*Header).Date���þ6"".(*Header).AddressList·f��������������0"".(*Header).AddressList���þ0type..hash."".Address·f��������������*type..hash."".Address���þ,type..eq."".Address·f��������������&type..eq."".Address���þ.type..hash.[2]string·f��������������(type..hash.[2]string���þ*type..eq.[2]string·f��������������$type..eq.[2]string���þ.type..hash.[3]string·f��������������(type..hash.[3]string���þ*type..eq.[3]string·f��������������$type..eq.[3]string���þ6type..hash."".addrParser·f��������������0type..hash."".addrParser���þ2type..eq."".addrParser·f��������������,type..eq."".addrParser���þ:type..hash.[1]interface {}·f��������������4type..hash.[1]interface {}���þ6type..eq.[1]interface {}·f��������������0type..eq.[1]interface {}���þ6"".(*charsetError).Error·f��������������0"".(*charsetError).Error���þ"runtime.zerovalue������ÿÿgo13ld