Home | History | Annotate | Download | only in image
      1 !<arch>
      2 __.PKGDEF       0           0     0     644     7004      `
      3 go object darwin amd64 go1.5.1 X:none
      4 build id "66efaf182daf9076ad4b2922f727c31fae5e3d37"
      5 
      6 $$
      7 package png
      8 	import runtime "runtime"
      9 	import zlib "compress/zlib"
     10 	import bufio "bufio"
     11 	import io "io"
     12 	import fmt "fmt"
     13 	import hash "hash"
     14 	import binary "encoding/binary"
     15 	import strconv "strconv"
     16 	import crc32 "hash/crc32"
     17 	import image "image"
     18 	import color "image/color"
     19 	type @"".FormatError string
     20 	func (@"".e2 @"".FormatError "esc:0x1") Error () (? string) { return "png: invalid format: " + string(@"".e2) }
     21 	type @"".UnsupportedError string
     22 	func (@"".e2 @"".UnsupportedError "esc:0x1") Error () (? string) { return "png: unsupported feature: " + string(@"".e2) }
     23 	type @"image/color".Color interface { RGBA() (@"image/color".r uint32, @"image/color".g uint32, @"image/color".b uint32, @"image/color".a uint32) }
     24 	type @"image".Point struct { X int; Y int }
     25 	func (@"image".p2 @"image".Point) Add (@"image".q3 @"image".Point) (? @"image".Point) { return (@"image".Point{ X:@"image".p2.X + @"image".q3.X, Y:@"image".p2.Y + @"image".q3.Y }) }
     26 	func (@"image".p2 @"image".Point) Div (@"image".k3 int) (? @"image".Point) { return (@"image".Point{ X:@"image".p2.X / @"image".k3, Y:@"image".p2.Y / @"image".k3 }) }
     27 	func (@"image".p2 @"image".Point) Eq (@"image".q3 @"image".Point) (? bool) { return @"image".p2 == @"image".q3 }
     28 	func (@"image".p2 @"image".Point) In (@"image".r3 @"image".Rectangle) (? bool) { return @"image".r3.Min.X <= @"image".p2.X && @"image".p2.X < @"image".r3.Max.X && @"image".r3.Min.Y <= @"image".p2.Y && @"image".p2.Y < @"image".r3.Max.Y }
     29 	func (@"image".p2 @"image".Point) Mod (@"image".r3 @"image".Rectangle) (? @"image".Point)
     30 	func (@"image".p2 @"image".Point) Mul (@"image".k3 int) (? @"image".Point) { return (@"image".Point{ X:@"image".p2.X * @"image".k3, Y:@"image".p2.Y * @"image".k3 }) }
     31 	func (@"image".p2 @"image".Point) String () (? string)
     32 	func (@"image".p2 @"image".Point) Sub (@"image".q3 @"image".Point) (? @"image".Point) { return (@"image".Point{ X:@"image".p2.X - @"image".q3.X, Y:@"image".p2.Y - @"image".q3.Y }) }
     33 	type @"image/color".Model interface { Convert(@"image/color".c @"image/color".Color) (? @"image/color".Color) }
     34 	type @"image".Rectangle struct { Min @"image".Point; Max @"image".Point }
     35 	func (@"image".r2 @"image".Rectangle) Add (@"image".p3 @"image".Point) (? @"image".Rectangle) { return (@"image".Rectangle{ Min:(@"image".Point{ X:@"image".r2.Min.X + @"image".p3.X, Y:@"image".r2.Min.Y + @"image".p3.Y }), Max:(@"image".Point{ X:@"image".r2.Max.X + @"image".p3.X, Y:@"image".r2.Max.Y + @"image".p3.Y }) }) }
     36 	func (@"image".r2 @"image".Rectangle) At (@"image".x3 int, @"image".y4 int) (? @"image/color".Color) { if (@"image".Point{ X:@"image".x3, Y:@"image".y4 }).In(@"image".r2) { return @"image/color".Opaque }; return @"image/color".Transparent }
     37 	func (@"image".r2 @"image".Rectangle) Bounds () (? @"image".Rectangle) { return @"image".r2 }
     38 	func (@"image".r2 @"image".Rectangle) Canon () (? @"image".Rectangle) { if @"image".r2.Max.X < @"image".r2.Min.X { @"image".r2.Min.X, @"image".r2.Max.X = @"image".r2.Max.X, @"image".r2.Min.X }; if @"image".r2.Max.Y < @"image".r2.Min.Y { @"image".r2.Min.Y, @"image".r2.Max.Y = @"image".r2.Max.Y, @"image".r2.Min.Y }; return @"image".r2 }
     39 	func (@"image".r2 @"image".Rectangle) ColorModel () (? @"image/color".Model) { return @"image/color".Alpha16Model }
     40 	func (@"image".r2 @"image".Rectangle) Dx () (? int) { return @"image".r2.Max.X - @"image".r2.Min.X }
     41 	func (@"image".r2 @"image".Rectangle) Dy () (? int) { return @"image".r2.Max.Y - @"image".r2.Min.Y }
     42 	func (@"image".r2 @"image".Rectangle) Empty () (? bool) { return @"image".r2.Min.X >= @"image".r2.Max.X || @"image".r2.Min.Y >= @"image".r2.Max.Y }
     43 	func (@"image".r2 @"image".Rectangle) Eq (@"image".s3 @"image".Rectangle) (? bool) { return @"image".r2 == @"image".s3 || @"image".r2.Empty() && @"image".s3.Empty() }
     44 	func (@"image".r2 @"image".Rectangle) In (@"image".s3 @"image".Rectangle) (? bool) { if @"image".r2.Empty() { return true }; return @"image".s3.Min.X <= @"image".r2.Min.X && @"image".r2.Max.X <= @"image".s3.Max.X && @"image".s3.Min.Y <= @"image".r2.Min.Y && @"image".r2.Max.Y <= @"image".s3.Max.Y }
     45 	func (@"image".r2 @"image".Rectangle) Inset (@"image".n3 int) (? @"image".Rectangle)
     46 	func (@"image".r2 @"image".Rectangle) Intersect (@"image".s3 @"image".Rectangle) (? @"image".Rectangle)
     47 	func (@"image".r2 @"image".Rectangle) Overlaps (@"image".s3 @"image".Rectangle) (? bool)
     48 	func (@"image".r2 @"image".Rectangle) Size () (? @"image".Point) { return (@"image".Point{ X:@"image".r2.Max.X - @"image".r2.Min.X, Y:@"image".r2.Max.Y - @"image".r2.Min.Y }) }
     49 	func (@"image".r2 @"image".Rectangle) String () (? string)
     50 	func (@"image".r2 @"image".Rectangle) Sub (@"image".p3 @"image".Point) (? @"image".Rectangle) { return (@"image".Rectangle{ Min:(@"image".Point{ X:@"image".r2.Min.X - @"image".p3.X, Y:@"image".r2.Min.Y - @"image".p3.Y }), Max:(@"image".Point{ X:@"image".r2.Max.X - @"image".p3.X, Y:@"image".r2.Max.Y - @"image".p3.Y }) }) }
     51 	func (@"image".r2 @"image".Rectangle) Union (@"image".s3 @"image".Rectangle) (? @"image".Rectangle)
     52 	type @"image".Image interface { At(@"image".x int, @"image".y int) (? @"image/color".Color); Bounds() (? @"image".Rectangle); ColorModel() (? @"image/color".Model) }
     53 	type @"io".Reader interface { Read(@"io".p []byte) (@"io".n int, @"io".err error) }
     54 	func @"".Decode (@"".r3 @"io".Reader) (? @"image".Image, ? error)
     55 	type @"image".Config struct { ColorModel @"image/color".Model; Width int; Height int }
     56 	func @"".DecodeConfig (@"".r3 @"io".Reader) (? @"image".Config, ? error)
     57 	type @"".CompressionLevel int
     58 	type @"io".Writer interface { Write(@"io".p []byte) (@"io".n int, @"io".err error) }
     59 	type @"".Encoder struct { CompressionLevel @"".CompressionLevel }
     60 	func (@"".enc2 *@"".Encoder) Encode (@"".w3 @"io".Writer, @"".m4 @"image".Image) (? error)
     61 	const @"".DefaultCompression @"".CompressionLevel = 0x0
     62 	const @"".NoCompression @"".CompressionLevel = -0x1
     63 	const @"".BestSpeed @"".CompressionLevel = -0x2
     64 	const @"".BestCompression @"".CompressionLevel = -0x3
     65 	func @"".Encode (@"".w2 @"io".Writer, @"".m3 @"image".Image) (? error)
     66 	func @"".init ()
     67 	type @"image/color".Alpha16 struct { A uint16 }
     68 	func (@"image/color".c5 @"image/color".Alpha16) RGBA () (@"image/color".r1 uint32, @"image/color".g2 uint32, @"image/color".b3 uint32, @"image/color".a4 uint32) { @"image/color".a4 = uint32(@"image/color".c5.A); return @"image/color".a4, @"image/color".a4, @"image/color".a4, @"image/color".a4 }
     69 	var @"image/color".Opaque @"image/color".Alpha16
     70 	var @"image/color".Transparent @"image/color".Alpha16
     71 	var @"image/color".Alpha16Model @"image/color".Model
     72 
     73 $$
     74 _go_.o          0           0     0     644     264468    `
     75 go object darwin amd64 go1.5.1 X:none
     76 
     77 !
     78 go13ldcompress/zlib.a"encoding/binary.a
     79 fmt.ahash.ahash/crc32.aimage.aimage/color.aio.abufio.astrconv.a"".abseH%H;av3HH\$H$H\$HH?H1H)H\$H
     83 :
     84 *runtime.racefuncenterr
     85 (runtime.racefuncexit
     86 0runtime.morestack_noctxt "".~r1type.int"".xtype.int.P
     89 4Tgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals33cdeccccebe80329f1fdbee7f5874cb\prebuilts/go/darwin-x86/src/image/png/paeth.go"".paetheH%H;aHH\$H$DT$DL$DD$AHAH)HAH)HHHH?H1H)HH?H1H)HH?HHH1H)HH9H9DD$HH9DL$HDT$H5
     92 B
     93 *runtime.racefuncenter
     94 (runtime.racefuncexit
     95 (runtime.racefuncexit
     96 (runtime.racefuncexit
     97 0runtime.morestack_noctxt "".autotmp_0006type.int"".autotmp_0005type.int"".autotmp_0004type.int"".~r3type.uint8"".ctype.uint8"".btype.uint8"".atype.uint8$J0& 
     99 
    101 % Tgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals33cdeccccebe80329f1fdbee7f5874cb\prebuilts/go/darwin-x86/src/image/png/paeth.go"".filterPaetheH%H;aH8H\$8H$H|$pHT$H1H9HD$0HD$Ht$HH9QH\$XHD$LD$`L9HH$L\$LT$LL$0H\$XLD$`M9QJ+IHHl$ L)LL)HHHH?H1H)HH?H1H)HH?HH1H)HH9H9LL$(H\$@LD$HM9JH$Ht$HT$HHL$@H9H1Hl$(HHH\$0H9sjH1H$H|$pHt$HT$HHD$H\$@H9s8HHl$0@+H\$ H\$HH9HH9H8H9MM
    110 B
    111 *runtime.racefuncenter
    112  runtime.raceread
    113  runtime.raceread
    114 "runtime.racewrite
    115 (runtime.racefuncexit
    116 $runtime.panicindex
    117 $runtime.panicindex
    118 $runtime.panicindex
    119 $runtime.panicindex
    120 $runtime.panicindex
    121 $runtime.panicindex
    122 0runtime.morestack_noctxtpp "".autotmp_0015type.int"".autotmp_0014type.int"".autotmp_0013type.int"".autotmp_0012type.int"".autotmp_0010type.int"".autotmp_0009type.int"".autotmp_0008type.int"".autotmp_0007type.int"".j_type.int"".iOtype.int"".c?type.int"".b/type.int"".atype.int "".bytesPerPixel`type.int"".pdat0type.[]uint8"".cdattype.[]uint8popLv`Q
L<
    127 !(		
 Tgclocals71f75e7e2fe2878e818867fe3428bd87Tgclocals33cdeccccebe80329f1fdbee7f5874cb\prebuilts/go/darwin-x86/src/image/png/paeth.go"".cbPalettedeH%H;av7HH\$H$HD$H|H
    133 D$HD$
    134 :
    135 *runtime.racefuncenterl
    136 (runtime.racefuncexit
    137 0runtime.morestack_noctxt "".~r1type.bool
    139 "".cbtype.int+Pf3
    140 
    141 4Tgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals33cdeccccebe80329f1fdbee7f5874cb^prebuilts/go/darwin-x86/src/image/png/reader.go("".FormatError.ErroreH%H;avrH8H\$8H$1H\$PH\$XH$HH\$HD$H\$@H\$H\$HH\$ H\$(H\$PH\$0H\$XH8u
    144 :
    145 *runtime.racefuncenterpBgo.string."png: invalid format: "
    146 *runtime.concatstring2
    147 (runtime.racefuncexit
    148 0runtime.morestack_noctxt@p"".~r0 type.string"".e&type."".FormatErrorpmop
    150 [Tgclocals342b6176fad1bf8fb686f6c9600f7161Tgclocals69c1753bd5f81501d95132d08af04464^prebuilts/go/darwin-x86/src/image/png/reader.go2"".UnsupportedError.ErroreH%H;avrH8H\$8H$1H\$PH\$XH$HH\$HD$H\$@H\$H\$HH\$ H\$(H\$PH\$0H\$XH8u
    153 :
    154 *runtime.racefuncenterpLgo.string."png: unsupported feature: "
    155 *runtime.concatstring2
    156 (runtime.racefuncexit
    157 0runtime.morestack_noctxt@p"".~r0 type.string"".e0type."".UnsupportedErrorpmop
    159 [Tgclocals342b6176fad1bf8fb686f6c9600f7161Tgclocals69c1753bd5f81501d95132d08af04464^prebuilts/go/darwin-x86/src/image/png/reader.go"".mineH%H;av?HH\$H$HL$HD$H9}HL$ HHD$ H
    162 
    163 :
    164 *runtime.racefuncenterl
    165 (runtime.racefuncexit
    166 (runtime.racefuncexit
    167 0runtime.morestack_noctxt0"".~r2 type.int"".btype.int"".atype.int+`$
    169 DTgclocals790e5cc5051fc0affc980ade09e929ecTgclocals33cdeccccebe80329f1fdbee7f5874cb^prebuilts/go/darwin-x86/src/image/png/reader.go."".(*decoder).parseIHDRA@eH%H$8H;AHHH$HH$H$P1H$`H$h$X
HH$H$HH$HH\$HH\$H$H\$HD$ H\$(H$`H\$0H$hHHHH6HtH!H$
H$ H$H$H$PHH$HNHL$H$H\$H$H\$H$ H\$ H$PHD$0HL$8HL$`HD$XHtH$`H$hHHHHaHtHLH$
H$ H$H$H$ H$PHHK Hk(H$H\$H$H\$H$ H\$Hl$pH,$HL$hHYHH$PHktH
    176 H,$H$PX~HH$H$HH$HH\$HH\$H$H\$HD$ H\$(H$`H\$0H$hHHHhtHH,$H$PXHH$H$
HH$HH\$HH\$H$H\$HD$ H\$(H$`H\$0H$hHHHhtHH,$H$PHhtHH,$H$PHH$H$HH$HH\$HH\$H$H\$HD$ H\$(H$`H\$0H$hHHH$H$xH$PHktHH,$H$PHYHxHH$HD$H$PHHtHHHH$H$HH$
    185 HH$H$H$
    186 HH$H$H$w
    187 HH$H$H$M
    188 H$H$H$HH 
    189 HHH
    190 Hm	HH	Hm	H	)	\$@HH$HD$H$PH	HtHt	HHHH$H$HH$9	HH$H$H$	HH$H$H$HH$H$H$H$T$@H$H$HHHHHmHm	HHLHm	H/)	HcHcD$DHH9HH$H$HH$HH\$HH\$H$H\$HD$ H\$(H$`H\$0H$hHHH$PH$H$`H$PH@`H$H$@H$PHktHH,$H$PHh|Hh@H$H$@H$PHh@HHHhtH	H,$H$Ph}@;H$H$`H$PH@`H$H$`H$PHY`Hg1H$(H$0H$8H$@H$(H,H$H$H$HH$HitHHl$HD$H\$H\$xH\$ H$H$H$H$Hl$xH+H$=HkHH$H$PHZHktH	Hl$HD$H\$H\$xH\$ H$H$HH$H$Hl$xHH+H$=HkHH$HD$H$H\$H$H\$H$H\$ HL$(HD$0H$H$H$H$HH$HH\$HH\$H$H\$HD$ H\$(H$`H\$0H$hHHLCL$Hl$LCL$Hl$kHc\$@H\$PHc\$DH\$HH$H$0H$PHl$PHh0H$H$8H$PHl$HHh8H$HL$HD$H$H$`H$H$hHH@H$H$`H$PH@`HHhtH	H,$H$Ph}@u#H$H$`H$PH@`f@\H$H$`H$PH@`9HusHhtH	H,$H$Ph}@u#H$H$`H$PH@`@H$H$`H$PH@`	HHhtH	H,$H$Ph}@wV@u#H$H$`H$PH@`j@`H$H$`H$PH@`=@u#H$H$`H$PH@`
    192 @u#H$H$`H$PH@`@H$H$`H$PH@`HHhtH	H,$H$Ph}@wV@u#H$H$`H$PH@`h@^H$H$`H$PH@`;@u#H$H$`H$PH@`
@H$H$`H$PH@`cHH$H$HH$HH\$HH\$H$H\$HD$ H\$(H$`H\$0H$hHHp
    212 ^
    213 *runtime.racefuncenter6go.string."bad IHDR length"&type."".FormatErrortype.error8go.itab."".FormatError.error
    214 runtime.convT2I
    215 (runtime.racefuncexit
    216  runtime.raceread
    217 io.ReadFull
    218 (runtime.racefuncexit
    219  runtime.raceread		
    220  runtime.raceread	<go.string."compression method"
    221 0type."".UnsupportedError
    222 type.error
    223 Bgo.itab."".UnsupportedError.error
    225 runtime.convT2I
    227 (runtime.racefuncexit
    229  runtime.raceread2go.string."filter method"0type."".UnsupportedErrortype.error
Bgo.itab."".UnsupportedError.error
    235 runtime.convT2I
    236 (runtime.racefuncexit
    237  runtime.raceread
    238  runtime.racereadHgo.string."invalid interlace method"&type."".FormatErrortype.error8go.itab."".FormatError.error
    239 runtime.convT2I
    240 (runtime.racefuncexit
    241 "runtime.racewrite
    242  runtime.raceread2encoding/binary.BigEndian
    243 *runtime.racereadrange
    244  runtime.raceread
    245  runtime.raceread
    246  runtime.raceread
    247  runtime.raceread2encoding/binary.BigEndian
    248 *runtime.racereadrange
    249  runtime.raceread
    250  runtime.raceread
    251  runtime.raceread
    252  runtime.raceread<go.string."dimension overflow"0type."".UnsupportedErrortype.errorBgo.itab."".UnsupportedError.error
    253 runtime.convT2I
    254 (runtime.racefuncexit 
    255 "runtime.racewrite 
    256 "runtime.racewrite 
    257  runtime.raceread!
    258  runtime.raceread"
    259  runtime.raceread"
    260 "runtime.racewrite#
    261  runtime.raceread%type.uint8%
    262 runtime.convT2E&
    263 "runtime.racewrite&6runtime.writeBarrierEnabled'type.uint8'
    264 runtime.convT2E(
    265 "runtime.racewrite)6runtime.writeBarrierEnabled)Ngo.string."bit depth %d, color type %d"*
    266 fmt.Sprintf*0type."".UnsupportedError+type.error+Bgo.itab."".UnsupportedError.error+
    267 runtime.convT2I,
    268 (runtime.racefuncexit,
    269 .runtime.writebarrierptr-
    270 .runtime.writebarrierptr-
    271 "runtime.racewrite.
    272 "runtime.racewrite.
    273 8"".(*decoder).verifyChecksum/
    274 (runtime.racefuncexit0
    275 "runtime.racewrite0
    276  runtime.raceread1
    277 "runtime.racewrite1
    278 "runtime.racewrite2
    279  runtime.raceread3
    280 "runtime.racewrite3
    281 "runtime.racewrite4
    282  runtime.raceread5
    283 "runtime.racewrite5
    284 "runtime.racewrite6
    285 "runtime.racewrite7
    286 "runtime.racewrite7
    287 "runtime.racewrite8
    288  runtime.raceread9
    289 "runtime.racewrite9
    290 "runtime.racewrite:
    291 "runtime.racewrite;
    292 "runtime.racewrite;<go.string."negative dimension"<&type."".FormatError<type.error<8go.itab."".FormatError.error=
    293 runtime.convT2I=
    294 (runtime.racefuncexit=
    295 $runtime.panicindex=
    296 $runtime.panicindex>
    297 $runtime.panicindex>
    298 $runtime.panicindex>
    299 $runtime.panicindex>
    300 $runtime.panicindex>
    301 $runtime.panicindex>
    302 $runtime.panicindex>
    303 $runtime.panicindex>
    304 $runtime.panicindex?
    305 $runtime.panicindex?
    306 $runtime.panicindex?
    307 $runtime.panicindex?
    308 $runtime.panicindex?
    309 $runtime.panicindex?
    310 $runtime.panicindex@
    311 0runtime.morestack_noctxt@D"".autotmp_0045type.int"".autotmp_0044type.int"".autotmp_0043"type.interface {}"".autotmp_0042"type.interface {}"".autotmp_0041?(type.[2]interface {}"".autotmp_0038&type.[]interface {}"".autotmp_0037type.uint8"".autotmp_0036type.uint8"".autotmp_0035type.uint8"".autotmp_0034type.uint8"".autotmp_0032type.int"".autotmp_0031type.uint32"".autotmp_0029type.error"".autotmp_00280type."".UnsupportedError"".autotmp_0027type.string"".autotmp_00260type."".UnsupportedError"".autotmp_0025&type."".FormatError"".autotmp_0024type.[]uint8"".autotmp_0023type.[]uint8"".autotmp_0022&type."".FormatError"".autotmp_00210type."".UnsupportedError"".autotmp_00200type."".UnsupportedError"".autotmp_0019type.[]uint8"".autotmp_0018type.error"".autotmp_0017otype.[]uint8"".autotmp_0016&type."".FormatError(encoding/binary.b2type.[]uint8(encoding/binary.b2type.[]uint8"".htype.int32"".wtype.int32"".errtype.error"".~r1 type.error"".lengthtype.uint32"".d type.*"".decoder" Ms	
    314 .s&sRsJO]S[	s12&A$
    315 
    316 V$DR3[
    317 RM
    318 HE
    319 D?:7
    320 61
    321 #,)
    322 (%$! 
    323 
    324 #
    325 
    327 
    328 _
s)*.LD7QX
    330 n
    332 
a(a,mhLh 
Tgclocals8df70a596169e39f0b1575476d4d155fTgclocals467e6edd81b776774ed96b91f725e0bd^prebuilts/go/darwin-x86/src/image/png/reader.go."".(*decoder).parsePLTE('eH%HD$H;A	HH$H$$1H$H$k)HHL$HHH$H$H$@HD$HH$HJ@HH@%	HH9HHkH~HHjHtHTH$H$H$H$H$HH$HNHL$H$H\$H$H\$H$H\$ H$HL$(HD$0HT$8HT$hHD$`HtH$H$HHHHHtHiH$H$H$H4$H$ H$H&HK Hk(H$H\$H$H\$H$H\$H$H,$H$HYHH$H$H$`H$Hi`H	yHVHu@H$HL$HD$H$H$H$H$HHHH$HD$HD$H\$H$H\$ H$H\$(H$H$H$H$HH$H$HkPH$HkXH$=HkH1Hl$HH9|1\$D\$E\$F\$GHHD$PHkHHH$HktH=HlH,$H$HD$PHHkHHLHjtH=5Hl]\$DHHkHHjtH=HlH,$H$HD$PHHkHHHjtH=Hl]\$EHHkHHjtH=HlH,$H$HD$PHkHHWHitH=@Hl]\$FD$GH$H$HH$HKHHCPHkXH$HH$Hl$PH$H9HHH$HH$HH\$HH\$H\$DH\$HD$ HL$(HD$0H$HnHsHHSPHkXH$HH$Hl$PH$H92HHHL$pHHD$x=HCHD$PHHl$HH9HD$HHD$XH=O1\$D\$E\$F\$GD$DD$ED$FD$GH$H$H$HH$HKHHCPHkXH$HH$Hl$XH$H9JHHH$HH$HH\$HH\$H\$DH\$HD$ HL$(HD$0H$HHsHHSPHkXH$HH$Hl$XH$H9HHHL$pHHD$x=uoHCHD$XHHD$XH=H$H$H$HH$H$H$HH$Hl$HLAXL9w	HiPLCL$HD$LCL$HD$(LCHL$Hl$HH$H$HH$HH\$HH\$H$H\$HD$ H\$(H$H\$0H$HHH	gHH
    355 H}HHnHd/EzEHH$H$HH$HH\$HH\$H$H\$HD$ H\$(H$H\$0H$H1~
    359 X
    360 *runtime.racefuncenter
    361  runtime.raceread
    362  runtime.raceread
    363 io.ReadFull
    364 (runtime.racefuncexit
    365  runtime.raceread		
    366  runtime.raceread
    367 
    368 8"".(*decoder).verifyChecksum
    370 (runtime.racefuncexit0type.image/color.Palette
    373 "runtime.makeslice
    375 "runtime.racewrite
6runtime.writeBarrierEnabled
    377  runtime.raceread
    378  runtime.raceread
    379  runtime.raceread
    380  runtime.raceread
    381 "runtime.racewrite*type.image/color.RGBA,type.image/color.ColorTgo.itab.image/color.RGBA.image/color.Color
    382 runtime.convT2I6runtime.writeBarrierEnabled
    383  runtime.raceread
    384 "runtime.racewrite*type.image/color.RGBA,type.image/color.ColorTgo.itab.image/color.RGBA.image/color.Color
    385 runtime.convT2I6runtime.writeBarrierEnabled
    386 "runtime.racewrite
    387  runtime.raceread
    388 $runtime.panicslice
    389 .runtime.writebarrierptr
    390 $runtime.panicindex
    391 $runtime.panicindex
    392 .runtime.writebarrierptr
    393 $runtime.panicindex 
    394 $runtime.panicindex 
    395 $runtime.panicindex 
    396 $runtime.panicindex 
    397 $runtime.panicindex 
    398 $runtime.panicindex 
    399 $runtime.panicindex!
    400 $runtime.panicindex!
    401 .runtime.writebarrierptr!Jgo.string."PLTE, color type mismatch""&type."".FormatError"type.error"8go.itab."".FormatError.error"
    402 runtime.convT2I#
    403 (runtime.racefuncexit%
    404 $runtime.panicslice%
    405 $runtime.panicslice%6go.string."bad PLTE length"&&type."".FormatError&type.error&8go.itab."".FormatError.error'
    406 runtime.convT2I'
    407 (runtime.racefuncexit'
    408 0runtime.morestack_noctxt@&"".autotmp_0060type.int"".autotmp_0059type.error"".autotmp_0058&type."".FormatError"".autotmp_0057type.int"".autotmp_0056*type.image/color.RGBA"".autotmp_0055type.int"".autotmp_0054*type.image/color.RGBA"".autotmp_0053_0type.image/color.Palette"".autotmp_0052type.[]uint8"".autotmp_0051type.error"".autotmp_0049/type.[]uint8"".autotmp_0047&type."".FormatError"".itype.int"".itype.int"".errtype.error
    410 "".nptype.int"".~r1 type.error"".lengthtype.uint32"".d type.*"".decoderDI
}
63=>'
    417 F
T s9:#$%
    423 
    424 's
H+D<Z^q4=	t	q!Tgclocals72541c40c6166549ccdc48c2d2800f00Tgclocals63fd57f764b64e10137d3aac48159db0^prebuilts/go/darwin-x86/src/image/png/reader.go."".(*decoder).parsetRNS""eH%HD$H;AHH$H$$H$1H$H$HH$H$HH$HH\$HH\$H$H\$HD$ H\$(H$H\$0H$HHHHHtHH$H$H$H$H$HH$HNHL$H$H\$H$H\$H$H\$ H$HT$(HD$0HL$8HL$hHD$`HtH$H$HHT$PHHHHtHH$H$H$H4$H$ H$HMHK Hk(H$H\$H$H\$H$H\$H$H,$H$HYHH$H$H$`H$Ho`H	HHHH$H$HH$HH\$HH\$H$H\$HD$ H\$(H$H\$0H$HHHH$H$HH$HH\$HH\$H$H\$HD$ H\$(H$H\$0H$HHHH$H$HH$HH\$HH\$H$H\$HD$ H\$(H$H\$0H$HH<$HL$HD$H$H$H$H$HHH<$H$HH$H_PHl$PH9TH<$H$HH$H$H$HH$Hl$PLGXL9HoP1HD$XHl$PH971\$L\$M\$N\$OH<$H$HH$HKHHCPHkXH$HH$Hl$XH$H9HHH$HH$H$H^HsHHCPHkXH$H$H\$XH$H9%HHH|$HHHNHOH\$LH\$\$LH\$MH\$NH\$O\$G1\$H\$I\$J\$KT$DT$HL$EL$ID$FD$JH$HktH\$XHHlH,$H$HeHhtLD$XIHJl]\$KH$H$HH$HKHHCPHkXH$HH$Hl$XH$H9HHH$HH$HH\$HH\$H\$HH\$HD$ H$HL$(HD$0HtH_HHWPHoXH$H$Hl$XH$H9sJHHHL$pHHD$x=uHCHD$XHRLCL$HD$H$zHuH	kH#H
    437 VHHdH
H_HEhSExcYx
    443 X
    444 *runtime.racefuncenter6go.string."bad tRNS length"&type."".FormatErrortype.error8go.itab."".FormatError.error
    445 runtime.convT2I
    446 (runtime.racefuncexit
    447  runtime.raceread
    448 io.ReadFull
    449 (runtime.racefuncexit
    450  runtime.raceread		
    451  runtime.raceread
    452 Dgo.string."grayscale transparency"0type."".UnsupportedErrortype.errorBgo.itab."".UnsupportedError.error
    457 runtime.convT2I
    459 (runtime.racefuncexitJgo.string."tRNS, color type mismatch"
&type."".FormatError
type.error
8go.itab."".FormatError.error
    464 runtime.convT2I
    465 (runtime.racefuncexitDgo.string."truecolor transparency"0type."".UnsupportedErrortype.errorBgo.itab."".UnsupportedError.error
    466 runtime.convT2I
    467 (runtime.racefuncexit
    468 8"".(*decoder).verifyChecksum
    469 (runtime.racefuncexit
    470  runtime.raceread
    471 "runtime.racewrite
    472  runtime.raceread
    473  runtime.raceread
    474  runtime.raceread*type.image/color.RGBA
    475 "runtime.assertI2T
    476  runtime.raceread
    477  runtime.raceread
    478 "runtime.racewrite,type.image/color.NRGBA,type.image/color.ColorVgo.itab.image/color.NRGBA.image/color.Color
    479 runtime.convT2I6runtime.writeBarrierEnabled
    480 .runtime.writebarrierptr
    481 $runtime.panicindex
    482 $runtime.panicindex
    483 $runtime.panicindex
    484 $runtime.panicindex
    485 $runtime.panicindex
    486 $runtime.panicindex
    487 $runtime.panicslice"
    488 $runtime.panicslice"
    489 $runtime.panicslice"
    490 0runtime.morestack_noctxt@("".autotmp_0087type.int"".autotmp_0086type.error"".autotmp_0085&type."".FormatError"".autotmp_0084type.int"".autotmp_0083,type.image/color.NRGBA"".autotmp_0082*type.image/color.RGBA"".autotmp_0081type.int"".autotmp_00800type."".UnsupportedError"".autotmp_00790type."".UnsupportedError"".autotmp_0078type.[]uint8"".autotmp_0077type.error"".autotmp_0075/type.[]uint8"".autotmp_0074&type."".FormatError"".rgba*type.image/color.RGBA"".itype.int"".errtype.error"".ntype.int"".~r1 type.error"".lengthtype.uint32"".d type.*"".decoder`?Qs6
    497 s
    498 s-.
    499 s312
    500 (B
*
    502 
    503 
    504 
    505 
    506 
    507 
    508 !P+WD<_^
    509 k	k/ Tgclocalsd005173f854797d6f14610ffe0589461Tgclocals4591e232a92a2acd967b57d16a58c13a^prebuilts/go/darwin-x86/src/image/png/reader.go$"".(*decoder).Read""eH%H$xH;AHH$H$1H$8H$@H$ Hu+H$01H$8H$@HH$H$H$pH$Xp,H$H$HL$HD$HD$`HL$XHt)H$0H$8H$@HHHHtHH$H$H$H$H$HH$HNHL$H$H\$H$H\$H$H\$ HL$0HD$8H$HL$xHt)H$0H$8H$@HHH$HD$H$HHtHHHH$H$HH$~HH$H$H$SHH$H$H$(HH$H$H$H$H$H$HHHHHHm	HHHm	Hx)	\$@H$H$H$pH$l$@hpHtH2HHHH$H$H$HT$H$HL$HL$H$HD$ H$HEH$HD$H-Hl$HD$\$ H$H$H$ H$HHK Hk(H$H,$H$HY(H$HHHtHHH$H$H$H$H$ H$HtNHK Hk(H$H\$H$H\$H$H\$H$H,$H$HYHgRHH$H$H$0HH$HH\$HH\$H$H\$HD$ H\$(H$8H\$0H$@HD/J5H$H$pH$XpHHH$H$H$0HH$HH\$HH\$H$H\$HD$ H\$(H$8H\$0H$@HH$ H\$PH$H$pH$jpHL$PHH9}HH$(H9L$H$H$L$H$H$HHHkH$H\$H$H\$H$H\$H$H,$H$HY HD$ HT$(HL$0HT$hHL$pHD$HH$(H9L$H$H$L$H$H$H$ H$HHK Hk(H$H\$H$H\$H$H\$H$H,$H$HYHH$H$H$pH$hpl$DH$H$pHD$HH$DD$DA)DCpH$0H\$hH$8H\$pH$@H3fPn
    525 ^
    526 *runtime.racefuncenter
    527 (runtime.racefuncexit
    528  runtime.raceread
    529 8"".(*decoder).verifyChecksum
    530 (runtime.racefuncexit
    531  runtime.raceread
    532 io.ReadFull
    533 (runtime.racefuncexit2encoding/binary.BigEndian
    534 *runtime.racereadrange
    535  runtime.raceread	
    536  runtime.raceread
    537 
    538  runtime.raceread
    539 
    540  runtime.raceread
    542 "runtime.racewrite
    543 8runtime.slicebytetostringtmp go.string."IDAT"
    544  runtime.eqstring
    545  runtime.raceread
    546  runtime.racereadBgo.string."not enough pixel data"&type."".FormatErrortype.error8go.itab."".FormatError.error
    547 runtime.convT2I
    548 (runtime.racefuncexit
    549 $runtime.panicindex
    550 $runtime.panicindex
    551 $runtime.panicindex
    552 $runtime.panicindex
    553 $runtime.panicindex
    554 $runtime.panicindex
    555 $runtime.panicindex
    556 $runtime.panicindex
    557  runtime.racereadLgo.string."IDAT chunk length overflow"0type."".UnsupportedErrortype.errorBgo.itab."".UnsupportedError.error
    558 runtime.convT2I
    559 (runtime.racefuncexit
    560  runtime.raceread
    561  runtime.raceread
    562  runtime.raceread  
    563  runtime.raceread 
    564 "runtime.racewrite!
    565 (runtime.racefuncexit"
    566 $runtime.panicslice"
    567 $runtime.panicslice"
    568 0runtime.morestack_noctxtp6"".autotmp_0111type.string"".autotmp_0110type.uint32"".autotmp_0109type.uint32"".autotmp_0108type.[]uint8"".autotmp_0107type.error"".autotmp_0106type.int"".autotmp_0105type.[]uint8"".autotmp_0104type.int"".autotmp_0103type.int"".autotmp_01020type."".UnsupportedError"".autotmp_0101type.[]uint8"".autotmp_0100&type."".FormatError"".autotmp_0099type.[]uint8"".autotmp_0098type.[]uint8"".autotmp_0097type.error"".autotmp_0096/type.[]uint8"".autotmp_0094type.int"".~r0type.uint32(encoding/binary.b2_type.[]uint8"".errtype.error"".ntype.int"".errtype.error"".errtype.error"".~r2Ptype.error"".~r1@type.int"".ptype.[]uint8"".d type.*"".decoder\"[}&"6521*+('OR#
    575 	N//
    576 n.C`LD>!]Z	#
U]b^rTgclocals19d18d16f0ad5ccc5ec377416b5028bfTgclocalscab8f9d39f904f88b0cdb56320d6369d^prebuilts/go/darwin-x86/src/image/png/reader.go("".(*decoder).decode  eH%HD$H;AHH$H$1H$H$1H$ H$(H$H\$`H1H9qHL$`H$H$H$HL$Ht$Hl$HL$ HT$(Ht$hHl$pH$H$Ht51H$H$H$ H$(HHl$HH^ $H\$1H\$xH$H$H$H$xH$HxHaHH$H\$hH\$H\$pH\$H\$H|$HHHKHOH$H$HD$D$ HT$(HL$0Ht$8Hl$@HT$xH$H$H$H$Ht=1H$H$H$H$ H$(H11Hl$PHH$HHD$XHduSHH$1H$H$HH$ HH$(HH$HHtHHHH$HD$H$HT$H$HL$H\$pH$H\$hH[(Hl$ HT$(HL$0H$H$HD$XHHl$PHH$HHH$H$H-H9_HH$H$H,$H$Hl$H-Hl$H-Hl$Hl$P\$ HuhH$H$H$pH$]puBH\$xH$H$H$1H$ H$(HHH$H$1H$H$HH$HH\$HH\$H$H\$HD$ H\$(H$ H\$0H$(HH$H$H$H[ HL$HD$H$H$H$H$1H$H$HH$HH\$HH\$H$H\$HD$ H\$(H$ H\$0H$(H H$H$xH$HxHLH$H$1H\$H\$HD$D$ HT$(HL$0Ht$8Hl$@HT$xH$H$H$H$Ht=1H$H$H$H$ H$(H1HD$HHHH$H\$hH\$H\$pH\$H\$H|$HHHKHOH$H$H\$HH\$D$ HL$(H|$0Ht$8Hl$@H$H$H$H$Ht51H$H$H$ H$(HHt<H$H$H\$xH\$H$H\$HL$H|$ H\$HH\$(HD$HHH*HH$HH\$HH\$HD$]|
    583 X
    584 *runtime.racefuncenter:go.itab.*"".decoder.io.Reader
    585 .compress/zlib.NewReader
    586 &runtime.deferreturn
    587 (runtime.racefuncexit
    588 "runtime.deferproc
    589  runtime.racereadtype.io.Reader
    590 runtime.convI2I
    591 6"".(*decoder).readImagePass
    592 &runtime.deferreturn
    593 (runtime.racefuncexit	 io.ErrNoProgress
    594 
    595  runtime.raceread
    596  io.ErrNoProgress
    597  io.ErrNoProgress
    598 
    599 &runtime.deferreturn
    600 
    601 (runtime.racefuncexit
io.EOF
    605  runtime.racereadio.EOFio.EOF
    608  runtime.racereadio.EOFio.EOF
    611 runtime.ifaceeq
    612  runtime.raceread
    613 &runtime.deferreturn
    614 (runtime.racefuncexit>go.string."too much pixel data"&type."".FormatErrortype.error8go.itab."".FormatError.error
    615 runtime.convT2I
    616 &runtime.deferreturn
    617 (runtime.racefuncexit&type."".FormatErrortype.error8go.itab."".FormatError.error
    618 runtime.convT2I
    619 &runtime.deferreturn
    620 (runtime.racefuncexit
    621  runtime.raceread
    622 6"".(*decoder).readImagePass
    623 &runtime.deferreturn
    624 (runtime.racefuncexittype.io.Reader
    625 runtime.convI2I
    626 6"".(*decoder).readImagePass
    627 &runtime.deferreturn
    628 (runtime.racefuncexit
    629 6"".(*decoder).mergePassInto
    630 &runtime.deferreturn
    631 (runtime.racefuncexit type.*"".decodertype.io.Reader:go.itab.*"".decoder.io.Reader 
    632  runtime.typ2Itab 
    633 0runtime.morestack_noctxtP0"".autotmp_0133&type."".FormatError"".autotmp_0132o&type."".FormatError"".autotmp_0131Otype.string"".autotmp_0130type.int"".autotmp_0129type.error"".autotmp_0128type.int"".autotmp_0127/type.[]uint8"".autotmp_0125type.error"".autotmp_0124 type.image.Image"".autotmp_0123type.error"".autotmp_0122 type.image.Image"".autotmp_0121type.error"".autotmp_0117 type.*"".decoder"".itype.int"".ntype.int"".errtype.error"".imagePass type.image.Image"".passtype.int"".img type.image.Image"".errtype.error"".r$type.io.ReadCloser"".~r10type.error"".~r0 type.image.Image"".d type.*"".decoderaCXW$h(RQ-20DC(#F,B-*\087(.-<
NM2
    645 r+f1=N5zUDy+w-	DnCP=Tgclocalseea3210279081044ae0c294ad2fe74f1Tgclocals622aa6e75b53af6f905d8a5ee4c3d021^prebuilts/go/darwin-x86/src/image/png/reader.go6"".(*decoder).readImagePasseH%H$pH;AlWH
    648 H$
    649 H$1H$@
    650 H$H
    651 1H$P
    652 H$X
    653 H$H$8H$H$H$H$H$H$H$1H$8H$@H$
    654 H$H$8H$
    655 Hh8H$H$H$0H$
    656 Hh0H$(H$H$H$H$xH$
    657 HxH$8
    658 HH$HH$0
    659 LL9UHHH$HD$ HH$0
    660 LL9UHHH+HKHSH{H$hH$(H)HHH$XH]UHHHH$pH$H)HHH$`HUHHHH$(HTH$HTH$
    661 H$H$`H$
    662 H$Hj`HV>H5H4H$H$@H$
    663 Hk@H$H$(H$111H9~	HHHH9~	HHH1H$H$H$H$H$xHH$HH$HH$H$H$HH$H$H)HH$H$H$ H$(H$H$0HH$H$H)H1H$8	H$@	H$H	HH$HHHH$HD$HD$HT$HL$ HD$(H$8	H$@	H$H	HH$HD$H$0H$H$0H$@	HkH$H	HkH$8	=3H+H$0H$H$H$0H$HhH$H$ HD$ H$0H$Hh H$ Hh(H$(Hh0H$0Hh8H$H$0H1H902H$0H$@H$8$8
    664 t?H$8H$@
    665 H$@H$H
    666 1H$P
    667 H$X
    668 H
    669 H$HHH?H=HHH$H$H$(HHHH?H=HHHH$0HH$H$0H\$H$0H\$HT$HL$ HD$(H$	H$	H$	HH$H$0H\$H$0H\$HT$HL$ HD$(H$	H$H$
    670 H$H$
    671 H$H$H$H$H9H$ 
    672 H$H$(
    673 H\$H$	H\$H$	H\$H$	H\$ H\$0H$hH\$8H$pH$hH$HH$pH$PH$HHHH$H$HH-H9HH$H$HH,$H$PHl$H-Hl$H-Hl$\$ HH$XH$`1H$@
    674 H$H
    675 HH$HH\$HH\$H$XH\$HD$ H\$(H$P
    676 H\$0H$X
    677 H
    678 HH$H$HH-H9uTHH$H$HH,$H$PHl$H-Hl$H-Hl$\$ 1H$@
    679 H$H
    680 H$HH$P
    681 H$PH$X
    682 H
    683 H$	H$	H.HHL$	HtIH$	H$	L$	H$H$H-HHL$HtIH$	H$	L$	H$	H$	-H$H$	H$	Z-+@l$M\$M.'\$M$H$
    684 H$H$`H$
    685 Hk`HAH HH$H$H$(H9H$H$H?H=HH$	L$	HL9BHlH,$H$H$H?H=HH$	L$	HL9Hl]\$IH$(H$(HH$H$(HH$(H91\$L\$IHH\$LH$H$H$H$(HH\$H$H\$\$L\$\$I\$M\$MH\$IH$(HH$(H$(HFH$HH$H$H$(H9pH$H$H$H$	H$H$	H$H$	H$H$	H$	H$
    686 H$	H$
    687 H$	H$HH$H$H$H9$H$8H$@
    688 H$@H$H
    689 1H$P
    690 H$X
    691 H
    692 HH$H$H$(H9H$H$H?H>HH$	L$	HL9LHlH,$H$H$H?H>HH$	L$	HL9Hl]\$FH$H$HH$H$HH$(H91\$L\$FHUH\$LH$H$H$H$HH\$H$H\$\$L\$\$F\$M\$MH\$FH$HH$H$HEH$HH$jHKH$H$H$(H9&H$H$H?H)HH$	L$	HL9JHlH,$H$H$H?H)HH$	L$	HL9Hl]\$GH$H$HH$H$HH$(H91\$L\$GHH\$LH$H$H$H$HH\$H$H\$\$L\$\$G\$M\$MH\$GH$HH$H$HEH$HH$nHHH$H$H$H$8LCLKL9LI)I)ItM*L$	L$L$
    699 LD$L$
    700 LL$H$	H\$H$	H\$ H$	H\$(HD$0H$8H$H$H$H$H$H]H$HH$8HH$H$H$(H9kH$H$	L$	HHL9OHlH,$H$H$	L$	HHL9Hl]\$A1\$d\$e\$f\$g\$A\$d\$A\$e\$A\$fH$HHH$	L$	L9HlH,$H$HHH$	L$	L9srH+\$gH$H$H$H\$H$H\$\$d\$\$e\$\$f\$\$g\$H$HH$H3H$H$H$H	H+H$h	HkH$p	HkH$x	H$8H$XH$@H$xH$xH$(H9H$XH$h	HH$L$p	L9qHH$H$@H$	L$	HL98HlH,$H$h	H$L$p	L9H+H$@L$	L$	HL9M(A(@+H$XHH$h	H$L$p	L9HH$H$@HH$	L$	L9\HlH,$H$h	H$L$p	L9&H+H$@HL$	L$	L9M(A(@+H$XH$h	HH$L$p	L9HH$H$@H$	L$	HL9HlH,$H$h	H$L$p	L9IH+H$@L$	L$	HL9M(A(@+H$XH$h	HH$L$p	L9HH$H$h	H$L$p	L9H+H$XHH$XH$@HH$@H$xHH$xH$xH$(H9H$8H$H$H$H$H$H]H$HH$8HH$H$H$(H9H$H$H?H=HH$	L$	HL9HlH,$H$H$H?H=HH$	L$	HL9mHl]\$KH$H$H"H$H$HH$(H9\$K\$CH$H$H$@H$HiH\$CH9|U\$CHH$H$H$@H$H$H$@H$H$LAPL9HiHH$H$H$HH\$H$H\$\$C\$\$K\$M\$MH\$KH$HH$H$HH$HH$H(H	NHH$H$H$(H9EH$H$H?H>HH$	L$	HL9HlH,$H$H$H?H>HH$	L$	HL9nHl]\$HH$ H$ H#H$H$ HH$(H9\$H\$DH$H$H$@H$HiH\$DH9|U\$DHH$H$H$@H$H$H$@H$H$LAPL9HiHH$H$H$ HH\$H$H\$\$D\$\$H\$M\$MH\$HH$ HH$ H$ HH$HH$H	AH$H$H$(H9H$H$H?H)HH$	L$	HL9HlH,$H$H$H?H)HH$	L$	HL9nHl]\$JH$0H$0H#H$H$0HH$(H9\$J\$EH$H$H$@H$HiH\$EH9|U\$EHH$H$H$@H$H$H$@H$H$LAPL9HiHH$H$H$0HH\$H$H\$\$E\$\$J\$M\$MH\$JH$0HH$0H$0HH$HH$H
    736 H$H$H$@H$HiHHH$H$H$(H9kH$H$@H$HkHH$H$	H$L$	L9-H+H$H$H$	H$L$	L9H+H$H9H$	H$L$	L9H+H$H$	H$L$	L9{H+HH$H$H$H$@H$H$H$@H$H$LAPL9HiHH$HH$H$H$(H9H$H$H$8LCLKL9LI)I)ItM*L$	L$L$
    739 LD$L$
    740 LL$H$	H\$H$	H\$ H$	H\$(HD$0H$8H$H$H$H$H$H]H$HH$8{HGH$H$H$H$8LCLKL9LI)I)ItM*L$	L$L$
    748 LD$L$
    749 LL$H$	H\$H$	H\$ H$	H\$(HD$0H$8H$H$H$H$H$H]H$HH$8]H
uHuH$H$H$(H9H$H$	L$	HHL9!HlH,$H$HHH$	L$	L9HlH,$H$H$	L$	HHL9H+fL$HIIH$	L$	M9srJlfmH	f\$P1f\$^H\$Pf\$^H$H$H$H\$H$H\$H\$^f\$H$HH$H
H$H$H$(H9H$H$	L$	HHL9HlH,$H$HHH$	L$	L9ZHlH,$H$H$	L$	HHL9H+fL$HIIH$	L$	M9JlfmH	f\$NH$H$	L$	HHL9HlH,$H$H$	L$	HHL9aHlH,$H$H$	L$	HHL9#H+fL$H$	L$	HIIM9JlfmH	f\$`1f$f$f$f$H\$Nf$H\$Nf$H\$Nf$H\$`f$H$H$H$H\$H$H\$H$f\$H$f\$H$f\$H$f\$H$HH$XHH$H$H$(H9H$H$	L$	HkHL9HlH,$H$HkHH$	L$	L9PHlH,$H$H$	L$	HkHL9H+fL$HMkIH$	L$	M9JlfmH	f\$RH$H$	L$	HkHL9HlH,$H$H$	L$	HkHL9WHlH,$H$H$	L$	HkHL9H+fL$H$	L$	HMkIM9JlfmH	f\$VH$H$	L$	HkHL9HlH,$H$H$	L$	HkHL9]HlH,$H$H$	L$	HkHL9H+fL$H$	L$	HMkIM9JlfmH	f\$Z1f$f$f$f$H\$Rf$H\$Vf$H\$Zf$f$H$H$H$H\$H$H\$H$f\$H$f\$H$f\$H$f\$H$HH$~HH$H$H$(H9H$H$	L$	HHL9HlH,$H$HHH$	L$	L9NHlH,$H$H$	L$	HHL9H+fL$HIIH$	L$	M9JlfmH	f\$TH$H$	L$	HHL9HlH,$H$H$	L$	HHL9UHlH,$H$H$	L$	HHL9H+fL$H$	L$	HIIM9JlfmH	f\$XH$H$	L$	HHL9HlH,$H$H$	L$	HHL9[HlH,$H$H$	L$	HHL9H+fL$H$	L$	HIIM9JlfmH	f\$\H$H$	L$	HHL9HlH,$H$H$	L$	HHL9aHlH,$H$H$	L$	HHL9#H+fL$H$	L$	HIIM9JlfmH	f\$b1f$f$f$f$H\$Tf$H\$Xf$H\$\f$H\$bf$H$H$H$H\$H$H\$H$f\$H$f\$H$f\$H$f\$H$HH$\$MH$H$`H$	H$`H9H$	H$`L$	L9;H+H$H$	H$`L$	L9H++@l$MH$	H$`L$	L9H+H$H$`H$H)H$	L$	L9HlH,$H$	H$`L$	L9s`H+L$`L$H$	M)L$	M9s-JlmDD$ML@+H$`HH$`HH$XH$`1H$@
    800 H$H
    801 HH$HH\$HH\$H$XH\$HD$ H\$(H$P
    802 H\$0H$X
    803 H
    804 \$M~H$	H$	H$	H$
    805 1H$
    806 H$H$	HH$H$H9|H$(H$H$(+@l$MH$H$P\$M\$BH$	H$PL$	L9H+H$H$	H$PL$	L9H++@l$MH$	H$PL$	L9saH+H$H$	H$PL$	L9s0H+l$MDD$BL@+H$(HH$H\$M
    811 H$HH$HH$H9H$	H$HL$	L9H+H$H$	H$HL$	L9H++@l$MH$	H$HL$	L9TH+H$H$	H$HL$	L9H++H$	H$HL$	L9H+H$H$	H$HL$	L9H+H$H$	H$HL$	L9H+H$	L$HL$	M9ZJlm@DD$ML@+H$HHH$HH$HH$H9iH$H$hH$	H$hH9aH$	H$hL$	L9H+H$H$	H$hL$	L9H++@l$MH$hH$H)H$	L$	L9QHlH,$H$	H$hL$	L9H+H$H$hL$H$	L)L$	L9H+H$	L$hL$	M9JlmHH$H$	H$hL$	L9stH+H$H$H$	H$hL$	L9s;H+HH?II)LHDD$ML@+H$hHH$h2\$MH$	H$H$	H\$H$	H\$H$	H\$H$	H\$ H$	H\$(H$H\$0HH$HH\$HH\$HD$H$Hl$H
    832 HHHHlH$H$(11H1H9~	HHHH9~	HHH1HH$XH$`H$hH$pH$xH$H$H$H$H$H$H$H)H$H$H$ H$(H$H$0HH$H$H)H1H$	H$	H$	HH$HHHHH$HD$HD$HT$HL$ HD$(H$	H$	H$	HH$HD$H$ H$H$ H$	HkH$	HkH$	=H+H$ H$H$H$ H$HHhH$H$ HD$ H$ H$Hh H$ Hh(H$(Hh0H$0Hh8H$H$ H1H9tH$ H$@H$8HH$HH\$HH\$HD$H$Hl$HH$H$(11H1H9~	HHHH9~	HHH1HH$H$H$H$H$xH$H$H$H$ H$0H$(H$H)H$XH$8H$`H$hH$HH$pHH$PH$@H)H1H$	H$	H$	HH$HHHHH$HD$HD$HT$HL$ HD$(H$	H$	H$	HH$HD$H$H$H$H$	HkH$	HkH$	=H+H$H$H$H$H$HHhH$H$ HD$ H$H$XHh H$`Hh(H$hHh0H$pHh8H$H$H1H9tH$H$@H$8>HH$HH\$HH\$HD$H$Hl$HH$H$@H$
    833 Ho@H$H$(H$111H9~	HHHH9~	HHH1H$H$xH$H$H$H$H$H$H<$H$HH$
    834 HLKHLCPHkXH$xH$H$H$L$	L$xL$	L$H$	H$H$`H$pHH$hH$XH)H$H$8H$H$H$HH$H$PH$@H)1H$H$H$HH$HHHH$HD$HD$HT$HL$ HD$(H$H$H$HH$HD$H$H$H$H$HkH$HkH$=HH+H$H$H$H$H$HhH$H$ HD$ H$H$Hh H$Hh(H$Hh0H$Hh8H$H$@H$H$HkHH$HkPH$x=uvHk@H$H$H$H1H9tH$H$@H$8HH$HH\$HH\$HD$LC@L$Hl$wH$Hl$HH	HAH	7$H
    836 (HH$ H$(11H$1H$xH$H$H$H9~	HHHH$H9~HH$H$1HH$H$xH$H$H$H$xH$H$H$H$xH$XH$H$`H$H$hH$H$pH$H$H$H$XH$H$`H$H$hH$H$pH$H$H$H$H)H$H$XH$H$`H$H$hH$H$pH$HD$xH$H$H)H\$xH$HD$xH$H$1H$H$H$	H$H$HHHH$HD$HD$HT$HL$ HD$(H$H$H$	HH$HD$H$ H$H$ H$HkH$	HkH$=H+H$ H$H$H$ H$HHhH$H$ HD$ H$ H$XHh H$`Hh(H$hHh0H$pHh8H$H$H$H$ H1H9tH$ H$@H$8qHH$HH\$HH\$HD$H$Hl$H
	H}H$H$XH$H$(H$8H$1H$H$H$H$H$XH$8H9~ H$XH$8H$XH$8H$H$H9~ H$H$H$H$1H$XH$H$8H$H$H$H$H$H$H$H$H$H$xH$H$H$H$H$H$H$H$H$H$pH$H$8H$H$@H$H$HH$H$PH$H$HH$8H)H$H$H$H$H$ H$H$(H$H$0H$H$0H$ H)H$H$H$H$H$p1H$H$H$H$H$pHHHH$HD$HD$HT$HL$ HD$(H$H$H$HH$H\$H$H$H$H$H$HkH$HkH$=H+H$H$H$H$H$HHkH$H$H$ HD$ H$H$Hk H$Hk(H$Hk0H$Hk8H$H$H$H$H$H$H$H1H9tH$H$@H$8HH$HH\$HH\$HD$H$Hl$H
H$ H$hH$H$(H$HH$1H$H$ H$(H$0H$hH$HH9~ H$hH$HH$hH$HH$H$H9~ H$H$H$H$1H$hH$H$HH$H$H$ H$(H$0H$H$ H$(H$0H$xH$H$H$H$H$H$H$H$H$H$H$H$xH$H$H$H$H$H$H$H$H$xH)H$H$H$H$H$H$H$H$H$HD$hH$H$H)H\$hH$HD$hH$H$1H$P	H$X	H$`	H$H$HHHH$HD$HD$HT$HL$ HD$(H$P	H$X	H$`	HH$H\$H$H$H$H$H$X	HkH$`	HkH$P	=H+H$H$H$H$H$HHkH$H$H$ HD$ H$H$Hk H$Hk(H$Hk0H$Hk8H$H$H$H$H$H$H$H1H9tH$H$@H$8`HH$HH\$HH\$HD$H$Hl$HvH$0H$`H$H$(H$@H$1H$8H$@H$HH$PH$`H$@H9~ H$`H$@H$`H$@H$H$H9~ H$H$H$H$1H$`H$H$@H$H$8H$@H$HH$PH$8H$@H$HH$PH$xH$H$H$H$H$H$H$H$H$H$xH$H$H$H$H$H$H$H$H$H$H$H)H$H$H$8H$H$@H$H$HH$H$PHD$pH$PH$@H)H\$pH$HD$pH$H$x1H$H$H$H$H$xHHHH$HD$HD$HT$HL$ HD$(H$H$H$HH$H\$H$H$H$H$H$HkH$HkH$=H+H$H$H$H$H$HHkH$H$H$ HD$ H$H$Hk H$Hk(H$Hk0H$Hk8H$H$H$H$H$H$H$H1H9tH$H$@H$8HH$HH\$HH\$HD$H$Hl$HH$@H$pH$H$(H$PH$1H$H$H$H$H$pH$PH9~ H$pH$PH$pH$PH$H$H9~ H$H$H$H$1H$pH$H$PH$H$H$H$H$H$H$H$H$H$xH$H$H$H$H$H$H$H$H$ H$H$H$xH$H$H$H$H$H$H$H$H$xH)H$H$H$xH$H$H$H$H$H$H$H$H$H)H$H$H$H$ H$1H$ 	H$(	H$0	H$ H$HHHH$HD$HD$HT$HL$ HD$(H$ 	H$(	H$0	HH$H\$H$H$H$H$H$(	HkH$0	HkH$ 	=H+H$H$H$H$H$ HHkH$H$H$ HD$ H$H$Hk H$Hk(H$Hk0H$Hk8H$H$H$H$H$H$H$H1H9tH$H$@H$8WHH$HH\$HH\$HD$H$Hl$1H$@
    841 H$H
    842 1H$P
    843 H$X
    844 H
    845 HHHHo
    848 ^
    849 *runtime.racefuncenter
    850  runtime.raceread
    851  runtime.raceread
    852  runtime.raceread"".interlacing
    853  runtime.raceread"".interlacing"".interlacing
    854 *runtime.racereadrange"".interlacing"".interlacing
    855 
    856  runtime.raceread
    858  runtime.racereadtype.[]uint8
    859 "runtime.makeslicetype.image.Gray
    860 "runtime.newobject
    861 "runtime.racewrite6runtime.writeBarrierEnabled
    862 "runtime.racewrite
    863 ,runtime.racewriterange>go.itab.*image.Gray.image.Image
    864 (runtime.racefuncexittype.[]uint8
    865 "runtime.makeslicetype.[]uint8
    866 "runtime.makeslice
    867 io.ReadFullio.EOF
    869  runtime.racereadio.EOFio.EOF
    872  runtime.racereadio.EOFio.EOF
    875 runtime.ifaceeqBgo.string."not enough pixel data" &type."".FormatError type.error 8go.itab."".FormatError.error 
    876 runtime.convT2I!
    877 (runtime.racefuncexit!&io.ErrUnexpectedEOF!
    878  runtime.raceread"&io.ErrUnexpectedEOF"&io.ErrUnexpectedEOF"
    879  runtime.raceread"&io.ErrUnexpectedEOF#&io.ErrUnexpectedEOF#
    880 runtime.ifaceeq$
    881 (runtime.racefuncexit'
    882  runtime.raceread(
    883  runtime.raceread*
    884  runtime.raceread.
    885 *image.(*Gray).SetGray3
    886 (runtime.racefuncexit3
    887 $runtime.panicindex3
    888 $runtime.panicindex5
    889  runtime.raceread9
    890 *image.(*Gray).SetGray:
    891 $runtime.panicindex:
    892 $runtime.panicindex<
    893  runtime.raceread?
    894 *image.(*Gray).SetGrayA
    895 $runtime.panicindexA
    896 $runtime.panicindexB
    897  runtime.racereadD
    898 "runtime.slicecopyD
    899  runtime.racereadE
    900 $runtime.panicsliceG
    901  runtime.racereadI
    902  runtime.racereadK
    903 .image.(*NRGBA).SetNRGBAK
    904 $runtime.panicindexL
    905 $runtime.panicindexL
    906 $runtime.panicindexL
    907 $runtime.panicindexL
    908  runtime.racereadO
    909 "runtime.racewriteP
    910  runtime.racereadR
    911 "runtime.racewriteS
    912  runtime.racereadU
    913 "runtime.racewriteV
    914  runtime.racereadX
    915 "runtime.racewrite[
    916  runtime.raceread[
    917 $runtime.panicindex[
    918 $runtime.panicindex[
    919 $runtime.panicindex[
    920 $runtime.panicindex\
    921 $runtime.panicindex\
    922 $runtime.panicindex\
    923 $runtime.panicindex\
    924 $runtime.panicindex\
    925 $runtime.panicindex\
    926 $runtime.panicindex\
    927 $runtime.panicindex\
    928 $runtime.panicindex\
    929 $runtime.panicindex]
    930 $runtime.panicindex_
    931  runtime.racereada
    932  runtime.racereadb
    933 "runtime.racewriteb
    934  runtime.racereadd
    935 >image.(*Paletted).SetColorIndexe
    936 $runtime.panicslicee
    937 $runtime.panicindexe
    938 $runtime.panicindexg
    939  runtime.racereadj
    940  runtime.racereadk
    941 "runtime.racewritek
    942  runtime.racereadm
    943 >image.(*Paletted).SetColorIndexn
    944 $runtime.panicslicen
    945 $runtime.panicindexn
    946 $runtime.panicindexp
    947  runtime.racereads
    948  runtime.racereadt
    949 "runtime.racewritet
    950  runtime.racereadu
    951 >image.(*Paletted).SetColorIndexw
    952 $runtime.panicslicew
    953 $runtime.panicindexw
    954 $runtime.panicindexw
    955  runtime.raceready
    956  runtime.racereadz
    957  runtime.raceread{
    958  runtime.raceread|
    959 "runtime.racewrite}
    960  runtime.raceread~
    961  runtime.raceread
    962 "runtime.slicecopy
    963  runtime.raceread
    964 $runtime.panicslice
    965 $runtime.panicslice
    966 $runtime.panicindex
    967 $runtime.panicindex
    968 $runtime.panicindex
    969 $runtime.panicindex
    970  runtime.raceread
    971 "runtime.slicecopy
    972  runtime.raceread
    973 $runtime.panicslice
    974  runtime.raceread
    975  runtime.raceread
    976 2image.(*Gray16).SetGray16
    977 $runtime.panicindex
    978 $runtime.panicindex
    979 $runtime.panicindex
    980 $runtime.panicindex
    981  runtime.raceread
    982  runtime.raceread
    983  runtime.raceread
    984  runtime.raceread
    985 6image.(*NRGBA64).SetNRGBA64
    986 $runtime.panicindex
    987 $runtime.panicindex
    988 $runtime.panicindex
    989 $runtime.panicindex
    990 $runtime.panicindex
    991 $runtime.panicindex
    992 $runtime.panicindex
    993 $runtime.panicindex
    994  runtime.raceread
    995  runtime.raceread
    996  runtime.raceread
    997  runtime.raceread
    998  runtime.raceread
    999  runtime.raceread
   1000 2image.(*RGBA64).SetRGBA64
   1001 $runtime.panicindex
   1002 $runtime.panicindex
   1003 $runtime.panicindex
   1004 $runtime.panicindex
   1005 $runtime.panicindex
   1006 $runtime.panicindex
   1007 $runtime.panicindex
   1008 $runtime.panicindex
   1009 $runtime.panicindex
   1010 $runtime.panicindex
   1011 $runtime.panicindex
   1012 $runtime.panicindex
   1013  runtime.raceread
   1014  runtime.raceread
   1015  runtime.raceread
   1016  runtime.raceread
   1017  runtime.raceread
   1018  runtime.raceread
   1019  runtime.raceread
   1020  runtime.raceread
   1021 6image.(*NRGBA64).SetNRGBA64
   1022 $runtime.panicindex
   1023 $runtime.panicindex
   1024 $runtime.panicindex
   1025 $runtime.panicindex
   1026 $runtime.panicindex
   1027 $runtime.panicindex
   1028 $runtime.panicindex
   1029 $runtime.panicindex
   1030 $runtime.panicindex
   1031 $runtime.panicindex
   1032 $runtime.panicindex
   1033 $runtime.panicindex
   1034 $runtime.panicindex
   1035 $runtime.panicindex
   1036 $runtime.panicindex
   1037 $runtime.panicindex
   1038  runtime.raceread
   1039 "runtime.racewrite
   1040  runtime.raceread
   1041 $runtime.panicindex
   1042 $runtime.panicindex
   1043 $runtime.panicindex
   1044 $runtime.panicindex
   1045 $runtime.panicindex
   1046 $runtime.panicindex6go.string."bad filter type"&type."".FormatErrortype.error8go.itab."".FormatError.error
   1047 runtime.convT2I
   1048 (runtime.racefuncexit
   1049  runtime.raceread
   1050  runtime.raceread
   1051 "runtime.racewrite
   1052 $runtime.panicindex
   1053 $runtime.panicindex
   1054 $runtime.panicindex
   1055 $runtime.panicindex
   1056  runtime.raceread
   1057  runtime.raceread
   1058 "runtime.racewrite
   1059  runtime.raceread
   1060  runtime.raceread
   1061  runtime.raceread
   1062  runtime.raceread
   1063 "runtime.racewrite
   1064 $runtime.panicindex
   1065 $runtime.panicindex
   1066 $runtime.panicindex
   1067 $runtime.panicindex
   1068 $runtime.panicindex
   1069 $runtime.panicindex
   1070 $runtime.panicindex
   1071 $runtime.panicindex
   1072 $runtime.panicindex
   1073 $runtime.panicindex
   1074 $runtime.panicindex
   1075 $runtime.panicindex
   1076 $runtime.panicindex
   1077 $runtime.panicindex
   1078 $runtime.panicindex
   1079 $runtime.panicindex
   1080 "".filterPaeth
   1081 $runtime.panicindex
   1082 $runtime.panicindex
   1083 $runtime.panicslice
   1084 $runtime.panicslice type.*image.Gray type.image.Image>go.itab.*image.Gray.image.Image
   1085  runtime.typ2Itab
   1086 .runtime.writebarrierptrtype.[]uint8
   1087 "runtime.makeslice type.image.NRGBA
   1088 "runtime.newobject
   1089 "runtime.racewrite6runtime.writeBarrierEnabled
   1090 "runtime.racewrite
   1091 ,runtime.racewriterange@go.itab.*image.NRGBA.image.Image"type.*image.NRGBA type.image.Image@go.itab.*image.NRGBA.image.Image
   1092  runtime.typ2Itab
   1093 .runtime.writebarrierptrtype.[]uint8
   1094 "runtime.makeslicetype.image.RGBA
   1095 "runtime.newobject
   1096 "runtime.racewrite6runtime.writeBarrierEnabled
   1097 "runtime.racewrite
   1098 ,runtime.racewriterange>go.itab.*image.RGBA.image.Image type.*image.RGBA type.image.Image>go.itab.*image.RGBA.image.Image
   1099  runtime.typ2Itab
   1100 .runtime.writebarrierptr
   1101  runtime.raceread
   1102  runtime.racereadtype.[]uint8
   1103 "runtime.makeslice&type.image.Paletted
   1104 "runtime.newobject
   1105 "runtime.racewrite6runtime.writeBarrierEnabled
   1106 "runtime.racewrite
   1107 ,runtime.racewriterange
   1108 "runtime.racewrite6runtime.writeBarrierEnabledFgo.itab.*image.Paletted.image.Image(type.*image.Paletted type.image.ImageFgo.itab.*image.Paletted.image.Image
   1109  runtime.typ2Itab
   1110 .runtime.writebarrierptr
   1111 .runtime.writebarrierptrtype.[]uint8
   1112 "runtime.makeslice type.image.NRGBA
   1113 "runtime.newobject
   1114 "runtime.racewrite6runtime.writeBarrierEnabled
   1115 "runtime.racewrite
   1116 ,runtime.racewriterange@go.itab.*image.NRGBA.image.Image"type.*image.NRGBA type.image.Image@go.itab.*image.NRGBA.image.Image
   1117  runtime.typ2Itab
   1118 .runtime.writebarrierptrtype.[]uint8
   1119 "runtime.makeslice"type.image.Gray16
   1120 "runtime.newobject
   1121 "runtime.racewrite6runtime.writeBarrierEnabled
   1122 "runtime.racewrite
   1123 ,runtime.racewriterangeBgo.itab.*image.Gray16.image.Image$type.*image.Gray16 type.image.ImageBgo.itab.*image.Gray16.image.Image
   1124  runtime.typ2Itab
   1125 .runtime.writebarrierptrtype.[]uint8
   1126 "runtime.makeslice$type.image.NRGBA64
   1127 "runtime.newobject
   1128 "runtime.racewrite6runtime.writeBarrierEnabled
   1129 "runtime.racewrite
   1130 ,runtime.racewriterangeDgo.itab.*image.NRGBA64.image.Image&type.*image.NRGBA64 type.image.ImageDgo.itab.*image.NRGBA64.image.Image
   1131  runtime.typ2Itab
   1132 .runtime.writebarrierptrtype.[]uint8
   1133 "runtime.makeslice"type.image.RGBA64
   1134 "runtime.newobject
   1135 "runtime.racewrite6runtime.writeBarrierEnabled
   1136 "runtime.racewrite
   1137 ,runtime.racewriterangeBgo.itab.*image.RGBA64.image.Image$type.*image.RGBA64 type.image.ImageBgo.itab.*image.RGBA64.image.Image
   1138  runtime.typ2Itab
   1139 .runtime.writebarrierptrtype.[]uint8
   1140 "runtime.makeslice$type.image.NRGBA64
   1141 "runtime.newobject
   1142 "runtime.racewrite6runtime.writeBarrierEnabled
   1143 "runtime.racewrite
   1144 ,runtime.racewriterangeDgo.itab.*image.NRGBA64.image.Image&type.*image.NRGBA64 type.image.ImageDgo.itab.*image.NRGBA64.image.Image
   1145  runtime.typ2Itab
   1146 .runtime.writebarrierptr
   1147 (runtime.racefuncexit
   1148 $runtime.panicindex
   1149 $runtime.panicindex
   1150 0runtime.morestack_noctxt("".autotmp_0347type.[]uint8"".autotmp_03460type.image/color.NRGBA64"".autotmp_0345.type.image/color.RGBA64"".autotmp_03440type.image/color.NRGBA64"".autotmp_0343&.type.image/color.Gray16"".autotmp_0342type.int"".autotmp_0341type.int"".autotmp_0340type.int"".autotmp_0339type.int"".autotmp_0338&,type.image/color.NRGBA"".autotmp_0337*type.image/color.Gray"".autotmp_0336*type.image/color.Gray"".autotmp_0335'*type.image/color.Gray"".autotmp_0334type.int"".autotmp_0333type.int"".autotmp_0332type.uint8"".autotmp_0331type.uint8"".autotmp_0330type.*uint8"".autotmp_0329type.int"".autotmp_0328type.int"".autotmp_0327'type.uint8"".autotmp_0326type.int"".autotmp_0325type.int"".autotmp_0324type.*uint8"".autotmp_0323&type.*image.NRGBA64"".autotmp_0322&type.*image.NRGBA64"".autotmp_0321type.int"".autotmp_0320type.int"".autotmp_0319type.int"".autotmp_0318type.int"".autotmp_0317type.int"".autotmp_0316(type.image.Rectangle"".autotmp_0315(type.image.Rectangle"".autotmp_0314type.int"".autotmp_0313type.int"".autotmp_0312type.*uint8"".autotmp_0311$type.*image.RGBA64"".autotmp_0310$type.*image.RGBA64"".autotmp_0309type.int"".autotmp_0308type.int"".autotmp_0307type.int"".autotmp_0306type.int"".autotmp_0305type.int"".autotmp_0304(type.image.Rectangle"".autotmp_0303(type.image.Rectangle"".autotmp_0302type.int"".autotmp_0301type.int"".autotmp_0300type.*uint8"".autotmp_0299&type.*image.NRGBA64"".autotmp_0298&type.*image.NRGBA64"".autotmp_0297type.int"".autotmp_0296type.int"".autotmp_0295type.int"".autotmp_0294type.int"".autotmp_0293type.int"".autotmp_0292(type.image.Rectangle"".autotmp_0291(type.image.Rectangle"".autotmp_0290type.int"".autotmp_0289type.int"".autotmp_0288type.*uint8"".autotmp_0287$type.*image.Gray16"".autotmp_0286$type.*image.Gray16"".autotmp_0285type.int"".autotmp_0284type.int"".autotmp_0283type.int"".autotmp_0282type.int"".autotmp_0281type.int"".autotmp_0280(type.image.Rectangle"".autotmp_0279(type.image.Rectangle"".autotmp_0278type.int"".autotmp_0277type.int"".autotmp_0276type.*uint8"".autotmp_0275"type.*image.NRGBA"".autotmp_0274"type.*image.NRGBA"".autotmp_0273type.int"".autotmp_0272type.int"".autotmp_0271type.int"".autotmp_0270type.int"".autotmp_0269type.int"".autotmp_0268(type.image.Rectangle"".autotmp_0267(type.image.Rectangle"".autotmp_0266type.int"".autotmp_0265type.int"".autotmp_0264type.*uint8"".autotmp_0263(type.*image.Paletted"".autotmp_0262(type.*image.Paletted"".autotmp_0261type.int"".autotmp_0260type.int"".autotmp_0259type.int"".autotmp_0258type.int"".autotmp_0257type.int"".autotmp_0256_0type.image/color.Palette"".autotmp_0255(type.image.Rectangle"".autotmp_0254(type.image.Rectangle"".autotmp_0253type.int"".autotmp_0252type.int"".autotmp_0251type.*uint8"".autotmp_0250 type.*image.RGBA"".autotmp_0249 type.*image.RGBA"".autotmp_0248type.int"".autotmp_0247type.int"".autotmp_0246type.int"".autotmp_0245type.int"".autotmp_0244type.int"".autotmp_0243(type.image.Rectangle"".autotmp_0242(type.image.Rectangle"".autotmp_0241type.int"".autotmp_0240type.int"".autotmp_0239type.*uint8"".autotmp_0238"type.*image.NRGBA"".autotmp_0237"type.*image.NRGBA"".autotmp_0236type.int"".autotmp_0235type.int"".autotmp_0234type.int"".autotmp_0233type.int"".autotmp_0232type.int"".autotmp_0231(type.image.Rectangle"".autotmp_0230(type.image.Rectangle"".autotmp_0229type.int"".autotmp_0228type.int"".autotmp_0227type.*uint8"".autotmp_0226 type.*image.Gray"".autotmp_0225 type.*image.Gray"".autotmp_0224type.int"".autotmp_0223type.int"".autotmp_0222type.int"".autotmp_0221type.int"".autotmp_0220type.int"".autotmp_0219(type.image.Rectangle"".autotmp_0218
   1151 (type.image.Rectangle"".autotmp_0217type.int"".autotmp_0216type.int"".autotmp_0215type.int"".autotmp_0214type.int"".autotmp_0213type.int"".autotmp_0212type.int"".autotmp_0211type.int"".autotmp_0210type.int"".autotmp_0209type.int"".autotmp_0208type.int"".autotmp_0207type.[]uint8"".autotmp_0206type.int"".autotmp_0205type.[]uint8"".autotmp_0204type.int"".autotmp_0203type.int"".autotmp_0202type.int"".autotmp_0201type.int"".autotmp_0200type.int"".autotmp_0199type.int"".autotmp_0198type.uint8"".autotmp_0197type.int"".autotmp_0196type.int"".autotmp_0195type.int"".autotmp_0194type.int"".autotmp_0193type.uint8"".autotmp_0192type.int"".autotmp_0191type.int"".autotmp_0190type.int"".autotmp_0189type.int"".autotmp_0188type.uint8"".autotmp_0187type.int"".autotmp_0186type.int"".autotmp_0185type.int"".autotmp_0184type.int"".autotmp_0183type.int"".autotmp_0182type.int"".autotmp_0181type.int"".autotmp_0180type.int"".autotmp_0179type.[]uint8"".autotmp_0178type.int"".autotmp_0177type.int"".autotmp_0176type.uint8"".autotmp_0175type.int"".autotmp_0174type.int"".autotmp_0173type.uint8"".autotmp_0172type.int"".autotmp_0171type.int"".autotmp_0170type.uint8"".autotmp_0169&type."".FormatError"".autotmp_0168type.int"".autotmp_0167type.uint8"".autotmp_0166type.int"".autotmp_0165type.int"".autotmp_0164type.uint8"".autotmp_0163type.uint8"".autotmp_0162type.[]uint8"".autotmp_0161type.int"".autotmp_0160type.uint8"".autotmp_0159type.int"".autotmp_0158&type."".FormatError"".autotmp_0157type.error"".autotmp_0156type.[]uint8"".autotmp_0155type.[]uint8"".autotmp_0154&type.*image.NRGBA64"".autotmp_0153type.[]uint8"".autotmp_0152$type.*image.RGBA64"".autotmp_0151type.[]uint8"".autotmp_0150&type.*image.NRGBA64"".autotmp_0149type.[]uint8"".autotmp_0148$type.*image.Gray16"".autotmp_0147type.[]uint8"".autotmp_0146"type.*image.NRGBA"".autotmp_0145type.[]uint8"".autotmp_0144(type.*image.Paletted"".autotmp_0143type.[]uint8"".autotmp_0142 type.*image.RGBA"".autotmp_0141type.[]uint8"".autotmp_0140"type.*image.NRGBA"".autotmp_0139type.[]uint8"".autotmp_0138 type.*image.Gray"".autotmp_0137/type.[]uint8"".~r0%type.intimage.r2(type.image.Rectangle"".~r0%type.intimage.r2(type.image.Rectangle"".~r0	&type.*image.NRGBA64image.pix5type.[]uint8image.h4type.intimage.w3type.intimage.r2(type.image.Rectangle"".~r0(type.image.Rectangleimage.y15$type.intimage.x14"type.intimage.y03$type.intimage.x02"type.int"".~r0&type.intimage.r2(type.image.Rectangle"".~r0%type.intimage.r2(type.image.Rectangle"".~r0	$type.*image.RGBA64image.pix5type.[]uint8image.h4type.intimage.w3 type.intimage.r2(type.image.Rectangle"".~r0(type.image.Rectangleimage.y15%type.intimage.x14#type.intimage.y03$type.intimage.x02"type.int"".~r0&type.intimage.r2(type.image.Rectangle"".~r0&type.intimage.r2(type.image.Rectangle"".~r0	&type.*image.NRGBA64image.pix5type.[]uint8image.h4type.intimage.w3 type.intimage.r2
(type.image.Rectangle"".~r0(type.image.Rectangleimage.y15%type.intimage.x14#type.intimage.y03$type.intimage.x02"type.int"".~r0&type.intimage.r2(type.image.Rectangle"".~r0%type.intimage.r2(type.image.Rectangle"".~r0	$type.*image.Gray16image.pix5type.[]uint8image.h4type.intimage.w3 type.intimage.r2(type.image.Rectangle"".~r0(type.image.Rectangleimage.y15%type.intimage.x14#type.intimage.y03$type.intimage.x02"type.int"".~r0&type.intimage.r2(type.image.Rectangle"".~r0%type.intimage.r2(type.image.Rectangle"".~r0	"type.*image.NRGBAimage.pix5type.[]uint8image.h4type.intimage.w3type.intimage.r2(type.image.Rectangle"".~r0(type.image.Rectangleimage.y15$type.intimage.r2(type.image.Rectangleimage.r2(type.image.Rectangleimage.pix6type.[]uint8image.w4 type.intimage.p30type.image/color.Paletteimage.r2(type.image.Rectangle"".~r0(type.image.Rectangleimage.r2(type.image.Rectangleimage.r2(type.image.Rectangleimage.buf5type.[]uint8image.w3 type.intimage.r2(type.image.Rectangle"".~r0(type.image.Rectangleimage.r2(type.image.Rectangleimage.r2(type.image.Rectangleimage.pix5type.[]uint8image.w3 type.intimage.r2(type.image.Rectangle"".~r0(type.image.Rectangleimage.r2
(type.image.Rectangleimage.r2(type.image.Rectangleimage.pix5type.[]uint8image.w3type.intimage.r2(type.image.Rectangle"".~r0(type.image.Rectangle"".acol&type.uint16"".bcol&type.uint16"".gcol&type.uint16"".rcol&type.uint16"".x type.int"".bcol&type.uint16"".gcol&type.uint16"".rcol&type.uint16"".x!type.int"".acol&type.uint16"".ycol'type.uint16"".x!type.int"".ycol&type.uint16"".x!type.int"".x!type.int"".idx'type.uint8
   1183 "".x2#type.int"".b'type.uint8"".x!type.int"".idx'type.uint8
   1185 "".x2#type.int"".b'type.uint8"".x"type.int"".idx'type.uint8
   1187 "".x2#type.int"".b'type.uint8"".x!type.int"".x"type.int"".jtype.int"".itype.int"".pixtype.[]uint8"".ycol'type.uint8"".x type.int
   1189 "".x2#type.int"".b'type.uint8"".x!type.int
   1190 "".x2$type.int"".b'type.uint8"".x"type.int
   1191 "".x2#type.int"".b'type.uint8"".x!type.int"".itype.int"".itype.int"".p'type.uint8"".itype.int"".itype.int"".pdattype.[]uint8"".cdattype.[]uint8"".errtype.error"".y$type.int
   1193 "".prtype.[]uint8
   1194 "".crtype.[]uint8"".rowSizetype.int "".bytesPerPixeltype.int"".p
   1195 *type."".interlaceScan"".heighttype.int"".widthtype.int"".img type.image.Image"".nrgba64&type.*image.NRGBA64"".rgba64	$type.*image.RGBA64"".gray16$type.*image.Gray16"".nrgba"type.*image.NRGBA"".paletted(type.*image.Paletted"".rgba	 type.*image.RGBA"".gray type.*image.Gray"".pixOffsettype.int"".bitsPerPixeltype.int"".~r4ptype.error"".~r3P type.image.Image"".allocateOnly@type.bool"".pass0type.int"".rtype.io.Reader"".d type.*"".decoder`"(
   1199 ((((((((H((L((=
   1200 
   1201 "$\8}33$>
   1211 ":D
   1212 2&5Qi%|x2IIM66
   1213 %B\%-x,?
   1215 %B\%
   1217 %B\%%
   1218 2
   1219 E
   1220 %k
   1221 b%b,E
   1223 %B,U7%
   1226 [p
   1227 %B,U7%
   1230 
   1231 %B,U7%
   1234 
   1235 /%,EBC
   1237 E<=
   1238 
   1239 %H
   1240 %
   1241 %
   1242 
   1243 %	)*&!%,)88
   1244 _7o2JK
   1246 
   1247 
   1248 6<;/
   1250 643/
   1252 "6,+/121
   1253 
   1254 6$#/%
   1256 *
   1257 6/
   1259 6/
   1261 6/
   1265 6/K$		.NQV\W^Q_
~dc|dc.d	OYgdc2d
)Ydcdcdc0d	OY@d	OYqdc}dcdcdcdc^}exbad
   1269 c?7N7N7N7"N 7N7N7N7N.A#'Tgclocalscf3f84fe7c09f0e08f0e5f09fdd0beabTgclocals42289e618390ca3d43fd96242c5d9235^prebuilts/go/darwin-x86/src/image/png/reader.go6"".(*decoder).mergePassIntoZZeH%H$H;A{H1H$H$H$HH$HH$0LL9HHH$HD$ HH$0LL9HHH+H$HkH$HkH$HkH$1H$H$H$1H$H$H$HD$X1H$H$H$H$HD$pH$H$H$H$H$HD$H$H$D$=ORx
   1272 =CD$D=+H$8HH$HT$HL$H$8H\$H$H$D$D\$ H$HH$H$ H\$H$(H\$H$H\$H$H$H$HiH+H$HkH$HkH$H$8H$H$H$8HkHl$xH$8H$H$ HD$ H$8HHk H$Hk(H$Hk0H$Hk8H$H$8H$H$8HH+H$HkH$HkH$H\$xH\$XH$H$H$H$H$H$H$H$HD$pH$(H$H$ H[(HL$pH|$Ht$Hl$HD$ 1H$H$H$H$H$H9H$Ht$HH$HHH$H)Hl$XHH$L$L)HHH\$hH$H$H9H$HD$PHl$hHHHH$L$H9L$H)I)ItMILLHHHT$`L$L9H9L$H)I)ItMH$H4$L$LT$H$H|$L$LL$H$Hl$ L$LD$(HD$0Ht$HHL$pHT$`HHD$PHH$H9HH$H9jHl=H$@HH$HT$HL$H$@H\$\$ H$HHH$H$ H\$H$(H\$H$HH\$H$HH$H$HHPH+H$HkH$HkH$H$@H$H$H$@HkHl$xH$@H$H$ HD$ H$@HHk H$Hk(H$Hk0H$Hk8H$H$@H$H$@Ht{H+H$HkH$HkH$H\$xH\$XH$H$H$H$H$H$H$H$HD$p+D$D=*H$HH$HT$HL$H$H\$H$H$D$D\$ H$hHH$H$ H\$H$(H\$H$hH\$H$hH$H$hHPH+H$HkH$HkH$H$H$H$H$HkHl$xH$H$H$ HD$ H$HHk H$Hk(H$Hk0H$Hk8H$H$H$H$Ht{H+H$HkH$HkH$H\$xH\$XH$H$H$H$H$H$H$H$HD$p+=ORH$0HH$HT$HL$H$0H\$\$ ^H$`HH$H$ H\$H$(H\$H$`H\$H$`H$H$`HPH+H$HkH$HkH$H$0H$H$H$0HkHl$xH$0H$H$ HD$ H$0HHk H$Hk(H$Hk0H$Hk8H$H$0H$H$0Ht{H+H$HkH$HkH$H\$xH\$XH$H$H$H$H$H$H$H$HD$p+=*D$D=H$ HH$HT$HL$H$ H\$H$H$D$D\$ H$pHH$H$ H\$H$(H\$H$pH\$H$pH$H$pHPH+H$HkH$HkH$H$ H$H$H$ HkHl$xH$ H$H$ HD$ H$ HHk H$Hk(H$Hk0H$Hk8H$H$ H$H$ Ht{H+H$HkH$HkH$H\$xH\$XH$H$H$H$H$H$H$H$HD$p+=jH$(HH$HT$HL$H$(H\$\$ )H$PHH$H$ H\$H$(H\$H$PH\$H$PH$H$PHPH+H$HkH$HkH$H$(H$H$H$(HkHl$xH$(H$H$ HD$ H$(HHk H$Hk(H$Hk0H$Hk8H$H$(H$H$(Ht{H+H$HkH$HkH$H\$xH\$XH$H$H$H$H$H$H$H$HD$p~+D$D=6LH$HH$HT$HL$H$H\$H$H$D$D\$ H$HH$H$ H\$H$(H\$H$H\$H$H$H$HPH+H$HkH$HkH$H$H$H$H$HkHl$xH$H$H$ HD$ H$HHk H$Hk(H$Hk0H$Hk8H$H$H$H$Ht{H+H$HkH$HkH$H\$xH\$XH$H$H$H$H$H$H$H$HD$p]+=~H$HH$HT$HL$H$H\$H$H$D$D\$ H$xHH$H$ H\$H$(H\$H$xH\$H$xH$H$xHPH+H$HkH$HkH$H$H$H$H$HkHl$xH$H$H$ HD$ H$HHk H$Hk(H$Hk0H$Hk8H$H$H$H$Ht{H+H$HkH$HkH$H\$xH\$XH$H$H$H$H$H$H$H$HD$p@+=NY#H$HH$HT$HL$H$H\$\$ H$XHH$H$ H\$H$(H\$H$XH\$H$XH$H$XHPH+H$HkH$HkH$H$H$H$H$HkHl$xH$H$H$ HD$ H$HHk H$Hk(H$Hk0H$Hk8H$H$H$H$Ht{H+H$HkH$HkH$H\$xH\$XH$H$H$H$H$H$H$H$HD$p7+`
   1280 Z
   1281  runtime.duffzero|
   1282 *runtime.racefuncenter"".interlacing
   1283  runtime.raceread"".interlacing"".interlacing
   1284 *runtime.racereadrange"".interlacing"".interlacing
   1285 $runtime.ifacethash"type.*image.Alpha
   1286 $runtime.assertI2T2"type.*image.Alpha	
   1287 "runtime.assertI2T	
   1288  runtime.raceread
   1289 
   1290  runtime.raceread
   1292 *runtime.racereadrange
   1294  runtime.raceread
   1295 "runtime.slicecopy
   1296 (runtime.racefuncexit
   1297 $runtime.panicslice
   1298 $runtime.panicslice$type.*image.RGBA64
   1299 $runtime.assertI2T2$type.*image.RGBA64
   1300 "runtime.assertI2T
   1301  runtime.raceread
   1302  runtime.raceread
   1303 *runtime.racereadrange
   1304  runtime.raceread "type.*image.NRGBA 
   1305 $runtime.assertI2T2!"type.*image.NRGBA"
   1306 "runtime.assertI2T"
   1307  runtime.raceread#
   1308  runtime.raceread$
   1309 *runtime.racereadrange%
   1310  runtime.raceread(&type.*image.NRGBA64(
   1311 $runtime.assertI2T2)&type.*image.NRGBA64*
   1312 "runtime.assertI2T*
   1313  runtime.raceread+
   1314  runtime.raceread,
   1315 *runtime.racereadrange-
   1316  runtime.raceread0$type.*image.Gray161
   1317 $runtime.assertI2T22$type.*image.Gray162
   1318 "runtime.assertI2T3
   1319  runtime.raceread4
   1320  runtime.raceread5
   1321 *runtime.racereadrange6
   1322  runtime.raceread9 type.*image.RGBA9
   1323 $runtime.assertI2T2: type.*image.RGBA;
   1324 "runtime.assertI2T;
   1325  runtime.raceread<
   1326  runtime.raceread=
   1327 *runtime.racereadrange>
   1328  runtime.racereadA&type.*image.Alpha16A
   1329 $runtime.assertI2T2B&type.*image.Alpha16C
   1330 "runtime.assertI2TC
   1331  runtime.racereadE
   1332  runtime.racereadE
   1333 *runtime.racereadrangeG
   1334  runtime.racereadI type.*image.GrayJ
   1335 $runtime.assertI2T2K type.*image.GrayL
   1336 "runtime.assertI2TL
   1337  runtime.racereadM
   1338  runtime.racereadN
   1339 *runtime.racereadrangeO
   1340  runtime.racereadR(type.*image.PalettedR
   1341 $runtime.assertI2T2S(type.*image.PalettedT
   1342 "runtime.assertI2TT
   1343  runtime.racereadU
   1344  runtime.racereadV
   1345 *runtime.racereadrangeW
   1346  runtime.racereadZ
   1347 $runtime.panicindexZ
   1348 $runtime.panicindexZ
   1349 0runtime.morestack_noctxt`x"".autotmp_0393(type.image.Rectangle"".autotmp_0392type.int"".autotmp_0391(type.image.Rectangle"".autotmp_0390type.int"".autotmp_0389(type.image.Rectangle"".autotmp_0388type.int"".autotmp_0387(type.image.Rectangle"".autotmp_0386type.int"".autotmp_0385(type.image.Rectangle"".autotmp_0384type.int"".autotmp_0383(type.image.Rectangle"".autotmp_0382type.int"".autotmp_0381(type.image.Rectangle"".autotmp_0380type.int"".autotmp_0379(type.image.Rectangle"".autotmp_0378type.int"".autotmp_0377(type.image.Rectangle"".autotmp_0376type.int"".autotmp_0375type.uint32"".autotmp_0373 type.image.Image"".autotmp_0372type.int"".autotmp_0371type.int"".autotmp_0370type.int"".autotmp_0369_type.[]uint8"".autotmp_0368type.int"".autotmp_0367/type.[]uint8"".autotmp_0366(type.image.Rectangle"".autotmp_0365$type.*image.RGBA64"".autotmp_0364 type.*image.RGBA"".autotmp_0363(type.*image.Paletted"".autotmp_0362&type.*image.NRGBA64"".autotmp_0361"type.*image.NRGBA"".autotmp_0360$type.*image.Gray16"".autotmp_0359 type.*image.Gray"".autotmp_0358&type.*image.Alpha16"".autotmp_0357"type.*image.Alpha"".xtype.int"".dBasetype.int"".ytype.int"".bounds(type.image.Rectangle"".stype.int"".target$type.*image.RGBA64"".target type.*image.RGBA"".target(type.*image.Paletted"".target&type.*image.NRGBA64"".target"type.*image.NRGBA"".target$type.*image.Gray16"".target type.*image.Gray"".target&type.*image.Alpha16"".target"type.*image.Alpha "".bytesPerPixeltype.int"".rect(type.image.Rectangle"".stridetype.int"".dstPixtype.[]uint8"".srcPixtype.[]uint8"".p*type."".interlaceScan"".passPtype.int"".src0 type.image.Image"".dst type.image.Image"".d type.*"".decoder"!-	1jg	"		DMO
   1353 OLD	Cd$	$%#L,	+o	,-L<	
;d	<=`	45L4	C
   1366 =\iQ\e
   1367 \Q\e\	Q
   1368 \e\
e\Q\Tgclocalscc8a6f9ecbd841559bcce4e8b51e59feTgclocalsa0692af80ef20a05fb47478487f6ae9a^prebuilts/go/darwin-x86/src/image/png/reader.go."".(*decoder).parseIDATeH%H;aHHH\$HH$11H\$`H\$hH\$PH$H$pHD$Pl$XhpH$H\$H\$8H\$H\$@H\$H\$(H\$ H\$0H\$PH$H$H\$PHl$8HkHl$@=u^HkHD$(H\$0H\$hHD$`Ht
   1372 HHH\$PH$HL$HD$HL$(HL$`HD$0HD$hHHLCL$Hl$
   1373 B
   1374 *runtime.racefuncenter
   1375 "runtime.racewrite
   1376 ("".(*decoder).decode
   1377 "runtime.racewrite6runtime.writeBarrierEnabled
   1378 (runtime.racefuncexit
   1379 8"".(*decoder).verifyChecksum
   1380 (runtime.racefuncexit
   1381 .runtime.writebarrierptr
   1382 0runtime.morestack_noctxt@"".autotmp_0396type.error"".autotmp_0395?type.error"".autotmp_0394 type.image.Image"".err type.error"".lengthtype.uint32"".d type.*"".decoder&5 0
   1385 3s, q?#Tgclocals7c2d46b309581fc529325e101c3c1ccdTgclocalsed21bf9857aa4def5fb1b49748ee2397^prebuilts/go/darwin-x86/src/image/png/reader.go."".(*decoder).parseIENDeH%H;aHXH\$XH$1H\$pH\$x\$htnHH\$HHD$PHH$HH\$HH\$H\$HH\$HD$ H\$(H\$pH\$0H\$xHXH\$`H$HL$HD$HL$8HL$pHD$@HD$xHX
   1391 B
   1392 *runtime.racefuncenterz6go.string."bad IEND length"&type."".FormatErrortype.error8go.itab."".FormatError.error
   1393 runtime.convT2I
   1394 (runtime.racefuncexit
   1395 8"".(*decoder).verifyChecksum
   1396 (runtime.racefuncexit
   1397 0runtime.morestack_noctxt@
   1398 "".autotmp_0398?type.error"".autotmp_0397&type."".FormatError"".~r1 type.error"".lengthtype.uint32"".d type.*"".decoder&5(
   1400 1	d, e#Tgclocalsa98a1bcb6ff825b1487e8f04a1353cd0Tgclocalsc3b0a4810ee2be494556083ee4bf9898^prebuilts/go/darwin-x86/src/image/png/reader.go0"".(*decoder).parseChunk76eH%HD$H;A
HH$H$H$1H$H$HHK
HtH6
H$H$H$H$H$HH$HNHL$H$H\$H$H\$H$H\$ HT$(HD$0HL$8H$HD$xHtH$H$HHH$HD$H$HXHtHCHHH$H$HH$HH$H$H$HH$H$H$HH$H$H$H$H$H$HH_HHHDHm	HH#Hm	H)	\$DH$H$H$ H$H
   1417 HK Hk(H$H,$H$HY(H$HH
   1418 HtHx
   1419 HH$H$H$H$H$ H$H-
   1420 HK Hk(H$H\$H$H\$H$H\$H$H,$H$HYHH$H	HtH	HHHH\$PH$H$HD$H$HT$H$HL$HL$ H$HD$(H|THH$H$HD$H-Hl$HD$H$H$H\$ HDHH$H$HD$H-Hl$HD$H$H$\$ lH$H$H$hH$HXhH|sH$H$hH$HXhHSH$H$hH$HYhHH$H$`H$Hi`HH
   1424 <tdHH$HH\$HH\$HH\$HD$ H\$(H$H\$0H$HH$H$hH$H@hH$\$D\$HL$HD$H$H$H$H$H1+H$H#H$HD$H-Hl$HD$\$ H$H$H$hH$HXhHtdHH$HH\$HH\$HH\$HD$ H\$(H$H\$0H$HH$H$hH$H@hH$\$D\$HL$HD$H$H$H$H$HHH$HD$HD$pH$HD$D$DD$DHHH9}HH=Hl$pHH$H$H$H$H$H$HH$HNHL$H$H\$H$H\$H$H\$ Hl$(HT$0HL$8H$HT$xHtH$H$HHHl$HH	Hl$pHH$H$H$H$H$H$ H$HHK Hk(H$H\$H$H\$H$H\$H$H,$H$HYHD$DH\$H)VH$H$HL$HD$H$H$H$H$HREE#H;H$H$HD$H-Hl$HD$H$H$\$ H$H$H$hH$HXhHtdHH$HH\$HH\$HH\$HD$ H\$(H$H\$0H$HH$H$hH$H@hH$\$D\$HL$HD$H$H$H$H$HH;H$H$HD$H-Hl$HD$H$H$\$ H$H$H$hH$HXhHtdHH$HH\$HH\$HH\$HD$ H\$(H$H\$0H$HH$H$hH$H@hH$\$D\$HL$HD$H$H$H$H$HH$HH$HD$H-Hl$HD$\$ H$H$H$hH$HXhHtdHH$HH\$HH\$HH\$HD$ H\$(H$H\$0H$HH$H$hH$H@hH$\$D\$HL$HD$H$H$H$H$HC.l.M
   1441 X
   1442 *runtime.racefuncenter
   1443  runtime.raceread
   1444 io.ReadFull
   1445 (runtime.racefuncexit2encoding/binary.BigEndian
   1446 *runtime.racereadrange
   1447  runtime.raceread
   1448  runtime.raceread
   1449  runtime.raceread
   1450  runtime.raceread	
   1451  runtime.raceread
   1452 
   1454  runtime.raceread
   1456 2runtime.slicebytetostring go.string."IEND"
   1457 "runtime.cmpstring go.string."IDAT"
   1458  runtime.eqstring
   1459  runtime.raceread
   1460  runtime.raceread
   1461  runtime.raceread
   1462  runtime.raceread&type."".FormatErrortype.error8go.itab."".FormatError.error$"".chunkOrderError
   1463 runtime.convT2I
   1464 (runtime.racefuncexit
   1465 "runtime.racewrite
   1466 ."".(*decoder).parseIDAT
   1467 (runtime.racefuncexit go.string."IEND"
   1468  runtime.eqstring
   1469  runtime.raceread&type."".FormatErrortype.error8go.itab."".FormatError.error$"".chunkOrderError
   1470 runtime.convT2I
   1471 (runtime.racefuncexit
   1472 "runtime.racewrite
   1473 ."".(*decoder).parseIEND
   1474 (runtime.racefuncexit type.[4096]uint8
   1475 "runtime.newobject
   1476 ,runtime.racewriterange
   1477  runtime.raceread
   1478 io.ReadFull 
   1479 (runtime.racefuncexit"
   1480  runtime.raceread#$
   1481 8"".(*decoder).verifyChecksum$
   1482 (runtime.racefuncexit%
   1483 $runtime.panicslice%
   1484 $runtime.panicslice& go.string."IHDR"&
   1485  runtime.eqstring'
   1486  runtime.raceread'&type."".FormatError'type.error(8go.itab."".FormatError.error($"".chunkOrderError(
   1487 runtime.convT2I(
   1488 (runtime.racefuncexit)
   1489 "runtime.racewrite)
   1490 ."".(*decoder).parseIHDR*
   1491 (runtime.racefuncexit+ go.string."PLTE"+
   1492  runtime.eqstring,
   1493  runtime.raceread,&type."".FormatError,type.error-8go.itab."".FormatError.error-$"".chunkOrderError-
   1494 runtime.convT2I.
   1495 (runtime.racefuncexit.
   1496 "runtime.racewrite.
   1497 ."".(*decoder).parsePLTE/
   1498 (runtime.racefuncexit0 go.string."tRNS"0
   1499  runtime.eqstring1
   1500  runtime.raceread1&type."".FormatError1type.error18go.itab."".FormatError.error2$"".chunkOrderError2
   1501 runtime.convT2I2
   1502 (runtime.racefuncexit3
   1503 "runtime.racewrite3
   1504 ."".(*decoder).parsetRNS4
   1505 (runtime.racefuncexit5
   1506 $runtime.panicindex5
   1507 $runtime.panicindex5
   1508 $runtime.panicindex5
   1509 $runtime.panicindex5
   1510 $runtime.panicindex5
   1511 $runtime.panicindex6
   1512 $runtime.panicindex6
   1513 $runtime.panicindex6
   1514 0runtime.morestack_noctxt04"".autotmp_0421type.int"".autotmp_0419type.string"".autotmp_0418type.[32]uint8"".autotmp_0416type.error"".autotmp_0415type.uint32"".autotmp_0414type.[]uint8"".autotmp_0413type.error"".autotmp_0411type.[]uint8"".autotmp_0410type.int"".autotmp_0409type.error"".autotmp_0408type.error"".autotmp_0407type.error"".autotmp_0406type.error"".autotmp_0405type.error"".autotmp_0404type.[]uint8"".autotmp_0403type.[]uint8"".autotmp_0402type.[]uint8"".autotmp_0401type.error"".autotmp_0399/type.[]uint8"".&ignored"type.*[4096]uint8(encoding/binary.b2_type.[]uint8"".lengthtype.uint32"".errtype.error"".ntype.int"".~r0type.error"".d type.*"".decodereeeee
   1517 JR&SW?@;EF
   1519 C(WKL;QR0	_`
	;ijCS(W;!"S(W'(;-.C(W34;9:#F+^D7!]^PDP
   1523 mD7^^$	/F4nP=4nP=P7kTgclocals67db93d1c251806056275ece682149eeTgclocals5906f48d515a08c9786be45e18dcbf99^prebuilts/go/darwin-x86/src/image/png/reader.go8"".(*decoder).verifyChecksumeH%HD$H;AmHH$H$H$1H$H$HH'HtHH$H$H$H$H$HH$HNHL$H$H\$H$H\$H$H\$ HD$0HL$8HL$PHD$HHtH$H$HHH$HD$H$H<HtH'HHH$H\$xHH$HH$H\$xH$HH$H\$xH$HH$H\$xH$|H$HL$xH$HHRHHH7Hm	HHHm	H)	\$DH$H$H$ H$HHK Hk(Hl$`H,$HL$XHY@D$\$D9twHH\$hHD$pHH$HH\$HH\$H\$hH\$HD$ H\$(H$H\$0H$H1H$H$H;q:
   1534 X
   1535 *runtime.racefuncenter
   1536  runtime.raceread
   1537 io.ReadFull
   1538 (runtime.racefuncexit2encoding/binary.BigEndian
   1539 *runtime.racereadrange
   1540  runtime.raceread
   1541  runtime.raceread
   1542  runtime.raceread
   1543  runtime.raceread	
   1544  runtime.raceread
   1545 
   1546 8go.string."invalid checksum"
   1547 &type."".FormatError
   1548 type.error8go.itab."".FormatError.error
   1551 runtime.convT2I
   1553 (runtime.racefuncexit
   1555 (runtime.racefuncexit
   1557 $runtime.panicindex
   1559 $runtime.panicindex
   1561 $runtime.panicindex
   1563 $runtime.panicindex
   1565 $runtime.panicindex
   1567 $runtime.panicindex
   1569 $runtime.panicindex
   1571 $runtime.panicindex
   1572 0runtime.morestack_noctxt0"".autotmp_0429&type."".FormatError"".autotmp_0428type.uint32"".autotmp_0427type.[]uint8"".autotmp_0425/type.[]uint8"".~r0type.uint32(encoding/binary.b2_type.[]uint8"".errtype.error"".~r0type.error"".d type.*"".decoder4fV
   1578 	Oklj#kl6+^D/!Z_Tgclocals0319c9c8ccd3d585543812ffc66cf0acTgclocals9fbee9d81e34c2105642a77c53b54503^prebuilts/go/darwin-x86/src/image/png/reader.go2"".(*decoder).checkHeader		eH%HD$H;A1HH$H$H$1H$H$HHHtHHD$xH$H\$pH$H$HH$HNHL$H\$pH\$H\$xH\$H$H\$ HD$0HL$8HL$HHD$@HtH$H$HH$H%HtHHHHD$pH$HT$xHT$H$HL$HL$HL$PHD$ HD$XHuLH$HD$H-Hl$HD$\$ t1H$H$HHH\$`HD$hHH$HH\$HH\$H\$`H\$HD$ H\$(H$H\$0H$H# 
   1583 X
   1584 *runtime.racefuncenter
   1585  runtime.raceread
   1586 io.ReadFull
   1587 (runtime.racefuncexit
   1588 8runtime.slicebytetostringtmp:go.string."\x89PNG\r\n\x1a\n"
   1589  runtime.eqstring
   1590 (runtime.racefuncexit4go.string."not a PNG file"&type."".FormatErrortype.error8go.itab."".FormatError.error
   1591 runtime.convT2I
   1592 (runtime.racefuncexit	
   1593 0runtime.morestack_noctxt0"".autotmp_0436otype.string"".autotmp_0435O&type."".FormatError"".autotmp_0434type.[]uint8"".autotmp_0432/type.[]uint8"".errtype.error"".~r0type.error"".d type.*"".decoder4v3H
   1598 	j&+X>/[^X@Tgclocals7bdf21e71041d619ec9f465c3dfecaf0Tgclocals4e16ba83df66366c6a42f8af305af9d5^prebuilts/go/darwin-x86/src/image/png/reader.go"".DecodeeH%HD$H;AHH$H$1H$H$1H$H$1H\$HH\$PHH$HH\$(1H\$XH\$`HH$HD$HD$@H$HD$@H$H$H\$@HHl$(=HkH\$@H\$@H1H9~HL$@HD$XHL$`H$HD$HH$HL$PHH$HD$HD$8H$HD$HL$8HH1H$H\$8H$H+H$=HkH\$8H$H$ H\$8Hl$HHk Hl$P=vHk(HD$8HD$0H$HL$HD$HD$pHL$hHHH$H\$hH-H9urHH$Hl$hH,$Hl$pHl$H-Hl$H-Hl$\$ t(HH$HH\$hHH\$p1H$H$H\$hH$H\$pH$HH\$0H$H$hHD$0HXhHH$HL$HD$H$HL$xHtHH$H\$xH-H9uxHH$Hl$xH,$H$Hl$H-Hl$H-Hl$\$ t+HH$HH\$xHH$1H$H$H\$xH$H$H$HH$H$H\$0Ht7HkH$HkH$1H$H$HLC(L$Hl$wLCL$Hl$)HH$HH\$HH\$HD$PLCL$Hl$#t
   1601 X
   1602 *runtime.racefuncenter(hash/crc32.IEEETable
   1603  runtime.raceread(hash/crc32.IEEETable,type.hash/crc32.digest
   1604 "runtime.newobject
   1605 "runtime.racewrite
   1606 "runtime.racewrite6runtime.writeBarrierEnabledLgo.itab.*hash/crc32.digest.hash.Hash32type."".decoder
   1607 "runtime.newobject
   1608 ,runtime.racewriterange
   1609  runtime.duffzero
   1610 "runtime.racewrite6runtime.writeBarrierEnabled
   1611 "runtime.racewrite6runtime.writeBarrierEnabled
   1612 2"".(*decoder).checkHeaderio.EOF
   1614  runtime.racereadio.EOFio.EOF
   1617  runtime.raceread	io.EOF	io.EOF	
   1620 runtime.ifaceeq	&io.ErrUnexpectedEOF
   1621 
   1622  runtime.raceread
   1623 &io.ErrUnexpectedEOF
   1624 &io.ErrUnexpectedEOF
   1626 (runtime.racefuncexit
   1628  runtime.raceread
   1630 0"".(*decoder).parseChunkio.EOF
   1634  runtime.racereadio.EOF
io.EOF
   1640  runtime.raceread
io.EOF
io.EOF
   1645 runtime.ifaceeq&io.ErrUnexpectedEOF
   1646  runtime.raceread&io.ErrUnexpectedEOF&io.ErrUnexpectedEOF
   1647 (runtime.racefuncexit
   1648  runtime.raceread
   1649 (runtime.racefuncexit
   1650 .runtime.writebarrierptr
   1651 .runtime.writebarrierptr.type.*hash/crc32.digest type.hash.Hash32Lgo.itab.*hash/crc32.digest.hash.Hash32
   1652  runtime.typ2Itab
   1653 .runtime.writebarrierptr
   1654 0runtime.morestack_noctxt`"".autotmp_0444 type.*"".decoder"".autotmp_0443 type.hash.Hash32"".autotmp_0441 type.hash.Hash32"".autotmp_0440.type.*hash/crc32.digest"".autotmp_0439type.error"".autotmp_0437.type.*hash/crc32.digest"".~r0 type.hash.Hash32"hash/crc32.tab2,type.*hash/crc32.Table"".~r0 type.hash.Hash32"".err?type.error"".err_type.error"".d type.*"".decoder"".~r2@type.error"".~r1  type.image.Image"".rtype.io.Reader6O*%
&%$\
   1663 
   1664 
   1665 %
   1666 ,k(,&&n+/TP
   1667 
   1668 
   1669 
   1670 
R+h.kIInO:4:Tgclocals81bfe239c4a344d6408ca63cbc06da06Tgclocals6bc9c3cfbaf8616f0c097ea0199ba8d5^prebuilts/go/darwin-x86/src/image/png/reader.go^prebuilts/go/darwin-x86/src/image/png/writer.go"".DecodeConfig##eH%HD$H;AHH$H$1H$H$H$H$1H$H$ 1H\$`H\$hHH$HH\$@1H\$pH\$xHH$HD$HD$XH$HD$XH$H$H\$XHHl$@=HkH\$XH\$XH1H9UHL$XHD$pHL$xH$HD$`H$HL$hHH$HD$HD$PH$HD$HL$PHH1H$H\$PH$H+H$=HkH\$PH$H$ H\$PHl$`Hk Hl$h=MHk(HD$PHD$HH$HD$HHT$HL$H$H$HHH$H$H-H9u~HH$H$H,$H$Hl$H-Hl$H-Hl$\$ t.HH$HH$HH$1H$H$H$H$H$H$H$H$H$H$H$H$ HH$HL$HD$H$H$HHH$H$H-H9u~HH$H$H,$H$Hl$H-Hl$H-Hl$\$ t.HH$HH$HH$1H$H$H$H$H$H$H$H$H$H$H$H$ HH\$HH$H$`HL$HHi`HH
   1674 D$?H$H$hHD$HHXhH4|$?)1H$H$H$H$`H$H$H\$HHk`HHHHH$HH
1H$H$H$H$H$H$H\$HH$H$0HD$HHX0H$H$H$8Hl$HHE8H$H$H$H$H$H$H$1H$H$ HHH
   1677 #H7HH	HH$HH
Hu#HH$HH
HHH$HH\$HH\$H\$HH\$H|$t#HD$HHD$ HT$(HL$0[%HNH	HtH	t5H
   1681 xH!HH$HH
H
VHu#HH$HH
H
HH$HH
Hu#HH$HH
yHoHH$HH
LH$H$hHD$HHXhH|$?1oLC(L$Hl$LCL$Hl$RHH$HH\$HH\$HD$yLCL$Hl$F)<
   1692 X
   1693 *runtime.racefuncenter(hash/crc32.IEEETable
   1694  runtime.raceread(hash/crc32.IEEETable,type.hash/crc32.digest
   1695 "runtime.newobject
   1696 "runtime.racewrite
   1697 "runtime.racewrite6runtime.writeBarrierEnabledLgo.itab.*hash/crc32.digest.hash.Hash32type."".decoder
   1698 "runtime.newobject
   1699 ,runtime.racewriterange
   1700  runtime.duffzero
   1701 "runtime.racewrite6runtime.writeBarrierEnabled
   1702 "runtime.racewrite6runtime.writeBarrierEnabled
   1703 2"".(*decoder).checkHeaderio.EOF
   1705  runtime.raceread	io.EOF	io.EOF	
   1708  runtime.raceread	io.EOF
   1710 io.EOF
   1712 
   1713 runtime.ifaceeq
   1714 &io.ErrUnexpectedEOF
   1715 
   1716  runtime.raceread
   1717 &io.ErrUnexpectedEOF
   1718 &io.ErrUnexpectedEOF
   1720 (runtime.racefuncexit
   1722 0"".(*decoder).parseChunk
io.EOF
   1726  runtime.racereadio.EOFio.EOF
   1729  runtime.racereadio.EOFio.EOF
   1732 runtime.ifaceeq&io.ErrUnexpectedEOF
   1733  runtime.raceread&io.ErrUnexpectedEOF&io.ErrUnexpectedEOF
   1734 (runtime.racefuncexit
   1735  runtime.raceread
   1736  runtime.raceread
   1737  runtime.raceread*image/color.GrayModel
   1738  runtime.raceread*image/color.GrayModel*image/color.GrayModel
   1739  runtime.raceread
   1740  runtime.raceread
   1741 (runtime.racefuncexit,image/color.NRGBAModel
   1742  runtime.raceread,image/color.NRGBAModel,image/color.NRGBAModel*image/color.RGBAModel
   1743  runtime.raceread*image/color.RGBAModel*image/color.RGBAModel0type.image/color.Palette,type.image/color.ModelZgo.itab.image/color.Palette.image/color.Model
   1744 runtime.convT2I,image/color.NRGBAModel
   1745  runtime.raceread,image/color.NRGBAModel,image/color.NRGBAModel.image/color.Gray16Model
   1746  runtime.raceread.image/color.Gray16Model.image/color.Gray16Model0image/color.NRGBA64Model
   1747  runtime.raceread0image/color.NRGBA64Model0image/color.NRGBA64Model.image/color.RGBA64Model
   1748  runtime.raceread.image/color.RGBA64Model.image/color.RGBA64Model0image/color.NRGBA64Model
   1749  runtime.raceread0image/color.NRGBA64Model0image/color.NRGBA64Model 
   1750  runtime.raceread!
   1751 .runtime.writebarrierptr!
   1752 .runtime.writebarrierptr!.type.*hash/crc32.digest! type.hash.Hash32"Lgo.itab.*hash/crc32.digest.hash.Hash32"
   1753  runtime.typ2Itab"
   1754 .runtime.writebarrierptr"
   1755 0runtime.morestack_noctxt("".autotmp_0458"type.image.Config"".autotmp_0455"type.image.Config"".autotmp_0454?"type.image.Config"".autotmp_0453 type.*"".decoder"".autotmp_0452 type.hash.Hash32"".autotmp_0450_ type.hash.Hash32"".autotmp_0449.type.*hash/crc32.digest"".autotmp_0448type.error"".autotmp_0446.type.*hash/crc32.digest"".~r0 type.hash.Hash32"hash/crc32.tab2,type.*hash/crc32.Table"".~r0 type.hash.Hash32
   1758 "".cm,type.image/color.Model"".palettedtype.bool"".errtype.error"".errtype.error"".d type.*"".decoder"".~r2`type.error"".~r1 "type.image.Config"".rtype.io.Reader8*%fe4\
   1764 
   1765 
   1766 %
   1767 7t.bTS-t.bFE1,;
   1768 $2$W-&'
   1769 
   1770  
   1771 S	
   1774 
   1775 '
   1776 	
   1778 1,P
   1780 
   1781 
   1782 
   1783 h+x9t4tjGS
   1784 wK4CTgclocals9a21082ccf27067c2aa7b40209b02309Tgclocals0b710af250375562c194dc60121be4a8^prebuilts/go/darwin-x86/src/image/png/reader.go^prebuilts/go/darwin-x86/src/image/png/writer.go"".init.1eH%HD$H;AHH$H$H
HH=HH-H1H$H$H$H$H$H$H|$HH$Ht$PH$Hl$XH$HT$`H$H$H$HH$HHH
HH)H}HHH$HT$hHT$HD$HL$xHL$HHD$pHH\$ HT$(HD$0HL$8HHHL$xH9H\$pHHT$hHHD$@Hk0HH$HD$0H\$hHl$@Hk0HH$H\$Hl$H-H,$HH$H\$pHH\$xHH\$h=uHHH-H,$H\$6
   1789 X
   1790 *runtime.racefuncenterf"".Decodeft$"".DecodeConfigfgo.string."png":go.string."\x89PNG\r\n\x1a\n"image.formats
   1791  runtime.racereadimage.formatsimage.formats image.formats&type.[]image.format
   1792 "runtime.growslice
   1793 ,runtime.racewriterange"type.image.format
   1794 (runtime.typedmemmoveimage.formats
   1795 "runtime.racewriteimage.formats image.formats6runtime.writeBarrierEnabledimage.formats
   1796 (runtime.racefuncexitimage.formats
   1797 .runtime.writebarrierptr
   1798 $runtime.panicslice
   1799 0runtime.morestack_noctxt
   1800 "".autotmp_0464type.int"".autotmp_0463&type.[]image.format"".autotmp_0462_"type.image.formatimage.magic2type.stringimage.name1type.string(
   1802 +3B5Tgclocalsf6bd6b3389b872033d462029172c8612Tgclocalsd288a648545c6dd73287fed249acfcae^prebuilts/go/darwin-x86/src/image/png/reader.go"".writeUint32eH%H;a1HH\$H$H\$H|$H$HL$HD$Hl$(@)HHHH$HL$HD$HHHl$(@+HHv~HH$HL$HD$HHvWl$(H@+HHv9HH$H\$H|$vl$(H@+H 
   1812 B
   1813 *runtime.racefuncenterv
   1814 "runtime.racewrite
   1815 "runtime.racewrite
   1816 "runtime.racewrite
   1817 "runtime.racewrite
   1818 (runtime.racefuncexit
   1819 $runtime.panicindex
   1820 $runtime.panicindex
   1821 $runtime.panicindex
   1822 $runtime.panicindex
   1823 $runtime.panicindex
   1824 $runtime.panicindex
   1825 $runtime.panicindex
   1826 $runtime.panicindex
   1827 0runtime.morestack_noctxt@"".u0type.uint32"".btype.[]uint8Dt^2#  Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cb^prebuilts/go/darwin-x86/src/image/png/writer.go"".opaqueeH%HD$H;AHH$H$1H\$xH$HH$H$H\$H$H\$H\$xH\$\$ HHT$xHT$XH$H\$`<t#H$HZ \$$HH$H$H$H[(Hl$HT$HL$HD$ Hl$8HL$HHD$PHT$@HH\$PH9HD$8H\$HH9HD$0HD$HL$(HL$H$H$H$H[ HL$HD$ HD$pH$HL$hHY HL$(\$t$HHD$0HH\$HH9xHH\$PH9T$H)
   1831 X
   1832 *runtime.racefuncentertype."".opaquer
   1833 $runtime.assertI2I2
   1834 (runtime.racefuncexit
   1835 (runtime.racefuncexit
   1836 (runtime.racefuncexit
   1837 0runtime.morestack_noctxt0"".autotmp_0470type.int"".autotmp_0468?,type.image/color.Color"".autotmp_0465type."".opaquer"".xtype.int"".ytype.int"".b(type.image.Rectangle"".o_type."".opaquer"".~r1 type.bool"".m type.image.Image4;Jvf=U+C0Tgclocals51af24152615272c3d9efc8538f95767Tgclocals8c067d5052c60a71dd2787c367bb278b^prebuilts/go/darwin-x86/src/image/png/writer.go"".abs8eH%H;avIHH\$H$D$<sH\$HHH)Hl$H
   1840 
   1841 :
   1842 *runtime.racefuncenterf
   1843 (runtime.racefuncexit
   1844 (runtime.racefuncexit
   1845 0runtime.morestack_noctxt "".~r1type.int"".dtype.uint8(`$
   1847 DTgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals33cdeccccebe80329f1fdbee7f5874cb^prebuilts/go/darwin-x86/src/image/png/writer.go0"".(*encoder).writeChunk0/eH%H$XH;AH(H$(H$H$0H$H$0H$0H$@Hn0Ht
H(H95H$HL$HD$H$H$PH\$H$XH\$HH\$HD$ H$HL$(H$HD$0H\$8H$H\$@H$H$0H$H$0HH$HH\$HH\$H$H\$HD$ HL$(HD$0H$0HtBH$HK0H$=uHC8H(LC8L$HD$HH@H'
   1851 HHH$D$HH$HH$	H$H$H$H	l$H@)HH	HH$H$H$HHt	Hl$H@+HHS	HH$H$H$HH"	l$HH@+HH	HH$H$H$l$HH@+H$0Hk@HH,$H$0HH$PH$XwDED@DHh@HH,$H$0HDH$PH$X&HDED@EHh@HH,$H$0HH$PH$XHDED@FHh@HH,$H$0HH$PH$X}HDEDCG1H\$pH\$xHH$HH\$P1H\$`H\$hHH$HD$HD$XH$HD$XH$H$H\$XHHl$P=HkH\$XH\$XH1H9oHL$XHD$`HL$hH$HH$HHT$pHHD$xH$0H$H@HHHHH$HT$H$Ht$H$ Hl$H$H$H$HYHH$8H\$H$@H\$H$HH\$H$H$H$H[HH$0HbHHHMH$H$ H$H$H$H$H[@D$H$H$H$ H$D$LH$HH$H$H$H$Hl$L@)HHHH$H$H$HHRHl$L@+HH1HH$H$H$HHl$LH@+HHHH$H$0H$H$l$LH@+HHH@HtH$H$ H$H$H$H$0H-HKHkH$H\$H$H\$H$ H\$H$H,$H$HY H\$(H$H\$0H$H$0H$H$0H$0H$Hk0H$=tHk8H$0H$H$0H$0Hh0Ht
H(H$H$H$0HHKHkH$8H\$H$@H\$H$HH\$H$H,$H$HY H\$(H$H\$0H$H$0H$H$0H$0H$Hk0H$=[Hk8H$0H$H$0H$0Hh0Ht
H(HHHH
   1854 H$H$ H$H$H$H$0HHKHkH$H\$H$H\$H$ H\$H$H,$H$HY H\$(H$H\$0H$H$0H$H$0H$0H$Hk0H$=uHk8H(LC8L$Hl$6LC8L$Hl$LC8L$Hl$ypHH$HH\$HH\$HD$_LCL$Hl$,^	d
   1875 ^
   1876 *runtime.racefuncenter
   1877  runtime.raceread
   1878 (runtime.racefuncexit
   1879 strconv.ItoaBgo.string." chunk is too large: "
   1880 *runtime.concatstring3
   1881 "runtime.racewrite0type."".UnsupportedErrortype.errorBgo.itab."".UnsupportedError.error
   1882 runtime.convT2I6runtime.writeBarrierEnabled
   1883 (runtime.racefuncexit
   1884 .runtime.writebarrierptr
   1885 "runtime.racewrite
   1886 "runtime.racewrite	
   1887 "runtime.racewrite
   1889 "runtime.racewrite
   1891 "runtime.racewrite
   1893 "runtime.racewrite
   1894 "runtime.racewrite
   1895 "runtime.racewrite(hash/crc32.IEEETable
   1896  runtime.raceread(hash/crc32.IEEETable,type.hash/crc32.digest
   1897 "runtime.newobject
   1898 "runtime.racewrite
   1899 "runtime.racewrite6runtime.writeBarrierEnabledLgo.itab.*hash/crc32.digest.hash.Hash32
   1900 "runtime.racewrite
   1901 "runtime.racewrite
   1902 "runtime.racewrite
   1903 "runtime.racewrite
   1904  runtime.raceread 
   1905 "runtime.racewrite 6runtime.writeBarrierEnabled!
   1906  runtime.raceread!
   1907 (runtime.racefuncexit!
   1908  runtime.raceread#$
   1909 "runtime.racewrite$6runtime.writeBarrierEnabled%
   1910  runtime.raceread%
   1911 (runtime.racefuncexit&
   1912  runtime.raceread((
   1913 "runtime.racewrite)6runtime.writeBarrierEnabled)
   1914 (runtime.racefuncexit)
   1915 .runtime.writebarrierptr*
   1916 .runtime.writebarrierptr*
   1917 .runtime.writebarrierptr+
   1918 $runtime.panicindex+
   1919 $runtime.panicindex+
   1920 $runtime.panicindex+
   1921 $runtime.panicindex+
   1922 $runtime.panicindex+
   1923 $runtime.panicindex,
   1924 $runtime.panicindex,
   1925 $runtime.panicindex,.type.*hash/crc32.digest, type.hash.Hash32-Lgo.itab.*hash/crc32.digest.hash.Hash32-
   1926  runtime.typ2Itab-
   1927 .runtime.writebarrierptr-
   1928 $runtime.panicindex.
   1929 $runtime.panicindex.
   1930 $runtime.panicindex.
   1931 $runtime.panicindex.
   1932 $runtime.panicindex.
   1933 $runtime.panicindex/
   1934 $runtime.panicindex/
   1935 $runtime.panicindex/
   1936 $runtime.panicindex/
   1937 $runtime.panicindex/
   1938 $runtime.panicindex/
   1939 $runtime.panicindex/
   1940 0runtime.morestack_noctxt`4"".autotmp_0490 type.hash.Hash32"".autotmp_0488 type.hash.Hash32"".autotmp_0487.type.*hash/crc32.digest"".autotmp_0486type.error"".autotmp_0485type.[]uint8"".autotmp_0484type.error"".autotmp_0483type.error"".autotmp_0482type.[]uint8"".autotmp_0480type.[]uint8"".autotmp_0479type.[]uint8"".autotmp_0478.type.*hash/crc32.digest"".autotmp_0477/type.[]uint8"".autotmp_04760type."".UnsupportedError"".autotmp_0475type.string"".autotmp_0473type.int"".utype.uint32"".b_type.[]uint8"".~r0 type.hash.Hash32"hash/crc32.tab2,type.*hash/crc32.Table"".~r0 type.hash.Hash32"".utype.uint32"".btype.[]uint8"".crc type.hash.Hash32"".name@type.string"".btype.[]uint8"".e type.*"".encoderR"M
"63041	*'+03/0)/0*/0/%KFGGsA 3 ) * "%(("    P0/0/0/0/t.|TH^
-CC^^
-.
   1948 -	Tgclocalsb36950422927729473637d67cfc0fe70Tgclocals3ffbb430d99e9a2aaafcda73a35b8412^prebuilts/go/darwin-x86/src/image/png/writer.go."".(*encoder).writeIHDReH%HD$H;AHH$H$H$H$H$H$HHKHk H$H,$H$HY(H|$LL$HD$Hl$ H$HaHLHLHHH|$xL$LL$@H$H$Hl$PHD$HH|$8H)H$D$0H$HH$H$H$H$Hl$0@)HHHH$H$H$HHcHl$0@+HHBHH$H$H$HHl$0H@+HHHH$H$H$l$0H@+H$HHLHHHHH\$xH\$XH$H$H\$hH$HD$pH|$`H)H$D$4H$HH$H,$H$H$Hl$4@)HHHH$H$H$HHHl$4@+HHxHH$H$H$HHGl$4H@+HH%HH$H$H$l$4H@+H$H$H$(H$Hi(H
   1951 HHiLHH,$H$@THhLH	H,$H$AUHiLH
   1952 H,$H$@VHhLHH,$H$@WHhLHH,$H$AXHHLHt`H
HH$H$HL$H$Hl$H$HT$HH\$ HD$(HHu?HiLHH,$H$@THhLH	H,$H$AUH
   1956 HiLHH,$H$@THhLH	H,$H$AUHHu?HiLHH,$H$@THhLH	H,$H$AU[HQHiLHH,$H$@THhLH	H,$H$AUHu?HiLHH,$H$@THhLH	H,$H$AUHHiLHH,$H$@THhLH	H,$H$AUErE\Id
   1976 X
   1977 *runtime.racefuncenter
   1978  runtime.raceread
   1979 "runtime.racewrite
   1980 "runtime.racewrite
   1981 "runtime.racewrite
   1982 "runtime.racewrite
   1983 
   1984 "runtime.racewrite
   1986 "runtime.racewrite
   1988 "runtime.racewrite
   1990 "runtime.racewrite
   1991  runtime.raceread
   1992 "runtime.racewrite
   1993 "runtime.racewrite
   1994 "runtime.racewrite
   1995 "runtime.racewrite
   1996 "runtime.racewrite go.string."IHDR"
   1997 0"".(*encoder).writeChunk
   1998 (runtime.racefuncexit
   1999 "runtime.racewrite
   2000 "runtime.racewrite
   2001 "runtime.racewrite
   2002 "runtime.racewrite
   2003 "runtime.racewrite
   2004 "runtime.racewrite
   2005 "runtime.racewrite
   2006 "runtime.racewrite
   2007 "runtime.racewrite
   2008 "runtime.racewrite
   2009 "runtime.racewrite
   2010 "runtime.racewrite
   2011 $runtime.panicindex
   2012 $runtime.panicindex
   2013 $runtime.panicindex
   2014 $runtime.panicindex
   2015 $runtime.panicindex
   2016 $runtime.panicindex
   2017 $runtime.panicindex
   2018 $runtime.panicindex
   2019 $runtime.panicindex
   2020 $runtime.panicindex
   2021 $runtime.panicindex
   2022 $runtime.panicindex
   2023 $runtime.panicindex
   2024 $runtime.panicindex
   2025 $runtime.panicindex
   2026 $runtime.panicindex
   2027 0runtime.morestack_noctxt"".autotmp_0504type.int"".autotmp_0503type.uint32"".autotmp_0502type.int"".autotmp_0499type.[]uint8"".autotmp_0498type.[]uint8"".autotmp_0497/type.[]uint8"".utype.uint32"".btype.[]uint8image.r2(type.image.Rectangle"".utype.uint32"".b_type.[]uint8image.r2(type.image.Rectangle"".b(type.image.Rectangle"".e type.*"".encoder	>;^p3)*%,
   2028 (e+"
   2029 -
   2030 
   2031 
   2033 
   2034 1H+Tgclocals37a2283f5c69c342946cad8073b58fcaTgclocalsf7a1973e29ff93b847f0b502e82927a1^prebuilts/go/darwin-x86/src/image/png/writer.go<"".(*encoder).writePLTEAndTRNSeH%HD$H;A<HH$H$H$H$HH$HHD$@H$H$H$H$1H$HD$XH$HHL$`Hl$XH9HD$hH$H\$hHXHHkH\$`H\$HH$HL$pH$Hl$xHH$H\$pH\$H\$xH\$HH$HH[ HL$HD$ 1\$<\$=\$>\$?HH$H$HL$H$HD$H\$<H\$\$<\$8\$=\$9\$>\$:\$?\$;HD$HH$HkHHkLHD$PH=LHlH,$H$H%HhLH\$PHHl\$8]HL$HHkHHhLHL$PHHl
H,$H$HHhLH\$PHHl\$9]HL$HHkHHhLHL$PHWHl
H,$H$HD$HH+HiLH\$PHHl\$:]\$;tHD$@HHiLHD$PH=HlH,$H$HHnLH\$PHHl\$;]HD$hHL$`HHHL$`Hl$XH9:H$HkH;HH'HLHHH4$H$Hl$H$H\$H$HL$HH\$ HD$(H$HD$@HHHHHHHHtoHLHt`HHH4$H$Hl$H$H\$H$HL$HH\$ HD$(HEEPNH$H$HL$HD$H$HH\$HD$H$HL$H$HD$ H\$(H$H\$0H$H$H$H$0HH$HH\$HH\$H$H\$HD$ HL$(HD$0H$HtBH$HK0H$=uHC8HLC8L$HD$R
   2049 X
   2050 *runtime.racefuncenter
   2051  runtime.raceread,image/color.NRGBAModel
   2052  runtime.raceread,image/color.NRGBAModel,image/color.NRGBAModel,type.image/color.NRGBA
   2053 "runtime.assertI2T
   2054 "runtime.racewrite	
   2055 "runtime.racewrite
   2056 
   2057 "runtime.racewrite
   2059 "runtime.racewrite go.string."PLTE"
   2060 0"".(*encoder).writeChunk go.string."tRNS"
   2061 0"".(*encoder).writeChunk
   2062 (runtime.racefuncexit
   2063 $runtime.panicslice
   2064 $runtime.panicslice
   2065 $runtime.panicindex
   2066 $runtime.panicindex
   2067 $runtime.panicindex
   2068 $runtime.panicindex
   2069 $runtime.panicindex
   2070 $runtime.panicindex
   2071 $runtime.panicindex
   2072 $runtime.panicindex
   2073 strconv.Itoa@go.string."bad palette length: "
   2074 *runtime.concatstring2
   2075 "runtime.racewrite&type."".FormatErrortype.error8go.itab."".FormatError.error
   2076 runtime.convT2I6runtime.writeBarrierEnabled
   2077 (runtime.racefuncexit
   2078 .runtime.writebarrierptr
   2079 0runtime.morestack_noctxt@6"".autotmp_0526type.int"".autotmp_0525type.int"".autotmp_0524type.int"".autotmp_0523type.int"".autotmp_0522,type.image/color.Color"".autotmp_0521.type.*image/color.Color"".autotmp_0520type.int"".autotmp_0519type.int"".autotmp_0518type.[]uint8"".autotmp_0517type.int"".autotmp_0516_type.[]uint8"".autotmp_0515type.int"".autotmp_0514type.int"".autotmp_0513,type.image/color.NRGBA"".autotmp_0512,type.image/color.Color"".autotmp_0511/0type.image/color.Palette"".autotmp_0510&type."".FormatError"".autotmp_0509type.string"".autotmp_0508type.int"".autotmp_0507type.int"".autotmp_0506type.int
   2080 "".c1,type.image/color.NRGBA"".c,type.image/color.Color"".itype.int"".lasttype.int"".p0type.image/color.Palette"".e type.*"".encoder(	$$!'	mek
   2082 ^$
   2083   ,+J/|Tgclocals304f1a7ece42768e76e94191b15e0406Tgclocals22f13ebf5c24e4e75310262cca4789fa^prebuilts/go/darwin-x86/src/image/png/writer.go&"".(*encoder).WriteeH%H;aH0H\$0H$1H\$`H\$hH\$8H$H\$@H\$H\$HH\$H\$PH\$HH\$ HD$(H\$8H$H$0HD$8Hh0HtBH$H$0HD$XH\$8HtHk0Hl$`Hk8Hl$hH0H\$HH\$X1H\$`H\$hH0
   2086 B
   2087 *runtime.racefuncenter go.string."IDAT"
   2088 0"".(*encoder).writeChunk
   2089  runtime.raceread
   2090  runtime.raceread
   2091 (runtime.racefuncexit
   2092 (runtime.racefuncexit
   2093 0runtime.morestack_noctxtp`"".~r2Ptype.error"".~r1@type.int"".btype.[]uint8"".e type.*"".encoder`_`#_`
   2096 ,1A"4		
   2097 	
   2098  8Tgclocals8cf14f50ac1bf7ae2848fda35f0590ecTgclocals69c1753bd5f81501d95132d08af04464^prebuilts/go/darwin-x86/src/image/png/writer.go"".filterGFeH%H$pH;AHH$H$H$H$H$HhL@HFHILItIH$L$L$HHH$H$Hh L@(HHILHItIH$L$L$HH0H$H$Hh8L@@HHILH0ItIH$L$L$HHHH$H$HhPL@XH3HILHHItIH$L$L$HH`H$H$H$H$HkhLCpHHILK`ItIH$L$L$H$(H$0H{HHL$ HtIH$H$L$H$H\$ 1H|$1Hl$ H9UHD$PH9HH$H$Hl$PL$L9H+H$H$Hl$PL$L9H+H$H$H$HD$PH$L$L9mHH$L$L9FHlmH)H9*H,]H\$H\$xH9	HH$H$H$HL$PH9
H
   2101 +@
@HHl$xHHH|$HHHl$ H9H|$pHD$h1HL$1H$8H9hH$HD$@L$L9;
HH$H$Hl$@L$L9	
H+H$H$Hl$@L$L9H+H$H$H$HD$@H$L$L9HH$L$L9nHlmH)H9RH,]H\$H\$xH91HH$HT$@H$L$L9H+@@HHl$xHHHL$HHH$8H9H$8Hl$ H9<HHD$(H$8H)H$L$L9dHlH,$H$Hl$(L$L91H+H$H\$(H$8H)H$L$L9
   2114 HlH,$H$H$H$8H\$(H$L$HH)L9
   2115 Hl]$H9
   2116 H+@l$HH)H9e
   2117 H,]\$\$\$H$Hl$(L$L9&
   2118 H+H$H$Hl$(L$L9	H+H$H$H$HD$(H9	HH$L$L9	HlmDD$L)@+H\$H\$xH9o	HH$HT$(H$L$L9=	H+@	@HHl$xHHHL$Hl$pH9Hl$pH9}HL$pHD$h11Hl$ H9}|HD$xH$HL$0L$L9HH$HL$0H$L$L9gH+@C@HHl$xHHl$pH9Hl$pH9}HD$pHD$h1HL$1H$8H9H$HD$HL$L9HH$H$Hl$HL$L9H+H$H$H$HD$HH9cHH$L$L9?HlDEDH\$H\$xH9HH$HT$HH$L$L9H+@@HHl$xHHHL$HHH$8H9H$8Hl$ H9hH$HD$8L$L9YHH$H$Hl$8L$L9'H+H$H\$8H$8H)H$L$L9HlH,$H$H$H$H$HD$8H9HL$8IM)I9J,mH)H9gH,]H\$H\$xH9FHH$HT$8H$L$L9H+@@HHl$xHHHL$Hl$pH9Hl$pH9}HL$pHD$h1HL$1H$8H9H$HD$XL$L9iHH$HD$XH$L$L97H+H$L$L9HH$H$Hl$XL$L9H+H$H$Hl$XL$L9H+H$H$H$HD$XH$L$L9jHH$L$L9CHlm@H)H9$H,]H\$H\$xH9HH$HT$XH$L$L9H+@@HHl$xHHHL$HHH$8H9JH$8Hl$ H9HHD$`H$8H)H$L$L96HlH,$H$Hl$`L$L9H+H$Hl$`L$8H$HL)L$L9H+H$L$L9HlmHH\$xH$L$L9kHH$H$Hl$`L$L99H+H$H$H$HL$xHD$`H$L$L9HHH?II)LHH)H9H,]H\$H\$xH9HH$HT$`H$L$L9svH+@sY@HHl$xHHHL$Hl$pH9|-Hl$pH9}	HD$hH\$hH$@HHH@HH)@HH)GHH@HH)@HH)2HT@HH)HH@HH)@HH)@HH)AK
   2191 ^
   2192 *runtime.racefuncenter
   2193  runtime.raceread
   2194  runtime.raceread
   2195  runtime.raceread
   2196  runtime.raceread
   2197  runtime.raceread	
   2198 "runtime.racewrite
   2199 
   2200  runtime.raceread
   2202  runtime.raceread
   2204  runtime.raceread
   2205 "runtime.racewrite
   2206  runtime.raceread
   2207  runtime.raceread
   2208  runtime.raceread
   2209  runtime.raceread
   2210  runtime.raceread
   2211  runtime.raceread
   2212 "".paeth
   2213 "runtime.racewrite
   2214  runtime.raceread
   2215  runtime.raceread
   2216  runtime.raceread"
   2217 "runtime.racewrite"
   2218  runtime.raceread$
   2219  runtime.raceread&
   2220 "runtime.racewrite'
   2221  runtime.raceread(
   2222  runtime.raceread*
   2223  runtime.raceread-
   2224  runtime.raceread.
   2225 "runtime.racewrite/
   2226  runtime.raceread/
   2227  runtime.raceread2
   2228  runtime.raceread4
   2229  runtime.raceread5
   2230  runtime.raceread7
   2231 "runtime.racewrite8
   2232  runtime.raceread:
   2233  runtime.raceread;
   2234 (runtime.racefuncexit<
   2235 $runtime.panicindex<
   2236 $runtime.panicindex<
   2237 $runtime.panicindex<
   2238 $runtime.panicindex<
   2239 $runtime.panicindex=
   2240 $runtime.panicindex=
   2241 $runtime.panicindex=
   2242 $runtime.panicindex=
   2243 $runtime.panicindex=
   2244 $runtime.panicindex=
   2245 $runtime.panicindex=
   2246 $runtime.panicindex>
   2247 $runtime.panicindex>
   2248 $runtime.panicindex>
   2249 $runtime.panicindex>
   2250 $runtime.panicindex>
   2251 $runtime.panicindex>
   2252 $runtime.panicindex>
   2253 $runtime.panicindex>
   2254 $runtime.panicindex?
   2255 $runtime.panicindex?
   2256 $runtime.panicindex?
   2257 $runtime.panicindex?
   2258 $runtime.panicindex?
   2259 $runtime.panicindex?
   2260 $runtime.panicindex@
   2261 $runtime.panicindex@
   2262 $runtime.panicindex@
   2263 $runtime.panicindex@
   2264 $runtime.panicindex@
   2265 $runtime.panicindex@
   2266 $runtime.panicindexA
   2267 $runtime.panicindexA
   2268 $runtime.panicindexA
   2269 $runtime.panicindexA
   2270 $runtime.panicindexB
   2271 $runtime.panicindexB
   2272 $runtime.panicindexB
   2273 $runtime.panicindexB
   2274 $runtime.panicindexB
   2275 $runtime.panicindexB
   2276 $runtime.panicindexC
   2277 $runtime.panicindexC
   2278 $runtime.panicindexC
   2279 $runtime.panicindexC
   2280 $runtime.panicindexC
   2281 $runtime.panicindexC
   2282 $runtime.panicindexC
   2283 $runtime.panicindexD
   2284 $runtime.panicindexD
   2285 $runtime.panicindexD
   2286 $runtime.panicindexD
   2287 $runtime.panicindexD
   2288 $runtime.panicindexD
   2289 $runtime.panicindexD
   2290 $runtime.panicindexE
   2291 $runtime.panicindexE
   2292 $runtime.panicindexE
   2293 $runtime.panicindexE
   2294 $runtime.panicindexE
   2295 $runtime.panicindexE
   2296 $runtime.panicindexE
   2297 $runtime.panicindexE
   2298 $runtime.panicindexF
   2299 $runtime.panicsliceF
   2300 $runtime.panicsliceF
   2301 $runtime.panicsliceF
   2302 $runtime.panicsliceF
   2303 $runtime.panicsliceF
   2304 $runtime.panicsliceF
   2305 0runtime.morestack_noctxt`r"".autotmp_0564type.int"".autotmp_0563type.int"".autotmp_0562type.int"".autotmp_0561type.int"".autotmp_0560type.int"".autotmp_0559type.uint8"".autotmp_0558type.int"".autotmp_0557type.int"".autotmp_0556type.int"".autotmp_0555type.int"".autotmp_0554type.int"".autotmp_0553type.int"".autotmp_0552type.int"".autotmp_0551type.int"".autotmp_0550type.int"".autotmp_0549type.int"".autotmp_0548type.int"".autotmp_0546type.int"".autotmp_0545type.int"".autotmp_0544type.int"".autotmp_0543type.int"".autotmp_0542type.int"".autotmp_0541type.int"".autotmp_0540type.int"".autotmp_0539type.int"".autotmp_0538type.int"".autotmp_0537type.int"".autotmp_0536type.int"".autotmp_0535type.int"".autotmp_0534type.uint8"".autotmp_0533type.int"".autotmp_0532type.int"".autotmp_0531type.int"".autotmp_0530type.int"".autotmp_0529type.int"".itype.int"".itype.int"".itype.int"".itype.int"".itype.int"".itype.int"".itype.int"".filtertype.int"".besttype.int"".itype.int"".sumtype.int"".ntype.int"".pdattype.[]uint8"".cdat4type.[]uint8"".cdat3type.[]uint8"".cdat2type.[]uint8"".cdat1_type.[]uint8"".cdat0/type.[]uint8"".~r3Ptype.int"".bpp@type.int
   2309 "".prtype.[]uint8
   2310 "".cr type.*[5][]uint8"#"UUUUeI
f	fa
   2312 	n
   2314 	fa
   2315 	fY
   2316 	8!8!*!!!F!*!*	:.eUUUTgclocalsdbe225b1632f2406d881b3dde3efb7dfTgclocalsa87aaf68d250a0ccfc850a5796cb423b^prebuilts/go/darwin-x86/src/image/png/writer.go"".writeImageeH%H$H;A'HH$H$1H$H$H$H$H$H\$H$H\$Hl$HL$ HT$(H$XH$PHt#H$H$HH$Hl$$HHD$&H$H$H
   2322 i&H-&H$H$H$H$H[(Hl$HT$HL$HD$ H$H$H$H$H$1H1H$H$H9H$H$H$H$H$PH$H$H$`HH$XH$HH$H)HHHHH$HD$HD$H$HT$HL$ HD$(H$HH$HkHHHKHCH$HH$HkHHHCHkH$H$HH$$H$H$H$HHV$HkHHHCHkH$H$HH$$H$HH$H9H$H$H$H$H$H$ HH$H$H$H)HHHHH$HD$HD$HT$HL$ HD$(H$H$H$H$H$H$H$(HH$H$H\$H$H\$H$(H\$\$ H$(H$H$ HH$H$H\$H$H\$H$ H\$\$ H$ H$H$HH$H$H\$H$H\$H$H\$\$ H$H$H$HH$H$H\$H$H\$H$H\$L$L$L$H$\$ H$H$H$H$Ht$hH9CH$H$H
   2326 H1I9JL$H$H$H$HT$hH)HnH$HH$HHHL$HtIH$H$L$H$H$H$H$H$HH$H$H)H$HH$H4$H$H$L$LKM9FL9=LI)I)ItM*H$H$H$H\$H$H\$L$LT$L$LD$ L$LL$(HD$0H$1HtJH$H$H$H\$H$H\$H$H\$H$H\$ HD$(H$H$H$HHMHkHH|$HHHNHOHNHOL$L$L$H$H$Ht$(Hl$0H$HH$@Ht#H$H$HH$H$H$H$H$H$H$H$H$H$H$H$H$H$H$Ht$hHH$Ht$hH91H$H$HHH$H9H$HD$Ht$H$H$H$H[ H\$H$H\$ H$HH$H$H\$H$H\$HH$HH[ HL$HD$ 1\$CHH$H$pHL$H$xHD$H\$CH\$\$C\$AH$H$H$H$H$H$H$H9H)H$Ht$hH$H$H$H$H$H$H$H9s*Hl$A@+HHH$H$H`HH$H$H$H$H$H$11H$H$H$1I9L$H$HxH(H$HhH$HhH$H$H$Ht$hH$H$HCH$H$H$H$H$H$HH$HH)HHHH$HH$0H$H$H$@HH$8H$(H)HHH$H$H$H9H$H$HH$L$L9^HH$H$H$L$HL9%HlH,$H$H$H$H9H)H$L$L$HL9M(A(@+H$HH$H9HH$H$HH$L$L9YHlH,$H$H$H$H9#H)H$HL$L$L9M(A(@+H$HH$H9HH$H$H$L$HL9HlH,$H$H$H$L$L9sRH+L$L$HHL9s+M(A(@+H$HH$HHHH$H9KH$HD$Ht$H$H$H$H[ HL$HD$ H$xH$H$pHY T$L$D$T$LL$TD$`H$H$HH$L$L91HH$H$H$H$H9H)l$L@+H$HH$H9HH$H$H$H$H9H)l$T@+H$HH$H9shHH$Ht$hH$H$L$L9s2H+l$`@+H$HH$H$HL1H9H$H$HtH(H$HhH$HhH$H$H$Ht$hH$H$HCH$H$H$H$H$H$ZzH
   2352 1I9xL$H$H$H$HT$hH)HnH$HH$H)HHL$HtIH$H$L$H$H$pH$H$H$HH$xH$hH)H$HH$H4$H$H$L$LKM9wxL9wsLI)I)ItM*H$H$H$H\$H$H\$L$LT$L$LD$ L$LL$(HD$0P1H$`H$hHH$H$H\$H$H\$H$`H\$H$`H$0H$hH$8H$H$H9HD$pHD$H\$hH\$H$8H$H$0H[0\$\$BH$H$H$H$H$H$H$H9sxH)H$H$H$H$H$H$H$H$H9s'Hl$B@+HHH$HD$pH
   2355 HHG1H9|H$H$H$H$HT$hH)HnH$HH$H-HHL$HtIH$H$L$H$H$H$H$H$HH$H$H)HH$HH$H4$H$H$L$LKM9wxL9wsLI)I)ItM*H$H$H$H\$H$H\$L$LT$L$LD$ L$LL$(HD$0@HH$H9H$HD$Ht$H$H$H$H[ H\$H$pH\$ H$xHH$H$pH\$H$xH\$HH$HH[ HL$HD$ 1\$d\$e\$f\$gHH$H$HL$H$HD$H\$dH\$\$d\$X\$e\$Y\$f\$Z\$g\$[H$HH$H$H$H$H$H$H$H9\HH$H$H$H$H$H9H(l$X@+H$HH$H$H$H$H$H$H$H9HH$H$H$H$H$H9H(l$Y@+H$HH$H$H$H$H$H$H$H9#HH$H$H$H$H$H9H(l$Z@+H$HH$H$H$H$H$H$H$H9HH$Ht$hH$H$H$H$H$H$H$H9s0H(l$[@+H$HH$H$H{HhHH$H9THD$xHD$Ht$H$H$H$H[ H\$H$H\$ H$HH$H$H\$H$H\$HH$HH[ HL$HD$ 1f\$FHH$H$pHL$H$xHD$H\$FH\$H\$Ff\$DH$HH$H$H$H$H$H$H$H9%HH$H$H$H$H$H9H(Hl$Df@+H$HH$H$H$H$H$H$H$H9HH$Ht$hH$H$H$H$H$H$H$H9s.H(Hl$D@+H$HH$HD$xHHiHH$H9H$HD$Ht$H$H$H$H[ HL$HD$ H$H$H$HY D$T$L$D$HT$PL$\H$HH$H$H$H$H$H$H$H9HH$H$H$H$H$H9\H(l$H@+H$HH$H$H$H$H$H$H$H9HH$H$H$H$H$H9H(l$H@+H$HH$H$H$H$H$H$H$H9_HH$H$H$H$H$H9"H(l$P@+H$HH$H$H$H$H$H$H$H9HH$H$H$H$H$H9H(l$P@+H$HH$H$H$H$H$H$H$H9$HH$H$H$H$H$H9H(l$\@+H$HH$H$H$H$H$H$H$H9HH$Ht$hH$H$H$H$H$H$H$H9s/H(l$\@+H$HH$H$HHHH$H9uH$HD$Ht$H$H$H$H[ H\$H$H\$ H$HH$H$H\$H$H\$HH$HH[ HL$HD$ 1f$f$f$f$HH$H$pHL$H$xHD$H$H\$H$f$H$f$H$f$H$f$H$HH$H$H$H$H$H$H$H9HH$H$H$H$H$H9H(H$f@+H$HH$H$H$H$H$H$H$H9\HH$H$H$H$H$H9H(H$@+H$HH$H$H$H$H$H$H$H9HH$H$H$H$H$H9~H(H$f@+H$HH$H$H$H$H$H$H$H9HH$H$H$H$H$H9H(H$@+H$HH$H$H$H$H$H$H$H9uHH$H$H$H$H$H98H(H$f@+H$HH$H$H$H$H$H$H$H9HH$H$H$H$H$H9H(H$@+H$HH$H$H$H$H$H$H$H9/HH$H$H$H$H$H9H(H$f@+H$HH$H$H$H$H$H$H$H9HH$Ht$hH$H$H$H$H$H$H$H9s4H(H$@+H$HH$H$HHuH$H
   2409 H$H2HuH$HH$uHuH$^HTH$CH
   2414 ^
   2415 *runtime.racefuncenter
   2416 8compress/zlib.NewWriterLevel
   2417 &runtime.deferreturn
   2418 (runtime.racefuncexit@compress/zlib.(*Writer).Closef
   2419 "runtime.deferproc
   2420  runtime.duffzerotype.[]uint8
   2421 "runtime.makeslice
   2422 
   2423 "runtime.racewrite
type.[]uint8
   2425 "runtime.makeslice type.*image.Gray
   2426 $runtime.assertI2T2 type.*image.RGBA
   2427 $runtime.assertI2T2(type.*image.Paletted
   2428 $runtime.assertI2T2"type.*image.NRGBA
   2429 $runtime.assertI2T2
   2430  runtime.raceread
   2431  runtime.raceread
   2432 "runtime.slicecopy
   2433 "".filter
   2434 :compress/zlib.(*Writer).Write 
   2435 &runtime.deferreturn 
   2436 (runtime.racefuncexit#
   2437 &runtime.deferreturn#
   2438 (runtime.racefuncexit#
   2439 $runtime.panicindex#
   2440 $runtime.panicslice#
   2441 $runtime.panicslice$%*image/color.GrayModel%
   2442  runtime.raceread%*image/color.GrayModel%*image/color.GrayModel&&*type.image/color.Gray'
   2443 "runtime.assertI2T(
   2444 "runtime.racewrite*
   2445 $runtime.panicindex*
   2446 $runtime.panicindex+
   2447  runtime.raceread-
   2448  runtime.raceread1
   2449 "runtime.racewrite2
   2450  runtime.raceread4
   2451 "runtime.racewrite4
   2452  runtime.raceread6
   2453 "runtime.racewrite7
   2454  runtime.raceread9
   2455 $runtime.panicindex9
   2456 $runtime.panicindex9
   2457 $runtime.panicindex9
   2458 $runtime.panicindex9
   2459 $runtime.panicindex9
   2460 $runtime.panicindex:
   2461 $runtime.panicindex:
   2462 $runtime.panicindex:
   2463 $runtime.panicindex:
   2464 $runtime.panicindex:
   2465 $runtime.panicindex:
   2466 $runtime.panicindex;<=
   2467 "runtime.racewrite>
   2468 "runtime.racewrite@
   2469 "runtime.racewriteA
   2470 $runtime.panicindexA
   2471 $runtime.panicindexA
   2472 $runtime.panicindexA
   2473 $runtime.panicindexA
   2474 $runtime.panicindexB
   2475 $runtime.panicindexB
   2476  runtime.racereadC
   2477  runtime.racereadE
   2478  runtime.racereadH
   2479  runtime.racereadJ
   2480 "runtime.slicecopyJ
   2481 $runtime.panicsliceK
   2482 $runtime.panicsliceK0type.image.PalettedImageL
   2483 "runtime.assertI2IMO
   2484 "runtime.racewriteP
   2485 $runtime.panicindexP
   2486 $runtime.panicindexQ
   2487  runtime.racereadT
   2488  runtime.racereadW
   2489 "runtime.slicecopyW
   2490 $runtime.panicsliceW
   2491 $runtime.panicsliceXX,image/color.NRGBAModelX
   2492  runtime.racereadY,image/color.NRGBAModelY,image/color.NRGBAModelYZ,type.image/color.NRGBA[
   2493 "runtime.assertI2T\
   2494 "runtime.racewrite_
   2495 "runtime.racewritea
   2496 "runtime.racewritec
   2497 "runtime.racewritee
   2498 $runtime.panicindexe
   2499 $runtime.panicindexe
   2500 $runtime.panicindexe
   2501 $runtime.panicindexe
   2502 $runtime.panicindexf
   2503 $runtime.panicindexf
   2504 $runtime.panicindexf
   2505 $runtime.panicindexgg.image/color.Gray16Modelh
   2506  runtime.racereadh.image/color.Gray16Modelh.image/color.Gray16Modelhi.type.image/color.Gray16i
   2507 "runtime.assertI2Tk
   2508 "runtime.racewritem
   2509 "runtime.racewriteo
   2510 $runtime.panicindexo
   2511 $runtime.panicindexo
   2512 $runtime.panicindexo
   2513 $runtime.panicindexqqs
   2514 "runtime.racewriteu
   2515 "runtime.racewritew
   2516 "runtime.racewritez
   2517 "runtime.racewrite|
   2518 "runtime.racewrite~
   2519 "runtime.racewrite
   2520 $runtime.panicindex
   2521 $runtime.panicindex
   2522 $runtime.panicindex
   2523 $runtime.panicindex
   2524 $runtime.panicindex
   2525 $runtime.panicindex
   2526 $runtime.panicindex
   2527 $runtime.panicindex
   2528 $runtime.panicindex
   2529 $runtime.panicindex
   2530 $runtime.panicindex
   2531 $runtime.panicindex0image/color.NRGBA64Model
   2532  runtime.raceread0image/color.NRGBA64Model0image/color.NRGBA64Model0type.image/color.NRGBA64
   2533 "runtime.assertI2T
   2534 "runtime.racewrite
   2535 "runtime.racewrite
   2536 "runtime.racewrite
   2537 "runtime.racewrite
   2538 "runtime.racewrite
   2539 "runtime.racewrite
   2540 "runtime.racewrite
   2541 "runtime.racewrite
   2542 $runtime.panicindex
   2543 $runtime.panicindex
   2544 $runtime.panicindex
   2545 $runtime.panicindex
   2546 $runtime.panicindex
   2547 $runtime.panicindex
   2548 $runtime.panicindex
   2549 $runtime.panicindex
   2550 $runtime.panicindex
   2551 $runtime.panicindex
   2552 $runtime.panicindex
   2553 $runtime.panicindex
   2554 $runtime.panicindex
   2555 $runtime.panicindex
   2556 $runtime.panicindex
   2557 $runtime.panicindex
   2558 $runtime.panicindex
   2559 $runtime.panicindex
   2560 $runtime.panicindex
   2561 $runtime.panicindex
   2562 $runtime.panicindex
   2563 &runtime.deferreturn
   2564 (runtime.racefuncexit
   2565 0runtime.morestack_noctxt"".autotmp_0666type.[]uint8"".autotmp_0665type.int"".autotmp_0664type.int"".autotmp_0663type.int"".autotmp_0662type.int"".autotmp_0661type.int"".autotmp_0660type.int"".autotmp_0659type.int"".autotmp_0658type.int"".autotmp_0657type.int"".autotmp_0656type.int"".autotmp_0655type.int"".autotmp_0654type.int"".autotmp_0653type.int"".autotmp_0652type.int"".autotmp_0651type.int"".autotmp_0650type.int"".autotmp_0649type.int"".autotmp_0648type.int"".autotmp_0647type.int"".autotmp_0646type.int"".autotmp_0645type.int"".autotmp_0644type.int"".autotmp_0643type.int"".autotmp_0642type.int"".autotmp_0641type.int"".autotmp_0640type.int"".autotmp_0639type.int"".autotmp_0638type.int"".autotmp_0637type.int"".autotmp_0636type.int"".autotmp_0635type.int"".autotmp_0634type.[]uint8"".autotmp_0633type.[]uint8"".autotmp_0632type.int"".autotmp_0631type.int"".autotmp_0630type.int"".autotmp_0629type.int"".autotmp_0628type.int"".autotmp_0626
   2566 type.int"".autotmp_0625type.int"".autotmp_0624
   2567 type.int"".autotmp_0623type.int"".autotmp_0622type.error"".autotmp_0621type.int"".autotmp_0620type.int"".autotmp_0619type.int"".autotmp_0618	0type.image/color.NRGBA64"".autotmp_0617,type.image/color.Color"".autotmp_0616,type.image/color.Color"".autotmp_0615type.int"".autotmp_0614type.int"".autotmp_0613type.uint32"".autotmp_0612type.uint32"".autotmp_0611type.uint32"".autotmp_0610,type.image/color.Color"".autotmp_0609type.int"".autotmp_0608type.int"".autotmp_0607.type.image/color.Gray16"".autotmp_0606,type.image/color.Color"".autotmp_0605,type.image/color.Color"".autotmp_0604type.int"".autotmp_0603type.int"".autotmp_0602,type.image/color.NRGBA"".autotmp_0601,type.image/color.Color"".autotmp_0600,type.image/color.Color"".autotmp_0599type.[]uint8"".autotmp_0598type.int"".autotmp_0597type.[]uint8"".autotmp_0596type.int"".autotmp_0595type.int"".autotmp_0594type.uint8"".autotmp_05930type.image.PalettedImage"".autotmp_0592type.[]uint8"".autotmp_0591type.int"".autotmp_0590type.[]uint8"".autotmp_0589type.int"".autotmp_0588type.int"".autotmp_0584,type.image/color.Color"".autotmp_0583type.int"".autotmp_0582type.int"".autotmp_0581type.int"".autotmp_0580type.int"".autotmp_0579*type.image/color.Gray"".autotmp_0578,type.image/color.Color"".autotmp_0577,type.image/color.Color"".autotmp_0576type.[]uint8"".autotmp_0575type.int"".autotmp_0574type.[]uint8"".autotmp_0573"type.*image.NRGBA"".autotmp_0572(type.*image.Paletted"".autotmp_0571 type.*image.RGBA"".autotmp_0570 type.*image.Gray"".autotmp_0569type.[]uint8"".autotmp_0568type.[]uint8image.r2(type.image.Rectangleimage.r2(type.image.Rectangleimage.r2	(type.image.Rectangleimage.r2(type.image.Rectangleimage.r2	(type.image.Rectangleimage.r2(type.image.Rectangle"".errtype.error"".c
   2573 0type.image/color.NRGBA64"".xtype.int"".btype.uint32"".gtype.uint32"".rtype.uint32"".xtype.int"".c.type.image/color.Gray16"".xtype.int"".c,type.image/color.NRGBA"".xtype.int"".offsettype.int"".xtype.int
   2585 "".pi0type.image.PalettedImage"".offsettype.int"".btype.uint32"".gtype.uint32"".rtype.uint32"".xtype.int"".j
   2591 type.int
   2592 "".j1
   2593 type.int"".pixtype.[]uint8"".cr0type.[]uint8"".c*type.image/color.Gray"".xtype.int"".offsettype.int"".i
   2599 type.int"".ytype.int"".nrgba"type.*image.NRGBA"".paletted(type.*image.Paletted"".rgba type.*image.RGBA"".gray type.*image.Gray
   2601 "".prtype.[]uint8"".i
   2602 type.int
   2603 "".crtype.[5][]uint8"".b(type.image.Rectangle"".bpp
   2605 type.int"".errtype.error
   2607 "".zw4type.*compress/zlib.Writer"".~r4`type.error"".levelPtype.int
   2609 "".cb@type.int"".m  type.image.Image"".wtype.io.WriterD"


>
P"B.
   2615 &N/XXXx
   2618 *Jx%
   2623 0
   2625 PhiXV	(
   2629 *xwi
[
   2632 d
   2633 *ba
   2636 
   2637 
   2639 h
   2640 )"
   2642 )
   2645 
   2648 1	.=mZXXXS
   2650 '5	sC@?x
   2651 	Rj6
   2652 
   2653 	L
   2654 '5	}
   2655 '5	d
   2656 	
   2657 '5	)Tgclocals77df28ab999d91c64ee0db43d06f700fTgclocalsdfb033c371360d1c29cf5e39adbd5e6b^prebuilts/go/darwin-x86/src/image/png/writer.go0"".(*encoder).writeIDATseH%HD$H;AHH$H$H$H$H$0H$Hh0Ht
HHD$xH1H9QHT$xH$H$HD$@HD$pHH$H$HD$H$HT$H\$pH\$HD$@\$ HT$pHT$PH$H$HT$PHD$@HZH9iHHD$XHD$`H$H$H$H+H,$H$HH+H,$H\$H\$HHHD$h1H9H$H$H$H$H$H$(H$HL$`HD$hH$H$H$HL$H`HZH|$HHHKHOHj(Hl$ H\$HH\$(H\$0H$H\$8H$H$H$H$0H$H$Hk0H$=Hk8H$H$H$0H$Hk0Ht
HH\$XH$H\$H$H\$H$H$H$H$0H$H$Hk0H$=uHk8HLC8L$Hl$LC8L$Hl$,HH$HH\$HH\$H\$H\$hHHHH$HD$HD$H\$H$H\$ H$H\$(H$HH$HD$HD$`H$HD$@HD$`1H(HhHhHhHh Hh(Hh0Hh8H$H$H\$`H$HkH$Hk H$=u[HkH\$`H$H$0H\$`H$Hk0H$=uHk8HD$`wLC8L$Hl$LCL$Hl$HH$HH\$HH\$HD$}Z
   2663 X
   2664 *runtime.racefuncenter
   2665  runtime.raceread
   2666 (runtime.racefuncexit:go.itab.*"".encoder.io.Writer$type.*bufio.Writer
   2667 $runtime.assertI2T2
   2668  runtime.raceread
   2669  runtime.raceread
   2670  runtime.raceread
   2671 "".levelToZlib>go.itab.*bufio.Writer.io.Writer
   2672  runtime.raceread
   2673  runtime.raceread
   2674 "".writeImage
   2675 "runtime.racewrite	6runtime.writeBarrierEnabled
   2676 
   2677  runtime.raceread
   2678 
   2679 (runtime.racefuncexit
   2680 
   2681 *bufio.(*Writer).Flush
   2683 "runtime.racewrite6runtime.writeBarrierEnabled
   2686 (runtime.racefuncexit
   2688 .runtime.writebarrierptr
   2690 .runtime.writebarrierptr
$type.*bufio.Writer
type.io.Writer
>go.itab.*bufio.Writer.io.Writer
   2695  runtime.typ2Itabtype.[]uint8
   2696 "runtime.makeslice"type.bufio.Writer
   2697 "runtime.newobject
   2698 ,runtime.racewriterange
   2699 "runtime.racewrite6runtime.writeBarrierEnabled
   2700 "runtime.racewrite6runtime.writeBarrierEnabled
   2701 .runtime.writebarrierptr
   2702 .runtime.writebarrierptr type.*"".encodertype.io.Writer:go.itab.*"".encoder.io.Writer
   2703  runtime.typ2Itab
   2704 0runtime.morestack_noctxt$"".autotmp_0729type.*uint8"".autotmp_0728$type.*bufio.Writer"".autotmp_0727$type.*bufio.Writer"".autotmp_0726type.*uint8"".autotmp_0725otype.io.Writer"".autotmp_0724type.error"".autotmp_0723Otype.error"".autotmp_0722type.int"".autotmp_0721$type.*bufio.Writer"".autotmp_0720/type.[]uint8"".autotmp_0719type.int"".autotmp_0718$type.*bufio.Writer"".autotmp_0717 type.*"".encoderbufio.b4$type.*bufio.Writerbufio.size3type.intbufio.w2type.io.Writer
   2705 "".bw$type.*bufio.Writer"".e type.*"".encoder4Es
   2706 Z((l>Z	X++5bz0CF..46	7yB* Tgclocals1240e8dd60f90adb0dd48205f7058064Tgclocalsd72f74ee1aebf483e9fe906810c4bd6e^prebuilts/go/darwin-x86/src/image/png/writer.go"".levelToZlibeH%H;aHH\$H$HD$HEHuHD$	HHuHD$HHD$HHuHD$HHuHD$HO
   2710 B
   2711 *runtime.racefuncenter
   2712 (runtime.racefuncexit
   2713 (runtime.racefuncexit
   2714 (runtime.racefuncexit
   2715 (runtime.racefuncexit
   2716 (runtime.racefuncexit
   2717 0runtime.morestack_noctxt "".~r1type.int"".l0type."".CompressionLevel21\			
		 Tgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals33cdeccccebe80329f1fdbee7f5874cb^prebuilts/go/darwin-x86/src/image/png/writer.go."".(*encoder).writeIENDeH%H;avPH0H\$0H$H\$8H$1H\$H\$H\$HH\$ HD$(H0
   2725 :
   2726 *runtime.racefuncenter| go.string."IEND"
   2727 0"".(*encoder).writeChunk
   2728 (runtime.racefuncexit
   2729 0runtime.morestack_noctxt`"".e type.*"".encoder`K_`pp
   2730 TTgclocals87d20ce1b58390b294df80b886db78bfTgclocals33cdeccccebe80329f1fdbee7f5874cb^prebuilts/go/darwin-x86/src/image/png/writer.go"".EncodeeH%H;aHPH\$PH$1H\$xH$HH$HD$HD$8H$HD$H\$8H$H\$XH\$H\$`H\$H\$hH\$H\$pH\$ HL$(HD$0HL$@HL$xHD$HH$HP5
   2732 B
   2733 *runtime.racefuncenterntype."".Encoder
   2734 "runtime.newobject
   2735 ,runtime.racewriterange
   2736 ("".(*Encoder).Encode
   2737 (runtime.racefuncexit
   2738 0runtime.morestack_noctxt`
   2739 "".autotmp_0734type.error
   2740 "".&e/ type.*"".Encoder"".~r2@type.error"".m  type.image.Image"".wtype.io.Writer4,W ;6&Tgclocals0321d1b5df75a0a4e103a3d97b5bb9c5Tgclocalsad3d78e88c381598810f2e82f373ef66^prebuilts/go/darwin-x86/src/image/png/writer.go("".(*Encoder).Encode('eH%H$@H;A	H@H$@H$1H$pH$xH$hH$H$`H[(Ht$HT$H\$HD$ HT$pH$H\$xHt$hH)H\$XH$hH$H$`H[(Hl$HT$HL$H\$ H$H$H$H$HD$XH)H\$`HHHH9HH9HH$HD$H$H$HD$PH$H$H$H$H=%H+H$H$H$H$H$PHkH$X=HkH$H$H$H$H$`HkH$h=rHk 1H$H$H$ HH$H$`H\$H$hH\$HD$\$ H$hH$H$`H[0HL$HD$1H$(H$0H$8HH$H$HL$H$HD$H$(H\$\$ H$(H$H$0H$H$8H$ H$HH$H$H$(H$HC(
   2743 H$PH$H$XH\$HH\$HD$H\$(H$H\$0H$H$H$H$0H$H$Hk0H$=Hk8H$H$H$Ht0H$H$HD$H$H\$H$ H\$H$H$H$H$H$H$H$0H$Hk0H$pHk8H$xH@LC8L$Hl$5H$hH$H$`H[0HL$HD$H$H$H$H$HH$H$H-H9u{HH$H$H,$H$Hl$H-Hl$H-Hl$\$ t+H$H$H$(H$HC(HH$H$H-H9u{HH$H$H,$H$Hl$H-Hl$H-Hl$\$ t+H$H$H$(H$HC(#HH$H$H-H9HH$H$H,$H$Hl$H-Hl$H-Hl$\$ tvH$`H$H$hH\$H$\$t#H$H$(H$HC(XH$H$(H$HC(5HH$H$H-H9uTHH$H$H,$H$Hl$H-Hl$H-Hl$\$ HH$H$H-H9uTHH$H$H,$H$Hl$H-Hl$H-Hl$\$ H$`H$H$hH\$H$\$t#H$H$(H$HC(H$H$(H$HC(LC L$Hl${LCL$Hl$!H$Hl$H$HD$
   2750 H\$H$H\$H$H\$`H$HD$
   2751 HL$HD$H$HH\$HD$H$H\$H$H\$ HH\$(HD$0H$HL$8H$HD$@H\$HH$H\$PH$HH$HH\$HH\$H$H\$HD$ H\$(H$pH\$0H$xH@
   2752 ^
   2753 *runtime.racefuncentertype."".encoder
   2754 "runtime.newobject
   2755 ,runtime.racewriterange
   2756 "runtime.racewrite6runtime.writeBarrierEnabled
   2757 "runtime.racewrite6runtime.writeBarrierEnabled
   2758 "runtime.racewrite6runtime.writeBarrierEnabled0type.image.PalettedImage	
   2759 $runtime.assertI2I2
   2760 
   2761 0type.image/color.Palette
   2763 $runtime.assertI2T2
   2765 "runtime.racewrite
:go.string."\x89PNG\r\n\x1a\n"
   2768 io.WriteString
   2769 "runtime.racewrite6runtime.writeBarrierEnabled
   2770 ."".(*encoder).writeIHDR
   2771 <"".(*encoder).writePLTEAndTRNS
   2772 0"".(*encoder).writeIDATs
   2773 ."".(*encoder).writeIEND
   2774  runtime.raceread
   2775 (runtime.racefuncexit
   2776 .runtime.writebarrierptr*image/color.GrayModel
   2777  runtime.raceread*image/color.GrayModel*image/color.GrayModel
   2778  runtime.raceread*image/color.GrayModel*image/color.GrayModel
   2779 runtime.ifaceeq
   2780 "runtime.racewrite.image/color.Gray16Model
   2781  runtime.raceread.image/color.Gray16Model.image/color.Gray16Model
   2782  runtime.raceread.image/color.Gray16Model.image/color.Gray16Model
   2783 runtime.ifaceeq
   2784 "runtime.racewrite*image/color.RGBAModel
   2785  runtime.raceread*image/color.RGBAModel*image/color.RGBAModel
   2786  runtime.raceread*image/color.RGBAModel*image/color.RGBAModel
   2787 runtime.ifaceeq
   2788 "".opaque
   2789 "runtime.racewrite
   2790 "runtime.racewrite,image/color.NRGBAModel
   2791  runtime.raceread,image/color.NRGBAModel,image/color.NRGBAModel
   2792  runtime.raceread,image/color.NRGBAModel,image/color.NRGBAModel
   2793 runtime.ifaceeq,image/color.AlphaModel
   2794  runtime.raceread,image/color.AlphaModel,image/color.AlphaModel
   2795  runtime.raceread,image/color.AlphaModel,image/color.AlphaModel
   2796 runtime.ifaceeq 
   2797 "".opaque 
   2798 "runtime.racewrite!
   2799 "runtime.racewrite"
   2800 .runtime.writebarrierptr"
   2801 .runtime.writebarrierptr"
   2802 .runtime.writebarrierptr#
   2803 "strconv.FormatInt#
   2804 "strconv.FormatInt$@go.string."invalid image size: "%go.string."x"%
   2805 *runtime.concatstring4&&type."".FormatError&type.error&8go.itab."".FormatError.error'
   2806 runtime.convT2I'
   2807 (runtime.racefuncexit'
   2808 0runtime.morestack_noctxtp,"".autotmp_0750,type.image/color.Model"".autotmp_0747type.int"".autotmp_0745type.error"".autotmp_0744type.bool"".autotmp_0743type.bool"".autotmp_0742,type.image/color.Model"".autotmp_0741/0type.image/color.Palette"".autotmp_0740,type.image/color.Model"".autotmp_0739&type."".FormatError"".autotmp_0738type.string"".autotmp_0737type.string"".autotmp_0736(type.image.Rectangle
   2809 "".&e type.*"".encoderimage.r2(type.image.Rectangle"".~r0type.intimage.r2(type.image.Rectangle"".pal_0type.image/color.Palette
   2812 "".mhtype.int64"".~r2Ptype.error"".m0 type.image.Image"".wtype.io.Writer"".enc type.*"".Encoder("
   2815 
"ba:/1CCA&,0C
)Dt&$!t& x00	
   2818 ;	VU
t.+X]s>>]
   2821 Yz%z%hA1u
XTgclocals99b2364a57d13a96f84cedab325103feTgclocalsd9f497ccda38801b0997128ba0e703f6^prebuilts/go/darwin-x86/src/image/png/writer.go"".initeH%H;aHH\$H$HH$t-HH$u
   2824 HHH$HH$H:
   2826 B
   2827 *runtime.racefuncenterP"".initdoneb
   2828  runtime.racereadp"".initdone"".initdone
   2829  runtime.raceread"".initdone
   2830 (runtime.racefuncexit
   2831 "runtime.throwinit"".initdone
   2832 "runtime.racewrite"".initdone
   2833 $compress/zlib.init
   2834 (encoding/binary.init
   2835 fmt.init
   2836 hash.init
   2837 hash/crc32.init
   2838 image.init
   2839  image/color.init
   2840 io.init
   2841 bufio.init
   2842 strconv.init
   2843 "".init.1"".initdone
   2844 "runtime.racewrite"".initdone
   2845 (runtime.racefuncexit
   2846 0runtime.morestack_noctxtOu
   2847  Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals33cdeccccebe80329f1fdbee7f5874cb^prebuilts/go/darwin-x86/src/image/png/writer.go."".(*FormatError).ErroreH%H;a&HhHY Ht
H|$pH9;uH#H\$hH$1H\$xH$H\$p1H9uEHH$HD$HH\$HD$HH\$ HD$(H\$pH$H\$pHt~HHk1H\$8H\$@H$HH\$HD$HL$HHL$Hl$PHl$ HL$(HD$0HL$XHD$`HL$8HL$xHD$@H$Hh{
   2854 n
   2855 *runtime.racefuncentergo.string."png".go.string."FormatError""go.string."Error"
   2856 "runtime.panicwrap
   2857  runtime.racereadBgo.string."png: invalid format: "
   2858 *runtime.concatstring2
   2859 (runtime.racefuncexit
   2860 0runtime.morestack_noctxt0
   2861 "".autotmp_0753type.string"".~r0_type.string"".e?&type."".FormatError"".~r0type.string""..this(type.*"".FormatError6(Tgclocals69076ee43f1cead0792b9f36906b1b56Tgclocalsae0a20890c9ac6bfbea3383f34532bab<autogenerated>8"".(*UnsupportedError).ErroreH%H;a&HhHY Ht
H|$pH9;uH#H\$hH$1H\$xH$H\$p1H9uEHH$HD$HH\$HD$HH\$ HD$(H\$pH$H\$pHt~HHk1H\$8H\$@H$HH\$HD$HL$HHL$Hl$PHl$ HL$(HD$0HL$XHD$`HL$8HL$xHD$@H$Hh{
   2868 n
   2869 *runtime.racefuncentergo.string."png"8go.string."UnsupportedError""go.string."Error"
   2870 "runtime.panicwrap
   2871  runtime.racereadLgo.string."png: unsupported feature: "
   2872 *runtime.concatstring2
   2873 (runtime.racefuncexit
   2874 0runtime.morestack_noctxt0
   2875 "".autotmp_0754type.string"".~r0_type.string"".e?0type."".UnsupportedError"".~r0type.string""..this2type.*"".UnsupportedError6(Tgclocals69076ee43f1cead0792b9f36906b1b56Tgclocalsae0a20890c9ac6bfbea3383f34532bab<autogenerated>4type..hash.[2]interface {}eH%H;aH(H\$(H$HT$81HD$Hl$H9}\HD$ HHHHckRHHH\$0HtEHHH$HD$8HD$HT$HD$ HHl$H9|HT$8HT$@H(C
   2879 
   2880 B
   2881 *runtime.racefuncenter
   2882 (runtime.nilinterhash
   2883 (runtime.racefuncexit
   2884 0runtime.morestack_noctxt0P
   2885 "".autotmp_0757type.int"".autotmp_0756type.int"".~r2 type.uintptr"".htype.uintptr"".p*type.*[2]interface {}POP Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cb\prebuilts/go/darwin-x86/src/image/png/paeth.go0type..eq.[2]interface {}eH%H;a/H`H\$`H$1HD$0Hl$0H9HD$8H\$pHHD$(HHH$HD$(H\$pHHHHH+Hl$PHkHl$XH\$hHHHH$HT$PH\$hHt}Hl$(HHHHKHL$HHD$@H9uLH$HL$HT$Hl$XHl$\$ t%HD$8HHl$0H9(D$xH`D$xH`|2
   2889 B
   2890 *runtime.racefuncenter
   2891  runtime.raceread
   2892  runtime.raceread
   2893 runtime.efaceeq
   2894 (runtime.racefuncexit
   2895 (runtime.racefuncexit
   2896 0runtime.morestack_noctxt0"".autotmp_0761?"type.interface {}"".autotmp_0760"type.interface {}"".autotmp_0759_type.int"".autotmp_0758Otype.int"".iotype.int"".~r2 type.bool"".q*type.*[2]interface {}"".p*type.*[2]interface {}& O_Tgclocals51af24152615272c3d9efc8538f95767Tgclocals2c78d3ad9d760b5f66e2e47be684c787\prebuilts/go/darwin-x86/src/image/png/paeth.go""".opaquer.OpaqueeH%H;avOHHY Ht
H|$H9;uH#H\$H$H\$ H$H\$H[ \$\$(H
   2900 
   2901 f
   2902 *runtime.racefuncenter
   2903 (runtime.racefuncexit
   2904 0runtime.morestack_noctxt0 "".~r0 type.bool""..thistype."".opaquer J pp
   2906 2>Tgclocals3bb21ca8fe1d99a3e492463bd711418aTgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>*type..hash."".encodereH%H;aH H\$ H$H\$(H$H<$RH\$0H\$HD$HD$H\$(H$H<$H$HD$0HD$HD$H\$(H$H<$H$HD$0HD$HD$H\$(H$H<$H$(HD$0HD$HD$HD$H\$(H$H<$thH$0HD$0HD$HD$H\$(H$H<$t6H$@HD$0HD$HD$HD$HD$0HD$8H %%%Q%%%_
   2909 B
   2910 *runtime.racefuncenter
   2911 runtime.memhash
   2912 "runtime.interhash
   2913 "runtime.interhash
   2914 runtime.memhash
   2915 "runtime.interhash
   2916 runtime.memhash
   2917 (runtime.racefuncexit
   2918 0runtime.morestack_noctxt0@"".autotmp_0768type.uintptr"".autotmp_0767type.uintptr"".autotmp_0766type.uintptr"".autotmp_0765type.uintptr"".autotmp_0764type.uintptr"".~r2 type.uintptr"".htype.uintptr"".p type.*"".encoder@?@[ Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cb\prebuilts/go/darwin-x86/src/image/png/paeth.go&type..eq."".encodereH%HD$H;AHH$H$H$H$H$H$H$H$H]H(H9t$HH$H$H$H$HkHl$xHkH$H$H$H$HT$xH$HHCHKHL$pHD$hH9H$HL$HT$H$Hl$\$ }H$H$H$H$HNHkHl$XHk Hl$`H$H$H$HT$XH$HHCHK HL$PHD$HH9H$HL$HT$Hl$`Hl$\$ H$H$H$(H$H$H$(H$H$H](Hh(H9t$HH$H$0H$H(Hk0Hl$8Hk8Hl$@H$H$H$0HT$8H$HHC0HK8HL$0HD$(H9H$HL$HT$Hl$@Hl$\$ H$H$H<$tkH$@H$H\$H|$tHHD$@HD$\$u$H$H%%$H$H$H(0
   2923 X
   2924 *runtime.racefuncenterz
   2925  runtime.raceread
   2926  runtime.raceread
   2927 (runtime.racefuncexit
   2928  runtime.raceread
   2929  runtime.raceread
   2930 runtime.ifaceeq
   2931  runtime.raceread
   2932  runtime.raceread
   2933 runtime.ifaceeq
   2934  runtime.raceread
   2935  runtime.raceread
   2936 (runtime.racefuncexit	
   2937  runtime.raceread	
   2938  runtime.raceread
   2940 runtime.ifaceeq
   2942  runtime.memequal
   2944 (runtime.racefuncexit
   2946 (runtime.racefuncexit
   2948 (runtime.racefuncexit
   2949 (runtime.racefuncexit
   2950 (runtime.racefuncexit
   2951 0runtime.morestack_noctxt0"".autotmp_0775type.error"".autotmp_0774type.error"".autotmp_0773 type.image.Image"".autotmp_0772_ type.image.Image"".autotmp_0771?type.io.Writer"".autotmp_0770type.io.Writer"".~r2 type.bool"".q type.*"".encoder"".p type.*"".encoderdc&"" (+R^OOTgclocals42e7756549fd1f1e78e70fcb9f08dd2bTgclocalsccca381ab8de2b11624ee7fa3eec392e\prebuilts/go/darwin-x86/src/image/png/paeth.goTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals71f75e7e2fe2878e818867fe3428bd87	Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals23e8278e2b69a3a75fa59b23c49ed6adJgo.string.hdr."png: invalid format: "  Bgo.string."png: invalid format: "Bgo.string."png: invalid format: "0,png: invalid format: Tgclocals69c1753bd5f81501d95132d08af04464Tgclocals342b6176fad1bf8fb686f6c9600f7161  Tgo.string.hdr."png: unsupported feature: "  Lgo.string."png: unsupported feature: "Lgo.string."png: unsupported feature: "@6png: unsupported feature: Tgclocals69c1753bd5f81501d95132d08af04464Tgclocals342b6176fad1bf8fb686f6c9600f7161  Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals790e5cc5051fc0affc980ade09e929ec08go.itab."".FormatError.error0Bgo.itab."".UnsupportedError.error>go.string.hdr."bad IHDR length"  6go.string."bad IHDR length"6go.string."bad IHDR length"  bad IHDR lengthDgo.string.hdr."compression method"  <go.string."compression method"<go.string."compression method"0&compression method:go.string.hdr."filter method"  
2go.string."filter method"2go.string."filter method" filter methodPgo.string.hdr."invalid interlace method"  Hgo.string."invalid interlace method"Hgo.string."invalid interlace method"@2invalid interlace methodDgo.string.hdr."negative dimension"  <go.string."negative dimension"<go.string."negative dimension"0&negative dimensionDgo.string.hdr."dimension overflow"  <go.string."dimension overflow"<go.string."dimension overflow"0&dimension overflowVgo.string.hdr."bit depth %d, color type %d"  Ngo.string."bit depth %d, color type %d"Ngo.string."bit depth %d, color type %d"@8bit depth %d, color type %dTgclocals467e6edd81b776774ed96b91f725e0bd@<0<<<<Tgclocals8df70a596169e39f0b1575476d4d155f



0Tgo.itab.image/color.RGBA.image/color.Color>go.string.hdr."bad PLTE length"  6go.string."bad PLTE length"6go.string."bad PLTE length"  bad PLTE lengthRgo.string.hdr."PLTE, color type mismatch"  Jgo.string."PLTE, color type mismatch"Jgo.string."PLTE, color type mismatch"@4PLTE, color type mismatchTgclocals63fd57f764b64e10137d3aac48159db0@@ Tgclocals72541c40c6166549ccdc48c2d2800f00@@

0Vgo.itab.image/color.NRGBA.image/color.Color>go.string.hdr."bad tRNS length"  6go.string."bad tRNS length"6go.string."bad tRNS length"  bad tRNS lengthLgo.string.hdr."grayscale transparency"  Dgo.string."grayscale transparency"Dgo.string."grayscale transparency"0.grayscale transparencyLgo.string.hdr."truecolor transparency"  Dgo.string."truecolor transparency"Dgo.string."truecolor transparency"0.truecolor transparencyRgo.string.hdr."tRNS, color type mismatch"  Jgo.string."tRNS, color type mismatch"Jgo.string."tRNS, color type mismatch"@4tRNS, color type mismatchTgclocals4591e232a92a2acd967b57d16a58c13aHH@@Tgclocalsd005173f854797d6f14610ffe0589461HH


(go.string.hdr."IDAT"   go.string."IDAT" go.string."IDAT"
   2963 IDATJgo.string.hdr."not enough pixel data"  Bgo.string."not enough pixel data"Bgo.string."not enough pixel data"0,not enough pixel dataTgo.string.hdr."IDAT chunk length overflow"  Lgo.string."IDAT chunk length overflow"Lgo.string."IDAT chunk length overflow"@6IDAT chunk length overflowTgclocalscab8f9d39f904f88b0cdb56320d6369d``
   2964 @@Tgclocals19d18d16f0ad5ccc5ec377416b5028bf``
   2967 ccc0:go.itab.*"".decoder.io.ReaderFgo.string.hdr."too much pixel data"  >go.string."too much pixel data">go.string."too much pixel data"0(too much pixel dataTgclocals622aa6e75b53af6f905d8a5ee4c3d021hh  Tgclocalseea3210279081044ae0c294ad2fe74f1hh0>go.itab.*image.Gray.image.Image0 (a] go.itab.*image.NRGBA.image.Image0>go.itab.*image.RGBA.image.Image0Fgo.itab.*image.Paletted.image.Image0Bgo.itab.*image.Gray16.image.Image0Dgo.itab.*image.NRGBA64.image.Image0Bgo.itab.*image.RGBA64.image.Image>go.string.hdr."bad filter type"  6go.string."bad filter type"6go.string."bad filter type"  bad filter typeTgclocals42289e618390ca3d43fd96242c5d9235
   2970 
   2971 5O0

@
@
@@``````

 K KO../.000 	0	4	0	Tgclocalscf3f84fe7c09f0e08f0e5f09fdd0beab5	gTgclocalsa0692af80ef20a05fb47478487f6ae9a !A	Tgclocalscc8a6f9ecbd841559bcce4e8b51e59feTgclocalsed21bf9857aa4def5fb1b49748ee239700Tgclocals7c2d46b309581fc529325e101c3c1ccd00
>go.string.hdr."bad IEND length"  6go.string."bad IEND length"6go.string."bad IEND length"  bad IEND lengthTgclocalsc3b0a4810ee2be494556083ee4bf989800Tgclocalsa98a1bcb6ff825b1487e8f04a1353cd000

(go.string.hdr."IEND"   go.string."IEND" go.string."IEND"
   2983 IEND(go.string.hdr."IHDR"   go.string."IHDR" go.string."IHDR"
   2984 IHDR(go.string.hdr."PLTE"   go.string."PLTE" go.string."PLTE"
   2985 PLTE(go.string.hdr."tRNS"   go.string."tRNS" go.string."tRNS"
   2986 tRNSTgclocals5906f48d515a08c9786be45e18dcbf99HH Tgclocals67db93d1c251806056275ece682149eeHH@go.string.hdr."invalid checksum"  8go.string."invalid checksum"8go.string."invalid checksum"0"invalid checksumTgclocals9fbee9d81e34c2105642a77c53b54503@@@Tgclocals0319c9c8ccd3d585543812ffc66cf0ac@@Bgo.string.hdr."\x89PNG\r\n\x1a\n"  :go.string."\x89PNG\r\n\x1a\n":go.string."\x89PNG\r\n\x1a\n" PNG
   2988 
   2989 <go.string.hdr."not a PNG file"  4go.string."not a PNG file"4go.string."not a PNG file" not a PNG fileTgclocals4e16ba83df66366c6a42f8af305af9d588	@Tgclocals7bdf21e71041d619ec9f465c3dfecaf0880Lgo.itab.*hash/crc32.digest.hash.Hash32Tgclocals6bc9c3cfbaf8616f0c097ea0199ba8d5hh	04Tgclocals81bfe239c4a344d6408ca63cbc06da06hh?0Zgo.itab.image/color.Palette.image/color.ModelTgclocals0b710af250375562c194dc60121be4a8xx
	040Tgclocals9a21082ccf27067c2aa7b40209b02309xx
&go.string.hdr."png"  go.string."png"go.string."png"pngTgclocalsd288a648545c6dd73287fed249acfcae00
Tgclocalsf6bd6b3389b872033d462029172c8612Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals8c067d5052c60a71dd2787c367bb278b  0Tgclocals51af24152615272c3d9efc8538f95767  Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals23e8278e2b69a3a75fa59b23c49ed6adJgo.string.hdr." chunk is too large: "  Bgo.string." chunk is too large: "Bgo.string." chunk is too large: "0, chunk is too large: Tgclocals3ffbb430d99e9a2aaafcda73a35b8412``
   2997 @ Tgclocalsb36950422927729473637d67cfc0fe70``
   2999 Tgclocalsf7a1973e29ff93b847f0b502e82927a1(( Tgclocals37a2283f5c69c342946cad8073b58fca((Hgo.string.hdr."bad palette length: "  @go.string."bad palette length: "@go.string."bad palette length: "0*bad palette length: Tgclocals22f13ebf5c24e4e75310262cca4789fa00Tgclocals304f1a7ece42768e76e94191b15e040600Tgclocals69c1753bd5f81501d95132d08af04464Tgclocals8cf14f50ac1bf7ae2848fda35f0590ec  cTgclocalsa87aaf68d250a0ccfc850a5796cb423bXX	@IIAATgclocalsdbe225b1632f2406d881b3dde3efb7dfXX	Tgclocalsdfb033c371360d1c29cf5e39adbd5e6b3$$ $ $S $7 $ $ $8$ $ $ 	$!$ $&$$Tgclocals77df28ab999d91c64ee0db43d06f700f0:go.itab.*"".encoder.io.Writer0>go.itab.*bufio.Writer.io.WriterTgclocalsd72f74ee1aebf483e9fe906810c4bd6e Tgclocals1240e8dd60f90adb0dd48205f7058064Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals87d20ce1b58390b294df80b886db78bfTgclocalsad3d78e88c381598810f2e82f373ef66((Tgclocals0321d1b5df75a0a4e103a3d97b5bb9c5((?Hgo.string.hdr."invalid image size: "  @go.string."invalid image size: "@go.string."invalid image size: "0*invalid image size: "go.string.hdr."x"  go.string."x"go.string."x"xTgclocalsd9f497ccda38801b0997128ba0e703f6``
   3003    Tgclocals99b2364a57d13a96f84cedab325103fe``
   3004 Dgo.string.hdr."chunk out of order"  <go.string."chunk out of order"<go.string."chunk out of order"0&chunk out of orderTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals33cdeccccebe80329f1fdbee7f5874cb."".interlacing0.type.[]"".interlaceScan0""".statictmp_0752.$"".chunkOrderError &type."".FormatError <go.string."chunk out of order"0""".statictmp_07520type.[7]"".interlaceScan0"".initdonetype.uint8"".absf"".abs"".paethf"".paeth""".filterPaethf"".filterPaeth "".cbPalettedf"".cbPaletted."".FormatError.Errorf("".FormatError.Error8"".UnsupportedError.Errorf2"".UnsupportedError.Error"".minf"".min4"".(*decoder).parseIHDRf."".(*decoder).parseIHDR4"".(*decoder).parsePLTEf."".(*decoder).parsePLTE4"".(*decoder).parsetRNSf."".(*decoder).parsetRNS*"".(*decoder).Readf$"".(*decoder).Read."".(*decoder).decodef("".(*decoder).decode<"".(*decoder).readImagePassf6"".(*decoder).readImagePass<"".(*decoder).mergePassIntof6"".(*decoder).mergePassInto4"".(*decoder).parseIDATf."".(*decoder).parseIDAT4"".(*decoder).parseIENDf."".(*decoder).parseIEND6"".(*decoder).parseChunkf0"".(*decoder).parseChunk>"".(*decoder).verifyChecksumf8"".(*decoder).verifyChecksum8"".(*decoder).checkHeaderf2"".(*decoder).checkHeader"".Decodef"".Decode$"".DecodeConfigf"".DecodeConfig"".init.1f"".init.1""".writeUint32f"".writeUint32"".opaquef"".opaque"".abs8f"".abs86"".(*encoder).writeChunkf0"".(*encoder).writeChunk4"".(*encoder).writeIHDRf."".(*encoder).writeIHDRB"".(*encoder).writePLTEAndTRNSf<"".(*encoder).writePLTEAndTRNS,"".(*encoder).Writef&"".(*encoder).Write"".filterf"".filter "".writeImagef"".writeImage6"".(*encoder).writeIDATsf0"".(*encoder).writeIDATs""".levelToZlibf"".levelToZlib4"".(*encoder).writeIENDf."".(*encoder).writeIEND"".Encodef"".Encode."".(*Encoder).Encodef("".(*Encoder).Encode"".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.[]uint8@go.string.hdr."*png.FormatError"  8go.string."*png.FormatError"8go.string."*png.FormatError"0"*png.FormatError6go.string.hdr."FormatError"  .go.string."FormatError".go.string."FormatError" FormatError*go.string.hdr."Error"  "go.string."Error""go.string."Error"ErrorTgclocalsae0a20890c9ac6bfbea3383f34532bab  Tgclocals69076ee43f1cead0792b9f36906b1b56  Zgo.string.hdr."func(*png.FormatError) string"  Rgo.string."func(*png.FormatError) string"Rgo.string."func(*png.FormatError) string"@<func(*png.FormatError) stringBtype.func(*"".FormatError) stringxE30 runtime.algarray@"runtime.gcbits.01PZgo.string.hdr."func(*png.FormatError) string"pTgo.weak.type.*func(*"".FormatError) string"runtime.zerovalueBtype.func(*"".FormatError) stringBtype.func(*"".FormatError) string(type.*"".FormatErrortype.stringgo.typelink.func(*png.FormatError) string	func(*"".FormatError) stringBtype.func(*"".FormatError) string: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.*"".FormatErrorWX60 runtime.algarray@"runtime.gcbits.01P@go.string.hdr."*png.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."png.FormatError"  6go.string."png.FormatError"6go.string."png.FormatError"  png.FormatErrorXgo.string.hdr."func(png.FormatError) string"  Pgo.string."func(png.FormatError) string"Pgo.string."func(png.FormatError) string"@:func(png.FormatError) string@type.func("".FormatError) string30 runtime.algarray@"runtime.gcbits.01PXgo.string.hdr."func(png.FormatError) string"pRgo.weak.type.*func("".FormatError) string"runtime.zerovalue@type.func("".FormatError) string@type.func("".FormatError) string&type."".FormatErrortype.stringgo.typelink.func(png.FormatError) string	func("".FormatError) string@type.func("".FormatError) string2go.string.hdr."image/png"  	*go.string."image/png"*go.string."image/png" image/png"go.importpath."".  	*go.string."image/png"&type."".FormatErroruX0 runtime.algarray@"runtime.gcbits.01P>go.string.hdr."png.FormatError"p(type.*"".FormatError"runtime.zerovalue`&type."".FormatError6go.string.hdr."FormatError""go.importpath."".&type."".FormatError*go.string.hdr."Error"$type.func() string@type.func("".FormatError) string."".(*FormatError).Error("".FormatError.ErrorJgo.string.hdr."*png.UnsupportedError"  Bgo.string."*png.UnsupportedError"Bgo.string."*png.UnsupportedError"0,*png.UnsupportedError@go.string.hdr."UnsupportedError"  8go.string."UnsupportedError"8go.string."UnsupportedError"0"UnsupportedErrorTgclocalsae0a20890c9ac6bfbea3383f34532bab  Tgclocals69076ee43f1cead0792b9f36906b1b56  dgo.string.hdr."func(*png.UnsupportedError) string"  "\go.string."func(*png.UnsupportedError) string"\go.string."func(*png.UnsupportedError) string"PFfunc(*png.UnsupportedError) stringLtype.func(*"".UnsupportedError) stringX830 runtime.algarray@"runtime.gcbits.01Pdgo.string.hdr."func(*png.UnsupportedError) string"p^go.weak.type.*func(*"".UnsupportedError) string"runtime.zerovalueLtype.func(*"".UnsupportedError) stringLtype.func(*"".UnsupportedError) string2type.*"".UnsupportedErrortype.stringgo.typelink.func(*png.UnsupportedError) string	func(*"".UnsupportedError) stringLtype.func(*"".UnsupportedError) string2type.*"".UnsupportedErrorQ~60 runtime.algarray@"runtime.gcbits.01PJgo.string.hdr."*png.UnsupportedError"pDgo.weak.type.**"".UnsupportedError"runtime.zerovalue0type."".UnsupportedError`2type.*"".UnsupportedError2type.*"".UnsupportedError*go.string.hdr."Error"$type.func() stringLtype.func(*"".UnsupportedError) string8"".(*UnsupportedError).Error8"".(*UnsupportedError).ErrorHgo.string.hdr."png.UnsupportedError"  @go.string."png.UnsupportedError"@go.string."png.UnsupportedError"0*png.UnsupportedErrorbgo.string.hdr."func(png.UnsupportedError) string"  !Zgo.string."func(png.UnsupportedError) string"Zgo.string."func(png.UnsupportedError) string"PDfunc(png.UnsupportedError) stringJtype.func("".UnsupportedError) string30 runtime.algarray@"runtime.gcbits.01Pbgo.string.hdr."func(png.UnsupportedError) string"p\go.weak.type.*func("".UnsupportedError) string"runtime.zerovalueJtype.func("".UnsupportedError) stringJtype.func("".UnsupportedError) string0type."".UnsupportedErrortype.stringgo.typelink.func(png.UnsupportedError) string	func("".UnsupportedError) stringJtype.func("".UnsupportedError) string0type."".UnsupportedError9Ea0 runtime.algarray@"runtime.gcbits.01PHgo.string.hdr."png.UnsupportedError"p2type.*"".UnsupportedError"runtime.zerovalue`0type."".UnsupportedError@go.string.hdr."UnsupportedError""go.importpath."".0type."".UnsupportedError*go.string.hdr."Error"$type.func() stringJtype.func("".UnsupportedError) string8"".(*UnsupportedError).Error2"".UnsupportedError.Error"type..hashfunc768  ,runtime.memhash_varlentype..eqfunc768  .runtime.memequal_varlentype..alg768  "type..hashfunc768type..eqfunc768runtime.gcbits.4go.string.hdr."[768]uint8"  
   3012 ,go.string."[768]uint8",go.string."[768]uint8" [768]uint8type.[768]uint8	
0type..alg768@runtime.gcbits.P4go.string.hdr."[768]uint8"p0go.weak.type.*[768]uint8"runtime.zerovaluetype.uint8type.[]uint8Bgo.typelink.[768]uint8	[768]uint8type.[768]uint8&runtime.gcbits.3f02?6go.string.hdr."png.decoder"  .go.string."png.decoder".go.string."png.decoder" png.decoder"go.string.hdr."r"  go.string."r"go.string."r"r&go.string.hdr."img"  go.string."img"go.string."img"img&go.string.hdr."crc"  go.string."crc"go.string."crc"crc*go.string.hdr."width"  "go.string."width""go.string."width"width,go.string.hdr."height"  $go.string."height"$go.string."height"height*go.string.hdr."depth"  "go.string."depth""go.string."depth"depth.go.string.hdr."palette"  &go.string."palette"&go.string."palette"palette$go.string.hdr."cb"  go.string."cb"go.string."cb"cb*go.string.hdr."stage"  "go.string."stage""go.string."stage"stage4go.string.hdr."idatLength"  
   3018 ,go.string."idatLength",go.string."idatLength" idatLength&go.string.hdr."tmp"  go.string."tmp"go.string."tmp"tmp2go.string.hdr."interlace"  	*go.string."interlace"*go.string."interlace" interlace.go.string.hdr."decoder"  &go.string."decoder"&go.string."decoder"decodertype."".decoder		P 08@H`hptx\0 runtime.algarray@&runtime.gcbits.3f02P6go.string.hdr."png.decoder"p type.*"".decoder"runtime.zerovaluetype."".decoder"go.string.hdr."r""go.importpath."".type.io.Reader&go.string.hdr."img""go.importpath."". type.image.Image&go.string.hdr."crc""go.importpath."". type.hash.Hash32*go.string.hdr."width""go.importpath."".type.int,go.string.hdr."height""go.importpath."".type.int*go.string.hdr."depth""go.importpath."".type.int.go.string.hdr."palette""go.importpath."".0type.image/color.Palette$go.string.hdr."cb""go.importpath."".type.int*go.string.hdr."stage""go.importpath."".type.int4go.string.hdr."idatLength""go.importpath."".type.uint32&go.string.hdr."tmp""go.importpath."".type.[768]uint82go.string.hdr."interlace""go.importpath."".type.int`	type."".decoder	.go.string.hdr."decoder"	"go.importpath."".		type."".decoder8go.string.hdr."*png.decoder"  0go.string."*png.decoder"0go.string."*png.decoder" *png.decoderpgo.string.hdr."func(*png.decoder, []uint8) (int, error)"  (hgo.string."func(*png.decoder, []uint8) (int, error)"hgo.string."func(*png.decoder, []uint8) (int, error)"`Rfunc(*png.decoder, []uint8) (int, error)Xtype.func(*"".decoder, []uint8) (int, error)I
o$30 runtime.algarray@"runtime.gcbits.01Ppgo.string.hdr."func(*png.decoder, []uint8) (int, error)"pjgo.weak.type.*func(*"".decoder, []uint8) (int, error)"runtime.zerovalueXtype.func(*"".decoder, []uint8) (int, error)Xtype.func(*"".decoder, []uint8) (int, error) type.*"".decodertype.[]uint8type.inttype.errorgo.typelink.func(*png.decoder, []uint8) (int, error)	func(*"".decoder, []uint8) (int, error)Xtype.func(*"".decoder, []uint8) (int, error)Pgo.string.hdr."func(*png.decoder) error"  Hgo.string."func(*png.decoder) error"Hgo.string."func(*png.decoder) error"@2func(*png.decoder) error8type.func(*"".decoder) errorBj30 runtime.algarray@"runtime.gcbits.01PPgo.string.hdr."func(*png.decoder) error"pJgo.weak.type.*func(*"".decoder) error"runtime.zerovalue8type.func(*"".decoder) error8type.func(*"".decoder) error type.*"".decodertype.errorxgo.typelink.func(*png.decoder) error	func(*"".decoder) error8type.func(*"".decoder) errorngo.string.hdr."func(*png.decoder) (image.Image, error)"  'fgo.string."func(*png.decoder) (image.Image, error)"fgo.string."func(*png.decoder) (image.Image, error)"PPfunc(*png.decoder) (image.Image, error)Vtype.func(*"".decoder) (image.Image, error)"D30 runtime.algarray@"runtime.gcbits.01Pngo.string.hdr."func(*png.decoder) (image.Image, error)"phgo.weak.type.*func(*"".decoder) (image.Image, error)"runtime.zerovalueVtype.func(*"".decoder) (image.Image, error)Vtype.func(*"".decoder) (image.Image, error) type.*"".decoder type.image.Imagetype.errorgo.typelink.func(*png.decoder) (image.Image, error)	func(*"".decoder) (image.Image, error)Vtype.func(*"".decoder) (image.Image, error)go.string.hdr."func(*png.decoder, image.Image, image.Image, int)"  1zgo.string."func(*png.decoder, image.Image, image.Image, int)"zgo.string."func(*png.decoder, image.Image, image.Image, int)"pdfunc(*png.decoder, image.Image, image.Image, int)jtype.func(*"".decoder, image.Image, image.Image, int)M30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*png.decoder, image.Image, image.Image, int)"p|go.weak.type.*func(*"".decoder, image.Image, image.Image, int)"runtime.zerovaluejtype.func(*"".decoder, image.Image, image.Image, int)jtype.func(*"".decoder, image.Image, image.Image, int) type.*"".decoder type.image.Image type.image.Imagetype.intgo.typelink.func(*png.decoder, image.Image, image.Image, int)	func(*"".decoder, image.Image, image.Image, int)jtype.func(*"".decoder, image.Image, image.Image, int)`go.string.hdr."func(*png.decoder, uint32) error"   Xgo.string."func(*png.decoder, uint32) error"Xgo.string."func(*png.decoder, uint32) error"PBfunc(*png.decoder, uint32) errorHtype.func(*"".decoder, uint32) errorL30 runtime.algarray@"runtime.gcbits.01P`go.string.hdr."func(*png.decoder, uint32) error"pZgo.weak.type.*func(*"".decoder, uint32) error"runtime.zerovalueHtype.func(*"".decoder, uint32) errorHtype.func(*"".decoder, uint32) error type.*"".decodertype.uint32type.errorgo.typelink.func(*png.decoder, uint32) error	func(*"".decoder, uint32) errorHtype.func(*"".decoder, uint32) errorgo.string.hdr."func(*png.decoder, io.Reader, int, bool) (image.Image, error)"  =go.string."func(*png.decoder, io.Reader, int, bool) (image.Image, error)"go.string."func(*png.decoder, io.Reader, int, bool) (image.Image, error)"|func(*png.decoder, io.Reader, int, bool) (image.Image, error)type.func(*"".decoder, io.Reader, int, bool) (image.Image, error)j30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*png.decoder, io.Reader, int, bool) (image.Image, error)"pgo.weak.type.*func(*"".decoder, io.Reader, int, bool) (image.Image, error)"runtime.zerovaluetype.func(*"".decoder, io.Reader, int, bool) (image.Image, error)type.func(*"".decoder, io.Reader, int, bool) (image.Image, error) type.*"".decodertype.io.Readertype.inttype.bool type.image.Imagetype.errorgo.typelink.func(*png.decoder, io.Reader, int, bool) (image.Image, error)	func(*"".decoder, io.Reader, int, bool) (image.Image, error)type.func(*"".decoder, io.Reader, int, bool) (image.Image, error)(go.string.hdr."Read"   go.string."Read" go.string."Read"
   3024 ReadTgo.string.hdr."func([]uint8) (int, error)"  Lgo.string."func([]uint8) (int, error)"Lgo.string."func([]uint8) (int, error)"@6func([]uint8) (int, error)>type.func([]uint8) (int, error)N4P30 runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."func([]uint8) (int, error)"pPgo.weak.type.*func([]uint8) (int, error)"runtime.zerovalue>type.func([]uint8) (int, error)>type.func([]uint8) (int, error)type.[]uint8type.inttype.errorgo.typelink.func([]uint8) (int, error)	func([]uint8) (int, error)>type.func([]uint8) (int, error)6go.string.hdr."checkHeader"  .go.string."checkHeader".go.string."checkHeader" checkHeader8go.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."decode"  $go.string."decode"$go.string."decode"decodeVgo.string.hdr."func() (image.Image, error)"  Ngo.string."func() (image.Image, error)"Ngo.string."func() (image.Image, error)"@8func() (image.Image, error)@type.func() (image.Image, error)v~30 runtime.algarray@"runtime.gcbits.01PVgo.string.hdr."func() (image.Image, error)"pRgo.weak.type.*func() (image.Image, error)"runtime.zerovalue@type.func() (image.Image, error)@type.func() (image.Image, error) type.image.Imagetype.errorgo.typelink.func() (image.Image, error)	func() (image.Image, error)@type.func() (image.Image, error):go.string.hdr."mergePassInto"  
2go.string."mergePassInto"2go.string."mergePassInto" mergePassIntofgo.string.hdr."func(image.Image, image.Image, int)"  #^go.string."func(image.Image, image.Image, int)"^go.string."func(image.Image, image.Image, int)"PHfunc(image.Image, image.Image, int)Ptype.func(image.Image, image.Image, int)pDJ30 runtime.algarray@"runtime.gcbits.01Pfgo.string.hdr."func(image.Image, image.Image, int)"pbgo.weak.type.*func(image.Image, image.Image, int)"runtime.zerovaluePtype.func(image.Image, image.Image, int)Ptype.func(image.Image, image.Image, int) type.image.Image type.image.Imagetype.intgo.typelink.func(image.Image, image.Image, int)	func(image.Image, image.Image, int)Ptype.func(image.Image, image.Image, int)4go.string.hdr."parseChunk"  
   3028 ,go.string."parseChunk",go.string."parseChunk" parseChunk2go.string.hdr."parseIDAT"  	*go.string."parseIDAT"*go.string."parseIDAT" parseIDATDgo.string.hdr."func(uint32) error"  <go.string."func(uint32) error"<go.string."func(uint32) error"0&func(uint32) error.type.func(uint32) error30 runtime.algarray@"runtime.gcbits.01PDgo.string.hdr."func(uint32) error"p@go.weak.type.*func(uint32) error"runtime.zerovalue.type.func(uint32) error.type.func(uint32) errortype.uint32type.errorbgo.typelink.func(uint32) error	func(uint32) error.type.func(uint32) error2go.string.hdr."parseIEND"  	*go.string."parseIEND"*go.string."parseIEND" parseIEND2go.string.hdr."parseIHDR"  	*go.string."parseIHDR"*go.string."parseIHDR" parseIHDR2go.string.hdr."parsePLTE"  	*go.string."parsePLTE"*go.string."parsePLTE" parsePLTE2go.string.hdr."parsetRNS"  	*go.string."parsetRNS"*go.string."parsetRNS" parsetRNS:go.string.hdr."readImagePass"  
2go.string."readImagePass"2go.string."readImagePass" readImagePass~go.string.hdr."func(io.Reader, int, bool) (image.Image, error)"  /vgo.string."func(io.Reader, int, bool) (image.Image, error)"vgo.string."func(io.Reader, int, bool) (image.Image, error)"``func(io.Reader, int, bool) (image.Image, error)htype.func(io.Reader, int, bool) (image.Image, error)\[@30 runtime.algarray@"runtime.gcbits.01P~go.string.hdr."func(io.Reader, int, bool) (image.Image, error)"pzgo.weak.type.*func(io.Reader, int, bool) (image.Image, error)"runtime.zerovaluehtype.func(io.Reader, int, bool) (image.Image, error)htype.func(io.Reader, int, bool) (image.Image, error)type.io.Readertype.inttype.bool type.image.Imagetype.errorgo.typelink.func(io.Reader, int, bool) (image.Image, error)	func(io.Reader, int, bool) (image.Image, error)htype.func(io.Reader, int, bool) (image.Image, error)<go.string.hdr."verifyChecksum"  4go.string."verifyChecksum"4go.string."verifyChecksum" verifyChecksum type.*"".decoder
   3030 
   3031 B?60 runtime.algarray@"runtime.gcbits.01P8go.string.hdr."*png.decoder"p2go.weak.type.**"".decoder"runtime.zerovaluetype."".decoder` type.*"".decoder type.*"".decoder(go.string.hdr."Read">type.func([]uint8) (int, error)Xtype.func(*"".decoder, []uint8) (int, error)$"".(*decoder).Read$"".(*decoder).Read6go.string.hdr."checkHeader""go.importpath.""."type.func() error8type.func(*"".decoder) error2"".(*decoder).checkHeader2"".(*decoder).checkHeader,go.string.hdr."decode""go.importpath."".@type.func() (image.Image, error)Vtype.func(*"".decoder) (image.Image, error)("".(*decoder).decode("".(*decoder).decode:go.string.hdr."mergePassInto""go.importpath."".Ptype.func(image.Image, image.Image, int)jtype.func(*"".decoder, image.Image, image.Image, int)6"".(*decoder).mergePassInto6"".(*decoder).mergePassInto4go.string.hdr."parseChunk""go.importpath.""."type.func() error8type.func(*"".decoder) error0"".(*decoder).parseChunk0"".(*decoder).parseChunk2go.string.hdr."parseIDAT""go.importpath.""..type.func(uint32) errorHtype.func(*"".decoder, uint32) error."".(*decoder).parseIDAT."".(*decoder).parseIDAT2go.string.hdr."parseIEND""go.importpath.""..type.func(uint32) errorHtype.func(*"".decoder, uint32) error."".(*decoder).parseIEND."".(*decoder).parseIEND2go.string.hdr."parseIHDR""go.importpath.""..type.func(uint32) errorHtype.func(*"".decoder, uint32) error."".(*decoder).parseIHDR."".(*decoder).parseIHDR2go.string.hdr."parsePLTE""go.importpath.""..type.func(uint32) errorHtype.func(*"".decoder, uint32) error."".(*decoder).parsePLTE."".(*decoder).parsePLTE2go.string.hdr."parsetRNS""go.importpath.""..type.func(uint32) error	Htype.func(*"".decoder, uint32) error	."".(*decoder).parsetRNS	."".(*decoder).parsetRNS	:go.string.hdr."readImagePass"	"go.importpath."".	htype.func(io.Reader, int, bool) (image.Image, error)	type.func(*"".decoder, io.Reader, int, bool) (image.Image, error)	6"".(*decoder).readImagePass
   3034 6"".(*decoder).readImagePass
   3035 <go.string.hdr."verifyChecksum"
   3036 "go.importpath."".
   3037 "type.func() error
   3038 8type.func(*"".decoder) error
   3039 8"".(*decoder).verifyChecksum
   3040 8"".(*decoder).verifyChecksum"runtime.gcbits.038go.string.hdr."interface {}"  0go.string."interface {}"0go.string."interface {}" interface {}"type.interface {}W0 runtime.algarray@"runtime.gcbits.03P8go.string.hdr."interface {}"p4go.weak.type.*interface {}"runtime.zerovalue"type.interface {}<go.string.hdr."[]interface {}"  4go.string."[]interface {}"4go.string."[]interface {}" []interface {}&type.[]interface {}p/0 runtime.algarray@"runtime.gcbits.01P<go.string.hdr."[]interface {}"p8go.weak.type.*[]interface {}"runtime.zerovalue"type.interface {}Rgo.typelink.[]interface {}	[]interface {}&type.[]interface {}Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals2c78d3ad9d760b5f66e2e47be684c787  Tgclocals51af24152615272c3d9efc8538f95767  <type..hashfunc.[2]interface {}4type..hash.[2]interface {}8type..eqfunc.[2]interface {}0type..eq.[2]interface {}2type..alg.[2]interface {}  <type..hashfunc.[2]interface {}8type..eqfunc.[2]interface {}"runtime.gcbits.0f>go.string.hdr."[2]interface {}"  6go.string."[2]interface {}"6go.string."[2]interface {}"  [2]interface {}(type.[2]interface {}  ,Y02type..alg.[2]interface {}@"runtime.gcbits.0fP>go.string.hdr."[2]interface {}"p:go.weak.type.*[2]interface {}"runtime.zerovalue"type.interface {}&type.[]interface {}Vgo.typelink.[2]interface {}	[2]interface {}(type.[2]interface {}@go.string.hdr."*[2]interface {}"  8go.string."*[2]interface {}"8go.string."*[2]interface {}"0"*[2]interface {}*type.*[2]interface {}s-q60 runtime.algarray@"runtime.gcbits.01P@go.string.hdr."*[2]interface {}"p<go.weak.type.**[2]interface {}"runtime.zerovalue(type.[2]interface {} type..hashfunc32   ,runtime.memhash_varlentype..eqfunc32   .runtime.memequal_varlentype..alg32   type..hashfunc32type..eqfunc32Dgo.string.hdr."*png.interlaceScan"  <go.string."*png.interlaceScan"<go.string."*png.interlaceScan"0&*png.interlaceScan,type.*"".interlaceScan%:M60 runtime.algarray@"runtime.gcbits.01PDgo.string.hdr."*png.interlaceScan"p>go.weak.type.**"".interlaceScan"runtime.zerovalue*type."".interlaceScanBgo.string.hdr."png.interlaceScan"  :go.string."png.interlaceScan":go.string."png.interlaceScan"0$png.interlaceScan.go.string.hdr."xFactor"  &go.string."xFactor"&go.string."xFactor"xFactor.go.string.hdr."yFactor"  &go.string."yFactor"&go.string."yFactor"yFactor.go.string.hdr."xOffset"  &go.string."xOffset"&go.string."xOffset"xOffset.go.string.hdr."yOffset"  &go.string."yOffset"&go.string."yOffset"yOffset:go.string.hdr."interlaceScan"  
2go.string."interlaceScan"2go.string."interlaceScan" interlaceScan*type."".interlaceScan 6,0type..alg32@runtime.gcbits.PBgo.string.hdr."png.interlaceScan"p,type.*"".interlaceScan"runtime.zerovalue*type."".interlaceScan.go.string.hdr."xFactor""go.importpath."".type.int.go.string.hdr."yFactor""go.importpath."".type.int.go.string.hdr."xOffset""go.importpath."".type.int.go.string.hdr."yOffset""go.importpath."".type.int`*type."".interlaceScan:go.string.hdr."interlaceScan""go.importpath."".*type."".interlaceScan$type..hashfunc4096  ,runtime.memhash_varlen type..eqfunc4096  .runtime.memequal_varlentype..alg4096  $type..hashfunc4096 type..eqfunc40966go.string.hdr."[4096]uint8"  .go.string."[4096]uint8".go.string."[4096]uint8" [4096]uint8 type.[4096]uint8 0type..alg4096@runtime.gcbits.P6go.string.hdr."[4096]uint8"p2go.weak.type.*[4096]uint8"runtime.zerovaluetype.uint8type.[]uint8Fgo.typelink.[4096]uint8	[4096]uint8 type.[4096]uint88go.string.hdr."*[4096]uint8"  0go.string."*[4096]uint8"0go.string."*[4096]uint8" *[4096]uint8"type.*[4096]uint8]m60 runtime.algarray@"runtime.gcbits.01P8go.string.hdr."*[4096]uint8"p4go.weak.type.**[4096]uint8"runtime.zerovalue type.[4096]uint82go.string.hdr."[32]uint8"  	*go.string."[32]uint8"*go.string."[32]uint8" [32]uint8type.[32]uint8 Y 0type..alg32@runtime.gcbits.P2go.string.hdr."[32]uint8"p.go.weak.type.*[32]uint8"runtime.zerovaluetype.uint8type.[]uint8>go.typelink.[32]uint8	[32]uint8type.[32]uint8<go.string.hdr."[]image.format"  4go.string."[]image.format"4go.string."[]image.format" []image.format&type.[]image.format2{10 runtime.algarray@"runtime.gcbits.01P<go.string.hdr."[]image.format"p8go.weak.type.*[]image.format"runtime.zerovalue"type.image.formatRgo.typelink.[]image.format	[]image.format&type.[]image.formathgo.string.hdr."func(io.Reader) (image.Image, error)"  $`go.string."func(io.Reader) (image.Image, error)"`go.string."func(io.Reader) (image.Image, error)"PJfunc(io.Reader) (image.Image, error)Rtype.func(io.Reader) (image.Image, error)@30 runtime.algarray@"runtime.gcbits.01Phgo.string.hdr."func(io.Reader) (image.Image, error)"pdgo.weak.type.*func(io.Reader) (image.Image, error)"runtime.zerovalueRtype.func(io.Reader) (image.Image, error)Rtype.func(io.Reader) (image.Image, error)type.io.Reader type.image.Imagetype.errorgo.typelink.func(io.Reader) (image.Image, error)	func(io.Reader) (image.Image, error)Rtype.func(io.Reader) (image.Image, error)jgo.string.hdr."func(io.Reader) (image.Config, error)"  %bgo.string."func(io.Reader) (image.Config, error)"bgo.string."func(io.Reader) (image.Config, error)"PLfunc(io.Reader) (image.Config, error)Ttype.func(io.Reader) (image.Config, error)3/30 runtime.algarray@"runtime.gcbits.01Pjgo.string.hdr."func(io.Reader) (image.Config, error)"pfgo.weak.type.*func(io.Reader) (image.Config, error)"runtime.zerovalueTtype.func(io.Reader) (image.Config, error)Ttype.func(io.Reader) (image.Config, error)type.io.Reader"type.image.Configtype.errorgo.typelink.func(io.Reader) (image.Config, error)	func(io.Reader) (image.Config, error)Ttype.func(io.Reader) (image.Config, error)Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals3bb21ca8fe1d99a3e492463bd711418a6go.string.hdr."func() bool"  .go.string."func() bool".go.string."func() bool" func() bool type.func() boolTx30 runtime.algarray@"runtime.gcbits.01P6go.string.hdr."func() bool"p2go.weak.type.*func() bool"runtime.zerovalue type.func() bool type.func() booltype.boolFgo.typelink.func() bool	func() bool type.func() bool8go.string.hdr."*png.opaquer"  0go.string."*png.opaquer"0go.string."*png.opaquer" *png.opaquer type.*"".opaquerCt[60 runtime.algarray@"runtime.gcbits.01P8go.string.hdr."*png.opaquer"p2go.weak.type.**"".opaquer"runtime.zerovaluetype."".opaquer6go.string.hdr."png.opaquer"  .go.string."png.opaquer".go.string."png.opaquer" png.opaquer,go.string.hdr."Opaque"  $go.string."Opaque"$go.string."Opaque"Opaque.go.string.hdr."opaquer"  &go.string."opaquer"&go.string."opaquer"opaquertype."".opaquer0 runtime.algarray@"runtime.gcbits.03P6go.string.hdr."png.opaquer"p type.*"".opaquer"runtime.zerovaluetype."".opaquer,go.string.hdr."Opaque" type.func() bool`type."".opaquer.go.string.hdr."opaquer""go.importpath."".type."".opaquerJgo.string.hdr."*png.CompressionLevel"  Bgo.string."*png.CompressionLevel"Bgo.string."*png.CompressionLevel"0,*png.CompressionLevel2type.*"".CompressionLevel4?60 runtime.algarray@"runtime.gcbits.01PJgo.string.hdr."*png.CompressionLevel"pDgo.weak.type.**"".CompressionLevel"runtime.zerovalue0type."".CompressionLevelHgo.string.hdr."png.CompressionLevel"  @go.string."png.CompressionLevel"@go.string."png.CompressionLevel"0*png.CompressionLevel@go.string.hdr."CompressionLevel"  8go.string."CompressionLevel"8go.string."CompressionLevel"0"CompressionLevel0type."".CompressionLevelzm0 runtime.algarray@runtime.gcbits.PHgo.string.hdr."png.CompressionLevel"p2type.*"".CompressionLevel"runtime.zerovalue`0type."".CompressionLevel@go.string.hdr."CompressionLevel""go.importpath."".0type."".CompressionLevel6go.string.hdr."png.Encoder"  .go.string."png.Encoder".go.string."png.Encoder" png.Encoder.go.string.hdr."Encoder"  &go.string."Encoder"&go.string."Encoder"Encodertype."".Encoder{wx0 runtime.algarray@runtime.gcbits.P6go.string.hdr."png.Encoder"p type.*"".Encoder"runtime.zerovaluetype."".Encoder@go.string.hdr."CompressionLevel"0type."".CompressionLevel`type."".Encoder.go.string.hdr."Encoder""go.importpath."".type."".Encoder8go.string.hdr."*png.Encoder"  0go.string."*png.Encoder"0go.string."*png.Encoder" *png.Encodergo.string.hdr."func(*png.Encoder, io.Writer, image.Image) error"  0xgo.string."func(*png.Encoder, io.Writer, image.Image) error"xgo.string."func(*png.Encoder, io.Writer, image.Image) error"pbfunc(*png.Encoder, io.Writer, image.Image) errorhtype.func(*"".Encoder, io.Writer, image.Image) error*JT30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*png.Encoder, io.Writer, image.Image) error"pzgo.weak.type.*func(*"".Encoder, io.Writer, image.Image) error"runtime.zerovaluehtype.func(*"".Encoder, io.Writer, image.Image) errorhtype.func(*"".Encoder, io.Writer, image.Image) error type.*"".Encodertype.io.Writer type.image.Imagetype.errorgo.typelink.func(*png.Encoder, io.Writer, image.Image) error	func(*"".Encoder, io.Writer, image.Image) errorhtype.func(*"".Encoder, io.Writer, image.Image) error,go.string.hdr."Encode"  $go.string."Encode"$go.string."Encode"Encodedgo.string.hdr."func(io.Writer, image.Image) error"  "\go.string."func(io.Writer, image.Image) error"\go.string."func(io.Writer, image.Image) error"PFfunc(io.Writer, image.Image) errorNtype.func(io.Writer, image.Image) errorx30 runtime.algarray@"runtime.gcbits.01Pdgo.string.hdr."func(io.Writer, image.Image) error"p`go.weak.type.*func(io.Writer, image.Image) error"runtime.zerovalueNtype.func(io.Writer, image.Image) errorNtype.func(io.Writer, image.Image) errortype.io.Writer type.image.Imagetype.errorgo.typelink.func(io.Writer, image.Image) error	func(io.Writer, image.Image) errorNtype.func(io.Writer, image.Image) error type.*"".EncoderJ[60 runtime.algarray@"runtime.gcbits.01P8go.string.hdr."*png.Encoder"p2go.weak.type.**"".Encoder"runtime.zerovaluetype."".Encoder` type.*"".Encoder type.*"".Encoder,go.string.hdr."Encode"Ntype.func(io.Writer, image.Image) errorhtype.func(*"".Encoder, io.Writer, image.Image) error("".(*Encoder).Encode("".(*Encoder).Encode0go.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]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]uint8$type..hashfunc1024  ,runtime.memhash_varlen type..eqfunc1024  .runtime.memequal_varlentype..alg1024  $type..hashfunc1024 type..eqfunc10246go.string.hdr."[1024]uint8"  .go.string."[1024]uint8".go.string."[1024]uint8" [1024]uint8 type.[1024]uint8Qj0type..alg1024@runtime.gcbits.P6go.string.hdr."[1024]uint8"p2go.weak.type.*[1024]uint8"runtime.zerovaluetype.uint8type.[]uint8Fgo.typelink.[1024]uint8	[1024]uint8 type.[1024]uint8Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocalsccca381ab8de2b11624ee7fa3eec392e00Tgclocals42e7756549fd1f1e78e70fcb9f08dd2b002type..hashfunc."".encoder*type..hash."".encoder.type..eqfunc."".encoder&type..eq."".encoder(type..alg."".encoder  2type..hashfunc."".encoder.type..eqfunc."".encoder"runtime.gcbits.df6go.string.hdr."png.encoder"  .go.string."png.encoder".go.string."png.encoder" png.encoder&go.string.hdr."enc"  go.string."enc"go.string."enc"enc"go.string.hdr."w"  go.string."w"go.string."w"w"go.string.hdr."m"  go.string."m"go.string."m"m&go.string.hdr."err"  go.string."err"go.string."err"err,go.string.hdr."header"  $go.string."header"$go.string."header"header,go.string.hdr."footer"  $go.string."footer"$go.string."footer"footer.go.string.hdr."encoder"  &go.string."encoder"&go.string."encoder"encodertype."".encoderP@J>(0@HLD0(type..alg."".encoder@"runtime.gcbits.dfP6go.string.hdr."png.encoder"p type.*"".encoder"runtime.zerovaluetype."".encoder&go.string.hdr."enc""go.importpath."". type.*"".Encoder"go.string.hdr."w""go.importpath."".type.io.Writer"go.string.hdr."m""go.importpath."". type.image.Image$go.string.hdr."cb""go.importpath."".type.int&go.string.hdr."err""go.importpath."".type.error,go.string.hdr."header""go.importpath."".type.[8]uint8,go.string.hdr."footer""go.importpath."".type.[4]uint8&go.string.hdr."tmp""go.importpath."". type.[1024]uint8`type."".encoder.go.string.hdr."encoder""go.importpath."".type."".encoder8go.string.hdr."*png.encoder"  0go.string."*png.encoder"0go.string."*png.encoder" *png.encoderpgo.string.hdr."func(*png.encoder, []uint8) (int, error)"  (hgo.string."func(*png.encoder, []uint8) (int, error)"hgo.string."func(*png.encoder, []uint8) (int, error)"`Rfunc(*png.encoder, []uint8) (int, error)Xtype.func(*"".encoder, []uint8) (int, error)430 runtime.algarray@"runtime.gcbits.01Ppgo.string.hdr."func(*png.encoder, []uint8) (int, error)"pjgo.weak.type.*func(*"".encoder, []uint8) (int, error)"runtime.zerovalueXtype.func(*"".encoder, []uint8) (int, error)Xtype.func(*"".encoder, []uint8) (int, error) type.*"".encodertype.[]uint8type.inttype.errorgo.typelink.func(*png.encoder, []uint8) (int, error)	func(*"".encoder, []uint8) (int, error)Xtype.func(*"".encoder, []uint8) (int, error)fgo.string.hdr."func(*png.encoder, []uint8, string)"  #^go.string."func(*png.encoder, []uint8, string)"^go.string."func(*png.encoder, []uint8, string)"PHfunc(*png.encoder, []uint8, string)Ntype.func(*"".encoder, []uint8, string)'30 runtime.algarray@"runtime.gcbits.01Pfgo.string.hdr."func(*png.encoder, []uint8, string)"p`go.weak.type.*func(*"".encoder, []uint8, string)"runtime.zerovalueNtype.func(*"".encoder, []uint8, string)Ntype.func(*"".encoder, []uint8, string) type.*"".encodertype.[]uint8type.stringgo.typelink.func(*png.encoder, []uint8, string)	func(*"".encoder, []uint8, string)Ntype.func(*"".encoder, []uint8, string)Dgo.string.hdr."func(*png.encoder)"  <go.string."func(*png.encoder)"<go.string."func(*png.encoder)"0&func(*png.encoder),type.func(*"".encoder)p30 runtime.algarray@"runtime.gcbits.01PDgo.string.hdr."func(*png.encoder)"p>go.weak.type.*func(*"".encoder)"runtime.zerovalue,type.func(*"".encoder),type.func(*"".encoder) type.*"".encoder`go.typelink.func(*png.encoder)	func(*"".encoder),type.func(*"".encoder)bgo.string.hdr."func(*png.encoder, color.Palette)"  !Zgo.string."func(*png.encoder, color.Palette)"Zgo.string."func(*png.encoder, color.Palette)"PDfunc(*png.encoder, color.Palette)Vtype.func(*"".encoder, image/color.Palette)NS30 runtime.algarray@"runtime.gcbits.01Pbgo.string.hdr."func(*png.encoder, color.Palette)"phgo.weak.type.*func(*"".encoder, image/color.Palette)"runtime.zerovalueVtype.func(*"".encoder, image/color.Palette)Vtype.func(*"".encoder, image/color.Palette) type.*"".encoder0type.image/color.Palettego.typelink.func(*png.encoder, color.Palette)	func(*"".encoder, image/color.Palette)Vtype.func(*"".encoder, image/color.Palette)*go.string.hdr."Write"  "go.string."Write""go.string."Write"Write4go.string.hdr."writeChunk"  
   3066 ,go.string."writeChunk",go.string."writeChunk" writeChunkJgo.string.hdr."func([]uint8, string)"  Bgo.string."func([]uint8, string)"Bgo.string."func([]uint8, string)"0,func([]uint8, string)4type.func([]uint8, string)
   3067 30 runtime.algarray@"runtime.gcbits.01PJgo.string.hdr."func([]uint8, string)"pFgo.weak.type.*func([]uint8, string)"runtime.zerovalue4type.func([]uint8, string)4type.func([]uint8, string)type.[]uint8type.stringngo.typelink.func([]uint8, string)	func([]uint8, string)4type.func([]uint8, string)4go.string.hdr."writeIDATs"  
   3068 ,go.string."writeIDATs",go.string."writeIDATs" writeIDATs,go.string.hdr."func()"  $go.string."func()"$go.string."func()"func()type.func()30 runtime.algarray@"runtime.gcbits.01P,go.string.hdr."func()"p(go.weak.type.*func()"runtime.zerovaluetype.func()type.func()2go.typelink.func()	func()type.func()2go.string.hdr."writeIEND"  	*go.string."writeIEND"*go.string."writeIEND" writeIEND2go.string.hdr."writeIHDR"  	*go.string."writeIHDR"*go.string."writeIHDR" writeIHDR@go.string.hdr."writePLTEAndTRNS"  8go.string."writePLTEAndTRNS"8go.string."writePLTEAndTRNS"0"writePLTEAndTRNSFgo.string.hdr."func(color.Palette)"  >go.string."func(color.Palette)">go.string."func(color.Palette)"0(func(color.Palette)<type.func(image/color.Palette)i*30 runtime.algarray@"runtime.gcbits.01PFgo.string.hdr."func(color.Palette)"pNgo.weak.type.*func(image/color.Palette)"runtime.zerovalue<type.func(image/color.Palette)<type.func(image/color.Palette)0type.image/color.Palettergo.typelink.func(color.Palette)	func(image/color.Palette)<type.func(image/color.Palette) type.*"".encoderI6V0 runtime.algarray@"runtime.gcbits.01P8go.string.hdr."*png.encoder"p2go.weak.type.**"".encoder"runtime.zerovaluetype."".encoder` type.*"".encoder type.*"".encoder*go.string.hdr."Write">type.func([]uint8) (int, error)Xtype.func(*"".encoder, []uint8) (int, error)&"".(*encoder).Write&"".(*encoder).Write4go.string.hdr."writeChunk""go.importpath."".4type.func([]uint8, string)Ntype.func(*"".encoder, []uint8, string)0"".(*encoder).writeChunk0"".(*encoder).writeChunk4go.string.hdr."writeIDATs""go.importpath."".type.func(),type.func(*"".encoder)0"".(*encoder).writeIDATs0"".(*encoder).writeIDATs2go.string.hdr."writeIEND""go.importpath."".type.func(),type.func(*"".encoder)."".(*encoder).writeIEND."".(*encoder).writeIEND2go.string.hdr."writeIHDR""go.importpath."".type.func(),type.func(*"".encoder)."".(*encoder).writeIHDR."".(*encoder).writeIHDR@go.string.hdr."writePLTEAndTRNS""go.importpath."".<type.func(image/color.Palette)Vtype.func(*"".encoder, image/color.Palette)<"".(*encoder).writePLTEAndTRNS<"".(*encoder).writePLTEAndTRNS2go.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.4912I4go.string.hdr."[5][]uint8"  
   3071 ,go.string."[5][]uint8",go.string."[5][]uint8" [5][]uint8type.[5][]uint8xhAS0 runtime.algarray@&runtime.gcbits.4912P4go.string.hdr."[5][]uint8"p0go.weak.type.*[5][]uint8"runtime.zerovaluetype.[]uint8type.[][]uint8Bgo.typelink.[5][]uint8	[5][]uint8type.[5][]uint86go.string.hdr."*[5][]uint8"  .go.string."*[5][]uint8".go.string."*[5][]uint8" *[5][]uint8 type.*[5][]uint8ZQ60 runtime.algarray@"runtime.gcbits.01P6go.string.hdr."*[5][]uint8"p2go.weak.type.**[5][]uint8"runtime.zerovaluetype.[5][]uint8Fgo.string.hdr."[]png.interlaceScan"  >go.string."[]png.interlaceScan">go.string."[]png.interlaceScan"0([]png.interlaceScan.type.[]"".interlaceScan*T0 runtime.algarray@"runtime.gcbits.01PFgo.string.hdr."[]png.interlaceScan"p@go.weak.type.*[]"".interlaceScan"runtime.zerovalue*type."".interlaceScandgo.typelink.[]png.interlaceScan	[]"".interlaceScan.type.[]"".interlaceScan"type..hashfunc224  ,runtime.memhash_varlentype..eqfunc224  .runtime.memequal_varlentype..alg224  "type..hashfunc224type..eqfunc224Hgo.string.hdr."[7]png.interlaceScan"  @go.string."[7]png.interlaceScan"@go.string."[7]png.interlaceScan"0*[7]png.interlaceScan0type.[7]"".interlaceScan,80type..alg224@runtime.gcbits.PHgo.string.hdr."[7]png.interlaceScan"pBgo.weak.type.*[7]"".interlaceScan"runtime.zerovalue*type."".interlaceScan.type.[]"".interlaceScanhgo.typelink.[7]png.interlaceScan	[7]"".interlaceScan0type.[7]"".interlaceScan.go.string.hdr."runtime"  &go.string."runtime"&go.string."runtime"runtime,go.importpath.runtime.  &go.string."runtime":go.string.hdr."compress/zlib"  
2go.string."compress/zlib"2go.string."compress/zlib" compress/zlib8go.importpath.compress/zlib.  
2go.string."compress/zlib"*go.string.hdr."bufio"  "go.string."bufio""go.string."bufio"bufio(go.importpath.bufio.  "go.string."bufio"$go.string.hdr."io"  go.string."io"go.string."io"io"go.importpath.io.  go.string."io"&go.string.hdr."fmt"  go.string."fmt"go.string."fmt"fmt$go.importpath.fmt.  go.string."fmt"(go.string.hdr."hash"   go.string."hash" go.string."hash"
   3078 hash&go.importpath.hash.   go.string."hash">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."strconv"  &go.string."strconv"&go.string."strconv"strconv,go.importpath.strconv.  &go.string."strconv"4go.string.hdr."hash/crc32"  
   3079 ,go.string."hash/crc32",go.string."hash/crc32" hash/crc322go.importpath.hash/crc32.  
   3080 ,go.string."hash/crc32"*go.string.hdr."image"  "go.string."image""go.string."image"image(go.importpath.image.  "go.string."image"6go.string.hdr."image/color"  .go.string."image/color".go.string."image/color" image/color4go.importpath.image/color.  .go.string."image/color"4"".(*FormatError).Errorf."".(*FormatError).Error>"".(*UnsupportedError).Errorf8"".(*UnsupportedError).Error:type..hash.[2]interface {}f4type..hash.[2]interface {}6type..eq.[2]interface {}f0type..eq.[2]interface {}("".opaquer.Opaquef""".opaquer.Opaque0type..hash."".encoderf*type..hash."".encoder,type..eq."".encoderf&type..eq."".encoder"runtime.zerovaluego13ld