#----------------------------------------------------------------------
# This file was generated by /usr/local/bin/img2py
#
from wx import ImageFromStream,BitmapFromImage
import cStringIO, zlib
def getData():
return zlib.decompress(
'x\xda\x01\x82\x02}\xfd\x89PNG\r\n\x1a\n\x00\x00\x00\rIHDR\x00\x00\x00\x14\
\x00\x00\x00\x14\x08\x06\x00\x00\x00\x8d\x89\x1d\r\x00\x00\x00\x04sBIT\x08\
\x08\x08\x08|\x08d\x88\x00\x00\x029IDATx\x9c\xad\x94\xbfK\x1ba\x18\x80\x9f\
\x0b\x0e)\x19rTA3\xb88\x99\x0e\xd9\xc4\x12\xaa\xa0\x14\x07\xa1\x08\xb5:\xe8\
\xd0\x8c:e\xef\xd4\xd1I\xe9$\xf4/\x88{\xc7\x88\xca%\x92\xa4?<\t\x86\x80K\xcc\
5\x86\x04\x02\x97\xdc\x8f\x80\x90|\x1d$\xd7K.Qi}\xe1\xe5\xfb\xee\xee\xe3\xb9\
\xe7\xfd\xbe\xbbW\x92e\x99\xe7\x8c\xb1\xdeD\xd7u\xf1\xd8bY\x96\xa5\xc7\xd6\
\xf8z\xb0n\xb7\xcb\xb0\xect:\x94J%\xce\xce\xce\x9e\xf4R\x9f\xfb\xc20\x0cO\
\x9a\xa6\x89\xa6iD\xa3Q\x12\x89\xc4\xa3PI\x96e\xc7\xd00\x0c\x14Eabb\x82j\xb5\
J\xa3\xd1`cc\x83d2I6\x9b\xa5Z\xad\xa2i\x1a\xa7\xa7\xa7#\xcb\x1f\x1b\xbc\xb1\
\xb0\xb0\x00@8\x1c\x06@\x08\xc1\xdc\xdc\x1c\xc5b\x91\xab\xab<\x85B\xe1\xc1\
\x92=\x86\xc7\xc7\xc7h\x9a\xc6\xf4\xf44SSS\x0e\xb8\\.\xa3\xaa*\xba\xae\x13\
\x8f\xc7G\x1a\xf6\x01\x9b\xcd\xa6\xf3@\x08\xd17\xdf\xdaz\x8f\xa2\xe4\x00XZ\
\x8a\x92N\xff|\xb8d!\x04B\x08\x12\x89\x04333\x00T*\x15\x00\x0e\x0f\xbf\xb0\
\xbb\xfb\x91\xbd\xbdOX\x96M6\xabR\xaf7\xc4\xf5u\xc9\x03u\x0c;\x9d\x0e\xba\
\xae{\xcc\xb6\xb7?\xb0\xb9\xf9\x8e\x95\x95\xb7\x04\x02\x93\xe4\xf3iZ-\x03U\
\xbd"\x97SI\xa5~\xf4A\xfb\x0e\xa5\xdb\xedryy\xc9\xdd\xdd\x1d\x86a\x00\xa0(Y\
\x0e\x0e>\x13\n\xbd"\x93\xf9\x86e\xd9\x98\xa6\xcd\xf8\xf8K\x92I\x05\xbf\xff\
\xc5\xf0\x92{F\x91H\xc4\xb1\xbc\x1f%,\xcb\xa6\\.`\x9a6\x96u\x9f\xedv\x1b\x9f\
\xaf\xef3\x1enxttD \x10 \x18\x0c\xe2\xf7\xfbY\\\x9c\'\x93\xf9\xc5\xecl\x0b\
\xdbn;\xc0\xdb\xdb\x1a\xcb\xcboH\xa5\xbe\x8f\xde\xc3z\xbd\xee2\xfbk\xbd\xb6\
\xb6\xca\xfa\xfa*\xa1\xd0$\xad\x96\xc1\xcd\xcdo\xf6\xf7\xbf\x02\x10\x0c\x06\
\xa5\x91\xc0Z\xad\xe6\x81\xf5\xc6\x9d\x9d\x18\'\'\xe7\x00\xcc\xcf\xbf\xe6\
\xe2\xe2Bj6\x9bb\x10\xea\x00s\xb9\x9cs\x10\x830wT*\x15b\xb1\x18\xb2,;@7T\xea\
\xf5\xc3\xa7t\x92^\xb8\xff\x92A\xa8\xf4\x1c\r\xd6\r\xf5\x9e\xfb?\x84{\x0f=\
\xdd\xe6\x7f\xa1\x7f\x00\xcfm{\xed7\x94\x02\t\x00\x00\x00\x00IEND\xaeB`\x820\
p*f' )
def getBitmap():
return BitmapFromImage(getImage())
def getImage():
stream = cStringIO.StringIO(getData())
return ImageFromStream(stream)
|