blob: c22321ab74eea4b2858ed67296dcb508b2cd916a [file] [log] [blame]
!<arch>
__.PKGDEF 0 0 0 644 13791 `
go object windows amd64 go1.4.2 X:precisestack
$$
package pe
import binary "encoding/binary"
import runtime "runtime"
import errors "errors"
import io "io"
import os "os"
import strconv "strconv"
import fmt "fmt"
import dwarf "debug/dwarf"
type @"".FileHeader struct { Machine uint16; NumberOfSections uint16; TimeDateStamp uint32; PointerToSymbolTable uint32; NumberOfSymbols uint32; SizeOfOptionalHeader uint16; Characteristics uint16 }
type @"".SectionHeader struct { Name string; VirtualSize uint32; VirtualAddress uint32; Size uint32; Offset uint32; PointerToRelocations uint32; PointerToLineNumbers uint32; NumberOfRelocations uint16; NumberOfLineNumbers uint16; Characteristics uint32 }
type @"io".ReaderAt interface { ReadAt(@"io".p []byte, @"io".off int64) (@"io".n int, @"io".err error) }
type @"io".SectionReader struct { @"io".r @"io".ReaderAt; @"io".base int64; @"io".off int64; @"io".limit int64 }
func (@"io".s·3 *@"io".SectionReader) Read (@"io".p·4 []byte) (@"io".n·1 int, @"io".err·2 error)
func (@"io".s·3 *@"io".SectionReader) ReadAt (@"io".p·4 []byte, @"io".off·5 int64) (@"io".n·1 int, @"io".err·2 error)
func (@"io".s·3 *@"io".SectionReader "esc:0x0") Seek (@"io".offset·4 int64, @"io".whence·5 int) (? int64, ? error)
func (@"io".s·2 *@"io".SectionReader "esc:0x0") Size () (? int64) { return @"io".s·2.@"io".limit - @"io".s·2.@"io".base }
type @"io".ReadSeeker interface { Read(@"io".p []byte) (@"io".n int, @"io".err error); Seek(@"io".offset int64, @"io".whence int) (? int64, ? error) }
type @"".Section struct { ? @"".SectionHeader; ? @"io".ReaderAt; @"".sr *@"io".SectionReader }
func (@"".s·3 *@"".Section) Data () (? []byte, ? error)
func (@"".s·2 *@"".Section) Open () (? @"io".ReadSeeker)
type @"".Symbol struct { Name string; Value uint32; SectionNumber int16; Type uint16; StorageClass uint8 }
type @"io".Closer interface { Close() (? error) }
type @"debug/dwarf".Tag uint32
func (@"debug/dwarf".t·2 @"debug/dwarf".Tag) GoString () (? string)
func (@"debug/dwarf".t·2 @"debug/dwarf".Tag) String () (? string)
type @"debug/dwarf".Attr uint32
func (@"debug/dwarf".a·2 @"debug/dwarf".Attr) GoString () (? string)
func (@"debug/dwarf".a·2 @"debug/dwarf".Attr) String () (? string)
type @"debug/dwarf".format uint32
type @"debug/dwarf".afield struct { @"debug/dwarf".attr @"debug/dwarf".Attr; @"debug/dwarf".fmt @"debug/dwarf".format }
type @"debug/dwarf".abbrev struct { @"debug/dwarf".tag @"debug/dwarf".Tag; @"debug/dwarf".children bool; @"debug/dwarf".field []@"debug/dwarf".afield }
type @"debug/dwarf".abbrevTable map[uint32]@"debug/dwarf".abbrev
type @"encoding/binary".ByteOrder interface { PutUint16(? []byte, ? uint16); PutUint32(? []byte, ? uint32); PutUint64(? []byte, ? uint64); String() (? string); Uint16(? []byte) (? uint16); Uint32(? []byte) (? uint32); Uint64(? []byte) (? uint64) }
type @"debug/dwarf".CommonType struct { ByteSize int64; Name string }
func (@"debug/dwarf".c·2 *@"debug/dwarf".CommonType "esc:0x2") Common () (? *@"debug/dwarf".CommonType) { return @"debug/dwarf".c·2 }
func (@"debug/dwarf".c·2 *@"debug/dwarf".CommonType "esc:0x0") Size () (? int64) { return @"debug/dwarf".c·2.ByteSize }
type @"debug/dwarf".Type interface { Common() (? *@"debug/dwarf".CommonType); Size() (? int64); String() (? string) }
type @"debug/dwarf".Offset uint32
type @"debug/dwarf".unit struct { @"debug/dwarf".base @"debug/dwarf".Offset; @"debug/dwarf".off @"debug/dwarf".Offset; @"debug/dwarf".data []byte; @"debug/dwarf".atable @"debug/dwarf".abbrevTable; @"debug/dwarf".asize int; @"debug/dwarf".vers int; @"debug/dwarf".is64 bool }
func (@"debug/dwarf".u·2 *@"debug/dwarf".unit "esc:0x0") @"debug/dwarf".addrsize () (? int) { return @"debug/dwarf".u·2.@"debug/dwarf".asize }
func (@"debug/dwarf".u·3 *@"debug/dwarf".unit "esc:0x0") @"debug/dwarf".dwarf64 () (? bool, ? bool) { return @"debug/dwarf".u·3.@"debug/dwarf".is64, true }
func (@"debug/dwarf".u·2 *@"debug/dwarf".unit "esc:0x0") @"debug/dwarf".version () (? int) { return @"debug/dwarf".u·2.@"debug/dwarf".vers }
type @"debug/dwarf".typeUnit struct { @"debug/dwarf".? @"debug/dwarf".unit; @"debug/dwarf".toff @"debug/dwarf".Offset; @"debug/dwarf".name string; @"debug/dwarf".cache @"debug/dwarf".Type }
type @"debug/dwarf".dataFormat interface { @"debug/dwarf".addrsize() (? int); @"debug/dwarf".dwarf64() (@"debug/dwarf".dwarf64 bool, @"debug/dwarf".isKnown bool); @"debug/dwarf".version() (? int) }
type @"debug/dwarf".Field struct { Attr @"debug/dwarf".Attr; Val interface {} }
type @"debug/dwarf".Entry struct { Offset @"debug/dwarf".Offset; Tag @"debug/dwarf".Tag; Children bool; Field []@"debug/dwarf".Field }
func (@"debug/dwarf".e·2 *@"debug/dwarf".Entry "esc:0x0") Val (@"debug/dwarf".a·3 @"debug/dwarf".Attr) (? interface {})
type @"debug/dwarf".buf struct { @"debug/dwarf".dwarf *@"debug/dwarf".Data; @"debug/dwarf".order @"encoding/binary".ByteOrder; @"debug/dwarf".format @"debug/dwarf".dataFormat; @"debug/dwarf".name string; @"debug/dwarf".off @"debug/dwarf".Offset; @"debug/dwarf".data []byte; @"debug/dwarf".err error }
func (@"debug/dwarf".b·2 *@"debug/dwarf".buf) @"debug/dwarf".addr () (? uint64)
func (@"debug/dwarf".b·2 *@"debug/dwarf".buf) @"debug/dwarf".bytes (@"debug/dwarf".n·3 int) (? []byte)
func (@"debug/dwarf".b·2 *@"debug/dwarf".buf) @"debug/dwarf".entry (@"debug/dwarf".atab·3 @"debug/dwarf".abbrevTable "esc:0x0", @"debug/dwarf".ubase·4 @"debug/dwarf".Offset) (? *@"debug/dwarf".Entry)
func (@"debug/dwarf".b·1 *@"debug/dwarf".buf) @"debug/dwarf".error (@"debug/dwarf".s·2 string) { if @"debug/dwarf".b·1.@"debug/dwarf".err == nil { @"debug/dwarf".b·1.@"debug/dwarf".data = nil; @"debug/dwarf".b·1.@"debug/dwarf".err = (@"debug/dwarf".DecodeError{ Name:@"debug/dwarf".b·1.@"debug/dwarf".name, Offset:@"debug/dwarf".b·1.@"debug/dwarf".off, Err:@"debug/dwarf".s·2 }) } }
func (@"debug/dwarf".b·2 *@"debug/dwarf".buf) @"debug/dwarf".int () (? int64)
func (@"debug/dwarf".b·1 *@"debug/dwarf".buf) @"debug/dwarf".skip (@"debug/dwarf".n·2 int)
func (@"debug/dwarf".b·2 *@"debug/dwarf".buf) @"debug/dwarf".string () (? string)
func (@"debug/dwarf".b·2 *@"debug/dwarf".buf) @"debug/dwarf".uint () (? uint64)
func (@"debug/dwarf".b·2 *@"debug/dwarf".buf) @"debug/dwarf".uint16 () (? uint16)
func (@"debug/dwarf".b·2 *@"debug/dwarf".buf) @"debug/dwarf".uint32 () (? uint32)
func (@"debug/dwarf".b·2 *@"debug/dwarf".buf) @"debug/dwarf".uint64 () (? uint64)
func (@"debug/dwarf".b·2 *@"debug/dwarf".buf) @"debug/dwarf".uint8 () (? uint8)
func (@"debug/dwarf".b·3 *@"debug/dwarf".buf) @"debug/dwarf".varint () (@"debug/dwarf".c·1 uint64, @"debug/dwarf".bits·2 uint)
type @"debug/dwarf".typeReader interface { Next() (? *@"debug/dwarf".Entry, ? error); Seek(? @"debug/dwarf".Offset); @"debug/dwarf".clone() (? @"debug/dwarf".typeReader); @"debug/dwarf".offset() (? @"debug/dwarf".Offset) }
type @"debug/dwarf".Reader struct { @"debug/dwarf".b @"debug/dwarf".buf; @"debug/dwarf".d *@"debug/dwarf".Data; @"debug/dwarf".err error; @"debug/dwarf".unit int; @"debug/dwarf".lastChildren bool; @"debug/dwarf".lastSibling @"debug/dwarf".Offset }
func (@"debug/dwarf".r·3 *@"debug/dwarf".Reader) Next () (? *@"debug/dwarf".Entry, ? error)
func (@"debug/dwarf".r·1 *@"debug/dwarf".Reader) Seek (@"debug/dwarf".off·2 @"debug/dwarf".Offset)
func (@"debug/dwarf".r·1 *@"debug/dwarf".Reader) SkipChildren ()
func (@"debug/dwarf".r·2 *@"debug/dwarf".Reader) @"debug/dwarf".clone () (? @"debug/dwarf".typeReader)
func (@"debug/dwarf".r·1 *@"debug/dwarf".Reader) @"debug/dwarf".maybeNextUnit ()
func (@"debug/dwarf".r·2 *@"debug/dwarf".Reader "esc:0x0") @"debug/dwarf".offset () (? @"debug/dwarf".Offset) { return @"debug/dwarf".r·2.@"debug/dwarf".b.@"debug/dwarf".off }
type @"debug/dwarf".Data struct { @"debug/dwarf".abbrev []byte; @"debug/dwarf".aranges []byte; @"debug/dwarf".frame []byte; @"debug/dwarf".info []byte; @"debug/dwarf".line []byte; @"debug/dwarf".pubnames []byte; @"debug/dwarf".ranges []byte; @"debug/dwarf".str []byte; @"debug/dwarf".abbrevCache map[uint32]@"debug/dwarf".abbrevTable; @"debug/dwarf".order @"encoding/binary".ByteOrder; @"debug/dwarf".typeCache map[@"debug/dwarf".Offset]@"debug/dwarf".Type; @"debug/dwarf".typeSigs map[uint64]*@"debug/dwarf".typeUnit; @"debug/dwarf".unit []@"debug/dwarf".unit }
func (@"debug/dwarf".d·2 *@"debug/dwarf".Data) AddTypes (@"debug/dwarf".name·3 string, @"debug/dwarf".types·4 []byte) (? error)
func (@"debug/dwarf".d·2 *@"debug/dwarf".Data) Reader () (? *@"debug/dwarf".Reader)
func (@"debug/dwarf".d·3 *@"debug/dwarf".Data) Type (@"debug/dwarf".off·4 @"debug/dwarf".Offset) (? @"debug/dwarf".Type, ? error)
func (@"debug/dwarf".d·3 *@"debug/dwarf".Data) @"debug/dwarf".parseAbbrev (@"debug/dwarf".off·4 uint32) (? @"debug/dwarf".abbrevTable, ? error)
func (@"debug/dwarf".d·2 *@"debug/dwarf".Data) @"debug/dwarf".parseTypes (@"debug/dwarf".name·3 string, @"debug/dwarf".types·4 []byte) (? error)
func (@"debug/dwarf".d·3 *@"debug/dwarf".Data) @"debug/dwarf".parseUnits () (? []@"debug/dwarf".unit, ? error)
func (@"debug/dwarf".d·3 *@"debug/dwarf".Data) @"debug/dwarf".readType (@"debug/dwarf".name·4 string, @"debug/dwarf".r·5 @"debug/dwarf".typeReader, @"debug/dwarf".off·6 @"debug/dwarf".Offset, @"debug/dwarf".typeCache·7 map[@"debug/dwarf".Offset]@"debug/dwarf".Type "esc:0x0") (? @"debug/dwarf".Type, ? error)
func (@"debug/dwarf".d·3 *@"debug/dwarf".Data) @"debug/dwarf".sigToType (@"debug/dwarf".sig·4 uint64) (? @"debug/dwarf".Type, ? error)
type @"".File struct { ? @"".FileHeader; OptionalHeader interface {}; Sections []*@"".Section; Symbols []*@"".Symbol; @"".closer @"io".Closer }
func (@"".f·2 *@"".File) Close () (? error)
func (@"".f·3 *@"".File "esc:0x0") DWARF () (? *@"debug/dwarf".Data, ? error)
func (@"".f·3 *@"".File "esc:0x0") ImportedLibraries () (? []string, ? error) { return nil, nil }
func (@"".f·3 *@"".File "esc:0x0") ImportedSymbols () (? []string, ? error)
func (@"".f·2 *@"".File "esc:0x0") Section (@"".name·3 string "esc:0x0") (? *@"".Section)
type @"".ImportDirectory struct { OriginalFirstThunk uint32; TimeDateStamp uint32; ForwarderChain uint32; Name uint32; FirstThunk uint32; @"".dll string }
type @"".FormatError struct { @"".off int64; @"".msg string; @"".val interface {} }
func (@"".e·2 *@"".FormatError) Error () (? string)
func @"".Open (@"".name·3 string) (? *@"".File, ? error)
func @"".NewFile (@"".r·3 @"io".ReaderAt) (? *@"".File, ? error)
type @"".DataDirectory struct { VirtualAddress uint32; Size uint32 }
type @"".OptionalHeader32 struct { Magic uint16; MajorLinkerVersion uint8; MinorLinkerVersion uint8; SizeOfCode uint32; SizeOfInitializedData uint32; SizeOfUninitializedData uint32; AddressOfEntryPoint uint32; BaseOfCode uint32; BaseOfData uint32; ImageBase uint32; SectionAlignment uint32; FileAlignment uint32; MajorOperatingSystemVersion uint16; MinorOperatingSystemVersion uint16; MajorImageVersion uint16; MinorImageVersion uint16; MajorSubsystemVersion uint16; MinorSubsystemVersion uint16; Win32VersionValue uint32; SizeOfImage uint32; SizeOfHeaders uint32; CheckSum uint32; Subsystem uint16; DllCharacteristics uint16; SizeOfStackReserve uint32; SizeOfStackCommit uint32; SizeOfHeapReserve uint32; SizeOfHeapCommit uint32; LoaderFlags uint32; NumberOfRvaAndSizes uint32; DataDirectory [16]@"".DataDirectory }
type @"".OptionalHeader64 struct { Magic uint16; MajorLinkerVersion uint8; MinorLinkerVersion uint8; SizeOfCode uint32; SizeOfInitializedData uint32; SizeOfUninitializedData uint32; AddressOfEntryPoint uint32; BaseOfCode uint32; ImageBase uint64; SectionAlignment uint32; FileAlignment uint32; MajorOperatingSystemVersion uint16; MinorOperatingSystemVersion uint16; MajorImageVersion uint16; MinorImageVersion uint16; MajorSubsystemVersion uint16; MinorSubsystemVersion uint16; Win32VersionValue uint32; SizeOfImage uint32; SizeOfHeaders uint32; CheckSum uint32; Subsystem uint16; DllCharacteristics uint16; SizeOfStackReserve uint64; SizeOfStackCommit uint64; SizeOfHeapReserve uint64; SizeOfHeapCommit uint64; LoaderFlags uint32; NumberOfRvaAndSizes uint32; DataDirectory [16]@"".DataDirectory }
type @"".SectionHeader32 struct { Name [8]uint8; VirtualSize uint32; VirtualAddress uint32; SizeOfRawData uint32; PointerToRawData uint32; PointerToRelocations uint32; PointerToLineNumbers uint32; NumberOfRelocations uint16; NumberOfLineNumbers uint16; Characteristics uint32 }
const @"".COFFSymbolSize = 0x12
type @"".COFFSymbol struct { Name [8]uint8; Value uint32; SectionNumber int16; Type uint16; StorageClass uint8; NumberOfAuxSymbols uint8 }
const @"".IMAGE_FILE_MACHINE_UNKNOWN = 0x0
const @"".IMAGE_FILE_MACHINE_AM33 = 0x1D3
const @"".IMAGE_FILE_MACHINE_AMD64 = 0x8664
const @"".IMAGE_FILE_MACHINE_ARM = 0x1C0
const @"".IMAGE_FILE_MACHINE_EBC = 0xEBC
const @"".IMAGE_FILE_MACHINE_I386 = 0x14C
const @"".IMAGE_FILE_MACHINE_IA64 = 0x200
const @"".IMAGE_FILE_MACHINE_M32R = 0x9041
const @"".IMAGE_FILE_MACHINE_MIPS16 = 0x266
const @"".IMAGE_FILE_MACHINE_MIPSFPU = 0x366
const @"".IMAGE_FILE_MACHINE_MIPSFPU16 = 0x466
const @"".IMAGE_FILE_MACHINE_POWERPC = 0x1F0
const @"".IMAGE_FILE_MACHINE_POWERPCFP = 0x1F1
const @"".IMAGE_FILE_MACHINE_R4000 = 0x166
const @"".IMAGE_FILE_MACHINE_SH3 = 0x1A2
const @"".IMAGE_FILE_MACHINE_SH3DSP = 0x1A3
const @"".IMAGE_FILE_MACHINE_SH4 = 0x1A6
const @"".IMAGE_FILE_MACHINE_SH5 = 0x1A8
const @"".IMAGE_FILE_MACHINE_THUMB = 0x1C2
const @"".IMAGE_FILE_MACHINE_WCEMIPSV2 = 0x169
func @"".init ()
type @"debug/dwarf".DecodeError struct { Name string; Offset @"debug/dwarf".Offset; Err string }
func (@"debug/dwarf".e·2 @"debug/dwarf".DecodeError "esc:0x0") Error () (? string)
$$
�_go_.6 0 0 0 644 124043 `
go object windows amd64 go1.4.2 X:precisestack
!
��go13lddebug/dwarf.a"encoding/binary.aerrors.a
fmt.aio.aos.astrconv.a�þ$"".(*Section).Data��à��ÌeH‹ %(���H‹‰����H;awè����ëãHƒìXHÇD$h����HÇD$p����HÇD$x����HDŽ$€�������HDŽ$ˆ�������H‹\$`H‹C@H‹X H‹hH)ëH‰ØH����H‰$H‰D$H‰D$è����H‹T$H‹L$ H‹D$(H‹\$`H‹k@H‰,$H‰T$@H‰T$H‰L$HH‰L$H‰D$PH‰D$HÇD$ ����è����H‹D$(H‹t$0H‹T$8H‹L$HH9Èu>1ö1ÒH‹L$PH9Ár)H‹l$@H‰l$hH‰D$pH‰L$xH‰´$€���H‰”$ˆ���HƒÄXÃè���� ëÄ ������.��0runtime.morestack_noctxt���Ü��type.[]uint8���‚��"runtime.makeslice���’��4io.(*SectionReader).ReadAt���¼��$runtime.panicslice���`°��
"".autotmp_0008��type.int64� "".dat�/type.[]uint8� "".~r1�@type.error� "".~r0�type.[]uint8�"".s�� type.*"".Section�!°û¯°�°�”T@H
F��€HU�Tgclocals·ca1ebfc68aaed1d083688775167e5178�Tgclocals·61e2515c69061b8fed0e66ece719f936���4c:/go/src/debug/pe/file.goþ$"".(*Section).Open��à��ÜeH‹ %(���H‹‰����H;awè����ëãHƒìXHÇD$h����HÇD$p����H‹����1íH9è„÷���H‹\$`H‹k@H‰D$HH‰D$8H‰l$PH‰l$@HÇD$ ����H»ÿÿÿÿÿÿÿH‰\$(H����H‰$è����H‹D$H‰D$0H‰$Hƒ<$�„���H‹\$8H‰\$H‹\$@H‰\$è����H‹l$ H‹D$0H‰hH‰hL‹D$(LÅH‰h H‰D$0H‹����1íH9ètH‹\$0H‰\$pH‰D$hHƒÄXÃH����H‰$H����H‰\$H����H‰\$è����H‹D$뽉%����égÿÿÿH����H‰$H����H‰\$H����H‰\$è����H‹D$é×þÿÿ������.��0runtime.morestack_noctxt���l��Jgo.itab.*io.SectionReader.io.ReaderAt���ú��*type.io.SectionReader���Œ��"runtime.newobject���ð��2runtime.writebarrieriface���Ä��Ngo.itab.*io.SectionReader.io.ReadSeeker���ˆ��,type.*io.SectionReader���ž��$type.io.ReadSeeker���¶��Ngo.itab.*io.SectionReader.io.ReadSeeker���Ê�� runtime.typ2Itab���þ��,type.*io.SectionReader���”�� type.io.ReaderAt���¬��Jgo.itab.*io.SectionReader.io.ReaderAt���À�� runtime.typ2Itab���0°��"".autotmp_0019��type.*uint8�"".autotmp_0018�O,type.*io.SectionReader�"".autotmp_0017��,type.*io.SectionReader�"".autotmp_0015� type.io.ReaderAt�"".autotmp_0014��,type.*io.SectionReader�io.n·4�_type.int64�io.off·3�otype.int64�io.r·2�? type.io.ReaderAt� "".~r0�$type.io.ReadSeeker�"".s�� type.*"".Section�!°ß¯°o�ð�
¨ð��…2¨�Tgclocals·6d340c3bdac448a6ef1256f331f68dd3�Tgclocals·3ea018d3d3bf08cc71b1924be27582a2���4c:/go/src/debug/pe/file.goþ."".(*FormatError).Error��À ��¶ eH‹ %(���H‹‰����HD$àH;Awè����ëÞHì ���H‹´$¨���HDŽ$°�������HDŽ$¸�������Hƒþ�„��H‹NH‹FHƒ~�„��H‰L$8H‰L$xH‰D$@H‰„$€���H\$hHÇ����HÇC����H\$hHƒû�„-��HÇÂ���HÇÁ���H‰”$���H‰Œ$˜���H‰œ$ˆ���H‰$HnH\$H‰ßH‰îH¥H¥è����H����H,$H‰ïH‰ÞH¥H¥H‹œ$ˆ���H‰\$H‹œ$���H‰\$H‹œ$˜���H‰\$ è����H‹L$(H‹D$0H‹\$xH‰$H‹œ$€���H‰\$H‰L$XH‰L$H‰D$`H‰D$è����H‹´$¨���H‹L$ H‹D$(H‰L$8H‰L$xH‰D$@H‰„$€���H\$hHÇ����HÇC����H\$hHƒû�„��HÇÁ���HÇÂ���H‰œ$ˆ���H‰Œ$���H‰”$˜���H����H‰$H‰t$Hƒ|$�„Ð���è����H‹L$H‹D$H‹œ$ˆ���H‰$H‰L$HH‰L$H‰D$PH‰D$è����H����H,$H‰ïH‰ÞH¥H¥H‹œ$ˆ���H‰\$H‹œ$���H‰\$H‹œ$˜���H‰\$ è����H‹L$(H‹D$0H‹\$xH‰$H‹œ$€���H‰\$H‰L$XH‰L$H‰D$`H‰D$è����H‹L$ H‹D$(H‰Œ$°���H‰„$¸���HÄ ���É%����é$ÿÿÿ‰éÛþÿÿ‰éÌýÿÿ‰éxýÿÿ������8��0runtime.morestack_noctxt���¼��2runtime.writebarrieriface���Ê��"go.string." '%v'"���¾��fmt.Sprintf���°��*runtime.concatstring2���¢��type.int64���Ö��runtime.convT2E���´��2runtime.writebarrieriface���Â��Dgo.string." in record at byte %#x"���¶ ��fmt.Sprintf���¨
��*runtime.concatstring2���0À��"".autotmp_0032�¯"type.interface {}�"".autotmp_0031��*type.*[1]interface {}�"".autotmp_0030��&type.[]interface {}�"".autotmp_0028�/&type.[]interface {}�"".autotmp_0027��type.string�"".autotmp_0026��(type.[1]interface {}�"".autotmp_0025��type.string�"".autotmp_0024�type.string�"".autotmp_0023�o(type.[1]interface {}�"".autotmp_0022�Otype.string� "".msg�Ïtype.string� "".~r0�type.string�"".e��(type.*"".FormatError�)À¿À&�à�,¸I ˆ´ �"�ÝA9“p9M�Tgclocals·1ee14e32cec51f1cde6c2b0577d81887�Tgclocals·3c86d287e1db548c44e203138e0f4f0c���4c:/go/src/debug/pe/file.goþ"".Open�� ��ŽeH‹ %(���H‹‰����H;awè����ëãHƒìpHDŽ$�������HDŽ$˜�������H‹\$xH‰$H‹œ$€���H‰\$è����H‹T$H‹D$H‹L$ H‰L$HHƒø�H‰D$@t!HDŽ$ˆ�������H‰„$���H‰Œ$˜���HƒÄpÃH‰T$0H‰T$8H‹����1íH9è„%��H‹L$8H‰D$`H‰$H‰L$hH‰L$è����H‹L$0H‹\$H‰\$(H‹D$H‹\$ H‰\$HHƒø�H‰D$@t4H‰ $è����HDŽ$ˆ�������H‹\$@H‰œ$���H‹\$HH‰œ$˜���HƒÄpÃH‰L$8H‹����1íH9ètfH‹\$(H‰$Hƒ<$�tMHƒ$XH‹L$8H‰D$PH‰D$H‰L$XH‰L$è����H‹\$(H‰œ$ˆ���HDŽ$�������HDŽ$˜�������HƒÄpÉ%����ëªH����H‰$H����H‰\$H����H‰\$è����H‹D$éhÿÿÿH����H‰$H����H‰\$H����H‰\$è����H‹D$é©þÿÿ ������.��0runtime.morestack_noctxt��� ��os.Open���Â��8go.itab.*os.File.io.ReaderAt���’��"".NewFile���ö�� os.(*File).Close���ä��4go.itab.*os.File.io.Closer���Ø��2runtime.writebarrieriface���Ì��type.*os.File���â��type.io.Closer���ú��4go.itab.*os.File.io.Closer���Ž�� runtime.typ2Itab���°��type.*os.File���Æ�� type.io.ReaderAt���Þ��8go.itab.*os.File.io.ReaderAt���ò�� runtime.typ2Itab���Pà��"".autotmp_0042��type.*uint8�"".autotmp_0040��type.*os.File�"".autotmp_0039�otype.*os.File�
"".ff�type.*"".File� "".err�_type.error�"".f�type.*os.File� "".~r2�0type.error� "".~r1� type.*"".File�"".name��type.string�2!àrßà•ßàoßàv��4Ì9/ !W  +F*; ;��Oy2q[2�Tgclocals·4fe0598ad4972b80f2191c8a8c409635�Tgclocals·1b7c9c749f358654cd269d1888550406���4c:/go/src/debug/pe/file.goþ "".(*File).Close��à��ÊeH‹ %(���H‹‰����H;awè����ëãHƒì8H‹T$@HÇD$H����HÇD$P����1ÉH‰L$1ÀH‰D$ HƒzX�tEH‹JXH‹j`H‰l$0H‰,$H‰L$(H‹Y ÿÓH‹L$H‹D$H‹\$@Hƒû�t#HkXHÇE�����HÇE����H‰L$HH‰D$PHƒÄ8ÉëÙ������.��0runtime.morestack_noctxt���Î�
������0p�� "".err�?type.error� "".~r0�type.error�"".f��type.*"".File�!pop�°� î8&�
�gI�Tgclocals·a08e9001cb8f9d822225de3b8e406515�Tgclocals·44568aa369055d8938d809aa5d80843b���4c:/go/src/debug/pe/file.goþ"".NewFile��€}��ò|eH‹ %(���H‹‰����H„$ÐüÿÿH;Awè����ëÛHì°��HDŽ$Ð������HDŽ$Ø������H����H‰$è����H‹\$H‰œ$È���H‹œ$¸��H‰œ$ ��H‹œ$À��H‰œ$¨��HÇD$X����H»ÿÿÿÿÿÿÿH‰\$hH����H‰$è����H‹D$H‰„$ø���H‰$Hƒ<$�„h��H‹œ$ ��H‰\$H‹œ$¨��H‰\$è����H‹l$XH‹„$ø���H‰hH‰hL‹D$hLÅH‰h H‰„$¨���H����H‰$è����H‹l$H‰¬$X��Hƒý�„ñ��HÇÂ`���HÇÁ`���H‰¬$��H‰l$H‰”$��H‰T$H‰Œ$��H‰L$HÇD$ ����H‹œ$À��H‰$H‹œ$¸��H‹[ ÿÓH‹Œ$X��H‹D$0H‹T$8H‰”$8��Hƒø�H‰„$0��t$HDŽ$È������H‰„$Ð��H‰”$Ø��HÄ°��ö€ûM…:��¶Y€ûZ…-��H‰ÈHƒù�„��HÇÂ$���HÇÁ$���Hƒù�tHƒÀ<H‰ÅH‰ÐH‰ÊH‰¬$��H‰éH‰„$��H‰”$��H‰”$è��Hƒø�†Ä��¶]�Hƒø†¯��HÿŶm�Áå ëH‰ÍHƒø†��HƒÅ¶m�Áå ëH‰ÍH‰Œ$Ø��HƒøH‰„$à��†^��HƒÅ¶m�Áå ëH‰\$HH����H‰$è����H‹l$H‰¬$8��Hƒý�„��HÇÁ���HÇÂ���H‰¬$��H‰l$H‰Œ$��H‰L$H‰”$��H‰T$H‹\$HH‰\$ H‹œ$À��H‰$H‹œ$¸��H‹[ ÿÓH‹„$8��¶€ûP…ª��¶X€ûE…��¶X€û�…��¶X€û�…ƒ��H‹D$HHƒÀH‹œ$¨���H‰$H‰„$ˆ���H‰D$HÇD$����è����H‹œ$¨���H‰œ$ø���H‹œ$È���Hƒû�„*��H‰œ$0��H‹����H‰„$è���1íH9è„Î��H����H‰$H����H‰\$H����H‰\$H����H‰\$è����H\$ Hl$H‰ïH‰ÞH¥H¥H‹Œ$ø���H‹„$è���H‰„$��H‰$H‰Œ$˜��H‰L$H‹Œ$0��H����H‰„$€��H‰D$ H‰Œ$ˆ��H‰L$(è����H‹„$È���H‹L$0H‹T$8H‰”$��Hƒù�H‰Œ$���t$HDŽ$È������H‰Œ$Ð��H‰”$Ø��HÄ°��ÃH·fƒû�„$��H·fûd†„��H·fûL„��H����H‹+H‰¬$��H‹kH‰¬$˜��HDŽ$p������HDŽ$x������H����H‰$è����H‹D$H‰„$ð���H‰$Hƒ<$�„˜���H‹œ$��H‰\$H‹œ$˜��H‰\$è����H‹œ$ð���H‰œ$ð���H‹����1íH9èt,H‹”$ð���HDŽ$È������H‰„$Ð��H‰”$Ø��HÄ°��ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$륉%����é\ÿÿÿHDŽ$À������HDŽ$È������HDŽ$Ð������‹X ƒû�†»��H‹œ$¨���H‰$‹X‹h kíëH‰\$HÇD$����è����H����H‰$è����H‹D$H‹œ$¨���H‰œ$ø���H‰„$P��H‰„$(��H‹����H‰„$è���1íH9è„Î��H����H‰$H����H‰\$H����H‰\$H����H‰\$è����H\$ Hl$H‰ïH‰ÞH¥H¥H‹Œ$ø���H‹„$è���H‰„$��H‰$H‰Œ$˜��H‰L$H‹Œ$(��H����H‰„$€��H‰D$ H‰Œ$ˆ��H‰L$(è����H‹”$P��H‹D$0H‹L$8H‰Œ$è��Hƒø�H‰„$à��t$HDŽ$È������H‰„$Ð��H‰Œ$Ø��HÄ°��ÃH����H‰$‹*H‰l$‹*H‰l$è����H‹´$È���H‹T$H‹L$ H‹D$(H‰”$À��H‰T$H‰Œ$È��H‰L$H‰„$Ð��H‰D$‹^‹n kíëH‰\$ H‹œ$À��H‰$H‹œ$¸��H‹[ ÿÓH‹D$0H‹L$8H‰Œ$��Hƒø�H‰„$��t$HDŽ$È������H‰„$Ð��H‰Œ$Ø��HÄ°��ÃH‹œ$¨���H‰$H‹œ$È���‹kH‰l$HÇD$����è����ÆD$G�1ÀH‹œ$È���‹[ H‰D$xH9ÃŽC��H����H‰$è����H‹D$H‹œ$¨���H‰œ$ø���H‰„$Ð���H‰„$ ��H‹����H‰„$è���1íH9脺��H����H‰$H����H‰\$H����H‰\$H����H‰\$è����H\$ Hl$H‰ïH‰ÞH¥H¥H‹Œ$ø���H‹„$è���H‰„$��H‰$H‰Œ$˜��H‰L$H‹Œ$ ��H����H‰„$€��H‰D$ H‰Œ$ˆ��H‰L$(è����¶l$GH‹„$Ð���H‹L$0H‹T$8H‰”$X��Hƒù�H‰Œ$P��t$HDŽ$È������H‰Œ$Ð��H‰”$Ø��HÄ°��Ã@€ý�vH‰ëHÿˈ\$GH‹D$xHÿÀé‹þÿÿHDŽ$À������HDŽ$È������¶€û�…'��¶X€û�…��¶X€û�… ��¶X€û�…���HÇÂ���HÇÁ���Hƒù�tHƒÀH‰ÅH‰ÐH‰ÊH‰¬$��H‰éH‰„$��H‰”$��H‰”$���Hƒø�†«��¶]�Hƒø†–��HÿŶm�Áå ëH‰ÍHƒø†v��HƒÅ¶m�Áå ëH‰ÍH‰Œ$ð��HƒøH‰„$ø��†E��HƒÅ¶m�Áå ëH‰ØH‹œ$À��H‰$H‹œ$È��H‰\$H‹œ$Ð��H‰\$H‰D$è����H‹\$ H‰œ$À��H‹\$(H‰œ$È��H‹œ$Ð���¶k@ˆl$GH����H‰$è����H‹D$H‰„$à���H‰$Hƒ<$�„¢��H‹œ$À��H‰\$H‹œ$È��H‰\$è����H‹Œ$Ð���H‹„$à���Hƒø�„b��‹i‰hH·i f‰hH·if‰h¶i@ˆhH‰„$¸���H‹œ$È���Hƒû�„!��H‹S@H‹KHH‹[PH‰”$P��H‰Œ$X��H‰œ$`��H‰ØH)ËHƒû}OH����H‰$H‰”$8��H‰T$H‰Œ$@��H‰L$H‰„$H��H‰D$HÇD$ ���è����H‹T$(H‹L$0H‹D$8H‰ÎHÿÆH‰´$@��H‰„$H��H‰”$8��HÊH‰$H‹œ$¸���H‰\$è����H‹”$8��H‹Œ$@��H‹„$H��H‹œ$È���H‰$Hƒ<$�t6Hƒ$@H‰”$P��H‰T$H‰Œ$X��H‰L$H‰„$`��H‰D$è����éçüÿÿ‰%����ëÁ‰éØþÿÿ‰�é—þÿÿ‰%����éRþÿÿè���� è���� è���� è���� Hƒø�tXHÇÂ���HÇÁ���H‰„$��H‰$H‰”$��H‰T$H‰Œ$��H‰L$è����H‹L$H‹D$ H‰Œ$À��H‰„$È��é›ýÿÿ‰�ë¤H����H‰$H����H‰\$H����H‰\$è����H‹\$H‰œ$è���é ûÿÿH‹œ$¨���H‰$H‹œ$ˆ���H‰\$HÇD$����è����H‹œ$¨���H‰œ$ø���H‹œ$È���Hƒû�„<��H‰œ$0��H‹����H‰„$è���1íH9è„à��H����H‰$H����H‰\$H����H‰\$H����H‰\$è����H\$ Hl$H‰ïH‰ÞH¥H¥H‹Œ$ø���H‹„$è���H‰„$��H‰$H‰Œ$˜��H‰L$H‹Œ$0��H����H‰„$€��H‰D$ H‰Œ$ˆ��H‰L$(è����H‹D$0H‹L$8H‰Œ$ø��Hƒø�H‰„$ð��t$HDŽ$È������H‰„$Ð��H‰Œ$Ø��HÄ°��ÃH����H‰$è����H‹\$H‰œ$H��H����H‰$è����H‹”$¨���H‹L$H‹œ$È���H·kH‰èH‰ëH·-����f9ë…˜
��H‰”$ø���H‹œ$H��H‰œ$��H‹����H‰„$è���1íH9è„,
��H����H‰$H����H‰\$H����H‰\$H����H‰\$è����H\$ Hl$H‰ïH‰ÞH¥H¥H‹Œ$ø���H‹„$è���H‰„$��H‰$H‰Œ$˜��H‰L$H‹Œ$��H����H‰„$€��H‰D$ H‰Œ$ˆ��H‰L$(è����H‹Œ$H��H‹D$0H‹T$8H‰”$(��Hƒø�H‰„$ ��t$HDŽ$È������H‰„$Ð��H‰”$Ø��HÄ°��ÃH·fû „��Hœ$ ��HÇ����HÇC����Hœ$ ��H‰œ$Ø���H‹œ$Ø���Hƒû�„ß���HÇÂ���HÇÅ���H‰œ$ ��H‰”$(��H‰¬$0��H����H‰$H‰L$è����H‹D$H‹L$H‹œ$ ��H‰$H‰„$€��H‰D$H‰Œ$ˆ��H‰L$è����H����H,$H‰ïH‰ÞH¥H¥H‹œ$ ��H‰\$H‹œ$(��H‰\$H‹œ$0��H‰\$ è����H‹D$(H‹L$0HDŽ$È������H‰„$Ð��H‰Œ$Ø��HÄ°��ÉéÿÿÿH‹œ$È���H‰$Hƒ<$�„ð��Hƒ$H����H‰„$€��H‰D$H‰Œ$ˆ��H‰L$è����H����H‰$H‹œ$È���H·kH‰l$H‹œ$È���H·kH‰l$è����H‹\$H‰œ$h��H‹\$ H‰œ$p��H‹\$(H‰œ$x��H‹œ$È���H‰$Hƒ<$�„G��Hƒ$(H‹œ$h��H‰\$H‹œ$p��H‰\$H‹œ$x��H‰\$è����HDŽ$€�������H‹œ$È���H·[H‹¬$€���H9뎼��H����H‰$è����H‹\$H‰œ$��H‹œ$��H‰œ$°���H‹œ$¨���H‰œ$ø���H‹œ$°���H‰œ$��H‹����H‰„$è���1íH9è„��H����H‰$H����H‰\$H����H‰\$H����H‰\$è����H\$ Hl$H‰ïH‰ÞH¥H¥H‹Œ$ø���H‹„$è���H‰„$��H‰$H‰Œ$˜��H‰L$H‹Œ$��H����H‰„$€��H‰D$ H‰Œ$ˆ��H‰L$(è����H‹D$0H‹L$8H‰„$`��H‰Œ$h��Hƒ¼$`���t4HDŽ$È������H‹œ$`��H‰œ$Ð��H‹œ$h��H‰œ$Ø��HÄ°��ÃHDŽ$Ð������HDŽ$Ø������H‹œ$°���¶€û/…��H‹„$°���Hƒø�„t��HÇÂ���HÇÁ���Hƒù�tHÿÀH‰„$��H‰$H‰”$��H‰T$H‰Œ$��H‰L$è����H‹L$H‹D$ H‰Œ$°��H‰ $H‰„$¸��H‰D$è����H‹\$H‰\$PH‹œ$À��H‰$H‹œ$È��H‰\$H‹œ$Ð��H‰\$H‹\$PH‰\$è����H‹\$ H‰œ$Ð��H‹\$(H‰œ$Ø��H����H‰$è����H‹\$H‰œ$���H‹´$���H‰´$À���H5����H¬$€��H‰ïè����H‹œ$Ð��H‰œ$€��H‹œ$Ø��H‰œ$ˆ��H‹¬$°���‹]‰œ$��H‹¬$°���‹] ‰œ$”��H‹¬$°���‹]‰œ$˜��H‹¬$°���‹]‰œ$œ��H‹¬$°���‹]‰œ$ ��H‹¬$°���‹]‰œ$¤��H‹¬$°���H·] f‰œ$¨��H‹¬$°���H·]"f‰œ$ª��H‹¬$°���‹]$‰œ$¬��H����H‰$H‹œ$À���H‰\$Hƒ|$�„u��Hœ$€��H‰\$è����H‹œ$À���‹kH‰¬$˜���H‹œ$À���‹kH‰¬$���H‹œ$¸��H‰œ$°��H‹œ$À��H‰œ$¸��H‹œ$˜���H‰\$`H‹œ$���H‰\$pHDŽ$ �������H����H‰$è����H‹D$H‰„$ø���H‰$Hƒ<$�„¿��H‹œ$°��H‰\$H‹œ$¸��H‰\$è����H‹„$ø���H‹l$`H‰hH‹l$`H‰hH‹l$`L‹D$pLÅH‰h H‰„$ ���H‹œ$À���H‰$Hƒ<$�„J��Hƒ$@H‹œ$ ���H‰\$è����H‹����1íH9è„ï���H‹œ$À���H‰$Hƒ<$�„Ì���Hƒ$0H‹œ$À���H‹k@H‰¬$x��H‰„$p��H‹œ$p��H‰\$H‹œ$x��H‰\$è����H‹œ$È���Hƒû�tzH‹k(H‰¬$h��H‹k0H‰¬$p��H‹k8H‰¬$x��H‹œ$h��H‹¬$€���L‹„$p��L9Ås2HëH‰$H‹œ$À���H‰\$è����H‹œ$€���HÿÃH‰œ$€���é>úÿÿè���� ‰낉%����é(ÿÿÿH����H‰$H����H‰\$H����H‰\$è����H‹D$éßþÿÿ‰%����éªþÿÿ‰%����é5þÿÿ‰%����éýÿÿ‰�é…ûÿÿH‹´$°���Hƒþ�tXHÇÅ���HÇÂ���H‰´$��H‰4$H‰¬$��H‰l$H‰”$��H‰T$è����H‹T$H‹D$ H‰”$Ð��H‰„$Ø��éâûÿÿ‰ë¤H����H‰$H����H‰\$H����H‰\$è����H‹\$H‰œ$è���é«ùÿÿH‹œ$È���H‰œ$È��HDŽ$Ð������HDŽ$Ø������HÄ°��É%����é­øÿÿ‰%����éøÿÿH����H‰$H����H‰\$H����H‰\$è����H‹\$H‰œ$è���éšõÿÿH·-����f9è…ä÷ÿÿH‰”$ø���H‰Œ$@��H‰Œ$��H‹����H‰„$è���1íH9è„Š��H����H‰$H����H‰\$H����H‰\$H����H‰\$è����H\$ Hl$H‰ïH‰ÞH¥H¥H‹Œ$ø���H‹„$è���H‰„$��H‰$H‰Œ$˜��H‰L$H‹Œ$��H����H‰„$€��H‰D$ H‰Œ$ˆ��H‰L$(è����H‹Œ$@��H‹D$0H‹T$8H‰„$@��H‰”$H��Hƒ¼$@���t4HDŽ$È������H‹œ$@��H‰œ$Ð��H‹œ$H��H‰œ$Ø��HÄ°��ÃH·fû „��Hœ$ ��HÇ����HÇC����Hœ$ ��H‰œ$Ø���H‹œ$Ø���Hƒû�„ß���HÇÂ���HÇÅ���H‰œ$ ��H‰”$(��H‰¬$0��H����H‰$H‰L$è����H‹D$H‹L$H‹œ$ ��H‰$H‰„$€��H‰D$H‰Œ$ˆ��H‰L$è����H����H,$H‰ïH‰ÞH¥H¥H‹œ$ ��H‰\$H‹œ$(��H‰\$H‹œ$0��H‰\$ è����H‹D$(H‹L$0HDŽ$È������H‰„$Ð��H‰Œ$Ø��HÄ°��ÉéÿÿÿH‰Œ$��H‹œ$È���H‰$Hƒ<$�t8Hƒ$H‹Œ$��H����H‰„$€��H‰D$H‰Œ$ˆ��H‰L$è����é1õÿÿ‰%����ë¿H����H‰$H����H‰\$H����H‰\$è����H‹\$H‰œ$è���é<ýÿÿH����H‰$H����H‰\$H����H‰\$è����H‹\$H‰œ$è���éæðÿÿ‰é½ðÿÿH����H‰$H����H‰\$H����H‰\$è����H‹\$H‰œ$è���éøèÿÿH����H‰$H����H‰\$H����H‰\$è����H‹\$H‰œ$è���éøåÿÿ‰éÏåÿÿH����H‹+H‰¬$€��H‹kH‰¬$ˆ��HDŽ$`������HDŽ$h������H����H‰$è����H‹D$H‰„$ð���H‰$Hƒ<$�„˜���H‹œ$€��H‰\$H‹œ$ˆ��H‰\$è����H‹œ$ð���H‰œ$ð���H‹����1íH9èt,H‹Œ$ð���HDŽ$È������H‰„$Ð��H‰Œ$Ø��HÄ°��ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$륉%����é\ÿÿÿ‰E�éÛãÿÿè���� è���� è���� è���� ‰éàâÿÿ1ÀéNäÿÿ‰E�éâÿÿ‰%����éŒáÿÿü������>��0runtime.morestack_noctxt���Ž��type."".File��� ��"runtime.newobject���¸��*type.io.SectionReader���Ê��"runtime.newobject���À��2runtime.writebarrieriface��� ��type.[96]uint8���²��"runtime.newobject���”�
������ä
��type.[4]uint8���ö
��"runtime.newobject���Ú �
������¬��0io.(*SectionReader).Seek���Ž��Fgo.itab.*io.SectionReader.io.Reader���Â��Btype.encoding/binary.littleEndian���Ø��<type.encoding/binary.ByteOrder���ð��|go.itab.encoding/binary.littleEndian.encoding/binary.ByteOrder���ˆ��8encoding/binary.LittleEndian���œ��runtime.convT2I���´��&type.*"".FileHeader���ò��(encoding/binary.Read���ð��Fgo.string."Invalid PE File Format."���Ü��.type.errors.errorString���î��"runtime.newobject���ä��4runtime.writebarrierstring���’��Bgo.itab.*errors.errorString.error���†��0type.*errors.errorString���œ��type.error���´��Bgo.itab.*errors.errorString.error���È�� runtime.typ2Itab���¢��0io.(*SectionReader).Seek���°��type.uint32���Â��"runtime.newobject���š��Fgo.itab.*io.SectionReader.io.Reader���Î��Btype.encoding/binary.littleEndian���ä��<type.encoding/binary.ByteOrder���ü��|go.itab.encoding/binary.littleEndian.encoding/binary.ByteOrder���”��8encoding/binary.LittleEndian���¨��runtime.convT2I���À��type.*uint32���þ��(encoding/binary.Read���¤��type.[]uint8���Ò��"runtime.makeslice���¦ �
������þ!��0io.(*SectionReader).Seek���Ì"��$type."".COFFSymbol���Þ"��"runtime.newobject���¶#��Fgo.itab.*io.SectionReader.io.Reader���ê#��Btype.encoding/binary.littleEndian���€$��<type.encoding/binary.ByteOrder���˜$��|go.itab.encoding/binary.littleEndian.encoding/binary.ByteOrder���°$��8encoding/binary.LittleEndian���Ä$��runtime.convT2I���Ü%��&type.*"".COFFSymbol���š&��(encoding/binary.Read���Ê,��"".getString���®-��type."".Symbol���À-��"runtime.newobject���¶.��4runtime.writebarrierstring���Ì0��"type.[]*"".Symbol���¾1��"runtime.growslice���Ì2��.runtime.writebarrierptr���„4��2runtime.writebarrierslice���Þ4��$runtime.panicindex���ì4��$runtime.panicindex���ú4��$runtime.panicindex���ˆ5��$runtime.panicindex���Š6��"".cstring���Þ6��,type.*io.SectionReader���ô6��type.io.Reader���Œ7��Fgo.itab.*io.SectionReader.io.Reader��� 7�� runtime.typ2Itab���’8��0io.(*SectionReader).Seek���ô8��Fgo.itab.*io.SectionReader.io.Reader���¨9��Btype.encoding/binary.littleEndian���¾9��<type.encoding/binary.ByteOrder���Ö9��|go.itab.encoding/binary.littleEndian.encoding/binary.ByteOrder���î9��8encoding/binary.LittleEndian���‚:��runtime.convT2I���š;��&type.*"".FileHeader���Ø;��(encoding/binary.Read���î<��0type."".OptionalHeader32���€=��"runtime.newobject���¨=��0type."".OptionalHeader64���º=��"runtime.newobject���Š>��2"".sizeofOptionalHeader32���Ú>��Fgo.itab.*io.SectionReader.io.Reader���Ž?��Btype.encoding/binary.littleEndian���¤?��<type.encoding/binary.ByteOrder���¼?��|go.itab.encoding/binary.littleEndian.encoding/binary.ByteOrder���Ô?��8encoding/binary.LittleEndian���è?��runtime.convT2I���€A��2type.*"".OptionalHeader32���¾A��(encoding/binary.Read���ÀD��type.uint16���ÜD��runtime.convT2E���ÆE��2runtime.writebarrieriface���ÔE��zgo.string."pe32 optional header has unexpected Magic of 0x%x"���ÈF��fmt.Errorf���øG��2type.*"".OptionalHeader32���¶H��2runtime.writebarrieriface���ÄH��$type.[]*"".Section���žI��"runtime.makeslice���üJ��2runtime.writebarrierslice���ÞK��.type."".SectionHeader32���ðK��"runtime.newobject���øL��Fgo.itab.*io.SectionReader.io.Reader���¬M��Btype.encoding/binary.littleEndian���ÂM��<type.encoding/binary.ByteOrder���ÚM��|go.itab.encoding/binary.littleEndian.encoding/binary.ByteOrder���òM��8encoding/binary.LittleEndian���†N��runtime.convT2I���žO��0type.*"".SectionHeader32���ÜO��(encoding/binary.Read���ŽS��"".cstring���ÞS��strconv.Atoi���ÜT��"".getString���žU��type."".Section���°U��"runtime.newobject���øU��""".statictmp_0132���˜VØ� runtime.duffcopy���¶Y��*type."".SectionHeader���”Z��.runtime.writebarrierfat���ú[��*type.io.SectionReader���Œ\��"runtime.newobject���‚]��2runtime.writebarrieriface���Ä^��.runtime.writebarrierptr���Ò^��Jgo.itab.*io.SectionReader.io.ReaderAt���–`��2runtime.writebarrieriface���èa��.runtime.writebarrierptr���¢b��$runtime.panicindex���Ôb��,type.*io.SectionReader���êb�� type.io.ReaderAt���‚c��Jgo.itab.*io.SectionReader.io.ReaderAt���–c�� runtime.typ2Itab���Že��"".cstring���âe��,type.*io.SectionReader���øe��type.io.Reader���f��Fgo.itab.*io.SectionReader.io.Reader���¤f�� runtime.typ2Itab���æg��,type.*io.SectionReader���üg��type.io.Reader���”h��Fgo.itab.*io.SectionReader.io.Reader���¨h�� runtime.typ2Itab���Üh��2"".sizeofOptionalHeader64���¬i��Fgo.itab.*io.SectionReader.io.Reader���ài��Btype.encoding/binary.littleEndian���öi��<type.encoding/binary.ByteOrder���Žj��|go.itab.encoding/binary.littleEndian.encoding/binary.ByteOrder���¦j��8encoding/binary.LittleEndian���ºj��runtime.convT2I���Òk��2type.*"".OptionalHeader64���l��(encoding/binary.Read���¼o��type.uint16���Øo��runtime.convT2E���Âp��2runtime.writebarrieriface���Ðp��|go.string."pe32+ optional header has unexpected Magic of 0x%x"���Äq��fmt.Errorf���Œs��2type.*"".OptionalHeader64���Ês��2runtime.writebarrieriface���ôs��,type.*io.SectionReader���Št��type.io.Reader���¢t��Fgo.itab.*io.SectionReader.io.Reader���¶t�� runtime.typ2Itab���èt��,type.*io.SectionReader���þt��type.io.Reader���–u��Fgo.itab.*io.SectionReader.io.Reader���ªu�� runtime.typ2Itab���êu��,type.*io.SectionReader���€v��type.io.Reader���˜v��Fgo.itab.*io.SectionReader.io.Reader���¬v�� runtime.typ2Itab���Þv��,type.*io.SectionReader���ôv��type.io.Reader���Œw��Fgo.itab.*io.SectionReader.io.Reader��� w�� runtime.typ2Itab���àw��Fgo.string."Invalid PE File Format."���Ìx��.type.errors.errorString���Þx��"runtime.newobject���Ôy��4runtime.writebarrierstring���‚z��Bgo.itab.*errors.errorString.error���öz��0type.*errors.errorString���Œ{��type.error���¤{��Bgo.itab.*errors.errorString.error���¸{�� runtime.typ2Itab���ø{��$runtime.panicindex���†|��$runtime.panicindex���”|��$runtime.panicindex���¢|��$runtime.panicindex���Pà��ö"".autotmp_0137��type.*uint8�"".autotmp_0136��,type.*io.SectionReader�"".autotmp_0135��,type.*io.SectionReader�"".autotmp_0134�¿ type.int64�"".autotmp_0133�¯ type.int64�"".autotmp_0131��type.*[8]uint8�"".autotmp_0130��type.*[8]uint8�"".autotmp_0129��type.*uint8�"".autotmp_0128��"type.interface {}�"".autotmp_0127��*type.*[1]interface {}�"".autotmp_0126��&type.[]interface {}�"".autotmp_0125��type.*uint8�"".autotmp_0124��"type.interface {}�"".autotmp_0123�¯ *type.*[1]interface {}�"".autotmp_0122�Ÿ&type.[]interface {}�"".autotmp_0121��type.*uint8�"".autotmp_0119��type.*uint8�"".autotmp_0116��type.int�"".autotmp_0115��type.int�"".autotmp_0114�ï"type.[]*"".Symbol�"".autotmp_0113�¿"type.[]*"".Symbol�"".autotmp_0112�Ÿ type.*"".Symbol�"".autotmp_0111��type.*[8]uint8�"".autotmp_0110��type.uint32�"".autotmp_0108��type.[]uint8�"".autotmp_0107��type.*uint8�"".autotmp_0106��type.*uint8�"".autotmp_0105��type.*uint8�"".autotmp_0104��type.error�"".autotmp_0103��0type.*errors.errorString�"".autotmp_0102��type.*uint8�"".autotmp_0101� type.*uint8�"".autotmp_0099�ÿ
0type.*errors.errorString�"".autotmp_0096��type.*[96]uint8�"".autotmp_0095��type.[]uint8�"".autotmp_0093�ï
,type.*io.SectionReader�"".autotmp_0092��,type.*io.SectionReader�"".autotmp_0091��type.int�"".autotmp_0090�_*type."".SectionHeader�"".autotmp_0089�ß
 type.*"".Section�"".autotmp_0088��type.string�"".autotmp_0087��type.string�"".autotmp_0086��type.error�"".autotmp_0085��0type.*"".SectionHeader32�"".autotmp_0084��,type.*io.SectionReader�"".autotmp_0083�Ï
0type.*"".SectionHeader32�"".autotmp_0082�$type.[]*"".Section�"".autotmp_0081��2type.*"".OptionalHeader64�"".autotmp_0080��type.error�"".autotmp_0079��(type.[1]interface {}�"".autotmp_0078��type.error�"".autotmp_0077�¿
2type.*"".OptionalHeader64�"".autotmp_0076��,type.*io.SectionReader�"".autotmp_0075��2type.*"".OptionalHeader32�"".autotmp_0074��type.error�"".autotmp_0073�Ÿ(type.[1]interface {}�"".autotmp_0072��type.error�"".autotmp_0071�¯
2type.*"".OptionalHeader32�"".autotmp_0070��,type.*io.SectionReader�"".autotmp_0069��type.error�"".autotmp_0068��&type.*"".FileHeader�"".autotmp_0067��,type.*io.SectionReader�"".autotmp_0066��type.int�"".autotmp_0065��"type.[]*"".Symbol�"".autotmp_0064�ÿtype.string�"".autotmp_0062��type.error�"".autotmp_0061��&type.*"".COFFSymbol�"".autotmp_0060��,type.*io.SectionReader�"".autotmp_0059�Ÿ
&type.*"".COFFSymbol�"".autotmp_0058��type.[]uint8�"".autotmp_0057��type.error�"".autotmp_0056�
type.*uint32�"".autotmp_0055��,type.*io.SectionReader�"".autotmp_0054��0type.*errors.errorString�"".autotmp_0053��type.error�"".autotmp_0052�ÿ &type.*"".FileHeader�"".autotmp_0051��,type.*io.SectionReader�"".autotmp_0050��0type.*errors.errorString�"".&oh64�ß 2type.*"".OptionalHeader64�"".&oh32�Ï 2type.*"".OptionalHeader32�
"".&l�¿ type.*uint32�"".&sign�ï type.*[4]uint8�"".&dosheader�¯ type.*[96]uint8� "".~r0�Ÿ ,type.*io.SectionReader�io.n·4�ÿ type.int64�io.off·3�Ÿ type.int64�io.r·2�ÿ type.io.ReaderAt�(encoding/binary.b·2�ÿtype.[]uint8� "".~r0�ÿtype.error�errors.text·2�¿type.string� "".~r0�Ÿ type.error�errors.text·2�ßtype.string�(encoding/binary.b·2�¯type.[]uint8�io.n·4� type.int64�io.off·3�¯ type.int64�io.r·2�Ÿ type.io.ReaderAt�"".s�ß  type.*"".Section�
"".si�¿ type.int�"".name�¿type.string� "".err�Ÿtype.error�
"".sh�ÿ 0type.*"".SectionHeader32�"".i�ß type.int� "".err�ßtype.error� "".err�Ÿtype.error� "".err�ÿtype.error�"".s�ï type.*"".Symbol�"".name�ßtype.string� "".err�¿type.error�
"".cs�¿ &type.*"".COFFSymbol�"".i�ï type.int� "".aux�Ñ type.uint8� "".err�¿type.error� "".err�Ÿtype.error�
"".ss�ßtype.[]uint8� "".err�ßtype.error�"".signoff�Ï type.int64�"".base�Ï type.int64� "".err�ÿtype.error�
"".sr� ,type.*io.SectionReader�"".f�Ï type.*"".File� "".~r2�0type.error� "".~r1� type.*"".File�"".r�� type.io.ReaderAt�Ò,à«ßàðßàößàÎßàÉßàˆßàÑ
ßàúßà¦ßàôßàŒ ßà”ßà¦ßà£ßàˆ�À>�æŒD¬’$¾s3 '‹$,†$ *$5q$*†$
3¯J … ¥/0Y:6'ƒ$ù$ŸB£*-þ4†O-•˜ii56 > !a:60;  :þ4ŸN :AQ:A †#�ž�OU;9r°shx k ¾;߃kjkŽkÓ;ÄG\ -V"K9xkq—kÏvwè&kê²|;aÒ1:N| K‚ ‰
kävƒ6: A:_;’ E�Tgclocals·9e1d5460dbde85e8c55586d19eda5262�Tgclocals·2e6203f4d6902adeadc161f535d54976���4c:/go/src/debug/pe/file.goþ"".cstring��à��àeH‹ %(���H‹‰����H;awè����ëãHƒì@H‹t$HH‹T$PHÇD$`����HÇD$h����1ÀH9Ð}H9Ðs`H¶€û�tHÿÀH9Ð|çH‹L$XH9Ár;H‰t$(H‰4$H‰D$0H‰D$H‰L$8H‰L$è����H‹\$H‰\$`H‹\$ H‰\$hHƒÄ@Ãè���� è����
������.��0runtime.morestack_noctxt���Š��2runtime.slicebytetostring���Æ��$runtime.panicslice���Ô��$runtime.panicindex���P€��"".autotmp_0210��type.int� "".~r1�0type.string�"".b��type.[]uint8�!€€€�°�”= L� �„,�Tgclocals·5dfce38b1d248a3900c6ec750de77702�Tgclocals·0528ab8f76149a707fd2f0025c2178a3���4c:/go/src/debug/pe/file.goþ"".getString��€��êeH‹ %(���H‹‰����H;awè����ëãHƒì@L‹L$`H‹t$HH‹T$PHÇD$h����HÇD$p����Iƒù�ŒÍ���I9эÄ���L‰ÈH9Ѝ•���H9Ѓ¨���H¶€û�utH‹|$XH9ÇrcL9Èr^H‰ñH‰ÆL)ÎH‰úL)ÊHƒú�t L‰ËHËH‰ÙH‰L$(H‰ $H‰t$0H‰t$H‰T$8H‰T$è����H‹\$H‰\$hH‹\$ H‰\$pÆD$xHƒÄ@Ãè���� HÿÀH9ÐŒkÿÿÿHÇD$h����HÇD$p����ÆD$x�HƒÄ@Ãè���� HÇD$h����HÇD$p����ÆD$x�HƒÄ@Ã
������.��0runtime.morestack_noctxt���‚��2runtime.slicebytetostring���È��$runtime.panicslice���¦��$runtime.panicindex���p€�� "".autotmp_0220��type.int�"".autotmp_0219��type.int� "".~r3�`type.bool� "".~r2�@type.string�"".start�0type.int�"".section��type.[]uint8�&!€Á€.€" �À�(¤B t
'��À€�Tgclocals·635188a3eaa452a9088a5cb4502f3dc9�Tgclocals·0528ab8f76149a707fd2f0025c2178a3���4c:/go/src/debug/pe/file.goþ$"".(*File).Section��À��¸eH‹ %(���H‹‰����H;awè����ëãHƒìpH‹¼$ˆ���H‹\$xHƒû�„Ý���H‹K(H‹C0H‹k8H‰l$h1ÒH‰D$`H‰D$(H‰L$XH‹l$(H9ꍕ���H‰L$@H‹H‰T$0H‰\$8Hƒû�„Š���H‹3H‹CH9øuXH‰t$HH‰4$H‰D$PH‰D$H‹¬$€���H‰l$H‰|$è����H‹¼$ˆ���H‹T$0H‹L$@¶\$ €û�tH‹\$8H‰œ$���HƒÄpÃHƒÁHÿÂH‹l$(H9êŒkÿÿÿHDŽ$�������HƒÄpÉéoÿÿÿ‰éÿÿÿ������.��0runtime.morestack_noctxt���ì�� runtime.eqstring���@à��"".autotmp_0233�Otype.string�"".autotmp_0231�_"type.**"".Section�"".autotmp_0230�type.int�"".autotmp_0229�type.int�"".autotmp_0228�/$type.[]*"".Section�"".s�o type.*"".Section� "".~r1�0 type.*"".Section�"".name�type.string�"".f��type.*"".File�&!àÆßà%ßà� �$Â)La
 � �µk�Tgclocals·9ff42bf311af152488d11f0f78c8d5ce�Tgclocals·283619d6755c7337ece602447ba790ff���4c:/go/src/debug/pe/file.goþ "".(*File).DWARF��À��¼eH‹ %(���H‹‰����H„$þÿÿH;Awè����ëÛHìh��HDŽ$€������HDŽ$ˆ������H¼$À��1Àè����Hœ$À��H-����H‰ßH‰îH¥H¥Hœ$À��HƒÃH-����H‰ßH‰îH¥H¥Hœ$À��HƒÃ H-����H‰ßH‰îH¥H¥H¼$ ��1Àè����Hœ$À��H¬$ð��H‰ïH‰Þè����1ÀHDŽ$à������Hœ$ð��H‰ÙH‹¬$à���H9èÚ���H‰ÎH‰Œ$ø���Hƒù�„H��H‹ H‹~H‰„$è���H‰„$Ø���H‰Œ$ ��H‰¼$(��H‰øH5����H<$H¥H¥H‰Œ$���H‰L$H‰„$��H‰D$è����H‹L$ H‹D$(H‹œ$p��H‰$H‰Œ$���H‰L$H‰„$��H‰D$è����H‹D$1íH9è…é��H‹Œ$ø���H‹„$è���HƒÁHÿÀH‹¬$à���H9èŒ&ÿÿÿH‹¼$8��H‹´$@��H‹¬$H��H‹”$P��H‹Œ$X��H‹„$`��L‹”$ ��L‹Œ$(��L‹„$0��H‰¼$��H‰´$˜��H‰¬$ ��H‰”$x��H‰Œ$€��H‰„$ˆ��L‰”$¨��L‰$L‰Œ$°��L‰L$L‰„$¸��L‰D$H\$HÇ����HÇC����HÇC����H\$0HÇ����HÇC����HÇC����H‰¼$H��H‰|$HH‰´$P��H‰t$PH‰¬$X��H‰l$XH\$`HÇ����HÇC����HÇC����H\$xHÇ����HÇC����HÇC����Hœ$���HÇ����HÇC����HÇC����H‰”$0��H‰”$¨���H‰Œ$8��H‰Œ$°���H‰„$@��H‰„$¸���è����H‹”$À���H‹Œ$È���H‹„$Ð���H‰”$x��H‰Œ$€��H‰„$ˆ��HÄh��ÃH‰„$ð���H‰$è����H‹|$H‹L$H‹t$H‹T$ L‹L$(L‰Œ$��Hƒú�H‰”$��t6L‹„$ð���‰ËA‹h9ës$HDŽ$x������H‰”$€��L‰Œ$ˆ��HÄh��ÃHœ$ ��H‹¬$Ø���Hƒýs/HkíHëH‰¼$`��H‰;H‰Œ$h��H‰KH‰´$p��H‰sé\ýÿÿè���� ‰é±üÿÿ������>��0runtime.morestack_noctxt���žè� runtime.duffzero���¼��$go.string."abbrev"���ö�� go.string."info"���°��go.string."str"���âÜ� runtime.duffzero���˜Ø� runtime.duffcopy���ø��&go.string.".debug_"���Æ��*runtime.concatstring2���°��$"".(*File).Section���² ��debug/dwarf.New���Ä��$"".(*Section).Data���¢��$runtime.panicindex���@Ð ��("".autotmp_0244�ßtype.[]uint8�"".autotmp_0243�¯type.[]uint8�"".autotmp_0242�type.string�"".autotmp_0241�ßtype.*string�"".autotmp_0240�type.int�"".autotmp_0239�ÿtype.int�"".autotmp_0234�ïtype.[3]string� "".str�ïtype.[]uint8�"".info�¿type.[]uint8�"".abbrev�ÿtype.[]uint8� "".err�¯type.error�"".b�type.[]uint8�"".s�ï type.*"".Section�"".name�Ïtype.string�"".i�Ÿtype.int� "".dat�type.[3][]uint8�"".names�Ïtype.[3]string� "".~r1� type.error� "".~r0�,type.*debug/dwarf.Data�"".f��type.*"".File�&,Ð èÏ Ð uÏ Ð U�à�LÔDb„80 (xÉ2 $@ ��âöI¯�Tgclocals·afd56e89fe406cd8321967b6f2c293ef�Tgclocals·251ec3272f7ac67161ed0565e156e1df���4c:/go/src/debug/pe/file.goþ4"".(*File).ImportedSymbols��à4��Ì4eH‹ %(���H‹‰����H„$@þÿÿH;Awè����ëÛHì@��1ÀH¼$È��è����H‹„$H��HDŽ$P������HDŽ$X������HDŽ$`������HDŽ$h������HDŽ$p������H·fûd†„Ž ��ÆD$G�H‰$H����Hl$H‰ïH‰ÞH¥H¥è����H‹D$1íH9èuDHDŽ$P������HDŽ$X������HDŽ$`������HDŽ$h������HDŽ$p������HÄ@��ÃH‰D$XH‰$è����H‹t$H‰´$Ø���L‹\$H‹T$H‰”$è���H‹D$ H‹L$(H‰Œ$���Hƒø�H‰„$ˆ���t<HDŽ$P������HDŽ$X������HDŽ$`������H‰„$h��H‰Œ$p��HÄ@��ÃE1ÒL‰”$À���E1ÉL‰Œ$È���E1ÀL‰„$Ð���L‰œ$à���Iƒû�ŽI��H¼$È��1Àè����Hƒú‚> ��HÇÇ���H‰”$��Hƒÿ�† ��¶H‰õHƒÿ† ��HÿŶm�Áå ëH‰õHƒÿ†ç
��HƒÅ¶m�Áå ëH‰õH‰´$��HƒÿH‰¼$��†¶
��HƒÅ¶m�Áå 뉜$È��Hƒú‚‘
��H‰ðHÇÅ���H‰ÑHƒé Hƒù�tHƒÀ H‰ÇH‰èH‰Œ$���Hƒý�†W
��¶H‰ýHƒø†@
��HÿŶm�Áå ëH‰ýHƒø†
��HƒÅ¶m�Áå ëH‰ýH‰¼$ð���HƒøH‰„$ø���†ï ��HƒÅ¶m�Áå 뉜$Ô��Hƒú‚Ê ��H‰ðHÇÅ���H‰ÑHƒéHƒù�tHƒÀH‰ÇH‰èH‰¼$€��H‰¬$ˆ��H‰Œ$��H‰Œ$H��Hƒý�†x ��¶H‰ýHƒø†a ��HÿŶm�Áå ëH‰ýHƒø†A ��HƒÅ¶m�Áå ëH‰ýH‰¼$8��HƒøH‰„$@��† ��HƒÅ¶m�Áå 뉜$Ø��H‰ÕIƒû‚è��H‰ðL‰ÚHƒêH‰éHƒéHƒù�tHƒÀH‰„$Ø���H‰”$à���H‰Œ$è���‹œ$È��ƒû�…§��H‹\$XH‰$è����H‹\$H‰œ$¨���H‹\$H‰œ$°���H‹\$H‰œ$¸���HDŽ$°������HDŽ$¸������HDŽ$À������H‹Œ$À���H‹„$È���H‹œ$Ð���H‰œ$¨��1ÒH‰„$ ��H‰D$HH‰Œ$˜��H‰ÈH‹l$HH9êô��H‰D$`Hƒø�„ð��H¬$��H‰ïH‰Æè����H‰T$PHœ$��H¬$ð��H‰ïH‰Þè����H‹œ$¨���H‰$H‹œ$°���H‰\$H‹œ$¸���H‰\$‹œ$ü��L‹D$XA‹h)ëH‰\$è����Hœ$��Hl$ H‰ßH‰îH¥H¥H‹\$XH‰$è����H‹t$H‹T$H‹|$‹„$ð��L‹D$XA‹h)è‹ØH9Ú‚#��H‰ñH‰ÖH)ÞH‰úH)ÚHƒú�tHËH‰ÙI‰ÈH‰Œ$Ø���H‰´$à���H‰×H‰”$è���H‹œ$à���Hƒû�Žµ���€|$G�„ð��Hƒÿ‚ß��H$H����HÇÁ���L‰„$€��L‰$H‰Œ$ˆ��H‰L$H‰¼$��H‰|$è����H‹D$H‹¬$è���H‹”$à���Hƒú‚|��H‹Œ$Ø���H‰ÖHƒîH‰êHƒêHƒú�tHƒÁI‰ÈH‰Œ$Ø���H‰´$à���H‰×H‰”$è���Hƒø�uoH‹D$`H‹T$PHƒÀ(HÿÂH‹l$HH9êŒ þÿÿH‹œ$°��H‰œ$P��H‹œ$¸��H‰œ$X��H‹œ$À��H‰œ$`��HDŽ$h������HDŽ$p������HÄ@��ÃH»�������€H!ÃHƒû�‡³þÿÿH‹œ$¨���H‰$H‹œ$°���H‰\$H‹œ$¸���H‰\$L‹D$X‰ÃA‹h)ëƒÃH‰\$è����H‹L$ H‹D$(H‰L$xH‰ $H‰„$€���H‰D$H����Hl$H‰ïH‰ÞH¥H¥Hœ$��Hl$ H‰ïH‰ÞH¥H¥è����H‹\$0H‰œ$˜���H‹\$8H‰œ$ ���H‹”$°��H‹Œ$¸��H‹„$À��H‰ÃH)ËHƒû}OH����H‰$H‰”$P��H‰T$H‰Œ$X��H‰L$H‰„$`��H‰D$HÇD$ ���è����H‹T$(H‹L$0H‹D$8H‰ÍHÿÅH‰ÓH‰¬$X��H‰„$`��H‰”$P��H‰ÍHkíHëH‰$H‹œ$˜���H‰\$H‹œ$ ���H‰\$è����L‹„$Ø���H‹¼$è���H‹”$P��H‹Œ$X��H‹„$`��H‰”$°��H‰Œ$¸��H‰„$À��éýÿÿè���� è���� Hƒÿ‚Ì��HÇÀ���L‰„$€��H‰„$ˆ��H‰¼$��H‰¼$0��Hƒø�†”��A¶L‰ÅHƒø†|��HÿŶm�Áå ëL‰ÅHƒø†\��HƒÅ¶m�Áå ëL‰ÅL‰„$ ��HƒøH‰„$(��†+��HƒÅ¶m�H‹”$à���Áå ë‰ØHƒú‚��L‰ÁH‰ÕHƒíH‰úHƒêHƒú�tHƒÁI‰ÈH‰Œ$Ø���H‰¬$à���H‰×H‰”$è���ƒø�„Èüÿÿ‰Ãã���€ƒû�‡ðûÿÿH‹œ$¨���H‰$H‹œ$°���H‰\$H‹œ$¸���H‰\$H‹l$X‹]‰Å)݉ëƒÃH‰\$è����H‹L$ H‹D$(H‰L$hH‰ $H‰D$pH‰D$H����Hl$H‰ïH‰ÞH¥H¥Hœ$��Hl$ H‰ïH‰ÞH¥H¥è����H‹\$0H‰œ$˜���H‹\$8H‰œ$ ���H‹”$°��H‹Œ$¸��H‹„$À��H‰ÃH)ËHƒû}OH����H‰$H‰”$P��H‰T$H‰Œ$X��H‰L$H‰„$`��H‰D$HÇD$ ���è����H‹T$(H‹L$0H‹D$8H‰ÍHÿÅH‰ÓH‰¬$X��H‰„$`��H‰”$P��H‰ÍHkíHëH‰$H‹œ$˜���H‰\$H‹œ$ ���H‰\$è����L‹„$Ø���H‹¼$è���H‹”$P��H‹Œ$X��H‹„$`��H‰”$°��H‰Œ$¸��H‰„$À��é@úÿÿè���� è���� è���� è���� è���� è���� è���� ‰�é ùÿÿL‰ÒL‰ÉL‰ÀL‰ÃL)ËHƒû}OH����H‰$H‰”$h��H‰T$H‰Œ$p��H‰L$H‰„$x��H‰D$HÇD$ ���è����H‹T$(H‹L$0H‹D$8H‰ÎHÿÆH‰´$p��H‰„$x��H����H‰$H‰ÓH‰”$h��H‰ÍHkí(HëH‰\$Hœ$È��H‰\$è����L‹œ$à���H‹´$Ø���H‹”$è���L‹”$h��L‹Œ$p��L‹„$x��L‰”$À���L‰Œ$È���L‰„$Ð���é�õÿÿè���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� ÆD$Gémóÿÿn������>��0runtime.morestack_noctxt���nì� runtime.duffzero���´��$go.string.".idata"���Ü��$"".(*File).Section���˜��$"".(*Section).Data���’ì� runtime.duffzero���¢��$"".(*Section).Data���Œô� runtime.duffcopy���Ìô� runtime.duffcopy���Ð��"".getString���š��$"".(*Section).Data���È��8encoding/binary.LittleEndian���¬��Fencoding/binary.littleEndian.Uint64���þ��"".getString���Ì��go.string.":"���¢��*runtime.concatstring3���¬��type.[]string���ž ��"runtime.growslice���Ø!��4runtime.writebarrierstring���ì"��$runtime.panicslice���ú"��$runtime.panicslice���†(��"".getString���Î(��go.string.":"���¤)��*runtime.concatstring3���®*��type.[]string��� +��"runtime.growslice���Ú,��4runtime.writebarrierstring���î-��$runtime.panicslice���ü-��$runtime.panicindex���Š.��$runtime.panicindex���˜.��$runtime.panicindex���¦.��$runtime.panicindex���´.��$runtime.panicslice���Â.��$runtime.panicslice���Œ/��2type.[]"".ImportDirectory���þ/��"runtime.growslice���Ö0��.type."".ImportDirectory���¶1��.runtime.writebarrierfat���Ú2��$runtime.panicslice���è2��$runtime.panicindex���ö2��$runtime.panicindex���„3��$runtime.panicindex���’3��$runtime.panicindex��� 3��$runtime.panicslice���®3��$runtime.panicindex���¼3��$runtime.panicindex���Ê3��$runtime.panicindex���Ø3��$runtime.panicindex���æ3��$runtime.panicslice���ô3��$runtime.panicindex���‚4��$runtime.panicindex���4��$runtime.panicindex���ž4��$runtime.panicindex���¬4��$runtime.panicslice���`€ ��€"".autotmp_0296��type.uint64�"".autotmp_0295��type.uint64�"".autotmp_0294��type.int�"".autotmp_0293��type.int�"".autotmp_0292��type.[]string�"".autotmp_0291��type.string�"".autotmp_0290��type.uint64�"".autotmp_0289��type.uint64�"".autotmp_0288��type.uint32�"".autotmp_0287��type.uint64�"".autotmp_0286��type.[]uint8�"".autotmp_0285��type.uint64�"".autotmp_0284��type.uint64�"".autotmp_0283��type.int�"".autotmp_0282��type.int�"".autotmp_0281�ßtype.[]string�"".autotmp_0280�Ïtype.string�"".autotmp_0279��type.uint64�"".autotmp_0278��type.uint64�"".autotmp_0277��type.uint64�"".autotmp_0275��type.uint64�"".autotmp_0274��type.uint64�"".autotmp_0273��type.uint32�"".autotmp_0272�O.type."".ImportDirectory�"".autotmp_0271�¿0type.*"".ImportDirectory�"".autotmp_0270��type.int�"".autotmp_0269��type.int�"".autotmp_0268��type.uint64�"".autotmp_0267��type.uint64�"".autotmp_0266��type.int�"".autotmp_0265��type.int�"".autotmp_0264�¯2type.[]"".ImportDirectory�"".autotmp_0262��type.uint64�"".autotmp_0261��type.uint32�"".autotmp_0260��type.uint64�"".autotmp_0259��type.[]uint8�"".autotmp_0258��type.uint32�"".autotmp_0257��type.uint64�"".autotmp_0256��type.[]uint8�"".autotmp_0253�ÿtype.[]uint8�"".autotmp_0252��type.[]string�"".autotmp_0250��type.uint64�"".autotmp_0249��type.int�"".autotmp_0248��2type.[]"".ImportDirectory�"".autotmp_0247�Ï2type.[]"".ImportDirectory�"".autotmp_0246�ßtype.int�(encoding/binary.b·2�¿type.[]uint8�(encoding/binary.b·2�type.[]uint8�(encoding/binary.b·2�Ÿtype.[]uint8�(encoding/binary.b·2�ïtype.[]uint8�
"".fn�¯type.string�
"".fn�type.string�
"".dt�Ÿ.type."".ImportDirectory� "".all�Ÿtype.[]string�"".names�¯type.[]uint8�
"".dt�ï.type."".ImportDirectory� "".ida�ÿ2type.[]"".ImportDirectory� "".err�ïtype.error�"".d�Ïtype.[]uint8�
"".ds�Ï type.*"".Section�"".pe64�ñtype.bool� "".~r1�@type.error� "".~r0�type.[]string�"".f��type.*"".File�8,€ Õÿ€ ˆÿ€ à
ÿ€ Ä �°�ôŠ$D?<!Š¤¼@
5$ŠYV LXFP-Jã—C Kà/#ù
###�T�­^…—îù]JÍ Í]Jˆ\R„�Tgclocals·bb7796bbb1cd5ffc09c5ac6ace603d00�Tgclocals·2b889644d55fd50bd4f6e870ae47b1a3���4c:/go/src/debug/pe/file.goþ8"".(*File).ImportedLibraries��`��\HÇD$����HÇD$����HÇD$ ����HÇD$(����HÇD$0����Ã�`��� "".~r1�@type.error� "".~r0�type.[]string�"".f��type.*"".File�0�0�”0��Tgclocals·13c015770347481bee7a16dde25a3e2f�Tgclocals·3280bececceccd33cb74587feedb1f9f���4c:/go/src/debug/pe/file.goþ"".init��à��ÂeH‹ %(���H‹‰����H„$þÿÿH;Awè����ëÛHìð��¶����€û�t¶����€ûuHÄð��Ãè���� Æ����è����è����è����è����è����è����H|$ 1Àè����H����H‰$H\$ H‰\$è����H\$H,$H‰ïH‰ÞH¥H¥è����H‹\$f‰����H¼$���1Àè����H����H‰$Hœ$���H‰\$è����H\$H,$H‰ïH‰ÞH¥H¥è����H‹\$f‰����Æ����HÄð��Ã.������>��0runtime.morestack_noctxt���^��"".initdone·���v��"".initdone·���š��"runtime.throwinit���ª�"".initdone·���¶��strconv.init���À��os.init���Ê��io.init���Ô��fmt.init���Þ��(encoding/binary.init���è�� debug/dwarf.init���€� runtime.duffzero���Ž��0type."".OptionalHeader32���´��runtime.convT2E���ä��(encoding/binary.Size���ü��2"".sizeofOptionalHeader32���šˆ� runtime.duffzero���¨��0type."".OptionalHeader64���Ô��runtime.convT2E���„��(encoding/binary.Size���œ��2"".sizeofOptionalHeader64���¨�"".initdone·����à��"".autotmp_0337��type.int�"".autotmp_0336�ß0type."".OptionalHeader64�"".autotmp_0334�Ÿ0type."".OptionalHeader32� ,àßàÔß�xš�Žx JP
� �Lä�Tgclocals·3280bececceccd33cb74587feedb1f9f�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/debug/pe/pe.go4c:/go/src/debug/pe/file.goþ6type..hash."".SectionHeader�À��¸eH‹ %(���H‹‰����H;awè����ëãHƒì H‹\$(H‰$Hƒ<$�tbHÇD$���H‹\$8H‰\$è����H‹D$H‹\$(H‰$Hƒ<$�t,Hƒ$HÇD$ ���H‰D$8H‰D$è����H‹\$H‰\$@HƒÄ É%����ëˉ%����ë•������.��0runtime.morestack_noctxt���Š��runtime.strhash���î��runtime.memhash���@@��
"".autotmp_0339��type.uintptr� "".~r3�0type.uintptr�"".h� type.uintptr�"".s�type.uintptr�"".p��,type.*"".SectionHeader�!@h?@� � �
�D\�Tgclocals·2dc77d960dd3e4b3de2361f9cbd75783�Tgclocals·3280bececceccd33cb74587feedb1f9f���4c:/go/src/debug/pe/file.goþ2type..eq."".SectionHeader�à��ÔeH‹ %(���H‹‰����H;awè����ëãHƒìHH‹\$PHƒû�„3��H‹3H‹KH‹\$XHƒû�„��H‹H‹CH9Á…ü���H‰t$8H‰4$H‰L$@H‰L$H‰T$(H‰T$H‰D$0H‰D$è����¶\$ €û�„Â���H‹\$PH‰$Hƒ<$�„¢���Hƒ$H‹\$XH‰\$Hƒ|$�tHƒD$HÇD$ ���è����H‹\$PH‰$Hƒ<$�tRHƒ$H‹\$XH‰\$Hƒ|$�t2HƒD$HÇD$ ���è����¶\$€û�u
ÆD$h�HƒÄHÃÆD$hHƒÄHÉ%����ëʼn%����륉%����éuÿÿÿ‰%����éRÿÿÿÆD$h�HƒÄHÉéãþÿÿ‰éÆþÿÿ
������.��0runtime.morestack_noctxt���ü�� runtime.eqstring���–�� runtime.memequal���Œ�� runtime.memequal���@�� "".autotmp_0342�?type.string�"".autotmp_0341�type.string� "".~r3�0type.bool�"".s� type.uintptr�"".q�,type.*"".SectionHeader�"".p��,type.*"".SectionHeader�2!ü 3�ð�ð� �}ó�Tgclocals·9c703c5c7b9c1932c840b69f8ebce236�Tgclocals·44568aa369055d8938d809aa5d80843b���4c:/go/src/debug/pe/file.goþ*type..hash."".Section�À��¼eH‹ %(���H‹‰����H;awè����ëãHƒì H‹\$(H‰$Hƒ<$�„���HÇD$0���H‹\$8H‰\$è����H‹D$H‹\$(H‰$Hƒ<$�tgHƒ$0HÇD$���H‰D$8H‰D$è����H‹D$H‹\$(H‰$Hƒ<$�t,Hƒ$@HÇD$���H‰D$8H‰D$è����H‹\$H‰\$@HƒÄ É%����ëˉ%����됉%����éWÿÿÿ
������.��0runtime.morestack_noctxt���’��6type..hash."".SectionHeader���ö��"runtime.interhash���Ú��runtime.memhash���@@�� "".autotmp_0345��type.uintptr�"".autotmp_0344��type.uintptr� "".~r3�0type.uintptr�"".h� type.uintptr�"".s�type.uintptr�"".p�� type.*"".Section�!@ž?@ �à�à� �H˜�Tgclocals·2dc77d960dd3e4b3de2361f9cbd75783�Tgclocals·3280bececceccd33cb74587feedb1f9f���4c:/go/src/debug/pe/file.goþ&type..eq."".Section�À��ºeH‹ %(���H‹‰����H;awè����ëãHƒìHH‹L$PHƒù�„æ���H‹\$XHƒû�„Ð���H‰ $H‰\$HÇD$0���è����¶\$€û�u
ÆD$h�HƒÄHÃH‹\$XHƒû�„���H‹K0H‹s8H‹\$PHƒû�txH‹C0H‹S8H9ÈuaH‰D$(H‰$H‰T$0H‰T$H‰L$8H‰L$H‰t$@H‰t$è����¶\$ €û�t+H‹l$PH‹]@L‹D$XI‹h@H9ët
ÆD$h�HƒÄHÃÆD$hHƒÄHÃÆD$h�HƒÄHÉ넉éjÿÿÿ‰é)ÿÿÿ‰éÿÿÿ������.��0runtime.morestack_noctxt���¤��2type..eq."".SectionHeader���‚��runtime.ifaceeq���@�� "".autotmp_0349�? type.io.ReaderAt�"".autotmp_0348� type.io.ReaderAt� "".~r3�0type.bool�"".s� type.uintptr�"".q� type.*"".Section�"".p�� type.*"".Section�>!H…  � � � �QÏ�Tgclocals·9c703c5c7b9c1932c840b69f8ebce236�Tgclocals·44568aa369055d8938d809aa5d80843b���4c:/go/src/debug/pe/file.goþ("".(*Section).ReadAt� ��œeH‹ %(���H‹‰����H;awè����ëãHƒìPH‹Y H…Ût H|$XH9;uH‰#HDŽ$ˆ�������HDŽ$�������H‹\$XHƒû�tpH‹K0H‹k8H‹\$`H‰\$H‹\$hH‰\$H‹\$pH‰\$H‹\$xH‰\$ H‰l$HH‰,$H‰L$@H‹Y ÿÓH‹T$(H‹L$0H‹D$8H‰”$€���H‰Œ$ˆ���H‰„$���HƒÄPÉëŒ������.��0runtime.morestack_noctxt���¸�
������€ ��
io.err�`type.error�io.n�Ptype.int� io.off�@type.int64�io.p�type.[]uint8�""..this�� type.*"".Section�! ¨Ÿ �Ð�Ð� �œ4�Tgclocals·98c4fd3c7c0e134c7a997ef4070e547f�Tgclocals·d64e51a4c4bfeaa840e480961ec6b0b3���<autogenerated>þ""".Section.ReadAt�À��¦eH‹ %(���H‹‰����H;awè����ëãHƒìPH‹Y H…Ût H|$XH9;uH‰#HDŽ$È�������HDŽ$Ð�������H‹Œ$ˆ���H‹„$���H‹œ$ ���H‰\$H‹œ$¨���H‰\$H‹œ$°���H‰\$H‹œ$¸���H‰\$ H‰D$HH‰$H‰L$@H‹Y ÿÓH‹T$(H‹L$0H‹D$8H‰”$À���H‰Œ$È���H‰„$Ð���HƒÄPÃ������.��0runtime.morestack_noctxt���Ê�
������€ ��
io.err�àtype.error�io.n�Ðtype.int� io.off�Àtype.int64�io.p�type.[]uint8�""..this��type."".Section�! ±Ÿ�à�à� �¥;�Tgclocals·6ca5dfc174f23fd1ee70a08f2313f3f9�Tgclocals·d64e51a4c4bfeaa840e480961ec6b0b3���<autogenerated>þ2type..hash."".FormatError�À��¼eH‹ %(���H‹‰����H;awè����ëãHƒì H‹\$(H‰$Hƒ<$�„���HÇD$���H‹\$8H‰\$è����H‹D$H‹\$(H‰$Hƒ<$�tgHƒ$HÇD$���H‰D$8H‰D$è����H‹D$H‹\$(H‰$Hƒ<$�t,Hƒ$HÇD$���H‰D$8H‰D$è����H‹\$H‰\$@HƒÄ É%����ëˉ%����됉%����éWÿÿÿ
������.��0runtime.morestack_noctxt���’��runtime.memhash���ö��runtime.strhash���Ú��(runtime.nilinterhash���@@�� "".autotmp_0358��type.uintptr�"".autotmp_0357��type.uintptr� "".~r3�0type.uintptr�"".h� type.uintptr�"".s�type.uintptr�"".p��(type.*"".FormatError�!@ž?@ �à�à� �H˜�Tgclocals·2dc77d960dd3e4b3de2361f9cbd75783�Tgclocals·3280bececceccd33cb74587feedb1f9f���4c:/go/src/debug/pe/file.goþ.type..eq."".FormatError�à��ÌeH‹ %(���H‹‰����H;awè����ëãHƒìhH‹L$pH‹D$xH‹H‹(H9ët Ƅ$ˆ����HƒÄhÃH‹qH‹IH‹PH‹@H9Á…½���H‰t$XH‰4$H‰L$`H‰L$H‰T$HH‰T$H‰D$PH‰D$è����¶\$ €û�„ƒ���H‹\$xHƒû�ttH‹KH‹s H‹\$pHƒû�t]H‹CH‹S H9ÈuCH‰D$(H‰$H‰T$0H‰T$H‰L$8H‰L$H‰t$@H‰t$è����¶\$ €û�t Ƅ$ˆ���HƒÄhÃƄ$ˆ����HƒÄhÉ량ëˆÆ„$ˆ����HƒÄhÃ������.��0runtime.morestack_noctxt���ˆ�� runtime.eqstring���Ò��runtime.efaceeq���@Ð��"".autotmp_0362�"type.interface {}�"".autotmp_0361�_"type.interface {}�"".autotmp_0360�?type.string�"".autotmp_0359�type.string� "".~r3�0type.bool�"".s� type.uintptr�"".q�(type.*"".FormatError�"".p��(type.*"".FormatError�8!Ð!ÏÐÀÏÐ ÏÐÏ �°�°��ƒ­�Tgclocals·9c703c5c7b9c1932c840b69f8ebce236�Tgclocals·e13351f28add7c60853cb3aac0a0e34e���4c:/go/src/debug/pe/file.goþ4type..hash.[1]interface {}�à��ÜeH‹ %(���H‹‰����H;awè����ëãHƒì0H‹L$H1ÀHÇD$ ���H‹l$ H9è}eH‰D$(H‰ÅH‰ÈHÁÀH»¿c»kïR�H¯ØH‰ØH‹\$8Hƒû�tDHkíHëH‰$HÇD$���H‰D$HH‰D$è����H‹L$H‹D$(HÿÀH‹l$ H9è|›H‰L$PHƒÄ0Éë¸������.��0runtime.morestack_noctxt���Š��(runtime.nilinterhash���@`�� "".autotmp_0365�type.int�"".autotmp_0364�type.int� "".~r3�0type.uintptr�"".h� type.uintptr�"".s�type.uintptr�"".p��*type.*[1]interface {}�!`ˆ_`�°�°� �„,�Tgclocals·2dc77d960dd3e4b3de2361f9cbd75783�Tgclocals·3280bececceccd33cb74587feedb1f9f���4c:/go/src/debug/pe/file.goþ0type..eq.[1]interface {}�à��ÖeH‹ %(���H‹‰����H;awè����ëãHƒìX1ÀHÇD$(���H‹l$(H9荒���H‰D$0H‹\$hHƒû�„–���H‰ÅHkíHëH‹ H‹sH‹\$`Hƒû�tvH‰ÅHkí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$xHƒÄXÃÆD$x�HƒÄXÉ놉écÿÿÿ������.��0runtime.morestack_noctxt���Ð��runtime.efaceeq���@°��"".autotmp_0369�?"type.interface {}�"".autotmp_0368�"type.interface {}�"".autotmp_0367�_type.int�"".autotmp_0366�Otype.int� "".~r3�0type.bool�"".s� type.uintptr�"".q�*type.*[1]interface {}�"".p��*type.*[1]interface {}�&!°´¯° ¯°�ð�ð� �§I�Tgclocals·9c703c5c7b9c1932c840b69f8ebce236�Tgclocals·44568aa369055d8938d809aa5d80843b���4c:/go/src/debug/pe/file.goþ(type..hash."".Symbol�À��¸eH‹ %(���H‹‰����H;awè����ëãHƒì H‹\$(H‰$Hƒ<$�tbHÇD$���H‹\$8H‰\$è����H‹D$H‹\$(H‰$Hƒ<$�t,Hƒ$HÇD$ ���H‰D$8H‰D$è����H‹\$H‰\$@HƒÄ É%����ëˉ%����ë•������.��0runtime.morestack_noctxt���Š��runtime.strhash���î��runtime.memhash���@@��
"".autotmp_0371��type.uintptr� "".~r3�0type.uintptr�"".h� type.uintptr�"".s�type.uintptr�"".p��type.*"".Symbol�!@h?@� � �
�D\�Tgclocals·2dc77d960dd3e4b3de2361f9cbd75783�Tgclocals·3280bececceccd33cb74587feedb1f9f���4c:/go/src/debug/pe/file.goþ$type..eq."".Symbol�à��ÔeH‹ %(���H‹‰����H;awè����ëãHƒìHH‹\$PHƒû�„3��H‹3H‹KH‹\$XHƒû�„��H‹H‹CH9Á…ü���H‰t$8H‰4$H‰L$@H‰L$H‰T$(H‰T$H‰D$0H‰D$è����¶\$ €û�„Â���H‹\$PH‰$Hƒ<$�„¢���Hƒ$H‹\$XH‰\$Hƒ|$�tHƒD$HÇD$ ���è����H‹\$PH‰$Hƒ<$�tRHƒ$H‹\$XH‰\$Hƒ|$�t2HƒD$HÇD$ ���è����¶\$€û�u
ÆD$h�HƒÄHÃÆD$hHƒÄHÉ%����ëʼn%����륉%����éuÿÿÿ‰%����éRÿÿÿÆD$h�HƒÄHÉéãþÿÿ‰éÆþÿÿ
������.��0runtime.morestack_noctxt���ü�� runtime.eqstring���–�� runtime.memequal���Œ�� runtime.memequal���@�� "".autotmp_0374�?type.string�"".autotmp_0373�type.string� "".~r3�0type.bool�"".s� type.uintptr�"".q�type.*"".Symbol�"".p��type.*"".Symbol�2!ü 3�ð�ð� �}ó�Tgclocals·9c703c5c7b9c1932c840b69f8ebce236�Tgclocals·44568aa369055d8938d809aa5d80843b���4c:/go/src/debug/pe/file.goþ0type..hash."".COFFSymbol�à��ÂeH‹ %(���H‹‰����H;awè����ëãHƒì H‹\$(H‰$Hƒ<$�t'HÇD$���H‹\$8H‰\$è����H‹\$H‰\$@HƒÄ É%����ëÐ������.��0runtime.morestack_noctxt���Š��runtime.memhash���@@�� "".~r3�0type.uintptr�"".h� type.uintptr�"".s�type.uintptr�"".p��&type.*"".COFFSymbol�!@6?@�p�p�
�D,�Tgclocals·2dc77d960dd3e4b3de2361f9cbd75783�Tgclocals·3280bececceccd33cb74587feedb1f9f���4c:/go/src/debug/pe/file.goþ,type..eq."".COFFSymbol� ��”eH‹ %(���H‹‰����H;awè����ëãHƒì H‹\$(H‰$Hƒ<$�„‰���H‹\$0H‰\$Hƒ|$�tnHÇD$���è����H‹\$(H‰$Hƒ<$�tGH‹\$0H‰\$Hƒ|$�t,HÇD$���è����¶\$€û�u
ÆD$@�HƒÄ ÃÆD$@HƒÄ É%����ëˉ%����밉%����뉉%����ékÿÿÿ������.��0runtime.morestack_noctxt���¢�� runtime.memequal���‚�� runtime.memequal���@@�� "".~r3�0type.bool�"".s� type.uintptr�"".q�&type.*"".COFFSymbol�"".p��&type.*"".COFFSymbol�!@w?@ ?@-�Ð�Ð� �P€�Tgclocals·9c703c5c7b9c1932c840b69f8ebce236�Tgclocals·3280bececceccd33cb74587feedb1f9f���4c:/go/src/debug/pe/file.goþ(type..hash.[3]string�à��ÜeH‹ %(���H‹‰����H;awè����ëãHƒì0H‹L$H1ÀHÇD$ ���H‹l$ H9è}eH‰D$(H‰ÅH‰ÈHÁÀH»¿c»kïR�H¯ØH‰ØH‹\$8Hƒû�tDHkíHëH‰$HÇD$���H‰D$HH‰D$è����H‹L$H‹D$(HÿÀH‹l$ H9è|›H‰L$PHƒÄ0Éë¸������.��0runtime.morestack_noctxt���Š��runtime.strhash���@`�� "".autotmp_0379�type.int�"".autotmp_0378�type.int� "".~r3�0type.uintptr�"".h� type.uintptr�"".s�type.uintptr�"".p��type.*[3]string�!`ˆ_`�°�°� �„,�Tgclocals·2dc77d960dd3e4b3de2361f9cbd75783�Tgclocals·3280bececceccd33cb74587feedb1f9f���4c:/go/src/debug/pe/file.goþ$type..eq.[3]string�à��ÖeH‹ %(���H‹‰����H;awè����ëãHƒìX1ÀHÇD$(���H‹l$(H9荒���H‰D$0H‹\$`Hƒû�„–���H‰ÅHkíHëH‹3H‹KH‹\$hHƒû�tvH‰ÅHkí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$xHƒÄXÃÆD$x�HƒÄXÉ놉écÿÿÿ������.��0runtime.morestack_noctxt���Ð�� runtime.eqstring���@°��"".autotmp_0383�?type.string�"".autotmp_0382�type.string�"".autotmp_0381�_type.int�"".autotmp_0380�Otype.int� "".~r3�0type.bool�"".s� type.uintptr�"".q�type.*[3]string�"".p��type.*[3]string�&!°´¯° ¯°�ð�ð� �§I�Tgclocals·9c703c5c7b9c1932c840b69f8ebce236�Tgclocals·44568aa369055d8938d809aa5d80843b���4c:/go/src/debug/pe/file.goþ:type..hash."".ImportDirectory�À��¸eH‹ %(���H‹‰����H;awè����ëãHƒì H‹\$(H‰$Hƒ<$�tbHÇD$���H‹\$8H‰\$è����H‹D$H‹\$(H‰$Hƒ<$�t,Hƒ$HÇD$���H‰D$8H‰D$è����H‹\$H‰\$@HƒÄ É%����ëˉ%����ë•������.��0runtime.morestack_noctxt���Š��runtime.memhash���î��runtime.strhash���@@��
"".autotmp_0385��type.uintptr� "".~r3�0type.uintptr�"".h� type.uintptr�"".s�type.uintptr�"".p��0type.*"".ImportDirectory�!@h?@� � �
�D\�Tgclocals·2dc77d960dd3e4b3de2361f9cbd75783�Tgclocals·3280bececceccd33cb74587feedb1f9f���4c:/go/src/debug/pe/file.goþ6type..eq."".ImportDirectory�À��¤eH‹ %(���H‹‰����H;awè����ëãHƒìHH‹\$PH‰$Hƒ<$�„��H‹\$XH‰\$Hƒ|$�„ï���HÇD$���è����H‹\$PH‰$Hƒ<$�„Á���H‹\$XH‰\$Hƒ|$�„Ÿ���HÇD$���è����¶\$€û�u
ÆD$h�HƒÄHÃH‹\$PHƒû�tnH‹sH‹K H‹\$XHƒû�tWH‹SH‹C H9Áu@H‰t$8H‰4$H‰L$@H‰L$H‰T$(H‰T$H‰D$0H‰D$è����¶\$ €û�t
ÆD$hHƒÄHÃÆD$h�HƒÄHÉ륉뎉%����éUÿÿÿ‰%����é3ÿÿÿ‰%����éÿÿÿ‰%����éãþÿÿ
������.��0runtime.morestack_noctxt���ª�� runtime.memequal���š�� runtime.memequal���ð�� runtime.eqstring���@�� "".autotmp_0388�?type.string�"".autotmp_0387�type.string� "".~r3�0type.bool�"".s� type.uintptr�"".q�0type.*"".ImportDirectory�"".p��0type.*"".ImportDirectory�2!ƒj F�à�à� �TŒ�Tgclocals·9c703c5c7b9c1932c840b69f8ebce236�Tgclocals·44568aa369055d8938d809aa5d80843b���4c:/go/src/debug/pe/file.goþTgclocals·61e2515c69061b8fed0e66ece719f936� �� ��������������þTgclocals·ca1ebfc68aaed1d083688775167e5178� �� ��� ����������þ,Jgo.itab.*io.SectionReader.io.ReaderAt�����þ,Ngo.itab.*io.SectionReader.io.ReadSeeker�����þTgclocals·3ea018d3d3bf08cc71b1924be27582a2�(��(���
�������,�������þTgclocals·6d340c3bdac448a6ef1256f331f68dd3�(��(����������������þ"go.string." '%v'"�0��,��������������� '%v'�� �"go.string." '%v'"���þDgo.string." in record at byte %#x"�P��N��������������� in record at byte %#x�� �Dgo.string." in record at byte %#x"���þTgclocals·3c86d287e1db548c44e203138e0f4f0c�0��0�����������ð"��ð��ð���þTgclocals·1ee14e32cec51f1cde6c2b0577d81887�0��0�������������������þ,8go.itab.*os.File.io.ReaderAt�����þ,4go.itab.*os.File.io.Closer�����þTgclocals·1b7c9c749f358654cd269d1888550406�@��@����������(������À��"�������þTgclocals·4fe0598ad4972b80f2191c8a8c409635�@��@���
����������������������þTgclocals·44568aa369055d8938d809aa5d80843b��������������þTgclocals·a08e9001cb8f9d822225de3b8e406515�������������þ,Bgo.itab.*errors.errorString.error�����þ,Fgo.itab.*io.SectionReader.io.Reader�����þ,|go.itab.encoding/binary.littleEndian.encoding/binary.ByteOrder�����þFgo.string."Invalid PE File Format."�P��P���������������Invalid PE File Format.�� �Fgo.string."Invalid PE File Format."���þzgo.string."pe32 optional header has unexpected Magic of 0x%x"���„��������1�������pe32 optional header has unexpected Magic of 0x%x�� �zgo.string."pe32 optional header has unexpected Magic of 0x%x"���þ|go.string."pe32+ optional header has unexpected Magic of 0x%x"���†��������2�������pe32+ optional header has unexpected Magic of 0x%x�� �|go.string."pe32+ optional header has unexpected Magic of 0x%x"���þTgclocals·2e6203f4d6902adeadc161f535d54976�Ð��Ð(���Ä�������������������������������������� ��������������������€������������������������������������������������������€������������������������€���������������������������������������������������� �������������������������€� �����������������������ˆ� ������������������������������ ��������������������€� ����������������������ˆ� ������������������������� �����������������������������������������������(€�����������������������(ˆ�����������������������(�������������������������(������������������������(������������������������ˆ������������������������������������������€�������€� ����������������������ˆ� ����������������������������������������������€€����������������������ˆ€���������������������������������������������������������������������������€ ����������������������ˆ ����������������������������������������������(€�����������������������(ˆ�����������������������(�������������������������(������� �����������������
��������������������R���
������°������������������
€������������������������
��������������������������þTgclocals·9e1d5460dbde85e8c55586d19eda5262�Ð��Ð(���
��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ����þTgclocals·0528ab8f76149a707fd2f0025c2178a3��������������þTgclocals·5dfce38b1d248a3900c6ec750de77702������
�������þTgclocals·0528ab8f76149a707fd2f0025c2178a3��������������þTgclocals·635188a3eaa452a9088a5cb4502f3dc9���������B����þTgclocals·283619d6755c7337ece602447ba790ff� �� ����������
����þTgclocals·9ff42bf311af152488d11f0f78c8d5ce� �� ������
���
����þ$go.string."abbrev"�0��.���������������abbrev�� �$go.string."abbrev"���þ go.string."info"�0��*���������������info�� � go.string."info"���þgo.string."str"�0��(���������������str�� �go.string."str"���þ&go.string.".debug_"�0��0���������������.debug_�� �&go.string.".debug_"���þTgclocals·251ec3272f7ac67161ed0565e156e1df�p��p���^����������������������""
�������""��������"���þTgclocals·afd56e89fe406cd8321967b6f2c293ef�0��0�������������������þ$go.string.".idata"�0��.���������������.idata�� �$go.string.".idata"���þgo.string.":"�0��$���������������:�� �go.string.":"���þTgclocals·2b889644d55fd50bd4f6e870ae47b1a3�Ð��Ð
���z������������������������������P �������������P ������������P ��������� ��P ������������P ���
� �������€PI%��
� ������€PI%��
�"�������PI%��
� ���€���PI%���þTgclocals·bb7796bbb1cd5ffc09c5ac6ace603d00�`��`
��� ����������������������������������þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·13c015770347481bee7a16dde25a3e2f������ �������þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þ,2"".sizeofOptionalHeader32��type.uint16���þ,2"".sizeofOptionalHeader64��type.uint16���þ""".statictmp_0132��`*type."".SectionHeader���þ,"".initdone·��type.uint8���þ*"".(*Section).Data·f��������������$"".(*Section).Data���þ(runtime.makeslice·f��������������"runtime.makeslice���þ:io.(*SectionReader).ReadAt·f��������������4io.(*SectionReader).ReadAt���þ*runtime.panicslice·f��������������$runtime.panicslice���þ,runtime.throwreturn·f��������������&runtime.throwreturn���þ*"".(*Section).Open·f��������������$"".(*Section).Open���þ&runtime.typ2Itab·f�������������� runtime.typ2Itab���þ(runtime.newobject·f��������������"runtime.newobject���þ8runtime.writebarrieriface·f��������������2runtime.writebarrieriface���þ4"".(*FormatError).Error·f��������������."".(*FormatError).Error���þfmt.Sprintf·f��������������fmt.Sprintf���þ0runtime.concatstring2·f��������������*runtime.concatstring2���þ$runtime.convT2E·f��������������runtime.convT2E���þ"".Open·f��������������"".Open���þos.Open·f��������������os.Open���þ"".NewFile·f��������������"".NewFile���þ&os.(*File).Close·f�������������� os.(*File).Close���þ&"".(*File).Close·f�������������� "".(*File).Close���þ*runtime.panicindex·f��������������$runtime.panicindex���þ:runtime.writebarrierstring·f��������������4runtime.writebarrierstring���þ6io.(*SectionReader).Seek·f��������������0io.(*SectionReader).Seek���þ$runtime.convT2I·f��������������runtime.convT2I���þ.encoding/binary.Read·f��������������(encoding/binary.Read���þ"".getString·f��������������"".getString���þ"".cstring·f��������������"".cstring���þ(runtime.growslice·f��������������"runtime.growslice���þ4runtime.writebarrierptr·f��������������.runtime.writebarrierptr���þ8runtime.writebarrierslice·f��������������2runtime.writebarrierslice���þfmt.Errorf·f��������������fmt.Errorf���þstrconv.Atoi·f��������������strconv.Atoi���þ4runtime.writebarrierfat·f��������������.runtime.writebarrierfat���þ8runtime.slicebytetostring·f��������������2runtime.slicebytetostring���þ*"".(*File).Section·f��������������$"".(*File).Section���þ&runtime.eqstring·f�������������� runtime.eqstring���þ&"".(*File).DWARF·f�������������� "".(*File).DWARF���þ$debug/dwarf.New·f��������������debug/dwarf.New���þ:"".(*File).ImportedSymbols·f��������������4"".(*File).ImportedSymbols���þLencoding/binary.littleEndian.Uint64·f��������������Fencoding/binary.littleEndian.Uint64���þ0runtime.concatstring3·f��������������*runtime.concatstring3���þ>"".(*File).ImportedLibraries·f��������������8"".(*File).ImportedLibraries���þ"".init·f��������������"".init���þ(runtime.throwinit·f��������������"runtime.throwinit���þstrconv.init·f��������������strconv.init���þos.init·f��������������os.init���þio.init·f��������������io.init���þfmt.init·f��������������fmt.init���þ.encoding/binary.init·f��������������(encoding/binary.init���þ&debug/dwarf.init·f�������������� debug/dwarf.init���þ.encoding/binary.Size·f��������������(encoding/binary.Size���þbruntime.gcbits.0x48844400000000000000000000000000� �� H„D��������������þ&go.string."[]uint8"�0��0���������������[]uint8�� �&go.string."[]uint8"���þtype.[]uint8� �� �������ß~.8�����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x48844400000000000000000000000000���P��&go.string."[]uint8"���p��*go.weak.type.*[]uint8���€��"runtime.zerovalue�����type.uint8���þ6go.typelink.[]uint8/[]uint8��������������type.[]uint8���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·2dc77d960dd3e4b3de2361f9cbd75783�������������þTgclocals·44568aa369055d8938d809aa5d80843b��������������þTgclocals·9c703c5c7b9c1932c840b69f8ebce236�������������þ>type..hashfunc."".SectionHeader��������������6type..hash."".SectionHeader���þ:type..eqfunc."".SectionHeader��������������2type..eq."".SectionHeader���þ4type..alg."".SectionHeader� �� �������������������>type..hashfunc."".SectionHeader�����:type..eqfunc."".SectionHeader���þbruntime.gcbits.0x88000000000000000000000000000000� �� ˆ����������������þ:go.string."*pe.SectionHeader"�P��D���������������*pe.SectionHeader�� �:go.string."*pe.SectionHeader"���þ,type.*"".SectionHeader�� �� �������æü8j�6����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��:go.string."*pe.SectionHeader"���p��>go.weak.type.**"".SectionHeader���€��"runtime.zerovalue�����*type."".SectionHeader���þbruntime.gcbits.0x48444400000000000000000000000000� �� HDD��������������þ8go.string."pe.SectionHeader"�P��B���������������pe.SectionHeader�� �8go.string."pe.SectionHeader"���þ go.string."Name"�0��*���������������Name�� � go.string."Name"���þ.go.string."VirtualSize"�@��8�������� �������VirtualSize�� �.go.string."VirtualSize"���þ4go.string."VirtualAddress"�@��>���������������VirtualAddress�� �4go.string."VirtualAddress"���þ go.string."Size"�0��*���������������Size�� � go.string."Size"���þ$go.string."Offset"�0��.���������������Offset�� �$go.string."Offset"���þ@go.string."PointerToRelocations"�P��J���������������PointerToRelocations�� �@go.string."PointerToRelocations"���þ@go.string."PointerToLineNumbers"�P��J���������������PointerToLineNumbers�� �@go.string."PointerToLineNumbers"���þ>go.string."NumberOfRelocations"�P��H���������������NumberOfRelocations�� �>go.string."NumberOfRelocations"���þ>go.string."NumberOfLineNumbers"�P��H���������������NumberOfLineNumbers�� �>go.string."NumberOfLineNumbers"���þ6go.string."Characteristics"�@��@���������������Characteristics�� �6go.string."Characteristics"���þ2go.string."SectionHeader"�@��<�������� �������SectionHeader�� �2go.string."SectionHeader"���þ*type."".SectionHeader��°��°0�������­iÌü�����������������������������������������������������������������
�������
������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ���������������������������������������$���������������������������������������(���������������������������������������*���������������������������������������,�����������������������������������������������< ��4type..alg."".SectionHeader���0��bruntime.gcbits.0x48444400000000000000000000000000���P��8go.string."pe.SectionHeader"���p��,type.*"".SectionHeader���€��"runtime.zerovalue���À�*type."".SectionHeader���À�� go.string."Name"���à��type.string�����.go.string."VirtualSize"���°��type.uint32���à��4go.string."VirtualAddress"���€��type.uint32���°�� go.string."Size"���Ð��type.uint32���€��$go.string."Offset"��� ��type.uint32���Ð��@go.string."PointerToRelocations"���ð��type.uint32��� ��@go.string."PointerToLineNumbers"���À��type.uint32���ð��>go.string."NumberOfRelocations"�����type.uint16���À��>go.string."NumberOfLineNumbers"���à��type.uint16�����6go.string."Characteristics"���°��type.uint32���`à�*type."".SectionHeader���à��2go.string."SectionHeader"���ð��"go.importpath."".���€°�*type."".SectionHeader���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·2dc77d960dd3e4b3de2361f9cbd75783�������������þTgclocals·44568aa369055d8938d809aa5d80843b��������������þTgclocals·9c703c5c7b9c1932c840b69f8ebce236�������������þ2type..hashfunc."".Section��������������*type..hash."".Section���þ.type..eqfunc."".Section��������������&type..eq."".Section���þ(type..alg."".Section� �� �������������������2type..hashfunc."".Section�����.type..eqfunc."".Section���þbruntime.gcbits.0x4844448c884444c48800000000000000� �� HDDŒˆDDĈ��������þ,go.string."pe.Section"�@��6��������
�������pe.Section�� �,go.string."pe.Section"���þgo.string."sr"�0��&���������������sr�� �go.string."sr"���þTgclocals·d64e51a4c4bfeaa840e480961ec6b0b3��������������þTgclocals·98c4fd3c7c0e134c7a997ef4070e547f���������
���þTgclocals·d64e51a4c4bfeaa840e480961ec6b0b3��������������þTgclocals·6ca5dfc174f23fd1ee70a08f2313f3f9������ ���Rµ
�þrgo.string."func(pe.Section, []uint8, int64) (int, error)"�€��|��������-�������func(pe.Section, []uint8, int64) (int, error)�� �rgo.string."func(pe.Section, []uint8, int64) (int, error)"���þdtype.func("".Section, []uint8, int64) (int, error)�Ð��Ð�������÷ýpÊ�3���������������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��rgo.string."func(pe.Section, []uint8, int64) (int, error)"���p��vgo.weak.type.*func("".Section, []uint8, int64) (int, error)���€��"runtime.zerovalue��� €�dtype.func("".Section, []uint8, int64) (int, error)���а�dtype.func("".Section, []uint8, int64) (int, error)���€��type."".Section�����type.[]uint8��� ��type.int64���°��type.int���À��type.error���þ&go.string."Section"�0��0���������������Section�� �&go.string."Section"���þ$go.string."ReadAt"�0��.���������������ReadAt�� �$go.string."ReadAt"���þZgo.string."func([]uint8, int64) (int, error)"�p��d��������!�������func([]uint8, int64) (int, error)�� �Zgo.string."func([]uint8, int64) (int, error)"���þLtype.func([]uint8, int64) (int, error)�À��À�������ŠC¶,�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Zgo.string."func([]uint8, int64) (int, error)"���p��^go.weak.type.*func([]uint8, int64) (int, error)���€��"runtime.zerovalue��� €�Ltype.func([]uint8, int64) (int, error)���Р�Ltype.func([]uint8, int64) (int, error)���€��type.[]uint8�����type.int64��� ��type.int���°��type.error���þtype."".Section��à��àH�������—B2d�������������������������������������������������������������������������������������������������������������������������������������������������������0���������������������������������������@���������������������������������������������������������������������������������������������( ��(type..alg."".Section���0��bruntime.gcbits.0x4844448c884444c48800000000000000���P��,go.string."pe.Section"���p�� type.*"".Section���€��"runtime.zerovalue���À�type."".Section���à��*type."".SectionHeader���°�� type.io.ReaderAt���à��go.string."sr"���ð��"go.importpath."".���€��,type.*io.SectionReader���`°�type."".Section���°��&go.string."Section"���À��"go.importpath."".���Ѐ�type."".Section���€��$go.string."ReadAt"��� ��Ltype.func([]uint8, int64) (int, error)���°��dtype.func("".Section, []uint8, int64) (int, error)���À��("".(*Section).ReadAt���Ð��""".Section.ReadAt���þ.go.string."*pe.Section"�@��8�������� �������*pe.Section�� �.go.string."*pe.Section"���þ\go.string."func(*pe.Section) ([]uint8, error)"�p��f��������"�������func(*pe.Section) ([]uint8, error)�� �\go.string."func(*pe.Section) ([]uint8, error)"���þNtype.func(*"".Section) ([]uint8, error)�°��°�������;•Ü=�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��\go.string."func(*pe.Section) ([]uint8, error)"���p��`go.weak.type.*func(*"".Section) ([]uint8, error)���€��"runtime.zerovalue��� €�Ntype.func(*"".Section) ([]uint8, error)���А�Ntype.func(*"".Section) ([]uint8, error)���€�� type.*"".Section�����type.[]uint8��� ��type.error���þVgo.string."func(*pe.Section) io.ReadSeeker"�`��`���������������func(*pe.Section) io.ReadSeeker�� �Vgo.string."func(*pe.Section) io.ReadSeeker"���þHtype.func(*"".Section) io.ReadSeeker� �� �������‰­NÆ�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Vgo.string."func(*pe.Section) io.ReadSeeker"���p��Zgo.weak.type.*func(*"".Section) io.ReadSeeker���€��"runtime.zerovalue��� €�Htype.func(*"".Section) io.ReadSeeker���А�Htype.func(*"".Section) io.ReadSeeker���€�� type.*"".Section�����$type.io.ReadSeeker���þtgo.string."func(*pe.Section, []uint8, int64) (int, error)"�€��~��������.�������func(*pe.Section, []uint8, int64) (int, error)�� �tgo.string."func(*pe.Section, []uint8, int64) (int, error)"���þftype.func(*"".Section, []uint8, int64) (int, error)�Ð��Ð�������ƒðVe�3���������������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��tgo.string."func(*pe.Section, []uint8, int64) (int, error)"���p��xgo.weak.type.*func(*"".Section, []uint8, int64) (int, error)���€��"runtime.zerovalue��� €�ftype.func(*"".Section, []uint8, int64) (int, error)���а�ftype.func(*"".Section, []uint8, int64) (int, error)���€�� type.*"".Section�����type.[]uint8��� ��type.int64���°��type.int���À��type.error���þ go.string."Data"�0��*���������������Data�� � go.string."Data"���þFgo.string."func() ([]uint8, error)"�P��P���������������func() ([]uint8, error)�� �Fgo.string."func() ([]uint8, error)"���þ8type.func() ([]uint8, error)� �� �������Ÿìx]�3������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Fgo.string."func() ([]uint8, error)"���p��Jgo.weak.type.*func() ([]uint8, error)���€��"runtime.zerovalue��� €�8type.func() ([]uint8, error)���Ѐ�8type.func() ([]uint8, error)���€��type.[]uint8�����type.error���þ go.string."Open"�0��*���������������Open�� � go.string."Open"���þ@go.string."func() io.ReadSeeker"�P��J���������������func() io.ReadSeeker�� �@go.string."func() io.ReadSeeker"���þ2type.func() io.ReadSeeker����������Ã&–�3���������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��@go.string."func() io.ReadSeeker"���p��Dgo.weak.type.*func() io.ReadSeeker���€��"runtime.zerovalue��� €�2type.func() io.ReadSeeker���Ѐ�2type.func() io.ReadSeeker���€��$type.io.ReadSeeker���þ type.*"".Section�����������T°é`�6������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������.  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��.go.string."*pe.Section"���p��2go.weak.type.**"".Section���€��"runtime.zerovalue�����type."".Section���` � type.*"".Section���Àð� type.*"".Section���ð�� go.string."Data"�����8type.func() ([]uint8, error)��� ��Ntype.func(*"".Section) ([]uint8, error)���°��$"".(*Section).Data���À��$"".(*Section).Data���Ð�� go.string."Open"���ð��2type.func() io.ReadSeeker���€��Htype.func(*"".Section) io.ReadSeeker�����$"".(*Section).Open��� ��$"".(*Section).Open���°��$go.string."ReadAt"���Ð��Ltype.func([]uint8, int64) (int, error)���à��ftype.func(*"".Section, []uint8, int64) (int, error)���ð��("".(*Section).ReadAt���€��("".(*Section).ReadAt���þbruntime.gcbits.0xcc000000000000000000000000000000� �� Ì����������������þ0go.string."interface {}"�@��:�������� �������interface {}�� �0go.string."interface {}"���þ"type.interface {}�À��À�������çW ��������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0xcc000000000000000000000000000000���P��0go.string."interface {}"���p��4go.weak.type.*interface {}���€��"runtime.zerovalue���À�"type.interface {}���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·2dc77d960dd3e4b3de2361f9cbd75783�������������þTgclocals·e13351f28add7c60853cb3aac0a0e34e��������������þTgclocals·9c703c5c7b9c1932c840b69f8ebce236�������������þ:type..hashfunc."".FormatError��������������2type..hash."".FormatError���þ6type..eqfunc."".FormatError��������������.type..eq."".FormatError���þ0type..alg."".FormatError� �� �������������������:type..hashfunc."".FormatError�����6type..eqfunc."".FormatError���þbruntime.gcbits.0x84c44c48cc0000000000000000000000� �� „ÄLHÌ������������þ4go.string."pe.FormatError"�@��>���������������pe.FormatError�� �4go.string."pe.FormatError"���þgo.string."off"�0��(���������������off�� �go.string."off"���þgo.string."msg"�0��(���������������msg�� �go.string."msg"���þgo.string."val"�0��(���������������val�� �go.string."val"���þ.go.string."FormatError"�@��8�������� �������FormatError�� �.go.string."FormatError"���þ&type."".FormatError��€��€(������� Œ^H���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������& ��0type..alg."".FormatError���0��bruntime.gcbits.0x84c44c48cc0000000000000000000000���P��4go.string."pe.FormatError"���p��(type.*"".FormatError���€��"runtime.zerovalue���À�&type."".FormatError���À��go.string."off"���Ð��"go.importpath."".���à��type.int64�����go.string."msg"��� ��"go.importpath."".���°��type.string���à��go.string."val"���ð��"go.importpath."".���€��"type.interface {}���`°�&type."".FormatError���°��.go.string."FormatError"���À��"go.importpath."".���Ѐ�&type."".FormatError���þ6go.string."*pe.FormatError"�@��@���������������*pe.FormatError�� �6go.string."*pe.FormatError"���þPgo.string."func(*pe.FormatError) string"�`��Z���������������func(*pe.FormatError) string�� �Pgo.string."func(*pe.FormatError) string"���þBtype.func(*"".FormatError) string� �� ������� ßZÜ�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Pgo.string."func(*pe.FormatError) string"���p��Tgo.weak.type.*func(*"".FormatError) string���€��"runtime.zerovalue��� €�Btype.func(*"".FormatError) string���А�Btype.func(*"".FormatError) string���€��(type.*"".FormatError�����type.string���þ"go.string."Error"�0��,���������������Error�� �"go.string."Error"���þ2go.string."func() string"�@��<�������� �������func() string�� �2go.string."func() string"���þ$type.func() string����������¢mË�3���������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��2go.string."func() string"���p��6go.weak.type.*func() string���€��"runtime.zerovalue��� €�$type.func() string���Ѐ�$type.func() string���€��type.string���þ(type.*"".FormatError��Ð��Ð������� ú„†�6������������������������������������������������������������������������������������������������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��6go.string."*pe.FormatError"���p��:go.weak.type.**"".FormatError���€��"runtime.zerovalue�����&type."".FormatError���` �(type.*"".FormatError���Àð�(type.*"".FormatError���ð��"go.string."Error"�����$type.func() string��� ��Btype.func(*"".FormatError) string���°��."".(*FormatError).Error���À��."".(*FormatError).Error���þ4go.string."[]interface {}"�@��>���������������[]interface {}�� �4go.string."[]interface {}"���þ&type.[]interface {}� �� �������p“ê/�����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x48844400000000000000000000000000���P��4go.string."[]interface {}"���p��8go.weak.type.*[]interface {}���€��"runtime.zerovalue�����"type.interface {}���þRgo.typelink.[]interface {}/[]interface {}��������������&type.[]interface {}���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·2dc77d960dd3e4b3de2361f9cbd75783�������������þTgclocals·44568aa369055d8938d809aa5d80843b��������������þTgclocals·9c703c5c7b9c1932c840b69f8ebce236�������������þ<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 {}���þ6go.string."[1]interface {}"�@��@���������������[1]interface {}�� �6go.string."[1]interface {}"���þ(type.[1]interface {}�À��À�������P‘[ú�������������������������������������������������������������������������������� ��2type..alg.[1]interface {}���0��bruntime.gcbits.0xcc000000000000000000000000000000���P��6go.string."[1]interface {}"���p��:go.weak.type.*[1]interface {}���€��"runtime.zerovalue�����"type.interface {}��� ��&type.[]interface {}���þVgo.typelink.[1]interface {}/[1]interface {}��������������(type.[1]interface {}���þ8go.string."*[1]interface {}"�P��B���������������*[1]interface {}�� �8go.string."*[1]interface {}"���þ*type.*[1]interface {}� �� �������¿¨5�6����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��8go.string."*[1]interface {}"���p��<go.weak.type.**[1]interface {}���€��"runtime.zerovalue�����(type.[1]interface {}���þ4go.string."*pe.FileHeader"�@��>���������������*pe.FileHeader�� �4go.string."*pe.FileHeader"���þ&type.*"".FileHeader�� �� �������56 °�6����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��4go.string."*pe.FileHeader"���p��8go.weak.type.**"".FileHeader���€��"runtime.zerovalue�����$type."".FileHeader���þ^runtime.gcbits.0x000000000000000000000000000000� �� �����������������þ2go.string."pe.FileHeader"�@��<�������� �������pe.FileHeader�� �2go.string."pe.FileHeader"���þ&go.string."Machine"�0��0���������������Machine�� �&go.string."Machine"���þ8go.string."NumberOfSections"�P��B���������������NumberOfSections�� �8go.string."NumberOfSections"���þ2go.string."TimeDateStamp"�@��<�������� �������TimeDateStamp�� �2go.string."TimeDateStamp"���þ@go.string."PointerToSymbolTable"�P��J���������������PointerToSymbolTable�� �@go.string."PointerToSymbolTable"���þ6go.string."NumberOfSymbols"�@��@���������������NumberOfSymbols�� �6go.string."NumberOfSymbols"���þ@go.string."SizeOfOptionalHeader"�P��J���������������SizeOfOptionalHeader�� �@go.string."SizeOfOptionalHeader"���þ,go.string."FileHeader"�@��6��������
�������FileHeader�� �,go.string."FileHeader"���þ$type."".FileHeader��À��À�������5|~†�™��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� �����������������������������������������������������������������������������������������������������������������������������0 �� runtime.algarray���0��^runtime.gcbits.0x000000000000000000000000000000���P��2go.string."pe.FileHeader"���p��&type.*"".FileHeader���€��"runtime.zerovalue���À�$type."".FileHeader���À��&go.string."Machine"���à��type.uint16�����8go.string."NumberOfSections"���°��type.uint16���à��2go.string."TimeDateStamp"���€��type.uint32���°��@go.string."PointerToSymbolTable"���Ð��type.uint32���€��6go.string."NumberOfSymbols"��� ��type.uint32���Ð��@go.string."SizeOfOptionalHeader"���ð��type.uint16��� ��6go.string."Characteristics"���À��type.uint16���`ð�$type."".FileHeader���ð��,go.string."FileHeader"���€��"go.importpath."".���À�$type."".FileHeader���þ2go.string."[]*pe.Section"�@��<�������� �������[]*pe.Section�� �2go.string."[]*pe.Section"���þ$type.[]*"".Section� �� �������#�����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x48844400000000000000000000000000���P��2go.string."[]*pe.Section"���p��6go.weak.type.*[]*"".Section���€��"runtime.zerovalue����� type.*"".Section���þNgo.typelink.[]*pe.Section/[]*"".Section��������������$type.[]*"".Section���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·2dc77d960dd3e4b3de2361f9cbd75783�������������þTgclocals·44568aa369055d8938d809aa5d80843b��������������þTgclocals·9c703c5c7b9c1932c840b69f8ebce236�������������þ0type..hashfunc."".Symbol��������������(type..hash."".Symbol���þ,type..eqfunc."".Symbol��������������$type..eq."".Symbol���þ&type..alg."".Symbol� �� �������������������0type..hashfunc."".Symbol�����,type..eqfunc."".Symbol���þbruntime.gcbits.0x48440000000000000000000000000000� �� HD���������������þ*go.string."pe.Symbol"�@��4�������� �������pe.Symbol�� �*go.string."pe.Symbol"���þ"go.string."Value"�0��,���������������Value�� �"go.string."Value"���þ2go.string."SectionNumber"�@��<�������� �������SectionNumber�� �2go.string."SectionNumber"���þ go.string."Type"�0��*���������������Type�� � go.string."Type"���þ0go.string."StorageClass"�@��:�������� �������StorageClass�� �0go.string."StorageClass"���þ$go.string."Symbol"�0��.���������������Symbol�� �$go.string."Symbol"���þtype."".Symbol�� ��  �������æÃE@���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������( ��&type..alg."".Symbol���0��bruntime.gcbits.0x48440000000000000000000000000000���P��*go.string."pe.Symbol"���p��type.*"".Symbol���€��"runtime.zerovalue���À�type."".Symbol���À�� go.string."Name"���à��type.string�����"go.string."Value"���°��type.uint32���à��2go.string."SectionNumber"���€��type.int16���°�� go.string."Type"���Ð��type.uint16���€��0go.string."StorageClass"��� ��type.uint8���`Ð�type."".Symbol���Ð��$go.string."Symbol"���à��"go.importpath."".���ð �type."".Symbol���þ,go.string."*pe.Symbol"�@��6��������
�������*pe.Symbol�� �,go.string."*pe.Symbol"���þtype.*"".Symbol�� �� �������Bl1;�6����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��,go.string."*pe.Symbol"���p��0go.weak.type.**"".Symbol���€��"runtime.zerovalue�����type."".Symbol���þ0go.string."[]*pe.Symbol"�@��:�������� �������[]*pe.Symbol�� �0go.string."[]*pe.Symbol"���þ"type.[]*"".Symbol� �� �������HLž¼�����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x48844400000000000000000000000000���P��0go.string."[]*pe.Symbol"���p��4go.weak.type.*[]*"".Symbol���€��"runtime.zerovalue�����type.*"".Symbol���þJgo.typelink.[]*pe.Symbol/[]*"".Symbol��������������"type.[]*"".Symbol���þbruntime.gcbits.0x44c48c4448c44844cc4884448c000000� �� DČDHÄHDÌH„DŒ����þ&go.string."pe.File"�0��0���������������pe.File�� �&go.string."pe.File"���þ4go.string."OptionalHeader"�@��>���������������OptionalHeader�� �4go.string."OptionalHeader"���þ(go.string."Sections"�@��2���������������Sections�� �(go.string."Sections"���þ&go.string."Symbols"�0��0���������������Symbols�� �&go.string."Symbols"���þ$go.string."closer"�0��.���������������closer�� �$go.string."closer"���þ go.string."File"�0��*���������������File�� � go.string."File"���þtype."".File�� �� h�������{Òq©����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������(���������������������������������������@���������������������������������������X�����������������������������������������������( à� runtime.algarray���0��bruntime.gcbits.0x44c48c4448c44844cc4884448c000000���P��&go.string."pe.File"���p��type.*"".File���€��"runtime.zerovalue���À�type."".File���à��$type."".FileHeader�����4go.string."OptionalHeader"���°��"type.interface {}���à��(go.string."Sections"���€��$type.[]*"".Section���°��&go.string."Symbols"���Ð��"type.[]*"".Symbol���€��$go.string."closer"�����"go.importpath."".��� ��type.io.Closer���`Ð�type."".File���Ð�� go.string."File"���à��"go.importpath."".���ð �type."".File���þ(go.string."*pe.File"�@��2���������������*pe.File�� �(go.string."*pe.File"���þ@go.string."func(*pe.File) error"�P��J���������������func(*pe.File) error�� �@go.string."func(*pe.File) error"���þ2type.func(*"".File) error� �� �������#]‚�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��@go.string."func(*pe.File) error"���p��Dgo.weak.type.*func(*"".File) error���€��"runtime.zerovalue��� €�2type.func(*"".File) error���А�2type.func(*"".File) error���€��type.*"".File�����type.error���þ^go.string."func(*pe.File) (*dwarf.Data, error)"�p��h��������#�������func(*pe.File) (*dwarf.Data, error)�� �^go.string."func(*pe.File) (*dwarf.Data, error)"���þ\type.func(*"".File) (*debug/dwarf.Data, error)�°��°�������¯39A�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��^go.string."func(*pe.File) (*dwarf.Data, error)"���p��ngo.weak.type.*func(*"".File) (*debug/dwarf.Data, error)���€��"runtime.zerovalue��� €�\type.func(*"".File) (*debug/dwarf.Data, error)���А�\type.func(*"".File) (*debug/dwarf.Data, error)���€��type.*"".File�����,type.*debug/dwarf.Data��� ��type.error���þ(go.string."[]string"�@��2���������������[]string�� �(go.string."[]string"���þtype.[]string� �� �������Ó¨ó
�����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x48844400000000000000000000000000���P��(go.string."[]string"���p��,go.weak.type.*[]string���€��"runtime.zerovalue�����type.string���þ:go.typelink.[]string/[]string��������������type.[]string���þXgo.string."func(*pe.File) ([]string, error)"�p��b�������� �������func(*pe.File) ([]string, error)�� �Xgo.string."func(*pe.File) ([]string, error)"���þJtype.func(*"".File) ([]string, error)�°��°�������uë¸b�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Xgo.string."func(*pe.File) ([]string, error)"���p��\go.weak.type.*func(*"".File) ([]string, error)���€��"runtime.zerovalue��� €�Jtype.func(*"".File) ([]string, error)���А�Jtype.func(*"".File) ([]string, error)���€��type.*"".File�����type.[]string��� ��type.error���þ\go.string."func(*pe.File, string) *pe.Section"�p��f��������"�������func(*pe.File, string) *pe.Section�� �\go.string."func(*pe.File, string) *pe.Section"���þNtype.func(*"".File, string) *"".Section�°��°�������“Ð�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��\go.string."func(*pe.File, string) *pe.Section"���p��`go.weak.type.*func(*"".File, string) *"".Section���€��"runtime.zerovalue��� €�Ntype.func(*"".File, string) *"".Section���Р�Ntype.func(*"".File, string) *"".Section���€��type.*"".File�����type.string��� �� type.*"".Section���þ"go.string."Close"�0��,���������������Close�� �"go.string."Close"���þ0go.string."func() error"�@��:�������� �������func() error�� �0go.string."func() error"���þ"type.func() error����������œ‚Öµ�3���������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��0go.string."func() error"���p��4go.weak.type.*func() error���€��"runtime.zerovalue��� €�"type.func() error���Ѐ�"type.func() error���€��type.error���þ"go.string."DWARF"�0��,���������������DWARF�� �"go.string."DWARF"���þNgo.string."func() (*dwarf.Data, error)"�`��X���������������func() (*dwarf.Data, error)�� �Ngo.string."func() (*dwarf.Data, error)"���þLtype.func() (*debug/dwarf.Data, error)� �� �������$¹9�3������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Ngo.string."func() (*dwarf.Data, error)"���p��^go.weak.type.*func() (*debug/dwarf.Data, error)���€��"runtime.zerovalue��� €�Ltype.func() (*debug/dwarf.Data, error)���Ѐ�Ltype.func() (*debug/dwarf.Data, error)���€��,type.*debug/dwarf.Data�����type.error���þ:go.string."ImportedLibraries"�P��D���������������ImportedLibraries�� �:go.string."ImportedLibraries"���þHgo.string."func() ([]string, error)"�`��R���������������func() ([]string, error)�� �Hgo.string."func() ([]string, error)"���þ:type.func() ([]string, error)� �� �������B‹í¡�3������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Hgo.string."func() ([]string, error)"���p��Lgo.weak.type.*func() ([]string, error)���€��"runtime.zerovalue��� €�:type.func() ([]string, error)���Ѐ�:type.func() ([]string, error)���€��type.[]string�����type.error���þ6go.string."ImportedSymbols"�@��@���������������ImportedSymbols�� �6go.string."ImportedSymbols"���þHgo.string."func(string) *pe.Section"�`��R���������������func(string) *pe.Section�� �Hgo.string."func(string) *pe.Section"���þ:type.func(string) *"".Section� �� �������h-â±�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Hgo.string."func(string) *pe.Section"���p��Lgo.weak.type.*func(string) *"".Section���€��"runtime.zerovalue��� €�:type.func(string) *"".Section���А�:type.func(string) *"".Section���€��type.string����� type.*"".Section���þtype.*"".File��Ð��Ð�������uîõ2�6������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������B  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��(go.string."*pe.File"���p��,go.weak.type.**"".File���€��"runtime.zerovalue�����type."".File���` �type.*"".File���Àð�type.*"".File���ð��"go.string."Close"�����"type.func() error��� ��2type.func(*"".File) error���°�� "".(*File).Close���À�� "".(*File).Close���Ð��"go.string."DWARF"���ð��Ltype.func() (*debug/dwarf.Data, error)���€��\type.func(*"".File) (*debug/dwarf.Data, error)����� "".(*File).DWARF��� �� "".(*File).DWARF���°��:go.string."ImportedLibraries"���Ð��:type.func() ([]string, error)���à��Jtype.func(*"".File) ([]string, error)���ð��8"".(*File).ImportedLibraries���€��8"".(*File).ImportedLibraries�����6go.string."ImportedSymbols"���°��:type.func() ([]string, error)���À��Jtype.func(*"".File) ([]string, error)���Ð��4"".(*File).ImportedSymbols���à��4"".(*File).ImportedSymbols���ð��&go.string."Section"�����:type.func(string) *"".Section��� ��Ntype.func(*"".File, string) *"".Section���°��$"".(*File).Section���À��$"".(*File).Section���þ(go.string."[8]uint8"�@��2���������������[8]uint8�� �(go.string."[8]uint8"���þtype.[8]uint8�À��À�������>ù0´�‘�������������������������������������������������������������������������������  � runtime.algarray���0��^runtime.gcbits.0x000000000000000000000000000000���P��(go.string."[8]uint8"���p��,go.weak.type.*[8]uint8���€��"runtime.zerovalue�����type.uint8��� ��type.[]uint8���þ:go.typelink.[8]uint8/[8]uint8��������������type.[8]uint8���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·2dc77d960dd3e4b3de2361f9cbd75783�������������þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·9c703c5c7b9c1932c840b69f8ebce236�������������þ8type..hashfunc."".COFFSymbol��������������0type..hash."".COFFSymbol���þ4type..eqfunc."".COFFSymbol��������������,type..eq."".COFFSymbol���þ.type..alg."".COFFSymbol� �� �������������������8type..hashfunc."".COFFSymbol�����4type..eqfunc."".COFFSymbol���þ4go.string."*pe.COFFSymbol"�@��>���������������*pe.COFFSymbol�� �4go.string."*pe.COFFSymbol"���þ&type.*"".COFFSymbol�� �� �������çZ |�6����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��4go.string."*pe.COFFSymbol"���p��8go.weak.type.**"".COFFSymbol���€��"runtime.zerovalue�����$type."".COFFSymbol���þ2go.string."pe.COFFSymbol"�@��<�������� �������pe.COFFSymbol�� �2go.string."pe.COFFSymbol"���þ<go.string."NumberOfAuxSymbols"�P��F���������������NumberOfAuxSymbols�� �<go.string."NumberOfAuxSymbols"���þ,go.string."COFFSymbol"�@��6��������
�������COFFSymbol�� �,go.string."COFFSymbol"���þ$type."".COFFSymbol��ð��ð�������ë+q�™��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ��������������������������������������������������������������������������������������������������������������������������������������������������������������������, ��.type..alg."".COFFSymbol���0��^runtime.gcbits.0x000000000000000000000000000000���P��2go.string."pe.COFFSymbol"���p��&type.*"".COFFSymbol���€��"runtime.zerovalue���À�$type."".COFFSymbol���À�� go.string."Name"���à��type.[8]uint8�����"go.string."Value"���°��type.uint32���à��2go.string."SectionNumber"���€��type.int16���°�� go.string."Type"���Ð��type.uint16���€��0go.string."StorageClass"��� ��type.uint8���Ð��<go.string."NumberOfAuxSymbols"���ð��type.uint8���` �$type."".COFFSymbol��� ��,go.string."COFFSymbol"���°��"go.importpath."".���Àð�$type."".COFFSymbol���þ:go.string."*pe.DataDirectory"�P��D���������������*pe.DataDirectory�� �:go.string."*pe.DataDirectory"���þ,type.*"".DataDirectory�� �� �������½¶”±�6����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��:go.string."*pe.DataDirectory"���p��>go.weak.type.**"".DataDirectory���€��"runtime.zerovalue�����*type."".DataDirectory���þ8go.string."pe.DataDirectory"�P��B���������������pe.DataDirectory�� �8go.string."pe.DataDirectory"���þ2go.string."DataDirectory"�@��<�������� �������DataDirectory�� �2go.string."DataDirectory"���þ*type."".DataDirectory��°��°������� kªï�™�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������  � runtime.algarray���0��^runtime.gcbits.0x000000000000000000000000000000���P��8go.string."pe.DataDirectory"���p��,type.*"".DataDirectory���€��"runtime.zerovalue���À�*type."".DataDirectory���À��4go.string."VirtualAddress"���à��type.uint32����� go.string."Size"���°��type.uint32���`à�*type."".DataDirectory���à��2go.string."DataDirectory"���ð��"go.importpath."".���€°�*type."".DataDirectory���þ<go.string."[]pe.DataDirectory"�P��F���������������[]pe.DataDirectory�� �<go.string."[]pe.DataDirectory"���þ.type.[]"".DataDirectory� �� �������q¡»�����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x48844400000000000000000000000000���P��<go.string."[]pe.DataDirectory"���p��@go.weak.type.*[]"".DataDirectory���€��"runtime.zerovalue�����*type."".DataDirectory���þbgo.typelink.[]pe.DataDirectory/[]"".DataDirectory��������������.type.[]"".DataDirectory���þ@go.string."[16]pe.DataDirectory"�P��J���������������[16]pe.DataDirectory�� �@go.string."[16]pe.DataDirectory"���þ2type.[16]"".DataDirectory�À��À€�������ñ$0ß�‘������������������������������������������������������������������������������� �� runtime.algarray���0��^runtime.gcbits.0x000000000000000000000000000000���P��@go.string."[16]pe.DataDirectory"���p��Dgo.weak.type.*[16]"".DataDirectory���€��"runtime.zerovalue�����*type."".DataDirectory��� ��.type.[]"".DataDirectory���þjgo.typelink.[16]pe.DataDirectory/[16]"".DataDirectory��������������2type.[16]"".DataDirectory���þ>go.string."pe.OptionalHeader32"�P��H���������������pe.OptionalHeader32�� �>go.string."pe.OptionalHeader32"���þ"go.string."Magic"�0��,���������������Magic�� �"go.string."Magic"���þ<go.string."MajorLinkerVersion"�P��F���������������MajorLinkerVersion�� �<go.string."MajorLinkerVersion"���þ<go.string."MinorLinkerVersion"�P��F���������������MinorLinkerVersion�� �<go.string."MinorLinkerVersion"���þ,go.string."SizeOfCode"�@��6��������
�������SizeOfCode�� �,go.string."SizeOfCode"���þBgo.string."SizeOfInitializedData"�P��L���������������SizeOfInitializedData�� �Bgo.string."SizeOfInitializedData"���þFgo.string."SizeOfUninitializedData"�P��P���������������SizeOfUninitializedData�� �Fgo.string."SizeOfUninitializedData"���þ>go.string."AddressOfEntryPoint"�P��H���������������AddressOfEntryPoint�� �>go.string."AddressOfEntryPoint"���þ,go.string."BaseOfCode"�@��6��������
�������BaseOfCode�� �,go.string."BaseOfCode"���þ,go.string."BaseOfData"�@��6��������
�������BaseOfData�� �,go.string."BaseOfData"���þ*go.string."ImageBase"�@��4�������� �������ImageBase�� �*go.string."ImageBase"���þ8go.string."SectionAlignment"�P��B���������������SectionAlignment�� �8go.string."SectionAlignment"���þ2go.string."FileAlignment"�@��<�������� �������FileAlignment�� �2go.string."FileAlignment"���þNgo.string."MajorOperatingSystemVersion"�`��X���������������MajorOperatingSystemVersion�� �Ngo.string."MajorOperatingSystemVersion"���þNgo.string."MinorOperatingSystemVersion"�`��X���������������MinorOperatingSystemVersion�� �Ngo.string."MinorOperatingSystemVersion"���þ:go.string."MajorImageVersion"�P��D���������������MajorImageVersion�� �:go.string."MajorImageVersion"���þ:go.string."MinorImageVersion"�P��D���������������MinorImageVersion�� �:go.string."MinorImageVersion"���þBgo.string."MajorSubsystemVersion"�P��L���������������MajorSubsystemVersion�� �Bgo.string."MajorSubsystemVersion"���þBgo.string."MinorSubsystemVersion"�P��L���������������MinorSubsystemVersion�� �Bgo.string."MinorSubsystemVersion"���þ:go.string."Win32VersionValue"�P��D���������������Win32VersionValue�� �:go.string."Win32VersionValue"���þ.go.string."SizeOfImage"�@��8�������� �������SizeOfImage�� �.go.string."SizeOfImage"���þ2go.string."SizeOfHeaders"�@��<�������� �������SizeOfHeaders�� �2go.string."SizeOfHeaders"���þ(go.string."CheckSum"�@��2���������������CheckSum�� �(go.string."CheckSum"���þ*go.string."Subsystem"�@��4�������� �������Subsystem�� �*go.string."Subsystem"���þ<go.string."DllCharacteristics"�P��F���������������DllCharacteristics�� �<go.string."DllCharacteristics"���þ<go.string."SizeOfStackReserve"�P��F���������������SizeOfStackReserve�� �<go.string."SizeOfStackReserve"���þ:go.string."SizeOfStackCommit"�P��D���������������SizeOfStackCommit�� �:go.string."SizeOfStackCommit"���þ:go.string."SizeOfHeapReserve"�P��D���������������SizeOfHeapReserve�� �:go.string."SizeOfHeapReserve"���þ8go.string."SizeOfHeapCommit"�P��B���������������SizeOfHeapCommit�� �8go.string."SizeOfHeapCommit"���þ.go.string."LoaderFlags"�@��8�������� �������LoaderFlags�� �.go.string."LoaderFlags"���þ>go.string."NumberOfRvaAndSizes"�P��H���������������NumberOfRvaAndSizes�� �>go.string."NumberOfRvaAndSizes"���þ8go.string."OptionalHeader32"�P��B���������������OptionalHeader32�� �8go.string."OptionalHeader32"���þ0type."".OptionalHeader32��À��Àà�������,ÚKú�™������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ���������������������������������������$���������������������������������������(���������������������������������������*���������������������������������������,���������������������������������������.���������������������������������������0���������������������������������������2���������������������������������������4���������������������������������������8���������������������������������������<���������������������������������������@���������������������������������������D���������������������������������������F���������������������������������������H���������������������������������������L���������������������������������������P���������������������������������������T���������������������������������������X���������������������������������������\���������������������������������������`����������������������������������������������� �� runtime.algarray���0��^runtime.gcbits.0x000000000000000000000000000000���P��>go.string."pe.OptionalHeader32"���p��2type.*"".OptionalHeader32���€��"runtime.zerovalue���À�0type."".OptionalHeader32���À��"go.string."Magic"���à��type.uint16�����<go.string."MajorLinkerVersion"���°��type.uint8���à��<go.string."MinorLinkerVersion"���€��type.uint8���°��,go.string."SizeOfCode"���Ð��type.uint32���€��Bgo.string."SizeOfInitializedData"��� ��type.uint32���Ð��Fgo.string."SizeOfUninitializedData"���ð��type.uint32��� ��>go.string."AddressOfEntryPoint"���À��type.uint32���ð��,go.string."BaseOfCode"�����type.uint32���À��,go.string."BaseOfData"���à��type.uint32�����*go.string."ImageBase"���°��type.uint32���à��8go.string."SectionAlignment"���€��type.uint32���°��2go.string."FileAlignment"���Ð��type.uint32���€ ��Ngo.string."MajorOperatingSystemVersion"���  ��type.uint16���Ð ��Ngo.string."MinorOperatingSystemVersion"���ð ��type.uint16��� 
��:go.string."MajorImageVersion"�����type.uint16���ð
��:go.string."MinorImageVersion"��� ��type.uint16���À ��Bgo.string."MajorSubsystemVersion"���à ��type.uint16��� ��Bgo.string."MinorSubsystemVersion"���° ��type.uint16���à ��:go.string."Win32VersionValue"���€ ��type.uint32���° ��.go.string."SizeOfImage"���Ð ��type.uint32���€��2go.string."SizeOfHeaders"��� ��type.uint32���Ð��(go.string."CheckSum"���ð��type.uint32��� ��*go.string."Subsystem"���À��type.uint16���ð��<go.string."DllCharacteristics"�����type.uint16���À��<go.string."SizeOfStackReserve"���à��type.uint32�����:go.string."SizeOfStackCommit"���°��type.uint32���à��:go.string."SizeOfHeapReserve"���€��type.uint32���°��8go.string."SizeOfHeapCommit"���Ð��type.uint32���€��.go.string."LoaderFlags"��� ��type.uint32���Ð��>go.string."NumberOfRvaAndSizes"���ð��type.uint32��� ��2go.string."DataDirectory"���À��2type.[16]"".DataDirectory���`ð�0type."".OptionalHeader32���ð��8go.string."OptionalHeader32"���€��"go.importpath."".���À�0type."".OptionalHeader32���þ@go.string."*pe.OptionalHeader32"�P��J���������������*pe.OptionalHeader32�� �@go.string."*pe.OptionalHeader32"���þ2type.*"".OptionalHeader32�� �� �������Å"Ë�6����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��@go.string."*pe.OptionalHeader32"���p��Dgo.weak.type.**"".OptionalHeader32���€��"runtime.zerovalue�����0type."".OptionalHeader32���þ>go.string."pe.OptionalHeader64"�P��H���������������pe.OptionalHeader64�� �>go.string."pe.OptionalHeader64"���þ8go.string."OptionalHeader64"�P��B���������������OptionalHeader64�� �8go.string."OptionalHeader64"���þ0type."".OptionalHeader64��ð��ðð�������¤×cI�™������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ ������������������������������������������������������������������������������������������������������������������������������������������������������������ ���������������������������������������$���������������������������������������(���������������������������������������*���������������������������������������,���������������������������������������.���������������������������������������0���������������������������������������2���������������������������������������4���������������������������������������8���������������������������������������<���������������������������������������@���������������������������������������D���������������������������������������F���������������������������������������H���������������������������������������P���������������������������������������X���������������������������������������`���������������������������������������h���������������������������������������l���������������������������������������p�����������������������������������������������Œ �� runtime.algarray���0��^runtime.gcbits.0x000000000000000000000000000000���P��>go.string."pe.OptionalHeader64"���p��2type.*"".OptionalHeader64���€��"runtime.zerovalue���À�0type."".OptionalHeader64���À��"go.string."Magic"���à��type.uint16�����<go.string."MajorLinkerVersion"���°��type.uint8���à��<go.string."MinorLinkerVersion"���€��type.uint8���°��,go.string."SizeOfCode"���Ð��type.uint32���€��Bgo.string."SizeOfInitializedData"��� ��type.uint32���Ð��Fgo.string."SizeOfUninitializedData"���ð��type.uint32��� ��>go.string."AddressOfEntryPoint"���À��type.uint32���ð��,go.string."BaseOfCode"�����type.uint32���À��*go.string."ImageBase"���à��type.uint64�����8go.string."SectionAlignment"���°��type.uint32���à��2go.string."FileAlignment"���€��type.uint32���°��Ngo.string."MajorOperatingSystemVersion"���Ð��type.uint16���€ ��Ngo.string."MinorOperatingSystemVersion"���  ��type.uint16���Ð ��:go.string."MajorImageVersion"���ð ��type.uint16��� 
��:go.string."MinorImageVersion"�����type.uint16���ð
��Bgo.string."MajorSubsystemVersion"��� ��type.uint16���À ��Bgo.string."MinorSubsystemVersion"���à ��type.uint16��� ��:go.string."Win32VersionValue"���° ��type.uint32���à ��.go.string."SizeOfImage"���€ ��type.uint32���° ��2go.string."SizeOfHeaders"���Ð ��type.uint32���€��(go.string."CheckSum"��� ��type.uint32���Ð��*go.string."Subsystem"���ð��type.uint16��� ��<go.string."DllCharacteristics"���À��type.uint16���ð��<go.string."SizeOfStackReserve"�����type.uint64���À��:go.string."SizeOfStackCommit"���à��type.uint64�����:go.string."SizeOfHeapReserve"���°��type.uint64���à��8go.string."SizeOfHeapCommit"���€��type.uint64���°��.go.string."LoaderFlags"���Ð��type.uint32���€��>go.string."NumberOfRvaAndSizes"��� ��type.uint32���Ð��2go.string."DataDirectory"���ð��2type.[16]"".DataDirectory���` �0type."".OptionalHeader64��� ��8go.string."OptionalHeader64"���°��"go.importpath."".���Àð�0type."".OptionalHeader64���þ@go.string."*pe.OptionalHeader64"�P��J���������������*pe.OptionalHeader64�� �@go.string."*pe.OptionalHeader64"���þ2type.*"".OptionalHeader64�� �� �������=
k�6����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��@go.string."*pe.OptionalHeader64"���p��Dgo.weak.type.**"".OptionalHeader64���€��"runtime.zerovalue�����0type."".OptionalHeader64���þ>go.string."*pe.SectionHeader32"�P��H���������������*pe.SectionHeader32�� �>go.string."*pe.SectionHeader32"���þ0type.*"".SectionHeader32�� �� �������òÚL�6����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��>go.string."*pe.SectionHeader32"���p��Bgo.weak.type.**"".SectionHeader32���€��"runtime.zerovalue�����.type."".SectionHeader32���þ<go.string."pe.SectionHeader32"�P��F���������������pe.SectionHeader32�� �<go.string."pe.SectionHeader32"���þ2go.string."SizeOfRawData"�@��<�������� �������SizeOfRawData�� �2go.string."SizeOfRawData"���þ8go.string."PointerToRawData"�P��B���������������PointerToRawData�� �8go.string."PointerToRawData"���þ6go.string."SectionHeader32"�@��@���������������SectionHeader32�� �6go.string."SectionHeader32"���þ.type."".SectionHeader32��°��°(�������Œ- Ä�™����������������������������������������������������������������
�������
���������������������������������������������������������������������������������������������������������������������� ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ���������������������������������������"���������������������������������������$�����������������������������������������������< �� runtime.algarray���0��^runtime.gcbits.0x000000000000000000000000000000���P��<go.string."pe.SectionHeader32"���p��0type.*"".SectionHeader32���€��"runtime.zerovalue���À�.type."".SectionHeader32���À�� go.string."Name"���à��type.[8]uint8�����.go.string."VirtualSize"���°��type.uint32���à��4go.string."VirtualAddress"���€��type.uint32���°��2go.string."SizeOfRawData"���Ð��type.uint32���€��8go.string."PointerToRawData"��� ��type.uint32���Ð��@go.string."PointerToRelocations"���ð��type.uint32��� ��@go.string."PointerToLineNumbers"���À��type.uint32���ð��>go.string."NumberOfRelocations"�����type.uint16���À��>go.string."NumberOfLineNumbers"���à��type.uint16�����6go.string."Characteristics"���°��type.uint32���`à�.type."".SectionHeader32���à��6go.string."SectionHeader32"���ð��"go.importpath."".���€°�.type."".SectionHeader32���þ*go.string."[96]uint8"�@��4�������� �������[96]uint8�� �*go.string."[96]uint8"���þtype.[96]uint8�À��À`�������ÄA ©�‘������������������������������������������������������������������������`������� �� runtime.algarray���0��^runtime.gcbits.0x000000000000000000000000000000���P��*go.string."[96]uint8"���p��.go.weak.type.*[96]uint8���€��"runtime.zerovalue�����type.uint8��� ��type.[]uint8���þ>go.typelink.[96]uint8/[96]uint8��������������type.[96]uint8���þ,go.string."*[96]uint8"�@��6��������
�������*[96]uint8�� �,go.string."*[96]uint8"���þtype.*[96]uint8� �� �������O|Á�6����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��,go.string."*[96]uint8"���p��0go.weak.type.**[96]uint8���€��"runtime.zerovalue�����type.[96]uint8���þ(go.string."[4]uint8"�@��2���������������[4]uint8�� �(go.string."[4]uint8"���þtype.[4]uint8�À��À�������„B�‘������������������������������������������������������������������������������� €� runtime.algarray���0��^runtime.gcbits.0x000000000000000000000000000000���P��(go.string."[4]uint8"���p��,go.weak.type.*[4]uint8���€��"runtime.zerovalue�����type.uint8��� ��type.[]uint8���þ:go.typelink.[4]uint8/[4]uint8��������������type.[4]uint8���þ*go.string."*[4]uint8"�@��4�������� �������*[4]uint8�� �*go.string."*[4]uint8"���þtype.*[4]uint8� �� �������G³ã¡�6����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��*go.string."*[4]uint8"���p��.go.weak.type.**[4]uint8���€��"runtime.zerovalue�����type.[4]uint8���þ*go.string."*[8]uint8"�@��4�������� �������*[8]uint8�� �*go.string."*[8]uint8"���þtype.*[8]uint8� �� �������©‰¥z�6����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��*go.string."*[8]uint8"���p��.go.weak.type.**[8]uint8���€��"runtime.zerovalue�����type.[8]uint8���þ0go.string."**pe.Section"�@��:�������� �������**pe.Section�� �0go.string."**pe.Section"���þ"type.**"".Section� �� �������LXÈ_�6����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��0go.string."**pe.Section"���p��4go.weak.type.***"".Section���€��"runtime.zerovalue����� type.*"".Section���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·2dc77d960dd3e4b3de2361f9cbd75783�������������þTgclocals·44568aa369055d8938d809aa5d80843b��������������þTgclocals·9c703c5c7b9c1932c840b69f8ebce236�������������þ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���þbruntime.gcbits.0x48484800000000000000000000000000� �� HHH��������������þ*go.string."[3]string"�@��4�������� �������[3]string�� �*go.string."[3]string"���þtype.[3]string�À��À0�������CÙiB�������������������������������������������������������������������������������� ��&type..alg.[3]string���0��bruntime.gcbits.0x48484800000000000000000000000000���P��*go.string."[3]string"���p��.go.weak.type.*[3]string���€��"runtime.zerovalue�����type.string��� ��type.[]string���þ>go.typelink.[3]string/[3]string��������������type.[3]string���þ*go.string."[][]uint8"�@��4�������� �������[][]uint8�� �*go.string."[][]uint8"���þtype.[][]uint8� �� �������õ}ï�����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x48844400000000000000000000000000���P��*go.string."[][]uint8"���p��.go.weak.type.*[][]uint8���€��"runtime.zerovalue�����type.[]uint8���þ>go.typelink.[][]uint8/[][]uint8��������������type.[][]uint8���þbruntime.gcbits.0x48844448844448844400000000000000� �� H„DH„DH„D��������þ,go.string."[3][]uint8"�@��6��������
�������[3][]uint8�� �,go.string."[3][]uint8"���þtype.[3][]uint8�À��ÀH�������˜XØy�������������������������������������������������������������������������������� à� runtime.algarray���0��bruntime.gcbits.0x48844448844448844400000000000000���P��,go.string."[3][]uint8"���p��0go.weak.type.*[3][]uint8���€��"runtime.zerovalue�����type.[]uint8��� ��type.[][]uint8���þBgo.typelink.[3][]uint8/[3][]uint8��������������type.[3][]uint8���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·2dc77d960dd3e4b3de2361f9cbd75783�������������þTgclocals·44568aa369055d8938d809aa5d80843b��������������þTgclocals·9c703c5c7b9c1932c840b69f8ebce236�������������þBtype..hashfunc."".ImportDirectory��������������:type..hash."".ImportDirectory���þ>type..eqfunc."".ImportDirectory��������������6type..eq."".ImportDirectory���þ8type..alg."".ImportDirectory� �� �������������������Btype..hashfunc."".ImportDirectory�����>type..eqfunc."".ImportDirectory���þ>go.string."*pe.ImportDirectory"�P��H���������������*pe.ImportDirectory�� �>go.string."*pe.ImportDirectory"���þ0type.*"".ImportDirectory�� �� �������ÌöÔâ�6����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��>go.string."*pe.ImportDirectory"���p��Bgo.weak.type.**"".ImportDirectory���€��"runtime.zerovalue�����.type."".ImportDirectory���þbruntime.gcbits.0x44844444480000000000000000000000� �� D„DDH������������þ<go.string."pe.ImportDirectory"�P��F���������������pe.ImportDirectory�� �<go.string."pe.ImportDirectory"���þ<go.string."OriginalFirstThunk"�P��F���������������OriginalFirstThunk�� �<go.string."OriginalFirstThunk"���þ4go.string."ForwarderChain"�@��>���������������ForwarderChain�� �4go.string."ForwarderChain"���þ,go.string."FirstThunk"�@��6��������
�������FirstThunk�� �,go.string."FirstThunk"���þgo.string."dll"�0��(���������������dll�� �go.string."dll"���þ6go.string."ImportDirectory"�@��@���������������ImportDirectory�� �6go.string."ImportDirectory"���þ.type."".ImportDirectory��ð��ð(�������×5w-������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� �����������������������������������������������������������������������������������������������������������������������������. ��8type..alg."".ImportDirectory���0��bruntime.gcbits.0x44844444480000000000000000000000���P��<go.string."pe.ImportDirectory"���p��0type.*"".ImportDirectory���€��"runtime.zerovalue���À�.type."".ImportDirectory���À��<go.string."OriginalFirstThunk"���à��type.uint32�����2go.string."TimeDateStamp"���°��type.uint32���à��4go.string."ForwarderChain"���€��type.uint32���°�� go.string."Name"���Ð��type.uint32���€��,go.string."FirstThunk"��� ��type.uint32���Ð��go.string."dll"���à��"go.importpath."".���ð��type.string���` �.type."".ImportDirectory��� ��6go.string."ImportDirectory"���°��"go.importpath."".���Àð�.type."".ImportDirectory���þ@go.string."[]pe.ImportDirectory"�P��J���������������[]pe.ImportDirectory�� �@go.string."[]pe.ImportDirectory"���þ2type.[]"".ImportDirectory� �� �������nëí2�����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x48844400000000000000000000000000���P��@go.string."[]pe.ImportDirectory"���p��Dgo.weak.type.*[]"".ImportDirectory���€��"runtime.zerovalue�����.type."".ImportDirectory���þjgo.typelink.[]pe.ImportDirectory/[]"".ImportDirectory��������������2type.[]"".ImportDirectory���þ,go.string."*[3]string"�@��6��������
�������*[3]string�� �,go.string."*[3]string"���þtype.*[3]string� �� �������
+é �6����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��,go.string."*[3]string"���p��0go.weak.type.**[3]string���€��"runtime.zerovalue�����type.[3]string���þ6go.string."encoding/binary"�@��@���������������encoding/binary�� �6go.string."encoding/binary"���þ<go.importpath.encoding/binary.� �� ���������������� �6go.string."encoding/binary"���þ&go.string."runtime"�0��0���������������runtime�� �&go.string."runtime"���þ,go.importpath.runtime.� �� ���������������� �&go.string."runtime"���þ$go.string."errors"�0��.���������������errors�� �$go.string."errors"���þ*go.importpath.errors.� �� ���������������� �$go.string."errors"���þgo.string."io"�0��&���������������io�� �go.string."io"���þ"go.importpath.io.� �� ���������������� �go.string."io"���þgo.string."os"�0��&���������������os�� �go.string."os"���þ"go.importpath.os.� �� ���������������� �go.string."os"���þ&go.string."strconv"�0��0���������������strconv�� �&go.string."strconv"���þ,go.importpath.strconv.� �� ���������������� �&go.string."strconv"���þgo.string."fmt"�0��(���������������fmt�� �go.string."fmt"���þ$go.importpath.fmt.� �� ���������������� �go.string."fmt"���þ.go.string."debug/dwarf"�@��8�������� �������debug/dwarf�� �.go.string."debug/dwarf"���þ4go.importpath.debug/dwarf.� �� �������� �������� �.go.string."debug/dwarf"���þ<type..hash."".SectionHeader·f��������������6type..hash."".SectionHeader���þ$runtime.strhash·f��������������runtime.strhash���þ$runtime.memhash·f��������������runtime.memhash���þ8type..eq."".SectionHeader·f��������������2type..eq."".SectionHeader���þ&runtime.memequal·f�������������� runtime.memequal���þ0type..hash."".Section·f��������������*type..hash."".Section���þ(runtime.interhash·f��������������"runtime.interhash���þ,type..eq."".Section·f��������������&type..eq."".Section���þ$runtime.ifaceeq·f��������������runtime.ifaceeq���þ."".(*Section).ReadAt·f��������������("".(*Section).ReadAt���þ("".Section.ReadAt·f��������������""".Section.ReadAt���þ8type..hash."".FormatError·f��������������2type..hash."".FormatError���þ.runtime.nilinterhash·f��������������(runtime.nilinterhash���þ4type..eq."".FormatError·f��������������.type..eq."".FormatError���þ$runtime.efaceeq·f��������������runtime.efaceeq���þ:type..hash.[1]interface {}·f��������������4type..hash.[1]interface {}���þ6type..eq.[1]interface {}·f��������������0type..eq.[1]interface {}���þ.type..hash."".Symbol·f��������������(type..hash."".Symbol���þ*type..eq."".Symbol·f��������������$type..eq."".Symbol���þ6type..hash."".COFFSymbol·f��������������0type..hash."".COFFSymbol���þ2type..eq."".COFFSymbol·f��������������,type..eq."".COFFSymbol���þ.type..hash.[3]string·f��������������(type..hash.[3]string���þ*type..eq.[3]string·f��������������$type..eq.[3]string���þ@type..hash."".ImportDirectory·f��������������:type..hash."".ImportDirectory���þ<type..eq."".ImportDirectory·f��������������6type..eq."".ImportDirectory���þ"runtime.zerovalue������ÿÿgo13ld�