blob: 1748b6a05357afd5893062e842a9bcac23c2e467 [file] [log] [blame]
!<arch>
__.PKGDEF 0 0 0 644 8991 `
go object linux amd64 go1.5.1 X:none
build id "1a88157c50023aa98d71e1c76db759d5ee4ba8f6"
$$
package gif
import runtime "runtime"
import bufio "bufio"
import bytes "bytes"
import errors "errors"
import io "io"
import lzw "compress/lzw"
import fmt "fmt"
import image "image"
import color "image/color"
import palette "image/color/palette"
import draw "image/draw"
const @"".DisposalNone = 0x1
const @"".DisposalBackground = 0x2
const @"".DisposalPrevious = 0x3
type @"image/color".Color interface { RGBA() (@"image/color".r uint32, @"image/color".g uint32, @"image/color".b uint32, @"image/color".a uint32) }
type @"image".Point struct { X int; Y int }
func (@"image".p·2 @"image".Point) Add (@"image".q·3 @"image".Point) (? @"image".Point) { return (@"image".Point{ X:@"image".p·2.X + @"image".q·3.X, Y:@"image".p·2.Y + @"image".q·3.Y }) }
func (@"image".p·2 @"image".Point) Div (@"image".k·3 int) (? @"image".Point) { return (@"image".Point{ X:@"image".p·2.X / @"image".k·3, Y:@"image".p·2.Y / @"image".k·3 }) }
func (@"image".p·2 @"image".Point) Eq (@"image".q·3 @"image".Point) (? bool) { return @"image".p·2 == @"image".q·3 }
func (@"image".p·2 @"image".Point) In (@"image".r·3 @"image".Rectangle) (? bool) { return @"image".r·3.Min.X <= @"image".p·2.X && @"image".p·2.X < @"image".r·3.Max.X && @"image".r·3.Min.Y <= @"image".p·2.Y && @"image".p·2.Y < @"image".r·3.Max.Y }
func (@"image".p·2 @"image".Point) Mod (@"image".r·3 @"image".Rectangle) (? @"image".Point)
func (@"image".p·2 @"image".Point) Mul (@"image".k·3 int) (? @"image".Point) { return (@"image".Point{ X:@"image".p·2.X * @"image".k·3, Y:@"image".p·2.Y * @"image".k·3 }) }
func (@"image".p·2 @"image".Point) String () (? string)
func (@"image".p·2 @"image".Point) Sub (@"image".q·3 @"image".Point) (? @"image".Point) { return (@"image".Point{ X:@"image".p·2.X - @"image".q·3.X, Y:@"image".p·2.Y - @"image".q·3.Y }) }
type @"image/color".Model interface { Convert(@"image/color".c @"image/color".Color) (? @"image/color".Color) }
type @"image".Rectangle struct { Min @"image".Point; Max @"image".Point }
func (@"image".r·2 @"image".Rectangle) Add (@"image".p·3 @"image".Point) (? @"image".Rectangle) { return (@"image".Rectangle{ Min:(@"image".Point{ X:@"image".r·2.Min.X + @"image".p·3.X, Y:@"image".r·2.Min.Y + @"image".p·3.Y }), Max:(@"image".Point{ X:@"image".r·2.Max.X + @"image".p·3.X, Y:@"image".r·2.Max.Y + @"image".p·3.Y }) }) }
func (@"image".r·2 @"image".Rectangle) At (@"image".x·3 int, @"image".y·4 int) (? @"image/color".Color) { if (@"image".Point{ X:@"image".x·3, Y:@"image".y·4 }).In(@"image".r·2) { return @"image/color".Opaque }; return @"image/color".Transparent }
func (@"image".r·2 @"image".Rectangle) Bounds () (? @"image".Rectangle) { return @"image".r·2 }
func (@"image".r·2 @"image".Rectangle) Canon () (? @"image".Rectangle) { if @"image".r·2.Max.X < @"image".r·2.Min.X { @"image".r·2.Min.X, @"image".r·2.Max.X = @"image".r·2.Max.X, @"image".r·2.Min.X }; if @"image".r·2.Max.Y < @"image".r·2.Min.Y { @"image".r·2.Min.Y, @"image".r·2.Max.Y = @"image".r·2.Max.Y, @"image".r·2.Min.Y }; return @"image".r·2 }
func (@"image".r·2 @"image".Rectangle) ColorModel () (? @"image/color".Model) { return @"image/color".Alpha16Model }
func (@"image".r·2 @"image".Rectangle) Dx () (? int) { return @"image".r·2.Max.X - @"image".r·2.Min.X }
func (@"image".r·2 @"image".Rectangle) Dy () (? int) { return @"image".r·2.Max.Y - @"image".r·2.Min.Y }
func (@"image".r·2 @"image".Rectangle) Empty () (? bool) { return @"image".r·2.Min.X >= @"image".r·2.Max.X || @"image".r·2.Min.Y >= @"image".r·2.Max.Y }
func (@"image".r·2 @"image".Rectangle) Eq (@"image".s·3 @"image".Rectangle) (? bool) { return @"image".r·2 == @"image".s·3 || @"image".r·2.Empty() && @"image".s·3.Empty() }
func (@"image".r·2 @"image".Rectangle) In (@"image".s·3 @"image".Rectangle) (? bool) { if @"image".r·2.Empty() { return true }; return @"image".s·3.Min.X <= @"image".r·2.Min.X && @"image".r·2.Max.X <= @"image".s·3.Max.X && @"image".s·3.Min.Y <= @"image".r·2.Min.Y && @"image".r·2.Max.Y <= @"image".s·3.Max.Y }
func (@"image".r·2 @"image".Rectangle) Inset (@"image".n·3 int) (? @"image".Rectangle)
func (@"image".r·2 @"image".Rectangle) Intersect (@"image".s·3 @"image".Rectangle) (? @"image".Rectangle)
func (@"image".r·2 @"image".Rectangle) Overlaps (@"image".s·3 @"image".Rectangle) (? bool)
func (@"image".r·2 @"image".Rectangle) Size () (? @"image".Point) { return (@"image".Point{ X:@"image".r·2.Max.X - @"image".r·2.Min.X, Y:@"image".r·2.Max.Y - @"image".r·2.Min.Y }) }
func (@"image".r·2 @"image".Rectangle) String () (? string)
func (@"image".r·2 @"image".Rectangle) Sub (@"image".p·3 @"image".Point) (? @"image".Rectangle) { return (@"image".Rectangle{ Min:(@"image".Point{ X:@"image".r·2.Min.X - @"image".p·3.X, Y:@"image".r·2.Min.Y - @"image".p·3.Y }), Max:(@"image".Point{ X:@"image".r·2.Max.X - @"image".p·3.X, Y:@"image".r·2.Max.Y - @"image".p·3.Y }) }) }
func (@"image".r·2 @"image".Rectangle) Union (@"image".s·3 @"image".Rectangle) (? @"image".Rectangle)
type @"image".Image interface { At(@"image".x int, @"image".y int) (? @"image/color".Color); Bounds() (? @"image".Rectangle); ColorModel() (? @"image/color".Model) }
type @"io".Reader interface { Read(@"io".p []byte) (@"io".n int, @"io".err error) }
func @"".Decode (@"".r·3 @"io".Reader) (? @"image".Image, ? error)
type @"image/color".Palette []@"image/color".Color
func (@"image/color".p·2 @"image/color".Palette "esc:0x2a") Convert (@"image/color".c·3 @"image/color".Color) (? @"image/color".Color)
func (@"image/color".p·2 @"image/color".Palette "esc:0x9") Index (@"image/color".c·3 @"image/color".Color) (? int)
type @"image".Paletted struct { Pix []uint8; Stride int; Rect @"image".Rectangle; Palette @"image/color".Palette }
func (@"image".p·2 *@"image".Paletted "esc:0x32") At (@"image".x·3 int, @"image".y·4 int) (? @"image/color".Color)
func (@"image".p·2 *@"image".Paletted "esc:0x1") Bounds () (? @"image".Rectangle) { return @"image".p·2.Rect }
func (@"image".p·2 *@"image".Paletted "esc:0x1") ColorIndexAt (@"image".x·3 int, @"image".y·4 int) (? uint8)
func (@"image".p·2 *@"image".Paletted "esc:0x22") ColorModel () (? @"image/color".Model) { return @"image".p·2.Palette }
func (@"image".p·2 *@"image".Paletted "esc:0x9") Opaque () (? bool)
func (@"image".p·2 *@"image".Paletted "esc:0x1") PixOffset (@"image".x·3 int, @"image".y·4 int) (? int) { return (@"image".y·4 - @"image".p·2.Rect.Min.Y) * @"image".p·2.Stride + (@"image".x·3 - @"image".p·2.Rect.Min.X) * 0x1 }
func (@"image".p·1 *@"image".Paletted "esc:0x9") Set (@"image".x·2 int, @"image".y·3 int, @"image".c·4 @"image/color".Color)
func (@"image".p·1 *@"image".Paletted "esc:0x1") SetColorIndex (@"image".x·2 int, @"image".y·3 int, @"image".index·4 uint8)
func (@"image".p·2 *@"image".Paletted "esc:0xa") SubImage (@"image".r·3 @"image".Rectangle) (? @"image".Image)
type @"image".Config struct { ColorModel @"image/color".Model; Width int; Height int }
type @"".GIF struct { Image []*@"image".Paletted; Delay []int; LoopCount int; Disposal []byte; Config @"image".Config; BackgroundIndex byte }
func @"".DecodeAll (@"".r·3 @"io".Reader) (? *@"".GIF, ? error)
func @"".DecodeConfig (@"".r·3 @"io".Reader) (? @"image".Config, ? error)
type @"image/draw".Quantizer interface { Quantize(@"image/draw".p @"image/color".Palette, @"image/draw".m @"image".Image) (? @"image/color".Palette) }
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) }
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) }
type @"".Options struct { NumColors int; Quantizer @"image/draw".Quantizer; Drawer @"image/draw".Drawer }
type @"io".Writer interface { Write(@"io".p []byte) (@"io".n int, @"io".err error) }
func @"".EncodeAll (@"".w·2 @"io".Writer, @"".g·3 *@"".GIF "esc:0x2a") (? error)
func @"".Encode (@"".w·2 @"io".Writer, @"".m·3 @"image".Image, @"".o·4 *@"".Options "esc:0x9") (? error)
func @"".init ()
type @"image/color".Alpha16 struct { A uint16 }
func (@"image/color".c·5 @"image/color".Alpha16) RGBA () (@"image/color".r·1 uint32, @"image/color".g·2 uint32, @"image/color".b·3 uint32, @"image/color".a·4 uint32) { @"image/color".a·4 = uint32(@"image/color".c·5.A); return @"image/color".a·4, @"image/color".a·4, @"image/color".a·4, @"image/color".a·4 }
var @"image/color".Opaque @"image/color".Alpha16
var @"image/color".Transparent @"image/color".Alpha16
var @"image/color".Alpha16Model @"image/color".Model
$$
�_go_.o 0 0 0 644 190038 `
go object linux amd64 go1.5.1 X:none
!
��go13ldbufio.acompress/lzw.aerrors.a
fmt.aimage.aimage/color.aio.abytes.a*image/color/palette.aimage/draw.a�þ,"".(*blockReader).Read��à��ÜdH‹ %����HD$øH;A†L��Hìˆ���H‹œ$ˆ���H‰$è����1ÛH‰œ$¸���H‰œ$À���H‹œ$���H‰$Hƒ$(è����H‹Œ$���H‹i(Hƒý�tQH‰ $Hƒ$(è����HDŽ$°�������H‹œ$���Hƒû�t%H‹k(H‰¬$¸���H‹k0H‰¬$À���è����HÄˆ���Éë×H‹œ$ ���Hƒû�u+HDŽ$°�������1ÛH‰œ$¸���H‰œ$À���è����HÄˆ���ÃH‰ $Hƒ$è����H‹„$���H‹hHƒý�…G��H‰$è����H‹œ$���Hƒû�„%��H‹ H‹kH‰l$XH‰,$H‰L$PH‹Y(ÿÓ¶\$H‰ØH‹\$H‰\$`H‹\$H‰\$hˆD$GH‹œ$���H‰$Hƒ$(è����H‹œ$���H‹l$`H‰k(H‹l$h€=�����…š��H‰k0H‹œ$���H‰$Hƒ$(è����¶L$GH‹„$���H‹h(Hƒý�tQH‰$Hƒ$(è����HDŽ$°�������H‹œ$���Hƒû�t%H‹k(H‰¬$¸���H‹k0H‰¬$À���è����HÄˆ���Éë׀ù�…²���H‰$Hƒ$(è����H����H‰$è����H‹œ$���H‹-����H‰k(H‹-����€=�����u]H‰k0H‹œ$���H‰$Hƒ$(è����HDŽ$°�������H‹œ$���Hƒû�t%H‹k(H‰¬$¸���H‹k0H‰¬$À���è����HÄˆ���Éë×LC0L‰$H‰l$è����듶ÙHû���‡F��H‰ÅHƒÅ8Hƒý�„-��H‰\$xHDŽ$€������H‰l$pH‰$Hƒ$è����H‹œ$���H‹l$xH‰kH‹¬$€���H‰k H‹l$p€=�����…Ã��H‰kH‹œ$���H‰$è����H‹œ$���H‰$Hƒ$è����H����H‰$H‹´$���H|$H‹H‰H‹NH‰Oè����H\$H‹ H‰ $H‹KH‰L$H‹´$���Hƒþ�„?��H^H|$H‹ H‰H‹KH‰OH‹KH‰Oè����H‹\$0H‰\$`H‹\$8H‰\$hH‹œ$���H‰$Hƒ$(è����H‹œ$���H‹l$`H‰k(H‹l$h€=�����…·��H‰k0H‹œ$���H‰$Hƒ$(è����H‹„$���H‹h(Hƒý�tQH‰$Hƒ$(è����HDŽ$°�������H‹œ$���Hƒû�t%H‹k(H‰¬$¸���H‹k0H‰¬$À���è����HÄˆ���Éë×H‰$Hƒ$è����H‹œ$˜���H‰$H‹œ$ ���H‰\$H‹œ$¨���H‰\$H‹´$���Hƒþ�„í���H^H|$H‹ H‰H‹KH‰OH‹KH‰OHÇD$0���è����H‹\$8H‰\$HH‹œ$���H‰$Hƒ$è����H‹œ$���H‰$Hƒ$è����H‹„$���H‹l$HL‹@L‹H L9ÅwiL‹PI)èI)éIƒù�tM*L‰@L‰H €=�����u0L‰PH‹\$HH‰œ$°���1ÛH‰œ$¸���H‰œ$À���è����HÄˆ���ÃHhH‰,$L‰T$è����ëÀè���� ‰é ÿÿÿLC0L‰$H‰l$è����é6þÿÿ‰éºýÿÿLCL‰$H‰l$è����é*ýÿÿ‰E�éËüÿÿè���� LC0L‰$H‰l$è����éSûÿÿ‰éÔúÿÿé_þÿÿè����é’ùÿÿ`
������X
��*runtime.racefuncenter���¨
�� runtime.raceread���è
�� runtime.raceread���Ö
��(runtime.racefuncexit���Ð
��(runtime.racefuncexit���ü
�� runtime.raceread���º
�� runtime.raceread���˜�������€
��"runtime.racewrite���¸�6runtime.writeBarrierEnabled���ú
�� runtime.raceread���Ä
�� runtime.raceread���²
��(runtime.racefuncexit���ø
��"runtime.racewrite���† �� io.EOF���˜ 
�� runtime.raceread���¶ �� io.EOF���Ì � io.EOF���Ø �6runtime.writeBarrierEnabled���’

�� runtime.raceread���€ 
��(runtime.racefuncexit���¼ 
��.runtime.writebarrierptr���Ê 
��"runtime.racewrite���š �6runtime.writeBarrierEnabled���Ò 
�� runtime.raceread���þ 
�� runtime.raceread���Œ��type.io.Reader���Ô
��runtime.convI2I���ê
��io.ReadFull���¾
��"runtime.racewrite���ö�6runtime.writeBarrierEnabled���¸
�� runtime.raceread���ø
�� runtime.raceread���æ
��(runtime.racefuncexit���š
�� runtime.raceread���ä
��"runtime.slicecopy���¤
��"runtime.racewrite���Ð
�� runtime.raceread���È�6runtime.writeBarrierEnabled���ž
��(runtime.racefuncexit���Ò
��.runtime.writebarrierptr���à
��$runtime.panicslice���–
��.runtime.writebarrierptr���Ò
��.runtime.writebarrierptr���ö
��$runtime.panicslice���ž
��.runtime.writebarrierptr���Ê
��0runtime.morestack_noctxt���p��"".autotmp_0011��type.int�"".autotmp_0010��type.error�"".autotmp_0009�/type.[]uint8�"".autotmp_0008�Otype.error�"".autotmp_0006��type.int�"".n�type.int�"".blockLen�type.uint8� "".~r2�Ptype.error� "".~r1�@type.int�"".p�type.[]uint8�"".b��(type.*"".blockReader�`—<°¦ò›•�ð �´Ü0/(@,+ &%$“-@  EH x–@
 }o,+ �T�+S‚=\#„GD¶=W‚ˆ�Tgclocals·8673e44a15fbaa7367253006e3f68366�Tgclocals·2de3026f2f1a4e76c4da3271e2c4e98d���>/tmp/go/src/image/gif/reader.goþ("".(*decoder).decode�� x�� xdH‹ %����H„$pýÿÿH;A†ë��Hì��H‹œ$��H‰$è����1ÛH‰œ$8��H‰œ$@��1ÛH‰œ$è��H‰œ$ð��H����H‰$H‹œ$ ��H‰\$H‹œ$(��H‰\$Hœ$è��H‰\$è����¶\$ H‰ØH‹œ$è��H‰œ$ø���H‹œ$ð��H‰œ$���<�„Š��H‹œ$��H‰$è����H‹œ$��H‹¬$ø���H‰+H‹¬$���€=�����…:��H‰kH‹œ$��H‰$è����H‹L$H‹T$H‰”$@��H‰Œ$8��Hƒù�t#H‰Œ$8��H‰”$@��è����è����HÄ��À¼$0���t%1ÛH‰œ$8��H‰œ$@��è����è����HÄ��ÃH‹œ$��H‰$è����H‹œ$��Hƒû�„‰��H‹H‹kH‰¬$°��H‰,$H‰„$¨��H‹X(ÿÓH‹´$��¶\$H‹l$H‹T$H‰”$`��H‰¬$X��Hƒý�t#H‰¬$8��H‰”$@��è����è����HÄ��Àû!uPH‰4$è����H‹T$H‹L$H‰Œ$`��H‰”$X��Hƒú�„:ÿÿÿH‰”$8��H‰Œ$@��è����è����HÄ��Àû,…È��H‰4$è����H‹L$H‹l$H‹T$H‰Œ$€���H‰”$P��H‰¬$H��Hƒý�t#H‰¬$8��H‰”$@��è����è����HÄ��ÃH‹œ$��H‰$Hƒ$Bè����H‹„$��¶XBHã€���€û�•Á€ù�ˆL$G„n��H‰$Hƒ$Bè����H‹„$��H‰$¶hB@ˆl$è����H‹\$H‰œ$ˆ��H‹\$H‰œ$��H‹\$ H‰œ$˜��H‹\$(H‰œ$Ø��H‹\$0H‰œ$à��H‹œ$€���H‰$Hƒ$@è����H‹œ$€���H‹¬$��H‰kHH‹¬$˜��H‰kPH‹¬$ˆ��€=�����…£��H‰k@H‹Œ$Ø��H‹”$à��H‰”$P��H‰Œ$H��Hƒù�t#H‰Œ$8��H‰”$@��è����è����HÄ��ÃH‹œ$��H‰$Hƒ$Dè����L‹Œ$��A¶YD€û�„ƒ��H‹œ$€���H‰$Hƒ$@è����H‹œ$€���H‹kHH‰l$pH‹œ$��H‰$Hƒ$Cè����L‹Œ$��A¶YCH‹l$pH9ë+��€|$G�…Ã��L‰ $Hƒ$Hè����H‹œ$��Hƒû�„ ��H‹kHH‰¬$X��H‹SPH‹kXH‰¬$h��1ÿH‰ùH‰øH‰¼$��H‰”$`��HÐH)ÈHƒø�~SH����H‰$H‰¼$ˆ��H‰|$H‰|$H‰Œ$˜��H‰L$H‰D$ è����H‹”$`��H‹|$(H‹\$0H‰œ$��H‹L$8H����H‰$1Û1íHÕI‰ÈH‰Œ$˜��H9͇à��H9ë‡×��H)ÝI)ØI‰ùH‰¼$ˆ��Iƒø�tHkÛIÙH‰l$L‰D$L‰L$H‹œ$X��H‰\$ H‰T$(H‹œ$h��H‰\$0è����H‹Œ$˜��H‹¬$`��1ÛHëH9ˇa��H‰ØH‹œ$ˆ��H‰œ$p��H‰„$x��H‰Œ$€��H‹œ$€���H‰$Hƒ$@è����H‹œ$€���H‹¬$x��H‰kHH‹¬$€��H‰kPH‹¬$p��€=�����…Ü��H‰k@1ۈ\$Lˆ\$Mˆ\$Nˆ\$OH‹œ$€���H‰$Hƒ$@è����H‹œ$��H‰$Hƒ$Cè����H‹œ$��¶kCH‹œ$€���H‰èH‹S@H‹KHH‹kPH‰¬$˜��H‰ÓH‰”$ˆ��¶èH‰Œ$��H9̓I��HÁåHëH‰$è����H����H‰$H����H‰\$H����H‰\$H\$LH‰\$HÇD$ ����è����L‹Œ$��H‹T$(H‹L$0A¶iCH‹œ$€���H‰èHƒû�„Ë��H‹{@H‹sHH‹kPH‰¬$˜��H‰ûH‰¼$ˆ��¶èH‰´$��H9õƒ‘��HÁåHëH‰”$˜��H‰H‰Œ$ ��€=�����…K��H‰KL‰ $è����H‹œ$��Hƒû�„%��H‹H‹kH‰¬$°��H‰,$H‰„$¨��H‹X(ÿÓ¶\$H‰ÙH‹l$H‹T$H‰”$P��H‰¬$H��Hƒý�t#H‰¬$8��H‰”$@��è����è����HÄ��Àû‚S ��ˆL$I€ù‡F ��H����H‰$è����H‹D$H‰„$ ���H‰$HÇD$8��è����H‹¼$ ���H‰ùHƒÿ�„û ��1ÀHƒÇøè����H‰ $è����H‹œ$��H‰$è����H‹¬$��Hƒý�„¼ ��H‹œ$ ���Hƒû�„£ ��H‰\$H‰l$H-����H‰,$è����H‹„$ ���H‰„$˜���H‰„$ ���H‹����1íH9è„- ��H‹Œ$ ���H‰„$ˆ��H‰$H‰Œ$��H‰L$HÇD$����¶\$IH‰\$è����H‹L$ H‹D$(H‰„$0��H‰D$H‰Œ$(��Hƒù�„Ä ��HY Ç$���H‰\$è����ƒø�…“ ��H‹œ$€���H‰$è����H����H‰$H‹œ$(��H‰\$H‹œ$0��H‰\$è����H\$H‹ H‰ $H‹KH‰L$H‹´$€���H|$H‹H‰H‹NH‰OH‹NH‰Oè����H‹L$0H‹D$8H‰„$P��H‰Œ$H��Hƒù�„ì���H����H‰$è����H‹œ$H��H‹-����H9ë…‘���H����H‰$è����H‹¬$H��H‰,$H‹¬$P��H‰l$H‹-����H‰l$H‹-����H‰l$è����¶\$ €û�tAH����H‰$è����H‹����H‰œ$8��H‹����H‰œ$@��è����è����HÄ��ÃH‹œ$H��H‰œ$8��H‹œ$P��H‰œ$@��è����è����HÄ��ÃH‹”$��Hƒú�„ò ��HÂ¨���Hƒú�„Ú ��HÇÁ���HÇÀ���H‰”$ ��H‰T$H‰Œ$¨��H‰L$H‰„$°��H‰D$H‹œ$0��H‰$H‹œ$(��H‹[(ÿÓH‹L$ H‹l$(H‹T$0H‰¬$x��H‰”$€��Hƒù�…à��H����H‰$è����H‹œ$x��H‹-����H9ë…@��H����H‰$è����H‹¬$x��H‰,$H‹¬$€��H‰l$H‹-����H‰l$H‹-����H‰l$è����¶\$ €û�„ì��H‹”$��Hƒú�„Ó��HÂ¨���Hƒú�„»��H‹œ$˜���HÇÁ���HÇÀ���H‰$H‰”$ ��H‰T$H‰Œ$¨��H‰L$H‰„$°��H‰D$è����H‹L$ H‹l$(H‹T$0H‰¬$h��H‰”$p��Hƒù�…Ê��H����H‰$è����H‹œ$h��H‹-����H9ë…¢��H����H‰$è����H‹¬$h��H‰,$H‹¬$p��H‰l$H‹-����H‰l$H‹-����H‰l$è����¶\$ €û�„N��H‹œ$€���H‰$Hƒ$@è����H‹Œ$€���H‹iHHý�����H‰ $è����H‹œ$€���Hƒû�„ý��H‹H‹KH‹kH‰¬$°��1ÀH‰Œ$¨��H‰L$XH‰”$ ��H‰ÑH‰D$`H‹l$XH9荴���H‰Œ$°���H‰ $è����H‹œ$°���¶+@ˆl$HH‹œ$€���H‰$Hƒ$@è����H‹œ$€���H‹kH¶\$HH9ë|AH����H‰$è����H‹����H‰œ$8��H‹����H‰œ$@��è����è����HÄ��ÃH‹Œ$°���HÿÁH‹D$`HÿÀH‰D$`H‹l$XH9èŒLÿÿÿH‹œ$��H‰$Hƒ$Bè����H‹¬$��¶]BHƒã@€û�tH‹œ$€���H‰$è����H‹œ$��H‰$H$���è����H‹œ$��Hƒû�„›��H‹“���H‹ƒ˜���H‹› ���H‰ÙH)ÃHƒû}QH����H‰$H‰”$(��H‰T$H‰D$H‰Œ$8��H‰L$H‰ÃH‰„$0��HÿÃH‰\$ è����H‹T$(H‹D$0H‹L$8H‰ÃHÿÃH‰Œ$8��H9ˇ ��H‰œ$0��H‰”$(��H‰D$hHÂH‰$è����H‹œ$(��H‹l$hHëH‹¬$€���€=�����…°��H‰+H‹œ$��H‰$H$���è����H‹œ$��H‹¬$0��H‰«˜���H‹¬$8��H‰« ���H‹¬$(��€=�����…?��H‰«���H‹œ$��H‰$Hƒ$8è����H‹„$��H‹h8H‰l$hH‰$Hƒ$`è����H‹œ$��Hƒû�„ê��H‹S`H‹ChH‹[pH‰ÙH)ÃHƒû}QH����H‰$H‰”$��H‰T$H‰D$H‰Œ$ ��H‰L$H‰ÃH‰„$��HÿÃH‰\$ è����H‹T$(H‹D$0H‹L$8H‰ÃHÿÃH‰Œ$ ��H9ˇc��H‰œ$��H‰”$��H‰D$`HÂH‰$è����H‹œ$��H‹l$`HëH‹l$hH‰+H‹œ$��H‰$Hƒ$`è����H‹œ$��H‹¬$��H‰khH‹¬$ ��H‰kpH‹¬$��€=�����…Æ��H‰k`H‹œ$��H‰$Hƒ$Aè����H‹„$��¶hA@ˆl$KH‰$Hƒ$xè����H‹œ$��Hƒû�„t��H‹SxH‹ƒ€���H‹›ˆ���H‰ÙH)ÃHƒû}QH����H‰$H‰”$ ��H‰T$H‰D$H‰Œ$°��H‰L$H‰ÃH‰„$¨��HÿÃH‰\$ è����H‹T$(H‹D$0H‹L$8H‰ÃHÿÃH‰Œ$°��H9ˇç���H‰œ$¨��H‰”$ ��H‰D$`HH‰$è����H‹œ$ ��H‹l$`H+¶l$K@ˆ+H‹œ$��H‰$Hƒ$xè����H‹œ$��H‹¬$¨��H‰«€���H‹¬$°��H‰«ˆ���H‹¬$ ��€=�����uKH‰kxH‹œ$��H‰$Hƒ$8è����H‹„$��HÇ@8����H‰$Hƒ$Dè����H‹œ$��1í@ˆkDéiîÿÿLCxL‰$H‰l$è����ë¥è���� ‰é…þÿÿLC`L‰$H‰l$è����é'þÿÿè���� ‰éýÿÿLƒ���L‰$H‰l$è����é®üÿÿH‰$H‰l$è����é@üÿÿè���� ‰é^ûÿÿ‰éüùÿÿH‹œ$h��Hƒû�t3H‹œ$h��H‰œ$8��H‹œ$p��H‰œ$@��è����è����HÄ��ÃH����H‰$è����H‹����H‰œ$8��H‹����H‰œ$@��è����è����HÄ��Éé>øÿÿ‰é&øÿÿH����H‰$è����H‹œ$x��H‹-����H9ëuTH����H‰$è����H‹¬$x��H‰,$H‹¬$€��H‰l$H‹-����H‰l$H‹-����H‰l$è����¶\$ €û�…œ÷ÿÿH‹œ$x��Hƒû�t3H‹œ$x��H‰œ$8��H‹œ$€��H‰œ$@��è����è����HÄ��ÃH����H‰$è����H‹����H‰œ$8��H‹����H‰œ$@��è����è����HÄ��Ééöÿÿ‰éöÿÿè����è����HÄ��Éé5ôÿÿH����H‰$H����H‰\$H����H‰\$è����H‹D$é¡óÿÿ‰éVóÿÿ‰E�é<óÿÿ‰éþòÿÿˆL$J1ÛH‰œ$È��H‰œ$Ð��Hœ$È��Hƒû�„.��HDŽ$H�����HDŽ$P�����H‰œ$@��H����H‰$H\$JH‰\$HÇD$����è����H‹\$H‰œ$¸��H‹\$ H‰œ$À��H‹œ$@��H‰$è����H‹œ$@��H‹¬$¸��H‰+H‹¬$À��€=�����…���H‰kH����H‰$HÇD$*���H‹œ$@��H‰\$H‹œ$H��H‰\$H‹œ$P��H‰\$ è����H‹T$(H‹L$0H‰”$Ø��H‰”$8��H‰Œ$à��H‰Œ$@��è����è����HÄ��ÃLCL‰$H‰l$è����élÿÿÿ‰éËþÿÿ‰éÔðÿÿLCL‰$H‰L$è����L‹Œ$��éšðÿÿè���� ‰é.ðÿÿè���� LC@L‰$H‰l$è����éïÿÿè���� è���� ‰éYíÿÿLC@L‰$H‰l$è����éJìÿÿH‰$Hƒ$Hè����H‹œ$��H‹kHHƒý�…*��H����H‰œ$Ø���HDŽ$à������1ÛH‰œ$È���H‰œ$Ð���H����H‰$è����H‹D$H‰„$¨���H‰$è����H‹œ$¨���H‹¬$à���H‰kH‹¬$Ø���€=�����…›���H‰+H‹œ$¨���H‰œ$¨���H‹ ����1íH9étKH‹¬$¨���H‰Œ$Ø��H‰¬$à��H‰Œ$È���H‰Œ$8��H‰¬$Ð���H‰¬$@��è����è����HÄ��ÃH����H‰$H����H‰\$H����H‰\$è����H‹L$ë†H‰$H‰l$è����éUÿÿÿH‹œ$€���H‰$Hƒ$@è����H‹œ$��H‰$Hƒ$Hè����H‹œ$��Hƒû�t9HkHH‹œ$€���Hƒû�t#LC@L‰D$H‰l$H-����H‰,$è����éÖêÿÿ‰ëىëÀû;…Œ���H‰4$H$���è����H‹œ$��H‹«˜���Hƒý�uAH����H‰$è����H‹����H‰œ$8��H‹����H‰œ$@��è����è����HÄ��Ã1ÛH‰œ$8��H‰œ$@��è����è����HÄ��È\$J1ÛH‰œ$È��H‰œ$Ð��Hœ$È��Hƒû�„.��HDŽ$H�����HDŽ$P�����H‰œ$@��H����H‰$H\$JH‰\$HÇD$����è����H‹\$H‰œ$¸��H‹\$ H‰œ$À��H‹œ$@��H‰$è����H‹œ$@��H‹¬$¸��H‰+H‹¬$À��€=�����…���H‰kH����H‰$HÇD$���H‹œ$@��H‰\$H‹œ$H��H‰\$H‹œ$P��H‰\$ è����H‹T$(H‹L$0H‰”$Ø��H‰”$8��H‰Œ$à��H‰Œ$@��è����è����HÄ��ÃLCL‰$H‰l$è����élÿÿÿ‰éËþÿÿ‰épæÿÿLCL‰$H‰l$è����é³åÿÿH‹Œ$ ��H‹„$(��H‰Œ$��H‰„$��HÇD$P���HDŽ$À�������H����H‰$H‰Œ$��H‰L$H‰„$ ��H‰D$Hœ$À���H‰\$è����¶\$ H‹Œ$À���€û�„õ���H‰Œ$ˆ���H‰ $è����H‹Œ$ˆ���H‹YH‹l$PH9ëŒÊ���H‰ÈH‰„$¸���H‹����H‰„$°���1íH9ètoH‹œ$��H‰$è����H‹Œ$¸���H‹„$°���H‹œ$��Hƒû�t<H‰„$¨��H‰H‰Œ$°��€=�����u H‰Ké‘äÿÿLCL‰$H‰L$è����ézäÿÿ‰ëÀH����H‰$H����H‰\$H����H‰\$è����H‹\$H‰œ$°���éWÿÿÿH‹\$PHƒû} HÇD$P���H����H‰$è����H‹L$PH‹D$H‰D$xH‰„$���H����H‰$H‰L$H‰L$è����L‹D$H‹t$ H‹l$(H‹”$��H‹Œ$ ��H¼$¸��1ÀHƒÇøè����L‰„$ø��L‰„$¸��H‰´$���H‰´$À��H‰¬$��H‰¬$È��H‰”$è���H‰”$Ð��H‰Œ$ð���H‰Œ$Ø��HDŽ$���ÿÿÿÿHDŽ$��ÿÿÿÿH‹œ$���H‰$HÇD$X���è����H‹œ$���Hƒû�t,H¬$¸��H‰\$H‰l$H-����H‰,$è����H‹D$xéöýÿÿ‰ëÐè����éðáÿÿè
������^
��*runtime.racefuncenter���´��type."".reader���”
��$runtime.assertI2I2���–
��"runtime.racewrite���Ø�6runtime.writeBarrierEnabled���
��V"".(*decoder).readHeaderAndScreenDescriptor���ü
��&runtime.deferreturn���†
��(runtime.racefuncexit���Ú
��&runtime.deferreturn���ä
��(runtime.racefuncexit���–
�� runtime.raceread���€�������‚
��&runtime.deferreturn���Œ
��(runtime.racefuncexit���¸
��6"".(*decoder).readExtension���¬ 
��&runtime.deferreturn���¶ 
��(runtime.racefuncexit���ê 
��H"".(*decoder).newImageFromDescriptor���ð

��&runtime.deferreturn���ú

��(runtime.racefuncexit���¶ 
�� runtime.raceread���ž 
�� runtime.raceread���Ò 
��8"".(*decoder).readColorTable���€
��"runtime.racewrite���Ü�6runtime.writeBarrierEnabled���ê
��&runtime.deferreturn���ô
��(runtime.racefuncexit���°
�� runtime.raceread���ˆ
�� runtime.raceread���Ö
�� runtime.raceread���¾
�� runtime.raceread���ð��0type.image/color.Palette���Ê
��&runtime.growslice_n���–��,type.image/color.Color���ˆ
��,runtime.typedslicecopy���¶
��"runtime.racewrite���’�6runtime.writeBarrierEnabled���ø
�� runtime.raceread���¤
�� runtime.raceread���Ø
��"runtime.racewrite���æ��*type.image/color.RGBA���ü��,type.image/color.Color���”��Tgo.itab.image/color.RGBA.image/color.Color���Î
��runtime.convT2I���Ì�6runtime.writeBarrierEnabled���ô
�� runtime.raceread���Þ�������Ö 
��&runtime.deferreturn���à 
��(runtime.racefuncexit���ª!��&type."".blockReader���¼!
��"runtime.newobject���ú!
��,runtime.racewriterange���º"
Ê� runtime.duffzero���Ì"
��"runtime.racewrite���î"
�� runtime.raceread���Ø#��type."".reader���ê#
��(runtime.typedmemmove���¨$��Bgo.itab.*"".blockReader.io.Reader���°%
��,compress/lzw.NewReader���¬&
��"runtime.deferproc���à&
�� runtime.raceread���î&��type.io.Reader���´'
��runtime.convI2I���®(
��io.ReadFull���„)��&io.ErrUnexpectedEOF���–)
�� runtime.raceread���´)��&io.ErrUnexpectedEOF���Ô)��&io.ErrUnexpectedEOF���æ)
�� runtime.raceread���¦*��&io.ErrUnexpectedEOF���¾*�&io.ErrUnexpectedEOF���Ò*
��runtime.ifaceeq���ô*��"".errNotEnough���†+
�� runtime.raceread���”+��"".errNotEnough���²+�"".errNotEnough���Î+
��&runtime.deferreturn���Ø+
��(runtime.racefuncexit���´,
��&runtime.deferreturn���¾,
��(runtime.racefuncexit���¶.�������’/�� io.EOF���¤/
�� runtime.raceread���Â/�� io.EOF���â/�� io.EOF���ô/
�� runtime.raceread���´0�� io.EOF���Ì0� io.EOF���à0
��runtime.ifaceeq���Î2
��,"".(*blockReader).Read���®3�� io.EOF���À3
�� runtime.raceread���Þ3�� io.EOF���þ3�� io.EOF���4
�� runtime.raceread���Ð4�� io.EOF���è4� io.EOF���ü4
��runtime.ifaceeq���Ä5
�� runtime.raceread���ˆ6
�� runtime.raceread���Î7
�� runtime.raceread���š8
�� runtime.raceread���Ô8��"".errBadPixel���æ8
�� runtime.raceread���ô8��"".errBadPixel���’9�"".errBadPixel���®9
��&runtime.deferreturn���¸9
��(runtime.racefuncexit���À:
�� runtime.raceread���Œ;
��"".uninterlace���¾;
�� runtime.raceread���²<��,type.[]*image.Paletted���¨=
��"runtime.growslice���¸>
��"runtime.racewrite���ö>�6runtime.writeBarrierEnabled���¼?
��"runtime.racewrite���¤@�6runtime.writeBarrierEnabled���ì@
�� runtime.raceread���ªA
�� runtime.raceread���ŒB��type.[]int���‚C
��"runtime.growslice���’D
��"runtime.racewrite���ðD
��"runtime.racewrite���ÌE�6runtime.writeBarrierEnabled���ŽF
�� runtime.raceread���ÌF
�� runtime.raceread���ºG��type.[]uint8���°H
��"runtime.growslice���ÀI
��"runtime.racewrite���žJ
��"runtime.racewrite���†K�6runtime.writeBarrierEnabled���ÀK
��"runtime.racewrite���üK
��"runtime.racewrite���ÆL
��.runtime.writebarrierptr���ÔL
��$runtime.panicslice���ŠM
��.runtime.writebarrierptr���žM
��$runtime.panicslice���ÚM
��.runtime.writebarrierptr���€N
��.runtime.writebarrierptr���”N
��$runtime.panicslice���œO
��&runtime.deferreturn���¦O
��(runtime.racefuncexit���ÄO��"".errTooMuch���ÖO
�� runtime.raceread���äO��"".errTooMuch���‚P�"".errTooMuch���žP
��&runtime.deferreturn���¨P
��(runtime.racefuncexit���âP��&io.ErrUnexpectedEOF���ôP
�� runtime.raceread���’Q��&io.ErrUnexpectedEOF���ªQ��&io.ErrUnexpectedEOF���¼Q
�� runtime.raceread���üQ��&io.ErrUnexpectedEOF���”R�&io.ErrUnexpectedEOF���¨R
��runtime.ifaceeq���¬S
��&runtime.deferreturn���¶S
��(runtime.racefuncexit���ÔS��"".errTooMuch���æS
�� runtime.raceread���ôS��"".errTooMuch���’T�"".errTooMuch���®T
��&runtime.deferreturn���¸T
��(runtime.racefuncexit���ðT
��&runtime.deferreturn���úT
��(runtime.racefuncexit���¦U��(type.*"".blockReader���¼U��type.io.Reader���ÔU��Bgo.itab.*"".blockReader.io.Reader���èU
�� runtime.typ2Itab���ÆW��type.uint8���þW
��runtime.convT2E���ÔX
��"runtime.racewrite���–Y�6runtime.writeBarrierEnabled���ºY��lgo.string."gif: pixel size in decode out of range: %d"���¬Z
��fmt.Errorf���Œ[
��&runtime.deferreturn���–[
��(runtime.racefuncexit���Ê[
��.runtime.writebarrierptr���”\
��.runtime.writebarrierptr���¸\
��$runtime.panicindex���Ô\
��$runtime.panicindex���ü\
��.runtime.writebarrierptr���]
��$runtime.panicslice���ž]
��$runtime.panicslice���Ô]
��.runtime.writebarrierptr���ú]
�� runtime.raceread���´^��>go.string."gif: no color table"���Ž_��.type.errors.errorString��� _
��"runtime.newobject���Ì_
��"runtime.racewrite���`�6runtime.writeBarrierEnabled���Ò`��Bgo.itab.*errors.errorString.error���Üa
��&runtime.deferreturn���æa
��(runtime.racefuncexit���„b��0type.*errors.errorString���šb��type.error���²b��Bgo.itab.*errors.errorString.error���Æb
�� runtime.typ2Itab���ðb
��.runtime.writebarrierptr���¦c
��"runtime.racewrite���Òc
�� runtime.raceread���¼d��0type.image/color.Palette���Îd
��(runtime.typedmemmove���œe
�� runtime.raceread���Ôe��&io.ErrUnexpectedEOF���æe
�� runtime.raceread���ôe��&io.ErrUnexpectedEOF���’f�&io.ErrUnexpectedEOF���®f
��&runtime.deferreturn���¸f
��(runtime.racefuncexit���øf
��&runtime.deferreturn���‚g
��(runtime.racefuncexit���°h��type.uint8���èh
��runtime.convT2E���¾i
��"runtime.racewrite���€j�6runtime.writeBarrierEnabled���¤j��Vgo.string."gif: unknown block type: 0x%.2x"���–k
��fmt.Errorf���ök
��&runtime.deferreturn���€l
��(runtime.racefuncexit���´l
��.runtime.writebarrierptr���þl
��.runtime.writebarrierptr���€n��$type.*bufio.Reader���àn
��$runtime.assertI2T2���®o
�� runtime.raceread���†p��>go.itab.*bufio.Reader."".reader���Æp
��"runtime.racewrite���´q�6runtime.writeBarrierEnabled���ðq
��.runtime.writebarrierptr���r��$type.*bufio.Reader���¦r��type."".reader���¾r��>go.itab.*bufio.Reader."".reader���Òr
�� runtime.typ2Itab���¬s��"type.bufio.Reader���¾s
��"runtime.newobject���ús��type.[]uint8��� t
��"runtime.makeslice���„u
Ô� runtime.duffzero���ˆw
��,runtime.racewriterange���Öw��"type.bufio.Reader���èw
��(runtime.typedmemmove���Žx
��0runtime.morestack_noctxt���`  ��¶"".autotmp_0083��"type.interface {}�"".autotmp_0082��(type.[1]interface {}�"".autotmp_0080��*type.*[1]interface {}�"".autotmp_0079��&type.[]interface {}�"".autotmp_0078��type.int�"".autotmp_0077��type.[]uint8�"".autotmp_0076��type.uint8�"".autotmp_0075��type.int�"".autotmp_0074�ÿtype.[]int�"".autotmp_0073��type.int�"".autotmp_0072��type.int�"".autotmp_0071�Ï,type.[]*image.Paletted�"".autotmp_0070��type.uint8�"".autotmp_0069��type.*uint8�"".autotmp_0068�ï
type.int�"".autotmp_0067�ß
type.int�"".autotmp_0066��type.*uint8�"".autotmp_0065�ß (type.*"".blockReader�"".autotmp_0064�¯"type.interface {}�"".autotmp_0063�(type.[1]interface {}�"".autotmp_0060�Ÿ&type.[]interface {}�"".autotmp_0059�Ï
type.int�"".autotmp_0058��0type.image/color.Palette�"".autotmp_0057�ï0type.[]image/color.Color�"".autotmp_0056��type.*uint8�"".autotmp_0055��type.error�"".autotmp_0054�Ï 0type.*errors.errorString�"".autotmp_0053��type.uint8�"".autotmp_0052�¿ type.*uint8�"".autotmp_0051��$type.*bufio.Reader�"".autotmp_0050��type.error�"".autotmp_0049��type.uint8�"".autotmp_0048��type.int�"".autotmp_0046��type.[]uint8�"".autotmp_0045��type.int�"".autotmp_0044��type.error�"".autotmp_0043��type.int�"".autotmp_0042��type.[]uint8�"".autotmp_0041��type.error�"".autotmp_0040��type.int�"".autotmp_0039��type.[]uint8�"".autotmp_0038��type.error�"".autotmp_0036��(type.*"".blockReader�"".autotmp_0035��type.error�"".autotmp_0034�‹ type.uint8�"".autotmp_0033��type.error�"".autotmp_0032��type.uint8�"".autotmp_0031�‡ *type.image/color.RGBA�"".autotmp_0030�¿0type.image/color.Palette�"".autotmp_0029��type.int�"".autotmp_0028��0type.*errors.errorString�"".autotmp_0027��type.error�"".autotmp_0026�0type.image/color.Palette�"".autotmp_0025��type.error�"".autotmp_0023��type.error�"".autotmp_0022��type.error�"".autotmp_0021�‰ type.uint8�"".autotmp_0020�ïtype.error�"".autotmp_0019��$type.*bufio.Reader�"".autotmp_0018�¯"type.bufio.Reader�"".autotmp_0017�ßtype.[]uint8�"".autotmp_0016�¯ $type.*bufio.Reader�"".autotmp_0015�¿
type.int�"".autotmp_0014�Ÿ $type.*bufio.Reader�"".autotmp_0013�Ïtype."".reader� "".~r0� type.error�errors.text·2�ïtype.string�bufio.r·3�Ïtype.io.Reader�bufio.buf·2�¯type.[]uint8�bufio.b·1�ÿ $type.*bufio.Reader�bufio.r·6�¯
$type.*bufio.Reader�bufio.b·4�
$type.*bufio.Reader�bufio.size·3�ÿ
type.int�bufio.rd·2�ïtype.io.Reader�bufio.rd·2�type.io.Reader�"".pixel� type.uint8� "".err�Ïtype.error� "".err�¯type.error�"".lzwr�Ï$type.io.ReadCloser�
"".br�ï (type.*"".blockReader�"".litWidth� type.uint8�*"".useLocalColorTable�‘ type.bool� "".err�type.error�"".m�Ÿ
(type.*image.Paletted� "".err�ïtype.error� "".err�¯type.error�
"".rr�¯type."".reader� "".~r2�@type.error�"".configOnly�0type.bool�"".r�type.io.Reader�"".d�� type.*"".decoder�–"  ¬Ÿ   .Ÿ   “Ÿ   TŸ   aŸ   ¼Ÿ   µŸ   »Ÿ   2Ÿ   ¼Ÿ   ö
Ÿ   @Ÿ   ÆŸ   @Ÿ   Ÿ   Ÿ   §Ÿ   ¨Ÿ   $Ÿ   ¾Ÿ   „�<�ˆ”"*)y=
#
c- (/ Є ÃÝV?@¯e=œx4YZ&UV— Ž/|,4•–&+ÚÑÙ&¿¶!&ƒ„4‡ˆ x&wx4{|#OP2²EF& 
$Û%&Jj’ &4¿ÀÃIJÉÊ&Ñ
…
�ú�.[A=Ó¥t$ ŸWa®4Û>µx1#¶(6Õ9‚… L7#Jü"BX5Ó8~7Ù:€9J
6
;C#,.›-#^&‹+l/ %)"
"S‡60 {Hž<+l/ %;q'L U161´0�Tgclocals·0a36944aa36b6ab1001db46d1337945e�Tgclocals·bcd393509e676e83e48888afa0238fd2���>/tmp/go/src/image/gif/reader.goþV"".(*decoder).readHeaderAndScreenDescriptor��€��ädH‹ %����HD$ H;A†Ð��Hìà���H‹œ$à���H‰$è����H‹„$è���1ÛH‰œ$ð���H‰œ$ø���H‰ÃHƒø�„Š��HÃ¨���Hƒû�„r��HDŽ$Ð��� ���HDŽ$Ø������H‰œ$È���H‰$è����H����H‰$H‹´$è���H|$H‹H‰H‹NH‰Oè����H\$H‹ H‰ $H‹KH‰L$H‹œ$È���H‰\$H‹œ$Ð���H‰\$H‹œ$Ø���H‰\$ è����H‹”$è���H‹D$0H‹L$8H‰L$PH‰D$HHƒø�tH‰„$ð���H‰Œ$ø���è����HÄà���ÃH‰ÓHƒú�„Š��HÃ¨���Hƒû�„r��HDŽ$Ð������HDŽ$Ø������H‰œ$È���H‰$Hƒ$è����HÇ$����H‹œ$È���H‰\$H‹œ$Ð���H‰\$H‹œ$Ø���H‰\$è����H‹L$ H‹D$(H‹œ$è���Hƒû�„í��H‰D$`H‰CH‰L$X€=�����…»��H‰KH‹œ$è���H‰$Hƒ$è����H‹”$è���Hƒú�„ˆ��H‹JH‰L$XH‹BH‰D$`Hƒø…ž��H‰ $H‰D$H-����H‰l$HÇD$���è����H‹”$è���¶\$ €û�„e��H‰$Hƒ$ è����H‹œ$è���H«¨���HƒÅH‰,$è����H‹œ$è���H«¨���HƒÅH‰,$è����H‹„$è���¶˜®���¶¨¯���HÁåHëH‰X H‰$Hƒ$(è����H‹œ$è���H«¨���HƒÅH‰,$è����H‹œ$è���H«¨���HƒÅ H‰,$è����H‹„$è���¶˜°���¶¨±���HÁåHëH‰X(H¨¨���HƒÅ
H‰,$è����H‹Œ$è���¶©²���H‰ë@ˆl$GHã€���€û�„"��H‰ $Hƒ$@è����H‹œ$è���H«¨���HƒÅ H‰,$è����H‹„$è���Hƒø�„��¶¨³���@ˆh@H‰$¶\$Gˆ\$è����H‹\$H‰œ$°���H‹\$H‰œ$¸���H‹\$ H‰œ$À���H‹\$(H‰œ$ˆ���H‹\$0H‰œ$���H‹œ$è���H‰$Hƒ$Hè����H‹œ$è���H‹¬$¸���H‰kPH‹¬$À���H‰kXH‹¬$°���€=�����u`H‰kHH‹„$ˆ���H‹Œ$���H‰L$PH‰D$HHƒø�tH‰„$ð���H‰Œ$ø���è����HÄà���Ã1ÛH‰œ$ð���H‰œ$ø���è����HÄà���ÃLCHL‰$H‰l$è����됉�éàþÿÿH‰$Hƒ$è����H‹”$è���Hƒú�„§��H‹JH‰L$XH‹BH‰D$`Hƒøu9H‰ $H‰D$H-����H‰l$HÇD$���è����H‹”$è���¶\$ €û�…*ýÿÿ1ÛH‰\$xH‰œ$€���H\$xHƒû�„1��HDŽ$ ������HDŽ$¨������H‰œ$˜���H����H‰$H‰T$Hƒ|$�„é���HƒD$HÇD$����è����H‹\$H‰\$hH‹\$ H‰\$pH‹œ$˜���H‰$è����H‹œ$˜���H‹l$hH‰+H‹l$p€=�����u{H‰kH����H‰$HÇD$���H‹œ$˜���H‰\$H‹œ$ ���H‰\$H‹œ$¨���H‰\$ è����H‹L$(H‹D$0H‰Œ$ˆ���H‰Œ$ð���H‰„$���H‰„$ø���è����HÄà���ÃLCL‰$H‰l$è����érÿÿÿ‰%����é ÿÿÿ‰éÈþÿÿ‰éRþÿÿ‰éqûÿÿLCL‰$H‰L$è����é2ûÿÿ‰é ûÿÿ‰é‡úÿÿ‰éoúÿÿ‰é‡ùÿÿ‰�éoùÿÿè����éùÿÿR
������X
��*runtime.racefuncenter���š
�� runtime.raceread���¨��type.io.Reader���ð
��runtime.convI2I���ò
��io.ReadFull���à
��(runtime.racefuncexit���ˆ
��"runtime.racewrite���ð
��2runtime.slicebytetostring���Ð�6runtime.writeBarrierEnabled���’
�� runtime.raceread���Ž ��$go.string."GIF87a"���´ 
�� runtime.eqstring���ü 
��"runtime.racewrite���´

�� runtime.raceread���ì

�� runtime.raceread���Ê 
��"runtime.racewrite���‚ 
�� runtime.raceread���º 
�� runtime.raceread���¤ 
�� runtime.raceread���Ž
��"runtime.racewrite���Æ
�� runtime.raceread���¤
��8"".(*decoder).readColorTable���Ò
��"runtime.racewrite���®�6runtime.writeBarrierEnabled���¦
��(runtime.racefuncexit���ä
��(runtime.racefuncexit���˜
��.runtime.writebarrierptr���Æ
�� runtime.raceread���º��$go.string."GIF89a"���à
�� runtime.eqstring���–��type.string���è
��runtime.convT2E���²
��"runtime.racewrite���è�6runtime.writeBarrierEnabled���„��Tgo.string."gif: can't recognize format %s"���ö
��fmt.Errorf���Ô
��(runtime.racefuncexit���ˆ
��.runtime.writebarrierptr���ø
��.runtime.writebarrierptr���Ò
��0runtime.morestack_noctxt���0À��"".autotmp_0108�ï"type.interface {}�"".autotmp_0107�Ï(type.[1]interface {}�"".autotmp_0104�&type.[]interface {}�"".autotmp_0103��type.string�"".autotmp_0102��type.string�"".autotmp_0101��type.error�"".autotmp_0100�_0type.image/color.Palette�"".autotmp_0099��type.error�"".autotmp_0098��type.[]uint8�"".autotmp_0097�¯type.error�"".autotmp_0096�/type.[]uint8�"".fields�±type.uint8� "".err�¯type.error� "".~r0�type.error�"".d�� type.*"".decoder�DÀœ¿Àâ¿À¿À·¿ÀŠ�€�ˆ’&%Ê  »}gg;G¾  qŸ2�J�+al7T4ñj9Ñ
%b/8 E�Tgclocals·35a1729b099c0d71fdd08adea73b0542�Tgclocals·7e9c1a0358207526648c7a6c5b3be550���>/tmp/go/src/image/gif/reader.goþ8"".(*decoder).readColorTable��€��ødH‹ %����H„$xÿÿÿH;A†��Hì��H‹œ$��H‰$è����H‹”$��1ÛH‰œ$ ��H‰œ$(��H‰œ$0��1ÛH‰œ$8��H‰œ$@��¶Œ$��Hƒá¶ÉHÿÁHÇÅ���Hƒù@ƒ¡��HÓåH‰ëH‰l$HHkÛHû���‡~��H‰ÕHƒú�„j��HÅ¨���Hƒý�„Q��H‰œ$ø���HDŽ$������H‰¬$ð���H‰$è����H����H‰$H‹´$��H|$H‹H‰H‹NH‰Oè����H\$H‹ H‰ $H‹KH‰L$H‹œ$ð���H‰\$H‹œ$ø���H‰\$H‹œ$���H‰\$ è����H‹l$HH‹L$0H‹T$8H‰T$xH‰L$pHƒù�„X��1ÛH‰œ$ ���H‰œ$¨���Hœ$ ���Hƒû�„-��HDŽ$à������HDŽ$è������H‰œ$Ø���H‰ $H‰T$è����H‹\$H‰œ$���H‹\$H‰œ$˜���H‹œ$Ø���H‰$è����H‹œ$Ø���H‹¬$���H‰+H‹¬$˜���€=�����…•���H‰kH����H‰$HÇD$"���H‹œ$Ø���H‰\$H‹œ$à���H‰\$H‹œ$è���H‰\$ è����H‹L$(H‹D$01ÛH‰œ$ ��H‰œ$(��H‰œ$0��H‰Œ$°���H‰Œ$8��H‰„$¸���H‰„$@��è����HÄ��ÃLCL‰$H‰l$è����éXÿÿÿ‰éÌþÿÿH����H‰$H‰l$H‰l$è����H‹l$H‹T$ H‹D$(1ÉH‰¬$À���H‰”$È���H‰„$Ð���H‹œ$È���1ÀH‰\$`H‹l$`H9è2��H‰D$hH‰D$X1ۈ\$Dˆ\$Eˆ\$Fˆ\$GH‰ÈH‰L$PH‹œ$��HƒÀ�H«¨���H=���ƒ›��Hl�H‰,$è����H‹”$��H‹D$PH‰ÁHƒÀ�Hƒú�„h��Hª¨���H=���ƒN��Hl�¶]�ˆ\$DH‰ÈHÿÀHª¨���H=���ƒ!��Hl�H‰,$è����H‹”$��H‹D$PH‰ÁHÿÀHƒú�„ï��Hª¨���H=���ƒÕ��Hl�¶]�ˆ\$EH‰ÈHƒÀHª¨���H=���ƒ§��Hl�H‰,$è����H‹D$PH‹œ$��HƒÀHƒû�„w��H«¨���H=���ƒ]��Hl�¶]�ˆ\$FÆD$GÿH‹œ$À���H‹l$XL‹„$È���L9Ń&��HÁåHëH‰$è����H����H‰$H����H‰\$H����H‰\$H\$DH‰\$HÇD$ ����è����H‹L$(H‹D$0H‹œ$À���H‹l$XL‹„$È���L9Ѭ���HÁåHëH‰Œ$€���H‰ H‰„$ˆ���€=�����urH‰CH‹L$PHƒÁH‹D$hHÿÀH‹l$`H9èŒÎýÿÿH‹œ$À���H‰œ$ ��H‹œ$È���H‰œ$(��H‹œ$Ð���H‰œ$0��1ÛH‰œ$8��H‰œ$@��è����HÄ��ÃLCL‰$H‰D$è����é{ÿÿÿè���� è���� è���� ‰é‚þÿÿè���� è���� ‰é
þÿÿè���� è���� ‰é‘ýÿÿè���� ‰E�é§úÿÿ‰éúÿÿè���� 1íéXúÿÿè����éÄùÿÿH
������^
��*runtime.racefuncenter���Ê
�� runtime.raceread���Ø��type.io.Reader��� 
��runtime.convI2I���¢
��io.ReadFull���Œ
��runtime.convI2E���â
��"runtime.racewrite���¤�6runtime.writeBarrierEnabled���È��\go.string."gif: short read on color table: %s"���º 
��fmt.Errorf���Ì

��(runtime.racefuncexit���€ 
��.runtime.writebarrierptr���¦ ��0type.image/color.Palette���Ì 
��"runtime.makeslice���ú 
�� runtime.raceread���Ä
�� runtime.raceread���Ž
�� runtime.raceread���ê
��"runtime.racewrite���ø��*type.image/color.RGBA���Ž��,type.image/color.Color���¦��Tgo.itab.image/color.RGBA.image/color.Color���à
��runtime.convT2I���ð�6runtime.writeBarrierEnabled���Ê
��(runtime.racefuncexit���þ
��.runtime.writebarrierptr���’
��$runtime.panicindex��� 
��$runtime.panicindex���®
��$runtime.panicindex���Ê
��$runtime.panicindex���Ø
��$runtime.panicindex���ô
��$runtime.panicindex���‚
��$runtime.panicindex���ž
��$runtime.panicindex���Ê
��$runtime.panicslice���æ
��0runtime.morestack_noctxt���p��("".autotmp_0123�Ïtype.int�"".autotmp_0122��type.int�"".autotmp_0121�ï"type.interface {}�"".autotmp_0120�Ï(type.[1]interface {}�"".autotmp_0117�_&type.[]interface {}�"".autotmp_0116��type.int�"".autotmp_0115�‡*type.image/color.RGBA�"".autotmp_0113��type.error�"".autotmp_0112�¯type.error�"".autotmp_0111�/type.[]uint8�"".autotmp_0110�¿type.int�"".i�ßtype.int�"".p�0type.image/color.Palette�"".j�ïtype.int� "".err�¯type.error�"".n�ÿtype.int� "".~r2�Ptype.error� "".~r1� 0type.image/color.Palette�"".fields�type.uint8�"".d�� type.*"".decoder�*"þ�À �^¾",&Ü­ &C'‰ OM �@�.¶lu+lI&— ¨
x�Tgclocals·6fa66bd28ff106d38cd5e72e1558bac1�Tgclocals·cdd9e31f464a29f54111441026eac2bd���>/tmp/go/src/image/gif/reader.goþ6"".(*decoder).readExtension��à��ÊdH‹ %����H„$`ÿÿÿH;A†€��Hì ��H‹œ$ ��H‰$è����1ÛH‰œ$0��H‰œ$8��H‹œ$(��H‰$è����H‹œ$(��Hƒû�„,��H‹ H‹kH‰¬$¨���H‰,$H‰Œ$ ���H‹Y(ÿÓH‹´$(��¶\$H‹D$H‹L$H‰ÝH‰Œ$ˆ���H‰„$€���Hƒø�tH‰„$0��H‰Œ$8��è����HÄ ��Ã1Ɉ\$F€ûù‡ ��€û…k��HÇÁ ���Hƒù�Ž
��H‰L$HHù���‡A��H‰õHƒþ�„-��HÅ¨���Hƒý�„��H‰Œ$��HDŽ$�����H‰¬$��H‰4$è����H����H‰$H‹´$(��H|$H‹H‰H‹NH‰Oè����H\$H‹ H‰ $H‹KH‰L$H‹œ$��H‰\$H‹œ$��H‰\$H‹œ$��H‰\$ è����¶l$FH‹´$(��H‹L$HH‹D$0H‹T$8H‰T$xH‰D$pHƒø�tH‰„$0��H‰”$8��è����HÄ ��Ã@€ýÿ…—��Hù���‡��H‰õHƒþ�„��HÅ¨���Hƒý�„ï��H‰ÊHÇÁ���H‰¬$��H‰,$H‰”$��H‰T$H‰Œ$��H‰L$è����H‹´$(��H‹L$H‰Œ$°���H‹D$ H‰„$¸���Hƒø … ��H‰ $H‰D$H-����H‰l$HÇD$ ���è����H‹´$(��¶\$ €û�„Ò���H‰4$è����H‹´$(��H‹D$H‹T$H‹L$H‰L$hHƒø�„��H‰T$`Hƒú�…õ���Hƒø…Š���H®¨���H‰,$è����H‹´$(��¶ž¨���€ûufH‰4$Hƒ$0è����H‹œ$(��H«¨���HÿÅH‰,$è����H‹œ$(��H«¨���HƒÅH‰,$è����H‹´$(��¶ž©���¶®ª���HÁåH ëH‰^0H‰4$è����H‹´$(��H‹D$H‹T$H‹L$H‰Œ$˜���Hƒø�tH‰”$���Hƒú�tÄH‰”$���H‰”$0��H‰Œ$8��è����HÄ ��ÃH‰T$`H‰”$0��H‰Œ$8��è����HÄ ��ÉE�é þÿÿ‰éñýÿÿè���� ‰E�éäüÿÿ‰éÌüÿÿè���� €ûùu@H‰4$è����H‹L$H‹D$H‰Œ$à���H‰Œ$0��H‰„$è���H‰„$8��è����HÄ ��Ã@ˆl$G1ÛH‰œ$Ð���H‰œ$Ø���Hœ$Ð���Hƒû�„$��HDŽ$ø������HDŽ$������H‰œ$ð���H����H‰$H\$GH‰\$HÇD$����è����H‹\$H‰œ$À���H‹\$ H‰œ$È���H‹œ$ð���H‰$è����H‹œ$ð���H‹¬$À���H‰+H‹¬$È���€=�����u{H‰kH����H‰$HÇD$���H‹œ$ð���H‰\$H‹œ$ø���H‰\$H‹œ$���H‰\$ è����H‹L$(H‹D$0H‰Œ$à���H‰Œ$0��H‰„$è���H‰„$8��è����HÄ ��ÃLCL‰$H‰l$è����érÿÿÿ‰éÕþÿÿ€ûþ„úúÿÿ€ûÿ…šþÿÿH‰4$è����H‹œ$(��Hƒû�tuH‹ H‹kH‰¬$¨���H‰,$H‰Œ$ ���H‹Y(ÿÓ¶l$FH‹´$(��¶\$H‹D$H‹T$H‰T$XH‰D$PHƒø�tH‰„$0��H‰”$8��è����HÄ ��öÛH‰Ùéeúÿÿ‰뇉éÍùÿÿè����é[ùÿÿJ
������^
��*runtime.racefuncenter���¤
�� runtime.raceread���Ž�������”
��(runtime.racefuncexit��� 
�� runtime.raceread���®��type.io.Reader���ö
��runtime.convI2I���ø
��io.ReadFull���ú
��(runtime.racefuncexit���Þ 
��8runtime.slicebytetostringtmp���Ö
��.go.string."NETSCAPE2.0"���ü

�� runtime.eqstring���º 
��."".(*decoder).readBlock���Ø 
�� runtime.raceread���œ 
��"runtime.racewrite���Ò 
�� runtime.raceread���Š
�� runtime.raceread���Þ
��."".(*decoder).readBlock���þ
��(runtime.racefuncexit���Â
��(runtime.racefuncexit���ú
��$runtime.panicslice���¦
��$runtime.panicslice���Æ
��@"".(*decoder).readGraphicControl���¤
��(runtime.racefuncexit���Ô��type.uint8���Œ
��runtime.convT2E���â
��"runtime.racewrite���¤�6runtime.writeBarrierEnabled���À��Rgo.string."gif: unknown extension 0x%.2x"���²
��fmt.Errorf���
��(runtime.racefuncexit���Ä
��.runtime.writebarrierptr���’
�� runtime.raceread���ô�������ò
��(runtime.racefuncexit���¸
��0runtime.morestack_noctxt���0À��4"".autotmp_0151�ßtype.string�"".autotmp_0150�¿"type.interface {}�"".autotmp_0149�Ÿ(type.[1]interface {}�"".autotmp_0146�_&type.[]interface {}�"".autotmp_0145��type.uint8�"".autotmp_0144��type.error�"".autotmp_0143��type.int�"".autotmp_0142��type.error�"".autotmp_0140��type.[]uint8�"".autotmp_0139��type.error�"".autotmp_0138�/type.[]uint8�"".autotmp_0137��type.error�"".autotmp_0136�±type.uint8�"".autotmp_0135��type.error�"".autotmp_0134��type.uint8�"".autotmp_0133��type.error�"".autotmp_0132�type.error� "".err�Ÿtype.error� "".err�ÿtype.error� "".err�ßtype.error� "".err�Ÿtype.error�"".size�¯type.int� "".err�¿type.error�"".extension�³type.uint8� "".~r0�type.error�"".d�� type.*"".decoder�j"À³¿À²¿À¿À!¿Àp¿Àµ¿À°¿À+�° �ÎÚ"VUfPO  
í$# Ï%.f(% 3BA©,+&  Y 65�L�.›†lAr>Ut+h/'p8�Tgclocals·9e286b0ce6b91a896378d8ebafa3879c�Tgclocals·455b2218b4ecd9700a90c3ae801c6535���>/tmp/go/src/image/gif/reader.goþ@"".(*decoder).readGraphicControl��à��ÎdH‹ %����HD$ÈH;A†…��Hì¸���H‹œ$¸���H‰$è����H‹„$À���1ÛH‰œ$È���H‰œ$Ð���H‰ÃHƒø�„?��HÃ¨���Hƒû�„'��HDŽ$¨������HDŽ$°������H‰œ$ ���H‰$è����H����H‰$H‹´$À���H|$H‹H‰H‹NH‰Oè����H\$H‹ H‰ $H‹KH‰L$H‹œ$ ���H‰\$H‹œ$¨���H‰\$H‹œ$°���H‰\$ è����H‹L$0H‹T$8H‰T$PH‰L$HHƒù�„"��1ÛH‰\$hH‰\$pH\$hHƒû�„���HDŽ$������HDŽ$˜������H‰œ$ˆ���H‰ $H‰T$è����H‹\$H‰\$XH‹\$H‰\$`H‹œ$ˆ���H‰$è����H‹œ$ˆ���H‹l$XH‰+H‹l$`€=�����uxH‰kH����H‰$HÇD$#���H‹œ$ˆ���H‰\$H‹œ$���H‰\$H‹œ$˜���H‰\$ è����H‹L$(H‹D$0H‰L$xH‰Œ$È���H‰„$€���H‰„$Ð���è����HÄ¸���ÃLCL‰$H‰l$è����éuÿÿÿ‰éùþÿÿH‹œ$À���H«¨���HÿÅH‰,$è����H‹„$À���¶¨©���@ˆl$GH‰$Hƒ$Aè����H‹„$À���¶l$GHƒå@Àí@ˆhAH‰$Hƒ$8è����H‹œ$À���H«¨���HƒÅH‰,$è����H‹œ$À���H«¨���HƒÅH‰,$è����H‹„$À���¶˜ª���¶¨«���HÁåH ëH‰X8¶\$GHƒã€û�tdH‰$Hƒ$Cè����H‹œ$À���H«¨���HƒÅH‰,$è����H‹„$À���Hƒø�tK¶¨¬���@ˆhCH‰$Hƒ$Dè����H‹œ$À���HÇÅ���@ˆkD1ÛH‰œ$È���H‰œ$Ð���è����HÄ¸���É�뱉éÒüÿÿ‰�éºüÿÿè����éYüÿÿ.
������X
��*runtime.racefuncenter���š
�� runtime.raceread���¨��type.io.Reader���ð
��runtime.convI2I���ò
��io.ReadFull�����runtime.convI2E���Š
��"runtime.racewrite���À�6runtime.writeBarrierEnabled���Ü��^go.string."gif: can't read graphic control: %s"���Î
��fmt.Errorf���¦
��(runtime.racefuncexit���Ú
��.runtime.writebarrierptr���¨ 
�� runtime.raceread���ì 
��"runtime.racewrite���º

��"runtime.racewrite���ò

�� runtime.raceread���ª 
�� runtime.raceread���¤ 
��"runtime.racewrite���Ü 
�� runtime.raceread���ª 
��"runtime.racewrite���þ 
��(runtime.racefuncexit���¼
��0runtime.morestack_noctxt���0ð��"".autotmp_0161�¿"type.interface {}�"".autotmp_0160�Ÿ(type.[1]interface {}�"".autotmp_0157�_&type.[]interface {}�"".autotmp_0156��type.error�"".autotmp_0155�type.error�"".autotmp_0154�/type.[]uint8�"".flags�átype.uint8� "".err�ßtype.error� "".~r0�type.error�"".d�� type.*"".decoder�(ðÿïðëïð%�°�LºÑ÷&/'gC! �0�+alg%b,'« 2�Tgclocals·8db80988d5fec26b916d3152e6310442�Tgclocals·8f800ad3214d4a86dfcc286895fca734���>/tmp/go/src/image/gif/reader.goþH"".(*decoder).newImageFromDescriptor��€.��ê-dH‹ %����H„$àýÿÿH;A†P ��Hì ��H‹œ$ ��H‰$è����H‹„$¨��1ÛH‰œ$¸��H‰œ$À��H‰ÃHƒø�„
��HÃ¨���Hƒû�„ò
��HDŽ$�� ���HDŽ$˜�����H‰œ$ˆ��H‰$è����H����H‰$H‹´$¨��H|$H‹H‰H‹NH‰Oè����H\$H‹ H‰ $H‹KH‰L$H‹œ$ˆ��H‰\$H‹œ$��H‰\$H‹œ$˜��H‰\$ è����H‹L$0H‹T$8H‰”$��H‰Œ$���Hƒù�„J��1ÛH‰œ$ ��H‰œ$(��Hœ$ ��Hƒû�„��HDŽ$x�����HDŽ$€�����H‰œ$p��H‰ $H‰T$è����H‹\$H‰œ$��H‹\$H‰œ$��H‹œ$p��H‰$è����H‹œ$p��H‹¬$��H‰+H‹¬$��€=�����…‡���H‰kH����H‰$HÇD$$���H‹œ$p��H‰\$H‹œ$x��H‰\$H‹œ$€��H‰\$ è����H‹L$(H‹D$0HDŽ$°������H‰Œ$0��H‰Œ$¸��H‰„$8��H‰„$À��è����HÄ ��ÃLCL‰$H‰l$è����éfÿÿÿ‰éÚþÿÿH‹œ$¨��H«¨���H‰,$è����H‹œ$¨��H«¨���HÿÅH‰,$è����H‹„$¨��¶˜¨���¶¨©���HÁåHëH‰\$xH¨¨���HƒÅH‰,$è����H‹œ$¨��H«¨���HƒÅH‰,$è����H‹„$¨��¶˜ª���¶¨«���HÁåHëH‰\$pH¨¨���HƒÅH‰,$è����H‹œ$¨��H«¨���HƒÅH‰,$è����H‹„$¨��¶˜¬���¶¨­���HÁåHëH‰\$hH¨¨���HƒÅH‰,$è����H‹œ$¨��H«¨���HƒÅH‰,$è����H‹„$¨��¶˜®���¶¨¯���HÁåHëH‰œ$€���H‰$Hƒ$Bè����H‹œ$¨��H«¨���HƒÅH‰,$è����H‹L$xH‹D$pH‹¼$¨��Hƒÿ�„T��¶¯°���@ˆoBH‹l$hH‰ÎHéH‹¬$€���H‰ÂHè1ÛH9Î~ H‰õH‰ÎH‰éH9Â~ H‰ÕH‰ÂH‰è1ÛH‰´$P��H‰”$X��H‰Œ$`��H‰„$h��H‰´$°���H‰´$0��H‰”$¸���H‰”$8��H‰Œ$À���H‰Œ$@��H‰„$È���H‰„$H��H‰<$Hƒ$ è����H‹„$¨��H‹h H‰¬$ˆ���H‰$Hƒ$(è����H‹œ$¨��H‹C(H‹Œ$ˆ���1ö1Ò1ÛH9Î~ H‰õH‰ÎH‰éH9Â~ H‰ÕH‰ÂH‰è1ÛH‰´$P��H‰”$X��H‰Œ$`��H‰„$h��H‹œ$0��H‰$H‹œ$8��H‰\$H‹œ$@��H‰\$H‹œ$H��H‰\$H‰´$���H‰t$ H‰”$˜���H‰T$(H‰Œ$ ���H‰L$0H‰„$¨���H‰D$8è����H‹\$@H‰œ$��H‹\$HH‰œ$˜��H‹\$PH‰œ$ ��H‹\$XH‰œ$¨��H‹œ$0��H‰œ$p��H‹œ$8��H‰œ$x��H‹Œ$@��H‰Œ$€��H‹„$H��H‰„$ˆ��H„$p��HŒ$��H‰„$Ø��Hƒø�„��H‰Œ$Ð��Hƒù�„��H‰Œ$À��H‰„$È��H‰$è����H‹œ$À��H‰$è����H‹„$È��H‹L‹„$À��I‹(H9ë…��H‰$Hƒ$è����H‹œ$À��H‰$Hƒ$è����H‹¬$È��H‹]L‹„$À��I‹hH9ë…:��H‹„$Ø��Hƒø�„_��H‹Œ$Ð��HƒÀHƒù�„B��HƒÁH‰Œ$È��H‰„$À��H‰$è����H‹œ$È��H‰$è����H‹„$À��H‹L‹„$È��I‹(H9ë…Å��H‰$Hƒ$è����H‹œ$È��H‰$Hƒ$è����H‹¬$À��H‹]L‹„$È��I‹hH9ë…€��H‹¼$0��H‹´$8��H‹”$@��H‹„$H��1ÛH‰œ$@��H‰œ$H��H‰œ$P��H‰´$Ø���H‰„$è���H‰ÑH‰”$à���H‰¼$Ð���H)ùH‰¼$ð���H‰¼$��H‰´$ø���H‰”$���H‰”$ ��H‰„$��H‰ÃH‰„$(��H‰´$��H)óH‰Ø1ÛH‰œ$X��H‰œ$`��H‰œ$h��H‰ËH‰L$`H¯ØH‰ØH����H‰$H‰D$H‰D$è����H‹D$H‹T$ H‹L$(H‰„$X��H‰”$`��H‰Œ$h��H����H‰$è����H‹D$H‰„$°��H‰$è����H‹œ$°��H‹¬$`��H‰kH‹¬$h��H‰kH‹¬$X��€=�����…ÿ���H‰+H‹œ$°��H‰$Hƒ$è����H‹„$°��H‹l$`H‰hH‰$Hƒ$ HÇD$ ���è����H‹„$°��H‹¬$ð���H‰h H‹¬$ø���H‰h(H‹¬$���H‰h0H‹¬$��H‰h8H‰$Hƒ$@è����H‹œ$°��H‹¬$H��H‰kHH‹¬$P��H‰kPH‹¬$@��€=�����u3H‰k@H‹œ$°��H‰œ$°��1ÛH‰œ$¸��H‰œ$À��è����HÄ ��ÃLC@L‰$H‰l$è����ë½H‰$H‰l$è����éñþÿÿH����H‰œ$ð��HDŽ$ø��*���1ÛH‰œ$à��H‰œ$è��H����H‰$è����H‹D$H‰„$¸��H‰$è����H‹œ$¸��H‹¬$ø��H‰kH‹¬$ð��€=�����…¡���H‰+H‹œ$¸��H‰œ$¸��H‹����1íH9ètQH‹”$¸��H‰„$0��H‰”$8��HDŽ$°������H‰„$à��H‰„$¸��H‰”$è��H‰”$À��è����HÄ ��ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$ë€H‰$H‰l$è����éOÿÿÿ‰é·ûÿÿ‰�éšûÿÿ‰éóúÿÿ‰�éÚúÿÿ‰é¥øÿÿ‰éõÿÿ‰�éïôÿÿè����é‹ôÿÿx
������^
��*runtime.racefuncenter��� 
�� runtime.raceread���®��type.io.Reader���ö
��runtime.convI2I���ø
��io.ReadFull���ä
��runtime.convI2E���º
��"runtime.racewrite���ü�6runtime.writeBarrierEnabled��� ��`go.string."gif: can't read image descriptor: %s"���’
��fmt.Errorf���ˆ 
��(runtime.racefuncexit���¼ 
��.runtime.writebarrierptr���„

�� runtime.raceread���º

�� runtime.raceread���¦ 
�� runtime.raceread���Þ 
�� runtime.raceread���Ê 
�� runtime.raceread���‚ 
�� runtime.raceread���î 
�� runtime.raceread���¦
�� runtime.raceread���Œ
��"runtime.racewrite���Ä
�� runtime.raceread���à
�� runtime.raceread���¤
�� runtime.raceread���¬
��2image.Rectangle.Intersect���®
�� runtime.raceread���Ð
�� runtime.raceread���ª
�� runtime.raceread���Ö
�� runtime.raceread���¢
�� runtime.raceread���Ä
�� runtime.raceread���ž
�� runtime.raceread���Ê
�� runtime.raceread���¾!��type.[]uint8���ä!
��"runtime.makeslice���À"��&type.image.Paletted���Ò"
��"runtime.newobject���þ"
��"runtime.racewrite���Ú#�6runtime.writeBarrierEnabled���š$
��"runtime.racewrite���ê$
��,runtime.racewriterange���ö%
��"runtime.racewrite���Ò&�6runtime.writeBarrierEnabled���®'
��(runtime.racefuncexit���â'
��.runtime.writebarrierptr���‚(
��.runtime.writebarrierptr���š(��lgo.string."gif: frame bounds larger than image bounds"���ô(��.type.errors.errorString���†)
��"runtime.newobject���²)
��"runtime.racewrite���ö)�6runtime.writeBarrierEnabled���¸*��Bgo.itab.*errors.errorString.error���Ø+
��(runtime.racefuncexit���ö+��0type.*errors.errorString���Œ,��type.error���¤,��Bgo.itab.*errors.errorString.error���¸,
�� runtime.typ2Itab���â,
��.runtime.writebarrierptr���Ø-
��0runtime.morestack_noctxt���@��j"".autotmp_0199�ß(type.*image.Paletted�"".autotmp_0198��(type.*image.Paletted�"".autotmp_0197��type.int�"".autotmp_0196��type.int�"".autotmp_0195��type.int�"".autotmp_0194��type.int�"".autotmp_0193��type.int�"".autotmp_0191��type.error�"".autotmp_0190�Ï0type.*errors.errorString�"".autotmp_0189��"type.*image.Point�"".autotmp_0188��"type.*image.Point�"".autotmp_0187�¿"type.*image.Point�"".autotmp_0186�¯"type.*image.Point�"".autotmp_0185�Ÿ*type.*image.Rectangle�"".autotmp_0184�*type.*image.Rectangle�"".autotmp_0183��(type.image.Rectangle�"".autotmp_0182��type.int�"".autotmp_0181��type.int�"".autotmp_0180��type.int�"".autotmp_0179��type.int�"".autotmp_0178�Ÿ(type.image.Rectangle�"".autotmp_0177��type.int�"".autotmp_0176��type.int�"".autotmp_0175�¯type.int�"".autotmp_0173�Ÿ"type.interface {}�"".autotmp_0172�ÿ(type.[1]interface {}�"".autotmp_0169�_&type.[]interface {}�"".autotmp_0168��type.[]uint8�"".autotmp_0167��0type.*errors.errorString�"".autotmp_0166�ß(type.image.Rectangle�"".autotmp_0165�Ÿ(type.image.Rectangle�"".autotmp_0164��type.error�"".autotmp_0163�ßtype.error�"".autotmp_0162�/type.[]uint8�image.r·2�Ÿ(type.image.Rectangle�image.r·2�Ÿ(type.image.Rectangle�image.pix·6�type.[]uint8�image.w·4�ÿtype.int�image.p·3�¿0type.image/color.Palette�image.r·2�ß(type.image.Rectangle� "".~r0�ÿtype.error�errors.text·2�ßtype.string� "".~r0�Ÿ(type.image.Rectangle� "".~r0�ß(type.image.Rectangle�"".bounds�ß(type.image.Rectangle�"".height�¿type.int�"".width�ïtype.int� "".top�ßtype.int�"".left�Ïtype.int� "".err�¿type.error� "".~r1� type.error� "".~r0�(type.*image.Paletted�"".d�� type.*"".decoder�8"À
­¿
’¿
”¿
ˆ�€�hÖ""!ן&URRUQ
™ä€áJ  �h�.alv+l;$Õ ºá7NÊB“0e�Tgclocals·20371ed4e285e99d2b3700a68882dc55�Tgclocals·d708aee26fd07c525342115091d3ff3d���>/tmp/go/src/image/gif/reader.goþ."".(*decoder).readBlock��€��ôdH‹ %����HD$øH;A†Ø��Hìˆ���H‹œ$ˆ���H‰$è����1ÛH‰œ$ ���H‰œ$¨���H‹œ$���H‰$è����H‹œ$���Hƒû�„„��H‹ H‹kH‰l$XH‰,$H‰L$PH‹Y(ÿÓH‹´$���¶\$H‹T$H‹L$H‰L$H€û�„��H‰T$@Hƒú�…��¶ÛHû���‡ð���H‰õHƒþ�„Ü���HÅ¨���Hƒý�„Ã���H‰\$xHDŽ$€������H‰l$pH‰4$è����H����H‰$H‹´$���H|$H‹H‰H‹NH‰Oè����H\$H‹ H‰ $H‹KH‰L$H‹\$pH‰\$H‹\$xH‰\$H‹œ$€���H‰\$ è����H‹D$(H‹T$0H‹L$8H‰„$˜���H‰T$`H‰”$ ���H‰L$hH‰Œ$¨���è����HÄˆ���ÉE�é5ÿÿÿ‰éÿÿÿè���� HDŽ$˜�������H‰T$@H‰”$ ���H‰Œ$¨���è����HÄˆ���Ééuþÿÿè����éþÿÿ
������X
��*runtime.racefuncenter���ž
�� runtime.raceread���ü�������ú
�� runtime.raceread���ˆ��type.io.Reader���Ð
��runtime.convI2I���Æ
��io.ReadFull���²
��(runtime.racefuncexit���ê
��$runtime.panicslice���º
��(runtime.racefuncexit���â
��0runtime.morestack_noctxt���@��"".autotmp_0207��type.error�"".autotmp_0205�/type.[]uint8�"".autotmp_0204�Otype.error� "".err�type.error� "".~r1� type.error� "".~r0�type.int�"".d�� type.*"".decoder�&…C�€�2þ
 Z‡!� �+Ñf6($�Tgclocals·06be4abc148cc801a93c492b76c8e5c8�Tgclocals·8dacdca6a9d3d5c313f9478f38bacba5���>/tmp/go/src/image/gif/reader.goþ"".uninterlace��à��ÎdH‹ %����H„$èþÿÿH;A†Â��Hì˜��H‹œ$˜��H‰$è����1ÛH‰œ$8��H‰œ$@��H‰œ$H��H‹„$ ��1ÛH‰œ$ ���H‰œ$¨���H‰œ$°���H‰œ$¸���H‰„$ ��H‰$Hƒ$ HÇD$ ���è����H‹œ$ ��Hƒû�„.��H‹K H‹s(H‹C0H‹k8H‰Œ$ ���H‰´$¨���H‰´$è���H‰„$°���H‰¬$¸���H‰¬$ø���H‰ÃH‰„$ð���H‰Œ$à���H)ËH‰\$`H‹„$ ��1ÛH‰œ$À���H‰œ$È���H‰œ$Ð���H‰œ$Ø���H‰„$(��H‰$Hƒ$ HÇD$ ���è����H‹œ$(��Hƒû�„q��H‹s H‹K(H‹S0H‹C8H‰´$À���H‰´$���H‰Œ$È���H‰”$Ð���H‰”$��H‰„$Ø���H‰„$��H‰Œ$��H‹\$`H)ÈH‰D$XH¯ØH‰ØH����H‰$H‰D$H‰D$è����H‹T$H‹L$ H‹D$(H‰”$8��H‰Œ$@��H‰„$H��HÇD$H����H����H‰$è����H‹����H‹����H‹����H‰œ$x��1ÉH‰„$p��H‰D$hH‰”$h��H‰ÐH‰L$pH‹l$hH9éò��H‰„$0��H‰$HÇD$���è����H‹|$HH‹D$`H‹œ$0��Hƒû�„,��H‹H‹KH‰”$���H‰”$€���H‰Œ$˜���H‰ÊH¯ÈH‰”$ˆ���H‰T$@H‹l$XH9êT��H‰ÍHÅH‰L$PL‹„$H��L9ŇÈ��H9釿��L‹Œ$8��H)ÍI)ÈIƒø�tM H‰¬$ˆ��L‰„$��L‰Œ$€��H‰ûHÃH‰\$xH‹œ$ ��H‰$è����H‹œ$ ��H‹l$HL‹D$xL‹KM9ȇM��L9ŇD��L‹I)èI)éIƒù�tM*H‹œ$€��H‰$H‹œ$ˆ��H‰\$H‹œ$��H‰\$L‰”$P��L‰T$L‰„$X��L‰D$ L‰Œ$`��L‰L$(HÇD$0���è����H‹´$€���H‹D$`H‹|$HHÇH‰|$HH‹L$PH‰óH¯ØHËH‰ÙH‹T$@H‰óHÓH‰ÚH‰T$@H‹l$XH9ꌬþÿÿH‹„$0��H‹L$pHƒÀHÿÁH‰L$pH‹l$hH9éŒþÿÿH‹œ$ ��H‰$è����H‹œ$ ��H‹¬$@��H‰kH‹¬$H��H‰kH‹¬$8��€=�����uH‰+è����HÄ˜��ÃH‰$H‰l$è����ëãè���� è���� ‰éÍýÿÿ‰éˆüÿÿ‰éËûÿÿè����éûÿÿ*
������^
��*runtime.racefuncenter���¤
��*runtime.racereadrange���
��*runtime.racereadrange���Š��type.[]uint8���°
��"runtime.makeslice���ž��"".interlacing���°
�� runtime.raceread���¾��"".interlacing���Ì�"".interlacing���Ú �"".interlacing���ø 
��*runtime.racereadrange���” 
�� runtime.raceread�����"runtime.slicecopy���Ê
��"runtime.racewrite���¦�6runtime.writeBarrierEnabled���¼
��(runtime.racefuncexit���è
��.runtime.writebarrierptr���ö
��$runtime.panicslice���„
��$runtime.panicslice���¼
��0runtime.morestack_noctxt���°��:"".autotmp_0224�*type."".interlaceScan�"".autotmp_0223�Ï,type.*"".interlaceScan�"".autotmp_0222�ßtype.int�"".autotmp_0221��type.int�"".autotmp_0220��type.int�"".autotmp_0219��type.int�"".autotmp_0218�Ïtype.int�"".autotmp_0216��type.int�"".autotmp_0215��type.int�"".autotmp_0214�type.[]uint8�"".autotmp_0213�¿type.int�"".autotmp_0212��type.[]uint8�"".autotmp_0211��type.int�"".autotmp_0210�_.type.[]"".interlaceScan�"".autotmp_0209�/type.[]uint8�image.r·2�¯(type.image.Rectangle� "".~r0�¯(type.image.Rectangle�image.p·2�ß(type.*image.Paletted�image.r·2�ï(type.image.Rectangle� "".~r0�ï(type.image.Rectangle�image.p·2�ï(type.*image.Paletted�"".y�¯type.int�"".nOffset�type.int�"".pass�¯*type."".interlaceScan�"".offset�Ÿtype.int�
"".dy�ÿtype.int�
"".dx�ïtype.int�"".nPix�¿type.[]uint8�"".m��(type.*image.Paletted�"°‡ ¯°F�ð �pª"¶«M ²” !'J �8�.c¶@dΖ…9S�Tgclocals·6718fa3ce60556785ebaaf7cd5569ede�Tgclocals·6e00bf9a86c700b36097754b8f007201���>/tmp/go/src/image/gif/reader.goþ"".Decode��€��òdH‹ %����H;a†Ü��HƒìhH‹\$hH‰$è����1ÛH‰œ$€���H‰œ$ˆ���1ÛH‰œ$���H‰œ$˜���H����H‰$è����H‹D$H‰D$8H‰$HÇD$¨��è����H‹\$8H‰$H‹\$pH‰\$H‹\$xH‰\$ÆD$�è����H‹D$ H‹L$(H‰L$HH‰D$@Hƒø�t,1ÛH‰œ$€���H‰œ$ˆ���H‰„$���H‰Œ$˜���è����HƒÄhÃH‹����H‰D$01íH9è„¿���H‹\$8H‰$H$���è����H‹\$8H‹‹���H‹ƒ˜���H‹« ���H‰l$`H‰L$PHƒø�H‰D$XvsH‰ $è����H‹\$8H‹‹���H‹ƒ˜���H‹« ���H‰l$`H‰L$PHƒø�H‰D$Xv4H‹)H‰¬$ˆ���H‹\$0H‰œ$€���1ÛH‰œ$���H‰œ$˜���è����HƒÄhÃè���� è���� H����H‰$H����H‰\$H����H‰\$è����H‹\$H‰\$0é
ÿÿÿè����éþÿÿ$
������B
��*runtime.racefuncenter���˜��type."".decoder���ª
��"runtime.newobject���â
��,runtime.racewriterange���°
��("".(*decoder).decode���²
��(runtime.racefuncexit���Ê��Fgo.itab.*image.Paletted.image.Image���–
�� runtime.raceread���†
�� runtime.raceread���Â
��(runtime.racefuncexit���Ö
��$runtime.panicindex���ä
��$runtime.panicindex���ö��(type.*image.Paletted���Œ�� type.image.Image���¤��Fgo.itab.*image.Paletted.image.Image���¸
�� runtime.typ2Itab���à
��0runtime.morestack_noctxt���`�� "".autotmp_0226�otype.*uint8�
"".&d�_ type.*"".decoder� "".err�Otype.error� "".~r2�@type.error� "".~r1�  type.image.Image�"".r��type.io.Reader�(ÐÊÏÐÇÏÐV�€�.Ð
 $,A" �$� Ph2–
1%�Tgclocals·ea9b4378ddf21a9476f9692715326ef5�Tgclocals·3531f87782d37f810e650e7542e5bb1b���>/tmp/go/src/image/gif/reader.goþ"".DecodeAll��€��òdH‹ %����H;a†œ��HƒìhH‹\$hH‰$è����1ÛH‰œ$ˆ���H‰œ$���H����H‰$è����H‹D$H‰D$@H‰$HÇD$¨��è����H‹\$@H‰$H‹\$pH‰\$H‹\$xH‰\$ÆD$�è����H‹D$ H‹L$(H‰L$PH‰D$HHƒø�t&HDŽ$€�������H‰„$ˆ���H‰Œ$���è����HƒÄhÃH����H‰$è����H‹D$H‰D$8H‰$è����H‹\$@H‰$H$���è����H‹\$@H«���H‹\$8Hƒû�„Š��H‰\$H‰l$H-����H‰,$è����H‹\$8H‰$Hƒ$0è����H‹\$@H‰$Hƒ$0è����H‹D$8L‹D$@I‹h0H‰h0H‰$Hƒ$è����H‹\$@H‰$Hƒ$`è����H‹\$@Hk`H‹\$8Hƒû�„ø��LCL‰D$H‰l$H-����H‰,$è����H‹\$8H‰$Hƒ$8è����H‹\$@H‰$Hƒ$xè����H‹\$@HkxH‹\$8Hƒû�„•��LC8L‰D$H‰l$H-����H‰,$è����H‹\$8H‰$Hƒ$Pè����H����H‰$H����H‰\$H����H‰\$H‹\$@H‰\$HƒD$HHÇD$ ����è����H‹L$(H‹D$0H‹\$8Hƒû�„��H‰L$XH‰KPH‰D$`€=�����…Ñ���H‰CXH‹\$8H‰$Hƒ$PHƒ$è����H‹\$@H‰$Hƒ$ è����H‹D$8L‹D$@I‹h H‰h`H‰$Hƒ$PHƒ$è����H‹\$@H‰$Hƒ$(è����H‹D$8L‹D$@I‹h(H‰hhH‰$Hƒ$pè����H‹\$@H‰$Hƒ$@è����H‹D$8L‹D$@A¶h@@ˆhpH‰„$€���1ÛH‰œ$ˆ���H‰œ$���è����HƒÄhÃLCXL‰$H‰D$è����éÿÿÿ‰éöþÿÿ‰édþÿÿ‰éþÿÿ‰éoýÿÿè����éGüÿÿL
������B
��*runtime.racefuncenter���t��type."".decoder���†
��"runtime.newobject���¾
��,runtime.racewriterange���Œ
��("".(*decoder).decode���‚
��(runtime.racefuncexit���š��type."".GIF���¬
��"runtime.newobject���Ò
��"runtime.racewrite���þ
�� runtime.raceread���Ö��,type.[]*image.Paletted���è
��(runtime.typedmemmove���Ž
��"runtime.racewrite���´
�� runtime.raceread���ô
��"runtime.racewrite���š
�� runtime.raceread���ô��type.[]int���†
��(runtime.typedmemmove���¬
��"runtime.racewrite���Ò
�� runtime.raceread���¬��type.[]uint8���¾
��(runtime.typedmemmove���ä
��"runtime.racewrite���ò��0type.image/color.Palette���ˆ ��,type.image/color.Model���  ��Zgo.itab.image/color.Palette.image/color.Model���æ 
��runtime.convT2I����6runtime.writeBarrierEnabled���† 
��"runtime.racewrite���¬ 
�� runtime.raceread���ö 
��"runtime.racewrite���œ 
�� runtime.raceread���Ü 
��"runtime.racewrite���‚ 
�� runtime.raceread���æ 
��(runtime.racefuncexit���”
��.runtime.writebarrierptr���à
��0runtime.morestack_noctxt���P�� "".autotmp_0231�_type.*"".GIF�
"".&d�O type.*"".decoder� "".err�?type.error� "".~r2�0type.error� "".~r1� type.*"".GIF�"".r��type.io.Reader�(вÏбÏÐD�À�€–"!,A#K% I I y%%4$  �$� >bŠ7�Tgclocals·d261d82a8a39c85fbf1f08752bcb09ee�Tgclocals·b6e1bcbe3bc38d0bc564f298485ff663���>/tmp/go/src/image/gif/reader.goþ"".DecodeConfig��€ ��èdH‹ %����H;a†��HƒìpH‹\$pH‰$è����1ÛH‰œ$ˆ���H‰œ$���H‰œ$˜���H‰œ$ ���1ÛH‰œ$¨���H‰œ$°���H����H‰$è����H‹D$H‰D$8H‰$HÇD$¨��è����H‹\$8H‰$H‹\$xH‰\$H‹œ$€���H‰\$ÆD$è����H‹D$ H‹L$(H‰L$HH‰D$@Hƒø�td1ÛH‰\$PH‰\$XH‰\$`H‰\$hH‹\$PH‰œ$ˆ���H‹\$XH‰œ$���H‹\$`H‰œ$˜���H‹\$hH‰œ$ ���H‰„$¨���H‰Œ$°���è����HƒÄpÃ1ÛH‰\$PH‰\$XH‰\$`H‰\$hH����H‰$H����H‰\$H����H‰\$H‹\$8H‰\$HƒD$HHÇD$ ����è����H\$(Hl$PH‹ H‰M�H‹KH‰MH‹\$8H‰$Hƒ$ è����H‹D$8H‹X H‰\$`H‰$Hƒ$(è����H‹l$8H‹](H‰\$hH‹\$PH‰œ$ˆ���H‹\$XH‰œ$���H‹\$`H‰œ$˜���H‹\$hH‰œ$ ���1ÛH‰œ$¨���H‰œ$°���è����HƒÄpÃè����éÌýÿÿ
������B
��*runtime.racefuncenter���¸��type."".decoder���Ê
��"runtime.newobject���‚
��,runtime.racewriterange���Ö
��("".(*decoder).decode���È
��(runtime.racefuncexit���Œ��0type.image/color.Palette���¢��,type.image/color.Model���º��Zgo.itab.image/color.Palette.image/color.Model���€
��runtime.convT2I���Ø
�� runtime.raceread���
�� runtime.raceread���Â
��(runtime.racefuncexit���Ö
��0runtime.morestack_noctxt���€à��"".autotmp_0235��"type.image.Config�"".autotmp_0234�?"type.image.Config�
"".&d�o type.*"".decoder� "".err�_type.error� "".~r2�`type.error� "".~r1� "type.image.Config�"".r��type.io.Reader�(à•ßàüßà�À�<Â4,DZ  Z!P�� `£\¡ �Tgclocals·1063e9b0825c2f159be1df1d038ae622�Tgclocals·438fde6662dcd8c84e163dac1c04db70���>/tmp/go/src/image/gif/reader.goþ"".init.1��à��àdH‹ %����HD$ÐH;A†��Hì°���H‹œ$°���H‰$è����H ����H����H=����HÇÆ���H-����HÇÂ���1ÛH‰œ$€���H‰œ$ˆ���H‰œ$���H‰œ$˜���H‰œ$ ���H‰œ$¨���H‰|$HH‰¼$€���H‰t$PH‰´$ˆ���H‰l$XH‰¬$���H‰T$`H‰”$˜���H‰Œ$ ���H‰„$¨���H����H‰$è����H‹����H‹����H‹ ����H‰ËH)ÃHƒû}HH����H‰$H‰T$hH‰T$H‰D$H‰L$xH‰L$H‰ÃH‰D$pHÿÃH‰\$ è����H‹T$(H‹D$0H‹L$8H‰ÃHÿÃH‰L$xH9ˇÂ���H‰\$pH‰ÓH‰T$hH‰ÅH‰D$@Hkí0HëH‰$HÇD$0���è����H‹\$hH‹l$@Hkí0HëH¬$€���H‰\$H‰l$H-����H‰,$è����H����H‰$è����H‹\$pH‰����H‹\$xH‰����H‹\$h€=�����uH‰����è����HÄ°���ÃH-����H‰,$H‰\$è����ëÜè���� è����éÐýÿÿ6
������X
��*runtime.racefuncenter���f��"".Decode·f���t��$"".DecodeConfig·f���‚��go.string."gif"���ž��$go.string."GIF8?a"���¦��image.formats���¸
�� runtime.raceread���Æ��image.formats���Ô�image.formats���â �image.formats���ˆ��&type.[]image.format���ì
��"runtime.growslice���Ž
��,runtime.racewriterange���â��"type.image.format���ô
��(runtime.typedmemmove���‚��image.formats���”
��"runtime.racewrite���¬�image.formats���Ä �image.formats���Ú�6runtime.writeBarrierEnabled���î��image.formats���ø
��(runtime.racefuncexit���–��image.formats���²
��.runtime.writebarrierptr�����$runtime.panicslice���Î
��0runtime.morestack_noctxt�����
"".autotmp_0240�ßtype.int�"".autotmp_0239�&type.[]image.format�"".autotmp_0238�_"type.image.format�image.magic·2�¯type.string�image.name·1�Ïtype.string�àèßà(�°�Úá
��+°«3B5�Tgclocals·f6bd6b3389b872033d462029172c8612�Tgclocals·d288a648545c6dd73287fed249acfcae���>/tmp/go/src/image/gif/reader.goþ"".log2��à��ÔdH‹ %����H;a† ��HƒìhH‹\$hH‰$è����H����H‰$HÇD$@���è����H‹����H‰\$ H‹����H‰\$(H‹����H‰\$0H‹����H‰\$8H‹����H‰\$@H‹����H‰\$HH‹����H‰\$PH‹����H‰D$X1ÉHÇD$���HD$ H‰L$H‹l$H9é}PH‰D$`H‰$è����H‹t$H‹T$`H‹*H‹\$pH9ëH‰t$xè����HƒÄhÃH‰ÐHƒÀH‰ñHÿÁH‰L$H‹l$H9é|°HÇD$xÿÿÿÿè����HƒÄhÃè����éÖþÿÿ
������B
��*runtime.racefuncenter���P��"".log2Lookup���t
��*runtime.racereadrange���‚��"".log2Lookup���š�"".log2Lookup���² �"".log2Lookup���Ê0�"".log2Lookup���â@�"".log2Lookup���úP�"".log2Lookup���’`�"".log2Lookup���ªp�"".log2Lookup���Ž
�� runtime.raceread���Ð
��(runtime.racefuncexit���®
��(runtime.racefuncexit���Â
��0runtime.morestack_noctxt��� Ð�� "".autotmp_0244�type.*int�"".autotmp_0243�¯type.int�"".autotmp_0242�Ÿtype.int�"".autotmp_0241�type.[8]int� "".~r1�type.int�"".x��type.int�&ÐÙÏÐ.ÏÐ�°�,8  ³

 �� ¦!I�Tgclocals·c55cf99de9cdd8c8202a466952fa1a45�Tgclocals·0c8aa8e80191a30eac23f1a218103f16���>/tmp/go/src/image/gif/writer.goþ"".writeUint16��€��ìdH‹ %����H;a†™���HƒìH‹\$H‰$è����H‹\$Hƒ|$�vsH‰$è����H‹L$H‹D$Hƒø�vSH·l$(@ˆ)H‰ËHƒøv:HÿÃH‰$è����H‹\$Hƒ|$vHÿÃH·l$(fÁí@ˆ+è����HƒÄÃè���� è���� è���� è���� è����éJÿÿÿ
������B
��*runtime.racefuncenter���n
��"runtime.racewrite���Ê
��"runtime.racewrite���Ž
��(runtime.racefuncexit���¢
��$runtime.panicindex���°
��$runtime.panicindex���¾
��$runtime.panicindex���Ì
��$runtime.panicindex���Ú
��0runtime.morestack_noctxt���@��"".u�0type.uint16�"".b��type.[]uint8�x0�À�FLŠ.‡ˆ…†ƒ†‡ˆ‰� �  �Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���>/tmp/go/src/image/gif/writer.goþ("".blockWriter.Write�� ��’dH‹ %����HD$àH;A†ç��Hì ���H‹œ$ ���H‰$è����1ÛH‰œ$Ð���H‰œ$Ø���H‹œ$¨���H‰$Hƒ$è����H‹”$¸���H‹Œ$¨���H‹iHƒý�tQH‰ $Hƒ$è����HDŽ$È�������H‹œ$¨���Hƒû�t%H‹kH‰¬$Ð���H‹kH‰¬$Ø���è����HÄ ���Éë×Hƒú�u+HDŽ$È�������1ÛH‰œ$Ð���H‰œ$Ø���è����HÄ ���ÃE1ÀL‰D$@I9Ѝ¨��H‰ÎHƒù�„”��HÆ ���Hƒþ�„|��HÿÆIÇÂÿ���HÇÇÿ���L‰ÃL‹„$À���H‰ÕH9Ó‡M��L‹Œ$°���H)ÝI)ØIƒø�tM H‰´$ˆ���H‰4$L‰”$���L‰T$H‰¼$˜���H‰|$L‰L$pL‰L$H‰l$xH‰l$ L‰„$€���L‰D$(HÇD$0���è����H‹L$8H‹\$@H‰L$HHËH‰\$@H‹œ$¨���H« ���H‰,$è����H‹\$HH‹Œ$¨���ˆ™ ���HÿÃHû���‡‡��H‰ÍHÅ ���Hƒý�„k��H‰\$xHDŽ$€������H‰l$pH‰ $è����H‹œ$¨���Hƒû�„3��H‹ H‹kH‹\$pH‰\$H‹\$xH‰\$H‹œ$€���H‰\$H‰l$XH‰,$H‰L$PH‹Y(ÿÓH‹D$ H‹\$(H‰\$`H‹\$0H‰\$hH‹œ$¨���H‰$Hƒ$è����H‹œ$¨���H‹l$`H‰kH‹l$h€=�����…Ž���H‰kH‹œ$¨���H‰$Hƒ$è����L‹D$@H‹”$¸���H‹Œ$¨���H‹iHƒý�„ÝýÿÿH‰ $Hƒ$è����HDŽ$È�������H‹œ$¨���Hƒû�t%H‹kH‰¬$Ð���H‹kH‰¬$Ø���è����HÄ ���Éë×LCL‰$H‰l$è����é_ÿÿÿ‰éÆþÿÿ‰E�éþÿÿè���� è���� ‰é}ýÿÿ‰éeýÿÿH‰ $Hƒ$è����H‹\$@H‰œ$È���H‹œ$¨���Hƒû�t%H‹kH‰¬$Ð���H‹kH‰¬$Ø���è����HÄ ���Éë×è����é÷ûÿÿ*
������X
��*runtime.racefuncenter���¨
�� runtime.raceread���ø
�� runtime.raceread���æ
��(runtime.racefuncexit���Ð
��(runtime.racefuncexit���è
��"runtime.slicecopy���Æ
��"runtime.racewrite���ò
�� runtime.raceread���’
�������ì

��"runtime.racewrite���¤ �6runtime.writeBarrierEnabled���æ 
�� runtime.raceread���È 
�� runtime.raceread���¶ 
��(runtime.racefuncexit���ò 
��.runtime.writebarrierptr���¤
��$runtime.panicslice���²
��$runtime.panicslice���î
�� runtime.raceread���Þ
��(runtime.racefuncexit���€
��0runtime.morestack_noctxt���pÀ��"".autotmp_0255�type.error�"".autotmp_0253��type.[]uint8�"".autotmp_0252��type.int�"".autotmp_0251��type.int�"".autotmp_0249�_type.[]uint8�"".autotmp_0248�/type.[]uint8�"".autotmp_0247��type.int�"".n�¯type.int�"".total�¿type.int� "".~r2�Ptype.error� "".~r1�@type.int�"".data�type.[]uint8�"".b��&type."".blockWriter�BÀŸ¿À4¿Àò¿À“¿À��l”$#0@  ¸+ç9@ -R#�4�+‡…Q,=hv"�Tgclocals·8673e44a15fbaa7367253006e3f68366�Tgclocals·27b7aed50b5eb0ea6bf3eed688cd420b���>/tmp/go/src/image/gif/writer.goþ&"".(*encoder).flush��€��ôdH‹ %����H;a†Ý���Hƒì8H‹\$8H‰$è����H‹\$@H‰$Hƒ$è����H‹D$@H‹hHƒý�t
è����HƒÄ8ÃH‰$è����H‹\$@Hƒû�„€���H‹ H‹kH‰l$ H‰,$H‰L$H‹Y ÿÓH‹\$H‰\$(H‹\$H‰\$0H‹\$@H‰$Hƒ$è����H‹\$@H‹l$(H‰kH‹l$0€=�����uH‰kè����HƒÄ8ÃLCL‰$H‰l$è����ëâ‰éyÿÿÿè����éÿÿÿ
������B
��*runtime.racefuncenter���h
�� runtime.raceread���
��(runtime.racefuncexit���¬
�� runtime.raceread���„�������Î
��"runtime.racewrite���€�6runtime.writeBarrierEnabled���˜
��(runtime.racefuncexit���Æ
��.runtime.writebarrierptr���â
��0runtime.morestack_noctxt���p��"".autotmp_0257�type.error�"".e�� type.*"".encoder�p9opƒop+�€�(¾"�� †%5�Tgclocals·51fa0e13d53d6bad7f86670d3edaeac6�Tgclocals·2c78d3ad9d760b5f66e2e47be684c787���>/tmp/go/src/image/gif/writer.goþ&"".(*encoder).write��À��°dH‹ %����H;a†û���HƒìXH‹\$XH‰$è����H‹\$`H‰$Hƒ$è����H‹D$`H‹hHƒý�t
è����HƒÄXÃH‰$è����H‹\$`Hƒû�„ž���H‹ H‹kH‹\$hH‰\$H‹\$pH‰\$H‹\$xH‰\$H‰l$@H‰,$H‰L$8H‹Y(ÿÓH‹\$(H‰\$HH‹\$0H‰\$PH‹\$`H‰$Hƒ$è����H‹\$`H‹l$HH‰kH‹l$P€=�����uH‰kè����HƒÄXÃLCL‰$H‰l$è����ëâ‰é[ÿÿÿè����éèþÿÿ
������B
��*runtime.racefuncenter���h
�� runtime.raceread���
��(runtime.racefuncexit���¬
�� runtime.raceread���À�������Š
��"runtime.racewrite���¼�6runtime.writeBarrierEnabled���Ô
��(runtime.racefuncexit���‚
��.runtime.writebarrierptr���ž
��0runtime.morestack_noctxt���@°��"".autotmp_0259�type.error�"".p�type.[]uint8�"".e�� type.*"".encoder�&°9¯°¡¯°-� �*Ì"�� ¤%7�Tgclocals·aefd16b155593f6f07980a05b297ad1f�Tgclocals·2c78d3ad9d760b5f66e2e47be684c787���>/tmp/go/src/image/gif/writer.goþ."".(*encoder).writeByte�� ��†dH‹ %����H;a†æ���Hƒì@H‹\$@H‰$è����H‹\$HH‰$Hƒ$è����H‹D$HH‹hHƒý�t
è����HƒÄ@ÃH‰$è����H‹\$HHƒû�„‰���H‹ H‹k¶\$Pˆ\$H‰l$(H‰,$H‰L$ H‹Y0ÿÓH‹\$H‰\$0H‹\$H‰\$8H‹\$HH‰$Hƒ$è����H‹\$HH‹l$0H‰kH‹l$8€=�����uH‰kè����HƒÄ@ÃLCL‰$H‰l$è����ëâ‰épÿÿÿè����éýþÿÿ
������B
��*runtime.racefuncenter���h
�� runtime.raceread���
��(runtime.racefuncexit���¬
�� runtime.raceread���–�������à
��"runtime.racewrite���’�6runtime.writeBarrierEnabled���ª
��(runtime.racefuncexit���Ø
��.runtime.writebarrierptr���ô
��0runtime.morestack_noctxt��� €��"".autotmp_0261�type.error�"".b�type.uint8�"".e�� type.*"".encoder�"€9€Œ€2��*Ú"ˆ�� %<�Tgclocals·32bd5c6dc84e3e86dd35593b3922d3aa�Tgclocals·2c78d3ad9d760b5f66e2e47be684c787���>/tmp/go/src/image/gif/writer.goþ2"".(*encoder).writeHeader��À0��º0dH‹ %����HD$ˆH;A†û ��Hìø���H‹œ$ø���H‰$è����H‹œ$���H‰$Hƒ$è����H‹„$���H‹hHƒý�t è����HÄø���ÃH‰$è����H����H‰$H‹´$���H|$H‹H‰H‹NH‰Oè����H\$H‹ H‰ $H‹KH‰L$H����H‰\$HÇD$���è����H‹\$(H‰\$XH‹\$0H‰\$`H‹œ$���H‰$Hƒ$è����H‹œ$���H‹l$XH‰kH‹l$`€=�����…ç
��H‰kH‹œ$���H‰$Hƒ$è����H‹„$���H‹hHƒý�t è����HÄø���ÃH‰ÃHÃ ���Hƒû�„“
��HDŽ$è������HDŽ$ð������H‰œ$à���H‰$Hƒ$ Hƒ$PHƒ$è����H‹¬$���H‹…€���H‹”$à���H‹Œ$è���H‹œ$ð���H‰œ$¨���f‰D$BH‰”$˜���Hƒù�H‰Œ$ ���†
��H‰$è����H‹Œ$˜���H‹„$ ���Hƒø�†Ü ��H·l$B@ˆ)H‰ËHƒø†¿ ��HÿÃH‰$è����H‹„$���H‹œ$˜���Hƒ¼$ ���† ��HÿÃH·l$BfÁí@ˆ+H‰ÃHƒø�„i ��HÃ ���Hƒû�„Q ��HƒÃHDŽ$è������HDŽ$ð���þ���H‰œ$à���H‰$Hƒ$ Hƒ$PHƒ$è����H‹¬$���H‹…ˆ���H‹”$à���H‹Œ$è���H‹œ$ð���H‰œ$���f‰D$DH‰”$€���Hƒù�H‰Œ$ˆ���†À��H‰$è����H‹Œ$€���H‹„$ˆ���Hƒø�†–��H·l$D@ˆ)H‰ËHƒø†y��HÿÃH‰$è����H‹´$���H‹œ$€���Hƒ¼$ˆ���†G��HÿÃH·l$DfÁí@ˆ+H‰ðHƒþ�„#��H ���Hƒø�„ ��HÇÂ���HÇÁ���H‰4$H‰„$à���H‰D$H‰”$è���H‰T$H‰Œ$ð���H‰L$è����1ÛH‰œ$È���H‰œ$Ð���H‰œ$Ø���H‹œ$���H‰$Hƒ$ Hƒ$Pè����H����H‰$H‹´$���Hƒþ�„u��H^pH|$H‹ H‰H‹KH‰OHœ$È���H‰\$è����¶\$ H‰ØH‹œ$È���H‰\$hH‹Œ$Ð���H‰L$pH‹œ$Ø���H‰\$x<�„R��Hƒù�ŽH��H‰ $è����H‹\$H‰\$HH‹œ$���H« ���H‰,$è����H‹„$���H‹l$HHÍ€���@ˆ¨ ���H¨ ���HÿÅH‰,$è����H‹œ$���H‰$Hƒ$ Hƒ$pè����H‹„$���Hƒø�„»��D¶€���Dˆ€¡���H¨ ���HƒÅH‰,$è����H‹Œ$���Ɓ¢����H‰ÈHÁ ���Hƒù�„n��HÇÅ���HÇÂ���H‰$H‰Œ$à���H‰L$H‰¬$è���H‰l$H‰”$ð���H‰T$è����H‹„$���Hƒø�„��H ��Hƒø�„���HÇÂ���HÇÁ���H‰„$à���H‰$H‰”$è���H‰T$H‰Œ$ð���H‰L$H‹\$hH‰\$H‹\$pH‰\$ H‹\$xH‰\$(H‹\$HH‰\$0è����H‹\$8H‰\$PH‹œ$���H‰$H$˜���è����H‹„$���H‹l$PH‰¨˜���H‰$H$˜���è����H‹Œ$���H‹™˜���Hû���‡4��H‰ÍHÅ ��Hƒý�„��HÇÂ���H‰ $H‰¬$à���H‰l$H‰œ$è���H‰\$H‰”$ð���H‰T$è����H‹œ$���H‰$Hƒ$ è����H‹Œ$���H‹i(HƒýŽc��H© ���H‰,$è����H‹„$���ƀ ���!H¨ ���HÿÅH‰,$è����H‹„$���ƀ¡���ÿH¨ ���HƒÅH‰,$è����H‹Œ$���Ɓ¢��� H‰ÈHÁ ���Hƒù�„6��HÇÅ���HÇÂ���H‰$H‰Œ$à���H‰L$H‰¬$è���H‰l$H‰”$ð���H‰T$è����H‹œ$���H‰$è����H����H‰$H‹´$���H|$H‹H‰H‹NH‰Oè����H\$H‹ H‰ $H‹KH‰L$H����H‰\$HÇD$ ���è����H‹\$(H‰\$XH‹\$0H‰\$`H‹œ$���H‰$Hƒ$è����H‹œ$���H‹l$XH‰kH‹l$`€=�����…)��H‰kH‹œ$���H‰$Hƒ$è����H‹„$���H‹hHƒý�t è����HÄø���ÃH¨ ���H‰,$è����H‹„$���ƀ ���H¨ ���HÿÅH‰,$è����H‹œ$���ƃ¡���H‰ØHÃ ���Hƒû�„”��HƒÃHDŽ$è������HDŽ$ð���þ���H‰œ$à���H‰$Hƒ$ Hƒ$0è����H‹¬$���H‹EPH‹”$à���H‹Œ$è���H‹œ$ð���H‰œ$À���f‰D$FH‰”$°���Hƒù�H‰Œ$¸���† ��H‰$è����H‹Œ$°���H‹„$¸���Hƒø�†á���H·l$F@ˆ)H‰ËHƒø†Ä���HÿÃH‰$è����H‹œ$°���Hƒ¼$¸���†š���HÿÃH·l$FfÁí@ˆ+H‹œ$���H« ���HƒÅH‰,$è����H‹Œ$���Ɓ¤����H‰ÈHÁ ���Hƒù�tKHÇÅ���HÇÂ���H‰$H‰Œ$à���H‰L$H‰¬$è���H‰l$H‰”$ð���H‰T$è����è����HÄø���Éë±è���� è���� è���� è���� ‰éeþÿÿLCL‰$H‰l$è����éÄýÿÿ‰éÃüÿÿ‰E�éàûÿÿè���� ‰�éùúÿÿ‰�éâúÿÿ‰é‹úÿÿ‰�é>úÿÿH‹œ$���H« ���H‰,$è����H‹„$���ƀ ����H¨ ���HÿÅH‰,$è����H‹„$���ƀ¡����H¨ ���HƒÅH‰,$è����H‹Œ$���Ɓ¢����H‰ÈHÁ ���Hƒù�tCHÇÅ���HÇÂ���H‰$H‰Œ$à���H‰L$H‰¬$è���H‰l$H‰”$ð���H‰T$è����é5ûÿÿ‰빉é„øÿÿ‰�éí÷ÿÿ‰éÖ÷ÿÿè���� è���� è���� è���� ‰é¨öÿÿ‰�éöÿÿè���� è���� è���� è���� ‰éfõÿÿLCL‰$H‰l$è����éõÿÿè����éãóÿÿ–
������X
��*runtime.racefuncenter���„
�� runtime.raceread���²
��(runtime.racefuncexit���Ô
�� runtime.raceread���â��type.io.Writer���ª
��runtime.convI2I���â��$go.string."GIF89a"���ˆ
��io.WriteString���Ü
��"runtime.racewrite���”�6runtime.writeBarrierEnabled���Ö
�� runtime.raceread���„
��(runtime.racefuncexit���¬
�� runtime.raceread���Ú
��"runtime.racewrite���Ò
��"runtime.racewrite���ä

�� runtime.raceread���’ 
��"runtime.racewrite���Š 
��"runtime.racewrite���ž
��&"".(*encoder).write���ˆ
�� runtime.raceread���–��0type.image/color.Palette���”
��$runtime.assertI2T2���¨
��"".log2���ì
��"runtime.racewrite���È
��"runtime.racewrite���þ
�� runtime.raceread���è
��"runtime.racewrite���ª
��&"".(*encoder).write���°
��&"".encodeColorTable���ö
��"runtime.racewrite����� runtime.raceread���Ž
��&"".(*encoder).write���º
�� runtime.raceread���†
��"runtime.racewrite���Ê
��"runtime.racewrite���
��"runtime.racewrite���Ò
��&"".(*encoder).write���ô
�� runtime.raceread���‚��type.io.Writer���Ê
��runtime.convI2I���‚ ��.go.string."NETSCAPE2.0"���¨ 
��io.WriteString���ü 
��"runtime.racewrite���´!�6runtime.writeBarrierEnabled���ö!
�� runtime.raceread���¤"
��(runtime.racefuncexit���Ô"
��"runtime.racewrite���˜#
��"runtime.racewrite���Ì$
�� runtime.raceread���ô%
��"runtime.racewrite���ì&
��"runtime.racewrite���ò'
��"runtime.racewrite���¬)
��&"".(*encoder).write���¶)
��(runtime.racefuncexit���Ø)
��$runtime.panicindex���æ)
��$runtime.panicindex���ô)
��$runtime.panicindex���‚*
��$runtime.panicindex���¸*
��.runtime.writebarrierptr���ê*
��$runtime.panicslice���Ö+
��"runtime.racewrite���š,
��"runtime.racewrite���à,
��"runtime.racewrite���š.
��&"".(*encoder).write���à.
��$runtime.panicindex���î.
��$runtime.panicindex���ü.
��$runtime.panicindex���Š/
��$runtime.panicindex���´/
��$runtime.panicindex���Â/
��$runtime.panicindex���Ð/
��$runtime.panicindex���Þ/
��$runtime.panicindex���”0
��.runtime.writebarrierptr���¨0
��0runtime.morestack_noctxt���ð��8"".autotmp_0284��type.uint16�"".autotmp_0283��type.uint16�"".autotmp_0281��type.[]uint8�"".autotmp_0280��type.[]uint8�"".autotmp_0279��type.error�"".autotmp_0278��type.[]uint8�"".autotmp_0277��type.int�"".autotmp_0276��type.[]uint8�"".autotmp_0275��type.[]uint8�"".autotmp_0274��type.int�"".autotmp_0273��type.int�"".autotmp_0272��type.[]uint8�"".autotmp_0271��type.[]uint8�"".autotmp_0270�Ïtype.int�"".autotmp_0267�_0type.image/color.Palette�"".autotmp_0266��type.[]uint8�"".autotmp_0265��type.[]uint8�"".autotmp_0264�/type.[]uint8�"".autotmp_0263�¿type.error�"".u�ãtype.uint16�"".b�type.[]uint8�"".u�çtype.uint16�"".b�ïtype.[]uint8�"".u�ëtype.uint16�"".b�¿type.[]uint8�"".paddedSize�ßtype.int�"".p�Ÿ0type.image/color.Palette�"".e�� type.*"".encoder�DðEïðèïðÏïðÈïð¹� �ˆè@=(>;´(63€Ú3ÙÚ!Ù'ŽØ3×Ø!×'[¼3O#Rºx,"#R¼( "|˜3—˜—'+N˜—˜— '"#NØ×Ø×ÚÙÚÙ  �V�+Â=kWÅWÆ5
„ ¦=«T
 ¨�Tgclocals·a9ea41aae9e32efcc8711d8fabe405fb�Tgclocals·7f58a2053bec7f12637693406995051d���>/tmp/go/src/image/gif/writer.goþ&"".encodeColorTable�� ��ˆdH‹ %����H;a†g��HƒìXH‹\$XH‰$è����H����H‹¬$���Hƒýƒ5��HëH‰$è����H‹t$`H‹T$hH����H‹¬$���Hƒýƒþ��HëH‹+H‰l$(1ÀH‹l$(H9荕��H‹Œ$€���H9ȍ×��H‹\$xH‰ÅH‰D$0L‹„$€���L9Àƒ²��HÁåHëH‰$è����H‹\$xH‹l$0L‹„$€���L9Ń€��HÁåHëH‹ H‹kH‰l$PH‰,$H‰L$HH‹Y ÿӋT$‹L$ ‹D$‰T$‰L$ ‰D$$H‹D$0H‹\$`HkÀHƒÀ�H‰D$8L‹D$hL9Àƒ��HH‰$è����H‹L$`H‹D$hH‹l$8H9Ńî���H)‹l$Áí@ˆ+H‹T$0HkÒHÿÂH‰T$8H9ƒ¿���HH‰$è����H‹L$`H‹D$hH‹l$8H9Ń“���H)‹l$ Áí@ˆ+H‹T$0HkÒHƒÂH‰T$8H9ÂsgHH‰$è����H‹t$`H‹T$hH‹l$8H9Õs?H.‹l$$Áí@ˆ+H‹D$0HÿÀH‹l$(H9èŒkþÿÿH‹\$(HkÛH‰œ$˜���è����HƒÄXÃè���� è���� è���� è���� è���� è���� è���� è���� H‰ÃH‰D$0HkÛHƒÃ�H‰\$@H9ÓƒÕ���HH‰$è����H‹L$`H‹D$hH‹l$@H9Ń©���H)Æ�H‹T$0HkÒHÿÂH‰T$@H9ƒ���HH‰$è����H‹L$`H‹D$hH‹l$@H9ÅsYH)Æ�H‹T$0HkÒHƒÂH‰T$@H9Âs4HH‰$è����H‹t$`H‹T$hH‹l$@H9Õs H.Æ�éÇþÿÿè���� è���� è���� è���� è���� è���� è���� è���� è����é|üÿÿ>
������B
��*runtime.racefuncenter���P��"".log2Lookup���Ž
�� runtime.raceread���°��"".log2Lookup���Š
�� runtime.raceread���ˆ�������˜
��"runtime.racewrite���²
��"runtime.racewrite���Æ
��"runtime.racewrite���â
��(runtime.racefuncexit���ö
��$runtime.panicindex���„ 
��$runtime.panicindex���’ 
��$runtime.panicindex���  
��$runtime.panicindex���® 
��$runtime.panicindex���¼ 
��$runtime.panicindex���Ê 
��$runtime.panicindex���Ø 
��$runtime.panicindex���²

��"runtime.racewrite���¾ 
��"runtime.racewrite���¼ 
��"runtime.racewrite���† 
��$runtime.panicindex���” 
��$runtime.panicindex���¢ 
��$runtime.panicindex���° 
��$runtime.panicindex���¾ 
��$runtime.panicindex���Ì 
��$runtime.panicindex���Ú 
��$runtime.panicindex���è 
��$runtime.panicindex���ö 
��0runtime.morestack_noctxt���€°��""".autotmp_0295��type.int�"".autotmp_0294��type.int�"".autotmp_0293��type.int�"".autotmp_0292��type.int�"".autotmp_0291��type.int�"".autotmp_0290�?type.int�"".autotmp_0289�/type.int�"".autotmp_0285��type.int�"".b�gtype.uint32�"".g�otype.uint32�"".r�wtype.uint32�"".i�Otype.int�"".n�_type.int� "".~r3�ptype.int�"".size�`type.int�"".p�00type.image/color.Palette� "".dst��type.[]uint8�°¢¯°Ö��fÊUƒXMF  JB?� � ð�Tgclocals·739018a0fedb7c38faa3101fb8dac3ab�Tgclocals·23e8278e2b69a3a75fa59b23c49ed6ad���>/tmp/go/src/image/gif/writer.goþ:"".(*encoder).writeImageBlock��€]��þ\dH‹ %����H„$ýÿÿH;A†��Hìh��H‹œ$h��H‰$è����H‹œ$p��H‰$Hƒ$è����H‹œ$p��H‹kHƒý�t è����HÄh��ÃH‹œ$x��H‰$Hƒ$@è����H‹Œ$x��H‹iHHƒý�…n��H����H‰œ$��HDŽ$��1���1ÛH‰œ$à��H‰œ$è��H����H‰$è����H‹D$H‰„$Ð��H‰$è����H‹œ$Ð��H‹¬$��H‰kH‹¬$��€=�����…ß���H‰+H‹œ$Ð��H‰œ$Ð��H‹����1íH9脈���H‹Œ$Ð��H‰„$€��H‰„$à��H‰Œ$ˆ��H‰Œ$è��H‹œ$p��H‰$Hƒ$è����H‹œ$p��H‹¬$à��H‰kH‹¬$è��€=�����uH‰kè����HÄh��ÃLCL‰$H‰l$è����ëßH����H‰$H����H‰\$H����H‰\$è����H‹D$éFÿÿÿH‰$H‰l$è����éÿÿÿ1ÛH‰œ$ ���H‰œ$¨���H‰œ$°���H‰œ$¸���H‰Œ$À��H‰ $Hƒ$ HÇD$ ���è����H‹œ$À��Hƒû�„Ù��H‹s H‹S(H‹K0H‹C8H‰´$ ���H‰”$¨���H‰”$ˆ��H‰Œ$°���H‰Œ$��H‰„$¸���H‰„$˜��H‰´$€��Hƒþ�Œ��Hù�����Hƒú�Œú��H=���î��H‰´$���H‰”$��H‰Œ$��H‰„$��1ÛH‰œ$ ��H‰œ$¨��H‰œ$°��H‰œ$¸��H‹œ$p��H‰$Hƒ$ Hƒ$PHƒ$è����H‹„$p��H‹˜€���H‰œ$°��H‰$Hƒ$ Hƒ$PHƒ$è����L‹¬$���L‹¤$��L‹œ$��L‹”$��H‹¬$p��H‹µˆ���L‹Œ$ ��L‰Œ$À���L‹„$¨��L‰„$È���H‹¼$°��H‰¼$Ð���H‰´$Ø���L‰¤$H��L‰”$X��L‰¬$@��L‰œ$P��M9ݍÁ��M9ԝÀ<�„’��HÇÀ���<�…n��H����H‰œ$ ��HDŽ$(��!���1ÛH‰œ$���H‰œ$��H����H‰$è����H‹D$H‰„$Ð��H‰$è����H‹œ$Ð��H‹¬$(��H‰kH‹¬$ ��€=�����…ß���H‰+H‹œ$Ð��H‰œ$Ð��H‹����1íH9脈���H‹Œ$Ð��H‰„$€��H‰„$���H‰Œ$ˆ��H‰Œ$��H‹œ$p��H‰$Hƒ$è����H‹œ$p��H‹¬$���H‰kH‹¬$��€=�����uH‰kè����HÄh��ÃLCL‰$H‰l$è����ëßH����H‰$H����H‰\$H����H‰\$è����H‹D$éFÿÿÿH‰$H‰l$è����éÿÿÿHÇD$XÿÿÿÿH‹œ$x��H‰$Hƒ$@è����H‹œ$x��Hƒû�„Ý��H‹S@H‹CHH‹kPH‰¬$`��1ÉH‰„$X��H‰„$���H‰”$P��H‰ÐH‰Œ$˜���H‹¬$���H9é}xH‰„$È��H‰$è����H‹œ$È��Hƒû�„m��H‹ H‹kH‹œ$˜���H‰\$xH‰Œ$p��H‰¬$x��H‰¬$X��H‰,$H‰Œ$P��H‹Y ÿӋ\$ƒû�…��H‹\$xH‰\$XH‹œ$€��Hƒû�. ��¶œ$ˆ��€û�… ��H‹\$XHƒûÿ… ��H‹œ$p��H« ���H‰,$è����H‹´$p��Ɔ ���,HÆ ���Hƒþ�„Ï ��HÿÆH‹„$€��HÇÅ���HÇÂÿ���H‰”$���f‰D$HH‰´$ð��Hƒý�H‰¬$ø��†ˆ ��H‰4$è����H‹Œ$ð��H‹„$ø��Hƒø�†^ ��H·l$H@ˆ)H‰ËHƒø†A ��HÿÃH‰$è����H‹œ$ð��Hƒ¼$ø��† ��HÿÃH·l$HfÁí@ˆ+H‹´$p��Hƒþ�„î
��HÆ ���Hƒþ�„Ö
��HƒÆH‹„$ˆ��HÇÅ���HÇÂý���H‰”$ ��f‰D$FH‰´$��Hƒý�H‰¬$˜��†Ž
��H‰4$è����H‹Œ$��H‹„$˜��Hƒø�†d
��H·l$F@ˆ)H‰ËHƒø†G
��HÿÃH‰$è����H‹œ$��Hƒ¼$˜��†
��HÿÃH·l$FfÁí@ˆ+H‹¬$p��Hƒý�„ó ��HÅ ���Hƒý�„Ú ��HƒÅHÇÆ���HÇÂû���H‹¼$€��H‹œ$ˆ��H‰œ$è���H‹„$��H‹œ$˜��H‰œ$ø���H‰ÃH‰„$ð���H‰¼$à���H)ûH‰”$è��f‰\$NH‰¬$Ø��Hƒþ�H‰´$à��†T ��H‰,$è����H‹Œ$Ø��H‹„$à��Hƒø�†* ��H·l$N@ˆ)H‰ËHƒø† ��HÿÃH‰$è����H‹œ$Ø��Hƒ¼$à��†ã��HÿÃH·l$NfÁí@ˆ+H‹¬$p��Hƒý�„¹��HÅ ���Hƒý�„ ��HƒÅHÇÆ���HÇÂù���H‹œ$€��H‰œ$ ��H‹¼$ˆ��H‹œ$��H‰œ$0��H‹„$˜��H‰„$8��H‰¼$(��H)øH‰”$¸��f‰D$JH‰¬$¨��Hƒþ�H‰´$°��†��H‰,$è����H‹Œ$¨��H‹„$°��Hƒø�†ó��H·l$J@ˆ)H‰ËHƒø†Ö��HÿÃH‰$è����H‹´$p��H‹œ$¨��Hƒ¼$°��†¤��HÿÃH·l$JfÁí@ˆ+H‰ðHƒþ�„€��H ���Hƒø�„i��HÇ ���HÇÁ���H‰4$H‰„$8��H‰D$H‰”$@��H‰T$H‰Œ$H��H‰L$è����H‹œ$x��H‰$Hƒ$@è����H‹œ$x��H‹kHH‰,$è����H‹\$H‰\$`H‹œ$p��Hƒû�„Ý��HÃ ��Hƒû�„Å��HDŽ$@�����HDŽ$H�����H‰œ$8��H‹œ$x��H‰$Hƒ$@è����H‹œ$8��H‰$H‹œ$@��H‰\$H‹œ$H��H‰\$H‹´$x��Hƒþ�„P��H^@H|$H‹ H‰H‹KH‰OH‹KH‰OH‹\$`H‰\$0è����H‹\$8H‰œ$ˆ���H‹œ$p��H‰$H$˜���è����H‹Œ$ˆ���H‹„$p��H‹˜˜���H9Ë…+��Hù���‡È��H‰ÆHÆ ��Hƒþ�„­��I‰ÈHÇÇ���Hù���‡��H‰ÅHÅ ��Hƒý�„s��H‰ÊHÇÁ���H‰´$8��H‰4$L‰„$@��L‰D$H‰¼$H��H‰|$H‰¬$ ��H‰l$H‰”$(��H‰T$ H‰Œ$0��H‰L$(è����H‹„$p��¶\$0€û�„m��H‰$ÆD$�è����H‹D$`HÿÀHƒø}HÇÀ���H‹œ$p��H‰$H‰D$hˆD$è����1ÛH‹œ$p��H‰œ$Ø��H‹����1íH9è„Ú��H‹Œ$Ø��H‰„$`��H‰$H‰Œ$h��H‰L$HÇD$����H‹\$hH‰\$è����H‹L$ H‹D$(H‰Œ$@��H‰„$H��H‹Œ$€��H‹œ$ˆ��H‰œ$h��H‹„$��H‹œ$˜��H‰œ$x��H‰ÃH‰„$p��H‰Œ$`��H)ËH‰œ$€���H‹œ$x��H‰$Hƒ$è����H‹”$x��H‹ZH‹¬$€���H9ë…F��H‰$è����H‹´$x��H|$H‹H‰H‹NH‰OH‹NH‰OH‹œ$H��H‰$H‹œ$@��H‹[(ÿÓH‹\$(H‰œ$€��H‹\$0H‰œ$ˆ��H‹œ$p��H‰$Hƒ$è����H‹œ$p��H‹¬$€��H‰kH‹¬$ˆ��€=�����…���H‰kH‹œ$p��H‰$Hƒ$è����H‹œ$p��H‹kHƒý�t'H‹œ$H��H‰$H‹œ$@��H‹[ ÿÓè����HÄh��ÃH‹œ$H��H‰$H‹œ$@��H‹[ ÿÓH‹œ$p��H‰$ÆD$�è����è����HÄh��ÃLCL‰$H‰l$è����é]ÿÿÿH‹„$ˆ��1ÉH‹œ$˜��H‰D$PH9Ã~H‰ËH‰L$pH‹¬$€���HëH‰œ$���H‰$è����H‹œ$x��H‹l$pL‹„$���L‹KM9ȇW��L9ŇN��L‹I)èI)éIƒù�tM*L‰”$��L‰T$L‰„$��L‰D$L‰Œ$��L‰L$H‹œ$H��H‰$H‹œ$@��H‹[(ÿÓH‹\$(H‰œ$€��H‹\$0H‰œ$ˆ��H‹œ$p��H‰$Hƒ$è����H‹œ$p��H‹¬$€��H‰kH‹¬$ˆ��€=�����…Š���H‰kH‹œ$p��H‰$Hƒ$è����H‹œ$p��H‹kHƒý�t'H‹œ$H��H‰$H‹œ$@��H‹[ ÿÓè����HÄh��ÃH‹œ$x��H‰$Hƒ$è����H‹”$x��H‹JH‹l$pH‹D$PHéHÿÀéhþÿÿLCL‰$H‰l$è����écÿÿÿè���� H����H‰$H����H‰\$H����H‰\$è����H‹D$éôûÿÿH‰$H‹\$`HË€���ˆ\$è����H‹´$p��H‹œ$ˆ���Hû���w[H‰õHƒþ�tNHÅ ��Hƒý�t<HÇÁ���H‰4$H‰¬$��H‰l$H‰œ$��H‰\$H‰Œ$��H‰L$è����éûÿÿ‰E�뿉ë®è���� ‰E�é…úÿÿè���� ‰éLúÿÿè���� ‰é©ùÿÿ‰é4ùÿÿ‰éùÿÿ‰�éøÿÿ‰éyøÿÿè���� è���� è���� è���� ‰E�éX÷ÿÿ‰E�é?÷ÿÿè���� è���� è���� è���� ‰E�éöÿÿ‰E�éöÿÿè���� è���� è���� è���� ‰é#õÿÿ‰é õÿÿè���� è���� è���� è���� ‰é*ôÿÿH‹œ$p��H« ���H‰,$è����H‹„$p��ƀ ���!H¨ ���HÿÅH‰,$è����H‹„$p��ƀ¡���ùH¨ ���HƒÅH‰,$è����H‹„$p��ƀ¢���H‹\$XHƒûÿ„ ��H¨ ���HƒÅH‰,$è����H‹„$p��¶¬$ˆ��HÁåHƒÍ@ˆ¨£���H‰ÆHƒø�„Â��HÆ ���Hƒþ�„ª��HƒÆH‹„$€��HÇÅ���HÇÂü���H‰”$Ð��f‰D$LH‰´$À��Hƒý�H‰¬$È��†b��H‰4$è����H‹Œ$À��H‹„$È��Hƒø�†8��H·l$L@ˆ)H‰ËHƒø†��HÿÃH‰$è����H‹„$p��H‹œ$À��Hƒ¼$È��†é���HÿÃH·l$LfÁí@ˆ+H‹\$XHƒûÿ„¢���H¨ ���HƒÅH‰,$è����H‹„$p��H‹l$X@ˆ¨¦���H¨ ���HƒÅH‰,$è����H‹Œ$p��Ɓ§����H‰ÈHÁ ���Hƒù�tCHÇÅ���HÇÂ���H‰$H‰Œ$8��H‰L$H‰¬$@��H‰l$H‰”$H��H‰T$è����éÄñÿÿ‰ë¹H¨ ���HƒÅH‰,$è����H‹„$p��ƀ¦����é^ÿÿÿè���� è���� è���� è���� ‰éOþÿÿ‰�é7þÿÿH¨ ���HƒÅH‰,$è����H‹„$p��¶¬$ˆ��HÁåHƒÍ�@ˆ¨£���éòýÿÿH‹„$È��H‹Œ$˜���HƒÀHÿÁé[ðÿÿ‰éŒðÿÿ‰éðÿÿM9éI9ûM9à I9òžÀé[îÿÿ1ÀéTîÿÿHÇÀ���é9îÿÿH����H‰œ$0��HDŽ$8��'���1ÛH‰œ$ð��H‰œ$ø��H����H‰$è����H‹D$H‰„$Ð��H‰$è����H‹œ$Ð��H‹¬$8��H‰kH‹¬$0��€=�����…ß���H‰+H‹œ$Ð��H‰œ$Ð��H‹����1íH9脈���H‹Œ$Ð��H‰„$€��H‰„$ð��H‰Œ$ˆ��H‰Œ$ø��H‹œ$p��H‰$Hƒ$è����H‹œ$p��H‹¬$ð��H‰kH‹¬$ø��€=�����uH‰kè����HÄh��ÃLCL‰$H‰l$è����ëßH����H‰$H����H‰\$H����H‰\$è����H‹D$éFÿÿÿH‰$H‰l$è����éÿÿÿ‰é ëÿÿè����éÁèÿÿ–
������^
��*runtime.racefuncenter���Š
�� runtime.raceread���¸
��(runtime.racefuncexit���ô
�� runtime.raceread���®��zgo.string."gif: cannot encode image block with empty palette"���ˆ��.type.errors.errorString���š
��"runtime.newobject���Æ
��"runtime.racewrite���Š�6runtime.writeBarrierEnabled���Ì��Bgo.itab.*errors.errorString.error���Þ
��"runtime.racewrite���¢�6runtime.writeBarrierEnabled���º
��(runtime.racefuncexit���î
��.runtime.writebarrierptr���€��0type.*errors.errorString���–��type.error���®��Bgo.itab.*errors.errorString.error���Â
�� runtime.typ2Itab���ò
��.runtime.writebarrierptr���þ
��*runtime.racereadrange���à 
�� runtime.raceread���¾ 
�� runtime.raceread���¦��Zgo.string."gif: image block is out of bounds"���€��.type.errors.errorString���’
��"runtime.newobject���¾
��"runtime.racewrite���‚�6runtime.writeBarrierEnabled���Ä��Bgo.itab.*errors.errorString.error���Ö
��"runtime.racewrite���š�6runtime.writeBarrierEnabled���²
��(runtime.racefuncexit���æ
��.runtime.writebarrierptr���ø��0type.*errors.errorString���Ž��type.error���¦��Bgo.itab.*errors.errorString.error���º
�� runtime.typ2Itab���ê
��.runtime.writebarrierptr���²
�� runtime.raceread���„
�� runtime.raceread���¨�������æ
��"runtime.racewrite���¸
��"runtime.racewrite���°
��"runtime.racewrite���Ø
��"runtime.racewrite���Р
��"runtime.racewrite���ô#
��"runtime.racewrite���ì$
��"runtime.racewrite���Š(
��"runtime.racewrite���‚)
��"runtime.racewrite���–+
��&"".(*encoder).write���Â+
�� runtime.raceread���ì+
��"".log2���²-
�� runtime.raceread���þ.
��&"".encodeColorTable���Ê/
�� runtime.raceread���Ú2
��bytes.Equal���¢3
��."".(*encoder).writeByte���€4
��."".(*encoder).writeByte���²4��@go.itab."".blockWriter.io.Writer���º5
��,compress/lzw.NewWriter���¶7
�� runtime.raceread���‚8
�� runtime.raceread���€9�������Ü9
��"runtime.racewrite��� :�6runtime.writeBarrierEnabled���â:
�� runtime.raceread���¾;�������Ä;
��(runtime.racefuncexit���Œ<�������´<
��."".(*encoder).writeByte���¾<
��(runtime.racefuncexit���ò<
��.runtime.writebarrierptr���ü=
�� runtime.raceread���þ?�������Ú@
��"runtime.racewrite���žA�6runtime.writeBarrierEnabled���àA
�� runtime.raceread���¼B�������ÂB
��(runtime.racefuncexit���þB
�� runtime.raceread���äC
��.runtime.writebarrierptr���øC
��$runtime.panicslice���ŠD��&type."".blockWriter��� D��type.io.Writer���¸D��@go.itab."".blockWriter.io.Writer���ÌD
�� runtime.typ2Itab���’E
��."".(*encoder).writeByte���ÞF
��&"".(*encoder).write���„G
��$runtime.panicslice���¢G
��$runtime.panicslice���¾G
��$runtime.panicslice���’H
��$runtime.panicindex��� H
��$runtime.panicindex���®H
��$runtime.panicindex���¼H
��$runtime.panicindex���êH
��$runtime.panicindex���øH
��$runtime.panicindex���†I
��$runtime.panicindex���”I
��$runtime.panicindex���ÂI
��$runtime.panicindex���ÐI
��$runtime.panicindex���ÞI
��$runtime.panicindex���ìI
��$runtime.panicindex���–J
��$runtime.panicindex���¤J
��$runtime.panicindex���²J
��$runtime.panicindex���ÀJ
��$runtime.panicindex���‚K
��"runtime.racewrite���ÆK
��"runtime.racewrite���ŒL
��"runtime.racewrite���ðL
��"runtime.racewrite���þN
��"runtime.racewrite���öO
��"runtime.racewrite���šQ
��"runtime.racewrite���êQ
��"runtime.racewrite���¤S
��&"".(*encoder).write���ÞS
��"runtime.racewrite���T
��$runtime.panicindex���žT
��$runtime.panicindex���¬T
��$runtime.panicindex���ºT
��$runtime.panicindex���‚U
��"runtime.racewrite���†W��fgo.string."gif: image block is too large to encode"���àW��.type.errors.errorString���òW
��"runtime.newobject���žX
��"runtime.racewrite���âX�6runtime.writeBarrierEnabled���¤Y��Bgo.itab.*errors.errorString.error���¶Z
��"runtime.racewrite���úZ�6runtime.writeBarrierEnabled���’[
��(runtime.racefuncexit���Æ[
��.runtime.writebarrierptr���Ø[��0type.*errors.errorString���î[��type.error���†\��Bgo.itab.*errors.errorString.error���š\
�� runtime.typ2Itab���Ê\
��.runtime.writebarrierptr���ì\
��0runtime.morestack_noctxt���@Ð ��²"".autotmp_0351��type.int�"".autotmp_0350��type.int�"".autotmp_0349��type.int�"".autotmp_0348��type.int�"".autotmp_0347��type.*uint8�"".autotmp_0346��type.uint16�"".autotmp_0345��type.int�"".autotmp_0344��type.uint16�"".autotmp_0343��type.int�"".autotmp_0342��type.uint16�"".autotmp_0341��type.uint16�"".autotmp_0339�ï,type.image/color.Color�"".autotmp_0338�¿.type.*image/color.Color�"".autotmp_0337�¯ type.int�"".autotmp_0336��type.int�"".autotmp_0335��type.*uint8�"".autotmp_0334��type.error�"".autotmp_0333��0type.*errors.errorString�"".autotmp_0332��type.bool�"".autotmp_0330�(type.image.Rectangle�"".autotmp_0329��type.*uint8�"".autotmp_0328��type.error�"".autotmp_0327��0type.*errors.errorString�"".autotmp_0325�Ïtype.error�"".autotmp_0324�¯0type.*errors.errorString�"".autotmp_0323��type.error�"".autotmp_0322��type.[]uint8�"".autotmp_0321��type.int�"".autotmp_0320��type.error�"".autotmp_0318�Ÿ&type."".blockWriter�"".autotmp_0317�¿type.[]uint8�"".autotmp_0316��type.bool�"".autotmp_0315�type.[]uint8�"".autotmp_0314��type.[]uint8�"".autotmp_0313��type.int�"".autotmp_0312��type.[]uint8�"".autotmp_0311��type.int�"".autotmp_0310��type.int�"".autotmp_0309��type.[]uint8�"".autotmp_0308��type.[]uint8�"".autotmp_0307��type.[]uint8�"".autotmp_0306��type.[]uint8�"".autotmp_0305��type.[]uint8�"".autotmp_0304��type.[]uint8�"".autotmp_0303�_type.[]uint8�"".autotmp_0301�/0type.image/color.Palette�"".autotmp_0300��0type.*errors.errorString�"".autotmp_0299��0type.*errors.errorString�"".autotmp_0298��0type.*errors.errorString�"".autotmp_0297�Ÿ type.int�image.r·2�(type.image.Rectangle�"".u�» type.uint16�"".b�ÿtype.[]uint8�image.r·2� (type.image.Rectangle�"".u�³ type.uint16�"".b�Ÿtype.[]uint8�image.r·2�
(type.image.Rectangle�"".u�à type.uint16�"".b�¯type.[]uint8�"".u�¿ type.uint16�"".b�ïtype.[]uint8�"".u�· type.uint16�"".b�Ïtype.[]uint8� "".~r0�Ïtype.error�errors.text·2�type.string�image.r·2�Ï(type.image.Rectangle�image.s·3�Ï
(type.image.Rectangle�image.r·2�Ï (type.image.Rectangle� "".~r0�ïtype.error�errors.text·2�ïtype.string� "".~r0� (type.image.Rectangle�image.p·2�Ï(type.*image.Paletted� "".~r0�type.error�errors.text·2�¯type.string�"".y�¯ type.int�"".i�ï type.int�
"".dx�Ï type.int�"".lzww�Ï&type.io.WriteCloser�"".litWidth�ÿ type.int�
"".ct�¿ type.int�"".paddedSize� type.int�"".c�¯,type.image/color.Color�"".i�ß type.int�&"".transparentIndex�Ÿ type.int�"".b�Ï(type.image.Rectangle�"".disposal�0type.uint8�"".delay� type.int�
"".pm�(type.*image.Paletted�"".e�� type.*"".encoder�j"Ð EÏ Ð ÀÏ Ð ûÏ Ð ÈÏ Ð <Ï Ð Ï Ð § Ï Ð k�À.�Òî"²¯(°­,ˆ¦£¦¥E›5¾ˆ’’‘E µ'
2('73'J3'ˆ3'“[5Ì÷ w£(
€(  72!^  ,''"#3E3!'(#N#3* -ˆš—š™E �Ò�.žŒ.D^ñ ™ Œ.D<i±iÐŽ‹ÆŽfœ"“C/!Y"ôC/! "=!* #öŽ¬&Œ.)D4�Tgclocals·f6296cfde20a742c77302c9ea66f7adc�Tgclocals·5ea47e4012ef688a16d4de31d0970ec2���>/tmp/go/src/image/gif/writer.goþ"".EncodeAll�� D��œDdH‹ %����H„$˜öÿÿH;A†é��Hìè ��H‹œ$è ��H‰$è����1ÛH‰œ$
��H‰œ$
��H‹œ$�
��H‰$è����H‹Œ$�
��H‹iHƒý�…$��H����H‰œ$p��HDŽ$x��$���1ÛH‰œ$��H‰œ$��H����H‰$è����H‹D$H‰„$È���H‰$è����H‹œ$È���H‹¬$x��H‰kH‹¬$p��€=�����…•���H‰+H‹œ$È���H‰œ$È���H‹����1íH9ètEH‹Œ$È���H‰„$À��H‰Œ$È��H‰„$��H‰„$
��H‰Œ$��H‰Œ$
��è����HÄè ��ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$ëŒH‰$H‰l$è����é[ÿÿÿH‰ $è����H‹„$�
��H‹hH‰l$PH‰$Hƒ$è����H‹Œ$�
��H‹i H‹\$PH9ë„$��H����H‰œ$P��HDŽ$X��'���1ÛH‰œ$ð���H‰œ$ø���H����H‰$è����H‹D$H‰„$È���H‰$è����H‹œ$È���H‹¬$X��H‰kH‹¬$P��€=�����…•���H‰+H‹œ$È���H‰œ$È���H‹����1íH9ètEH‹”$È���H‰„$À��H‰”$È��H‰„$ð���H‰„$
��H‰”$ø���H‰”$
��è����HÄè ��ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$ëŒH‰$H‰l$è����é[ÿÿÿH‰ $Hƒ$0è����H‹„$�
��H‹X0Hƒû�}H‰$Hƒ$0è����H‹œ$�
��HÇC0����H����H‰$è����H‹\$H‰œ$Ø���H¼$H��1ÀHÇÁô���óH«H‹œ$�
��H‰$HÇD$x���è����H‹´$�
��Hƒþ�„l ��Hœ$h��H‰ßè����H‹œ$Ø���H‰$HÇD$ ��è����H‹œ$Ø���H¬$H��H‰\$H‰l$H-����H‰,$è����H‹œ$Ø���H‰$Hƒ$ Hƒ$8è����H‹„$Ø���H‹hXHƒý�„p��H‰$Hƒ$ è����H‹„$Ø���H‹h(H‰l$PH‰$Hƒ$ Hƒ$8è����H‹„$Ø���H‹h`H‹\$PH9ë„$��H����H‰œ$`��HDŽ$h��*���1ÛH‰œ$à���H‰œ$è���H����H‰$è����H‹D$H‰„$È���H‰$è����H‹œ$È���H‹¬$h��H‰kH‹¬$`��€=�����…•���H‰+H‹œ$È���H‰œ$È���H‹����1íH9ètEH‹”$È���H‰„$À��H‰”$È��H‰„$à���H‰„$
��H‰”$è���H‰”$
��è����HÄè ��ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$ëŒH‰$H‰l$è����é[ÿÿÿ1ÛH‰œ$(��H‰œ$0��H‰œ$8��H‰œ$@��HƒÀ HƒÀPH‰„$¸���Hœ$(��H‰œ$°���H‰$è����H‹œ$°���Hƒû�„ ��H‹+H‰¬$°��H‹kH‰¬$¸��H‹œ$¸���H‰$è����H‹”$°��H‹œ$¸���Hƒû�„Ê
��H‹H‹KH‰Œ$¨��H‰„$ ��H9Ð…ü��H‰$H‰L$H‰T$H‹¬$¸��H‰l$è����¶\$ €û�„Î��H‹œ$¸���H‰$Hƒ$è����H‹œ$°���H‰$Hƒ$è����H‹„$¸���H‹XL‹„$°���I‹hH9녁��H‰$Hƒ$è����H‹œ$°���H‰$Hƒ$è����H‹¬$¸���H‹]L‹„$°���I‹hH9ë…<��H‹œ$�
��H‰$è����H‹œ$�
��H‹ H‹CH‹kH‰¬$��H‰Œ$ø��Hƒø�H‰„$���†ï��H‰ $è����H‹œ$�
��Hƒû�„Í��H‹ H‹CH‹kH‰¬$��H‰Œ$ø��Hƒø�H‰„$���†™��H‹)1ÛH‰\$hH‰\$pH‰\$xH‰œ$€���H‰¬$ˆ���H‰,$Hƒ$ HÇD$ ���è����H‹œ$ˆ���Hƒû�„E��H‹k H‰l$hH‹k(H‰l$pH‹k0H‰l$xH‹k8H‰¬$€���H\$hH‹kH‰l$XH‹kH‰l$`H‹œ$Ø���H‰$Hƒ$ Hƒ$PHƒ$è����H‹„$Ø���H‹l$XH‰¨€���H‰$Hƒ$ Hƒ$PHƒ$è����H‹œ$Ø���H‹l$`H‰«ˆ���1ÛH‰œ$Ð��H‰œ$Ø��H����H‰$H‹œ$ð ��H‰\$H‹œ$ø ��H‰\$Hœ$Ð��H‰\$è����¶\$ H‰ØH‹œ$Ð��H‰œ$@��H‹œ$Ø��H‰œ$H��<�„Z��H‹œ$Ø���H‰$è����H‹œ$Ø���H‹¬$@��H‰+H‹¬$H��€=�����…
��H‰kH‹œ$Ø���H‰$è����H‹œ$�
��H‰$è����H‹œ$�
��Hƒû�„Ë��H‹H‹CH‹kH‰¬$��1ÉH‰„$���H‰D$HH‰”$ø��H‰ÐH‰L$PH‹l$HH9é÷��H‰„$ ���H‰$è����H‹œ$ ���H‹+H‹\$PH‰\$@H‰¬$���ÆD$7�H‹œ$�
��H‰$Hƒ$8è����H‹„$�
��H‹h8Hƒý�„¥���H‰$Hƒ$8è����H‹œ$�
��H‹K8H‹C@H‹kHH‰¬$ ��H‰Œ$��H‹l$@H‰„$��H9ŃÝ��H)H‰$è����H‹„$�
��Hƒø�„·��H‹P8H‹H@H‹hHH‰¬$ ��H‰”$��H‹l$@H‰Œ$��H9̓~��H*¶+@ˆl$7H‰$Hƒ$è����H‹œ$�
��H‹KH‹C H‹k(H‰¬$ð��H‰Œ$à��H‹l$@H‰„$è��H9Ń#��HéH‰$è����H‹œ$Ø���H‰$H‹œ$���H‰\$H‹œ$�
��Hƒû�„ä���H‹KH‹C H‹k(H‰¬$ð��H‰Œ$à��H‹l$@H‰„$è��H9Ń«���HéH‹+H‰l$¶\$7ˆ\$è����H‹„$ ���H‹L$PHƒÀHÿÁH‰L$PH‹l$HH9éŒ þÿÿH‹œ$Ø���H‰$ÆD$;è����H‹œ$Ø���H‰$è����H‹œ$Ø���H‰$Hƒ$è����H‹œ$Ø���H‹kH‰¬$
��H‹kH‰¬$
��è����HÄè ��Ãè���� ‰éÿÿÿè���� è���� ‰�éBþÿÿè���� ‰é.ýÿÿLCL‰$H‰l$è����éãüÿÿH‹Œ$ð ��H‹„$ø ��H‰Œ$ ��H‰„$(��HÇD$8���HDŽ$Ð�������H����H‰$H‰Œ$0��H‰L$H‰„$8��H‰D$Hœ$Ð���H‰\$è����H‹D$8¶\$ H‹”$Ð���€û�„ð���H‰”$˜���H‰$Hƒ$è����H‹”$˜���H‹D$8H‹ZH9ÃŒÀ���H‰ÐH‰„$¨���H‹����H‰„$À���1íH9èteH‹œ$Ø���H‰$è����H‹Œ$¨���H‹„$À���H‹œ$Ø���H‰„$��H‰H‰Œ$˜��€=�����u H‰Ké½ûÿÿLCL‰$H‰L$è����é¦ûÿÿH����H‰$H����H‰\$H����H‰\$è����H‹\$H‰œ$À���éaÿÿÿHƒø�HÇÀ���H����H‰$H‰D$H‰D$è����H‹\$H‰œ$��H‹\$ H‰œ$��H‹\$(H‰œ$ ��H����H‰$è����H‹D$H‰„$¨���H‰$HÇD$@���è����H‹„$¨���1íH‰(H‰hH‰hH‰hH‰h H‰h(H‰h0H‰h8H‰$Hƒ$è����H‹œ$¨���H‹¬$��H‰kH‹¬$ ��H‰k H‹¬$��€=�����udH‰kH‹œ$¨���H‰$Hƒ$0è����H‹œ$¨���H‹¬$0��H‰k0H‹¬$8��€=�����uH‰k8H‹„$¨���éþÿÿLC8L‰$H‰l$è����ëßLCL‰$H‰l$è����댉é´øÿÿè���� ‰é,øÿÿè���� H‹œ$Ø���H‰$Hƒ$ Hƒ$Pè����H‹„$Ø���H‹hpHƒý�„ ùÿÿH‰$Hƒ$ Hƒ$Pè����H����H‰$H‹´$Ø���H^pH|$H‹ H‰H‹KH‰OHÇD$����è����¶\$ €û�…³øÿÿH����H‰œ$€��HDŽ$ˆ��,���1ÛH‰œ$���H‰œ$��H����H‰$è����H‹D$H‰„$È���H‰$è����H‹œ$È���H‹¬$ˆ��H‰kH‹¬$€��€=�����…•���H‰+H‹œ$È���H‰œ$È���H‹����1íH9ètEH‹”$È���H‰„$À��H‰”$È��H‰„$���H‰„$
��H‰”$��H‰”$
��è����HÄè ��ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$ëŒH‰$H‰l$è����é[ÿÿÿ‰é/õÿÿ‰éæôÿÿ‰éòÿÿè����éòîÿÿ€
������^
��*runtime.racefuncenter���¤
�� runtime.raceread���Þ��`go.string."gif: must provide at least one image"���¸��.type.errors.errorString���Ê
��"runtime.newobject���ö
��"runtime.racewrite���º�6runtime.writeBarrierEnabled���ü��Bgo.itab.*errors.errorString.error���„
��(runtime.racefuncexit���¢��0type.*errors.errorString���¸��type.error���Ð��Bgo.itab.*errors.errorString.error���ä
�� runtime.typ2Itab���Ž
��.runtime.writebarrierptr���ª
�� runtime.raceread���è
�� runtime.raceread���ª��fgo.string."gif: mismatched image and delay lengths"���„��.type.errors.errorString���–
��"runtime.newobject���Â
��"runtime.racewrite���† �6runtime.writeBarrierEnabled���È ��Bgo.itab.*errors.errorString.error���Ð

��(runtime.racefuncexit���î
��0type.*errors.errorString���„ ��type.error���œ ��Bgo.itab.*errors.errorString.error���° 
�� runtime.typ2Itab���Ú 
��.runtime.writebarrierptr���€ 
�� runtime.raceread���À 
��"runtime.racewrite���î ��type."".encoder���€ 
��"runtime.newobject���ö 
��*runtime.racereadrange���º
Ü� runtime.duffcopy���î
��,runtime.racewriterange���°��type."".encoder���Â
��(runtime.typedmemmove���ø
�� runtime.raceread����� runtime.raceread���ˆ
�� runtime.raceread���Ê��lgo.string."gif: mismatched image and disposal lengths"���¤��.type.errors.errorString���¶
��"runtime.newobject���â
��"runtime.racewrite���¦�6runtime.writeBarrierEnabled���è��Bgo.itab.*errors.errorString.error���ð
��(runtime.racefuncexit���Ž��0type.*errors.errorString���¤��type.error���¼��Bgo.itab.*errors.errorString.error���Ð
�� runtime.typ2Itab���ú
��.runtime.writebarrierptr���š
�� runtime.raceread���Ž
�� runtime.raceread���Â
��runtime.ifaceeq���Š
�� runtime.raceread���¶
�� runtime.raceread���”
�� runtime.raceread����� runtime.raceread���¤
�� runtime.raceread��� 
�� runtime.raceread���”
��*runtime.racereadrange���ô 
��"runtime.racewrite���Ì!
��"runtime.racewrite���¦"��type."".writer���†#
��$runtime.assertI2I2���ˆ$
��"runtime.racewrite���Ê$�6runtime.writeBarrierEnabled���‚%
��2"".(*encoder).writeHeader���¤%
�� runtime.raceread���ê&
�� runtime.raceread���Ú'
�� runtime.raceread���¢(
�� runtime.raceread���°)
�� runtime.raceread���ì*
�� runtime.raceread���ú+
�� runtime.raceread���è-
��:"".(*encoder).writeImageBlock���â.
��."".(*encoder).writeByte���„/
��&"".(*encoder).flush���°/
�� runtime.raceread���ú/
��(runtime.racefuncexit���”0
��$runtime.panicindex���°0
��$runtime.panicindex���¾0
��$runtime.panicindex���Ú0
��$runtime.panicindex���1
��.runtime.writebarrierptr���’2��$type.*bufio.Writer���ò2
��$runtime.assertI2T2���Ô3
�� runtime.raceread���¬4��>go.itab.*bufio.Writer."".writer���ì4
��"runtime.racewrite���Î5�6runtime.writeBarrierEnabled���Š6
��.runtime.writebarrierptr���¢6��$type.*bufio.Writer���¸6��type."".writer���Ð6��>go.itab.*bufio.Writer."".writer���ä6
�� runtime.typ2Itab���°7��type.[]uint8���Ö7
��"runtime.makeslice���²8��"type.bufio.Writer���Ä8
��"runtime.newobject���‚9
��,runtime.racewriterange���ð9
��"runtime.racewrite���Ì:�6runtime.writeBarrierEnabled���†;
��"runtime.racewrite���Ê;�6runtime.writeBarrierEnabled���–<
��.runtime.writebarrierptr���¾<
��.runtime.writebarrierptr���Ú<
��$runtime.panicindex���ö<
��$runtime.panicindex���°=
�� runtime.raceread���‚>
�� runtime.raceread���>��0type.image/color.Palette���ò>
��$runtime.assertI2T2���œ?��pgo.string."gif: GIF color model must be a color.Palette"���ö?��.type.errors.errorString���ˆ@
��"runtime.newobject���´@
��"runtime.racewrite���ø@�6runtime.writeBarrierEnabled���ºA��Bgo.itab.*errors.errorString.error���ÂB
��(runtime.racefuncexit���àB��0type.*errors.errorString���öB��type.error���ŽC��Bgo.itab.*errors.errorString.error���¢C
�� runtime.typ2Itab���ÌC
��.runtime.writebarrierptr���ŠD
��0runtime.morestack_noctxt���PÐ'��~"".autotmp_0396�%*type.**image.Paletted�"".autotmp_0395��type.int�"".autotmp_0394��type.int�"".autotmp_0393��type.*uint8�"".autotmp_0392��$type.*bufio.Writer�"".autotmp_0391�ÿ$$type.*bufio.Writer�"".autotmp_0390��$type.*bufio.Writer�"".autotmp_0389��type.*uint8�"".autotmp_0388��type.error�"".autotmp_0387��0type.*errors.errorString�"".autotmp_0386�!,type.image/color.Model�"".autotmp_0385�ï ,type.image/color.Model�"".autotmp_0384�ï$$type.*image.Config�"".autotmp_0383�ß$$type.*image.Config�"".autotmp_0382��type.*uint8�"".autotmp_0381��type.error�"".autotmp_0380��0type.*errors.errorString�"".autotmp_0379��type.*uint8�"".autotmp_0378��type.error�"".autotmp_0377��0type.*errors.errorString�"".autotmp_0376�Ï$type.*uint8�"".autotmp_0375�Ï type.error�"".autotmp_0374�¿$0type.*errors.errorString�"".autotmp_0373��,type.[]*image.Paletted�"".autotmp_0372��$type.*bufio.Writer�"".autotmp_0371�¯type.[]uint8�"".autotmp_0370��type.int�"".autotmp_0369�¯$$type.*bufio.Writer�"".autotmp_0368�¯ type."".writer�"".autotmp_0367��0type.*errors.errorString�"".autotmp_0366�ÿ"type.image.Config�"".autotmp_0365��0type.*errors.errorString�"".autotmp_0364��type.int�"".autotmp_0363��type.int�"".autotmp_0362�¿type."".encoder�"".autotmp_0361��0type.*errors.errorString�"".autotmp_0360�¿&type.int�"".autotmp_0359��type.int�"".autotmp_0358��0type.*errors.errorString�"".autotmp_0357�¯&type.int�
"".&e�Ÿ$ type.*"".encoder�bufio.b·4�Ÿ%$type.*bufio.Writer�bufio.size·3�ß&type.int�bufio.w·2�ï"type.io.Writer�bufio.w·2�#type.io.Writer� "".~r0�ÿ%(type.image.Rectangle�image.p·2�¿%(type.*image.Paletted� "".~r0�Ï#type.error�errors.text·2�Ï!type.string� "".~r0�$type.error�errors.text·2�"type.string� "".~r0�ï#type.error�errors.text·2�¯"type.string� "".~r0�¯#type.error�errors.text·2�ï!type.string�"".disposal�á&type.uint8�
"".pm�¯%(type.*image.Paletted�"".i�Ï&type.int�
"".ww�Ï"type."".writer�"".p�Ÿ& type.image.Point� "".~r2�0type.error�"".g� type.*"".GIF�"".w��type.io.Writer�R"Ð'«Ï'Ð'åÏ'Ð'Ï'Ð'Ä Ï'Ð'£ Ï'Ð'c�"�ðÈ"ZY'ÕVUJBÕNMJ ±}Õ87Jÿ™4,y=
‘,¥Ì 'C 
¡—1YÕ('J   �ä�.v‡0#v
‡0({fº‡ 0e:Z±¸
p ‰A=t$8‡=#L >q1L O!- 97‚H-+¬ ‡0@�Tgclocals·00fa23bc08429312d6db34b48a436a57�Tgclocals·edb7136f268c5e62a59674e9490e6c3e���>/tmp/go/src/image/gif/writer.goþ"".Encode�� <�� <dH‹ %����H„$¨üÿÿH;A†ë��HìØ��H‹œ$Ø��H‰$è����1ÛH‰œ$��H‰œ$��H‹œ$ø��H‰$H‹œ$ð��H‹[(ÿÓL‹„$���H‹|$H‹t$H‹\$H‹L$ H‰¼$¸��H‰´$À��H‰´$ ��H‰œ$È��H‰Œ$Ð��H‰Œ$0��H‰ÚH‰œ$(��H‰¼$��H)ûHû��� ��H‰¼$X��H‰”$h��H‰ËH‰Œ$p��H‰´$`��H)óHû���á ��1ÉH‰Œ$8��H‰Œ$@��H‰Œ$H��H‰ÈH‰Œ$P��H‰Œ$X��1íI9ètOL‰$HÇD$(���è����H‹œ$���Hƒû�„‚ ��H‹H‹kH‰¬$@��H‹kH‰¬$H��H‹KH‹k H‰¬$X��HƒøŒ< ��H‰„$8��H=���( ��H‰Œ$P��Hƒù�u.H����H‰$è����H‹����H‰œ$P��H‹����H‰œ$X��HDŽ$8������H����H‰$H‹œ$ð��H‰\$H‹œ$ø��H‰\$Hœ$8��H‰\$è����¶\$ H‹Œ$8��€û�„`��H‰Œ$ø��H‰ $Hƒ$@è����H‹œ$ø��H‹kHH‹œ$8��H9ëŒ-��1ÛH‰œ$ˆ���H‰œ$���H‹„$ø��Hƒø�„��HƒÀ Hœ$ˆ���H‰œ$��H‰„$��H‰$è����H‹œ$��H‰$è����H‹„$��H‹L‹„$��I‹(H9ë…Ï��H‰$Hƒ$è����H‹œ$��H‰$Hƒ$è����H‹¬$��H‹]L‹„$��I‹hH9ë…Š��H‹Œ$¸��H‹œ$À��H‰œ$€��H‹„$È��H‹œ$Ð��H‰œ$��H‰ÃH‰„$ˆ��H‰Œ$x��H)ËH‰\$XH‹œ$¸��H‰œ$˜��H‹Œ$À��H‹œ$È��H‰œ$¨��H‹œ$Ð��H‰œ$°��H‰Œ$ ��H)ËH‰\$`H¼$`��1ÀHƒÇøè����Hœ$`��H‰œ$��H‰$HÇD$x���è����H‹¼$��Hƒÿ�„©��1ÀHƒÇøè����H����H‰$è����H‹D$Hƒø�„x��HDŽ$ø�����HDŽ$������H‰„$ð��H‰$è����H‹œ$ð��H‹¬$ø��€=�����…��H‰+H‹œ$��H‰$è����H‹œ$��H‹¬$ð��H‰+H‹¬$ø��H‰kH‹¬$���H‰kH����H‰$è����H‹D$H‰„$���H‰$HÇD$���è����H‹„$���H‹-����H‰(HDŽ$à�����HDŽ$è�����H‰„$Ø��H‹œ$��H‰$Hƒ$è����H‹„$��H‹¬$Ø��H‰hH‹¬$à��H‰h H‹¬$è��H‰h(H‰$Hƒ$Pè����H����H‰$H����H‰\$H����H‰\$H‹œ$ø��H‰\$Hƒ|$�„ç���HƒD$@HÇD$ ����è����H‹„$��H\$(Hƒø�„µ���HhPH‹ H‰M�H‹KH‰MH‰$Hƒ$PHƒ$è����H‹„$��H‹l$XH‰h`H‰$Hƒ$PHƒ$è����H‹„$��H‹l$`H‰hhH‹œ$à��H‰$H‹œ$è��H‰\$H‰D$è����H‹D$H‹L$ H‰„$˜��H‰„$��H‰Œ$ ��H‰Œ$��è����HÄØ��É�éDÿÿÿ‰%����é ÿÿÿH‰$H‰l$è����éÑýÿÿ‰�éýÿÿ‰éPýÿÿH����H‰$è����H‹D$H‰„$@��H‰$HÇD$X���è����H‹œ$ø��H‰$HÇD$X���è����H‹œ$ø��Hƒû�„|��H‹¬$@��H‰l$H‰\$H����H‰$è����H‹œ$@��H‰$Hƒ$ HÇD$ ���è����H‹„$@��H‹h H‰¬$ø���H‹h(H‰¬$���H‹h0H‰¬$��H‹h8H‰¬$��H‰$Hƒ$ HÇD$���è����H‹”$@��H‹J H‹B(1Û1ÛH‹¼$ø���H‹´$���H‹œ$��H)ÏH)ÆH‰L$xH)ËH‰ÙH‹œ$��H‰„$€���H)ÃH‰¼$Ø��H‰¼$˜���H‰´$à��H‰´$ ���H‰Œ$è��H‰Œ$¨���H‰œ$ð��H‰œ$°���H‰$Hƒ$ HÇD$ ���è����H‹„$@��H‹¬$˜���H‰h H‹¬$ ���H‰h(H‹¬$¨���H‰h0H‹¬$°���H‰h8H‰„$ø��éŸúÿÿ‰é}þÿÿ‰�é÷ùÿÿH‹œ$8��H‰\$pH����H‰$è����H‹\$pH‹-����H9ë‡ú��L‹����H‹¼$¸��H‹´$À��H‹”$È��H‹„$Ð��L‰„$��L‰„$¨��H‰œ$��H‰œ$°��H‰¬$��H‰¬$¸��H‰´$@��H‰„$P��H‰ÑH‰”$H��H‰¼$8��H)ùH‰¼$Ø���H‰¼$¸���H‰´$à���H‰”$è���H‰”$È���H‰„$ð���H‰„$Ð���H‰´$À���H)ð1ÛH‰œ$À��H‰œ$È��H‰œ$Ð��H‰ËH‰L$hH¯ØH‰ØH����H‰$H‰D$H‰D$è����H‹T$H‹L$ H‹D$(H‰”$À��H‰Œ$È��H‰„$Ð��H����H‰$è����H‹D$H‰„$ ��H‰$è����H‹œ$ ��H‹¬$È��H‰kH‹¬$Ð��H‰kH‹¬$À��€=�����…b��H‰+H‹œ$ ��H‰$Hƒ$è����H‹„$ ��H‹l$hH‰hH‰$Hƒ$ HÇD$ ���è����H‹„$ ��H‹¬$Ø���H‰h H‹¬$à���H‰h(H‹¬$è���H‰h0H‹¬$ð���H‰h8H‰$Hƒ$@è����H‹œ$ ��H‹¬$°��H‰kHH‹¬$¸��H‰kPH‹¬$¨��€=�����…��H‰k@H‹œ$ ��H‰œ$ø��H‹œ$@��Hƒû�„��H����H‰$HÇD$����H‹œ$8��H‰\$è����H‹t$H‹l$ H‹T$(H‹Œ$@��H‹„$H��H‰´$��H‰t$H‰¬$��H‰l$H‰”$��H‰T$H‹œ$ð��H‰\$ H‹œ$ø��H‰\$(H‰„$��H‰$H‰Œ$ˆ��H‹Y ÿÓH‹\$0H‰œ$ ��H‹\$8H‰œ$(��H‹\$@H‰œ$0��H‹œ$ø��H‰$Hƒ$@è����H‹œ$ø��H‹¬$(��H‰kHH‹¬$0��H‰kPH‹¬$ ��€=�����…@��H‰k@H‹œ$ø��H‰œ$ ��H‹����H‰„$(��1íH9è„Ø���H����H‰$HÇD$���è����H‹¬$P��H‹”$X��H‹Œ$ ��H‹„$(��H‰„$h��H‰D$H‰Œ$p��H‰L$H‹œ$¸��H‰\$H‹œ$À��H‰\$ H‹œ$È��H‰\$(H‹œ$Ð��H‰\$0H‹œ$ð��H‰\$8H‹œ$ø��H‰\$@H‹����H‰\$HH‹����H‰\$PH‰”$€��H‰$H‰¬$x��H‹] ÿÓé"õÿÿH����H‰$H����H‰\$H����H‰\$è����H‹\$H‰œ$(��éîþÿÿLC@L‰$H‰l$è����é­þÿÿLC@L‰$H‰l$è����é^ýÿÿH‰$H‰l$è����éŽüÿÿè���� HDŽ$8�����éÇóÿÿ‰éwóÿÿH����H‰œ$X��HDŽ$`��!���1ÛH‰œ$H��H‰œ$P��H����H‰$è����H‹D$H‰„$0��H‰$è����H‹œ$0��H‹¬$`��H‰kH‹¬$X��€=�����…•���H‰+H‹œ$0��H‰œ$0��H‹����1íH9ètEH‹Œ$0��H‰„$˜��H‰Œ$ ��H‰„$H��H‰„$��H‰Œ$P��H‰Œ$��è����HÄØ��ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$ëŒH‰$H‰l$è����é[ÿÿÿè����éððÿÿº
������^
��*runtime.racefuncenter���º�������†
��*runtime.racereadrange���æ��2image/draw.FloydSteinberg���ø
�� runtime.raceread���†��2image/draw.FloydSteinberg���¤�2image/draw.FloydSteinberg���Ú��(type.*image.Paletted���º
��$runtime.assertI2T2���’ 
�� runtime.raceread���Þ

�� runtime.raceread���€ 
�� runtime.raceread���Ú 
�� runtime.raceread���† 
�� runtime.raceread���”
®� runtime.duffzero���Ø
��,runtime.racewriterange���’
®� runtime.duffzero��� ��.type.[1]*image.Paletted���²
��"runtime.newobject���¢
��"runtime.racewrite���Î�6runtime.writeBarrierEnabled���„
��"runtime.racewrite���è��type.[1]int���ú
��"runtime.newobject���¸
��,runtime.racewriterange���Ö��""".statictmp_0446���È
��"runtime.racewrite���¼
��"runtime.racewrite���Ê��0type.image/color.Palette���à��,type.image/color.Model���ø��Zgo.itab.image/color.Palette.image/color.Model���Ü
��runtime.convT2I���Ö
��"runtime.racewrite���ž
��"runtime.racewrite���†
��"".EncodeAll���ä
��(runtime.racefuncexit���¶
��.runtime.writebarrierptr���ê��&type.image.Paletted���ü
��"runtime.newobject���º
��,runtime.racewriterange���î
��*runtime.racereadrange���Ä��&type.image.Paletted���Ö
��(runtime.typedmemmove���”
��*runtime.racereadrange���²
��*runtime.racereadrange���€!
��,runtime.racewriterange���Î"��2image/color/palette.Plan9���à"
�� runtime.raceread���ø" �2image/color/palette.Plan9���˜#��2image/color/palette.Plan9���ê&��type.[]uint8���'
��"runtime.makeslice���ì'��&type.image.Paletted���þ'
��"runtime.newobject���ª(
��"runtime.racewrite���†)�6runtime.writeBarrierEnabled���Æ)
��"runtime.racewrite���–*
��,runtime.racewriterange���¢+
��"runtime.racewrite���þ+�6runtime.writeBarrierEnabled���æ,��0type.image/color.Palette���¤-
��"runtime.makeslice���œ/�������’0
��"runtime.racewrite���î0�6runtime.writeBarrierEnabled���²1��Pgo.itab.*image.Paletted.image/draw.Image���æ1��image.ZP���Š2
��*runtime.racereadrange���¨4��image.ZP���À4�image.ZP���‚5�������–5��(type.*image.Paletted���¬5��*type.image/draw.Image���Ä5��Pgo.itab.*image.Paletted.image/draw.Image���Ø5
�� runtime.typ2Itab��� 6
��.runtime.writebarrierptr���Î6
��.runtime.writebarrierptr���ô6
��.runtime.writebarrierptr���ˆ7
��$runtime.panicslice���Ê7��Zgo.string."gif: image is too large to encode"���¤8��.type.errors.errorString���¶8
��"runtime.newobject���â8
��"runtime.racewrite���¦9�6runtime.writeBarrierEnabled���è9��Bgo.itab.*errors.errorString.error���ð:
��(runtime.racefuncexit���Ž;��0type.*errors.errorString���¤;��type.error���¼;��Bgo.itab.*errors.errorString.error���Ð;
�� runtime.typ2Itab���ú;
��.runtime.writebarrierptr���Ž<
��0runtime.morestack_noctxt���p°��r"".autotmp_0447�¯type.*[1]int�"".autotmp_0445�ÿtype.[]int�"".autotmp_0443�Ï,type.[]*image.Paletted�"".autotmp_0442�ïtype."".GIF�"".autotmp_0441�Ÿtype.*"".GIF�"".autotmp_0440��type.int�"".autotmp_0439��type.int�"".autotmp_0438��(type.image.Rectangle�"".autotmp_0437�"type.*image.Point�"".autotmp_0436�ÿ"type.*image.Point�"".autotmp_0435��type.*uint8�"".autotmp_0434�ï(type.*image.Paletted�"".autotmp_0433��(type.*image.Paletted�"".autotmp_0432��type.int�"".autotmp_0430��type.int�"".autotmp_0429��type.int�"".autotmp_0428��type.int�"".autotmp_0427�Ÿ0type.image/color.Palette�"".autotmp_0426�ßtype.*uint8�"".autotmp_0425�ÿtype.error�"".autotmp_0424�Ï0type.*errors.errorString�"".autotmp_0423��type.int�"".autotmp_0421��type.error�"".autotmp_0420�Ÿ  type.image.Point�"".autotmp_0419��(type.*image.Paletted�"".autotmp_0418�ï0type.image/color.Palette�"".autotmp_0417��0type.image/color.Palette�"".autotmp_0414�Ï type.int�"".autotmp_0413��type.int�"".autotmp_0412�¿(type.*image.Paletted�"".autotmp_0411��0type.*errors.errorString�"".autotmp_0410�ÿ(type.image.Rectangle�"".&dup�¯(type.*image.Paletted� "".~r0�ï type.int�image.r·2�ÿ(type.image.Rectangle� "".~r0�ÿ type.int�image.r·2�¿ (type.image.Rectangle� "".~r0�ÿ (type.image.Rectangle�image.p·3�¿  type.image.Point�image.r·2�¿ (type.image.Rectangle�image.r·2�¿ (type.image.Rectangle�image.r·2�¿
(type.image.Rectangle�image.pix·6�¯type.[]uint8�image.w·4�ß type.int�image.p·3�ß0type.image/color.Palette�image.r·2�ÿ (type.image.Rectangle� "".~r0�Ÿtype.error�errors.text·2�ÿtype.string�image.r·2�ÿ (type.image.Rectangle�image.r·2�ÿ
(type.image.Rectangle�
"".pm�¿(type.*image.Paletted�"".opts�¿type."".Options�"".b�¿(type.image.Rectangle� "".~r3�Ptype.error�"".o�@ type.*"".Options�"".m�  type.image.Image�"".w��type.io.Writer�("°Û ¯°Å¯°L��öªE6†-O.P<¾KHR h  +a
 $
z  MYZ   }͇–ý  :1   ÕJ
�¨�.a,f½elH:P•/) # N…˜7Nï· |½*$ 

W.‡0)�Tgclocals·fff17d160b6635d6f93e2479b5cf023b�Tgclocals·d9067249b47371d25db7183ce016ea3b���>/tmp/go/src/image/gif/writer.goþ"".init��  ��ž dH‹ %����H;a†2��Hƒì0H‹\$0H‰$è����H����H‰$è����¶����€û�t-H����H‰$è����¶����€ûu
è����HƒÄ0Ãè���� H����H‰$è����Æ����è����è����è����è����è����è����è����è����è����H����H‰$HÇD$���è����H‹\$H‰\$ H‹\$H‰\$(H����H‰$è����H‹\$ H‰����H‹\$(€=�����…��H‰����H����H‰$HÇD$���è����H‹\$H‰\$ H‹\$H‰\$(H����H‰$è����H‹\$ H‰����H‹\$(€=�����…¢���H‰����H����H‰$HÇD$���è����H‹\$H‰\$ H‹\$H‰\$(H����H‰$è����H‹\$ H‰����H‹\$(€=�����u-H‰����è����H����H‰$è����Æ����è����HƒÄ0ÃH-����H‰,$H‰\$è����ëÃH-����H‰,$H‰\$è����éKÿÿÿH-����H‰,$H‰\$è����éÏþÿÿè����é±ýÿÿn
������B
��*runtime.racefuncenter���P��"".initdone·���b
�� runtime.raceread���p��"".initdone·���ˆ��"".initdone·���š
�� runtime.raceread���¨��"".initdone·���¼
��(runtime.racefuncexit���Ð
��"runtime.throwinit���â��"".initdone·���ô
��"runtime.racewrite���€�"".initdone·���Œ
��bufio.init���–
��"compress/lzw.init��� 
��fmt.init���ª
��image.init���´
�� image/color.init���¾
��io.init���È
��bytes.init���Ò
��0image/color/palette.init���Ü
��image/draw.init���ê��Lgo.string."gif: not enough image data"���Ž
��errors.New���Ä��"".errNotEnough���Ö
��"runtime.racewrite���î��"".errNotEnough���„�6runtime.writeBarrierEnabled��� �"".errNotEnough���®��Hgo.string."gif: too much image data"���Ò
��errors.New���ˆ��"".errTooMuch���š
��"runtime.racewrite���²��"".errTooMuch���È�6runtime.writeBarrierEnabled���ä�"".errTooMuch���ò��Hgo.string."gif: invalid pixel value"���–
��errors.New���Ì��"".errBadPixel���Þ
��"runtime.racewrite���ö��"".errBadPixel���Œ�6runtime.writeBarrierEnabled��� �"".errBadPixel���ª
��"".init.1���¸��"".initdone·���Ê
��"runtime.racewrite���Ö�"".initdone·���â
��(runtime.racefuncexit���ú�"".errBadPixel���–
��.runtime.writebarrierptr���¨�"".errTooMuch���Ä
��.runtime.writebarrierptr���Ü�"".errNotEnough���ø
��.runtime.writebarrierptr���Œ 
��0runtime.morestack_noctxt����`��"".autotmp_0456��type.error�"".autotmp_0455��type.error�"".autotmp_0454�type.error�`O_`’_`V�"²¢&4 �B†²Ùbb^Ö&ÕÖ×Ø �$� Ê>$>$&|�Tgclocals·69c1753bd5f81501d95132d08af04464�Tgclocals·21a8f585a14d020f181242c5256583dc���>/tmp/go/src/image/gif/writer.go>/tmp/go/src/image/gif/reader.goþ"".reader.Read� ��†dH‹ %����H;a†¦���HƒìHH‹Y H…Ût H|$PH9;uH‰#H‹\$HH‰$è����1Û1ÛH‰œ$€���H‰œ$ˆ���H‹\$`H‰\$H‹\$hH‰\$H‹\$pH‰\$H‹\$XH‰$H‹\$PH‹[ ÿÓH‹D$ H‹T$(H‹L$0H‰D$xH‰T$8H‰”$€���H‰L$@H‰Œ$ˆ���è����HƒÄHÃè����é=ÿÿÿ
������n
��*runtime.racefuncenter���þ�������à
��(runtime.racefuncexit���ô
��0runtime.morestack_noctxt���€��
"".autotmp_0458�type.error� io.err�`type.error�io.n�Ptype.int�io.p� type.[]uint8�""..this��type."".reader�¡�Ð�Ð��6y!�Tgclocals·d2fd9951e910becfd07ba7f8ff7b525a�Tgclocals·c55cf99de9cdd8c8202a466952fa1a45���<autogenerated>þ$"".reader.ReadByte�À��¨dH‹ %����H;av{Hƒì0H‹Y H…Ût H|$8H9;uH‰#H‹\$0H‰$è����1Û1ÛH‰\$PH‰\$XH‹\$@H‰$H‹\$8H‹[(ÿÓ¶\$H‹T$H‹L$ˆ\$HH‰T$ H‰T$PH‰L$(H‰L$Xè����HƒÄ0Ãè����élÿÿÿ
������f
��*runtime.racefuncenter���®�������‚
��(runtime.racefuncexit���–
��0runtime.morestack_noctxt���P`��"".autotmp_0462�type.error� io.err�0type.error�io.c� type.uint8�""..this��type."".reader�`v_`� � ��2N �Tgclocals·e4b5616e5783a0b08ed3851f8c75ffed�Tgclocals·c55cf99de9cdd8c8202a466952fa1a45���<autogenerated>þ4type..hash.[1]interface {}�€��údH‹ %����H;a† ���Hƒì(H‹\$(H‰$è����H‹T$81ÀHÇD$���H‹l$H9è}\H‰D$ H‰ÅH‰ÐHÁÀH»¿c»kïR�H¯ØH‰ØH‹\$0Hƒû�tEHÁåHëH‰$H‰D$8H‰D$è����H‹T$H‹D$ HÿÀH‹l$H9è|¤H‰T$8H‰T$@è����HƒÄ(Éë·è����éCÿÿÿ
������B
��*runtime.racefuncenter���€
��(runtime.nilinterhash���Ì
��(runtime.racefuncexit���è
��0runtime.morestack_noctxt���0P��
"".autotmp_0467�type.int�"".autotmp_0466�type.int� "".~r2� type.uintptr�"".h�type.uintptr�"".p��*type.*[1]interface {}�P—OP�À�À� �  �Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���>/tmp/go/src/image/gif/reader.goþ0type..eq.[1]interface {}� ��˜dH‹ %����H;a†/��Hƒì`H‹\$`H‰$è����1ÀHÇD$0���H‹l$0H9èØ���H‰D$8H‹\$pH‰ÅH‰D$(HÁåHëH‰$è����H‹D$(H‹\$pHƒû�„Ç���H‰ÅHÁåHëH‹+H‰l$PH‹kH‰l$XH‹\$hH‰ÅHÁåHëH‰$è����H‹T$PH‹\$hHƒû�t}H‹l$(HÁåHëH‹H‹KH‰L$HH‰D$@H9ÐuLH‰$H‰L$H‰T$H‹l$XH‰l$è����¶\$ €û�t%H‹D$8HÿÀH‹l$0H9èŒ(ÿÿÿÆD$xè����HƒÄ`ÃÆD$x�è����HƒÄ`Éé|ÿÿÿ‰é2ÿÿÿè����é´þÿÿ
������B
��*runtime.racefuncenter���¸
�� runtime.raceread���Æ
�� runtime.raceread���ä
��runtime.efaceeq���¸
��(runtime.racefuncexit���Ö
��(runtime.racefuncexit���†
��0runtime.morestack_noctxt���0À��"".autotmp_0471�?"type.interface {}�"".autotmp_0470�"type.interface {}�"".autotmp_0469�_type.int�"".autotmp_0468�Otype.int�"".i�otype.int� "".~r2� type.bool�"".q�*type.*[1]interface {}�"".p��*type.*[1]interface {}�&À¿À¿À�Ð�Ð�� ‚O_�Tgclocals·51af24152615272c3d9efc8538f95767�Tgclocals·2c78d3ad9d760b5f66e2e47be684c787���>/tmp/go/src/image/gif/reader.goþ"".writer.Flush� ��’dH‹ %����H;avpHƒì(H‹Y H…Ût H|$0H9;uH‰#H‹\$(H‰$è����1ÛH‰\$@H‰\$HH‹\$8H‰$H‹\$0H‹[ ÿÓH‹L$H‹D$H‰L$H‰L$@H‰D$ H‰D$Hè����HƒÄ(Ãè����éwÿÿÿ
������f
��*runtime.racefuncenter���ª�������ì
��(runtime.racefuncexit���€
��0runtime.morestack_noctxt���@P��"".autotmp_0472�type.error� "".~r0� type.error�""..this��type."".writer�PkOP����2C�Tgclocals·19b49d53e9c11805652fa4c0885cbb29�Tgclocals·c55cf99de9cdd8c8202a466952fa1a45���<autogenerated>þ"".writer.Write� ��†dH‹ %����H;a†¦���HƒìHH‹Y H…Ût H|$PH9;uH‰#H‹\$HH‰$è����1Û1ÛH‰œ$€���H‰œ$ˆ���H‹\$`H‰\$H‹\$hH‰\$H‹\$pH‰\$H‹\$XH‰$H‹\$PH‹[(ÿÓH‹D$ H‹T$(H‹L$0H‰D$xH‰T$8H‰”$€���H‰L$@H‰Œ$ˆ���è����HƒÄHÃè����é=ÿÿÿ
������n
��*runtime.racefuncenter���þ�������à
��(runtime.racefuncexit���ô
��0runtime.morestack_noctxt���€��
"".autotmp_0474�type.error� io.err�`type.error�io.n�Ptype.int�io.p� type.[]uint8�""..this��type."".writer�¡�Ð�
Ð��6y!�Tgclocals·d2fd9951e910becfd07ba7f8ff7b525a�Tgclocals·c55cf99de9cdd8c8202a466952fa1a45���<autogenerated>þ&"".writer.WriteByte�À��¤dH‹ %����H;avyHƒì0H‹Y H…Ût H|$8H9;uH‰#H‹\$0H‰$è����1ÛH‰\$PH‰\$X¶\$Hˆ\$H‹\$@H‰$H‹\$8H‹[0ÿÓH‹L$H‹D$H‰L$ H‰L$PH‰D$(H‰D$Xè����HƒÄ0Ãè����énÿÿÿ
������f
��*runtime.racefuncenter���¼�������þ
��(runtime.racefuncexit���’
��0runtime.morestack_noctxt���P`��"".autotmp_0477�type.error� "".~r2�0type.error�io.c� type.uint8�""..this��type."".writer�`t_`� �  ��2L"�Tgclocals·e4b5616e5783a0b08ed3851f8c75ffed�Tgclocals·c55cf99de9cdd8c8202a466952fa1a45���<autogenerated>þ."".(*blockWriter).Write�À��ÀdH‹ %����H;a†��HƒìHH‹Y H…Ût H|$PH9;uH‰#H‹\$HH‰$è����1ÛH‰\$xH‰œ$€���H‹\$P1íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$ ���H����H‰\$ HÇD$(���è���� H‹\$PH‰$HÇD$���è����H‹t$PH‹H‰ $H‹\$XH‰\$H‹\$`H‰\$H‹\$hH‰\$è����H‹D$ H‹T$(H‹L$0H‰D$pH‰T$8H‰T$xH‰L$@H‰Œ$€���è����HƒÄHÃè����éàþÿÿ
������n
��*runtime.racefuncenter���²��go.string."gif"���Ú��.go.string."blockWriter"���„��"go.string."Write"���ª
��"runtime.panicwrap���Ü
��*runtime.racereadrange���º
��("".blockWriter.Write���š
��(runtime.racefuncexit���®
��0runtime.morestack_noctxt���p��
"".autotmp_0479�type.error� "".~r2�Ptype.error� "".~r1�@type.int�"".data�type.[]uint8�""..this��(type.*"".blockWriter�þ
� � ��6Ö�Tgclocals·8cf14f50ac1bf7ae2848fda35f0590ec�Tgclocals·c55cf99de9cdd8c8202a466952fa1a45���<autogenerated>þ*type..hash."".Options�à��ÈdH‹ %����H;a†Ç���Hƒì H‹\$ H‰$è����H‹\$(H‰$Hƒ<$�„•���H‹\$0H‰\$HÇD$���è����H‹D$H‹\$(H‰$Hƒ<$�t_Hƒ$H‰D$0H‰D$è����H‹D$H‹\$(H‰$Hƒ<$�t-Hƒ$H‰D$0H‰D$è����H‹D$H‰D$0H‰D$8è����HƒÄ É%����ëʉ%����똉%����é_ÿÿÿè����éÿÿÿ
������B
��*runtime.racefuncenter���š
��runtime.memhash���ì
��"runtime.interhash���¾
��"runtime.interhash���æ
��(runtime.racefuncexit���¶
��0runtime.morestack_noctxt���0@��
"".autotmp_0484��type.uintptr�"".autotmp_0483��type.uintptr� "".~r2� type.uintptr�"".h�type.uintptr�"".p�� type.*"".Options�@¤?@4�ð�ð� � Ð�Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���>/tmp/go/src/image/gif/reader.goþ&type..eq."".Options�€��ædH‹ %����H;a†Ö��HƒìhH‹\$hH‰$è����H‹\$pH‰$è����H‹\$xH‰$è����H‹D$xH‹l$pH‹]�H‹(H9ëtƄ$€����è����HƒÄhÃH‰$Hƒ$è����H‹\$xHƒû�„\��H‹kH‰l$XH‹kH‰l$`H‹\$pH‰$Hƒ$è����H‹T$XH‹\$pHƒû�„��H‹CH‹KH‰L$PH‰D$HH9Ð…ï���H‰$H‰L$H‰T$H‹l$`H‰l$è����¶\$ €û�„Ä���H‹\$xH‰$Hƒ$è����H‹\$xHƒû�„›���H‹kH‰l$8H‹k H‰l$@H‹\$pH‰$Hƒ$è����H‹T$8H‹\$pHƒû�tbH‹CH‹K H‰L$0H‰D$(H9Ðu9H‰$H‰L$H‰T$H‹l$@H‰l$è����¶\$ €û�tƄ$€���è����HƒÄhÃƄ$€����è����HƒÄhÉ뚉é^ÿÿÿƄ$€����è����HƒÄhÉéÝþÿÿ‰éþÿÿè����é þÿÿ
������B
��*runtime.racefuncenter���^
�� runtime.raceread���z
�� runtime.raceread�����(runtime.racefuncexit���æ
�� runtime.raceread���Î
�� runtime.raceread���æ
��runtime.ifaceeq���¨
�� runtime.raceread���
�� runtime.raceread���˜
��runtime.ifaceeq���Æ
��(runtime.racefuncexit���ê
��(runtime.racefuncexit���¤
��(runtime.racefuncexit���Ô
��0runtime.morestack_noctxt���0Ð��"".autotmp_0488�,type.image/draw.Drawer�"".autotmp_0487�_,type.image/draw.Drawer�"".autotmp_0486�?2type.image/draw.Quantizer�"".autotmp_0485�2type.image/draw.Quantizer� "".~r2� type.bool�"".q� type.*"".Options�"".p�� type.*"".Options�>ÐQÏÐÂÏÐÏÐÏÐ%�€�€�� †LUDu�Tgclocals·9c91d8a91ac42440a3d1507bc8d2e808�Tgclocals·e85dd0d10221e69476a0daf9bc0a53b6���>/tmp/go/src/image/gif/reader.goþTgclocals·2de3026f2f1a4e76c4da3271e2c4e98d�0��0�������������� �������þTgclocals·8673e44a15fbaa7367253006e3f68366�0��0���������c����������þ0>go.itab.*bufio.Reader."".reader�����þ0Bgo.itab.*errors.errorString.error�����þ0Tgo.itab.image/color.RGBA.image/color.Color�����þ0Bgo.itab.*"".blockReader.io.Reader�����þFgo.string.hdr."gif: no color table"� �� ������������������>go.string."gif: no color table"���þ>go.string."gif: no color table"�0��(gif: no color table��þtgo.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%.2x��þTgclocals·bcd393509e676e83e48888afa0238fd2�ˆ��ˆ%���S��������������������À������������������������������0����������0�����������0��������� �0��������� ��������™�����������������������€�������������������������0���������0�����������������@����������@������������������������������������€����"�����������2�����������������������À������������ ��������������������À��������‚����������������@�����������@������������������������ �������� �������������������� ����������� �������þTgclocals·0a36944aa36b6ab1001db46d1337945e�¸��¸%���������7���7���7���7���7���7���7���7���7���7���7���7���7���7������������7���7���7���7���7���7���7������7���7���7���7���7���7���7������������7����þ,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 %s��þTgclocals·7e9c1a0358207526648c7a6c5b3be550�X��X ������������������#�����À��ð��À���À����þTgclocals·35a1729b099c0d71fdd08adea73b0542�X��X ����������������������������������þdgo.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"�P��Fgif: short read on color table: %s��þTgclocals·cdd9e31f464a29f54111441026eac2bd�P��P�������������À ��ð ��À���À�����������þTgclocals·6fa66bd28ff106d38cd5e72e1558bac1�P��P���������������������e������e����þZgo.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%.2x��þ6go.string.hdr."NETSCAPE2.0"� �� �������� ����������.go.string."NETSCAPE2.0"���þ.go.string."NETSCAPE2.0"� ��NETSCAPE2.0��þTgclocals·455b2218b4ecd9700a90c3ae801c6535�H��H����������������€�����À��������þTgclocals·9e286b0ce6b91a896378d8ebafa3879c�H��H����������������������������þfgo.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"�P��Hgif: can't read graphic control: %s��þTgclocals·8f800ad3214d4a86dfcc286895fca734�H��H�������������0��<��0���0��������þTgclocals·8db80988d5fec26b916d3152e6310442�H��H����������������������������þhgo.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"�P��Jgif: can't read image descriptor: %s��þtgo.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 bounds��þTgclocals·d708aee26fd07c525342115091d3ff3d�˜��˜��������������À��ð��À���À��<��� ��������$��$�������������������þTgclocals·20371ed4e285e99d2b3700a68882dc55�˜��˜����������������������������������������������������������þTgclocals·8dacdca6a9d3d5c313f9478f38bacba5�(��(��� �������@��������þTgclocals·06be4abc148cc801a93c492b76c8e5c8�(��(������������ ����þTgclocals·6e00bf9a86c700b36097754b8f007201�@��@������������������� ��� ���þTgclocals·6718fa3ce60556785ebaaf7cd5569ede�@��@�������������������������þ0Fgo.itab.*image.Paletted.image.Image�����þTgclocals·3531f87782d37f810e650e7542e5bb1b�0��0���������������������þTgclocals·ea9b4378ddf21a9476f9692715326ef5�0��0������������?�������þ0Zgo.itab.image/color.Palette.image/color.Model�����þTgclocals·b6e1bcbe3bc38d0bc564f298485ff663�0��0���������������������þTgclocals·d261d82a8a39c85fbf1f08752bcb09ee�0��0�������������������þTgclocals·438fde6662dcd8c84e163dac1c04db70�0��0���������������������þTgclocals·1063e9b0825c2f159be1df1d038ae622�0��0������������Ï�������þ&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?a��þTgclocals·d288a648545c6dd73287fed249acfcae�0��0��� �������€��������þTgclocals·f6bd6b3389b872033d462029172c8612�����������þTgclocals·0c8aa8e80191a30eac23f1a218103f16� �� ��������������þTgclocals·c55cf99de9cdd8c8202a466952fa1a45� �� ���������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þTgclocals·27b7aed50b5eb0ea6bf3eed688cd420b�0��0���
�������������� ����þTgclocals·8673e44a15fbaa7367253006e3f68366�0��0���������c����������þTgclocals·2c78d3ad9d760b5f66e2e47be684c787� �� ���������� ����þTgclocals·51fa0e13d53d6bad7f86670d3edaeac6� �� �������������þTgclocals·2c78d3ad9d760b5f66e2e47be684c787� �� ���������� ����þTgclocals·aefd16b155593f6f07980a05b297ad1f� �� �������������þTgclocals·2c78d3ad9d760b5f66e2e47be684c787� �� ���������� ����þTgclocals·32bd5c6dc84e3e86dd35593b3922d3aa� �� �������������þTgclocals·7f58a2053bec7f12637693406995051d�P��P������������������� ����@���������þTgclocals·a9ea41aae9e32efcc8711d8fabe405fb�P��P�������������������������������þTgclocals·23e8278e2b69a3a75fa59b23c49ed6ad��������������þTgclocals·739018a0fedb7c38faa3101fb8dac3ab��������� ����þ0@go.itab."".blockWriter.io.Writer�����þ‚go.string.hdr."gif: cannot encode image block with empty palette"� �� ��������1����������zgo.string."gif: cannot encode image block with empty palette"���þzgo.string."gif: cannot encode image block with empty palette"�p��dgif: cannot encode image block with empty palette��þngo.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"�P��Pgif: image block is too large to encode��þbgo.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"�P��Dgif: image block is out of bounds��þTgclocals·5ea47e4012ef688a16d4de31d0970ec2�ð��ð���5�������������������������������0����������������������������������������������������@�������������������� ���������€�����������������������@������@������À��������þTgclocals·f6296cfde20a742c77302c9ea66f7adc�À��À�������������������������������������������������������������������������þ0>go.itab.*bufio.Writer."".writer�����þhgo.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"�P��Jgif: must provide at least one image��þngo.string.hdr."gif: mismatched image and delay lengths"� �� ��������'����������fgo.string."gif: mismatched image and delay lengths"���þfgo.string."gif: mismatched image and delay lengths"�P��Pgif: mismatched image and delay lengths��þtgo.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 lengths��þxgo.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.Palette��þTgclocals·edb7136f268c5e62a59674e9490e6c3e�Ð��Ð���,��������������������������������������������� �������������������������������������� ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ŸÈ���������������������������������������������������������������������������������������������������������������������������������������������������`����0���������������������������������`��`�0��������������������������������������������������������������������������€��������������������������������������€���������������������������������������������������������������������������€�������������������������������������`�������������������������������������`��������������������������������������`��������������������������������������`������������������������������������`������������������������������������`�������������������������������������������������������������������������������������������������������������������������������������������������������
���������������������������������������þTgclocals·00fa23bc08429312d6db34b48a436a57�ð��ð�������������������������������������������������������������������������������������������þ0Pgo.itab.*image.Paletted.image/draw.Image�����þbgo.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"�P��Dgif: image is too large to encode��þTgclocals·d9067249b47371d25db7183ce016ea3b�À��À���<��������������������������������@������@��� �@��� �@���� ��������� ��!������a������������������������������������� ‘��€� ‘���� ‘��� ‘���� ‘����� ‘����� ‘�������€������€����������������þTgclocals·fff17d160b6635d6f93e2479b5cf023b�è��è����������������������������������������������������������������������������������������þTgo.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 data��þPgo.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 data��þPgo.string.hdr."gif: invalid pixel value"� �� ������������������Hgo.string."gif: invalid pixel value"���þHgo.string."gif: invalid pixel value"�@��2gif: invalid pixel value��þTgclocals·21a8f585a14d020f181242c5256583dc� �� ��������������þTgclocals·69c1753bd5f81501d95132d08af04464�����������þ."".errNotEnough�� type.error���þ."".errTooMuch�� type.error���þ."".errBadPixel�� type.error���þ."".interlacing��0.type.[]"".interlaceScan�0�������������������������""".statictmp_0453���þ0"".log2Lookup��€type.[8]int�€���������������������������� �������@�������€���������������þ""".statictmp_0446��type.[1]int����������þ0""".statictmp_0453��€0type.[4]"".interlaceScan�€����������������������������������������������������������þ0"".initdone·��type.uint8���þ2"".(*blockReader).Read·f��������������,"".(*blockReader).Read���þ."".(*decoder).decode·f��������������("".(*decoder).decode���þ\"".(*decoder).readHeaderAndScreenDescriptor·f��������������V"".(*decoder).readHeaderAndScreenDescriptor���þ>"".(*decoder).readColorTable·f��������������8"".(*decoder).readColorTable���þ<"".(*decoder).readExtension·f��������������6"".(*decoder).readExtension���þF"".(*decoder).readGraphicControl·f��������������@"".(*decoder).readGraphicControl���þN"".(*decoder).newImageFromDescriptor·f��������������H"".(*decoder).newImageFromDescriptor���þ4"".(*decoder).readBlock·f��������������."".(*decoder).readBlock���þ""".uninterlace·f��������������"".uninterlace���þ"".Decode·f��������������"".Decode���þ"".DecodeAll·f��������������"".DecodeAll���þ$"".DecodeConfig·f��������������"".DecodeConfig���þ"".init.1·f��������������"".init.1���þ"".log2·f��������������"".log2���þ""".writeUint16·f��������������"".writeUint16���þ."".blockWriter.Write·f��������������("".blockWriter.Write���þ,"".(*encoder).flush·f��������������&"".(*encoder).flush���þ,"".(*encoder).write·f��������������&"".(*encoder).write���þ4"".(*encoder).writeByte·f��������������."".(*encoder).writeByte���þ8"".(*encoder).writeHeader·f��������������2"".(*encoder).writeHeader���þ,"".encodeColorTable·f��������������&"".encodeColorTable���þ@"".(*encoder).writeImageBlock·f��������������:"".(*encoder).writeImageBlock���þ"".EncodeAll·f��������������"".EncodeAll���þ"".Encode·f��������������"".Encode���þ"".init·f��������������"".init���þTgclocals·c55cf99de9cdd8c8202a466952fa1a45� �� ���������������þTgclocals·d2fd9951e910becfd07ba7f8ff7b525a� �� ���������Ç����þTgclocals·c55cf99de9cdd8c8202a466952fa1a45� �� ���������������þTgclocals·e4b5616e5783a0b08ed3851f8c75ffed� �� �������������þ"runtime.gcbits.01����þ.go.string.hdr."[]uint8"� �� ������������������&go.string."[]uint8"���þ&go.string."[]uint8"���[]uint8��þtype.[]uint8� �� ��������������ß~.8��������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��.go.string.hdr."[]uint8"���p��*go.weak.type.*[]uint8���€��"runtime.zerovalue�����type.uint8���þ6go.typelink.[]uint8 []uint8��������������type.[]uint8���þTgo.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)�°��°��������������„N4P�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Tgo.string.hdr."func([]uint8) (int, error)"���p��Pgo.weak.type.*func([]uint8) (int, error)���€��"runtime.zerovalue��� €�>type.func([]uint8) (int, error)���А�>type.func([]uint8) (int, error)���€��type.[]uint8�����type.int��� ��type.error���þ‚go.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)� �� ��������������TÜ´�3����������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Jgo.string.hdr."func() (uint8, error)"���p��Fgo.weak.type.*func() (uint8, error)���€��"runtime.zerovalue��� €�4type.func() (uint8, error)���Ѐ�4type.func() (uint8, error)���€��type.uint8�����type.error���þngo.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.reader��þtype.*"".reader�� �� ��������������|­n\�6�������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��6go.string.hdr."*gif.reader"���p��0go.weak.type.**"".reader���€��"runtime.zerovalue�����type."".reader���þ"runtime.gcbits.03����þ4go.string.hdr."gif.reader"� �� ��������
����������,go.string."gif.reader"���þ,go.string."gif.reader"� ��gif.reader��þ(go.string.hdr."Read"� �� ������������������ go.string."Read"���þ go.string."Read"���
Read��þ0go.string.hdr."ReadByte"� �� ������������������(go.string."ReadByte"���þ(go.string."ReadByte"� ��ReadByte��þ,go.string.hdr."reader"� �� ������������������$go.string."reader"���þ$go.string."reader"���reader��þ2go.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.03���P��4go.string.hdr."gif.reader"���p��type.*"".reader���€��"runtime.zerovalue���À�type."".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_varlen���þtype..eqfunc256� �� ������������������.runtime.memequal_varlen���þtype..alg256� �� �������������������"type..hashfunc256�����type..eqfunc256���þruntime.gcbits.������þ4go.string.hdr."[256]uint8"� �� ��������
����������,go.string."[256]uint8"���þ,go.string."[256]uint8"� ��[256]uint8��þtype.[256]uint8�À��À���������������ž°ÿ�‘�����������������������������������������������������������������������0��type..alg256���@��runtime.gcbits.���P��4go.string.hdr."[256]uint8"���p��0go.weak.type.*[256]uint8���€��"runtime.zerovalue�����type.uint8��� ��type.[]uint8���þBgo.typelink.[256]uint8 [256]uint8��������������type.[256]uint8���þ"runtime.gcbits.67���g�þ>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"���tmp��þ6go.string.hdr."blockReader"� �� �������� ����������.go.string."blockReader"���þ.go.string."blockReader"� ��blockReader��þ&type."".blockReader��Ð��Ð8������8�������ŽS¼��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������(���������������������������������������8�����������������������������������������������,0à� runtime.algarray���@��"runtime.gcbits.67���P��>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."".blockReader���€��6go.string.hdr."blockReader"�����"go.importpath."".��� Ð�&type."".blockReader���þ@go.string.hdr."*gif.blockReader"� �� ������������������8go.string."*gif.blockReader"���þ8go.string."*gif.blockReader"�0��"*gif.blockReader��þxgo.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)�À��À��������������-@¬Ü�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��xgo.string.hdr."func(*gif.blockReader, []uint8) (int, error)"���p��rgo.weak.type.*func(*"".blockReader, []uint8) (int, error)���€��"runtime.zerovalue��� €�`type.func(*"".blockReader, []uint8) (int, error)���Р�`type.func(*"".blockReader, []uint8) (int, error)���€��(type.*"".blockReader�����type.[]uint8��� ��type.int���°��type.error���þÈgo.typelink.func(*gif.blockReader, []uint8) (int, error) func(*"".blockReader, []uint8) (int, error)��������������`type.func(*"".blockReader, []uint8) (int, error)���þ(type.*"".blockReader��Ð��Ð��������������ú½ý›�6����������������������������������������������������������������������������������������������������������������������������������������������0 � runtime.algarray���@��"runtime.gcbits.01���P��@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���þBgo.string.hdr."[]*image.Paletted"� �� ������������������:go.string."[]*image.Paletted"���þ:go.string."[]*image.Paletted"�0��$[]*image.Paletted��þ,type.[]*image.Paletted� �� ��������������+ó/ ��������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��Bgo.string.hdr."[]*image.Paletted"���p��>go.weak.type.*[]*image.Paletted���€��"runtime.zerovalue�����(type.*image.Paletted���þ^go.typelink.[]*image.Paletted []*image.Paletted��������������,type.[]*image.Paletted���þ*go.string.hdr."[]int"� �� ������������������"go.string."[]int"���þ"go.string."[]int"��� []int��þtype.[]int� �� ��������������Žfù��������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��*go.string.hdr."[]int"���p��&go.weak.type.*[]int���€��"runtime.zerovalue�����type.int���þ.go.typelink.[]int []int��������������type.[]int���þ$type..hashfunc1024� �� ������������������,runtime.memhash_varlen���þ type..eqfunc1024� �� ������������������.runtime.memequal_varlen���þtype..alg1024� �� �������������������$type..hashfunc1024����� type..eqfunc1024���þ6go.string.hdr."[1024]uint8"� �� �������� ����������.go.string."[1024]uint8"���þ.go.string."[1024]uint8"� ��[1024]uint8��þ type.[1024]uint8�À��À����������������QÓj�‘�����������������������������������������������������������������������0��type..alg1024���@��runtime.gcbits.���P��6go.string.hdr."[1024]uint8"���p��2go.weak.type.*[1024]uint8���€��"runtime.zerovalue�����type.uint8��� ��type.[]uint8���þFgo.typelink.[1024]uint8 [1024]uint8�������������� type.[1024]uint8���þ*runtime.gcbits.079204���’�þ6go.string.hdr."gif.decoder"� �� �������� ����������.go.string."gif.decoder"���þ.go.string."gif.decoder"� ��gif.decoder��þ(go.string.hdr."vers"� �� ������������������ go.string."vers"���þ go.string."vers"���
vers��þ*go.string.hdr."width"� �� ������������������"go.string."width"���þ"go.string."width"��� width��þ,go.string.hdr."height"� �� ������������������$go.string."height"���þ$go.string."height"���height��þ2go.string.hdr."loopCount"� �� �������� ����������*go.string."loopCount"���þ*go.string."loopCount"� ��loopCount��þ2go.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"� ��disposalMethod��þ6go.string.hdr."imageFields"� �� �������� ����������.go.string."imageFields"���þ.go.string."imageFields"� ��imageFields��þ@go.string.hdr."transparentIndex"� �� ������������������8go.string."transparentIndex"���þ8go.string."transparentIndex"�0��"transparentIndex��þFgo.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"��� delay��þ0go.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"���decoder��þtype."".decoder�� �� ¨������˜�������Js%y�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ���������������������������������������(���������������������������������������0���������������������������������������8���������������������������������������@���������������������������������������A���������������������������������������B���������������������������������������C���������������������������������������D���������������������������������������H���������������������������������������`���������������������������������������x������������������������������������������������������������������������������¨�����������������������������������������������t0à� runtime.algarray���@��*runtime.gcbits.079204���P��6go.string.hdr."gif.decoder"���p�� type.*"".decoder���€��"runtime.zerovalue���À�type."".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.int���€��2go.string.hdr."loopCount"�����"go.importpath."".��� ��type.int���Ð��2go.string.hdr."delayTime"���à��"go.importpath."".���ð��type.int��� ��>go.string.hdr."backgroundIndex"���°��"go.importpath."".���À��type.uint8���ð��<go.string.hdr."disposalMethod"���€��"go.importpath."".�����type.uint8���À��6go.string.hdr."imageFields"���Ð��"go.importpath."".���à��type.uint8�����@go.string.hdr."transparentIndex"��� ��"go.importpath."".���°��type.uint8���à��Fgo.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��� 
��*go.string.hdr."image"���°
��"go.importpath."".�����,type.[]*image.Paletted���ð
��&go.string.hdr."tmp"���€ ��"go.importpath."".��� �� type.[1024]uint8���`À �type."".decoder���À ��.go.string.hdr."decoder"���Ð ��"go.importpath."".���à  �type."".decoder���þ8go.string.hdr."*gif.decoder"� �� �������� ����������0go.string."*gif.decoder"���þ0go.string."*gif.decoder"� ��*gif.decoder��þrgo.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) error��þZtype.func(*"".decoder, io.Reader, bool) error�À��À��������������Ç×XÕ�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��rgo.string.hdr."func(*gif.decoder, io.Reader, bool) error"���p��lgo.weak.type.*func(*"".decoder, io.Reader, bool) error���€��"runtime.zerovalue��� €�Ztype.func(*"".decoder, io.Reader, bool) error���а�Ztype.func(*"".decoder, io.Reader, bool) error���€�� type.*"".decoder�����type.io.Reader��� ��type.bool���°��type.error���þ¼go.typelink.func(*gif.decoder, io.Reader, bool) error func(*"".decoder, io.Reader, bool) error��������������Ztype.func(*"".decoder, io.Reader, bool) error���þvgo.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)�°��°��������������´Æí±�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��vgo.string.hdr."func(*gif.decoder) (*image.Paletted, error)"���p��pgo.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.Paletted��� ��type.error���þÄgo.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)�°��°��������������(ܺŽ�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��^go.string.hdr."func(*gif.decoder) (int, error)"���p��Xgo.weak.type.*func(*"".decoder) (int, error)���€��"runtime.zerovalue��� €�Ftype.func(*"".decoder) (int, error)���А�Ftype.func(*"".decoder) (int, error)���€�� type.*"".decoder�����type.int��� ��type.error���þ”go.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)"� �� ��������0����������xgo.string."func(*gif.decoder, uint8) (color.Palette, error)"���þxgo.string."func(*gif.decoder, uint8) (color.Palette, error)"�p��bfunc(*gif.decoder, uint8) (color.Palette, error)��þttype.func(*"".decoder, uint8) (image/color.Palette, error)�À��À��������������~„J�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��€go.string.hdr."func(*gif.decoder, uint8) (color.Palette, error)"���p��†go.weak.type.*func(*"".decoder, uint8) (image/color.Palette, error)���€��"runtime.zerovalue��� €�ttype.func(*"".decoder, uint8) (image/color.Palette, error)���Р�ttype.func(*"".decoder, uint8) (image/color.Palette, error)���€�� type.*"".decoder�����type.uint8��� ��0type.image/color.Palette���°��type.error���þägo.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) error��þ8type.func(*"".decoder) error� �� ��������������Q-+�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Pgo.string.hdr."func(*gif.decoder) error"���p��Jgo.weak.type.*func(*"".decoder) error���€��"runtime.zerovalue��� €�8type.func(*"".decoder) error���А�8type.func(*"".decoder) error���€�� type.*"".decoder�����type.error���þxgo.typelink.func(*gif.decoder) error func(*"".decoder) error��������������8type.func(*"".decoder) error���þ,go.string.hdr."decode"� �� ������������������$go.string."decode"���þ$go.string."decode"���decode��þVgo.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&R�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Vgo.string.hdr."func(io.Reader, bool) error"���p��Rgo.weak.type.*func(io.Reader, bool) error���€��"runtime.zerovalue��� €�@type.func(io.Reader, bool) error���Р�@type.func(io.Reader, bool) error���€��type.io.Reader�����type.bool��� ��type.error���þ†go.typelink.func(io.Reader, bool) error func(io.Reader, bool) error��������������@type.func(io.Reader, bool) error���þLgo.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)� �� ��������������’ñËô�3����������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��^go.string.hdr."func() (*image.Paletted, error)"���p��Zgo.weak.type.*func() (*image.Paletted, error)���€��"runtime.zerovalue��� €�Htype.func() (*image.Paletted, error)���Ѐ�Htype.func() (*image.Paletted, error)���€��(type.*image.Paletted�����type.error���þ–go.typelink.func() (*image.Paletted, error) func() (*image.Paletted, error)��������������Htype.func() (*image.Paletted, error)���þ2go.string.hdr."readBlock"� �� �������� ����������*go.string."readBlock"���þ*go.string."readBlock"� ��readBlock��þFgo.string.hdr."func() (int, error)"� �� ������������������>go.string."func() (int, error)"���þ>go.string."func() (int, error)"�0��(func() (int, error)��þ0type.func() (int, error)� �� ��������������ê€Ô�3����������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Fgo.string.hdr."func() (int, error)"���p��Bgo.weak.type.*func() (int, error)���€��"runtime.zerovalue��� €�0type.func() (int, error)���Ѐ�0type.func() (int, error)���€��type.int�����type.error���þfgo.typelink.func() (int, error) func() (int, error)��������������0type.func() (int, error)���þ<go.string.hdr."readColorTable"� �� ������������������4go.string."readColorTable"���þ4go.string."readColorTable"� ��readColorTable��þdgo.string.hdr."func(uint8) (color.Palette, error)"� �� ��������"����������\go.string."func(uint8) (color.Palette, error)"���þ\go.string."func(uint8) (color.Palette, error)"�P��Ffunc(uint8) (color.Palette, error)��þZtype.func(uint8) (image/color.Palette, error)�°��°��������������X¤p�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��dgo.string.hdr."func(uint8) (color.Palette, error)"���p��lgo.weak.type.*func(uint8) (image/color.Palette, error)���€��"runtime.zerovalue��� €�Ztype.func(uint8) (image/color.Palette, error)���А�Ztype.func(uint8) (image/color.Palette, error)���€��type.uint8�����0type.image/color.Palette��� ��type.error���þ®go.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"� ��readExtension��þ8go.string.hdr."func() error"� �� �������� ����������0go.string."func() error"���þ0go.string."func() error"� ��func() error��þ"type.func() error�����������������œ‚Öµ�3��������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��8go.string.hdr."func() error"���p��4go.weak.type.*func() error���€��"runtime.zerovalue��� €�"type.func() error���Ѐ�"type.func() error���€��type.error���þJgo.typelink.func() error func() error��������������"type.func() error���þDgo.string.hdr."readGraphicControl"� �� ������������������<go.string."readGraphicControl"���þ<go.string."readGraphicControl"�0��&readGraphicControl��þZgo.string.hdr."readHeaderAndScreenDescriptor"� �� ������������������Rgo.string."readHeaderAndScreenDescriptor"���þRgo.string."readHeaderAndScreenDescriptor"�@��<readHeaderAndScreenDescriptor��þ type.*"".decoder������������������«Áx«�6����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������d0 � runtime.algarray���@��"runtime.gcbits.01���P��8go.string.hdr."*gif.decoder"���p��2go.weak.type.**"".decoder���€��"runtime.zerovalue�����type."".decoder���` � type.*"".decoder���Àð� type.*"".decoder���ð��,go.string.hdr."decode"���€��"go.importpath."".�����@type.func(io.Reader, bool) error��� ��Ztype.func(*"".decoder, io.Reader, bool) error���°��("".(*decoder).decode���À��("".(*decoder).decode���Ð��Lgo.string.hdr."newImageFromDescriptor"���à��"go.importpath."".���ð��Htype.func() (*image.Paletted, error)���€��^type.func(*"".decoder) (*image.Paletted, error)�����H"".(*decoder).newImageFromDescriptor��� ��H"".(*decoder).newImageFromDescriptor���°��2go.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).readColorTable���à��8"".(*decoder).readColorTable���ð��:go.string.hdr."readExtension"���€��"go.importpath."".�����"type.func() error��� ��8type.func(*"".decoder) error���°��6"".(*decoder).readExtension���À��6"".(*decoder).readExtension���Ð��Dgo.string.hdr."readGraphicControl"���à��"go.importpath."".���ð��"type.func() error���€��8type.func(*"".decoder) error�����@"".(*decoder).readGraphicControl��� ��@"".(*decoder).readGraphicControl���°��Zgo.string.hdr."readHeaderAndScreenDescriptor"���À��"go.importpath."".���Ð��"type.func() error���à��8type.func(*"".decoder) error���ð��V"".(*decoder).readHeaderAndScreenDescriptor���€��V"".(*decoder).readHeaderAndScreenDescriptor���þ:go.string.hdr."[]color.Color"� �� �������� ����������2go.string."[]color.Color"���þ2go.string."[]color.Color"� ��[]color.Color��þ0type.[]image/color.Color� �� ��������������:tNŠ��������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��:go.string.hdr."[]color.Color"���p��Bgo.weak.type.*[]image/color.Color���€��"runtime.zerovalue�����,type.image/color.Color���þZgo.typelink.[]color.Color []image/color.Color��������������0type.[]image/color.Color���þ8go.string.hdr."interface {}"� �� �������� ����������0go.string."interface {}"���þ0go.string."interface {}"� ��interface {}��þ"type.interface {}�À��À��������������çW ������������������������������������������������������������������������� 0€� runtime.algarray���@��"runtime.gcbits.03���P��8go.string.hdr."interface {}"���p��4go.weak.type.*interface {}���€��"runtime.zerovalue���À�"type.interface {}���þ<go.string.hdr."[]interface {}"� �� ������������������4go.string."[]interface {}"���þ4go.string."[]interface {}"� ��[]interface {}��þ&type.[]interface {}� �� ��������������p“ê/��������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��<go.string.hdr."[]interface {}"���p��8go.weak.type.*[]interface {}���€��"runtime.zerovalue�����"type.interface {}���þRgo.typelink.[]interface {} []interface {}��������������&type.[]interface {}���þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�������������þTgclocals·2c78d3ad9d760b5f66e2e47be684c787� �� ���������� ����þTgclocals·51af24152615272c3d9efc8538f95767� �� �������������þ<type..hashfunc.[1]interface {}��������������4type..hash.[1]interface {}���þ8type..eqfunc.[1]interface {}��������������0type..eq.[1]interface {}���þ2type..alg.[1]interface {}� �� �������������������<type..hashfunc.[1]interface {}�����8type..eqfunc.[1]interface {}���þ>go.string.hdr."[1]interface {}"� �� ������������������6go.string."[1]interface {}"���þ6go.string."[1]interface {}"� �� [1]interface {}��þ(type.[1]interface {}�À��À��������������P‘[ú������������������������������������������������������������������������0��2type..alg.[1]interface {}���@��"runtime.gcbits.03���P��>go.string.hdr."[1]interface {}"���p��:go.weak.type.*[1]interface {}���€��"runtime.zerovalue�����"type.interface {}��� ��&type.[]interface {}���þVgo.typelink.[1]interface {} [1]interface {}��������������(type.[1]interface {}���þ@go.string.hdr."*[1]interface {}"� �� ������������������8go.string."*[1]interface {}"���þ8go.string."*[1]interface {}"�0��"*[1]interface {}��þ*type.*[1]interface {}� �� ��������������¿¨5�6�������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��@go.string.hdr."*[1]interface {}"���p��<go.weak.type.**[1]interface {}���€��"runtime.zerovalue�����(type.[1]interface {}���þDgo.string.hdr."*gif.interlaceScan"� �� ������������������<go.string."*gif.interlaceScan"���þ<go.string."*gif.interlaceScan"�0��&*gif.interlaceScan��þ,type.*"".interlaceScan�� �� ��������������‡¹Ì�6�������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��Dgo.string.hdr."*gif.interlaceScan"���p��>go.weak.type.**"".interlaceScan���€��"runtime.zerovalue�����*type."".interlaceScan���þBgo.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"���
skip��þ*go.string.hdr."start"� �� ������������������"go.string."start"���þ"go.string."start"��� start��þ:go.string.hdr."interlaceScan"� �� �������� ����������2go.string."interlaceScan"���þ2go.string."interlaceScan"� ��interlaceScan��þ*type."".interlaceScan��°��°���������������p䔻�™��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� 0À� runtime.algarray���@��runtime.gcbits.���P��Bgo.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."".interlaceScan���þFgo.string.hdr."[]gif.interlaceScan"� �� ������������������>go.string."[]gif.interlaceScan"���þ>go.string."[]gif.interlaceScan"�0��([]gif.interlaceScan��þ.type.[]"".interlaceScan� �� ��������������âxø€��������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��Fgo.string.hdr."[]gif.interlaceScan"���p��@go.weak.type.*[]"".interlaceScan���€��"runtime.zerovalue�����*type."".interlaceScan���þdgo.typelink.[]gif.interlaceScan []"".interlaceScan��������������.type.[]"".interlaceScan���þ0go.string.hdr."*gif.GIF"� �� ������������������(go.string."*gif.GIF"���þ(go.string."*gif.GIF"� ��*gif.GIF��þtype.*"".GIF�� �� ��������������϶×ß�6�������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��0go.string.hdr."*gif.GIF"���p��*go.weak.type.**"".GIF���€��"runtime.zerovalue�����type."".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"��� Delay��þ2go.string.hdr."LoopCount"� �� �������� ����������*go.string."LoopCount"���þ*go.string."LoopCount"� ��LoopCount��þ0go.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"���GIF��þtype."".GIF��ð��ðx�������`�������Òӏ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������0���������������������������������������8���������������������������������������P���������������������������������������p�����������������������������������������������,0à� runtime.algarray���@��&runtime.gcbits.890c���P��.go.string.hdr."gif.GIF"���p��type.*"".GIF���€��"runtime.zerovalue���À�type."".GIF���À��*go.string.hdr."Image"���à��,type.[]*image.Paletted�����*go.string.hdr."Delay"���°��type.[]int���à��2go.string.hdr."LoopCount"���€��type.int���°��0go.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."".GIF���þ<go.string.hdr."[]image.format"� �� ������������������4go.string."[]image.format"���þ4go.string."[]image.format"� ��[]image.format��þ&type.[]image.format� �� ��������������2{1��������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��<go.string.hdr."[]image.format"���p��8go.weak.type.*[]image.format���€��"runtime.zerovalue�����"type.image.format���þRgo.typelink.[]image.format []image.format��������������&type.[]image.format���þhgo.string.hdr."func(io.Reader) (image.Image, error)"� �� ��������$����������`go.string."func(io.Reader) (image.Image, error)"���þ`go.string."func(io.Reader) (image.Image, error)"�P��Jfunc(io.Reader) (image.Image, error)��þRtype.func(io.Reader) (image.Image, error)�°��°��������������‚ïº@�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��hgo.string.hdr."func(io.Reader) (image.Image, error)"���p��dgo.weak.type.*func(io.Reader) (image.Image, error)���€��"runtime.zerovalue��� €�Rtype.func(io.Reader) (image.Image, error)���А�Rtype.func(io.Reader) (image.Image, error)���€��type.io.Reader����� type.image.Image��� ��type.error���þªgo.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)"�P��Lfunc(io.Reader) (image.Config, error)��þTtype.func(io.Reader) (image.Config, error)�°��°��������������ã3/ö�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��jgo.string.hdr."func(io.Reader) (image.Config, error)"���p��fgo.weak.type.*func(io.Reader) (image.Config, error)���€��"runtime.zerovalue��� €�Ttype.func(io.Reader) (image.Config, error)���А�Ttype.func(io.Reader) (image.Config, error)���€��type.io.Reader�����"type.image.Config��� ��type.error���þ®go.typelink.func(io.Reader) (image.Config, error) func(io.Reader) (image.Config, error)��������������Ttype.func(io.Reader) (image.Config, error)���þ type..hashfunc64� �� ��������@����������,runtime.memhash_varlen���þtype..eqfunc64� �� ��������@����������.runtime.memequal_varlen���þtype..alg64� �� ������������������� type..hashfunc64�����type..eqfunc64���þ,go.string.hdr."[8]int"� �� ������������������$go.string."[8]int"���þ$go.string."[8]int"���[8]int��þtype.[8]int�À��À@���������������–™Õ�‘�����������������������������������������������������������������������0��type..alg64���@��runtime.gcbits.���P��,go.string.hdr."[8]int"���p��(go.weak.type.*[8]int���€��"runtime.zerovalue�����type.int��� ��type.[]int���þ2go.typelink.[8]int [8]int��������������type.[8]int���þTgclocals·c55cf99de9cdd8c8202a466952fa1a45� �� ���������������þTgclocals·19b49d53e9c11805652fa4c0885cbb29� �� �������������þTgclocals·c55cf99de9cdd8c8202a466952fa1a45� �� ���������������þTgclocals·d2fd9951e910becfd07ba7f8ff7b525a� �� ���������Ç����þTgclocals·c55cf99de9cdd8c8202a466952fa1a45� �� ���������������þTgclocals·e4b5616e5783a0b08ed3851f8c75ffed� �� �������������þBgo.string.hdr."func(uint8) error"� �� ������������������:go.string."func(uint8) error"���þ:go.string."func(uint8) error"�0��$func(uint8) error��þ,type.func(uint8) error� �� ��������������IˆX�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Bgo.string.hdr."func(uint8) error"���p��>go.weak.type.*func(uint8) error���€��"runtime.zerovalue��� €�,type.func(uint8) error���А�,type.func(uint8) error���€��type.uint8�����type.error���þ^go.typelink.func(uint8) error func(uint8) error��������������,type.func(uint8) error���þ6go.string.hdr."*gif.writer"� �� �������� ����������.go.string."*gif.writer"���þ.go.string."*gif.writer"� ��*gif.writer��þtype.*"".writer�� �� ��������������î­¤º�6�������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��6go.string.hdr."*gif.writer"���p��0go.weak.type.**"".writer���€��"runtime.zerovalue�����type."".writer���þ4go.string.hdr."gif.writer"� �� ��������
����������,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"��� Write��þ2go.string.hdr."WriteByte"� �� �������� ����������*go.string."WriteByte"���þ*go.string."WriteByte"� ��WriteByte��þ,go.string.hdr."writer"� �� ������������������$go.string."writer"���þ$go.string."writer"���writer��þtype."".writer�� �� ��������������­žŒR��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� 0à� runtime.algarray���@��"runtime.gcbits.03���P��4go.string.hdr."gif.writer"���p��type.*"".writer���€��"runtime.zerovalue���À�type."".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_varlen���þtype..eqfunc768� �� ������������������.runtime.memequal_varlen���þtype..alg768� �� �������������������"type..hashfunc768�����type..eqfunc768���þ4go.string.hdr."[768]uint8"� �� ��������
����������,go.string."[768]uint8"���þ,go.string."[768]uint8"� ��[768]uint8��þtype.[768]uint8�À��À���������������  ¡�‘�����������������������������������������������������������������������0��type..alg768���@��runtime.gcbits.���P��4go.string.hdr."[768]uint8"���p��0go.weak.type.*[768]uint8���€��"runtime.zerovalue�����type.uint8��� ��type.[]uint8���þBgo.typelink.[768]uint8 [768]uint8��������������type.[768]uint8���þ&runtime.gcbits.9fc8���ŸÈ�þ6go.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"���g��þ0go.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"���encoder��þtype."".encoder��À��À ������€�������¬åuü�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ���������������������������������������˜��������������������������������������� ��������������������������������������� �������������������������������������� ����������������������������������������������>0à� runtime.algarray���@��&runtime.gcbits.9fc8���P��6go.string.hdr."gif.encoder"���p�� type.*"".encoder���€��"runtime.zerovalue���À�type."".encoder���À��"go.string.hdr."w"���Ð��"go.importpath."".���à��type."".writer�����&go.string.hdr."err"��� ��"go.importpath."".���°��type.error���à��"go.string.hdr."g"���ð��"go.importpath."".���€��type."".GIF���°��0go.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."".encoder���þ8go.string.hdr."*gif.encoder"� �� �������� ����������0go.string."*gif.encoder"���þ0go.string."*gif.encoder"� ��*gif.encoder��þDgo.string.hdr."func(*gif.encoder)"� �� ������������������<go.string."func(*gif.encoder)"���þ<go.string."func(*gif.encoder)"�0��&func(*gif.encoder)��þ,type.func(*"".encoder)�����������������kÖ?�3��������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Dgo.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)� �� ��������������êjó�3����������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Vgo.string.hdr."func(*gif.encoder, []uint8)"���p��Pgo.weak.type.*func(*"".encoder, []uint8)���€��"runtime.zerovalue��� €�>type.func(*"".encoder, []uint8)���Р�>type.func(*"".encoder, []uint8)���€�� type.*"".encoder�����type.[]uint8���þ„go.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)� �� ��������������›ñ&ƒ�3����������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Rgo.string.hdr."func(*gif.encoder, uint8)"���p��Lgo.weak.type.*func(*"".encoder, uint8)���€��"runtime.zerovalue��� €�:type.func(*"".encoder, uint8)���Р�:type.func(*"".encoder, uint8)���€�� type.*"".encoder�����type.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)�À��À��������������MV”�3��������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��~go.string.hdr."func(*gif.encoder, *image.Paletted, int, uint8)"���p��xgo.weak.type.*func(*"".encoder, *image.Paletted, int, uint8)���€��"runtime.zerovalue��� €�ftype.func(*"".encoder, *image.Paletted, int, uint8)���ÐÀ�ftype.func(*"".encoder, *image.Paletted, int, uint8)���€�� type.*"".encoder�����(type.*image.Paletted��� ��type.int���°��type.uint8���þÔgo.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()�€��€��������������ö¼‚ö�3��������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��,go.string.hdr."func()"���p��(go.weak.type.*func()���€��"runtime.zerovalue��� €�type.func()���Ѐ�type.func()���þ2go.typelink.func() func()��������������type.func()���þ*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)�����������������§{í·�3��������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��:go.string.hdr."func([]uint8)"���p��6go.weak.type.*func([]uint8)���€��"runtime.zerovalue��� €�$type.func([]uint8)���А�$type.func([]uint8)���€��type.[]uint8���þNgo.typelink.func([]uint8) func([]uint8)��������������$type.func([]uint8)���þ2go.string.hdr."writeByte"� �� �������� ����������*go.string."writeByte"���þ*go.string."writeByte"� ��writeByte��þ6go.string.hdr."func(uint8)"� �� �������� ����������.go.string."func(uint8)"���þ.go.string."func(uint8)"� ��func(uint8)��þ type.func(uint8)�����������������Ï$«q�3��������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��6go.string.hdr."func(uint8)"���p��2go.weak.type.*func(uint8)���€��"runtime.zerovalue��� €� type.func(uint8)���А� type.func(uint8)���€��type.uint8���þFgo.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"� �� writeImageBlock��þbgo.string.hdr."func(*image.Paletted, int, uint8)"� �� ��������!����������Zgo.string."func(*image.Paletted, int, uint8)"���þZgo.string."func(*image.Paletted, int, uint8)"�P��Dfunc(*image.Paletted, int, uint8)��þLtype.func(*image.Paletted, int, uint8)�°��°��������������ÊoVë�3������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��bgo.string.hdr."func(*image.Paletted, int, uint8)"���p��^go.weak.type.*func(*image.Paletted, int, uint8)���€��"runtime.zerovalue��� €�Ltype.func(*image.Paletted, int, uint8)���а�Ltype.func(*image.Paletted, int, uint8)���€��(type.*image.Paletted�����type.int��� ��type.uint8���þžgo.typelink.func(*image.Paletted, int, uint8) func(*image.Paletted, int, uint8)��������������Ltype.func(*image.Paletted, int, uint8)���þ type.*"".encoder��Ð��Ð��������������ògV¤�6����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������L0 � runtime.algarray���@��"runtime.gcbits.01���P��8go.string.hdr."*gif.encoder"���p��2go.weak.type.**"".encoder���€��"runtime.zerovalue�����type."".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).write���°��2go.string.hdr."writeByte"���À��"go.importpath."".���Ð�� type.func(uint8)���à��:type.func(*"".encoder, uint8)���ð��."".(*encoder).writeByte���€��."".(*encoder).writeByte�����6go.string.hdr."writeHeader"��� ��"go.importpath."".���°��type.func()���À��,type.func(*"".encoder)���Ð��2"".(*encoder).writeHeader���à��2"".(*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.blockWriter��þ6go.string.hdr."blockWriter"� �� �������� ����������.go.string."blockWriter"���þ.go.string."blockWriter"� ��blockWriter��þTgclocals·c55cf99de9cdd8c8202a466952fa1a45� �� ���������������þTgclocals·8cf14f50ac1bf7ae2848fda35f0590ec� �� ���������c����þxgo.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)�À��À��������������&‰ðÀ�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��xgo.string.hdr."func(*gif.blockWriter, []uint8) (int, error)"���p��rgo.weak.type.*func(*"".blockWriter, []uint8) (int, error)���€��"runtime.zerovalue��� €�`type.func(*"".blockWriter, []uint8) (int, error)���Р�`type.func(*"".blockWriter, []uint8) (int, error)���€��(type.*"".blockWriter�����type.[]uint8��� ��type.int���°��type.error���þÈgo.typelink.func(*gif.blockWriter, []uint8) (int, error) func(*"".blockWriter, []uint8) (int, error)��������������`type.func(*"".blockWriter, []uint8) (int, error)���þ(type.*"".blockWriter��Ð��Ð��������������ã¼0—�6����������������������������������������������������������������������������������������������������������������������������������������������0 � runtime.algarray���@��"runtime.gcbits.01���P��@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"���e��þvgo.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)�À��À��������������õ»—ï�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��vgo.string.hdr."func(gif.blockWriter, []uint8) (int, error)"���p��pgo.weak.type.*func("".blockWriter, []uint8) (int, error)���€��"runtime.zerovalue��� €�^type.func("".blockWriter, []uint8) (int, error)���Р�^type.func("".blockWriter, []uint8) (int, error)���€��&type."".blockWriter�����type.[]uint8��� ��type.int���°��type.error���þÄgo.typelink.func(gif.blockWriter, []uint8) (int, error) func("".blockWriter, []uint8) (int, error)��������������^type.func("".blockWriter, []uint8) (int, error)���þ&type."".blockWriter��À��À��������������¤af�9����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������$0 � runtime.algarray���@��"runtime.gcbits.01���P��>go.string.hdr."gif.blockWriter"���p��(type.*"".blockWriter���€��"runtime.zerovalue���À�&type."".blockWriter���À��"go.string.hdr."e"���Ð��"go.importpath."".���à�� type.*"".encoder���`�&type."".blockWriter�����6go.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� �� ��������������"
�6�������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��@go.string.hdr."**image.Paletted"���p��<go.weak.type.***image.Paletted���€��"runtime.zerovalue�����(type.*image.Paletted���þDgo.string.hdr."[1]*image.Paletted"� �� ������������������<go.string."[1]*image.Paletted"���þ<go.string."[1]*image.Paletted"�0��&[1]*image.Paletted��þ.type.[1]*image.Paletted�À��À��������������9>}‘�1�����������������������������������������������������������������������0 � runtime.algarray���@��"runtime.gcbits.01���P��Dgo.string.hdr."[1]*image.Paletted"���p��@go.weak.type.*[1]*image.Paletted���€��"runtime.zerovalue�����(type.*image.Paletted��� ��,type.[]*image.Paletted���þbgo.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]int��þtype.[1]int�À��À���������������­µ²T�‘�����������������������������������������������������������������������0 � runtime.algarray���@��runtime.gcbits.���P��,go.string.hdr."[1]int"���p��(go.weak.type.*[1]int���€��"runtime.zerovalue�����type.int��� ��type.[]int���þ2go.typelink.[1]int [1]int��������������type.[1]int���þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�������������þTgclocals·e85dd0d10221e69476a0daf9bc0a53b6�(��(����������À��� ����þTgclocals·9c91d8a91ac42440a3d1507bc8d2e808�(��(����������������þ2type..hashfunc."".Options��������������*type..hash."".Options���þ.type..eqfunc."".Options��������������&type..eq."".Options���þ(type..alg."".Options� �� �������������������2type..hashfunc."".Options�����.type..eqfunc."".Options���þ"runtime.gcbits.1e����þ6go.string.hdr."gif.Options"� �� �������� ����������.go.string."gif.Options"���þ.go.string."gif.Options"� ��gif.Options��þ2go.string.hdr."NumColors"� �� �������� ����������*go.string."NumColors"���þ*go.string."NumColors"� ��NumColors��þ2go.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"���Options��þtype."".Options��€��€(�������(�������6/­Ê������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� 0��(type..alg."".Options���@��"runtime.gcbits.1e���P��6go.string.hdr."gif.Options"���p�� type.*"".Options���€��"runtime.zerovalue���À�type."".Options���À��2go.string.hdr."NumColors"���à��type.int�����2go.string.hdr."Quantizer"���°��2type.image/draw.Quantizer���à��,go.string.hdr."Drawer"���€��,type.image/draw.Drawer���`°�type."".Options���°��.go.string.hdr."Options"���À��"go.importpath."".���Ѐ�type."".Options���þ8go.string.hdr."*gif.Options"� �� �������� ����������0go.string."*gif.Options"���þ0go.string."*gif.Options"� ��*gif.Options��þ type.*"".Options�� �� ��������������ìw¼ê�6�������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��8go.string.hdr."*gif.Options"���p��2go.weak.type.**"".Options���€��"runtime.zerovalue�����type."".Options���þFgo.string.hdr."*[1]*image.Paletted"� �� ������������������>go.string."*[1]*image.Paletted"���þ>go.string."*[1]*image.Paletted"�0��(*[1]*image.Paletted��þ0type.*[1]*image.Paletted� �� ��������������CvSÄ�6�������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��Fgo.string.hdr."*[1]*image.Paletted"���p��Bgo.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]int��þtype.*[1]int� �� ��������������ñ5@�6�������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��.go.string.hdr."*[1]int"���p��*go.weak.type.**[1]int���€��"runtime.zerovalue�����type.[1]int���þHgo.string.hdr."[4]gif.interlaceScan"� �� ������������������@go.string."[4]gif.interlaceScan"���þ@go.string."[4]gif.interlaceScan"�0��*[4]gif.interlaceScan��þ0type.[4]"".interlaceScan�À��À@���������������f‚c'�‘�����������������������������������������������������������������������0��type..alg64���@��runtime.gcbits.���P��Hgo.string.hdr."[4]gif.interlaceScan"���p��Bgo.weak.type.*[4]"".interlaceScan���€��"runtime.zerovalue�����*type."".interlaceScan��� ��.type.[]"".interlaceScan���þhgo.typelink.[4]gif.interlaceScan [4]"".interlaceScan��������������0type.[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/lzw��þ6go.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/color��þ4go.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/palette��þDgo.importpath.image/color/palette.� �� ������������������>go.string."image/color/palette"���þ4go.string.hdr."image/draw"� �� ��������
����������,go.string."image/draw"���þ,go.string."image/draw"� ��image/draw��þ2go.importpath.image/draw.� �� ��������
����������,go.string."image/draw"���þ""".reader.Read·f��������������"".reader.Read���þ*"".reader.ReadByte·f��������������$"".reader.ReadByte���þ:type..hash.[1]interface {}·f��������������4type..hash.[1]interface {}���þ6type..eq.[1]interface {}·f��������������0type..eq.[1]interface {}���þ$"".writer.Flush·f��������������"".writer.Flush���þ$"".writer.Write·f��������������"".writer.Write���þ,"".writer.WriteByte·f��������������&"".writer.WriteByte���þ4"".(*blockWriter).Write·f��������������."".(*blockWriter).Write���þ0type..hash."".Options·f��������������*type..hash."".Options���þ,type..eq."".Options·f��������������&type..eq."".Options���þ"runtime.zerovalue������ÿÿgo13ld