Home | History | Annotate | Download | only in debug
      1 !<arch>
      2 __.PKGDEF       0           0     0     644     21161     `
      3 go object darwin amd64 go1.5.1 X:none
      4 build id "4d3fb74a96f666624719dd638a62cbc1723dab70"
      5 
      6 $$
      7 package pe
      8 	import runtime "runtime"
      9 	import dwarf "debug/dwarf"
     10 	import binary "encoding/binary"
     11 	import errors "errors"
     12 	import io "io"
     13 	import strconv "strconv"
     14 	import fmt "fmt"
     15 	import os "os"
     16 	type @"".FileHeader struct { Machine uint16; NumberOfSections uint16; TimeDateStamp uint32; PointerToSymbolTable uint32; NumberOfSymbols uint32; SizeOfOptionalHeader uint16; Characteristics uint16 }
     17 	type @"".SectionHeader struct { Name string; VirtualSize uint32; VirtualAddress uint32; Size uint32; Offset uint32; PointerToRelocations uint32; PointerToLineNumbers uint32; NumberOfRelocations uint16; NumberOfLineNumbers uint16; Characteristics uint32 }
     18 	type @"io".ReaderAt interface { ReadAt(@"io".p []byte, @"io".off int64) (@"io".n int, @"io".err error) }
     19 	type @"io".SectionReader struct { @"io".r @"io".ReaderAt; @"io".base int64; @"io".off int64; @"io".limit int64 }
     20 	func (@"io".s3 *@"io".SectionReader "esc:0x9") Read (@"io".p4 []byte) (@"io".n1 int, @"io".err2 error)
     21 	func (@"io".s3 *@"io".SectionReader "esc:0x9") ReadAt (@"io".p4 []byte, @"io".off5 int64) (@"io".n1 int, @"io".err2 error)
     22 	func (@"io".s3 *@"io".SectionReader "esc:0x1") Seek (@"io".offset4 int64, @"io".whence5 int) (? int64, ? error)
     23 	func (@"io".s2 *@"io".SectionReader "esc:0x1") Size () (? int64) { return @"io".s2.@"io".limit - @"io".s2.@"io".base }
     24 	type @"io".ReadSeeker interface { Read(@"io".p []byte) (@"io".n int, @"io".err error); Seek(@"io".offset int64, @"io".whence int) (? int64, ? error) }
     25 	type @"".Section struct { ? @"".SectionHeader; ? @"io".ReaderAt; @"".sr *@"io".SectionReader }
     26 	func (@"".s3 *@"".Section "esc:0x9") Data () (? []byte, ? error)
     27 	func (@"".s2 *@"".Section "esc:0xa") Open () (? @"io".ReadSeeker) { return @"io".NewSectionReader(@"".s2.@"".sr, 0x0, 0x7fffffffffffffff) }
     28 	type @"".Symbol struct { Name string; Value uint32; SectionNumber int16; Type uint16; StorageClass uint8 }
     29 	type @"io".Closer interface { Close() (? error) }
     30 	type @"debug/dwarf".Tag uint32
     31 	func (@"debug/dwarf".t2 @"debug/dwarf".Tag) GoString () (? string)
     32 	func (@"debug/dwarf".t2 @"debug/dwarf".Tag) String () (? string)
     33 	type @"debug/dwarf".Attr uint32
     34 	func (@"debug/dwarf".a2 @"debug/dwarf".Attr) GoString () (? string)
     35 	func (@"debug/dwarf".a2 @"debug/dwarf".Attr) String () (? string)
     36 	type @"debug/dwarf".format uint32
     37 	type @"debug/dwarf".Class int
     38 	func (@"debug/dwarf".i2 @"debug/dwarf".Class) GoString () (? string)
     39 	func (@"debug/dwarf".i2 @"debug/dwarf".Class) String () (? string)
     40 	type @"debug/dwarf".afield struct { @"debug/dwarf".attr @"debug/dwarf".Attr; @"debug/dwarf".fmt @"debug/dwarf".format; @"debug/dwarf".class @"debug/dwarf".Class }
     41 	type @"debug/dwarf".abbrev struct { @"debug/dwarf".tag @"debug/dwarf".Tag; @"debug/dwarf".children bool; @"debug/dwarf".field []@"debug/dwarf".afield }
     42 	type @"debug/dwarf".abbrevTable map[uint32]@"debug/dwarf".abbrev
     43 	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) }
     44 	type @"debug/dwarf".CommonType struct { ByteSize int64; Name string }
     45 	func (@"debug/dwarf".c2 *@"debug/dwarf".CommonType "esc:0x12") Common () (? *@"debug/dwarf".CommonType) { return @"debug/dwarf".c2 }
     46 	func (@"debug/dwarf".c2 *@"debug/dwarf".CommonType "esc:0x1") Size () (? int64) { return @"debug/dwarf".c2.ByteSize }
     47 	type @"debug/dwarf".Type interface { Common() (? *@"debug/dwarf".CommonType); Size() (? int64); String() (? string) }
     48 	type @"debug/dwarf".Offset uint32
     49 	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 }
     50 	func (@"debug/dwarf".u2 *@"debug/dwarf".unit "esc:0x1") @"debug/dwarf".addrsize () (? int) { return @"debug/dwarf".u2.@"debug/dwarf".asize }
     51 	func (@"debug/dwarf".u3 *@"debug/dwarf".unit "esc:0x1") @"debug/dwarf".dwarf64 () (? bool, ? bool) { return @"debug/dwarf".u3.@"debug/dwarf".is64, true }
     52 	func (@"debug/dwarf".u2 *@"debug/dwarf".unit "esc:0x1") @"debug/dwarf".version () (? int) { return @"debug/dwarf".u2.@"debug/dwarf".vers }
     53 	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 }
     54 	type @"debug/dwarf".dataFormat interface { @"debug/dwarf".addrsize() (? int); @"debug/dwarf".dwarf64() (@"debug/dwarf".dwarf64 bool, @"debug/dwarf".isKnown bool); @"debug/dwarf".version() (? int) }
     55 	type @"debug/dwarf".Field struct { Attr @"debug/dwarf".Attr; Val interface {}; Class @"debug/dwarf".Class }
     56 	type @"debug/dwarf".Entry struct { Offset @"debug/dwarf".Offset; Tag @"debug/dwarf".Tag; Children bool; Field []@"debug/dwarf".Field }
     57 	func (@"debug/dwarf".e2 *@"debug/dwarf".Entry "esc:0x22") AttrField (@"debug/dwarf".a3 @"debug/dwarf".Attr) (? *@"debug/dwarf".Field)
     58 	func (@"debug/dwarf".e2 *@"debug/dwarf".Entry "esc:0x32") Val (@"debug/dwarf".a3 @"debug/dwarf".Attr) (? interface {})
     59 	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 }
     60 	func (@"debug/dwarf".b2 *@"debug/dwarf".buf "esc:0x9") @"debug/dwarf".addr () (? uint64)
     61 	func (@"debug/dwarf".b2 *@"debug/dwarf".buf "esc:0x2a") @"debug/dwarf".bytes (@"debug/dwarf".n3 int) (? []byte) { if len(@"debug/dwarf".b2.@"debug/dwarf".data) < @"debug/dwarf".n3 { @"debug/dwarf".b2.@"debug/dwarf".error("underflow"); return nil }; var @"debug/dwarf".data4 []byte; ; @"debug/dwarf".data4 = @"debug/dwarf".b2.@"debug/dwarf".data[0x0:@"debug/dwarf".n3]; @"debug/dwarf".b2.@"debug/dwarf".data = @"debug/dwarf".b2.@"debug/dwarf".data[@"debug/dwarf".n3:]; @"debug/dwarf".b2.@"debug/dwarf".off += @"debug/dwarf".Offset(@"debug/dwarf".n3); return @"debug/dwarf".data4 }
     62 	func (@"debug/dwarf".b2 *@"debug/dwarf".buf "esc:0x9") @"debug/dwarf".entry (@"debug/dwarf".atab3 @"debug/dwarf".abbrevTable "esc:0x1", @"debug/dwarf".ubase4 @"debug/dwarf".Offset) (? *@"debug/dwarf".Entry)
     63 	func (@"debug/dwarf".b1 *@"debug/dwarf".buf "esc:0x9") @"debug/dwarf".error (@"debug/dwarf".s2 string) { if @"debug/dwarf".b1.@"debug/dwarf".err == nil { @"debug/dwarf".b1.@"debug/dwarf".data = nil; @"debug/dwarf".b1.@"debug/dwarf".err = (@"debug/dwarf".DecodeError{ Name:@"debug/dwarf".b1.@"debug/dwarf".name, Offset:@"debug/dwarf".b1.@"debug/dwarf".off, Err:@"debug/dwarf".s2 }) } }
     64 	func (@"debug/dwarf".b2 *@"debug/dwarf".buf "esc:0x1") @"debug/dwarf".int () (? int64)
     65 	func (@"debug/dwarf".b1 *@"debug/dwarf".buf "esc:0x9") @"debug/dwarf".skip (@"debug/dwarf".n2 int) { @"debug/dwarf".b1.@"debug/dwarf".bytes(@"debug/dwarf".n2) }
     66 	func (@"debug/dwarf".b2 *@"debug/dwarf".buf "esc:0x9") @"debug/dwarf".string () (? string)
     67 	func (@"debug/dwarf".b2 *@"debug/dwarf".buf "esc:0x1") @"debug/dwarf".uint () (? uint64)
     68 	func (@"debug/dwarf".b2 *@"debug/dwarf".buf "esc:0x9") @"debug/dwarf".uint16 () (? uint16)
     69 	func (@"debug/dwarf".b2 *@"debug/dwarf".buf "esc:0x9") @"debug/dwarf".uint32 () (? uint32)
     70 	func (@"debug/dwarf".b2 *@"debug/dwarf".buf "esc:0x9") @"debug/dwarf".uint64 () (? uint64)
     71 	func (@"debug/dwarf".b2 *@"debug/dwarf".buf "esc:0x9") @"debug/dwarf".uint8 () (? uint8) { if len(@"debug/dwarf".b2.@"debug/dwarf".data) < 0x1 { @"debug/dwarf".b2.@"debug/dwarf".error("underflow"); return 0x0 }; var @"debug/dwarf".val3 byte; ; @"debug/dwarf".val3 = @"debug/dwarf".b2.@"debug/dwarf".data[0x0]; @"debug/dwarf".b2.@"debug/dwarf".data = @"debug/dwarf".b2.@"debug/dwarf".data[0x1:]; @"debug/dwarf".b2.@"debug/dwarf".off++; return @"debug/dwarf".val3 }
     72 	func (@"debug/dwarf".b3 *@"debug/dwarf".buf "esc:0x9") @"debug/dwarf".unitLength () (@"debug/dwarf".length1 @"debug/dwarf".Offset, @"debug/dwarf".dwarf642 bool)
     73 	func (@"debug/dwarf".b3 *@"debug/dwarf".buf "esc:0x1") @"debug/dwarf".varint () (@"debug/dwarf".c1 uint64, @"debug/dwarf".bits2 uint)
     74 	type @"debug/dwarf".LineFile struct { Name string; Mtime uint64; Length int }
     75 	type @"debug/dwarf".LineEntry struct { Address uint64; OpIndex int; File *@"debug/dwarf".LineFile; Line int; Column int; IsStmt bool; BasicBlock bool; PrologueEnd bool; EpilogueBegin bool; ISA int; Discriminator int; EndSequence bool }
     76 	type @"debug/dwarf".LineReaderPos struct { @"debug/dwarf".off @"debug/dwarf".Offset; @"debug/dwarf".numFileEntries int; @"debug/dwarf".state @"debug/dwarf".LineEntry; @"debug/dwarf".fileIndex int }
     77 	type @"debug/dwarf".LineReader struct { @"debug/dwarf".buf @"debug/dwarf".buf; @"debug/dwarf".section []byte; @"debug/dwarf".version uint16; @"debug/dwarf".minInstructionLength int; @"debug/dwarf".maxOpsPerInstruction int; @"debug/dwarf".defaultIsStmt bool; @"debug/dwarf".lineBase int; @"debug/dwarf".lineRange int; @"debug/dwarf".opcodeBase int; @"debug/dwarf".opcodeLengths []int; @"debug/dwarf".directories []string; @"debug/dwarf".fileEntries []*@"debug/dwarf".LineFile; @"debug/dwarf".programOffset @"debug/dwarf".Offset; @"debug/dwarf".endOffset @"debug/dwarf".Offset; @"debug/dwarf".initialFileEntries int; @"debug/dwarf".state @"debug/dwarf".LineEntry; @"debug/dwarf".fileIndex int }
     78 	func (@"debug/dwarf".r2 *@"debug/dwarf".LineReader "esc:0x2a") Next (@"debug/dwarf".entry3 *@"debug/dwarf".LineEntry "esc:0x1") (? error)
     79 	func (@"debug/dwarf".r1 *@"debug/dwarf".LineReader "esc:0x9") Reset ()
     80 	func (@"debug/dwarf".r1 *@"debug/dwarf".LineReader "esc:0x9") Seek (@"debug/dwarf".pos2 @"debug/dwarf".LineReaderPos) { @"debug/dwarf".r1.@"debug/dwarf".buf.@"debug/dwarf".off = @"debug/dwarf".pos2.@"debug/dwarf".off; @"debug/dwarf".r1.@"debug/dwarf".buf.@"debug/dwarf".data = @"debug/dwarf".r1.@"debug/dwarf".section[@"debug/dwarf".r1.@"debug/dwarf".buf.@"debug/dwarf".off:@"debug/dwarf".r1.@"debug/dwarf".endOffset]; @"debug/dwarf".r1.@"debug/dwarf".fileEntries = @"debug/dwarf".r1.@"debug/dwarf".fileEntries[:@"debug/dwarf".pos2.@"debug/dwarf".numFileEntries]; @"debug/dwarf".r1.@"debug/dwarf".state = @"debug/dwarf".pos2.@"debug/dwarf".state; @"debug/dwarf".r1.@"debug/dwarf".fileIndex = @"debug/dwarf".pos2.@"debug/dwarf".fileIndex }
     81 	func (@"debug/dwarf".r2 *@"debug/dwarf".LineReader "esc:0x2a") SeekPC (@"debug/dwarf".pc3 uint64, @"debug/dwarf".entry4 *@"debug/dwarf".LineEntry "esc:0x1") (? error)
     82 	func (@"debug/dwarf".r2 *@"debug/dwarf".LineReader "esc:0x22") Tell () (? @"debug/dwarf".LineReaderPos) { return (@"debug/dwarf".LineReaderPos{ @"debug/dwarf".off:@"debug/dwarf".r2.@"debug/dwarf".buf.@"debug/dwarf".off, @"debug/dwarf".numFileEntries:len(@"debug/dwarf".r2.@"debug/dwarf".fileEntries), @"debug/dwarf".state:@"debug/dwarf".r2.@"debug/dwarf".state, @"debug/dwarf".fileIndex:@"debug/dwarf".r2.@"debug/dwarf".fileIndex }) }
     83 	func (@"debug/dwarf".r1 *@"debug/dwarf".LineReader "esc:0x1") @"debug/dwarf".advancePC (@"debug/dwarf".opAdvance2 int) { var @"debug/dwarf".opIndex3 int; ; @"debug/dwarf".opIndex3 = @"debug/dwarf".r1.@"debug/dwarf".state.OpIndex + @"debug/dwarf".opAdvance2; @"debug/dwarf".r1.@"debug/dwarf".state.Address += uint64(@"debug/dwarf".r1.@"debug/dwarf".minInstructionLength * (@"debug/dwarf".opIndex3 / @"debug/dwarf".r1.@"debug/dwarf".maxOpsPerInstruction)); @"debug/dwarf".r1.@"debug/dwarf".state.OpIndex = @"debug/dwarf".opIndex3 % @"debug/dwarf".r1.@"debug/dwarf".maxOpsPerInstruction }
     84 	func (@"debug/dwarf".r3 *@"debug/dwarf".LineReader "esc:0x10a") @"debug/dwarf".readFileEntry () (? bool, ? error)
     85 	func (@"debug/dwarf".r2 *@"debug/dwarf".LineReader "esc:0x2a") @"debug/dwarf".readHeader () (? error)
     86 	func (@"debug/dwarf".r1 *@"debug/dwarf".LineReader "esc:0x9") @"debug/dwarf".resetState () { @"debug/dwarf".r1.@"debug/dwarf".state = (@"debug/dwarf".LineEntry{ Address:0x0, OpIndex:0x0, File:nil, Line:0x1, Column:0x0, IsStmt:@"debug/dwarf".r1.@"debug/dwarf".defaultIsStmt, BasicBlock:false, PrologueEnd:false, EpilogueBegin:false, ISA:0x0, Discriminator:0x0 }); @"debug/dwarf".r1.@"debug/dwarf".fileIndex = 0x1; @"debug/dwarf".r1.@"debug/dwarf".updateFile() }
     87 	func (@"debug/dwarf".r2 *@"debug/dwarf".LineReader "esc:0x9") @"debug/dwarf".step (@"debug/dwarf".entry3 *@"debug/dwarf".LineEntry "esc:0x1") (? bool)
     88 	func (@"debug/dwarf".r1 *@"debug/dwarf".LineReader "esc:0x9") @"debug/dwarf".updateFile () { if @"debug/dwarf".r1.@"debug/dwarf".fileIndex < len(@"debug/dwarf".r1.@"debug/dwarf".fileEntries) { @"debug/dwarf".r1.@"debug/dwarf".state.File = @"debug/dwarf".r1.@"debug/dwarf".fileEntries[@"debug/dwarf".r1.@"debug/dwarf".fileIndex] } else { @"debug/dwarf".r1.@"debug/dwarf".state.File = nil } }
     89 	type @"debug/dwarf".typeReader interface { AddressSize() (? int); Next() (? *@"debug/dwarf".Entry, ? error); Seek(? @"debug/dwarf".Offset); @"debug/dwarf".clone() (? @"debug/dwarf".typeReader); @"debug/dwarf".offset() (? @"debug/dwarf".Offset) }
     90 	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 }
     91 	func (@"debug/dwarf".r2 *@"debug/dwarf".Reader "esc:0x1") AddressSize () (? int) { return @"debug/dwarf".r2.@"debug/dwarf".d.@"debug/dwarf".unit[@"debug/dwarf".r2.@"debug/dwarf".unit].@"debug/dwarf".asize }
     92 	func (@"debug/dwarf".r3 *@"debug/dwarf".Reader "esc:0x10a") Next () (? *@"debug/dwarf".Entry, ? error)
     93 	func (@"debug/dwarf".r1 *@"debug/dwarf".Reader "esc:0x9") Seek (@"debug/dwarf".off2 @"debug/dwarf".Offset)
     94 	func (@"debug/dwarf".r1 *@"debug/dwarf".Reader "esc:0x9") SkipChildren ()
     95 	func (@"debug/dwarf".r2 *@"debug/dwarf".Reader "esc:0x9") @"debug/dwarf".clone () (? @"debug/dwarf".typeReader)
     96 	func (@"debug/dwarf".r1 *@"debug/dwarf".Reader "esc:0x9") @"debug/dwarf".maybeNextUnit ()
     97 	func (@"debug/dwarf".r2 *@"debug/dwarf".Reader "esc:0x1") @"debug/dwarf".offset () (? @"debug/dwarf".Offset) { return @"debug/dwarf".r2.@"debug/dwarf".b.@"debug/dwarf".off }
     98 	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 }
     99 	func (@"debug/dwarf".d2 *@"debug/dwarf".Data) AddTypes (@"debug/dwarf".name3 string, @"debug/dwarf".types4 []byte) (? error)
    100 	func (@"debug/dwarf".d3 *@"debug/dwarf".Data) LineReader (@"debug/dwarf".cu4 *@"debug/dwarf".Entry) (? *@"debug/dwarf".LineReader, ? error)
    101 	func (@"debug/dwarf".d2 *@"debug/dwarf".Data) Reader () (? *@"debug/dwarf".Reader)
    102 	func (@"debug/dwarf".d3 *@"debug/dwarf".Data) Type (@"debug/dwarf".off4 @"debug/dwarf".Offset) (? @"debug/dwarf".Type, ? error)
    103 	func (@"debug/dwarf".d2 *@"debug/dwarf".Data "esc:0x1") @"debug/dwarf".offsetToUnit (@"debug/dwarf".off3 @"debug/dwarf".Offset) (? int)
    104 	func (@"debug/dwarf".d3 *@"debug/dwarf".Data) @"debug/dwarf".parseAbbrev (@"debug/dwarf".off4 uint32, @"debug/dwarf".vers5 int) (? @"debug/dwarf".abbrevTable, ? error)
    105 	func (@"debug/dwarf".d2 *@"debug/dwarf".Data) @"debug/dwarf".parseTypes (@"debug/dwarf".name3 string, @"debug/dwarf".types4 []byte) (? error)
    106 	func (@"debug/dwarf".d3 *@"debug/dwarf".Data) @"debug/dwarf".parseUnits () (? []@"debug/dwarf".unit, ? error)
    107 	func (@"debug/dwarf".d3 *@"debug/dwarf".Data) @"debug/dwarf".readType (@"debug/dwarf".name4 string, @"debug/dwarf".r5 @"debug/dwarf".typeReader, @"debug/dwarf".off6 @"debug/dwarf".Offset, @"debug/dwarf".typeCache7 map[@"debug/dwarf".Offset]@"debug/dwarf".Type "esc:0x1") (? @"debug/dwarf".Type, ? error)
    108 	func (@"debug/dwarf".d3 *@"debug/dwarf".Data) @"debug/dwarf".sigToType (@"debug/dwarf".sig4 uint64) (? @"debug/dwarf".Type, ? error)
    109 	type @"".File struct { ? @"".FileHeader; OptionalHeader interface {}; Sections []*@"".Section; Symbols []*@"".Symbol; @"".closer @"io".Closer }
    110 	func (@"".f2 *@"".File "esc:0x9") Close () (? error)
    111 	func (@"".f3 *@"".File "esc:0x9") DWARF () (? *@"debug/dwarf".Data, ? error)
    112 	func (@"".f3 *@"".File "esc:0x1") ImportedLibraries () (? []string, ? error) { return nil, nil }
    113 	func (@"".f3 *@"".File "esc:0x9") ImportedSymbols () (? []string, ? error)
    114 	func (@"".f2 *@"".File "esc:0x32") Section (@"".name3 string "esc:0x1") (? *@"".Section)
    115 	type @"".ImportDirectory struct { OriginalFirstThunk uint32; TimeDateStamp uint32; ForwarderChain uint32; Name uint32; FirstThunk uint32; @"".dll string }
    116 	type @"".FormatError struct { @"".off int64; @"".msg string; @"".val interface {} }
    117 	func (@"".e2 *@"".FormatError "esc:0x2a") Error () (? string)
    118 	func @"".Open (@"".name3 string) (? *@"".File, ? error)
    119 	func @"".NewFile (@"".r3 @"io".ReaderAt) (? *@"".File, ? error)
    120 	type @"".DataDirectory struct { VirtualAddress uint32; Size uint32 }
    121 	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 }
    122 	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 }
    123 	type @"".SectionHeader32 struct { Name [8]uint8; VirtualSize uint32; VirtualAddress uint32; SizeOfRawData uint32; PointerToRawData uint32; PointerToRelocations uint32; PointerToLineNumbers uint32; NumberOfRelocations uint16; NumberOfLineNumbers uint16; Characteristics uint32 }
    124 	const @"".COFFSymbolSize = 0x12
    125 	type @"".COFFSymbol struct { Name [8]uint8; Value uint32; SectionNumber int16; Type uint16; StorageClass uint8; NumberOfAuxSymbols uint8 }
    126 	const @"".IMAGE_FILE_MACHINE_UNKNOWN = 0x0
    127 	const @"".IMAGE_FILE_MACHINE_AM33 = 0x1d3
    128 	const @"".IMAGE_FILE_MACHINE_AMD64 = 0x8664
    129 	const @"".IMAGE_FILE_MACHINE_ARM = 0x1c0
    130 	const @"".IMAGE_FILE_MACHINE_EBC = 0xebc
    131 	const @"".IMAGE_FILE_MACHINE_I386 = 0x14c
    132 	const @"".IMAGE_FILE_MACHINE_IA64 = 0x200
    133 	const @"".IMAGE_FILE_MACHINE_M32R = 0x9041
    134 	const @"".IMAGE_FILE_MACHINE_MIPS16 = 0x266
    135 	const @"".IMAGE_FILE_MACHINE_MIPSFPU = 0x366
    136 	const @"".IMAGE_FILE_MACHINE_MIPSFPU16 = 0x466
    137 	const @"".IMAGE_FILE_MACHINE_POWERPC = 0x1f0
    138 	const @"".IMAGE_FILE_MACHINE_POWERPCFP = 0x1f1
    139 	const @"".IMAGE_FILE_MACHINE_R4000 = 0x166
    140 	const @"".IMAGE_FILE_MACHINE_SH3 = 0x1a2
    141 	const @"".IMAGE_FILE_MACHINE_SH3DSP = 0x1a3
    142 	const @"".IMAGE_FILE_MACHINE_SH4 = 0x1a6
    143 	const @"".IMAGE_FILE_MACHINE_SH5 = 0x1a8
    144 	const @"".IMAGE_FILE_MACHINE_THUMB = 0x1c2
    145 	const @"".IMAGE_FILE_MACHINE_WCEMIPSV2 = 0x169
    146 	func @"".init ()
    147 	func @"io".NewSectionReader (@"io".r2 @"io".ReaderAt, @"io".off3 int64, @"io".n4 int64) (? *@"io".SectionReader) { return (&@"io".SectionReader{ @"io".r:@"io".r2, @"io".base:@"io".off3, @"io".off:@"io".off3, @"io".limit:@"io".off3 + @"io".n4 }) }
    148 	type @"debug/dwarf".DecodeError struct { Name string; Offset @"debug/dwarf".Offset; Err string }
    149 	func (@"debug/dwarf".e2 @"debug/dwarf".DecodeError "esc:0x1") Error () (? string)
    150 
    151 $$
    152 _go_.o          0           0     0     644     127440    `
    153 go object darwin amd64 go1.5.1 X:none
    154 
    155 !
    156 go13lddebug/dwarf.a"encoding/binary.aerrors.a
    157 fmt.aio.aos.astrconv.a$"".(*Section).DataeH%H;aHX1H\$hH\$pH\$x1H$H$H\$`HC@HX HhH)HHH$HD$HD$HT$HL$ HD$(H\$`Hk@H,$HT$@HT$HL$HHL$HD$PHD$HD$ HT$(HL$0HD$8Ht$HH9u?1HHl$PH9w)LD$@LD$hHT$pHl$xH$H$HX
    161 type.[]uint8
    162 "runtime.makeslice
    163 4io.(*SectionReader).ReadAt
    164 $runtime.panicslice
    165 0runtime.morestack_noctxt`
    166 "".autotmp_0008type.int64"".dat/type.[]uint8"".~r1@type.error"".~r0type.[]uint8"".s type.*"".Section :@H
    170 <fHVTgclocals7c639281594b5ca3b5c2bcc331d3ab8cTgclocals2c033e7f4f4a74cc7e9f368d1fec9f60Xprebuilts/go/darwin-x86/src/debug/pe/file.go$"".(*Section).OpeneH%H;aPHX1H\$hH\$pH1H9H\$`Hk@HD$HHD$8Hl$PHl$@HD$ HH\$(HH$HL$ HD$HD$0Hl$8H(Hl$@=uqHhHHHHLD$(HLHh HD$0H1H9tH\$0H\$pHD$hHXHH$HH\$HH\$HD$L@L$Hl$HL$ HD$0rHH$HH\$HH\$HD$ 
    173 LJgo.itab.*io.SectionReader.io.ReaderAt*type.io.SectionReader
    174 "runtime.newobject6runtime.writeBarrierEnabledNgo.itab.*io.SectionReader.io.ReadSeeker,type.*io.SectionReader$type.io.ReadSeekerNgo.itab.*io.SectionReader.io.ReadSeeker
    175  runtime.typ2Itab
    176 .runtime.writebarrierptr,type.*io.SectionReader type.io.ReaderAtJgo.itab.*io.SectionReader.io.ReaderAt
    177  runtime.typ2Itab
    178 0runtime.morestack_noctxt0"".autotmp_0014type.*uint8"".autotmp_0013O,type.*io.SectionReader"".autotmp_0012,type.*io.SectionReader"".autotmp_0010 type.io.ReaderAt"".autotmp_0009,type.*io.SectionReaderio.n4_type.int64io.off3otype.int64io.r2? type.io.ReaderAt"".~r0$type.io.ReadSeeker"".s type.*"".Section
    180 uPTgclocalscb395d89503762333b1bfb09ba74eb12Tgclocals224c066661476ee90d4178fff75bb75dXprebuilts/go/darwin-x86/src/debug/pe/file.go."".(*FormatError).ErroreH%HD$H;AH1HD$hHD$pH$1H$H$HHJHBHjH
HL$8H$HD$@H$1HD$hHD$pHD$hH[H$H$HjH$HD$Hl$H-H,$HH$HD$H$H\$H$H\$H$H\$ HL$(HD$0H$H$H\$H$H\$HL$xHL$H$HD$ H$HL$(HD$0HL$8H$HD$@H$1H\$XH\$`H\$XHGH$H$H$HH$HT$H|$HD$HL$HD$ H$HL$HHHD$P=HCHH$HD$H$H\$H$H\$H$H\$ HL$(HD$0H$H$H\$H$H\$HL$xHL$H$HD$ HL$(HD$0H$H$HLCL$HD$?%L
    186 "type.interface {}
    187 (runtime.typedmemmove"go.string." '%v'"
    188 fmt.Sprintf
    189 *runtime.concatstring2type.int64
    190 runtime.convT2E6runtime.writeBarrierEnabledDgo.string." in record at byte %#x"	
    191 fmt.Sprintf
    192 
    193 *runtime.concatstring2
    195 .runtime.writebarrierptr
    197 0runtime.morestack_noctxt0"".autotmp_0029"type.interface {}"".autotmp_0028(type.[1]interface {}"".autotmp_0026*type.*[1]interface {}"".autotmp_0025&type.[]interface {}"".autotmp_0024(type.[1]interface {}"".autotmp_0021/&type.[]interface {}"".autotmp_0020type.string"".autotmp_0019type.string"".autotmp_0018otype.string"".autotmp_0017Otype.string"".msgtype.string"".~r0type.string"".e(type.*"".FormatErrorE0E*
&@HpH48Tgclocals948c285cf1025b717e2658a3cccfd415Tgclocals7affa7083e8c5b016398fe7323f445aeXprebuilts/go/darwin-x86/src/debug/pe/file.go"".OpeneH%H;aHp1H$H$H\$xH$H$H\$HT$HD$HL$ HL$HHD$@Ht!H$H$H$HpHT$0HT$8H1H9&HL$8HD$`H$HL$hHL$HL$0H\$H\$(HD$H\$ H\$HHD$@Ht4H$H$H\$@H$H\$HH$HpHL$8H1H9tgHL$8H\$(HtSHD$PHCXHL$X=u(HK`H\$(H$1H$H$HpLC`L$HL$HH$HH\$HH\$HD$gHH$HH\$HH\$HD$"
    203 
    204 os.Open8go.itab.*os.File.io.ReaderAt
    205 "".NewFile
    206  os.(*File).Close4go.itab.*os.File.io.Closer6runtime.writeBarrierEnabled
    207 .runtime.writebarrierptrtype.*os.Filetype.io.Closer4go.itab.*os.File.io.Closer
    208  runtime.typ2Itabtype.*os.File type.io.ReaderAt8go.itab.*os.File.io.ReaderAt
    209  runtime.typ2Itab
    210 0runtime.morestack_noctxtP"".autotmp_0033type.*uint8"".autotmp_0031type.*os.File"".autotmp_0030otype.*os.File
    211 "".fftype.*"".File"".err_type.error"".ftype.*os.File"".~r20type.error"".~r1 type.*"".File"".nametype.string4la@)/!W	+>$6	2	 ?y2.2'Tgclocals6362f41c131a6ba748d5aa5430c5ca02Tgclocalsd24387c5c2ff8a3e94f5afa1fe021086Xprebuilts/go/darwin-x86/src/debug/pe/file.go "".(*File).CloseeH%H;avrH8HT$@1H\$HH\$P1HL$HHL$ HjXHt5HJXHj`Hl$0H,$HL$(HY HL$HD$H\$@1HkXHk`HL$HHD$PH8u
    218 
    219 0runtime.morestack_noctxt0p"".err?type.error"".~r0type.error"".ftype.*"".Filepmop $
    222 &
    224 W9Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocalsa8eabfc4a4514ed6b3b0c61e9680e440Xprebuilts/go/darwin-x86/src/debug/pe/file.go"".NewFilevveH%H$ H;AzH`1H$H$HH$H\$H$H$hH$H$pH$HD$PHH\$`HH$HL$PHD$H$H$H(H$=HhHHHHLD$`HLHh H$HH$HD$H$8HUH`H`H$HD$H$ HT$H$(HL$HD$ H$pH$H$hH[ H$8HD$0HT$8H$8H$0Ht$H$xH$H$H`MYZHH}H<H$H$HH$HOHH8Hm	HHHm	HH$HH$Hm	H\$HHH$HD$H$HHHH$HD$H$ HT$H$(HL$H\$HH\$ H$pH$H$hH[ H$PDXE7X*XHD$HHH$H$H$HD$HD$H$H$H$HH$HH$1H9hHH$HH\$HH\$HH\$HD$ H\$(H|$HHHKHOH$H$H$pH$H$xHL$H$HH$`H\$ H$hHL$(H$HL$0HT$8H$H$Ht$H$xH$H$H`HfHfdHfLHH$pH$x1H$PH$XHH$HD$H$H$xHhH$p=utH(H$H1H9t,H$H$xH$H$H`HH$HH\$HH\$HD$H$Hl$H$t1H$H$H$XcH$H$XhkH\$HD$HH$HD$H$H$H$0H$HH$1H9uHH$HH\$HH\$HH\$HD$ H\$(H|$HHHKHOH$H$H$pH$H$xHL$H$HH$`H\$ H$hHL$(H$0HD$0HL$8H$H$Ht$H$xH$H$H`HH$*Hl$*Hl$H$HT$HL$ HD$(H$HT$H$HL$H$HD$^nkH\$ H$pH$H$hH[ HD$0HL$8H$H$Ht$H$xH$H$H`H$H$H$kHl$HD$D$G1H$[HD$pH9HH$HD$H$H$H$H$HH$1H9UHH$HH\$HH\$HH\$HD$ H\$(H|$HHHKHOH$H$H$pH$H$xHL$H$HH$`H\$ H$hHL$(T$GH$HL$0Hl$8H$H$Ht$H$xH$H$H`vHH\$GHD$pH1H$H$XXXHHHHH$HgHHPHm	HH0Hm	HH$HH$Hm	HH$H$H$H\$H$H\$HD$H\$ H$H\$(H$H$k@l$GHH$H$HD$H$H$HhH$=+H(HihHifhHifhi@hH$H$HS@HkHHKPHHH9w4HkHHH$=uH+H$Hl$HH$HT$HD$HL$Hl$ HT$(Hl$0HL$8H$HtWHH$HHkHHKPH$=u	HS@_LC@L$HT$H$H$8H$Hl$H$H$HtXHHH$H$H$ HT$H$(HL$H\$H$H\$ H$HH$HH\$HH\$H\$H$qH$H$H$H\$HD$H$H$H$H;H$HH$1H9
HH$HH\$HH\$HH\$HD$ H\$(H|$HHHKHOH$H$H$pH$H$xHL$H$HH$`H\$ H$hHL$(HD$0HL$8H$H$Ht$H$xH$H$H`HH$H\$H$(HH$H$HL$H$HkHHH-f9	H$H$(H$HH$1H9(	HH$HH\$HH\$HH\$HD$ H\$(H|$HHHKHOH$H$H$pH$H$xHL$H$HH$`H\$ H$hHL$(H$(HD$0HT$8H$H$Ht$H$xH$H$H`Hf 1H$H$H$HH$H$H$HH$HL$HD$HD$HL$ H$H$`HH$h=urHKHH$HD$1H$H\$H$H\$H$H\$ HD$(HL$0H$xH$H$H`LCL$HL${HHH$HH$`HCH$h=HK HH$H$HkHl$H$HkHl$HT$HL$ HD$(H$HFH$HK0H$HC8H$=HS(1H$H[HD$xH9HH$HD$H$H$H$H$HH$1H9.HH$HH\$HH\$HH\$HD$ H\$(H|$HHHKHOH$H$H$pH$H$xHL$H$HH$`H\$ H$hHL$(H$HL$0HT$8H$HH$@Ht$H$xH$H$H`1H$H$/HHHHH$H$H$ HT$H$(HL$HL$HD$ H$H$H$HD$HD$H$H$H$H\$H$H\$HD$H\$ H$H\$(H$HH$H$HT$H5H$0H$H$0H$H$8X$@X$DX$HX$LX$PX$THX f$XHX"f$ZX$$\H$H@H$0HT$H\$HH$H$hHhH$hH$H$pH$HL$XHl$hHH$HL$XHD$H$H$H(H$=}HhHHHHLD$hHLHh H$HI=%HC@H1H9H$HK@H$HH$PHC0H$X=HK8H$HtjHK(HC0Hk8H$H$Hl$xH$H9s5HH$=uH+HD$xHtH$Hl$LC8L$HL$mAHH$HH\$HH\$HD$LC@L$HD$L@L$Hl$HL$XH$cHHH$H$H$ HT$H$(HL$H\$H$H\$ H$HH$HH\$HH\$H\$H$H$H$x1H$H$H`LC(L$HT$LC L$HL$GHH$HH\$HH\$H\$H$H-f9H$H$ H$HH$1H9HH$HH\$HH\$HH\$HD$ H\$(H|$HHHKHOH$H$H$pH$H$xHL$H$HH$`H\$ H$hHL$(H$ HD$0HT$8H$(H$ Ht$H$xH$H$H`Hf 1H$H$H$HH$H$H$HH$HL$HD$HD$HL$ H$H$`HH$h=urHKHH$HD$2H$H\$H$H\$H$H\$ HD$(HL$0H$xH$H$H`LCL$HL${HHH$Ht=H$`HCH$h=u	HK ^LC L$HL$GHH$HH\$HH\$H\$H$FHH$HH\$HH\$H\$H$HH$HH\$HH\$H\$H$QHH$HH\$HH\$H\$H$^5HH$`H$h1H$@H$HHH$HD$H$H$hHhH$`=utH(H$H1H9t,H$H$xH$H$H`HH$HH\$HH\$HD$H$Hl$H$tR|1L@L$Hl$HL$PH$:a
    252 ntype."".File
    253 "runtime.newobject*type.io.SectionReader
    254 "runtime.newobject6runtime.writeBarrierEnabledtype.[96]uint8
    255 "runtime.newobject	type.[4]uint8	
    256 "runtime.newobject
    259 0io.(*SectionReader).SeekFgo.itab.*io.SectionReader.io.ReaderBtype.encoding/binary.littleEndian<type.encoding/binary.ByteOrder|go.itab.encoding/binary.littleEndian.encoding/binary.ByteOrder8encoding/binary.LittleEndian
    260 runtime.convT2I&type.*"".FileHeader
    261 (encoding/binary.ReadFgo.string."Invalid PE File Format.".type.errors.errorString
    262 "runtime.newobject6runtime.writeBarrierEnabledBgo.itab.*errors.errorString.error0type.*errors.errorStringtype.errorBgo.itab.*errors.errorString.error
    263  runtime.typ2Itab
    264 .runtime.writebarrierptr
    265 0io.(*SectionReader).Seektype.uint32
    266 "runtime.newobjectFgo.itab.*io.SectionReader.io.ReaderBtype.encoding/binary.littleEndian<type.encoding/binary.ByteOrder|go.itab.encoding/binary.littleEndian.encoding/binary.ByteOrder8encoding/binary.LittleEndian
    267 runtime.convT2Itype.*uint32
    268 (encoding/binary.Readtype.[]uint8
    269 "runtime.makeslice 
    270 0io.(*SectionReader).Seek!$type."".COFFSymbol!
    271 "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#
    272 runtime.convT2I$&type.*"".COFFSymbol%
    273 (encoding/binary.Read+
    274 "".getString+type."".Symbol+
    275 "runtime.newobject,6runtime.writeBarrierEnabled.6runtime.writeBarrierEnabled.
    276 .runtime.writebarrierptr/"type.[]*"".Symbol/
    277 "runtime.growslice06runtime.writeBarrierEnabled0
    278 .runtime.writebarrierptr1
    279 .runtime.writebarrierptr2
    280 $runtime.panicindex2
    281 $runtime.panicindex2
    282 $runtime.panicindex2
    283 $runtime.panicindex3
    284 "".cstring4,type.*io.SectionReader4type.io.Reader4Fgo.itab.*io.SectionReader.io.Reader4
    285  runtime.typ2Itab5
    286 0io.(*SectionReader).Seek6Fgo.itab.*io.SectionReader.io.Reader6Btype.encoding/binary.littleEndian6<type.encoding/binary.ByteOrder7|go.itab.encoding/binary.littleEndian.encoding/binary.ByteOrder78encoding/binary.LittleEndian7
    287 runtime.convT2I8&type.*"".FileHeader9
    288 (encoding/binary.Read:0type."".OptionalHeader32:
    289 "runtime.newobject:0type."".OptionalHeader64;
    290 "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=
    291 runtime.convT2I>2type.*"".OptionalHeader32?
    292 (encoding/binary.ReadAtype.uint16B
    293 runtime.convT2EB6runtime.writeBarrierEnabledCzgo.string."pe32 optional header has unexpected Magic of 0x%x"C
    294 fmt.ErrorfD
    295 .runtime.writebarrierptrE2type.*"".OptionalHeader32F6runtime.writeBarrierEnabledF$type.[]*"".SectionG
    296 "runtime.makesliceH6runtime.writeBarrierEnabledH.type."".SectionHeader32H
    297 "runtime.newobjectIFgo.itab.*io.SectionReader.io.ReaderJBtype.encoding/binary.littleEndianJ<type.encoding/binary.ByteOrderJ|go.itab.encoding/binary.littleEndian.encoding/binary.ByteOrderJ8encoding/binary.LittleEndianJ
    298 runtime.convT2IL0type.*"".SectionHeader32L
    299 (encoding/binary.ReadO
    300 "".cstringO
    301 strconv.AtoiP
    302 "".getStringQtype."".SectionQ
    303 "runtime.newobjectQ""".statictmp_0101Q
    304  runtime.duffcopyT*type."".SectionHeaderT
    305 (runtime.typedmemmoveU*type.io.SectionReaderU
    306 "runtime.newobjectV6runtime.writeBarrierEnabledW6runtime.writeBarrierEnabledWJgo.itab.*io.SectionReader.io.ReaderAtX6runtime.writeBarrierEnabledZ6runtime.writeBarrierEnabledZ
    307 .runtime.writebarrierptrZ
    308 $runtime.panicindex[
    309 .runtime.writebarrierptr[,type.*io.SectionReader[ type.io.ReaderAt[Jgo.itab.*io.SectionReader.io.ReaderAt\
    310  runtime.typ2Itab\
    311 .runtime.writebarrierptr\
    312 .runtime.writebarrierptr^
    313 "".cstring^,type.*io.SectionReader^type.io.Reader_Fgo.itab.*io.SectionReader.io.Reader_
    314  runtime.typ2Itab`
    315 .runtime.writebarrierptra
    316 .runtime.writebarrierptra,type.*io.SectionReaderatype.io.ReaderaFgo.itab.*io.SectionReader.io.Readera
    317  runtime.typ2Itabb2"".sizeofOptionalHeader64bFgo.itab.*io.SectionReader.io.ReadercBtype.encoding/binary.littleEndianc<type.encoding/binary.ByteOrderc|go.itab.encoding/binary.littleEndian.encoding/binary.ByteOrderc8encoding/binary.LittleEndiand
    318 runtime.convT2Ie2type.*"".OptionalHeader64e
    319 (encoding/binary.Readhtype.uint16h
    320 runtime.convT2Ei6runtime.writeBarrierEnabledi|go.string."pe32+ optional header has unexpected Magic of 0x%x"j
    321 fmt.Errorfk
    322 .runtime.writebarrierptrk2type.*"".OptionalHeader64l6runtime.writeBarrierEnabledm
    323 .runtime.writebarrierptrm,type.*io.SectionReadermtype.io.ReadermFgo.itab.*io.SectionReader.io.Readerm
    324  runtime.typ2Itabn,type.*io.SectionReaderntype.io.ReadernFgo.itab.*io.SectionReader.io.Readern
    325  runtime.typ2Itabo,type.*io.SectionReaderotype.io.ReaderoFgo.itab.*io.SectionReader.io.Readero
    326  runtime.typ2Itabp,type.*io.SectionReaderptype.io.ReaderpFgo.itab.*io.SectionReader.io.Readerp
    327  runtime.typ2ItabqFgo.string."Invalid PE File Format."q.type.errors.errorStringq
    328 "runtime.newobjectr6runtime.writeBarrierEnabledrBgo.itab.*errors.errorString.errors0type.*errors.errorStringstype.errortBgo.itab.*errors.errorString.errort
    329  runtime.typ2Itabt
    330 .runtime.writebarrierptru
    331 $runtime.panicindexu
    332 $runtime.panicindexu
    333 $runtime.panicindexu
    334 $runtime.panicindexu
    335 .runtime.writebarrierptrv
    336 0runtime.morestack_noctxtP
"".autotmp_0106type.*uint8"".autotmp_0105,type.*io.SectionReader"".autotmp_0104,type.*io.SectionReader"".autotmp_0100type.*uint8"".autotmp_0099"type.interface {}"".autotmp_0098(type.[1]interface {}"".autotmp_0096*type.*[1]interface {}"".autotmp_0095&type.[]interface {}"".autotmp_0094type.*uint8"".autotmp_0093"type.interface {}"".autotmp_0092(type.[1]interface {}"".autotmp_0089&type.[]interface {}"".autotmp_0088type.*uint8"".autotmp_0086type.*uint8"".autotmp_0085
    338 type.*"".Symbol"".autotmp_0084type.uint32"".autotmp_0083type.*uint8"".autotmp_0082type.*uint8"".autotmp_0081type.*uint8"".autotmp_0080type.error"".autotmp_00790type.*errors.errorString"".autotmp_0078type.*uint8"".autotmp_0077
    339 type.*uint8"".autotmp_0075
    340 0type.*errors.errorString"".autotmp_0073	,type.*io.SectionReader"".autotmp_0072,type.*io.SectionReader"".autotmp_0071type.int"".autotmp_0070_*type."".SectionHeader"".autotmp_0069type.[]uint8"".autotmp_0068type.string"".autotmp_0067type.[]uint8"".autotmp_0066	0type.*"".SectionHeader32"".autotmp_0065,type.*io.SectionReader"".autotmp_0064$type.[]*"".Section"".autotmp_00632type.*"".OptionalHeader64"".autotmp_0062type.error"".autotmp_0061	2type.*"".OptionalHeader64"".autotmp_0060,type.*io.SectionReader"".autotmp_00592type.*"".OptionalHeader32"".autotmp_0058type.error"".autotmp_0057	2type.*"".OptionalHeader32"".autotmp_0056,type.*io.SectionReader"".autotmp_0055&type.*"".FileHeader"".autotmp_0054,type.*io.SectionReader"".autotmp_0052type.[]uint8"".autotmp_0051type.[]uint8"".autotmp_0049	&type.*"".COFFSymbol"".autotmp_0048,type.*io.SectionReader"".autotmp_0047	type.*uint32"".autotmp_0046,type.*io.SectionReader"".autotmp_00450type.*errors.errorString"".autotmp_0044	&type.*"".FileHeader"".autotmp_0043,type.*io.SectionReader"".autotmp_00420type.*errors.errorString"".autotmp_0041type.[]uint8"".autotmp_0040type.[]uint8"".autotmp_0039type.[]uint8"".&oh642type.*"".OptionalHeader64"".&oh322type.*"".OptionalHeader32
    341 "".&ltype.*uint32"".&sign	type.*[4]uint8"".&dosheadertype.*[96]uint8io.n4type.int64io.off3type.int64io.r2 type.io.ReaderAt(encoding/binary.b2type.[]uint8"".~r0type.errorerrors.text2type.string"".~r0type.errorerrors.text2type.string(encoding/binary.b2type.[]uint8io.n4type.int64io.off3type.int64io.r2 type.io.ReaderAt"".s
    348  type.*"".Section"".nametype.string"".errtype.error
    350 "".sh0type.*"".SectionHeader32"".itype.int"".errtype.error"".errtype.error"".errtype.error"".s
    356 type.*"".Symbol"".nametype.string"".errtype.error
    358 "".cs
    359 &type.*"".COFFSymbol"".itype.int"".auxtype.uint8"".errtype.error"".errtype.error
    365 "".sstype.[]uint8"".errtype.error"".signofftype.int64"".basetype.int64"".errtype.error
    370 "".sr,type.*io.SectionReader"".f
    372 type.*"".File"".~r20type.error"".~r1 type.*"".File"".r type.io.ReaderAt"












	







	







;4$s3	'$,*$5q$*$
    405 
3JI			;/0/0	Y:6'$$A$lJ4
    410 
    411 
    412 
    413 
    414 
    415 

    418 <UT5
6569+S:6*;:$9:AQ:A
#$?Uershorojko)_.%V"K9oqor@&oK-HnRGN#R
    428 or@\1:
A:V.
>"Tgclocalsd9e844be8fad87a8c3b76490091b2fb3Tgclocals1705727157e905d73faa451881d883f4Xprebuilts/go/darwin-x86/src/debug/pe/file.go"".cstringeH%H;aHHHt$PHT$X1H\$hH\$p1H9}H9siHtHH9|Hl$`H9wDH$Ht$0Ht$HD$8HD$Hl$@Hl$H\$ H\$hH\$(H\$pHHM
    434 
    435 
    436 2runtime.slicebytetostring
    437 $runtime.panicslice
    438 $runtime.panicindex
    439 0runtime.morestack_noctxtP"".autotmp_0149/type.[]uint8"".autotmp_0147type.int"".~r10type.string"".btype.[]uint8%- U
    441 }CTgclocals89fe65749ce0afc971c0982226501ff0Tgclocals790e5cc5051fc0affc980ade09e929ecXprebuilts/go/darwin-x86/src/debug/pe/file.go"".getStringeH%H;aHHH|$hHt$PHT$X1H\$pH\$xHH9HH9H9HuxLD$`HL9wdH9w_H)I)IItM9H$LL$0LL$Hl$8Hl$LD$@LD$H\$ H\$pH\$(H\$x$HHHH9g1H\$pH\$x$HH1H\$pH\$x$HH
    446 
    447 
    448 2runtime.slicebytetostring
    449 $runtime.panicslice
    450 $runtime.panicindex
    451 0runtime.morestack_noctxtp"".autotmp_0153type.int"".autotmp_0152/type.[]uint8"".autotmp_0151type.int"".~r3`type.bool"".~r2@type.string"".start0type.int"".sectiontype.[]uint82+
,2x
    457 
Tgclocalsa041240a37ce609efec56707c330d1a4Tgclocals790e5cc5051fc0affc980ade09e929ecXprebuilts/go/darwin-x86/src/debug/pe/file.go$"".(*File).SectioneH%H;aHpH$H\$xHHK(HC0Hk8Hl$h1HD$`HD$(HL$XHl$(H9HL$@HHT$0H\$8HH3HCH9uXHt$HH4$HD$PHD$H$Hl$H|$H$HT$0HL$@\$ tH\$8H$HpHHHl$(H9kH$Hpo
    461 
    462  runtime.eqstring
    463 0runtime.morestack_noctxt@"".autotmp_0159Otype.string"".autotmp_0157_"type.**"".Section"".autotmp_0156type.int"".autotmp_0155type.int"".autotmp_0154/$type.[]*"".Section"".so type.*"".Section"".~r10 type.*"".Section"".nametype.string"".ftype.*"".File&%(La
    465 uTgclocalsaefd16b155593f6f07980a05b297ad1fTgclocalscf89d5c81323c78771a60eb7aec9de00Xprebuilts/go/darwin-x86/src/debug/pe/file.go "".(*File).DWARFeH%H$H;AH1H$H$1LIL
IH5HHHH$p1L$L$0L$L$8L$L$@L$L$HH$H$PH$H$XH$ H$`H$(H$h1H$H$0HH$H9HH$HH	HkH$H$H$ H$(H$HH\$HD$H$HL$H$Hl$ HL$(HD$0H$H$H$HL$H$HD$HD$1H9H$H$HHH$H9L$L$L$H$H$H$H$H$H$L$pL$xL$L$L$L$H$H$H$H$H$H$L$L,$L$Ld$L$L\$1H\$H\$ H\$(1H\$0H\$8H\$@L$`LT$HL$hLL$PL$pLD$XH$HH|$`H$PHt$hH$XHl$p1H\$xH$H$1H$H$H$H$0H$H$8H$H$@H$H$H$H$H$H$H$HH$H$H$LL$HL$Ht$H|$ LT$(L$H$Ht-h9s$H$H$L$HXvXh9s
hH9wOHH$pH$Hs/HkHL$xLH$HKH$Hs#f 
    473 r$go.string."abbrev" go.string."info" go.string."line"go.string."str"
    474  runtime.duffzero&go.string.".debug_"
    475 *runtime.concatstring2
    476 $"".(*File).Section
    477 debug/dwarf.New
    478 $"".(*Section).Data
    479 $runtime.panicindex
    480 $runtime.panicslice
    481 0runtime.morestack_noctxt@,"".autotmp_0171type.[]uint8"".autotmp_0170type.[]uint8"".autotmp_0169type.[]uint8"".autotmp_0168type.string"".autotmp_0167type.*string"".autotmp_0166type.int"".autotmp_0165type.int"".autotmp_0160type.[4]string"".strtype.[]uint8"".linetype.[]uint8"".infotype.[]uint8"".abbrevtype.[]uint8"".errtype.error"".btype.[]uint8"".s type.*"".Section"".nametype.string"".itype.int"".dattype.[4][]uint8"".namestype.[4]string"".~r1 type.error"".~r0,type.*debug/dwarf.Data"".ftype.*"".File("t	^4:F0( :$
@
    496 ITgclocalsc87a734079562d73ffd9eee8328c7183Tgclocals8f7c1cd22974ddf093616cda1c293e05Xprebuilts/go/darwin-x86/src/debug/pe/file.go4"".(*File).ImportedSymbols76eH%H$hH;A
HH$ 1H$(H$0H$81H$@H$HHfdD$OH$HH\$HD$HD$1H9u41H$(H$0H$81H$@H$HHHD$`H$LL$L$H\$H$H|$H$HD$ HL$(H$H$Ht21H$(H$0H$8H$@H$HH1H$H$H$H$H?1$$H$H$HHH$8HALHHm	LHHm	LL$(HH$0~Hm	AHHZHLHtHHHH$hH&]HHm	HH
    509 Hm	HH$XHH$`
    510 Hm	$HH
    511 HLHtHHHH$Hd
    512 ]HO
    513 Hm	HH/
    514 Hm	HH$HH$	Hm	$H$HH	HHMHtIH$HH$ML$D$AgH\$`H$H\$H$H\$H$H\$H$1H$H$H$H$H$H$H$1H$xHD$PH$pHHl$PH9HD$hHDDHD@xpHPHh HL$XD$D$D$D$D$D$$$$$H$H$H$H$H$H$H$H\$H$H\$$LD$`Ah)H\$H$Ht$ HHHNHKH\$`H$Ht$HT$HL$$LD$`Ah)HIH9H)I)IItMH$L$L$H$Hi|$OH$HH$HH$PHdHHMHmHH	HH+HmHH	HHHmHH	HHHmH H	HHHmH(H	HHHmH0H	HH$@HH$HlHmH8H	HH$H$H9L$HHHtIH$H$L$HuiHD$hHL$XH(HHl$PH9H$H$(H$H$0H$H$81H$@H$HHHH!HH$H$H$H\$H$H\$LD$`Ah)H\$HL$ HD$(H$H$HL$H$HD$HH\$HD$ H$H|$(HHHKHOH\$8H$H\$@H$H$H$H$HHH9wMH$HHHkHH$HkH$=uH+H$Hl$H-H,$HL$HD$HT$H\$ HL$(H\$0HT$8HHH$H$H$eH$HH$HH$ H`HHIHm	HH)Hm	HH$HH$Hm	H$H$HL$HHHtIH$H$L$CH$H$H$H\$H$H\$Hl$`])H\$HL$ HD$(H$HL$pHL$HD$xHD$HH\$HD$ H$H|$(HHHKHOH\$8H$H\$@H$H$H$H$HHH9wMH$HHHkHH$HkH$=uH+0H$Hl$H-H,$HL$HD$HT$H\$ HL$(H\$0HT$8HHH$H$H$e?H$H$H$HHH9H$HHHk(HD$k$k$k$kH$Hk H$=u	HkLCL$Hl$L$H$H-H,$HL$HD$HT$H\$ D$L$H$HL$(H\$0HT$8HHH$H$H$
Iv
    555 $go.string.".idata"
    556 $"".(*File).Section
    557 $"".(*Section).Data
    558 $"".(*Section).Data
    559 "".getString
    560 $"".(*Section).Data
    561 "".getString go.string.":"!
    562 *runtime.concatstring3"6runtime.writeBarrierEnabled#
    563 .runtime.writebarrierptr#type.[]string#
    564 "runtime.growslice$
    565 $runtime.panicslice$
    566 $runtime.panicindex$
    567 $runtime.panicindex$
    568 $runtime.panicindex%
    569 $runtime.panicindex%
    570 $runtime.panicindex%
    571 $runtime.panicindex%
    572 $runtime.panicindex%
    573 $runtime.panicindex%
    574 $runtime.panicslice*
    575 "".getString+go.string.":"+
    576 *runtime.concatstring3-6runtime.writeBarrierEnabled.
    577 .runtime.writebarrierptr.type.[]string.
    578 "runtime.growslice/
    579 $runtime.panicslice/
    580 $runtime.panicindex/
    581 $runtime.panicindex/
    582 $runtime.panicindex0
    583 $runtime.panicindex0
    584 $runtime.panicslice0
    585 $runtime.panicslice26runtime.writeBarrierEnabled2
    586 .runtime.writebarrierptr32type.[]"".ImportDirectory3
    587 "runtime.growslice4
    588 $runtime.panicslice5
    589 $runtime.panicindex5
    590 $runtime.panicindex5
    591 $runtime.panicindex5
    592 $runtime.panicindex5
    593 $runtime.panicslice5
    594 $runtime.panicindex5
    595 $runtime.panicindex5
    596 $runtime.panicindex5
    597 $runtime.panicindex6
    598 $runtime.panicslice6
    599 $runtime.panicindex6
    600 $runtime.panicindex6
    601 $runtime.panicindex6
    602 $runtime.panicindex6
    603 $runtime.panicslice6
    604 0runtime.morestack_noctxt`F"".autotmp_0191type.string"".autotmp_0190type.uint32"".autotmp_0189type.string"".autotmp_0187O.type."".ImportDirectory"".autotmp_01860type.*"".ImportDirectory"".autotmp_0185type.int"".autotmp_0184type.int"".autotmp_0183type.uint32"".autotmp_0182type.uint32"".autotmp_0180type.[]uint8"".autotmp_0179type.[]uint8"".autotmp_0177type.uint32"".autotmp_01762type.[]"".ImportDirectory"".autotmp_0175type.[]uint8"".autotmp_0174type.[]uint8"".autotmp_0172type.int(encoding/binary.b2type.[]uint8(encoding/binary.b2type.[]uint8(encoding/binary.b2type.[]uint8(encoding/binary.b2type.[]uint8(encoding/binary.b2type.[]uint8
    605 "".fntype.string
    606 "".fntype.string
    607 "".dt.type."".ImportDirectory"".alltype.[]string"".namestype.[]uint8
    609 "".dt.type."".ImportDirectory"".ida2type.[]"".ImportDirectory"".errtype.error"".dtype.[]uint8
    612 "".ds type.*"".Section"".pe64type.bool"".~r1@type.error"".~r0type.[]string"".ftype.*"".File8"V#4G2 H
    617 5]LLFJ-JV?L	K/0/0V#"n###J}N7
7
9OTgclocals0891322d74bce84167dc36b8cf8be0b6Tgclocals069c8f1fd857c595abe477516c544bb2Xprebuilts/go/darwin-x86/src/debug/pe/file.go8"".(*File).ImportedLibraries`D111H\$H\$H\$ 1H\$(H\$0`"".~r1@type.error"".~r0type.[]string"".ftype.*"".File00,Tgclocals6432f8c6a0d23fa7bee6c5d96f21a92aTgclocals33cdeccccebe80329f1fdbee7f5874cbXprebuilts/go/darwin-x86/src/debug/pe/file.go"".initeH%H$H;AHtuHH|$(1HH$H\$(H\$HD$H\$HH$HKHL$H\$fH$1HHH$H$H\$HD$H\$HH$HKHL$H\$fH.
    631 J"".initdoneb"".initdone
    632 "runtime.throwinit"".initdone
    633  debug/dwarf.init
    634 (encoding/binary.init
    635 fmt.init
    636 io.init
    637 os.init
    638 strconv.init
    639  runtime.duffzero0type."".OptionalHeader32
    640 runtime.convT2E
    641 (encoding/binary.Size2"".sizeofOptionalHeader32
    642  runtime.duffzero0type."".OptionalHeader64
    643 runtime.convT2E
    644 (encoding/binary.Size2"".sizeofOptionalHeader64"".initdone
    645 0runtime.morestack_noctxt"".autotmp_0204type.int"".autotmp_02030type."".OptionalHeader64"".autotmp_02010type."".OptionalHeader32&"nnU_
    647 BTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/debug/pe/pe.goXprebuilts/go/darwin-x86/src/debug/pe/file.go6type..hash."".SectionHeadereH%H;avvH H\$(H$H<$tYH\$0H\$HD$H\$(H$H<$t,H$HD$0HD$HD$ H\$H\$8H %%q
    650 \
    651 runtime.strhash
    652 runtime.memhash
    653 0runtime.morestack_noctxt0@"".~r2 type.uintptr"".htype.uintptr"".p,type.*"".SectionHeader@_?@
    655 -cTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbXprebuilts/go/darwin-x86/src/debug/pe/file.go2type..eq."".SectionHeadereH%H;aHHH\$PHH3HKH\$XHHHCH9Ht$8H4$HL$@HL$HT$(HT$HD$0HD$\$ tkH\$PH$H<$tRH$H\$XH\$H|$t2HD$HD$ \$u
    657 D$`HHD$`HH%%D$`HH>!
    658 
    659  runtime.eqstring
    660  runtime.memequal
    661 0runtime.morestack_noctxt0
    662 "".autotmp_0207?type.string"".autotmp_0206type.string"".~r2 type.bool"".q,type.*"".SectionHeader"".p,type.*"".SectionHeader2	sTgclocals3bb21ca8fe1d99a3e492463bd711418aTgclocalsa8eabfc4a4514ed6b3b0c61e9680e440Xprebuilts/go/darwin-x86/src/debug/pe/file.go*type..hash."".SectioneH%H;aH H\$(H$H<$H\$0H\$HD$H\$(H$H<$t^H$0HD$0HD$HD$H\$(H$H<$t,H$@HD$0HD$HD$H\$H\$8H %%%i4
    666 
    667 l
    668 6type..hash."".SectionHeader
    669 "runtime.interhash
    670 runtime.memhash
    671 0runtime.morestack_noctxt0@"".~r2 type.uintptr"".htype.uintptr"".p type.*"".Section@?@,5Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbXprebuilts/go/darwin-x86/src/debug/pe/file.go&type..eq."".SectioneH%H;aHHHL$PHH\$XHH$H\$\$u
    676 D$`HHH\$XHHK0Hs8H\$PHtxHC0HS8H9uaHD$(H$HT$0HT$HL$8HL$Ht$@Ht$\$ t+Hl$PH]@LD$XIh@H9t
    677 D$`HHD$`HHD$`HHj2
    678 ~
    679 2type..eq."".SectionHeader
    680 runtime.ifaceeq
    681 0runtime.morestack_noctxt0
    682 "".autotmp_0211? type.io.ReaderAt"".autotmp_0210 type.io.ReaderAt"".~r2 type.bool"".q type.*"".Section"".p type.*"".Section>?		/>Tgclocals3bb21ca8fe1d99a3e492463bd711418aTgclocalsa8eabfc4a4514ed6b3b0c61e9680e440Xprebuilts/go/darwin-x86/src/debug/pe/file.go("".(*Section).ReadAteH%H;aHPHY Ht
H|$XH9;uH#11H$H$H\$XHtpHK0Hk8H\$`H\$H\$hH\$H\$pH\$H\$xH\$ Hl$HH,$HL$@HY HT$(HL$0HD$8H$H$H$HP6
    687 
    688 0runtime.morestack_noctxt
    689 io.err`type.errorio.nPtype.intio.off@type.int64io.ptype.[]uint8""..this type.*"".SectionBTgclocals6d46c0650eba7dbebc0db316e0e0cf3bTgclocals23e8278e2b69a3a75fa59b23c49ed6ad<autogenerated>""".Section.ReadAteH%H;aHPHY Ht
H|$XH9;uH#11H$H$H$H$H$H\$H$H\$H$H\$H$H\$ HD$HH$HL$@HY HT$(HL$0HD$8H$H$H$HP1
    695 
    696 0runtime.morestack_noctxt
    697 io.errtype.errorio.ntype.intio.offtype.int64io.ptype.[]uint8""..thistype."".Section9Tgclocalsf16fa7dd336388fb300fce4fe70a941aTgclocals23e8278e2b69a3a75fa59b23c49ed6ad<autogenerated>2type..hash."".FormatErroreH%H;aH H\$(H$H<$H\$0H\$HD$HD$H\$(H$H<$tUH$HD$0HD$HD$H\$(H$H<$t#H$HD$0HD$H\$H\$8H %%%i4
    703 
    704 ~
    705 runtime.memhash
    706 runtime.strhash
    707 (runtime.nilinterhash
    708 0runtime.morestack_noctxt0@"".~r2 type.uintptr"".htype.uintptr"".p(type.*"".FormatError@?@,>Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbXprebuilts/go/darwin-x86/src/debug/pe/file.go.type..eq."".FormatErroreH%H;a	HhHL$pHD$xHH(H9t
$HhHqHIHPH@H9Ht$XH4$HL$`HL$HT$HHT$HD$PHD$\$ H\$xHttHKHs H\$pHt]HCHS H9uCHD$(H$HT$0HT$HL$8HL$Ht$@Ht$\$ t
$Hh$Hh$Hh
    714 
    715  runtime.eqstring
    716 runtime.efaceeq
    717 0runtime.morestack_noctxt0"".autotmp_0221"type.interface {}"".autotmp_0220_"type.interface {}"".autotmp_0219?type.string"".autotmp_0218type.string"".~r2 type.bool"".q(type.*"".FormatError"".p(type.*"".FormatError>!yTgclocals3bb21ca8fe1d99a3e492463bd711418aTgclocals895d0569a38a56443b84805daa09d838Xprebuilts/go/darwin-x86/src/debug/pe/file.go4type..hash.[1]interface {}eH%H;aH(HL$81HD$Hl$H9}\HD$ HHHHckRHHH\$0Ht;HHH$HD$8HD$HL$HD$ HHl$H9|HL$@H([
    722 
    723 (runtime.nilinterhash
    724 0runtime.morestack_noctxt0P
    725 "".autotmp_0223type.int"".autotmp_0222type.int"".~r2 type.uintptr"".htype.uintptr"".p*type.*[1]interface {}POP
    727 q?Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbXprebuilts/go/darwin-x86/src/debug/pe/file.go0type..eq.[1]interface {}eH%H;aHX1HD$(Hl$(H9HD$0H\$hHHHHHHsH\$`HtvHHHHHSH9uVHD$8H$HT$@HT$HL$HHL$Ht$PHt$\$ t HD$0HHl$(H9nD$pHXD$pHXc
    730 
    731 runtime.efaceeq
    732 0runtime.morestack_noctxt0"".autotmp_0227?"type.interface {}"".autotmp_0226"type.interface {}"".autotmp_0225_type.int"".autotmp_0224Otype.int"".~r2 type.bool"".q*type.*[1]interface {}"".p*type.*[1]interface {}&	STgclocals3bb21ca8fe1d99a3e492463bd711418aTgclocalsa8eabfc4a4514ed6b3b0c61e9680e440Xprebuilts/go/darwin-x86/src/debug/pe/file.go(type..hash."".SymboleH%H;avvH H\$(H$H<$tYH\$0H\$HD$H\$(H$H<$t,H$HD$0HD$HD$	H\$H\$8H %%q
    736 \
    737 runtime.strhash
    738 runtime.memhash
    739 0runtime.morestack_noctxt0@"".~r2 type.uintptr"".htype.uintptr"".ptype.*"".Symbol@_?@
    741 -cTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbXprebuilts/go/darwin-x86/src/debug/pe/file.go$type..eq."".SymboleH%H;aHHH\$PHH3HKH\$XHHHCH9Ht$8H4$HL$@HL$HT$(HT$HD$0HD$\$ tkH\$PH$H<$tRH$H\$XH\$H|$t2HD$HD$	\$u
    743 D$`HHD$`HH%%D$`HH>!
    744 
    745  runtime.eqstring
    746  runtime.memequal
    747 0runtime.morestack_noctxt0
    748 "".autotmp_0230?type.string"".autotmp_0229type.string"".~r2 type.bool"".qtype.*"".Symbol"".ptype.*"".Symbol2	sTgclocals3bb21ca8fe1d99a3e492463bd711418aTgclocalsa8eabfc4a4514ed6b3b0c61e9680e440Xprebuilts/go/darwin-x86/src/debug/pe/file.go0type..hash."".COFFSymboleH%H;avDH H\$(H$H<$t'H\$0H\$HD$H\$H\$8H %
    752 n
    753 runtime.memhash
    754 0runtime.morestack_noctxt0@"".~r2 type.uintptr"".htype.uintptr"".p&type.*"".COFFSymbol@6?@``
    756 6*Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbXprebuilts/go/darwin-x86/src/debug/pe/file.go,type..eq."".COFFSymboleH%H;avdH H\$(H$H<$tGH\$0H\$H|$t,HD$\$u
    758 D$8H D$8H %%
    759 ~
    760  runtime.memequal
    761 0runtime.morestack_noctxt0@"".~r2 type.bool"".q&type.*"".COFFSymbol"".p&type.*"".COFFSymbol@C?@	?@
    763 >BTgclocals3bb21ca8fe1d99a3e492463bd711418aTgclocals33cdeccccebe80329f1fdbee7f5874cbXprebuilts/go/darwin-x86/src/debug/pe/file.go(type..hash.[4]stringeH%H;aH(HL$81HD$Hl$H9}\HD$ HHHHckRHHH\$0Ht;HHH$HD$8HD$HL$HD$ HHl$H9|HL$@H([
    765 
    766 runtime.strhash
    767 0runtime.morestack_noctxt0P
    768 "".autotmp_0233type.int"".autotmp_0232type.int"".~r2 type.uintptr"".htype.uintptr"".ptype.*[4]stringPOP
    770 q?Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbXprebuilts/go/darwin-x86/src/debug/pe/file.go$type..eq.[4]stringeH%H;aHX1HD$(Hl$(H9HD$0H\$`HHHHH3HKH\$hHtvHHHHHCH9uVHt$HH4$HL$PHL$HT$8HT$HD$@HD$\$ t HD$0HHl$(H9nD$pHXD$pHXc
    772 
    773  runtime.eqstring
    774 0runtime.morestack_noctxt0"".autotmp_0237?type.string"".autotmp_0236type.string"".autotmp_0235_type.int"".autotmp_0234Otype.int"".~r2 type.bool"".qtype.*[4]string"".ptype.*[4]string&	STgclocals3bb21ca8fe1d99a3e492463bd711418aTgclocalsa8eabfc4a4514ed6b3b0c61e9680e440Xprebuilts/go/darwin-x86/src/debug/pe/file.go:type..hash."".ImportDirectoryeH%H;avvH H\$(H$H<$tYH\$0H\$HD$HD$H\$(H$H<$t#H$HD$0HD$H\$H\$8H %%q
    778 n
    779 runtime.memhash
    780 runtime.strhash
    781 0runtime.morestack_noctxt0@"".~r2 type.uintptr"".htype.uintptr"".p0type.*"".ImportDirectory@_?@
    783 6ZTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbXprebuilts/go/darwin-x86/src/debug/pe/file.go6type..eq."".ImportDirectoryeH%H;aHHH\$PH$H<$H\$XH\$H|$HD$\$u
    785 D$`HHH\$PHtnHsHK H\$XHtWHSHC H9u@Ht$8H4$HL$@HL$HT$(HT$HD$0HD$\$ t
    786 D$`HHD$`HH%U%3
    787 
    788  runtime.memequal
    789  runtime.eqstring
    790 0runtime.morestack_noctxt0
    791 "".autotmp_0240?type.string"".autotmp_0239type.string"".~r2 type.bool"".q0type.*"".ImportDirectory"".p0type.*"".ImportDirectory0Kj	8JTgclocals3bb21ca8fe1d99a3e492463bd711418aTgclocalsa8eabfc4a4514ed6b3b0c61e9680e440Xprebuilts/go/darwin-x86/src/debug/pe/file.goTgclocals2c033e7f4f4a74cc7e9f368d1fec9f60  Tgclocals7c639281594b5ca3b5c2bcc331d3ab8c  0Jgo.itab.*io.SectionReader.io.ReaderAt0Ngo.itab.*io.SectionReader.io.ReadSeekerTgclocals224c066661476ee90d4178fff75bb75d((Tgclocalscb395d89503762333b1bfb09ba74eb12((*go.string.hdr." '%v'"  "go.string." '%v'""go.string." '%v'" '%v'Lgo.string.hdr." in record at byte %#x"  Dgo.string." in record at byte %#x"Dgo.string." in record at byte %#x"0. in record at byte %#xTgclocals7affa7083e8c5b016398fe7323f445aeHHTgclocals948c285cf1025b717e2658a3cccfd415HH08go.itab.*os.File.io.ReaderAt04go.itab.*os.File.io.CloserTgclocalsd24387c5c2ff8a3e94f5afa1fe021086@@	Tgclocals6362f41c131a6ba748d5aa5430c5ca02@@Tgclocalsa8eabfc4a4514ed6b3b0c61e9680e440Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa20Bgo.itab.*errors.errorString.error0Fgo.itab.*io.SectionReader.io.Reader0|go.itab.encoding/binary.littleEndian.encoding/binary.ByteOrderNgo.string.hdr."Invalid PE File Format."  Fgo.string."Invalid PE File Format."Fgo.string."Invalid PE File Format."00Invalid PE File Format.go.string.hdr."pe32 optional header has unexpected Magic of 0x%x"  1zgo.string."pe32 optional header has unexpected Magic of 0x%x"zgo.string."pe32 optional header has unexpected Magic of 0x%x"pdpe32 optional header has unexpected Magic of 0x%xgo.string.hdr."pe32+ optional header has unexpected Magic of 0x%x"  2|go.string."pe32+ optional header has unexpected Magic of 0x%x"|go.string."pe32+ optional header has unexpected Magic of 0x%x"pfpe32+ optional header has unexpected Magic of 0x%xTgclocals1705727157e905d73faa451881d883f4'Z 1D1E11U$%
Tgclocalsd9e844be8fad87a8c3b76490091b2fb3'Tgclocals790e5cc5051fc0affc980ade09e929ecTgclocals89fe65749ce0afc971c0982226501ff0Tgclocals790e5cc5051fc0affc980ade09e929ecTgclocalsa041240a37ce609efec56707c330d1a4Tgclocalscf89d5c81323c78771a60eb7aec9de00  Tgclocalsaefd16b155593f6f07980a05b297ad1f  ,go.string.hdr."abbrev"  $go.string."abbrev"$go.string."abbrev"abbrev(go.string.hdr."info"   go.string."info" go.string."info"
    797 info(go.string.hdr."line"   go.string."line" go.string."line"
    798 line&go.string.hdr."str"  go.string."str"go.string."str"str.go.string.hdr.".debug_"  &go.string.".debug_"&go.string.".debug_".debug_Tgclocals8f7c1cd22974ddf093616cda1c293e05PP<UIUIUTgclocalsc87a734079562d73ffd9eee8328c718300,go.string.hdr.".idata"  $go.string.".idata"$go.string.".idata".idata"go.string.hdr.":"  go.string.":"go.string.":":Tgclocals069c8f1fd857c595abe477516c544bb27    Tgclocals0891322d74bce84167dc36b8cf8be0b6PPTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals6432f8c6a0d23fa7bee6c5d96f21a92aTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals33cdeccccebe80329f1fdbee7f5874cb02"".sizeofOptionalHeader32type.uint1602"".sizeofOptionalHeader64type.uint16""".statictmp_0101`*type."".SectionHeader0"".initdonetype.uint8*"".(*Section).Dataf$"".(*Section).Data*"".(*Section).Openf$"".(*Section).Open4"".(*FormatError).Errorf."".(*FormatError).Error"".Openf"".Open&"".(*File).Closef "".(*File).Close"".NewFilef"".NewFile"".cstringf"".cstring"".getStringf"".getString*"".(*File).Sectionf$"".(*File).Section&"".(*File).DWARFf "".(*File).DWARF:"".(*File).ImportedSymbolsf4"".(*File).ImportedSymbols>"".(*File).ImportedLibrariesf8"".(*File).ImportedLibraries"".initf"".init"runtime.gcbits.01.go.string.hdr."[]uint8"  &go.string."[]uint8"&go.string."[]uint8"[]uint8type.[]uint8~.80 runtime.algarray@"runtime.gcbits.01P.go.string.hdr."[]uint8"p*go.weak.type.*[]uint8"runtime.zerovaluetype.uint86go.typelink.[]uint8	[]uint8type.[]uint8Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocalsa8eabfc4a4514ed6b3b0c61e9680e440Tgclocals3bb21ca8fe1d99a3e492463bd711418a>type..hashfunc."".SectionHeader6type..hash."".SectionHeader:type..eqfunc."".SectionHeader2type..eq."".SectionHeader4type..alg."".SectionHeader  >type..hashfunc."".SectionHeader:type..eqfunc."".SectionHeaderBgo.string.hdr."*pe.SectionHeader"  :go.string."*pe.SectionHeader":go.string."*pe.SectionHeader"0$*pe.SectionHeader,type.*"".SectionHeader8j60 runtime.algarray@"runtime.gcbits.01PBgo.string.hdr."*pe.SectionHeader"p>go.weak.type.**"".SectionHeader"runtime.zerovalue*type."".SectionHeader@go.string.hdr."pe.SectionHeader"  8go.string."pe.SectionHeader"8go.string."pe.SectionHeader"0"pe.SectionHeader(go.string.hdr."Name"   go.string."Name" go.string."Name"
    801 Name6go.string.hdr."VirtualSize"  .go.string."VirtualSize".go.string."VirtualSize" VirtualSize<go.string.hdr."VirtualAddress"  4go.string."VirtualAddress"4go.string."VirtualAddress" VirtualAddress(go.string.hdr."Size"   go.string."Size" go.string."Size"
    803 Size,go.string.hdr."Offset"  $go.string."Offset"$go.string."Offset"OffsetHgo.string.hdr."PointerToRelocations"  @go.string."PointerToRelocations"@go.string."PointerToRelocations"0*PointerToRelocationsHgo.string.hdr."PointerToLineNumbers"  @go.string."PointerToLineNumbers"@go.string."PointerToLineNumbers"0*PointerToLineNumbersFgo.string.hdr."NumberOfRelocations"  >go.string."NumberOfRelocations">go.string."NumberOfRelocations"0(NumberOfRelocationsFgo.string.hdr."NumberOfLineNumbers"  >go.string."NumberOfLineNumbers">go.string."NumberOfLineNumbers"0(NumberOfLineNumbers>go.string.hdr."Characteristics"  6go.string."Characteristics"6go.string."Characteristics"  Characteristics:go.string.hdr."SectionHeader"  
2go.string."SectionHeader"2go.string."SectionHeader" SectionHeader0go.string.hdr."debug/pe"  (go.string."debug/pe"(go.string."debug/pe" debug/pe"go.importpath."".  (go.string."debug/pe"*type."".SectionHeader0i
    805 
    806  $(*,<04type..alg."".SectionHeader@"runtime.gcbits.01P@go.string.hdr."pe.SectionHeader"p,type.*"".SectionHeader"runtime.zerovalue*type."".SectionHeader(go.string.hdr."Name"type.string6go.string.hdr."VirtualSize"type.uint32<go.string.hdr."VirtualAddress"type.uint32(go.string.hdr."Size"type.uint32,go.string.hdr."Offset"type.uint32Hgo.string.hdr."PointerToRelocations"type.uint32Hgo.string.hdr."PointerToLineNumbers"type.uint32Fgo.string.hdr."NumberOfRelocations"type.uint16Fgo.string.hdr."NumberOfLineNumbers"type.uint16>go.string.hdr."Characteristics"type.uint32`*type."".SectionHeader:go.string.hdr."SectionHeader""go.importpath."".*type."".SectionHeaderTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocalsa8eabfc4a4514ed6b3b0c61e9680e440Tgclocals3bb21ca8fe1d99a3e492463bd711418a2type..hashfunc."".Section*type..hash."".Section.type..eqfunc."".Section&type..eq."".Section(type..alg."".Section  2type..hashfunc."".Section.type..eqfunc."".Section&runtime.gcbits.c1014go.string.hdr."pe.Section"  
    807 ,go.string."pe.Section",go.string."pe.Section" pe.Section$go.string.hdr."sr"  go.string."sr"go.string."sr"srTgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals6d46c0650eba7dbebc0db316e0e0cf3bTgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocalsf16fa7dd336388fb300fce4fe70a941azgo.string.hdr."func(pe.Section, []uint8, int64) (int, error)"  -rgo.string."func(pe.Section, []uint8, int64) (int, error)"rgo.string."func(pe.Section, []uint8, int64) (int, error)"`\func(pe.Section, []uint8, int64) (int, error)dtype.func("".Section, []uint8, int64) (int, error)p30 runtime.algarray@"runtime.gcbits.01Pzgo.string.hdr."func(pe.Section, []uint8, int64) (int, error)"pvgo.weak.type.*func("".Section, []uint8, int64) (int, error)"runtime.zerovaluedtype.func("".Section, []uint8, int64) (int, error)dtype.func("".Section, []uint8, int64) (int, error)type."".Sectiontype.[]uint8type.int64type.inttype.errorgo.typelink.func(pe.Section, []uint8, int64) (int, error)	func("".Section, []uint8, int64) (int, error)dtype.func("".Section, []uint8, int64) (int, error).go.string.hdr."Section"  &go.string."Section"&go.string."Section"Section,go.string.hdr."ReadAt"  $go.string."ReadAt"$go.string."ReadAt"ReadAtbgo.string.hdr."func([]uint8, int64) (int, error)"  !Zgo.string."func([]uint8, int64) (int, error)"Zgo.string."func([]uint8, int64) (int, error)"PDfunc([]uint8, int64) (int, error)Ltype.func([]uint8, int64) (int, error)C,30 runtime.algarray@"runtime.gcbits.01Pbgo.string.hdr."func([]uint8, int64) (int, error)"p^go.weak.type.*func([]uint8, int64) (int, error)"runtime.zerovalueLtype.func([]uint8, int64) (int, error)Ltype.func([]uint8, int64) (int, error)type.[]uint8type.int64type.inttype.errorgo.typelink.func([]uint8, int64) (int, error)	func([]uint8, int64) (int, error)Ltype.func([]uint8, int64) (int, error)type."".SectionHHB2d0@(0(type..alg."".Section@&runtime.gcbits.c101P4go.string.hdr."pe.Section"p type.*"".Section"runtime.zerovaluetype."".Section*type."".SectionHeader type.io.ReaderAt$go.string.hdr."sr""go.importpath."".,type.*io.SectionReader`type."".Section.go.string.hdr."Section""go.importpath."".type."".Section,go.string.hdr."ReadAt"Ltype.func([]uint8, int64) (int, error)dtype.func("".Section, []uint8, int64) (int, error)("".(*Section).ReadAt""".Section.ReadAt6go.string.hdr."*pe.Section"  .go.string."*pe.Section".go.string."*pe.Section" *pe.Sectiondgo.string.hdr."func(*pe.Section) ([]uint8, error)"  "\go.string."func(*pe.Section) ([]uint8, error)"\go.string."func(*pe.Section) ([]uint8, error)"PFfunc(*pe.Section) ([]uint8, error)Ntype.func(*"".Section) ([]uint8, error);=30 runtime.algarray@"runtime.gcbits.01Pdgo.string.hdr."func(*pe.Section) ([]uint8, error)"p`go.weak.type.*func(*"".Section) ([]uint8, error)"runtime.zerovalueNtype.func(*"".Section) ([]uint8, error)Ntype.func(*"".Section) ([]uint8, error) type.*"".Sectiontype.[]uint8type.errorgo.typelink.func(*pe.Section) ([]uint8, error)	func(*"".Section) ([]uint8, error)Ntype.func(*"".Section) ([]uint8, error)^go.string.hdr."func(*pe.Section) io.ReadSeeker"  Vgo.string."func(*pe.Section) io.ReadSeeker"Vgo.string."func(*pe.Section) io.ReadSeeker"@@func(*pe.Section) io.ReadSeekerHtype.func(*"".Section) io.ReadSeekerN30 runtime.algarray@"runtime.gcbits.01P^go.string.hdr."func(*pe.Section) io.ReadSeeker"pZgo.weak.type.*func(*"".Section) io.ReadSeeker"runtime.zerovalueHtype.func(*"".Section) io.ReadSeekerHtype.func(*"".Section) io.ReadSeeker type.*"".Section$type.io.ReadSeekergo.typelink.func(*pe.Section) io.ReadSeeker	func(*"".Section) io.ReadSeekerHtype.func(*"".Section) io.ReadSeeker|go.string.hdr."func(*pe.Section, []uint8, int64) (int, error)"  .tgo.string."func(*pe.Section, []uint8, int64) (int, error)"tgo.string."func(*pe.Section, []uint8, int64) (int, error)"`^func(*pe.Section, []uint8, int64) (int, error)ftype.func(*"".Section, []uint8, int64) (int, error)Ve30 runtime.algarray@"runtime.gcbits.01P|go.string.hdr."func(*pe.Section, []uint8, int64) (int, error)"pxgo.weak.type.*func(*"".Section, []uint8, int64) (int, error)"runtime.zerovalueftype.func(*"".Section, []uint8, int64) (int, error)ftype.func(*"".Section, []uint8, int64) (int, error) type.*"".Sectiontype.[]uint8type.int64type.inttype.errorgo.typelink.func(*pe.Section, []uint8, int64) (int, error)	func(*"".Section, []uint8, int64) (int, error)ftype.func(*"".Section, []uint8, int64) (int, error)(go.string.hdr."Data"   go.string."Data" go.string."Data"
    809 DataNgo.string.hdr."func() ([]uint8, error)"  Fgo.string."func() ([]uint8, error)"Fgo.string."func() ([]uint8, error)"00func() ([]uint8, error)8type.func() ([]uint8, error)x]30 runtime.algarray@"runtime.gcbits.01PNgo.string.hdr."func() ([]uint8, error)"pJgo.weak.type.*func() ([]uint8, error)"runtime.zerovalue8type.func() ([]uint8, error)8type.func() ([]uint8, error)type.[]uint8type.errorvgo.typelink.func() ([]uint8, error)	func() ([]uint8, error)8type.func() ([]uint8, error)(go.string.hdr."Open"   go.string."Open" go.string."Open"
    810 OpenHgo.string.hdr."func() io.ReadSeeker"  @go.string."func() io.ReadSeeker"@go.string."func() io.ReadSeeker"0*func() io.ReadSeeker2type.func() io.ReadSeeker&30 runtime.algarray@"runtime.gcbits.01PHgo.string.hdr."func() io.ReadSeeker"pDgo.weak.type.*func() io.ReadSeeker"runtime.zerovalue2type.func() io.ReadSeeker2type.func() io.ReadSeeker$type.io.ReadSeekerjgo.typelink.func() io.ReadSeeker	func() io.ReadSeeker2type.func() io.ReadSeeker type.*"".SectionT`6.0 runtime.algarray@"runtime.gcbits.01P6go.string.hdr."*pe.Section"p2go.weak.type.**"".Section"runtime.zerovaluetype."".Section` type.*"".Section type.*"".Section(go.string.hdr."Data"8type.func() ([]uint8, error)Ntype.func(*"".Section) ([]uint8, error)$"".(*Section).Data$"".(*Section).Data(go.string.hdr."Open"2type.func() io.ReadSeekerHtype.func(*"".Section) io.ReadSeeker$"".(*Section).Open$"".(*Section).Open,go.string.hdr."ReadAt"Ltype.func([]uint8, int64) (int, error)ftype.func(*"".Section, []uint8, int64) (int, error)("".(*Section).ReadAt("".(*Section).ReadAt"runtime.gcbits.038go.string.hdr."interface {}"  0go.string."interface {}"0go.string."interface {}" interface {}"type.interface {}W0 runtime.algarray@"runtime.gcbits.03P8go.string.hdr."interface {}"p4go.weak.type.*interface {}"runtime.zerovalue"type.interface {}Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals895d0569a38a56443b84805daa09d838Tgclocals3bb21ca8fe1d99a3e492463bd711418a:type..hashfunc."".FormatError2type..hash."".FormatError6type..eqfunc."".FormatError.type..eq."".FormatError0type..alg."".FormatError  :type..hashfunc."".FormatError6type..eqfunc."".FormatError"runtime.gcbits.1a<go.string.hdr."pe.FormatError"  4go.string."pe.FormatError"4go.string."pe.FormatError" pe.FormatError&go.string.hdr."off"  go.string."off"go.string."off"off&go.string.hdr."msg"  go.string."msg"go.string."msg"msg&go.string.hdr."val"  go.string."val"go.string."val"val6go.string.hdr."FormatError"  .go.string."FormatError".go.string."FormatError" FormatError&type."".FormatError((^H&00type..alg."".FormatError@"runtime.gcbits.1aP<go.string.hdr."pe.FormatError"p(type.*"".FormatError"runtime.zerovalue&type."".FormatError&go.string.hdr."off""go.importpath."".type.int64&go.string.hdr."msg""go.importpath."".type.string&go.string.hdr."val""go.importpath.""."type.interface {}`&type."".FormatError6go.string.hdr."FormatError""go.importpath."".&type."".FormatError>go.string.hdr."*pe.FormatError"  6go.string."*pe.FormatError"6go.string."*pe.FormatError"  *pe.FormatErrorXgo.string.hdr."func(*pe.FormatError) string"  Pgo.string."func(*pe.FormatError) string"Pgo.string."func(*pe.FormatError) string"@:func(*pe.FormatError) stringBtype.func(*"".FormatError) string Z30 runtime.algarray@"runtime.gcbits.01PXgo.string.hdr."func(*pe.FormatError) string"pTgo.weak.type.*func(*"".FormatError) string"runtime.zerovalueBtype.func(*"".FormatError) stringBtype.func(*"".FormatError) string(type.*"".FormatErrortype.stringgo.typelink.func(*pe.FormatError) string	func(*"".FormatError) stringBtype.func(*"".FormatError) string*go.string.hdr."Error"  "go.string."Error""go.string."Error"Error:go.string.hdr."func() string"  
2go.string."func() string"2go.string."func() string" func() string$type.func() stringm30 runtime.algarray@"runtime.gcbits.01P:go.string.hdr."func() string"p6go.weak.type.*func() string"runtime.zerovalue$type.func() string$type.func() stringtype.stringNgo.typelink.func() string	func() string$type.func() string(type.*"".FormatError
60 runtime.algarray@"runtime.gcbits.01P>go.string.hdr."*pe.FormatError"p:go.weak.type.**"".FormatError"runtime.zerovalue&type."".FormatError`(type.*"".FormatError(type.*"".FormatError*go.string.hdr."Error"$type.func() stringBtype.func(*"".FormatError) string."".(*FormatError).Error."".(*FormatError).Error<go.string.hdr."[]interface {}"  4go.string."[]interface {}"4go.string."[]interface {}" []interface {}&type.[]interface {}p/0 runtime.algarray@"runtime.gcbits.01P<go.string.hdr."[]interface {}"p8go.weak.type.*[]interface {}"runtime.zerovalue"type.interface {}Rgo.typelink.[]interface {}	[]interface {}&type.[]interface {}Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocalsa8eabfc4a4514ed6b3b0c61e9680e440Tgclocals3bb21ca8fe1d99a3e492463bd711418a<type..hashfunc.[1]interface {}4type..hash.[1]interface {}8type..eqfunc.[1]interface {}0type..eq.[1]interface {}2type..alg.[1]interface {}  <type..hashfunc.[1]interface {}8type..eqfunc.[1]interface {}>go.string.hdr."[1]interface {}"  6go.string."[1]interface {}"6go.string."[1]interface {}"  [1]interface {}(type.[1]interface {}P[02type..alg.[1]interface {}@"runtime.gcbits.03P>go.string.hdr."[1]interface {}"p:go.weak.type.*[1]interface {}"runtime.zerovalue"type.interface {}&type.[]interface {}Vgo.typelink.[1]interface {}	[1]interface {}(type.[1]interface {}@go.string.hdr."*[1]interface {}"  8go.string."*[1]interface {}"8go.string."*[1]interface {}"0"*[1]interface {}*type.*[1]interface {}560 runtime.algarray@"runtime.gcbits.01P@go.string.hdr."*[1]interface {}"p<go.weak.type.**[1]interface {}"runtime.zerovalue(type.[1]interface {} type..hashfunc20  ,runtime.memhash_varlentype..eqfunc20  .runtime.memequal_varlentype..alg20   type..hashfunc20type..eqfunc20<go.string.hdr."*pe.FileHeader"  4go.string."*pe.FileHeader"4go.string."*pe.FileHeader" *pe.FileHeader&type.*"".FileHeader5660 runtime.algarray@"runtime.gcbits.01P<go.string.hdr."*pe.FileHeader"p8go.weak.type.**"".FileHeader"runtime.zerovalue$type."".FileHeaderruntime.gcbits.:go.string.hdr."pe.FileHeader"  
2go.string."pe.FileHeader"2go.string."pe.FileHeader" pe.FileHeader.go.string.hdr."Machine"  &go.string."Machine"&go.string."Machine"Machine@go.string.hdr."NumberOfSections"  8go.string."NumberOfSections"8go.string."NumberOfSections"0"NumberOfSections:go.string.hdr."TimeDateStamp"  
2go.string."TimeDateStamp"2go.string."TimeDateStamp" TimeDateStampHgo.string.hdr."PointerToSymbolTable"  @go.string."PointerToSymbolTable"@go.string."PointerToSymbolTable"0*PointerToSymbolTable>go.string.hdr."NumberOfSymbols"  6go.string."NumberOfSymbols"6go.string."NumberOfSymbols"  NumberOfSymbolsHgo.string.hdr."SizeOfOptionalHeader"  @go.string."SizeOfOptionalHeader"@go.string."SizeOfOptionalHeader"0*SizeOfOptionalHeader4go.string.hdr."FileHeader"  
    823 ,go.string."FileHeader",go.string."FileHeader" FileHeader$type."".FileHeader5|~00type..alg20@runtime.gcbits.P:go.string.hdr."pe.FileHeader"p&type.*"".FileHeader"runtime.zerovalue$type."".FileHeader.go.string.hdr."Machine"type.uint16@go.string.hdr."NumberOfSections"type.uint16:go.string.hdr."TimeDateStamp"type.uint32Hgo.string.hdr."PointerToSymbolTable"type.uint32>go.string.hdr."NumberOfSymbols"type.uint32Hgo.string.hdr."SizeOfOptionalHeader"type.uint16>go.string.hdr."Characteristics"type.uint16`$type."".FileHeader4go.string.hdr."FileHeader""go.importpath."".$type."".FileHeader:go.string.hdr."[]*pe.Section"  
2go.string."[]*pe.Section"2go.string."[]*pe.Section" []*pe.Section$type.[]*"".Section#0 runtime.algarray@"runtime.gcbits.01P:go.string.hdr."[]*pe.Section"p6go.weak.type.*[]*"".Section"runtime.zerovalue type.*"".SectionNgo.typelink.[]*pe.Section	[]*"".Section$type.[]*"".SectionTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocalsa8eabfc4a4514ed6b3b0c61e9680e440Tgclocals3bb21ca8fe1d99a3e492463bd711418a0type..hashfunc."".Symbol(type..hash."".Symbol,type..eqfunc."".Symbol$type..eq."".Symbol&type..alg."".Symbol  0type..hashfunc."".Symbol,type..eqfunc."".Symbol2go.string.hdr."pe.Symbol"  	*go.string."pe.Symbol"*go.string."pe.Symbol" pe.Symbol*go.string.hdr."Value"  "go.string."Value""go.string."Value"Value:go.string.hdr."SectionNumber"  
2go.string."SectionNumber"2go.string."SectionNumber" SectionNumber(go.string.hdr."Type"   go.string."Type" go.string."Type"
    829 Type8go.string.hdr."StorageClass"  0go.string."StorageClass"0go.string."StorageClass" StorageClass,go.string.hdr."Symbol"  $go.string."Symbol"$go.string."Symbol"Symboltype."".Symbol E@(0&type..alg."".Symbol@"runtime.gcbits.01P2go.string.hdr."pe.Symbol"ptype.*"".Symbol"runtime.zerovaluetype."".Symbol(go.string.hdr."Name"type.string*go.string.hdr."Value"type.uint32:go.string.hdr."SectionNumber"type.int16(go.string.hdr."Type"type.uint168go.string.hdr."StorageClass"type.uint8`type."".Symbol,go.string.hdr."Symbol""go.importpath."".type."".Symbol4go.string.hdr."*pe.Symbol"  
    831 ,go.string."*pe.Symbol",go.string."*pe.Symbol" *pe.Symboltype.*"".SymbolBl1;60 runtime.algarray@"runtime.gcbits.01P4go.string.hdr."*pe.Symbol"p0go.weak.type.**"".Symbol"runtime.zerovaluetype."".Symbol8go.string.hdr."[]*pe.Symbol"  0go.string."[]*pe.Symbol"0go.string."[]*pe.Symbol" []*pe.Symbol"type.[]*"".SymbolHL0 runtime.algarray@"runtime.gcbits.01P8go.string.hdr."[]*pe.Symbol"p4go.weak.type.*[]*"".Symbol"runtime.zerovaluetype.*"".SymbolJgo.typelink.[]*pe.Symbol	[]*"".Symbol"type.[]*"".Symbol&runtime.gcbits.38198.go.string.hdr."pe.File"  &go.string."pe.File"&go.string."pe.File"pe.File<go.string.hdr."OptionalHeader"  4go.string."OptionalHeader"4go.string."OptionalHeader" OptionalHeader0go.string.hdr."Sections"  (go.string."Sections"(go.string."Sections" Sections.go.string.hdr."Symbols"  &go.string."Symbols"&go.string."Symbols"Symbols,go.string.hdr."closer"  $go.string."closer"$go.string."closer"closer(go.string.hdr."File"   go.string."File" go.string."File"
    835 Filetype."".Filehh{q(@X(0 runtime.algarray@&runtime.gcbits.3819P.go.string.hdr."pe.File"ptype.*"".File"runtime.zerovaluetype."".File$type."".FileHeader<go.string.hdr."OptionalHeader""type.interface {}0go.string.hdr."Sections"$type.[]*"".Section.go.string.hdr."Symbols""type.[]*"".Symbol,go.string.hdr."closer""go.importpath."".type.io.Closer`type."".File(go.string.hdr."File""go.importpath."".type."".File0go.string.hdr."*pe.File"  (go.string."*pe.File"(go.string."*pe.File" *pe.FileHgo.string.hdr."func(*pe.File) error"  @go.string."func(*pe.File) error"@go.string."func(*pe.File) error"0*func(*pe.File) error2type.func(*"".File) error#]30 runtime.algarray@"runtime.gcbits.01PHgo.string.hdr."func(*pe.File) error"pDgo.weak.type.*func(*"".File) error"runtime.zerovalue2type.func(*"".File) error2type.func(*"".File) errortype.*"".Filetype.errorjgo.typelink.func(*pe.File) error	func(*"".File) error2type.func(*"".File) errorfgo.string.hdr."func(*pe.File) (*dwarf.Data, error)"  #^go.string."func(*pe.File) (*dwarf.Data, error)"^go.string."func(*pe.File) (*dwarf.Data, error)"PHfunc(*pe.File) (*dwarf.Data, error)\type.func(*"".File) (*debug/dwarf.Data, error)39A30 runtime.algarray@"runtime.gcbits.01Pfgo.string.hdr."func(*pe.File) (*dwarf.Data, error)"pngo.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.Datatype.errorgo.typelink.func(*pe.File) (*dwarf.Data, error)	func(*"".File) (*debug/dwarf.Data, error)\type.func(*"".File) (*debug/dwarf.Data, error)0go.string.hdr."[]string"  (go.string."[]string"(go.string."[]string" []stringtype.[]string
    836 0 runtime.algarray@"runtime.gcbits.01P0go.string.hdr."[]string"p,go.weak.type.*[]string"runtime.zerovaluetype.string:go.typelink.[]string	[]stringtype.[]string`go.string.hdr."func(*pe.File) ([]string, error)"   Xgo.string."func(*pe.File) ([]string, error)"Xgo.string."func(*pe.File) ([]string, error)"PBfunc(*pe.File) ([]string, error)Jtype.func(*"".File) ([]string, error)ub30 runtime.algarray@"runtime.gcbits.01P`go.string.hdr."func(*pe.File) ([]string, error)"p\go.weak.type.*func(*"".File) ([]string, error)"runtime.zerovalueJtype.func(*"".File) ([]string, error)Jtype.func(*"".File) ([]string, error)type.*"".Filetype.[]stringtype.errorgo.typelink.func(*pe.File) ([]string, error)	func(*"".File) ([]string, error)Jtype.func(*"".File) ([]string, error)dgo.string.hdr."func(*pe.File, string) *pe.Section"  "\go.string."func(*pe.File, string) *pe.Section"\go.string."func(*pe.File, string) *pe.Section"PFfunc(*pe.File, string) *pe.SectionNtype.func(*"".File, string) *"".Section30 runtime.algarray@"runtime.gcbits.01Pdgo.string.hdr."func(*pe.File, string) *pe.Section"p`go.weak.type.*func(*"".File, string) *"".Section"runtime.zerovalueNtype.func(*"".File, string) *"".SectionNtype.func(*"".File, string) *"".Sectiontype.*"".Filetype.string type.*"".Sectiongo.typelink.func(*pe.File, string) *pe.Section	func(*"".File, string) *"".SectionNtype.func(*"".File, string) *"".Section*go.string.hdr."Close"  "go.string."Close""go.string."Close"Close8go.string.hdr."func() error"  0go.string."func() error"0go.string."func() error" func() error"type.func() error30 runtime.algarray@"runtime.gcbits.01P8go.string.hdr."func() error"p4go.weak.type.*func() error"runtime.zerovalue"type.func() error"type.func() errortype.errorJgo.typelink.func() error	func() error"type.func() error*go.string.hdr."DWARF"  "go.string."DWARF""go.string."DWARF"DWARFVgo.string.hdr."func() (*dwarf.Data, error)"  Ngo.string."func() (*dwarf.Data, error)"Ngo.string."func() (*dwarf.Data, error)"@8func() (*dwarf.Data, error)Ltype.func() (*debug/dwarf.Data, error)$930 runtime.algarray@"runtime.gcbits.01PVgo.string.hdr."func() (*dwarf.Data, error)"p^go.weak.type.*func() (*debug/dwarf.Data, error)"runtime.zerovalueLtype.func() (*debug/dwarf.Data, error)Ltype.func() (*debug/dwarf.Data, error),type.*debug/dwarf.Datatype.errorgo.typelink.func() (*dwarf.Data, error)	func() (*debug/dwarf.Data, error)Ltype.func() (*debug/dwarf.Data, error)Bgo.string.hdr."ImportedLibraries"  :go.string."ImportedLibraries":go.string."ImportedLibraries"0$ImportedLibrariesPgo.string.hdr."func() ([]string, error)"  Hgo.string."func() ([]string, error)"Hgo.string."func() ([]string, error)"@2func() ([]string, error):type.func() ([]string, error)B30 runtime.algarray@"runtime.gcbits.01PPgo.string.hdr."func() ([]string, error)"pLgo.weak.type.*func() ([]string, error)"runtime.zerovalue:type.func() ([]string, error):type.func() ([]string, error)type.[]stringtype.errorzgo.typelink.func() ([]string, error)	func() ([]string, error):type.func() ([]string, error)>go.string.hdr."ImportedSymbols"  6go.string."ImportedSymbols"6go.string."ImportedSymbols"  ImportedSymbolsPgo.string.hdr."func(string) *pe.Section"  Hgo.string."func(string) *pe.Section"Hgo.string."func(string) *pe.Section"@2func(string) *pe.Section:type.func(string) *"".Sectionh-30 runtime.algarray@"runtime.gcbits.01PPgo.string.hdr."func(string) *pe.Section"pLgo.weak.type.*func(string) *"".Section"runtime.zerovalue:type.func(string) *"".Section:type.func(string) *"".Sectiontype.string type.*"".Sectionzgo.typelink.func(string) *pe.Section	func(string) *"".Section:type.func(string) *"".Sectiontype.*"".Fileu26B0 runtime.algarray@"runtime.gcbits.01P0go.string.hdr."*pe.File"p,go.weak.type.**"".File"runtime.zerovaluetype."".File`type.*"".Filetype.*"".File*go.string.hdr."Close""type.func() error2type.func(*"".File) error "".(*File).Close "".(*File).Close*go.string.hdr."DWARF"Ltype.func() (*debug/dwarf.Data, error)\type.func(*"".File) (*debug/dwarf.Data, error) "".(*File).DWARF "".(*File).DWARFBgo.string.hdr."ImportedLibraries":type.func() ([]string, error)Jtype.func(*"".File) ([]string, error)8"".(*File).ImportedLibraries8"".(*File).ImportedLibraries>go.string.hdr."ImportedSymbols":type.func() ([]string, error)Jtype.func(*"".File) ([]string, error)4"".(*File).ImportedSymbols4"".(*File).ImportedSymbols.go.string.hdr."Section":type.func(string) *"".SectionNtype.func(*"".File, string) *"".Section$"".(*File).Section$"".(*File).Section0go.string.hdr."[8]uint8"  (go.string."[8]uint8"(go.string."[8]uint8" [8]uint8type.[8]uint8>00 runtime.algarray@runtime.gcbits.P0go.string.hdr."[8]uint8"p,go.weak.type.*[8]uint8"runtime.zerovaluetype.uint8type.[]uint8:go.typelink.[8]uint8	[8]uint8type.[8]uint8Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals3bb21ca8fe1d99a3e492463bd711418a8type..hashfunc."".COFFSymbol0type..hash."".COFFSymbol4type..eqfunc."".COFFSymbol,type..eq."".COFFSymbol.type..alg."".COFFSymbol  8type..hashfunc."".COFFSymbol4type..eqfunc."".COFFSymbol<go.string.hdr."*pe.COFFSymbol"  4go.string."*pe.COFFSymbol"4go.string."*pe.COFFSymbol" *pe.COFFSymbol&type.*"".COFFSymbolZ |60 runtime.algarray@"runtime.gcbits.01P<go.string.hdr."*pe.COFFSymbol"p8go.weak.type.**"".COFFSymbol"runtime.zerovalue$type."".COFFSymbol:go.string.hdr."pe.COFFSymbol"  
2go.string."pe.COFFSymbol"2go.string."pe.COFFSymbol" pe.COFFSymbolDgo.string.hdr."NumberOfAuxSymbols"  <go.string."NumberOfAuxSymbols"<go.string."NumberOfAuxSymbols"0&NumberOfAuxSymbols4go.string.hdr."COFFSymbol"  
    843 ,go.string."COFFSymbol",go.string."COFFSymbol" COFFSymbol$type."".COFFSymbol+q,0.type..alg."".COFFSymbol@runtime.gcbits.P:go.string.hdr."pe.COFFSymbol"p&type.*"".COFFSymbol"runtime.zerovalue$type."".COFFSymbol(go.string.hdr."Name"type.[8]uint8*go.string.hdr."Value"type.uint32:go.string.hdr."SectionNumber"type.int16(go.string.hdr."Type"type.uint168go.string.hdr."StorageClass"type.uint8Dgo.string.hdr."NumberOfAuxSymbols"type.uint8`$type."".COFFSymbol4go.string.hdr."COFFSymbol""go.importpath."".$type."".COFFSymbolBgo.string.hdr."*pe.DataDirectory"  :go.string."*pe.DataDirectory":go.string."*pe.DataDirectory"0$*pe.DataDirectory,type.*"".DataDirectory60 runtime.algarray@"runtime.gcbits.01PBgo.string.hdr."*pe.DataDirectory"p>go.weak.type.**"".DataDirectory"runtime.zerovalue*type."".DataDirectory@go.string.hdr."pe.DataDirectory"  8go.string."pe.DataDirectory"8go.string."pe.DataDirectory"0"pe.DataDirectory:go.string.hdr."DataDirectory"  
2go.string."DataDirectory"2go.string."DataDirectory" DataDirectory*type."".DataDirectoryk0 runtime.algarray@runtime.gcbits.P@go.string.hdr."pe.DataDirectory"p,type.*"".DataDirectory"runtime.zerovalue*type."".DataDirectory<go.string.hdr."VirtualAddress"type.uint32(go.string.hdr."Size"type.uint32`*type."".DataDirectory:go.string.hdr."DataDirectory""go.importpath."".*type."".DataDirectoryDgo.string.hdr."[]pe.DataDirectory"  <go.string."[]pe.DataDirectory"<go.string."[]pe.DataDirectory"0&[]pe.DataDirectory.type.[]"".DataDirectoryq0 runtime.algarray@"runtime.gcbits.01PDgo.string.hdr."[]pe.DataDirectory"p@go.weak.type.*[]"".DataDirectory"runtime.zerovalue*type."".DataDirectorybgo.typelink.[]pe.DataDirectory	[]"".DataDirectory.type.[]"".DataDirectory"type..hashfunc128  ,runtime.memhash_varlentype..eqfunc128  .runtime.memequal_varlentype..alg128  "type..hashfunc128type..eqfunc128Hgo.string.hdr."[16]pe.DataDirectory"  @go.string."[16]pe.DataDirectory"@go.string."[16]pe.DataDirectory"0*[16]pe.DataDirectory2type.[16]"".DataDirectory$00type..alg128@runtime.gcbits.PHgo.string.hdr."[16]pe.DataDirectory"pDgo.weak.type.*[16]"".DataDirectory"runtime.zerovalue*type."".DataDirectory.type.[]"".DataDirectoryjgo.typelink.[16]pe.DataDirectory	[16]"".DataDirectory2type.[16]"".DataDirectory"type..hashfunc224  ,runtime.memhash_varlentype..eqfunc224  .runtime.memequal_varlentype..alg224  "type..hashfunc224type..eqfunc224Fgo.string.hdr."pe.OptionalHeader32"  >go.string."pe.OptionalHeader32">go.string."pe.OptionalHeader32"0(pe.OptionalHeader32*go.string.hdr."Magic"  "go.string."Magic""go.string."Magic"MagicDgo.string.hdr."MajorLinkerVersion"  <go.string."MajorLinkerVersion"<go.string."MajorLinkerVersion"0&MajorLinkerVersionDgo.string.hdr."MinorLinkerVersion"  <go.string."MinorLinkerVersion"<go.string."MinorLinkerVersion"0&MinorLinkerVersion4go.string.hdr."SizeOfCode"  
    850 ,go.string."SizeOfCode",go.string."SizeOfCode" SizeOfCodeJgo.string.hdr."SizeOfInitializedData"  Bgo.string."SizeOfInitializedData"Bgo.string."SizeOfInitializedData"0,SizeOfInitializedDataNgo.string.hdr."SizeOfUninitializedData"  Fgo.string."SizeOfUninitializedData"Fgo.string."SizeOfUninitializedData"00SizeOfUninitializedDataFgo.string.hdr."AddressOfEntryPoint"  >go.string."AddressOfEntryPoint">go.string."AddressOfEntryPoint"0(AddressOfEntryPoint4go.string.hdr."BaseOfCode"  
    851 ,go.string."BaseOfCode",go.string."BaseOfCode" BaseOfCode4go.string.hdr."BaseOfData"  
    852 ,go.string."BaseOfData",go.string."BaseOfData" BaseOfData2go.string.hdr."ImageBase"  	*go.string."ImageBase"*go.string."ImageBase" ImageBase@go.string.hdr."SectionAlignment"  8go.string."SectionAlignment"8go.string."SectionAlignment"0"SectionAlignment:go.string.hdr."FileAlignment"  
2go.string."FileAlignment"2go.string."FileAlignment" FileAlignmentVgo.string.hdr."MajorOperatingSystemVersion"  Ngo.string."MajorOperatingSystemVersion"Ngo.string."MajorOperatingSystemVersion"@8MajorOperatingSystemVersionVgo.string.hdr."MinorOperatingSystemVersion"  Ngo.string."MinorOperatingSystemVersion"Ngo.string."MinorOperatingSystemVersion"@8MinorOperatingSystemVersionBgo.string.hdr."MajorImageVersion"  :go.string."MajorImageVersion":go.string."MajorImageVersion"0$MajorImageVersionBgo.string.hdr."MinorImageVersion"  :go.string."MinorImageVersion":go.string."MinorImageVersion"0$MinorImageVersionJgo.string.hdr."MajorSubsystemVersion"  Bgo.string."MajorSubsystemVersion"Bgo.string."MajorSubsystemVersion"0,MajorSubsystemVersionJgo.string.hdr."MinorSubsystemVersion"  Bgo.string."MinorSubsystemVersion"Bgo.string."MinorSubsystemVersion"0,MinorSubsystemVersionBgo.string.hdr."Win32VersionValue"  :go.string."Win32VersionValue":go.string."Win32VersionValue"0$Win32VersionValue6go.string.hdr."SizeOfImage"  .go.string."SizeOfImage".go.string."SizeOfImage" SizeOfImage:go.string.hdr."SizeOfHeaders"  
2go.string."SizeOfHeaders"2go.string."SizeOfHeaders" SizeOfHeaders0go.string.hdr."CheckSum"  (go.string."CheckSum"(go.string."CheckSum" CheckSum2go.string.hdr."Subsystem"  	*go.string."Subsystem"*go.string."Subsystem" SubsystemDgo.string.hdr."DllCharacteristics"  <go.string."DllCharacteristics"<go.string."DllCharacteristics"0&DllCharacteristicsDgo.string.hdr."SizeOfStackReserve"  <go.string."SizeOfStackReserve"<go.string."SizeOfStackReserve"0&SizeOfStackReserveBgo.string.hdr."SizeOfStackCommit"  :go.string."SizeOfStackCommit":go.string."SizeOfStackCommit"0$SizeOfStackCommitBgo.string.hdr."SizeOfHeapReserve"  :go.string."SizeOfHeapReserve":go.string."SizeOfHeapReserve"0$SizeOfHeapReserve@go.string.hdr."SizeOfHeapCommit"  8go.string."SizeOfHeapCommit"8go.string."SizeOfHeapCommit"0"SizeOfHeapCommit6go.string.hdr."LoaderFlags"  .go.string."LoaderFlags".go.string."LoaderFlags" LoaderFlagsFgo.string.hdr."NumberOfRvaAndSizes"  >go.string."NumberOfRvaAndSizes">go.string."NumberOfRvaAndSizes"0(NumberOfRvaAndSizes@go.string.hdr."OptionalHeader32"  8go.string."OptionalHeader32"8go.string."OptionalHeader32"0"OptionalHeader320type."".OptionalHeader32,K $(*,.0248<@DFHLPTX\`0type..alg224@runtime.gcbits.PFgo.string.hdr."pe.OptionalHeader32"p2type.*"".OptionalHeader32"runtime.zerovalue0type."".OptionalHeader32*go.string.hdr."Magic"type.uint16Dgo.string.hdr."MajorLinkerVersion"type.uint8Dgo.string.hdr."MinorLinkerVersion"type.uint84go.string.hdr."SizeOfCode"type.uint32Jgo.string.hdr."SizeOfInitializedData"type.uint32Ngo.string.hdr."SizeOfUninitializedData"type.uint32Fgo.string.hdr."AddressOfEntryPoint"type.uint324go.string.hdr."BaseOfCode"type.uint324go.string.hdr."BaseOfData"type.uint322go.string.hdr."ImageBase"type.uint32@go.string.hdr."SectionAlignment"type.uint32:go.string.hdr."FileAlignment"type.uint32	Vgo.string.hdr."MajorOperatingSystemVersion"	type.uint16	Vgo.string.hdr."MinorOperatingSystemVersion"	type.uint16
    858 Bgo.string.hdr."MajorImageVersion"
    859 type.uint16
    860 Bgo.string.hdr."MinorImageVersion"type.uint16Jgo.string.hdr."MajorSubsystemVersion"type.uint16Jgo.string.hdr."MinorSubsystemVersion"type.uint16Bgo.string.hdr."Win32VersionValue"
type.uint32
6go.string.hdr."SizeOfImage"
type.uint32:go.string.hdr."SizeOfHeaders"type.uint320go.string.hdr."CheckSum"type.uint322go.string.hdr."Subsystem"type.uint16Dgo.string.hdr."DllCharacteristics"type.uint16Dgo.string.hdr."SizeOfStackReserve"type.uint32Bgo.string.hdr."SizeOfStackCommit"type.uint32Bgo.string.hdr."SizeOfHeapReserve"type.uint32@go.string.hdr."SizeOfHeapCommit"type.uint326go.string.hdr."LoaderFlags"type.uint32Fgo.string.hdr."NumberOfRvaAndSizes"type.uint32:go.string.hdr."DataDirectory"2type.[16]"".DataDirectory`0type."".OptionalHeader32@go.string.hdr."OptionalHeader32""go.importpath."".0type."".OptionalHeader32Hgo.string.hdr."*pe.OptionalHeader32"  @go.string."*pe.OptionalHeader32"@go.string."*pe.OptionalHeader32"0**pe.OptionalHeader322type.*"".OptionalHeader32"60 runtime.algarray@"runtime.gcbits.01PHgo.string.hdr."*pe.OptionalHeader32"pDgo.weak.type.**"".OptionalHeader32"runtime.zerovalue0type."".OptionalHeader32"type..hashfunc240  ,runtime.memhash_varlentype..eqfunc240  .runtime.memequal_varlentype..alg240  "type..hashfunc240type..eqfunc240Fgo.string.hdr."pe.OptionalHeader64"  >go.string."pe.OptionalHeader64">go.string."pe.OptionalHeader64"0(pe.OptionalHeader64@go.string.hdr."OptionalHeader64"  8go.string."OptionalHeader64"8go.string."OptionalHeader64"0"OptionalHeader640type."".OptionalHeader64cI $(*,.0248<@DFHPX`hlp0type..alg240@runtime.gcbits.PFgo.string.hdr."pe.OptionalHeader64"p2type.*"".OptionalHeader64"runtime.zerovalue0type."".OptionalHeader64*go.string.hdr."Magic"type.uint16Dgo.string.hdr."MajorLinkerVersion"type.uint8Dgo.string.hdr."MinorLinkerVersion"type.uint84go.string.hdr."SizeOfCode"type.uint32Jgo.string.hdr."SizeOfInitializedData"type.uint32Ngo.string.hdr."SizeOfUninitializedData"type.uint32Fgo.string.hdr."AddressOfEntryPoint"type.uint324go.string.hdr."BaseOfCode"type.uint322go.string.hdr."ImageBase"type.uint64@go.string.hdr."SectionAlignment"type.uint32:go.string.hdr."FileAlignment"type.uint32Vgo.string.hdr."MajorOperatingSystemVersion"type.uint16	Vgo.string.hdr."MinorOperatingSystemVersion"	type.uint16	Bgo.string.hdr."MajorImageVersion"	type.uint16
    872 Bgo.string.hdr."MinorImageVersion"
    873 type.uint16
    874 Jgo.string.hdr."MajorSubsystemVersion"type.uint16Jgo.string.hdr."MinorSubsystemVersion"type.uint16Bgo.string.hdr."Win32VersionValue"type.uint326go.string.hdr."SizeOfImage"
type.uint32
:go.string.hdr."SizeOfHeaders"
type.uint320go.string.hdr."CheckSum"type.uint322go.string.hdr."Subsystem"type.uint16Dgo.string.hdr."DllCharacteristics"type.uint16Dgo.string.hdr."SizeOfStackReserve"type.uint64Bgo.string.hdr."SizeOfStackCommit"type.uint64Bgo.string.hdr."SizeOfHeapReserve"type.uint64@go.string.hdr."SizeOfHeapCommit"type.uint646go.string.hdr."LoaderFlags"type.uint32Fgo.string.hdr."NumberOfRvaAndSizes"type.uint32:go.string.hdr."DataDirectory"2type.[16]"".DataDirectory`0type."".OptionalHeader64@go.string.hdr."OptionalHeader64""go.importpath."".0type."".OptionalHeader64Hgo.string.hdr."*pe.OptionalHeader64"  @go.string."*pe.OptionalHeader64"@go.string."*pe.OptionalHeader64"0**pe.OptionalHeader642type.*"".OptionalHeader64=
    884 k60 runtime.algarray@"runtime.gcbits.01PHgo.string.hdr."*pe.OptionalHeader64"pDgo.weak.type.**"".OptionalHeader64"runtime.zerovalue0type."".OptionalHeader64 type..hashfunc40  (,runtime.memhash_varlentype..eqfunc40  (.runtime.memequal_varlentype..alg40   type..hashfunc40type..eqfunc40Fgo.string.hdr."*pe.SectionHeader32"  >go.string."*pe.SectionHeader32">go.string."*pe.SectionHeader32"0(*pe.SectionHeader320type.*"".SectionHeader32L60 runtime.algarray@"runtime.gcbits.01PFgo.string.hdr."*pe.SectionHeader32"pBgo.weak.type.**"".SectionHeader32"runtime.zerovalue.type."".SectionHeader32Dgo.string.hdr."pe.SectionHeader32"  <go.string."pe.SectionHeader32"<go.string."pe.SectionHeader32"0&pe.SectionHeader32:go.string.hdr."SizeOfRawData"  
2go.string."SizeOfRawData"2go.string."SizeOfRawData" SizeOfRawData@go.string.hdr."PointerToRawData"  8go.string."PointerToRawData"8go.string."PointerToRawData"0"PointerToRawData>go.string.hdr."SectionHeader32"  6go.string."SectionHeader32"6go.string."SectionHeader32"  SectionHeader32.type."".SectionHeader32(-	
    888 
    889  "$<0type..alg40@runtime.gcbits.PDgo.string.hdr."pe.SectionHeader32"p0type.*"".SectionHeader32"runtime.zerovalue.type."".SectionHeader32(go.string.hdr."Name"type.[8]uint86go.string.hdr."VirtualSize"type.uint32<go.string.hdr."VirtualAddress"type.uint32:go.string.hdr."SizeOfRawData"type.uint32@go.string.hdr."PointerToRawData"type.uint32Hgo.string.hdr."PointerToRelocations"type.uint32Hgo.string.hdr."PointerToLineNumbers"type.uint32Fgo.string.hdr."NumberOfRelocations"type.uint16Fgo.string.hdr."NumberOfLineNumbers"type.uint16>go.string.hdr."Characteristics"type.uint32`.type."".SectionHeader32>go.string.hdr."SectionHeader32""go.importpath.""..type."".SectionHeader32 type..hashfunc96  `,runtime.memhash_varlentype..eqfunc96  `.runtime.memequal_varlentype..alg96   type..hashfunc96type..eqfunc962go.string.hdr."[96]uint8"  	*go.string."[96]uint8"*go.string."[96]uint8" [96]uint8type.[96]uint8`A	`0type..alg96@runtime.gcbits.P2go.string.hdr."[96]uint8"p.go.weak.type.*[96]uint8"runtime.zerovaluetype.uint8type.[]uint8>go.typelink.[96]uint8	[96]uint8type.[96]uint84go.string.hdr."*[96]uint8"  
    891 ,go.string."*[96]uint8",go.string."*[96]uint8" *[96]uint8type.*[96]uint8O|60 runtime.algarray@"runtime.gcbits.01P4go.string.hdr."*[96]uint8"p0go.weak.type.**[96]uint8"runtime.zerovaluetype.[96]uint80go.string.hdr."[4]uint8"  (go.string."[4]uint8"(go.string."[4]uint8" [4]uint8type.[4]uint8B0 runtime.algarray@runtime.gcbits.P0go.string.hdr."[4]uint8"p,go.weak.type.*[4]uint8"runtime.zerovaluetype.uint8type.[]uint8:go.typelink.[4]uint8	[4]uint8type.[4]uint82go.string.hdr."*[4]uint8"  	*go.string."*[4]uint8"*go.string."*[4]uint8" *[4]uint8type.*[4]uint8G60 runtime.algarray@"runtime.gcbits.01P2go.string.hdr."*[4]uint8"p.go.weak.type.**[4]uint8"runtime.zerovaluetype.[4]uint88go.string.hdr."**pe.Section"  0go.string."**pe.Section"0go.string."**pe.Section" **pe.Section"type.**"".SectionLX_60 runtime.algarray@"runtime.gcbits.01P8go.string.hdr."**pe.Section"p4go.weak.type.***"".Section"runtime.zerovalue type.*"".SectionTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocalsa8eabfc4a4514ed6b3b0c61e9680e440Tgclocals3bb21ca8fe1d99a3e492463bd711418a0type..hashfunc.[4]string(type..hash.[4]string,type..eqfunc.[4]string$type..eq.[4]string&type..alg.[4]string  0type..hashfunc.[4]string,type..eqfunc.[4]string"runtime.gcbits.55U2go.string.hdr."[4]string"  	*go.string."[4]string"*go.string."[4]string" [4]stringtype.[4]string@8J0&type..alg.[4]string@"runtime.gcbits.55P2go.string.hdr."[4]string"p.go.weak.type.*[4]string"runtime.zerovaluetype.stringtype.[]string>go.typelink.[4]string	[4]stringtype.[4]string2go.string.hdr."[][]uint8"  	*go.string."[][]uint8"*go.string."[][]uint8" [][]uint8type.[][]uint8}0 runtime.algarray@"runtime.gcbits.01P2go.string.hdr."[][]uint8"p.go.weak.type.*[][]uint8"runtime.zerovaluetype.[]uint8>go.typelink.[][]uint8	[][]uint8type.[][]uint8&runtime.gcbits.4902I4go.string.hdr."[4][]uint8"  
    897 ,go.string."[4][]uint8",go.string."[4][]uint8" [4][]uint8type.[4][]uint8`Pg0 runtime.algarray@&runtime.gcbits.4902P4go.string.hdr."[4][]uint8"p0go.weak.type.*[4][]uint8"runtime.zerovaluetype.[]uint8type.[][]uint8Bgo.typelink.[4][]uint8	[4][]uint8type.[4][]uint8Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocalsa8eabfc4a4514ed6b3b0c61e9680e440Tgclocals3bb21ca8fe1d99a3e492463bd711418aBtype..hashfunc."".ImportDirectory:type..hash."".ImportDirectory>type..eqfunc."".ImportDirectory6type..eq."".ImportDirectory8type..alg."".ImportDirectory  Btype..hashfunc."".ImportDirectory>type..eqfunc."".ImportDirectoryFgo.string.hdr."*pe.ImportDirectory"  >go.string."*pe.ImportDirectory">go.string."*pe.ImportDirectory"0(*pe.ImportDirectory0type.*"".ImportDirectory60 runtime.algarray@"runtime.gcbits.01PFgo.string.hdr."*pe.ImportDirectory"pBgo.weak.type.**"".ImportDirectory"runtime.zerovalue.type."".ImportDirectory"runtime.gcbits.08Dgo.string.hdr."pe.ImportDirectory"  <go.string."pe.ImportDirectory"<go.string."pe.ImportDirectory"0&pe.ImportDirectoryDgo.string.hdr."OriginalFirstThunk"  <go.string."OriginalFirstThunk"<go.string."OriginalFirstThunk"0&OriginalFirstThunk<go.string.hdr."ForwarderChain"  4go.string."ForwarderChain"4go.string."ForwarderChain" ForwarderChain4go.string.hdr."FirstThunk"  
    899 ,go.string."FirstThunk",go.string."FirstThunk" FirstThunk&go.string.hdr."dll"  go.string."dll"go.string."dll"dll>go.string.hdr."ImportDirectory"  6go.string."ImportDirectory"6go.string."ImportDirectory"  ImportDirectory.type."".ImportDirectory( 5w-.08type..alg."".ImportDirectory@"runtime.gcbits.08PDgo.string.hdr."pe.ImportDirectory"p0type.*"".ImportDirectory"runtime.zerovalue.type."".ImportDirectoryDgo.string.hdr."OriginalFirstThunk"type.uint32:go.string.hdr."TimeDateStamp"type.uint32<go.string.hdr."ForwarderChain"type.uint32(go.string.hdr."Name"type.uint324go.string.hdr."FirstThunk"type.uint32&go.string.hdr."dll""go.importpath."".type.string`.type."".ImportDirectory>go.string.hdr."ImportDirectory""go.importpath.""..type."".ImportDirectoryHgo.string.hdr."[]pe.ImportDirectory"  @go.string."[]pe.ImportDirectory"@go.string."[]pe.ImportDirectory"0*[]pe.ImportDirectory2type.[]"".ImportDirectoryn20 runtime.algarray@"runtime.gcbits.01PHgo.string.hdr."[]pe.ImportDirectory"pDgo.weak.type.*[]"".ImportDirectory"runtime.zerovalue.type."".ImportDirectoryjgo.typelink.[]pe.ImportDirectory	[]"".ImportDirectory2type.[]"".ImportDirectory4go.string.hdr."*[4]string"  
    902 ,go.string."*[4]string",go.string."*[4]string" *[4]stringtype.*[4]stringik60 runtime.algarray@"runtime.gcbits.01P4go.string.hdr."*[4]string"p0go.weak.type.**[4]string"runtime.zerovaluetype.[4]string.go.string.hdr."runtime"  &go.string."runtime"&go.string."runtime"runtime,go.importpath.runtime.  &go.string."runtime"6go.string.hdr."debug/dwarf"  .go.string."debug/dwarf".go.string."debug/dwarf" debug/dwarf4go.importpath.debug/dwarf.  .go.string."debug/dwarf">go.string.hdr."encoding/binary"  6go.string."encoding/binary"6go.string."encoding/binary"  encoding/binary<go.importpath.encoding/binary.  6go.string."encoding/binary",go.string.hdr."errors"  $go.string."errors"$go.string."errors"errors*go.importpath.errors.  $go.string."errors"$go.string.hdr."io"  go.string."io"go.string."io"io"go.importpath.io.  go.string."io".go.string.hdr."strconv"  &go.string."strconv"&go.string."strconv"strconv,go.importpath.strconv.  &go.string."strconv"&go.string.hdr."fmt"  go.string."fmt"go.string."fmt"fmt$go.importpath.fmt.  go.string."fmt"$go.string.hdr."os"  go.string."os"go.string."os"os"go.importpath.os.  go.string."os"<type..hash."".SectionHeaderf6type..hash."".SectionHeader8type..eq."".SectionHeaderf2type..eq."".SectionHeader0type..hash."".Sectionf*type..hash."".Section,type..eq."".Sectionf&type..eq."".Section."".(*Section).ReadAtf("".(*Section).ReadAt("".Section.ReadAtf""".Section.ReadAt8type..hash."".FormatErrorf2type..hash."".FormatError4type..eq."".FormatErrorf.type..eq."".FormatError:type..hash.[1]interface {}f4type..hash.[1]interface {}6type..eq.[1]interface {}f0type..eq.[1]interface {}.type..hash."".Symbolf(type..hash."".Symbol*type..eq."".Symbolf$type..eq."".Symbol6type..hash."".COFFSymbolf0type..hash."".COFFSymbol2type..eq."".COFFSymbolf,type..eq."".COFFSymbol.type..hash.[4]stringf(type..hash.[4]string*type..eq.[4]stringf$type..eq.[4]string@type..hash."".ImportDirectoryf:type..hash."".ImportDirectory<type..eq."".ImportDirectoryf6type..eq."".ImportDirectory"runtime.zerovaluego13ld