Home | History | Annotate | Download | only in image
      1 !<arch>
      2 __.PKGDEF       0           0     0     644     8992      `
      3 go object darwin amd64 go1.5.1 X:none
      4 build id "494cacb1b6e2bd19fe829949e35654321a4ab81c"
      5 
      6 $$
      7 package gif
      8 	import runtime "runtime"
      9 	import bufio "bufio"
     10 	import bytes "bytes"
     11 	import errors "errors"
     12 	import io "io"
     13 	import lzw "compress/lzw"
     14 	import fmt "fmt"
     15 	import image "image"
     16 	import color "image/color"
     17 	import palette "image/color/palette"
     18 	import draw "image/draw"
     19 	const @"".DisposalNone = 0x1
     20 	const @"".DisposalBackground = 0x2
     21 	const @"".DisposalPrevious = 0x3
     22 	type @"image/color".Color interface { RGBA() (@"image/color".r uint32, @"image/color".g uint32, @"image/color".b uint32, @"image/color".a uint32) }
     23 	type @"image".Point struct { X int; Y int }
     24 	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 }) }
     25 	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 }) }
     26 	func (@"image".p2 @"image".Point) Eq (@"image".q3 @"image".Point) (? bool) { return @"image".p2 == @"image".q3 }
     27 	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 }
     28 	func (@"image".p2 @"image".Point) Mod (@"image".r3 @"image".Rectangle) (? @"image".Point)
     29 	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 }) }
     30 	func (@"image".p2 @"image".Point) String () (? string)
     31 	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 }) }
     32 	type @"image/color".Model interface { Convert(@"image/color".c @"image/color".Color) (? @"image/color".Color) }
     33 	type @"image".Rectangle struct { Min @"image".Point; Max @"image".Point }
     34 	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 }) }) }
     35 	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 }
     36 	func (@"image".r2 @"image".Rectangle) Bounds () (? @"image".Rectangle) { return @"image".r2 }
     37 	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 }
     38 	func (@"image".r2 @"image".Rectangle) ColorModel () (? @"image/color".Model) { return @"image/color".Alpha16Model }
     39 	func (@"image".r2 @"image".Rectangle) Dx () (? int) { return @"image".r2.Max.X - @"image".r2.Min.X }
     40 	func (@"image".r2 @"image".Rectangle) Dy () (? int) { return @"image".r2.Max.Y - @"image".r2.Min.Y }
     41 	func (@"image".r2 @"image".Rectangle) Empty () (? bool) { return @"image".r2.Min.X >= @"image".r2.Max.X || @"image".r2.Min.Y >= @"image".r2.Max.Y }
     42 	func (@"image".r2 @"image".Rectangle) Eq (@"image".s3 @"image".Rectangle) (? bool) { return @"image".r2 == @"image".s3 || @"image".r2.Empty() && @"image".s3.Empty() }
     43 	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 }
     44 	func (@"image".r2 @"image".Rectangle) Inset (@"image".n3 int) (? @"image".Rectangle)
     45 	func (@"image".r2 @"image".Rectangle) Intersect (@"image".s3 @"image".Rectangle) (? @"image".Rectangle)
     46 	func (@"image".r2 @"image".Rectangle) Overlaps (@"image".s3 @"image".Rectangle) (? bool)
     47 	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 }) }
     48 	func (@"image".r2 @"image".Rectangle) String () (? string)
     49 	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 }) }) }
     50 	func (@"image".r2 @"image".Rectangle) Union (@"image".s3 @"image".Rectangle) (? @"image".Rectangle)
     51 	type @"image".Image interface { At(@"image".x int, @"image".y int) (? @"image/color".Color); Bounds() (? @"image".Rectangle); ColorModel() (? @"image/color".Model) }
     52 	type @"io".Reader interface { Read(@"io".p []byte) (@"io".n int, @"io".err error) }
     53 	func @"".Decode (@"".r3 @"io".Reader) (? @"image".Image, ? error)
     54 	type @"image/color".Palette []@"image/color".Color
     55 	func (@"image/color".p2 @"image/color".Palette "esc:0x2a") Convert (@"image/color".c3 @"image/color".Color) (? @"image/color".Color)
     56 	func (@"image/color".p2 @"image/color".Palette "esc:0x9") Index (@"image/color".c3 @"image/color".Color) (? int)
     57 	type @"image".Paletted struct { Pix []uint8; Stride int; Rect @"image".Rectangle; Palette @"image/color".Palette }
     58 	func (@"image".p2 *@"image".Paletted "esc:0x32") At (@"image".x3 int, @"image".y4 int) (? @"image/color".Color)
     59 	func (@"image".p2 *@"image".Paletted "esc:0x1") Bounds () (? @"image".Rectangle) { return @"image".p2.Rect }
     60 	func (@"image".p2 *@"image".Paletted "esc:0x1") ColorIndexAt (@"image".x3 int, @"image".y4 int) (? uint8)
     61 	func (@"image".p2 *@"image".Paletted "esc:0x22") ColorModel () (? @"image/color".Model) { return @"image".p2.Palette }
     62 	func (@"image".p2 *@"image".Paletted "esc:0x9") Opaque () (? bool)
     63 	func (@"image".p2 *@"image".Paletted "esc:0x1") PixOffset (@"image".x3 int, @"image".y4 int) (? int) { return (@"image".y4 - @"image".p2.Rect.Min.Y) * @"image".p2.Stride + (@"image".x3 - @"image".p2.Rect.Min.X) * 0x1 }
     64 	func (@"image".p1 *@"image".Paletted "esc:0x9") Set (@"image".x2 int, @"image".y3 int, @"image".c4 @"image/color".Color)
     65 	func (@"image".p1 *@"image".Paletted "esc:0x1") SetColorIndex (@"image".x2 int, @"image".y3 int, @"image".index4 uint8)
     66 	func (@"image".p2 *@"image".Paletted "esc:0xa") SubImage (@"image".r3 @"image".Rectangle) (? @"image".Image)
     67 	type @"image".Config struct { ColorModel @"image/color".Model; Width int; Height int }
     68 	type @"".GIF struct { Image []*@"image".Paletted; Delay []int; LoopCount int; Disposal []byte; Config @"image".Config; BackgroundIndex byte }
     69 	func @"".DecodeAll (@"".r3 @"io".Reader) (? *@"".GIF, ? error)
     70 	func @"".DecodeConfig (@"".r3 @"io".Reader) (? @"image".Config, ? error)
     71 	type @"image/draw".Quantizer interface { Quantize(@"image/draw".p @"image/color".Palette, @"image/draw".m @"image".Image) (? @"image/color".Palette) }
     72 	type @"image/draw".Image interface { At(@"image".x int, @"image".y int) (? @"image/color".Color); Bounds() (? @"image".Rectangle); ColorModel() (? @"image/color".Model); Set(@"image/draw".x int, @"image/draw".y int, @"image/draw".c @"image/color".Color) }
     73 	type @"image/draw".Drawer interface { Draw(@"image/draw".dst @"image/draw".Image, @"image/draw".r @"image".Rectangle, @"image/draw".src @"image".Image, @"image/draw".sp @"image".Point) }
     74 	type @"".Options struct { NumColors int; Quantizer @"image/draw".Quantizer; Drawer @"image/draw".Drawer }
     75 	type @"io".Writer interface { Write(@"io".p []byte) (@"io".n int, @"io".err error) }
     76 	func @"".EncodeAll (@"".w2 @"io".Writer, @"".g3 *@"".GIF "esc:0x2a") (? error)
     77 	func @"".Encode (@"".w2 @"io".Writer, @"".m3 @"image".Image, @"".o4 *@"".Options "esc:0x9") (? error)
     78 	func @"".init ()
     79 	type @"image/color".Alpha16 struct { A uint16 }
     80 	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 }
     81 	var @"image/color".Opaque @"image/color".Alpha16
     82 	var @"image/color".Transparent @"image/color".Alpha16
     83 	var @"image/color".Alpha16Model @"image/color".Model
     84 
     85 $$
     86 _go_.o          0           0     0     644     155659    `
     87 go object darwin amd64 go1.5.1 X:none
     88 
     89 !
     90 go13ldbufio.acompress/lzw.aerrors.a
     91 fmt.aimage.aimage/color.aio.abytes.a*image/color/palette.aimage/draw.a,"".(*blockReader).ReadeH%HD$H;AHH$1H$H$Hh(Ht,H$Hh(H$Hh0H$HH$Hu&H$1H$H$HHhHHHHhHl$`H,$HL$XHY(H$\$H\$GHT$HL$HHT$hHP(HL$p=`HH0Hh(Ht,H$Hh(H$Hh0H$H@uqH-Hh(H-=u:Hh0H$Ht Hh(H$Hh0H$HL@0L$Hl$H$@HHH8HHH$HXH$HP H$=,HHHH$H|$HHHHHOH\$HH$HKHL$H$HH^H|$HHHKHOHKHOH$HT$0HL$8HHT$hHP(HL$p=VHH0Hh(Ht,H$Hh(H$Hh0H$HH$H$H$H$HHPHHHh H$H$HH$H9}HHD$PH$H4$HT$xHT$HD$H$HD$PHt}HD$HLALI L9wdLQI)I)ItMLALI =u&LQH$1H$H$HHiH,$LT$HD$H|L@0L$HL$H$i"L@L$HL$H$zL@0L$HL$t$GH$Z\*
     98 6runtime.writeBarrierEnabledio.EOFio.EOF6runtime.writeBarrierEnabled
    101 .runtime.writebarrierptr6runtime.writeBarrierEnabledtype.io.Reader
    102 runtime.convI2I
    103 
    104 io.ReadFull
    105 6runtime.writeBarrierEnabled
    107 runtime.memmove6runtime.writeBarrierEnabled
    108 .runtime.writebarrierptr
    109 $runtime.panicslice
    110 .runtime.writebarrierptr
    111 .runtime.writebarrierptr
    112 $runtime.panicslice
    113 .runtime.writebarrierptr
    114 0runtime.morestack_noctxtp"".autotmp_0012type.int"".autotmp_0011_type.[]uint8"".autotmp_0010type.[]uint8"".autotmp_0009type.error"".autotmp_0008type.error"".autotmp_0007/type.[]uint8"".autotmp_0006type.int"".autotmp_0005type.int"".ntype.int"".blockLentype.uint8"".~r2Ptype.error"".~r1@type.int"".ptype.[]uint8"".b(type.*"".blockReader\O3V	9
    117 ,&b
    118 ,6Z,A"-Tgclocalsb60dc0a6046c556b02baa766a3fd5a27Tgclocals63ba92e6c81d2d7bf2207e4076c8b23c^prebuilts/go/darwin-x86/src/image/gif/reader.go("".(*decoder).decodeZZeH%H$H;AqH1H$H$1H$H$HH$H$H\$H$H\$H$H\$\$ H$H$H$H$H$H=uHKH$H$L$HL$HT$H$@H$8HtH$H$H$t 1H$H$HI
    120 IIjH$H,$H$HX(H$\$HL$Ht$H$ H$HtH$H$H!uSH,$L$HL$HT$H$ H$HPH$H$H,H,$H$Ht$Ht$pHT$Hl$H$`H$XHtH$H$HYBH<D$@H$iB@l$Ht$HT$HL$ H|$(H$XH\$0H$`H\$pHnH$(HSHH$0HKPH$ ="Hs@Ht&H$H$`H$HH$]D
H\$pHkHH$[CH9
|$@H$H
HkHH$HSPHkXH$1HHH$(H$HH)H~SHH$H$ H|$H|$H$0HL$HD$ H$H|$(H\$0H$(HL$8HH$11HIH$0H9H9H)I)IH$ ItHkIHl$LD$LL$H$H\$ HT$(H$H\$0H$0H$1HH9WHH$ H$(H\$pH.H$@HKHH$HHCPH$8=HS@1\$D\$E\$F\$GHH$HH\$HH\$H\$DH\$HD$ HT$(HL$0H$kCH\$pHHjH{@HsHHkPH$0HH$ H$(H90HHH$xHH$=
    132 HKH$H
    133 HHkH$H,$H$HX(\$HHT$Hl$H$`H$XHtH$H$H2	L$A%	HH$H|$HH1HH$HH$HHL$Hl$H-H,$H$H$H$H1H9HH$H$hH$H$pHL$HD$\$AH\$HL$ HD$(H$HD$H$HHY $H\$HH$H$H\$H$H\$H\$HH$HKHL$Ht$pH|$HHHNHOHNHOHL$0HT$8H$`H$XHH-H9ulH$HT$H-Hl$H-Hl$H$`H$X\$ t,HH$HH$HH$H$HH$H|HHdHHH$PHT$H$XHL$H$`HD$H$H$H$H[(HL$ HT$(Ht$0H$0HH-H94H$(H$Ht$H-Hl$H-Hl$H$0H$(\$ H$HHHH$HHH$H$PHT$H$XHL$H$`HD$HL$ HT$(Ht$0H$PHH-H9H$HH$Ht$H-Hl$H-Hl$H$PH$HL$LL$p\$ IiHHyIMAIiH$`1L$XH$PL9}J*HIiH@H9|,HH$HH$HHHL9|AZBH@tL$L$LL$pIIIHHH9IH=LIj8Hl$`IR`IjhIJpHHH9IjhHHl$`H+AjA@l$BIRxIIHHH9w3IHl$B@+IB81AjDI]AUHH$HT$HD$HL$Hl$ L$HT$(Hl$0HL$8It_HHl$PHIIH$=u	IRx`MBxL$HT$L$H$HD$P4AHH$HT$HD$HL$Hl$ L$HT$(Hl$0HL$8ItYHHl$PHIjhIJpH$=u	IR`MB`L$HT$L$H$HD$P[AH$LL$L$HH$HT$HD$HL$Hl$ L$LL$pHT$(Hl$0HL$8ItjHHl$XHIIH$=uIML$HT$L$LL$pH$HD$XOAH$HHtH$H$HHH$HH$HB*H-H9uLH$(H$Ht$H-Hl$H-Hl$H$0H$(\$ H$(HtH$H$HHH$HH$H}HHH$HH\$HH\$HD$;E!L$C1H$H$H$HH$H$H$HH$H\$CH\$HD$HL$HD$ H$H$HH$=u|HCHH$HD$*H$H\$H$H\$H$H\$ HL$(HT$0H$H$H$H$HLCL$HD$q$LCL$HL$LC@L$HT$cLC@L$Ht$H$XHiHHHH$H$1H$H$HH$HL$H$H$HiH$=H)H$H
1H9tFH$H$H$H$H$H$H$HHH$HH\$HH\$HL$H$Hl$H$ZHiHHt#LF@LD$Hl$H-H,$;uYHHu,HH$HH$H1H$H$H\$C1H$H$H$HH$H$H$HH$H\$CH\$HD$HL$HD$ H$H$HH$=u|HCHH$HD$H$H\$H$H\$H$H\$ HL$(HT$0H$H$H$H$HLCL$HD$qLCL$HL$xH$H$H$H$H$HH$1H9tH[H-H9HHXH9H$H1H9tVH$H$Ht<H$HH$=u	HKLCL$HL$HH$HH\$HH\$HD$xHT$HH}	HD$HHH$HL$HHD$HD$hHD$xHH$HL$HL$LD$Ht$ Hl$(H$H$H$h1HL$L$hH$H$pH$H$xH$H$H$H$H$H$H\$xHt,H$hH\$Hl$H-H,$HD$h?11j
    147 type."".reader
    148 $runtime.assertI2I26runtime.writeBarrierEnabled
    149 V"".(*decoder).readHeaderAndScreenDescriptor
    150 &runtime.deferreturn
    151 &runtime.deferreturn
    152 &runtime.deferreturn
    153 6"".(*decoder).readExtension
    154 &runtime.deferreturn
    155 H"".(*decoder).newImageFromDescriptor	
    156 &runtime.deferreturn
    157 
    158 8"".(*decoder).readColorTable6runtime.writeBarrierEnabled
    161 &runtime.deferreturn0type.image/color.Palette
    162 &runtime.growslice_n,type.image/color.Color
    163 ,runtime.typedslicecopy6runtime.writeBarrierEnabled*type.image/color.RGBA,type.image/color.ColorTgo.itab.image/color.RGBA.image/color.Color
    164 runtime.convT2I6runtime.writeBarrierEnabled
    165 &runtime.deferreturn&type."".blockReader
    166 "runtime.newobject
    167  runtime.duffzerotype."".reader
    168 (runtime.typedmemmoveBgo.itab.*"".blockReader.io.Reader
    169 ,compress/lzw.NewReader
    170 "runtime.deferproctype.io.Reader
    171 runtime.convI2I
    172 io.ReadFull &io.ErrUnexpectedEOF &io.ErrUnexpectedEOF &io.ErrUnexpectedEOF 
    173 runtime.ifaceeq!"".errNotEnough!"".errNotEnough!
    174 &runtime.deferreturn"
    175 &runtime.deferreturn$$io.EOF%io.EOF%io.EOF%
    179 runtime.ifaceeq'
    180 ,"".(*blockReader).Read(io.EOF)io.EOF)io.EOF)
    184 runtime.ifaceeq+"".errBadPixel+"".errBadPixel+
    185 &runtime.deferreturn,
    186 "".uninterlace-6runtime.writeBarrierEnabled0type.[]uint80
    187 "runtime.growslice16runtime.writeBarrierEnabled1
    188 .runtime.writebarrierptr2type.[]int3
    189 "runtime.growslice46runtime.writeBarrierEnabled4
    190 .runtime.writebarrierptr5
    191 .runtime.writebarrierptr5,type.[]*image.Paletted5
    192 "runtime.growslice76runtime.writeBarrierEnabled7
    193 .runtime.writebarrierptr8
    194 &runtime.deferreturn9"".errTooMuch9"".errTooMuch9
    195 &runtime.deferreturn9&io.ErrUnexpectedEOF:&io.ErrUnexpectedEOF:&io.ErrUnexpectedEOF:
    196 runtime.ifaceeq;
    197 &runtime.deferreturn<"".errTooMuch<"".errTooMuch<
    198 &runtime.deferreturn<
    199 &runtime.deferreturn=(type.*"".blockReader=type.io.Reader=Bgo.itab.*"".blockReader.io.Reader=
    200  runtime.typ2Itab?type.uint8?
    201 runtime.convT2E@6runtime.writeBarrierEnabled@lgo.string."gif: pixel size in decode out of range: %d"A
    202 fmt.ErrorfB
    203 &runtime.deferreturnB
    204 .runtime.writebarrierptrC
    205 .runtime.writebarrierptrC
    206 $runtime.panicindexD
    207 .runtime.writebarrierptrD
    208 $runtime.panicsliceD
    209 $runtime.panicsliceD
    210 .runtime.writebarrierptrE>go.string."gif: no color table"F.type.errors.errorStringF
    211 "runtime.newobjectG6runtime.writeBarrierEnabledGBgo.itab.*errors.errorString.errorH
    212 &runtime.deferreturnH0type.*errors.errorStringHtype.errorIBgo.itab.*errors.errorString.errorI
    213  runtime.typ2ItabI
    214 .runtime.writebarrierptrJ0type.image/color.PaletteJ
    215 (runtime.typedmemmoveJ&io.ErrUnexpectedEOFK&io.ErrUnexpectedEOFK
    216 &runtime.deferreturnK
    217 &runtime.deferreturnMtype.uint8M
    218 runtime.convT2EN6runtime.writeBarrierEnabledNVgo.string."gif: unknown block type: 0x%.2x"O
    219 fmt.ErrorfP
    220 &runtime.deferreturnP
    221 .runtime.writebarrierptrQ
    222 .runtime.writebarrierptrR$type.*bufio.ReaderS>go.itab.*bufio.Reader."".readerS6runtime.writeBarrierEnabledT
    223 .runtime.writebarrierptrT$type.*bufio.ReaderTtype."".readerU>go.itab.*bufio.Reader."".readerU
    224  runtime.typ2ItabU"type.bufio.ReaderU
    225 "runtime.newobjectVtype.[]uint8V
    226 "runtime.makesliceW
    227  runtime.duffzeroY"type.bufio.ReaderY
    228 (runtime.typedmemmoveZ
    229 0runtime.morestack_noctxt`"".autotmp_0063"type.interface {}"".autotmp_0062(type.[1]interface {}"".autotmp_0060*type.*[1]interface {}"".autotmp_0059&type.[]interface {}"".autotmp_0058type.uint8"".autotmp_0057type.int"".autotmp_0056type.uint8"".autotmp_0055type.*uint8"".autotmp_0053	type.int"".autotmp_0052type.*uint8"".autotmp_0051(type.*"".blockReader"".autotmp_0050"type.interface {}"".autotmp_0049(type.[1]interface {}"".autotmp_0046&type.[]interface {}"".autotmp_00440type.image/color.Palette"".autotmp_00430type.[]image/color.Color"".autotmp_0042type.*uint8"".autotmp_0041type.error"".autotmp_00400type.*errors.errorString"".autotmp_00390type.image/color.Palette"".autotmp_0038	type.uint8"".autotmp_0036$type.*bufio.Reader"".autotmp_0035type.error"".autotmp_0034type.uint8"".autotmp_0033type.int"".autotmp_0031type.[]uint8"".autotmp_0030type.int"".autotmp_0029type.[]uint8"".autotmp_0028type.[]uint8"".autotmp_0027(type.*"".blockReader"".autotmp_0026type.error"".autotmp_0025	type.uint8"".autotmp_0024	*type.image/color.RGBA"".autotmp_00230type.image/color.Palette"".autotmp_0022type.int"".autotmp_00210type.*errors.errorString"".autotmp_0020$type.*bufio.Reader"".autotmp_0019"type.bufio.Reader"".autotmp_0018type.[]uint8"".autotmp_0016$type.*bufio.Reader"".autotmp_0015type."".reader"".~r0type.errorerrors.text2type.stringbufio.r3type.io.Readerbufio.buf2type.[]uint8bufio.b1	$type.*bufio.Readerbufio.r6	$type.*bufio.Readerbufio.size3	type.intbufio.rd2type.io.Readerbufio.rd2type.io.Reader"".errtype.error"".errtype.error"".lzwr$type.io.ReadCloser
    234 "".br(type.*"".blockReader"".litWidth	type.uint8*"".useLocalColorTable	type.bool"".errtype.error"".m	(type.*image.Paletted"".errtype.error"".errtype.error
    238 "".rrtype."".reader"".~r2@type.error"".configOnly0type.bool"".rtype.io.Reader"".d type.*"".decoder"
    241 )
    243 u
    245 W
    247 a
    249 
    251 
    253 
    255 
    257 
    259 
    261 +
    263 
    265 +
    267 
    269 
    271 
    273 
    275 
    277 
    279 -4w
    281 +
    282  J5	-{&3Mse=L,0
,?4:,X,#2	!
    289 (
, 
    291 	x[
    292 			/
    293 [c>=\_!+
    295 	b&C%\&-%1
    296 mL#} Ar/%
    297 

'_
1J>	(r/'..0Tgclocals3d3edf73b86c1272f6a698b794fa9cd4Tgclocalsd88848d076a954f8084ef9880984dbfe^prebuilts/go/darwin-x86/src/image/gif/reader.goV"".(*decoder).readHeaderAndScreenDescriptoreH%HD$H;AHH$1H$H$HHHHH$
H$H$HH$H|$HHHHHOH\$HH$HKHL$H$H\$H$H\$H$H\$ HD$0HL$8HL$HHD$@HtH$H$HH$HHHHHH$H$HD$H$HT$H$HL$H$HT$ HL$(HLHL$XHHHT$P=HPHHPHHHiHT$PH$HL$XHL$H-Hl$HD$H$\$ &HHHX HHHX(HHH@h@H$L$HT$HL$HD$ Ht$(Ht$@H\$0H\$HH$HH$HKPH$HCXH$=uAHSHHtH$H\$HH$H1H$H$HLCHL$HT$Ht$@vHqHPHT$PHHHL$XHu9H$HL$H-Hl$HD$H$\$ 1H\$pH\$xH\$pHH$H$H$HH$HD$H|$HD$HD$HL$HD$ H$HL$`HHD$h=ufHCHH$HD$H$H\$H$H\$H$H\$ HL$(HD$0H$H$HLCL$HD$%>L@L$HT$H$H1bJ*
    306 type.io.Reader
    307 runtime.convI2I
    308 io.ReadFull
    309 2runtime.slicebytetostring6runtime.writeBarrierEnabled$go.string."GIF87a"
    310  runtime.eqstring	
    311 8"".(*decoder).readColorTable6runtime.writeBarrierEnabled
    314 .runtime.writebarrierptr
$go.string."GIF89a"
    317  runtime.eqstringtype.string
    318 runtime.convT2E6runtime.writeBarrierEnabledTgo.string."gif: can't recognize format %s"
    319 fmt.Errorf
    320 .runtime.writebarrierptr
    321 .runtime.writebarrierptr
    322 0runtime.morestack_noctxt0"".autotmp_00930type.image/color.Palette"".autotmp_0092"type.interface {}"".autotmp_0091(type.[1]interface {}"".autotmp_0088_&type.[]interface {}"".autotmp_0087type.string"".autotmp_0086type.string"".autotmp_0084type.[]uint8"".autotmp_0083/type.[]uint8"".errtype.error"".~r0type.error"".d type.*"".decoderD
    325 b9_u	 [,ASl45ITgclocalsdea2c01c674be151aeaf6fe41713b420Tgclocals183b8f1b0610343d505d43090582d42a^prebuilts/go/darwin-x86/src/image/gif/reader.go8"".(*decoder).readColorTableeH%HD$H;AHH$1H$H$H$ 1H$(H$0$HHHH@cHHHl$HHkH@HH,HHH$H$H$HH$H|$H
    329 HHJHOH\$HH$HKHL$H$H\$H$H\$H$H\$ HD$HHL$0HT$8HT$xHL$pH"1H$H$H$HH$H$H$H$HT$HL$HD$H$H$HH$=HCHH$HD$"H$H\$H$H\$H$H\$ HL$(HD$01H$H$H$ H$(H$0HLCL$HD$mHH$HD$HD$H$Ht$Hl$ HL$(1H$H$H$H$1H\$`Hl$`H9ZHL$hHL$X1\$D\$E\$F\$GHHHHHHl
]\$DHHHHiHl
]\$EHHD$PHHHH=3Hl]\$FD$GHH$HH\$HH\$H\$DH\$HD$ H$HL$(HD$0H$Hl$XL$L9HHH$HH$=umHCHD$PHHL$hHHl$`H9H$H$H$H$H$H$ 1H$(H$0HLCL$HD$H$xGE1.
    342 type.io.Reader
    343 runtime.convI2I
    344 io.ReadFull
    345 runtime.convI2E6runtime.writeBarrierEnabled\go.string."gif: short read on color table: %s"
    346 fmt.Errorf	
    347 .runtime.writebarrierptr	0type.image/color.Palette
    348 
    349 "runtime.makeslice*type.image/color.RGBA,type.image/color.ColorTgo.itab.image/color.RGBA.image/color.Color
    350 runtime.convT2I6runtime.writeBarrierEnabled
    351 .runtime.writebarrierptr
    352 $runtime.panicindex
    353 $runtime.panicindex
    354 $runtime.panicindex
    355 $runtime.panicindex
    356 $runtime.panicslice
    357 0runtime.morestack_noctxtp$"".autotmp_0107type.int"".autotmp_0106type.int"".autotmp_0105"type.interface {}"".autotmp_0104(type.[1]interface {}"".autotmp_0101_&type.[]interface {}"".autotmp_0100type.int"".autotmp_0099*type.image/color.RGBA"".autotmp_0096/type.[]uint8"".autotmp_0095type.int"".itype.int"".p0type.image/color.Palette"".jtype.int"".errtype.error"".ntype.int"".~r2Ptype.error"".~r1 0type.image/color.Palette"".fieldstype.uint8"".d type.*"".decoder(o	NS&K'	J#,AuvN&PTgclocals4a5c83272286258cf484ac950366f973Tgclocals3b28b4c862b5286e116b69bf625e4d40^prebuilts/go/darwin-x86/src/image/gif/reader.go6"".(*decoder).readExtensioneH%H$pH;AYH1H$ H$(H$H'HHkH$H,$H$HY(H$\$HHD$HL$H$H$HtH$ H$(H1\$F#@H
HHL$HHHHHHvH$H$H$HH$H|$H
    365 HHJHOH\$HH$HKHL$H$H\$H$H\$H$H\$ t$FH$HL$HHD$0Hl$8Hl$xHD$pHtH$ H$(H@&HHHHHgHHH$H,$H$HT$H$HL$H$HL$H$HD$ H$HH$HD$H-Hl$HD$H$\$ teH$H$HD$HL$Hl$Hl$hHHL$`HuHu%uHH	HZ0H$H$HD$HL$Hl$H$HtH$HtH$ H$(HH$ H$(HEyEj@u+H$HL$HD$H$ H$(H@t$G1H$H$H$HH$H$H$HH$H\$GH\$HD$HL$HD$ H$H$HH$=ufHCHH$HD$H$H\$H$H\$H$H\$ HL$(HD$0H$ H$(HLCL$HD$HtpH
    374 HjH$H,$H$HY(t$FH$\$HD$Hl$Hl$XHD$PHtH$ H$(HHf*
    375 type.io.Reader
    376 runtime.convI2I
    377 io.ReadFull
    378 8runtime.slicebytetostringtmp	.go.string."NETSCAPE2.0"
    379 
    380  runtime.eqstring
    381 
    382 ."".(*decoder).readBlock
    384 ."".(*decoder).readBlock
    386 $runtime.panicslice
    387 $runtime.panicslice
    388 @"".(*decoder).readGraphicControltype.uint8
    389 runtime.convT2E6runtime.writeBarrierEnabledRgo.string."gif: unknown extension 0x%.2x"
    390 fmt.Errorf
    391 .runtime.writebarrierptr
    392 0runtime.morestack_noctxt0""".autotmp_0123type.string"".autotmp_0122"type.interface {}"".autotmp_0121(type.[1]interface {}"".autotmp_0118_&type.[]interface {}"".autotmp_0116type.[]uint8"".autotmp_0115/type.[]uint8"".autotmp_0114type.error"".autotmp_0113type.uint8"".errtype.error"".errtype.error"".errtype.error"".errtype.error"".sizetype.int"".errtype.error"".extensiontype.uint8"".~r0type.error"".d type.*"".decoderj"\"4U
    401 
    402 %(
+		H&eAr4EhTgclocals197df35d123b8543b316c6de2f24053aTgclocalsbc83df7e48bd599d1f560b18fba4ef8b^prebuilts/go/darwin-x86/src/image/gif/reader.go@"".(*decoder).readGraphicControl		eH%HD$H;AEHH$1H$H$HHHHH$H$H$HH$H|$HHHHHOH\$HH$HKHL$H$H\$H$H\$H$H\$ H$HL$0HT$8H1H\$`H\$hH\$`HHD$xH$H\$pHL$@H$HT$HHT$HL$HD$H\$pHL$PHHD$X=u`HCHH$HD$#H\$pH\$H\$xH\$H$H\$ HL$(HD$0H$H$HLCL$HD$.HH@@hAHH	HX8HHt@hCH@hD1H$H$H
    412 type.io.Reader
    413 runtime.convI2I
    414 io.ReadFull
    415 runtime.convI2E6runtime.writeBarrierEnabled^go.string."gif: can't read graphic control: %s"
    416 fmt.Errorf
    417 .runtime.writebarrierptr	
    418 0runtime.morestack_noctxt0"".autotmp_0132"type.interface {}"".autotmp_0131(type.[1]interface {}"".autotmp_0128_&type.[]interface {}"".autotmp_0126/type.[]uint8"".errtype.error"".~r0type.error"".d type.*"".decoder(!89
    421 Aic4Tgclocals197df35d123b8543b316c6de2f24053aTgclocals5dedde3a053b6c3579cc8daedaf66ef9^prebuilts/go/darwin-x86/src/image/gif/reader.goH"".(*decoder).newImageFromDescriptoreH%H$8H;AhHHH$P1H$`H$hHH3HHH$8	H$@H$0HH$H|$HHHHHOH\$HH$HKHL$H$0H\$H$8H\$H$@H\$ H$PHL$0HT$8H$H$H1H$H$H$HH$ H$(H$H$HT$HL$HD$H$H$HH$=urHCHH$HD$$H$H\$H$ H\$H$(H\$ HL$(HD$0H$XH$`H$hHHLCL$HD${HHHHHHHHHHH@hBIIHHHL1L9~	HHHH9~	HHH1IH$IH$H$IH$HHH H@(111H9~	HHHH9~	HHH1H$(H$0H$8H$@L$L$L$LL$L$LD$H$ H|$Ht$hHt$ HT$pHT$(HL$xHL$0H$HD$8H$L$L$L$ H\$@H$hH\$HH$pHT$PH$xHt$XH$H$HL$PL$XL$`H$HH$hHQH@HH*H9;H^HjH9*HHHHHH)H9
HXHiH91H$H$H$L$L$LL$H$H)H$H$L$L$L$L$LL$L$L)1H$H$H$HHL$`HHHH$HD$HD$H\$H$H\$ H$H\$(H$HH$HD$H$H$HhH$HhH$=H(Hl$`HhH$Hh H$Hh(H$Hh0H$Hh8H$HhHH$HhPH$=u&Hh@H$X1H$`H$hHHL@@L$Hl$H$H$Hl$H$AHH$H$*1H$H$HH$HD$H$H$HhH$=utH(H$H1H9t,H$H$XH$`H$hHHHH$HH\$HH\$HD$H$Hl$H$ts:
    432 type.io.Reader
    433 runtime.convI2I
    434 io.ReadFull
    435 runtime.convI2E6runtime.writeBarrierEnabled`go.string."gif: can't read image descriptor: %s"
    436 fmt.Errorf
    437 .runtime.writebarrierptr
    438 2image.Rectangle.Intersecttype.[]uint8
    439 "runtime.makeslice&type.image.Paletted
    440 "runtime.newobject6runtime.writeBarrierEnabled6runtime.writeBarrierEnabled
    441 .runtime.writebarrierptr
    442 .runtime.writebarrierptrlgo.string."gif: frame bounds larger than image bounds".type.errors.errorString
    443 "runtime.newobject6runtime.writeBarrierEnabledBgo.itab.*errors.errorString.error0type.*errors.errorStringtype.errorBgo.itab.*errors.errorString.error
    444  runtime.typ2Itab
    445 .runtime.writebarrierptr
    446 0runtime.morestack_noctxt@	R"".autotmp_0168(type.*image.Paletted"".autotmp_0167(type.*image.Paletted"".autotmp_0166type.int"".autotmp_0165type.int"".autotmp_0164type.int"".autotmp_0163type.int"".autotmp_0162type.int"".autotmp_0160type.error"".autotmp_01590type.*errors.errorString"".autotmp_0158"type.*image.Point"".autotmp_0157"type.*image.Point"".autotmp_0152(type.image.Rectangle"".autotmp_0151type.int"".autotmp_0150type.int"".autotmp_0149type.int"".autotmp_0148type.int"".autotmp_0147(type.image.Rectangle"".autotmp_0146type.int"".autotmp_0145type.int"".autotmp_0142"type.interface {}"".autotmp_0141(type.[1]interface {}"".autotmp_0138_&type.[]interface {}"".autotmp_01370type.*errors.errorString"".autotmp_0136(type.image.Rectangle"".autotmp_0135(type.image.Rectangle"".autotmp_0133/type.[]uint8image.r2(type.image.Rectangleimage.r2(type.image.Rectangleimage.pix6type.[]uint8image.w4type.intimage.p30type.image/color.Paletteimage.r2(type.image.Rectangle"".~r0type.errorerrors.text2type.string"".~r0(type.image.Rectangle"".~r0(type.image.Rectangle"".bounds(type.image.Rectangle"".errtype.error"".~r1 type.error"".~r0(type.*image.Paletted"".d type.*"".decoder6"							sJ<
    454 ^
@A~r@7JPTgclocalscffcb3fa139580cffca8ac28af4ff263Tgclocalsbb3482883cf68f291069fa1de46f6560^prebuilts/go/darwin-x86/src/image/gif/reader.go."".(*decoder).readBlockeH%H;aHx1H$H$H$HQHHkHl$XH,$HL$PHY(H$\$HL$HT$HT$HHL$@HHHHHHH\$hHD$pHl$`HH$HH|$HHHKHOH\$HH$HKHL$H\$`H\$H\$hH\$H\$pH\$ HT$(HL$0HD$8H$H$H$HxE[CH$H$H$Hxc
    462 type.io.Reader
    463 runtime.convI2I
    464 io.ReadFull
    465 $runtime.panicslice
    466 0runtime.morestack_noctxt@
    467 "".autotmp_0172/type.[]uint8"".errotype.error"".~r1 type.error"".~r0type.int"".d type.*"".decoder&6")I!
T8|Tgclocalsf47057354ec566066f8688a4970cff5aTgclocalsac1513c540ef28dcd9fb2a42fdde591a^prebuilts/go/darwin-x86/src/image/gif/reader.go"".uninterlaceeH%H$H;AHL$1H$H$H$ 1IbIH Ip(Ix0Ih8H$H$H$H$H$H$H$H$H)1Ip IH(IP0I@8H$H$H$H$H$H$H$H$H)HH|$PHD$HHHHH$HD$HD$HD$PH\$H$H\$ H$H\$(H$ 1LH
HH$E1H$HL$XL$Hl$XI9L$II0IHLL$`Ht$xHt$hH$HHHl$pHHl$0Hl$HH9`HHHL$@L$ L9=H94L$H)I)ItM	H$IMLIIHHT$8LKM9L9LI)I)ItMH$pL$xL$L$PL$XLL$`L$hL$8L$HLL$0M9}LH$@H4$H$(HT$HD$LL$`L$H\$hHD$PHT$8HHL$@HHHHHt$0HIIHl$XI99H$H$HkH$ HkH$=uH+HH$Hl$AA<
    478 type.[]uint8
    479 "runtime.makeslice"".interlacing"".interlacing "".interlacing
    481 runtime.memmove
    483 $runtime.panicslice
    485 $runtime.panicslice6runtime.writeBarrierEnabled
    486 .runtime.writebarrierptr
    487 0runtime.morestack_noctxt6"".autotmp_0190type.[]uint8"".autotmp_0189type.[]uint8"".autotmp_0188*type."".interlaceScan"".autotmp_0187,type.*"".interlaceScan"".autotmp_0186type.int"".autotmp_0185type.int"".autotmp_0184type.int"".autotmp_0183type.int"".autotmp_0182type.int"".autotmp_0180type.int"".autotmp_0179type.int"".autotmp_0178type.[]uint8"".autotmp_0176_type.[]uint8"".autotmp_0175type.int"".autotmp_0174/.type.[]"".interlaceScanimage.r2(type.image.Rectangle"".~r0(type.image.Rectangleimage.r2(type.image.Rectangle"".~r0(type.image.Rectangle"".ytype.int"".nOffsettype.int"".pass*type."".interlaceScan"".offsettype.int
    490 "".dytype.int
    491 "".dxtype.int"".nPixtype.[]uint8"".m(type.*image.Paletted"6^*_UZv
4CTgclocals51fa0e13d53d6bad7f86670d3edaeac6Tgclocalsd4dddc23ef7d3df99a96f541935a55f7^prebuilts/go/darwin-x86/src/image/gif/reader.go"".DecodeeH%H;aHH1H\$`H\$h1H\$pH\$xHH$HD$HD$0H$H\$PH\$H\$XH\$D$HD$ HL$(HL$@HD$8Ht1H\$`H\$hHD$pHL$xHHH1H9tEH\$0HHHHvH*Hl$hHD$`1H\$pH\$xHHHH$HH\$HH\$HD$
    495 dtype."".decoderv
    496 "runtime.newobject
    497 ("".(*decoder).decodeFgo.itab.*image.Paletted.image.Image
    498 $runtime.panicindex(type.*image.Paletted type.image.ImageFgo.itab.*image.Paletted.image.Image
    499  runtime.typ2Itab
    500 0runtime.morestack_noctxt`
    501 
    502 "".&d/ type.*"".decoder"".errtype.error"".~r2@type.error"".~r1  type.image.Image"".rtype.io.Reader&KD/A	:,*Tgclocalsaa5118865dd28fc3eaacbfc830efb456Tgclocals2c033e7f4f4a74cc7e9f368d1fec9f60^prebuilts/go/darwin-x86/src/image/gif/reader.go"".DecodeAll	eH%H;aHh1H$H$HH$HD$HD$@H$H\$pH\$H\$xH\$D$HD$ HL$(HL$PHD$HHt!H$H$H$HhHH$HD$H\$@HHD$8HZHD$Hl$H-H,$HL$@HD$8Hi0Hh0Hi`L@LD$Hl$H-H,$H\$@HkxH\$8HLC8LD$Hl$H-H,$HH$HH\$HH\$H\$@H\$HD$HHD$ Ht$@HD$8HT$(HL$0HtpHT$XHPPHL$`=u;HHXHn Hh`Hn(Hhhn@@hpH$1H$H$HhL@XL$HL$Ht$@HD$8&
    508 Xtype."".decoderj
    509 "runtime.newobject
    510 ("".(*decoder).decodetype."".GIF
    511 "runtime.newobject,type.[]*image.Paletted
    512 (runtime.typedmemmovetype.[]int
    513 (runtime.typedmemmovetype.[]uint8
    514 (runtime.typedmemmove0type.image/color.Palette,type.image/color.ModelZgo.itab.image/color.Palette.image/color.Model
    515 runtime.convT2I6runtime.writeBarrierEnabled
    516 .runtime.writebarrierptr
    517 0runtime.morestack_noctxtP"".autotmp_0196_type.*"".GIF
    519 "".&dO type.*"".decoder"".err?type.error"".~r20type.error"".~r1 type.*"".GIF"".rtype.io.Reader(?T)A!?"6v4,Tgclocals4cc3ebd343ed417b80f0f13e430a0f50Tgclocalsa1435607261436f22ba8c52b7acb6d2b^prebuilts/go/darwin-x86/src/image/gif/reader.go"".DecodeConfigeH%H;aHp1H$H$H$H$1H$H$HH$HD$HD$8H$H\$xH\$H$H\$D$HD$ HL$(HL$HHD$@Ht_1H\$PH\$XH\$`H\$hH\$PH$H\$XH$H\$`H$H\$hH$H$H$Hp1H\$PH\$XH\$`H\$hHH$HH\$HH\$H\$8H\$HD$HHD$ HD$8H\$(Hl$PHHMHKHMHX H\$`HX(H\$hH\$PH$H\$XH$H\$`H$H\$hH$1H$H$Hp!
    527 type."".decoder
    528 "runtime.newobject
    529 ("".(*decoder).decode0type.image/color.Palette,type.image/color.ModelZgo.itab.image/color.Palette.image/color.Model
    530 runtime.convT2I
    531 0runtime.morestack_noctxt"".autotmp_0199"type.image.Config"".autotmp_0198?"type.image.Config
    532 "".&do type.*"".decoder"".err_type.error"".~r2`type.error"".~r1 "type.image.Config"".rtype.io.Reader(,KD__		KV/Tgclocals775bfabe490fa0159036a13eb64f9bedTgclocals8b92f91bdc5d9431980ca48840c94614^prebuilts/go/darwin-x86/src/image/gif/reader.go"".init.1eH%HD$H;AHH
HH=HH-H1H\$pH\$xH$H$H$H$H|$PH|$pHt$XHt$xHl$`H$HT$hH$H$H$HHH
HHH9w;HHHHk0HHl$pH\$Hl$H-H,$HH-H,$HT$HD$HL$H\$ HT$(HD$0HL$8HHD$@HHH
HT$H=uHfH-H,$HT$HT$HHD$@B^(
    543 D"".DecodefR$"".DecodeConfigf`go.string."gif"|$go.string."GIF8?a"image.formatsimage.formats image.formatsimage.formats"type.image.format
    544 (runtime.typedmemmove&type.[]image.format
    545 "runtime.growsliceimage.formats image.formats6runtime.writeBarrierEnabledimage.formatsimage.formats
    546 .runtime.writebarrierptr
    547 0runtime.morestack_noctxt"".autotmp_0202_"type.image.formatimage.magic2type.stringimage.name1type.string,W,Tgclocals7d2d5fca80364273fb07d5820a76fef4Tgclocalse88a6e39a822a618d03d722f6ae4052e^prebuilts/go/darwin-x86/src/image/gif/reader.go"".log2H@LD$HHH$HH\$HH\$HH\$HH\$ HH\$(HH\$0H
HL$81HH$H9}H)I9
    550 HD$PH@HHH9|HD$PH@"".log2Lookup."".log2LookupF "".log2Lookup^0"".log2Lookupv@"".log2LookupP"".log2Lookup`"".log2Lookupp"".log2Lookup "".autotmp_0206type.[8]int"".~r1type.int"".xtype.int8	t
    553 
    555 Tgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals33cdeccccebe80329f1fdbee7f5874cb^prebuilts/go/darwin-x86/src/image/gif/writer.go"".writeUint16eH%H;av=HT$HL$HD$ Hv HHvHHf@+
    559 ~
    560 $runtime.panicindex
    561 $runtime.panicindex
    562 0runtime.morestack_noctxt@"".u0type.uint16"".btype.[]uint8``L
    563 >"Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cb^prebuilts/go/darwin-x86/src/image/gif/writer.go("".blockWriter.WriteeH%HD$H;A
    567 HH$1H$H$HiHt,H$HiH$HiH$HH$Hu&H$1H$H$HHD$8H$H\$8H9)HHHHHH\$8H$L$IHH9L$H)I)ItMH$HL$H$H$L$LH$L$LD$xL$LHl$pL9}HHD$@H$H4$HT$hHT$HD$H$HD$@H\$8HH\$8HHHHHHHH
    569 HjH$Ht$H$H\$H$H|$Hl$PH,$HL$HHY(H$H\$ HT$(HD$0HtqHT$XHQHD$`=u>HAHiH0H$HiH$HiH$HLAL$HD$H$H\$8H$Ht HiH$HiH$H
    572 
    573 runtime.memmove	6runtime.writeBarrierEnabled
    574 
    575 .runtime.writebarrierptr
    577 $runtime.panicslice
    579 $runtime.panicslice
    581 0runtime.morestack_noctxtp"".autotmp_0222type.error"".autotmp_0220type.int"".autotmp_0219type.[]uint8"".autotmp_0218type.[]uint8"".autotmp_0217type.[]uint8"".autotmp_0216type.int"".autotmp_0215type.int"".autotmp_0214_type.[]uint8"".autotmp_0213/type.[]uint8"".autotmp_0212type.int"".totaltype.int"".~r2Ptype.error"".~r1@type.int"".datatype.[]uint8"".b&type."".blockWriter>O3uT9
    584 ,&	
,7#Tgclocalsb60dc0a6046c556b02baa766a3fd5a27Tgclocals607cdd8af25133e14ee3a0c0aab33c85^prebuilts/go/darwin-x86/src/image/gif/writer.go&"".(*encoder).flusheH%H;aH8HD$@HhHtH8HHhHl$ H,$HL$HY HL$HD$H\$@Ht4HL$(HKHD$0=u	HCH8LCL$HD$c
    587 
    588 6runtime.writeBarrierEnabled
    589 .runtime.writebarrierptr
    590 0runtime.morestack_noctxtp"".autotmp_0224type.error"".e type.*"".encoderpopOop%(
    591 K
    593 D\Tgclocals87d20ce1b58390b294df80b886db78bfTgclocalsa8eabfc4a4514ed6b3b0c61e9680e440^prebuilts/go/darwin-x86/src/image/gif/writer.go&"".(*encoder).writeeH%H;aHXHD$`HhHtHXHHhH\$hH\$H\$pH\$H\$xH\$Hl$@H,$HL$8HY(HL$(HD$0H\$`Ht4HL$HHKHD$P=u	HCHXLCL$HD$E
    595 
    596 6runtime.writeBarrierEnabled
    597 .runtime.writebarrierptr
    598 0runtime.morestack_noctxt@"".autotmp_0226type.error"".ptype.[]uint8"".e type.*"".encoder$m'(
    599 i
    600 b^Tgclocals0ebb2d1da58c1b4224bf5a7b370d7578Tgclocalsa8eabfc4a4514ed6b3b0c61e9680e440^prebuilts/go/darwin-x86/src/image/gif/writer.go."".(*encoder).writeByteeH%H;aH@HD$HHhHtH@HHh\$P\$Hl$(H,$HL$ HY0HL$HD$H\$HHt4HL$0HKHD$8=u	HCH@LCL$HD$Z
    602 
    603 6runtime.writeBarrierEnabled
    604 .runtime.writebarrierptr
    605 0runtime.morestack_noctxt "".autotmp_0228type.error"".btype.uint8"".e type.*"".encoder X,(
    606 T
    607 McTgclocals3f5c1f818fa7055d0400cecd34057162Tgclocalsa8eabfc4a4514ed6b3b0c61e9680e440^prebuilts/go/darwin-x86/src/image/gif/writer.go2"".(*encoder).writeHeadereH%HD$H;AQHH$HhHtHHH$H|$HHHHHOH\$HH$HKHL$HH\$HD$H$HT$(HL$0HHT$HHPHL$P=HHHhHtHHHHPIHHH$I"HHt$pILD$xHHf@+HHHHIHHH$IHH$IL$HHf@+HHHZHHH$H$HL$H$Hl$H$HT$1H$H$H$HH$H$HH^pH|$HHHKHOH$H\$H$\$ HH$H\$XH$HT$`H$H\$hHH$H$Hl$HHl$@H@DDHHHHHH$H$HL$H$Hl$H$HT$H$H5HHHHH$H$H$HT$H$HL$H\$XH\$H\$`H\$ H\$hH\$(H\$@H\$0H$HL$8HHHHHHrHH$H$Hl$H$H\$H$HT$H$Hh(H#!HHHHHH$H$HL$H$Hl$H$HT$HH$H$H|$HHHNHOH\$HH$HKHL$HH\$HD$H$HT$(HL$0H8HT$HHPHL$P=HHHhHtHHHHHIHHHPH$IHH$IL$vnHHf@+HHHtFHHH$H$HL$H$Hl$H$HT$H:L@L$HL$H$Em)HHHtKHHH$H$HL$H$Hl$H$HT$H$2L@L$HL$H$d>>
    623 xtype.io.Writer
    624 runtime.convI2I$go.string."GIF89a"
    625 io.WriteString6runtime.writeBarrierEnabled
    626 &"".(*encoder).write0type.image/color.Palette	
    627 $runtime.assertI2T2
    628 
    629 "".log2
    631 &"".(*encoder).write
    632 &"".encodeColorTable
    633 &"".(*encoder).write
    634 &"".(*encoder).writetype.io.Writer
    635 runtime.convI2I.go.string."NETSCAPE2.0"
    636 io.WriteString6runtime.writeBarrierEnabled
    637 &"".(*encoder).write
    638 $runtime.panicindex
    639 $runtime.panicindex
    640 .runtime.writebarrierptr
    641 $runtime.panicslice
    642 &"".(*encoder).write
    643 $runtime.panicindex
    644 $runtime.panicindex
    645 $runtime.panicindex
    646 $runtime.panicindex
    647 .runtime.writebarrierptr
    648 0runtime.morestack_noctxt0"".autotmp_0250type.uint16"".autotmp_0249type.error"".autotmp_0248type.uint16"".autotmp_0246type.error"".autotmp_0245type.[]uint8"".autotmp_0244type.[]uint8"".autotmp_0243type.[]uint8"".autotmp_0242type.int"".autotmp_0241type.[]uint8"".autotmp_0240type.[]uint8"".autotmp_0239type.int"".autotmp_0238type.int"".autotmp_0237type.[]uint8"".autotmp_0236type.[]uint8"".autotmp_0233_0type.image/color.Palette"".autotmp_0232type.[]uint8"".autotmp_0231type.[]uint8"".autotmp_0230/type.[]uint8"".btype.[]uint8"".btype.[]uint8"".btype.[]uint8"".paddedSizetype.int"".p0type.image/color.Palette"".e type.*"".encoderD'
    649 
    650 akRRgR
    651 dN3VWSTgclocals37a2283f5c69c342946cad8073b58fcaTgclocalsb94605b6d9e86d943d341ea34f41a1c6^prebuilts/go/darwin-x86/src/image/gif/writer.go&"".encodeColorTableeH%H;aH8L\$`HT$@HL$HHHl$pHrHH+Hl$1Hl$H9L9H\$XHHD$ L9HHHHkHl$0H,$HL$(HY L\$`HT$@HL$HHt$ DT$DL$|$HHkHH9swH2D@+HHkHH9sTH2D@+HHkHH9s0H2@+HHl$H97H\$HkH\$xH8HHkHH9sGH2HHkHH9s*H2HHkHH9sH2wA
    666 R"".log2Lookup
    667 $runtime.panicindex
    668 $runtime.panicindex
    669 $runtime.panicindex
    670 $runtime.panicindex
    671 $runtime.panicindex
    672 $runtime.panicindex
    673 $runtime.panicindex
    674 $runtime.panicindex
    675 0runtime.morestack_noctxtp"".autotmp_0258type.int"".autotmp_0257type.int"".autotmp_0256type.int"".autotmp_0255type.int"".autotmp_0254type.int"".autotmp_0251type.int"".i/type.int"".n?type.int"".~r3ptype.int"".size`type.int"".p00type.image/color.Palette"".dsttype.[]uint8pop`&"	Z	Tgclocals739018a0fedb7c38faa3101fb8dac3abTgclocals23e8278e2b69a3a75fa59b23c49ed6ad^prebuilts/go/darwin-x86/src/image/gif/writer.go:"".(*encoder).writeImageBlockDCeH%H$0H;AHPL$`H$XHhHtHPIiHH8HH$H$11H$H$HH$HD$H$H$HhH$=H(H$H1H9tgH$H$hH$pH$XHt=H$HCH$=uHKHPLCL$HL$HH$HH\$HH\$HD$gH$Hl$H$61Iy Iq(IQ0Ii8H$H$pH$H$xH$H$H$H$H$pH
H$H
H$xH
H$H
L$pH$xH$H$E1LLL$L$L$ML$L$L$L$L$L$H$H$8H$H$H$HL$0H$@I9H9H8HH$H$!1H$H$HH$HD$H$H$HhH$=H(H$H1H9tgH$H$hH$pH$XHt=H$HCH$=uHSHPLCL$HT$HH$HH\$HH\$HD$gH$Hl$H$6ILD$HI0Iq@IQHIiPH$H1H$@H$H$8HH$H9}rHH$H
    690 HHkH$HL$hH$XH$`H$@H,$H$8HZ LD$HH$X\$b
    691 LD$hH$hH$pI,HHHHH$pHHH$H|HH$xHH$VHHf@+HHH.HH$xHHH$HHH$HH$HHf@+HHHHIHH$pH$xH$H$H$H$(HH$ H$H)HH$I9HH$IL$HHf@+HHHHIHH$pH$H$xH$H$H$H$H$H)H$I}
    692 HH$IL$WHHf@+HHH/H	HH$H$ HL$H$(Hl$H$0HT$H$`HkHH,$HD$H$XHHHHHH$ H$H$(Hl$H$0HT$H$`HYH^@H|$HHHKHOHKHOHD$PHD$0H$XHD$8HHD$xH9[H=HHHHH=HHHHH$ H4$H$(HD$H$0H|$H$Hl$H$HD$ H$HL$(H$X\$0H$D$HD$PHH}HH$XH$HD$XD$1H$XH$H1H9H$H$HH$H$PHL$HD$H\$XH\$H$`H$xH\$ H$(H\$(H$0H$pH$XH$H$H$hHH$`H$PH)H\$pH_Hl$pH9HH|$HHHKHOHKHOH$0H$H$(H[(HD$(HL$0H$XHH$hHCH$p=upHKH$XHkHt"H$0H$H$(H[ HPH$0H$H$(H[ H$XH$D$HPLCL$HL$X1HH$HL$@H9~Hl$pIIH+HD$`LOM9L9	LI)I)ItML$LT$L$LD$L$LL$H$0H$H$(H[(H$`HD$(HL$0H$XHH$hHCH$p=uQHKH$XHkHt"H$0H$H$(H[ HPHGHl$`HL$@HHLCL$HL$H$`oHH$HH\$HH\$HD$H$H\$PH\$H$XH\$xHw[HHtNHHt<HH4$H$Hl$H$H\$H$HL$EESS;LK!I%$pHH@HHHHHH$hHHH$HHH$HH$HHf@+ItmDHHHtKHHH$H$ HL$H$(Hl$H$0HT$H$X$pHH@H$H$HH#AM9L9I9L9W1PH4HH$H$ '1H$H$HH$HD$H$H$ HhH$=H(H$H1H9tgH$H$hH$pH$XHt=H$HCH$=uHSHPLCL$HT$HH$HH\$HH\$HD$gH$Hl$H$6
    714 zgo.string."gif: cannot encode image block with empty palette".type.errors.errorString
    715 "runtime.newobject6runtime.writeBarrierEnabledBgo.itab.*errors.errorString.error6runtime.writeBarrierEnabled
    716 .runtime.writebarrierptr0type.*errors.errorStringtype.errorBgo.itab.*errors.errorString.error
    717  runtime.typ2Itab
    718 .runtime.writebarrierptrZgo.string."gif: image block is out of bounds".type.errors.errorString
    722 "runtime.newobject
6runtime.writeBarrierEnabled
Bgo.itab.*errors.errorString.error6runtime.writeBarrierEnabled
    725 .runtime.writebarrierptr0type.*errors.errorStringtype.errorBgo.itab.*errors.errorString.error
    726  runtime.typ2Itab
    727 .runtime.writebarrierptr
    728 &"".(*encoder).write
    729 "".log2!
    730 &"".encodeColorTable$
    731 bytes.Equal%
    732 ."".(*encoder).writeByte%
    733 ."".(*encoder).writeByte&@go.itab."".blockWriter.io.Writer'
    734 ,compress/lzw.NewWriter*+6runtime.writeBarrierEnabled+,,
    735 ."".(*encoder).writeByte-
    736 .runtime.writebarrierptr/06runtime.writeBarrierEnabled12
    737 .runtime.writebarrierptr2
    738 $runtime.panicslice2&type."".blockWriter2type.io.Writer3@go.itab."".blockWriter.io.Writer3
    739  runtime.typ2Itab3
    740 ."".(*encoder).writeByte5
    741 &"".(*encoder).write5
    742 $runtime.panicslice5
    743 $runtime.panicslice6
    744 $runtime.panicslice6
    745 $runtime.panicindex6
    746 $runtime.panicindex7
    747 $runtime.panicindex7
    748 $runtime.panicindex7
    749 $runtime.panicindex7
    750 $runtime.panicindex7
    751 $runtime.panicindex7
    752 $runtime.panicindex<
    753 &"".(*encoder).write<
    754 $runtime.panicindex<
    755 $runtime.panicindex>fgo.string."gif: image block is too large to encode"?.type.errors.errorString?
    756 "runtime.newobject@6runtime.writeBarrierEnabled@Bgo.itab.*errors.errorString.errorA6runtime.writeBarrierEnabledB
    757 .runtime.writebarrierptrB0type.*errors.errorStringBtype.errorBBgo.itab.*errors.errorString.errorC
    758  runtime.typ2ItabC
    759 .runtime.writebarrierptrC
    760 0runtime.morestack_noctxt@
"".autotmp_0310type.error"".autotmp_0309type.int"".autotmp_0308type.int"".autotmp_0307type.int"".autotmp_0306type.error"".autotmp_0305type.int"".autotmp_0304type.*uint8"".autotmp_0303type.uint16"".autotmp_0302type.int"".autotmp_0301type.uint16"".autotmp_0300type.int"".autotmp_0299type.uint16"".autotmp_0298type.uint16"".autotmp_0296,type.image/color.Color"".autotmp_0295.type.*image/color.Color"".autotmp_0294type.int"".autotmp_0293type.int"".autotmp_0292type.*uint8"".autotmp_0291type.error"".autotmp_02900type.*errors.errorString"".autotmp_0289type.bool"".autotmp_0287(type.image.Rectangle"".autotmp_0286type.*uint8"".autotmp_0285type.error"".autotmp_02840type.*errors.errorString"".autotmp_0282type.error"".autotmp_02810type.*errors.errorString"".autotmp_0280type.[]uint8"".autotmp_0279type.int"".autotmp_0278&type."".blockWriter"".autotmp_0277type.[]uint8"".autotmp_0276type.bool"".autotmp_0275type.[]uint8"".autotmp_0274type.[]uint8"".autotmp_0273type.[]uint8"".autotmp_0272type.int"".autotmp_0271type.[]uint8"".autotmp_0270type.[]uint8"".autotmp_0269type.[]uint8"".autotmp_0268type.[]uint8"".autotmp_0267type.[]uint8"".autotmp_0266type.[]uint8"".autotmp_0265_type.[]uint8"".autotmp_0264/0type.image/color.Palette"".autotmp_02630type.*errors.errorString"".autotmp_02620type.*errors.errorString"".autotmp_02610type.*errors.errorString"".autotmp_0260type.intimage.r2(type.image.Rectangle"".btype.[]uint8image.r2	(type.image.Rectangle"".btype.[]uint8image.r2(type.image.Rectangle"".btype.[]uint8"".btype.[]uint8"".btype.[]uint8"".~r0type.errorerrors.text2type.stringimage.r2(type.image.Rectangleimage.s3
    765 (type.image.Rectangleimage.r2	(type.image.Rectangle"".~r0type.errorerrors.text2type.string"".~r0
    768 (type.image.Rectangle"".~r0type.errorerrors.text2type.string"".ytype.int"".itype.int
    772 "".dxtype.int"".lzww&type.io.WriteCloser"".litWidthtype.int
    775 "".cttype.int"".paddedSizetype.int"".c,type.image/color.Color"".itype.int&"".transparentIndextype.int"".b(type.image.Rectangle"".disposal0type.uint8"".delay type.int
    780 "".pm(type.*image.Paletted"".e type.*"".encoderj"
!







7





t"2
    796 QRNQ4
    798 -(klRUu2!['
    803 vV+-Qf..iO01
    811 #	
.9Tgclocalsed653cb0fab46abb2c19ee6e9c2869e3Tgclocalsc60f3d52a3046def94cee8a52b765868^prebuilts/go/darwin-x86/src/image/gif/writer.go"".EncodeAll-,eH%H$H;AH	H$	1H$	H$	HhHHH$0H$8$1H$H$HH$HD$H$H$8HhH$0=uhH(H$H1H9t H$H$	H$	H	HH$HH\$HH\$HD$H$Hl$H$HPHh H9HH$H$'1H$H$HH$HD$H$H$HhH$=uhH(H$H1H9t H$H$	H$	H	HH$HH\$HH\$HD$H$Hl$H$HX0H}H@0HH$HT$H$1HHH$	HH$HH$H$HT$Hl$H-H,$H$HhXHHP(Hh`H9HH$ H$(*1H$H$HH$HD$H$H$(HhH$ =uhH(H$H1H9t H$H$	H$	H	HH$HH\$HH\$HD$H$Hl$H$1H$H$H$H$HH HPH$H\$xHHH{H$xHH$HH	HsH$hH$`H$pH9H$Ht$HT$H|$H$HL$xH$\$ YHZHiH9HHZHiH97H$	HHHKHkH$H$HH$H*1H\$PH\$XH\$`H\$hHHHm Hl$PHk(Hl$XHk0Hl$`Hk8Hl$hH\$PHSHKHT$@HHL$HH1H$H$HH$H$	H\$H$	H\$H$H\$\$ H$H$H$H$H$H=HKH$H$H$	HyHHNHnH$1H$HL$0H$HHl$0H9HL$pHHD$8H1Hn8Ht7H~8HF@HnHH$H$H$H9H+HH$H$HT$HHHvHS Hk(H$H$H$H9HH+Hl$D$H$	HL$pHD$8HHHl$0H9&H$H$D$;H$H$H$HkH$	HkH$	H	:LCL$HL$FH$	H$	H$H$H$HH$1H9tH[H-H9HHYH9HH$H1H9tLH$H$H$PHH$X=u	HKLCL$HL$rHH$HH\$HH\$HD$HHHH$HD$HD$H\$H$H\$ H$H\$(H$HH$HD$1H(HhHhHhHh Hh(Hh0Hh8H$H$HhH$Hh H$=uIHhH$Hh0H$=u	Hh8L@8L$Hl$H$qL@L$Hl$H$113E<HhpHiHH$HXpH|$HHHKHOHD$\$ +HH$@H$H,1H$H$HH$HD$H$H$HHhH$@=uhH(H$H1H9t H$H$	H$	H	HH$HH\$HH\$HD$H$Hl$H$
    820 L
    821 `go.string."gif: must provide at least one image".type.errors.errorString
    822 "runtime.newobject6runtime.writeBarrierEnabledBgo.itab.*errors.errorString.error0type.*errors.errorStringtype.errorBgo.itab.*errors.errorString.error
    823  runtime.typ2Itab
    824 .runtime.writebarrierptrfgo.string."gif: mismatched image and delay lengths".type.errors.errorString
    825 "runtime.newobject6runtime.writeBarrierEnabledBgo.itab.*errors.errorString.error0type.*errors.errorStringtype.errorBgo.itab.*errors.errorString.error
    826  runtime.typ2Itab
    827 .runtime.writebarrierptrtype."".encoder	
    828 "runtime.newobject
    829 
    830  runtime.duffcopy
    831 type."".encoder
    832 
    833 (runtime.typedmemmovelgo.string."gif: mismatched image and disposal lengths".type.errors.errorString
    837 "runtime.newobject6runtime.writeBarrierEnabled
Bgo.itab.*errors.errorString.error
0type.*errors.errorStringtype.errorBgo.itab.*errors.errorString.error
    841  runtime.typ2Itab
    842 .runtime.writebarrierptr
    843 runtime.ifaceeqtype."".writer
    844 $runtime.assertI2I26runtime.writeBarrierEnabled
    845 2"".(*encoder).writeHeader
    846 :"".(*encoder).writeImageBlock
    847 ."".(*encoder).writeByte
    848 &"".(*encoder).flush
    849 $runtime.panicindex
    850 $runtime.panicindex
    851 .runtime.writebarrierptr$type.*bufio.Writer >go.itab.*bufio.Writer."".writer!6runtime.writeBarrierEnabled!
    852 .runtime.writebarrierptr!$type.*bufio.Writer"type."".writer">go.itab.*bufio.Writer."".writer"
    853  runtime.typ2Itab"type.[]uint8#
    854 "runtime.makeslice#"type.bufio.Writer$
    855 "runtime.newobject%6runtime.writeBarrierEnabled%6runtime.writeBarrierEnabled&
    856 .runtime.writebarrierptr&
    857 .runtime.writebarrierptr'
    858 $runtime.panicindex'0type.image/color.Palette(
    859 $runtime.assertI2T2(pgo.string."gif: GIF color model must be a color.Palette").type.errors.errorString)
    860 "runtime.newobject*6runtime.writeBarrierEnabled*Bgo.itab.*errors.errorString.error+0type.*errors.errorString+type.error+Bgo.itab.*errors.errorString.error+
    861  runtime.typ2Itab,
    862 .runtime.writebarrierptr,
    863 0runtime.morestack_noctxtP&n"".autotmp_0355$*type.**image.Paletted"".autotmp_0354type.int"".autotmp_0353type.int"".autotmp_0352type.*uint8"".autotmp_0351$type.*bufio.Writer"".autotmp_0350$type.*bufio.Writer"".autotmp_0349$type.*bufio.Writer"".autotmp_0348type.*uint8"".autotmp_0347type.error"".autotmp_03460type.*errors.errorString"".autotmp_0345 ,type.image/color.Model"".autotmp_0344 ,type.image/color.Model"".autotmp_0343$$type.*image.Config"".autotmp_0342$$type.*image.Config"".autotmp_0341type.*uint8"".autotmp_0340type.error"".autotmp_03390type.*errors.errorString"".autotmp_0338type.*uint8"".autotmp_0337type.error"".autotmp_03360type.*errors.errorString"".autotmp_0333$0type.*errors.errorString"".autotmp_0332,type.[]*image.Paletted"".autotmp_0331$type.*bufio.Writer"".autotmp_0330type.[]uint8"".autotmp_0329type.int"".autotmp_0328$$type.*bufio.Writer"".autotmp_0327 type."".writer"".autotmp_03260type.*errors.errorString"".autotmp_0325"type.image.Config"".autotmp_03240type.*errors.errorString"".autotmp_0323type.int"".autotmp_0322type.int"".autotmp_0321type."".encoder"".autotmp_03200type.*errors.errorString"".autotmp_0319%type.int"".autotmp_0318type.int"".autotmp_03170type.*errors.errorString"".autotmp_0316%type.int
    864 "".&e# type.*"".encoderbufio.w2"type.io.Writerbufio.w2"type.io.Writer"".~r0%(type.image.Rectangle"".~r0#type.errorerrors.text2!type.string"".~r0#type.errorerrors.text2!type.string"".~r0#type.errorerrors.text2"type.string"".~r0#type.errorerrors.text2!type.string
    870 "".ww"type."".writer"".p% type.image.Point"".~r20type.error"".g type.*"".GIF"".wtype.io.WriterR"&&&&&&&&&&&r<
    872 }w
    875 U
    876 7h	(
    878 >
zmAed[=>).7 GK	OTgclocals7f0484f7c0eb6b78d0b765dc3b47d0d5Tgclocalsd14193342628ea6cc12284b443890757^prebuilts/go/darwin-x86/src/image/gif/writer.go"".Encode.-eH%H$H;ATH1H$H$H$H$H$H[(H$LT$LL$H\$Ht$ L$L$L$H$H$H$(HH$ L$L)H	L$PH$`HH$hL$XL)H	1H$H$HH$1H9t5Hc	HHjH$HjH$HJHj H$H"	H=	H$HuHH$HH$H$1H9tH[H-H9H$H&HjHH$H91H$H$H$HHH H$HH)H9HXHiH9{L$xH$HH$L$pL)H\$XL$H$HH$L$L)H\$`H$ 1HH$ HH$H1HHH$HD$HH$H$H$H$=mH(H$HH$HkH$HkHH$HD$H-H(H$HHHH$HCH$HS H$HK(HH$HH\$HH\$H$H\$H|$HD$@HD$ H$H\$(HtjHhPHHMHKHMHl$XHh`Hl$`HhhH$H$H$H\$HD$HD$HL$ H$H$H%_H$Hl$H${<HH$HD$H$HH$HD$H\$HH$L$L$H$H$H$LX L@(Lh0L`8HP HH(11LL$H)ILL$H)ILL$HT$pH)HLL$HL$xH)L$L$H$H$L$LX L$L@(H$HP0H$HX8H$PH$H-H9aLHHHL$L$hH$H$pH$H$xL$8H$HHH$@L$0L)L$L$L$H$H$H$H$L$L)1H$H$H$HHL$hHHHH$HD$HD$H\$H$H\$ H$H\$(H$HH$HD$H$H$HhH$HhH$=H(Hl$hHhH$Hh H$Hh(H$Hh0H$Hh8H$pHhHH$xHhPH$h=aHh@H$H$HHH$HD$H$H\$Ht$Hl$ HT$(H$H$H$Ht$H$Hl$H$HT$H$H\$ H$H\$(H$`H$H$XHY HT$0HL$8HD$@H$H{H$HKHH$HCPH$=7HS@H$H$H1H9H$H$H$H$8HD$H$@HL$H$H\$H$H\$ H$H\$(H$H\$0H$H\$8H$H\$@HH\$HHH\$PH$PH$H$HH] H$L$L$H$H$HH$HH\$HH\$HD$LC@L$HT$~L@@L$Hl$H$H$Hl$H$11HHHH$(H$0!1H$H$ HH$HD$H$H$0HhH$(=uhH(H$H1H9t H$H$H$HHH$HH\$HH\$HD$H$Hl$H$t
    886 2image/draw.FloydSteinberg2image/draw.FloydSteinberg(type.*image.Paletted
    887 
    888  runtime.duffzero
    889 
    890  runtime.duffzero.type.[1]*image.Paletted
    893 "runtime.newobject6runtime.writeBarrierEnabledtype.[1]int
    897 "runtime.newobject
""".statictmp_04000type.image/color.Palette,type.image/color.ModelZgo.itab.image/color.Palette.image/color.Model
    899 runtime.convT2I
    900 "".EncodeAll
    901 .runtime.writebarrierptr&type.image.Paletted
    902 "runtime.newobject&type.image.Paletted
    903 (runtime.typedmemmove 2image/color/palette.Plan92image/color/palette.Plan9type.[]uint8
    904 "runtime.makeslice&type.image.Paletted
    905 "runtime.newobject6runtime.writeBarrierEnabled6runtime.writeBarrierEnabled0type.image/color.Palette 
    906 "runtime.makeslice"#6runtime.writeBarrierEnabled#Pgo.itab.*image.Paletted.image/draw.Image%image.ZP&image.ZP&'(type.*image.Paletted'*type.image/draw.Image'Pgo.itab.*image.Paletted.image/draw.Image'
    907  runtime.typ2Itab(
    908 .runtime.writebarrierptr(
    909 .runtime.writebarrierptr)
    910 .runtime.writebarrierptr)
    911 $runtime.panicslice*Zgo.string."gif: image is too large to encode"*.type.errors.errorString+
    912 "runtime.newobject+6runtime.writeBarrierEnabled+Bgo.itab.*errors.errorString.error,0type.*errors.errorString,type.error-Bgo.itab.*errors.errorString.error-
    913  runtime.typ2Itab-
    914 .runtime.writebarrierptr-
    915 0runtime.morestack_noctxtpd"".autotmp_0399type.[]int"".autotmp_0397,type.[]*image.Paletted"".autotmp_0396type."".GIF"".autotmp_0395type.*"".GIF"".autotmp_0394type.int"".autotmp_0393type.int"".autotmp_0392(type.image.Rectangle"".autotmp_0389type.*uint8"".autotmp_0388(type.*image.Paletted"".autotmp_0387(type.*image.Paletted"".autotmp_0386type.int"".autotmp_0384type.int"".autotmp_0383type.int"".autotmp_0382type.int"".autotmp_03810type.image/color.Palette"".autotmp_03780type.*errors.errorString"".autotmp_0377type.int"".autotmp_0375type.error"".autotmp_0374 type.image.Point"".autotmp_0373(type.*image.Paletted"".autotmp_03720type.image/color.Palette"".autotmp_03710type.image/color.Palette"".autotmp_0368type.int"".autotmp_0367(type.*image.Paletted"".autotmp_03660type.*errors.errorString"".&dup(type.*image.Paletted"".~r0type.intimage.r2(type.image.Rectangle"".~r0type.intimage.r2(type.image.Rectangle"".~r0(type.image.Rectangleimage.p3 type.image.Pointimage.r2
    924 (type.image.Rectangleimage.r2(type.image.Rectangleimage.r2	(type.image.Rectangleimage.pix6type.[]uint8image.w4type.intimage.p30type.image/color.Paletteimage.r2(type.image.Rectangle"".~r0type.errorerrors.text2type.stringimage.r2	(type.image.Rectangleimage.r2
    929 (type.image.Rectangle
    930 "".pm(type.*image.Paletted"".optstype."".Options"".b(type.image.Rectangle"".~r3Ptype.error"".o@ type.*"".Options"".m  type.image.Image"".wtype.io.Writer("
X4652S++;zcv		E"q2A
		ZL[G+9
7R[5Tgclocalsf77213eb336a0cd95312c528b7eda04dTgclocals873ce98779d9f71cd9f8cc0f13e25bcf^prebuilts/go/darwin-x86/src/image/gif/writer.go"".initeH%H;agH tuH HH$HD$H\$HH\$=HHH$HD$H\$HH\$=uiHHH$HD$H\$HH\$=uHH H-H,$H\$H-H,$H\$H-H,$H\$3|L
    941 4"".initdoneL"".initdonej
    942 "runtime.throwinitz"".initdone
    943 bufio.init
    944 "compress/lzw.init
    945 fmt.init
    946 image.init
    947  image/color.init
    948 io.init
    949 bytes.init
    950 0image/color/palette.init
    951 image/draw.initLgo.string."gif: not enough image data"
    952 errors.New"".errNotEnough6runtime.writeBarrierEnabled"".errNotEnoughHgo.string."gif: too much image data"
    953 errors.New"".errTooMuch6runtime.writeBarrierEnabled"".errTooMuchHgo.string."gif: invalid pixel value"
    954 errors.New"".errBadPixel6runtime.writeBarrierEnabled"".errBadPixel
    955 "".init.1"".initdone"".errBadPixel
    956 .runtime.writebarrierptr"".errTooMuch
    957 .runtime.writebarrierptr"".errNotEnough
    958 .runtime.writebarrierptr
    959 0runtime.morestack_noctxt@@?@?@^ o1@o>::4Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals33cdeccccebe80329f1fdbee7f5874cb^prebuilts/go/darwin-x86/src/image/gif/writer.go^prebuilts/go/darwin-x86/src/image/gif/reader.go"".reader.ReadeH%H;av}H8HY Ht
H|$@H9;uH#11H\$pH\$xH\$PH\$H\$XH\$H\$`H\$H\$HH$H\$@H[ HT$ HL$(HD$0HT$hHL$pHD$xH8j
    963 
    964 0runtime.morestack_noctxtpio.err`type.errorio.nPtype.intio.p type.[]uint8""..thistype."".readerpxop
    966 g9Tgclocalsdacebcad73eed5073009fd67170948d0Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>$"".reader.ReadByteeH%H;av^H HY Ht
H|$(H9;uH#11H\$@H\$HH\$0H$H\$(H[(\$HL$HD$\$8HL$@HD$HH 
    969 
    970 0runtime.morestack_noctxtP@io.err0type.errorio.c type.uint8""..thistype."".reader@Y?@
    972 I7Tgclocals1347047f6245a35b91e9a4f213167d52Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>4type..hash.[1]interface {}eH%H;aH(HL$81HD$Hl$H9}\HD$ HHHHckRHHH\$0Ht;HHH$HD$8HD$HL$HD$ HHl$H9|HL$@H([
    974 
    975 (runtime.nilinterhash
    976 0runtime.morestack_noctxt0P
    977 "".autotmp_0413type.int"".autotmp_0412type.int"".~r2 type.uintptr"".htype.uintptr"".p*type.*[1]interface {}POP
    979 q?Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cb^prebuilts/go/darwin-x86/src/image/gif/reader.go0type..eq.[1]interface {}eH%H;aHX1HD$(Hl$(H9HD$0H\$hHHHHHHsH\$`HtvHHHHHSH9uVHD$8H$HT$@HT$HL$HHL$Ht$PHt$\$ t HD$0HHl$(H9nD$pHXD$pHXc
    982 
    983 runtime.efaceeq
    984 0runtime.morestack_noctxt0"".autotmp_0417?"type.interface {}"".autotmp_0416"type.interface {}"".autotmp_0415_type.int"".autotmp_0414Otype.int"".~r2 type.bool"".q*type.*[1]interface {}"".p*type.*[1]interface {}&	STgclocals3bb21ca8fe1d99a3e492463bd711418aTgclocalsa8eabfc4a4514ed6b3b0c61e9680e440^prebuilts/go/darwin-x86/src/image/gif/reader.go"".writer.FlusheH%H;avSHHY Ht
H|$ H9;uH#1H\$0H\$8H\$(H$H\$ H[ HL$HD$HL$0HD$8H
    989 
    990 0runtime.morestack_noctxt@0"".~r0 type.error""..thistype."".writer0N/0pp
    992 G)Tgclocals0ebb2d1da58c1b4224bf5a7b370d7578Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>"".writer.WriteeH%H;av}H8HY Ht
H|$@H9;uH#11H\$pH\$xH\$PH\$H\$XH\$H\$`H\$H\$HH$H\$@H[(HT$ HL$(HD$0HT$hHL$pHD$xH8j
    995 
    996 0runtime.morestack_noctxtpio.err`type.errorio.nPtype.intio.p type.[]uint8""..thistype."".writerpxop
    998 
    999 g9Tgclocalsdacebcad73eed5073009fd67170948d0Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>&"".writer.WriteByteeH%H;av\H HY Ht
H|$(H9;uH#1H\$@H\$H\$8\$H\$0H$H\$(H[0HL$HD$HL$@HD$HH 
   1002 
   1003 0runtime.morestack_noctxtP@"".~r20type.errorio.c type.uint8""..thistype."".writer@W?@
   1006 P0Tgclocals1347047f6245a35b91e9a4f213167d52Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>."".(*blockWriter).WriteeH%H;aH8HY Ht
H|$@H9;uH#1H\$hH\$pH\$@1H9uEHH$HD$HH\$HD$HH\$ HD$(Ht$@HH$H\$HH\$H\$PH\$H\$XH\$HT$ HL$(HD$0HT$`HL$hHD$pH8
   1012 go.string."gif".go.string."blockWriter""go.string."Write"
   1013 "runtime.panicwrap
   1014 ("".blockWriter.Write
   1015 0runtime.morestack_noctxtpp"".~r2Ptype.error"".~r1@type.int"".datatype.[]uint8""..this(type.*"".blockWriterpopmTgclocalsb60dc0a6046c556b02baa766a3fd5a27Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>*type..hash."".OptionseH%H;aH H\$(H$H<$H\$0H\$HD$HD$H\$(H$H<$tUH$HD$0HD$HD$H\$(H$H<$t#H$HD$0HD$H\$H\$8H %%%i4
   1020 
   1021 ~
   1022 runtime.memhash
   1023 "runtime.interhash
   1024 "runtime.interhash
   1025 0runtime.morestack_noctxt0@"".~r2 type.uintptr"".htype.uintptr"".p type.*"".Options@?@,>Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cb^prebuilts/go/darwin-x86/src/image/gif/reader.go&type..eq."".OptionseH%H;a	HhHT$pHD$xHH(H9t
$HhHHHpHBHRH9HD$HH$HT$PHT$HL$XHL$Ht$`Ht$\$ H\$xHttHKHs H\$pHt]HCHS H9uCHD$(H$HT$0HT$HL$8HL$Ht$@Ht$\$ t
$Hh$Hh$Hh
   1031 
   1032 runtime.ifaceeq
   1033 runtime.ifaceeq
   1034 0runtime.morestack_noctxt0"".autotmp_0427,type.image/draw.Drawer"".autotmp_0426_,type.image/draw.Drawer"".autotmp_0425?2type.image/draw.Quantizer"".autotmp_04242type.image/draw.Quantizer"".~r2 type.bool"".q type.*"".Options"".p type.*"".Options>!yTgclocals3bb21ca8fe1d99a3e492463bd711418aTgclocals895d0569a38a56443b84805daa09d838^prebuilts/go/darwin-x86/src/image/gif/reader.goTgclocals63ba92e6c81d2d7bf2207e4076c8b23c
   1038 Tgclocalsb60dc0a6046c556b02baa766a3fd5a270>go.itab.*bufio.Reader."".reader0Bgo.itab.*errors.errorString.error0Tgo.itab.image/color.RGBA.image/color.Color0Bgo.itab.*"".blockReader.io.ReaderFgo.string.hdr."gif: no color table"  >go.string."gif: no color table">go.string."gif: no color table"0(gif: no color tabletgo.string.hdr."gif: pixel size in decode out of range: %d"  *lgo.string."gif: pixel size in decode out of range: %d"lgo.string."gif: pixel size in decode out of range: %d"`Vgif: pixel size in decode out of range: %d^go.string.hdr."gif: unknown block type: 0x%.2x"  Vgo.string."gif: unknown block type: 0x%.2x"Vgo.string."gif: unknown block type: 0x%.2x"@@gif: unknown block type: 0x%.2xTgclocalsd88848d076a954f8084ef9880984dbfeK0@"*
   1041 
   1042 0
   1043 0Tgclocals3d3edf73b86c1272f6a698b794fa9cd47777777777777777777,go.string.hdr."GIF87a"  $go.string."GIF87a"$go.string."GIF87a"GIF87a,go.string.hdr."GIF89a"  $go.string."GIF89a"$go.string."GIF89a"GIF89a\go.string.hdr."gif: can't recognize format %s"  Tgo.string."gif: can't recognize format %s"Tgo.string."gif: can't recognize format %s"@>gif: can't recognize format %sTgclocals183b8f1b0610343d505d43090582d42a88@Tgclocalsdea2c01c674be151aeaf6fe41713b42088dgo.string.hdr."gif: short read on color table: %s"  "\go.string."gif: short read on color table: %s"\go.string."gif: short read on color table: %s"PFgif: short read on color table: %sTgclocals3b28b4c862b5286e116b69bf625e4d4088@Tgclocals4a5c83272286258cf484ac950366f97388Zgo.string.hdr."gif: unknown extension 0x%.2x"  Rgo.string."gif: unknown extension 0x%.2x"Rgo.string."gif: unknown extension 0x%.2x"@<gif: unknown extension 0x%.2x6go.string.hdr."NETSCAPE2.0"  .go.string."NETSCAPE2.0".go.string."NETSCAPE2.0" NETSCAPE2.0Tgclocalsbc83df7e48bd599d1f560b18fba4ef8b00 Tgclocals197df35d123b8543b316c6de2f24053a00fgo.string.hdr."gif: can't read graphic control: %s"  #^go.string."gif: can't read graphic control: %s"^go.string."gif: can't read graphic control: %s"PHgif: can't read graphic control: %sTgclocals5dedde3a053b6c3579cc8daedaf66ef900p0Tgclocals197df35d123b8543b316c6de2f24053a00hgo.string.hdr."gif: can't read image descriptor: %s"  $`go.string."gif: can't read image descriptor: %s"`go.string."gif: can't read image descriptor: %s"PJgif: can't read image descriptor: %stgo.string.hdr."gif: frame bounds larger than image bounds"  *lgo.string."gif: frame bounds larger than image bounds"lgo.string."gif: frame bounds larger than image bounds"`Vgif: frame bounds larger than image boundsTgclocalsbb3482883cf68f291069fa1de46f6560``
   1046  Tgclocalscffcb3fa139580cffca8ac28af4ff263``
   1049 Tgclocalsac1513c540ef28dcd9fb2a42fdde591a  Tgclocalsf47057354ec566066f8688a4970cff5a  Tgclocalsd4dddc23ef7d3df99a96f541935a55f7  Tgclocals51fa0e13d53d6bad7f86670d3edaeac6  0Fgo.itab.*image.Paletted.image.ImageTgclocals2c033e7f4f4a74cc7e9f368d1fec9f60  Tgclocalsaa5118865dd28fc3eaacbfc830efb456  0Zgo.itab.image/color.Palette.image/color.ModelTgclocalsa1435607261436f22ba8c52b7acb6d2b((Tgclocals4cc3ebd343ed417b80f0f13e430a0f50((Tgclocals8b92f91bdc5d9431980ca48840c94614((Tgclocals775bfabe490fa0159036a13eb64f9bed((&go.string.hdr."gif"  go.string."gif"go.string."gif"gif,go.string.hdr."GIF8?a"  $go.string."GIF8?a"$go.string."GIF8?a"GIF8?aTgclocalse88a6e39a822a618d03d722f6ae4052e((Tgclocals7d2d5fca80364273fb07d5820a76fef4Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals607cdd8af25133e14ee3a0c0aab33c85Tgclocalsb60dc0a6046c556b02baa766a3fd5a27Tgclocalsa8eabfc4a4514ed6b3b0c61e9680e440Tgclocals87d20ce1b58390b294df80b886db78bfTgclocalsa8eabfc4a4514ed6b3b0c61e9680e440Tgclocals0ebb2d1da58c1b4224bf5a7b370d7578Tgclocalsa8eabfc4a4514ed6b3b0c61e9680e440Tgclocals3f5c1f818fa7055d0400cecd34057162Tgclocalsb94605b6d9e86d943d341ea34f41a1c6((@Tgclocals37a2283f5c69c342946cad8073b58fca((Tgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals739018a0fedb7c38faa3101fb8dac3ab	0 (a] go.itab."".blockWriter.io.Writergo.string.hdr."gif: cannot encode image block with empty palette"  1zgo.string."gif: cannot encode image block with empty palette"zgo.string."gif: cannot encode image block with empty palette"pdgif: cannot encode image block with empty palettengo.string.hdr."gif: image block is too large to encode"  'fgo.string."gif: image block is too large to encode"fgo.string."gif: image block is too large to encode"PPgif: image block is too large to encodebgo.string.hdr."gif: image block is out of bounds"  !Zgo.string."gif: image block is out of bounds"Zgo.string."gif: image block is out of bounds"PDgif: image block is out of boundsTgclocalsc60f3d52a3046def94cee8a52b7658684 Tgclocalsed653cb0fab46abb2c19ee6e9c2869e3PP0>go.itab.*bufio.Writer."".writerhgo.string.hdr."gif: must provide at least one image"  $`go.string."gif: must provide at least one image"`go.string."gif: must provide at least one image"PJgif: must provide at least one imagengo.string.hdr."gif: mismatched image and delay lengths"  'fgo.string."gif: mismatched image and delay lengths"fgo.string."gif: mismatched image and delay lengths"PPgif: mismatched image and delay lengthstgo.string.hdr."gif: mismatched image and disposal lengths"  *lgo.string."gif: mismatched image and disposal lengths"lgo.string."gif: mismatched image and disposal lengths"`Vgif: mismatched image and disposal lengthsxgo.string.hdr."gif: GIF color model must be a color.Palette"  ,pgo.string."gif: GIF color model must be a color.Palette"pgo.string."gif: GIF color model must be a color.Palette"`Zgif: GIF color model must be a color.PaletteTgclocalsd14193342628ea6cc12284b443890757% @&`   00!Tgclocals7f0484f7c0eb6b78d0b765dc3b47d0d50Pgo.itab.*image.Paletted.image/draw.Imagebgo.string.hdr."gif: image is too large to encode"  !Zgo.string."gif: image is too large to encode"Zgo.string."gif: image is too large to encode"PDgif: image is too large to encodeTgclocals873ce98779d9f71cd9f8cc0f13e25bcf5<<<<<	<@"@"@"@"Tgclocalsf77213eb336a0cd95312c528b7eda04dTgo.string.hdr."gif: not enough image data"  Lgo.string."gif: not enough image data"Lgo.string."gif: not enough image data"@6gif: not enough image dataPgo.string.hdr."gif: too much image data"  Hgo.string."gif: too much image data"Hgo.string."gif: too much image data"@2gif: too much image dataPgo.string.hdr."gif: invalid pixel value"  Hgo.string."gif: invalid pixel value"Hgo.string."gif: invalid pixel value"@2gif: invalid pixel valueTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals33cdeccccebe80329f1fdbee7f5874cb."".errNotEnough type.error."".errTooMuch type.error."".errBadPixel type.error."".interlacing0.type.[]"".interlaceScan0""".statictmp_04070"".log2Lookuptype.[8]int @""".statictmp_0400type.[1]int0""".statictmp_04070type.[4]"".interlaceScan0"".initdonetype.uint82"".(*blockReader).Readf,"".(*blockReader).Read."".(*decoder).decodef("".(*decoder).decode\"".(*decoder).readHeaderAndScreenDescriptorfV"".(*decoder).readHeaderAndScreenDescriptor>"".(*decoder).readColorTablef8"".(*decoder).readColorTable<"".(*decoder).readExtensionf6"".(*decoder).readExtensionF"".(*decoder).readGraphicControlf@"".(*decoder).readGraphicControlN"".(*decoder).newImageFromDescriptorfH"".(*decoder).newImageFromDescriptor4"".(*decoder).readBlockf."".(*decoder).readBlock""".uninterlacef"".uninterlace"".Decodef"".Decode"".DecodeAllf"".DecodeAll$"".DecodeConfigf"".DecodeConfig"".init.1f"".init.1"".log2f"".log2""".writeUint16f"".writeUint16."".blockWriter.Writef("".blockWriter.Write,"".(*encoder).flushf&"".(*encoder).flush,"".(*encoder).writef&"".(*encoder).write4"".(*encoder).writeBytef."".(*encoder).writeByte8"".(*encoder).writeHeaderf2"".(*encoder).writeHeader,"".encodeColorTablef&"".encodeColorTable@"".(*encoder).writeImageBlockf:"".(*encoder).writeImageBlock"".EncodeAllf"".EncodeAll"".Encodef"".Encode"".initf"".initTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsdacebcad73eed5073009fd67170948d0Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals1347047f6245a35b91e9a4f213167d52"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.[]uint8Tgo.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)Jgo.string.hdr."func() (uint8, error)"  Bgo.string."func() (uint8, error)"Bgo.string."func() (uint8, error)"0,func() (uint8, error)4type.func() (uint8, error)T30 runtime.algarray@"runtime.gcbits.01PJgo.string.hdr."func() (uint8, error)"pFgo.weak.type.*func() (uint8, error)"runtime.zerovalue4type.func() (uint8, error)4type.func() (uint8, error)type.uint8type.errorngo.typelink.func() (uint8, error)	func() (uint8, error)4type.func() (uint8, error)6go.string.hdr."*gif.reader"  .go.string."*gif.reader".go.string."*gif.reader" *gif.readertype.*"".reader|n\60 runtime.algarray@"runtime.gcbits.01P6go.string.hdr."*gif.reader"p0go.weak.type.**"".reader"runtime.zerovaluetype."".reader"runtime.gcbits.034go.string.hdr."gif.reader"  
   1055 ,go.string."gif.reader",go.string."gif.reader" gif.reader(go.string.hdr."Read"   go.string."Read" go.string."Read"
   1056 Read0go.string.hdr."ReadByte"  (go.string."ReadByte"(go.string."ReadByte" ReadByte,go.string.hdr."reader"  $go.string."reader"$go.string."reader"reader2go.string.hdr."image/gif"  	*go.string."image/gif"*go.string."image/gif" image/gif"go.importpath."".  	*go.string."image/gif"type."".reader%0 runtime.algarray@"runtime.gcbits.03P4go.string.hdr."gif.reader"ptype.*"".reader"runtime.zerovaluetype."".reader(go.string.hdr."Read">type.func([]uint8) (int, error)0go.string.hdr."ReadByte"4type.func() (uint8, error)`type."".reader,go.string.hdr."reader""go.importpath."".type."".reader"type..hashfunc256  ,runtime.memhash_varlentype..eqfunc256  .runtime.memequal_varlentype..alg256  "type..hashfunc256type..eqfunc256runtime.gcbits.4go.string.hdr."[256]uint8"  
   1057 ,go.string."[256]uint8",go.string."[256]uint8" [256]uint8type.[256]uint80type..alg256@runtime.gcbits.P4go.string.hdr."[256]uint8"p0go.weak.type.*[256]uint8"runtime.zerovaluetype.uint8type.[]uint8Bgo.typelink.[256]uint8	[256]uint8type.[256]uint8"runtime.gcbits.67g>go.string.hdr."gif.blockReader"  6go.string."gif.blockReader"6go.string."gif.blockReader"  gif.blockReader"go.string.hdr."r"  go.string."r"go.string."r"r*go.string.hdr."slice"  "go.string."slice""go.string."slice"slice&go.string.hdr."err"  go.string."err"go.string."err"err&go.string.hdr."tmp"  go.string."tmp"go.string."tmp"tmp6go.string.hdr."blockReader"  .go.string."blockReader".go.string."blockReader" blockReader&type."".blockReader88S(8,0 runtime.algarray@"runtime.gcbits.67P>go.string.hdr."gif.blockReader"p(type.*"".blockReader"runtime.zerovalue&type."".blockReader"go.string.hdr."r""go.importpath."".type."".reader*go.string.hdr."slice""go.importpath."".type.[]uint8&go.string.hdr."err""go.importpath."".type.error&go.string.hdr."tmp""go.importpath."".type.[256]uint8`&type."".blockReader6go.string.hdr."blockReader""go.importpath."".&type."".blockReader@go.string.hdr."*gif.blockReader"  8go.string."*gif.blockReader"8go.string."*gif.blockReader"0"*gif.blockReaderxgo.string.hdr."func(*gif.blockReader, []uint8) (int, error)"  ,pgo.string."func(*gif.blockReader, []uint8) (int, error)"pgo.string."func(*gif.blockReader, []uint8) (int, error)"`Zfunc(*gif.blockReader, []uint8) (int, error)`type.func(*"".blockReader, []uint8) (int, error)-@30 runtime.algarray@"runtime.gcbits.01Pxgo.string.hdr."func(*gif.blockReader, []uint8) (int, error)"prgo.weak.type.*func(*"".blockReader, []uint8) (int, error)"runtime.zerovalue`type.func(*"".blockReader, []uint8) (int, error)`type.func(*"".blockReader, []uint8) (int, error)(type.*"".blockReadertype.[]uint8type.inttype.errorgo.typelink.func(*gif.blockReader, []uint8) (int, error)	func(*"".blockReader, []uint8) (int, error)`type.func(*"".blockReader, []uint8) (int, error)(type.*"".blockReader60 runtime.algarray@"runtime.gcbits.01P@go.string.hdr."*gif.blockReader"p:go.weak.type.**"".blockReader"runtime.zerovalue&type."".blockReader`(type.*"".blockReader(type.*"".blockReader(go.string.hdr."Read">type.func([]uint8) (int, error)`type.func(*"".blockReader, []uint8) (int, error),"".(*blockReader).Read,"".(*blockReader).Read*go.string.hdr."[]int"  "go.string."[]int""go.string."[]int"[]inttype.[]intf0 runtime.algarray@"runtime.gcbits.01P*go.string.hdr."[]int"p&go.weak.type.*[]int"runtime.zerovaluetype.int.go.typelink.[]int	[]inttype.[]intBgo.string.hdr."[]*image.Paletted"  :go.string."[]*image.Paletted":go.string."[]*image.Paletted"0$[]*image.Paletted,type.[]*image.Paletted+/0 runtime.algarray@"runtime.gcbits.01PBgo.string.hdr."[]*image.Paletted"p>go.weak.type.*[]*image.Paletted"runtime.zerovalue(type.*image.Paletted^go.typelink.[]*image.Paletted	[]*image.Paletted,type.[]*image.Paletted$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]uint8*runtime.gcbits.0792046go.string.hdr."gif.decoder"  .go.string."gif.decoder".go.string."gif.decoder" gif.decoder(go.string.hdr."vers"   go.string."vers" go.string."vers"
   1065 vers*go.string.hdr."width"  "go.string."width""go.string."width"width,go.string.hdr."height"  $go.string."height"$go.string."height"height2go.string.hdr."loopCount"  	*go.string."loopCount"*go.string."loopCount" loopCount2go.string.hdr."delayTime"  	*go.string."delayTime"*go.string."delayTime" delayTime>go.string.hdr."backgroundIndex"  6go.string."backgroundIndex"6go.string."backgroundIndex"  backgroundIndex<go.string.hdr."disposalMethod"  4go.string."disposalMethod"4go.string."disposalMethod" disposalMethod6go.string.hdr."imageFields"  .go.string."imageFields".go.string."imageFields" imageFields@go.string.hdr."transparentIndex"  8go.string."transparentIndex"8go.string."transparentIndex"0"transparentIndexFgo.string.hdr."hasTransparentIndex"  >go.string."hasTransparentIndex">go.string."hasTransparentIndex"0(hasTransparentIndex@go.string.hdr."globalColorTable"  8go.string."globalColorTable"8go.string."globalColorTable"0"globalColorTable*go.string.hdr."delay"  "go.string."delay""go.string."delay"delay0go.string.hdr."disposal"  (go.string."disposal"(go.string."disposal" disposal*go.string.hdr."image"  "go.string."image""go.string."image"image.go.string.hdr."decoder"  &go.string."decoder"&go.string."decoder"decodertype."".decoderJs%y (08@ABCDH`xt0 runtime.algarray@*runtime.gcbits.079204P6go.string.hdr."gif.decoder"p type.*"".decoder"runtime.zerovaluetype."".decoder"go.string.hdr."r""go.importpath."".type."".reader(go.string.hdr."vers""go.importpath."".type.string*go.string.hdr."width""go.importpath."".type.int,go.string.hdr."height""go.importpath."".type.int2go.string.hdr."loopCount""go.importpath."".type.int2go.string.hdr."delayTime""go.importpath."".type.int>go.string.hdr."backgroundIndex""go.importpath."".type.uint8<go.string.hdr."disposalMethod""go.importpath."".type.uint86go.string.hdr."imageFields""go.importpath."".type.uint8@go.string.hdr."transparentIndex""go.importpath."".type.uint8Fgo.string.hdr."hasTransparentIndex""go.importpath."".type.bool@go.string.hdr."globalColorTable""go.importpath."".0type.image/color.Palette	*go.string.hdr."delay"	"go.importpath."".	type.[]int	0go.string.hdr."disposal"	"go.importpath."".	type.[]uint8
   1072 *go.string.hdr."image"
   1073 "go.importpath."".
   1074 ,type.[]*image.Paletted
   1075 &go.string.hdr."tmp""go.importpath."". type.[1024]uint8`type."".decoder.go.string.hdr."decoder""go.importpath."".type."".decoder8go.string.hdr."*gif.decoder"  0go.string."*gif.decoder"0go.string."*gif.decoder" *gif.decoderrgo.string.hdr."func(*gif.decoder, io.Reader, bool) error"  )jgo.string."func(*gif.decoder, io.Reader, bool) error"jgo.string."func(*gif.decoder, io.Reader, bool) error"`Tfunc(*gif.decoder, io.Reader, bool) errorZtype.func(*"".decoder, io.Reader, bool) errorX30 runtime.algarray@"runtime.gcbits.01Prgo.string.hdr."func(*gif.decoder, io.Reader, bool) error"plgo.weak.type.*func(*"".decoder, io.Reader, bool) error"runtime.zerovalueZtype.func(*"".decoder, io.Reader, bool) errorZtype.func(*"".decoder, io.Reader, bool) error type.*"".decodertype.io.Readertype.booltype.errorgo.typelink.func(*gif.decoder, io.Reader, bool) error	func(*"".decoder, io.Reader, bool) errorZtype.func(*"".decoder, io.Reader, bool) errorvgo.string.hdr."func(*gif.decoder) (*image.Paletted, error)"  +ngo.string."func(*gif.decoder) (*image.Paletted, error)"ngo.string."func(*gif.decoder) (*image.Paletted, error)"`Xfunc(*gif.decoder) (*image.Paletted, error)^type.func(*"".decoder) (*image.Paletted, error)30 runtime.algarray@"runtime.gcbits.01Pvgo.string.hdr."func(*gif.decoder) (*image.Paletted, error)"ppgo.weak.type.*func(*"".decoder) (*image.Paletted, error)"runtime.zerovalue^type.func(*"".decoder) (*image.Paletted, error)^type.func(*"".decoder) (*image.Paletted, error) type.*"".decoder(type.*image.Palettedtype.errorgo.typelink.func(*gif.decoder) (*image.Paletted, error)	func(*"".decoder) (*image.Paletted, error)^type.func(*"".decoder) (*image.Paletted, error)^go.string.hdr."func(*gif.decoder) (int, error)"  Vgo.string."func(*gif.decoder) (int, error)"Vgo.string."func(*gif.decoder) (int, error)"@@func(*gif.decoder) (int, error)Ftype.func(*"".decoder) (int, error)(30 runtime.algarray@"runtime.gcbits.01P^go.string.hdr."func(*gif.decoder) (int, error)"pXgo.weak.type.*func(*"".decoder) (int, error)"runtime.zerovalueFtype.func(*"".decoder) (int, error)Ftype.func(*"".decoder) (int, error) type.*"".decodertype.inttype.errorgo.typelink.func(*gif.decoder) (int, error)	func(*"".decoder) (int, error)Ftype.func(*"".decoder) (int, error)go.string.hdr."func(*gif.decoder, uint8) (color.Palette, error)"  0xgo.string."func(*gif.decoder, uint8) (color.Palette, error)"xgo.string."func(*gif.decoder, uint8) (color.Palette, error)"pbfunc(*gif.decoder, uint8) (color.Palette, error)ttype.func(*"".decoder, uint8) (image/color.Palette, error)~J30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*gif.decoder, uint8) (color.Palette, error)"pgo.weak.type.*func(*"".decoder, uint8) (image/color.Palette, error)"runtime.zerovaluettype.func(*"".decoder, uint8) (image/color.Palette, error)ttype.func(*"".decoder, uint8) (image/color.Palette, error) type.*"".decodertype.uint80type.image/color.Palettetype.errorgo.typelink.func(*gif.decoder, uint8) (color.Palette, error)	func(*"".decoder, uint8) (image/color.Palette, error)ttype.func(*"".decoder, uint8) (image/color.Palette, error)Pgo.string.hdr."func(*gif.decoder) error"  Hgo.string."func(*gif.decoder) error"Hgo.string."func(*gif.decoder) error"@2func(*gif.decoder) error8type.func(*"".decoder) errorQ-+30 runtime.algarray@"runtime.gcbits.01PPgo.string.hdr."func(*gif.decoder) error"pJgo.weak.type.*func(*"".decoder) error"runtime.zerovalue8type.func(*"".decoder) error8type.func(*"".decoder) error type.*"".decodertype.errorxgo.typelink.func(*gif.decoder) error	func(*"".decoder) error8type.func(*"".decoder) error,go.string.hdr."decode"  $go.string."decode"$go.string."decode"decodeVgo.string.hdr."func(io.Reader, bool) error"  Ngo.string."func(io.Reader, bool) error"Ngo.string."func(io.Reader, bool) error"@8func(io.Reader, bool) error@type.func(io.Reader, bool) error_n&R30 runtime.algarray@"runtime.gcbits.01PVgo.string.hdr."func(io.Reader, bool) error"pRgo.weak.type.*func(io.Reader, bool) error"runtime.zerovalue@type.func(io.Reader, bool) error@type.func(io.Reader, bool) errortype.io.Readertype.booltype.errorgo.typelink.func(io.Reader, bool) error	func(io.Reader, bool) error@type.func(io.Reader, bool) errorLgo.string.hdr."newImageFromDescriptor"  Dgo.string."newImageFromDescriptor"Dgo.string."newImageFromDescriptor"0.newImageFromDescriptor^go.string.hdr."func() (*image.Paletted, error)"  Vgo.string."func() (*image.Paletted, error)"Vgo.string."func() (*image.Paletted, error)"@@func() (*image.Paletted, error)Htype.func() (*image.Paletted, error)30 runtime.algarray@"runtime.gcbits.01P^go.string.hdr."func() (*image.Paletted, error)"pZgo.weak.type.*func() (*image.Paletted, error)"runtime.zerovalueHtype.func() (*image.Paletted, error)Htype.func() (*image.Paletted, error)(type.*image.Palettedtype.errorgo.typelink.func() (*image.Paletted, error)	func() (*image.Paletted, error)Htype.func() (*image.Paletted, error)2go.string.hdr."readBlock"  	*go.string."readBlock"*go.string."readBlock" readBlockFgo.string.hdr."func() (int, error)"  >go.string."func() (int, error)">go.string."func() (int, error)"0(func() (int, error)0type.func() (int, error)30 runtime.algarray@"runtime.gcbits.01PFgo.string.hdr."func() (int, error)"pBgo.weak.type.*func() (int, error)"runtime.zerovalue0type.func() (int, error)0type.func() (int, error)type.inttype.errorfgo.typelink.func() (int, error)	func() (int, error)0type.func() (int, error)<go.string.hdr."readColorTable"  4go.string."readColorTable"4go.string."readColorTable" readColorTabledgo.string.hdr."func(uint8) (color.Palette, error)"  "\go.string."func(uint8) (color.Palette, error)"\go.string."func(uint8) (color.Palette, error)"PFfunc(uint8) (color.Palette, error)Ztype.func(uint8) (image/color.Palette, error)Xp30 runtime.algarray@"runtime.gcbits.01Pdgo.string.hdr."func(uint8) (color.Palette, error)"plgo.weak.type.*func(uint8) (image/color.Palette, error)"runtime.zerovalueZtype.func(uint8) (image/color.Palette, error)Ztype.func(uint8) (image/color.Palette, error)type.uint80type.image/color.Palettetype.errorgo.typelink.func(uint8) (color.Palette, error)	func(uint8) (image/color.Palette, error)Ztype.func(uint8) (image/color.Palette, error):go.string.hdr."readExtension"  
2go.string."readExtension"2go.string."readExtension" readExtension8go.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() errorDgo.string.hdr."readGraphicControl"  <go.string."readGraphicControl"<go.string."readGraphicControl"0&readGraphicControlZgo.string.hdr."readHeaderAndScreenDescriptor"  Rgo.string."readHeaderAndScreenDescriptor"Rgo.string."readHeaderAndScreenDescriptor"@<readHeaderAndScreenDescriptor type.*"".decoderx6d0 runtime.algarray@"runtime.gcbits.01P8go.string.hdr."*gif.decoder"p2go.weak.type.**"".decoder"runtime.zerovaluetype."".decoder` type.*"".decoder type.*"".decoder,go.string.hdr."decode""go.importpath."".@type.func(io.Reader, bool) errorZtype.func(*"".decoder, io.Reader, bool) error("".(*decoder).decode("".(*decoder).decodeLgo.string.hdr."newImageFromDescriptor""go.importpath."".Htype.func() (*image.Paletted, error)^type.func(*"".decoder) (*image.Paletted, error)H"".(*decoder).newImageFromDescriptorH"".(*decoder).newImageFromDescriptor2go.string.hdr."readBlock""go.importpath."".0type.func() (int, error)Ftype.func(*"".decoder) (int, error)."".(*decoder).readBlock."".(*decoder).readBlock<go.string.hdr."readColorTable""go.importpath."".Ztype.func(uint8) (image/color.Palette, error)ttype.func(*"".decoder, uint8) (image/color.Palette, error)8"".(*decoder).readColorTable8"".(*decoder).readColorTable:go.string.hdr."readExtension""go.importpath.""."type.func() error8type.func(*"".decoder) error6"".(*decoder).readExtension6"".(*decoder).readExtensionDgo.string.hdr."readGraphicControl""go.importpath.""."type.func() error8type.func(*"".decoder) error@"".(*decoder).readGraphicControl@"".(*decoder).readGraphicControlZgo.string.hdr."readHeaderAndScreenDescriptor""go.importpath.""."type.func() error8type.func(*"".decoder) errorV"".(*decoder).readHeaderAndScreenDescriptorV"".(*decoder).readHeaderAndScreenDescriptor:go.string.hdr."[]color.Color"  
2go.string."[]color.Color"2go.string."[]color.Color" []color.Color0type.[]image/color.Color:tN0 runtime.algarray@"runtime.gcbits.01P:go.string.hdr."[]color.Color"pBgo.weak.type.*[]image/color.Color"runtime.zerovalue,type.image/color.ColorZgo.typelink.[]color.Color	[]image/color.Color0type.[]image/color.Color8go.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 {}Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocalsa8eabfc4a4514ed6b3b0c61e9680e440Tgclocals3bb21ca8fe1d99a3e492463bd711418a<type..hashfunc.[1]interface {}4type..hash.[1]interface {}8type..eqfunc.[1]interface {}0type..eq.[1]interface {}2type..alg.[1]interface {}  <type..hashfunc.[1]interface {}8type..eqfunc.[1]interface {}>go.string.hdr."[1]interface {}"  6go.string."[1]interface {}"6go.string."[1]interface {}"  [1]interface {}(type.[1]interface {}P[02type..alg.[1]interface {}@"runtime.gcbits.03P>go.string.hdr."[1]interface {}"p:go.weak.type.*[1]interface {}"runtime.zerovalue"type.interface {}&type.[]interface {}Vgo.typelink.[1]interface {}	[1]interface {}(type.[1]interface {}@go.string.hdr."*[1]interface {}"  8go.string."*[1]interface {}"8go.string."*[1]interface {}"0"*[1]interface {}*type.*[1]interface {}560 runtime.algarray@"runtime.gcbits.01P@go.string.hdr."*[1]interface {}"p<go.weak.type.**[1]interface {}"runtime.zerovalue(type.[1]interface {}Dgo.string.hdr."*gif.interlaceScan"  <go.string."*gif.interlaceScan"<go.string."*gif.interlaceScan"0&*gif.interlaceScan,type.*"".interlaceScan60 runtime.algarray@"runtime.gcbits.01PDgo.string.hdr."*gif.interlaceScan"p>go.weak.type.**"".interlaceScan"runtime.zerovalue*type."".interlaceScanBgo.string.hdr."gif.interlaceScan"  :go.string."gif.interlaceScan":go.string."gif.interlaceScan"0$gif.interlaceScan(go.string.hdr."skip"   go.string."skip" go.string."skip"
   1093 skip*go.string.hdr."start"  "go.string."start""go.string."start"start:go.string.hdr."interlaceScan"  
2go.string."interlaceScan"2go.string."interlaceScan" interlaceScan*type."".interlaceScanp 0 runtime.algarray@runtime.gcbits.PBgo.string.hdr."gif.interlaceScan"p,type.*"".interlaceScan"runtime.zerovalue*type."".interlaceScan(go.string.hdr."skip""go.importpath."".type.int*go.string.hdr."start""go.importpath."".type.int`*type."".interlaceScan:go.string.hdr."interlaceScan""go.importpath."".*type."".interlaceScanFgo.string.hdr."[]gif.interlaceScan"  >go.string."[]gif.interlaceScan">go.string."[]gif.interlaceScan"0([]gif.interlaceScan.type.[]"".interlaceScanx0 runtime.algarray@"runtime.gcbits.01PFgo.string.hdr."[]gif.interlaceScan"p@go.weak.type.*[]"".interlaceScan"runtime.zerovalue*type."".interlaceScandgo.typelink.[]gif.interlaceScan	[]"".interlaceScan.type.[]"".interlaceScan0go.string.hdr."*gif.GIF"  (go.string."*gif.GIF"(go.string."*gif.GIF" *gif.GIFtype.*"".GIF60 runtime.algarray@"runtime.gcbits.01P0go.string.hdr."*gif.GIF"p*go.weak.type.**"".GIF"runtime.zerovaluetype."".GIF&runtime.gcbits.890c.go.string.hdr."gif.GIF"  &go.string."gif.GIF"&go.string."gif.GIF"gif.GIF*go.string.hdr."Image"  "go.string."Image""go.string."Image"Image*go.string.hdr."Delay"  "go.string."Delay""go.string."Delay"Delay2go.string.hdr."LoopCount"  	*go.string."LoopCount"*go.string."LoopCount" LoopCount0go.string.hdr."Disposal"  (go.string."Disposal"(go.string."Disposal" Disposal,go.string.hdr."Config"  $go.string."Config"$go.string."Config"Config>go.string.hdr."BackgroundIndex"  6go.string."BackgroundIndex"6go.string."BackgroundIndex"  BackgroundIndex&go.string.hdr."GIF"  go.string."GIF"go.string."GIF"GIFtype."".GIFx`08Pp,0 runtime.algarray@&runtime.gcbits.890cP.go.string.hdr."gif.GIF"ptype.*"".GIF"runtime.zerovaluetype."".GIF*go.string.hdr."Image",type.[]*image.Paletted*go.string.hdr."Delay"type.[]int2go.string.hdr."LoopCount"type.int0go.string.hdr."Disposal"type.[]uint8,go.string.hdr."Config""type.image.Config>go.string.hdr."BackgroundIndex"type.uint8`type."".GIF&go.string.hdr."GIF""go.importpath."".type."".GIFhgo.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)<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.format type..hashfunc64  @,runtime.memhash_varlentype..eqfunc64  @.runtime.memequal_varlentype..alg64   type..hashfunc64type..eqfunc64,go.string.hdr."[8]int"  $go.string."[8]int"$go.string."[8]int"[8]inttype.[8]int@0type..alg64@runtime.gcbits.P,go.string.hdr."[8]int"p(go.weak.type.*[8]int"runtime.zerovaluetype.inttype.[]int2go.typelink.[8]int	[8]inttype.[8]intTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0ebb2d1da58c1b4224bf5a7b370d7578Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsdacebcad73eed5073009fd67170948d0Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals1347047f6245a35b91e9a4f213167d52Bgo.string.hdr."func(uint8) error"  :go.string."func(uint8) error":go.string."func(uint8) error"0$func(uint8) error,type.func(uint8) errorIX30 runtime.algarray@"runtime.gcbits.01PBgo.string.hdr."func(uint8) error"p>go.weak.type.*func(uint8) error"runtime.zerovalue,type.func(uint8) error,type.func(uint8) errortype.uint8type.error^go.typelink.func(uint8) error	func(uint8) error,type.func(uint8) error6go.string.hdr."*gif.writer"  .go.string."*gif.writer".go.string."*gif.writer" *gif.writertype.*"".writer60 runtime.algarray@"runtime.gcbits.01P6go.string.hdr."*gif.writer"p0go.weak.type.**"".writer"runtime.zerovaluetype."".writer4go.string.hdr."gif.writer"  
   1104 ,go.string."gif.writer",go.string."gif.writer" gif.writer*go.string.hdr."Flush"  "go.string."Flush""go.string."Flush"Flush*go.string.hdr."Write"  "go.string."Write""go.string."Write"Write2go.string.hdr."WriteByte"  	*go.string."WriteByte"*go.string."WriteByte" WriteByte,go.string.hdr."writer"  $go.string."writer"$go.string."writer"writertype."".writerR 0 runtime.algarray@"runtime.gcbits.03P4go.string.hdr."gif.writer"ptype.*"".writer"runtime.zerovaluetype."".writer*go.string.hdr."Flush""type.func() error*go.string.hdr."Write">type.func([]uint8) (int, error)2go.string.hdr."WriteByte",type.func(uint8) error`type."".writer,go.string.hdr."writer""go.importpath."".type."".writer"type..hashfunc768  ,runtime.memhash_varlentype..eqfunc768  .runtime.memequal_varlentype..alg768  "type..hashfunc768type..eqfunc7684go.string.hdr."[768]uint8"  
   1107 ,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.9fc86go.string.hdr."gif.encoder"  .go.string."gif.encoder".go.string."gif.encoder" gif.encoder"go.string.hdr."w"  go.string."w"go.string."w"w"go.string.hdr."g"  go.string."g"go.string."g"g0go.string.hdr."globalCT"  (go.string."globalCT"(go.string."globalCT" globalCT&go.string.hdr."buf"  go.string."buf"go.string."buf"buf>go.string.hdr."localColorTable"  6go.string."localColorTable"6go.string."localColorTable"  localColorTable.go.string.hdr."encoder"  &go.string."encoder"&go.string."encoder"encodertype."".encoderu >0 runtime.algarray@&runtime.gcbits.9fc8P6go.string.hdr."gif.encoder"p type.*"".encoder"runtime.zerovaluetype."".encoder"go.string.hdr."w""go.importpath."".type."".writer&go.string.hdr."err""go.importpath."".type.error"go.string.hdr."g""go.importpath."".type."".GIF0go.string.hdr."globalCT""go.importpath."".type.int&go.string.hdr."buf""go.importpath."".type.[256]uint8@go.string.hdr."globalColorTable""go.importpath."".type.[768]uint8>go.string.hdr."localColorTable""go.importpath."".type.[768]uint8`type."".encoder.go.string.hdr."encoder""go.importpath."".type."".encoder8go.string.hdr."*gif.encoder"  0go.string."*gif.encoder"0go.string."*gif.encoder" *gif.encoderDgo.string.hdr."func(*gif.encoder)"  <go.string."func(*gif.encoder)"<go.string."func(*gif.encoder)"0&func(*gif.encoder),type.func(*"".encoder)k?30 runtime.algarray@"runtime.gcbits.01PDgo.string.hdr."func(*gif.encoder)"p>go.weak.type.*func(*"".encoder)"runtime.zerovalue,type.func(*"".encoder),type.func(*"".encoder) type.*"".encoder`go.typelink.func(*gif.encoder)	func(*"".encoder),type.func(*"".encoder)Vgo.string.hdr."func(*gif.encoder, []uint8)"  Ngo.string."func(*gif.encoder, []uint8)"Ngo.string."func(*gif.encoder, []uint8)"@8func(*gif.encoder, []uint8)>type.func(*"".encoder, []uint8)j30 runtime.algarray@"runtime.gcbits.01PVgo.string.hdr."func(*gif.encoder, []uint8)"pPgo.weak.type.*func(*"".encoder, []uint8)"runtime.zerovalue>type.func(*"".encoder, []uint8)>type.func(*"".encoder, []uint8) type.*"".encodertype.[]uint8go.typelink.func(*gif.encoder, []uint8)	func(*"".encoder, []uint8)>type.func(*"".encoder, []uint8)Rgo.string.hdr."func(*gif.encoder, uint8)"  Jgo.string."func(*gif.encoder, uint8)"Jgo.string."func(*gif.encoder, uint8)"@4func(*gif.encoder, uint8):type.func(*"".encoder, uint8)&30 runtime.algarray@"runtime.gcbits.01PRgo.string.hdr."func(*gif.encoder, uint8)"pLgo.weak.type.*func(*"".encoder, uint8)"runtime.zerovalue:type.func(*"".encoder, uint8):type.func(*"".encoder, uint8) type.*"".encodertype.uint8|go.typelink.func(*gif.encoder, uint8)	func(*"".encoder, uint8):type.func(*"".encoder, uint8)~go.string.hdr."func(*gif.encoder, *image.Paletted, int, uint8)"  /vgo.string."func(*gif.encoder, *image.Paletted, int, uint8)"vgo.string."func(*gif.encoder, *image.Paletted, int, uint8)"``func(*gif.encoder, *image.Paletted, int, uint8)ftype.func(*"".encoder, *image.Paletted, int, uint8)MV30 runtime.algarray@"runtime.gcbits.01P~go.string.hdr."func(*gif.encoder, *image.Paletted, int, uint8)"pxgo.weak.type.*func(*"".encoder, *image.Paletted, int, uint8)"runtime.zerovalueftype.func(*"".encoder, *image.Paletted, int, uint8)ftype.func(*"".encoder, *image.Paletted, int, uint8) type.*"".encoder(type.*image.Palettedtype.inttype.uint8go.typelink.func(*gif.encoder, *image.Paletted, int, uint8)	func(*"".encoder, *image.Paletted, int, uint8)ftype.func(*"".encoder, *image.Paletted, int, uint8)*go.string.hdr."flush"  "go.string."flush""go.string."flush"flush,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()*go.string.hdr."write"  "go.string."write""go.string."write"write:go.string.hdr."func([]uint8)"  
2go.string."func([]uint8)"2go.string."func([]uint8)" func([]uint8)$type.func([]uint8){30 runtime.algarray@"runtime.gcbits.01P:go.string.hdr."func([]uint8)"p6go.weak.type.*func([]uint8)"runtime.zerovalue$type.func([]uint8)$type.func([]uint8)type.[]uint8Ngo.typelink.func([]uint8)	func([]uint8)$type.func([]uint8)2go.string.hdr."writeByte"  	*go.string."writeByte"*go.string."writeByte" writeByte6go.string.hdr."func(uint8)"  .go.string."func(uint8)".go.string."func(uint8)" func(uint8) type.func(uint8)$q30 runtime.algarray@"runtime.gcbits.01P6go.string.hdr."func(uint8)"p2go.weak.type.*func(uint8)"runtime.zerovalue type.func(uint8) type.func(uint8)type.uint8Fgo.typelink.func(uint8)	func(uint8) type.func(uint8)6go.string.hdr."writeHeader"  .go.string."writeHeader".go.string."writeHeader" writeHeader>go.string.hdr."writeImageBlock"  6go.string."writeImageBlock"6go.string."writeImageBlock"  writeImageBlockbgo.string.hdr."func(*image.Paletted, int, uint8)"  !Zgo.string."func(*image.Paletted, int, uint8)"Zgo.string."func(*image.Paletted, int, uint8)"PDfunc(*image.Paletted, int, uint8)Ltype.func(*image.Paletted, int, uint8)oV30 runtime.algarray@"runtime.gcbits.01Pbgo.string.hdr."func(*image.Paletted, int, uint8)"p^go.weak.type.*func(*image.Paletted, int, uint8)"runtime.zerovalueLtype.func(*image.Paletted, int, uint8)Ltype.func(*image.Paletted, int, uint8)(type.*image.Palettedtype.inttype.uint8go.typelink.func(*image.Paletted, int, uint8)	func(*image.Paletted, int, uint8)Ltype.func(*image.Paletted, int, uint8) type.*"".encodergV6L0 runtime.algarray@"runtime.gcbits.01P8go.string.hdr."*gif.encoder"p2go.weak.type.**"".encoder"runtime.zerovaluetype."".encoder` type.*"".encoder type.*"".encoder*go.string.hdr."flush""go.importpath."".type.func(),type.func(*"".encoder)&"".(*encoder).flush&"".(*encoder).flush*go.string.hdr."write""go.importpath."".$type.func([]uint8)>type.func(*"".encoder, []uint8)&"".(*encoder).write&"".(*encoder).write2go.string.hdr."writeByte""go.importpath."". type.func(uint8):type.func(*"".encoder, uint8)."".(*encoder).writeByte."".(*encoder).writeByte6go.string.hdr."writeHeader""go.importpath."".type.func(),type.func(*"".encoder)2"".(*encoder).writeHeader2"".(*encoder).writeHeader>go.string.hdr."writeImageBlock""go.importpath."".Ltype.func(*image.Paletted, int, uint8)ftype.func(*"".encoder, *image.Paletted, int, uint8):"".(*encoder).writeImageBlock:"".(*encoder).writeImageBlock@go.string.hdr."*gif.blockWriter"  8go.string."*gif.blockWriter"8go.string."*gif.blockWriter"0"*gif.blockWriter6go.string.hdr."blockWriter"  .go.string."blockWriter".go.string."blockWriter" blockWriterTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsb60dc0a6046c556b02baa766a3fd5a27xgo.string.hdr."func(*gif.blockWriter, []uint8) (int, error)"  ,pgo.string."func(*gif.blockWriter, []uint8) (int, error)"pgo.string."func(*gif.blockWriter, []uint8) (int, error)"`Zfunc(*gif.blockWriter, []uint8) (int, error)`type.func(*"".blockWriter, []uint8) (int, error)&30 runtime.algarray@"runtime.gcbits.01Pxgo.string.hdr."func(*gif.blockWriter, []uint8) (int, error)"prgo.weak.type.*func(*"".blockWriter, []uint8) (int, error)"runtime.zerovalue`type.func(*"".blockWriter, []uint8) (int, error)`type.func(*"".blockWriter, []uint8) (int, error)(type.*"".blockWritertype.[]uint8type.inttype.errorgo.typelink.func(*gif.blockWriter, []uint8) (int, error)	func(*"".blockWriter, []uint8) (int, error)`type.func(*"".blockWriter, []uint8) (int, error)(type.*"".blockWriter060 runtime.algarray@"runtime.gcbits.01P@go.string.hdr."*gif.blockWriter"p:go.weak.type.**"".blockWriter"runtime.zerovalue&type."".blockWriter`(type.*"".blockWriter(type.*"".blockWriter*go.string.hdr."Write">type.func([]uint8) (int, error)`type.func(*"".blockWriter, []uint8) (int, error)."".(*blockWriter).Write."".(*blockWriter).Write>go.string.hdr."gif.blockWriter"  6go.string."gif.blockWriter"6go.string."gif.blockWriter"  gif.blockWriter"go.string.hdr."e"  go.string."e"go.string."e"evgo.string.hdr."func(gif.blockWriter, []uint8) (int, error)"  +ngo.string."func(gif.blockWriter, []uint8) (int, error)"ngo.string."func(gif.blockWriter, []uint8) (int, error)"`Xfunc(gif.blockWriter, []uint8) (int, error)^type.func("".blockWriter, []uint8) (int, error)30 runtime.algarray@"runtime.gcbits.01Pvgo.string.hdr."func(gif.blockWriter, []uint8) (int, error)"ppgo.weak.type.*func("".blockWriter, []uint8) (int, error)"runtime.zerovalue^type.func("".blockWriter, []uint8) (int, error)^type.func("".blockWriter, []uint8) (int, error)&type."".blockWritertype.[]uint8type.inttype.errorgo.typelink.func(gif.blockWriter, []uint8) (int, error)	func("".blockWriter, []uint8) (int, error)^type.func("".blockWriter, []uint8) (int, error)&type."".blockWriteraf9$0 runtime.algarray@"runtime.gcbits.01P>go.string.hdr."gif.blockWriter"p(type.*"".blockWriter"runtime.zerovalue&type."".blockWriter"go.string.hdr."e""go.importpath."". type.*"".encoder`&type."".blockWriter6go.string.hdr."blockWriter""go.importpath."".&type."".blockWriter*go.string.hdr."Write">type.func([]uint8) (int, error)^type.func("".blockWriter, []uint8) (int, error)("".blockWriter.Write("".blockWriter.Write@go.string.hdr."**image.Paletted"  8go.string."**image.Paletted"8go.string."**image.Paletted"0"**image.Paletted*type.**image.Paletted"	
   1117 60 runtime.algarray@"runtime.gcbits.01P@go.string.hdr."**image.Paletted"p<go.weak.type.***image.Paletted"runtime.zerovalue(type.*image.PalettedDgo.string.hdr."[1]*image.Paletted"  <go.string."[1]*image.Paletted"<go.string."[1]*image.Paletted"0&[1]*image.Paletted.type.[1]*image.Paletted9>}10 runtime.algarray@"runtime.gcbits.01PDgo.string.hdr."[1]*image.Paletted"p@go.weak.type.*[1]*image.Paletted"runtime.zerovalue(type.*image.Paletted,type.[]*image.Palettedbgo.typelink.[1]*image.Paletted	[1]*image.Paletted.type.[1]*image.Paletted,go.string.hdr."[1]int"  $go.string."[1]int"$go.string."[1]int"[1]inttype.[1]intT0 runtime.algarray@runtime.gcbits.P,go.string.hdr."[1]int"p(go.weak.type.*[1]int"runtime.zerovaluetype.inttype.[]int2go.typelink.[1]int	[1]inttype.[1]intTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals895d0569a38a56443b84805daa09d838Tgclocals3bb21ca8fe1d99a3e492463bd711418a2type..hashfunc."".Options*type..hash."".Options.type..eqfunc."".Options&type..eq."".Options(type..alg."".Options  2type..hashfunc."".Options.type..eqfunc."".Options"runtime.gcbits.1e6go.string.hdr."gif.Options"  .go.string."gif.Options".go.string."gif.Options" gif.Options2go.string.hdr."NumColors"  	*go.string."NumColors"*go.string."NumColors" NumColors2go.string.hdr."Quantizer"  	*go.string."Quantizer"*go.string."Quantizer" Quantizer,go.string.hdr."Drawer"  $go.string."Drawer"$go.string."Drawer"Drawer.go.string.hdr."Options"  &go.string."Options"&go.string."Options"Optionstype."".Options((6/ 0(type..alg."".Options@"runtime.gcbits.1eP6go.string.hdr."gif.Options"p type.*"".Options"runtime.zerovaluetype."".Options2go.string.hdr."NumColors"type.int2go.string.hdr."Quantizer"2type.image/draw.Quantizer,go.string.hdr."Drawer",type.image/draw.Drawer`type."".Options.go.string.hdr."Options""go.importpath."".type."".Options8go.string.hdr."*gif.Options"  0go.string."*gif.Options"0go.string."*gif.Options" *gif.Options type.*"".Optionsw60 runtime.algarray@"runtime.gcbits.01P8go.string.hdr."*gif.Options"p2go.weak.type.**"".Options"runtime.zerovaluetype."".OptionsFgo.string.hdr."*[1]*image.Paletted"  >go.string."*[1]*image.Paletted">go.string."*[1]*image.Paletted"0(*[1]*image.Paletted0type.*[1]*image.PalettedCvS60 runtime.algarray@"runtime.gcbits.01PFgo.string.hdr."*[1]*image.Paletted"pBgo.weak.type.**[1]*image.Paletted"runtime.zerovalue.type.[1]*image.Paletted.go.string.hdr."*[1]int"  &go.string."*[1]int"&go.string."*[1]int"*[1]inttype.*[1]int5@60 runtime.algarray@"runtime.gcbits.01P.go.string.hdr."*[1]int"p*go.weak.type.**[1]int"runtime.zerovaluetype.[1]intHgo.string.hdr."[4]gif.interlaceScan"  @go.string."[4]gif.interlaceScan"@go.string."[4]gif.interlaceScan"0*[4]gif.interlaceScan0type.[4]"".interlaceScan@fc'0type..alg64@runtime.gcbits.PHgo.string.hdr."[4]gif.interlaceScan"pBgo.weak.type.*[4]"".interlaceScan"runtime.zerovalue*type."".interlaceScan.type.[]"".interlaceScanhgo.typelink.[4]gif.interlaceScan	[4]"".interlaceScan0type.[4]"".interlaceScan.go.string.hdr."runtime"  &go.string."runtime"&go.string."runtime"runtime,go.importpath.runtime.  &go.string."runtime"*go.string.hdr."bufio"  "go.string."bufio""go.string."bufio"bufio(go.importpath.bufio.  "go.string."bufio"*go.string.hdr."bytes"  "go.string."bytes""go.string."bytes"bytes(go.importpath.bytes.  "go.string."bytes",go.string.hdr."errors"  $go.string."errors"$go.string."errors"errors*go.importpath.errors.  $go.string."errors"$go.string.hdr."io"  go.string."io"go.string."io"io"go.importpath.io.  go.string."io"8go.string.hdr."compress/lzw"  0go.string."compress/lzw"0go.string."compress/lzw" compress/lzw6go.importpath.compress/lzw.  0go.string."compress/lzw"&go.string.hdr."fmt"  go.string."fmt"go.string."fmt"fmt$go.importpath.fmt.  go.string."fmt"(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"Fgo.string.hdr."image/color/palette"  >go.string."image/color/palette">go.string."image/color/palette"0(image/color/paletteDgo.importpath.image/color/palette.  >go.string."image/color/palette"4go.string.hdr."image/draw"  
   1130 ,go.string."image/draw",go.string."image/draw" image/draw2go.importpath.image/draw.  
   1131 ,go.string."image/draw"""".reader.Readf"".reader.Read*"".reader.ReadBytef$"".reader.ReadByte:type..hash.[1]interface {}f4type..hash.[1]interface {}6type..eq.[1]interface {}f0type..eq.[1]interface {}$"".writer.Flushf"".writer.Flush$"".writer.Writef"".writer.Write,"".writer.WriteBytef&"".writer.WriteByte4"".(*blockWriter).Writef."".(*blockWriter).Write0type..hash."".Optionsf*type..hash."".Options,type..eq."".Optionsf&type..eq."".Options"runtime.zerovaluego13ld