[Avida-cvs] [Avida2-svn] r96 - in trunk/source: bindings/Boost.Python python python/AvidaGui2

kaben at myxo.css.msu.edu kaben at myxo.css.msu.edu
Thu Mar 31 01:26:10 PST 2005


Author: kaben
Date: 2005-03-31 04:26:09 -0500 (Thu, 31 Mar 2005)
New Revision: 96

Added:
   trunk/source/python/AvidaGui2/pyOneOrg_ScopeCtrl.py
   trunk/source/python/AvidaGui2/pyOneOrg_ScopeView.ui
   trunk/source/python/AvidaGui2/pyOrganismScopeCtrl.py
   trunk/source/python/AvidaGui2/pyOrganismScopeView.py
Removed:
   trunk/source/python/AvidaGui2/pyOneOrganismView.py
   trunk/source/python/AvidaGui2/pyVivisectionCtrl.py
   trunk/source/python/AvidaGui2/pyVivisectionView.py
   trunk/source/python/AvidaGui2/pyVivisectionView.ui
Modified:
   trunk/source/bindings/Boost.Python/population_interface-fixups.hh
   trunk/source/bindings/Boost.Python/population_interface.pyste
   trunk/source/python/AvidaEd-interactive.py
   trunk/source/python/AvidaEd-osx.py
   trunk/source/python/AvidaGui2/pyAnalyzeControlsView.py
   trunk/source/python/AvidaGui2/pyAvida.py
   trunk/source/python/AvidaGui2/pyAvidaThreadedDriver.py
   trunk/source/python/AvidaGui2/pyEduMainCtrl.py
   trunk/source/python/AvidaGui2/pyEduWorkspaceCtrl.py
   trunk/source/python/AvidaGui2/pyEduWorkspaceView.py
   trunk/source/python/AvidaGui2/pyFreezerView.py
   trunk/source/python/AvidaGui2/pyGradientScaleView.py
   trunk/source/python/AvidaGui2/pyGraphView.py
   trunk/source/python/AvidaGui2/pyLiveControlsView.py
   trunk/source/python/AvidaGui2/pyNavBarView.py
   trunk/source/python/AvidaGui2/pyOneAna_GraphView.py
   trunk/source/python/AvidaGui2/pyOneAna_PetriDishView.py
   trunk/source/python/AvidaGui2/pyOneAna_StatsView.py
   trunk/source/python/AvidaGui2/pyOneAna_TimelineView.py
   trunk/source/python/AvidaGui2/pyOneAnalyzeView.py
   trunk/source/python/AvidaGui2/pyOneOrganismCtrl.py
   trunk/source/python/AvidaGui2/pyOneOrganismView.ui
   trunk/source/python/AvidaGui2/pyOnePop_StatsView.py
   trunk/source/python/AvidaGui2/pyOnePopulationView.py
   trunk/source/python/AvidaGui2/pyPetriDishCtrl.py
   trunk/source/python/AvidaGui2/pyPetriDishView.py
   trunk/source/python/AvidaGui2/pySessionDumbCtrl.py
   trunk/source/python/AvidaGui2/pySessionDumbViewBase.py
   trunk/source/python/AvidaGui2/pyTemporaryReloads.py
   trunk/source/python/AvidaGui2/pyTest.py
   trunk/source/python/AvidaGui2/pyTimelineView.py
   trunk/source/python/AvidaGui2/pyTwoAnalyzeView.py
   trunk/source/python/AvidaGui2/pyTwoOrg_VivisectionView.py
   trunk/source/python/AvidaGui2/pyTwoOrganismView.py
   trunk/source/python/AvidaGui2/pyTwoOrganismView.ui
   trunk/source/python/AvidaGui2/pyTwoPop_GraphView.py
   trunk/source/python/AvidaGui2/pyTwoPop_PetriDishesView.py
   trunk/source/python/AvidaGui2/pyTwoPop_StatsView.py
   trunk/source/python/AvidaGui2/pyTwoPop_TimelineView.py
   trunk/source/python/AvidaGui2/pyTwoPopulationView.py
Log:
Merged private branch developers/kaben changes r73:95 into trunk.

Modified: trunk/source/bindings/Boost.Python/population_interface-fixups.hh
===================================================================
--- trunk/source/bindings/Boost.Python/population_interface-fixups.hh	2005-03-31 03:44:15 UTC (rev 95)
+++ trunk/source/bindings/Boost.Python/population_interface-fixups.hh	2005-03-31 09:26:09 UTC (rev 96)
@@ -16,6 +16,7 @@
   test_interface.SetFun_GetInputAt(&cCallbackUtil::CB_GetInputAt);
   test_interface.SetFun_GetResources(&cCallbackUtil::CB_GetResources);
   test_interface.SetFun_UpdateResources(&cCallbackUtil::CB_UpdateResources);
+  test_interface.SetFun_ReceiveValue(&cCallbackUtil::CB_ReceiveValue);
 }
 
 #endif

Modified: trunk/source/bindings/Boost.Python/population_interface.pyste
===================================================================
--- trunk/source/bindings/Boost.Python/population_interface.pyste	2005-03-31 03:44:15 UTC (rev 95)
+++ trunk/source/bindings/Boost.Python/population_interface.pyste	2005-03-31 09:26:09 UTC (rev 96)
@@ -60,6 +60,7 @@
 exclude(cPopulationInterface.SetFun_KillCell)
 exclude(cPopulationInterface.SetFun_KillSurroundCell)
 exclude(cPopulationInterface.SetFun_SendMessage)
+exclude(cPopulationInterface.SetFun_ReceiveValue)
 exclude(cPopulationInterface.SetFun_InjectParasite)
 exclude(cPopulationInterface.SetFun_UpdateMerit)
 

Modified: trunk/source/python/AvidaEd-interactive.py
===================================================================
--- trunk/source/python/AvidaEd-interactive.py	2005-03-31 03:44:15 UTC (rev 95)
+++ trunk/source/python/AvidaEd-interactive.py	2005-03-31 09:26:09 UTC (rev 96)
@@ -18,8 +18,7 @@
   edu_main_controller = AvidaGui2.pyEduMainCtrl.pyEduMainCtrl()
   edu_main_controller.construct()
   edu_main_controller.m_main_mdl.m_main_mdtr.m_main_controller_factory_mdtr.emit(
-    qt.PYSIGNAL("newMainControllerSig"), ("pySessionCtrl",
-    AvidaCore.cString("genesis.avida"), ))
+    qt.PYSIGNAL("newMainControllerSig"), ("pySessionCtrl",))
   return edu_main_controller
 
 AvidaCore.cConfig.InitGroupList()

Modified: trunk/source/python/AvidaEd-osx.py
===================================================================
--- trunk/source/python/AvidaEd-osx.py	2005-03-31 03:44:15 UTC (rev 95)
+++ trunk/source/python/AvidaEd-osx.py	2005-03-31 09:26:09 UTC (rev 96)
@@ -39,8 +39,7 @@
     edu_main_controller = AvidaGui2.pyEduMainCtrl.pyEduMainCtrl()
     edu_main_controller.construct()
     edu_main_controller.m_main_mdl.m_main_mdtr.m_main_controller_factory_mdtr.emit(
-      qt.PYSIGNAL("newMainControllerSig"), ("pySessionCtrl",
-      AvidaCore.cString("genesis.avida"), ))
+      qt.PYSIGNAL("newMainControllerSig"), ("pySessionCtrl",))
     return edu_main_controller
   
   AvidaCore.cConfig.InitGroupList()

Modified: trunk/source/python/AvidaGui2/pyAnalyzeControlsView.py
===================================================================
--- trunk/source/python/AvidaGui2/pyAnalyzeControlsView.py	2005-03-31 03:44:15 UTC (rev 95)
+++ trunk/source/python/AvidaGui2/pyAnalyzeControlsView.py	2005-03-31 09:26:09 UTC (rev 96)
@@ -1,9 +1,9 @@
 # -*- coding: utf-8 -*-
 
-# Form implementation generated from reading ui file '/Users/kaben/Projects/Software/Avida/branch.kaben/avida--current--2.0--base-0/source/bindings/Boost.Python/AvidaGui2/pyAnalyzeControlsView.ui'
+# Form implementation generated from reading ui file 'pyAnalyzeControlsView.ui'
 #
-# Created: Fri Dec 3 10:26:50 2004
-#      by: The PyQt User Interface Compiler (pyuic) 3.12
+# Created: Thu Mar 31 04:19:18 2005
+#      by: The PyQt User Interface Compiler (pyuic) 3.13
 #
 # WARNING! All changes made in this file will be lost!
 
@@ -11,772 +11,772 @@
 from qt import *
 
 image0_data = \
-  "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
-  "\x49\x48\x44\x52\x00\x00\x00\x21\x00\x00\x00\x14" \
-  "\x08\x06\x00\x00\x00\x03\x53\x54\x71\x00\x00\x04" \
-  "\x5b\x49\x44\x41\x54\x78\x9c\xad\x56\x4b\x6c\x13" \
-  "\x57\x14\x3d\xf7\xbe\x37\x3f\x7b\xa8\xdd\xb1\x48" \
-  "\xe2\x60\xac\xaa\x21\x09\xb2\xe2\xe0\xb8\x20\x54" \
-  "\x21\x55\xc0\xa6\x5d\x56\xac\x0a\x59\xb5\x7b\xa4" \
-  "\x6e\x4a\x37\xd9\x25\x9b\x4a\xec\xd8\xb0\x40\xd0" \
-  "\x65\x97\x5d\x16\xba\x68\x2a\x51\xea\x4a\x54\x84" \
-  "\x20\x16\xc4\x56\xa8\x50\xa8\x25\x27\xb1\x6a\x27" \
-  "\x76\xec\xcc\xe7\x75\x31\x8e\x63\x07\x07\xf5\x93" \
-  "\x2b\x1d\xcd\x7b\x67\xe6\xdd\x39\x73\xde\x7d\x57" \
-  "\x43\x4a\x29\xec\x05\x11\xc5\x01\xc4\x00\xd8\x00" \
-  "\x0c\x00\x84\xa3\x0b\x05\xa0\x0d\x60\x1b\x40\x4d" \
-  "\x29\xf5\x57\xf7\xbd\x4a\x29\x9c\x3d\x7b\x56\xab" \
-  "\x56\xab\xa3\x93\x93\x93\x1f\x27\x12\x89\x4b\x86" \
-  "\x61\x7c\x20\xa5\x7c\x0f\x80\x76\x84\x22\x5c\xcf" \
-  "\xf3\xfe\x68\xb7\xdb\xbf\x6f\x6e\x6e\xfe\xf4\xe2" \
-  "\xc5\x8b\xfb\x8e\xe3\xfc\xf9\xf8\xf1\x63\x57\x02" \
-  "\x80\x65\x59\x27\xcf\x9f\x3f\xff\x79\x3a\x9d\xfe" \
-  "\x22\x3b\x95\x1d\x3d\x35\x7e\x0a\xc9\x91\x24\xa4" \
-  "\x94\x47\xa6\xc0\xf7\x7d\xad\x5c\x2e\x8f\x97\x4a" \
-  "\xa5\xf1\xa7\xcb\x4f\x3f\x8a\xc7\xe3\x27\xd7\xd6" \
-  "\xd6\xee\x01\x58\xa5\xab\x57\xaf\x0e\x6b\x9a\xf6" \
-  "\x59\x32\x99\xfc\xfa\xf2\xa5\xcb\xc9\x6c\x36\x8b" \
-  "\xd0\xb9\xa3\xdc\x89\xfe\x58\x5e\x5e\xc6\x83\x1f" \
-  "\x1f\x94\x37\x36\x36\xbe\x71\x5d\xf7\x3b\x99\x4a" \
-  "\xa5\x92\xf5\x7a\xfd\xe2\x74\x76\x3a\x39\x3d\x7d" \
-  "\xa6\x47\xc0\xff\x15\x11\xd6\x1a\xf5\xcd\x00\x62" \
-  "\x42\x26\x93\xc1\x4a\x71\x25\xd9\x68\x34\x2e\x0e" \
-  "\x0f\x0f\xff\xcc\x8e\xe3\x8c\x10\xd1\xcc\xc4\xe4" \
-  "\x24\x84\x20\xb0\x10\x10\x82\xc1\x82\x20\x7a\x50" \
-  "\xad\x6e\xf4\xcd\xdf\xc6\x93\x20\x6c\x56\xab\x10" \
-  "\x82\x41\x42\x80\x84\x00\x0b\x01\x62\x86\x10\x02" \
-  "\xae\xe7\x62\x64\x64\x04\x44\x34\xe3\x38\xce\x08" \
-  "\x27\x12\x89\xe3\x41\x10\x9c\x48\xa5\x52\x60\x66" \
-  "\x08\x66\x30\x89\xf0\xda\x83\xf9\x85\x85\xbe\x39" \
-  "\x33\xa3\x50\x28\x0c\xe4\x7f\x2b\x14\xb0\x30\x3f" \
-  "\x0f\xa6\x7d\x4e\x10\x41\x08\x01\xc1\x02\x8d\x46" \
-  "\x03\xf1\x77\xe3\x08\x82\xe0\x44\x22\x91\x38\x2e" \
-  "\xe3\xf1\xb8\x0d\x40\xea\x52\x03\x51\xc7\x3c\xee" \
-  "\xf1\xaf\x13\xed\x76\x1b\x4c\x02\x00\xb0\xbb\xbb" \
-  "\x8b\x7b\xdf\xde\xc3\xe2\xe2\x22\x22\xd1\xc8\xe1" \
-  "\xbc\x10\x80\xea\x6c\x2f\x03\xcc\x8c\xfa\x56\x1d" \
-  "\xf5\x7a\x1d\x96\x69\x01\x80\x8c\xc7\xe3\xb6\x8c" \
-  "\xc5\x62\x51\x00\x60\xc1\xfb\x22\x06\x04\x11\x81" \
-  "\x05\xa3\x5c\x2e\xe3\xe6\xcd\x9b\x78\xfd\xfa\x35" \
-  "\x88\x68\x30\xcf\x21\x2f\xa4\xe8\xae\x0f\x82\x00" \
-  "\xb5\x7a\x0d\x95\x4a\x05\x42\x08\x30\x31\x00\x20" \
-  "\x16\x8b\x45\xa5\x6d\xdb\x76\xaf\x08\x05\x05\x42" \
-  "\x98\xe4\x40\x23\xc3\xc3\x5f\x1e\xe2\xce\x9d\x3b" \
-  "\x68\xb5\x5a\xdd\x8a\x1b\xc4\x2b\xa5\x10\x04\x01" \
-  "\x5a\xad\x16\x7c\xcf\xc7\xae\xbb\x8b\x46\xa3\x81" \
-  "\x56\xab\x05\xc1\x02\xd2\x94\xdd\xdc\xb6\x6d\xdb" \
-  "\x32\x1a\x8d\x1e\x03\x42\xab\x42\xd7\x18\x4a\x29" \
-  "\xec\x34\x9b\xd8\xda\x6e\x74\x45\xb4\x5a\x6d\xac" \
-  "\xaf\xaf\x63\x67\x67\x07\xae\xeb\x76\x79\x21\xe4" \
-  "\x1b\x7c\x10\x04\x60\x66\xac\xaf\xaf\x43\x29\x15" \
-  "\x7e\x18\x11\x0c\xc3\x08\xdd\xee\xe9\x00\xd1\x68" \
-  "\xf4\x98\x8c\x44\x22\xf6\x9e\x08\x22\x0a\x6d\xab" \
-  "\xd5\xd0\x6c\x36\xfb\x0f\x9c\x0a\x70\xe1\xc2\x05" \
-  "\xa4\x52\x29\xdc\xbe\x7d\x1b\xd5\x6a\xf5\x50\x9e" \
-  "\x88\xc0\xcc\x30\x4c\x23\x74\x6b\x2f\x07\x00\x42" \
-  "\xe8\xf6\x5e\xcd\x45\x22\x11\x9b\x4d\xd3\x0c\x9d" \
-  "\x20\x06\x81\xb0\xbd\xbd\x0d\xdf\xf7\x61\x59\x56" \
-  "\x1f\x84\x10\xb0\x2c\x0b\xa7\x4f\x9f\xc6\xc2\xc2" \
-  "\x02\xb2\xd9\x6c\x58\xed\x87\xf0\xcc\x0c\xd3\x30" \
-  "\x61\x1a\x26\x8c\x0e\xc2\xb1\x11\x8e\x4d\x13\x00" \
-  "\x60\x9a\xe6\x31\xd6\x75\x3d\xc2\xcc\x81\x1f\xf8" \
-  "\xf0\x7c\x17\x20\x82\x65\x59\x9d\x87\xf7\x21\x84" \
-  "\xe8\x8e\x13\x89\x04\xe6\xe6\xe6\x70\xe5\xca\x95" \
-  "\x7f\xc4\x1f\x84\xd9\xc9\xc7\xcc\x81\xae\xeb\x11" \
-  "\xa9\xeb\xfa\x96\xe3\x38\xcd\xb5\xb5\x35\x7b\x74" \
-  "\x74\x14\x66\x77\xdf\xfa\x5b\xf7\x8d\xaf\x6e\xc0" \
-  "\xd0\x8d\xbe\x2d\x9a\xbd\x36\x8b\xdc\x99\xdc\x1b" \
-  "\xfc\xb5\x6b\xb3\x38\x93\xcb\xc1\x30\xf4\xfe\xa3" \
-  "\xbe\x57\x0f\x00\xca\xe5\x32\x1c\xc7\x69\xea\xba" \
-  "\xbe\x25\x35\x4d\x2b\x8d\x8d\x8d\x35\x9f\x3f\x7f" \
-  "\x6e\xa7\xd3\xe9\x03\xc7\x74\x3f\xc3\x4c\x3e\x87" \
-  "\x41\x31\x98\x27\xe4\x67\x66\xa0\x54\xf8\xde\x41" \
-  "\x51\x2c\x16\x31\x36\x36\xd6\xd4\x34\xad\xc4\x44" \
-  "\x54\xc8\xe7\xf3\x3b\xab\xab\xab\xee\xd2\xd2\x12" \
-  "\xa4\x94\x3d\xd0\xfe\x23\xc2\xf5\x9a\x26\x0f\xe4" \
-  "\x0b\xf1\xe4\xc9\x13\xbc\x7c\xf9\xd2\xcd\xe7\xf3" \
-  "\x3b\x44\x54\x90\xd1\x68\xf4\x7e\x26\x93\xb9\x5b" \
-  "\xab\xd5\xbe\x7c\xf4\xe8\xd1\x3b\x95\x4a\x45\x4c" \
-  "\x4d\x4d\x21\x9d\x4e\x43\x4a\xf9\xd6\x06\xf6\x6f" \
-  "\xc2\xf3\x3c\xbc\x7a\xf5\x0a\xcf\x9e\x3d\x43\xa9" \
-  "\x54\xf2\xcf\x9d\x3b\xb7\x9d\xc9\x64\xee\xea\xba" \
-  "\x7e\x9f\x3a\x4d\x63\xc8\xf3\xbc\xeb\xc5\x62\xf1" \
-  "\xfa\xd2\xd2\x92\xb9\xb2\xb2\x22\x2b\x95\x8a\xf0" \
-  "\x3c\xef\x48\x04\x00\x80\x94\x12\x43\x43\x43\xfe" \
-  "\xc4\xc4\x84\x97\xcb\xe5\x5a\xe3\xe3\xe3\xb7\xa4" \
-  "\x94\xb7\x00\x54\xa8\xb7\x2b\x02\xf8\x34\x08\x82" \
-  "\x4f\x88\xe8\x43\x00\xef\xe3\x88\xff\xac\x00\xac" \
-  "\x2a\xa5\x7e\x65\xe6\x1f\x00\x7c\xbf\x77\xe3\x6f" \
-  "\xdd\x28\xb3\x86\xae\x32\x95\x22\x00\x00\x00\x00" \
-  "\x49\x45\x4e\x44\xae\x42\x60\x82"
+    "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
+    "\x49\x48\x44\x52\x00\x00\x00\x21\x00\x00\x00\x14" \
+    "\x08\x06\x00\x00\x00\x03\x53\x54\x71\x00\x00\x04" \
+    "\x5b\x49\x44\x41\x54\x78\x9c\xad\x56\x4b\x6c\x13" \
+    "\x57\x14\x3d\xf7\xbe\x37\x3f\x7b\xa8\xdd\xb1\x48" \
+    "\xe2\x60\xac\xaa\x21\x09\xb2\xe2\xe0\xb8\x20\x54" \
+    "\x21\x55\xc0\xa6\x5d\x56\xac\x0a\x59\xb5\x7b\xa4" \
+    "\x6e\x4a\x37\xd9\x25\x9b\x4a\xec\xd8\xb0\x40\xd0" \
+    "\x65\x97\x5d\x16\xba\x68\x2a\x51\xea\x4a\x54\x84" \
+    "\x20\x16\xc4\x56\xa8\x50\xa8\x25\x27\xb1\x6a\x27" \
+    "\x76\xec\xcc\xe7\x75\x31\x8e\x63\x07\x07\xf5\x93" \
+    "\x2b\x1d\xcd\x7b\x67\xe6\xdd\x39\x73\xde\x7d\x57" \
+    "\x43\x4a\x29\xec\x05\x11\xc5\x01\xc4\x00\xd8\x00" \
+    "\x0c\x00\x84\xa3\x0b\x05\xa0\x0d\x60\x1b\x40\x4d" \
+    "\x29\xf5\x57\xf7\xbd\x4a\x29\x9c\x3d\x7b\x56\xab" \
+    "\x56\xab\xa3\x93\x93\x93\x1f\x27\x12\x89\x4b\x86" \
+    "\x61\x7c\x20\xa5\x7c\x0f\x80\x76\x84\x22\x5c\xcf" \
+    "\xf3\xfe\x68\xb7\xdb\xbf\x6f\x6e\x6e\xfe\xf4\xe2" \
+    "\xc5\x8b\xfb\x8e\xe3\xfc\xf9\xf8\xf1\x63\x57\x02" \
+    "\x80\x65\x59\x27\xcf\x9f\x3f\xff\x79\x3a\x9d\xfe" \
+    "\x22\x3b\x95\x1d\x3d\x35\x7e\x0a\xc9\x91\x24\xa4" \
+    "\x94\x47\xa6\xc0\xf7\x7d\xad\x5c\x2e\x8f\x97\x4a" \
+    "\xa5\xf1\xa7\xcb\x4f\x3f\x8a\xc7\xe3\x27\xd7\xd6" \
+    "\xd6\xee\x01\x58\xa5\xab\x57\xaf\x0e\x6b\x9a\xf6" \
+    "\x59\x32\x99\xfc\xfa\xf2\xa5\xcb\xc9\x6c\x36\x8b" \
+    "\xd0\xb9\xa3\xdc\x89\xfe\x58\x5e\x5e\xc6\x83\x1f" \
+    "\x1f\x94\x37\x36\x36\xbe\x71\x5d\xf7\x3b\x99\x4a" \
+    "\xa5\x92\xf5\x7a\xfd\xe2\x74\x76\x3a\x39\x3d\x7d" \
+    "\xa6\x47\xc0\xff\x15\x11\xd6\x1a\xf5\xcd\x00\x62" \
+    "\x42\x26\x93\xc1\x4a\x71\x25\xd9\x68\x34\x2e\x0e" \
+    "\x0f\x0f\xff\xcc\x8e\xe3\x8c\x10\xd1\xcc\xc4\xe4" \
+    "\x24\x84\x20\xb0\x10\x10\x82\xc1\x82\x20\x7a\x50" \
+    "\xad\x6e\xf4\xcd\xdf\xc6\x93\x20\x6c\x56\xab\x10" \
+    "\x82\x41\x42\x80\x84\x00\x0b\x01\x62\x86\x10\x02" \
+    "\xae\xe7\x62\x64\x64\x04\x44\x34\xe3\x38\xce\x08" \
+    "\x27\x12\x89\xe3\x41\x10\x9c\x48\xa5\x52\x60\x66" \
+    "\x08\x66\x30\x89\xf0\xda\x83\xf9\x85\x85\xbe\x39" \
+    "\x33\xa3\x50\x28\x0c\xe4\x7f\x2b\x14\xb0\x30\x3f" \
+    "\x0f\xa6\x7d\x4e\x10\x41\x08\x01\xc1\x02\x8d\x46" \
+    "\x03\xf1\x77\xe3\x08\x82\xe0\x44\x22\x91\x38\x2e" \
+    "\xe3\xf1\xb8\x0d\x40\xea\x52\x03\x51\xc7\x3c\xee" \
+    "\xf1\xaf\x13\xed\x76\x1b\x4c\x02\x00\xb0\xbb\xbb" \
+    "\x8b\x7b\xdf\xde\xc3\xe2\xe2\x22\x22\xd1\xc8\xe1" \
+    "\xbc\x10\x80\xea\x6c\x2f\x03\xcc\x8c\xfa\x56\x1d" \
+    "\xf5\x7a\x1d\x96\x69\x01\x80\x8c\xc7\xe3\xb6\x8c" \
+    "\xc5\x62\x51\x00\x60\xc1\xfb\x22\x06\x04\x11\x81" \
+    "\x05\xa3\x5c\x2e\xe3\xe6\xcd\x9b\x78\xfd\xfa\x35" \
+    "\x88\x68\x30\xcf\x21\x2f\xa4\xe8\xae\x0f\x82\x00" \
+    "\xb5\x7a\x0d\x95\x4a\x05\x42\x08\x30\x31\x00\x20" \
+    "\x16\x8b\x45\xa5\x6d\xdb\x76\xaf\x08\x05\x05\x42" \
+    "\x98\xe4\x40\x23\xc3\xc3\x5f\x1e\xe2\xce\x9d\x3b" \
+    "\x68\xb5\x5a\xdd\x8a\x1b\xc4\x2b\xa5\x10\x04\x01" \
+    "\x5a\xad\x16\x7c\xcf\xc7\xae\xbb\x8b\x46\xa3\x81" \
+    "\x56\xab\x05\xc1\x02\xd2\x94\xdd\xdc\xb6\x6d\xdb" \
+    "\x32\x1a\x8d\x1e\x03\x42\xab\x42\xd7\x18\x4a\x29" \
+    "\xec\x34\x9b\xd8\xda\x6e\x74\x45\xb4\x5a\x6d\xac" \
+    "\xaf\xaf\x63\x67\x67\x07\xae\xeb\x76\x79\x21\xe4" \
+    "\x1b\x7c\x10\x04\x60\x66\xac\xaf\xaf\x43\x29\x15" \
+    "\x7e\x18\x11\x0c\xc3\x08\xdd\xee\xe9\x00\xd1\x68" \
+    "\xf4\x98\x8c\x44\x22\xf6\x9e\x08\x22\x0a\x6d\xab" \
+    "\xd5\xd0\x6c\x36\xfb\x0f\x9c\x0a\x70\xe1\xc2\x05" \
+    "\xa4\x52\x29\xdc\xbe\x7d\x1b\xd5\x6a\xf5\x50\x9e" \
+    "\x88\xc0\xcc\x30\x4c\x23\x74\x6b\x2f\x07\x00\x42" \
+    "\xe8\xf6\x5e\xcd\x45\x22\x11\x9b\x4d\xd3\x0c\x9d" \
+    "\x20\x06\x81\xb0\xbd\xbd\x0d\xdf\xf7\x61\x59\x56" \
+    "\x1f\x84\x10\xb0\x2c\x0b\xa7\x4f\x9f\xc6\xc2\xc2" \
+    "\x02\xb2\xd9\x6c\x58\xed\x87\xf0\xcc\x0c\xd3\x30" \
+    "\x61\x1a\x26\x8c\x0e\xc2\xb1\x11\x8e\x4d\x13\x00" \
+    "\x60\x9a\xe6\x31\xd6\x75\x3d\xc2\xcc\x81\x1f\xf8" \
+    "\xf0\x7c\x17\x20\x82\x65\x59\x9d\x87\xf7\x21\x84" \
+    "\xe8\x8e\x13\x89\x04\xe6\xe6\xe6\x70\xe5\xca\x95" \
+    "\x7f\xc4\x1f\x84\xd9\xc9\xc7\xcc\x81\xae\xeb\x11" \
+    "\xa9\xeb\xfa\x96\xe3\x38\xcd\xb5\xb5\x35\x7b\x74" \
+    "\x74\x14\x66\x77\xdf\xfa\x5b\xf7\x8d\xaf\x6e\xc0" \
+    "\xd0\x8d\xbe\x2d\x9a\xbd\x36\x8b\xdc\x99\xdc\x1b" \
+    "\xfc\xb5\x6b\xb3\x38\x93\xcb\xc1\x30\xf4\xfe\xa3" \
+    "\xbe\x57\x0f\x00\xca\xe5\x32\x1c\xc7\x69\xea\xba" \
+    "\xbe\x25\x35\x4d\x2b\x8d\x8d\x8d\x35\x9f\x3f\x7f" \
+    "\x6e\xa7\xd3\xe9\x03\xc7\x74\x3f\xc3\x4c\x3e\x87" \
+    "\x41\x31\x98\x27\xe4\x67\x66\xa0\x54\xf8\xde\x41" \
+    "\x51\x2c\x16\x31\x36\x36\xd6\xd4\x34\xad\xc4\x44" \
+    "\x54\xc8\xe7\xf3\x3b\xab\xab\xab\xee\xd2\xd2\x12" \
+    "\xa4\x94\x3d\xd0\xfe\x23\xc2\xf5\x9a\x26\x0f\xe4" \
+    "\x0b\xf1\xe4\xc9\x13\xbc\x7c\xf9\xd2\xcd\xe7\xf3" \
+    "\x3b\x44\x54\x90\xd1\x68\xf4\x7e\x26\x93\xb9\x5b" \
+    "\xab\xd5\xbe\x7c\xf4\xe8\xd1\x3b\x95\x4a\x45\x4c" \
+    "\x4d\x4d\x21\x9d\x4e\x43\x4a\xf9\xd6\x06\xf6\x6f" \
+    "\xc2\xf3\x3c\xbc\x7a\xf5\x0a\xcf\x9e\x3d\x43\xa9" \
+    "\x54\xf2\xcf\x9d\x3b\xb7\x9d\xc9\x64\xee\xea\xba" \
+    "\x7e\x9f\x3a\x4d\x63\xc8\xf3\xbc\xeb\xc5\x62\xf1" \
+    "\xfa\xd2\xd2\x92\xb9\xb2\xb2\x22\x2b\x95\x8a\xf0" \
+    "\x3c\xef\x48\x04\x00\x80\x94\x12\x43\x43\x43\xfe" \
+    "\xc4\xc4\x84\x97\xcb\xe5\x5a\xe3\xe3\xe3\xb7\xa4" \
+    "\x94\xb7\x00\x54\xa8\xb7\x2b\x02\xf8\x34\x08\x82" \
+    "\x4f\x88\xe8\x43\x00\xef\xe3\x88\xff\xac\x00\xac" \
+    "\x2a\xa5\x7e\x65\xe6\x1f\x00\x7c\xbf\x77\xe3\x6f" \
+    "\xdd\x28\xb3\x86\xae\x32\x95\x22\x00\x00\x00\x00" \
+    "\x49\x45\x4e\x44\xae\x42\x60\x82"
 image1_data = \
-  "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
-  "\x49\x48\x44\x52\x00\x00\x00\x21\x00\x00\x00\x14" \
-  "\x08\x06\x00\x00\x00\x03\x53\x54\x71\x00\x00\x04" \
-  "\x5f\x49\x44\x41\x54\x78\x9c\xad\x56\x4d\x6c\x13" \
-  "\x57\x10\xfe\x66\xe6\xed\x8f\xed\xa5\x76\xd6\x22" \
-  "\x89\x43\xb0\xaa\x86\x24\x92\x49\xd2\xc4\x05\xa1" \
-  "\x0a\xa9\x22\x5c\xda\x63\x85\x38\x94\x63\x7b\xe3" \
-  "\x80\xd4\x03\xa4\xa2\xf4\x06\x97\x9e\x11\xbd\x50" \
-  "\xd1\x6b\x8f\x3d\x16\x7a\xa8\x82\x28\xcd\x81\x8a" \
-  "\x10\xc4\x81\xd8\x0a\x15\x0a\x71\xe3\x38\x06\x1b" \
-  "\x3b\xc4\xf1\xee\xbe\x1e\x16\x07\x1b\x1c\x54\xd1" \
-  "\x8c\xf4\x69\xf7\x7d\xab\x37\xf3\xed\xcc\xbc\xd1" \
-  "\x23\xad\x35\x5a\x46\x44\x09\x00\x71\x00\x0e\x00" \
-  "\x0b\x00\x61\xf7\x4c\x03\x68\x00\xa8\x01\xa8\x68" \
-  "\xad\x9f\x6d\xc7\xd5\x5a\xe3\xd0\xa1\x43\x46\xb9" \
-  "\x5c\x1e\x18\x1d\x1d\xfd\x34\x99\x4c\x4e\x5b\x96" \
-  "\xf5\x91\x52\xea\x7d\x00\xc6\x2e\x8a\x68\x7a\x9e" \
-  "\xf7\x77\xa3\xd1\xf8\x6b\x7d\x7d\xfd\xf7\x87\x0f" \
-  "\x1f\x5e\x77\x5d\x77\xe5\xce\x9d\x3b\x4d\x05\x00" \
-  "\x91\x48\x64\xff\x91\x23\x47\xbe\x4c\xa7\xd3\x5f" \
-  "\x8d\x8f\x8d\x0f\x1c\x18\x3e\x80\x54\x7f\x0a\x4a" \
-  "\xa9\x5d\x53\xe0\xfb\xbe\x51\x28\x14\x86\xf3\xf9" \
-  "\xfc\xf0\xbd\x85\x7b\x9f\x24\x12\x89\xfd\xcb\xcb" \
-  "\xcb\x3f\x01\x58\xa2\x53\xa7\x4e\xf5\x19\x86\xf1" \
-  "\x45\x2a\x95\xfa\xe6\xf8\xf4\xf1\xd4\xf8\xf8\x38" \
-  "\xc2\xcc\xed\x66\x25\x3a\x6d\x61\x61\x01\x37\x7e" \
-  "\xbb\x51\x28\x95\x4a\xdf\x37\x9b\xcd\x9f\xd5\xe0" \
-  "\xe0\x60\xaa\x5a\xad\x1e\x9b\x18\x9f\x48\x4d\x4c" \
-  "\x7c\xd8\x26\xe0\xff\x8a\x08\x7b\x8d\x3a\x56\x00" \
-  "\x31\x21\x93\xc9\x60\x31\xb7\x98\xaa\xd7\xeb\xc7" \
-  "\xfa\xfa\xfa\x66\xd9\x75\xdd\x7e\x22\x9a\x1a\x19" \
-  "\x1d\x85\x08\x81\x45\x20\xc2\x60\x21\x48\x1b\xca" \
-  "\xe5\x52\xc7\xfa\x6d\x3c\x09\x61\xbd\x5c\x86\x08" \
-  "\x83\x44\x40\x22\x60\x11\x10\x33\x44\x04\x4d\xaf" \
-  "\x89\xfe\xfe\x7e\x10\xd1\x94\xeb\xba\xfd\x9c\x4c" \
-  "\x26\xf7\x06\x41\xb0\x6f\x70\x70\x10\xcc\x0c\x61" \
-  "\x06\x93\x84\xcf\x36\x5c\xbc\x74\x09\x73\x73\x73" \
-  "\x1d\xdc\x4e\xbc\x30\xe3\xd2\xc5\x8b\x60\x6a\xe3" \
-  "\x88\x20\x22\x10\x16\xd4\xeb\x75\x24\x7a\x12\x08" \
-  "\x82\x60\x5f\x32\x99\xdc\xcb\x89\x44\xc2\x01\xa0" \
-  "\x4c\x65\x80\x49\xc2\x8d\xc2\x2f\xdf\x5f\xa1\xd1" \
-  "\x68\xe0\xca\x95\x1f\x70\xf5\xea\x8f\xf0\x9a\xfe" \
-  "\x5b\x79\x21\x41\x63\xab\x11\x66\x95\x08\x42\x0c" \
-  "\x16\x81\xa1\x14\x6a\xf5\x1a\xaa\xd5\x2a\x22\x76" \
-  "\x04\x00\x54\x22\x91\x70\x38\x1e\x8f\xc7\x00\x84" \
-  "\x81\x5b\x60\xee\x5c\x0b\x83\x88\x40\x44\x98\x9d" \
-  "\x9d\xc5\x85\xef\x2e\x60\xb5\xb8\xba\x33\xaf\x42" \
-  "\x5e\x94\x40\x0c\x05\x31\x04\xc4\x84\x4a\xb5\x82" \
-  "\xd5\xd5\x55\x88\x08\x4c\xc3\x04\x00\xc4\xe3\xf1" \
-  "\x18\x3b\x8e\xe3\xb4\x8b\x20\x21\xb0\x30\x44\xc9" \
-  "\x1b\x22\x5a\xfd\xfa\x64\xe5\x09\xce\x7f\x7b\x1e" \
-  "\xb7\xfe\xb8\xd5\x95\xbf\x79\x73\x16\x41\x10\x60" \
-  "\x73\x73\x13\xf5\x5a\x1d\x4f\x9f\x3e\xc5\xca\xca" \
-  "\x0a\x4a\xa5\x12\x84\x05\xb6\x6d\xc3\x30\xc3\x11" \
-  "\xe4\x38\x8e\xa3\x62\xb1\xd8\x1e\x00\x60\x66\x80" \
-  "\x00\x06\x43\x6b\x8d\x17\x1b\x1b\x78\x5e\xab\x6f" \
-  "\xf7\xfa\xe6\x66\x03\x5b\x5b\x5b\xaf\x7a\x5f\x6b" \
-  "\xac\xad\xad\x75\xe5\xff\xf9\x67\x15\x8d\x46\x03" \
-  "\x6b\x6b\x6b\xd0\x5a\x43\x43\x83\x88\x60\x59\x56" \
-  "\x28\xba\x6d\x02\xc4\x62\xb1\x3d\x1c\x8d\x46\x9d" \
-  "\x96\x08\x61\x01\x00\x54\x2a\x15\x3c\xab\x54\xe0" \
-  "\xfb\xde\x36\xb4\x0e\x42\x87\x5a\xa3\xa7\xa7\x07" \
-  "\x67\xcf\x9e\xc5\xd1\xa3\x47\xbb\xf2\xd3\xd3\xd3" \
-  "\x60\x66\x58\xb6\x05\x3b\x62\x23\x1a\x89\x20\x62" \
-  "\xdb\xb0\x6c\x0b\x96\x65\xc1\xb4\x4d\x98\x66\x58" \
-  "\x8e\x68\x34\xea\x28\xdb\xb6\xc3\x4c\x10\x03\x00" \
-  "\x6a\xb5\x1a\x7c\xdf\x47\x24\x12\xe9\x38\xf5\x22" \
-  "\x02\x11\x41\x26\x93\xc1\xe9\xd3\xa7\xf1\xb2\x8a" \
-  "\x3b\xf2\xcc\x0c\xdb\xb2\x77\x9c\x20\xad\xf9\x61" \
-  "\xdb\xf6\x1e\x65\x9a\x66\x94\x99\x03\x3f\xf0\x59" \
-  "\xeb\x00\x20\x7a\x43\x40\x2b\xd8\x89\x13\x27\x70" \
-  "\xf2\xe4\xc9\xff\xcc\x5b\x96\xd5\x55\x04\x00\x78" \
-  "\x9e\x07\x66\x0e\x4c\xd3\x8c\x2a\xd3\x34\x9f\xbb" \
-  "\xae\xbb\xb1\xbc\xbc\xec\x0c\x0c\x0c\xc0\xde\xae" \
-  "\x5b\xe7\xe8\x9e\x39\x37\x83\x83\x07\x0f\xbe\xe1" \
-  "\xac\x1b\xaf\x01\x9c\x9b\x99\x81\x65\x99\xaf\x46" \
-  "\x25\x00\xb4\xfa\x01\x40\xa1\x50\x80\xeb\xba\x1b" \
-  "\xa6\x69\x3e\x57\x86\x61\xe4\x87\x86\x86\x36\x1e" \
-  "\x3c\x78\xe0\xa4\xd3\xe9\x50\x40\x87\xbb\xd0\xa6" \
-  "\xb2\x93\x5d\xff\xa8\x3b\x4f\xc8\x4e\x4d\x41\xeb" \
-  "\x30\x6e\x37\xcb\xe5\x72\x18\x1a\x1a\xda\x30\x0c" \
-  "\x23\xcf\x44\x34\x97\xcd\x66\x5f\x2c\x2d\x2d\x35" \
-  "\xe7\xe7\xe7\xa1\x94\x6a\x83\xf1\x8e\x08\xf7\x1b" \
-  "\x86\x7a\xcd\x5f\x88\xbb\x77\xef\xe2\xd1\xa3\x47" \
-  "\xcd\x6c\x36\xfb\x82\x88\xe6\x54\x2c\x16\xbb\x9e" \
-  "\xc9\x64\xae\x55\x2a\x95\xaf\x6f\xdf\xbe\xfd\x5e" \
-  "\xb1\x58\x94\xb1\xb1\x31\xa4\xd3\x69\x28\xa5\x5e" \
-  "\xcb\xcc\xbb\x9b\xe7\x79\x78\xfc\xf8\x31\xee\xdf" \
-  "\xbf\x8f\x7c\x3e\xef\x1f\x3e\x7c\xb8\x96\xc9\x64" \
-  "\xae\x99\xa6\x79\x9d\x5e\xde\xac\x7a\x3d\xcf\x3b" \
-  "\x93\xcb\xe5\xce\xcc\xcf\xcf\xdb\x8b\x8b\x8b\xaa" \
-  "\x58\x2c\x8a\xe7\x79\xbb\x22\x00\x00\x94\x52\xe8" \
-  "\xed\xed\xf5\x47\x46\x46\xbc\xc9\xc9\xc9\xcd\xe1" \
-  "\xe1\xe1\xcb\x4a\xa9\xcb\x00\x8a\xd4\x7e\xbd\x03" \
-  "\xf0\x79\x10\x04\x9f\x11\xd1\xc7\x00\x3e\xc0\x2e" \
-  "\xdf\xac\x00\x2c\x69\xad\xff\x64\xe6\x5f\x01\xfc" \
-  "\xd2\xfa\xf0\x2f\x4d\x6a\xb0\x0c\x1f\x49\x20\xa2" \
-  "\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82"
+    "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
+    "\x49\x48\x44\x52\x00\x00\x00\x21\x00\x00\x00\x14" \
+    "\x08\x06\x00\x00\x00\x03\x53\x54\x71\x00\x00\x04" \
+    "\x5f\x49\x44\x41\x54\x78\x9c\xad\x56\x4d\x6c\x13" \
+    "\x57\x10\xfe\x66\xe6\xed\x8f\xed\xa5\x76\xd6\x22" \
+    "\x89\x43\xb0\xaa\x86\x24\x92\x49\xd2\xc4\x05\xa1" \
+    "\x0a\xa9\x22\x5c\xda\x63\x85\x38\x94\x63\x7b\xe3" \
+    "\x80\xd4\x03\xa4\xa2\xf4\x06\x97\x9e\x11\xbd\x50" \
+    "\xd1\x6b\x8f\x3d\x16\x7a\xa8\x82\x28\xcd\x81\x8a" \
+    "\x10\xc4\x81\xd8\x0a\x15\x0a\x71\xe3\x38\x06\x1b" \
+    "\x3b\xc4\xf1\xee\xbe\x1e\x16\x07\x1b\x1c\x54\xd1" \
+    "\x8c\xf4\x69\xf7\x7d\xab\x37\xf3\xed\xcc\xbc\xd1" \
+    "\x23\xad\x35\x5a\x46\x44\x09\x00\x71\x00\x0e\x00" \
+    "\x0b\x00\x61\xf7\x4c\x03\x68\x00\xa8\x01\xa8\x68" \
+    "\xad\x9f\x6d\xc7\xd5\x5a\xe3\xd0\xa1\x43\x46\xb9" \
+    "\x5c\x1e\x18\x1d\x1d\xfd\x34\x99\x4c\x4e\x5b\x96" \
+    "\xf5\x91\x52\xea\x7d\x00\xc6\x2e\x8a\x68\x7a\x9e" \
+    "\xf7\x77\xa3\xd1\xf8\x6b\x7d\x7d\xfd\xf7\x87\x0f" \
+    "\x1f\x5e\x77\x5d\x77\xe5\xce\x9d\x3b\x4d\x05\x00" \
+    "\x91\x48\x64\xff\x91\x23\x47\xbe\x4c\xa7\xd3\x5f" \
+    "\x8d\x8f\x8d\x0f\x1c\x18\x3e\x80\x54\x7f\x0a\x4a" \
+    "\xa9\x5d\x53\xe0\xfb\xbe\x51\x28\x14\x86\xf3\xf9" \
+    "\xfc\xf0\xbd\x85\x7b\x9f\x24\x12\x89\xfd\xcb\xcb" \
+    "\xcb\x3f\x01\x58\xa2\x53\xa7\x4e\xf5\x19\x86\xf1" \
+    "\x45\x2a\x95\xfa\xe6\xf8\xf4\xf1\xd4\xf8\xf8\x38" \
+    "\xc2\xcc\xed\x66\x25\x3a\x6d\x61\x61\x01\x37\x7e" \
+    "\xbb\x51\x28\x95\x4a\xdf\x37\x9b\xcd\x9f\xd5\xe0" \
+    "\xe0\x60\xaa\x5a\xad\x1e\x9b\x18\x9f\x48\x4d\x4c" \
+    "\x7c\xd8\x26\xe0\xff\x8a\x08\x7b\x8d\x3a\x56\x00" \
+    "\x31\x21\x93\xc9\x60\x31\xb7\x98\xaa\xd7\xeb\xc7" \
+    "\xfa\xfa\xfa\x66\xd9\x75\xdd\x7e\x22\x9a\x1a\x19" \
+    "\x1d\x85\x08\x81\x45\x20\xc2\x60\x21\x48\x1b\xca" \
+    "\xe5\x52\xc7\xfa\x6d\x3c\x09\x61\xbd\x5c\x86\x08" \
+    "\x83\x44\x40\x22\x60\x11\x10\x33\x44\x04\x4d\xaf" \
+    "\x89\xfe\xfe\x7e\x10\xd1\x94\xeb\xba\xfd\x9c\x4c" \
+    "\x26\xf7\x06\x41\xb0\x6f\x70\x70\x10\xcc\x0c\x61" \
+    "\x06\x93\x84\xcf\x36\x5c\xbc\x74\x09\x73\x73\x73" \
+    "\x1d\xdc\x4e\xbc\x30\xe3\xd2\xc5\x8b\x60\x6a\xe3" \
+    "\x88\x20\x22\x10\x16\xd4\xeb\x75\x24\x7a\x12\x08" \
+    "\x82\x60\x5f\x32\x99\xdc\xcb\x89\x44\xc2\x01\xa0" \
+    "\x4c\x65\x80\x49\xc2\x8d\xc2\x2f\xdf\x5f\xa1\xd1" \
+    "\x68\xe0\xca\x95\x1f\x70\xf5\xea\x8f\xf0\x9a\xfe" \
+    "\x5b\x79\x21\x41\x63\xab\x11\x66\x95\x08\x42\x0c" \
+    "\x16\x81\xa1\x14\x6a\xf5\x1a\xaa\xd5\x2a\x22\x76" \
+    "\x04\x00\x54\x22\x91\x70\x38\x1e\x8f\xc7\x00\x84" \
+    "\x81\x5b\x60\xee\x5c\x0b\x83\x88\x40\x44\x98\x9d" \
+    "\x9d\xc5\x85\xef\x2e\x60\xb5\xb8\xba\x33\xaf\x42" \
+    "\x5e\x94\x40\x0c\x05\x31\x04\xc4\x84\x4a\xb5\x82" \
+    "\xd5\xd5\x55\x88\x08\x4c\xc3\x04\x00\xc4\xe3\xf1" \
+    "\x18\x3b\x8e\xe3\xb4\x8b\x20\x21\xb0\x30\x44\xc9" \
+    "\x1b\x22\x5a\xfd\xfa\x64\xe5\x09\xce\x7f\x7b\x1e" \
+    "\xb7\xfe\xb8\xd5\x95\xbf\x79\x73\x16\x41\x10\x60" \
+    "\x73\x73\x13\xf5\x5a\x1d\x4f\x9f\x3e\xc5\xca\xca" \
+    "\x0a\x4a\xa5\x12\x84\x05\xb6\x6d\xc3\x30\xc3\x11" \
+    "\xe4\x38\x8e\xa3\x62\xb1\xd8\x1e\x00\x60\x66\x80" \
+    "\x00\x06\x43\x6b\x8d\x17\x1b\x1b\x78\x5e\xab\x6f" \
+    "\xf7\xfa\xe6\x66\x03\x5b\x5b\x5b\xaf\x7a\x5f\x6b" \
+    "\xac\xad\xad\x75\xe5\xff\xf9\x67\x15\x8d\x46\x03" \
+    "\x6b\x6b\x6b\xd0\x5a\x43\x43\x83\x88\x60\x59\x56" \
+    "\x28\xba\x6d\x02\xc4\x62\xb1\x3d\x1c\x8d\x46\x9d" \
+    "\x96\x08\x61\x01\x00\x54\x2a\x15\x3c\xab\x54\xe0" \
+    "\xfb\xde\x36\xb4\x0e\x42\x87\x5a\xa3\xa7\xa7\x07" \
+    "\x67\xcf\x9e\xc5\xd1\xa3\x47\xbb\xf2\xd3\xd3\xd3" \
+    "\x60\x66\x58\xb6\x05\x3b\x62\x23\x1a\x89\x20\x62" \
+    "\xdb\xb0\x6c\x0b\x96\x65\xc1\xb4\x4d\x98\x66\x58" \
+    "\x8e\x68\x34\xea\x28\xdb\xb6\xc3\x4c\x10\x03\x00" \
+    "\x6a\xb5\x1a\x7c\xdf\x47\x24\x12\xe9\x38\xf5\x22" \
+    "\x02\x11\x41\x26\x93\xc1\xe9\xd3\xa7\xf1\xb2\x8a" \
+    "\x3b\xf2\xcc\x0c\xdb\xb2\x77\x9c\x20\xad\xf9\x61" \
+    "\xdb\xf6\x1e\x65\x9a\x66\x94\x99\x03\x3f\xf0\x59" \
+    "\xeb\x00\x20\x7a\x43\x40\x2b\xd8\x89\x13\x27\x70" \
+    "\xf2\xe4\xc9\xff\xcc\x5b\x96\xd5\x55\x04\x00\x78" \
+    "\x9e\x07\x66\x0e\x4c\xd3\x8c\x2a\xd3\x34\x9f\xbb" \
+    "\xae\xbb\xb1\xbc\xbc\xec\x0c\x0c\x0c\xc0\xde\xae" \
+    "\x5b\xe7\xe8\x9e\x39\x37\x83\x83\x07\x0f\xbe\xe1" \
+    "\xac\x1b\xaf\x01\x9c\x9b\x99\x81\x65\x99\xaf\x46" \
+    "\x25\x00\xb4\xfa\x01\x40\xa1\x50\x80\xeb\xba\x1b" \
+    "\xa6\x69\x3e\x57\x86\x61\xe4\x87\x86\x86\x36\x1e" \
+    "\x3c\x78\xe0\xa4\xd3\xe9\x50\x40\x87\xbb\xd0\xa6" \
+    "\xb2\x93\x5d\xff\xa8\x3b\x4f\xc8\x4e\x4d\x41\xeb" \
+    "\x30\x6e\x37\xcb\xe5\x72\x18\x1a\x1a\xda\x30\x0c" \
+    "\x23\xcf\x44\x34\x97\xcd\x66\x5f\x2c\x2d\x2d\x35" \
+    "\xe7\xe7\xe7\xa1\x94\x6a\x83\xf1\x8e\x08\xf7\x1b" \
+    "\x86\x7a\xcd\x5f\x88\xbb\x77\xef\xe2\xd1\xa3\x47" \
+    "\xcd\x6c\x36\xfb\x82\x88\xe6\x54\x2c\x16\xbb\x9e" \
+    "\xc9\x64\xae\x55\x2a\x95\xaf\x6f\xdf\xbe\xfd\x5e" \
+    "\xb1\x58\x94\xb1\xb1\x31\xa4\xd3\x69\x28\xa5\x5e" \
+    "\xcb\xcc\xbb\x9b\xe7\x79\x78\xfc\xf8\x31\xee\xdf" \
+    "\xbf\x8f\x7c\x3e\xef\x1f\x3e\x7c\xb8\x96\xc9\x64" \
+    "\xae\x99\xa6\x79\x9d\x5e\xde\xac\x7a\x3d\xcf\x3b" \
+    "\x93\xcb\xe5\xce\xcc\xcf\xcf\xdb\x8b\x8b\x8b\xaa" \
+    "\x58\x2c\x8a\xe7\x79\xbb\x22\x00\x00\x94\x52\xe8" \
+    "\xed\xed\xf5\x47\x46\x46\xbc\xc9\xc9\xc9\xcd\xe1" \
+    "\xe1\xe1\xcb\x4a\xa9\xcb\x00\x8a\xd4\x7e\xbd\x03" \
+    "\xf0\x79\x10\x04\x9f\x11\xd1\xc7\x00\x3e\xc0\x2e" \
+    "\xdf\xac\x00\x2c\x69\xad\xff\x64\xe6\x5f\x01\xfc" \
+    "\xd2\xfa\xf0\x2f\x4d\x6a\xb0\x0c\x1f\x49\x20\xa2" \
+    "\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82"
 image2_data = \
-  "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
-  "\x49\x48\x44\x52\x00\x00\x00\x27\x00\x00\x00\x27" \
-  "\x08\x06\x00\x00\x00\x8c\xa3\x51\x35\x00\x00\x0a" \
-  "\xca\x49\x44\x41\x54\x78\x9c\xad\x58\x5b\x6c\x54" \
-  "\xc7\x19\xfe\xe6\xb2\x67\x8f\xb3\x5e\xdb\x7b\xf7" \
-  "\x2e\x1b\x63\x0c\x06\x6c\xe3\x62\x17\xc9\x76\x9c" \
-  "\x98\xc4\x98\x4b\xb9\x24\xd0\x28\x0d\x95\x22\xf5" \
-  "\x25\x88\x87\xf6\xa1\x4f\xf4\xad\x80\x48\x23\xa5" \
-  "\x7d\xa7\x0f\x11\x95\xa2\x4a\x48\x8d\xa8\xd2\xaa" \
-  "\x54\x75\x2b\x27\x10\x94\x04\xe2\xa8\x14\x82\xaf" \
-  "\xd8\x1b\xdf\x64\x6c\xb3\xb6\x77\xf7\xac\xed\xbd" \
-  "\x9c\xbd\x4c\x1f\xce\xd9\xb3\xc7\xc6\xc6\xd0\x74" \
-  "\xa4\xd1\xce\x39\xfb\xcf\xcc\x37\xdf\xff\xfd\x33" \
-  "\xff\x19\x22\x84\xc0\xf3\x16\x42\x88\x0c\xc0\x06" \
-  "\xe0\x05\x00\x32\x00\x2b\x00\x0e\x80\x01\xc8\x01" \
-  "\xc8\x02\x48\x03\x48\x01\x48\x00\x58\x11\x42\xa4" \
-  "\x9e\x7b\x9e\x67\x05\x47\x08\xa1\x65\x65\x65\x15" \
-  "\xb2\x2c\x3b\xaa\xaa\xaa\x76\xf9\xfd\xfe\xe6\xd2" \
-  "\xd2\xd2\x5d\x92\x24\xd5\x70\xce\x83\x94\x52\x17" \
-  "\x21\xc4\x26\x84\x58\xc9\xe7\xf3\x8b\xd9\x6c\x76" \
-  "\x5a\x55\xd5\xb1\xe5\xe5\xe5\x87\xb3\xb3\xb3\xf7" \
-  "\xa6\xa6\xa6\x1e\xa6\x52\xa9\x68\x3c\x1e\x8f\x09" \
-  "\x21\xf2\xff\x37\x70\x75\x75\x75\xae\x74\x3a\xed" \
-  "\xae\xaf\xaf\xff\x91\xc3\xe1\x78\xc5\xed\x72\xbf" \
-  "\x5c\x55\x55\xe5\x0f\x04\x02\xf0\x78\x3d\x70\x39" \
-  "\x5d\xb0\xdb\xed\xb0\x5a\xad\x48\xa7\xd3\x58\x5a" \
-  "\x5a\xc2\x62\x64\x11\xf3\xe1\x79\xcc\xcc\xcc\x60" \
-  "\x6a\x6a\x6a\x76\x61\x71\xe1\xab\x68\x34\xfa\xe5" \
-  "\xe0\xe0\xe0\x3f\xad\x56\xeb\xc2\xd0\xd0\xd0\xe2" \
-  "\xf7\x02\xd7\xde\xde\x5e\xb2\xb2\xb2\x52\xb9\x75" \
-  "\xeb\xd6\x43\x0e\x87\xe3\x58\xcd\xb6\x6d\x47\x77" \
-  "\xed\xde\x2d\xed\xac\xdd\x89\xca\x4a\x9f\x66\x24" \
-  "\x08\x40\x04\x84\x00\x08\x00\x01\x02\x42\x04\xb4" \
-  "\x27\x40\x40\xe0\xf1\xdc\x63\x8c\x8e\x8e\x60\x78" \
-  "\x78\x58\x1d\x1b\x1f\xef\x8e\x46\xa3\xff\x98\x9c" \
-  "\x9c\xec\xb1\xd9\x6c\x73\xb7\x6f\xdf\x4e\x3e\x37" \
-  "\xb8\xce\xce\xce\x8a\x4c\x26\xb3\xa5\xba\xba\xfa" \
-  "\x4c\x20\x10\x78\xab\xa9\xa9\x29\xb8\x77\xef\x5e" \
-  "\x38\x2a\x1c\x9b\x2d\x78\xc3\x12\x8d\x46\xf1\xed" \
-  "\x83\x6f\x71\xff\xfe\xfd\xe9\x99\x99\x99\x3f\x4f" \
-  "\x4c\x4c\x5c\xb1\x58\x2c\x8f\x6e\xde\xbc\x19\x7b" \
-  "\x66\x70\x6f\xbe\xf9\xa6\x8b\x52\xfa\x03\xbb\xdd" \
-  "\x7e\xb6\xbe\xae\xfe\x74\x4b\x6b\x0b\xd9\x59\x5b" \
-  "\x8b\x02\x1b\x00\x60\x74\x23\x02\x10\x04\xc4\xf8" \
-  "\x4b\x40\x14\x38\x14\xd0\xfa\x10\xc0\x30\x07\x30" \
-  "\x32\x3a\x82\xde\xde\x6f\xc4\xd0\xd0\xe0\xc7\x4b" \
-  "\x4b\x4b\x1f\xe6\xf3\xf9\x07\x9f\x7c\xf2\xc9\x13" \
-  "\x6e\x7e\x02\xdc\x99\x33\x67\x9c\xaa\xaa\xfe\x50" \
-  "\x92\xa4\x5f\x34\x37\x35\x9f\xea\xe8\xe8\x80\xd7" \
-  "\xe3\x2d\xf8\xcc\x34\x51\xe1\x41\x00\x84\xc0\xf0" \
-  "\xa4\x10\x10\x3a\x52\xed\x51\xff\xdf\xbc\x28\x02" \
-  "\xcc\x87\xc3\xf8\xe2\xcb\x2f\x70\xef\xde\xbd\xbf" \
-  "\xaa\xaa\x7a\x59\x92\xa4\xff\x5c\xb9\x72\x25\x62" \
-  "\xc6\x42\xcd\x0f\xe7\xce\x9d\xb3\x71\xce\x6b\x64" \
-  "\x59\x3e\xdb\xdc\xdc\x7c\xea\xc0\x81\x03\xf0\xfa" \
-  "\xbc\x45\x2b\x7d\x06\x42\x00\x42\xc8\xaa\x5f\x18" \
-  "\x95\x18\x4d\xcd\x56\x07\x56\xe8\x4b\x35\x7b\xaf" \
-  "\xcf\x87\xae\xce\x03\x68\x6e\x6e\x3e\x25\xcb\xf2" \
-  "\x59\xce\x79\xcd\xb9\x73\xe7\x6c\x66\x3c\x7c\x0d" \
-  "\x93\xdb\x28\xa5\xef\x6e\xdf\xbe\xfd\xad\xfd\x1d" \
-  "\xfb\xe1\x74\x3a\xcd\x9e\x5c\xbf\x98\x91\x14\x96" \
-  "\xbb\x51\x8c\x15\x11\x03\x02\x70\x38\x9d\xd8\xdf" \
-  "\xb1\x1f\xc9\x44\xf2\xad\xb1\xf1\xb1\x45\x00\x97" \
-  "\x01\xf4\x9b\x87\x02\x00\x5c\xbc\x78\x31\x98\xcb" \
-  "\xe5\x8e\x95\x97\x97\xbf\xd1\xd6\xd6\x46\x7c\x3e" \
-  "\x9f\xb1\x6a\x02\xa2\x33\xb4\x41\xc5\x06\xed\x67" \
-  "\xb0\xf7\xf9\x7c\x68\x7b\xa9\x8d\xd8\x6c\xb6\x37" \
-  "\x72\xb9\xdc\xb1\x8b\x17\x2f\x06\x57\x81\xbb\x76" \
-  "\xed\x1a\xb3\xd9\x6c\xdb\x32\x99\xcc\xa1\xa6\xbd" \
-  "\x4d\x81\xdd\xbb\x77\x69\xee\x21\x04\x20\x54\xd3" \
-  "\x34\x21\x45\xb7\x99\xda\xd0\xdb\x66\x37\x63\x8d" \
-  "\x9b\x61\x02\x66\x1e\xa3\x50\x77\xee\xdc\x89\x9a" \
-  "\x6d\x35\x81\x4c\x26\x73\xc8\x66\xb3\x6d\xbb\x76" \
-  "\xed\x1a\x33\xc0\x29\x8a\x52\xa5\x28\xca\x09\xaf" \
-  "\xd7\xbb\xbf\xa9\xb9\x19\x00\x05\xd5\x3b\x52\xbd" \
-  "\x82\x10\x50\x42\x91\x4a\x26\xf0\xc1\x6f\x3f\xc0" \
-  "\x77\xa1\xef\x40\x09\xf4\x5a\x58\x00\xd5\xfb\x50" \
-  "\x53\x35\x6b\x93\x80\x90\xe2\xd8\x84\x00\x94\x31" \
-  "\xac\xac\xac\x20\xf8\x62\x10\x76\xbb\x7d\xbf\xa2" \
-  "\x28\x27\x14\x45\xa9\x32\x34\xc7\x18\xab\x4a\x24" \
-  "\x12\xfb\x9a\x9a\x9a\x24\x97\xcb\xb5\x46\x26\x02" \
-  "\x02\xb4\x28\x25\x42\xd1\xdf\xdf\x8f\xfe\xfe\x7e" \
-  "\xd4\xd7\x37\xe0\xf4\xdb\x3f\xc1\x8e\xda\x5a\x10" \
-  "\x50\x3d\xa0\x8d\x8d\xc4\x08\x70\x6a\x12\x25\x31" \
-  "\x62\x9d\x18\xa3\x2e\x2e\x2c\xc2\x6e\xb7\x23\x18" \
-  "\x0c\x4a\xa1\x50\x68\x1f\x63\xac\x0a\xc0\x38\x6b" \
-  "\x68\x68\x70\xc6\x62\xb1\xa3\x4b\x4b\x4b\x6f\x1f" \
-  "\xec\xea\x7a\xa1\xcc\x5e\xa6\xad\x8a\xae\xaf\x9f" \
-  "\x6c\x36\x8b\xeb\x7f\xbb\x0e\x02\x82\x85\xf9\x79" \
-  "\x7c\xfe\xf9\x2d\x0c\x3f\x1c\x46\xc0\x1f\x80\xd3" \
-  "\xe5\x32\xb1\xb2\xb6\xe2\x89\x77\x8c\x33\x44\x63" \
-  "\x51\x2c\x46\x16\x41\x29\x85\x64\x95\x30\x31\x31" \
-  "\x51\x6e\xb7\xdb\x43\x93\x93\x93\x23\x54\x92\xa4" \
-  "\x4a\x45\x51\xf6\x04\xb7\x04\x5d\xfe\xc0\x16\x5d" \
-  "\x17\x4f\x02\xc3\x86\x9a\x02\x06\x07\x07\x71\xe1" \
-  "\xe2\x05\xbc\xff\xfe\x6f\x30\x1a\x0a\xad\xb2\x2d" \
-  "\x6e\x35\xab\x81\x32\xce\x91\x48\x24\x10\x0e\x87" \
-  "\xc1\x18\x05\x63\x14\x2e\xa7\x0b\x4e\xa7\xd3\xa5" \
-  "\x28\xca\x1e\x49\x92\x2a\xa9\x2c\xcb\xbe\x44\x22" \
-  "\x51\x1d\x7c\x31\xb8\x4a\x0b\x05\x40\x85\x41\xa9" \
-  "\xae\x17\x52\x3c\x0a\x9e\x28\x83\x83\x83\xb8\x70" \
-  "\xe1\x3c\xde\x7b\xef\x12\x42\xa1\xef\x56\xe9\xcc" \
-  "\xd0\x23\x25\x60\x8c\x61\x69\x29\x8e\xe9\xe9\x69" \
-  "\xe4\xf3\x79\x30\xc6\x41\x29\x05\x65\x0c\x1e\xaf" \
-  "\x17\x89\x44\xa2\x5a\x96\x65\x1f\xb5\x58\x2c\x95" \
-  "\xa9\x54\x2a\xe0\xaf\xf4\x1b\xa0\x8c\x60\xa0\xeb" \
-  "\xbb\x47\xdf\x5c\x8a\xec\xae\x69\x0f\x0f\x0d\xe3" \
-  "\xfc\xf9\xf3\xb8\x74\xe9\x12\x46\x43\xa3\x9a\x0b" \
-  "\xa9\xc6\x8e\x10\x02\xf3\x8b\x0b\x98\x79\xf4\x08" \
-  "\x79\x91\x07\xe7\x3a\x30\xca\xc0\x28\x85\xcb\xe9" \
-  "\x44\x2a\x95\x0a\x58\x2c\x96\x4a\x2e\x49\x92\x53" \
-  "\x55\x55\xb7\xdb\xeb\xd1\x42\x4f\x40\x97\xb0\x28" \
-  "\x1c\x8b\xba\xb8\x85\x11\x10\x4f\x90\x47\xd6\x6f" \
-  "\x0f\x0d\x0f\xe1\xfc\xf9\xf3\xa8\xaf\xab\xc3\xdb" \
-  "\xa7\x4f\xc3\xe7\xf3\x21\xae\xc4\x91\x56\xd3\xa0" \
-  "\x8c\xad\xeb\x05\x87\xc3\x01\x55\x55\xdd\x92\x24" \
-  "\x39\xb9\xd5\x6a\x75\x64\xb3\x59\x7b\x45\x59\xb9" \
-  "\xb1\x25\x08\x00\x44\x68\x71\xa5\xb1\xa9\xc7\x9c" \
-  "\x80\xb6\xad\x3c\xad\x08\x2d\x62\x85\xd0\x6a\x3e" \
-  "\x9f\xc7\xbd\xfb\xf7\xf1\xef\xbb\x77\x51\x53\x53" \
-  "\x83\xe3\xc7\x8f\x63\xfb\xf6\xed\xa6\xa3\x5a\x8f" \
-  "\x5f\x22\x00\x01\x94\x96\x96\x22\x9b\xcd\xda\xad" \
-  "\x56\xab\x83\x72\xce\x4b\x73\xb9\x9c\x55\x96\xad" \
-  "\x86\x70\xa9\x2e\x74\x6a\x88\x5e\xd7\x21\xd5\xa2" \
-  "\x18\xd0\x0e\xf4\x5c\x36\x8b\x4c\x26\x03\x55\x55" \
-  "\x91\x4e\xa7\x91\x4a\xa5\x90\x4c\x25\x91\x4a\xa5" \
-  "\x90\x4e\xa7\x91\x4e\xa7\x91\xc9\x64\x90\xcb\xe5" \
-  "\x00\x00\xe3\xe3\xe3\xb8\x7c\xf9\x32\xee\xde\xbd" \
-  "\x0b\xc6\x39\x38\xe7\x60\x9c\x81\x33\x06\x4e\x39" \
-  "\x38\xe3\x28\x29\x79\x01\xb9\x5c\xce\xca\x39\x2f" \
-  "\xe5\x92\x24\x11\xc6\x58\x5a\x55\x33\x56\xb9\x44" \
-  "\x46\x21\x9f\x28\x10\x44\xf4\x73\x92\x50\x82\x4c" \
-  "\x26\x83\xa5\xf8\x12\x54\x55\x45\x3e\x9f\xc3\x66" \
-  "\x49\xb4\xd9\x6d\x94\x52\xb4\xb4\xb4\xe0\xc8\x91" \
-  "\x23\xf0\x79\xbd\x28\x4c\x50\x48\x52\x0b\xb4\xa7" \
-  "\x55\x15\x8c\xb1\xb4\x24\x49\x84\x73\xce\x55\x59" \
-  "\x96\x93\xf1\x78\xdc\x2a\x97\x94\xe8\xda\xd2\xc0" \
-  "\x09\x21\x0c\xa6\x56\x56\x12\x50\x94\x18\x14\x45" \
-  "\x41\x3e\x9f\x5f\xb5\x80\xa7\x15\x4a\x29\x5a\x5b" \
-  "\x5b\x71\xec\xe8\x31\xb8\xbd\x1e\xac\x5d\x91\x49" \
-  "\xcd\x00\x80\x64\x32\x09\x59\x96\x93\x9c\x73\x95" \
-  "\x73\xce\x15\xbb\xdd\xbe\x3c\xbf\x30\x5f\xe1\xab" \
-  "\xf4\xa1\x10\x89\x80\x00\x65\x14\xd9\x4c\x16\x8a" \
-  "\xa2\x20\x99\xd4\xb2\x69\x49\x92\x9e\xba\x9d\x98" \
-  "\x41\xb5\xb5\xb5\xe1\xf8\xf1\xe3\xf0\x78\x3c\x9b" \
-  "\xaf\x42\x2f\xf1\x78\x1c\x76\xbb\x7d\x99\x73\xae" \
-  "\x70\x8b\xc5\x12\x76\xb9\x5c\xf1\xb9\xb9\x39\x34" \
-  "\x36\x36\x16\x57\x44\x28\x72\xb9\x1c\x62\x31\x05" \
-  "\xaa\xaa\x82\x73\x6e\x4c\xfa\x34\x70\x94\x52\xbc" \
-  "\xd4\xd6\x86\xe3\x27\x4e\x68\xb9\xa0\x41\x8a\x91" \
-  "\x6e\xea\x19\x13\x29\x66\x9e\x26\xe6\x22\x91\x08" \
-  "\x5c\x2e\x57\xdc\x62\xb1\x84\x39\x63\x6c\x7a\xcb" \
-  "\x96\x2d\xf1\xa9\xa9\x29\x83\x31\x42\x08\x72\xf9" \
-  "\x3c\x14\x45\x81\x10\x39\x58\x24\x8b\xae\x3d\x01" \
-  "\xce\xf8\xba\xe0\x28\xa5\x78\xa9\xbd\x1d\x27\xdf" \
-  "\x38\x09\x8f\xdb\x05\x53\x86\xae\x47\xb0\x9e\xbd" \
-  "\xe8\x22\x13\x20\x85\x00\x35\xb6\x2d\x08\x60\x6e" \
-  "\x6e\x0e\x5b\xb7\x6e\x8d\x33\xc6\xa6\x39\x21\x24" \
-  "\x54\x5b\x5b\x3b\xfb\xe0\xc1\x83\xe4\xcc\xec\xa3" \
-  "\x92\xc0\x16\x2d\x9d\x4a\x24\x12\xc6\xee\xad\x0d" \
-  "\xaa\x81\x60\x6b\xf6\x27\x4a\x29\xda\xdb\xdb\x71" \
-  "\xf2\xe4\x49\x78\xbc\x9e\x22\x13\x62\x0d\x38\x83" \
-  "\xb8\x22\x83\x66\x4e\x05\x01\xc2\x73\x8f\x11\x8b" \
-  "\xc5\x92\x07\x0f\x1e\x9c\x25\x84\x84\x78\x20\x10" \
-  "\x98\xb2\x58\x2c\xdf\x78\x3c\x9e\x7d\x03\x03\x83" \
-  "\x55\xc1\xe0\x8b\x48\xa7\xd3\xc8\x66\xb3\xb0\x58" \
-  "\x2c\x4f\x30\xc4\x38\xd3\x4f\x0f\x8a\x8e\x8e\x0e" \
-  "\x0d\xd4\x73\x68\xea\x69\x65\x34\x14\x82\xd7\xeb" \
-  "\x9d\xf7\xfb\xfd\xdf\x78\x3c\x9e\xa9\x42\xca\x74" \
-  "\xb7\xa1\xa1\x21\xd6\xdb\xdb\x1b\xdc\xb7\x6f\x1f" \
-  "\x95\x65\x19\x8c\xf3\x75\x33\x74\x49\x92\xd0\xd9" \
-  "\xd9\x89\x53\xa7\x4e\x6d\x0a\x4a\xdb\xcc\x51\xdc" \
-  "\xd8\x9f\x62\x1b\x89\x44\x30\x3a\x3a\x9a\x6f\x6f" \
-  "\x6f\x8f\x31\xc6\xee\x02\xc5\xaf\x2f\xab\xa2\x28" \
-  "\xef\x5d\xbd\x7a\xf5\x67\x7e\xbf\xdf\xf7\xda\x6b" \
-  "\xaf\x15\x07\xdf\x74\x76\xf3\x67\xdf\x66\x3d\xc4" \
-  "\x6a\x2b\x53\xff\xcf\x3e\xfd\x14\xf3\xf3\xf3\x8f" \
-  "\xdf\x79\xe7\x9d\x3f\x96\x97\x97\xff\x1a\x40\xba" \
-  "\xf0\x0d\x91\x06\xd0\xd3\xd2\xd2\xf2\x78\x64\x64" \
-  "\x24\xf5\xf0\xe1\x43\x30\x46\xc1\x19\x03\x65\x14" \
-  "\x94\x51\x30\xc6\xc0\xf4\x36\xa5\xda\x33\xe5\x0c" \
-  "\x8c\x31\x70\x46\xc1\x28\x03\x65\x1c\x94\x32\x3d" \
-  "\xc3\x28\xf6\x61\x85\x77\x94\x83\x51\x06\xae\x27" \
-  "\x01\x8c\x6b\x63\x8d\x8e\x8c\x60\x6c\x6c\x2c\xd5" \
-  "\xd2\xd2\xf2\x18\x40\x8f\x8e\xa7\xf8\xf5\x55\x5e" \
-  "\x5e\xde\x53\x57\x57\x77\x75\x76\x76\xf6\x97\x77" \
-  "\xee\xdc\x09\xb8\x3d\x6e\xf8\x2b\xfd\xc0\xaa\x2d" \
-  "\xd2\x4c\x80\xb6\x64\x23\x36\x84\xd0\x6e\x26\x60" \
-  "\x66\xb2\x10\x1c\xe6\x8d\x76\x75\x9e\x3c\x3b\x37" \
-  "\x87\xdb\xb7\x6f\xa3\xbe\xbe\x3e\x52\x57\x57\x77" \
-  "\xd5\x66\xb3\xf5\x14\xa6\x59\xf5\xdd\xca\x18\xfb" \
-  "\xb8\xab\xab\xeb\xef\x1e\x8f\x27\x72\xe3\xb3\x1b" \
-  "\x88\x46\xa3\x7a\x2a\xb3\xa6\x32\x66\xa4\x40\x1a" \
-  "\x23\x5a\x2e\xa6\x31\x54\xb4\x2b\xa4\x42\x45\x16" \
-  "\x75\x26\x75\x8f\x44\x63\x31\xdc\xb8\x71\x03\x1e" \
-  "\x8f\x27\xd2\xd5\xd5\xf5\x77\xc6\xd8\xc7\x66\x3c" \
-  "\xab\xc0\xc9\xb2\x3c\x49\x08\xf9\xe8\xf0\xe1\xc3" \
-  "\x77\x24\x49\x8a\x77\x77\x77\x23\x1c\x7e\xac\x4d" \
-  "\xc8\x34\x00\x85\xbc\xab\x00\x92\x9a\x5d\x4f\xf5" \
-  "\x67\xb3\x5b\x69\xd1\x46\x73\xb1\xf6\x3e\x1c\x0e" \
-  "\xa3\xbb\xbb\x1b\x92\x24\xc5\x0f\x1f\x3e\x7c\x87" \
-  "\x10\xf2\x91\x2c\xcb\x93\x66\x3c\xeb\xde\x95\xa4" \
-  "\x52\xa9\xce\xe5\xe5\xe5\x5f\xf5\xf4\xf4\xbc\x12" \
-  "\x0e\x87\x4b\x5f\x7d\xf5\x55\xec\xd9\xb3\xc7\xac" \
-  "\xe9\xef\x55\xfa\xfb\xfb\x71\xeb\xd6\x2d\x78\xbd" \
-  "\xde\xe5\x43\x87\x0e\x7d\x59\x5a\x5a\xfa\x3b\x59" \
-  "\x96\x6f\xae\xb5\xdb\xf0\x96\x29\x9b\xcd\xbe\x2c" \
-  "\x84\xf8\xf9\xcd\x9b\x37\x5f\xef\xeb\xeb\x2b\xa9" \
-  "\xad\xad\xe5\x6d\x6d\xad\x70\xb9\xdd\x28\xdc\x7c" \
-  "\x08\xb3\xe6\x9e\xa1\x2c\x2c\x2c\xe0\xeb\xaf\xbf" \
-  "\xc6\xe8\xe8\x68\xb6\xb1\xb1\x31\xd9\xd9\xd9\x79" \
-  "\x9d\x10\xf2\x7b\xce\xf9\x57\xeb\xd9\x6f\x76\x79" \
-  "\x58\x93\xcd\x66\xdf\x0d\x85\x42\x67\x7b\x7b\x7b" \
-  "\xed\xe1\x70\x58\x6a\x68\x68\x20\x8d\x8d\x8d\x08" \
-  "\x06\x83\x6b\x4c\x4d\xc7\xc8\x6a\xed\x63\x7a\x7a" \
-  "\x1a\x7d\x7d\x7d\x18\x18\x18\x10\x5e\xaf\x57\x6d" \
-  "\x6d\x6d\x5d\xda\xb1\x63\xc7\x87\x9c\xf3\x3f\x00" \
-  "\x18\xdb\x68\xf2\x67\xba\xd9\xcc\xe5\x72\x3f\x06" \
-  "\xf0\xd3\x81\x81\x81\xd7\xfb\xfa\xfa\xf8\xc4\xc4" \
-  "\x04\x73\x3a\x9d\xb4\xba\xba\x1a\x81\x40\x00\x5e" \
-  "\xaf\x17\x15\x15\x15\x90\x65\x19\xa9\x54\x0a\xb1" \
-  "\x58\x0c\xe1\x70\x18\x33\x33\x33\x98\x98\x98\x40" \
-  "\x24\x12\xc9\x57\x57\x57\xe7\x1a\x1b\x1b\xb3\x0d" \
-  "\x0d\x0d\xd7\x01\xfc\x89\x31\xf6\x97\xcd\xe6\x7d" \
-  "\xe6\x3b\x61\x00\x25\xb9\x5c\xee\x75\x42\xc8\x91" \
-  "\xc5\xc5\xc5\xa3\x63\x63\x63\xee\xa9\xa9\x29\x32" \
-  "\x3b\x3b\x4b\x17\x16\x16\x48\x3c\x1e\x27\xa9\x54" \
-  "\x0a\xb2\x2c\xa3\xac\xac\x4c\xb8\xdd\x6e\xe1\xf7" \
-  "\xfb\xf3\x55\x55\x55\xa2\xa6\xa6\x66\xc1\xe5\x72" \
-  "\x75\x0b\x21\xfe\xc5\x18\xbb\x0e\x60\xc3\xdb\xcc" \
-  "\xff\x15\x9c\xb9\xec\x02\xd0\x0a\x60\xaf\x10\xa2" \
-  "\x0e\xc0\x36\x00\x5e\x00\x76\x00\x4b\x00\xc2\x00" \
-  "\xc6\x09\x21\x43\x00\xbe\x05\xd0\x0b\xe0\xe1\xf3" \
-  "\x4e\xf2\x5f\x67\xef\x27\x63\x41\x5f\xa3\x16\x00" \
-  "\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82"
+    "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
+    "\x49\x48\x44\x52\x00\x00\x00\x27\x00\x00\x00\x27" \
+    "\x08\x06\x00\x00\x00\x8c\xa3\x51\x35\x00\x00\x0a" \
+    "\xca\x49\x44\x41\x54\x78\x9c\xad\x58\x5b\x6c\x54" \
+    "\xc7\x19\xfe\xe6\xb2\x67\x8f\xb3\x5e\xdb\x7b\xf7" \
+    "\x2e\x1b\x63\x0c\x06\x6c\xe3\x62\x17\xc9\x76\x9c" \
+    "\x98\xc4\x98\x4b\xb9\x24\xd0\x28\x0d\x95\x22\xf5" \
+    "\x25\x88\x87\xf6\xa1\x4f\xf4\xad\x80\x48\x23\xa5" \
+    "\x7d\xa7\x0f\x11\x95\xa2\x4a\x48\x8d\xa8\xd2\xaa" \
+    "\x54\x75\x2b\x27\x10\x94\x04\xe2\xa8\x14\x82\xaf" \
+    "\xd8\x1b\xdf\x64\x6c\xb3\xb6\x77\xf7\xac\xed\xbd" \
+    "\x9c\xbd\x4c\x1f\xce\xd9\xb3\xc7\xc6\xc6\xd0\x74" \
+    "\xa4\xd1\xce\x39\xfb\xcf\xcc\x37\xdf\xff\xfd\x33" \
+    "\xff\x19\x22\x84\xc0\xf3\x16\x42\x88\x0c\xc0\x06" \
+    "\xe0\x05\x00\x32\x00\x2b\x00\x0e\x80\x01\xc8\x01" \
+    "\xc8\x02\x48\x03\x48\x01\x48\x00\x58\x11\x42\xa4" \
+    "\x9e\x7b\x9e\x67\x05\x47\x08\xa1\x65\x65\x65\x15" \
+    "\xb2\x2c\x3b\xaa\xaa\xaa\x76\xf9\xfd\xfe\xe6\xd2" \
+    "\xd2\xd2\x5d\x92\x24\xd5\x70\xce\x83\x94\x52\x17" \
+    "\x21\xc4\x26\x84\x58\xc9\xe7\xf3\x8b\xd9\x6c\x76" \
+    "\x5a\x55\xd5\xb1\xe5\xe5\xe5\x87\xb3\xb3\xb3\xf7" \
+    "\xa6\xa6\xa6\x1e\xa6\x52\xa9\x68\x3c\x1e\x8f\x09" \
+    "\x21\xf2\xff\x37\x70\x75\x75\x75\xae\x74\x3a\xed" \
+    "\xae\xaf\xaf\xff\x91\xc3\xe1\x78\xc5\xed\x72\xbf" \
+    "\x5c\x55\x55\xe5\x0f\x04\x02\xf0\x78\x3d\x70\x39" \
+    "\x5d\xb0\xdb\xed\xb0\x5a\xad\x48\xa7\xd3\x58\x5a" \
+    "\x5a\xc2\x62\x64\x11\xf3\xe1\x79\xcc\xcc\xcc\x60" \
+    "\x6a\x6a\x6a\x76\x61\x71\xe1\xab\x68\x34\xfa\xe5" \
+    "\xe0\xe0\xe0\x3f\xad\x56\xeb\xc2\xd0\xd0\xd0\xe2" \
+    "\xf7\x02\xd7\xde\xde\x5e\xb2\xb2\xb2\x52\xb9\x75" \
+    "\xeb\xd6\x43\x0e\x87\xe3\x58\xcd\xb6\x6d\x47\x77" \
+    "\xed\xde\x2d\xed\xac\xdd\x89\xca\x4a\x9f\x66\x24" \
+    "\x08\x40\x04\x84\x00\x08\x00\x01\x02\x42\x04\xb4" \
+    "\x27\x40\x40\xe0\xf1\xdc\x63\x8c\x8e\x8e\x60\x78" \
+    "\x78\x58\x1d\x1b\x1f\xef\x8e\x46\xa3\xff\x98\x9c" \
+    "\x9c\xec\xb1\xd9\x6c\x73\xb7\x6f\xdf\x4e\x3e\x37" \
+    "\xb8\xce\xce\xce\x8a\x4c\x26\xb3\xa5\xba\xba\xfa" \
+    "\x4c\x20\x10\x78\xab\xa9\xa9\x29\xb8\x77\xef\x5e" \
+    "\x38\x2a\x1c\x9b\x2d\x78\xc3\x12\x8d\x46\xf1\xed" \
+    "\x83\x6f\x71\xff\xfe\xfd\xe9\x99\x99\x99\x3f\x4f" \
+    "\x4c\x4c\x5c\xb1\x58\x2c\x8f\x6e\xde\xbc\x19\x7b" \
+    "\x66\x70\x6f\xbe\xf9\xa6\x8b\x52\xfa\x03\xbb\xdd" \
+    "\x7e\xb6\xbe\xae\xfe\x74\x4b\x6b\x0b\xd9\x59\x5b" \
+    "\x8b\x02\x1b\x00\x60\x74\x23\x02\x10\x04\xc4\xf8" \
+    "\x4b\x40\x14\x38\x14\xd0\xfa\x10\xc0\x30\x07\x30" \
+    "\x32\x3a\x82\xde\xde\x6f\xc4\xd0\xd0\xe0\xc7\x4b" \
+    "\x4b\x4b\x1f\xe6\xf3\xf9\x07\x9f\x7c\xf2\xc9\x13" \
+    "\x6e\x7e\x02\xdc\x99\x33\x67\x9c\xaa\xaa\xfe\x50" \
+    "\x92\xa4\x5f\x34\x37\x35\x9f\xea\xe8\xe8\x80\xd7" \
+    "\xe3\x2d\xf8\xcc\x34\x51\xe1\x41\x00\x84\xc0\xf0" \
+    "\xa4\x10\x10\x3a\x52\xed\x51\xff\xdf\xbc\x28\x02" \
+    "\xcc\x87\xc3\xf8\xe2\xcb\x2f\x70\xef\xde\xbd\xbf" \
+    "\xaa\xaa\x7a\x59\x92\xa4\xff\x5c\xb9\x72\x25\x62" \
+    "\xc6\x42\xcd\x0f\xe7\xce\x9d\xb3\x71\xce\x6b\x64" \
+    "\x59\x3e\xdb\xdc\xdc\x7c\xea\xc0\x81\x03\xf0\xfa" \
+    "\xbc\x45\x2b\x7d\x06\x42\x00\x42\xc8\xaa\x5f\x18" \
+    "\x95\x18\x4d\xcd\x56\x07\x56\xe8\x4b\x35\x7b\xaf" \
+    "\xcf\x87\xae\xce\x03\x68\x6e\x6e\x3e\x25\xcb\xf2" \
+    "\x59\xce\x79\xcd\xb9\x73\xe7\x6c\x66\x3c\x7c\x0d" \
+    "\x93\xdb\x28\xa5\xef\x6e\xdf\xbe\xfd\xad\xfd\x1d" \
+    "\xfb\xe1\x74\x3a\xcd\x9e\x5c\xbf\x98\x91\x14\x96" \
+    "\xbb\x51\x8c\x15\x11\x03\x02\x70\x38\x9d\xd8\xdf" \
+    "\xb1\x1f\xc9\x44\xf2\xad\xb1\xf1\xb1\x45\x00\x97" \
+    "\x01\xf4\x9b\x87\x02\x00\x5c\xbc\x78\x31\x98\xcb" \
+    "\xe5\x8e\x95\x97\x97\xbf\xd1\xd6\xd6\x46\x7c\x3e" \
+    "\x9f\xb1\x6a\x02\xa2\x33\xb4\x41\xc5\x06\xed\x67" \
+    "\xb0\xf7\xf9\x7c\x68\x7b\xa9\x8d\xd8\x6c\xb6\x37" \
+    "\x72\xb9\xdc\xb1\x8b\x17\x2f\x06\x57\x81\xbb\x76" \
+    "\xed\x1a\xb3\xd9\x6c\xdb\x32\x99\xcc\xa1\xa6\xbd" \
+    "\x4d\x81\xdd\xbb\x77\x69\xee\x21\x04\x20\x54\xd3" \
+    "\x34\x21\x45\xb7\x99\xda\xd0\xdb\x66\x37\x63\x8d" \
+    "\x9b\x61\x02\x66\x1e\xa3\x50\x77\xee\xdc\x89\x9a" \
+    "\x6d\x35\x81\x4c\x26\x73\xc8\x66\xb3\x6d\xbb\x76" \
+    "\xed\x1a\x33\xc0\x29\x8a\x52\xa5\x28\xca\x09\xaf" \
+    "\xd7\xbb\xbf\xa9\xb9\x19\x00\x05\xd5\x3b\x52\xbd" \
+    "\x82\x10\x50\x42\x91\x4a\x26\xf0\xc1\x6f\x3f\xc0" \
+    "\x77\xa1\xef\x40\x09\xf4\x5a\x58\x00\xd5\xfb\x50" \
+    "\x53\x35\x6b\x93\x80\x90\xe2\xd8\x84\x00\x94\x31" \
+    "\xac\xac\xac\x20\xf8\x62\x10\x76\xbb\x7d\xbf\xa2" \
+    "\x28\x27\x14\x45\xa9\x32\x34\xc7\x18\xab\x4a\x24" \
+    "\x12\xfb\x9a\x9a\x9a\x24\x97\xcb\xb5\x46\x26\x02" \
+    "\x02\xb4\x28\x25\x42\xd1\xdf\xdf\x8f\xfe\xfe\x7e" \
+    "\xd4\xd7\x37\xe0\xf4\xdb\x3f\xc1\x8e\xda\x5a\x10" \
+    "\x50\x3d\xa0\x8d\x8d\xc4\x08\x70\x6a\x12\x25\x31" \
+    "\x62\x9d\x18\xa3\x2e\x2e\x2c\xc2\x6e\xb7\x23\x18" \
+    "\x0c\x4a\xa1\x50\x68\x1f\x63\xac\x0a\xc0\x38\x6b" \
+    "\x68\x68\x70\xc6\x62\xb1\xa3\x4b\x4b\x4b\x6f\x1f" \
+    "\xec\xea\x7a\xa1\xcc\x5e\xa6\xad\x8a\xae\xaf\x9f" \
+    "\x6c\x36\x8b\xeb\x7f\xbb\x0e\x02\x82\x85\xf9\x79" \
+    "\x7c\xfe\xf9\x2d\x0c\x3f\x1c\x46\xc0\x1f\x80\xd3" \
+    "\xe5\x32\xb1\xb2\xb6\xe2\x89\x77\x8c\x33\x44\x63" \
+    "\x51\x2c\x46\x16\x41\x29\x85\x64\x95\x30\x31\x31" \
+    "\x51\x6e\xb7\xdb\x43\x93\x93\x93\x23\x54\x92\xa4" \
+    "\x4a\x45\x51\xf6\x04\xb7\x04\x5d\xfe\xc0\x16\x5d" \
+    "\x17\x4f\x02\xc3\x86\x9a\x02\x06\x07\x07\x71\xe1" \
+    "\xe2\x05\xbc\xff\xfe\x6f\x30\x1a\x0a\xad\xb2\x2d" \
+    "\x6e\x35\xab\x81\x32\xce\x91\x48\x24\x10\x0e\x87" \
+    "\xc1\x18\x05\x63\x14\x2e\xa7\x0b\x4e\xa7\xd3\xa5" \
+    "\x28\xca\x1e\x49\x92\x2a\xa9\x2c\xcb\xbe\x44\x22" \
+    "\x51\x1d\x7c\x31\xb8\x4a\x0b\x05\x40\x85\x41\xa9" \
+    "\xae\x17\x52\x3c\x0a\x9e\x28\x83\x83\x83\xb8\x70" \
+    "\xe1\x3c\xde\x7b\xef\x12\x42\xa1\xef\x56\xe9\xcc" \
+    "\xd0\x23\x25\x60\x8c\x61\x69\x29\x8e\xe9\xe9\x69" \
+    "\xe4\xf3\x79\x30\xc6\x41\x29\x05\x65\x0c\x1e\xaf" \
+    "\x17\x89\x44\xa2\x5a\x96\x65\x1f\xb5\x58\x2c\x95" \
+    "\xa9\x54\x2a\xe0\xaf\xf4\x1b\xa0\x8c\x60\xa0\xeb" \
+    "\xbb\x47\xdf\x5c\x8a\xec\xae\x69\x0f\x0f\x0d\xe3" \
+    "\xfc\xf9\xf3\xb8\x74\xe9\x12\x46\x43\xa3\x9a\x0b" \
+    "\xa9\xc6\x8e\x10\x02\xf3\x8b\x0b\x98\x79\xf4\x08" \
+    "\x79\x91\x07\xe7\x3a\x30\xca\xc0\x28\x85\xcb\xe9" \
+    "\x44\x2a\x95\x0a\x58\x2c\x96\x4a\x2e\x49\x92\x53" \
+    "\x55\x55\xb7\xdb\xeb\xd1\x42\x4f\x40\x97\xb0\x28" \
+    "\x1c\x8b\xba\xb8\x85\x11\x10\x4f\x90\x47\xd6\x6f" \
+    "\x0f\x0d\x0f\xe1\xfc\xf9\xf3\xa8\xaf\xab\xc3\xdb" \
+    "\xa7\x4f\xc3\xe7\xf3\x21\xae\xc4\x91\x56\xd3\xa0" \
+    "\x8c\xad\xeb\x05\x87\xc3\x01\x55\x55\xdd\x92\x24" \
+    "\x39\xb9\xd5\x6a\x75\x64\xb3\x59\x7b\x45\x59\xb9" \
+    "\xb1\x25\x08\x00\x44\x68\x71\xa5\xb1\xa9\xc7\x9c" \
+    "\x80\xb6\xad\x3c\xad\x08\x2d\x62\x85\xd0\x6a\x3e" \
+    "\x9f\xc7\xbd\xfb\xf7\xf1\xef\xbb\x77\x51\x53\x53" \
+    "\x83\xe3\xc7\x8f\x63\xfb\xf6\xed\xa6\xa3\x5a\x8f" \
+    "\x5f\x22\x00\x01\x94\x96\x96\x22\x9b\xcd\xda\xad" \
+    "\x56\xab\x83\x72\xce\x4b\x73\xb9\x9c\x55\x96\xad" \
+    "\x86\x70\xa9\x2e\x74\x6a\x88\x5e\xd7\x21\xd5\xa2" \
+    "\x18\xd0\x0e\xf4\x5c\x36\x8b\x4c\x26\x03\x55\x55" \
+    "\x91\x4e\xa7\x91\x4a\xa5\x90\x4c\x25\x91\x4a\xa5" \
+    "\x90\x4e\xa7\x91\x4e\xa7\x91\xc9\x64\x90\xcb\xe5" \
+    "\x00\x00\xe3\xe3\xe3\xb8\x7c\xf9\x32\xee\xde\xbd" \
+    "\x0b\xc6\x39\x38\xe7\x60\x9c\x81\x33\x06\x4e\x39" \
+    "\x38\xe3\x28\x29\x79\x01\xb9\x5c\xce\xca\x39\x2f" \
+    "\xe5\x92\x24\x11\xc6\x58\x5a\x55\x33\x56\xb9\x44" \
+    "\x46\x21\x9f\x28\x10\x44\xf4\x73\x92\x50\x82\x4c" \
+    "\x26\x83\xa5\xf8\x12\x54\x55\x45\x3e\x9f\xc3\x66" \
+    "\x49\xb4\xd9\x6d\x94\x52\xb4\xb4\xb4\xe0\xc8\x91" \
+    "\x23\xf0\x79\xbd\x28\x4c\x50\x48\x52\x0b\xb4\xa7" \
+    "\x55\x15\x8c\xb1\xb4\x24\x49\x84\x73\xce\x55\x59" \
+    "\x96\x93\xf1\x78\xdc\x2a\x97\x94\xe8\xda\xd2\xc0" \
+    "\x09\x21\x0c\xa6\x56\x56\x12\x50\x94\x18\x14\x45" \
+    "\x41\x3e\x9f\x5f\xb5\x80\xa7\x15\x4a\x29\x5a\x5b" \
+    "\x5b\x71\xec\xe8\x31\xb8\xbd\x1e\xac\x5d\x91\x49" \
+    "\xcd\x00\x80\x64\x32\x09\x59\x96\x93\x9c\x73\x95" \
+    "\x73\xce\x15\xbb\xdd\xbe\x3c\xbf\x30\x5f\xe1\xab" \
+    "\xf4\xa1\x10\x89\x80\x00\x65\x14\xd9\x4c\x16\x8a" \
+    "\xa2\x20\x99\xd4\xb2\x69\x49\x92\x9e\xba\x9d\x98" \
+    "\x41\xb5\xb5\xb5\xe1\xf8\xf1\xe3\xf0\x78\x3c\x9b" \
+    "\xaf\x42\x2f\xf1\x78\x1c\x76\xbb\x7d\x99\x73\xae" \
+    "\x70\x8b\xc5\x12\x76\xb9\x5c\xf1\xb9\xb9\x39\x34" \
+    "\x36\x36\x16\x57\x44\x28\x72\xb9\x1c\x62\x31\x05" \
+    "\xaa\xaa\x82\x73\x6e\x4c\xfa\x34\x70\x94\x52\xbc" \
+    "\xd4\xd6\x86\xe3\x27\x4e\x68\xb9\xa0\x41\x8a\x91" \
+    "\x6e\xea\x19\x13\x29\x66\x9e\x26\xe6\x22\x91\x08" \
+    "\x5c\x2e\x57\xdc\x62\xb1\x84\x39\x63\x6c\x7a\xcb" \
+    "\x96\x2d\xf1\xa9\xa9\x29\x83\x31\x42\x08\x72\xf9" \
+    "\x3c\x14\x45\x81\x10\x39\x58\x24\x8b\xae\x3d\x01" \
+    "\xce\xf8\xba\xe0\x28\xa5\x78\xa9\xbd\x1d\x27\xdf" \
+    "\x38\x09\x8f\xdb\x05\x53\x86\xae\x47\xb0\x9e\xbd" \
+    "\xe8\x22\x13\x20\x85\x00\x35\xb6\x2d\x08\x60\x6e" \
+    "\x6e\x0e\x5b\xb7\x6e\x8d\x33\xc6\xa6\x39\x21\x24" \
+    "\x54\x5b\x5b\x3b\xfb\xe0\xc1\x83\xe4\xcc\xec\xa3" \
+    "\x92\xc0\x16\x2d\x9d\x4a\x24\x12\xc6\xee\xad\x0d" \
+    "\xaa\x81\x60\x6b\xf6\x27\x4a\x29\xda\xdb\xdb\x71" \
+    "\xf2\xe4\x49\x78\xbc\x9e\x22\x13\x62\x0d\x38\x83" \
+    "\xb8\x22\x83\x66\x4e\x05\x01\xc2\x73\x8f\x11\x8b" \
+    "\xc5\x92\x07\x0f\x1e\x9c\x25\x84\x84\x78\x20\x10" \
+    "\x98\xb2\x58\x2c\xdf\x78\x3c\x9e\x7d\x03\x03\x83" \
+    "\x55\xc1\xe0\x8b\x48\xa7\xd3\xc8\x66\xb3\xb0\x58" \
+    "\x2c\x4f\x30\xc4\x38\xd3\x4f\x0f\x8a\x8e\x8e\x0e" \
+    "\x0d\xd4\x73\x68\xea\x69\x65\x34\x14\x82\xd7\xeb" \
+    "\x9d\xf7\xfb\xfd\xdf\x78\x3c\x9e\xa9\x42\xca\x74" \
+    "\xb7\xa1\xa1\x21\xd6\xdb\xdb\x1b\xdc\xb7\x6f\x1f" \
+    "\x95\x65\x19\x8c\xf3\x75\x33\x74\x49\x92\xd0\xd9" \
+    "\xd9\x89\x53\xa7\x4e\x6d\x0a\x4a\xdb\xcc\x51\xdc" \
+    "\xd8\x9f\x62\x1b\x89\x44\x30\x3a\x3a\x9a\x6f\x6f" \
+    "\x6f\x8f\x31\xc6\xee\x02\xc5\xaf\x2f\xab\xa2\x28" \
+    "\xef\x5d\xbd\x7a\xf5\x67\x7e\xbf\xdf\xf7\xda\x6b" \
+    "\xaf\x15\x07\xdf\x74\x76\xf3\x67\xdf\x66\x3d\xc4" \
+    "\x6a\x2b\x53\xff\xcf\x3e\xfd\x14\xf3\xf3\xf3\x8f" \
+    "\xdf\x79\xe7\x9d\x3f\x96\x97\x97\xff\x1a\x40\xba" \
+    "\xf0\x0d\x91\x06\xd0\xd3\xd2\xd2\xf2\x78\x64\x64" \
+    "\x24\xf5\xf0\xe1\x43\x30\x46\xc1\x19\x03\x65\x14" \
+    "\x94\x51\x30\xc6\xc0\xf4\x36\xa5\xda\x33\xe5\x0c" \
+    "\x8c\x31\x70\x46\xc1\x28\x03\x65\x1c\x94\x32\x3d" \
+    "\xc3\x28\xf6\x61\x85\x77\x94\x83\x51\x06\xae\x27" \
+    "\x01\x8c\x6b\x63\x8d\x8e\x8c\x60\x6c\x6c\x2c\xd5" \
+    "\xd2\xd2\xf2\x18\x40\x8f\x8e\xa7\xf8\xf5\x55\x5e" \
+    "\x5e\xde\x53\x57\x57\x77\x75\x76\x76\xf6\x97\x77" \
+    "\xee\xdc\x09\xb8\x3d\x6e\xf8\x2b\xfd\xc0\xaa\x2d" \
+    "\xd2\x4c\x80\xb6\x64\x23\x36\x84\xd0\x6e\x26\x60" \
+    "\x66\xb2\x10\x1c\xe6\x8d\x76\x75\x9e\x3c\x3b\x37" \
+    "\x87\xdb\xb7\x6f\xa3\xbe\xbe\x3e\x52\x57\x57\x77" \
+    "\xd5\x66\xb3\xf5\x14\xa6\x59\xf5\xdd\xca\x18\xfb" \
+    "\xb8\xab\xab\xeb\xef\x1e\x8f\x27\x72\xe3\xb3\x1b" \
+    "\x88\x46\xa3\x7a\x2a\xb3\xa6\x32\x66\xa4\x40\x1a" \
+    "\x23\x5a\x2e\xa6\x31\x54\xb4\x2b\xa4\x42\x45\x16" \
+    "\x75\x26\x75\x8f\x44\x63\x31\xdc\xb8\x71\x03\x1e" \
+    "\x8f\x27\xd2\xd5\xd5\xf5\x77\xc6\xd8\xc7\x66\x3c" \
+    "\xab\xc0\xc9\xb2\x3c\x49\x08\xf9\xe8\xf0\xe1\xc3" \
+    "\x77\x24\x49\x8a\x77\x77\x77\x23\x1c\x7e\xac\x4d" \
+    "\xc8\x34\x00\x85\xbc\xab\x00\x92\x9a\x5d\x4f\xf5" \
+    "\x67\xb3\x5b\x69\xd1\x46\x73\xb1\xf6\x3e\x1c\x0e" \
+    "\xa3\xbb\xbb\x1b\x92\x24\xc5\x0f\x1f\x3e\x7c\x87" \
+    "\x10\xf2\x91\x2c\xcb\x93\x66\x3c\xeb\xde\x95\xa4" \
+    "\x52\xa9\xce\xe5\xe5\xe5\x5f\xf5\xf4\xf4\xbc\x12" \
+    "\x0e\x87\x4b\x5f\x7d\xf5\x55\xec\xd9\xb3\xc7\xac" \
+    "\xe9\xef\x55\xfa\xfb\xfb\x71\xeb\xd6\x2d\x78\xbd" \
+    "\xde\xe5\x43\x87\x0e\x7d\x59\x5a\x5a\xfa\x3b\x59" \
+    "\x96\x6f\xae\xb5\xdb\xf0\x96\x29\x9b\xcd\xbe\x2c" \
+    "\x84\xf8\xf9\xcd\x9b\x37\x5f\xef\xeb\xeb\x2b\xa9" \
+    "\xad\xad\xe5\x6d\x6d\xad\x70\xb9\xdd\x28\xdc\x7c" \
+    "\x08\xb3\xe6\x9e\xa1\x2c\x2c\x2c\xe0\xeb\xaf\xbf" \
+    "\xc6\xe8\xe8\x68\xb6\xb1\xb1\x31\xd9\xd9\xd9\x79" \
+    "\x9d\x10\xf2\x7b\xce\xf9\x57\xeb\xd9\x6f\x76\x79" \
+    "\x58\x93\xcd\x66\xdf\x0d\x85\x42\x67\x7b\x7b\x7b" \
+    "\xed\xe1\x70\x58\x6a\x68\x68\x20\x8d\x8d\x8d\x08" \
+    "\x06\x83\x6b\x4c\x4d\xc7\xc8\x6a\xed\x63\x7a\x7a" \
+    "\x1a\x7d\x7d\x7d\x18\x18\x18\x10\x5e\xaf\x57\x6d" \
+    "\x6d\x6d\x5d\xda\xb1\x63\xc7\x87\x9c\xf3\x3f\x00" \
+    "\x18\xdb\x68\xf2\x67\xba\xd9\xcc\xe5\x72\x3f\x06" \
+    "\xf0\xd3\x81\x81\x81\xd7\xfb\xfa\xfa\xf8\xc4\xc4" \
+    "\x04\x73\x3a\x9d\xb4\xba\xba\x1a\x81\x40\x00\x5e" \
+    "\xaf\x17\x15\x15\x15\x90\x65\x19\xa9\x54\x0a\xb1" \
+    "\x58\x0c\xe1\x70\x18\x33\x33\x33\x98\x98\x98\x40" \
+    "\x24\x12\xc9\x57\x57\x57\xe7\x1a\x1b\x1b\xb3\x0d" \
+    "\x0d\x0d\xd7\x01\xfc\x89\x31\xf6\x97\xcd\xe6\x7d" \
+    "\xe6\x3b\x61\x00\x25\xb9\x5c\xee\x75\x42\xc8\x91" \
+    "\xc5\xc5\xc5\xa3\x63\x63\x63\xee\xa9\xa9\x29\x32" \
+    "\x3b\x3b\x4b\x17\x16\x16\x48\x3c\x1e\x27\xa9\x54" \
+    "\x0a\xb2\x2c\xa3\xac\xac\x4c\xb8\xdd\x6e\xe1\xf7" \
+    "\xfb\xf3\x55\x55\x55\xa2\xa6\xa6\x66\xc1\xe5\x72" \
+    "\x75\x0b\x21\xfe\xc5\x18\xbb\x0e\x60\xc3\xdb\xcc" \
+    "\xff\x15\x9c\xb9\xec\x02\xd0\x0a\x60\xaf\x10\xa2" \
+    "\x0e\xc0\x36\x00\x5e\x00\x76\x00\x4b\x00\xc2\x00" \
+    "\xc6\x09\x21\x43\x00\xbe\x05\xd0\x0b\xe0\xe1\xf3" \
+    "\x4e\xf2\x5f\x67\xef\x27\x63\x41\x5f\xa3\x16\x00" \
+    "\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82"
 image3_data = \
-  "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
-  "\x49\x48\x44\x52\x00\x00\x00\x27\x00\x00\x00\x27" \
-  "\x08\x06\x00\x00\x00\x8c\xa3\x51\x35\x00\x00\x09" \
-  "\xfa\x49\x44\x41\x54\x78\x9c\xad\x58\x5b\x6c\x1b" \
-  "\xc7\x15\x3d\xf3\xe0\x72\x55\x8a\x92\xf8\x16\x69" \
-  "\x9a\x96\x94\xc8\xb6\x24\xab\x96\x64\x40\x56\x9d" \
-  "\xd8\x81\x2c\xd8\x6d\x82\x24\x48\x83\x00\x2d\x90" \
-  "\xcf\x18\xfe\x68\x3f\xfa\xe5\x7e\xfb\xbb\xff\xe9" \
-  "\x47\xe0\x02\xf9\xb1\xd1\x40\x45\x5a\x20\x41\xd5" \
-  "\x40\xa8\x8d\xbc\xec\x28\x40\xe2\x38\xb2\xec\x58" \
-  "\x12\x64\x99\x90\xf5\xa0\xf8\x5a\x4a\xe2\x63\xc9" \
-  "\xdd\xe9\xc7\x3e\xb8\x7a\x50\x96\xdb\x5e\x62\xc0" \
-  "\x59\xee\x9d\xb9\x67\xee\x3d\x73\xe7\x72\x88\x10" \
-  "\x02\xcf\x2b\x84\x10\x19\x80\x07\xc0\xcf\x00\xc8" \
-  "\x00\xdc\x00\x38\x00\x06\x40\x03\x50\x03\x50\x01" \
-  "\x50\x06\x50\x04\xb0\x25\x84\x28\x3f\xb7\x9d\x83" \
-  "\x82\x23\x84\xd0\x96\x96\x96\x36\x59\x96\x7d\x89" \
-  "\x44\xe2\x58\x34\x1a\x1d\x6c\x6e\x6e\x3e\x26\x49" \
-  "\x52\x17\xe7\x3c\x4e\x29\x0d\x10\x42\x3c\x42\x88" \
-  "\x2d\x5d\xd7\x33\xb5\x5a\x6d\x49\x55\xd5\x85\xcd" \
-  "\xcd\xcd\x47\x2b\x2b\x2b\x77\x93\xc9\xe4\xa3\x72" \
-  "\xb9\x9c\x2b\x14\x0a\x79\x21\x84\xfe\x7f\x03\xd7" \
-  "\xd3\xd3\x13\xa8\x54\x2a\xc1\xde\xde\xde\x5f\xf9" \
-  "\x7c\xbe\x97\x83\x81\xe0\x4b\x89\x44\x22\x1a\x8b" \
-  "\xc5\x10\x0a\x87\x10\xf0\x07\xe0\xf5\x7a\xe1\x76" \
-  "\xbb\x51\xa9\x54\xb0\xb1\xb1\x81\x4c\x36\x83\xf5" \
-  "\xd4\x3a\x96\x97\x97\x91\x4c\x26\x57\xd2\x99\xf4" \
-  "\xd7\xb9\x5c\xee\xab\x07\x0f\x1e\xfc\xcb\xed\x76" \
-  "\xa7\x1f\x3e\x7c\x98\xf9\x9f\xc0\x9d\x39\x73\xa6" \
-  "\x69\x6b\x6b\xab\xfd\xc8\x91\x23\x17\x7c\x3e\xdf" \
-  "\x6b\x5d\x9d\x9d\xaf\x1e\x3b\x7e\x5c\x3a\xda\x7d" \
-  "\x14\xed\xed\x11\x43\x49\x10\x80\x08\x08\x01\x10" \
-  "\x00\x02\x04\x84\x08\x18\x4f\x80\x80\xc0\xda\xea" \
-  "\x1a\xe6\xe6\x66\xf1\xd3\x4f\x3f\xa9\x0b\x8f\x1f" \
-  "\x4f\xe4\x72\xb9\x7f\x3e\x79\xf2\x64\xd2\xe3\xf1" \
-  "\xac\xde\xbe\x7d\xbb\xf4\xdc\xe0\x46\x47\x47\xdb" \
-  "\xaa\xd5\xea\xa1\x8e\x8e\x8e\x4b\xb1\x58\xec\x9d" \
-  "\x81\x81\x81\xf8\xc9\x93\x27\xe1\x6b\xf3\x3d\x6b" \
-  "\xc1\x0d\x25\x97\xcb\xe1\xde\x8f\xf7\xf0\xc3\x0f" \
-  "\x3f\x2c\x2d\x2f\x2f\xff\x6d\x71\x71\xf1\x9a\xcb" \
-  "\xe5\x7a\x7a\xeb\xd6\xad\xfc\x81\xc1\xbd\xfd\xf6" \
-  "\xdb\x01\x4a\xe9\xcf\xbd\x5e\xef\xe5\xde\x9e\xde" \
-  "\xdf\x0c\x9f\x1e\x26\x47\xbb\xbb\x61\x79\x03\x00" \
-  "\xec\x61\x44\x00\x82\x80\xd8\xaf\x04\x84\xe5\x43" \
-  "\x01\x63\x0c\x01\x6c\x75\x00\xb3\x73\xb3\x98\x9a" \
-  "\xfa\x56\x3c\x7c\xf8\xe0\xa3\x8d\x8d\x8d\x0f\x74" \
-  "\x5d\xff\xf1\xe3\x8f\x3f\xde\x15\xe6\x5d\xe0\x2e" \
-  "\x5d\xba\xe4\x57\x55\x75\x48\x92\xa4\xdf\x0f\x0e" \
-  "\x0c\xbe\x75\xf6\xec\x59\x84\x43\x61\x2b\x66\x0e" \
-  "\x43\xd6\x83\x00\x08\x81\x1d\x49\x21\x20\x4c\xa4" \
-  "\xc6\xa3\xf9\xde\xb9\x28\x02\xac\xa7\x52\xf8\xf2" \
-  "\xab\x2f\x71\xf7\xee\xdd\x7f\xa8\xaa\xfa\xbe\x24" \
-  "\x49\xdf\x5f\xbb\x76\x2d\xeb\xc4\x42\x9d\x0f\x57" \
-  "\xae\x5c\xf1\x70\xce\xbb\x64\x59\xbe\x3c\x38\x38" \
-  "\xf8\xd6\xf9\xf3\xe7\x11\x8e\x84\xeb\x5a\xa6\x05" \
-  "\x42\x00\x42\xc8\xb6\x6f\xd8\x8d\xd8\x5d\x43\xd7" \
-  "\x04\x66\x8d\xa5\x86\x7e\x38\x12\xc1\xd8\xe8\x79" \
-  "\x0c\x0e\x0e\xbe\x25\xcb\xf2\x65\xce\x79\xd7\x95" \
-  "\x2b\x57\x3c\x4e\x3c\x7c\x87\x27\x3b\x29\xa5\xef" \
-  "\xbd\xf0\xc2\x0b\xef\x9c\x3b\x7b\x0e\x7e\xbf\xdf" \
-  "\x19\xc9\xbd\xc5\x89\xc4\x5a\x6e\xa3\x3d\x56\x47" \
-  "\x0c\x08\xc0\xe7\xf7\xe3\xdc\xd9\x73\x28\x15\x4b" \
-  "\xef\x2c\x3c\x5e\xc8\x00\x78\x1f\xc0\x7d\xe7\x54" \
-  "\x00\x80\xab\x57\xaf\xc6\x35\x4d\x7b\xad\xb5\xb5" \
-  "\xf5\xcd\x91\x91\x11\x12\x89\x44\xec\x55\x13\x10" \
-  "\xd3\x43\x0d\x1a\x1a\xf4\x0f\xa0\x1f\x89\x44\x30" \
-  "\xf2\x8b\x11\xe2\xf1\x78\xde\xd4\x34\xed\xb5\xab" \
-  "\x57\xaf\xc6\xb7\x81\x1b\x1f\x1f\x67\x1e\x8f\xa7" \
-  "\xb3\x5a\xad\x5e\x18\x38\x39\x10\x3b\x7e\xfc\x98" \
-  "\x11\x1e\x42\x00\x42\x0d\x4e\x13\x52\x0f\x9b\xa3" \
-  "\x0f\xb3\xef\x0c\x33\x76\x84\x19\x0e\x60\xce\x39" \
-  "\xac\x76\xf4\xe8\x51\x74\x75\x76\xc5\xaa\xd5\xea" \
-  "\x05\x8f\xc7\xd3\x39\x3e\x3e\xce\x6c\x70\x8a\xa2" \
-  "\x24\x14\x45\x79\x3d\x1c\x0e\x9f\x1b\x18\x1c\x04" \
-  "\x40\x41\xcd\x81\xd4\x6c\x20\x04\x94\x50\x50\xd3" \
-  "\xa8\xd5\xa7\x66\xdf\x00\x48\xcd\x31\xd4\xd1\x9c" \
-  "\xdc\x24\x20\xa4\x3e\x37\x21\x00\x65\x0c\x5b\x5b" \
-  "\x5b\x88\x1f\x8e\xc3\xeb\xf5\x9e\x53\x14\xe5\x75" \
-  "\x45\x51\x12\x36\xe7\x18\x63\x89\x62\xb1\x78\x6a" \
-  "\x60\x60\x40\x0a\x04\x02\x3b\x68\x22\x20\x40\x6d" \
-  "\x2a\xbd\xfb\xee\xbb\x7b\xd2\xe9\xfa\xf5\x1b\xe6" \
-  "\x86\x16\x0d\x75\x6e\x5c\xbf\x01\x62\xef\x75\x62" \
-  "\xcf\x9a\x49\x67\xe0\xf5\x7a\x11\x8f\xc7\xa5\xf9" \
-  "\xf9\xf9\x53\x8c\xb1\x04\x80\xc7\x74\x7c\x7c\xdc" \
-  "\x5f\x2c\x16\x87\x38\xe7\x03\x3d\xc7\x8f\xdb\x9e" \
-  "\xa2\x94\x98\x2b\xdc\xee\xc5\x46\x1f\xa7\x77\xf7" \
-  "\xd6\x80\xed\x39\x6b\x4e\xc6\x19\xf2\x8a\x82\x62" \
-  "\xa9\x08\xc6\x18\xe2\x87\xe3\x00\x30\x50\x2c\x16" \
-  "\x87\xc6\xc7\xc7\xfd\x54\x92\xa4\x76\x45\x51\x4e" \
-  "\xc4\x0f\xc5\x03\xd1\xd8\x21\x93\x17\xbb\x89\x8d" \
-  "\x5d\x29\x63\x7b\xb3\xe8\x67\x71\x70\x77\x73\xce" \
-  "\x07\x30\xce\x51\x2c\x16\x91\x4a\xa5\xc0\x18\x05" \
-  "\x63\x14\x01\x7f\x00\x7e\xbf\x3f\xa0\x28\xca\x09" \
-  "\x49\x92\xda\xa9\x2c\xcb\x91\x62\xb1\xd8\x11\x3f" \
-  "\x1c\xdf\xc6\x05\x0b\x10\x9c\x5e\x23\x14\x8d\x84" \
-  "\x38\x38\xd6\x58\xc7\x88\x08\x63\x0c\x1b\x1b\x05" \
-  "\x2c\x2d\x2d\x41\xd7\x75\x30\xc6\x41\x29\x05\x65" \
-  "\x0c\xa1\x70\x18\xc5\x62\xb1\x43\x96\xe5\x08\x75" \
-  "\xb9\x5c\xed\xe5\x72\x39\x16\x6d\x8f\xda\xa0\xec" \
-  "\x30\xd2\xbd\xd2\x80\xc1\x44\xfb\xe3\xf4\x32\x75" \
-  "\x3c\xef\xfc\x10\x02\xc6\x28\x84\x10\x58\xcf\xa4" \
-  "\xb1\xfc\xf4\x29\x74\xa1\x83\x73\x13\x18\x65\x60" \
-  "\x94\x22\xe0\xf7\xa3\x5c\x2e\xc7\x5c\x2e\x57\x3b" \
-  "\x97\x24\xc9\xaf\xaa\x6a\x30\x18\x0e\x19\x5b\x4f" \
-  "\x00\x00\x35\x88\x4b\x1c\x95\x06\x84\xf1\xca\x71" \
-  "\x14\xd5\x5d\x62\x64\x7e\xab\xbf\x57\xe2\x16\x42" \
-  "\x20\x93\xcd\xa2\xa0\x14\x50\x51\x2b\xa0\x8c\x19" \
-  "\xd1\xd9\x21\x3e\x9f\x0f\xaa\xaa\x06\x25\x49\xf2" \
-  "\x73\xb7\xdb\xed\xab\xd5\x6a\xde\xb6\x96\x56\x3b" \
-  "\x25\x08\x00\x44\x18\xfb\xca\xf0\xa6\x30\x00\x3f" \
-  "\xa3\xf4\x13\x42\x00\xc2\xf8\xb6\x9a\xae\xeb\xd0" \
-  "\x75\x1d\x9a\xa6\x21\x93\xc9\x80\x10\x02\xce\xb9" \
-  "\xe3\xa8\x36\xf7\x2f\x31\xc6\x36\x37\x37\xa3\x56" \
-  "\xab\x79\xdd\x6e\xb7\x8f\x73\xce\x9b\x35\x4d\x73" \
-  "\xcb\xb2\xdb\x3c\x55\x08\xa8\xe9\x25\xfb\x24\xb2" \
-  "\xcf\x47\x23\x3c\xb6\x61\x4d\x83\x6e\xf6\xd7\xd6" \
-  "\xd6\xa0\xeb\x1a\x34\x4d\x47\xb9\x5c\xae\x83\x75" \
-  "\x88\x24\x49\x0d\x56\x55\xef\xb2\x26\x0e\x4d\xd3" \
-  "\xdc\x9c\xf3\x66\x2e\x49\x12\x61\x8c\x55\x54\xb5" \
-  "\xea\x96\x9b\xe4\x3a\xa7\xac\x28\x99\x03\x09\x25" \
-  "\xa8\x56\xab\xa8\x55\x6b\xd0\x74\x0d\xba\xae\xc1" \
-  "\x69\xbb\x52\xa9\x60\x67\x94\x76\x86\x8d\x51\x56" \
-  "\x47\x62\xbe\xb3\x8a\x54\x0b\x65\x45\x55\xc1\x18" \
-  "\xab\x48\x92\x44\x38\xe7\x5c\x95\x65\xb9\x54\x28" \
-  "\x14\xdc\x72\x53\x93\xc9\x2d\x03\x9c\x10\xc2\xe6" \
-  "\xd2\xd6\x56\x11\x8a\x92\x87\x5a\x55\x4d\xa3\x64" \
-  "\x1b\x18\x2b\x54\x7b\x81\xb2\x84\x72\x06\xec\xf0" \
-  "\xa6\x83\xcd\x00\x80\x52\xa9\x04\x59\x96\x4b\x9c" \
-  "\x73\x95\x73\xce\x15\xaf\xd7\xbb\xb9\x9e\x5e\x6f" \
-  "\x8b\xb4\x47\x60\xed\x44\x40\x80\x32\x8a\x5a\xb5" \
-  "\x06\x45\x51\x50\x2a\x19\xd5\x34\xa5\x7b\xa7\x13" \
-  "\xce\xeb\x05\x4e\x23\x70\x9c\xb1\x3d\x7f\x77\x4a" \
-  "\xa1\x50\x80\xd7\xeb\xdd\xe4\x9c\x2b\xdc\xe5\x72" \
-  "\xa5\x02\x81\x40\x61\x75\x75\x15\xfd\xfd\xfd\x0e" \
-  "\x03\x14\x9a\xa6\x21\x9f\x57\xa0\xaa\xaa\x6d\xbc" \
-  "\x91\x61\xc6\x98\x59\x0a\x89\x7d\x74\x38\x00\x61" \
-  "\x73\xdb\xae\x3c\x1d\x9e\xcb\x66\xb3\x08\x04\x02" \
-  "\x05\x97\xcb\x95\xe2\x8c\xb1\xa5\x43\x87\x0e\x15" \
-  "\x92\xc9\xa4\xed\x31\x42\x08\x34\x5d\x87\xa2\x28" \
-  "\x10\x42\x83\x4b\x72\x99\xdc\xdb\xcf\xb0\x05\x6e" \
-  "\x9f\x05\x70\x06\x62\x92\x4c\x80\x58\x1b\xd4\x4e" \
-  "\x5b\x10\xc0\xea\xea\x2a\x8e\x1c\x39\x52\x60\x8c" \
-  "\x2d\x51\x42\xc8\x7c\x77\x77\xf7\xca\xfa\xfa\x7a" \
-  "\x69\x79\xe5\x29\x40\x29\x40\x08\x8a\xc5\xa2\x9d" \
-  "\xbd\xad\xe3\x85\x99\xb9\x69\xaf\xc6\x18\x33\x74" \
-  "\xf8\x7e\x3a\x14\x94\x71\x50\xca\xc1\x28\x05\x75" \
-  "\xcc\x4b\x19\x43\x3a\x9d\x46\x3e\x9f\x2f\x75\x77" \
-  "\x77\xaf\x10\x42\xe6\x79\x2c\x16\x4b\xba\x5c\xae" \
-  "\x6f\x43\xa1\xd0\xa9\x99\x99\x07\x89\x78\xfc\x30" \
-  "\x2a\x95\x0a\x6a\xb5\x1a\x5c\x2e\xd7\xae\xd5\x37" \
-  "\xe4\xd3\x81\x38\xb7\xb3\xf0\xde\x2e\x73\xf3\xf3" \
-  "\x08\x87\xc3\xeb\xd1\x68\xf4\xdb\x50\x28\x94\xb4" \
-  "\x4a\xa6\xef\xfa\xfa\xfa\xf2\x53\x53\x53\xf1\x53" \
-  "\xa7\x4e\x51\x59\x96\xc1\x1c\xbb\xcf\x29\x37\x6e" \
-  "\xdc\xd8\xd7\x80\x53\xc7\x48\xe6\xa8\x27\xf6\x7d" \
-  "\xc6\x64\xb3\x59\xcc\xcd\xcd\xe9\x67\xce\x9c\xc9" \
-  "\x33\xc6\xbe\x03\xcc\x62\xd3\xef\xf7\x7f\x31\x34" \
-  "\x34\xf4\x59\x4b\x4b\xcb\xfa\xd4\xd4\x94\x91\xc5" \
-  "\x4d\x57\xb3\xfd\x1a\x65\x76\x48\xa8\x15\x56\xc7" \
-  "\x7b\xce\x18\x18\x77\xf4\x1d\x21\xdc\x39\xfe\xde" \
-  "\xbd\x7b\xf0\xf9\x7c\xeb\x43\x43\x43\x9f\xf9\xfd" \
-  "\xfe\x2f\x6c\x70\x30\x2e\x5d\x26\x87\x87\x87\xd7" \
-  "\x66\x67\x67\xcb\x8f\x1e\x3d\x02\x63\xd4\x04\x68" \
-  "\x71\x83\x99\x9c\xa1\xa0\xd4\x34\x62\x1b\xa6\x60" \
-  "\x94\x99\x7c\x62\x66\x85\x51\x1f\xc3\xac\xdf\x28" \
-  "\x07\xa3\x0c\x9c\x9a\x5c\xe3\xc6\x5c\x73\xb3\xb3" \
-  "\x58\x58\x58\x28\x0f\x0f\x0f\xaf\x01\x98\x34\xf1" \
-  "\xd4\xff\x7d\xb5\xb6\xb6\x4e\xf6\xf4\xf4\x5c\x5f" \
-  "\x59\x59\xf9\xc3\x9d\x3b\x77\x62\xc1\x50\x10\xd1" \
-  "\xf6\x28\xb0\x2d\x45\x9a\x62\x1d\xba\x02\xf5\x44" \
-  "\x2c\x84\x71\x33\x01\xe7\x1f\x68\xf3\x49\x38\x13" \
-  "\x6d\xbd\x94\x00\x04\x56\x56\x57\x71\xfb\xf6\x6d" \
-  "\xf4\xf6\xf6\x66\x7b\x7a\x7a\xae\x7b\x3c\x9e\x49" \
-  "\xcb\xcc\xb6\x8c\xca\x18\xfb\x68\x6c\x6c\xec\xd3" \
-  "\x50\x28\x94\xbd\xf9\xef\x9b\xc8\xe5\x72\x66\x29" \
-  "\xb3\xa3\x31\xa3\xbc\x61\xa6\x17\xad\x5a\xcc\xf0" \
-  "\x50\x5d\xcf\x2a\x85\xe8\xb6\x70\x5b\xa1\xa5\xc8" \
-  "\xe5\xf3\xb8\x79\xf3\x26\x42\xa1\x50\x76\x6c\x6c" \
-  "\xec\x53\xc6\xd8\x47\x4e\x3c\xdb\xc0\xc9\xb2\xfc" \
-  "\x84\x10\xf2\xe1\xc5\x8b\x17\xef\x48\x92\x54\x98" \
-  "\x98\x98\x40\x2a\xb5\x66\x18\x64\x06\x00\xab\xee" \
-  "\xda\xce\x37\x33\x8c\xd4\x7c\x76\x86\x95\xd6\x75" \
-  "\x8c\x10\x1b\xbf\xa7\x52\x29\x4c\x4c\x4c\x40\x92" \
-  "\xa4\xc2\xc5\x8b\x17\xef\x10\x42\x3e\x94\x65\xf9" \
-  "\x89\x13\xcf\x9e\x77\x25\xe5\x72\x79\x74\x73\x73" \
-  "\xf3\x8f\x93\x93\x93\x2f\xa7\x52\xa9\xe6\x57\x5e" \
-  "\x79\x05\x27\x4e\x9c\x70\x84\x74\xd7\x90\xe7\x92" \
-  "\xfb\xf7\xef\xe3\xf3\xcf\x3f\x47\x38\x1c\xde\xbc" \
-  "\x70\xe1\xc2\x57\xcd\xcd\xcd\x7f\x92\x65\xf9\xd6" \
-  "\x4e\xbd\x86\xb7\x4c\xb5\x5a\xed\x25\x21\xc4\xef" \
-  "\x6e\xdd\xba\xf5\xc6\xf4\xf4\x74\x53\x77\x77\x37" \
-  "\x1f\x19\x39\x8d\x40\x30\x08\xab\xdc\x14\x4e\xce" \
-  "\x1d\x40\xd2\xe9\x34\xbe\xf9\xe6\x1b\xcc\xcd\xcd" \
-  "\xd5\xfa\xfb\xfb\x4b\xa3\xa3\xa3\x9f\x10\x42\xfe" \
-  "\xcc\x39\xff\x7a\x2f\xfd\x67\x5d\x1e\x76\xd5\x6a" \
-  "\xb5\xf7\xe6\xe7\xe7\x2f\x4f\x4d\x4d\x79\x53\xa9" \
-  "\x94\xd4\xd7\xd7\x47\xfa\xfb\xfb\x11\x8f\xc7\x77" \
-  "\xa8\x92\x7a\x7d\xb5\x9d\xfb\x58\x5a\x5a\xc2\xf4" \
-  "\xf4\x34\x66\x66\x66\x44\x38\x1c\x56\x4f\x9f\x3e" \
-  "\xbd\xf1\xe2\x8b\x2f\x7e\xc0\x39\xff\x0b\x80\x85" \
-  "\x46\xc6\x0f\x74\xb3\xa9\x69\xda\xaf\x01\xfc\x76" \
-  "\x66\x66\xe6\x8d\xe9\xe9\x69\xbe\xb8\xb8\xc8\xfc" \
-  "\x7e\x3f\xed\xe8\xe8\x40\x2c\x16\x43\x38\x1c\x46" \
-  "\x5b\x5b\x1b\x64\x59\x46\xb9\x5c\x46\x3e\x9f\x47" \
-  "\x2a\x95\xc2\xf2\xf2\x32\x16\x17\x17\x91\xcd\x66" \
-  "\xf5\x8e\x8e\x0e\xad\xbf\xbf\xbf\xd6\xd7\xd7\xf7" \
-  "\x09\x80\xbf\x32\xc6\xfe\xfe\x2c\xbb\x07\xbe\x13" \
-  "\x06\xd0\xa4\x69\xda\x1b\x84\x90\x5f\x66\x32\x99" \
-  "\x57\x17\x16\x16\x82\xc9\x64\x92\xac\xac\xac\xd0" \
-  "\x74\x3a\x4d\x0a\x85\x02\x29\x97\xcb\x90\x65\x19" \
-  "\x2d\x2d\x2d\x22\x18\x0c\x8a\x68\x34\xaa\x27\x12" \
-  "\x09\xd1\xd5\xd5\x95\x0e\x04\x02\x13\x42\x88\xcf" \
-  "\x18\x63\x9f\x00\x68\x78\x9b\xf9\xdf\x82\x73\xca" \
-  "\x31\x00\xa7\x01\x9c\x14\x42\xf4\x00\xe8\x04\x10" \
-  "\x06\xe0\x05\xb0\x01\x20\x05\xe0\x31\x21\xe4\x21" \
-  "\x80\x7b\x00\xa6\x00\x3c\x7a\x5e\x23\xff\x01\xb4" \
-  "\x79\xd2\x67\x0f\x09\x9f\xfb\x00\x00\x00\x00\x49" \
-  "\x45\x4e\x44\xae\x42\x60\x82"
+    "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
+    "\x49\x48\x44\x52\x00\x00\x00\x27\x00\x00\x00\x27" \
+    "\x08\x06\x00\x00\x00\x8c\xa3\x51\x35\x00\x00\x09" \
+    "\xfa\x49\x44\x41\x54\x78\x9c\xad\x58\x5b\x6c\x1b" \
+    "\xc7\x15\x3d\xf3\xe0\x72\x55\x8a\x92\xf8\x16\x69" \
+    "\x9a\x96\x94\xc8\xb6\x24\xab\x96\x64\x40\x56\x9d" \
+    "\xd8\x81\x2c\xd8\x6d\x82\x24\x48\x83\x00\x2d\x90" \
+    "\xcf\x18\xfe\x68\x3f\xfa\xe5\x7e\xfb\xbb\xff\xe9" \
+    "\x47\xe0\x02\xf9\xb1\xd1\x40\x45\x5a\x20\x41\xd5" \
+    "\x40\xa8\x8d\xbc\xec\x28\x40\xe2\x38\xb2\xec\x58" \
+    "\x12\x64\x99\x90\xf5\xa0\xf8\x5a\x4a\xe2\x63\xc9" \
+    "\xdd\xe9\xc7\x3e\xb8\x7a\x50\x96\xdb\x5e\x62\xc0" \
+    "\x59\xee\x9d\xb9\x67\xee\x3d\x73\xe7\x72\x88\x10" \
+    "\x02\xcf\x2b\x84\x10\x19\x80\x07\xc0\xcf\x00\xc8" \
+    "\x00\xdc\x00\x38\x00\x06\x40\x03\x50\x03\x50\x01" \
+    "\x50\x06\x50\x04\xb0\x25\x84\x28\x3f\xb7\x9d\x83" \
+    "\x82\x23\x84\xd0\x96\x96\x96\x36\x59\x96\x7d\x89" \
+    "\x44\xe2\x58\x34\x1a\x1d\x6c\x6e\x6e\x3e\x26\x49" \
+    "\x52\x17\xe7\x3c\x4e\x29\x0d\x10\x42\x3c\x42\x88" \
+    "\x2d\x5d\xd7\x33\xb5\x5a\x6d\x49\x55\xd5\x85\xcd" \
+    "\xcd\xcd\x47\x2b\x2b\x2b\x77\x93\xc9\xe4\xa3\x72" \
+    "\xb9\x9c\x2b\x14\x0a\x79\x21\x84\xfe\x7f\x03\xd7" \
+    "\xd3\xd3\x13\xa8\x54\x2a\xc1\xde\xde\xde\x5f\xf9" \
+    "\x7c\xbe\x97\x83\x81\xe0\x4b\x89\x44\x22\x1a\x8b" \
+    "\xc5\x10\x0a\x87\x10\xf0\x07\xe0\xf5\x7a\xe1\x76" \
+    "\xbb\x51\xa9\x54\xb0\xb1\xb1\x81\x4c\x36\x83\xf5" \
+    "\xd4\x3a\x96\x97\x97\x91\x4c\x26\x57\xd2\x99\xf4" \
+    "\xd7\xb9\x5c\xee\xab\x07\x0f\x1e\xfc\xcb\xed\x76" \
+    "\xa7\x1f\x3e\x7c\x98\xf9\x9f\xc0\x9d\x39\x73\xa6" \
+    "\x69\x6b\x6b\xab\xfd\xc8\x91\x23\x17\x7c\x3e\xdf" \
+    "\x6b\x5d\x9d\x9d\xaf\x1e\x3b\x7e\x5c\x3a\xda\x7d" \
+    "\x14\xed\xed\x11\x43\x49\x10\x80\x08\x08\x01\x10" \
+    "\x00\x02\x04\x84\x08\x18\x4f\x80\x80\xc0\xda\xea" \
+    "\x1a\xe6\xe6\x66\xf1\xd3\x4f\x3f\xa9\x0b\x8f\x1f" \
+    "\x4f\xe4\x72\xb9\x7f\x3e\x79\xf2\x64\xd2\xe3\xf1" \
+    "\xac\xde\xbe\x7d\xbb\xf4\xdc\xe0\x46\x47\x47\xdb" \
+    "\xaa\xd5\xea\xa1\x8e\x8e\x8e\x4b\xb1\x58\xec\x9d" \
+    "\x81\x81\x81\xf8\xc9\x93\x27\xe1\x6b\xf3\x3d\x6b" \
+    "\xc1\x0d\x25\x97\xcb\xe1\xde\x8f\xf7\xf0\xc3\x0f" \
+    "\x3f\x2c\x2d\x2f\x2f\xff\x6d\x71\x71\xf1\x9a\xcb" \
+    "\xe5\x7a\x7a\xeb\xd6\xad\xfc\x81\xc1\xbd\xfd\xf6" \
+    "\xdb\x01\x4a\xe9\xcf\xbd\x5e\xef\xe5\xde\x9e\xde" \
+    "\xdf\x0c\x9f\x1e\x26\x47\xbb\xbb\x61\x79\x03\x00" \
+    "\xec\x61\x44\x00\x82\x80\xd8\xaf\x04\x84\xe5\x43" \
+    "\x01\x63\x0c\x01\x6c\x75\x00\xb3\x73\xb3\x98\x9a" \
+    "\xfa\x56\x3c\x7c\xf8\xe0\xa3\x8d\x8d\x8d\x0f\x74" \
+    "\x5d\xff\xf1\xe3\x8f\x3f\xde\x15\xe6\x5d\xe0\x2e" \
+    "\x5d\xba\xe4\x57\x55\x75\x48\x92\xa4\xdf\x0f\x0e" \
+    "\x0c\xbe\x75\xf6\xec\x59\x84\x43\x61\x2b\x66\x0e" \
+    "\x43\xd6\x83\x00\x08\x81\x1d\x49\x21\x20\x4c\xa4" \
+    "\xc6\xa3\xf9\xde\xb9\x28\x02\xac\xa7\x52\xf8\xf2" \
+    "\xab\x2f\x71\xf7\xee\xdd\x7f\xa8\xaa\xfa\xbe\x24" \
+    "\x49\xdf\x5f\xbb\x76\x2d\xeb\xc4\x42\x9d\x0f\x57" \
+    "\xae\x5c\xf1\x70\xce\xbb\x64\x59\xbe\x3c\x38\x38" \
+    "\xf8\xd6\xf9\xf3\xe7\x11\x8e\x84\xeb\x5a\xa6\x05" \
+    "\x42\x00\x42\xc8\xb6\x6f\xd8\x8d\xd8\x5d\x43\xd7" \
+    "\x04\x66\x8d\xa5\x86\x7e\x38\x12\xc1\xd8\xe8\x79" \
+    "\x0c\x0e\x0e\xbe\x25\xcb\xf2\x65\xce\x79\xd7\x95" \
+    "\x2b\x57\x3c\x4e\x3c\x7c\x87\x27\x3b\x29\xa5\xef" \
+    "\xbd\xf0\xc2\x0b\xef\x9c\x3b\x7b\x0e\x7e\xbf\xdf" \
+    "\x19\xc9\xbd\xc5\x89\xc4\x5a\x6e\xa3\x3d\x56\x47" \
+    "\x0c\x08\xc0\xe7\xf7\xe3\xdc\xd9\x73\x28\x15\x4b" \
+    "\xef\x2c\x3c\x5e\xc8\x00\x78\x1f\xc0\x7d\xe7\x54" \
+    "\x00\x80\xab\x57\xaf\xc6\x35\x4d\x7b\xad\xb5\xb5" \
+    "\xf5\xcd\x91\x91\x11\x12\x89\x44\xec\x55\x13\x10" \
+    "\xd3\x43\x0d\x1a\x1a\xf4\x0f\xa0\x1f\x89\x44\x30" \
+    "\xf2\x8b\x11\xe2\xf1\x78\xde\xd4\x34\xed\xb5\xab" \
+    "\x57\xaf\xc6\xb7\x81\x1b\x1f\x1f\x67\x1e\x8f\xa7" \
+    "\xb3\x5a\xad\x5e\x18\x38\x39\x10\x3b\x7e\xfc\x98" \
+    "\x11\x1e\x42\x00\x42\x0d\x4e\x13\x52\x0f\x9b\xa3" \
+    "\x0f\xb3\xef\x0c\x33\x76\x84\x19\x0e\x60\xce\x39" \
+    "\xac\x76\xf4\xe8\x51\x74\x75\x76\xc5\xaa\xd5\xea" \
+    "\x05\x8f\xc7\xd3\x39\x3e\x3e\xce\x6c\x70\x8a\xa2" \
+    "\x24\x14\x45\x79\x3d\x1c\x0e\x9f\x1b\x18\x1c\x04" \
+    "\x40\x41\xcd\x81\xd4\x6c\x20\x04\x94\x50\x50\xd3" \
+    "\xa8\xd5\xa7\x66\xdf\x00\x48\xcd\x31\xd4\xd1\x9c" \
+    "\xdc\x24\x20\xa4\x3e\x37\x21\x00\x65\x0c\x5b\x5b" \
+    "\x5b\x88\x1f\x8e\xc3\xeb\xf5\x9e\x53\x14\xe5\x75" \
+    "\x45\x51\x12\x36\xe7\x18\x63\x89\x62\xb1\x78\x6a" \
+    "\x60\x60\x40\x0a\x04\x02\x3b\x68\x22\x20\x40\x6d" \
+    "\x2a\xbd\xfb\xee\xbb\x7b\xd2\xe9\xfa\xf5\x1b\xe6" \
+    "\x86\x16\x0d\x75\x6e\x5c\xbf\x01\x62\xef\x75\x62" \
+    "\xcf\x9a\x49\x67\xe0\xf5\x7a\x11\x8f\xc7\xa5\xf9" \
+    "\xf9\xf9\x53\x8c\xb1\x04\x80\xc7\x74\x7c\x7c\xdc" \
+    "\x5f\x2c\x16\x87\x38\xe7\x03\x3d\xc7\x8f\xdb\x9e" \
+    "\xa2\x94\x98\x2b\xdc\xee\xc5\x46\x1f\xa7\x77\xf7" \
+    "\xd6\x80\xed\x39\x6b\x4e\xc6\x19\xf2\x8a\x82\x62" \
+    "\xa9\x08\xc6\x18\xe2\x87\xe3\x00\x30\x50\x2c\x16" \
+    "\x87\xc6\xc7\xc7\xfd\x54\x92\xa4\x76\x45\x51\x4e" \
+    "\xc4\x0f\xc5\x03\xd1\xd8\x21\x93\x17\xbb\x89\x8d" \
+    "\x5d\x29\x63\x7b\xb3\xe8\x67\x71\x70\x77\x73\xce" \
+    "\x07\x30\xce\x51\x2c\x16\x91\x4a\xa5\xc0\x18\x05" \
+    "\x63\x14\x01\x7f\x00\x7e\xbf\x3f\xa0\x28\xca\x09" \
+    "\x49\x92\xda\xa9\x2c\xcb\x91\x62\xb1\xd8\x11\x3f" \
+    "\x1c\xdf\xc6\x05\x0b\x10\x9c\x5e\x23\x14\x8d\x84" \
+    "\x38\x38\xd6\x58\xc7\x88\x08\x63\x0c\x1b\x1b\x05" \
+    "\x2c\x2d\x2d\x41\xd7\x75\x30\xc6\x41\x29\x05\x65" \
+    "\x0c\xa1\x70\x18\xc5\x62\xb1\x43\x96\xe5\x08\x75" \
+    "\xb9\x5c\xed\xe5\x72\x39\x16\x6d\x8f\xda\xa0\xec" \
+    "\x30\xd2\xbd\xd2\x80\xc1\x44\xfb\xe3\xf4\x32\x75" \
+    "\x3c\xef\xfc\x10\x02\xc6\x28\x84\x10\x58\xcf\xa4" \
+    "\xb1\xfc\xf4\x29\x74\xa1\x83\x73\x13\x18\x65\x60" \
+    "\x94\x22\xe0\xf7\xa3\x5c\x2e\xc7\x5c\x2e\x57\x3b" \
+    "\x97\x24\xc9\xaf\xaa\x6a\x30\x18\x0e\x19\x5b\x4f" \
+    "\x00\x00\x35\x88\x4b\x1c\x95\x06\x84\xf1\xca\x71" \
+    "\x14\xd5\x5d\x62\x64\x7e\xab\xbf\x57\xe2\x16\x42" \
+    "\x20\x93\xcd\xa2\xa0\x14\x50\x51\x2b\xa0\x8c\x19" \
+    "\xd1\xd9\x21\x3e\x9f\x0f\xaa\xaa\x06\x25\x49\xf2" \
+    "\x73\xb7\xdb\xed\xab\xd5\x6a\xde\xb6\x96\x56\x3b" \
+    "\x25\x08\x00\x44\x18\xfb\xca\xf0\xa6\x30\x00\x3f" \
+    "\xa3\xf4\x13\x42\x00\xc2\xf8\xb6\x9a\xae\xeb\xd0" \
+    "\x75\x1d\x9a\xa6\x21\x93\xc9\x80\x10\x02\xce\xb9" \
+    "\xe3\xa8\x36\xf7\x2f\x31\xc6\x36\x37\x37\xa3\x56" \
+    "\xab\x79\xdd\x6e\xb7\x8f\x73\xce\x9b\x35\x4d\x73" \
+    "\xcb\xb2\xdb\x3c\x55\x08\xa8\xe9\x25\xfb\x24\xb2" \
+    "\xcf\x47\x23\x3c\xb6\x61\x4d\x83\x6e\xf6\xd7\xd6" \
+    "\xd6\xa0\xeb\x1a\x34\x4d\x47\xb9\x5c\xae\x83\x75" \
+    "\x88\x24\x49\x0d\x56\x55\xef\xb2\x26\x0e\x4d\xd3" \
+    "\xdc\x9c\xf3\x66\x2e\x49\x12\x61\x8c\x55\x54\xb5" \
+    "\xea\x96\x9b\xe4\x3a\xa7\xac\x28\x99\x03\x09\x25" \
+    "\xa8\x56\xab\xa8\x55\x6b\xd0\x74\x0d\xba\xae\xc1" \
+    "\x69\xbb\x52\xa9\x60\x67\x94\x76\x86\x8d\x51\x56" \
+    "\x47\x62\xbe\xb3\x8a\x54\x0b\x65\x45\x55\xc1\x18" \
+    "\xab\x48\x92\x44\x38\xe7\x5c\x95\x65\xb9\x54\x28" \
+    "\x14\xdc\x72\x53\x93\xc9\x2d\x03\x9c\x10\xc2\xe6" \
+    "\xd2\xd6\x56\x11\x8a\x92\x87\x5a\x55\x4d\xa3\x64" \
+    "\x1b\x18\x2b\x54\x7b\x81\xb2\x84\x72\x06\xec\xf0" \
+    "\xa6\x83\xcd\x00\x80\x52\xa9\x04\x59\x96\x4b\x9c" \
+    "\x73\x95\x73\xce\x15\xaf\xd7\xbb\xb9\x9e\x5e\x6f" \
+    "\x8b\xb4\x47\x60\xed\x44\x40\x80\x32\x8a\x5a\xb5" \
+    "\x06\x45\x51\x50\x2a\x19\xd5\x34\xa5\x7b\xa7\x13" \
+    "\xce\xeb\x05\x4e\x23\x70\x9c\xb1\x3d\x7f\x77\x4a" \
+    "\xa1\x50\x80\xd7\xeb\xdd\xe4\x9c\x2b\xdc\xe5\x72" \
+    "\xa5\x02\x81\x40\x61\x75\x75\x15\xfd\xfd\xfd\x0e" \
+    "\x03\x14\x9a\xa6\x21\x9f\x57\xa0\xaa\xaa\x6d\xbc" \
+    "\x91\x61\xc6\x98\x59\x0a\x89\x7d\x74\x38\x00\x61" \
+    "\x73\xdb\xae\x3c\x1d\x9e\xcb\x66\xb3\x08\x04\x02" \
+    "\x05\x97\xcb\x95\xe2\x8c\xb1\xa5\x43\x87\x0e\x15" \
+    "\x92\xc9\xa4\xed\x31\x42\x08\x34\x5d\x87\xa2\x28" \
+    "\x10\x42\x83\x4b\x72\x99\xdc\xdb\xcf\xb0\x05\x6e" \
+    "\x9f\x05\x70\x06\x62\x92\x4c\x80\x58\x1b\xd4\x4e" \
+    "\x5b\x10\xc0\xea\xea\x2a\x8e\x1c\x39\x52\x60\x8c" \
+    "\x2d\x51\x42\xc8\x7c\x77\x77\xf7\xca\xfa\xfa\x7a" \
+    "\x69\x79\xe5\x29\x40\x29\x40\x08\x8a\xc5\xa2\x9d" \
+    "\xbd\xad\xe3\x85\x99\xb9\x69\xaf\xc6\x18\x33\x74" \
+    "\xf8\x7e\x3a\x14\x94\x71\x50\xca\xc1\x28\x05\x75" \
+    "\xcc\x4b\x19\x43\x3a\x9d\x46\x3e\x9f\x2f\x75\x77" \
+    "\x77\xaf\x10\x42\xe6\x79\x2c\x16\x4b\xba\x5c\xae" \
+    "\x6f\x43\xa1\xd0\xa9\x99\x99\x07\x89\x78\xfc\x30" \
+    "\x2a\x95\x0a\x6a\xb5\x1a\x5c\x2e\xd7\xae\xd5\x37" \
+    "\xe4\xd3\x81\x38\xb7\xb3\xf0\xde\x2e\x73\xf3\xf3" \
+    "\x08\x87\xc3\xeb\xd1\x68\xf4\xdb\x50\x28\x94\xb4" \
+    "\x4a\xa6\xef\xfa\xfa\xfa\xf2\x53\x53\x53\xf1\x53" \
+    "\xa7\x4e\x51\x59\x96\xc1\x1c\xbb\xcf\x29\x37\x6e" \
+    "\xdc\xd8\xd7\x80\x53\xc7\x48\xe6\xa8\x27\xf6\x7d" \
+    "\xc6\x64\xb3\x59\xcc\xcd\xcd\xe9\x67\xce\x9c\xc9" \
+    "\x33\xc6\xbe\x03\xcc\x62\xd3\xef\xf7\x7f\x31\x34" \
+    "\x34\xf4\x59\x4b\x4b\xcb\xfa\xd4\xd4\x94\x91\xc5" \
+    "\x4d\x57\xb3\xfd\x1a\x65\x76\x48\xa8\x15\x56\xc7" \
+    "\x7b\xce\x18\x18\x77\xf4\x1d\x21\xdc\x39\xfe\xde" \
+    "\xbd\x7b\xf0\xf9\x7c\xeb\x43\x43\x43\x9f\xf9\xfd" \
+    "\xfe\x2f\x6c\x70\x30\x2e\x5d\x26\x87\x87\x87\xd7" \
+    "\x66\x67\x67\xcb\x8f\x1e\x3d\x02\x63\xd4\x04\x68" \
+    "\x71\x83\x99\x9c\xa1\xa0\xd4\x34\x62\x1b\xa6\x60" \
+    "\x94\x99\x7c\x62\x66\x85\x51\x1f\xc3\xac\xdf\x28" \
+    "\x07\xa3\x0c\x9c\x9a\x5c\xe3\xc6\x5c\x73\xb3\xb3" \
+    "\x58\x58\x58\x28\x0f\x0f\x0f\xaf\x01\x98\x34\xf1" \
+    "\xd4\xff\x7d\xb5\xb6\xb6\x4e\xf6\xf4\xf4\x5c\x5f" \
+    "\x59\x59\xf9\xc3\x9d\x3b\x77\x62\xc1\x50\x10\xd1" \
+    "\xf6\x28\xb0\x2d\x45\x9a\x62\x1d\xba\x02\xf5\x44" \
+    "\x2c\x84\x71\x33\x01\xe7\x1f\x68\xf3\x49\x38\x13" \
+    "\x6d\xbd\x94\x00\x04\x56\x56\x57\x71\xfb\xf6\x6d" \
+    "\xf4\xf6\xf6\x66\x7b\x7a\x7a\xae\x7b\x3c\x9e\x49" \
+    "\xcb\xcc\xb6\x8c\xca\x18\xfb\x68\x6c\x6c\xec\xd3" \
+    "\x50\x28\x94\xbd\xf9\xef\x9b\xc8\xe5\x72\x66\x29" \
+    "\xb3\xa3\x31\xa3\xbc\x61\xa6\x17\xad\x5a\xcc\xf0" \
+    "\x50\x5d\xcf\x2a\x85\xe8\xb6\x70\x5b\xa1\xa5\xc8" \
+    "\xe5\xf3\xb8\x79\xf3\x26\x42\xa1\x50\x76\x6c\x6c" \
+    "\xec\x53\xc6\xd8\x47\x4e\x3c\xdb\xc0\xc9\xb2\xfc" \
+    "\x84\x10\xf2\xe1\xc5\x8b\x17\xef\x48\x92\x54\x98" \
+    "\x98\x98\x40\x2a\xb5\x66\x18\x64\x06\x00\xab\xee" \
+    "\xda\xce\x37\x33\x8c\xd4\x7c\x76\x86\x95\xd6\x75" \
+    "\x8c\x10\x1b\xbf\xa7\x52\x29\x4c\x4c\x4c\x40\x92" \
+    "\xa4\xc2\xc5\x8b\x17\xef\x10\x42\x3e\x94\x65\xf9" \
+    "\x89\x13\xcf\x9e\x77\x25\xe5\x72\x79\x74\x73\x73" \
+    "\xf3\x8f\x93\x93\x93\x2f\xa7\x52\xa9\xe6\x57\x5e" \
+    "\x79\x05\x27\x4e\x9c\x70\x84\x74\xd7\x90\xe7\x92" \
+    "\xfb\xf7\xef\xe3\xf3\xcf\x3f\x47\x38\x1c\xde\xbc" \
+    "\x70\xe1\xc2\x57\xcd\xcd\xcd\x7f\x92\x65\xf9\xd6" \
+    "\x4e\xbd\x86\xb7\x4c\xb5\x5a\xed\x25\x21\xc4\xef" \
+    "\x6e\xdd\xba\xf5\xc6\xf4\xf4\x74\x53\x77\x77\x37" \
+    "\x1f\x19\x39\x8d\x40\x30\x08\xab\xdc\x14\x4e\xce" \
+    "\x1d\x40\xd2\xe9\x34\xbe\xf9\xe6\x1b\xcc\xcd\xcd" \
+    "\xd5\xfa\xfb\xfb\x4b\xa3\xa3\xa3\x9f\x10\x42\xfe" \
+    "\xcc\x39\xff\x7a\x2f\xfd\x67\x5d\x1e\x76\xd5\x6a" \
+    "\xb5\xf7\xe6\xe7\xe7\x2f\x4f\x4d\x4d\x79\x53\xa9" \
+    "\x94\xd4\xd7\xd7\x47\xfa\xfb\xfb\x11\x8f\xc7\x77" \
+    "\xa8\x92\x7a\x7d\xb5\x9d\xfb\x58\x5a\x5a\xc2\xf4" \
+    "\xf4\x34\x66\x66\x66\x44\x38\x1c\x56\x4f\x9f\x3e" \
+    "\xbd\xf1\xe2\x8b\x2f\x7e\xc0\x39\xff\x0b\x80\x85" \
+    "\x46\xc6\x0f\x74\xb3\xa9\x69\xda\xaf\x01\xfc\x76" \
+    "\x66\x66\xe6\x8d\xe9\xe9\x69\xbe\xb8\xb8\xc8\xfc" \
+    "\x7e\x3f\xed\xe8\xe8\x40\x2c\x16\x43\x38\x1c\x46" \
+    "\x5b\x5b\x1b\x64\x59\x46\xb9\x5c\x46\x3e\x9f\x47" \
+    "\x2a\x95\xc2\xf2\xf2\x32\x16\x17\x17\x91\xcd\x66" \
+    "\xf5\x8e\x8e\x0e\xad\xbf\xbf\xbf\xd6\xd7\xd7\xf7" \
+    "\x09\x80\xbf\x32\xc6\xfe\xfe\x2c\xbb\x07\xbe\x13" \
+    "\x06\xd0\xa4\x69\xda\x1b\x84\x90\x5f\x66\x32\x99" \
+    "\x57\x17\x16\x16\x82\xc9\x64\x92\xac\xac\xac\xd0" \
+    "\x74\x3a\x4d\x0a\x85\x02\x29\x97\xcb\x90\x65\x19" \
+    "\x2d\x2d\x2d\x22\x18\x0c\x8a\x68\x34\xaa\x27\x12" \
+    "\x09\xd1\xd5\xd5\x95\x0e\x04\x02\x13\x42\x88\xcf" \
+    "\x18\x63\x9f\x00\x68\x78\x9b\xf9\xdf\x82\x73\xca" \
+    "\x31\x00\xa7\x01\x9c\x14\x42\xf4\x00\xe8\x04\x10" \
+    "\x06\xe0\x05\xb0\x01\x20\x05\xe0\x31\x21\xe4\x21" \
+    "\x80\x7b\x00\xa6\x00\x3c\x7a\x5e\x23\xff\x01\xb4" \
+    "\x79\xd2\x67\x0f\x09\x9f\xfb\x00\x00\x00\x00\x49" \
+    "\x45\x4e\x44\xae\x42\x60\x82"
 
 class pyAnalyzeControlsView(QWidget):
-  def __init__(self,parent = None,name = None,fl = 0):
-    QWidget.__init__(self,parent,name,fl)
+    def __init__(self,parent = None,name = None,fl = 0):
+        QWidget.__init__(self,parent,name,fl)
 
-    self.image0 = QPixmap()
-    self.image0.loadFromData(image0_data,"PNG")
-    self.image1 = QPixmap()
-    self.image1.loadFromData(image1_data,"PNG")
-    self.image2 = QPixmap()
-    self.image2.loadFromData(image2_data,"PNG")
-    self.image3 = QPixmap()
-    self.image3.loadFromData(image3_data,"PNG")
-    if not name:
-      self.setName("pyAnalyzeControlsView")
+        self.image0 = QPixmap()
+        self.image0.loadFromData(image0_data,"PNG")
+        self.image1 = QPixmap()
+        self.image1.loadFromData(image1_data,"PNG")
+        self.image2 = QPixmap()
+        self.image2.loadFromData(image2_data,"PNG")
+        self.image3 = QPixmap()
+        self.image3.loadFromData(image3_data,"PNG")
+        if not name:
+            self.setName("pyAnalyzeControlsView")
 
 
-    pyAnalyzeControlsViewLayout = QVBoxLayout(self,0,0,"pyAnalyzeControlsViewLayout")
+        pyAnalyzeControlsViewLayout = QVBoxLayout(self,0,0,"pyAnalyzeControlsViewLayout")
 
-    self.slider1 = QSlider(self,"slider1")
-    self.slider1.setOrientation(QSlider.Horizontal)
-    self.slider1.setTickmarks(QSlider.Below)
-    pyAnalyzeControlsViewLayout.addWidget(self.slider1)
+        self.slider1 = QSlider(self,"slider1")
+        self.slider1.setOrientation(QSlider.Horizontal)
+        self.slider1.setTickmarks(QSlider.Below)
+        pyAnalyzeControlsViewLayout.addWidget(self.slider1)
 
-    layout136 = QHBoxLayout(None,0,6,"layout136")
+        layout136 = QHBoxLayout(None,0,6,"layout136")
 
-    self.textLabel7 = QLabel(self,"textLabel7")
-    textLabel7_font = QFont(self.textLabel7.font())
-    textLabel7_font.setPointSize(10)
-    self.textLabel7.setFont(textLabel7_font)
-    self.textLabel7.setAlignment(QLabel.AlignVCenter | QLabel.AlignLeft)
-    layout136.addWidget(self.textLabel7)
+        self.textLabel7 = QLabel(self,"textLabel7")
+        textLabel7_font = QFont(self.textLabel7.font())
+        textLabel7_font.setPointSize(10)
+        self.textLabel7.setFont(textLabel7_font)
+        self.textLabel7.setAlignment(QLabel.AlignVCenter | QLabel.AlignLeft)
+        layout136.addWidget(self.textLabel7)
 
-    self.textLabel7_2 = QLabel(self,"textLabel7_2")
-    textLabel7_2_font = QFont(self.textLabel7_2.font())
-    textLabel7_2_font.setPointSize(10)
-    self.textLabel7_2.setFont(textLabel7_2_font)
-    self.textLabel7_2.setAlignment(QLabel.AlignVCenter | QLabel.AlignRight)
-    layout136.addWidget(self.textLabel7_2)
-    pyAnalyzeControlsViewLayout.addLayout(layout136)
+        self.textLabel7_2 = QLabel(self,"textLabel7_2")
+        textLabel7_2_font = QFont(self.textLabel7_2.font())
+        textLabel7_2_font.setPointSize(10)
+        self.textLabel7_2.setFont(textLabel7_2_font)
+        self.textLabel7_2.setAlignment(QLabel.AlignVCenter | QLabel.AlignRight)
+        layout136.addWidget(self.textLabel7_2)
+        pyAnalyzeControlsViewLayout.addLayout(layout136)
 
-    layout141 = QHBoxLayout(None,0,0,"layout141")
+        layout141 = QHBoxLayout(None,0,0,"layout141")
 
-    self.toolButton23 = QToolButton(self,"toolButton23")
-    self.toolButton23.setIconSet(QIconSet(self.image0))
-    layout141.addWidget(self.toolButton23)
+        self.toolButton23 = QToolButton(self,"toolButton23")
+        self.toolButton23.setIconSet(QIconSet(self.image0))
+        layout141.addWidget(self.toolButton23)
 
-    layout140 = QVBoxLayout(None,0,0,"layout140")
+        layout140 = QVBoxLayout(None,0,0,"layout140")
 
-    self.textLabel8 = QLabel(self,"textLabel8")
-    textLabel8_font = QFont(self.textLabel8.font())
-    textLabel8_font.setPointSize(10)
-    self.textLabel8.setFont(textLabel8_font)
-    self.textLabel8.setAlignment(QLabel.AlignCenter)
-    layout140.addWidget(self.textLabel8)
+        self.textLabel8 = QLabel(self,"textLabel8")
+        textLabel8_font = QFont(self.textLabel8.font())
+        textLabel8_font.setPointSize(10)
+        self.textLabel8.setFont(textLabel8_font)
+        self.textLabel8.setAlignment(QLabel.AlignCenter)
+        layout140.addWidget(self.textLabel8)
 
-    self.lineEdit1 = QLineEdit(self,"lineEdit1")
-    lineEdit1_font = QFont(self.lineEdit1.font())
-    lineEdit1_font.setPointSize(10)
-    self.lineEdit1.setFont(lineEdit1_font)
-    layout140.addWidget(self.lineEdit1)
-    layout141.addLayout(layout140)
+        self.lineEdit1 = QLineEdit(self,"lineEdit1")
+        lineEdit1_font = QFont(self.lineEdit1.font())
+        lineEdit1_font.setPointSize(10)
+        self.lineEdit1.setFont(lineEdit1_font)
+        layout140.addWidget(self.lineEdit1)
+        layout141.addLayout(layout140)
 
-    self.toolButton24 = QToolButton(self,"toolButton24")
-    self.toolButton24.setIconSet(QIconSet(self.image1))
-    layout141.addWidget(self.toolButton24)
-    pyAnalyzeControlsViewLayout.addLayout(layout141)
+        self.toolButton24 = QToolButton(self,"toolButton24")
+        self.toolButton24.setIconSet(QIconSet(self.image1))
+        layout141.addWidget(self.toolButton24)
+        pyAnalyzeControlsViewLayout.addLayout(layout141)
 
-    layout137 = QHBoxLayout(None,0,0,"layout137")
-    spacer97_2 = QSpacerItem(10,10,QSizePolicy.Expanding,QSizePolicy.Minimum)
-    layout137.addItem(spacer97_2)
+        layout137 = QHBoxLayout(None,0,0,"layout137")
+        spacer97_2 = QSpacerItem(10,10,QSizePolicy.Expanding,QSizePolicy.Minimum)
+        layout137.addItem(spacer97_2)
 
-    self.widgetStack3 = QWidgetStack(self,"widgetStack3")
+        self.widgetStack3 = QWidgetStack(self,"widgetStack3")
 
-    self.WStackPage = QWidget(self.widgetStack3,"WStackPage")
-    WStackPageLayout = QVBoxLayout(self.WStackPage,0,0,"WStackPageLayout")
+        self.WStackPage = QWidget(self.widgetStack3,"WStackPage")
+        WStackPageLayout = QVBoxLayout(self.WStackPage,0,0,"WStackPageLayout")
 
-    self.toolButton19 = QToolButton(self.WStackPage,"toolButton19")
-    self.toolButton19.setIconSet(QIconSet(self.image2))
-    self.toolButton19.setUsesBigPixmap(0)
-    WStackPageLayout.addWidget(self.toolButton19)
-    self.widgetStack3.addWidget(self.WStackPage,0)
+        self.toolButton19 = QToolButton(self.WStackPage,"toolButton19")
+        self.toolButton19.setIconSet(QIconSet(self.image2))
+        self.toolButton19.setUsesBigPixmap(0)
+        WStackPageLayout.addWidget(self.toolButton19)
+        self.widgetStack3.addWidget(self.WStackPage,0)
 
-    self.WStackPage_2 = QWidget(self.widgetStack3,"WStackPage_2")
-    WStackPageLayout_2 = QVBoxLayout(self.WStackPage_2,0,0,"WStackPageLayout_2")
+        self.WStackPage_2 = QWidget(self.widgetStack3,"WStackPage_2")
+        WStackPageLayout_2 = QVBoxLayout(self.WStackPage_2,0,0,"WStackPageLayout_2")
 
-    self.toolButton20 = QToolButton(self.WStackPage_2,"toolButton20")
-    self.toolButton20.setIconSet(QIconSet(self.image3))
-    self.toolButton20.setUsesBigPixmap(0)
-    WStackPageLayout_2.addWidget(self.toolButton20)
-    self.widgetStack3.addWidget(self.WStackPage_2,1)
-    layout137.addWidget(self.widgetStack3)
-    spacer97 = QSpacerItem(10,10,QSizePolicy.Expanding,QSizePolicy.Minimum)
-    layout137.addItem(spacer97)
-    pyAnalyzeControlsViewLayout.addLayout(layout137)
-    spacer99 = QSpacerItem(10,10,QSizePolicy.Minimum,QSizePolicy.Expanding)
-    pyAnalyzeControlsViewLayout.addItem(spacer99)
+        self.toolButton20 = QToolButton(self.WStackPage_2,"toolButton20")
+        self.toolButton20.setIconSet(QIconSet(self.image3))
+        self.toolButton20.setUsesBigPixmap(0)
+        WStackPageLayout_2.addWidget(self.toolButton20)
+        self.widgetStack3.addWidget(self.WStackPage_2,1)
+        layout137.addWidget(self.widgetStack3)
+        spacer97 = QSpacerItem(10,10,QSizePolicy.Expanding,QSizePolicy.Minimum)
+        layout137.addItem(spacer97)
+        pyAnalyzeControlsViewLayout.addLayout(layout137)
+        spacer99 = QSpacerItem(10,10,QSizePolicy.Minimum,QSizePolicy.Expanding)
+        pyAnalyzeControlsViewLayout.addItem(spacer99)
 
-    self.languageChange()
+        self.languageChange()
 
-    self.resize(QSize(176,125).expandedTo(self.minimumSizeHint()))
-    self.clearWState(Qt.WState_Polished)
+        self.resize(QSize(176,125).expandedTo(self.minimumSizeHint()))
+        self.clearWState(Qt.WState_Polished)
 
 
-  def languageChange(self):
-    self.setCaption(self.__tr("pyAnalyzeControlsView"))
-    self.textLabel7.setText(self.__tr("slow"))
-    self.textLabel7_2.setText(self.__tr("fast"))
-    self.toolButton23.setText(QString.null)
-    self.textLabel8.setText(self.__tr("# of steps"))
-    self.toolButton24.setText(QString.null)
-    self.toolButton19.setText(QString.null)
-    self.toolButton20.setText(QString.null)
+    def languageChange(self):
+        self.setCaption(self.__tr("pyAnalyzeControlsView"))
+        self.textLabel7.setText(self.__tr("slow"))
+        self.textLabel7_2.setText(self.__tr("fast"))
+        self.toolButton23.setText(QString.null)
+        self.textLabel8.setText(self.__tr("# of steps"))
+        self.toolButton24.setText(QString.null)
+        self.toolButton19.setText(QString.null)
+        self.toolButton20.setText(QString.null)
 
 
-  def __tr(self,s,c = None):
-    return qApp.translate("pyAnalyzeControlsView",s,c)
+    def __tr(self,s,c = None):
+        return qApp.translate("pyAnalyzeControlsView",s,c)

Modified: trunk/source/python/AvidaGui2/pyAvida.py
===================================================================
--- trunk/source/python/AvidaGui2/pyAvida.py	2005-03-31 03:44:15 UTC (rev 95)
+++ trunk/source/python/AvidaGui2/pyAvida.py	2005-03-31 09:26:09 UTC (rev 96)
@@ -78,6 +78,12 @@
 
     return self
 
+  def addGuiWorkFunctor(self, thread_work_functor):
+    self.m_avida_threaded_driver.addGuiWorkFunctor(thread_work_functor)
+    
+  def removeGuiWorkFunctor(self, thread_work_functor):
+    self.m_avida_threaded_driver.removeGuiWorkFunctor(thread_work_functor)
+
   def destruct(self):
     self.m_avida_thread_mdtr.emit(qt.PYSIGNAL("doCloseAvidaSig"),())
     if hasattr(self, "m_update_ck_timer"):

Modified: trunk/source/python/AvidaGui2/pyAvidaThreadedDriver.py
===================================================================
--- trunk/source/python/AvidaGui2/pyAvidaThreadedDriver.py	2005-03-31 03:44:15 UTC (rev 95)
+++ trunk/source/python/AvidaGui2/pyAvidaThreadedDriver.py	2005-03-31 09:26:09 UTC (rev 96)
@@ -28,6 +28,8 @@
     # to exit, preventing the python process from exiting.
     atexit.register(self.__del__)
 
+    self.m_work_functors = []
+
     pass
 
   def __del__(self):
@@ -48,6 +50,14 @@
         self.m_lock.acquire()
         # continue update.
         self.m_updating = self.ProcessSome(self.m_process_bitesize)
+      # do work on behalf of gui.
+      for work_functor in self.m_work_functors:
+        functor_still_working = True
+        while functor_still_working:
+          self.m_lock.release()
+          self.m_lock.acquire()
+          functor_still_working = work_functor.doSomeWork(self)
+          
       self.m_lock.release()
       # tell other threads that an update has completed (possibly
       # unsuccessfully).
@@ -55,6 +65,16 @@
       if self.getDoneFlag():
         return
 
+  def addGuiWorkFunctor(self, thread_work_functor):
+    self.m_lock.acquire()
+    self.m_work_functors.append(thread_work_functor)
+    self.m_lock.release()
+    
+  def removeGuiWorkFunctor(self, thread_work_functor):
+    self.m_lock.acquire()
+    self.m_work_functors.remove(thread_work_functor)
+    self.m_lock.release()
+
   def doExit(self):
 #    print("pyAvidaThreadedDriver.doExit()...")
     self.m_lock.acquire()

Modified: trunk/source/python/AvidaGui2/pyEduMainCtrl.py
===================================================================
--- trunk/source/python/AvidaGui2/pyEduMainCtrl.py	2005-03-31 03:44:15 UTC (rev 95)
+++ trunk/source/python/AvidaGui2/pyEduMainCtrl.py	2005-03-31 09:26:09 UTC (rev 96)
@@ -25,16 +25,26 @@
     self.m_main_mdl.m_main_mdtr = pyMdtr()
     self.m_main_controller_factory = pyMainControllerFactory()
     self.m_main_controller_factory.construct(self.m_main_mdl)
-    self.m_main_controller_factory.addControllerCreator("pyEduMainMenuBarHdlr", pyEduMainMenuBarHdlr)
-    ##self.m_main_controller_factory.addControllerCreator("pyEduMainConsoleCtrl", pyEduMainConsoleCtrlCreator())
-    ##self.m_main_controller_factory.addControllerCreator("pyEduMainPrefsCtrl", pyEduMainPrefsCtrlCreator())
-    ##self.m_main_controller_factory.addControllerCreator("pyMainQuitHdlr", pyMainQuitHdlrCreator())
-    self.m_main_controller_factory.addControllerCreator("pySessionCtrl", pySessionCtrl)
+    self.m_main_controller_factory.addControllerCreator(
+      "pyEduMainMenuBarHdlr", pyEduMainMenuBarHdlr)
+    #self.m_main_controller_factory.addControllerCreator(
+    #  "pyEduMainConsoleCtrl", pyEduMainConsoleCtrlCreator())
+    #self.m_main_controller_factory.addControllerCreator(
+    #  "pyEduMainPrefsCtrl", pyEduMainPrefsCtrlCreator())
+    #self.m_main_controller_factory.addControllerCreator(
+    #  "pyMainQuitHdlr", pyMainQuitHdlrCreator())
+    self.m_main_controller_factory.addControllerCreator(
+      "pySessionCtrl", pySessionCtrl)
 
-    self.m_main_mdl.m_main_mdtr.m_main_controller_factory_mdtr.emit( qt.PYSIGNAL("newMainControllerSig"), ("pyEduMainMenuBarHdlr",))
+    self.m_main_mdl.m_main_mdtr.m_main_controller_factory_mdtr.emit(
+      qt.PYSIGNAL("newMainControllerSig"), ("pyEduMainMenuBarHdlr",))
     return self
   def unitTest(self, recurse = False):
-    return pyUnitTestSuiteRecurser("pyEduMainCtrl", globals(), recurse).construct().runTest().lastResult()
+    return pyUnitTestSuiteRecurser(
+      "pyEduMainCtrl",
+      globals(),
+      recurse
+    ).construct().runTest().lastResult()
 
 
 # Unit tests.
@@ -65,7 +75,8 @@
           edu_main_ctrl = pyEduMainCtrl()
           edu_main_ctrl.construct()
           edu_main_ctrl.m_main_mdl.m_main_mdtr.m_main_controller_factory_mdtr.emit(
-            qt.PYSIGNAL("newMainControllerSig"), ("pySessionCtrl", cString("genesis.avida"), ))
+            qt.PYSIGNAL("newMainControllerSig"),
+            ("pySessionCtrl", cString("genesis.avida"), ))
           return edu_main_ctrl
 
         print """

Modified: trunk/source/python/AvidaGui2/pyEduWorkspaceCtrl.py
===================================================================
--- trunk/source/python/AvidaGui2/pyEduWorkspaceCtrl.py	2005-03-31 03:44:15 UTC (rev 95)
+++ trunk/source/python/AvidaGui2/pyEduWorkspaceCtrl.py	2005-03-31 09:26:09 UTC (rev 96)
@@ -51,6 +51,7 @@
     #for ctrl in self.m_ctrl_to_cli_dict.keys():
     #  ctrl.construct(self.m_session_mdl)
     self.m_one_population_ctrl.construct(self.m_session_mdl)
+    self.m_one_organism_ctrl.construct(self.m_session_mdl)
 
     self.connect(self.m_nav_bar_ctrl.m_list_view, SIGNAL("clicked(QListViewItem *)"), self.navBarItemClickedSlot)
     self.connect(self.m_widget_stack, SIGNAL("aboutToShow(QWidget *)"), self.ctrlAboutToShowSlot)

Modified: trunk/source/python/AvidaGui2/pyEduWorkspaceView.py
===================================================================
--- trunk/source/python/AvidaGui2/pyEduWorkspaceView.py	2005-03-31 03:44:15 UTC (rev 95)
+++ trunk/source/python/AvidaGui2/pyEduWorkspaceView.py	2005-03-31 09:26:09 UTC (rev 96)
@@ -1,9 +1,9 @@
 # -*- coding: utf-8 -*-
 
-# Form implementation generated from reading ui file '/Users/kaben/Projects/Software/Avida/branch.kaben/avida--current--2.0--base-0/source/bindings/Boost.Python/AvidaGui2/pyEduWorkspaceView.ui'
+# Form implementation generated from reading ui file 'pyEduWorkspaceView.ui'
 #
-# Created: Fri Dec 3 10:26:50 2004
-#      by: The PyQt User Interface Compiler (pyuic) 3.12
+# Created: Thu Mar 31 04:19:18 2005
+#      by: The PyQt User Interface Compiler (pyuic) 3.13
 #
 # WARNING! All changes made in this file will be lost!
 
@@ -19,562 +19,556 @@
 from pyTwoPopulationCtrl import pyTwoPopulationCtrl
 
 image1_data = \
-  "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
-  "\x49\x48\x44\x52\x00\x00\x00\x16\x00\x00\x00\x16" \
-  "\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\x00\x00\x00" \
-  "\x74\x49\x44\x41\x54\x78\x9c\xed\xd5\xc1\x09\xc0" \
-  "\x20\x0c\x05\xd0\x6f\xe9\x36\x81\x2c\x10\xb2\xff" \
-  "\xdd\x85\xd2\x53\x85\xb6\xa9\x91\x48\x0f\x05\x3f" \
-  "\x08\x1a\xf0\x29\x12\x10\xf8\x28\xc5\xa9\xd9\xc4" \
-  "\xde\x96\xcd\x2b\x9a\xd9\xeb\x00\x00\x66\x0e\x2f" \
-  "\xe0\xc2\x51\x98\x39\xc4\xf7\x0c\x4c\x44\x6d\x5e" \
-  "\x6b\x35\x38\xcf\x92\x82\x45\xe4\xb2\xf6\xf0\x14" \
-  "\xac\xaa\x8f\xda\x1d\x4f\xc1\xa5\x74\x1b\x22\x07" \
-  "\x9f\x9d\x11\x1d\x96\xea\x8a\x91\x2c\x78\xc1\x0b" \
-  "\xee\x64\xe6\x07\x19\xf5\x7e\x92\x03\xad\x45\x2a" \
-  "\x04\x03\x18\xf5\xf7\x00\x00\x00\x00\x49\x45\x4e" \
-  "\x44\xae\x42\x60\x82"
+    "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
+    "\x49\x48\x44\x52\x00\x00\x00\x16\x00\x00\x00\x16" \
+    "\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\x00\x00\x00" \
+    "\x74\x49\x44\x41\x54\x78\x9c\xed\xd5\xc1\x09\xc0" \
+    "\x20\x0c\x05\xd0\x6f\xe9\x36\x81\x2c\x10\xb2\xff" \
+    "\xdd\x85\xd2\x53\x85\xb6\xa9\x91\x48\x0f\x05\x3f" \
+    "\x08\x1a\xf0\x29\x12\x10\xf8\x28\xc5\xa9\xd9\xc4" \
+    "\xde\x96\xcd\x2b\x9a\xd9\xeb\x00\x00\x66\x0e\x2f" \
+    "\xe0\xc2\x51\x98\x39\xc4\xf7\x0c\x4c\x44\x6d\x5e" \
+    "\x6b\x35\x38\xcf\x92\x82\x45\xe4\xb2\xf6\xf0\x14" \
+    "\xac\xaa\x8f\xda\x1d\x4f\xc1\xa5\x74\x1b\x22\x07" \
+    "\x9f\x9d\x11\x1d\x96\xea\x8a\x91\x2c\x78\xc1\x0b" \
+    "\xee\x64\xe6\x07\x19\xf5\x7e\x92\x03\xad\x45\x2a" \
+    "\x04\x03\x18\xf5\xf7\x00\x00\x00\x00\x49\x45\x4e" \
+    "\x44\xae\x42\x60\x82"
 image2_data = \
-  "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
-  "\x49\x48\x44\x52\x00\x00\x00\x16\x00\x00\x00\x16" \
-  "\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\x00\x00\x00" \
-  "\x99\x49\x44\x41\x54\x78\x9c\xed\x94\x41\x0e\x85" \
-  "\x20\x0c\x44\x5f\x89\xc7\x36\x7f\x61\xbc\x77\x5d" \
-  "\x28\x48\xa4\x28\x60\xff\xce\xd9\x54\x8b\xbe\x8e" \
-  "\x13\x04\x3e\x1d\x92\x81\x77\xf4\x81\xa1\x23\xdc" \
-  "\x2b\x34\xf6\xf4\x7a\x3d\xe2\xb8\x65\xa8\x84\x3f" \
-  "\x40\x01\x98\x2a\x0b\x3d\x5f\x62\xc5\x83\x00\xaa" \
-  "\x1a\xd7\x05\x50\x44\x9a\xb9\xd5\x07\xa7\x73\xa8" \
-  "\xa4\xba\x4f\x92\xa2\xdf\x33\x3c\x64\xc6\x3b\xeb" \
-  "\xbd\x82\xe5\xb8\xad\xde\xcb\xcc\x78\x20\xeb\x42" \
-  "\x66\xc6\x39\x74\x5d\xfa\x80\xf3\x6f\xaf\x66\xc6" \
-  "\x6f\xa1\x9c\x3f\x88\x2f\xb4\x70\xec\x05\xcd\xc0" \
-  "\xbe\xd0\x78\x93\xf6\x8e\x17\x14\x92\x63\x5f\x68" \
-  "\x6c\x3e\xef\xf6\xba\x3c\x8f\xdd\x36\x6d\xc4\xc0" \
-  "\x45\x2c\xf1\x53\xa9\x59\x00\x00\x00\x00\x49\x45" \
-  "\x4e\x44\xae\x42\x60\x82"
+    "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
+    "\x49\x48\x44\x52\x00\x00\x00\x16\x00\x00\x00\x16" \
+    "\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\x00\x00\x00" \
+    "\x99\x49\x44\x41\x54\x78\x9c\xed\x94\x41\x0e\x85" \
+    "\x20\x0c\x44\x5f\x89\xc7\x36\x7f\x61\xbc\x77\x5d" \
+    "\x28\x48\xa4\x28\x60\xff\xce\xd9\x54\x8b\xbe\x8e" \
+    "\x13\x04\x3e\x1d\x92\x81\x77\xf4\x81\xa1\x23\xdc" \
+    "\x2b\x34\xf6\xf4\x7a\x3d\xe2\xb8\x65\xa8\x84\x3f" \
+    "\x40\x01\x98\x2a\x0b\x3d\x5f\x62\xc5\x83\x00\xaa" \
+    "\x1a\xd7\x05\x50\x44\x9a\xb9\xd5\x07\xa7\x73\xa8" \
+    "\xa4\xba\x4f\x92\xa2\xdf\x33\x3c\x64\xc6\x3b\xeb" \
+    "\xbd\x82\xe5\xb8\xad\xde\xcb\xcc\x78\x20\xeb\x42" \
+    "\x66\xc6\x39\x74\x5d\xfa\x80\xf3\x6f\xaf\x66\xc6" \
+    "\x6f\xa1\x9c\x3f\x88\x2f\xb4\x70\xec\x05\xcd\xc0" \
+    "\xbe\xd0\x78\x93\xf6\x8e\x17\x14\x92\x63\x5f\x68" \
+    "\x6c\x3e\xef\xf6\xba\x3c\x8f\xdd\x36\x6d\xc4\xc0" \
+    "\x45\x2c\xf1\x53\xa9\x59\x00\x00\x00\x00\x49\x45" \
+    "\x4e\x44\xae\x42\x60\x82"
 image3_data = \
-  "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
-  "\x49\x48\x44\x52\x00\x00\x00\x16\x00\x00\x00\x16" \
-  "\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\x00\x00\x00" \
-  "\xa0\x49\x44\x41\x54\x78\x9c\xd5\x95\x4d\x0a\x80" \
-  "\x20\x10\x85\x9f\xd1\x46\x68\xe1\x8d\xe6\x62\xd2" \
-  "\x22\xbc\x98\x37\x6a\x21\xb4\xac\x45\x19\x92\xc6" \
-  "\x64\x69\xe0\xb7\xf1\x87\xf1\xf1\x1c\x47\x05\x2a" \
-  "\x21\x8e\x76\x2d\xad\xdb\xfb\x9e\x99\xf6\x56\x8f" \
-  "\x80\xb5\x36\x4b\x85\x88\xce\x35\x44\x04\x00\xe8" \
-  "\x0a\x39\x8c\xe8\xf9\x90\x34\xd2\x29\x2c\xc3\x7c" \
-  "\x8e\xbd\x53\x0f\xeb\x58\x3a\x05\xe9\x54\x34\x1f" \
-  "\x8a\x02\x7b\x2a\x7d\x3a\x1f\x09\xbf\x85\x4d\xc5" \
-  "\xd5\xd9\x53\xaa\x39\x6e\x4f\x38\xca\xb1\x99\xe2" \
-  "\xd2\xe1\x08\xab\xe1\x56\xf8\x2e\x30\x97\x7f\xcb" \
-  "\x4d\x8f\xf9\x42\xd7\x5d\xbe\xbe\xd2\xe1\x43\x95" \
-  "\x3a\x93\xf6\xca\xad\x3d\x61\x11\xf4\x4b\x7d\x4f" \
-  "\x82\x0f\xf9\xc0\x06\x9b\xb5\x1e\xcd\x12\x20\x66" \
-  "\x74\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60" \
-  "\x82"
+    "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
+    "\x49\x48\x44\x52\x00\x00\x00\x16\x00\x00\x00\x16" \
+    "\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\x00\x00\x00" \
+    "\xa0\x49\x44\x41\x54\x78\x9c\xd5\x95\x4d\x0a\x80" \
+    "\x20\x10\x85\x9f\xd1\x46\x68\xe1\x8d\xe6\x62\xd2" \
+    "\x22\xbc\x98\x37\x6a\x21\xb4\xac\x45\x19\x92\xc6" \
+    "\x64\x69\xe0\xb7\xf1\x87\xf1\xf1\x1c\x47\x05\x2a" \
+    "\x21\x8e\x76\x2d\xad\xdb\xfb\x9e\x99\xf6\x56\x8f" \
+    "\x80\xb5\x36\x4b\x85\x88\xce\x35\x44\x04\x00\xe8" \
+    "\x0a\x39\x8c\xe8\xf9\x90\x34\xd2\x29\x2c\xc3\x7c" \
+    "\x8e\xbd\x53\x0f\xeb\x58\x3a\x05\xe9\x54\x34\x1f" \
+    "\x8a\x02\x7b\x2a\x7d\x3a\x1f\x09\xbf\x85\x4d\xc5" \
+    "\xd5\xd9\x53\xaa\x39\x6e\x4f\x38\xca\xb1\x99\xe2" \
+    "\xd2\xe1\x08\xab\xe1\x56\xf8\x2e\x30\x97\x7f\xcb" \
+    "\x4d\x8f\xf9\x42\xd7\x5d\xbe\xbe\xd2\xe1\x43\x95" \
+    "\x3a\x93\xf6\xca\xad\x3d\x61\x11\xf4\x4b\x7d\x4f" \
+    "\x82\x0f\xf9\xc0\x06\x9b\xb5\x1e\xcd\x12\x20\x66" \
+    "\x74\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60" \
+    "\x82"
 image4_data = \
-  "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
-  "\x49\x48\x44\x52\x00\x00\x00\x16\x00\x00\x00\x16" \
-  "\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\x00\x00\x02" \
-  "\x9c\x49\x44\x41\x54\x78\x9c\x8d\x95\xad\x76\xdb" \
-  "\x40\x10\x85\x3f\xf7\x18\xcc\x32\x89\xd9\x50\xd0" \
-  "\x61\x36\x34\x4c\x98\xc3\x62\x96\x40\x87\x25\x6f" \
-  "\x50\x3f\x42\x61\x61\x02\x1b\xe6\xb2\x84\x25\x50" \
-  "\x61\x2e\x8b\xe1\x42\x99\x49\x6c\x86\x6d\xc1\x4a" \
-  "\xb2\xfc\x77\xda\x21\x92\x66\x57\x77\xee\xdc\x3b" \
-  "\x5a\xf5\x38\x13\xaf\xaf\xaf\x41\x44\x48\xd3\x74" \
-  "\x2f\x6f\x66\x00\xa8\x2a\x00\x55\x55\x91\x24\x09" \
-  "\x57\x57\x57\xbd\xee\xbe\xfe\x39\x60\x11\x61\x32" \
-  "\x99\xb4\x40\x87\x6b\x4d\x94\x65\x89\xf7\xfe\x68" \
-  "\xcf\x59\x60\x80\xcd\x66\x73\x04\x76\x58\x48\x55" \
-  "\x71\xce\xfd\x3f\xf0\x29\x00\x33\x3b\x2a\x70\xaa" \
-  "\x23\x80\x6f\xa7\x92\x79\x9e\x07\x33\x6b\x99\x38" \
-  "\xe7\x70\xce\xed\xe9\xdd\xe8\x2f\x22\x47\xfa\x9e" \
-  "\x65\xac\xaa\x24\x49\x42\x59\x96\x88\x48\x6b\x54" \
-  "\x37\x4e\xb5\xff\x4f\xc6\x10\x5b\x3c\x9c\x88\x2e" \
-  "\x68\x53\xec\x9c\x14\x27\x19\x37\x6c\x4e\x31\xed" \
-  "\xe6\x55\x75\x6f\x42\xba\x71\xa4\x0d\xc0\x6a\xb5" \
-  "\x0a\x59\x96\x31\x1c\x0e\xcf\x82\x37\x46\x7e\x7e" \
-  "\x7e\x02\x20\x92\x30\x9f\x5f\xb7\x78\x7b\x8c\xdf" \
-  "\xdf\xdf\x83\xf7\x9e\xfc\x23\x47\x66\x82\x88\xb4" \
-  "\x00\x87\xd7\x86\x69\x59\x94\xe4\x79\xce\xb6\xda" \
-  "\xf2\xf0\xf0\x10\x66\xb3\x19\xd7\xd7\xd7\xbd\x5e" \
-  "\x17\x74\xb3\xf1\x54\xc5\x16\x35\x80\xd3\x4c\x01" \
-  "\x9c\xa4\x08\x02\x0e\x7c\xe1\x59\xaf\xff\xb0\xdd" \
-  "\x16\xa8\x1a\x17\x17\x19\x8b\xc5\x22\x4a\xd1\x30" \
-  "\xbd\x9c\x5e\xe2\xd2\x14\x55\x03\x53\x8e\x6c\x31" \
-  "\x03\x84\x9c\x4f\x3e\x78\x65\x6a\x53\xd2\xaf\x94" \
-  "\xe7\x97\x67\xfc\x57\xfc\xfa\xd4\x94\x6c\x74\x11" \
-  "\x41\x9f\x9e\x7e\x85\xb2\x28\xc3\xff\xc4\x57\xf8" \
-  "\x0a\xa3\x30\x0a\x12\x24\x8c\xc2\x28\xac\xd7\xeb" \
-  "\xf0\xe3\xfb\xcf\x30\x1e\x8f\xc3\x60\x90\x85\x24" \
-  "\x49\x42\x36\xc8\x42\xbf\xda\x56\xdc\xdd\xdd\x9c" \
-  "\x75\xf7\x30\x52\x52\x2e\x99\x92\x23\xcc\x98\x31" \
-  "\x1e\x8f\x49\x64\x48\x69\x05\xcf\xbf\x5e\xa8\xaa" \
-  "\x8a\x74\x90\xd2\x37\xc0\xfb\x22\xce\xa3\x19\x88" \
-  "\x10\x6b\x48\xed\x36\x38\x5c\x54\xdc\x14\xc4\xf1" \
-  "\x60\xdf\xb9\xc1\x33\xb4\x21\x7f\xd8\x80\x19\xe9" \
-  "\x70\x18\xd7\x6b\x77\xfa\x65\x51\xe0\x45\xa2\x9e" \
-  "\x66\xb4\xbe\x39\x88\x2e\xd6\x9d\x38\x03\x15\x20" \
-  "\xe6\x04\xf0\xb6\xc5\x88\x67\x88\xdf\x6c\x5a\x4f" \
-  "\x1c\xf5\xb8\x35\x09\x6b\x00\xb1\x76\x28\x14\x8b" \
-  "\x35\x74\x6f\x67\x3b\x39\xd2\x78\xda\x09\x45\xe9" \
-  "\x23\x60\x65\xe7\x05\xad\xc9\x76\x37\x1a\x20\x0a" \
-  "\x76\xb8\xe2\x30\x2b\xa9\xfb\x6c\x7a\x63\x32\x99" \
-  "\xf2\x0d\xeb\xb0\x6c\xc9\x6a\x7c\xb4\xfa\xba\x07" \
-  "\xea\x9a\x6d\x35\x68\x0d\x58\xcb\x39\x18\x0c\x58" \
-  "\x2c\xee\x22\x63\xef\x7d\x63\x15\x88\x41\x25\x40" \
-  "\x15\x9d\x33\x8b\x30\xd2\xb0\xb2\x1d\x18\x3b\xcd" \
-  "\x31\x43\x04\x96\xcb\x25\xf3\xf9\xbc\xd7\xcf\xb2" \
-  "\x8c\x8f\xb7\x0f\x7e\xbf\xbd\xa1\x6a\xc4\xf3\x47" \
-  "\xd8\x1b\x3e\xe9\x3c\xcb\x0e\xb2\xed\xb3\x9e\xa6" \
-  "\xe5\x72\xc9\xe3\xe3\x63\x0f\x3a\x87\xd0\x6a\xb5" \
-  "\x0a\xab\xd5\x1b\xdb\xfa\xff\xa5\x68\x6d\xca\xce" \
-  "\x99\xdd\x5f\x03\x54\xcb\x78\x5f\x19\x93\xe9\x84" \
-  "\xdb\xdb\x5b\xee\xef\xef\x5b\xbc\xbf\xd1\xf6\x9e" \
-  "\x0c\x0f\x84\x48\x03\x00\x00\x00\x00\x49\x45\x4e" \
-  "\x44\xae\x42\x60\x82"
+    "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
+    "\x49\x48\x44\x52\x00\x00\x00\x16\x00\x00\x00\x16" \
+    "\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\x00\x00\x02" \
+    "\x9c\x49\x44\x41\x54\x78\x9c\x8d\x95\xad\x76\xdb" \
+    "\x40\x10\x85\x3f\xf7\x18\xcc\x32\x89\xd9\x50\xd0" \
+    "\x61\x36\x34\x4c\x98\xc3\x62\x96\x40\x87\x25\x6f" \
+    "\x50\x3f\x42\x61\x61\x02\x1b\xe6\xb2\x84\x25\x50" \
+    "\x61\x2e\x8b\xe1\x42\x99\x49\x6c\x86\x6d\xc1\x4a" \
+    "\xb2\xfc\x77\xda\x21\x92\x66\x57\x77\xee\xdc\x3b" \
+    "\x5a\xf5\x38\x13\xaf\xaf\xaf\x41\x44\x48\xd3\x74" \
+    "\x2f\x6f\x66\x00\xa8\x2a\x00\x55\x55\x91\x24\x09" \
+    "\x57\x57\x57\xbd\xee\xbe\xfe\x39\x60\x11\x61\x32" \
+    "\x99\xb4\x40\x87\x6b\x4d\x94\x65\x89\xf7\xfe\x68" \
+    "\xcf\x59\x60\x80\xcd\x66\x73\x04\x76\x58\x48\x55" \
+    "\x71\xce\xfd\x3f\xf0\x29\x00\x33\x3b\x2a\x70\xaa" \
+    "\x23\x80\x6f\xa7\x92\x79\x9e\x07\x33\x6b\x99\x38" \
+    "\xe7\x70\xce\xed\xe9\xdd\xe8\x2f\x22\x47\xfa\x9e" \
+    "\x65\xac\xaa\x24\x49\x42\x59\x96\x88\x48\x6b\x54" \
+    "\x37\x4e\xb5\xff\x4f\xc6\x10\x5b\x3c\x9c\x88\x2e" \
+    "\x68\x53\xec\x9c\x14\x27\x19\x37\x6c\x4e\x31\xed" \
+    "\xe6\x55\x75\x6f\x42\xba\x71\xa4\x0d\xc0\x6a\xb5" \
+    "\x0a\x59\x96\x31\x1c\x0e\xcf\x82\x37\x46\x7e\x7e" \
+    "\x7e\x02\x20\x92\x30\x9f\x5f\xb7\x78\x7b\x8c\xdf" \
+    "\xdf\xdf\x83\xf7\x9e\xfc\x23\x47\x66\x82\x88\xb4" \
+    "\x00\x87\xd7\x86\x69\x59\x94\xe4\x79\xce\xb6\xda" \
+    "\xf2\xf0\xf0\x10\x66\xb3\x19\xd7\xd7\xd7\xbd\x5e" \
+    "\x17\x74\xb3\xf1\x54\xc5\x16\x35\x80\xd3\x4c\x01" \
+    "\x9c\xa4\x08\x02\x0e\x7c\xe1\x59\xaf\xff\xb0\xdd" \
+    "\x16\xa8\x1a\x17\x17\x19\x8b\xc5\x22\x4a\xd1\x30" \
+    "\xbd\x9c\x5e\xe2\xd2\x14\x55\x03\x53\x8e\x6c\x31" \
+    "\x03\x84\x9c\x4f\x3e\x78\x65\x6a\x53\xd2\xaf\x94" \
+    "\xe7\x97\x67\xfc\x57\xfc\xfa\xd4\x94\x6c\x74\x11" \
+    "\x41\x9f\x9e\x7e\x85\xb2\x28\xc3\xff\xc4\x57\xf8" \
+    "\x0a\xa3\x30\x0a\x12\x24\x8c\xc2\x28\xac\xd7\xeb" \
+    "\xf0\xe3\xfb\xcf\x30\x1e\x8f\xc3\x60\x90\x85\x24" \
+    "\x49\x42\x36\xc8\x42\xbf\xda\x56\xdc\xdd\xdd\x9c" \
+    "\x75\xf7\x30\x52\x52\x2e\x99\x92\x23\xcc\x98\x31" \
+    "\x1e\x8f\x49\x64\x48\x69\x05\xcf\xbf\x5e\xa8\xaa" \
+    "\x8a\x74\x90\xd2\x37\xc0\xfb\x22\xce\xa3\x19\x88" \
+    "\x10\x6b\x48\xed\x36\x38\x5c\x54\xdc\x14\xc4\xf1" \
+    "\x60\xdf\xb9\xc1\x33\xb4\x21\x7f\xd8\x80\x19\xe9" \
+    "\x70\x18\xd7\x6b\x77\xfa\x65\x51\xe0\x45\xa2\x9e" \
+    "\x66\xb4\xbe\x39\x88\x2e\xd6\x9d\x38\x03\x15\x20" \
+    "\xe6\x04\xf0\xb6\xc5\x88\x67\x88\xdf\x6c\x5a\x4f" \
+    "\x1c\xf5\xb8\x35\x09\x6b\x00\xb1\x76\x28\x14\x8b" \
+    "\x35\x74\x6f\x67\x3b\x39\xd2\x78\xda\x09\x45\xe9" \
+    "\x23\x60\x65\xe7\x05\xad\xc9\x76\x37\x1a\x20\x0a" \
+    "\x76\xb8\xe2\x30\x2b\xa9\xfb\x6c\x7a\x63\x32\x99" \
+    "\xf2\x0d\xeb\xb0\x6c\xc9\x6a\x7c\xb4\xfa\xba\x07" \
+    "\xea\x9a\x6d\x35\x68\x0d\x58\xcb\x39\x18\x0c\x58" \
+    "\x2c\xee\x22\x63\xef\x7d\x63\x15\x88\x41\x25\x40" \
+    "\x15\x9d\x33\x8b\x30\xd2\xb0\xb2\x1d\x18\x3b\xcd" \
+    "\x31\x43\x04\x96\xcb\x25\xf3\xf9\xbc\xd7\xcf\xb2" \
+    "\x8c\x8f\xb7\x0f\x7e\xbf\xbd\xa1\x6a\xc4\xf3\x47" \
+    "\xd8\x1b\x3e\xe9\x3c\xcb\x0e\xb2\xed\xb3\x9e\xa6" \
+    "\xe5\x72\xc9\xe3\xe3\x63\x0f\x3a\x87\xd0\x6a\xb5" \
+    "\x0a\xab\xd5\x1b\xdb\xfa\xff\xa5\x68\x6d\xca\xce" \
+    "\x99\xdd\x5f\x03\x54\xcb\x78\x5f\x19\x93\xe9\x84" \
+    "\xdb\xdb\x5b\xee\xef\xef\x5b\xbc\xbf\xd1\xf6\x9e" \
+    "\x0c\x0f\x84\x48\x03\x00\x00\x00\x00\x49\x45\x4e" \
+    "\x44\xae\x42\x60\x82"
 image5_data = \
-  "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
-  "\x49\x48\x44\x52\x00\x00\x00\x16\x00\x00\x00\x16" \
-  "\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\x00\x00\x00" \
-  "\x73\x49\x44\x41\x54\x78\x9c\xed\x92\xc1\x0e\x80" \
-  "\x20\x08\x40\xb1\xef\x66\x1d\x1c\xff\x4d\x87\x6a" \
-  "\xa8\x88\xa1\x76\x69\xf9\x36\x0f\x28\x3e\xd8\x00" \
-  "\x60\xf1\x59\x42\x5f\x3a\x71\xf5\x36\x02\xe0\x8e" \
-  "\x99\x2b\x09\x88\x01\xd0\x28\x54\x17\x6a\xe4\x7f" \
-  "\x21\xce\x1f\xb5\xb0\x5d\x38\xed\xdc\x90\x60\xd0" \
-  "\xf1\x13\x79\x63\x5b\x3b\xc9\x2b\xd5\x18\xe2\x39" \
-  "\xa9\x43\xec\x1d\x5a\xb7\x78\x5c\xee\x10\x7b\xe4" \
-  "\xb2\x15\xaf\x40\x91\xf8\x94\xde\x47\x18\x1e\xce" \
-  "\xa5\x9e\xde\x9e\xc5\x9f\x38\x00\x62\xac\x28\xb1" \
-  "\x0f\xe7\x4f\xef\x00\x00\x00\x00\x49\x45\x4e\x44" \
-  "\xae\x42\x60\x82"
+    "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
+    "\x49\x48\x44\x52\x00\x00\x00\x16\x00\x00\x00\x16" \
+    "\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\x00\x00\x00" \
+    "\x73\x49\x44\x41\x54\x78\x9c\xed\x92\xc1\x0e\x80" \
+    "\x20\x08\x40\xb1\xef\x66\x1d\x1c\xff\x4d\x87\x6a" \
+    "\xa8\x88\xa1\x76\x69\xf9\x36\x0f\x28\x3e\xd8\x00" \
+    "\x60\xf1\x59\x42\x5f\x3a\x71\xf5\x36\x02\xe0\x8e" \
+    "\x99\x2b\x09\x88\x01\xd0\x28\x54\x17\x6a\xe4\x7f" \
+    "\x21\xce\x1f\xb5\xb0\x5d\x38\xed\xdc\x90\x60\xd0" \
+    "\xf1\x13\x79\x63\x5b\x3b\xc9\x2b\xd5\x18\xe2\x39" \
+    "\xa9\x43\xec\x1d\x5a\xb7\x78\x5c\xee\x10\x7b\xe4" \
+    "\xb2\x15\xaf\x40\x91\xf8\x94\xde\x47\x18\x1e\xce" \
+    "\xa5\x9e\xde\x9e\xc5\x9f\x38\x00\x62\xac\x28\xb1" \
+    "\x0f\xe7\x4f\xef\x00\x00\x00\x00\x49\x45\x4e\x44" \
+    "\xae\x42\x60\x82"
 image6_data = \
-  "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
-  "\x49\x48\x44\x52\x00\x00\x00\x16\x00\x00\x00\x16" \
-  "\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\x00\x00\x00" \
-  "\x74\x49\x44\x41\x54\x78\x9c\xed\x92\xc1\x0a\xc0" \
-  "\x20\x08\x40\x6d\xdf\x2d\x3b\x84\xff\xed\x0e\xa3" \
-  "\x58\x6a\x26\xd1\x65\xe0\x83\x0e\xa5\x3e\x85\x04" \
-  "\x48\x7e\x4b\x91\x0f\x54\x89\xf1\x9e\xa5\xa3\xca" \
-  "\x0f\x8a\x89\x63\x65\xb3\x06\xc4\x2d\xd6\x13\xc6" \
-  "\x49\xbd\xc2\x59\x83\x16\x13\x62\x19\xf0\xf9\x36" \
-  "\xc0\xa2\xef\x00\xd7\x5a\x62\x61\x4d\x3a\xb2\x29" \
-  "\x96\xf2\xa3\x62\xff\xa3\x37\xc5\xeb\xed\xe9\x62" \
-  "\xaa\xd1\xa2\xe8\x4a\xaa\xa2\xf7\x50\xdd\x12\x74" \
-  "\x8c\x0f\xd0\xab\x93\x24\x67\x78\x00\x59\x6e\x28" \
-  "\xb1\xbb\x69\xe3\x51\x00\x00\x00\x00\x49\x45\x4e" \
-  "\x44\xae\x42\x60\x82"
+    "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
+    "\x49\x48\x44\x52\x00\x00\x00\x16\x00\x00\x00\x16" \
+    "\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\x00\x00\x00" \
+    "\x74\x49\x44\x41\x54\x78\x9c\xed\x92\xc1\x0a\xc0" \
+    "\x20\x08\x40\x6d\xdf\x2d\x3b\x84\xff\xed\x0e\xa3" \
+    "\x58\x6a\x26\xd1\x65\xe0\x83\x0e\xa5\x3e\x85\x04" \
+    "\x48\x7e\x4b\x91\x0f\x54\x89\xf1\x9e\xa5\xa3\xca" \
+    "\x0f\x8a\x89\x63\x65\xb3\x06\xc4\x2d\xd6\x13\xc6" \
+    "\x49\xbd\xc2\x59\x83\x16\x13\x62\x19\xf0\xf9\x36" \
+    "\xc0\xa2\xef\x00\xd7\x5a\x62\x61\x4d\x3a\xb2\x29" \
+    "\x96\xf2\xa3\x62\xff\xa3\x37\xc5\xeb\xed\xe9\x62" \
+    "\xaa\xd1\xa2\xe8\x4a\xaa\xa2\xf7\x50\xdd\x12\x74" \
+    "\x8c\x0f\xd0\xab\x93\x24\x67\x78\x00\x59\x6e\x28" \
+    "\xb1\xbb\x69\xe3\x51\x00\x00\x00\x00\x49\x45\x4e" \
+    "\x44\xae\x42\x60\x82"
 image7_data = \
-  "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
-  "\x49\x48\x44\x52\x00\x00\x00\x16\x00\x00\x00\x16" \
-  "\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\x00\x00\x00" \
-  "\x82\x49\x44\x41\x54\x78\x9c\xcd\xd3\x41\x12\x80" \
-  "\x20\x08\x05\x50\xe8\xe0\x2e\xbc\x38\xad\x32\x73" \
-  "\x50\x3e\x48\x53\x7f\xe3\xe4\x8c\x4f\x24\x25\xfa" \
-  "\x28\xe2\x9c\x6f\x39\x92\x0b\xf9\x27\x6c\xb6\x01" \
-  "\x85\x35\x88\x77\x61\x13\x88\xc2\x57\x64\x18\xcd" \
-  "\xa0\x15\xf5\x20\xb4\xe6\xb5\x5b\xe1\x09\xdc\x06" \
-  "\x22\xb8\xe2\x2a\xcf\x31\x05\x6e\x18\xdf\xdf\xf8" \
-  "\x06\x06\xaa\x55\x1c\xc6\x35\x64\xc4\xdc\xf8\x0c" \
-  "\xd0\x20\x1d\x57\x7a\x5c\x85\xa8\x84\x5f\xdc\x02" \
-  "\x5e\xa5\x30\x7a\xfc\xcd\x07\xe2\x3a\x1d\xf2\x83" \
-  "\xec\x2b\x37\xd9\xad\x5f\xb4\xdf\xef\xd4\x9c\xfb" \
-  "\xf7\x2f\xac\xb6\x51\xb8\x9d\x00\x00\x00\x00\x49" \
-  "\x45\x4e\x44\xae\x42\x60\x82"
+    "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
+    "\x49\x48\x44\x52\x00\x00\x00\x16\x00\x00\x00\x16" \
+    "\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\x00\x00\x00" \
+    "\x82\x49\x44\x41\x54\x78\x9c\xcd\xd3\x41\x12\x80" \
+    "\x20\x08\x05\x50\xe8\xe0\x2e\xbc\x38\xad\x32\x73" \
+    "\x50\x3e\x48\x53\x7f\xe3\xe4\x8c\x4f\x24\x25\xfa" \
+    "\x28\xe2\x9c\x6f\x39\x92\x0b\xf9\x27\x6c\xb6\x01" \
+    "\x85\x35\x88\x77\x61\x13\x88\xc2\x57\x64\x18\xcd" \
+    "\xa0\x15\xf5\x20\xb4\xe6\xb5\x5b\xe1\x09\xdc\x06" \
+    "\x22\xb8\xe2\x2a\xcf\x31\x05\x6e\x18\xdf\xdf\xf8" \
+    "\x06\x06\xaa\x55\x1c\xc6\x35\x64\xc4\xdc\xf8\x0c" \
+    "\xd0\x20\x1d\x57\x7a\x5c\x85\xa8\x84\x5f\xdc\x02" \
+    "\x5e\xa5\x30\x7a\xfc\xcd\x07\xe2\x3a\x1d\xf2\x83" \
+    "\xec\x2b\x37\xd9\xad\x5f\xb4\xdf\xef\xd4\x9c\xfb" \
+    "\xf7\x2f\xac\xb6\x51\xb8\x9d\x00\x00\x00\x00\x49" \
+    "\x45\x4e\x44\xae\x42\x60\x82"
 image8_data = \
-  "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
-  "\x49\x48\x44\x52\x00\x00\x00\x16\x00\x00\x00\x16" \
-  "\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\x00\x00\x00" \
-  "\xbf\x49\x44\x41\x54\x78\x9c\xd5\x93\x41\x0a\x83" \
-  "\x30\x10\x45\xdf\x48\x8e\xe5\x1d\xbc\x8c\x3b\xa9" \
-  "\x8b\xf4\x6a\x9e\xab\xd3\x85\x35\x0d\x26\x63\x62" \
-  "\x44\x4a\x3f\x0c\x42\x66\xfc\xf3\xf8\x24\xf0\x6f" \
-  "\x12\x40\x2b\x66\xda\x8c\x55\xf3\xde\x22\x12\xcf" \
-  "\x9d\x92\xcb\x98\xc0\xba\x2d\x7c\x45\x44\xcf\x9a" \
-  "\x07\x63\x8b\xba\xd5\x3c\x44\x91\x23\x5e\xcf\x7c" \
-  "\xc1\x62\x36\x97\xa9\x25\x40\xc1\x1f\xf4\xfd\xa7" \
-  "\x52\x75\x01\x5d\x24\xa9\x38\x9e\x7d\x6f\x53\xdf" \
-  "\x4f\xe4\xcc\xab\x32\x3e\xea\x0f\x03\xc0\xc4\xb2" \
-  "\xa0\x71\x2c\xe6\xad\xd8\x9b\x59\xb7\x66\x1c\x3b" \
-  "\xe0\x95\x98\x5f\x26\x16\x79\xee\x4e\xbc\xc2\x2c" \
-  "\x97\x88\x55\x1f\xe6\xa2\xcb\xc4\x96\x9a\x89\x4b" \
-  "\xcb\x6f\x23\xee\x36\x1a\xab\x62\xe2\x52\xc5\x72" \
-  "\x94\xdf\xbf\xb6\x10\xbb\xf2\xc8\x97\xb8\xa4\x6c" \
-  "\xc6\x67\x7e\xaa\x51\x95\x71\xfa\x08\x7e\xa8\x37" \
-  "\x62\xda\x9a\xba\x45\xb6\x37\x52\x00\x00\x00\x00" \
-  "\x49\x45\x4e\x44\xae\x42\x60\x82"
+    "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
+    "\x49\x48\x44\x52\x00\x00\x00\x16\x00\x00\x00\x16" \
+    "\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\x00\x00\x00" \
+    "\xbf\x49\x44\x41\x54\x78\x9c\xd5\x93\x41\x0a\x83" \
+    "\x30\x10\x45\xdf\x48\x8e\xe5\x1d\xbc\x8c\x3b\xa9" \
+    "\x8b\xf4\x6a\x9e\xab\xd3\x85\x35\x0d\x26\x63\x62" \
+    "\x44\x4a\x3f\x0c\x42\x66\xfc\xf3\xf8\x24\xf0\x6f" \
+    "\x12\x40\x2b\x66\xda\x8c\x55\xf3\xde\x22\x12\xcf" \
+    "\x9d\x92\xcb\x98\xc0\xba\x2d\x7c\x45\x44\xcf\x9a" \
+    "\x07\x63\x8b\xba\xd5\x3c\x44\x91\x23\x5e\xcf\x7c" \
+    "\xc1\x62\x36\x97\xa9\x25\x40\xc1\x1f\xf4\xfd\xa7" \
+    "\x52\x75\x01\x5d\x24\xa9\x38\x9e\x7d\x6f\x53\xdf" \
+    "\x4f\xe4\xcc\xab\x32\x3e\xea\x0f\x03\xc0\xc4\xb2" \
+    "\xa0\x71\x2c\xe6\xad\xd8\x9b\x59\xb7\x66\x1c\x3b" \
+    "\xe0\x95\x98\x5f\x26\x16\x79\xee\x4e\xbc\xc2\x2c" \
+    "\x97\x88\x55\x1f\xe6\xa2\xcb\xc4\x96\x9a\x89\x4b" \
+    "\xcb\x6f\x23\xee\x36\x1a\xab\x62\xe2\x52\xc5\x72" \
+    "\x94\xdf\xbf\xb6\x10\xbb\xf2\xc8\x97\xb8\xa4\x6c" \
+    "\xc6\x67\x7e\xaa\x51\x95\x71\xfa\x08\x7e\xa8\x37" \
+    "\x62\xda\x9a\xba\x45\xb6\x37\x52\x00\x00\x00\x00" \
+    "\x49\x45\x4e\x44\xae\x42\x60\x82"
 image9_data = \
-  "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
-  "\x49\x48\x44\x52\x00\x00\x00\x16\x00\x00\x00\x16" \
-  "\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\x00\x00\x00" \
-  "\xd5\x49\x44\x41\x54\x78\x9c\xc5\x95\x5d\x0a\x84" \
-  "\x30\x0c\x84\x27\xe2\xa9\x0a\x9e\x6c\x8b\x0f\x4b" \
-  "\x3d\xd9\x82\xd7\xca\x3e\x58\xd7\xfe\x4c\xd0\xba" \
-  "\x5d\x76\x40\x02\x4d\xf2\x65\xda\x0a\x05\x7e\x24" \
-  "\x39\xc9\xeb\x8d\x9e\xaa\x88\x41\xa0\xc9\xaa\xd8" \
-  "\xc8\x2a\xb3\x2f\x9c\x42\x5b\xe1\xe3\x0e\x0d\xcf" \
-  "\x00\xc0\x03\x08\xf0\xb3\xa7\xa0\x74\x10\xa9\xd7" \
-  "\x14\x2e\x00\xb4\x2c\x5a\x5f\xab\x69\x6b\x97\x9b" \
-  "\x1c\x83\x7f\xc0\xc3\x16\xb6\xe4\x16\x5b\x64\xf7" \
-  "\x8d\x71\x63\x59\x91\x9b\xdc\x45\x70\xde\x47\xc0" \
-  "\x47\x32\xdd\x5e\x5b\xcc\x35\xf0\xc9\x77\x62\xae" \
-  "\x78\x79\x36\xdc\xcf\x75\x13\x57\x7e\x79\xf4\x8c" \
-  "\x4b\x27\xaa\x0f\x13\x27\xb2\x40\xf5\x11\x7f\xcb" \
-  "\xe3\x48\xaa\x33\xb6\xe0\x22\x4b\x05\x4d\x07\x46" \
-  "\xb8\x02\x5e\x2e\x3b\x3e\x73\xcd\xe0\xdd\x1c\x97" \
-  "\xf0\x2e\x8e\xd9\xd0\xaf\x1d\xb3\x81\x22\x4b\xdf" \
-  "\x33\xee\xe6\x98\xa9\x34\xa0\xf6\x17\xb4\x55\x40" \
-  "\xd0\x0b\xcf\x4c\xa0\x8f\xc0\xdf\xf4\x06\xe3\x25" \
-  "\xc1\x98\xb1\x6b\x67\xfb\x00\x00\x00\x00\x49\x45" \
-  "\x4e\x44\xae\x42\x60\x82"
+    "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
+    "\x49\x48\x44\x52\x00\x00\x00\x16\x00\x00\x00\x16" \
+    "\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\x00\x00\x00" \
+    "\xd5\x49\x44\x41\x54\x78\x9c\xc5\x95\x5d\x0a\x84" \
+    "\x30\x0c\x84\x27\xe2\xa9\x0a\x9e\x6c\x8b\x0f\x4b" \
+    "\x3d\xd9\x82\xd7\xca\x3e\x58\xd7\xfe\x4c\xd0\xba" \
+    "\x5d\x76\x40\x02\x4d\xf2\x65\xda\x0a\x05\x7e\x24" \
+    "\x39\xc9\xeb\x8d\x9e\xaa\x88\x41\xa0\xc9\xaa\xd8" \
+    "\xc8\x2a\xb3\x2f\x9c\x42\x5b\xe1\xe3\x0e\x0d\xcf" \
+    "\x00\xc0\x03\x08\xf0\xb3\xa7\xa0\x74\x10\xa9\xd7" \
+    "\x14\x2e\x00\xb4\x2c\x5a\x5f\xab\x69\x6b\x97\x9b" \
+    "\x1c\x83\x7f\xc0\xc3\x16\xb6\xe4\x16\x5b\x64\xf7" \
+    "\x8d\x71\x63\x59\x91\x9b\xdc\x45\x70\xde\x47\xc0" \
+    "\x47\x32\xdd\x5e\x5b\xcc\x35\xf0\xc9\x77\x62\xae" \
+    "\x78\x79\x36\xdc\xcf\x75\x13\x57\x7e\x79\xf4\x8c" \
+    "\x4b\x27\xaa\x0f\x13\x27\xb2\x40\xf5\x11\x7f\xcb" \
+    "\xe3\x48\xaa\x33\xb6\xe0\x22\x4b\x05\x4d\x07\x46" \
+    "\xb8\x02\x5e\x2e\x3b\x3e\x73\xcd\xe0\xdd\x1c\x97" \
+    "\xf0\x2e\x8e\xd9\xd0\xaf\x1d\xb3\x81\x22\x4b\xdf" \
+    "\x33\xee\xe6\x98\xa9\x34\xa0\xf6\x17\xb4\x55\x40" \
+    "\xd0\x0b\xcf\x4c\xa0\x8f\xc0\xdf\xf4\x06\xe3\x25" \
+    "\xc1\x98\xb1\x6b\x67\xfb\x00\x00\x00\x00\x49\x45" \
+    "\x4e\x44\xae\x42\x60\x82"
 image10_data = \
-  "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
-  "\x49\x48\x44\x52\x00\x00\x00\x16\x00\x00\x00\x16" \
-  "\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\x00\x00\x02" \
-  "\x5d\x49\x44\x41\x54\x78\x9c\xd5\x93\xa1\x72\xdb" \
-  "\x40\x10\x86\x3f\x67\x0a\x56\xec\xc4\x22\x78\xd0" \
-  "\x65\x36\x93\xa0\xc2\x1c\x68\xd6\xc2\xe6\x0d\xf2" \
-  "\x1a\x81\x81\x11\x34\x94\x99\xc2\x54\xa8\x32\x9b" \
-  "\x55\xf0\xe0\x89\xdd\xb1\x5b\xa6\x02\xb7\x9d\x66" \
-  "\x92\xd6\x99\xb6\xd3\x99\xfe\xe8\x6e\x67\xe7\xdb" \
-  "\x7f\x77\xef\xe0\x7f\xd3\xe2\xc7\x4b\xd7\x75\xb3" \
-  "\x73\x0e\xef\x3d\x51\x15\x00\x23\x82\xb5\x16\x6b" \
-  "\x2d\x57\x57\x57\x8b\x17\x29\xbf\x02\xb7\x6d\x3b" \
-  "\x0f\x87\x03\xb9\x2d\x58\xae\xd7\x60\x04\x00\xef" \
-  "\x1c\xe3\xc7\x03\x06\xa8\xaa\x8a\xeb\xeb\xeb\x57" \
-  "\xc1\x17\xdf\xa0\x6d\xdb\x52\x5d\xd7\x54\xef\xb6" \
-  "\x00\xa8\x2a\x49\x13\x8a\x12\x35\x32\xec\x3a\xc4" \
-  "\x2b\x9b\xcd\xe6\x55\xce\x2f\xfa\xbe\x9f\x87\xc3" \
-  "\x40\xfd\xe1\x3d\xcb\x4d\x8d\xaa\xa2\x4e\x48\xee" \
-  "\x12\xc6\x82\x38\x08\xc1\x07\x96\x9b\x1a\x8a\x9c" \
-  "\xe3\xf1\xf8\xaa\x51\x5c\x38\xe7\xc8\xad\xa5\xaa" \
-  "\x6b\x00\xc4\x5f\x12\x9c\x67\xd2\x23\x93\x8c\x88" \
-  "\xe6\xc8\x60\xd1\x18\xb1\xd5\x92\xd1\x39\xba\xae" \
-  "\x9b\xcf\x83\xa7\x89\x65\xb5\x46\x51\x34\x80\x1b" \
-  "\x1d\x2e\x1f\x49\x45\xc0\xe3\x50\x09\x64\x08\xea" \
-  "\x15\x44\x90\xc2\xe0\xbd\x3f\xef\x58\x53\xc2\xe4" \
-  "\x86\xa0\x01\x9f\x4d\x84\xf5\x84\x18\x41\x83\x62" \
-  "\xb0\x40\x8e\x8b\x23\xc9\x24\x50\x10\x93\x31\x4d" \
-  "\xd3\x59\xf0\x1b\x80\x98\x14\x11\x20\x25\x14\x40" \
-  "\x15\xf1\x96\x4c\x0b\xbc\x1b\x48\x4b\x07\xe4\x68" \
-  "\x88\x80\xc0\x29\xeb\xd7\x8e\x41\x41\xf5\xb4\x34" \
-  "\xfd\x76\x86\x4c\x05\x3f\x1e\x08\x4b\x0f\x85\x80" \
-  "\x26\x54\x40\x63\x40\x44\xce\x83\x8b\xbc\xc0\x39" \
-  "\x87\xa6\x13\x50\xa3\xa2\x28\x5e\x1d\x5a\x44\x14" \
-  "\xd0\x70\x8a\xa5\x98\x08\x21\x62\xad\x3d\x0f\xb6" \
-  "\xd6\xe2\x87\xcf\xa4\x98\x50\x8d\x27\x40\x50\x44" \
-  "\x73\x70\x42\x8c\x91\xaf\x8d\x10\xfd\x44\x81\x60" \
-  "\x8c\x39\x0b\x5e\x00\xdc\xdd\xdd\xcd\x8e\x80\xa9" \
-  "\xde\x42\x02\x48\xe8\x04\x84\x08\x56\xf0\x3e\x02" \
-  "\x90\x7d\x72\x94\x65\xc9\xba\x5a\xe3\x46\x87\x31" \
-  "\xe6\xa7\x9f\xe5\x02\x60\xb5\x5a\x61\x02\xc4\xee" \
-  "\x40\xa6\x89\x4c\x33\xf2\xcb\x0c\xb1\x06\x51\x28" \
-  "\x14\xf8\xf8\x99\xb2\x2c\xb9\xb9\xb9\x59\xb8\xd1" \
-  "\xf1\xf8\xf8\x48\xd3\x34\xb4\x6d\xfb\xe2\x9b\xfe" \
-  "\x5e\xad\xef\xfb\xf9\x78\x3c\x32\x3a\x87\x18\x81" \
-  "\xec\xb4\x20\x0d\x11\x51\xa8\xeb\x9a\xed\x76\xbb" \
-  "\x00\x18\x86\x61\xee\xba\x8e\xfd\x7e\x8f\x31\x86" \
-  "\xed\x76\xcb\x6a\xb5\x7a\xe2\xfe\x59\x1b\x5d\xd7" \
-  "\xcd\xde\x7b\x62\x8c\x88\x08\x79\x9e\x63\xad\xa5" \
-  "\xaa\xaa\x67\xb9\xbb\xdd\x6e\x6e\x9a\x06\xef\x3d" \
-  "\x75\x5d\x3f\x29\xfe\xc7\xea\xfb\x7e\xbe\xbd\xbd" \
-  "\x9d\xad\xb5\x73\x59\x96\xf3\xfd\xfd\xfd\xfc\xa2" \
-  "\xe3\xdf\xd5\xc3\xc3\xc3\xdc\x34\x0d\xd3\x34\xb1" \
-  "\xd9\x6c\xfe\x1e\x18\x4e\x63\xdc\xef\xf7\xa4\x94" \
-  "\xfe\x26\xf6\x1f\xe9\x0b\xbc\x4c\x5e\x59\xb8\xac" \
-  "\x89\x5e\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42" \
-  "\x60\x82"
+    "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
+    "\x49\x48\x44\x52\x00\x00\x00\x16\x00\x00\x00\x16" \
+    "\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\x00\x00\x02" \
+    "\x5d\x49\x44\x41\x54\x78\x9c\xd5\x93\xa1\x72\xdb" \
+    "\x40\x10\x86\x3f\x67\x0a\x56\xec\xc4\x22\x78\xd0" \
+    "\x65\x36\x93\xa0\xc2\x1c\x68\xd6\xc2\xe6\x0d\xf2" \
+    "\x1a\x81\x81\x11\x34\x94\x99\xc2\x54\xa8\x32\x9b" \
+    "\x55\xf0\xe0\x89\xdd\xb1\x5b\xa6\x02\xb7\x9d\x66" \
+    "\x92\xd6\x99\xb6\xd3\x99\xfe\xe8\x6e\x67\xe7\xdb" \
+    "\x7f\x77\xef\xe0\x7f\xd3\xe2\xc7\x4b\xd7\x75\xb3" \
+    "\x73\x0e\xef\x3d\x51\x15\x00\x23\x82\xb5\x16\x6b" \
+    "\x2d\x57\x57\x57\x8b\x17\x29\xbf\x02\xb7\x6d\x3b" \
+    "\x0f\x87\x03\xb9\x2d\x58\xae\xd7\x60\x04\x00\xef" \
+    "\x1c\xe3\xc7\x03\x06\xa8\xaa\x8a\xeb\xeb\xeb\x57" \
+    "\xc1\x17\xdf\xa0\x6d\xdb\x52\x5d\xd7\x54\xef\xb6" \
+    "\x00\xa8\x2a\x49\x13\x8a\x12\x35\x32\xec\x3a\xc4" \
+    "\x2b\x9b\xcd\xe6\x55\xce\x2f\xfa\xbe\x9f\x87\xc3" \
+    "\x40\xfd\xe1\x3d\xcb\x4d\x8d\xaa\xa2\x4e\x48\xee" \
+    "\x12\xc6\x82\x38\x08\xc1\x07\x96\x9b\x1a\x8a\x9c" \
+    "\xe3\xf1\xf8\xaa\x51\x5c\x38\xe7\xc8\xad\xa5\xaa" \
+    "\x6b\x00\xc4\x5f\x12\x9c\x67\xd2\x23\x93\x8c\x88" \
+    "\xe6\xc8\x60\xd1\x18\xb1\xd5\x92\xd1\x39\xba\xae" \
+    "\x9b\xcf\x83\xa7\x89\x65\xb5\x46\x51\x34\x80\x1b" \
+    "\x1d\x2e\x1f\x49\x45\xc0\xe3\x50\x09\x64\x08\xea" \
+    "\x15\x44\x90\xc2\xe0\xbd\x3f\xef\x58\x53\xc2\xe4" \
+    "\x86\xa0\x01\x9f\x4d\x84\xf5\x84\x18\x41\x83\x62" \
+    "\xb0\x40\x8e\x8b\x23\xc9\x24\x50\x10\x93\x31\x4d" \
+    "\xd3\x59\xf0\x1b\x80\x98\x14\x11\x20\x25\x14\x40" \
+    "\x15\xf1\x96\x4c\x0b\xbc\x1b\x48\x4b\x07\xe4\x68" \
+    "\x88\x80\xc0\x29\xeb\xd7\x8e\x41\x41\xf5\xb4\x34" \
+    "\xfd\x76\x86\x4c\x05\x3f\x1e\x08\x4b\x0f\x85\x80" \
+    "\x26\x54\x40\x63\x40\x44\xce\x83\x8b\xbc\xc0\x39" \
+    "\x87\xa6\x13\x50\xa3\xa2\x28\x5e\x1d\x5a\x44\x14" \
+    "\xd0\x70\x8a\xa5\x98\x08\x21\x62\xad\x3d\x0f\xb6" \
+    "\xd6\xe2\x87\xcf\xa4\x98\x50\x8d\x27\x40\x50\x44" \
+    "\x73\x70\x42\x8c\x91\xaf\x8d\x10\xfd\x44\x81\x60" \
+    "\x8c\x39\x0b\x5e\x00\xdc\xdd\xdd\xcd\x8e\x80\xa9" \
+    "\xde\x42\x02\x48\xe8\x04\x84\x08\x56\xf0\x3e\x02" \
+    "\x90\x7d\x72\x94\x65\xc9\xba\x5a\xe3\x46\x87\x31" \
+    "\xe6\xa7\x9f\xe5\x02\x60\xb5\x5a\x61\x02\xc4\xee" \
+    "\x40\xa6\x89\x4c\x33\xf2\xcb\x0c\xb1\x06\x51\x28" \
+    "\x14\xf8\xf8\x99\xb2\x2c\xb9\xb9\xb9\x59\xb8\xd1" \
+    "\xf1\xf8\xf8\x48\xd3\x34\xb4\x6d\xfb\xe2\x9b\xfe" \
+    "\x5e\xad\xef\xfb\xf9\x78\x3c\x32\x3a\x87\x18\x81" \
+    "\xec\xb4\x20\x0d\x11\x51\xa8\xeb\x9a\xed\x76\xbb" \
+    "\x00\x18\x86\x61\xee\xba\x8e\xfd\x7e\x8f\x31\x86" \
+    "\xed\x76\xcb\x6a\xb5\x7a\xe2\xfe\x59\x1b\x5d\xd7" \
+    "\xcd\xde\x7b\x62\x8c\x88\x08\x79\x9e\x63\xad\xa5" \
+    "\xaa\xaa\x67\xb9\xbb\xdd\x6e\x6e\x9a\x06\xef\x3d" \
+    "\x75\x5d\x3f\x29\xfe\xc7\xea\xfb\x7e\xbe\xbd\xbd" \
+    "\x9d\xad\xb5\x73\x59\x96\xf3\xfd\xfd\xfd\xfc\xa2" \
+    "\xe3\xdf\xd5\xc3\xc3\xc3\xdc\x34\x0d\xd3\x34\xb1" \
+    "\xd9\x6c\xfe\x1e\x18\x4e\x63\xdc\xef\xf7\xa4\x94" \
+    "\xfe\x26\xf6\x1f\xe9\x0b\xbc\x4c\x5e\x59\xb8\xac" \
+    "\x89\x5e\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42" \
+    "\x60\x82"
 
 class pyEduWorkspaceView(QMainWindow):
-  def __init__(self,parent = None,name = None,fl = 0):
-    QMainWindow.__init__(self,parent,name,fl)
-    self.statusBar()
+    def __init__(self,parent = None,name = None,fl = 0):
+        QMainWindow.__init__(self,parent,name,fl)
+        self.statusBar()
 
-    self.image1 = QPixmap()
-    self.image1.loadFromData(image1_data,"PNG")
-    self.image2 = QPixmap()
-    self.image2.loadFromData(image2_data,"PNG")
-    self.image3 = QPixmap()
-    self.image3.loadFromData(image3_data,"PNG")
-    self.image4 = QPixmap()
-    self.image4.loadFromData(image4_data,"PNG")
-    self.image5 = QPixmap()
-    self.image5.loadFromData(image5_data,"PNG")
-    self.image6 = QPixmap()
-    self.image6.loadFromData(image6_data,"PNG")
-    self.image7 = QPixmap()
-    self.image7.loadFromData(image7_data,"PNG")
-    self.image8 = QPixmap()
-    self.image8.loadFromData(image8_data,"PNG")
-    self.image9 = QPixmap()
-    self.image9.loadFromData(image9_data,"PNG")
-    self.image10 = QPixmap()
-    self.image10.loadFromData(image10_data,"PNG")
-    if not name:
-      self.setName("pyEduWorkspaceView")
+        self.image1 = QPixmap()
+        self.image1.loadFromData(image1_data,"PNG")
+        self.image2 = QPixmap()
+        self.image2.loadFromData(image2_data,"PNG")
+        self.image3 = QPixmap()
+        self.image3.loadFromData(image3_data,"PNG")
+        self.image4 = QPixmap()
+        self.image4.loadFromData(image4_data,"PNG")
+        self.image5 = QPixmap()
+        self.image5.loadFromData(image5_data,"PNG")
+        self.image6 = QPixmap()
+        self.image6.loadFromData(image6_data,"PNG")
+        self.image7 = QPixmap()
+        self.image7.loadFromData(image7_data,"PNG")
+        self.image8 = QPixmap()
+        self.image8.loadFromData(image8_data,"PNG")
+        self.image9 = QPixmap()
+        self.image9.loadFromData(image9_data,"PNG")
+        self.image10 = QPixmap()
+        self.image10.loadFromData(image10_data,"PNG")
+        if not name:
+            self.setName("pyEduWorkspaceView")
 
+        self.setSizePolicy(QSizePolicy(0,0,0,0,self.sizePolicy().hasHeightForWidth()))
+        self.setMinimumSize(QSize(1024,768))
+        self.setMaximumSize(QSize(1024,768))
 
-    self.setCentralWidget(QWidget(self,"qt_central_widget"))
-    pyEduWorkspaceViewLayout = QVBoxLayout(self.centralWidget(),11,6,"pyEduWorkspaceViewLayout")
+        self.setCentralWidget(QWidget(self,"qt_central_widget"))
+        pyEduWorkspaceViewLayout = QVBoxLayout(self.centralWidget(),11,6,"pyEduWorkspaceViewLayout")
 
-    self.splitter2 = QSplitter(self.centralWidget(),"splitter2")
-    self.splitter2.setOrientation(QSplitter.Horizontal)
+        self.splitter2 = QSplitter(self.centralWidget(),"splitter2")
+        self.splitter2.setOrientation(QSplitter.Horizontal)
 
-    self.splitter1 = QSplitter(self.splitter2,"splitter1")
-    self.splitter1.setOrientation(QSplitter.Vertical)
+        self.splitter1 = QSplitter(self.splitter2,"splitter1")
+        self.splitter1.setOrientation(QSplitter.Vertical)
 
-    self.m_nav_bar_ctrl = pyNavBarCtrl(self.splitter1,"m_nav_bar_ctrl")
+        self.m_nav_bar_ctrl = pyNavBarCtrl(self.splitter1,"m_nav_bar_ctrl")
 
-    self.m_freezer_ctrl = pyFreezerCtrl(self.splitter1,"m_freezer_ctrl")
+        self.m_freezer_ctrl = pyFreezerCtrl(self.splitter1,"m_freezer_ctrl")
 
-    self.m_widget_stack = QWidgetStack(self.splitter2,"m_widget_stack")
-    self.m_widget_stack.setSizePolicy(QSizePolicy(7,7,0,0,self.m_widget_stack.sizePolicy().hasHeightForWidth()))
+        self.m_widget_stack = QWidgetStack(self.splitter2,"m_widget_stack")
+        self.m_widget_stack.setSizePolicy(QSizePolicy(7,7,0,0,self.m_widget_stack.sizePolicy().hasHeightForWidth()))
 
-    self.WStackPage = QWidget(self.m_widget_stack,"WStackPage")
-    WStackPageLayout = QVBoxLayout(self.WStackPage,11,6,"WStackPageLayout")
-    self.m_widget_stack.addWidget(self.WStackPage,0)
-    pyEduWorkspaceViewLayout.addWidget(self.splitter2)
+        self.WStackPage = QWidget(self.m_widget_stack,"WStackPage")
+        WStackPageLayout = QVBoxLayout(self.WStackPage,11,6,"WStackPageLayout")
+        self.m_widget_stack.addWidget(self.WStackPage,0)
+        pyEduWorkspaceViewLayout.addWidget(self.splitter2)
 
-    self.fileNewAction = QAction(self,"fileNewAction")
-    self.fileNewAction.setIconSet(QIconSet(self.image1))
-    self.fileOpenAction = QAction(self,"fileOpenAction")
-    self.fileOpenAction.setIconSet(QIconSet(self.image2))
-    self.fileSaveAction = QAction(self,"fileSaveAction")
-    self.fileSaveAction.setIconSet(QIconSet(self.image3))
-    self.fileSaveAsAction = QAction(self,"fileSaveAsAction")
-    self.filePrintAction = QAction(self,"filePrintAction")
-    self.filePrintAction.setIconSet(QIconSet(self.image4))
-    self.fileExitAction = QAction(self,"fileExitAction")
-    self.editUndoAction = QAction(self,"editUndoAction")
-    self.editUndoAction.setIconSet(QIconSet(self.image5))
-    self.editRedoAction = QAction(self,"editRedoAction")
-    self.editRedoAction.setIconSet(QIconSet(self.image6))
-    self.editCutAction = QAction(self,"editCutAction")
-    self.editCutAction.setIconSet(QIconSet(self.image7))
-    self.editCopyAction = QAction(self,"editCopyAction")
-    self.editCopyAction.setIconSet(QIconSet(self.image8))
-    self.editPasteAction = QAction(self,"editPasteAction")
-    self.editPasteAction.setIconSet(QIconSet(self.image9))
-    self.editFindAction = QAction(self,"editFindAction")
-    self.editFindAction.setIconSet(QIconSet(self.image10))
-    self.helpContentsAction = QAction(self,"helpContentsAction")
-    self.helpIndexAction = QAction(self,"helpIndexAction")
-    self.helpAboutAction = QAction(self,"helpAboutAction")
-    self.menunew_itemAction = QAction(self,"menunew_itemAction")
-    self.fileClose_WorkspaceAction = QAction(self,"fileClose_WorkspaceAction")
-    self.fileImportAction = QAction(self,"fileImportAction")
-    self.fileExportAction = QAction(self,"fileExportAction")
-    self.editSelect_AllAction = QAction(self,"editSelect_AllAction")
-    self.editSelect_AllAction_2 = QAction(self,"editSelect_AllAction_2")
-    self.controlStartAction = QAction(self,"controlStartAction")
-    self.controlNext_UpdateAction = QAction(self,"controlNext_UpdateAction")
-    self.windowZoom_WindowAction = QAction(self,"windowZoom_WindowAction")
-    self.windowMinimize_WindowAction = QAction(self,"windowMinimize_WindowAction")
+        self.fileNewAction = QAction(self,"fileNewAction")
+        self.fileNewAction.setIconSet(QIconSet(self.image1))
+        self.fileOpenAction = QAction(self,"fileOpenAction")
+        self.fileOpenAction.setIconSet(QIconSet(self.image2))
+        self.fileSaveAction = QAction(self,"fileSaveAction")
+        self.fileSaveAction.setIconSet(QIconSet(self.image3))
+        self.fileSaveAsAction = QAction(self,"fileSaveAsAction")
+        self.filePrintAction = QAction(self,"filePrintAction")
+        self.filePrintAction.setIconSet(QIconSet(self.image4))
+        self.fileExitAction = QAction(self,"fileExitAction")
+        self.editUndoAction = QAction(self,"editUndoAction")
+        self.editUndoAction.setIconSet(QIconSet(self.image5))
+        self.editRedoAction = QAction(self,"editRedoAction")
+        self.editRedoAction.setIconSet(QIconSet(self.image6))
+        self.editCutAction = QAction(self,"editCutAction")
+        self.editCutAction.setIconSet(QIconSet(self.image7))
+        self.editCopyAction = QAction(self,"editCopyAction")
+        self.editCopyAction.setIconSet(QIconSet(self.image8))
+        self.editPasteAction = QAction(self,"editPasteAction")
+        self.editPasteAction.setIconSet(QIconSet(self.image9))
+        self.editFindAction = QAction(self,"editFindAction")
+        self.editFindAction.setIconSet(QIconSet(self.image10))
+        self.helpContentsAction = QAction(self,"helpContentsAction")
+        self.helpIndexAction = QAction(self,"helpIndexAction")
+        self.helpAboutAction = QAction(self,"helpAboutAction")
+        self.menunew_itemAction = QAction(self,"menunew_itemAction")
+        self.fileClose_WorkspaceAction = QAction(self,"fileClose_WorkspaceAction")
+        self.fileImportAction = QAction(self,"fileImportAction")
+        self.fileExportAction = QAction(self,"fileExportAction")
+        self.editSelect_AllAction = QAction(self,"editSelect_AllAction")
+        self.editSelect_AllAction_2 = QAction(self,"editSelect_AllAction_2")
+        self.controlStartAction = QAction(self,"controlStartAction")
+        self.controlNext_UpdateAction = QAction(self,"controlNext_UpdateAction")
+        self.windowZoom_WindowAction = QAction(self,"windowZoom_WindowAction")
+        self.windowMinimize_WindowAction = QAction(self,"windowMinimize_WindowAction")
 
 
 
 
-    self.MenuBar = QMenuBar(self,"MenuBar")
+        self.MenuBar = QMenuBar(self,"MenuBar")
 
 
-    self.File = QPopupMenu(self)
-    self.fileNewAction.addTo(self.File)
-    self.fileOpenAction.addTo(self.File)
-    self.fileClose_WorkspaceAction.addTo(self.File)
-    self.File.insertSeparator()
-    self.fileSaveAction.addTo(self.File)
-    self.fileSaveAsAction.addTo(self.File)
-    self.File.insertSeparator()
-    self.fileImportAction.addTo(self.File)
-    self.fileExportAction.addTo(self.File)
-    self.File.insertSeparator()
-    self.fileExitAction.addTo(self.File)
-    self.MenuBar.insertItem(QString(""),self.File,1)
+        self.File = QPopupMenu(self)
+        self.fileNewAction.addTo(self.File)
+        self.fileOpenAction.addTo(self.File)
+        self.MenuBar.insertItem(QString(""),self.File,1)
 
-    self.editMenu = QPopupMenu(self)
-    self.editUndoAction.addTo(self.editMenu)
-    self.editRedoAction.addTo(self.editMenu)
-    self.editMenu.insertSeparator()
-    self.editCutAction.addTo(self.editMenu)
-    self.editCopyAction.addTo(self.editMenu)
-    self.editPasteAction.addTo(self.editMenu)
-    self.editMenu.insertSeparator()
-    self.editSelect_AllAction_2.addTo(self.editMenu)
-    self.MenuBar.insertItem(QString(""),self.editMenu,2)
+        self.editMenu = QPopupMenu(self)
+        self.editUndoAction.addTo(self.editMenu)
+        self.editRedoAction.addTo(self.editMenu)
+        self.editMenu.insertSeparator()
+        self.editCutAction.addTo(self.editMenu)
+        self.editCopyAction.addTo(self.editMenu)
+        self.editPasteAction.addTo(self.editMenu)
+        self.editMenu.insertSeparator()
+        self.editSelect_AllAction_2.addTo(self.editMenu)
+        self.MenuBar.insertItem(QString(""),self.editMenu,2)
 
-    self.Control = QPopupMenu(self)
-    self.controlStartAction.addTo(self.Control)
-    self.controlNext_UpdateAction.addTo(self.Control)
-    self.MenuBar.insertItem(QString(""),self.Control,3)
+        self.Control = QPopupMenu(self)
+        self.controlStartAction.addTo(self.Control)
+        self.controlNext_UpdateAction.addTo(self.Control)
+        self.MenuBar.insertItem(QString(""),self.Control,3)
 
-    self.View = QPopupMenu(self)
-    self.MenuBar.insertItem(QString(""),self.View,4)
+        self.View = QPopupMenu(self)
+        self.MenuBar.insertItem(QString(""),self.View,4)
 
-    self.Window = QPopupMenu(self)
-    self.windowZoom_WindowAction.addTo(self.Window)
-    self.windowMinimize_WindowAction.addTo(self.Window)
-    self.MenuBar.insertItem(QString(""),self.Window,5)
+        self.Window = QPopupMenu(self)
+        self.windowZoom_WindowAction.addTo(self.Window)
+        self.windowMinimize_WindowAction.addTo(self.Window)
+        self.MenuBar.insertItem(QString(""),self.Window,5)
 
-    self.helpMenu = QPopupMenu(self)
-    self.helpContentsAction.addTo(self.helpMenu)
-    self.helpIndexAction.addTo(self.helpMenu)
-    self.helpMenu.insertSeparator()
-    self.helpAboutAction.addTo(self.helpMenu)
-    self.MenuBar.insertItem(QString(""),self.helpMenu,6)
+        self.helpMenu = QPopupMenu(self)
+        self.helpContentsAction.addTo(self.helpMenu)
+        self.helpIndexAction.addTo(self.helpMenu)
+        self.helpMenu.insertSeparator()
+        self.helpAboutAction.addTo(self.helpMenu)
+        self.MenuBar.insertItem(QString(""),self.helpMenu,6)
 
 
-    self.languageChange()
+        self.languageChange()
 
-    self.resize(QSize(636,460).expandedTo(self.minimumSizeHint()))
-    self.clearWState(Qt.WState_Polished)
+        self.resize(QSize(1024,768).expandedTo(self.minimumSizeHint()))
+        self.clearWState(Qt.WState_Polished)
 
-    self.connect(self.fileNewAction,SIGNAL("activated()"),self.fileNew)
-    self.connect(self.fileOpenAction,SIGNAL("activated()"),self.fileOpen)
-    self.connect(self.fileSaveAction,SIGNAL("activated()"),self.fileSave)
-    self.connect(self.fileSaveAsAction,SIGNAL("activated()"),self.fileSaveAs)
-    self.connect(self.filePrintAction,SIGNAL("activated()"),self.filePrint)
-    self.connect(self.fileExitAction,SIGNAL("activated()"),self.fileExit)
-    self.connect(self.editUndoAction,SIGNAL("activated()"),self.editUndo)
-    self.connect(self.editRedoAction,SIGNAL("activated()"),self.editRedo)
-    self.connect(self.editCutAction,SIGNAL("activated()"),self.editCut)
-    self.connect(self.editCopyAction,SIGNAL("activated()"),self.editCopy)
-    self.connect(self.editPasteAction,SIGNAL("activated()"),self.editPaste)
-    self.connect(self.editFindAction,SIGNAL("activated()"),self.editFind)
-    self.connect(self.helpIndexAction,SIGNAL("activated()"),self.helpIndex)
-    self.connect(self.helpContentsAction,SIGNAL("activated()"),self.helpContents)
-    self.connect(self.helpAboutAction,SIGNAL("activated()"),self.helpAbout)
+        self.connect(self.fileNewAction,SIGNAL("activated()"),self.fileNew)
+        self.connect(self.fileOpenAction,SIGNAL("activated()"),self.fileOpen)
+        self.connect(self.fileSaveAction,SIGNAL("activated()"),self.fileSave)
+        self.connect(self.fileSaveAsAction,SIGNAL("activated()"),self.fileSaveAs)
+        self.connect(self.filePrintAction,SIGNAL("activated()"),self.filePrint)
+        self.connect(self.fileExitAction,SIGNAL("activated()"),self.fileExit)
+        self.connect(self.editUndoAction,SIGNAL("activated()"),self.editUndo)
+        self.connect(self.editRedoAction,SIGNAL("activated()"),self.editRedo)
+        self.connect(self.editCutAction,SIGNAL("activated()"),self.editCut)
+        self.connect(self.editCopyAction,SIGNAL("activated()"),self.editCopy)
+        self.connect(self.editPasteAction,SIGNAL("activated()"),self.editPaste)
+        self.connect(self.editFindAction,SIGNAL("activated()"),self.editFind)
+        self.connect(self.helpIndexAction,SIGNAL("activated()"),self.helpIndex)
+        self.connect(self.helpContentsAction,SIGNAL("activated()"),self.helpContents)
+        self.connect(self.helpAboutAction,SIGNAL("activated()"),self.helpAbout)
 
 
-  def languageChange(self):
-    self.setCaption(self.__tr("pyEduWorkspaceView"))
-    self.fileNewAction.setText(self.__tr("New Workspace"))
-    self.fileNewAction.setMenuText(self.__tr("&New Workspace"))
-    self.fileNewAction.setAccel(self.__tr("Ctrl+Shift+N"))
-    self.fileOpenAction.setText(self.__tr("Open Workspace..."))
-    self.fileOpenAction.setMenuText(self.__tr("&Open Workspace..."))
-    self.fileOpenAction.setAccel(self.__tr("Ctrl+O"))
-    self.fileSaveAction.setText(self.__tr("&Save Workspace"))
-    self.fileSaveAction.setMenuText(self.__tr("&Save Workspace"))
-    self.fileSaveAction.setAccel(self.__tr("Ctrl+S"))
-    self.fileSaveAsAction.setText(self.__tr("Save Workspace As..."))
-    self.fileSaveAsAction.setMenuText(self.__tr("Save Workspace &As..."))
-    self.fileSaveAsAction.setAccel(self.__tr("Ctrl+Shift+S"))
-    self.filePrintAction.setText(self.__tr("Print"))
-    self.filePrintAction.setMenuText(self.__tr("&Print..."))
-    self.filePrintAction.setAccel(self.__tr("Ctrl+P"))
-    self.fileExitAction.setText(self.__tr("Exit"))
-    self.fileExitAction.setMenuText(self.__tr("E&xit"))
-    self.fileExitAction.setAccel(QString.null)
-    self.editUndoAction.setText(self.__tr("Undo"))
-    self.editUndoAction.setMenuText(self.__tr("&Undo"))
-    self.editUndoAction.setAccel(self.__tr("Ctrl+Z"))
-    self.editRedoAction.setText(self.__tr("Redo"))
-    self.editRedoAction.setMenuText(self.__tr("&Redo"))
-    self.editRedoAction.setAccel(self.__tr("Ctrl+Shift+Z"))
-    self.editCutAction.setText(self.__tr("Cut"))
-    self.editCutAction.setMenuText(self.__tr("Cu&t"))
-    self.editCutAction.setAccel(self.__tr("Ctrl+X"))
-    self.editCopyAction.setText(self.__tr("Copy"))
-    self.editCopyAction.setMenuText(self.__tr("&Copy"))
-    self.editCopyAction.setAccel(self.__tr("Ctrl+C"))
-    self.editPasteAction.setText(self.__tr("Paste"))
-    self.editPasteAction.setMenuText(self.__tr("&Paste"))
-    self.editPasteAction.setAccel(self.__tr("Ctrl+V"))
-    self.editFindAction.setText(self.__tr("Find"))
-    self.editFindAction.setMenuText(self.__tr("&Find..."))
-    self.editFindAction.setAccel(self.__tr("Ctrl+F"))
-    self.helpContentsAction.setText(self.__tr("Contents"))
-    self.helpContentsAction.setMenuText(self.__tr("&Contents..."))
-    self.helpContentsAction.setAccel(QString.null)
-    self.helpIndexAction.setText(self.__tr("Index"))
-    self.helpIndexAction.setMenuText(self.__tr("&Index..."))
-    self.helpIndexAction.setAccel(QString.null)
-    self.helpAboutAction.setText(self.__tr("About"))
-    self.helpAboutAction.setMenuText(self.__tr("&About"))
-    self.helpAboutAction.setAccel(QString.null)
-    self.menunew_itemAction.setText(self.__tr("new item"))
-    self.menunew_itemAction.setMenuText(self.__tr("new item"))
-    self.fileClose_WorkspaceAction.setText(self.__tr("Close Workspace"))
-    self.fileClose_WorkspaceAction.setMenuText(self.__tr("Close Workspace"))
-    self.fileClose_WorkspaceAction.setAccel(self.__tr("Ctrl+W"))
-    self.fileImportAction.setText(self.__tr("Import..."))
-    self.fileImportAction.setMenuText(self.__tr("Import..."))
-    self.fileExportAction.setText(self.__tr("Export..."))
-    self.fileExportAction.setMenuText(self.__tr("Export..."))
-    self.editSelect_AllAction.setText(self.__tr("Select All"))
-    self.editSelect_AllAction.setMenuText(self.__tr("Select All"))
-    self.editSelect_AllAction_2.setText(self.__tr("Select All"))
-    self.editSelect_AllAction_2.setMenuText(self.__tr("Select All"))
-    self.editSelect_AllAction_2.setAccel(self.__tr("Ctrl+A"))
-    self.controlStartAction.setText(self.__tr("Start"))
-    self.controlStartAction.setMenuText(self.__tr("Start"))
-    self.controlNext_UpdateAction.setText(self.__tr("Next Update"))
-    self.controlNext_UpdateAction.setMenuText(self.__tr("Next Update"))
-    self.windowZoom_WindowAction.setText(self.__tr("Zoom Window"))
-    self.windowZoom_WindowAction.setMenuText(self.__tr("Zoom Window"))
-    self.windowMinimize_WindowAction.setText(self.__tr("Minimize Window"))
-    self.windowMinimize_WindowAction.setMenuText(self.__tr("Minimize Window"))
-    if self.MenuBar.findItem(1):
-      self.MenuBar.findItem(1).setText(self.__tr("&File"))
-    if self.MenuBar.findItem(2):
-      self.MenuBar.findItem(2).setText(self.__tr("&Edit"))
-    if self.MenuBar.findItem(3):
-      self.MenuBar.findItem(3).setText(self.__tr("&Control"))
-    if self.MenuBar.findItem(4):
-      self.MenuBar.findItem(4).setText(self.__tr("&View"))
-    if self.MenuBar.findItem(5):
-      self.MenuBar.findItem(5).setText(self.__tr("&Window"))
-    if self.MenuBar.findItem(6):
-      self.MenuBar.findItem(6).setText(self.__tr("&Help"))
+    def languageChange(self):
+        self.setCaption(self.__tr("Avida-ED"))
+        self.fileNewAction.setText(self.__tr("New Workspace"))
+        self.fileNewAction.setMenuText(self.__tr("&New Workspace"))
+        self.fileNewAction.setAccel(self.__tr("Ctrl+Shift+N"))
+        self.fileOpenAction.setText(self.__tr("Open Workspace..."))
+        self.fileOpenAction.setMenuText(self.__tr("&Open Workspace..."))
+        self.fileOpenAction.setAccel(self.__tr("Ctrl+O"))
+        self.fileSaveAction.setText(self.__tr("&Save Workspace"))
+        self.fileSaveAction.setMenuText(self.__tr("&Save Workspace"))
+        self.fileSaveAction.setAccel(self.__tr("Ctrl+S"))
+        self.fileSaveAsAction.setText(self.__tr("Save Workspace As..."))
+        self.fileSaveAsAction.setMenuText(self.__tr("Save Workspace &As..."))
+        self.fileSaveAsAction.setAccel(self.__tr("Ctrl+Shift+S"))
+        self.filePrintAction.setText(self.__tr("Print"))
+        self.filePrintAction.setMenuText(self.__tr("&Print..."))
+        self.filePrintAction.setAccel(self.__tr("Ctrl+P"))
+        self.fileExitAction.setText(self.__tr("Exit"))
+        self.fileExitAction.setMenuText(self.__tr("E&xit"))
+        self.fileExitAction.setAccel(QString.null)
+        self.editUndoAction.setText(self.__tr("Undo"))
+        self.editUndoAction.setMenuText(self.__tr("&Undo"))
+        self.editUndoAction.setAccel(self.__tr("Ctrl+Z"))
+        self.editRedoAction.setText(self.__tr("Redo"))
+        self.editRedoAction.setMenuText(self.__tr("&Redo"))
+        self.editRedoAction.setAccel(self.__tr("Ctrl+Shift+Z"))
+        self.editCutAction.setText(self.__tr("Cut"))
+        self.editCutAction.setMenuText(self.__tr("Cu&t"))
+        self.editCutAction.setAccel(self.__tr("Ctrl+X"))
+        self.editCopyAction.setText(self.__tr("Copy"))
+        self.editCopyAction.setMenuText(self.__tr("&Copy"))
+        self.editCopyAction.setAccel(self.__tr("Ctrl+C"))
+        self.editPasteAction.setText(self.__tr("Paste"))
+        self.editPasteAction.setMenuText(self.__tr("&Paste"))
+        self.editPasteAction.setAccel(self.__tr("Ctrl+V"))
+        self.editFindAction.setText(self.__tr("Find"))
+        self.editFindAction.setMenuText(self.__tr("&Find..."))
+        self.editFindAction.setAccel(self.__tr("Ctrl+F"))
+        self.helpContentsAction.setText(self.__tr("Contents"))
+        self.helpContentsAction.setMenuText(self.__tr("&Contents..."))
+        self.helpContentsAction.setAccel(QString.null)
+        self.helpIndexAction.setText(self.__tr("Index"))
+        self.helpIndexAction.setMenuText(self.__tr("&Index..."))
+        self.helpIndexAction.setAccel(QString.null)
+        self.helpAboutAction.setText(self.__tr("About"))
+        self.helpAboutAction.setMenuText(self.__tr("&About"))
+        self.helpAboutAction.setAccel(QString.null)
+        self.menunew_itemAction.setText(self.__tr("new item"))
+        self.menunew_itemAction.setMenuText(self.__tr("new item"))
+        self.fileClose_WorkspaceAction.setText(self.__tr("Close Workspace"))
+        self.fileClose_WorkspaceAction.setMenuText(self.__tr("Close Workspace"))
+        self.fileClose_WorkspaceAction.setAccel(self.__tr("Ctrl+W"))
+        self.fileImportAction.setText(self.__tr("Import..."))
+        self.fileImportAction.setMenuText(self.__tr("Import..."))
+        self.fileExportAction.setText(self.__tr("Export..."))
+        self.fileExportAction.setMenuText(self.__tr("Export..."))
+        self.editSelect_AllAction.setText(self.__tr("Select All"))
+        self.editSelect_AllAction.setMenuText(self.__tr("Select All"))
+        self.editSelect_AllAction_2.setText(self.__tr("Select All"))
+        self.editSelect_AllAction_2.setMenuText(self.__tr("Select All"))
+        self.editSelect_AllAction_2.setAccel(self.__tr("Ctrl+A"))
+        self.controlStartAction.setText(self.__tr("Start"))
+        self.controlStartAction.setMenuText(self.__tr("Start"))
+        self.controlNext_UpdateAction.setText(self.__tr("Next Update"))
+        self.controlNext_UpdateAction.setMenuText(self.__tr("Next Update"))
+        self.windowZoom_WindowAction.setText(self.__tr("Zoom Window"))
+        self.windowZoom_WindowAction.setMenuText(self.__tr("Zoom Window"))
+        self.windowMinimize_WindowAction.setText(self.__tr("Minimize Window"))
+        self.windowMinimize_WindowAction.setMenuText(self.__tr("Minimize Window"))
+        if self.MenuBar.findItem(1):
+            self.MenuBar.findItem(1).setText(self.__tr("&File"))
+        if self.MenuBar.findItem(2):
+            self.MenuBar.findItem(2).setText(self.__tr("&Edit"))
+        if self.MenuBar.findItem(3):
+            self.MenuBar.findItem(3).setText(self.__tr("&Control"))
+        if self.MenuBar.findItem(4):
+            self.MenuBar.findItem(4).setText(self.__tr("&View"))
+        if self.MenuBar.findItem(5):
+            self.MenuBar.findItem(5).setText(self.__tr("&Window"))
+        if self.MenuBar.findItem(6):
+            self.MenuBar.findItem(6).setText(self.__tr("&Help"))
 
 
-  def fileNew(self):
-    print "pyEduWorkspaceView.fileNew(): Not implemented yet"
+    def fileNew(self):
+        print "pyEduWorkspaceView.fileNew(): Not implemented yet"
 
-  def fileOpen(self):
-    print "pyEduWorkspaceView.fileOpen(): Not implemented yet"
+    def fileOpen(self):
+        print "pyEduWorkspaceView.fileOpen(): Not implemented yet"
 
-  def fileSave(self):
-    print "pyEduWorkspaceView.fileSave(): Not implemented yet"
+    def fileSave(self):
+        print "pyEduWorkspaceView.fileSave(): Not implemented yet"
 
-  def fileSaveAs(self):
-    print "pyEduWorkspaceView.fileSaveAs(): Not implemented yet"
+    def fileSaveAs(self):
+        print "pyEduWorkspaceView.fileSaveAs(): Not implemented yet"
 
-  def filePrint(self):
-    print "pyEduWorkspaceView.filePrint(): Not implemented yet"
+    def filePrint(self):
+        print "pyEduWorkspaceView.filePrint(): Not implemented yet"
 
-  def fileExit(self):
-    print "pyEduWorkspaceView.fileExit(): Not implemented yet"
+    def fileExit(self):
+        print "pyEduWorkspaceView.fileExit(): Not implemented yet"
 
-  def editUndo(self):
-    print "pyEduWorkspaceView.editUndo(): Not implemented yet"
+    def editUndo(self):
+        print "pyEduWorkspaceView.editUndo(): Not implemented yet"
 
-  def editRedo(self):
-    print "pyEduWorkspaceView.editRedo(): Not implemented yet"
+    def editRedo(self):
+        print "pyEduWorkspaceView.editRedo(): Not implemented yet"
 
-  def editCut(self):
-    print "pyEduWorkspaceView.editCut(): Not implemented yet"
+    def editCut(self):
+        print "pyEduWorkspaceView.editCut(): Not implemented yet"
 
-  def editCopy(self):
-    print "pyEduWorkspaceView.editCopy(): Not implemented yet"
+    def editCopy(self):
+        print "pyEduWorkspaceView.editCopy(): Not implemented yet"
 
-  def editPaste(self):
-    print "pyEduWorkspaceView.editPaste(): Not implemented yet"
+    def editPaste(self):
+        print "pyEduWorkspaceView.editPaste(): Not implemented yet"
 
-  def editFind(self):
-    print "pyEduWorkspaceView.editFind(): Not implemented yet"
+    def editFind(self):
+        print "pyEduWorkspaceView.editFind(): Not implemented yet"
 
-  def helpIndex(self):
-    print "pyEduWorkspaceView.helpIndex(): Not implemented yet"
+    def helpIndex(self):
+        print "pyEduWorkspaceView.helpIndex(): Not implemented yet"
 
-  def helpContents(self):
-    print "pyEduWorkspaceView.helpContents(): Not implemented yet"
+    def helpContents(self):
+        print "pyEduWorkspaceView.helpContents(): Not implemented yet"
 
-  def helpAbout(self):
-    print "pyEduWorkspaceView.helpAbout(): Not implemented yet"
+    def helpAbout(self):
+        print "pyEduWorkspaceView.helpAbout(): Not implemented yet"
 
-  def __tr(self,s,c = None):
-    return qApp.translate("pyEduWorkspaceView",s,c)
+    def __tr(self,s,c = None):
+        return qApp.translate("pyEduWorkspaceView",s,c)

Modified: trunk/source/python/AvidaGui2/pyFreezerView.py
===================================================================
--- trunk/source/python/AvidaGui2/pyFreezerView.py	2005-03-31 03:44:15 UTC (rev 95)
+++ trunk/source/python/AvidaGui2/pyFreezerView.py	2005-03-31 09:26:09 UTC (rev 96)
@@ -1,9 +1,9 @@
 # -*- coding: utf-8 -*-
 
-# Form implementation generated from reading ui file '/Users/kaben/Projects/Software/Avida/branch.kaben/avida--current--2.0--base-0/source/bindings/Boost.Python/AvidaGui2/pyFreezerView.ui'
+# Form implementation generated from reading ui file 'pyFreezerView.ui'
 #
-# Created: Fri Dec 3 10:26:50 2004
-#      by: The PyQt User Interface Compiler (pyuic) 3.12
+# Created: Thu Mar 31 04:19:19 2005
+#      by: The PyQt User Interface Compiler (pyuic) 3.13
 #
 # WARNING! All changes made in this file will be lost!
 
@@ -11,494 +11,494 @@
 from qt import *
 
 image0_data = \
-  "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
-  "\x49\x48\x44\x52\x00\x00\x00\x20\x00\x00\x00\x20" \
-  "\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\x00\x00\x06" \
-  "\xe2\x49\x44\x41\x54\x78\x9c\xed\x56\x5d\x88\x5d" \
-  "\x57\x15\xfe\xbe\xb5\xcf\x39\xf7\xdc\x9f\xb9\x33" \
-  "\x71\x48\x9a\x3f\x9b\xd8\x74\x30\xb6\x32\x49\xd4" \
-  "\x9a\x16\x5b\x45\x5b\xd4\x4a\x6b\x31\x58\xf4\x45" \
-  "\xd0\xbe\x09\x0a\x8a\x50\x4b\xd0\xa7\x24\x58\x9b" \
-  "\x50\xad\x2f\x52\x10\x45\x88\x08\x12\xf0\x41\x22" \
-  "\xa1\x0f\xcd\x54\xda\xa4\x3a\x0f\x92\x49\x68\x90" \
-  "\x64\x6a\x7e\x26\x93\xf9\xcb\xcc\x9d\xfb\x73\xee" \
-  "\xcf\x39\x7b\x2d\x1f\xce\xbd\x65\xd2\x54\x5a\x02" \
-  "\xe2\x4b\x16\x6c\xce\xde\xb0\xcf\x59\xdf\xfa\xd6" \
-  "\xb7\xd6\x3a\xc0\x1d\xfb\x3f\x1b\x6f\xe7\xa5\x9d" \
-  "\x3b\x77\x06\x95\x4a\xa5\xa4\xaa\x31\x00\x46\x51" \
-  "\xd4\x89\xe3\x38\x99\x98\x98\x48\xff\x27\x00\x1e" \
-  "\x7f\xfc\x2b\xeb\x76\xef\x7e\xe0\xa1\x87\x3f\xf7" \
-  "\xf9\xf1\x5d\xbb\x77\x8d\x09\xdd\x66\x09\xe3\x38" \
-  "\x8a\x08\x92\xf0\x99\x22\x4d\x7b\x3d\x9f\x75\xe7" \
-  "\xcf\x9f\x3d\x77\xf1\xcc\xd9\x33\xe7\x8f\xff\xe5" \
-  "\xcf\xaf\x9f\x3c\x79\xf2\xfa\x6d\x03\x18\x19\x19" \
-  "\xc1\x13\x4f\x3c\xb5\xe7\x99\x67\xbe\xff\xf4\x8e" \
-  "\x7b\x3f\xbe\xb7\x10\x15\x68\x30\x1a\x0d\x30\x05" \
-  "\x21\x06\x90\x00\x60\x50\x38\x27\x06\x21\x85\x16" \
-  "\x44\x11\xcb\x3e\xf3\x32\x7f\x7d\x66\xf2\xa5\x97" \
-  "\x0e\xff\xf1\xe8\xd1\xdf\x4f\x34\x9b\x4d\xfd\xc0" \
-  "\x00\xc6\xc7\x77\xad\x3f\x72\xe4\xe5\x1f\x8e\xed" \
-  "\x18\x7f\x88\x22\x46\x92\x70\x84\x90\xb1\x0b\x83" \
-  "\x72\xe6\xbb\x15\xef\x7b\xa1\x87\x17\x2a\x21\x22" \
-  "\xc6\x20\x48\x43\x89\x13\x64\xda\x09\x02\x29\x3a" \
-  "\x67\x8e\x22\x5e\xbd\xf9\xf9\xa5\x2b\x93\xdf\xfb" \
-  "\xee\x77\x0e\x4c\x4c\x9c\xfc\xf7\xfb\x02\xd8\xb7" \
-  "\xef\xe9\xfb\x7f\xfe\xb3\x97\x0f\x48\x10\xaf\xa3" \
-  "\x38\x28\xac\xdc\x4b\xbb\x77\x75\x7b\x9d\xd1\x5e" \
-  "\x92\x94\xd2\x6e\xcb\xd2\x9e\x99\x0b\x42\x82\x00" \
-  "\x4c\x0c\x30\xf3\x9a\xd1\x05\x44\xb1\x10\xb3\x5c" \
-  "\x29\xfa\xf2\x50\x35\x89\xc3\xa8\xa6\xea\x3b\xde" \
-  "\x63\x45\x62\xab\xfd\xea\x97\x07\x9f\x7f\xfe\xd0" \
-  "\xa1\xd7\xd6\xfa\x73\x6b\x0f\x4f\x3e\xf5\xb5\x9d" \
-  "\x2f\xbc\xf0\xdb\x23\x3e\xc3\xb0\x37\x94\x5a\xad" \
-  "\xd5\xb1\x5a\x6d\x69\xac\xb3\xda\x1e\xb1\x54\x22" \
-  "\x53\x5a\xe4\x4a\x52\x28\x54\x24\x0c\x8b\x14\x0b" \
-  "\x4c\x24\x40\xe8\x62\x84\x41\xcc\xc0\x15\x49\x44" \
-  "\x48\x33\x73\xcd\x46\x3d\x6a\xb6\x56\x87\x55\xb3" \
-  "\x22\x18\x36\x7d\xca\xec\x91\xc7\xbe\xf0\x59\xf3" \
-  "\x9d\xb7\x4f\x9f\x3a\x75\xe5\x16\x06\x36\x6c\xdc" \
-  "\x58\xf8\xeb\xab\x7f\xff\x5d\x6c\xc3\x5b\x92\x66" \
-  "\x63\x73\x92\xd4\xb6\x07\x41\x2c\x71\x54\x21\x40" \
-  "\x83\x19\xd4\x0c\x2e\x08\xc4\x54\x01\x10\xaa\x5e" \
-  "\x45\x68\x10\x21\x20\x4a\x83\x80\x46\x33\x50\xe1" \
-  "\x41\x40\x49\x45\xa7\xdb\xb0\xe1\x91\xd1\xab\xa5" \
-  "\xf2\xd0\x95\xea\xa8\x35\xbe\xfa\xe5\x47\xbf\x7d" \
-  "\xfa\xd4\xa9\x25\x00\x90\x01\x80\x67\xf7\xef\xff" \
-  "\xe2\xc8\x86\xcd\x5b\xdb\xbe\x73\x77\xd2\x5e\xbd" \
-  "\x27\x0a\xcb\x74\x2e\x86\x2a\xd4\xab\xa7\x01\xa0" \
-  "\xd0\xa0\xe6\x0d\x50\x0a\xd4\x39\x07\x50\x20\x20" \
-  "\x03\xe7\x18\x04\x81\x19\x0c\x30\x35\x82\x20\x84" \
-  "\xf0\x0e\x51\x58\x65\xbd\xb6\xb2\x75\x65\x65\x61" \
-  "\x67\x7d\x15\xd5\x1f\x3c\xfb\xdc\x37\x6e\x61\x60" \
-  "\xea\xf2\x95\x17\xcd\xaa\x4f\xd6\x67\xe6\xb6\x87" \
-  "\x52\x24\x19\x40\x84\x20\x05\x00\x29\x06\x33\xf3" \
-  "\x02\x71\x34\x03\x0c\x66\x24\x8d\x0a\x82\x79\x41" \
-  "\x88\x38\xcb\xd4\x93\x06\xcb\xf5\x01\xd0\x89\x9a" \
-  "\x57\x31\x18\xb2\xb4\x05\x57\x90\x99\xca\xfa\xea" \
-  "\xe9\xfb\xb6\x8f\x7e\xf3\x26\x06\xc8\xd2\xb6\xc6" \
-  "\xf5\xf9\x6d\x05\x57\xa1\xb8\x10\x22\x0e\x22\x81" \
-  "\x81\x42\xa1\xa8\xd1\x00\x8a\x81\x84\xaa\x42\x28" \
-  "\x96\xe7\x06\xec\x87\x4b\x55\x6f\x04\x98\x2b\xd3" \
-  "\x04\x02\x53\xaf\x81\x11\x02\x82\x41\x54\x44\xda" \
-  "\xeb\x6d\xee\xd4\x3b\xdb\x00\x14\xd7\x02\x08\x97" \
-  "\x66\x16\xb6\x14\x83\x8a\x50\x1c\x1c\x1d\x08\xd0" \
-  "\xfb\x5e\x60\xea\x45\xbd\x8a\x19\xa0\x66\x00\x61" \
-  "\xe2\xa8\x6a\x6a\x66\x00\x68\x4a\x3a\x0f\x83\x52" \
-  "\x24\xef\x0b\xa4\x09\x64\x40\x0c\x00\x03\x29\x84" \
-  "\x09\xe3\xa8\xca\x66\xab\xb1\x55\x44\x0a\x6b\x01" \
-  "\x94\x34\xed\xae\x03\x05\x8e\x83\x08\x48\x27\x01" \
-  "\xc4\x39\x40\x40\x33\x63\xaa\xa9\xf8\x2c\xa3\x19" \
-  "\x85\xa4\x31\xf7\x40\xf3\xea\x0c\x30\xef\x95\x04" \
-  "\x34\x77\x6d\x9e\x22\x00\xa0\x24\xcd\x4c\xd5\x68" \
-  "\x20\x04\x50\x0c\xa9\xea\x3b\x0c\x08\x80\x42\x7d" \
-  "\x35\x09\x4d\x41\xba\xd0\x40\x9a\x10\x30\x10\x96" \
-  "\xa9\x99\x99\x89\x73\x0c\x5d\x08\x32\x6f\x3c\x4e" \
-  "\x84\x30\x92\x24\x41\x40\xf2\x1d\x60\x10\x42\x07" \
-  "\xdf\xcd\x2f\xa8\x81\x20\x1d\xc5\x8c\x84\xc5\x71" \
-  "\x28\x22\x31\x80\x60\xc0\x40\x70\xe1\x5f\xd3\xd9" \
-  "\xdc\xfc\x9c\xa9\x1a\x80\x3e\xdd\x06\x85\xa3\x09" \
-  "\xc5\x34\xe7\xdf\x03\xa2\x80\x9a\x37\x1b\x50\x60" \
-  "\x24\xcc\x0c\x79\xfe\x4d\xa1\xfd\x74\x59\xbe\xa1" \
-  "\x02\x34\x35\x3a\x09\x34\xe9\xb5\xe1\x2a\x43\x5e" \
-  "\x55\x09\x80\xef\x88\xf0\xea\xec\xa5\x0b\xb5\x5a" \
-  "\x53\x16\x97\xe7\x39\x10\x38\xcc\x24\xd7\x15\x48" \
-  "\x98\x00\x74\x06\x15\x05\x2c\x8f\x2a\x17\x3b\x08" \
-  "\x88\x88\x19\xa8\x12\x46\x4a\x52\x03\xa1\x51\x00" \
-  "\x03\x94\x80\x01\xde\xea\x8d\x9a\x34\x3a\xde\xfd" \
-  "\x73\xf2\x1f\x97\x01\xa4\x03\x00\x06\x20\x7b\x6d" \
-  "\xe2\xf8\x09\xc6\x31\xae\x5d\x9a\xe5\xcc\xcc\x65" \
-  "\xa6\xbd\x34\x2f\x2d\xc2\xf2\x21\x44\x18\x3c\x72" \
-  "\xdd\x91\x20\x69\xaa\x54\xf5\x34\x05\xd4\x94\x4e" \
-  "\x68\x66\xa6\x79\x8d\x8a\xaa\x82\x86\x5c\x89\x8b" \
-  "\xf5\x65\xcc\x5c\x9b\x63\xa7\x99\xd8\x89\x63\x7f" \
-  "\x38\x01\x20\x03\x90\x0d\x5a\xb1\xcc\xcf\x5d\xab" \
-  "\x8d\x7d\x6c\xfc\xd3\x23\xc3\x1b\x36\x67\x69\x0f" \
-  "\xae\x60\x10\x00\xc5\xd2\x90\xe5\x62\x32\x13\x3a" \
-  "\x90\x54\x11\x02\xde\x0b\x38\xe8\x13\x66\xf9\x60" \
-  "\x20\x0c\x06\x71\x8e\x4e\x9c\x18\x94\xdd\xb4\x23" \
-  "\x49\x77\x85\xf5\x7a\x83\x69\xd7\x70\x75\x76\xfa" \
-  "\xca\x6f\x7e\x7d\xe8\xa0\xf7\x7e\x0e\x40\x7b\x00" \
-  "\x40\x01\xc8\x5b\x67\x27\x2f\xee\x19\x7f\xf0\xd1" \
-  "\xea\x50\xa5\x52\x29\x97\xd8\x53\x45\xbb\xd3\xa0" \
-  "\x4f\x7b\x54\x35\x06\xce\x19\x41\xaa\x5a\x4e\x9e" \
-  "\xa9\x32\x97\x57\x5e\x7c\xa4\xc2\x4c\xd2\x2c\x65" \
-  "\xd2\x6d\x99\x49\x9b\xa5\xa2\xd0\x89\xa0\xde\x68" \
-  "\x61\x69\x71\xa1\xf1\x8b\x17\x9f\xdb\x7f\xe3\xc6" \
-  "\xe2\x14\x80\x15\x00\x7e\x2d\x00\xdf\x69\x27\x9d" \
-  "\xa9\xa9\xd3\x53\xbb\xee\xdf\xf3\xe0\x5d\x9b\xb6" \
-  "\x54\xe9\x1c\x7d\x9a\xb2\x93\xa5\x4c\xe9\x59\x6b" \
-  "\x25\x9c\x5f\xae\x31\x4d\x7b\xac\x37\x5a\x52\x6b" \
-  "\x36\xa4\xd1\xee\xb0\x93\x76\xb0\xb4\xb4\xc8\xc5" \
-  "\xa5\x05\x77\xf5\xfa\x0c\x1b\x49\xc2\x72\x39\x92" \
-  "\xe1\x6a\x99\xe2\x04\x69\x9a\x62\x7a\x7a\x7a\xfe" \
-  "\xf0\xe1\x1f\xff\xf4\xd2\xa5\x8b\x7f\x03\xb0\x04" \
-  "\xa0\x05\xdc\x3c\x0d\x33\x00\x59\x92\xb4\xea\x6f" \
-  "\xbc\xf9\xea\x1b\xd5\xa1\xa1\x4d\xdb\xee\x19\xdb" \
-  "\xea\x24\x10\x23\x28\x51\x84\xcc\x13\xcb\xf5\x96" \
-  "\x35\xd2\x8c\x8d\x76\x0f\xcb\xf5\x3a\x9a\xad\x96" \
-  "\xd5\x9b\x2d\x2e\xae\xd6\xd8\xe8\x74\x90\x79\xa5" \
-  "\xef\xa5\xac\x96\x23\xc4\x45\x87\x56\xa3\xe5\x5f" \
-  "\x79\xe5\xf8\xe4\xc1\x03\x3f\xfa\xc9\xdc\xdc\xec" \
-  "\x24\x80\x39\x00\xf5\x5b\x66\xc1\x9a\x73\x19\xc0" \
-  "\x28\x80\xf5\xdb\x3f\x72\xef\xde\x7d\x5f\xff\xd6" \
-  "\xbe\x87\x1f\xf9\xd2\xde\xe2\xd0\x48\xb1\xd3\x33" \
-  "\x59\x58\x5a\x05\x9c\xc0\x52\x43\xb7\xdd\x40\x10" \
-  "\x44\xa0\x4f\x91\x66\x09\x80\x00\xd0\x14\xa1\x0b" \
-  "\x74\x74\x5d\xa9\x77\xfe\xfc\xe4\xd4\x9f\x8e\x1d" \
-  "\x3d\xf6\xd6\xb9\x33\xaf\x03\x98\x07\x70\x03\x40" \
-  "\xa3\xcf\xf8\x7b\x02\x18\x58\x01\xc0\x70\x7f\xad" \
-  "\x2b\x97\x2b\xdb\x3f\xf9\xc0\x67\x3e\xf5\xd1\xfb" \
-  "\x3e\x31\x5e\xfd\xd0\x96\xbb\x37\x7d\x78\xc7\xc6" \
-  "\x42\x58\x8c\x60\x10\x9f\xa5\x14\xc2\xb7\xda\xab" \
-  "\xe9\xdc\xec\xe5\x85\xe5\xb9\xab\xb3\xd3\x17\xce" \
-  "\x9d\x3d\x77\x6e\xf2\xcd\x7a\x7d\xf5\x6d\x00\xab" \
-  "\x00\x6a\xfd\x67\xbb\x5f\x75\x37\x45\xfc\xdf\x4c" \
-  "\x90\x0f\x8c\x0a\x80\x52\x9f\x99\x32\x80\x58\x44" \
-  "\xca\xc5\x62\x69\x28\x8a\x0a\x31\x29\xe8\xa5\xbd" \
-  "\x6e\x3b\x69\xb6\xbc\xf7\x8d\xbe\x93\x36\x80\x26" \
-  "\x80\xa4\x9f\xeb\x04\x80\x7f\x2f\x27\x1f\xe4\xaf" \
-  "\x98\x00\x42\x00\x51\x9f\x99\xb0\xff\x1c\xb4\x5b" \
-  "\xeb\xdf\x49\x91\xeb\xa8\xdb\xdf\x77\x01\xf4\xde" \
-  "\x1d\xf1\xed\x00\x78\xb7\xc9\x9a\x85\x35\x00\xb4" \
-  "\xbf\xec\xfd\x9c\xde\xb1\x3b\xb6\xd6\xfe\x03\x36" \
-  "\x4b\xab\xe4\xf4\x82\x51\xa6\x00\x00\x00\x00\x49" \
-  "\x45\x4e\x44\xae\x42\x60\x82"
+    "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
+    "\x49\x48\x44\x52\x00\x00\x00\x20\x00\x00\x00\x20" \
+    "\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\x00\x00\x06" \
+    "\xe2\x49\x44\x41\x54\x78\x9c\xed\x56\x5d\x88\x5d" \
+    "\x57\x15\xfe\xbe\xb5\xcf\x39\xf7\xdc\x9f\xb9\x33" \
+    "\x71\x48\x9a\x3f\x9b\xd8\x74\x30\xb6\x32\x49\xd4" \
+    "\x9a\x16\x5b\x45\x5b\xd4\x4a\x6b\x31\x58\xf4\x45" \
+    "\xd0\xbe\x09\x0a\x8a\x50\x4b\xd0\xa7\x24\x58\x9b" \
+    "\x50\xad\x2f\x52\x10\x45\x88\x08\x12\xf0\x41\x22" \
+    "\xa1\x0f\xcd\x54\xda\xa4\x3a\x0f\x92\x49\x68\x90" \
+    "\x64\x6a\x7e\x26\x93\xf9\xcb\xcc\x9d\xfb\x73\xee" \
+    "\xcf\x39\x7b\x2d\x1f\xce\xbd\x65\xd2\x54\x5a\x02" \
+    "\xe2\x4b\x16\x6c\xce\xde\xb0\xcf\x59\xdf\xfa\xd6" \
+    "\xb7\xd6\x3a\xc0\x1d\xfb\x3f\x1b\x6f\xe7\xa5\x9d" \
+    "\x3b\x77\x06\x95\x4a\xa5\xa4\xaa\x31\x00\x46\x51" \
+    "\xd4\x89\xe3\x38\x99\x98\x98\x48\xff\x27\x00\x1e" \
+    "\x7f\xfc\x2b\xeb\x76\xef\x7e\xe0\xa1\x87\x3f\xf7" \
+    "\xf9\xf1\x5d\xbb\x77\x8d\x09\xdd\x66\x09\xe3\x38" \
+    "\x8a\x08\x92\xf0\x99\x22\x4d\x7b\x3d\x9f\x75\xe7" \
+    "\xcf\x9f\x3d\x77\xf1\xcc\xd9\x33\xe7\x8f\xff\xe5" \
+    "\xcf\xaf\x9f\x3c\x79\xf2\xfa\x6d\x03\x18\x19\x19" \
+    "\xc1\x13\x4f\x3c\xb5\xe7\x99\x67\xbe\xff\xf4\x8e" \
+    "\x7b\x3f\xbe\xb7\x10\x15\x68\x30\x1a\x0d\x30\x05" \
+    "\x21\x06\x90\x00\x60\x50\x38\x27\x06\x21\x85\x16" \
+    "\x44\x11\xcb\x3e\xf3\x32\x7f\x7d\x66\xf2\xa5\x97" \
+    "\x0e\xff\xf1\xe8\xd1\xdf\x4f\x34\x9b\x4d\xfd\xc0" \
+    "\x00\xc6\xc7\x77\xad\x3f\x72\xe4\xe5\x1f\x8e\xed" \
+    "\x18\x7f\x88\x22\x46\x92\x70\x84\x90\xb1\x0b\x83" \
+    "\x72\xe6\xbb\x15\xef\x7b\xa1\x87\x17\x2a\x21\x22" \
+    "\xc6\x20\x48\x43\x89\x13\x64\xda\x09\x02\x29\x3a" \
+    "\x67\x8e\x22\x5e\xbd\xf9\xf9\xa5\x2b\x93\xdf\xfb" \
+    "\xee\x77\x0e\x4c\x4c\x9c\xfc\xf7\xfb\x02\xd8\xb7" \
+    "\xef\xe9\xfb\x7f\xfe\xb3\x97\x0f\x48\x10\xaf\xa3" \
+    "\x38\x28\xac\xdc\x4b\xbb\x77\x75\x7b\x9d\xd1\x5e" \
+    "\x92\x94\xd2\x6e\xcb\xd2\x9e\x99\x0b\x42\x82\x00" \
+    "\x4c\x0c\x30\xf3\x9a\xd1\x05\x44\xb1\x10\xb3\x5c" \
+    "\x29\xfa\xf2\x50\x35\x89\xc3\xa8\xa6\xea\x3b\xde" \
+    "\x63\x45\x62\xab\xfd\xea\x97\x07\x9f\x7f\xfe\xd0" \
+    "\xa1\xd7\xd6\xfa\x73\x6b\x0f\x4f\x3e\xf5\xb5\x9d" \
+    "\x2f\xbc\xf0\xdb\x23\x3e\xc3\xb0\x37\x94\x5a\xad" \
+    "\xd5\xb1\x5a\x6d\x69\xac\xb3\xda\x1e\xb1\x54\x22" \
+    "\x53\x5a\xe4\x4a\x52\x28\x54\x24\x0c\x8b\x14\x0b" \
+    "\x4c\x24\x40\xe8\x62\x84\x41\xcc\xc0\x15\x49\x44" \
+    "\x48\x33\x73\xcd\x46\x3d\x6a\xb6\x56\x87\x55\xb3" \
+    "\x22\x18\x36\x7d\xca\xec\x91\xc7\xbe\xf0\x59\xf3" \
+    "\x9d\xb7\x4f\x9f\x3a\x75\xe5\x16\x06\x36\x6c\xdc" \
+    "\x58\xf8\xeb\xab\x7f\xff\x5d\x6c\xc3\x5b\x92\x66" \
+    "\x63\x73\x92\xd4\xb6\x07\x41\x2c\x71\x54\x21\x40" \
+    "\x83\x19\xd4\x0c\x2e\x08\xc4\x54\x01\x10\xaa\x5e" \
+    "\x45\x68\x10\x21\x20\x4a\x83\x80\x46\x33\x50\xe1" \
+    "\x41\x40\x49\x45\xa7\xdb\xb0\xe1\x91\xd1\xab\xa5" \
+    "\xf2\xd0\x95\xea\xa8\x35\xbe\xfa\xe5\x47\xbf\x7d" \
+    "\xfa\xd4\xa9\x25\x00\x90\x01\x80\x67\xf7\xef\xff" \
+    "\xe2\xc8\x86\xcd\x5b\xdb\xbe\x73\x77\xd2\x5e\xbd" \
+    "\x27\x0a\xcb\x74\x2e\x86\x2a\xd4\xab\xa7\x01\xa0" \
+    "\xd0\xa0\xe6\x0d\x50\x0a\xd4\x39\x07\x50\x20\x20" \
+    "\x03\xe7\x18\x04\x81\x19\x0c\x30\x35\x82\x20\x84" \
+    "\xf0\x0e\x51\x58\x65\xbd\xb6\xb2\x75\x65\x65\x61" \
+    "\x67\x7d\x15\xd5\x1f\x3c\xfb\xdc\x37\x6e\x61\x60" \
+    "\xea\xf2\x95\x17\xcd\xaa\x4f\xd6\x67\xe6\xb6\x87" \
+    "\x52\x24\x19\x40\x84\x20\x05\x00\x29\x06\x33\xf3" \
+    "\x02\x71\x34\x03\x0c\x66\x24\x8d\x0a\x82\x79\x41" \
+    "\x88\x38\xcb\xd4\x93\x06\xcb\xf5\x01\xd0\x89\x9a" \
+    "\x57\x31\x18\xb2\xb4\x05\x57\x90\x99\xca\xfa\xea" \
+    "\xe9\xfb\xb6\x8f\x7e\xf3\x26\x06\xc8\xd2\xb6\xc6" \
+    "\xf5\xf9\x6d\x05\x57\xa1\xb8\x10\x22\x0e\x22\x81" \
+    "\x81\x42\xa1\xa8\xd1\x00\x8a\x81\x84\xaa\x42\x28" \
+    "\x96\xe7\x06\xec\x87\x4b\x55\x6f\x04\x98\x2b\xd3" \
+    "\x04\x02\x53\xaf\x81\x11\x02\x82\x41\x54\x44\xda" \
+    "\xeb\x6d\xee\xd4\x3b\xdb\x00\x14\xd7\x02\x08\x97" \
+    "\x66\x16\xb6\x14\x83\x8a\x50\x1c\x1c\x1d\x08\xd0" \
+    "\xfb\x5e\x60\xea\x45\xbd\x8a\x19\xa0\x66\x00\x61" \
+    "\xe2\xa8\x6a\x6a\x66\x00\x68\x4a\x3a\x0f\x83\x52" \
+    "\x24\xef\x0b\xa4\x09\x64\x40\x0c\x00\x03\x29\x84" \
+    "\x09\xe3\xa8\xca\x66\xab\xb1\x55\x44\x0a\x6b\x01" \
+    "\x94\x34\xed\xae\x03\x05\x8e\x83\x08\x48\x27\x01" \
+    "\xc4\x39\x40\x40\x33\x63\xaa\xa9\xf8\x2c\xa3\x19" \
+    "\x85\xa4\x31\xf7\x40\xf3\xea\x0c\x30\xef\x95\x04" \
+    "\x34\x77\x6d\x9e\x22\x00\xa0\x24\xcd\x4c\xd5\x68" \
+    "\x20\x04\x50\x0c\xa9\xea\x3b\x0c\x08\x80\x42\x7d" \
+    "\x35\x09\x4d\x41\xba\xd0\x40\x9a\x10\x30\x10\x96" \
+    "\xa9\x99\x99\x89\x73\x0c\x5d\x08\x32\x6f\x3c\x4e" \
+    "\x84\x30\x92\x24\x41\x40\xf2\x1d\x60\x10\x42\x07" \
+    "\xdf\xcd\x2f\xa8\x81\x20\x1d\xc5\x8c\x84\xc5\x71" \
+    "\x28\x22\x31\x80\x60\xc0\x40\x70\xe1\x5f\xd3\xd9" \
+    "\xdc\xfc\x9c\xa9\x1a\x80\x3e\xdd\x06\x85\xa3\x09" \
+    "\xc5\x34\xe7\xdf\x03\xa2\x80\x9a\x37\x1b\x50\x60" \
+    "\x24\xcc\x0c\x79\xfe\x4d\xa1\xfd\x74\x59\xbe\xa1" \
+    "\x02\x34\x35\x3a\x09\x34\xe9\xb5\xe1\x2a\x43\x5e" \
+    "\x55\x09\x80\xef\x88\xf0\xea\xec\xa5\x0b\xb5\x5a" \
+    "\x53\x16\x97\xe7\x39\x10\x38\xcc\x24\xd7\x15\x48" \
+    "\x98\x00\x74\x06\x15\x05\x2c\x8f\x2a\x17\x3b\x08" \
+    "\x88\x88\x19\xa8\x12\x46\x4a\x52\x03\xa1\x51\x00" \
+    "\x03\x94\x80\x01\xde\xea\x8d\x9a\x34\x3a\xde\xfd" \
+    "\x73\xf2\x1f\x97\x01\xa4\x03\x00\x06\x20\x7b\x6d" \
+    "\xe2\xf8\x09\xc6\x31\xae\x5d\x9a\xe5\xcc\xcc\x65" \
+    "\xa6\xbd\x34\x2f\x2d\xc2\xf2\x21\x44\x18\x3c\x72" \
+    "\xdd\x91\x20\x69\xaa\x54\xf5\x34\x05\xd4\x94\x4e" \
+    "\x68\x66\xa6\x79\x8d\x8a\xaa\x82\x86\x5c\x89\x8b" \
+    "\xf5\x65\xcc\x5c\x9b\x63\xa7\x99\xd8\x89\x63\x7f" \
+    "\x38\x01\x20\x03\x90\x0d\x5a\xb1\xcc\xcf\x5d\xab" \
+    "\x8d\x7d\x6c\xfc\xd3\x23\xc3\x1b\x36\x67\x69\x0f" \
+    "\xae\x60\x10\x00\xc5\xd2\x90\xe5\x62\x32\x13\x3a" \
+    "\x90\x54\x11\x02\xde\x0b\x38\xe8\x13\x66\xf9\x60" \
+    "\x20\x0c\x06\x71\x8e\x4e\x9c\x18\x94\xdd\xb4\x23" \
+    "\x49\x77\x85\xf5\x7a\x83\x69\xd7\x70\x75\x76\xfa" \
+    "\xca\x6f\x7e\x7d\xe8\xa0\xf7\x7e\x0e\x40\x7b\x00" \
+    "\x40\x01\xc8\x5b\x67\x27\x2f\xee\x19\x7f\xf0\xd1" \
+    "\xea\x50\xa5\x52\x29\x97\xd8\x53\x45\xbb\xd3\xa0" \
+    "\x4f\x7b\x54\x35\x06\xce\x19\x41\xaa\x5a\x4e\x9e" \
+    "\xa9\x32\x97\x57\x5e\x7c\xa4\xc2\x4c\xd2\x2c\x65" \
+    "\xd2\x6d\x99\x49\x9b\xa5\xa2\xd0\x89\xa0\xde\x68" \
+    "\x61\x69\x71\xa1\xf1\x8b\x17\x9f\xdb\x7f\xe3\xc6" \
+    "\xe2\x14\x80\x15\x00\x7e\x2d\x00\xdf\x69\x27\x9d" \
+    "\xa9\xa9\xd3\x53\xbb\xee\xdf\xf3\xe0\x5d\x9b\xb6" \
+    "\x54\xe9\x1c\x7d\x9a\xb2\x93\xa5\x4c\xe9\x59\x6b" \
+    "\x25\x9c\x5f\xae\x31\x4d\x7b\xac\x37\x5a\x52\x6b" \
+    "\x36\xa4\xd1\xee\xb0\x93\x76\xb0\xb4\xb4\xc8\xc5" \
+    "\xa5\x05\x77\xf5\xfa\x0c\x1b\x49\xc2\x72\x39\x92" \
+    "\xe1\x6a\x99\xe2\x04\x69\x9a\x62\x7a\x7a\x7a\xfe" \
+    "\xf0\xe1\x1f\xff\xf4\xd2\xa5\x8b\x7f\x03\xb0\x04" \
+    "\xa0\x05\xdc\x3c\x0d\x33\x00\x59\x92\xb4\xea\x6f" \
+    "\xbc\xf9\xea\x1b\xd5\xa1\xa1\x4d\xdb\xee\x19\xdb" \
+    "\xea\x24\x10\x23\x28\x51\x84\xcc\x13\xcb\xf5\x96" \
+    "\x35\xd2\x8c\x8d\x76\x0f\xcb\xf5\x3a\x9a\xad\x96" \
+    "\xd5\x9b\x2d\x2e\xae\xd6\xd8\xe8\x74\x90\x79\xa5" \
+    "\xef\xa5\xac\x96\x23\xc4\x45\x87\x56\xa3\xe5\x5f" \
+    "\x79\xe5\xf8\xe4\xc1\x03\x3f\xfa\xc9\xdc\xdc\xec" \
+    "\x24\x80\x39\x00\xf5\x5b\x66\xc1\x9a\x73\x19\xc0" \
+    "\x28\x80\xf5\xdb\x3f\x72\xef\xde\x7d\x5f\xff\xd6" \
+    "\xbe\x87\x1f\xf9\xd2\xde\xe2\xd0\x48\xb1\xd3\x33" \
+    "\x59\x58\x5a\x05\x9c\xc0\x52\x43\xb7\xdd\x40\x10" \
+    "\x44\xa0\x4f\x91\x66\x09\x80\x00\xd0\x14\xa1\x0b" \
+    "\x74\x74\x5d\xa9\x77\xfe\xfc\xe4\xd4\x9f\x8e\x1d" \
+    "\x3d\xf6\xd6\xb9\x33\xaf\x03\x98\x07\x70\x03\x40" \
+    "\xa3\xcf\xf8\x7b\x02\x18\x58\x01\xc0\x70\x7f\xad" \
+    "\x2b\x97\x2b\xdb\x3f\xf9\xc0\x67\x3e\xf5\xd1\xfb" \
+    "\x3e\x31\x5e\xfd\xd0\x96\xbb\x37\x7d\x78\xc7\xc6" \
+    "\x42\x58\x8c\x60\x10\x9f\xa5\x14\xc2\xb7\xda\xab" \
+    "\xe9\xdc\xec\xe5\x85\xe5\xb9\xab\xb3\xd3\x17\xce" \
+    "\x9d\x3d\x77\x6e\xf2\xcd\x7a\x7d\xf5\x6d\x00\xab" \
+    "\x00\x6a\xfd\x67\xbb\x5f\x75\x37\x45\xfc\xdf\x4c" \
+    "\x90\x0f\x8c\x0a\x80\x52\x9f\x99\x32\x80\x58\x44" \
+    "\xca\xc5\x62\x69\x28\x8a\x0a\x31\x29\xe8\xa5\xbd" \
+    "\x6e\x3b\x69\xb6\xbc\xf7\x8d\xbe\x93\x36\x80\x26" \
+    "\x80\xa4\x9f\xeb\x04\x80\x7f\x2f\x27\x1f\xe4\xaf" \
+    "\x98\x00\x42\x00\x51\x9f\x99\xb0\xff\x1c\xb4\x5b" \
+    "\xeb\xdf\x49\x91\xeb\xa8\xdb\xdf\x77\x01\xf4\xde" \
+    "\x1d\xf1\xed\x00\x78\xb7\xc9\x9a\x85\x35\x00\xb4" \
+    "\xbf\xec\xfd\x9c\xde\xb1\x3b\xb6\xd6\xfe\x03\x36" \
+    "\x4b\xab\xe4\xf4\x82\x51\xa6\x00\x00\x00\x00\x49" \
+    "\x45\x4e\x44\xae\x42\x60\x82"
 image1_data = \
-  "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
-  "\x49\x48\x44\x52\x00\x00\x00\x20\x00\x00\x00\x20" \
-  "\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\x00\x00\x08" \
-  "\x3d\x49\x44\x41\x54\x78\x9c\xed\x96\x5d\x6c\x1c" \
-  "\xd5\x15\xc7\xff\xe7\xde\x99\xd9\xd9\x4f\x7b\xbd" \
-  "\xfe\x88\xd7\x1b\x6c\x12\x3b\x35\x04\x92\xb4\xe1" \
-  "\x33\x40\x53\x48\x44\x09\x22\x04\xa2\xd2\xd2\x87" \
-  "\x36\x85\xf6\xa5\x55\x11\xa5\x2d\x50\x21\x68\xd5" \
-  "\x02\x2a\x0d\x11\x05\xaa\x3e\x20\x50\x24\xd4\x40" \
-  "\x11\x85\x16\xa9\xa0\x50\xa0\x8a\x83\x02\x09\x58" \
-  "\x75\xe4\x38\x21\x90\x38\x8e\xed\xac\xed\x6c\xe2" \
-  "\xd8\xbb\xeb\x9d\xd9\x99\xd9\xb9\xf7\xf4\x81\x35" \
-  "\x4a\x28\x15\x08\xa9\xea\x0b\x7f\xe9\xe8\xce\x95" \
-  "\x66\x74\x7e\xe7\x7f\x8f\xee\x19\xe0\x0b\xfd\x9f" \
-  "\x45\x9f\xe7\xa3\xde\xde\x5e\x23\x91\x48\xc4\xb4" \
-  "\xd6\x36\x00\xb2\x2c\xcb\xb3\x6d\xdb\xed\xeb\xeb" \
-  "\xab\xfd\x4f\x00\xd6\xad\xbb\x36\xbd\x62\xc5\x85" \
-  "\x97\x5e\xbe\xfa\xca\x65\xcb\x57\x2c\xef\x11\x24" \
-  "\xb3\xc2\xb4\x6d\xcb\x22\x10\x11\x54\xa8\x51\xab" \
-  "\x05\x81\x0a\xfd\xc2\xc1\xa1\xfd\xc3\x83\x43\x83" \
-  "\x07\x5f\xf9\xfb\xdf\x76\xed\xd8\xb1\x63\xea\x73" \
-  "\x03\x34\x36\x36\xe2\xba\xeb\x36\x7c\xf9\xd6\x5b" \
-  "\x6f\xbb\x69\x71\xf7\x79\x17\x47\xac\x08\x31\x98" \
-  "\x98\x18\x60\x0d\x82\x60\x80\x08\x00\x18\x1a\x52" \
-  "\x0a\x86\x20\x12\xc4\x86\x65\x51\x5c\x85\x4a\x14" \
-  "\xa6\xf2\xfd\x8f\x3d\xf6\xf0\x9f\xb7\x6d\x7b\xba" \
-  "\xaf\x52\xa9\xe8\xcf\x0c\xb0\x6c\xd9\xf2\x96\x2d" \
-  "\x5b\x9e\xb8\xa3\x67\xf1\xb2\x4b\x49\x08\x26\x22" \
-  "\x82\x24\x08\x22\x5b\x9a\x46\x3c\x54\x7e\x42\xa9" \
-  "\xc0\x54\x50\x82\x34\x41\x08\xc1\x64\x18\x35\x53" \
-  "\xd8\x2e\x42\xed\x19\x86\x88\x4a\xc9\x92\x84\x50" \
-  "\x5a\xb1\x2a\x4c\x8f\xf7\xff\xf8\x87\xb7\xdc\xdf" \
-  "\xd7\xb7\xe3\xe8\xa7\x02\x6c\xdc\x78\xd3\xd2\xdf" \
-  "\xfd\xf6\x89\xfb\x85\x61\xa7\x49\x48\x68\x70\xbc" \
-  "\x16\x78\x6d\xfc\xfe\x60\xc6\x35\x64\xcc\x4f\x35" \
-  "\x72\x2d\xd0\x2c\xa5\x41\x2c\x04\xc0\x82\x01\x66" \
-  "\xa5\x43\x92\x06\x21\x1a\x89\x50\x3c\x11\x55\xf1" \
-  "\x64\x83\x6b\x9b\x56\x51\x6b\xe5\x29\x85\x59\x61" \
-  "\x73\xf1\xf1\x47\x1f\x78\xe8\xa1\x07\x1f\xdc\x79" \
-  "\x7a\x3e\x79\xfa\x66\xfd\x86\x1b\x7b\x37\x6f\xde" \
-  "\xba\x45\x85\x68\x50\x8c\x98\x3b\x37\xd3\x63\x3c" \
-  "\xf7\x44\x4f\xe2\xd7\x3f\x6d\x8c\xbe\xf8\xac\x55" \
-  "\xb8\x72\x03\x47\x8d\x26\x81\x53\x2c\xec\x50\x52" \
-  "\x08\x62\xd3\x8e\xc1\x94\x36\x4c\xc3\x26\x43\x46" \
-  "\x69\x2e\x12\x60\x94\x4e\xca\x59\x67\xc6\x0a\x1c" \
-  "\xa7\x81\x14\x47\x41\x66\x45\xd5\x28\xbc\x62\xed" \
-  "\x55\x5f\x65\xe5\x8d\xec\x7e\xfb\xed\xf1\xff\x00" \
-  "\x68\x5d\xb0\x20\xf2\xe4\x9f\x5e\xfc\xbd\x50\x91" \
-  "\x66\xa7\x52\xe9\x28\xce\x16\xce\xa9\x55\xdc\x78" \
-  "\x70\x72\x86\xe6\xb2\x9d\x5c\xee\xea\x66\x71\xf9" \
-  "\x3a\x54\xa7\x4b\xe4\x55\x7c\x04\x9e\x0f\xb3\x25" \
-  "\xc9\x56\x24\x02\x61\x48\x21\xa4\xc1\x92\x0c\x7a" \
-  "\x3d\xb6\x97\x36\xd3\x56\xda\x21\x07\x49\x06\x51" \
-  "\xee\x0e\x72\xe6\xec\xec\xa9\x16\x21\x0d\x82\xb2" \
-  "\xe6\xd6\x5c\x73\xe5\x45\xbb\x76\xee\x78\x2d\x7f" \
-  "\xec\x98\x0b\x00\xc6\x3c\xc0\x5d\xf7\xdc\x73\x75" \
-  "\x63\x6b\x36\x37\x3b\x79\x6a\xa1\x5b\x2d\x9d\x65" \
-  "\x99\x71\x86\x25\x41\xab\xaf\xd3\x20\x08\x41\x82" \
-  "\x2d\x09\x8e\xe5\x5a\x95\xd6\x4c\x81\xd6\x30\x6c" \
-  "\x0b\x44\x12\x44\x20\x22\x49\x02\x82\x95\xef\x51" \
-  "\x67\xb5\x99\xcb\xb2\x4a\x29\xcf\x22\x8e\x98\x6c" \
-  "\x99\x29\x2a\x17\x67\x73\x7e\x50\x8d\xc1\x68\xf9" \
-  "\xe0\x27\x77\xfd\xe2\x5b\xbb\x6f\xb8\xfe\x8f\x67" \
-  "\xf4\xc0\xbe\xb1\xf1\x47\x98\x53\xeb\xcb\xf9\xe3" \
-  "\x5d\xa6\x88\x12\x91\x01\x21\x08\x44\x02\x00\x91" \
-  "\x60\xb0\x15\x86\xa2\x3a\xe1\x90\x61\x48\xf8\x96" \
-  "\xe2\x44\x36\xc3\x62\xc6\x21\xcd\x04\x8a\x0a\xa8" \
-  "\x64\x82\xdf\x8d\xbf\x4f\x5c\x03\xa7\xc3\x28\x3a" \
-  "\xfc\x66\x48\x92\x5a\x2a\x12\xcc\x1a\xb5\x9a\x03" \
-  "\x19\x11\xf9\x44\x4b\x6a\xf7\xb9\x5d\x99\x9b\xcf" \
-  "\x70\x80\x28\xd6\x59\x9e\x2c\x74\x46\x64\x82\x20" \
-  "\x04\x88\x05\x84\x29\x19\x1a\x42\x10\x69\x10\x53" \
-  "\x30\x57\x65\x37\xf0\xc8\x54\x04\x1d\x8b\xb2\xa9" \
-  "\x98\xbc\xb2\x22\x12\x12\x5e\xb5\x0a\x95\xb1\xf4" \
-  "\x1f\x8c\xe7\xc5\x34\x1f\xa7\xb4\xd9\x88\x47\xdd" \
-  "\x3b\xd4\xcb\x4d\xfd\xc6\x6e\x0c\xa0\x43\x2f\xe0" \
-  "\xeb\xdd\x8b\xb8\xc7\x6d\xcd\x7a\x65\xaf\x13\x40" \
-  "\x14\x40\x75\x1e\xc0\x9c\xce\x9f\xe8\x48\x99\x0d" \
-  "\x42\x6b\x01\x41\x02\x99\xdd\xdb\xa9\xe9\xb9\xa7" \
-  "\xa4\x6e\xcb\x62\x6e\xd5\x55\x28\x7d\xed\x7a\x4e" \
-  "\x0f\x0f\xa0\xc9\x4e\x70\xad\xa5\x83\xfd\xb6\x16" \
-  "\xf6\x95\xa6\x4a\x8c\x35\xc2\x1a\x0b\xdb\x20\x4f" \
-  "\xf8\x94\x2d\x26\xa0\x55\x94\x49\xd7\x28\x6d\x36" \
-  "\xe0\xb0\x39\x86\x82\x3f\x85\x8a\xe1\xd0\x4c\x75" \
-  "\x09\x6c\xab\x9b\x2a\x4e\x29\x27\x84\x88\x68\xad" \
-  "\x3f\x02\x88\xe9\x9a\x9f\x86\x25\x20\x09\x44\x06" \
-  "\x51\xfa\xf5\x97\x60\x8e\x1c\x06\x8d\x8f\xa2\xd0" \
-  "\xbb\x82\xd2\x83\x7b\xd0\xfa\xcb\xdb\x05\xb3\x82" \
-  "\xd7\x9e\xa3\x89\x67\x77\x85\x71\xaf\x0a\x3b\x12" \
-  "\x27\xa3\xc9\x10\x35\xdb\x56\xb1\x63\xa3\x62\xeb" \
-  "\xe1\x65\xba\x96\x59\x83\x62\x7b\xbb\x16\x29\x13" \
-  "\x9b\x0a\x6b\xf5\x51\x7f\x09\x4d\x73\x91\x17\x19" \
-  "\x39\x22\x08\x40\x23\xa9\xb5\x8e\x02\x28\x1a\x00" \
-  "\x04\x80\x48\xb9\xe4\x9a\x0d\x51\x90\x94\x16\x13" \
-  "\x6b\xe4\x2f\xbf\x86\xd0\xd9\x0b\xbb\x78\x8a\xbd" \
-  "\x4b\xd7\x72\x6a\xcf\xeb\xe4\x58\x06\x4c\x2d\x51" \
-  "\x5e\x7c\x0e\x9b\x86\x41\xe1\x5c\x48\x81\x13\x42" \
-  "\xb9\x0a\x5e\x86\xa9\xe3\xf9\x27\x11\x79\xf1\x19" \
-  "\x41\xa6\x01\xeb\xea\x1b\xd8\xb9\xe5\x36\x5e\xff" \
-  "\xab\x3b\x29\x94\x16\xfc\x45\x4b\x28\xff\xfd\x35" \
-  "\xac\x88\xc0\xb6\x6d\x0a\x21\x6c\xad\xb5\x31\xef" \
-  "\x80\x71\xf8\x83\x23\xa1\x49\x31\x5e\x98\xeb\x42" \
-  "\x7a\xe8\x1d\xa4\x0e\x0c\x40\xb5\xb6\xeb\xe0\x8a" \
-  "\x35\xf0\x96\x9c\xc7\xc3\x4b\x73\xb0\xbe\xbd\x49" \
-  "\xc7\xa7\xcb\x64\xb0\x05\xa1\x41\x45\xed\xb3\x96" \
-  "\x0a\x61\xd5\x43\x26\xd1\xc5\xaa\x30\x29\x82\x58" \
-  "\x14\x86\x34\x50\xcd\xb4\xc1\xca\x8f\xc1\x18\xfe" \
-  "\x80\x64\xa8\x40\x23\x87\x80\x1f\xdc\xad\xdc\xa0" \
-  "\x4a\x32\x93\x54\x5a\x6b\x02\x40\x1f\x35\xe1\xb1" \
-  "\xc9\xd1\xc3\xd9\x05\x67\x77\x9b\x91\x49\x5e\xf4" \
-  "\xd2\x36\xb2\x77\xfe\x83\xc8\x88\xd0\xf1\xaf\x6f" \
-  "\xe0\xe9\xb5\xab\x71\x7b\xec\x11\xe1\x44\x1d\x64" \
-  "\xdb\xb2\xb8\x6f\xf6\xbb\x6a\xe5\x5b\x2f\x53\x76" \
-  "\x60\x0f\x6a\x6d\x39\x78\xe7\xaf\x44\x59\x2e\xe2" \
-  "\x89\x07\x9e\xd2\xba\x5c\x04\x4f\x8e\x01\xa9\x34" \
-  "\xa2\xa1\x8f\xb1\x1b\xbf\xa7\x8d\xc9\x71\x62\xa7" \
-  "\x88\x92\xef\x09\x47\x0b\x71\xa4\xff\xdd\x31\x00" \
-  "\xb5\x79\x00\x06\x10\xee\xec\x7b\xe5\xd5\x4b\x56" \
-  "\xad\x5b\x97\x3f\x3a\x41\x03\xc9\x26\xea\x5e\x90" \
-  "\x43\xcc\x73\x30\xb7\x62\x15\x1f\xb2\xa7\xc8\xa1" \
-  "\x39\x28\x62\xb8\xce\x2c\x3a\xd0\x4a\x89\xe7\xb6" \
-  "\x92\x18\xd8\x43\x51\xd3\x80\xbb\xfe\x66\x46\xef" \
-  "\x4a\x12\xc2\x60\x34\x66\x98\x1a\x32\x04\x30\x0f" \
-  "\x26\xc7\xe5\x81\xa5\x97\x71\xb3\x5e\x8f\xec\xa8" \
-  "\x0d\x77\xa2\x40\x76\xb2\x81\x5f\x7d\xe1\x99\x57" \
-  "\x01\x84\x00\xc2\x79\x80\xea\xbe\xbd\xef\xf4\xed" \
-  "\x1b\xda\xf3\xaf\xee\x6c\xcf\xca\x63\x97\x5c\xcd" \
-  "\xde\x37\x37\x21\x6e\xc6\xd0\xd0\x9c\xe5\xae\xd9" \
-  "\x22\x7e\xe4\xde\xc0\xd3\xb2\x48\x92\x0d\x6d\x9a" \
-  "\x3e\xe6\xc2\x40\xc8\x54\x0a\xa6\x52\xa8\xf4\x2c" \
-  "\x65\xa5\x42\x30\x33\x40\x02\xcc\x35\x80\x85\x78" \
-  "\x59\xbe\x8d\xf7\x66\xf6\x8a\x6b\xdd\x55\x30\xfc" \
-  "\x76\xc4\xb4\xc5\x23\x23\x07\xc6\xdf\xd8\xfe\x97" \
-  "\xbf\x02\xf0\x00\xe8\xf9\x8b\xc8\x00\xd0\x9a\x6e" \
-  "\x6a\xbe\xe0\xde\x4d\x3f\x7f\xb2\x1d\x68\x6d\x5d" \
-  "\x74\x16\x38\x91\x64\xce\x75\x21\x7b\x78\x08\x8d" \
-  "\x63\x47\x61\xc7\xe3\x5c\xb9\x6c\x1d\x54\xba\x95" \
-  "\x45\xa5\x44\x55\xcb\x62\x5d\x29\x13\x27\x1a\x20" \
-  "\xe2\x09\x30\x48\xb1\x0e\x85\xef\x7b\x54\xf5\x5d" \
-  "\x1e\x8d\x4d\x88\xb6\x48\x23\x69\x66\x9c\xc8\x17" \
-  "\x51\x3e\x72\xaa\xfc\xf0\x96\x3b\xef\x18\x1b\x1d" \
-  "\xfe\x27\x80\xe3\x00\xfc\xf9\x59\xa0\x01\x28\xaf" \
-  "\xea\x7a\x7b\x87\x87\xf6\x9d\x7f\xee\xf2\x4b\xda" \
-  "\xdb\xda\x52\x61\xa2\x81\xa0\x14\xb9\x4e\x85\x66" \
-  "\x5b\xda\x68\xca\x0f\xe8\x88\xaf\xa9\x36\x72\x80" \
-  "\xe8\xe9\xc7\x05\xbd\xb9\x5d\xe8\xfc\x11\x9a\x5c" \
-  "\x74\x0e\xdc\x23\xef\xd3\x89\x91\x61\x39\x91\x1f" \
-  "\xa3\xd9\x8a\x43\xb1\xa4\x2d\xce\x4e\xb4\x51\x52" \
-  "\x46\x41\x55\x85\xf1\x43\xa3\x85\x2d\x9b\xef\xbe" \
-  "\x6f\x74\x74\xf8\x4d\x00\xd3\x00\x9c\x8f\x4f\xc3" \
-  "\x10\x40\xe8\xba\x4e\xf9\xad\xfd\xfd\x6f\x25\x32" \
-  "\x99\xf6\xce\xf3\x57\xe6\x0c\x82\xe0\xaa\x4b\xa1" \
-  "\x1f\xa0\xe4\x78\x98\x92\x49\x76\x4f\x16\xe8\x64" \
-  "\xac\x09\x85\x4c\x0e\xf9\x64\x1b\xcf\x58\x71\xaa" \
-  "\x0e\x0e\x90\x37\x3e\x8e\xda\xd4\x24\xe9\x5a\x8d" \
-  "\x62\x6d\xcd\xb0\xa3\x12\x4e\xd9\x51\x6f\xbc\xb6" \
-  "\xbd\xff\xc1\xdf\xfc\xec\xde\xe3\xc7\x27\xfb\xeb" \
-  "\x95\x97\x3f\xba\x81\x71\xa6\x08\x40\x1c\x40\x06" \
-  "\x40\x4b\xd7\xd9\xdd\x17\x6f\xfc\xc6\x77\x36\x7e" \
-  "\x75\xf5\xb5\x17\x47\x22\x76\xd4\x29\x39\xe2\x44" \
-  "\xc9\x07\x0a\x79\xa8\x52\x11\x22\x08\xa0\x2c\x0b" \
-  "\x68\x5d\x80\xc8\xa1\xfd\x90\xcc\x20\x02\xf4\xc2" \
-  "\x2e\x9d\xea\xe9\x0a\x0e\x1e\xec\xdf\xf7\xfc\x0b" \
-  "\xdb\x5e\x78\x6f\xff\xe0\x2e\x00\x05\x00\xa7\x00" \
-  "\xcc\xd5\x1d\xff\x44\x80\x79\x45\x00\x34\xd4\x23" \
-  "\x1d\x8f\x27\xba\x56\x5e\x78\xd9\x05\x5f\x3a\xf7" \
-  "\x2b\xcb\x52\x4d\x1d\x67\xb5\x2f\x5c\xbc\x20\x62" \
-  "\x46\x2d\x30\x04\xb3\x26\x68\xa5\x7c\xa7\x54\x9b" \
-  "\x1a\x39\x78\xe2\x64\x7e\x64\x72\x64\xf2\xe8\xd0" \
-  "\xd0\xc1\xbd\x7b\xca\xe5\xd2\x08\x80\x12\x80\x62" \
-  "\x7d\xad\xd6\x9b\xfe\x8c\x8a\xff\x9b\x04\x3e\x1c" \
-  "\x18\x09\x00\xb1\xba\x33\x71\x00\xb6\x10\x22\x1e" \
-  "\x8d\xc6\x92\x96\x15\xb1\x89\x04\x82\x5a\xe0\x57" \
-  "\xdd\x8a\xa3\x94\x9a\xab\x27\xa9\x02\xa8\x00\x70" \
-  "\xeb\x67\xed\x02\x50\x9f\x94\xe4\xb3\xfc\x15\x13" \
-  "\x00\x13\x80\x55\x77\xc6\xac\xaf\xa2\x1e\x5c\x7f" \
-  "\xa7\x86\x0f\xfb\xc8\xaf\x3f\xfb\x00\x82\x8f\x57" \
-  "\xfc\x79\x00\x3e\x2e\x71\x5a\xe0\x34\x00\x5d\x0f" \
-  "\xfe\xb4\xa4\x5f\xe8\x0b\x9d\xae\x7f\x03\x0c\xdb" \
-  "\xe8\xdf\x8f\xa4\x44\x04\x00\x00\x00\x00\x49\x45" \
-  "\x4e\x44\xae\x42\x60\x82"
+    "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
+    "\x49\x48\x44\x52\x00\x00\x00\x20\x00\x00\x00\x20" \
+    "\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\x00\x00\x08" \
+    "\x3d\x49\x44\x41\x54\x78\x9c\xed\x96\x5d\x6c\x1c" \
+    "\xd5\x15\xc7\xff\xe7\xde\x99\xd9\xd9\x4f\x7b\xbd" \
+    "\xfe\x88\xd7\x1b\x6c\x12\x3b\x35\x04\x92\xb4\xe1" \
+    "\x33\x40\x53\x48\x44\x09\x22\x04\xa2\xd2\xd2\x87" \
+    "\x36\x85\xf6\xa5\x55\x11\xa5\x2d\x50\x21\x68\xd5" \
+    "\x02\x2a\x0d\x11\x05\xaa\x3e\x20\x50\x24\xd4\x40" \
+    "\x11\x85\x16\xa9\xa0\x50\xa0\x8a\x83\x02\x09\x58" \
+    "\x75\xe4\x38\x21\x90\x38\x8e\xed\xac\xed\x6c\xe2" \
+    "\xd8\xbb\xeb\x9d\xd9\x99\xd9\xb9\xf7\xf4\x81\x35" \
+    "\x4a\x28\x15\x08\xa9\xea\x0b\x7f\xe9\xe8\xce\x95" \
+    "\x66\x74\x7e\xe7\x7f\x8f\xee\x19\xe0\x0b\xfd\x9f" \
+    "\x45\x9f\xe7\xa3\xde\xde\x5e\x23\x91\x48\xc4\xb4" \
+    "\xd6\x36\x00\xb2\x2c\xcb\xb3\x6d\xdb\xed\xeb\xeb" \
+    "\xab\xfd\x4f\x00\xd6\xad\xbb\x36\xbd\x62\xc5\x85" \
+    "\x97\x5e\xbe\xfa\xca\x65\xcb\x57\x2c\xef\x11\x24" \
+    "\xb3\xc2\xb4\x6d\xcb\x22\x10\x11\x54\xa8\x51\xab" \
+    "\x05\x81\x0a\xfd\xc2\xc1\xa1\xfd\xc3\x83\x43\x83" \
+    "\x07\x5f\xf9\xfb\xdf\x76\xed\xd8\xb1\x63\xea\x73" \
+    "\x03\x34\x36\x36\xe2\xba\xeb\x36\x7c\xf9\xd6\x5b" \
+    "\x6f\xbb\x69\x71\xf7\x79\x17\x47\xac\x08\x31\x98" \
+    "\x98\x18\x60\x0d\x82\x60\x80\x08\x00\x18\x1a\x52" \
+    "\x0a\x86\x20\x12\xc4\x86\x65\x51\x5c\x85\x4a\x14" \
+    "\xa6\xf2\xfd\x8f\x3d\xf6\xf0\x9f\xb7\x6d\x7b\xba" \
+    "\xaf\x52\xa9\xe8\xcf\x0c\xb0\x6c\xd9\xf2\x96\x2d" \
+    "\x5b\x9e\xb8\xa3\x67\xf1\xb2\x4b\x49\x08\x26\x22" \
+    "\x82\x24\x08\x22\x5b\x9a\x46\x3c\x54\x7e\x42\xa9" \
+    "\xc0\x54\x50\x82\x34\x41\x08\xc1\x64\x18\x35\x53" \
+    "\xd8\x2e\x42\xed\x19\x86\x88\x4a\xc9\x92\x84\x50" \
+    "\x5a\xb1\x2a\x4c\x8f\xf7\xff\xf8\x87\xb7\xdc\xdf" \
+    "\xd7\xb7\xe3\xe8\xa7\x02\x6c\xdc\x78\xd3\xd2\xdf" \
+    "\xfd\xf6\x89\xfb\x85\x61\xa7\x49\x48\x68\x70\xbc" \
+    "\x16\x78\x6d\xfc\xfe\x60\xc6\x35\x64\xcc\x4f\x35" \
+    "\x72\x2d\xd0\x2c\xa5\x41\x2c\x04\xc0\x82\x01\x66" \
+    "\xa5\x43\x92\x06\x21\x1a\x89\x50\x3c\x11\x55\xf1" \
+    "\x64\x83\x6b\x9b\x56\x51\x6b\xe5\x29\x85\x59\x61" \
+    "\x73\xf1\xf1\x47\x1f\x78\xe8\xa1\x07\x1f\xdc\x79" \
+    "\x7a\x3e\x79\xfa\x66\xfd\x86\x1b\x7b\x37\x6f\xde" \
+    "\xba\x45\x85\x68\x50\x8c\x98\x3b\x37\xd3\x63\x3c" \
+    "\xf7\x44\x4f\xe2\xd7\x3f\x6d\x8c\xbe\xf8\xac\x55" \
+    "\xb8\x72\x03\x47\x8d\x26\x81\x53\x2c\xec\x50\x52" \
+    "\x08\x62\xd3\x8e\xc1\x94\x36\x4c\xc3\x26\x43\x46" \
+    "\x69\x2e\x12\x60\x94\x4e\xca\x59\x67\xc6\x0a\x1c" \
+    "\xa7\x81\x14\x47\x41\x66\x45\xd5\x28\xbc\x62\xed" \
+    "\x55\x5f\x65\xe5\x8d\xec\x7e\xfb\xed\xf1\xff\x00" \
+    "\x68\x5d\xb0\x20\xf2\xe4\x9f\x5e\xfc\xbd\x50\x91" \
+    "\x66\xa7\x52\xe9\x28\xce\x16\xce\xa9\x55\xdc\x78" \
+    "\x70\x72\x86\xe6\xb2\x9d\x5c\xee\xea\x66\x71\xf9" \
+    "\x3a\x54\xa7\x4b\xe4\x55\x7c\x04\x9e\x0f\xb3\x25" \
+    "\xc9\x56\x24\x02\x61\x48\x21\xa4\xc1\x92\x0c\x7a" \
+    "\x3d\xb6\x97\x36\xd3\x56\xda\x21\x07\x49\x06\x51" \
+    "\xee\x0e\x72\xe6\xec\xec\xa9\x16\x21\x0d\x82\xb2" \
+    "\xe6\xd6\x5c\x73\xe5\x45\xbb\x76\xee\x78\x2d\x7f" \
+    "\xec\x98\x0b\x00\xc6\x3c\xc0\x5d\xf7\xdc\x73\x75" \
+    "\x63\x6b\x36\x37\x3b\x79\x6a\xa1\x5b\x2d\x9d\x65" \
+    "\x99\x71\x86\x25\x41\xab\xaf\xd3\x20\x08\x41\x82" \
+    "\x2d\x09\x8e\xe5\x5a\x95\xd6\x4c\x81\xd6\x30\x6c" \
+    "\x0b\x44\x12\x44\x20\x22\x49\x02\x82\x95\xef\x51" \
+    "\x67\xb5\x99\xcb\xb2\x4a\x29\xcf\x22\x8e\x98\x6c" \
+    "\x99\x29\x2a\x17\x67\x73\x7e\x50\x8d\xc1\x68\xf9" \
+    "\xe0\x27\x77\xfd\xe2\x5b\xbb\x6f\xb8\xfe\x8f\x67" \
+    "\xf4\xc0\xbe\xb1\xf1\x47\x98\x53\xeb\xcb\xf9\xe3" \
+    "\x5d\xa6\x88\x12\x91\x01\x21\x08\x44\x02\x00\x91" \
+    "\x60\xb0\x15\x86\xa2\x3a\xe1\x90\x61\x48\xf8\x96" \
+    "\xe2\x44\x36\xc3\x62\xc6\x21\xcd\x04\x8a\x0a\xa8" \
+    "\x64\x82\xdf\x8d\xbf\x4f\x5c\x03\xa7\xc3\x28\x3a" \
+    "\xfc\x66\x48\x92\x5a\x2a\x12\xcc\x1a\xb5\x9a\x03" \
+    "\x19\x11\xf9\x44\x4b\x6a\xf7\xb9\x5d\x99\x9b\xcf" \
+    "\x70\x80\x28\xd6\x59\x9e\x2c\x74\x46\x64\x82\x20" \
+    "\x04\x88\x05\x84\x29\x19\x1a\x42\x10\x69\x10\x53" \
+    "\x30\x57\x65\x37\xf0\xc8\x54\x04\x1d\x8b\xb2\xa9" \
+    "\x98\xbc\xb2\x22\x12\x12\x5e\xb5\x0a\x95\xb1\xf4" \
+    "\x1f\x8c\xe7\xc5\x34\x1f\xa7\xb4\xd9\x88\x47\xdd" \
+    "\x3b\xd4\xcb\x4d\xfd\xc6\x6e\x0c\xa0\x43\x2f\xe0" \
+    "\xeb\xdd\x8b\xb8\xc7\x6d\xcd\x7a\x65\xaf\x13\x40" \
+    "\x14\x40\x75\x1e\xc0\x9c\xce\x9f\xe8\x48\x99\x0d" \
+    "\x42\x6b\x01\x41\x02\x99\xdd\xdb\xa9\xe9\xb9\xa7" \
+    "\xa4\x6e\xcb\x62\x6e\xd5\x55\x28\x7d\xed\x7a\x4e" \
+    "\x0f\x0f\xa0\xc9\x4e\x70\xad\xa5\x83\xfd\xb6\x16" \
+    "\xf6\x95\xa6\x4a\x8c\x35\xc2\x1a\x0b\xdb\x20\x4f" \
+    "\xf8\x94\x2d\x26\xa0\x55\x94\x49\xd7\x28\x6d\x36" \
+    "\xe0\xb0\x39\x86\x82\x3f\x85\x8a\xe1\xd0\x4c\x75" \
+    "\x09\x6c\xab\x9b\x2a\x4e\x29\x27\x84\x88\x68\xad" \
+    "\x3f\x02\x88\xe9\x9a\x9f\x86\x25\x20\x09\x44\x06" \
+    "\x51\xfa\xf5\x97\x60\x8e\x1c\x06\x8d\x8f\xa2\xd0" \
+    "\xbb\x82\xd2\x83\x7b\xd0\xfa\xcb\xdb\x05\xb3\x82" \
+    "\xd7\x9e\xa3\x89\x67\x77\x85\x71\xaf\x0a\x3b\x12" \
+    "\x27\xa3\xc9\x10\x35\xdb\x56\xb1\x63\xa3\x62\xeb" \
+    "\xe1\x65\xba\x96\x59\x83\x62\x7b\xbb\x16\x29\x13" \
+    "\x9b\x0a\x6b\xf5\x51\x7f\x09\x4d\x73\x91\x17\x19" \
+    "\x39\x22\x08\x40\x23\xa9\xb5\x8e\x02\x28\x1a\x00" \
+    "\x04\x80\x48\xb9\xe4\x9a\x0d\x51\x90\x94\x16\x13" \
+    "\x6b\xe4\x2f\xbf\x86\xd0\xd9\x0b\xbb\x78\x8a\xbd" \
+    "\x4b\xd7\x72\x6a\xcf\xeb\xe4\x58\x06\x4c\x2d\x51" \
+    "\x5e\x7c\x0e\x9b\x86\x41\xe1\x5c\x48\x81\x13\x42" \
+    "\xb9\x0a\x5e\x86\xa9\xe3\xf9\x27\x11\x79\xf1\x19" \
+    "\x41\xa6\x01\xeb\xea\x1b\xd8\xb9\xe5\x36\x5e\xff" \
+    "\xab\x3b\x29\x94\x16\xfc\x45\x4b\x28\xff\xfd\x35" \
+    "\xac\x88\xc0\xb6\x6d\x0a\x21\x6c\xad\xb5\x31\xef" \
+    "\x80\x71\xf8\x83\x23\xa1\x49\x31\x5e\x98\xeb\x42" \
+    "\x7a\xe8\x1d\xa4\x0e\x0c\x40\xb5\xb6\xeb\xe0\x8a" \
+    "\x35\xf0\x96\x9c\xc7\xc3\x4b\x73\xb0\xbe\xbd\x49" \
+    "\xc7\xa7\xcb\x64\xb0\x05\xa1\x41\x45\xed\xb3\x96" \
+    "\x0a\x61\xd5\x43\x26\xd1\xc5\xaa\x30\x29\x82\x58" \
+    "\x14\x86\x34\x50\xcd\xb4\xc1\xca\x8f\xc1\x18\xfe" \
+    "\x80\x64\xa8\x40\x23\x87\x80\x1f\xdc\xad\xdc\xa0" \
+    "\x4a\x32\x93\x54\x5a\x6b\x02\x40\x1f\x35\xe1\xb1" \
+    "\xc9\xd1\xc3\xd9\x05\x67\x77\x9b\x91\x49\x5e\xf4" \
+    "\xd2\x36\xb2\x77\xfe\x83\xc8\x88\xd0\xf1\xaf\x6f" \
+    "\xe0\xe9\xb5\xab\x71\x7b\xec\x11\xe1\x44\x1d\x64" \
+    "\xdb\xb2\xb8\x6f\xf6\xbb\x6a\xe5\x5b\x2f\x53\x76" \
+    "\x60\x0f\x6a\x6d\x39\x78\xe7\xaf\x44\x59\x2e\xe2" \
+    "\x89\x07\x9e\xd2\xba\x5c\x04\x4f\x8e\x01\xa9\x34" \
+    "\xa2\xa1\x8f\xb1\x1b\xbf\xa7\x8d\xc9\x71\x62\xa7" \
+    "\x88\x92\xef\x09\x47\x0b\x71\xa4\xff\xdd\x31\x00" \
+    "\xb5\x79\x00\x06\x10\xee\xec\x7b\xe5\xd5\x4b\x56" \
+    "\xad\x5b\x97\x3f\x3a\x41\x03\xc9\x26\xea\x5e\x90" \
+    "\x43\xcc\x73\x30\xb7\x62\x15\x1f\xb2\xa7\xc8\xa1" \
+    "\x39\x28\x62\xb8\xce\x2c\x3a\xd0\x4a\x89\xe7\xb6" \
+    "\x92\x18\xd8\x43\x51\xd3\x80\xbb\xfe\x66\x46\xef" \
+    "\x4a\x12\xc2\x60\x34\x66\x98\x1a\x32\x04\x30\x0f" \
+    "\x26\xc7\xe5\x81\xa5\x97\x71\xb3\x5e\x8f\xec\xa8" \
+    "\x0d\x77\xa2\x40\x76\xb2\x81\x5f\x7d\xe1\x99\x57" \
+    "\x01\x84\x00\xc2\x79\x80\xea\xbe\xbd\xef\xf4\xed" \
+    "\x1b\xda\xf3\xaf\xee\x6c\xcf\xca\x63\x97\x5c\xcd" \
+    "\xde\x37\x37\x21\x6e\xc6\xd0\xd0\x9c\xe5\xae\xd9" \
+    "\x22\x7e\xe4\xde\xc0\xd3\xb2\x48\x92\x0d\x6d\x9a" \
+    "\x3e\xe6\xc2\x40\xc8\x54\x0a\xa6\x52\xa8\xf4\x2c" \
+    "\x65\xa5\x42\x30\x33\x40\x02\xcc\x35\x80\x85\x78" \
+    "\x59\xbe\x8d\xf7\x66\xf6\x8a\x6b\xdd\x55\x30\xfc" \
+    "\x76\xc4\xb4\xc5\x23\x23\x07\xc6\xdf\xd8\xfe\x97" \
+    "\xbf\x02\xf0\x00\xe8\xf9\x8b\xc8\x00\xd0\x9a\x6e" \
+    "\x6a\xbe\xe0\xde\x4d\x3f\x7f\xb2\x1d\x68\x6d\x5d" \
+    "\x74\x16\x38\x91\x64\xce\x75\x21\x7b\x78\x08\x8d" \
+    "\x63\x47\x61\xc7\xe3\x5c\xb9\x6c\x1d\x54\xba\x95" \
+    "\x45\xa5\x44\x55\xcb\x62\x5d\x29\x13\x27\x1a\x20" \
+    "\xe2\x09\x30\x48\xb1\x0e\x85\xef\x7b\x54\xf5\x5d" \
+    "\x1e\x8d\x4d\x88\xb6\x48\x23\x69\x66\x9c\xc8\x17" \
+    "\x51\x3e\x72\xaa\xfc\xf0\x96\x3b\xef\x18\x1b\x1d" \
+    "\xfe\x27\x80\xe3\x00\xfc\xf9\x59\xa0\x01\x28\xaf" \
+    "\xea\x7a\x7b\x87\x87\xf6\x9d\x7f\xee\xf2\x4b\xda" \
+    "\xdb\xda\x52\x61\xa2\x81\xa0\x14\xb9\x4e\x85\x66" \
+    "\x5b\xda\x68\xca\x0f\xe8\x88\xaf\xa9\x36\x72\x80" \
+    "\xe8\xe9\xc7\x05\xbd\xb9\x5d\xe8\xfc\x11\x9a\x5c" \
+    "\x74\x0e\xdc\x23\xef\xd3\x89\x91\x61\x39\x91\x1f" \
+    "\xa3\xd9\x8a\x43\xb1\xa4\x2d\xce\x4e\xb4\x51\x52" \
+    "\x46\x41\x55\x85\xf1\x43\xa3\x85\x2d\x9b\xef\xbe" \
+    "\x6f\x74\x74\xf8\x4d\x00\xd3\x00\x9c\x8f\x4f\xc3" \
+    "\x10\x40\xe8\xba\x4e\xf9\xad\xfd\xfd\x6f\x25\x32" \
+    "\x99\xf6\xce\xf3\x57\xe6\x0c\x82\xe0\xaa\x4b\xa1" \
+    "\x1f\xa0\xe4\x78\x98\x92\x49\x76\x4f\x16\xe8\x64" \
+    "\xac\x09\x85\x4c\x0e\xf9\x64\x1b\xcf\x58\x71\xaa" \
+    "\x0e\x0e\x90\x37\x3e\x8e\xda\xd4\x24\xe9\x5a\x8d" \
+    "\x62\x6d\xcd\xb0\xa3\x12\x4e\xd9\x51\x6f\xbc\xb6" \
+    "\xbd\xff\xc1\xdf\xfc\xec\xde\xe3\xc7\x27\xfb\xeb" \
+    "\x95\x97\x3f\xba\x81\x71\xa6\x08\x40\x1c\x40\x06" \
+    "\x40\x4b\xd7\xd9\xdd\x17\x6f\xfc\xc6\x77\x36\x7e" \
+    "\x75\xf5\xb5\x17\x47\x22\x76\xd4\x29\x39\xe2\x44" \
+    "\xc9\x07\x0a\x79\xa8\x52\x11\x22\x08\xa0\x2c\x0b" \
+    "\x68\x5d\x80\xc8\xa1\xfd\x90\xcc\x20\x02\xf4\xc2" \
+    "\x2e\x9d\xea\xe9\x0a\x0e\x1e\xec\xdf\xf7\xfc\x0b" \
+    "\xdb\x5e\x78\x6f\xff\xe0\x2e\x00\x05\x00\xa7\x00" \
+    "\xcc\xd5\x1d\xff\x44\x80\x79\x45\x00\x34\xd4\x23" \
+    "\x1d\x8f\x27\xba\x56\x5e\x78\xd9\x05\x5f\x3a\xf7" \
+    "\x2b\xcb\x52\x4d\x1d\x67\xb5\x2f\x5c\xbc\x20\x62" \
+    "\x46\x2d\x30\x04\xb3\x26\x68\xa5\x7c\xa7\x54\x9b" \
+    "\x1a\x39\x78\xe2\x64\x7e\x64\x72\x64\xf2\xe8\xd0" \
+    "\xd0\xc1\xbd\x7b\xca\xe5\xd2\x08\x80\x12\x80\x62" \
+    "\x7d\xad\xd6\x9b\xfe\x8c\x8a\xff\x9b\x04\x3e\x1c" \
+    "\x18\x09\x00\xb1\xba\x33\x71\x00\xb6\x10\x22\x1e" \
+    "\x8d\xc6\x92\x96\x15\xb1\x89\x04\x82\x5a\xe0\x57" \
+    "\xdd\x8a\xa3\x94\x9a\xab\x27\xa9\x02\xa8\x00\x70" \
+    "\xeb\x67\xed\x02\x50\x9f\x94\xe4\xb3\xfc\x15\x13" \
+    "\x00\x13\x80\x55\x77\xc6\xac\xaf\xa2\x1e\x5c\x7f" \
+    "\xa7\x86\x0f\xfb\xc8\xaf\x3f\xfb\x00\x82\x8f\x57" \
+    "\xfc\x79\x00\x3e\x2e\x71\x5a\xe0\x34\x00\x5d\x0f" \
+    "\xfe\xb4\xa4\x5f\xe8\x0b\x9d\xae\x7f\x03\x0c\xdb" \
+    "\xe8\xdf\x8f\xa4\x44\x04\x00\x00\x00\x00\x49\x45" \
+    "\x4e\x44\xae\x42\x60\x82"
 image2_data = \
-  "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
-  "\x49\x48\x44\x52\x00\x00\x00\x20\x00\x00\x00\x20" \
-  "\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\x00\x00\x04" \
-  "\x5e\x49\x44\x41\x54\x78\x9c\xad\x97\x6f\x6c\x53" \
-  "\x55\x18\xc6\x7f\x17\x2d\xb0\x76\x1d\x97\xc4\xb1" \
-  "\xdb\x32\x8d\xeb\xae\xae\x0c\x42\xbb\x94\x6d\x6c" \
-  "\x66\xcc\xf9\x41\x04\x44\x60\x08\x4e\x86\x7c\x41" \
-  "\x12\xd8\x07\x96\xcc\x64\x88\x21\x08\x31\x11\x35" \
-  "\xc6\x44\x13\x9d\x89\x12\x13\xc2\x40\x37\x8d\x28" \
-  "\x0c\xff\x12\x98\xfc\x99\x40\x61\x1d\x99\x59\xd7" \
-  "\xf5\x0f\x4a\xd6\x75\x13\xd8\x65\x5b\xc7\x12\x42" \
-  "\x8e\x1f\xea\x1a\x62\xd6\xd9\xbb\xee\x49\xce\x97" \
-  "\x73\xcf\xb9\xef\xf3\x3e\xef\x73\xde\x7b\x2e\x42" \
-  "\x08\xf4\x8e\x5f\x0e\x1f\x11\x7d\x17\xdd\x62\x2a" \
-  "\x7b\xff\x3b\x74\x6f\x18\x0a\x04\x45\x78\xf5\x4a" \
-  "\xf1\xba\xaa\x4e\x0b\x81\x19\xe8\x80\xd7\xdb\x25" \
-  "\x4e\x5c\x3e\x8f\x2f\x10\xe6\xb9\x99\xe9\x78\xbd" \
-  "\x5d\x42\xcf\xfe\x89\xf0\x70\xa2\x07\xee\x2b\x6e" \
-  "\x91\x7d\x5f\x42\x29\x72\x49\x9a\xa6\x09\x7f\xc0" \
-  "\xcf\xae\xc0\xcf\xac\xec\xd4\x78\x3a\xd7\xca\x99" \
-  "\xea\x97\x19\x0e\xfa\x01\x84\xdd\xbe\x40\x9a\x76" \
-  "\x02\xf3\xf7\xbf\x49\x93\x30\x62\xdb\xb1\x45\x5c" \
-  "\xee\x7d\x9f\x32\xe3\x76\x3e\x76\xad\xa3\x7f\xff" \
-  "\x26\xc8\xb5\xc6\xd7\x29\x8a\x65\xaa\xb1\x01\x12" \
-  "\x97\xc0\xf2\x7d\x8b\x94\x5f\x55\xc9\xf9\xda\x3a" \
-  "\xca\x8c\xdb\xc9\x76\x39\x91\x87\x46\xe9\xb0\xa9" \
-  "\x1c\x71\x2c\x8c\x05\xcf\xb2\x20\xcb\xf2\x94\xb3" \
-  "\x87\x49\x14\xd0\x34\x4d\x64\xbb\x9c\x3c\x52\xb5" \
-  "\x8e\x0e\x6f\x3b\x63\x73\xd3\xe9\x6e\x3b\xcb\x26" \
-  "\x69\x94\x33\x8b\x16\x63\x36\xcf\x21\xdd\x64\x4a" \
-  "\x25\x36\x30\x89\x02\xb2\x2c\x4b\x8a\x62\xa1\x7c" \
-  "\xed\x46\x0c\x9e\x10\xdd\x6d\x67\x31\x78\x42\xf8" \
-  "\x02\x61\x20\x96\x7d\xaa\xf2\x4f\x4a\x60\x9c\x84" \
-  "\x9a\xab\x92\x5f\x55\x89\xc1\x13\x62\x83\x34\xca" \
-  "\x9e\x85\x19\x00\xa4\x9b\x4c\x29\xcb\xff\xbf\x04" \
-  "\xc6\x49\x2c\x59\xb5\x82\xfc\xaa\x4a\x3e\xea\xf2" \
-  "\xb1\xe1\xee\x3c\xae\xed\xd9\x4f\x7f\x5f\x04\x4d" \
-  "\xd3\x52\x3e\x86\x49\xf7\x01\x83\x55\x61\xe7\x82" \
-  "\x27\xb9\xe7\xcc\xe1\x5c\x81\x95\x3d\x0d\xfb\x38" \
-  "\xf4\xca\x36\x7e\x6d\x3c\x9a\x12\x89\x84\x26\x7c" \
-  "\x10\xb2\x2c\x4b\xc5\xfd\x3e\x71\x31\x10\xe6\xd8" \
-  "\xec\x11\x6a\xd6\x6f\x23\xdc\x79\x0d\xd5\x38\x0f" \
-  "\xc3\xdb\xef\x71\xf2\xaf\x5e\x51\xf6\xd2\x7a\xcc" \
-  "\xb6\x1c\xdd\x25\x91\x84\x48\x2e\x81\x68\x7d\xad" \
-  "\xf8\x74\xd6\x2c\x96\x3c\xb3\x82\xf0\x40\x6f\x7c" \
-  "\x3e\xdc\x79\x8d\x4d\x1d\x7f\xd0\x5e\x52\x41\xe9" \
-  "\x8e\x57\x75\xfb\x22\xe9\x12\xb4\x39\x96\x72\xf3" \
-  "\xcb\x6f\x09\x0f\xf4\xe2\x1d\xfa\x2c\x1e\x3c\xf3" \
-  "\x85\x08\xed\x25\x15\x94\x0f\xde\xe0\x42\xc3\xe7" \
-  "\x7a\x62\xeb\x23\x60\xb0\x2a\x00\xfc\x7d\xf8\x3b" \
-  "\xce\xcd\x59\xce\xf3\x85\x4f\xb1\xf5\xb5\x37\xc8" \
-  "\x9f\xb1\x93\x99\x8f\xcd\x8f\xaf\x1b\x0e\x86\x74" \
-  "\x79\x22\x69\x02\x79\xa6\xd8\xf1\xcb\xdc\xbc\x86" \
-  "\xc6\xc7\x97\xd3\x3d\x78\x8b\x73\x17\xce\xd2\xe3" \
-  "\xf7\x72\xc0\x10\x02\xc0\x7f\xe1\x22\xdd\x83\xb7" \
-  "\xf4\xc4\x4f\xde\x03\x9a\xa6\x09\x77\xcb\x0f\x9c" \
-  "\xda\xb7\x17\x8b\xdd\x89\xbc\x37\x8d\xfc\x19\x3b" \
-  "\x51\x73\x55\xc6\x7c\x01\xcc\x5f\x1f\xa2\x75\xee" \
-  "\xa3\xd8\xd6\xad\x42\x51\x92\x6f\xd1\x49\x2b\x20" \
-  "\xcb\xb2\x54\x5c\xb2\x14\x8b\xdd\x09\x40\x91\x79" \
-  "\x37\x00\x63\xbe\x00\x57\x4f\x9d\xc6\xdd\xf2\x1b" \
-  "\x77\x6c\x0a\xf2\xd0\xa8\x2e\x23\xea\xba\x0f\x98" \
-  "\x6d\x39\x92\xa3\xae\x86\x3e\xaf\x87\x96\xc6\x2f" \
-  "\xe8\xf1\x7b\xa9\xbe\xfe\x13\x05\x6d\xa7\x59\xb2" \
-  "\x6a\x19\x73\x82\x11\xb4\x0c\xa3\x9e\x57\x26\x5f" \
-  "\x82\x71\x68\x9a\x26\xc6\x7c\x01\x9a\xde\x7a\x87" \
-  "\x7b\xce\x1c\x00\x0c\x9e\x98\x07\x32\x37\xaf\xa1" \
-  "\xc0\xe1\x42\xcf\xfd\x40\x97\x02\x10\x2b\x85\x96" \
-  "\x61\xc4\x51\x57\x83\xc1\x13\xc2\xe0\x09\xb1\x75" \
-  "\x81\x15\xb5\xb4\x18\xd0\x7f\x3f\xd0\xad\xc0\x38" \
-  "\x86\x83\x21\x71\xf5\xcf\xeb\x44\x7f\xbf\x42\x41" \
-  "\xdb\x69\x9a\x45\x4c\x7a\x47\x5d\x0d\xe5\x15\x15" \
-  "\x49\x2b\x90\x54\x2b\x9e\x08\x66\x5b\x8e\x94\x77" \
-  "\xf3\xb6\x30\x0f\xde\xa0\xb5\xa4\x02\xf5\xdf\xf9" \
-  "\x8e\x0f\x3e\x21\xcf\x94\x21\x94\x22\xd7\xf4\x9e" \
-  "\x82\x89\xa0\x14\xb9\xa4\x83\x5d\x61\x4c\x87\x1b" \
-  "\x01\x38\xd0\x7e\x9c\xe6\xb4\x01\x3e\xac\xae\x22" \
-  "\x5a\x5f\x2b\x92\xf9\x5a\x4e\xb9\x04\x10\x33\xe4" \
-  "\xdd\x2d\xd5\x6c\x9c\x3d\xc2\xda\xbc\x62\xca\xd7" \
-  "\x6e\x24\xd2\xdf\x07\x40\xb0\xe1\x50\x52\xe5\x48" \
-  "\x49\x01\x00\xc3\xe0\x32\x76\x17\xac\xc6\xba\x68" \
-  "\x71\x7c\xee\x76\x66\x33\x6a\x69\x31\x0b\xf7\x5e" \
-  "\x22\x5a\x5f\x2b\x22\x97\xae\x24\xcc\x32\x25\x02" \
-  "\xb3\x7f\xfc\x8a\x23\xb2\x1b\xd3\x52\x17\x00\xad" \
-  "\xc7\x9a\x18\x1e\xbe\x13\x7f\x7e\x69\xe5\x43\x0c" \
-  "\x79\xfd\x74\xf6\xf8\x12\xbe\x23\xa5\x12\x44\xeb" \
-  "\x6b\xc5\xc1\xae\xd8\x1d\xb1\x39\x6d\x80\x99\x2f" \
-  "\x2e\xe7\x9b\x67\x6b\x90\x65\x59\x3a\x71\xf2\xb8" \
-  "\x18\x27\xf3\x84\x6a\x27\xdd\x64\x9a\xb0\x3f\xa4" \
-  "\xec\x81\x77\x0b\x0b\xb1\xd8\x9d\x94\xee\xdb\x45" \
-  "\xf6\x7d\x09\x2d\xc3\xc8\x48\x34\x0a\x10\xf7\x83" \
-  "\x92\x65\x41\xcd\x55\x27\x6c\xd1\x29\x13\xf0\x07" \
-  "\xfc\xb4\x1e\x6b\xc2\x61\x2f\x60\x6c\x6e\x7a\x3c" \
-  "\x58\x24\xd2\x17\xcf\x58\xd3\x34\x91\xe8\xfb\x90" \
-  "\x12\x01\x88\xfd\x2f\xfa\x83\x7e\x94\xac\x58\x07" \
-  "\x4c\x94\x69\x22\xa4\x4c\x00\x62\x19\x3e\x98\xb1" \
-  "\x1e\xfc\x03\x7d\x9a\x65\x03\x12\x0f\xc2\x63\x00" \
-  "\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82"
+    "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
+    "\x49\x48\x44\x52\x00\x00\x00\x20\x00\x00\x00\x20" \
+    "\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\x00\x00\x04" \
+    "\x5e\x49\x44\x41\x54\x78\x9c\xad\x97\x6f\x6c\x53" \
+    "\x55\x18\xc6\x7f\x17\x2d\xb0\x76\x1d\x97\xc4\xb1" \
+    "\xdb\x32\x8d\xeb\xae\xae\x0c\x42\xbb\x94\x6d\x6c" \
+    "\x66\xcc\xf9\x41\x04\x44\x60\x08\x4e\x86\x7c\x41" \
+    "\x12\xd8\x07\x96\xcc\x64\x88\x21\x08\x31\x11\x35" \
+    "\xc6\x44\x13\x9d\x89\x12\x13\xc2\x40\x37\x8d\x28" \
+    "\x0c\xff\x12\x98\xfc\x99\x40\x61\x1d\x99\x59\xd7" \
+    "\xf5\x0f\x4a\xd6\x75\x13\xd8\x65\x5b\xc7\x12\x42" \
+    "\x8e\x1f\xea\x1a\x62\xd6\xd9\xbb\xee\x49\xce\x97" \
+    "\x73\xcf\xb9\xef\xf3\x3e\xef\x73\xde\x7b\x2e\x42" \
+    "\x08\xf4\x8e\x5f\x0e\x1f\x11\x7d\x17\xdd\x62\x2a" \
+    "\x7b\xff\x3b\x74\x6f\x18\x0a\x04\x45\x78\xf5\x4a" \
+    "\xf1\xba\xaa\x4e\x0b\x81\x19\xe8\x80\xd7\xdb\x25" \
+    "\x4e\x5c\x3e\x8f\x2f\x10\xe6\xb9\x99\xe9\x78\xbd" \
+    "\x5d\x42\xcf\xfe\x89\xf0\x70\xa2\x07\xee\x2b\x6e" \
+    "\x91\x7d\x5f\x42\x29\x72\x49\x9a\xa6\x09\x7f\xc0" \
+    "\xcf\xae\xc0\xcf\xac\xec\xd4\x78\x3a\xd7\xca\x99" \
+    "\xea\x97\x19\x0e\xfa\x01\x84\xdd\xbe\x40\x9a\x76" \
+    "\x02\xf3\xf7\xbf\x49\x93\x30\x62\xdb\xb1\x45\x5c" \
+    "\xee\x7d\x9f\x32\xe3\x76\x3e\x76\xad\xa3\x7f\xff" \
+    "\x26\xc8\xb5\xc6\xd7\x29\x8a\x65\xaa\xb1\x01\x12" \
+    "\x97\xc0\xf2\x7d\x8b\x94\x5f\x55\xc9\xf9\xda\x3a" \
+    "\xca\x8c\xdb\xc9\x76\x39\x91\x87\x46\xe9\xb0\xa9" \
+    "\x1c\x71\x2c\x8c\x05\xcf\xb2\x20\xcb\xf2\x94\xb3" \
+    "\x87\x49\x14\xd0\x34\x4d\x64\xbb\x9c\x3c\x52\xb5" \
+    "\x8e\x0e\x6f\x3b\x63\x73\xd3\xe9\x6e\x3b\xcb\x26" \
+    "\x69\x94\x33\x8b\x16\x63\x36\xcf\x21\xdd\x64\x4a" \
+    "\x25\x36\x30\x89\x02\xb2\x2c\x4b\x8a\x62\xa1\x7c" \
+    "\xed\x46\x0c\x9e\x10\xdd\x6d\x67\x31\x78\x42\xf8" \
+    "\x02\x61\x20\x96\x7d\xaa\xf2\x4f\x4a\x60\x9c\x84" \
+    "\x9a\xab\x92\x5f\x55\x89\xc1\x13\x62\x83\x34\xca" \
+    "\x9e\x85\x19\x00\xa4\x9b\x4c\x29\xcb\xff\xbf\x04" \
+    "\xc6\x49\x2c\x59\xb5\x82\xfc\xaa\x4a\x3e\xea\xf2" \
+    "\xb1\xe1\xee\x3c\xae\xed\xd9\x4f\x7f\x5f\x04\x4d" \
+    "\xd3\x52\x3e\x86\x49\xf7\x01\x83\x55\x61\xe7\x82" \
+    "\x27\xb9\xe7\xcc\xe1\x5c\x81\x95\x3d\x0d\xfb\x38" \
+    "\xf4\xca\x36\x7e\x6d\x3c\x9a\x12\x89\x84\x26\x7c" \
+    "\x10\xb2\x2c\x4b\xc5\xfd\x3e\x71\x31\x10\xe6\xd8" \
+    "\xec\x11\x6a\xd6\x6f\x23\xdc\x79\x0d\xd5\x38\x0f" \
+    "\xc3\xdb\xef\x71\xf2\xaf\x5e\x51\xf6\xd2\x7a\xcc" \
+    "\xb6\x1c\xdd\x25\x91\x84\x48\x2e\x81\x68\x7d\xad" \
+    "\xf8\x74\xd6\x2c\x96\x3c\xb3\x82\xf0\x40\x6f\x7c" \
+    "\x3e\xdc\x79\x8d\x4d\x1d\x7f\xd0\x5e\x52\x41\xe9" \
+    "\x8e\x57\x75\xfb\x22\xe9\x12\xb4\x39\x96\x72\xf3" \
+    "\xcb\x6f\x09\x0f\xf4\xe2\x1d\xfa\x2c\x1e\x3c\xf3" \
+    "\x85\x08\xed\x25\x15\x94\x0f\xde\xe0\x42\xc3\xe7" \
+    "\x7a\x62\xeb\x23\x60\xb0\x2a\x00\xfc\x7d\xf8\x3b" \
+    "\xce\xcd\x59\xce\xf3\x85\x4f\xb1\xf5\xb5\x37\xc8" \
+    "\x9f\xb1\x93\x99\x8f\xcd\x8f\xaf\x1b\x0e\x86\x74" \
+    "\x79\x22\x69\x02\x79\xa6\xd8\xf1\xcb\xdc\xbc\x86" \
+    "\xc6\xc7\x97\xd3\x3d\x78\x8b\x73\x17\xce\xd2\xe3" \
+    "\xf7\x72\xc0\x10\x02\xc0\x7f\xe1\x22\xdd\x83\xb7" \
+    "\xf4\xc4\x4f\xde\x03\x9a\xa6\x09\x77\xcb\x0f\x9c" \
+    "\xda\xb7\x17\x8b\xdd\x89\xbc\x37\x8d\xfc\x19\x3b" \
+    "\x51\x73\x55\xc6\x7c\x01\xcc\x5f\x1f\xa2\x75\xee" \
+    "\xa3\xd8\xd6\xad\x42\x51\x92\x6f\xd1\x49\x2b\x20" \
+    "\xcb\xb2\x54\x5c\xb2\x14\x8b\xdd\x09\x40\x91\x79" \
+    "\x37\x00\x63\xbe\x00\x57\x4f\x9d\xc6\xdd\xf2\x1b" \
+    "\x77\x6c\x0a\xf2\xd0\xa8\x2e\x23\xea\xba\x0f\x98" \
+    "\x6d\x39\x92\xa3\xae\x86\x3e\xaf\x87\x96\xc6\x2f" \
+    "\xe8\xf1\x7b\xa9\xbe\xfe\x13\x05\x6d\xa7\x59\xb2" \
+    "\x6a\x19\x73\x82\x11\xb4\x0c\xa3\x9e\x57\x26\x5f" \
+    "\x82\x71\x68\x9a\x26\xc6\x7c\x01\x9a\xde\x7a\x87" \
+    "\x7b\xce\x1c\x00\x0c\x9e\x98\x07\x32\x37\xaf\xa1" \
+    "\xc0\xe1\x42\xcf\xfd\x40\x97\x02\x10\x2b\x85\x96" \
+    "\x61\xc4\x51\x57\x83\xc1\x13\xc2\xe0\x09\xb1\x75" \
+    "\x81\x15\xb5\xb4\x18\xd0\x7f\x3f\xd0\xad\xc0\x38" \
+    "\x86\x83\x21\x71\xf5\xcf\xeb\x44\x7f\xbf\x42\x41" \
+    "\xdb\x69\x9a\x45\x4c\x7a\x47\x5d\x0d\xe5\x15\x15" \
+    "\x49\x2b\x90\x54\x2b\x9e\x08\x66\x5b\x8e\x94\x77" \
+    "\xf3\xb6\x30\x0f\xde\xa0\xb5\xa4\x02\xf5\xdf\xf9" \
+    "\x8e\x0f\x3e\x21\xcf\x94\x21\x94\x22\xd7\xf4\x9e" \
+    "\x82\x89\xa0\x14\xb9\xa4\x83\x5d\x61\x4c\x87\x1b" \
+    "\x01\x38\xd0\x7e\x9c\xe6\xb4\x01\x3e\xac\xae\x22" \
+    "\x5a\x5f\x2b\x92\xf9\x5a\x4e\xb9\x04\x10\x33\xe4" \
+    "\xdd\x2d\xd5\x6c\x9c\x3d\xc2\xda\xbc\x62\xca\xd7" \
+    "\x6e\x24\xd2\xdf\x07\x40\xb0\xe1\x50\x52\xe5\x48" \
+    "\x49\x01\x00\xc3\xe0\x32\x76\x17\xac\xc6\xba\x68" \
+    "\x71\x7c\xee\x76\x66\x33\x6a\x69\x31\x0b\xf7\x5e" \
+    "\x22\x5a\x5f\x2b\x22\x97\xae\x24\xcc\x32\x25\x02" \
+    "\xb3\x7f\xfc\x8a\x23\xb2\x1b\xd3\x52\x17\x00\xad" \
+    "\xc7\x9a\x18\x1e\xbe\x13\x7f\x7e\x69\xe5\x43\x0c" \
+    "\x79\xfd\x74\xf6\xf8\x12\xbe\x23\xa5\x12\x44\xeb" \
+    "\x6b\xc5\xc1\xae\xd8\x1d\xb1\x39\x6d\x80\x99\x2f" \
+    "\x2e\xe7\x9b\x67\x6b\x90\x65\x59\x3a\x71\xf2\xb8" \
+    "\x18\x27\xf3\x84\x6a\x27\xdd\x64\x9a\xb0\x3f\xa4" \
+    "\xec\x81\x77\x0b\x0b\xb1\xd8\x9d\x94\xee\xdb\x45" \
+    "\xf6\x7d\x09\x2d\xc3\xc8\x48\x34\x0a\x10\xf7\x83" \
+    "\x92\x65\x41\xcd\x55\x27\x6c\xd1\x29\x13\xf0\x07" \
+    "\xfc\xb4\x1e\x6b\xc2\x61\x2f\x60\x6c\x6e\x7a\x3c" \
+    "\x58\x24\xd2\x17\xcf\x58\xd3\x34\x91\xe8\xfb\x90" \
+    "\x12\x01\x88\xfd\x2f\xfa\x83\x7e\x94\xac\x58\x07" \
+    "\x4c\x94\x69\x22\xa4\x4c\x00\x62\x19\x3e\x98\xb1" \
+    "\x1e\xfc\x03\x7d\x9a\x65\x03\x12\x0f\xc2\x63\x00" \
+    "\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82"
 
 class pyFreezerView(QWidget):
-  def __init__(self,parent = None,name = None,fl = 0):
-    QWidget.__init__(self,parent,name,fl)
+    def __init__(self,parent = None,name = None,fl = 0):
+        QWidget.__init__(self,parent,name,fl)
 
-    self.image0 = QPixmap()
-    self.image0.loadFromData(image0_data,"PNG")
-    self.image1 = QPixmap()
-    self.image1.loadFromData(image1_data,"PNG")
-    self.image2 = QPixmap()
-    self.image2.loadFromData(image2_data,"PNG")
-    if not name:
-      self.setName("pyFreezerView")
+        self.image0 = QPixmap()
+        self.image0.loadFromData(image0_data,"PNG")
+        self.image1 = QPixmap()
+        self.image1.loadFromData(image1_data,"PNG")
+        self.image2 = QPixmap()
+        self.image2.loadFromData(image2_data,"PNG")
+        if not name:
+            self.setName("pyFreezerView")
 
-    self.setSizePolicy(QSizePolicy(5,5,0,0,self.sizePolicy().hasHeightForWidth()))
+        self.setSizePolicy(QSizePolicy(5,5,0,0,self.sizePolicy().hasHeightForWidth()))
 
-    pyFreezerViewLayout = QVBoxLayout(self,0,6,"pyFreezerViewLayout")
+        pyFreezerViewLayout = QVBoxLayout(self,0,6,"pyFreezerViewLayout")
 
-    self.m_list_view = QListView(self,"m_list_view")
-    self.m_list_view.addColumn(self.__tr("Freezer"))
-    self.m_list_view.header().setClickEnabled(0,self.m_list_view.header().count() - 1)
-    self.m_list_view.header().setResizeEnabled(0,self.m_list_view.header().count() - 1)
-    self.m_list_view.setSizePolicy(QSizePolicy(5,5,0,0,self.m_list_view.sizePolicy().hasHeightForWidth()))
-    self.m_list_view.setAcceptDrops(1)
-    self.m_list_view.setFrameShape(QListView.StyledPanel)
-    self.m_list_view.setFrameShadow(QListView.Sunken)
-    self.m_list_view.setHScrollBarMode(QListView.AlwaysOff)
-    self.m_list_view.setAllColumnsShowFocus(1)
-    self.m_list_view.setRootIsDecorated(1)
-    self.m_list_view.setResizeMode(QListView.AllColumns)
-    pyFreezerViewLayout.addWidget(self.m_list_view)
+        self.m_list_view = QListView(self,"m_list_view")
+        self.m_list_view.addColumn(self.__tr("Freezer"))
+        self.m_list_view.header().setClickEnabled(0,self.m_list_view.header().count() - 1)
+        self.m_list_view.header().setResizeEnabled(0,self.m_list_view.header().count() - 1)
+        self.m_list_view.setSizePolicy(QSizePolicy(5,5,0,0,self.m_list_view.sizePolicy().hasHeightForWidth()))
+        self.m_list_view.setAcceptDrops(1)
+        self.m_list_view.setFrameShape(QListView.StyledPanel)
+        self.m_list_view.setFrameShadow(QListView.Sunken)
+        self.m_list_view.setHScrollBarMode(QListView.AlwaysOff)
+        self.m_list_view.setAllColumnsShowFocus(1)
+        self.m_list_view.setRootIsDecorated(1)
+        self.m_list_view.setResizeMode(QListView.AllColumns)
+        pyFreezerViewLayout.addWidget(self.m_list_view)
 
-    self.languageChange()
+        self.languageChange()
 
-    self.resize(QSize(232,383).expandedTo(self.minimumSizeHint()))
-    self.clearWState(Qt.WState_Polished)
+        self.resize(QSize(232,383).expandedTo(self.minimumSizeHint()))
+        self.clearWState(Qt.WState_Polished)
 
 
-  def languageChange(self):
-    self.setCaption(self.__tr("pyFreezerView"))
-    self.m_list_view.header().setLabel(0,self.__tr("Freezer"))
-    self.m_list_view.clear()
-    item = QListViewItem(self.m_list_view,None)
-    item.setText(0,self.__tr(" Empty Petri Dishes"))
-    item.setPixmap(0,self.image0)
+    def languageChange(self):
+        self.setCaption(self.__tr("pyFreezerView"))
+        self.m_list_view.header().setLabel(0,self.__tr("Freezer"))
+        self.m_list_view.clear()
+        item = QListViewItem(self.m_list_view,None)
+        item.setText(0,self.__tr(" Empty Petri Dishes"))
+        item.setPixmap(0,self.image0)
 
-    item = QListViewItem(self.m_list_view,item)
-    item.setText(0,self.__tr(" Full Petri Dishes"))
-    item.setPixmap(0,self.image1)
+        item = QListViewItem(self.m_list_view,item)
+        item.setText(0,self.__tr(" Full Petri Dishes"))
+        item.setPixmap(0,self.image1)
 
-    item = QListViewItem(self.m_list_view,item)
-    item.setText(0,self.__tr(" Organisms"))
-    item.setPixmap(0,self.image2)
+        item = QListViewItem(self.m_list_view,item)
+        item.setText(0,self.__tr(" Organisms"))
+        item.setPixmap(0,self.image2)
 
 
 
-  def __tr(self,s,c = None):
-    return qApp.translate("pyFreezerView",s,c)
+    def __tr(self,s,c = None):
+        return qApp.translate("pyFreezerView",s,c)

Modified: trunk/source/python/AvidaGui2/pyGradientScaleView.py
===================================================================
--- trunk/source/python/AvidaGui2/pyGradientScaleView.py	2005-03-31 03:44:15 UTC (rev 95)
+++ trunk/source/python/AvidaGui2/pyGradientScaleView.py	2005-03-31 09:26:09 UTC (rev 96)
@@ -1,9 +1,9 @@
 # -*- coding: utf-8 -*-
 
-# Form implementation generated from reading ui file '/Users/kaben/Projects/Software/Avida/branch.kaben/avida--current--2.0--base-0/source/bindings/Boost.Python/AvidaGui2/pyGradientScaleView.ui'
+# Form implementation generated from reading ui file 'pyGradientScaleView.ui'
 #
-# Created: Fri Dec 3 10:26:50 2004
-#      by: The PyQt User Interface Compiler (pyuic) 3.12
+# Created: Thu Mar 31 04:19:19 2005
+#      by: The PyQt User Interface Compiler (pyuic) 3.13
 #
 # WARNING! All changes made in this file will be lost!
 
@@ -12,40 +12,40 @@
 
 
 class pyGradientScaleView(QWidget):
-  def __init__(self,parent = None,name = None,fl = 0):
-    QWidget.__init__(self,parent,name,fl)
+    def __init__(self,parent = None,name = None,fl = 0):
+        QWidget.__init__(self,parent,name,fl)
 
-    if not name:
-      self.setName("pyGradientScaleView")
+        if not name:
+            self.setName("pyGradientScaleView")
 
-    self.setSizePolicy(QSizePolicy(5,5,0,0,self.sizePolicy().hasHeightForWidth()))
-    self.setMaximumSize(QSize(32767,32767))
+        self.setSizePolicy(QSizePolicy(5,5,0,0,self.sizePolicy().hasHeightForWidth()))
+        self.setMaximumSize(QSize(32767,32767))
 
-    pyGradientScaleViewLayout = QVBoxLayout(self,0,0,"pyGradientScaleViewLayout")
-    pyGradientScaleViewLayout.setResizeMode(QLayout.Minimum)
+        pyGradientScaleViewLayout = QVBoxLayout(self,0,0,"pyGradientScaleViewLayout")
+        pyGradientScaleViewLayout.setResizeMode(QLayout.Minimum)
 
-    self.textLabel4 = QLabel(self,"textLabel4")
-    self.textLabel4.setSizePolicy(QSizePolicy(1,1,0,0,self.textLabel4.sizePolicy().hasHeightForWidth()))
-    self.textLabel4.setBackgroundMode(QLabel.PaletteShadow)
-    self.textLabel4.setPaletteBackgroundColor(QColor(220,220,220))
-    textLabel4_font = QFont(self.textLabel4.font())
-    textLabel4_font.setPointSize(10)
-    self.textLabel4.setFont(textLabel4_font)
-    self.textLabel4.setScaledContents(0)
-    self.textLabel4.setAlignment(QLabel.AlignCenter)
-    pyGradientScaleViewLayout.addWidget(self.textLabel4)
+        self.textLabel4 = QLabel(self,"textLabel4")
+        self.textLabel4.setSizePolicy(QSizePolicy(1,1,0,0,self.textLabel4.sizePolicy().hasHeightForWidth()))
+        self.textLabel4.setBackgroundMode(QLabel.PaletteShadow)
+        self.textLabel4.setPaletteBackgroundColor(QColor(220,220,220))
+        textLabel4_font = QFont(self.textLabel4.font())
+        textLabel4_font.setPointSize(10)
+        self.textLabel4.setFont(textLabel4_font)
+        self.textLabel4.setScaledContents(0)
+        self.textLabel4.setAlignment(QLabel.AlignCenter)
+        pyGradientScaleViewLayout.addWidget(self.textLabel4)
 
-    self.languageChange()
+        self.languageChange()
 
-    self.resize(QSize(124,188).expandedTo(self.minimumSizeHint()))
-    self.clearWState(Qt.WState_Polished)
+        self.resize(QSize(124,188).expandedTo(self.minimumSizeHint()))
+        self.clearWState(Qt.WState_Polished)
 
 
-  def languageChange(self):
-    self.setCaption(self.__tr("pyGradientScaleView"))
-    self.textLabel4.setText(self.__tr("mock\n"
+    def languageChange(self):
+        self.setCaption(self.__tr("pyGradientScaleView"))
+        self.textLabel4.setText(self.__tr("mock\n"
 "gradient"))
 
 
-  def __tr(self,s,c = None):
-    return qApp.translate("pyGradientScaleView",s,c)
+    def __tr(self,s,c = None):
+        return qApp.translate("pyGradientScaleView",s,c)

Modified: trunk/source/python/AvidaGui2/pyGraphView.py
===================================================================
--- trunk/source/python/AvidaGui2/pyGraphView.py	2005-03-31 03:44:15 UTC (rev 95)
+++ trunk/source/python/AvidaGui2/pyGraphView.py	2005-03-31 09:26:09 UTC (rev 96)
@@ -1,8 +1,8 @@
 # -*- coding: utf-8 -*-
 
-# Form implementation generated from reading ui file '/Users/kaben/Projects/Software/Avida/svn/avida2/trunk/source/bindings/Boost.Python/AvidaGui2/pyGraphView.ui'
+# Form implementation generated from reading ui file 'pyGraphView.ui'
 #
-# Created: Mon Feb 28 00:31:01 2005
+# Created: Thu Mar 31 04:19:19 2005
 #      by: The PyQt User Interface Compiler (pyuic) 3.13
 #
 # WARNING! All changes made in this file will be lost!
@@ -12,25 +12,25 @@
 
 
 class pyGraphView(QWidget):
-  def __init__(self,parent = None,name = None,fl = 0):
-    QWidget.__init__(self,parent,name,fl)
+    def __init__(self,parent = None,name = None,fl = 0):
+        QWidget.__init__(self,parent,name,fl)
 
-    if not name:
-      self.setName("pyGraphView")
+        if not name:
+            self.setName("pyGraphView")
 
 
-    pyGraphViewLayout = QVBoxLayout(self,0,0,"pyGraphViewLayout")
-    pyGraphViewLayout.setResizeMode(QLayout.Minimum)
+        pyGraphViewLayout = QVBoxLayout(self,0,0,"pyGraphViewLayout")
+        pyGraphViewLayout.setResizeMode(QLayout.Minimum)
 
-    self.languageChange()
+        self.languageChange()
 
-    self.resize(QSize(161,51).expandedTo(self.minimumSizeHint()))
-    self.clearWState(Qt.WState_Polished)
+        self.resize(QSize(161,51).expandedTo(self.minimumSizeHint()))
+        self.clearWState(Qt.WState_Polished)
 
 
-  def languageChange(self):
-    self.setCaption(self.__tr("pyGraphView"))
+    def languageChange(self):
+        self.setCaption(self.__tr("pyGraphView"))
 
 
-  def __tr(self,s,c = None):
-    return qApp.translate("pyGraphView",s,c)
+    def __tr(self,s,c = None):
+        return qApp.translate("pyGraphView",s,c)

Modified: trunk/source/python/AvidaGui2/pyLiveControlsView.py
===================================================================
--- trunk/source/python/AvidaGui2/pyLiveControlsView.py	2005-03-31 03:44:15 UTC (rev 95)
+++ trunk/source/python/AvidaGui2/pyLiveControlsView.py	2005-03-31 09:26:09 UTC (rev 96)
@@ -1,9 +1,9 @@
 # -*- coding: utf-8 -*-
 
-# Form implementation generated from reading ui file '/Users/kaben/Projects/Software/Avida/branch.kaben/avida--current--2.0--base-0/source/bindings/Boost.Python/AvidaGui2/pyLiveControlsView.ui'
+# Form implementation generated from reading ui file 'pyLiveControlsView.ui'
 #
-# Created: Fri Dec 3 10:26:50 2004
-#      by: The PyQt User Interface Compiler (pyuic) 3.12
+# Created: Thu Mar 31 04:19:20 2005
+#      by: The PyQt User Interface Compiler (pyuic) 3.13
 #
 # WARNING! All changes made in this file will be lost!
 
@@ -11,540 +11,541 @@
 from qt import *
 
 image0_data = \
-  "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
-  "\x49\x48\x44\x52\x00\x00\x00\x27\x00\x00\x00\x27" \
-  "\x08\x06\x00\x00\x00\x8c\xa3\x51\x35\x00\x00\x0a" \
-  "\xca\x49\x44\x41\x54\x78\x9c\xad\x58\x5b\x6c\x54" \
-  "\xc7\x19\xfe\xe6\xb2\x67\x8f\xb3\x5e\xdb\x7b\xf7" \
-  "\x2e\x1b\x63\x0c\x06\x6c\xe3\x62\x17\xc9\x76\x9c" \
-  "\x98\xc4\x98\x4b\xb9\x24\xd0\x28\x0d\x95\x22\xf5" \
-  "\x25\x88\x87\xf6\xa1\x4f\xf4\xad\x80\x48\x23\xa5" \
-  "\x7d\xa7\x0f\x11\x95\xa2\x4a\x48\x8d\xa8\xd2\xaa" \
-  "\x54\x75\x2b\x27\x10\x94\x04\xe2\xa8\x14\x82\xaf" \
-  "\xd8\x1b\xdf\x64\x6c\xb3\xb6\x77\xf7\xac\xed\xbd" \
-  "\x9c\xbd\x4c\x1f\xce\xd9\xb3\xc7\xc6\xc6\xd0\x74" \
-  "\xa4\xd1\xce\x39\xfb\xcf\xcc\x37\xdf\xff\xfd\x33" \
-  "\xff\x19\x22\x84\xc0\xf3\x16\x42\x88\x0c\xc0\x06" \
-  "\xe0\x05\x00\x32\x00\x2b\x00\x0e\x80\x01\xc8\x01" \
-  "\xc8\x02\x48\x03\x48\x01\x48\x00\x58\x11\x42\xa4" \
-  "\x9e\x7b\x9e\x67\x05\x47\x08\xa1\x65\x65\x65\x15" \
-  "\xb2\x2c\x3b\xaa\xaa\xaa\x76\xf9\xfd\xfe\xe6\xd2" \
-  "\xd2\xd2\x5d\x92\x24\xd5\x70\xce\x83\x94\x52\x17" \
-  "\x21\xc4\x26\x84\x58\xc9\xe7\xf3\x8b\xd9\x6c\x76" \
-  "\x5a\x55\xd5\xb1\xe5\xe5\xe5\x87\xb3\xb3\xb3\xf7" \
-  "\xa6\xa6\xa6\x1e\xa6\x52\xa9\x68\x3c\x1e\x8f\x09" \
-  "\x21\xf2\xff\x37\x70\x75\x75\x75\xae\x74\x3a\xed" \
-  "\xae\xaf\xaf\xff\x91\xc3\xe1\x78\xc5\xed\x72\xbf" \
-  "\x5c\x55\x55\xe5\x0f\x04\x02\xf0\x78\x3d\x70\x39" \
-  "\x5d\xb0\xdb\xed\xb0\x5a\xad\x48\xa7\xd3\x58\x5a" \
-  "\x5a\xc2\x62\x64\x11\xf3\xe1\x79\xcc\xcc\xcc\x60" \
-  "\x6a\x6a\x6a\x76\x61\x71\xe1\xab\x68\x34\xfa\xe5" \
-  "\xe0\xe0\xe0\x3f\xad\x56\xeb\xc2\xd0\xd0\xd0\xe2" \
-  "\xf7\x02\xd7\xde\xde\x5e\xb2\xb2\xb2\x52\xb9\x75" \
-  "\xeb\xd6\x43\x0e\x87\xe3\x58\xcd\xb6\x6d\x47\x77" \
-  "\xed\xde\x2d\xed\xac\xdd\x89\xca\x4a\x9f\x66\x24" \
-  "\x08\x40\x04\x84\x00\x08\x00\x01\x02\x42\x04\xb4" \
-  "\x27\x40\x40\xe0\xf1\xdc\x63\x8c\x8e\x8e\x60\x78" \
-  "\x78\x58\x1d\x1b\x1f\xef\x8e\x46\xa3\xff\x98\x9c" \
-  "\x9c\xec\xb1\xd9\x6c\x73\xb7\x6f\xdf\x4e\x3e\x37" \
-  "\xb8\xce\xce\xce\x8a\x4c\x26\xb3\xa5\xba\xba\xfa" \
-  "\x4c\x20\x10\x78\xab\xa9\xa9\x29\xb8\x77\xef\x5e" \
-  "\x38\x2a\x1c\x9b\x2d\x78\xc3\x12\x8d\x46\xf1\xed" \
-  "\x83\x6f\x71\xff\xfe\xfd\xe9\x99\x99\x99\x3f\x4f" \
-  "\x4c\x4c\x5c\xb1\x58\x2c\x8f\x6e\xde\xbc\x19\x7b" \
-  "\x66\x70\x6f\xbe\xf9\xa6\x8b\x52\xfa\x03\xbb\xdd" \
-  "\x7e\xb6\xbe\xae\xfe\x74\x4b\x6b\x0b\xd9\x59\x5b" \
-  "\x8b\x02\x1b\x00\x60\x74\x23\x02\x10\x04\xc4\xf8" \
-  "\x4b\x40\x14\x38\x14\xd0\xfa\x10\xc0\x30\x07\x30" \
-  "\x32\x3a\x82\xde\xde\x6f\xc4\xd0\xd0\xe0\xc7\x4b" \
-  "\x4b\x4b\x1f\xe6\xf3\xf9\x07\x9f\x7c\xf2\xc9\x13" \
-  "\x6e\x7e\x02\xdc\x99\x33\x67\x9c\xaa\xaa\xfe\x50" \
-  "\x92\xa4\x5f\x34\x37\x35\x9f\xea\xe8\xe8\x80\xd7" \
-  "\xe3\x2d\xf8\xcc\x34\x51\xe1\x41\x00\x84\xc0\xf0" \
-  "\xa4\x10\x10\x3a\x52\xed\x51\xff\xdf\xbc\x28\x02" \
-  "\xcc\x87\xc3\xf8\xe2\xcb\x2f\x70\xef\xde\xbd\xbf" \
-  "\xaa\xaa\x7a\x59\x92\xa4\xff\x5c\xb9\x72\x25\x62" \
-  "\xc6\x42\xcd\x0f\xe7\xce\x9d\xb3\x71\xce\x6b\x64" \
-  "\x59\x3e\xdb\xdc\xdc\x7c\xea\xc0\x81\x03\xf0\xfa" \
-  "\xbc\x45\x2b\x7d\x06\x42\x00\x42\xc8\xaa\x5f\x18" \
-  "\x95\x18\x4d\xcd\x56\x07\x56\xe8\x4b\x35\x7b\xaf" \
-  "\xcf\x87\xae\xce\x03\x68\x6e\x6e\x3e\x25\xcb\xf2" \
-  "\x59\xce\x79\xcd\xb9\x73\xe7\x6c\x66\x3c\x7c\x0d" \
-  "\x93\xdb\x28\xa5\xef\x6e\xdf\xbe\xfd\xad\xfd\x1d" \
-  "\xfb\xe1\x74\x3a\xcd\x9e\x5c\xbf\x98\x91\x14\x96" \
-  "\xbb\x51\x8c\x15\x11\x03\x02\x70\x38\x9d\xd8\xdf" \
-  "\xb1\x1f\xc9\x44\xf2\xad\xb1\xf1\xb1\x45\x00\x97" \
-  "\x01\xf4\x9b\x87\x02\x00\x5c\xbc\x78\x31\x98\xcb" \
-  "\xe5\x8e\x95\x97\x97\xbf\xd1\xd6\xd6\x46\x7c\x3e" \
-  "\x9f\xb1\x6a\x02\xa2\x33\xb4\x41\xc5\x06\xed\x67" \
-  "\xb0\xf7\xf9\x7c\x68\x7b\xa9\x8d\xd8\x6c\xb6\x37" \
-  "\x72\xb9\xdc\xb1\x8b\x17\x2f\x06\x57\x81\xbb\x76" \
-  "\xed\x1a\xb3\xd9\x6c\xdb\x32\x99\xcc\xa1\xa6\xbd" \
-  "\x4d\x81\xdd\xbb\x77\x69\xee\x21\x04\x20\x54\xd3" \
-  "\x34\x21\x45\xb7\x99\xda\xd0\xdb\x66\x37\x63\x8d" \
-  "\x9b\x61\x02\x66\x1e\xa3\x50\x77\xee\xdc\x89\x9a" \
-  "\x6d\x35\x81\x4c\x26\x73\xc8\x66\xb3\x6d\xbb\x76" \
-  "\xed\x1a\x33\xc0\x29\x8a\x52\xa5\x28\xca\x09\xaf" \
-  "\xd7\xbb\xbf\xa9\xb9\x19\x00\x05\xd5\x3b\x52\xbd" \
-  "\x82\x10\x50\x42\x91\x4a\x26\xf0\xc1\x6f\x3f\xc0" \
-  "\x77\xa1\xef\x40\x09\xf4\x5a\x58\x00\xd5\xfb\x50" \
-  "\x53\x35\x6b\x93\x80\x90\xe2\xd8\x84\x00\x94\x31" \
-  "\xac\xac\xac\x20\xf8\x62\x10\x76\xbb\x7d\xbf\xa2" \
-  "\x28\x27\x14\x45\xa9\x32\x34\xc7\x18\xab\x4a\x24" \
-  "\x12\xfb\x9a\x9a\x9a\x24\x97\xcb\xb5\x46\x26\x02" \
-  "\x02\xb4\x28\x25\x42\xd1\xdf\xdf\x8f\xfe\xfe\x7e" \
-  "\xd4\xd7\x37\xe0\xf4\xdb\x3f\xc1\x8e\xda\x5a\x10" \
-  "\x50\x3d\xa0\x8d\x8d\xc4\x08\x70\x6a\x12\x25\x31" \
-  "\x62\x9d\x18\xa3\x2e\x2e\x2c\xc2\x6e\xb7\x23\x18" \
-  "\x0c\x4a\xa1\x50\x68\x1f\x63\xac\x0a\xc0\x38\x6b" \
-  "\x68\x68\x70\xc6\x62\xb1\xa3\x4b\x4b\x4b\x6f\x1f" \
-  "\xec\xea\x7a\xa1\xcc\x5e\xa6\xad\x8a\xae\xaf\x9f" \
-  "\x6c\x36\x8b\xeb\x7f\xbb\x0e\x02\x82\x85\xf9\x79" \
-  "\x7c\xfe\xf9\x2d\x0c\x3f\x1c\x46\xc0\x1f\x80\xd3" \
-  "\xe5\x32\xb1\xb2\xb6\xe2\x89\x77\x8c\x33\x44\x63" \
-  "\x51\x2c\x46\x16\x41\x29\x85\x64\x95\x30\x31\x31" \
-  "\x51\x6e\xb7\xdb\x43\x93\x93\x93\x23\x54\x92\xa4" \
-  "\x4a\x45\x51\xf6\x04\xb7\x04\x5d\xfe\xc0\x16\x5d" \
-  "\x17\x4f\x02\xc3\x86\x9a\x02\x06\x07\x07\x71\xe1" \
-  "\xe2\x05\xbc\xff\xfe\x6f\x30\x1a\x0a\xad\xb2\x2d" \
-  "\x6e\x35\xab\x81\x32\xce\x91\x48\x24\x10\x0e\x87" \
-  "\xc1\x18\x05\x63\x14\x2e\xa7\x0b\x4e\xa7\xd3\xa5" \
-  "\x28\xca\x1e\x49\x92\x2a\xa9\x2c\xcb\xbe\x44\x22" \
-  "\x51\x1d\x7c\x31\xb8\x4a\x0b\x05\x40\x85\x41\xa9" \
-  "\xae\x17\x52\x3c\x0a\x9e\x28\x83\x83\x83\xb8\x70" \
-  "\xe1\x3c\xde\x7b\xef\x12\x42\xa1\xef\x56\xe9\xcc" \
-  "\xd0\x23\x25\x60\x8c\x61\x69\x29\x8e\xe9\xe9\x69" \
-  "\xe4\xf3\x79\x30\xc6\x41\x29\x05\x65\x0c\x1e\xaf" \
-  "\x17\x89\x44\xa2\x5a\x96\x65\x1f\xb5\x58\x2c\x95" \
-  "\xa9\x54\x2a\xe0\xaf\xf4\x1b\xa0\x8c\x60\xa0\xeb" \
-  "\xbb\x47\xdf\x5c\x8a\xec\xae\x69\x0f\x0f\x0d\xe3" \
-  "\xfc\xf9\xf3\xb8\x74\xe9\x12\x46\x43\xa3\x9a\x0b" \
-  "\xa9\xc6\x8e\x10\x02\xf3\x8b\x0b\x98\x79\xf4\x08" \
-  "\x79\x91\x07\xe7\x3a\x30\xca\xc0\x28\x85\xcb\xe9" \
-  "\x44\x2a\x95\x0a\x58\x2c\x96\x4a\x2e\x49\x92\x53" \
-  "\x55\x55\xb7\xdb\xeb\xd1\x42\x4f\x40\x97\xb0\x28" \
-  "\x1c\x8b\xba\xb8\x85\x11\x10\x4f\x90\x47\xd6\x6f" \
-  "\x0f\x0d\x0f\xe1\xfc\xf9\xf3\xa8\xaf\xab\xc3\xdb" \
-  "\xa7\x4f\xc3\xe7\xf3\x21\xae\xc4\x91\x56\xd3\xa0" \
-  "\x8c\xad\xeb\x05\x87\xc3\x01\x55\x55\xdd\x92\x24" \
-  "\x39\xb9\xd5\x6a\x75\x64\xb3\x59\x7b\x45\x59\xb9" \
-  "\xb1\x25\x08\x00\x44\x68\x71\xa5\xb1\xa9\xc7\x9c" \
-  "\x80\xb6\xad\x3c\xad\x08\x2d\x62\x85\xd0\x6a\x3e" \
-  "\x9f\xc7\xbd\xfb\xf7\xf1\xef\xbb\x77\x51\x53\x53" \
-  "\x83\xe3\xc7\x8f\x63\xfb\xf6\xed\xa6\xa3\x5a\x8f" \
-  "\x5f\x22\x00\x01\x94\x96\x96\x22\x9b\xcd\xda\xad" \
-  "\x56\xab\x83\x72\xce\x4b\x73\xb9\x9c\x55\x96\xad" \
-  "\x86\x70\xa9\x2e\x74\x6a\x88\x5e\xd7\x21\xd5\xa2" \
-  "\x18\xd0\x0e\xf4\x5c\x36\x8b\x4c\x26\x03\x55\x55" \
-  "\x91\x4e\xa7\x91\x4a\xa5\x90\x4c\x25\x91\x4a\xa5" \
-  "\x90\x4e\xa7\x91\x4e\xa7\x91\xc9\x64\x90\xcb\xe5" \
-  "\x00\x00\xe3\xe3\xe3\xb8\x7c\xf9\x32\xee\xde\xbd" \
-  "\x0b\xc6\x39\x38\xe7\x60\x9c\x81\x33\x06\x4e\x39" \
-  "\x38\xe3\x28\x29\x79\x01\xb9\x5c\xce\xca\x39\x2f" \
-  "\xe5\x92\x24\x11\xc6\x58\x5a\x55\x33\x56\xb9\x44" \
-  "\x46\x21\x9f\x28\x10\x44\xf4\x73\x92\x50\x82\x4c" \
-  "\x26\x83\xa5\xf8\x12\x54\x55\x45\x3e\x9f\xc3\x66" \
-  "\x49\xb4\xd9\x6d\x94\x52\xb4\xb4\xb4\xe0\xc8\x91" \
-  "\x23\xf0\x79\xbd\x28\x4c\x50\x48\x52\x0b\xb4\xa7" \
-  "\x55\x15\x8c\xb1\xb4\x24\x49\x84\x73\xce\x55\x59" \
-  "\x96\x93\xf1\x78\xdc\x2a\x97\x94\xe8\xda\xd2\xc0" \
-  "\x09\x21\x0c\xa6\x56\x56\x12\x50\x94\x18\x14\x45" \
-  "\x41\x3e\x9f\x5f\xb5\x80\xa7\x15\x4a\x29\x5a\x5b" \
-  "\x5b\x71\xec\xe8\x31\xb8\xbd\x1e\xac\x5d\x91\x49" \
-  "\xcd\x00\x80\x64\x32\x09\x59\x96\x93\x9c\x73\x95" \
-  "\x73\xce\x15\xbb\xdd\xbe\x3c\xbf\x30\x5f\xe1\xab" \
-  "\xf4\xa1\x10\x89\x80\x00\x65\x14\xd9\x4c\x16\x8a" \
-  "\xa2\x20\x99\xd4\xb2\x69\x49\x92\x9e\xba\x9d\x98" \
-  "\x41\xb5\xb5\xb5\xe1\xf8\xf1\xe3\xf0\x78\x3c\x9b" \
-  "\xaf\x42\x2f\xf1\x78\x1c\x76\xbb\x7d\x99\x73\xae" \
-  "\x70\x8b\xc5\x12\x76\xb9\x5c\xf1\xb9\xb9\x39\x34" \
-  "\x36\x36\x16\x57\x44\x28\x72\xb9\x1c\x62\x31\x05" \
-  "\xaa\xaa\x82\x73\x6e\x4c\xfa\x34\x70\x94\x52\xbc" \
-  "\xd4\xd6\x86\xe3\x27\x4e\x68\xb9\xa0\x41\x8a\x91" \
-  "\x6e\xea\x19\x13\x29\x66\x9e\x26\xe6\x22\x91\x08" \
-  "\x5c\x2e\x57\xdc\x62\xb1\x84\x39\x63\x6c\x7a\xcb" \
-  "\x96\x2d\xf1\xa9\xa9\x29\x83\x31\x42\x08\x72\xf9" \
-  "\x3c\x14\x45\x81\x10\x39\x58\x24\x8b\xae\x3d\x01" \
-  "\xce\xf8\xba\xe0\x28\xa5\x78\xa9\xbd\x1d\x27\xdf" \
-  "\x38\x09\x8f\xdb\x05\x53\x86\xae\x47\xb0\x9e\xbd" \
-  "\xe8\x22\x13\x20\x85\x00\x35\xb6\x2d\x08\x60\x6e" \
-  "\x6e\x0e\x5b\xb7\x6e\x8d\x33\xc6\xa6\x39\x21\x24" \
-  "\x54\x5b\x5b\x3b\xfb\xe0\xc1\x83\xe4\xcc\xec\xa3" \
-  "\x92\xc0\x16\x2d\x9d\x4a\x24\x12\xc6\xee\xad\x0d" \
-  "\xaa\x81\x60\x6b\xf6\x27\x4a\x29\xda\xdb\xdb\x71" \
-  "\xf2\xe4\x49\x78\xbc\x9e\x22\x13\x62\x0d\x38\x83" \
-  "\xb8\x22\x83\x66\x4e\x05\x01\xc2\x73\x8f\x11\x8b" \
-  "\xc5\x92\x07\x0f\x1e\x9c\x25\x84\x84\x78\x20\x10" \
-  "\x98\xb2\x58\x2c\xdf\x78\x3c\x9e\x7d\x03\x03\x83" \
-  "\x55\xc1\xe0\x8b\x48\xa7\xd3\xc8\x66\xb3\xb0\x58" \
-  "\x2c\x4f\x30\xc4\x38\xd3\x4f\x0f\x8a\x8e\x8e\x0e" \
-  "\x0d\xd4\x73\x68\xea\x69\x65\x34\x14\x82\xd7\xeb" \
-  "\x9d\xf7\xfb\xfd\xdf\x78\x3c\x9e\xa9\x42\xca\x74" \
-  "\xb7\xa1\xa1\x21\xd6\xdb\xdb\x1b\xdc\xb7\x6f\x1f" \
-  "\x95\x65\x19\x8c\xf3\x75\x33\x74\x49\x92\xd0\xd9" \
-  "\xd9\x89\x53\xa7\x4e\x6d\x0a\x4a\xdb\xcc\x51\xdc" \
-  "\xd8\x9f\x62\x1b\x89\x44\x30\x3a\x3a\x9a\x6f\x6f" \
-  "\x6f\x8f\x31\xc6\xee\x02\xc5\xaf\x2f\xab\xa2\x28" \
-  "\xef\x5d\xbd\x7a\xf5\x67\x7e\xbf\xdf\xf7\xda\x6b" \
-  "\xaf\x15\x07\xdf\x74\x76\xf3\x67\xdf\x66\x3d\xc4" \
-  "\x6a\x2b\x53\xff\xcf\x3e\xfd\x14\xf3\xf3\xf3\x8f" \
-  "\xdf\x79\xe7\x9d\x3f\x96\x97\x97\xff\x1a\x40\xba" \
-  "\xf0\x0d\x91\x06\xd0\xd3\xd2\xd2\xf2\x78\x64\x64" \
-  "\x24\xf5\xf0\xe1\x43\x30\x46\xc1\x19\x03\x65\x14" \
-  "\x94\x51\x30\xc6\xc0\xf4\x36\xa5\xda\x33\xe5\x0c" \
-  "\x8c\x31\x70\x46\xc1\x28\x03\x65\x1c\x94\x32\x3d" \
-  "\xc3\x28\xf6\x61\x85\x77\x94\x83\x51\x06\xae\x27" \
-  "\x01\x8c\x6b\x63\x8d\x8e\x8c\x60\x6c\x6c\x2c\xd5" \
-  "\xd2\xd2\xf2\x18\x40\x8f\x8e\xa7\xf8\xf5\x55\x5e" \
-  "\x5e\xde\x53\x57\x57\x77\x75\x76\x76\xf6\x97\x77" \
-  "\xee\xdc\x09\xb8\x3d\x6e\xf8\x2b\xfd\xc0\xaa\x2d" \
-  "\xd2\x4c\x80\xb6\x64\x23\x36\x84\xd0\x6e\x26\x60" \
-  "\x66\xb2\x10\x1c\xe6\x8d\x76\x75\x9e\x3c\x3b\x37" \
-  "\x87\xdb\xb7\x6f\xa3\xbe\xbe\x3e\x52\x57\x57\x77" \
-  "\xd5\x66\xb3\xf5\x14\xa6\x59\xf5\xdd\xca\x18\xfb" \
-  "\xb8\xab\xab\xeb\xef\x1e\x8f\x27\x72\xe3\xb3\x1b" \
-  "\x88\x46\xa3\x7a\x2a\xb3\xa6\x32\x66\xa4\x40\x1a" \
-  "\x23\x5a\x2e\xa6\x31\x54\xb4\x2b\xa4\x42\x45\x16" \
-  "\x75\x26\x75\x8f\x44\x63\x31\xdc\xb8\x71\x03\x1e" \
-  "\x8f\x27\xd2\xd5\xd5\xf5\x77\xc6\xd8\xc7\x66\x3c" \
-  "\xab\xc0\xc9\xb2\x3c\x49\x08\xf9\xe8\xf0\xe1\xc3" \
-  "\x77\x24\x49\x8a\x77\x77\x77\x23\x1c\x7e\xac\x4d" \
-  "\xc8\x34\x00\x85\xbc\xab\x00\x92\x9a\x5d\x4f\xf5" \
-  "\x67\xb3\x5b\x69\xd1\x46\x73\xb1\xf6\x3e\x1c\x0e" \
-  "\xa3\xbb\xbb\x1b\x92\x24\xc5\x0f\x1f\x3e\x7c\x87" \
-  "\x10\xf2\x91\x2c\xcb\x93\x66\x3c\xeb\xde\x95\xa4" \
-  "\x52\xa9\xce\xe5\xe5\xe5\x5f\xf5\xf4\xf4\xbc\x12" \
-  "\x0e\x87\x4b\x5f\x7d\xf5\x55\xec\xd9\xb3\xc7\xac" \
-  "\xe9\xef\x55\xfa\xfb\xfb\x71\xeb\xd6\x2d\x78\xbd" \
-  "\xde\xe5\x43\x87\x0e\x7d\x59\x5a\x5a\xfa\x3b\x59" \
-  "\x96\x6f\xae\xb5\xdb\xf0\x96\x29\x9b\xcd\xbe\x2c" \
-  "\x84\xf8\xf9\xcd\x9b\x37\x5f\xef\xeb\xeb\x2b\xa9" \
-  "\xad\xad\xe5\x6d\x6d\xad\x70\xb9\xdd\x28\xdc\x7c" \
-  "\x08\xb3\xe6\x9e\xa1\x2c\x2c\x2c\xe0\xeb\xaf\xbf" \
-  "\xc6\xe8\xe8\x68\xb6\xb1\xb1\x31\xd9\xd9\xd9\x79" \
-  "\x9d\x10\xf2\x7b\xce\xf9\x57\xeb\xd9\x6f\x76\x79" \
-  "\x58\x93\xcd\x66\xdf\x0d\x85\x42\x67\x7b\x7b\x7b" \
-  "\xed\xe1\x70\x58\x6a\x68\x68\x20\x8d\x8d\x8d\x08" \
-  "\x06\x83\x6b\x4c\x4d\xc7\xc8\x6a\xed\x63\x7a\x7a" \
-  "\x1a\x7d\x7d\x7d\x18\x18\x18\x10\x5e\xaf\x57\x6d" \
-  "\x6d\x6d\x5d\xda\xb1\x63\xc7\x87\x9c\xf3\x3f\x00" \
-  "\x18\xdb\x68\xf2\x67\xba\xd9\xcc\xe5\x72\x3f\x06" \
-  "\xf0\xd3\x81\x81\x81\xd7\xfb\xfa\xfa\xf8\xc4\xc4" \
-  "\x04\x73\x3a\x9d\xb4\xba\xba\x1a\x81\x40\x00\x5e" \
-  "\xaf\x17\x15\x15\x15\x90\x65\x19\xa9\x54\x0a\xb1" \
-  "\x58\x0c\xe1\x70\x18\x33\x33\x33\x98\x98\x98\x40" \
-  "\x24\x12\xc9\x57\x57\x57\xe7\x1a\x1b\x1b\xb3\x0d" \
-  "\x0d\x0d\xd7\x01\xfc\x89\x31\xf6\x97\xcd\xe6\x7d" \
-  "\xe6\x3b\x61\x00\x25\xb9\x5c\xee\x75\x42\xc8\x91" \
-  "\xc5\xc5\xc5\xa3\x63\x63\x63\xee\xa9\xa9\x29\x32" \
-  "\x3b\x3b\x4b\x17\x16\x16\x48\x3c\x1e\x27\xa9\x54" \
-  "\x0a\xb2\x2c\xa3\xac\xac\x4c\xb8\xdd\x6e\xe1\xf7" \
-  "\xfb\xf3\x55\x55\x55\xa2\xa6\xa6\x66\xc1\xe5\x72" \
-  "\x75\x0b\x21\xfe\xc5\x18\xbb\x0e\x60\xc3\xdb\xcc" \
-  "\xff\x15\x9c\xb9\xec\x02\xd0\x0a\x60\xaf\x10\xa2" \
-  "\x0e\xc0\x36\x00\x5e\x00\x76\x00\x4b\x00\xc2\x00" \
-  "\xc6\x09\x21\x43\x00\xbe\x05\xd0\x0b\xe0\xe1\xf3" \
-  "\x4e\xf2\x5f\x67\xef\x27\x63\x41\x5f\xa3\x16\x00" \
-  "\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82"
+    "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
+    "\x49\x48\x44\x52\x00\x00\x00\x27\x00\x00\x00\x27" \
+    "\x08\x06\x00\x00\x00\x8c\xa3\x51\x35\x00\x00\x0a" \
+    "\xca\x49\x44\x41\x54\x78\x9c\xad\x58\x5b\x6c\x54" \
+    "\xc7\x19\xfe\xe6\xb2\x67\x8f\xb3\x5e\xdb\x7b\xf7" \
+    "\x2e\x1b\x63\x0c\x06\x6c\xe3\x62\x17\xc9\x76\x9c" \
+    "\x98\xc4\x98\x4b\xb9\x24\xd0\x28\x0d\x95\x22\xf5" \
+    "\x25\x88\x87\xf6\xa1\x4f\xf4\xad\x80\x48\x23\xa5" \
+    "\x7d\xa7\x0f\x11\x95\xa2\x4a\x48\x8d\xa8\xd2\xaa" \
+    "\x54\x75\x2b\x27\x10\x94\x04\xe2\xa8\x14\x82\xaf" \
+    "\xd8\x1b\xdf\x64\x6c\xb3\xb6\x77\xf7\xac\xed\xbd" \
+    "\x9c\xbd\x4c\x1f\xce\xd9\xb3\xc7\xc6\xc6\xd0\x74" \
+    "\xa4\xd1\xce\x39\xfb\xcf\xcc\x37\xdf\xff\xfd\x33" \
+    "\xff\x19\x22\x84\xc0\xf3\x16\x42\x88\x0c\xc0\x06" \
+    "\xe0\x05\x00\x32\x00\x2b\x00\x0e\x80\x01\xc8\x01" \
+    "\xc8\x02\x48\x03\x48\x01\x48\x00\x58\x11\x42\xa4" \
+    "\x9e\x7b\x9e\x67\x05\x47\x08\xa1\x65\x65\x65\x15" \
+    "\xb2\x2c\x3b\xaa\xaa\xaa\x76\xf9\xfd\xfe\xe6\xd2" \
+    "\xd2\xd2\x5d\x92\x24\xd5\x70\xce\x83\x94\x52\x17" \
+    "\x21\xc4\x26\x84\x58\xc9\xe7\xf3\x8b\xd9\x6c\x76" \
+    "\x5a\x55\xd5\xb1\xe5\xe5\xe5\x87\xb3\xb3\xb3\xf7" \
+    "\xa6\xa6\xa6\x1e\xa6\x52\xa9\x68\x3c\x1e\x8f\x09" \
+    "\x21\xf2\xff\x37\x70\x75\x75\x75\xae\x74\x3a\xed" \
+    "\xae\xaf\xaf\xff\x91\xc3\xe1\x78\xc5\xed\x72\xbf" \
+    "\x5c\x55\x55\xe5\x0f\x04\x02\xf0\x78\x3d\x70\x39" \
+    "\x5d\xb0\xdb\xed\xb0\x5a\xad\x48\xa7\xd3\x58\x5a" \
+    "\x5a\xc2\x62\x64\x11\xf3\xe1\x79\xcc\xcc\xcc\x60" \
+    "\x6a\x6a\x6a\x76\x61\x71\xe1\xab\x68\x34\xfa\xe5" \
+    "\xe0\xe0\xe0\x3f\xad\x56\xeb\xc2\xd0\xd0\xd0\xe2" \
+    "\xf7\x02\xd7\xde\xde\x5e\xb2\xb2\xb2\x52\xb9\x75" \
+    "\xeb\xd6\x43\x0e\x87\xe3\x58\xcd\xb6\x6d\x47\x77" \
+    "\xed\xde\x2d\xed\xac\xdd\x89\xca\x4a\x9f\x66\x24" \
+    "\x08\x40\x04\x84\x00\x08\x00\x01\x02\x42\x04\xb4" \
+    "\x27\x40\x40\xe0\xf1\xdc\x63\x8c\x8e\x8e\x60\x78" \
+    "\x78\x58\x1d\x1b\x1f\xef\x8e\x46\xa3\xff\x98\x9c" \
+    "\x9c\xec\xb1\xd9\x6c\x73\xb7\x6f\xdf\x4e\x3e\x37" \
+    "\xb8\xce\xce\xce\x8a\x4c\x26\xb3\xa5\xba\xba\xfa" \
+    "\x4c\x20\x10\x78\xab\xa9\xa9\x29\xb8\x77\xef\x5e" \
+    "\x38\x2a\x1c\x9b\x2d\x78\xc3\x12\x8d\x46\xf1\xed" \
+    "\x83\x6f\x71\xff\xfe\xfd\xe9\x99\x99\x99\x3f\x4f" \
+    "\x4c\x4c\x5c\xb1\x58\x2c\x8f\x6e\xde\xbc\x19\x7b" \
+    "\x66\x70\x6f\xbe\xf9\xa6\x8b\x52\xfa\x03\xbb\xdd" \
+    "\x7e\xb6\xbe\xae\xfe\x74\x4b\x6b\x0b\xd9\x59\x5b" \
+    "\x8b\x02\x1b\x00\x60\x74\x23\x02\x10\x04\xc4\xf8" \
+    "\x4b\x40\x14\x38\x14\xd0\xfa\x10\xc0\x30\x07\x30" \
+    "\x32\x3a\x82\xde\xde\x6f\xc4\xd0\xd0\xe0\xc7\x4b" \
+    "\x4b\x4b\x1f\xe6\xf3\xf9\x07\x9f\x7c\xf2\xc9\x13" \
+    "\x6e\x7e\x02\xdc\x99\x33\x67\x9c\xaa\xaa\xfe\x50" \
+    "\x92\xa4\x5f\x34\x37\x35\x9f\xea\xe8\xe8\x80\xd7" \
+    "\xe3\x2d\xf8\xcc\x34\x51\xe1\x41\x00\x84\xc0\xf0" \
+    "\xa4\x10\x10\x3a\x52\xed\x51\xff\xdf\xbc\x28\x02" \
+    "\xcc\x87\xc3\xf8\xe2\xcb\x2f\x70\xef\xde\xbd\xbf" \
+    "\xaa\xaa\x7a\x59\x92\xa4\xff\x5c\xb9\x72\x25\x62" \
+    "\xc6\x42\xcd\x0f\xe7\xce\x9d\xb3\x71\xce\x6b\x64" \
+    "\x59\x3e\xdb\xdc\xdc\x7c\xea\xc0\x81\x03\xf0\xfa" \
+    "\xbc\x45\x2b\x7d\x06\x42\x00\x42\xc8\xaa\x5f\x18" \
+    "\x95\x18\x4d\xcd\x56\x07\x56\xe8\x4b\x35\x7b\xaf" \
+    "\xcf\x87\xae\xce\x03\x68\x6e\x6e\x3e\x25\xcb\xf2" \
+    "\x59\xce\x79\xcd\xb9\x73\xe7\x6c\x66\x3c\x7c\x0d" \
+    "\x93\xdb\x28\xa5\xef\x6e\xdf\xbe\xfd\xad\xfd\x1d" \
+    "\xfb\xe1\x74\x3a\xcd\x9e\x5c\xbf\x98\x91\x14\x96" \
+    "\xbb\x51\x8c\x15\x11\x03\x02\x70\x38\x9d\xd8\xdf" \
+    "\xb1\x1f\xc9\x44\xf2\xad\xb1\xf1\xb1\x45\x00\x97" \
+    "\x01\xf4\x9b\x87\x02\x00\x5c\xbc\x78\x31\x98\xcb" \
+    "\xe5\x8e\x95\x97\x97\xbf\xd1\xd6\xd6\x46\x7c\x3e" \
+    "\x9f\xb1\x6a\x02\xa2\x33\xb4\x41\xc5\x06\xed\x67" \
+    "\xb0\xf7\xf9\x7c\x68\x7b\xa9\x8d\xd8\x6c\xb6\x37" \
+    "\x72\xb9\xdc\xb1\x8b\x17\x2f\x06\x57\x81\xbb\x76" \
+    "\xed\x1a\xb3\xd9\x6c\xdb\x32\x99\xcc\xa1\xa6\xbd" \
+    "\x4d\x81\xdd\xbb\x77\x69\xee\x21\x04\x20\x54\xd3" \
+    "\x34\x21\x45\xb7\x99\xda\xd0\xdb\x66\x37\x63\x8d" \
+    "\x9b\x61\x02\x66\x1e\xa3\x50\x77\xee\xdc\x89\x9a" \
+    "\x6d\x35\x81\x4c\x26\x73\xc8\x66\xb3\x6d\xbb\x76" \
+    "\xed\x1a\x33\xc0\x29\x8a\x52\xa5\x28\xca\x09\xaf" \
+    "\xd7\xbb\xbf\xa9\xb9\x19\x00\x05\xd5\x3b\x52\xbd" \
+    "\x82\x10\x50\x42\x91\x4a\x26\xf0\xc1\x6f\x3f\xc0" \
+    "\x77\xa1\xef\x40\x09\xf4\x5a\x58\x00\xd5\xfb\x50" \
+    "\x53\x35\x6b\x93\x80\x90\xe2\xd8\x84\x00\x94\x31" \
+    "\xac\xac\xac\x20\xf8\x62\x10\x76\xbb\x7d\xbf\xa2" \
+    "\x28\x27\x14\x45\xa9\x32\x34\xc7\x18\xab\x4a\x24" \
+    "\x12\xfb\x9a\x9a\x9a\x24\x97\xcb\xb5\x46\x26\x02" \
+    "\x02\xb4\x28\x25\x42\xd1\xdf\xdf\x8f\xfe\xfe\x7e" \
+    "\xd4\xd7\x37\xe0\xf4\xdb\x3f\xc1\x8e\xda\x5a\x10" \
+    "\x50\x3d\xa0\x8d\x8d\xc4\x08\x70\x6a\x12\x25\x31" \
+    "\x62\x9d\x18\xa3\x2e\x2e\x2c\xc2\x6e\xb7\x23\x18" \
+    "\x0c\x4a\xa1\x50\x68\x1f\x63\xac\x0a\xc0\x38\x6b" \
+    "\x68\x68\x70\xc6\x62\xb1\xa3\x4b\x4b\x4b\x6f\x1f" \
+    "\xec\xea\x7a\xa1\xcc\x5e\xa6\xad\x8a\xae\xaf\x9f" \
+    "\x6c\x36\x8b\xeb\x7f\xbb\x0e\x02\x82\x85\xf9\x79" \
+    "\x7c\xfe\xf9\x2d\x0c\x3f\x1c\x46\xc0\x1f\x80\xd3" \
+    "\xe5\x32\xb1\xb2\xb6\xe2\x89\x77\x8c\x33\x44\x63" \
+    "\x51\x2c\x46\x16\x41\x29\x85\x64\x95\x30\x31\x31" \
+    "\x51\x6e\xb7\xdb\x43\x93\x93\x93\x23\x54\x92\xa4" \
+    "\x4a\x45\x51\xf6\x04\xb7\x04\x5d\xfe\xc0\x16\x5d" \
+    "\x17\x4f\x02\xc3\x86\x9a\x02\x06\x07\x07\x71\xe1" \
+    "\xe2\x05\xbc\xff\xfe\x6f\x30\x1a\x0a\xad\xb2\x2d" \
+    "\x6e\x35\xab\x81\x32\xce\x91\x48\x24\x10\x0e\x87" \
+    "\xc1\x18\x05\x63\x14\x2e\xa7\x0b\x4e\xa7\xd3\xa5" \
+    "\x28\xca\x1e\x49\x92\x2a\xa9\x2c\xcb\xbe\x44\x22" \
+    "\x51\x1d\x7c\x31\xb8\x4a\x0b\x05\x40\x85\x41\xa9" \
+    "\xae\x17\x52\x3c\x0a\x9e\x28\x83\x83\x83\xb8\x70" \
+    "\xe1\x3c\xde\x7b\xef\x12\x42\xa1\xef\x56\xe9\xcc" \
+    "\xd0\x23\x25\x60\x8c\x61\x69\x29\x8e\xe9\xe9\x69" \
+    "\xe4\xf3\x79\x30\xc6\x41\x29\x05\x65\x0c\x1e\xaf" \
+    "\x17\x89\x44\xa2\x5a\x96\x65\x1f\xb5\x58\x2c\x95" \
+    "\xa9\x54\x2a\xe0\xaf\xf4\x1b\xa0\x8c\x60\xa0\xeb" \
+    "\xbb\x47\xdf\x5c\x8a\xec\xae\x69\x0f\x0f\x0d\xe3" \
+    "\xfc\xf9\xf3\xb8\x74\xe9\x12\x46\x43\xa3\x9a\x0b" \
+    "\xa9\xc6\x8e\x10\x02\xf3\x8b\x0b\x98\x79\xf4\x08" \
+    "\x79\x91\x07\xe7\x3a\x30\xca\xc0\x28\x85\xcb\xe9" \
+    "\x44\x2a\x95\x0a\x58\x2c\x96\x4a\x2e\x49\x92\x53" \
+    "\x55\x55\xb7\xdb\xeb\xd1\x42\x4f\x40\x97\xb0\x28" \
+    "\x1c\x8b\xba\xb8\x85\x11\x10\x4f\x90\x47\xd6\x6f" \
+    "\x0f\x0d\x0f\xe1\xfc\xf9\xf3\xa8\xaf\xab\xc3\xdb" \
+    "\xa7\x4f\xc3\xe7\xf3\x21\xae\xc4\x91\x56\xd3\xa0" \
+    "\x8c\xad\xeb\x05\x87\xc3\x01\x55\x55\xdd\x92\x24" \
+    "\x39\xb9\xd5\x6a\x75\x64\xb3\x59\x7b\x45\x59\xb9" \
+    "\xb1\x25\x08\x00\x44\x68\x71\xa5\xb1\xa9\xc7\x9c" \
+    "\x80\xb6\xad\x3c\xad\x08\x2d\x62\x85\xd0\x6a\x3e" \
+    "\x9f\xc7\xbd\xfb\xf7\xf1\xef\xbb\x77\x51\x53\x53" \
+    "\x83\xe3\xc7\x8f\x63\xfb\xf6\xed\xa6\xa3\x5a\x8f" \
+    "\x5f\x22\x00\x01\x94\x96\x96\x22\x9b\xcd\xda\xad" \
+    "\x56\xab\x83\x72\xce\x4b\x73\xb9\x9c\x55\x96\xad" \
+    "\x86\x70\xa9\x2e\x74\x6a\x88\x5e\xd7\x21\xd5\xa2" \
+    "\x18\xd0\x0e\xf4\x5c\x36\x8b\x4c\x26\x03\x55\x55" \
+    "\x91\x4e\xa7\x91\x4a\xa5\x90\x4c\x25\x91\x4a\xa5" \
+    "\x90\x4e\xa7\x91\x4e\xa7\x91\xc9\x64\x90\xcb\xe5" \
+    "\x00\x00\xe3\xe3\xe3\xb8\x7c\xf9\x32\xee\xde\xbd" \
+    "\x0b\xc6\x39\x38\xe7\x60\x9c\x81\x33\x06\x4e\x39" \
+    "\x38\xe3\x28\x29\x79\x01\xb9\x5c\xce\xca\x39\x2f" \
+    "\xe5\x92\x24\x11\xc6\x58\x5a\x55\x33\x56\xb9\x44" \
+    "\x46\x21\x9f\x28\x10\x44\xf4\x73\x92\x50\x82\x4c" \
+    "\x26\x83\xa5\xf8\x12\x54\x55\x45\x3e\x9f\xc3\x66" \
+    "\x49\xb4\xd9\x6d\x94\x52\xb4\xb4\xb4\xe0\xc8\x91" \
+    "\x23\xf0\x79\xbd\x28\x4c\x50\x48\x52\x0b\xb4\xa7" \
+    "\x55\x15\x8c\xb1\xb4\x24\x49\x84\x73\xce\x55\x59" \
+    "\x96\x93\xf1\x78\xdc\x2a\x97\x94\xe8\xda\xd2\xc0" \
+    "\x09\x21\x0c\xa6\x56\x56\x12\x50\x94\x18\x14\x45" \
+    "\x41\x3e\x9f\x5f\xb5\x80\xa7\x15\x4a\x29\x5a\x5b" \
+    "\x5b\x71\xec\xe8\x31\xb8\xbd\x1e\xac\x5d\x91\x49" \
+    "\xcd\x00\x80\x64\x32\x09\x59\x96\x93\x9c\x73\x95" \
+    "\x73\xce\x15\xbb\xdd\xbe\x3c\xbf\x30\x5f\xe1\xab" \
+    "\xf4\xa1\x10\x89\x80\x00\x65\x14\xd9\x4c\x16\x8a" \
+    "\xa2\x20\x99\xd4\xb2\x69\x49\x92\x9e\xba\x9d\x98" \
+    "\x41\xb5\xb5\xb5\xe1\xf8\xf1\xe3\xf0\x78\x3c\x9b" \
+    "\xaf\x42\x2f\xf1\x78\x1c\x76\xbb\x7d\x99\x73\xae" \
+    "\x70\x8b\xc5\x12\x76\xb9\x5c\xf1\xb9\xb9\x39\x34" \
+    "\x36\x36\x16\x57\x44\x28\x72\xb9\x1c\x62\x31\x05" \
+    "\xaa\xaa\x82\x73\x6e\x4c\xfa\x34\x70\x94\x52\xbc" \
+    "\xd4\xd6\x86\xe3\x27\x4e\x68\xb9\xa0\x41\x8a\x91" \
+    "\x6e\xea\x19\x13\x29\x66\x9e\x26\xe6\x22\x91\x08" \
+    "\x5c\x2e\x57\xdc\x62\xb1\x84\x39\x63\x6c\x7a\xcb" \
+    "\x96\x2d\xf1\xa9\xa9\x29\x83\x31\x42\x08\x72\xf9" \
+    "\x3c\x14\x45\x81\x10\x39\x58\x24\x8b\xae\x3d\x01" \
+    "\xce\xf8\xba\xe0\x28\xa5\x78\xa9\xbd\x1d\x27\xdf" \
+    "\x38\x09\x8f\xdb\x05\x53\x86\xae\x47\xb0\x9e\xbd" \
+    "\xe8\x22\x13\x20\x85\x00\x35\xb6\x2d\x08\x60\x6e" \
+    "\x6e\x0e\x5b\xb7\x6e\x8d\x33\xc6\xa6\x39\x21\x24" \
+    "\x54\x5b\x5b\x3b\xfb\xe0\xc1\x83\xe4\xcc\xec\xa3" \
+    "\x92\xc0\x16\x2d\x9d\x4a\x24\x12\xc6\xee\xad\x0d" \
+    "\xaa\x81\x60\x6b\xf6\x27\x4a\x29\xda\xdb\xdb\x71" \
+    "\xf2\xe4\x49\x78\xbc\x9e\x22\x13\x62\x0d\x38\x83" \
+    "\xb8\x22\x83\x66\x4e\x05\x01\xc2\x73\x8f\x11\x8b" \
+    "\xc5\x92\x07\x0f\x1e\x9c\x25\x84\x84\x78\x20\x10" \
+    "\x98\xb2\x58\x2c\xdf\x78\x3c\x9e\x7d\x03\x03\x83" \
+    "\x55\xc1\xe0\x8b\x48\xa7\xd3\xc8\x66\xb3\xb0\x58" \
+    "\x2c\x4f\x30\xc4\x38\xd3\x4f\x0f\x8a\x8e\x8e\x0e" \
+    "\x0d\xd4\x73\x68\xea\x69\x65\x34\x14\x82\xd7\xeb" \
+    "\x9d\xf7\xfb\xfd\xdf\x78\x3c\x9e\xa9\x42\xca\x74" \
+    "\xb7\xa1\xa1\x21\xd6\xdb\xdb\x1b\xdc\xb7\x6f\x1f" \
+    "\x95\x65\x19\x8c\xf3\x75\x33\x74\x49\x92\xd0\xd9" \
+    "\xd9\x89\x53\xa7\x4e\x6d\x0a\x4a\xdb\xcc\x51\xdc" \
+    "\xd8\x9f\x62\x1b\x89\x44\x30\x3a\x3a\x9a\x6f\x6f" \
+    "\x6f\x8f\x31\xc6\xee\x02\xc5\xaf\x2f\xab\xa2\x28" \
+    "\xef\x5d\xbd\x7a\xf5\x67\x7e\xbf\xdf\xf7\xda\x6b" \
+    "\xaf\x15\x07\xdf\x74\x76\xf3\x67\xdf\x66\x3d\xc4" \
+    "\x6a\x2b\x53\xff\xcf\x3e\xfd\x14\xf3\xf3\xf3\x8f" \
+    "\xdf\x79\xe7\x9d\x3f\x96\x97\x97\xff\x1a\x40\xba" \
+    "\xf0\x0d\x91\x06\xd0\xd3\xd2\xd2\xf2\x78\x64\x64" \
+    "\x24\xf5\xf0\xe1\x43\x30\x46\xc1\x19\x03\x65\x14" \
+    "\x94\x51\x30\xc6\xc0\xf4\x36\xa5\xda\x33\xe5\x0c" \
+    "\x8c\x31\x70\x46\xc1\x28\x03\x65\x1c\x94\x32\x3d" \
+    "\xc3\x28\xf6\x61\x85\x77\x94\x83\x51\x06\xae\x27" \
+    "\x01\x8c\x6b\x63\x8d\x8e\x8c\x60\x6c\x6c\x2c\xd5" \
+    "\xd2\xd2\xf2\x18\x40\x8f\x8e\xa7\xf8\xf5\x55\x5e" \
+    "\x5e\xde\x53\x57\x57\x77\x75\x76\x76\xf6\x97\x77" \
+    "\xee\xdc\x09\xb8\x3d\x6e\xf8\x2b\xfd\xc0\xaa\x2d" \
+    "\xd2\x4c\x80\xb6\x64\x23\x36\x84\xd0\x6e\x26\x60" \
+    "\x66\xb2\x10\x1c\xe6\x8d\x76\x75\x9e\x3c\x3b\x37" \
+    "\x87\xdb\xb7\x6f\xa3\xbe\xbe\x3e\x52\x57\x57\x77" \
+    "\xd5\x66\xb3\xf5\x14\xa6\x59\xf5\xdd\xca\x18\xfb" \
+    "\xb8\xab\xab\xeb\xef\x1e\x8f\x27\x72\xe3\xb3\x1b" \
+    "\x88\x46\xa3\x7a\x2a\xb3\xa6\x32\x66\xa4\x40\x1a" \
+    "\x23\x5a\x2e\xa6\x31\x54\xb4\x2b\xa4\x42\x45\x16" \
+    "\x75\x26\x75\x8f\x44\x63\x31\xdc\xb8\x71\x03\x1e" \
+    "\x8f\x27\xd2\xd5\xd5\xf5\x77\xc6\xd8\xc7\x66\x3c" \
+    "\xab\xc0\xc9\xb2\x3c\x49\x08\xf9\xe8\xf0\xe1\xc3" \
+    "\x77\x24\x49\x8a\x77\x77\x77\x23\x1c\x7e\xac\x4d" \
+    "\xc8\x34\x00\x85\xbc\xab\x00\x92\x9a\x5d\x4f\xf5" \
+    "\x67\xb3\x5b\x69\xd1\x46\x73\xb1\xf6\x3e\x1c\x0e" \
+    "\xa3\xbb\xbb\x1b\x92\x24\xc5\x0f\x1f\x3e\x7c\x87" \
+    "\x10\xf2\x91\x2c\xcb\x93\x66\x3c\xeb\xde\x95\xa4" \
+    "\x52\xa9\xce\xe5\xe5\xe5\x5f\xf5\xf4\xf4\xbc\x12" \
+    "\x0e\x87\x4b\x5f\x7d\xf5\x55\xec\xd9\xb3\xc7\xac" \
+    "\xe9\xef\x55\xfa\xfb\xfb\x71\xeb\xd6\x2d\x78\xbd" \
+    "\xde\xe5\x43\x87\x0e\x7d\x59\x5a\x5a\xfa\x3b\x59" \
+    "\x96\x6f\xae\xb5\xdb\xf0\x96\x29\x9b\xcd\xbe\x2c" \
+    "\x84\xf8\xf9\xcd\x9b\x37\x5f\xef\xeb\xeb\x2b\xa9" \
+    "\xad\xad\xe5\x6d\x6d\xad\x70\xb9\xdd\x28\xdc\x7c" \
+    "\x08\xb3\xe6\x9e\xa1\x2c\x2c\x2c\xe0\xeb\xaf\xbf" \
+    "\xc6\xe8\xe8\x68\xb6\xb1\xb1\x31\xd9\xd9\xd9\x79" \
+    "\x9d\x10\xf2\x7b\xce\xf9\x57\xeb\xd9\x6f\x76\x79" \
+    "\x58\x93\xcd\x66\xdf\x0d\x85\x42\x67\x7b\x7b\x7b" \
+    "\xed\xe1\x70\x58\x6a\x68\x68\x20\x8d\x8d\x8d\x08" \
+    "\x06\x83\x6b\x4c\x4d\xc7\xc8\x6a\xed\x63\x7a\x7a" \
+    "\x1a\x7d\x7d\x7d\x18\x18\x18\x10\x5e\xaf\x57\x6d" \
+    "\x6d\x6d\x5d\xda\xb1\x63\xc7\x87\x9c\xf3\x3f\x00" \
+    "\x18\xdb\x68\xf2\x67\xba\xd9\xcc\xe5\x72\x3f\x06" \
+    "\xf0\xd3\x81\x81\x81\xd7\xfb\xfa\xfa\xf8\xc4\xc4" \
+    "\x04\x73\x3a\x9d\xb4\xba\xba\x1a\x81\x40\x00\x5e" \
+    "\xaf\x17\x15\x15\x15\x90\x65\x19\xa9\x54\x0a\xb1" \
+    "\x58\x0c\xe1\x70\x18\x33\x33\x33\x98\x98\x98\x40" \
+    "\x24\x12\xc9\x57\x57\x57\xe7\x1a\x1b\x1b\xb3\x0d" \
+    "\x0d\x0d\xd7\x01\xfc\x89\x31\xf6\x97\xcd\xe6\x7d" \
+    "\xe6\x3b\x61\x00\x25\xb9\x5c\xee\x75\x42\xc8\x91" \
+    "\xc5\xc5\xc5\xa3\x63\x63\x63\xee\xa9\xa9\x29\x32" \
+    "\x3b\x3b\x4b\x17\x16\x16\x48\x3c\x1e\x27\xa9\x54" \
+    "\x0a\xb2\x2c\xa3\xac\xac\x4c\xb8\xdd\x6e\xe1\xf7" \
+    "\xfb\xf3\x55\x55\x55\xa2\xa6\xa6\x66\xc1\xe5\x72" \
+    "\x75\x0b\x21\xfe\xc5\x18\xbb\x0e\x60\xc3\xdb\xcc" \
+    "\xff\x15\x9c\xb9\xec\x02\xd0\x0a\x60\xaf\x10\xa2" \
+    "\x0e\xc0\x36\x00\x5e\x00\x76\x00\x4b\x00\xc2\x00" \
+    "\xc6\x09\x21\x43\x00\xbe\x05\xd0\x0b\xe0\xe1\xf3" \
+    "\x4e\xf2\x5f\x67\xef\x27\x63\x41\x5f\xa3\x16\x00" \
+    "\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82"
 image1_data = \
-  "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
-  "\x49\x48\x44\x52\x00\x00\x00\x27\x00\x00\x00\x27" \
-  "\x08\x06\x00\x00\x00\x8c\xa3\x51\x35\x00\x00\x09" \
-  "\xfa\x49\x44\x41\x54\x78\x9c\xad\x58\x5b\x6c\x1b" \
-  "\xc7\x15\x3d\xf3\xe0\x72\x55\x8a\x92\xf8\x16\x69" \
-  "\x9a\x96\x94\xc8\xb6\x24\xab\x96\x64\x40\x56\x9d" \
-  "\xd8\x81\x2c\xd8\x6d\x82\x24\x48\x83\x00\x2d\x90" \
-  "\xcf\x18\xfe\x68\x3f\xfa\xe5\x7e\xfb\xbb\xff\xe9" \
-  "\x47\xe0\x02\xf9\xb1\xd1\x40\x45\x5a\x20\x41\xd5" \
-  "\x40\xa8\x8d\xbc\xec\x28\x40\xe2\x38\xb2\xec\x58" \
-  "\x12\x64\x99\x90\xf5\xa0\xf8\x5a\x4a\xe2\x63\xc9" \
-  "\xdd\xe9\xc7\x3e\xb8\x7a\x50\x96\xdb\x5e\x62\xc0" \
-  "\x59\xee\x9d\xb9\x67\xee\x3d\x73\xe7\x72\x88\x10" \
-  "\x02\xcf\x2b\x84\x10\x19\x80\x07\xc0\xcf\x00\xc8" \
-  "\x00\xdc\x00\x38\x00\x06\x40\x03\x50\x03\x50\x01" \
-  "\x50\x06\x50\x04\xb0\x25\x84\x28\x3f\xb7\x9d\x83" \
-  "\x82\x23\x84\xd0\x96\x96\x96\x36\x59\x96\x7d\x89" \
-  "\x44\xe2\x58\x34\x1a\x1d\x6c\x6e\x6e\x3e\x26\x49" \
-  "\x52\x17\xe7\x3c\x4e\x29\x0d\x10\x42\x3c\x42\x88" \
-  "\x2d\x5d\xd7\x33\xb5\x5a\x6d\x49\x55\xd5\x85\xcd" \
-  "\xcd\xcd\x47\x2b\x2b\x2b\x77\x93\xc9\xe4\xa3\x72" \
-  "\xb9\x9c\x2b\x14\x0a\x79\x21\x84\xfe\x7f\x03\xd7" \
-  "\xd3\xd3\x13\xa8\x54\x2a\xc1\xde\xde\xde\x5f\xf9" \
-  "\x7c\xbe\x97\x83\x81\xe0\x4b\x89\x44\x22\x1a\x8b" \
-  "\xc5\x10\x0a\x87\x10\xf0\x07\xe0\xf5\x7a\xe1\x76" \
-  "\xbb\x51\xa9\x54\xb0\xb1\xb1\x81\x4c\x36\x83\xf5" \
-  "\xd4\x3a\x96\x97\x97\x91\x4c\x26\x57\xd2\x99\xf4" \
-  "\xd7\xb9\x5c\xee\xab\x07\x0f\x1e\xfc\xcb\xed\x76" \
-  "\xa7\x1f\x3e\x7c\x98\xf9\x9f\xc0\x9d\x39\x73\xa6" \
-  "\x69\x6b\x6b\xab\xfd\xc8\x91\x23\x17\x7c\x3e\xdf" \
-  "\x6b\x5d\x9d\x9d\xaf\x1e\x3b\x7e\x5c\x3a\xda\x7d" \
-  "\x14\xed\xed\x11\x43\x49\x10\x80\x08\x08\x01\x10" \
-  "\x00\x02\x04\x84\x08\x18\x4f\x80\x80\xc0\xda\xea" \
-  "\x1a\xe6\xe6\x66\xf1\xd3\x4f\x3f\xa9\x0b\x8f\x1f" \
-  "\x4f\xe4\x72\xb9\x7f\x3e\x79\xf2\x64\xd2\xe3\xf1" \
-  "\xac\xde\xbe\x7d\xbb\xf4\xdc\xe0\x46\x47\x47\xdb" \
-  "\xaa\xd5\xea\xa1\x8e\x8e\x8e\x4b\xb1\x58\xec\x9d" \
-  "\x81\x81\x81\xf8\xc9\x93\x27\xe1\x6b\xf3\x3d\x6b" \
-  "\xc1\x0d\x25\x97\xcb\xe1\xde\x8f\xf7\xf0\xc3\x0f" \
-  "\x3f\x2c\x2d\x2f\x2f\xff\x6d\x71\x71\xf1\x9a\xcb" \
-  "\xe5\x7a\x7a\xeb\xd6\xad\xfc\x81\xc1\xbd\xfd\xf6" \
-  "\xdb\x01\x4a\xe9\xcf\xbd\x5e\xef\xe5\xde\x9e\xde" \
-  "\xdf\x0c\x9f\x1e\x26\x47\xbb\xbb\x61\x79\x03\x00" \
-  "\xec\x61\x44\x00\x82\x80\xd8\xaf\x04\x84\xe5\x43" \
-  "\x01\x63\x0c\x01\x6c\x75\x00\xb3\x73\xb3\x98\x9a" \
-  "\xfa\x56\x3c\x7c\xf8\xe0\xa3\x8d\x8d\x8d\x0f\x74" \
-  "\x5d\xff\xf1\xe3\x8f\x3f\xde\x15\xe6\x5d\xe0\x2e" \
-  "\x5d\xba\xe4\x57\x55\x75\x48\x92\xa4\xdf\x0f\x0e" \
-  "\x0c\xbe\x75\xf6\xec\x59\x84\x43\x61\x2b\x66\x0e" \
-  "\x43\xd6\x83\x00\x08\x81\x1d\x49\x21\x20\x4c\xa4" \
-  "\xc6\xa3\xf9\xde\xb9\x28\x02\xac\xa7\x52\xf8\xf2" \
-  "\xab\x2f\x71\xf7\xee\xdd\x7f\xa8\xaa\xfa\xbe\x24" \
-  "\x49\xdf\x5f\xbb\x76\x2d\xeb\xc4\x42\x9d\x0f\x57" \
-  "\xae\x5c\xf1\x70\xce\xbb\x64\x59\xbe\x3c\x38\x38" \
-  "\xf8\xd6\xf9\xf3\xe7\x11\x8e\x84\xeb\x5a\xa6\x05" \
-  "\x42\x00\x42\xc8\xb6\x6f\xd8\x8d\xd8\x5d\x43\xd7" \
-  "\x04\x66\x8d\xa5\x86\x7e\x38\x12\xc1\xd8\xe8\x79" \
-  "\x0c\x0e\x0e\xbe\x25\xcb\xf2\x65\xce\x79\xd7\x95" \
-  "\x2b\x57\x3c\x4e\x3c\x7c\x87\x27\x3b\x29\xa5\xef" \
-  "\xbd\xf0\xc2\x0b\xef\x9c\x3b\x7b\x0e\x7e\xbf\xdf" \
-  "\x19\xc9\xbd\xc5\x89\xc4\x5a\x6e\xa3\x3d\x56\x47" \
-  "\x0c\x08\xc0\xe7\xf7\xe3\xdc\xd9\x73\x28\x15\x4b" \
-  "\xef\x2c\x3c\x5e\xc8\x00\x78\x1f\xc0\x7d\xe7\x54" \
-  "\x00\x80\xab\x57\xaf\xc6\x35\x4d\x7b\xad\xb5\xb5" \
-  "\xf5\xcd\x91\x91\x11\x12\x89\x44\xec\x55\x13\x10" \
-  "\xd3\x43\x0d\x1a\x1a\xf4\x0f\xa0\x1f\x89\x44\x30" \
-  "\xf2\x8b\x11\xe2\xf1\x78\xde\xd4\x34\xed\xb5\xab" \
-  "\x57\xaf\xc6\xb7\x81\x1b\x1f\x1f\x67\x1e\x8f\xa7" \
-  "\xb3\x5a\xad\x5e\x18\x38\x39\x10\x3b\x7e\xfc\x98" \
-  "\x11\x1e\x42\x00\x42\x0d\x4e\x13\x52\x0f\x9b\xa3" \
-  "\x0f\xb3\xef\x0c\x33\x76\x84\x19\x0e\x60\xce\x39" \
-  "\xac\x76\xf4\xe8\x51\x74\x75\x76\xc5\xaa\xd5\xea" \
-  "\x05\x8f\xc7\xd3\x39\x3e\x3e\xce\x6c\x70\x8a\xa2" \
-  "\x24\x14\x45\x79\x3d\x1c\x0e\x9f\x1b\x18\x1c\x04" \
-  "\x40\x41\xcd\x81\xd4\x6c\x20\x04\x94\x50\x50\xd3" \
-  "\xa8\xd5\xa7\x66\xdf\x00\x48\xcd\x31\xd4\xd1\x9c" \
-  "\xdc\x24\x20\xa4\x3e\x37\x21\x00\x65\x0c\x5b\x5b" \
-  "\x5b\x88\x1f\x8e\xc3\xeb\xf5\x9e\x53\x14\xe5\x75" \
-  "\x45\x51\x12\x36\xe7\x18\x63\x89\x62\xb1\x78\x6a" \
-  "\x60\x60\x40\x0a\x04\x02\x3b\x68\x22\x20\x40\x6d" \
-  "\x2a\xbd\xfb\xee\xbb\x7b\xd2\xe9\xfa\xf5\x1b\xe6" \
-  "\x86\x16\x0d\x75\x6e\x5c\xbf\x01\x62\xef\x75\x62" \
-  "\xcf\x9a\x49\x67\xe0\xf5\x7a\x11\x8f\xc7\xa5\xf9" \
-  "\xf9\xf9\x53\x8c\xb1\x04\x80\xc7\x74\x7c\x7c\xdc" \
-  "\x5f\x2c\x16\x87\x38\xe7\x03\x3d\xc7\x8f\xdb\x9e" \
-  "\xa2\x94\x98\x2b\xdc\xee\xc5\x46\x1f\xa7\x77\xf7" \
-  "\xd6\x80\xed\x39\x6b\x4e\xc6\x19\xf2\x8a\x82\x62" \
-  "\xa9\x08\xc6\x18\xe2\x87\xe3\x00\x30\x50\x2c\x16" \
-  "\x87\xc6\xc7\xc7\xfd\x54\x92\xa4\x76\x45\x51\x4e" \
-  "\xc4\x0f\xc5\x03\xd1\xd8\x21\x93\x17\xbb\x89\x8d" \
-  "\x5d\x29\x63\x7b\xb3\xe8\x67\x71\x70\x77\x73\xce" \
-  "\x07\x30\xce\x51\x2c\x16\x91\x4a\xa5\xc0\x18\x05" \
-  "\x63\x14\x01\x7f\x00\x7e\xbf\x3f\xa0\x28\xca\x09" \
-  "\x49\x92\xda\xa9\x2c\xcb\x91\x62\xb1\xd8\x11\x3f" \
-  "\x1c\xdf\xc6\x05\x0b\x10\x9c\x5e\x23\x14\x8d\x84" \
-  "\x38\x38\xd6\x58\xc7\x88\x08\x63\x0c\x1b\x1b\x05" \
-  "\x2c\x2d\x2d\x41\xd7\x75\x30\xc6\x41\x29\x05\x65" \
-  "\x0c\xa1\x70\x18\xc5\x62\xb1\x43\x96\xe5\x08\x75" \
-  "\xb9\x5c\xed\xe5\x72\x39\x16\x6d\x8f\xda\xa0\xec" \
-  "\x30\xd2\xbd\xd2\x80\xc1\x44\xfb\xe3\xf4\x32\x75" \
-  "\x3c\xef\xfc\x10\x02\xc6\x28\x84\x10\x58\xcf\xa4" \
-  "\xb1\xfc\xf4\x29\x74\xa1\x83\x73\x13\x18\x65\x60" \
-  "\x94\x22\xe0\xf7\xa3\x5c\x2e\xc7\x5c\x2e\x57\x3b" \
-  "\x97\x24\xc9\xaf\xaa\x6a\x30\x18\x0e\x19\x5b\x4f" \
-  "\x00\x00\x35\x88\x4b\x1c\x95\x06\x84\xf1\xca\x71" \
-  "\x14\xd5\x5d\x62\x64\x7e\xab\xbf\x57\xe2\x16\x42" \
-  "\x20\x93\xcd\xa2\xa0\x14\x50\x51\x2b\xa0\x8c\x19" \
-  "\xd1\xd9\x21\x3e\x9f\x0f\xaa\xaa\x06\x25\x49\xf2" \
-  "\x73\xb7\xdb\xed\xab\xd5\x6a\xde\xb6\x96\x56\x3b" \
-  "\x25\x08\x00\x44\x18\xfb\xca\xf0\xa6\x30\x00\x3f" \
-  "\xa3\xf4\x13\x42\x00\xc2\xf8\xb6\x9a\xae\xeb\xd0" \
-  "\x75\x1d\x9a\xa6\x21\x93\xc9\x80\x10\x02\xce\xb9" \
-  "\xe3\xa8\x36\xf7\x2f\x31\xc6\x36\x37\x37\xa3\x56" \
-  "\xab\x79\xdd\x6e\xb7\x8f\x73\xce\x9b\x35\x4d\x73" \
-  "\xcb\xb2\xdb\x3c\x55\x08\xa8\xe9\x25\xfb\x24\xb2" \
-  "\xcf\x47\x23\x3c\xb6\x61\x4d\x83\x6e\xf6\xd7\xd6" \
-  "\xd6\xa0\xeb\x1a\x34\x4d\x47\xb9\x5c\xae\x83\x75" \
-  "\x88\x24\x49\x0d\x56\x55\xef\xb2\x26\x0e\x4d\xd3" \
-  "\xdc\x9c\xf3\x66\x2e\x49\x12\x61\x8c\x55\x54\xb5" \
-  "\xea\x96\x9b\xe4\x3a\xa7\xac\x28\x99\x03\x09\x25" \
-  "\xa8\x56\xab\xa8\x55\x6b\xd0\x74\x0d\xba\xae\xc1" \
-  "\x69\xbb\x52\xa9\x60\x67\x94\x76\x86\x8d\x51\x56" \
-  "\x47\x62\xbe\xb3\x8a\x54\x0b\x65\x45\x55\xc1\x18" \
-  "\xab\x48\x92\x44\x38\xe7\x5c\x95\x65\xb9\x54\x28" \
-  "\x14\xdc\x72\x53\x93\xc9\x2d\x03\x9c\x10\xc2\xe6" \
-  "\xd2\xd6\x56\x11\x8a\x92\x87\x5a\x55\x4d\xa3\x64" \
-  "\x1b\x18\x2b\x54\x7b\x81\xb2\x84\x72\x06\xec\xf0" \
-  "\xa6\x83\xcd\x00\x80\x52\xa9\x04\x59\x96\x4b\x9c" \
-  "\x73\x95\x73\xce\x15\xaf\xd7\xbb\xb9\x9e\x5e\x6f" \
-  "\x8b\xb4\x47\x60\xed\x44\x40\x80\x32\x8a\x5a\xb5" \
-  "\x06\x45\x51\x50\x2a\x19\xd5\x34\xa5\x7b\xa7\x13" \
-  "\xce\xeb\x05\x4e\x23\x70\x9c\xb1\x3d\x7f\x77\x4a" \
-  "\xa1\x50\x80\xd7\xeb\xdd\xe4\x9c\x2b\xdc\xe5\x72" \
-  "\xa5\x02\x81\x40\x61\x75\x75\x15\xfd\xfd\xfd\x0e" \
-  "\x03\x14\x9a\xa6\x21\x9f\x57\xa0\xaa\xaa\x6d\xbc" \
-  "\x91\x61\xc6\x98\x59\x0a\x89\x7d\x74\x38\x00\x61" \
-  "\x73\xdb\xae\x3c\x1d\x9e\xcb\x66\xb3\x08\x04\x02" \
-  "\x05\x97\xcb\x95\xe2\x8c\xb1\xa5\x43\x87\x0e\x15" \
-  "\x92\xc9\xa4\xed\x31\x42\x08\x34\x5d\x87\xa2\x28" \
-  "\x10\x42\x83\x4b\x72\x99\xdc\xdb\xcf\xb0\x05\x6e" \
-  "\x9f\x05\x70\x06\x62\x92\x4c\x80\x58\x1b\xd4\x4e" \
-  "\x5b\x10\xc0\xea\xea\x2a\x8e\x1c\x39\x52\x60\x8c" \
-  "\x2d\x51\x42\xc8\x7c\x77\x77\xf7\xca\xfa\xfa\x7a" \
-  "\x69\x79\xe5\x29\x40\x29\x40\x08\x8a\xc5\xa2\x9d" \
-  "\xbd\xad\xe3\x85\x99\xb9\x69\xaf\xc6\x18\x33\x74" \
-  "\xf8\x7e\x3a\x14\x94\x71\x50\xca\xc1\x28\x05\x75" \
-  "\xcc\x4b\x19\x43\x3a\x9d\x46\x3e\x9f\x2f\x75\x77" \
-  "\x77\xaf\x10\x42\xe6\x79\x2c\x16\x4b\xba\x5c\xae" \
-  "\x6f\x43\xa1\xd0\xa9\x99\x99\x07\x89\x78\xfc\x30" \
-  "\x2a\x95\x0a\x6a\xb5\x1a\x5c\x2e\xd7\xae\xd5\x37" \
-  "\xe4\xd3\x81\x38\xb7\xb3\xf0\xde\x2e\x73\xf3\xf3" \
-  "\x08\x87\xc3\xeb\xd1\x68\xf4\xdb\x50\x28\x94\xb4" \
-  "\x4a\xa6\xef\xfa\xfa\xfa\xf2\x53\x53\x53\xf1\x53" \
-  "\xa7\x4e\x51\x59\x96\xc1\x1c\xbb\xcf\x29\x37\x6e" \
-  "\xdc\xd8\xd7\x80\x53\xc7\x48\xe6\xa8\x27\xf6\x7d" \
-  "\xc6\x64\xb3\x59\xcc\xcd\xcd\xe9\x67\xce\x9c\xc9" \
-  "\x33\xc6\xbe\x03\xcc\x62\xd3\xef\xf7\x7f\x31\x34" \
-  "\x34\xf4\x59\x4b\x4b\xcb\xfa\xd4\xd4\x94\x91\xc5" \
-  "\x4d\x57\xb3\xfd\x1a\x65\x76\x48\xa8\x15\x56\xc7" \
-  "\x7b\xce\x18\x18\x77\xf4\x1d\x21\xdc\x39\xfe\xde" \
-  "\xbd\x7b\xf0\xf9\x7c\xeb\x43\x43\x43\x9f\xf9\xfd" \
-  "\xfe\x2f\x6c\x70\x30\x2e\x5d\x26\x87\x87\x87\xd7" \
-  "\x66\x67\x67\xcb\x8f\x1e\x3d\x02\x63\xd4\x04\x68" \
-  "\x71\x83\x99\x9c\xa1\xa0\xd4\x34\x62\x1b\xa6\x60" \
-  "\x94\x99\x7c\x62\x66\x85\x51\x1f\xc3\xac\xdf\x28" \
-  "\x07\xa3\x0c\x9c\x9a\x5c\xe3\xc6\x5c\x73\xb3\xb3" \
-  "\x58\x58\x58\x28\x0f\x0f\x0f\xaf\x01\x98\x34\xf1" \
-  "\xd4\xff\x7d\xb5\xb6\xb6\x4e\xf6\xf4\xf4\x5c\x5f" \
-  "\x59\x59\xf9\xc3\x9d\x3b\x77\x62\xc1\x50\x10\xd1" \
-  "\xf6\x28\xb0\x2d\x45\x9a\x62\x1d\xba\x02\xf5\x44" \
-  "\x2c\x84\x71\x33\x01\xe7\x1f\x68\xf3\x49\x38\x13" \
-  "\x6d\xbd\x94\x00\x04\x56\x56\x57\x71\xfb\xf6\x6d" \
-  "\xf4\xf6\xf6\x66\x7b\x7a\x7a\xae\x7b\x3c\x9e\x49" \
-  "\xcb\xcc\xb6\x8c\xca\x18\xfb\x68\x6c\x6c\xec\xd3" \
-  "\x50\x28\x94\xbd\xf9\xef\x9b\xc8\xe5\x72\x66\x29" \
-  "\xb3\xa3\x31\xa3\xbc\x61\xa6\x17\xad\x5a\xcc\xf0" \
-  "\x50\x5d\xcf\x2a\x85\xe8\xb6\x70\x5b\xa1\xa5\xc8" \
-  "\xe5\xf3\xb8\x79\xf3\x26\x42\xa1\x50\x76\x6c\x6c" \
-  "\xec\x53\xc6\xd8\x47\x4e\x3c\xdb\xc0\xc9\xb2\xfc" \
-  "\x84\x10\xf2\xe1\xc5\x8b\x17\xef\x48\x92\x54\x98" \
-  "\x98\x98\x40\x2a\xb5\x66\x18\x64\x06\x00\xab\xee" \
-  "\xda\xce\x37\x33\x8c\xd4\x7c\x76\x86\x95\xd6\x75" \
-  "\x8c\x10\x1b\xbf\xa7\x52\x29\x4c\x4c\x4c\x40\x92" \
-  "\xa4\xc2\xc5\x8b\x17\xef\x10\x42\x3e\x94\x65\xf9" \
-  "\x89\x13\xcf\x9e\x77\x25\xe5\x72\x79\x74\x73\x73" \
-  "\xf3\x8f\x93\x93\x93\x2f\xa7\x52\xa9\xe6\x57\x5e" \
-  "\x79\x05\x27\x4e\x9c\x70\x84\x74\xd7\x90\xe7\x92" \
-  "\xfb\xf7\xef\xe3\xf3\xcf\x3f\x47\x38\x1c\xde\xbc" \
-  "\x70\xe1\xc2\x57\xcd\xcd\xcd\x7f\x92\x65\xf9\xd6" \
-  "\x4e\xbd\x86\xb7\x4c\xb5\x5a\xed\x25\x21\xc4\xef" \
-  "\x6e\xdd\xba\xf5\xc6\xf4\xf4\x74\x53\x77\x77\x37" \
-  "\x1f\x19\x39\x8d\x40\x30\x08\xab\xdc\x14\x4e\xce" \
-  "\x1d\x40\xd2\xe9\x34\xbe\xf9\xe6\x1b\xcc\xcd\xcd" \
-  "\xd5\xfa\xfb\xfb\x4b\xa3\xa3\xa3\x9f\x10\x42\xfe" \
-  "\xcc\x39\xff\x7a\x2f\xfd\x67\x5d\x1e\x76\xd5\x6a" \
-  "\xb5\xf7\xe6\xe7\xe7\x2f\x4f\x4d\x4d\x79\x53\xa9" \
-  "\x94\xd4\xd7\xd7\x47\xfa\xfb\xfb\x11\x8f\xc7\x77" \
-  "\xa8\x92\x7a\x7d\xb5\x9d\xfb\x58\x5a\x5a\xc2\xf4" \
-  "\xf4\x34\x66\x66\x66\x44\x38\x1c\x56\x4f\x9f\x3e" \
-  "\xbd\xf1\xe2\x8b\x2f\x7e\xc0\x39\xff\x0b\x80\x85" \
-  "\x46\xc6\x0f\x74\xb3\xa9\x69\xda\xaf\x01\xfc\x76" \
-  "\x66\x66\xe6\x8d\xe9\xe9\x69\xbe\xb8\xb8\xc8\xfc" \
-  "\x7e\x3f\xed\xe8\xe8\x40\x2c\x16\x43\x38\x1c\x46" \
-  "\x5b\x5b\x1b\x64\x59\x46\xb9\x5c\x46\x3e\x9f\x47" \
-  "\x2a\x95\xc2\xf2\xf2\x32\x16\x17\x17\x91\xcd\x66" \
-  "\xf5\x8e\x8e\x0e\xad\xbf\xbf\xbf\xd6\xd7\xd7\xf7" \
-  "\x09\x80\xbf\x32\xc6\xfe\xfe\x2c\xbb\x07\xbe\x13" \
-  "\x06\xd0\xa4\x69\xda\x1b\x84\x90\x5f\x66\x32\x99" \
-  "\x57\x17\x16\x16\x82\xc9\x64\x92\xac\xac\xac\xd0" \
-  "\x74\x3a\x4d\x0a\x85\x02\x29\x97\xcb\x90\x65\x19" \
-  "\x2d\x2d\x2d\x22\x18\x0c\x8a\x68\x34\xaa\x27\x12" \
-  "\x09\xd1\xd5\xd5\x95\x0e\x04\x02\x13\x42\x88\xcf" \
-  "\x18\x63\x9f\x00\x68\x78\x9b\xf9\xdf\x82\x73\xca" \
-  "\x31\x00\xa7\x01\x9c\x14\x42\xf4\x00\xe8\x04\x10" \
-  "\x06\xe0\x05\xb0\x01\x20\x05\xe0\x31\x21\xe4\x21" \
-  "\x80\x7b\x00\xa6\x00\x3c\x7a\x5e\x23\xff\x01\xb4" \
-  "\x79\xd2\x67\x0f\x09\x9f\xfb\x00\x00\x00\x00\x49" \
-  "\x45\x4e\x44\xae\x42\x60\x82"
+    "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
+    "\x49\x48\x44\x52\x00\x00\x00\x27\x00\x00\x00\x27" \
+    "\x08\x06\x00\x00\x00\x8c\xa3\x51\x35\x00\x00\x09" \
+    "\xfa\x49\x44\x41\x54\x78\x9c\xad\x58\x5b\x6c\x1b" \
+    "\xc7\x15\x3d\xf3\xe0\x72\x55\x8a\x92\xf8\x16\x69" \
+    "\x9a\x96\x94\xc8\xb6\x24\xab\x96\x64\x40\x56\x9d" \
+    "\xd8\x81\x2c\xd8\x6d\x82\x24\x48\x83\x00\x2d\x90" \
+    "\xcf\x18\xfe\x68\x3f\xfa\xe5\x7e\xfb\xbb\xff\xe9" \
+    "\x47\xe0\x02\xf9\xb1\xd1\x40\x45\x5a\x20\x41\xd5" \
+    "\x40\xa8\x8d\xbc\xec\x28\x40\xe2\x38\xb2\xec\x58" \
+    "\x12\x64\x99\x90\xf5\xa0\xf8\x5a\x4a\xe2\x63\xc9" \
+    "\xdd\xe9\xc7\x3e\xb8\x7a\x50\x96\xdb\x5e\x62\xc0" \
+    "\x59\xee\x9d\xb9\x67\xee\x3d\x73\xe7\x72\x88\x10" \
+    "\x02\xcf\x2b\x84\x10\x19\x80\x07\xc0\xcf\x00\xc8" \
+    "\x00\xdc\x00\x38\x00\x06\x40\x03\x50\x03\x50\x01" \
+    "\x50\x06\x50\x04\xb0\x25\x84\x28\x3f\xb7\x9d\x83" \
+    "\x82\x23\x84\xd0\x96\x96\x96\x36\x59\x96\x7d\x89" \
+    "\x44\xe2\x58\x34\x1a\x1d\x6c\x6e\x6e\x3e\x26\x49" \
+    "\x52\x17\xe7\x3c\x4e\x29\x0d\x10\x42\x3c\x42\x88" \
+    "\x2d\x5d\xd7\x33\xb5\x5a\x6d\x49\x55\xd5\x85\xcd" \
+    "\xcd\xcd\x47\x2b\x2b\x2b\x77\x93\xc9\xe4\xa3\x72" \
+    "\xb9\x9c\x2b\x14\x0a\x79\x21\x84\xfe\x7f\x03\xd7" \
+    "\xd3\xd3\x13\xa8\x54\x2a\xc1\xde\xde\xde\x5f\xf9" \
+    "\x7c\xbe\x97\x83\x81\xe0\x4b\x89\x44\x22\x1a\x8b" \
+    "\xc5\x10\x0a\x87\x10\xf0\x07\xe0\xf5\x7a\xe1\x76" \
+    "\xbb\x51\xa9\x54\xb0\xb1\xb1\x81\x4c\x36\x83\xf5" \
+    "\xd4\x3a\x96\x97\x97\x91\x4c\x26\x57\xd2\x99\xf4" \
+    "\xd7\xb9\x5c\xee\xab\x07\x0f\x1e\xfc\xcb\xed\x76" \
+    "\xa7\x1f\x3e\x7c\x98\xf9\x9f\xc0\x9d\x39\x73\xa6" \
+    "\x69\x6b\x6b\xab\xfd\xc8\x91\x23\x17\x7c\x3e\xdf" \
+    "\x6b\x5d\x9d\x9d\xaf\x1e\x3b\x7e\x5c\x3a\xda\x7d" \
+    "\x14\xed\xed\x11\x43\x49\x10\x80\x08\x08\x01\x10" \
+    "\x00\x02\x04\x84\x08\x18\x4f\x80\x80\xc0\xda\xea" \
+    "\x1a\xe6\xe6\x66\xf1\xd3\x4f\x3f\xa9\x0b\x8f\x1f" \
+    "\x4f\xe4\x72\xb9\x7f\x3e\x79\xf2\x64\xd2\xe3\xf1" \
+    "\xac\xde\xbe\x7d\xbb\xf4\xdc\xe0\x46\x47\x47\xdb" \
+    "\xaa\xd5\xea\xa1\x8e\x8e\x8e\x4b\xb1\x58\xec\x9d" \
+    "\x81\x81\x81\xf8\xc9\x93\x27\xe1\x6b\xf3\x3d\x6b" \
+    "\xc1\x0d\x25\x97\xcb\xe1\xde\x8f\xf7\xf0\xc3\x0f" \
+    "\x3f\x2c\x2d\x2f\x2f\xff\x6d\x71\x71\xf1\x9a\xcb" \
+    "\xe5\x7a\x7a\xeb\xd6\xad\xfc\x81\xc1\xbd\xfd\xf6" \
+    "\xdb\x01\x4a\xe9\xcf\xbd\x5e\xef\xe5\xde\x9e\xde" \
+    "\xdf\x0c\x9f\x1e\x26\x47\xbb\xbb\x61\x79\x03\x00" \
+    "\xec\x61\x44\x00\x82\x80\xd8\xaf\x04\x84\xe5\x43" \
+    "\x01\x63\x0c\x01\x6c\x75\x00\xb3\x73\xb3\x98\x9a" \
+    "\xfa\x56\x3c\x7c\xf8\xe0\xa3\x8d\x8d\x8d\x0f\x74" \
+    "\x5d\xff\xf1\xe3\x8f\x3f\xde\x15\xe6\x5d\xe0\x2e" \
+    "\x5d\xba\xe4\x57\x55\x75\x48\x92\xa4\xdf\x0f\x0e" \
+    "\x0c\xbe\x75\xf6\xec\x59\x84\x43\x61\x2b\x66\x0e" \
+    "\x43\xd6\x83\x00\x08\x81\x1d\x49\x21\x20\x4c\xa4" \
+    "\xc6\xa3\xf9\xde\xb9\x28\x02\xac\xa7\x52\xf8\xf2" \
+    "\xab\x2f\x71\xf7\xee\xdd\x7f\xa8\xaa\xfa\xbe\x24" \
+    "\x49\xdf\x5f\xbb\x76\x2d\xeb\xc4\x42\x9d\x0f\x57" \
+    "\xae\x5c\xf1\x70\xce\xbb\x64\x59\xbe\x3c\x38\x38" \
+    "\xf8\xd6\xf9\xf3\xe7\x11\x8e\x84\xeb\x5a\xa6\x05" \
+    "\x42\x00\x42\xc8\xb6\x6f\xd8\x8d\xd8\x5d\x43\xd7" \
+    "\x04\x66\x8d\xa5\x86\x7e\x38\x12\xc1\xd8\xe8\x79" \
+    "\x0c\x0e\x0e\xbe\x25\xcb\xf2\x65\xce\x79\xd7\x95" \
+    "\x2b\x57\x3c\x4e\x3c\x7c\x87\x27\x3b\x29\xa5\xef" \
+    "\xbd\xf0\xc2\x0b\xef\x9c\x3b\x7b\x0e\x7e\xbf\xdf" \
+    "\x19\xc9\xbd\xc5\x89\xc4\x5a\x6e\xa3\x3d\x56\x47" \
+    "\x0c\x08\xc0\xe7\xf7\xe3\xdc\xd9\x73\x28\x15\x4b" \
+    "\xef\x2c\x3c\x5e\xc8\x00\x78\x1f\xc0\x7d\xe7\x54" \
+    "\x00\x80\xab\x57\xaf\xc6\x35\x4d\x7b\xad\xb5\xb5" \
+    "\xf5\xcd\x91\x91\x11\x12\x89\x44\xec\x55\x13\x10" \
+    "\xd3\x43\x0d\x1a\x1a\xf4\x0f\xa0\x1f\x89\x44\x30" \
+    "\xf2\x8b\x11\xe2\xf1\x78\xde\xd4\x34\xed\xb5\xab" \
+    "\x57\xaf\xc6\xb7\x81\x1b\x1f\x1f\x67\x1e\x8f\xa7" \
+    "\xb3\x5a\xad\x5e\x18\x38\x39\x10\x3b\x7e\xfc\x98" \
+    "\x11\x1e\x42\x00\x42\x0d\x4e\x13\x52\x0f\x9b\xa3" \
+    "\x0f\xb3\xef\x0c\x33\x76\x84\x19\x0e\x60\xce\x39" \
+    "\xac\x76\xf4\xe8\x51\x74\x75\x76\xc5\xaa\xd5\xea" \
+    "\x05\x8f\xc7\xd3\x39\x3e\x3e\xce\x6c\x70\x8a\xa2" \
+    "\x24\x14\x45\x79\x3d\x1c\x0e\x9f\x1b\x18\x1c\x04" \
+    "\x40\x41\xcd\x81\xd4\x6c\x20\x04\x94\x50\x50\xd3" \
+    "\xa8\xd5\xa7\x66\xdf\x00\x48\xcd\x31\xd4\xd1\x9c" \
+    "\xdc\x24\x20\xa4\x3e\x37\x21\x00\x65\x0c\x5b\x5b" \
+    "\x5b\x88\x1f\x8e\xc3\xeb\xf5\x9e\x53\x14\xe5\x75" \
+    "\x45\x51\x12\x36\xe7\x18\x63\x89\x62\xb1\x78\x6a" \
+    "\x60\x60\x40\x0a\x04\x02\x3b\x68\x22\x20\x40\x6d" \
+    "\x2a\xbd\xfb\xee\xbb\x7b\xd2\xe9\xfa\xf5\x1b\xe6" \
+    "\x86\x16\x0d\x75\x6e\x5c\xbf\x01\x62\xef\x75\x62" \
+    "\xcf\x9a\x49\x67\xe0\xf5\x7a\x11\x8f\xc7\xa5\xf9" \
+    "\xf9\xf9\x53\x8c\xb1\x04\x80\xc7\x74\x7c\x7c\xdc" \
+    "\x5f\x2c\x16\x87\x38\xe7\x03\x3d\xc7\x8f\xdb\x9e" \
+    "\xa2\x94\x98\x2b\xdc\xee\xc5\x46\x1f\xa7\x77\xf7" \
+    "\xd6\x80\xed\x39\x6b\x4e\xc6\x19\xf2\x8a\x82\x62" \
+    "\xa9\x08\xc6\x18\xe2\x87\xe3\x00\x30\x50\x2c\x16" \
+    "\x87\xc6\xc7\xc7\xfd\x54\x92\xa4\x76\x45\x51\x4e" \
+    "\xc4\x0f\xc5\x03\xd1\xd8\x21\x93\x17\xbb\x89\x8d" \
+    "\x5d\x29\x63\x7b\xb3\xe8\x67\x71\x70\x77\x73\xce" \
+    "\x07\x30\xce\x51\x2c\x16\x91\x4a\xa5\xc0\x18\x05" \
+    "\x63\x14\x01\x7f\x00\x7e\xbf\x3f\xa0\x28\xca\x09" \
+    "\x49\x92\xda\xa9\x2c\xcb\x91\x62\xb1\xd8\x11\x3f" \
+    "\x1c\xdf\xc6\x05\x0b\x10\x9c\x5e\x23\x14\x8d\x84" \
+    "\x38\x38\xd6\x58\xc7\x88\x08\x63\x0c\x1b\x1b\x05" \
+    "\x2c\x2d\x2d\x41\xd7\x75\x30\xc6\x41\x29\x05\x65" \
+    "\x0c\xa1\x70\x18\xc5\x62\xb1\x43\x96\xe5\x08\x75" \
+    "\xb9\x5c\xed\xe5\x72\x39\x16\x6d\x8f\xda\xa0\xec" \
+    "\x30\xd2\xbd\xd2\x80\xc1\x44\xfb\xe3\xf4\x32\x75" \
+    "\x3c\xef\xfc\x10\x02\xc6\x28\x84\x10\x58\xcf\xa4" \
+    "\xb1\xfc\xf4\x29\x74\xa1\x83\x73\x13\x18\x65\x60" \
+    "\x94\x22\xe0\xf7\xa3\x5c\x2e\xc7\x5c\x2e\x57\x3b" \
+    "\x97\x24\xc9\xaf\xaa\x6a\x30\x18\x0e\x19\x5b\x4f" \
+    "\x00\x00\x35\x88\x4b\x1c\x95\x06\x84\xf1\xca\x71" \
+    "\x14\xd5\x5d\x62\x64\x7e\xab\xbf\x57\xe2\x16\x42" \
+    "\x20\x93\xcd\xa2\xa0\x14\x50\x51\x2b\xa0\x8c\x19" \
+    "\xd1\xd9\x21\x3e\x9f\x0f\xaa\xaa\x06\x25\x49\xf2" \
+    "\x73\xb7\xdb\xed\xab\xd5\x6a\xde\xb6\x96\x56\x3b" \
+    "\x25\x08\x00\x44\x18\xfb\xca\xf0\xa6\x30\x00\x3f" \
+    "\xa3\xf4\x13\x42\x00\xc2\xf8\xb6\x9a\xae\xeb\xd0" \
+    "\x75\x1d\x9a\xa6\x21\x93\xc9\x80\x10\x02\xce\xb9" \
+    "\xe3\xa8\x36\xf7\x2f\x31\xc6\x36\x37\x37\xa3\x56" \
+    "\xab\x79\xdd\x6e\xb7\x8f\x73\xce\x9b\x35\x4d\x73" \
+    "\xcb\xb2\xdb\x3c\x55\x08\xa8\xe9\x25\xfb\x24\xb2" \
+    "\xcf\x47\x23\x3c\xb6\x61\x4d\x83\x6e\xf6\xd7\xd6" \
+    "\xd6\xa0\xeb\x1a\x34\x4d\x47\xb9\x5c\xae\x83\x75" \
+    "\x88\x24\x49\x0d\x56\x55\xef\xb2\x26\x0e\x4d\xd3" \
+    "\xdc\x9c\xf3\x66\x2e\x49\x12\x61\x8c\x55\x54\xb5" \
+    "\xea\x96\x9b\xe4\x3a\xa7\xac\x28\x99\x03\x09\x25" \
+    "\xa8\x56\xab\xa8\x55\x6b\xd0\x74\x0d\xba\xae\xc1" \
+    "\x69\xbb\x52\xa9\x60\x67\x94\x76\x86\x8d\x51\x56" \
+    "\x47\x62\xbe\xb3\x8a\x54\x0b\x65\x45\x55\xc1\x18" \
+    "\xab\x48\x92\x44\x38\xe7\x5c\x95\x65\xb9\x54\x28" \
+    "\x14\xdc\x72\x53\x93\xc9\x2d\x03\x9c\x10\xc2\xe6" \
+    "\xd2\xd6\x56\x11\x8a\x92\x87\x5a\x55\x4d\xa3\x64" \
+    "\x1b\x18\x2b\x54\x7b\x81\xb2\x84\x72\x06\xec\xf0" \
+    "\xa6\x83\xcd\x00\x80\x52\xa9\x04\x59\x96\x4b\x9c" \
+    "\x73\x95\x73\xce\x15\xaf\xd7\xbb\xb9\x9e\x5e\x6f" \
+    "\x8b\xb4\x47\x60\xed\x44\x40\x80\x32\x8a\x5a\xb5" \
+    "\x06\x45\x51\x50\x2a\x19\xd5\x34\xa5\x7b\xa7\x13" \
+    "\xce\xeb\x05\x4e\x23\x70\x9c\xb1\x3d\x7f\x77\x4a" \
+    "\xa1\x50\x80\xd7\xeb\xdd\xe4\x9c\x2b\xdc\xe5\x72" \
+    "\xa5\x02\x81\x40\x61\x75\x75\x15\xfd\xfd\xfd\x0e" \
+    "\x03\x14\x9a\xa6\x21\x9f\x57\xa0\xaa\xaa\x6d\xbc" \
+    "\x91\x61\xc6\x98\x59\x0a\x89\x7d\x74\x38\x00\x61" \
+    "\x73\xdb\xae\x3c\x1d\x9e\xcb\x66\xb3\x08\x04\x02" \
+    "\x05\x97\xcb\x95\xe2\x8c\xb1\xa5\x43\x87\x0e\x15" \
+    "\x92\xc9\xa4\xed\x31\x42\x08\x34\x5d\x87\xa2\x28" \
+    "\x10\x42\x83\x4b\x72\x99\xdc\xdb\xcf\xb0\x05\x6e" \
+    "\x9f\x05\x70\x06\x62\x92\x4c\x80\x58\x1b\xd4\x4e" \
+    "\x5b\x10\xc0\xea\xea\x2a\x8e\x1c\x39\x52\x60\x8c" \
+    "\x2d\x51\x42\xc8\x7c\x77\x77\xf7\xca\xfa\xfa\x7a" \
+    "\x69\x79\xe5\x29\x40\x29\x40\x08\x8a\xc5\xa2\x9d" \
+    "\xbd\xad\xe3\x85\x99\xb9\x69\xaf\xc6\x18\x33\x74" \
+    "\xf8\x7e\x3a\x14\x94\x71\x50\xca\xc1\x28\x05\x75" \
+    "\xcc\x4b\x19\x43\x3a\x9d\x46\x3e\x9f\x2f\x75\x77" \
+    "\x77\xaf\x10\x42\xe6\x79\x2c\x16\x4b\xba\x5c\xae" \
+    "\x6f\x43\xa1\xd0\xa9\x99\x99\x07\x89\x78\xfc\x30" \
+    "\x2a\x95\x0a\x6a\xb5\x1a\x5c\x2e\xd7\xae\xd5\x37" \
+    "\xe4\xd3\x81\x38\xb7\xb3\xf0\xde\x2e\x73\xf3\xf3" \
+    "\x08\x87\xc3\xeb\xd1\x68\xf4\xdb\x50\x28\x94\xb4" \
+    "\x4a\xa6\xef\xfa\xfa\xfa\xf2\x53\x53\x53\xf1\x53" \
+    "\xa7\x4e\x51\x59\x96\xc1\x1c\xbb\xcf\x29\x37\x6e" \
+    "\xdc\xd8\xd7\x80\x53\xc7\x48\xe6\xa8\x27\xf6\x7d" \
+    "\xc6\x64\xb3\x59\xcc\xcd\xcd\xe9\x67\xce\x9c\xc9" \
+    "\x33\xc6\xbe\x03\xcc\x62\xd3\xef\xf7\x7f\x31\x34" \
+    "\x34\xf4\x59\x4b\x4b\xcb\xfa\xd4\xd4\x94\x91\xc5" \
+    "\x4d\x57\xb3\xfd\x1a\x65\x76\x48\xa8\x15\x56\xc7" \
+    "\x7b\xce\x18\x18\x77\xf4\x1d\x21\xdc\x39\xfe\xde" \
+    "\xbd\x7b\xf0\xf9\x7c\xeb\x43\x43\x43\x9f\xf9\xfd" \
+    "\xfe\x2f\x6c\x70\x30\x2e\x5d\x26\x87\x87\x87\xd7" \
+    "\x66\x67\x67\xcb\x8f\x1e\x3d\x02\x63\xd4\x04\x68" \
+    "\x71\x83\x99\x9c\xa1\xa0\xd4\x34\x62\x1b\xa6\x60" \
+    "\x94\x99\x7c\x62\x66\x85\x51\x1f\xc3\xac\xdf\x28" \
+    "\x07\xa3\x0c\x9c\x9a\x5c\xe3\xc6\x5c\x73\xb3\xb3" \
+    "\x58\x58\x58\x28\x0f\x0f\x0f\xaf\x01\x98\x34\xf1" \
+    "\xd4\xff\x7d\xb5\xb6\xb6\x4e\xf6\xf4\xf4\x5c\x5f" \
+    "\x59\x59\xf9\xc3\x9d\x3b\x77\x62\xc1\x50\x10\xd1" \
+    "\xf6\x28\xb0\x2d\x45\x9a\x62\x1d\xba\x02\xf5\x44" \
+    "\x2c\x84\x71\x33\x01\xe7\x1f\x68\xf3\x49\x38\x13" \
+    "\x6d\xbd\x94\x00\x04\x56\x56\x57\x71\xfb\xf6\x6d" \
+    "\xf4\xf6\xf6\x66\x7b\x7a\x7a\xae\x7b\x3c\x9e\x49" \
+    "\xcb\xcc\xb6\x8c\xca\x18\xfb\x68\x6c\x6c\xec\xd3" \
+    "\x50\x28\x94\xbd\xf9\xef\x9b\xc8\xe5\x72\x66\x29" \
+    "\xb3\xa3\x31\xa3\xbc\x61\xa6\x17\xad\x5a\xcc\xf0" \
+    "\x50\x5d\xcf\x2a\x85\xe8\xb6\x70\x5b\xa1\xa5\xc8" \
+    "\xe5\xf3\xb8\x79\xf3\x26\x42\xa1\x50\x76\x6c\x6c" \
+    "\xec\x53\xc6\xd8\x47\x4e\x3c\xdb\xc0\xc9\xb2\xfc" \
+    "\x84\x10\xf2\xe1\xc5\x8b\x17\xef\x48\x92\x54\x98" \
+    "\x98\x98\x40\x2a\xb5\x66\x18\x64\x06\x00\xab\xee" \
+    "\xda\xce\x37\x33\x8c\xd4\x7c\x76\x86\x95\xd6\x75" \
+    "\x8c\x10\x1b\xbf\xa7\x52\x29\x4c\x4c\x4c\x40\x92" \
+    "\xa4\xc2\xc5\x8b\x17\xef\x10\x42\x3e\x94\x65\xf9" \
+    "\x89\x13\xcf\x9e\x77\x25\xe5\x72\x79\x74\x73\x73" \
+    "\xf3\x8f\x93\x93\x93\x2f\xa7\x52\xa9\xe6\x57\x5e" \
+    "\x79\x05\x27\x4e\x9c\x70\x84\x74\xd7\x90\xe7\x92" \
+    "\xfb\xf7\xef\xe3\xf3\xcf\x3f\x47\x38\x1c\xde\xbc" \
+    "\x70\xe1\xc2\x57\xcd\xcd\xcd\x7f\x92\x65\xf9\xd6" \
+    "\x4e\xbd\x86\xb7\x4c\xb5\x5a\xed\x25\x21\xc4\xef" \
+    "\x6e\xdd\xba\xf5\xc6\xf4\xf4\x74\x53\x77\x77\x37" \
+    "\x1f\x19\x39\x8d\x40\x30\x08\xab\xdc\x14\x4e\xce" \
+    "\x1d\x40\xd2\xe9\x34\xbe\xf9\xe6\x1b\xcc\xcd\xcd" \
+    "\xd5\xfa\xfb\xfb\x4b\xa3\xa3\xa3\x9f\x10\x42\xfe" \
+    "\xcc\x39\xff\x7a\x2f\xfd\x67\x5d\x1e\x76\xd5\x6a" \
+    "\xb5\xf7\xe6\xe7\xe7\x2f\x4f\x4d\x4d\x79\x53\xa9" \
+    "\x94\xd4\xd7\xd7\x47\xfa\xfb\xfb\x11\x8f\xc7\x77" \
+    "\xa8\x92\x7a\x7d\xb5\x9d\xfb\x58\x5a\x5a\xc2\xf4" \
+    "\xf4\x34\x66\x66\x66\x44\x38\x1c\x56\x4f\x9f\x3e" \
+    "\xbd\xf1\xe2\x8b\x2f\x7e\xc0\x39\xff\x0b\x80\x85" \
+    "\x46\xc6\x0f\x74\xb3\xa9\x69\xda\xaf\x01\xfc\x76" \
+    "\x66\x66\xe6\x8d\xe9\xe9\x69\xbe\xb8\xb8\xc8\xfc" \
+    "\x7e\x3f\xed\xe8\xe8\x40\x2c\x16\x43\x38\x1c\x46" \
+    "\x5b\x5b\x1b\x64\x59\x46\xb9\x5c\x46\x3e\x9f\x47" \
+    "\x2a\x95\xc2\xf2\xf2\x32\x16\x17\x17\x91\xcd\x66" \
+    "\xf5\x8e\x8e\x0e\xad\xbf\xbf\xbf\xd6\xd7\xd7\xf7" \
+    "\x09\x80\xbf\x32\xc6\xfe\xfe\x2c\xbb\x07\xbe\x13" \
+    "\x06\xd0\xa4\x69\xda\x1b\x84\x90\x5f\x66\x32\x99" \
+    "\x57\x17\x16\x16\x82\xc9\x64\x92\xac\xac\xac\xd0" \
+    "\x74\x3a\x4d\x0a\x85\x02\x29\x97\xcb\x90\x65\x19" \
+    "\x2d\x2d\x2d\x22\x18\x0c\x8a\x68\x34\xaa\x27\x12" \
+    "\x09\xd1\xd5\xd5\x95\x0e\x04\x02\x13\x42\x88\xcf" \
+    "\x18\x63\x9f\x00\x68\x78\x9b\xf9\xdf\x82\x73\xca" \
+    "\x31\x00\xa7\x01\x9c\x14\x42\xf4\x00\xe8\x04\x10" \
+    "\x06\xe0\x05\xb0\x01\x20\x05\xe0\x31\x21\xe4\x21" \
+    "\x80\x7b\x00\xa6\x00\x3c\x7a\x5e\x23\xff\x01\xb4" \
+    "\x79\xd2\x67\x0f\x09\x9f\xfb\x00\x00\x00\x00\x49" \
+    "\x45\x4e\x44\xae\x42\x60\x82"
 
 class pyLiveControlsView(QWidget):
-  def __init__(self,parent = None,name = None,fl = 0):
-    QWidget.__init__(self,parent,name,fl)
+    def __init__(self,parent = None,name = None,fl = 0):
+        QWidget.__init__(self,parent,name,fl)
 
-    self.image0 = QPixmap()
-    self.image0.loadFromData(image0_data,"PNG")
-    self.image1 = QPixmap()
-    self.image1.loadFromData(image1_data,"PNG")
-    if not name:
-      self.setName("pyLiveControlsView")
+        self.image0 = QPixmap()
+        self.image0.loadFromData(image0_data,"PNG")
+        self.image1 = QPixmap()
+        self.image1.loadFromData(image1_data,"PNG")
+        if not name:
+            self.setName("pyLiveControlsView")
 
 
-    pyLiveControlsViewLayout = QVBoxLayout(self,0,0,"pyLiveControlsViewLayout")
+        pyLiveControlsViewLayout = QVBoxLayout(self,0,0,"pyLiveControlsViewLayout")
 
-    self.m_rate_slider = QSlider(self,"m_rate_slider")
-    self.m_rate_slider.setOrientation(QSlider.Horizontal)
-    self.m_rate_slider.setTickmarks(QSlider.Below)
-    pyLiveControlsViewLayout.addWidget(self.m_rate_slider)
+        self.m_rate_slider = QSlider(self,"m_rate_slider")
+        self.m_rate_slider.setValue(99)
+        self.m_rate_slider.setOrientation(QSlider.Horizontal)
+        self.m_rate_slider.setTickmarks(QSlider.Below)
+        pyLiveControlsViewLayout.addWidget(self.m_rate_slider)
 
-    layout136 = QHBoxLayout(None,0,1,"layout136")
+        layout136 = QHBoxLayout(None,0,1,"layout136")
 
-    self.textLabel7 = QLabel(self,"textLabel7")
-    textLabel7_font = QFont(self.textLabel7.font())
-    textLabel7_font.setPointSize(10)
-    self.textLabel7.setFont(textLabel7_font)
-    self.textLabel7.setAlignment(QLabel.AlignVCenter | QLabel.AlignLeft)
-    layout136.addWidget(self.textLabel7)
+        self.textLabel7 = QLabel(self,"textLabel7")
+        textLabel7_font = QFont(self.textLabel7.font())
+        textLabel7_font.setPointSize(10)
+        self.textLabel7.setFont(textLabel7_font)
+        self.textLabel7.setAlignment(QLabel.AlignVCenter | QLabel.AlignLeft)
+        layout136.addWidget(self.textLabel7)
 
-    self.textLabel7_2 = QLabel(self,"textLabel7_2")
-    textLabel7_2_font = QFont(self.textLabel7_2.font())
-    textLabel7_2_font.setPointSize(10)
-    self.textLabel7_2.setFont(textLabel7_2_font)
-    self.textLabel7_2.setAlignment(QLabel.AlignVCenter | QLabel.AlignRight)
-    layout136.addWidget(self.textLabel7_2)
-    pyLiveControlsViewLayout.addLayout(layout136)
+        self.textLabel7_2 = QLabel(self,"textLabel7_2")
+        textLabel7_2_font = QFont(self.textLabel7_2.font())
+        textLabel7_2_font.setPointSize(10)
+        self.textLabel7_2.setFont(textLabel7_2_font)
+        self.textLabel7_2.setAlignment(QLabel.AlignVCenter | QLabel.AlignRight)
+        layout136.addWidget(self.textLabel7_2)
+        pyLiveControlsViewLayout.addLayout(layout136)
 
-    layout137 = QHBoxLayout(None,0,1,"layout137")
-    spacer97_2 = QSpacerItem(10,10,QSizePolicy.Expanding,QSizePolicy.Minimum)
-    layout137.addItem(spacer97_2)
+        layout137 = QHBoxLayout(None,0,1,"layout137")
+        spacer97_2 = QSpacerItem(10,10,QSizePolicy.Expanding,QSizePolicy.Minimum)
+        layout137.addItem(spacer97_2)
 
-    self.widgetStack3 = QWidgetStack(self,"widgetStack3")
+        self.m_play_pause_widgetStack = QWidgetStack(self,"m_play_pause_widgetStack")
 
-    self.WStackPage = QWidget(self.widgetStack3,"WStackPage")
-    WStackPageLayout = QVBoxLayout(self.WStackPage,0,0,"WStackPageLayout")
+        self.WStackPage = QWidget(self.m_play_pause_widgetStack,"WStackPage")
+        WStackPageLayout = QVBoxLayout(self.WStackPage,0,0,"WStackPageLayout")
 
-    self.m_play_button = QToolButton(self.WStackPage,"m_play_button")
-    self.m_play_button.setIconSet(QIconSet(self.image0))
-    self.m_play_button.setUsesBigPixmap(0)
-    WStackPageLayout.addWidget(self.m_play_button)
-    self.widgetStack3.addWidget(self.WStackPage,0)
+        self.m_play_button = QToolButton(self.WStackPage,"m_play_button")
+        self.m_play_button.setIconSet(QIconSet(self.image0))
+        self.m_play_button.setUsesBigPixmap(0)
+        WStackPageLayout.addWidget(self.m_play_button)
+        self.m_play_pause_widgetStack.addWidget(self.WStackPage,0)
 
-    self.WStackPage_2 = QWidget(self.widgetStack3,"WStackPage_2")
-    WStackPageLayout_2 = QVBoxLayout(self.WStackPage_2,1,1,"WStackPageLayout_2")
+        self.WStackPage_2 = QWidget(self.m_play_pause_widgetStack,"WStackPage_2")
+        WStackPageLayout_2 = QVBoxLayout(self.WStackPage_2,1,1,"WStackPageLayout_2")
 
-    self.m_pause_button = QToolButton(self.WStackPage_2,"m_pause_button")
-    self.m_pause_button.setIconSet(QIconSet(self.image1))
-    self.m_pause_button.setUsesBigPixmap(0)
-    WStackPageLayout_2.addWidget(self.m_pause_button)
-    self.widgetStack3.addWidget(self.WStackPage_2,1)
-    layout137.addWidget(self.widgetStack3)
-    spacer97 = QSpacerItem(10,10,QSizePolicy.Expanding,QSizePolicy.Minimum)
-    layout137.addItem(spacer97)
-    pyLiveControlsViewLayout.addLayout(layout137)
-    spacer99 = QSpacerItem(10,10,QSizePolicy.Minimum,QSizePolicy.Expanding)
-    pyLiveControlsViewLayout.addItem(spacer99)
+        self.m_pause_button = QToolButton(self.WStackPage_2,"m_pause_button")
+        self.m_pause_button.setIconSet(QIconSet(self.image1))
+        self.m_pause_button.setUsesBigPixmap(0)
+        WStackPageLayout_2.addWidget(self.m_pause_button)
+        self.m_play_pause_widgetStack.addWidget(self.WStackPage_2,1)
+        layout137.addWidget(self.m_play_pause_widgetStack)
+        spacer97 = QSpacerItem(10,10,QSizePolicy.Expanding,QSizePolicy.Minimum)
+        layout137.addItem(spacer97)
+        pyLiveControlsViewLayout.addLayout(layout137)
+        spacer99 = QSpacerItem(10,10,QSizePolicy.Minimum,QSizePolicy.Expanding)
+        pyLiveControlsViewLayout.addItem(spacer99)
 
-    self.languageChange()
+        self.languageChange()
 
-    self.resize(QSize(124,90).expandedTo(self.minimumSizeHint()))
-    self.clearWState(Qt.WState_Polished)
+        self.resize(QSize(124,90).expandedTo(self.minimumSizeHint()))
+        self.clearWState(Qt.WState_Polished)
 
 
-  def languageChange(self):
-    self.setCaption(self.__tr("pyLiveControlsView"))
-    self.textLabel7.setText(self.__tr("slow"))
-    self.textLabel7_2.setText(self.__tr("fast"))
-    self.m_play_button.setText(QString.null)
-    self.m_pause_button.setText(QString.null)
+    def languageChange(self):
+        self.setCaption(self.__tr("pyLiveControlsView"))
+        self.textLabel7.setText(self.__tr("slow"))
+        self.textLabel7_2.setText(self.__tr("fast"))
+        self.m_play_button.setText(QString.null)
+        self.m_pause_button.setText(QString.null)
 
 
-  def __tr(self,s,c = None):
-    return qApp.translate("pyLiveControlsView",s,c)
+    def __tr(self,s,c = None):
+        return qApp.translate("pyLiveControlsView",s,c)

Modified: trunk/source/python/AvidaGui2/pyNavBarView.py
===================================================================
--- trunk/source/python/AvidaGui2/pyNavBarView.py	2005-03-31 03:44:15 UTC (rev 95)
+++ trunk/source/python/AvidaGui2/pyNavBarView.py	2005-03-31 09:26:09 UTC (rev 96)
@@ -1,9 +1,9 @@
 # -*- coding: utf-8 -*-
 
-# Form implementation generated from reading ui file '/Users/kaben/Projects/Software/Avida/branch.kaben/avida--current--2.0--base-0/source/bindings/Boost.Python/AvidaGui2/pyNavBarView.ui'
+# Form implementation generated from reading ui file 'pyNavBarView.ui'
 #
-# Created: Fri Dec 3 10:26:51 2004
-#      by: The PyQt User Interface Compiler (pyuic) 3.12
+# Created: Thu Mar 31 04:19:20 2005
+#      by: The PyQt User Interface Compiler (pyuic) 3.13
 #
 # WARNING! All changes made in this file will be lost!
 
@@ -11,470 +11,470 @@
 from qt import *
 
 image0_data = \
-  "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
-  "\x49\x48\x44\x52\x00\x00\x00\x20\x00\x00\x00\x20" \
-  "\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\x00\x00\x08" \
-  "\x3d\x49\x44\x41\x54\x78\x9c\xed\x96\x5d\x6c\x1c" \
-  "\xd5\x15\xc7\xff\xe7\xde\x99\xd9\xd9\x4f\x7b\xbd" \
-  "\xfe\x88\xd7\x1b\x6c\x12\x3b\x35\x04\x92\xb4\xe1" \
-  "\x33\x40\x53\x48\x44\x09\x22\x04\xa2\xd2\xd2\x87" \
-  "\x36\x85\xf6\xa5\x55\x11\xa5\x2d\x50\x21\x68\xd5" \
-  "\x02\x2a\x0d\x11\x05\xaa\x3e\x20\x50\x24\xd4\x40" \
-  "\x11\x85\x16\xa9\xa0\x50\xa0\x8a\x83\x02\x09\x58" \
-  "\x75\xe4\x38\x21\x90\x38\x8e\xed\xac\xed\x6c\xe2" \
-  "\xd8\xbb\xeb\x9d\xd9\x99\xd9\xb9\xf7\xf4\x81\x35" \
-  "\x4a\x28\x15\x08\xa9\xea\x0b\x7f\xe9\xe8\xce\x95" \
-  "\x66\x74\x7e\xe7\x7f\x8f\xee\x19\xe0\x0b\xfd\x9f" \
-  "\x45\x9f\xe7\xa3\xde\xde\x5e\x23\x91\x48\xc4\xb4" \
-  "\xd6\x36\x00\xb2\x2c\xcb\xb3\x6d\xdb\xed\xeb\xeb" \
-  "\xab\xfd\x4f\x00\xd6\xad\xbb\x36\xbd\x62\xc5\x85" \
-  "\x97\x5e\xbe\xfa\xca\x65\xcb\x57\x2c\xef\x11\x24" \
-  "\xb3\xc2\xb4\x6d\xcb\x22\x10\x11\x54\xa8\x51\xab" \
-  "\x05\x81\x0a\xfd\xc2\xc1\xa1\xfd\xc3\x83\x43\x83" \
-  "\x07\x5f\xf9\xfb\xdf\x76\xed\xd8\xb1\x63\xea\x73" \
-  "\x03\x34\x36\x36\xe2\xba\xeb\x36\x7c\xf9\xd6\x5b" \
-  "\x6f\xbb\x69\x71\xf7\x79\x17\x47\xac\x08\x31\x98" \
-  "\x98\x18\x60\x0d\x82\x60\x80\x08\x00\x18\x1a\x52" \
-  "\x0a\x86\x20\x12\xc4\x86\x65\x51\x5c\x85\x4a\x14" \
-  "\xa6\xf2\xfd\x8f\x3d\xf6\xf0\x9f\xb7\x6d\x7b\xba" \
-  "\xaf\x52\xa9\xe8\xcf\x0c\xb0\x6c\xd9\xf2\x96\x2d" \
-  "\x5b\x9e\xb8\xa3\x67\xf1\xb2\x4b\x49\x08\x26\x22" \
-  "\x82\x24\x08\x22\x5b\x9a\x46\x3c\x54\x7e\x42\xa9" \
-  "\xc0\x54\x50\x82\x34\x41\x08\xc1\x64\x18\x35\x53" \
-  "\xd8\x2e\x42\xed\x19\x86\x88\x4a\xc9\x92\x84\x50" \
-  "\x5a\xb1\x2a\x4c\x8f\xf7\xff\xf8\x87\xb7\xdc\xdf" \
-  "\xd7\xb7\xe3\xe8\xa7\x02\x6c\xdc\x78\xd3\xd2\xdf" \
-  "\xfd\xf6\x89\xfb\x85\x61\xa7\x49\x48\x68\x70\xbc" \
-  "\x16\x78\x6d\xfc\xfe\x60\xc6\x35\x64\xcc\x4f\x35" \
-  "\x72\x2d\xd0\x2c\xa5\x41\x2c\x04\xc0\x82\x01\x66" \
-  "\xa5\x43\x92\x06\x21\x1a\x89\x50\x3c\x11\x55\xf1" \
-  "\x64\x83\x6b\x9b\x56\x51\x6b\xe5\x29\x85\x59\x61" \
-  "\x73\xf1\xf1\x47\x1f\x78\xe8\xa1\x07\x1f\xdc\x79" \
-  "\x7a\x3e\x79\xfa\x66\xfd\x86\x1b\x7b\x37\x6f\xde" \
-  "\xba\x45\x85\x68\x50\x8c\x98\x3b\x37\xd3\x63\x3c" \
-  "\xf7\x44\x4f\xe2\xd7\x3f\x6d\x8c\xbe\xf8\xac\x55" \
-  "\xb8\x72\x03\x47\x8d\x26\x81\x53\x2c\xec\x50\x52" \
-  "\x08\x62\xd3\x8e\xc1\x94\x36\x4c\xc3\x26\x43\x46" \
-  "\x69\x2e\x12\x60\x94\x4e\xca\x59\x67\xc6\x0a\x1c" \
-  "\xa7\x81\x14\x47\x41\x66\x45\xd5\x28\xbc\x62\xed" \
-  "\x55\x5f\x65\xe5\x8d\xec\x7e\xfb\xed\xf1\xff\x00" \
-  "\x68\x5d\xb0\x20\xf2\xe4\x9f\x5e\xfc\xbd\x50\x91" \
-  "\x66\xa7\x52\xe9\x28\xce\x16\xce\xa9\x55\xdc\x78" \
-  "\x70\x72\x86\xe6\xb2\x9d\x5c\xee\xea\x66\x71\xf9" \
-  "\x3a\x54\xa7\x4b\xe4\x55\x7c\x04\x9e\x0f\xb3\x25" \
-  "\xc9\x56\x24\x02\x61\x48\x21\xa4\xc1\x92\x0c\x7a" \
-  "\x3d\xb6\x97\x36\xd3\x56\xda\x21\x07\x49\x06\x51" \
-  "\xee\x0e\x72\xe6\xec\xec\xa9\x16\x21\x0d\x82\xb2" \
-  "\xe6\xd6\x5c\x73\xe5\x45\xbb\x76\xee\x78\x2d\x7f" \
-  "\xec\x98\x0b\x00\xc6\x3c\xc0\x5d\xf7\xdc\x73\x75" \
-  "\x63\x6b\x36\x37\x3b\x79\x6a\xa1\x5b\x2d\x9d\x65" \
-  "\x99\x71\x86\x25\x41\xab\xaf\xd3\x20\x08\x41\x82" \
-  "\x2d\x09\x8e\xe5\x5a\x95\xd6\x4c\x81\xd6\x30\x6c" \
-  "\x0b\x44\x12\x44\x20\x22\x49\x02\x82\x95\xef\x51" \
-  "\x67\xb5\x99\xcb\xb2\x4a\x29\xcf\x22\x8e\x98\x6c" \
-  "\x99\x29\x2a\x17\x67\x73\x7e\x50\x8d\xc1\x68\xf9" \
-  "\xe0\x27\x77\xfd\xe2\x5b\xbb\x6f\xb8\xfe\x8f\x67" \
-  "\xf4\xc0\xbe\xb1\xf1\x47\x98\x53\xeb\xcb\xf9\xe3" \
-  "\x5d\xa6\x88\x12\x91\x01\x21\x08\x44\x02\x00\x91" \
-  "\x60\xb0\x15\x86\xa2\x3a\xe1\x90\x61\x48\xf8\x96" \
-  "\xe2\x44\x36\xc3\x62\xc6\x21\xcd\x04\x8a\x0a\xa8" \
-  "\x64\x82\xdf\x8d\xbf\x4f\x5c\x03\xa7\xc3\x28\x3a" \
-  "\xfc\x66\x48\x92\x5a\x2a\x12\xcc\x1a\xb5\x9a\x03" \
-  "\x19\x11\xf9\x44\x4b\x6a\xf7\xb9\x5d\x99\x9b\xcf" \
-  "\x70\x80\x28\xd6\x59\x9e\x2c\x74\x46\x64\x82\x20" \
-  "\x04\x88\x05\x84\x29\x19\x1a\x42\x10\x69\x10\x53" \
-  "\x30\x57\x65\x37\xf0\xc8\x54\x04\x1d\x8b\xb2\xa9" \
-  "\x98\xbc\xb2\x22\x12\x12\x5e\xb5\x0a\x95\xb1\xf4" \
-  "\x1f\x8c\xe7\xc5\x34\x1f\xa7\xb4\xd9\x88\x47\xdd" \
-  "\x3b\xd4\xcb\x4d\xfd\xc6\x6e\x0c\xa0\x43\x2f\xe0" \
-  "\xeb\xdd\x8b\xb8\xc7\x6d\xcd\x7a\x65\xaf\x13\x40" \
-  "\x14\x40\x75\x1e\xc0\x9c\xce\x9f\xe8\x48\x99\x0d" \
-  "\x42\x6b\x01\x41\x02\x99\xdd\xdb\xa9\xe9\xb9\xa7" \
-  "\xa4\x6e\xcb\x62\x6e\xd5\x55\x28\x7d\xed\x7a\x4e" \
-  "\x0f\x0f\xa0\xc9\x4e\x70\xad\xa5\x83\xfd\xb6\x16" \
-  "\xf6\x95\xa6\x4a\x8c\x35\xc2\x1a\x0b\xdb\x20\x4f" \
-  "\xf8\x94\x2d\x26\xa0\x55\x94\x49\xd7\x28\x6d\x36" \
-  "\xe0\xb0\x39\x86\x82\x3f\x85\x8a\xe1\xd0\x4c\x75" \
-  "\x09\x6c\xab\x9b\x2a\x4e\x29\x27\x84\x88\x68\xad" \
-  "\x3f\x02\x88\xe9\x9a\x9f\x86\x25\x20\x09\x44\x06" \
-  "\x51\xfa\xf5\x97\x60\x8e\x1c\x06\x8d\x8f\xa2\xd0" \
-  "\xbb\x82\xd2\x83\x7b\xd0\xfa\xcb\xdb\x05\xb3\x82" \
-  "\xd7\x9e\xa3\x89\x67\x77\x85\x71\xaf\x0a\x3b\x12" \
-  "\x27\xa3\xc9\x10\x35\xdb\x56\xb1\x63\xa3\x62\xeb" \
-  "\xe1\x65\xba\x96\x59\x83\x62\x7b\xbb\x16\x29\x13" \
-  "\x9b\x0a\x6b\xf5\x51\x7f\x09\x4d\x73\x91\x17\x19" \
-  "\x39\x22\x08\x40\x23\xa9\xb5\x8e\x02\x28\x1a\x00" \
-  "\x04\x80\x48\xb9\xe4\x9a\x0d\x51\x90\x94\x16\x13" \
-  "\x6b\xe4\x2f\xbf\x86\xd0\xd9\x0b\xbb\x78\x8a\xbd" \
-  "\x4b\xd7\x72\x6a\xcf\xeb\xe4\x58\x06\x4c\x2d\x51" \
-  "\x5e\x7c\x0e\x9b\x86\x41\xe1\x5c\x48\x81\x13\x42" \
-  "\xb9\x0a\x5e\x86\xa9\xe3\xf9\x27\x11\x79\xf1\x19" \
-  "\x41\xa6\x01\xeb\xea\x1b\xd8\xb9\xe5\x36\x5e\xff" \
-  "\xab\x3b\x29\x94\x16\xfc\x45\x4b\x28\xff\xfd\x35" \
-  "\xac\x88\xc0\xb6\x6d\x0a\x21\x6c\xad\xb5\x31\xef" \
-  "\x80\x71\xf8\x83\x23\xa1\x49\x31\x5e\x98\xeb\x42" \
-  "\x7a\xe8\x1d\xa4\x0e\x0c\x40\xb5\xb6\xeb\xe0\x8a" \
-  "\x35\xf0\x96\x9c\xc7\xc3\x4b\x73\xb0\xbe\xbd\x49" \
-  "\xc7\xa7\xcb\x64\xb0\x05\xa1\x41\x45\xed\xb3\x96" \
-  "\x0a\x61\xd5\x43\x26\xd1\xc5\xaa\x30\x29\x82\x58" \
-  "\x14\x86\x34\x50\xcd\xb4\xc1\xca\x8f\xc1\x18\xfe" \
-  "\x80\x64\xa8\x40\x23\x87\x80\x1f\xdc\xad\xdc\xa0" \
-  "\x4a\x32\x93\x54\x5a\x6b\x02\x40\x1f\x35\xe1\xb1" \
-  "\xc9\xd1\xc3\xd9\x05\x67\x77\x9b\x91\x49\x5e\xf4" \
-  "\xd2\x36\xb2\x77\xfe\x83\xc8\x88\xd0\xf1\xaf\x6f" \
-  "\xe0\xe9\xb5\xab\x71\x7b\xec\x11\xe1\x44\x1d\x64" \
-  "\xdb\xb2\xb8\x6f\xf6\xbb\x6a\xe5\x5b\x2f\x53\x76" \
-  "\x60\x0f\x6a\x6d\x39\x78\xe7\xaf\x44\x59\x2e\xe2" \
-  "\x89\x07\x9e\xd2\xba\x5c\x04\x4f\x8e\x01\xa9\x34" \
-  "\xa2\xa1\x8f\xb1\x1b\xbf\xa7\x8d\xc9\x71\x62\xa7" \
-  "\x88\x92\xef\x09\x47\x0b\x71\xa4\xff\xdd\x31\x00" \
-  "\xb5\x79\x00\x06\x10\xee\xec\x7b\xe5\xd5\x4b\x56" \
-  "\xad\x5b\x97\x3f\x3a\x41\x03\xc9\x26\xea\x5e\x90" \
-  "\x43\xcc\x73\x30\xb7\x62\x15\x1f\xb2\xa7\xc8\xa1" \
-  "\x39\x28\x62\xb8\xce\x2c\x3a\xd0\x4a\x89\xe7\xb6" \
-  "\x92\x18\xd8\x43\x51\xd3\x80\xbb\xfe\x66\x46\xef" \
-  "\x4a\x12\xc2\x60\x34\x66\x98\x1a\x32\x04\x30\x0f" \
-  "\x26\xc7\xe5\x81\xa5\x97\x71\xb3\x5e\x8f\xec\xa8" \
-  "\x0d\x77\xa2\x40\x76\xb2\x81\x5f\x7d\xe1\x99\x57" \
-  "\x01\x84\x00\xc2\x79\x80\xea\xbe\xbd\xef\xf4\xed" \
-  "\x1b\xda\xf3\xaf\xee\x6c\xcf\xca\x63\x97\x5c\xcd" \
-  "\xde\x37\x37\x21\x6e\xc6\xd0\xd0\x9c\xe5\xae\xd9" \
-  "\x22\x7e\xe4\xde\xc0\xd3\xb2\x48\x92\x0d\x6d\x9a" \
-  "\x3e\xe6\xc2\x40\xc8\x54\x0a\xa6\x52\xa8\xf4\x2c" \
-  "\x65\xa5\x42\x30\x33\x40\x02\xcc\x35\x80\x85\x78" \
-  "\x59\xbe\x8d\xf7\x66\xf6\x8a\x6b\xdd\x55\x30\xfc" \
-  "\x76\xc4\xb4\xc5\x23\x23\x07\xc6\xdf\xd8\xfe\x97" \
-  "\xbf\x02\xf0\x00\xe8\xf9\x8b\xc8\x00\xd0\x9a\x6e" \
-  "\x6a\xbe\xe0\xde\x4d\x3f\x7f\xb2\x1d\x68\x6d\x5d" \
-  "\x74\x16\x38\x91\x64\xce\x75\x21\x7b\x78\x08\x8d" \
-  "\x63\x47\x61\xc7\xe3\x5c\xb9\x6c\x1d\x54\xba\x95" \
-  "\x45\xa5\x44\x55\xcb\x62\x5d\x29\x13\x27\x1a\x20" \
-  "\xe2\x09\x30\x48\xb1\x0e\x85\xef\x7b\x54\xf5\x5d" \
-  "\x1e\x8d\x4d\x88\xb6\x48\x23\x69\x66\x9c\xc8\x17" \
-  "\x51\x3e\x72\xaa\xfc\xf0\x96\x3b\xef\x18\x1b\x1d" \
-  "\xfe\x27\x80\xe3\x00\xfc\xf9\x59\xa0\x01\x28\xaf" \
-  "\xea\x7a\x7b\x87\x87\xf6\x9d\x7f\xee\xf2\x4b\xda" \
-  "\xdb\xda\x52\x61\xa2\x81\xa0\x14\xb9\x4e\x85\x66" \
-  "\x5b\xda\x68\xca\x0f\xe8\x88\xaf\xa9\x36\x72\x80" \
-  "\xe8\xe9\xc7\x05\xbd\xb9\x5d\xe8\xfc\x11\x9a\x5c" \
-  "\x74\x0e\xdc\x23\xef\xd3\x89\x91\x61\x39\x91\x1f" \
-  "\xa3\xd9\x8a\x43\xb1\xa4\x2d\xce\x4e\xb4\x51\x52" \
-  "\x46\x41\x55\x85\xf1\x43\xa3\x85\x2d\x9b\xef\xbe" \
-  "\x6f\x74\x74\xf8\x4d\x00\xd3\x00\x9c\x8f\x4f\xc3" \
-  "\x10\x40\xe8\xba\x4e\xf9\xad\xfd\xfd\x6f\x25\x32" \
-  "\x99\xf6\xce\xf3\x57\xe6\x0c\x82\xe0\xaa\x4b\xa1" \
-  "\x1f\xa0\xe4\x78\x98\x92\x49\x76\x4f\x16\xe8\x64" \
-  "\xac\x09\x85\x4c\x0e\xf9\x64\x1b\xcf\x58\x71\xaa" \
-  "\x0e\x0e\x90\x37\x3e\x8e\xda\xd4\x24\xe9\x5a\x8d" \
-  "\x62\x6d\xcd\xb0\xa3\x12\x4e\xd9\x51\x6f\xbc\xb6" \
-  "\xbd\xff\xc1\xdf\xfc\xec\xde\xe3\xc7\x27\xfb\xeb" \
-  "\x95\x97\x3f\xba\x81\x71\xa6\x08\x40\x1c\x40\x06" \
-  "\x40\x4b\xd7\xd9\xdd\x17\x6f\xfc\xc6\x77\x36\x7e" \
-  "\x75\xf5\xb5\x17\x47\x22\x76\xd4\x29\x39\xe2\x44" \
-  "\xc9\x07\x0a\x79\xa8\x52\x11\x22\x08\xa0\x2c\x0b" \
-  "\x68\x5d\x80\xc8\xa1\xfd\x90\xcc\x20\x02\xf4\xc2" \
-  "\x2e\x9d\xea\xe9\x0a\x0e\x1e\xec\xdf\xf7\xfc\x0b" \
-  "\xdb\x5e\x78\x6f\xff\xe0\x2e\x00\x05\x00\xa7\x00" \
-  "\xcc\xd5\x1d\xff\x44\x80\x79\x45\x00\x34\xd4\x23" \
-  "\x1d\x8f\x27\xba\x56\x5e\x78\xd9\x05\x5f\x3a\xf7" \
-  "\x2b\xcb\x52\x4d\x1d\x67\xb5\x2f\x5c\xbc\x20\x62" \
-  "\x46\x2d\x30\x04\xb3\x26\x68\xa5\x7c\xa7\x54\x9b" \
-  "\x1a\x39\x78\xe2\x64\x7e\x64\x72\x64\xf2\xe8\xd0" \
-  "\xd0\xc1\xbd\x7b\xca\xe5\xd2\x08\x80\x12\x80\x62" \
-  "\x7d\xad\xd6\x9b\xfe\x8c\x8a\xff\x9b\x04\x3e\x1c" \
-  "\x18\x09\x00\xb1\xba\x33\x71\x00\xb6\x10\x22\x1e" \
-  "\x8d\xc6\x92\x96\x15\xb1\x89\x04\x82\x5a\xe0\x57" \
-  "\xdd\x8a\xa3\x94\x9a\xab\x27\xa9\x02\xa8\x00\x70" \
-  "\xeb\x67\xed\x02\x50\x9f\x94\xe4\xb3\xfc\x15\x13" \
-  "\x00\x13\x80\x55\x77\xc6\xac\xaf\xa2\x1e\x5c\x7f" \
-  "\xa7\x86\x0f\xfb\xc8\xaf\x3f\xfb\x00\x82\x8f\x57" \
-  "\xfc\x79\x00\x3e\x2e\x71\x5a\xe0\x34\x00\x5d\x0f" \
-  "\xfe\xb4\xa4\x5f\xe8\x0b\x9d\xae\x7f\x03\x0c\xdb" \
-  "\xe8\xdf\x8f\xa4\x44\x04\x00\x00\x00\x00\x49\x45" \
-  "\x4e\x44\xae\x42\x60\x82"
+    "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
+    "\x49\x48\x44\x52\x00\x00\x00\x20\x00\x00\x00\x20" \
+    "\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\x00\x00\x08" \
+    "\x3d\x49\x44\x41\x54\x78\x9c\xed\x96\x5d\x6c\x1c" \
+    "\xd5\x15\xc7\xff\xe7\xde\x99\xd9\xd9\x4f\x7b\xbd" \
+    "\xfe\x88\xd7\x1b\x6c\x12\x3b\x35\x04\x92\xb4\xe1" \
+    "\x33\x40\x53\x48\x44\x09\x22\x04\xa2\xd2\xd2\x87" \
+    "\x36\x85\xf6\xa5\x55\x11\xa5\x2d\x50\x21\x68\xd5" \
+    "\x02\x2a\x0d\x11\x05\xaa\x3e\x20\x50\x24\xd4\x40" \
+    "\x11\x85\x16\xa9\xa0\x50\xa0\x8a\x83\x02\x09\x58" \
+    "\x75\xe4\x38\x21\x90\x38\x8e\xed\xac\xed\x6c\xe2" \
+    "\xd8\xbb\xeb\x9d\xd9\x99\xd9\xb9\xf7\xf4\x81\x35" \
+    "\x4a\x28\x15\x08\xa9\xea\x0b\x7f\xe9\xe8\xce\x95" \
+    "\x66\x74\x7e\xe7\x7f\x8f\xee\x19\xe0\x0b\xfd\x9f" \
+    "\x45\x9f\xe7\xa3\xde\xde\x5e\x23\x91\x48\xc4\xb4" \
+    "\xd6\x36\x00\xb2\x2c\xcb\xb3\x6d\xdb\xed\xeb\xeb" \
+    "\xab\xfd\x4f\x00\xd6\xad\xbb\x36\xbd\x62\xc5\x85" \
+    "\x97\x5e\xbe\xfa\xca\x65\xcb\x57\x2c\xef\x11\x24" \
+    "\xb3\xc2\xb4\x6d\xcb\x22\x10\x11\x54\xa8\x51\xab" \
+    "\x05\x81\x0a\xfd\xc2\xc1\xa1\xfd\xc3\x83\x43\x83" \
+    "\x07\x5f\xf9\xfb\xdf\x76\xed\xd8\xb1\x63\xea\x73" \
+    "\x03\x34\x36\x36\xe2\xba\xeb\x36\x7c\xf9\xd6\x5b" \
+    "\x6f\xbb\x69\x71\xf7\x79\x17\x47\xac\x08\x31\x98" \
+    "\x98\x18\x60\x0d\x82\x60\x80\x08\x00\x18\x1a\x52" \
+    "\x0a\x86\x20\x12\xc4\x86\x65\x51\x5c\x85\x4a\x14" \
+    "\xa6\xf2\xfd\x8f\x3d\xf6\xf0\x9f\xb7\x6d\x7b\xba" \
+    "\xaf\x52\xa9\xe8\xcf\x0c\xb0\x6c\xd9\xf2\x96\x2d" \
+    "\x5b\x9e\xb8\xa3\x67\xf1\xb2\x4b\x49\x08\x26\x22" \
+    "\x82\x24\x08\x22\x5b\x9a\x46\x3c\x54\x7e\x42\xa9" \
+    "\xc0\x54\x50\x82\x34\x41\x08\xc1\x64\x18\x35\x53" \
+    "\xd8\x2e\x42\xed\x19\x86\x88\x4a\xc9\x92\x84\x50" \
+    "\x5a\xb1\x2a\x4c\x8f\xf7\xff\xf8\x87\xb7\xdc\xdf" \
+    "\xd7\xb7\xe3\xe8\xa7\x02\x6c\xdc\x78\xd3\xd2\xdf" \
+    "\xfd\xf6\x89\xfb\x85\x61\xa7\x49\x48\x68\x70\xbc" \
+    "\x16\x78\x6d\xfc\xfe\x60\xc6\x35\x64\xcc\x4f\x35" \
+    "\x72\x2d\xd0\x2c\xa5\x41\x2c\x04\xc0\x82\x01\x66" \
+    "\xa5\x43\x92\x06\x21\x1a\x89\x50\x3c\x11\x55\xf1" \
+    "\x64\x83\x6b\x9b\x56\x51\x6b\xe5\x29\x85\x59\x61" \
+    "\x73\xf1\xf1\x47\x1f\x78\xe8\xa1\x07\x1f\xdc\x79" \
+    "\x7a\x3e\x79\xfa\x66\xfd\x86\x1b\x7b\x37\x6f\xde" \
+    "\xba\x45\x85\x68\x50\x8c\x98\x3b\x37\xd3\x63\x3c" \
+    "\xf7\x44\x4f\xe2\xd7\x3f\x6d\x8c\xbe\xf8\xac\x55" \
+    "\xb8\x72\x03\x47\x8d\x26\x81\x53\x2c\xec\x50\x52" \
+    "\x08\x62\xd3\x8e\xc1\x94\x36\x4c\xc3\x26\x43\x46" \
+    "\x69\x2e\x12\x60\x94\x4e\xca\x59\x67\xc6\x0a\x1c" \
+    "\xa7\x81\x14\x47\x41\x66\x45\xd5\x28\xbc\x62\xed" \
+    "\x55\x5f\x65\xe5\x8d\xec\x7e\xfb\xed\xf1\xff\x00" \
+    "\x68\x5d\xb0\x20\xf2\xe4\x9f\x5e\xfc\xbd\x50\x91" \
+    "\x66\xa7\x52\xe9\x28\xce\x16\xce\xa9\x55\xdc\x78" \
+    "\x70\x72\x86\xe6\xb2\x9d\x5c\xee\xea\x66\x71\xf9" \
+    "\x3a\x54\xa7\x4b\xe4\x55\x7c\x04\x9e\x0f\xb3\x25" \
+    "\xc9\x56\x24\x02\x61\x48\x21\xa4\xc1\x92\x0c\x7a" \
+    "\x3d\xb6\x97\x36\xd3\x56\xda\x21\x07\x49\x06\x51" \
+    "\xee\x0e\x72\xe6\xec\xec\xa9\x16\x21\x0d\x82\xb2" \
+    "\xe6\xd6\x5c\x73\xe5\x45\xbb\x76\xee\x78\x2d\x7f" \
+    "\xec\x98\x0b\x00\xc6\x3c\xc0\x5d\xf7\xdc\x73\x75" \
+    "\x63\x6b\x36\x37\x3b\x79\x6a\xa1\x5b\x2d\x9d\x65" \
+    "\x99\x71\x86\x25\x41\xab\xaf\xd3\x20\x08\x41\x82" \
+    "\x2d\x09\x8e\xe5\x5a\x95\xd6\x4c\x81\xd6\x30\x6c" \
+    "\x0b\x44\x12\x44\x20\x22\x49\x02\x82\x95\xef\x51" \
+    "\x67\xb5\x99\xcb\xb2\x4a\x29\xcf\x22\x8e\x98\x6c" \
+    "\x99\x29\x2a\x17\x67\x73\x7e\x50\x8d\xc1\x68\xf9" \
+    "\xe0\x27\x77\xfd\xe2\x5b\xbb\x6f\xb8\xfe\x8f\x67" \
+    "\xf4\xc0\xbe\xb1\xf1\x47\x98\x53\xeb\xcb\xf9\xe3" \
+    "\x5d\xa6\x88\x12\x91\x01\x21\x08\x44\x02\x00\x91" \
+    "\x60\xb0\x15\x86\xa2\x3a\xe1\x90\x61\x48\xf8\x96" \
+    "\xe2\x44\x36\xc3\x62\xc6\x21\xcd\x04\x8a\x0a\xa8" \
+    "\x64\x82\xdf\x8d\xbf\x4f\x5c\x03\xa7\xc3\x28\x3a" \
+    "\xfc\x66\x48\x92\x5a\x2a\x12\xcc\x1a\xb5\x9a\x03" \
+    "\x19\x11\xf9\x44\x4b\x6a\xf7\xb9\x5d\x99\x9b\xcf" \
+    "\x70\x80\x28\xd6\x59\x9e\x2c\x74\x46\x64\x82\x20" \
+    "\x04\x88\x05\x84\x29\x19\x1a\x42\x10\x69\x10\x53" \
+    "\x30\x57\x65\x37\xf0\xc8\x54\x04\x1d\x8b\xb2\xa9" \
+    "\x98\xbc\xb2\x22\x12\x12\x5e\xb5\x0a\x95\xb1\xf4" \
+    "\x1f\x8c\xe7\xc5\x34\x1f\xa7\xb4\xd9\x88\x47\xdd" \
+    "\x3b\xd4\xcb\x4d\xfd\xc6\x6e\x0c\xa0\x43\x2f\xe0" \
+    "\xeb\xdd\x8b\xb8\xc7\x6d\xcd\x7a\x65\xaf\x13\x40" \
+    "\x14\x40\x75\x1e\xc0\x9c\xce\x9f\xe8\x48\x99\x0d" \
+    "\x42\x6b\x01\x41\x02\x99\xdd\xdb\xa9\xe9\xb9\xa7" \
+    "\xa4\x6e\xcb\x62\x6e\xd5\x55\x28\x7d\xed\x7a\x4e" \
+    "\x0f\x0f\xa0\xc9\x4e\x70\xad\xa5\x83\xfd\xb6\x16" \
+    "\xf6\x95\xa6\x4a\x8c\x35\xc2\x1a\x0b\xdb\x20\x4f" \
+    "\xf8\x94\x2d\x26\xa0\x55\x94\x49\xd7\x28\x6d\x36" \
+    "\xe0\xb0\x39\x86\x82\x3f\x85\x8a\xe1\xd0\x4c\x75" \
+    "\x09\x6c\xab\x9b\x2a\x4e\x29\x27\x84\x88\x68\xad" \
+    "\x3f\x02\x88\xe9\x9a\x9f\x86\x25\x20\x09\x44\x06" \
+    "\x51\xfa\xf5\x97\x60\x8e\x1c\x06\x8d\x8f\xa2\xd0" \
+    "\xbb\x82\xd2\x83\x7b\xd0\xfa\xcb\xdb\x05\xb3\x82" \
+    "\xd7\x9e\xa3\x89\x67\x77\x85\x71\xaf\x0a\x3b\x12" \
+    "\x27\xa3\xc9\x10\x35\xdb\x56\xb1\x63\xa3\x62\xeb" \
+    "\xe1\x65\xba\x96\x59\x83\x62\x7b\xbb\x16\x29\x13" \
+    "\x9b\x0a\x6b\xf5\x51\x7f\x09\x4d\x73\x91\x17\x19" \
+    "\x39\x22\x08\x40\x23\xa9\xb5\x8e\x02\x28\x1a\x00" \
+    "\x04\x80\x48\xb9\xe4\x9a\x0d\x51\x90\x94\x16\x13" \
+    "\x6b\xe4\x2f\xbf\x86\xd0\xd9\x0b\xbb\x78\x8a\xbd" \
+    "\x4b\xd7\x72\x6a\xcf\xeb\xe4\x58\x06\x4c\x2d\x51" \
+    "\x5e\x7c\x0e\x9b\x86\x41\xe1\x5c\x48\x81\x13\x42" \
+    "\xb9\x0a\x5e\x86\xa9\xe3\xf9\x27\x11\x79\xf1\x19" \
+    "\x41\xa6\x01\xeb\xea\x1b\xd8\xb9\xe5\x36\x5e\xff" \
+    "\xab\x3b\x29\x94\x16\xfc\x45\x4b\x28\xff\xfd\x35" \
+    "\xac\x88\xc0\xb6\x6d\x0a\x21\x6c\xad\xb5\x31\xef" \
+    "\x80\x71\xf8\x83\x23\xa1\x49\x31\x5e\x98\xeb\x42" \
+    "\x7a\xe8\x1d\xa4\x0e\x0c\x40\xb5\xb6\xeb\xe0\x8a" \
+    "\x35\xf0\x96\x9c\xc7\xc3\x4b\x73\xb0\xbe\xbd\x49" \
+    "\xc7\xa7\xcb\x64\xb0\x05\xa1\x41\x45\xed\xb3\x96" \
+    "\x0a\x61\xd5\x43\x26\xd1\xc5\xaa\x30\x29\x82\x58" \
+    "\x14\x86\x34\x50\xcd\xb4\xc1\xca\x8f\xc1\x18\xfe" \
+    "\x80\x64\xa8\x40\x23\x87\x80\x1f\xdc\xad\xdc\xa0" \
+    "\x4a\x32\x93\x54\x5a\x6b\x02\x40\x1f\x35\xe1\xb1" \
+    "\xc9\xd1\xc3\xd9\x05\x67\x77\x9b\x91\x49\x5e\xf4" \
+    "\xd2\x36\xb2\x77\xfe\x83\xc8\x88\xd0\xf1\xaf\x6f" \
+    "\xe0\xe9\xb5\xab\x71\x7b\xec\x11\xe1\x44\x1d\x64" \
+    "\xdb\xb2\xb8\x6f\xf6\xbb\x6a\xe5\x5b\x2f\x53\x76" \
+    "\x60\x0f\x6a\x6d\x39\x78\xe7\xaf\x44\x59\x2e\xe2" \
+    "\x89\x07\x9e\xd2\xba\x5c\x04\x4f\x8e\x01\xa9\x34" \
+    "\xa2\xa1\x8f\xb1\x1b\xbf\xa7\x8d\xc9\x71\x62\xa7" \
+    "\x88\x92\xef\x09\x47\x0b\x71\xa4\xff\xdd\x31\x00" \
+    "\xb5\x79\x00\x06\x10\xee\xec\x7b\xe5\xd5\x4b\x56" \
+    "\xad\x5b\x97\x3f\x3a\x41\x03\xc9\x26\xea\x5e\x90" \
+    "\x43\xcc\x73\x30\xb7\x62\x15\x1f\xb2\xa7\xc8\xa1" \
+    "\x39\x28\x62\xb8\xce\x2c\x3a\xd0\x4a\x89\xe7\xb6" \
+    "\x92\x18\xd8\x43\x51\xd3\x80\xbb\xfe\x66\x46\xef" \
+    "\x4a\x12\xc2\x60\x34\x66\x98\x1a\x32\x04\x30\x0f" \
+    "\x26\xc7\xe5\x81\xa5\x97\x71\xb3\x5e\x8f\xec\xa8" \
+    "\x0d\x77\xa2\x40\x76\xb2\x81\x5f\x7d\xe1\x99\x57" \
+    "\x01\x84\x00\xc2\x79\x80\xea\xbe\xbd\xef\xf4\xed" \
+    "\x1b\xda\xf3\xaf\xee\x6c\xcf\xca\x63\x97\x5c\xcd" \
+    "\xde\x37\x37\x21\x6e\xc6\xd0\xd0\x9c\xe5\xae\xd9" \
+    "\x22\x7e\xe4\xde\xc0\xd3\xb2\x48\x92\x0d\x6d\x9a" \
+    "\x3e\xe6\xc2\x40\xc8\x54\x0a\xa6\x52\xa8\xf4\x2c" \
+    "\x65\xa5\x42\x30\x33\x40\x02\xcc\x35\x80\x85\x78" \
+    "\x59\xbe\x8d\xf7\x66\xf6\x8a\x6b\xdd\x55\x30\xfc" \
+    "\x76\xc4\xb4\xc5\x23\x23\x07\xc6\xdf\xd8\xfe\x97" \
+    "\xbf\x02\xf0\x00\xe8\xf9\x8b\xc8\x00\xd0\x9a\x6e" \
+    "\x6a\xbe\xe0\xde\x4d\x3f\x7f\xb2\x1d\x68\x6d\x5d" \
+    "\x74\x16\x38\x91\x64\xce\x75\x21\x7b\x78\x08\x8d" \
+    "\x63\x47\x61\xc7\xe3\x5c\xb9\x6c\x1d\x54\xba\x95" \
+    "\x45\xa5\x44\x55\xcb\x62\x5d\x29\x13\x27\x1a\x20" \
+    "\xe2\x09\x30\x48\xb1\x0e\x85\xef\x7b\x54\xf5\x5d" \
+    "\x1e\x8d\x4d\x88\xb6\x48\x23\x69\x66\x9c\xc8\x17" \
+    "\x51\x3e\x72\xaa\xfc\xf0\x96\x3b\xef\x18\x1b\x1d" \
+    "\xfe\x27\x80\xe3\x00\xfc\xf9\x59\xa0\x01\x28\xaf" \
+    "\xea\x7a\x7b\x87\x87\xf6\x9d\x7f\xee\xf2\x4b\xda" \
+    "\xdb\xda\x52\x61\xa2\x81\xa0\x14\xb9\x4e\x85\x66" \
+    "\x5b\xda\x68\xca\x0f\xe8\x88\xaf\xa9\x36\x72\x80" \
+    "\xe8\xe9\xc7\x05\xbd\xb9\x5d\xe8\xfc\x11\x9a\x5c" \
+    "\x74\x0e\xdc\x23\xef\xd3\x89\x91\x61\x39\x91\x1f" \
+    "\xa3\xd9\x8a\x43\xb1\xa4\x2d\xce\x4e\xb4\x51\x52" \
+    "\x46\x41\x55\x85\xf1\x43\xa3\x85\x2d\x9b\xef\xbe" \
+    "\x6f\x74\x74\xf8\x4d\x00\xd3\x00\x9c\x8f\x4f\xc3" \
+    "\x10\x40\xe8\xba\x4e\xf9\xad\xfd\xfd\x6f\x25\x32" \
+    "\x99\xf6\xce\xf3\x57\xe6\x0c\x82\xe0\xaa\x4b\xa1" \
+    "\x1f\xa0\xe4\x78\x98\x92\x49\x76\x4f\x16\xe8\x64" \
+    "\xac\x09\x85\x4c\x0e\xf9\x64\x1b\xcf\x58\x71\xaa" \
+    "\x0e\x0e\x90\x37\x3e\x8e\xda\xd4\x24\xe9\x5a\x8d" \
+    "\x62\x6d\xcd\xb0\xa3\x12\x4e\xd9\x51\x6f\xbc\xb6" \
+    "\xbd\xff\xc1\xdf\xfc\xec\xde\xe3\xc7\x27\xfb\xeb" \
+    "\x95\x97\x3f\xba\x81\x71\xa6\x08\x40\x1c\x40\x06" \
+    "\x40\x4b\xd7\xd9\xdd\x17\x6f\xfc\xc6\x77\x36\x7e" \
+    "\x75\xf5\xb5\x17\x47\x22\x76\xd4\x29\x39\xe2\x44" \
+    "\xc9\x07\x0a\x79\xa8\x52\x11\x22\x08\xa0\x2c\x0b" \
+    "\x68\x5d\x80\xc8\xa1\xfd\x90\xcc\x20\x02\xf4\xc2" \
+    "\x2e\x9d\xea\xe9\x0a\x0e\x1e\xec\xdf\xf7\xfc\x0b" \
+    "\xdb\x5e\x78\x6f\xff\xe0\x2e\x00\x05\x00\xa7\x00" \
+    "\xcc\xd5\x1d\xff\x44\x80\x79\x45\x00\x34\xd4\x23" \
+    "\x1d\x8f\x27\xba\x56\x5e\x78\xd9\x05\x5f\x3a\xf7" \
+    "\x2b\xcb\x52\x4d\x1d\x67\xb5\x2f\x5c\xbc\x20\x62" \
+    "\x46\x2d\x30\x04\xb3\x26\x68\xa5\x7c\xa7\x54\x9b" \
+    "\x1a\x39\x78\xe2\x64\x7e\x64\x72\x64\xf2\xe8\xd0" \
+    "\xd0\xc1\xbd\x7b\xca\xe5\xd2\x08\x80\x12\x80\x62" \
+    "\x7d\xad\xd6\x9b\xfe\x8c\x8a\xff\x9b\x04\x3e\x1c" \
+    "\x18\x09\x00\xb1\xba\x33\x71\x00\xb6\x10\x22\x1e" \
+    "\x8d\xc6\x92\x96\x15\xb1\x89\x04\x82\x5a\xe0\x57" \
+    "\xdd\x8a\xa3\x94\x9a\xab\x27\xa9\x02\xa8\x00\x70" \
+    "\xeb\x67\xed\x02\x50\x9f\x94\xe4\xb3\xfc\x15\x13" \
+    "\x00\x13\x80\x55\x77\xc6\xac\xaf\xa2\x1e\x5c\x7f" \
+    "\xa7\x86\x0f\xfb\xc8\xaf\x3f\xfb\x00\x82\x8f\x57" \
+    "\xfc\x79\x00\x3e\x2e\x71\x5a\xe0\x34\x00\x5d\x0f" \
+    "\xfe\xb4\xa4\x5f\xe8\x0b\x9d\xae\x7f\x03\x0c\xdb" \
+    "\xe8\xdf\x8f\xa4\x44\x04\x00\x00\x00\x00\x49\x45" \
+    "\x4e\x44\xae\x42\x60\x82"
 image1_data = \
-  "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
-  "\x49\x48\x44\x52\x00\x00\x00\x20\x00\x00\x00\x20" \
-  "\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\x00\x00\x04" \
-  "\x5e\x49\x44\x41\x54\x78\x9c\xad\x97\x6f\x6c\x53" \
-  "\x55\x18\xc6\x7f\x17\x2d\xb0\x76\x1d\x97\xc4\xb1" \
-  "\xdb\x32\x8d\xeb\xae\xae\x0c\x42\xbb\x94\x6d\x6c" \
-  "\x66\xcc\xf9\x41\x04\x44\x60\x08\x4e\x86\x7c\x41" \
-  "\x12\xd8\x07\x96\xcc\x64\x88\x21\x08\x31\x11\x35" \
-  "\xc6\x44\x13\x9d\x89\x12\x13\xc2\x40\x37\x8d\x28" \
-  "\x0c\xff\x12\x98\xfc\x99\x40\x61\x1d\x99\x59\xd7" \
-  "\xf5\x0f\x4a\xd6\x75\x13\xd8\x65\x5b\xc7\x12\x42" \
-  "\x8e\x1f\xea\x1a\x62\xd6\xd9\xbb\xee\x49\xce\x97" \
-  "\x73\xcf\xb9\xef\xf3\x3e\xef\x73\xde\x7b\x2e\x42" \
-  "\x08\xf4\x8e\x5f\x0e\x1f\x11\x7d\x17\xdd\x62\x2a" \
-  "\x7b\xff\x3b\x74\x6f\x18\x0a\x04\x45\x78\xf5\x4a" \
-  "\xf1\xba\xaa\x4e\x0b\x81\x19\xe8\x80\xd7\xdb\x25" \
-  "\x4e\x5c\x3e\x8f\x2f\x10\xe6\xb9\x99\xe9\x78\xbd" \
-  "\x5d\x42\xcf\xfe\x89\xf0\x70\xa2\x07\xee\x2b\x6e" \
-  "\x91\x7d\x5f\x42\x29\x72\x49\x9a\xa6\x09\x7f\xc0" \
-  "\xcf\xae\xc0\xcf\xac\xec\xd4\x78\x3a\xd7\xca\x99" \
-  "\xea\x97\x19\x0e\xfa\x01\x84\xdd\xbe\x40\x9a\x76" \
-  "\x02\xf3\xf7\xbf\x49\x93\x30\x62\xdb\xb1\x45\x5c" \
-  "\xee\x7d\x9f\x32\xe3\x76\x3e\x76\xad\xa3\x7f\xff" \
-  "\x26\xc8\xb5\xc6\xd7\x29\x8a\x65\xaa\xb1\x01\x12" \
-  "\x97\xc0\xf2\x7d\x8b\x94\x5f\x55\xc9\xf9\xda\x3a" \
-  "\xca\x8c\xdb\xc9\x76\x39\x91\x87\x46\xe9\xb0\xa9" \
-  "\x1c\x71\x2c\x8c\x05\xcf\xb2\x20\xcb\xf2\x94\xb3" \
-  "\x87\x49\x14\xd0\x34\x4d\x64\xbb\x9c\x3c\x52\xb5" \
-  "\x8e\x0e\x6f\x3b\x63\x73\xd3\xe9\x6e\x3b\xcb\x26" \
-  "\x69\x94\x33\x8b\x16\x63\x36\xcf\x21\xdd\x64\x4a" \
-  "\x25\x36\x30\x89\x02\xb2\x2c\x4b\x8a\x62\xa1\x7c" \
-  "\xed\x46\x0c\x9e\x10\xdd\x6d\x67\x31\x78\x42\xf8" \
-  "\x02\x61\x20\x96\x7d\xaa\xf2\x4f\x4a\x60\x9c\x84" \
-  "\x9a\xab\x92\x5f\x55\x89\xc1\x13\x62\x83\x34\xca" \
-  "\x9e\x85\x19\x00\xa4\x9b\x4c\x29\xcb\xff\xbf\x04" \
-  "\xc6\x49\x2c\x59\xb5\x82\xfc\xaa\x4a\x3e\xea\xf2" \
-  "\xb1\xe1\xee\x3c\xae\xed\xd9\x4f\x7f\x5f\x04\x4d" \
-  "\xd3\x52\x3e\x86\x49\xf7\x01\x83\x55\x61\xe7\x82" \
-  "\x27\xb9\xe7\xcc\xe1\x5c\x81\x95\x3d\x0d\xfb\x38" \
-  "\xf4\xca\x36\x7e\x6d\x3c\x9a\x12\x89\x84\x26\x7c" \
-  "\x10\xb2\x2c\x4b\xc5\xfd\x3e\x71\x31\x10\xe6\xd8" \
-  "\xec\x11\x6a\xd6\x6f\x23\xdc\x79\x0d\xd5\x38\x0f" \
-  "\xc3\xdb\xef\x71\xf2\xaf\x5e\x51\xf6\xd2\x7a\xcc" \
-  "\xb6\x1c\xdd\x25\x91\x84\x48\x2e\x81\x68\x7d\xad" \
-  "\xf8\x74\xd6\x2c\x96\x3c\xb3\x82\xf0\x40\x6f\x7c" \
-  "\x3e\xdc\x79\x8d\x4d\x1d\x7f\xd0\x5e\x52\x41\xe9" \
-  "\x8e\x57\x75\xfb\x22\xe9\x12\xb4\x39\x96\x72\xf3" \
-  "\xcb\x6f\x09\x0f\xf4\xe2\x1d\xfa\x2c\x1e\x3c\xf3" \
-  "\x85\x08\xed\x25\x15\x94\x0f\xde\xe0\x42\xc3\xe7" \
-  "\x7a\x62\xeb\x23\x60\xb0\x2a\x00\xfc\x7d\xf8\x3b" \
-  "\xce\xcd\x59\xce\xf3\x85\x4f\xb1\xf5\xb5\x37\xc8" \
-  "\x9f\xb1\x93\x99\x8f\xcd\x8f\xaf\x1b\x0e\x86\x74" \
-  "\x79\x22\x69\x02\x79\xa6\xd8\xf1\xcb\xdc\xbc\x86" \
-  "\xc6\xc7\x97\xd3\x3d\x78\x8b\x73\x17\xce\xd2\xe3" \
-  "\xf7\x72\xc0\x10\x02\xc0\x7f\xe1\x22\xdd\x83\xb7" \
-  "\xf4\xc4\x4f\xde\x03\x9a\xa6\x09\x77\xcb\x0f\x9c" \
-  "\xda\xb7\x17\x8b\xdd\x89\xbc\x37\x8d\xfc\x19\x3b" \
-  "\x51\x73\x55\xc6\x7c\x01\xcc\x5f\x1f\xa2\x75\xee" \
-  "\xa3\xd8\xd6\xad\x42\x51\x92\x6f\xd1\x49\x2b\x20" \
-  "\xcb\xb2\x54\x5c\xb2\x14\x8b\xdd\x09\x40\x91\x79" \
-  "\x37\x00\x63\xbe\x00\x57\x4f\x9d\xc6\xdd\xf2\x1b" \
-  "\x77\x6c\x0a\xf2\xd0\xa8\x2e\x23\xea\xba\x0f\x98" \
-  "\x6d\x39\x92\xa3\xae\x86\x3e\xaf\x87\x96\xc6\x2f" \
-  "\xe8\xf1\x7b\xa9\xbe\xfe\x13\x05\x6d\xa7\x59\xb2" \
-  "\x6a\x19\x73\x82\x11\xb4\x0c\xa3\x9e\x57\x26\x5f" \
-  "\x82\x71\x68\x9a\x26\xc6\x7c\x01\x9a\xde\x7a\x87" \
-  "\x7b\xce\x1c\x00\x0c\x9e\x98\x07\x32\x37\xaf\xa1" \
-  "\xc0\xe1\x42\xcf\xfd\x40\x97\x02\x10\x2b\x85\x96" \
-  "\x61\xc4\x51\x57\x83\xc1\x13\xc2\xe0\x09\xb1\x75" \
-  "\x81\x15\xb5\xb4\x18\xd0\x7f\x3f\xd0\xad\xc0\x38" \
-  "\x86\x83\x21\x71\xf5\xcf\xeb\x44\x7f\xbf\x42\x41" \
-  "\xdb\x69\x9a\x45\x4c\x7a\x47\x5d\x0d\xe5\x15\x15" \
-  "\x49\x2b\x90\x54\x2b\x9e\x08\x66\x5b\x8e\x94\x77" \
-  "\xf3\xb6\x30\x0f\xde\xa0\xb5\xa4\x02\xf5\xdf\xf9" \
-  "\x8e\x0f\x3e\x21\xcf\x94\x21\x94\x22\xd7\xf4\x9e" \
-  "\x82\x89\xa0\x14\xb9\xa4\x83\x5d\x61\x4c\x87\x1b" \
-  "\x01\x38\xd0\x7e\x9c\xe6\xb4\x01\x3e\xac\xae\x22" \
-  "\x5a\x5f\x2b\x92\xf9\x5a\x4e\xb9\x04\x10\x33\xe4" \
-  "\xdd\x2d\xd5\x6c\x9c\x3d\xc2\xda\xbc\x62\xca\xd7" \
-  "\x6e\x24\xd2\xdf\x07\x40\xb0\xe1\x50\x52\xe5\x48" \
-  "\x49\x01\x00\xc3\xe0\x32\x76\x17\xac\xc6\xba\x68" \
-  "\x71\x7c\xee\x76\x66\x33\x6a\x69\x31\x0b\xf7\x5e" \
-  "\x22\x5a\x5f\x2b\x22\x97\xae\x24\xcc\x32\x25\x02" \
-  "\xb3\x7f\xfc\x8a\x23\xb2\x1b\xd3\x52\x17\x00\xad" \
-  "\xc7\x9a\x18\x1e\xbe\x13\x7f\x7e\x69\xe5\x43\x0c" \
-  "\x79\xfd\x74\xf6\xf8\x12\xbe\x23\xa5\x12\x44\xeb" \
-  "\x6b\xc5\xc1\xae\xd8\x1d\xb1\x39\x6d\x80\x99\x2f" \
-  "\x2e\xe7\x9b\x67\x6b\x90\x65\x59\x3a\x71\xf2\xb8" \
-  "\x18\x27\xf3\x84\x6a\x27\xdd\x64\x9a\xb0\x3f\xa4" \
-  "\xec\x81\x77\x0b\x0b\xb1\xd8\x9d\x94\xee\xdb\x45" \
-  "\xf6\x7d\x09\x2d\xc3\xc8\x48\x34\x0a\x10\xf7\x83" \
-  "\x92\x65\x41\xcd\x55\x27\x6c\xd1\x29\x13\xf0\x07" \
-  "\xfc\xb4\x1e\x6b\xc2\x61\x2f\x60\x6c\x6e\x7a\x3c" \
-  "\x58\x24\xd2\x17\xcf\x58\xd3\x34\x91\xe8\xfb\x90" \
-  "\x12\x01\x88\xfd\x2f\xfa\x83\x7e\x94\xac\x58\x07" \
-  "\x4c\x94\x69\x22\xa4\x4c\x00\x62\x19\x3e\x98\xb1" \
-  "\x1e\xfc\x03\x7d\x9a\x65\x03\x12\x0f\xc2\x63\x00" \
-  "\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82"
+    "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
+    "\x49\x48\x44\x52\x00\x00\x00\x20\x00\x00\x00\x20" \
+    "\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\x00\x00\x04" \
+    "\x5e\x49\x44\x41\x54\x78\x9c\xad\x97\x6f\x6c\x53" \
+    "\x55\x18\xc6\x7f\x17\x2d\xb0\x76\x1d\x97\xc4\xb1" \
+    "\xdb\x32\x8d\xeb\xae\xae\x0c\x42\xbb\x94\x6d\x6c" \
+    "\x66\xcc\xf9\x41\x04\x44\x60\x08\x4e\x86\x7c\x41" \
+    "\x12\xd8\x07\x96\xcc\x64\x88\x21\x08\x31\x11\x35" \
+    "\xc6\x44\x13\x9d\x89\x12\x13\xc2\x40\x37\x8d\x28" \
+    "\x0c\xff\x12\x98\xfc\x99\x40\x61\x1d\x99\x59\xd7" \
+    "\xf5\x0f\x4a\xd6\x75\x13\xd8\x65\x5b\xc7\x12\x42" \
+    "\x8e\x1f\xea\x1a\x62\xd6\xd9\xbb\xee\x49\xce\x97" \
+    "\x73\xcf\xb9\xef\xf3\x3e\xef\x73\xde\x7b\x2e\x42" \
+    "\x08\xf4\x8e\x5f\x0e\x1f\x11\x7d\x17\xdd\x62\x2a" \
+    "\x7b\xff\x3b\x74\x6f\x18\x0a\x04\x45\x78\xf5\x4a" \
+    "\xf1\xba\xaa\x4e\x0b\x81\x19\xe8\x80\xd7\xdb\x25" \
+    "\x4e\x5c\x3e\x8f\x2f\x10\xe6\xb9\x99\xe9\x78\xbd" \
+    "\x5d\x42\xcf\xfe\x89\xf0\x70\xa2\x07\xee\x2b\x6e" \
+    "\x91\x7d\x5f\x42\x29\x72\x49\x9a\xa6\x09\x7f\xc0" \
+    "\xcf\xae\xc0\xcf\xac\xec\xd4\x78\x3a\xd7\xca\x99" \
+    "\xea\x97\x19\x0e\xfa\x01\x84\xdd\xbe\x40\x9a\x76" \
+    "\x02\xf3\xf7\xbf\x49\x93\x30\x62\xdb\xb1\x45\x5c" \
+    "\xee\x7d\x9f\x32\xe3\x76\x3e\x76\xad\xa3\x7f\xff" \
+    "\x26\xc8\xb5\xc6\xd7\x29\x8a\x65\xaa\xb1\x01\x12" \
+    "\x97\xc0\xf2\x7d\x8b\x94\x5f\x55\xc9\xf9\xda\x3a" \
+    "\xca\x8c\xdb\xc9\x76\x39\x91\x87\x46\xe9\xb0\xa9" \
+    "\x1c\x71\x2c\x8c\x05\xcf\xb2\x20\xcb\xf2\x94\xb3" \
+    "\x87\x49\x14\xd0\x34\x4d\x64\xbb\x9c\x3c\x52\xb5" \
+    "\x8e\x0e\x6f\x3b\x63\x73\xd3\xe9\x6e\x3b\xcb\x26" \
+    "\x69\x94\x33\x8b\x16\x63\x36\xcf\x21\xdd\x64\x4a" \
+    "\x25\x36\x30\x89\x02\xb2\x2c\x4b\x8a\x62\xa1\x7c" \
+    "\xed\x46\x0c\x9e\x10\xdd\x6d\x67\x31\x78\x42\xf8" \
+    "\x02\x61\x20\x96\x7d\xaa\xf2\x4f\x4a\x60\x9c\x84" \
+    "\x9a\xab\x92\x5f\x55\x89\xc1\x13\x62\x83\x34\xca" \
+    "\x9e\x85\x19\x00\xa4\x9b\x4c\x29\xcb\xff\xbf\x04" \
+    "\xc6\x49\x2c\x59\xb5\x82\xfc\xaa\x4a\x3e\xea\xf2" \
+    "\xb1\xe1\xee\x3c\xae\xed\xd9\x4f\x7f\x5f\x04\x4d" \
+    "\xd3\x52\x3e\x86\x49\xf7\x01\x83\x55\x61\xe7\x82" \
+    "\x27\xb9\xe7\xcc\xe1\x5c\x81\x95\x3d\x0d\xfb\x38" \
+    "\xf4\xca\x36\x7e\x6d\x3c\x9a\x12\x89\x84\x26\x7c" \
+    "\x10\xb2\x2c\x4b\xc5\xfd\x3e\x71\x31\x10\xe6\xd8" \
+    "\xec\x11\x6a\xd6\x6f\x23\xdc\x79\x0d\xd5\x38\x0f" \
+    "\xc3\xdb\xef\x71\xf2\xaf\x5e\x51\xf6\xd2\x7a\xcc" \
+    "\xb6\x1c\xdd\x25\x91\x84\x48\x2e\x81\x68\x7d\xad" \
+    "\xf8\x74\xd6\x2c\x96\x3c\xb3\x82\xf0\x40\x6f\x7c" \
+    "\x3e\xdc\x79\x8d\x4d\x1d\x7f\xd0\x5e\x52\x41\xe9" \
+    "\x8e\x57\x75\xfb\x22\xe9\x12\xb4\x39\x96\x72\xf3" \
+    "\xcb\x6f\x09\x0f\xf4\xe2\x1d\xfa\x2c\x1e\x3c\xf3" \
+    "\x85\x08\xed\x25\x15\x94\x0f\xde\xe0\x42\xc3\xe7" \
+    "\x7a\x62\xeb\x23\x60\xb0\x2a\x00\xfc\x7d\xf8\x3b" \
+    "\xce\xcd\x59\xce\xf3\x85\x4f\xb1\xf5\xb5\x37\xc8" \
+    "\x9f\xb1\x93\x99\x8f\xcd\x8f\xaf\x1b\x0e\x86\x74" \
+    "\x79\x22\x69\x02\x79\xa6\xd8\xf1\xcb\xdc\xbc\x86" \
+    "\xc6\xc7\x97\xd3\x3d\x78\x8b\x73\x17\xce\xd2\xe3" \
+    "\xf7\x72\xc0\x10\x02\xc0\x7f\xe1\x22\xdd\x83\xb7" \
+    "\xf4\xc4\x4f\xde\x03\x9a\xa6\x09\x77\xcb\x0f\x9c" \
+    "\xda\xb7\x17\x8b\xdd\x89\xbc\x37\x8d\xfc\x19\x3b" \
+    "\x51\x73\x55\xc6\x7c\x01\xcc\x5f\x1f\xa2\x75\xee" \
+    "\xa3\xd8\xd6\xad\x42\x51\x92\x6f\xd1\x49\x2b\x20" \
+    "\xcb\xb2\x54\x5c\xb2\x14\x8b\xdd\x09\x40\x91\x79" \
+    "\x37\x00\x63\xbe\x00\x57\x4f\x9d\xc6\xdd\xf2\x1b" \
+    "\x77\x6c\x0a\xf2\xd0\xa8\x2e\x23\xea\xba\x0f\x98" \
+    "\x6d\x39\x92\xa3\xae\x86\x3e\xaf\x87\x96\xc6\x2f" \
+    "\xe8\xf1\x7b\xa9\xbe\xfe\x13\x05\x6d\xa7\x59\xb2" \
+    "\x6a\x19\x73\x82\x11\xb4\x0c\xa3\x9e\x57\x26\x5f" \
+    "\x82\x71\x68\x9a\x26\xc6\x7c\x01\x9a\xde\x7a\x87" \
+    "\x7b\xce\x1c\x00\x0c\x9e\x98\x07\x32\x37\xaf\xa1" \
+    "\xc0\xe1\x42\xcf\xfd\x40\x97\x02\x10\x2b\x85\x96" \
+    "\x61\xc4\x51\x57\x83\xc1\x13\xc2\xe0\x09\xb1\x75" \
+    "\x81\x15\xb5\xb4\x18\xd0\x7f\x3f\xd0\xad\xc0\x38" \
+    "\x86\x83\x21\x71\xf5\xcf\xeb\x44\x7f\xbf\x42\x41" \
+    "\xdb\x69\x9a\x45\x4c\x7a\x47\x5d\x0d\xe5\x15\x15" \
+    "\x49\x2b\x90\x54\x2b\x9e\x08\x66\x5b\x8e\x94\x77" \
+    "\xf3\xb6\x30\x0f\xde\xa0\xb5\xa4\x02\xf5\xdf\xf9" \
+    "\x8e\x0f\x3e\x21\xcf\x94\x21\x94\x22\xd7\xf4\x9e" \
+    "\x82\x89\xa0\x14\xb9\xa4\x83\x5d\x61\x4c\x87\x1b" \
+    "\x01\x38\xd0\x7e\x9c\xe6\xb4\x01\x3e\xac\xae\x22" \
+    "\x5a\x5f\x2b\x92\xf9\x5a\x4e\xb9\x04\x10\x33\xe4" \
+    "\xdd\x2d\xd5\x6c\x9c\x3d\xc2\xda\xbc\x62\xca\xd7" \
+    "\x6e\x24\xd2\xdf\x07\x40\xb0\xe1\x50\x52\xe5\x48" \
+    "\x49\x01\x00\xc3\xe0\x32\x76\x17\xac\xc6\xba\x68" \
+    "\x71\x7c\xee\x76\x66\x33\x6a\x69\x31\x0b\xf7\x5e" \
+    "\x22\x5a\x5f\x2b\x22\x97\xae\x24\xcc\x32\x25\x02" \
+    "\xb3\x7f\xfc\x8a\x23\xb2\x1b\xd3\x52\x17\x00\xad" \
+    "\xc7\x9a\x18\x1e\xbe\x13\x7f\x7e\x69\xe5\x43\x0c" \
+    "\x79\xfd\x74\xf6\xf8\x12\xbe\x23\xa5\x12\x44\xeb" \
+    "\x6b\xc5\xc1\xae\xd8\x1d\xb1\x39\x6d\x80\x99\x2f" \
+    "\x2e\xe7\x9b\x67\x6b\x90\x65\x59\x3a\x71\xf2\xb8" \
+    "\x18\x27\xf3\x84\x6a\x27\xdd\x64\x9a\xb0\x3f\xa4" \
+    "\xec\x81\x77\x0b\x0b\xb1\xd8\x9d\x94\xee\xdb\x45" \
+    "\xf6\x7d\x09\x2d\xc3\xc8\x48\x34\x0a\x10\xf7\x83" \
+    "\x92\x65\x41\xcd\x55\x27\x6c\xd1\x29\x13\xf0\x07" \
+    "\xfc\xb4\x1e\x6b\xc2\x61\x2f\x60\x6c\x6e\x7a\x3c" \
+    "\x58\x24\xd2\x17\xcf\x58\xd3\x34\x91\xe8\xfb\x90" \
+    "\x12\x01\x88\xfd\x2f\xfa\x83\x7e\x94\xac\x58\x07" \
+    "\x4c\x94\x69\x22\xa4\x4c\x00\x62\x19\x3e\x98\xb1" \
+    "\x1e\xfc\x03\x7d\x9a\x65\x03\x12\x0f\xc2\x63\x00" \
+    "\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82"
 image2_data = \
-  "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
-  "\x49\x48\x44\x52\x00\x00\x00\x20\x00\x00\x00\x20" \
-  "\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\x00\x00\x05" \
-  "\xc1\x49\x44\x41\x54\x78\x9c\xed\x97\xcb\x8f\x1d" \
-  "\x47\x15\xc6\x7f\xe7\x54\x55\x3f\xee\xbd\x73\xe7" \
-  "\x32\x33\xb1\xb1\x1d\xcb\x0e\x20\x90\x26\x8e\x71" \
-  "\x82\x43\x00\x2f\x03\xca\x7f\x40\x56\x08\xb1\x01" \
-  "\xfe\x9f\x6c\xf8\x33\x22\xb1\x41\x28\xb2\x48\x78" \
-  "\x19\x81\x63\x09\x13\xa2\x84\xc4\x8f\x05\x90\xf1" \
-  "\x78\x66\xec\x99\xb9\x8f\xee\xae\xaa\xc3\xa2\xef" \
-  "\xcc\xd8\x84\x7d\x16\xb8\xa4\x96\x5a\xf5\xe8\xf3" \
-  "\xd5\x39\xdf\x57\x5f\xb5\x98\x19\x5f\x64\xd3\x2f" \
-  "\x34\xfa\x33\x00\xcf\x00\x00\x3e\x99\x99\x58\x64" \
-  "\x67\xfb\x01\x5d\x4a\x60\x86\x99\x21\x22\x88\x08" \
-  "\x66\x86\xaa\x07\x13\x20\x62\x29\x93\x73\x26\xa5" \
-  "\x44\xce\x19\x0c\x54\x3d\xce\x39\x70\x05\xaa\x8e" \
-  "\xa2\x28\x28\x8a\x80\xf7\x81\xa2\x08\x38\xd7\xef" \
-  "\xd3\x04\xb2\x19\x2a\x7d\x70\x11\x11\x6f\x66\xdc" \
-  "\xbf\x77\x8f\x5f\xbc\xf5\x16\xdf\x7f\xfd\xf5\xe5" \
-  "\x80\x1e\x07\x17\x11\x9c\x0b\x08\x02\x92\x48\x4b" \
-  "\xd9\x1e\x8d\x9b\x81\x8a\x03\x40\x51\xcc\x32\x39" \
-  "\x1b\x08\xa8\x28\x08\x38\xe7\x70\xea\xc8\x2a\x68" \
-  "\xf0\x6c\x6e\x6e\x32\x99\x4c\x96\x19\x88\x91\x9d" \
-  "\x07\x3b\xdc\xbb\x7b\x9f\xba\x1e\xe0\xbc\x43\x55" \
-  "\xfb\x1d\x19\x64\xcb\x7d\xf0\x65\xcb\x7c\x1e\x80" \
-  "\x88\x60\x39\xe3\x9c\x2e\xfb\xfa\xe7\xe9\x66\x60" \
-  "\x19\x92\xf1\xc9\xc7\x1f\x71\xe5\x95\x6f\x11\x42" \
-  "\xc0\x3b\x15\xe6\xb3\x19\xaf\x7d\xe7\x35\x6e\xde" \
-  "\x7a\xff\x78\xf1\x51\x09\x4e\x02\x9d\xf4\x01\x98" \
-  "\xd9\x71\x29\x9e\x04\xf4\xdf\x73\x8e\xde\x9f\xec" \
-  "\x33\x84\x4b\x97\xbf\xd9\x03\xb8\x79\xf3\x4f\x7c" \
-  "\x7a\xe7\x63\x9c\xf7\xdc\xbf\x7f\x1f\xe7\x14\x55" \
-  "\x3d\x9e\x7c\xbc\xe8\x7f\x7c\xec\x24\x53\xcb\x79" \
-  "\x08\xaa\xfa\x39\xf0\x18\xa8\x53\xbc\x73\x88\x2a" \
-  "\x97\x5e\xba\xcc\xe3\x47\x8f\x50\x55\xf3\x55\x28" \
-  "\xa9\xab\x9a\x33\xdf\x38\xc7\xab\x57\xbf\x4d\xdb" \
-  "\x2d\x08\xce\x53\x96\x25\x55\x5d\x21\x08\x65\x59" \
-  "\x9e\x80\x5a\x06\x5e\x2c\x5a\x9a\xa6\x45\x54\x51" \
-  "\x17\xa8\xeb\x1a\x72\x22\xa5\x44\xd3\x34\xa8\x2a" \
-  "\x4d\xd3\x00\x1c\xaf\xf7\xde\x93\x2c\xd3\x76\x1d" \
-  "\x77\xef\xdc\xa5\xed\x3a\x3c\x40\xce\x99\x2e\x46" \
-  "\x2e\x5d\xba\xc4\x7b\xef\x5e\xe7\x0f\xbf\xfd\x3d" \
-  "\x72\x54\x76\x11\x8a\x10\x4e\x38\x60\x46\x4a\x89" \
-  "\x2e\x19\x4d\xdb\x91\x52\x66\x7d\x7d\x83\x37\x7f" \
-  "\xf8\x26\x2f\x7c\xe5\x22\x29\x25\x76\x77\x77\x49" \
-  "\x29\x31\x99\x4c\xe8\xba\x0e\x55\xa5\x6b\x3b\xc6" \
-  "\xcf\xad\x91\x53\xe6\xf1\xde\x1e\x45\x51\x20\x22" \
-  "\x78\xcb\x3d\x37\x9c\x3a\xb2\x65\x7e\x75\xfd\x1d" \
-  "\x7e\xf3\xee\x7b\x38\x00\x17\x20\x66\xf2\xa2\xc5" \
-  "\x72\x42\x1c\x58\x36\x0c\xc5\x8d\x07\xc8\x4a\x0d" \
-  "\x83\x8a\xe1\xfb\x33\x7e\xfe\xb3\x9f\xb2\xbd\xbd" \
-  "\xcd\xfa\xfa\x3a\xa3\xd1\x08\xe7\x1c\x5d\xd7\xe1" \
-  "\xbd\xa7\xaa\x2a\x30\x88\xce\x31\x9f\x1e\x50\x86" \
-  "\x82\xe9\xec\xa0\x07\x90\x73\xcf\xe4\x9c\x0d\x55" \
-  "\x25\xc7\x84\x1a\xb4\x6a\xf8\xd8\xd7\x5d\x07\x15" \
-  "\x38\x21\x13\x21\x43\xa8\x6a\x64\x3c\xa0\x50\x8f" \
-  "\x9d\x5d\x67\xf1\xf8\x2e\xea\x02\x1f\xde\xbe\xcd" \
-  "\xb5\x6b\xd7\xb8\x71\xe3\x06\xaa\x4a\x51\x14\x1c" \
-  "\x1c\x1c\x60\x66\x54\x65\xc5\x57\xbf\xf6\x75\xc6" \
-  "\x2b\x63\xa2\x08\xf3\x65\x8a\xfd\x91\x6e\x45\x84" \
-  "\x9c\x33\xa6\x8a\xae\x8e\x28\x52\x42\xf1\x64\x77" \
-  "\xc4\xde\x8c\x6a\x81\x18\x98\x38\xbc\x0b\x2c\x54" \
-  "\x90\x7b\xff\x46\x0e\x67\x88\xf4\xb5\xce\x39\xb3" \
-  "\xb1\xb1\x81\xf7\x3d\x8f\x26\x93\x09\x66\x86\xf3" \
-  "\x9e\xf1\x70\x48\xf0\x0e\x43\x8f\x78\x8b\x4f\xa9" \
-  "\x23\xa5\x9e\x3c\x18\x14\xa6\xb4\x8f\xa6\x64\x33" \
-  "\xac\x89\x14\x55\x09\xd9\x38\x6c\x17\x94\x65\x81" \
-  "\x78\xcf\x74\x31\x67\x6d\x52\xd2\xec\x1c\x52\x07" \
-  "\x01\xc9\xe4\x1c\xd9\xdf\xdf\xa7\x69\x1a\x26\x93" \
-  "\xc9\xb1\x02\x86\xc3\x21\x5d\xd7\xc7\x98\x35\x33" \
-  "\x16\x8f\x77\xa9\xaa\x8a\xa6\xe9\x7a\x19\xc6\x14" \
-  "\x69\xdb\x96\x18\x23\xd9\x32\xd9\x81\x5b\x29\x28" \
-  "\x92\xa1\x2b\x23\x52\xce\xb8\x64\x8c\xeb\x02\x27" \
-  "\xda\x4b\xaa\x82\xa1\x1b\x71\xe6\x95\x2b\x90\x3b" \
-  "\xf6\x6e\xfe\x05\x13\x63\x34\x1a\x91\x52\x62\x7f" \
-  "\x7f\x9f\xba\xae\x49\x29\xe1\x9c\x63\xb1\x58\xe0" \
-  "\xbd\x47\x44\xa8\xeb\x9a\xb6\x6d\x49\x4b\xc5\xf8" \
-  "\x14\x21\xc6\x8e\x18\x3b\x2c\x0b\x29\x0b\x3e\x3b" \
-  "\xa2\x1a\xa6\x42\xf4\x0e\xcd\xd2\xdb\x56\x32\x40" \
-  "\x28\xc4\x98\xcd\x0e\x91\x7b\x1f\x71\xb0\xb5\x85" \
-  "\x36\x73\x44\x94\x87\x0f\x1f\x2e\x75\x6f\x74\x29" \
-  "\x91\x72\xa6\x6d\x5b\x72\xce\x6c\x6f\x6f\x73\xfe" \
-  "\xfc\x79\x06\x83\x01\x66\x46\xea\x12\x6d\xd3\xe1" \
-  "\x73\x4a\x74\x5d\x77\xe2\x4e\x19\x6c\xde\x90\x53" \
-  "\x42\x52\xc6\x79\x25\x3b\xcf\x22\x26\x06\x65\x89" \
-  "\x7a\x47\x32\xa3\xdb\xda\x66\x3a\x9b\xe3\x13\xac" \
-  "\x0c\x56\x88\xa9\x63\x75\x75\xb5\x07\x90\x05\xaf" \
-  "\x8a\x11\x09\x21\xd0\xb6\x2d\xf3\xf9\xfc\x38\x33" \
-  "\x47\xa0\x52\xca\x78\x43\xc0\x04\x61\x79\xe4\x66" \
-  "\x43\x44\x71\x85\x62\xfb\x53\xa2\x29\xd5\x68\x48" \
-  "\xd5\x26\xba\xc3\x39\x12\x1c\x09\x08\xa3\x55\x56" \
-  "\x2e\xbf\x84\x78\x41\xef\xfc\x0b\x41\xfa\x8d\xb8" \
-  "\xc0\x3f\xa7\xf0\x5c\x50\x36\x06\x15\x29\x25\xca" \
-  "\xb2\xe4\xc2\x85\x17\x78\xb8\xbd\x4d\x08\x05\xde" \
-  "\x3b\x42\xf0\x98\x65\xfc\xda\xc6\x06\x4e\x1d\x29" \
-  "\xa5\xde\xf9\x44\x49\x07\x0b\xcc\x0b\xe0\x28\xcd" \
-  "\x91\xf7\x66\x24\xcb\xfd\xf1\x9a\x0c\x0f\x84\x83" \
-  "\x29\xf3\x5b\x1f\xe0\x62\xe6\x4b\xa7\x4f\x91\x3b" \
-  "\x63\x73\x73\x93\xc3\xfd\xc7\x5c\x58\xf3\x34\xcd" \
-  "\x21\x8f\xf6\x15\xe7\xe4\x98\xe4\x83\xe1\x80\xe9" \
-  "\x74\x8a\xf7\x8e\x8c\x91\x2d\xe1\x2f\x5e\xbc\xc8" \
-  "\xef\x96\xce\xa7\xaa\x7c\xf9\xf9\x73\x2c\x72\x24" \
-  "\x24\x47\x70\x1e\xef\x3d\x2e\x04\xca\xba\x62\x30" \
-  "\x18\x50\xd7\x35\xc3\xe1\x90\xba\xae\x18\x0e\x07" \
-  "\x54\xa3\x11\x2f\x5f\x79\x99\xe1\x78\xc4\xa7\xff" \
-  "\xf8\x84\x5b\x7f\xfe\x23\xdf\xfb\xee\x35\x3e\xdb" \
-  "\xdd\xc2\x85\xc0\xce\xc3\x47\x8c\x46\x23\xf6\xf7" \
-  "\xf7\x38\x73\xf6\x2c\x7f\xff\xe0\x43\xae\x5e\x7d" \
-  "\x95\x64\xbd\x91\xc9\xe1\x6c\x66\xbf\x7c\xfb\x6d" \
-  "\x34\xc3\x1b\x6f\xfc\x00\x93\x5e\x8e\x22\xd2\x2b" \
-  "\x63\xe9\x78\x66\x46\x8c\x11\xb3\x4c\x8c\xfd\x65" \
-  "\x24\xc6\x48\x17\x23\x4d\xd7\xd2\x75\x1d\xcd\x74" \
-  "\xce\x83\xad\x1d\x56\x27\xe3\x25\x21\x33\xbb\x7b" \
-  "\x3b\xac\xaf\xad\x61\x06\xa7\x4f\x9f\x25\xc5\xc4" \
-  "\xed\xdb\x7f\xe3\xb3\x07\x5b\xfc\xe8\x27\x3f\x46" \
-  "\x16\x6d\x6b\x7f\xbd\x75\x8b\xeb\xbf\x7e\x87\x53" \
-  "\xa7\x36\x40\xf2\x53\x2e\x78\xd4\xfa\x83\xca\xc8" \
-  "\xbd\xfb\x9e\xd8\xb0\x0a\xe2\x5c\x7f\xf0\x54\x1e" \
-  "\xe7\x2a\xca\x32\x50\x96\x05\xde\x87\x63\x57\x0c" \
-  "\x41\x11\x09\x94\x65\x9f\xc9\x73\xcf\x9f\x63\x3c" \
-  "\x1e\xe3\x83\x73\x6c\xbe\xf8\x22\x39\x26\xe6\xf3" \
-  "\x29\x45\x15\x08\x4b\xf3\xb1\x6c\xf8\xe0\x97\x57" \
-  "\xac\x92\xaa\x1a\x50\x84\x92\xaa\xaa\xf0\x45\xc0" \
-  "\x79\x8f\x0f\x01\xa7\x8a\x98\x61\x2c\x6f\x48\xaa" \
-  "\xb0\x7c\x7f\xf2\x42\x22\xa2\x4f\xd9\x3a\x80\x3c" \
-  "\xfb\x33\x7a\x06\xe0\xff\x1e\xc0\x7f\x00\x62\x83" \
-  "\x41\x30\xe4\x9a\x61\x6f\x00\x00\x00\x00\x49\x45" \
-  "\x4e\x44\xae\x42\x60\x82"
+    "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
+    "\x49\x48\x44\x52\x00\x00\x00\x20\x00\x00\x00\x20" \
+    "\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\x00\x00\x05" \
+    "\xc1\x49\x44\x41\x54\x78\x9c\xed\x97\xcb\x8f\x1d" \
+    "\x47\x15\xc6\x7f\xe7\x54\x55\x3f\xee\xbd\x73\xe7" \
+    "\x32\x33\xb1\xb1\x1d\xcb\x0e\x20\x90\x26\x8e\x71" \
+    "\x82\x43\x00\x2f\x03\xca\x7f\x40\x56\x08\xb1\x01" \
+    "\xfe\x9f\x6c\xf8\x33\x22\xb1\x41\x28\xb2\x48\x78" \
+    "\x19\x81\x63\x09\x13\xa2\x84\xc4\x8f\x05\x90\xf1" \
+    "\x78\x66\xec\x99\xb9\x8f\xee\xae\xaa\xc3\xa2\xef" \
+    "\xcc\xd8\x84\x7d\x16\xb8\xa4\x96\x5a\xf5\xe8\xf3" \
+    "\xd5\x39\xdf\x57\x5f\xb5\x98\x19\x5f\x64\xd3\x2f" \
+    "\x34\xfa\x33\x00\xcf\x00\x00\x3e\x99\x99\x58\x64" \
+    "\x67\xfb\x01\x5d\x4a\x60\x86\x99\x21\x22\x88\x08" \
+    "\x66\x86\xaa\x07\x13\x20\x62\x29\x93\x73\x26\xa5" \
+    "\x44\xce\x19\x0c\x54\x3d\xce\x39\x70\x05\xaa\x8e" \
+    "\xa2\x28\x28\x8a\x80\xf7\x81\xa2\x08\x38\xd7\xef" \
+    "\xd3\x04\xb2\x19\x2a\x7d\x70\x11\x11\x6f\x66\xdc" \
+    "\xbf\x77\x8f\x5f\xbc\xf5\x16\xdf\x7f\xfd\xf5\xe5" \
+    "\x80\x1e\x07\x17\x11\x9c\x0b\x08\x02\x92\x48\x4b" \
+    "\xd9\x1e\x8d\x9b\x81\x8a\x03\x40\x51\xcc\x32\x39" \
+    "\x1b\x08\xa8\x28\x08\x38\xe7\x70\xea\xc8\x2a\x68" \
+    "\xf0\x6c\x6e\x6e\x32\x99\x4c\x96\x19\x88\x91\x9d" \
+    "\x07\x3b\xdc\xbb\x7b\x9f\xba\x1e\xe0\xbc\x43\x55" \
+    "\xfb\x1d\x19\x64\xcb\x7d\xf0\x65\xcb\x7c\x1e\x80" \
+    "\x88\x60\x39\xe3\x9c\x2e\xfb\xfa\xe7\xe9\x66\x60" \
+    "\x19\x92\xf1\xc9\xc7\x1f\x71\xe5\x95\x6f\x11\x42" \
+    "\xc0\x3b\x15\xe6\xb3\x19\xaf\x7d\xe7\x35\x6e\xde" \
+    "\x7a\xff\x78\xf1\x51\x09\x4e\x02\x9d\xf4\x01\x98" \
+    "\xd9\x71\x29\x9e\x04\xf4\xdf\x73\x8e\xde\x9f\xec" \
+    "\x33\x84\x4b\x97\xbf\xd9\x03\xb8\x79\xf3\x4f\x7c" \
+    "\x7a\xe7\x63\x9c\xf7\xdc\xbf\x7f\x1f\xe7\x14\x55" \
+    "\x3d\x9e\x7c\xbc\xe8\x7f\x7c\xec\x24\x53\xcb\x79" \
+    "\x08\xaa\xfa\x39\xf0\x18\xa8\x53\xbc\x73\x88\x2a" \
+    "\x97\x5e\xba\xcc\xe3\x47\x8f\x50\x55\xf3\x55\x28" \
+    "\xa9\xab\x9a\x33\xdf\x38\xc7\xab\x57\xbf\x4d\xdb" \
+    "\x2d\x08\xce\x53\x96\x25\x55\x5d\x21\x08\x65\x59" \
+    "\x9e\x80\x5a\x06\x5e\x2c\x5a\x9a\xa6\x45\x54\x51" \
+    "\x17\xa8\xeb\x1a\x72\x22\xa5\x44\xd3\x34\xa8\x2a" \
+    "\x4d\xd3\x00\x1c\xaf\xf7\xde\x93\x2c\xd3\x76\x1d" \
+    "\x77\xef\xdc\xa5\xed\x3a\x3c\x40\xce\x99\x2e\x46" \
+    "\x2e\x5d\xba\xc4\x7b\xef\x5e\xe7\x0f\xbf\xfd\x3d" \
+    "\x72\x54\x76\x11\x8a\x10\x4e\x38\x60\x46\x4a\x89" \
+    "\x2e\x19\x4d\xdb\x91\x52\x66\x7d\x7d\x83\x37\x7f" \
+    "\xf8\x26\x2f\x7c\xe5\x22\x29\x25\x76\x77\x77\x49" \
+    "\x29\x31\x99\x4c\xe8\xba\x0e\x55\xa5\x6b\x3b\xc6" \
+    "\xcf\xad\x91\x53\xe6\xf1\xde\x1e\x45\x51\x20\x22" \
+    "\x78\xcb\x3d\x37\x9c\x3a\xb2\x65\x7e\x75\xfd\x1d" \
+    "\x7e\xf3\xee\x7b\x38\x00\x17\x20\x66\xf2\xa2\xc5" \
+    "\x72\x42\x1c\x58\x36\x0c\xc5\x8d\x07\xc8\x4a\x0d" \
+    "\x83\x8a\xe1\xfb\x33\x7e\xfe\xb3\x9f\xb2\xbd\xbd" \
+    "\xcd\xfa\xfa\x3a\xa3\xd1\x08\xe7\x1c\x5d\xd7\xe1" \
+    "\xbd\xa7\xaa\x2a\x30\x88\xce\x31\x9f\x1e\x50\x86" \
+    "\x82\xe9\xec\xa0\x07\x90\x73\xcf\xe4\x9c\x0d\x55" \
+    "\x25\xc7\x84\x1a\xb4\x6a\xf8\xd8\xd7\x5d\x07\x15" \
+    "\x38\x21\x13\x21\x43\xa8\x6a\x64\x3c\xa0\x50\x8f" \
+    "\x9d\x5d\x67\xf1\xf8\x2e\xea\x02\x1f\xde\xbe\xcd" \
+    "\xb5\x6b\xd7\xb8\x71\xe3\x06\xaa\x4a\x51\x14\x1c" \
+    "\x1c\x1c\x60\x66\x54\x65\xc5\x57\xbf\xf6\x75\xc6" \
+    "\x2b\x63\xa2\x08\xf3\x65\x8a\xfd\x91\x6e\x45\x84" \
+    "\x9c\x33\xa6\x8a\xae\x8e\x28\x52\x42\xf1\x64\x77" \
+    "\xc4\xde\x8c\x6a\x81\x18\x98\x38\xbc\x0b\x2c\x54" \
+    "\x90\x7b\xff\x46\x0e\x67\x88\xf4\xb5\xce\x39\xb3" \
+    "\xb1\xb1\x81\xf7\x3d\x8f\x26\x93\x09\x66\x86\xf3" \
+    "\x9e\xf1\x70\x48\xf0\x0e\x43\x8f\x78\x8b\x4f\xa9" \
+    "\x23\xa5\x9e\x3c\x18\x14\xa6\xb4\x8f\xa6\x64\x33" \
+    "\xac\x89\x14\x55\x09\xd9\x38\x6c\x17\x94\x65\x81" \
+    "\x78\xcf\x74\x31\x67\x6d\x52\xd2\xec\x1c\x52\x07" \
+    "\x01\xc9\xe4\x1c\xd9\xdf\xdf\xa7\x69\x1a\x26\x93" \
+    "\xc9\xb1\x02\x86\xc3\x21\x5d\xd7\xc7\x98\x35\x33" \
+    "\x16\x8f\x77\xa9\xaa\x8a\xa6\xe9\x7a\x19\xc6\x14" \
+    "\x69\xdb\x96\x18\x23\xd9\x32\xd9\x81\x5b\x29\x28" \
+    "\x92\xa1\x2b\x23\x52\xce\xb8\x64\x8c\xeb\x02\x27" \
+    "\xda\x4b\xaa\x82\xa1\x1b\x71\xe6\x95\x2b\x90\x3b" \
+    "\xf6\x6e\xfe\x05\x13\x63\x34\x1a\x91\x52\x62\x7f" \
+    "\x7f\x9f\xba\xae\x49\x29\xe1\x9c\x63\xb1\x58\xe0" \
+    "\xbd\x47\x44\xa8\xeb\x9a\xb6\x6d\x49\x4b\xc5\xf8" \
+    "\x14\x21\xc6\x8e\x18\x3b\x2c\x0b\x29\x0b\x3e\x3b" \
+    "\xa2\x1a\xa6\x42\xf4\x0e\xcd\xd2\xdb\x56\x32\x40" \
+    "\x28\xc4\x98\xcd\x0e\x91\x7b\x1f\x71\xb0\xb5\x85" \
+    "\x36\x73\x44\x94\x87\x0f\x1f\x2e\x75\x6f\x74\x29" \
+    "\x91\x72\xa6\x6d\x5b\x72\xce\x6c\x6f\x6f\x73\xfe" \
+    "\xfc\x79\x06\x83\x01\x66\x46\xea\x12\x6d\xd3\xe1" \
+    "\x73\x4a\x74\x5d\x77\xe2\x4e\x19\x6c\xde\x90\x53" \
+    "\x42\x52\xc6\x79\x25\x3b\xcf\x22\x26\x06\x65\x89" \
+    "\x7a\x47\x32\xa3\xdb\xda\x66\x3a\x9b\xe3\x13\xac" \
+    "\x0c\x56\x88\xa9\x63\x75\x75\xb5\x07\x90\x05\xaf" \
+    "\x8a\x11\x09\x21\xd0\xb6\x2d\xf3\xf9\xfc\x38\x33" \
+    "\x47\xa0\x52\xca\x78\x43\xc0\x04\x61\x79\xe4\x66" \
+    "\x43\x44\x71\x85\x62\xfb\x53\xa2\x29\xd5\x68\x48" \
+    "\xd5\x26\xba\xc3\x39\x12\x1c\x09\x08\xa3\x55\x56" \
+    "\x2e\xbf\x84\x78\x41\xef\xfc\x0b\x41\xfa\x8d\xb8" \
+    "\xc0\x3f\xa7\xf0\x5c\x50\x36\x06\x15\x29\x25\xca" \
+    "\xb2\xe4\xc2\x85\x17\x78\xb8\xbd\x4d\x08\x05\xde" \
+    "\x3b\x42\xf0\x98\x65\xfc\xda\xc6\x06\x4e\x1d\x29" \
+    "\xa5\xde\xf9\x44\x49\x07\x0b\xcc\x0b\xe0\x28\xcd" \
+    "\x91\xf7\x66\x24\xcb\xfd\xf1\x9a\x0c\x0f\x84\x83" \
+    "\x29\xf3\x5b\x1f\xe0\x62\xe6\x4b\xa7\x4f\x91\x3b" \
+    "\x63\x73\x73\x93\xc3\xfd\xc7\x5c\x58\xf3\x34\xcd" \
+    "\x21\x8f\xf6\x15\xe7\xe4\x98\xe4\x83\xe1\x80\xe9" \
+    "\x74\x8a\xf7\x8e\x8c\x91\x2d\xe1\x2f\x5e\xbc\xc8" \
+    "\xef\x96\xce\xa7\xaa\x7c\xf9\xf9\x73\x2c\x72\x24" \
+    "\x24\x47\x70\x1e\xef\x3d\x2e\x04\xca\xba\x62\x30" \
+    "\x18\x50\xd7\x35\xc3\xe1\x90\xba\xae\x18\x0e\x07" \
+    "\x54\xa3\x11\x2f\x5f\x79\x99\xe1\x78\xc4\xa7\xff" \
+    "\xf8\x84\x5b\x7f\xfe\x23\xdf\xfb\xee\x35\x3e\xdb" \
+    "\xdd\xc2\x85\xc0\xce\xc3\x47\x8c\x46\x23\xf6\xf7" \
+    "\xf7\x38\x73\xf6\x2c\x7f\xff\xe0\x43\xae\x5e\x7d" \
+    "\x95\x64\xbd\x91\xc9\xe1\x6c\x66\xbf\x7c\xfb\x6d" \
+    "\x34\xc3\x1b\x6f\xfc\x00\x93\x5e\x8e\x22\xd2\x2b" \
+    "\x63\xe9\x78\x66\x46\x8c\x11\xb3\x4c\x8c\xfd\x65" \
+    "\x24\xc6\x48\x17\x23\x4d\xd7\xd2\x75\x1d\xcd\x74" \
+    "\xce\x83\xad\x1d\x56\x27\xe3\x25\x21\x33\xbb\x7b" \
+    "\x3b\xac\xaf\xad\x61\x06\xa7\x4f\x9f\x25\xc5\xc4" \
+    "\xed\xdb\x7f\xe3\xb3\x07\x5b\xfc\xe8\x27\x3f\x46" \
+    "\x16\x6d\x6b\x7f\xbd\x75\x8b\xeb\xbf\x7e\x87\x53" \
+    "\xa7\x36\x40\xf2\x53\x2e\x78\xd4\xfa\x83\xca\xc8" \
+    "\xbd\xfb\x9e\xd8\xb0\x0a\xe2\x5c\x7f\xf0\x54\x1e" \
+    "\xe7\x2a\xca\x32\x50\x96\x05\xde\x87\x63\x57\x0c" \
+    "\x41\x11\x09\x94\x65\x9f\xc9\x73\xcf\x9f\x63\x3c" \
+    "\x1e\xe3\x83\x73\x6c\xbe\xf8\x22\x39\x26\xe6\xf3" \
+    "\x29\x45\x15\x08\x4b\xf3\xb1\x6c\xf8\xe0\x97\x57" \
+    "\xac\x92\xaa\x1a\x50\x84\x92\xaa\xaa\xf0\x45\xc0" \
+    "\x79\x8f\x0f\x01\xa7\x8a\x98\x61\x2c\x6f\x48\xaa" \
+    "\xb0\x7c\x7f\xf2\x42\x22\xa2\x4f\xd9\x3a\x80\x3c" \
+    "\xfb\x33\x7a\x06\xe0\xff\x1e\xc0\x7f\x00\x62\x83" \
+    "\x41\x30\xe4\x9a\x61\x6f\x00\x00\x00\x00\x49\x45" \
+    "\x4e\x44\xae\x42\x60\x82"
 
 class pyNavBarView(QWidget):
-  def __init__(self,parent = None,name = None,fl = 0):
-    QWidget.__init__(self,parent,name,fl)
+    def __init__(self,parent = None,name = None,fl = 0):
+        QWidget.__init__(self,parent,name,fl)
 
-    self.image0 = QPixmap()
-    self.image0.loadFromData(image0_data,"PNG")
-    self.image1 = QPixmap()
-    self.image1.loadFromData(image1_data,"PNG")
-    self.image2 = QPixmap()
-    self.image2.loadFromData(image2_data,"PNG")
-    if not name:
-      self.setName("pyNavBarView")
+        self.image0 = QPixmap()
+        self.image0.loadFromData(image0_data,"PNG")
+        self.image1 = QPixmap()
+        self.image1.loadFromData(image1_data,"PNG")
+        self.image2 = QPixmap()
+        self.image2.loadFromData(image2_data,"PNG")
+        if not name:
+            self.setName("pyNavBarView")
 
-    self.setSizePolicy(QSizePolicy(3,3,0,0,self.sizePolicy().hasHeightForWidth()))
+        self.setSizePolicy(QSizePolicy(3,3,0,0,self.sizePolicy().hasHeightForWidth()))
 
-    pyNavBarViewLayout = QHBoxLayout(self,0,6,"pyNavBarViewLayout")
+        pyNavBarViewLayout = QHBoxLayout(self,0,6,"pyNavBarViewLayout")
 
-    self.m_list_view = QListView(self,"m_list_view")
-    self.m_list_view.addColumn(self.__tr("Navigation"))
-    self.m_list_view.header().setClickEnabled(0,self.m_list_view.header().count() - 1)
-    self.m_list_view.header().setResizeEnabled(0,self.m_list_view.header().count() - 1)
-    self.m_list_view.setSizePolicy(QSizePolicy(5,5,0,0,self.m_list_view.sizePolicy().hasHeightForWidth()))
-    self.m_list_view.setAcceptDrops(1)
-    self.m_list_view.setFrameShape(QListView.StyledPanel)
-    self.m_list_view.setFrameShadow(QListView.Sunken)
-    self.m_list_view.setHScrollBarMode(QListView.AlwaysOff)
-    self.m_list_view.setAllColumnsShowFocus(1)
-    self.m_list_view.setRootIsDecorated(1)
-    self.m_list_view.setResizeMode(QListView.AllColumns)
-    pyNavBarViewLayout.addWidget(self.m_list_view)
+        self.m_list_view = QListView(self,"m_list_view")
+        self.m_list_view.addColumn(self.__tr("Navigation"))
+        self.m_list_view.header().setClickEnabled(0,self.m_list_view.header().count() - 1)
+        self.m_list_view.header().setResizeEnabled(0,self.m_list_view.header().count() - 1)
+        self.m_list_view.setSizePolicy(QSizePolicy(5,5,0,0,self.m_list_view.sizePolicy().hasHeightForWidth()))
+        self.m_list_view.setAcceptDrops(1)
+        self.m_list_view.setFrameShape(QListView.StyledPanel)
+        self.m_list_view.setFrameShadow(QListView.Sunken)
+        self.m_list_view.setHScrollBarMode(QListView.AlwaysOff)
+        self.m_list_view.setAllColumnsShowFocus(1)
+        self.m_list_view.setRootIsDecorated(1)
+        self.m_list_view.setResizeMode(QListView.AllColumns)
+        pyNavBarViewLayout.addWidget(self.m_list_view)
 
-    self.languageChange()
+        self.languageChange()
 
-    self.resize(QSize(210,390).expandedTo(self.minimumSizeHint()))
-    self.clearWState(Qt.WState_Polished)
+        self.resize(QSize(210,390).expandedTo(self.minimumSizeHint()))
+        self.clearWState(Qt.WState_Polished)
 
 
-  def languageChange(self):
-    self.setCaption(self.__tr("pyNavBarView"))
-    self.m_list_view.header().setLabel(0,self.__tr("Navigation"))
-    self.m_list_view.clear()
-    item = QListViewItem(self.m_list_view,None)
-    item.setText(0,self.__tr(" Populations"))
-    item.setPixmap(0,self.image0)
+    def languageChange(self):
+        self.setCaption(self.__tr("pyNavBarView"))
+        self.m_list_view.header().setLabel(0,self.__tr("Navigation"))
+        self.m_list_view.clear()
+        item = QListViewItem(self.m_list_view,None)
+        item.setText(0,self.__tr(" Populations"))
+        item.setPixmap(0,self.image0)
 
-    item = QListViewItem(self.m_list_view,item)
-    item.setText(0,self.__tr(" Organisms"))
-    item.setPixmap(0,self.image1)
+        item = QListViewItem(self.m_list_view,item)
+        item.setText(0,self.__tr(" Organisms"))
+        item.setPixmap(0,self.image1)
 
-    item = QListViewItem(self.m_list_view,item)
-    item.setText(0,self.__tr(" Analysis"))
-    item.setPixmap(0,self.image2)
+        item = QListViewItem(self.m_list_view,item)
+        item.setText(0,self.__tr(" Analysis"))
+        item.setPixmap(0,self.image2)
 
 
 
-  def __tr(self,s,c = None):
-    return qApp.translate("pyNavBarView",s,c)
+    def __tr(self,s,c = None):
+        return qApp.translate("pyNavBarView",s,c)

Modified: trunk/source/python/AvidaGui2/pyOneAna_GraphView.py
===================================================================
--- trunk/source/python/AvidaGui2/pyOneAna_GraphView.py	2005-03-31 03:44:15 UTC (rev 95)
+++ trunk/source/python/AvidaGui2/pyOneAna_GraphView.py	2005-03-31 09:26:09 UTC (rev 96)
@@ -1,9 +1,9 @@
 # -*- coding: utf-8 -*-
 
-# Form implementation generated from reading ui file '/Users/kaben/Projects/Software/Avida/branch.kaben/avida--current--2.0--base-0/source/bindings/Boost.Python/AvidaGui2/pyOneAna_GraphView.ui'
+# Form implementation generated from reading ui file 'pyOneAna_GraphView.ui'
 #
-# Created: Fri Dec 3 10:26:51 2004
-#      by: The PyQt User Interface Compiler (pyuic) 3.12
+# Created: Thu Mar 31 04:19:20 2005
+#      by: The PyQt User Interface Compiler (pyuic) 3.13
 #
 # WARNING! All changes made in this file will be lost!
 
@@ -12,143 +12,143 @@
 from pyGraphCtrl import pyGraphCtrl
 
 image0_data = \
-  "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
-  "\x49\x48\x44\x52\x00\x00\x00\x0f\x00\x00\x00\x0e" \
-  "\x08\x06\x00\x00\x00\xf0\x8a\x46\xef\x00\x00\x01" \
-  "\xd7\x49\x44\x41\x54\x78\x9c\x85\x92\xcd\x6a\x53" \
-  "\x51\x14\x85\xbf\x9b\x5c\x09\x89\x69\xa3\xad\xb6" \
-  "\x45\xc1\xe2\x4f\x1a\x9d\x28\x8a\x13\x91\x80\xc1" \
-  "\xd0\xa9\xe0\x44\xa1\x82\x38\xa8\x93\x4e\xd4\xe2" \
-  "\xd4\x17\x70\x20\x8a\x51\x21\xfa\x04\xfa\x06\x05" \
-  "\x87\x22\xc4\x61\x41\x09\x0d\x04\x35\x85\x04\x93" \
-  "\xe6\xaf\xf6\x26\xb9\xe7\x2c\x07\x6d\xd3\x34\x11" \
-  "\xba\x60\x71\xe0\xec\xb3\xce\x62\xef\xbd\x90\xc4" \
-  "\x20\x5b\xad\x96\x96\x9f\x3c\x55\xa5\x52\xd1\x70" \
-  "\x6d\x98\x01\x06\xd0\x6e\xb7\x95\x79\x91\xe5\x88" \
-  "\x3b\x85\x31\x96\x83\xe0\x48\x02\xa0\xd3\xe9\x28" \
-  "\xf3\x32\xcb\x4c\x60\x8e\xdf\xb5\x3c\x53\x73\x51" \
-  "\x42\xa1\xd0\xbe\xc7\xb1\x58\x8c\x54\x2a\x45\x38" \
-  "\x1c\x76\xfa\x62\xdf\xf7\xf5\xe6\x55\x96\xe3\x9c" \
-  "\xa3\x56\xde\xe2\xd8\xd4\x18\x96\x3d\x67\x21\xac" \
-  "\x0c\x5e\x6f\x8b\x52\x23\xcf\xdd\x07\xb7\x48\x24" \
-  "\x12\x8e\x23\x89\x77\xaf\xdf\x2b\xd6\x3d\xc5\x46" \
-  "\xb9\x83\xac\xc0\xd9\x15\x81\x24\x8c\x84\x95\xc5" \
-  "\xf3\x7d\xa6\xa7\xc7\x21\x5a\x63\xe1\xe1\x6d\x82" \
-  "\x97\x2f\x5e\x55\x77\xfd\x30\xed\x3f\x86\xdd\x16" \
-  "\xf6\x3b\x82\x95\xc5\x58\x8b\x91\xa5\xd6\xdc\xe4" \
-  "\x68\x64\x92\x46\x6f\x9d\xc0\xcd\xf9\x1b\x14\x36" \
-  "\x7e\xe0\x19\x7f\x48\xb8\x0d\xbb\xf3\xa1\x91\x30" \
-  "\xb2\x08\x68\x79\x3d\xca\xbf\xea\x04\xa2\xd1\xa8" \
-  "\xb3\xf4\x68\x81\x92\xf7\x9d\xae\x35\xfb\x5c\xa5" \
-  "\xed\xd3\x58\xdb\x77\xb7\xb2\xf4\x7a\x06\x6f\xab" \
-  "\xbb\x37\xed\xc2\x5a\x41\x99\xe7\x9f\x38\x3d\x76" \
-  "\x9e\x4d\xbf\xc3\xdf\x6e\x13\x83\xb0\x56\x08\x70" \
-  "\x02\x2e\xae\x13\xc2\xc8\x30\x39\x31\xce\x89\xb3" \
-  "\x03\xab\x02\xc8\xe5\xbe\xe9\xe3\x87\x2f\x6c\x7a" \
-  "\x75\xae\xa5\xcf\x10\x0c\x06\xfb\xb5\x66\xa3\x4d" \
-  "\xee\xeb\x1a\x13\xe1\x0b\xb8\xee\x21\xae\xcf\x4f" \
-  "\x32\x92\x9a\x95\x95\xcf\xba\x77\x67\x49\xd5\x6a" \
-  "\x75\x24\x61\xf9\x7c\x5e\x8b\xf7\x9f\xe9\xf1\xe2" \
-  "\x5b\x15\x8b\x45\xb9\xc3\xa9\x49\xa7\x53\x4e\x28" \
-  "\xe4\x2a\x12\x89\x8c\x24\x2a\x1e\x8f\x3b\x33\x27" \
-  "\xa3\xaa\x55\xea\xcc\xce\xce\x3a\x23\x62\x80\x64" \
-  "\x32\xe9\xfc\xef\x1e\xe0\xd2\x95\x04\xeb\x3f\x6b" \
-  "\x3b\x53\x3d\x20\xfc\xc3\x5c\x5d\x5d\x55\xa9\x54" \
-  "\x92\x24\xfe\x01\x03\x3d\x5a\xfa\x32\x50\xe5\x56" \
-  "\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82"
+    "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
+    "\x49\x48\x44\x52\x00\x00\x00\x0f\x00\x00\x00\x0e" \
+    "\x08\x06\x00\x00\x00\xf0\x8a\x46\xef\x00\x00\x01" \
+    "\xd7\x49\x44\x41\x54\x78\x9c\x85\x92\xcd\x6a\x53" \
+    "\x51\x14\x85\xbf\x9b\x5c\x09\x89\x69\xa3\xad\xb6" \
+    "\x45\xc1\xe2\x4f\x1a\x9d\x28\x8a\x13\x91\x80\xc1" \
+    "\xd0\xa9\xe0\x44\xa1\x82\x38\xa8\x93\x4e\xd4\xe2" \
+    "\xd4\x17\x70\x20\x8a\x51\x21\xfa\x04\xfa\x06\x05" \
+    "\x87\x22\xc4\x61\x41\x09\x0d\x04\x35\x85\x04\x93" \
+    "\xe6\xaf\xf6\x26\xb9\xe7\x2c\x07\x6d\xd3\x34\x11" \
+    "\xba\x60\x71\xe0\xec\xb3\xce\x62\xef\xbd\x90\xc4" \
+    "\x20\x5b\xad\x96\x96\x9f\x3c\x55\xa5\x52\xd1\x70" \
+    "\x6d\x98\x01\x06\xd0\x6e\xb7\x95\x79\x91\xe5\x88" \
+    "\x3b\x85\x31\x96\x83\xe0\x48\x02\xa0\xd3\xe9\x28" \
+    "\xf3\x32\xcb\x4c\x60\x8e\xdf\xb5\x3c\x53\x73\x51" \
+    "\x42\xa1\xd0\xbe\xc7\xb1\x58\x8c\x54\x2a\x45\x38" \
+    "\x1c\x76\xfa\x62\xdf\xf7\xf5\xe6\x55\x96\xe3\x9c" \
+    "\xa3\x56\xde\xe2\xd8\xd4\x18\x96\x3d\x67\x21\xac" \
+    "\x0c\x5e\x6f\x8b\x52\x23\xcf\xdd\x07\xb7\x48\x24" \
+    "\x12\x8e\x23\x89\x77\xaf\xdf\x2b\xd6\x3d\xc5\x46" \
+    "\xb9\x83\xac\xc0\xd9\x15\x81\x24\x8c\x84\x95\xc5" \
+    "\xf3\x7d\xa6\xa7\xc7\x21\x5a\x63\xe1\xe1\x6d\x82" \
+    "\x97\x2f\x5e\x55\x77\xfd\x30\xed\x3f\x86\xdd\x16" \
+    "\xf6\x3b\x82\x95\xc5\x58\x8b\x91\xa5\xd6\xdc\xe4" \
+    "\x68\x64\x92\x46\x6f\x9d\xc0\xcd\xf9\x1b\x14\x36" \
+    "\x7e\xe0\x19\x7f\x48\xb8\x0d\xbb\xf3\xa1\x91\x30" \
+    "\xb2\x08\x68\x79\x3d\xca\xbf\xea\x04\xa2\xd1\xa8" \
+    "\xb3\xf4\x68\x81\x92\xf7\x9d\xae\x35\xfb\x5c\xa5" \
+    "\xed\xd3\x58\xdb\x77\xb7\xb2\xf4\x7a\x06\x6f\xab" \
+    "\xbb\x37\xed\xc2\x5a\x41\x99\xe7\x9f\x38\x3d\x76" \
+    "\x9e\x4d\xbf\xc3\xdf\x6e\x13\x83\xb0\x56\x08\x70" \
+    "\x02\x2e\xae\x13\xc2\xc8\x30\x39\x31\xce\x89\xb3" \
+    "\x03\xab\x02\xc8\xe5\xbe\xe9\xe3\x87\x2f\x6c\x7a" \
+    "\x75\xae\xa5\xcf\x10\x0c\x06\xfb\xb5\x66\xa3\x4d" \
+    "\xee\xeb\x1a\x13\xe1\x0b\xb8\xee\x21\xae\xcf\x4f" \
+    "\x32\x92\x9a\x95\x95\xcf\xba\x77\x67\x49\xd5\x6a" \
+    "\x75\x24\x61\xf9\x7c\x5e\x8b\xf7\x9f\xe9\xf1\xe2" \
+    "\x5b\x15\x8b\x45\xb9\xc3\xa9\x49\xa7\x53\x4e\x28" \
+    "\xe4\x2a\x12\x89\x8c\x24\x2a\x1e\x8f\x3b\x33\x27" \
+    "\xa3\xaa\x55\xea\xcc\xce\xce\x3a\x23\x62\x80\x64" \
+    "\x32\xe9\xfc\xef\x1e\xe0\xd2\x95\x04\xeb\x3f\x6b" \
+    "\x3b\x53\x3d\x20\xfc\xc3\x5c\x5d\x5d\x55\xa9\x54" \
+    "\x92\x24\xfe\x01\x03\x3d\x5a\xfa\x32\x50\xe5\x56" \
+    "\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82"
 
 class pyOneAna_GraphView(QWidget):
-  def __init__(self,parent = None,name = None,fl = 0):
-    QWidget.__init__(self,parent,name,fl)
+    def __init__(self,parent = None,name = None,fl = 0):
+        QWidget.__init__(self,parent,name,fl)
 
-    self.image0 = QPixmap()
-    self.image0.loadFromData(image0_data,"PNG")
-    if not name:
-      self.setName("pyOneAna_GraphView")
+        self.image0 = QPixmap()
+        self.image0.loadFromData(image0_data,"PNG")
+        if not name:
+            self.setName("pyOneAna_GraphView")
 
 
-    pyOneAna_GraphViewLayout = QVBoxLayout(self,0,6,"pyOneAna_GraphViewLayout")
+        pyOneAna_GraphViewLayout = QVBoxLayout(self,0,6,"pyOneAna_GraphViewLayout")
 
-    layout210 = QHBoxLayout(None,0,6,"layout210")
-    spacer152 = QSpacerItem(1,32,QSizePolicy.Minimum,QSizePolicy.Minimum)
-    layout210.addItem(spacer152)
+        layout210 = QHBoxLayout(None,0,6,"layout210")
+        spacer152 = QSpacerItem(1,32,QSizePolicy.Minimum,QSizePolicy.Minimum)
+        layout210.addItem(spacer152)
 
-    self.textLabel9_2 = QLabel(self,"textLabel9_2")
-    self.textLabel9_2.setSizePolicy(QSizePolicy(3,5,0,0,self.textLabel9_2.sizePolicy().hasHeightForWidth()))
-    textLabel9_2_font = QFont(self.textLabel9_2.font())
-    textLabel9_2_font.setPointSize(11)
-    self.textLabel9_2.setFont(textLabel9_2_font)
-    layout210.addWidget(self.textLabel9_2)
+        self.textLabel9_2 = QLabel(self,"textLabel9_2")
+        self.textLabel9_2.setSizePolicy(QSizePolicy(3,5,0,0,self.textLabel9_2.sizePolicy().hasHeightForWidth()))
+        textLabel9_2_font = QFont(self.textLabel9_2.font())
+        textLabel9_2_font.setPointSize(11)
+        self.textLabel9_2.setFont(textLabel9_2_font)
+        layout210.addWidget(self.textLabel9_2)
 
-    layout178 = QVBoxLayout(None,0,6,"layout178")
-    spacer126 = QSpacerItem(1,1,QSizePolicy.Minimum,QSizePolicy.Minimum)
-    layout178.addItem(spacer126)
+        layout178 = QVBoxLayout(None,0,6,"layout178")
+        spacer126 = QSpacerItem(1,1,QSizePolicy.Minimum,QSizePolicy.Minimum)
+        layout178.addItem(spacer126)
 
-    self.toolButton31_2 = QToolButton(self,"toolButton31_2")
-    toolButton31_2_font = QFont(self.toolButton31_2.font())
-    toolButton31_2_font.setPointSize(10)
-    self.toolButton31_2.setFont(toolButton31_2_font)
-    self.toolButton31_2.setIconSet(QIconSet(self.image0))
-    layout178.addWidget(self.toolButton31_2)
-    spacer126_2 = QSpacerItem(1,1,QSizePolicy.Minimum,QSizePolicy.Minimum)
-    layout178.addItem(spacer126_2)
-    layout210.addLayout(layout178)
-    pyOneAna_GraphViewLayout.addLayout(layout210)
+        self.toolButton31_2 = QToolButton(self,"toolButton31_2")
+        toolButton31_2_font = QFont(self.toolButton31_2.font())
+        toolButton31_2_font.setPointSize(10)
+        self.toolButton31_2.setFont(toolButton31_2_font)
+        self.toolButton31_2.setIconSet(QIconSet(self.image0))
+        layout178.addWidget(self.toolButton31_2)
+        spacer126_2 = QSpacerItem(1,1,QSizePolicy.Minimum,QSizePolicy.Minimum)
+        layout178.addItem(spacer126_2)
+        layout210.addLayout(layout178)
+        pyOneAna_GraphViewLayout.addLayout(layout210)
 
-    self.pyGraphCtrl1 = pyGraphCtrl(self,"pyGraphCtrl1")
-    self.pyGraphCtrl1.setSizePolicy(QSizePolicy(3,3,0,0,self.pyGraphCtrl1.sizePolicy().hasHeightForWidth()))
-    self.pyGraphCtrl1.setMinimumSize(QSize(100,100))
-    pyOneAna_GraphViewLayout.addWidget(self.pyGraphCtrl1)
+        self.pyGraphCtrl1 = pyGraphCtrl(self,"pyGraphCtrl1")
+        self.pyGraphCtrl1.setSizePolicy(QSizePolicy(3,3,0,0,self.pyGraphCtrl1.sizePolicy().hasHeightForWidth()))
+        self.pyGraphCtrl1.setMinimumSize(QSize(100,100))
+        pyOneAna_GraphViewLayout.addWidget(self.pyGraphCtrl1)
 
-    layout262 = QHBoxLayout(None,0,6,"layout262")
-    spacer200_2 = QSpacerItem(10,10,QSizePolicy.Expanding,QSizePolicy.Minimum)
-    layout262.addItem(spacer200_2)
+        layout262 = QHBoxLayout(None,0,6,"layout262")
+        spacer200_2 = QSpacerItem(10,10,QSizePolicy.Expanding,QSizePolicy.Minimum)
+        layout262.addItem(spacer200_2)
 
-    self.toolButton31_2_2 = QToolButton(self,"toolButton31_2_2")
-    self.toolButton31_2_2.setSizePolicy(QSizePolicy(0,0,0,0,self.toolButton31_2_2.sizePolicy().hasHeightForWidth()))
-    toolButton31_2_2_font = QFont(self.toolButton31_2_2.font())
-    toolButton31_2_2_font.setPointSize(10)
-    self.toolButton31_2_2.setFont(toolButton31_2_2_font)
-    layout262.addWidget(self.toolButton31_2_2)
+        self.toolButton31_2_2 = QToolButton(self,"toolButton31_2_2")
+        self.toolButton31_2_2.setSizePolicy(QSizePolicy(0,0,0,0,self.toolButton31_2_2.sizePolicy().hasHeightForWidth()))
+        toolButton31_2_2_font = QFont(self.toolButton31_2_2.font())
+        toolButton31_2_2_font.setPointSize(10)
+        self.toolButton31_2_2.setFont(toolButton31_2_2_font)
+        layout262.addWidget(self.toolButton31_2_2)
 
-    self.comboBox1 = QComboBox(0,self,"comboBox1")
-    comboBox1_font = QFont(self.comboBox1.font())
-    comboBox1_font.setPointSize(11)
-    self.comboBox1.setFont(comboBox1_font)
-    layout262.addWidget(self.comboBox1)
-    spacer200 = QSpacerItem(10,10,QSizePolicy.Expanding,QSizePolicy.Minimum)
-    layout262.addItem(spacer200)
-    pyOneAna_GraphViewLayout.addLayout(layout262)
+        self.comboBox1 = QComboBox(0,self,"comboBox1")
+        comboBox1_font = QFont(self.comboBox1.font())
+        comboBox1_font.setPointSize(11)
+        self.comboBox1.setFont(comboBox1_font)
+        layout262.addWidget(self.comboBox1)
+        spacer200 = QSpacerItem(10,10,QSizePolicy.Expanding,QSizePolicy.Minimum)
+        layout262.addItem(spacer200)
+        pyOneAna_GraphViewLayout.addLayout(layout262)
 
-    layout262_2 = QHBoxLayout(None,0,6,"layout262_2")
-    spacer200_2_2 = QSpacerItem(10,10,QSizePolicy.Expanding,QSizePolicy.Minimum)
-    layout262_2.addItem(spacer200_2_2)
+        layout262_2 = QHBoxLayout(None,0,6,"layout262_2")
+        spacer200_2_2 = QSpacerItem(10,10,QSizePolicy.Expanding,QSizePolicy.Minimum)
+        layout262_2.addItem(spacer200_2_2)
 
-    self.toolButton31_2_2_2 = QToolButton(self,"toolButton31_2_2_2")
-    self.toolButton31_2_2_2.setSizePolicy(QSizePolicy(0,0,0,0,self.toolButton31_2_2_2.sizePolicy().hasHeightForWidth()))
-    toolButton31_2_2_2_font = QFont(self.toolButton31_2_2_2.font())
-    toolButton31_2_2_2_font.setPointSize(10)
-    self.toolButton31_2_2_2.setFont(toolButton31_2_2_2_font)
-    layout262_2.addWidget(self.toolButton31_2_2_2)
-    spacer200_3 = QSpacerItem(10,10,QSizePolicy.Expanding,QSizePolicy.Minimum)
-    layout262_2.addItem(spacer200_3)
-    pyOneAna_GraphViewLayout.addLayout(layout262_2)
+        self.toolButton31_2_2_2 = QToolButton(self,"toolButton31_2_2_2")
+        self.toolButton31_2_2_2.setSizePolicy(QSizePolicy(0,0,0,0,self.toolButton31_2_2_2.sizePolicy().hasHeightForWidth()))
+        toolButton31_2_2_2_font = QFont(self.toolButton31_2_2_2.font())
+        toolButton31_2_2_2_font.setPointSize(10)
+        self.toolButton31_2_2_2.setFont(toolButton31_2_2_2_font)
+        layout262_2.addWidget(self.toolButton31_2_2_2)
+        spacer200_3 = QSpacerItem(10,10,QSizePolicy.Expanding,QSizePolicy.Minimum)
+        layout262_2.addItem(spacer200_3)
+        pyOneAna_GraphViewLayout.addLayout(layout262_2)
 
-    self.languageChange()
+        self.languageChange()
 
-    self.resize(QSize(124,201).expandedTo(self.minimumSizeHint()))
-    self.clearWState(Qt.WState_Polished)
+        self.resize(QSize(124,201).expandedTo(self.minimumSizeHint()))
+        self.clearWState(Qt.WState_Polished)
 
 
-  def languageChange(self):
-    self.setCaption(self.__tr("pyOneAna_GraphView"))
-    self.textLabel9_2.setText(self.__tr("Graph"))
-    self.toolButton31_2.setText(QString.null)
-    self.toolButton31_2_2.setText(self.__tr("-"))
-    self.comboBox1.clear()
-    self.comboBox1.insertItem(self.__tr("Merit"))
-    self.toolButton31_2_2_2.setText(self.__tr("+"))
+    def languageChange(self):
+        self.setCaption(self.__tr("pyOneAna_GraphView"))
+        self.textLabel9_2.setText(self.__tr("Graph"))
+        self.toolButton31_2.setText(QString.null)
+        self.toolButton31_2_2.setText(self.__tr("-"))
+        self.comboBox1.clear()
+        self.comboBox1.insertItem(self.__tr("Merit"))
+        self.toolButton31_2_2_2.setText(self.__tr("+"))
 
 
-  def __tr(self,s,c = None):
-    return qApp.translate("pyOneAna_GraphView",s,c)
+    def __tr(self,s,c = None):
+        return qApp.translate("pyOneAna_GraphView",s,c)

Modified: trunk/source/python/AvidaGui2/pyOneAna_PetriDishView.py
===================================================================
--- trunk/source/python/AvidaGui2/pyOneAna_PetriDishView.py	2005-03-31 03:44:15 UTC (rev 95)
+++ trunk/source/python/AvidaGui2/pyOneAna_PetriDishView.py	2005-03-31 09:26:09 UTC (rev 96)
@@ -1,9 +1,9 @@
 # -*- coding: utf-8 -*-
 
-# Form implementation generated from reading ui file '/Users/kaben/Projects/Software/Avida/branch.kaben/avida--current--2.0--base-0/source/bindings/Boost.Python/AvidaGui2/pyOneAna_PetriDishView.ui'
+# Form implementation generated from reading ui file 'pyOneAna_PetriDishView.ui'
 #
-# Created: Fri Dec 3 10:26:51 2004
-#      by: The PyQt User Interface Compiler (pyuic) 3.12
+# Created: Thu Mar 31 04:19:20 2005
+#      by: The PyQt User Interface Compiler (pyuic) 3.13
 #
 # WARNING! All changes made in this file will be lost!
 
@@ -14,343 +14,343 @@
 from pyAnalyzeControlsCtrl import pyAnalyzeControlsCtrl
 
 image0_data = \
-  "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
-  "\x49\x48\x44\x52\x00\x00\x00\x20\x00\x00\x00\x20" \
-  "\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\x00\x00\x08" \
-  "\x3d\x49\x44\x41\x54\x78\x9c\xed\x96\x5d\x6c\x1c" \
-  "\xd5\x15\xc7\xff\xe7\xde\x99\xd9\xd9\x4f\x7b\xbd" \
-  "\xfe\x88\xd7\x1b\x6c\x12\x3b\x35\x04\x92\xb4\xe1" \
-  "\x33\x40\x53\x48\x44\x09\x22\x04\xa2\xd2\xd2\x87" \
-  "\x36\x85\xf6\xa5\x55\x11\xa5\x2d\x50\x21\x68\xd5" \
-  "\x02\x2a\x0d\x11\x05\xaa\x3e\x20\x50\x24\xd4\x40" \
-  "\x11\x85\x16\xa9\xa0\x50\xa0\x8a\x83\x02\x09\x58" \
-  "\x75\xe4\x38\x21\x90\x38\x8e\xed\xac\xed\x6c\xe2" \
-  "\xd8\xbb\xeb\x9d\xd9\x99\xd9\xb9\xf7\xf4\x81\x35" \
-  "\x4a\x28\x15\x08\xa9\xea\x0b\x7f\xe9\xe8\xce\x95" \
-  "\x66\x74\x7e\xe7\x7f\x8f\xee\x19\xe0\x0b\xfd\x9f" \
-  "\x45\x9f\xe7\xa3\xde\xde\x5e\x23\x91\x48\xc4\xb4" \
-  "\xd6\x36\x00\xb2\x2c\xcb\xb3\x6d\xdb\xed\xeb\xeb" \
-  "\xab\xfd\x4f\x00\xd6\xad\xbb\x36\xbd\x62\xc5\x85" \
-  "\x97\x5e\xbe\xfa\xca\x65\xcb\x57\x2c\xef\x11\x24" \
-  "\xb3\xc2\xb4\x6d\xcb\x22\x10\x11\x54\xa8\x51\xab" \
-  "\x05\x81\x0a\xfd\xc2\xc1\xa1\xfd\xc3\x83\x43\x83" \
-  "\x07\x5f\xf9\xfb\xdf\x76\xed\xd8\xb1\x63\xea\x73" \
-  "\x03\x34\x36\x36\xe2\xba\xeb\x36\x7c\xf9\xd6\x5b" \
-  "\x6f\xbb\x69\x71\xf7\x79\x17\x47\xac\x08\x31\x98" \
-  "\x98\x18\x60\x0d\x82\x60\x80\x08\x00\x18\x1a\x52" \
-  "\x0a\x86\x20\x12\xc4\x86\x65\x51\x5c\x85\x4a\x14" \
-  "\xa6\xf2\xfd\x8f\x3d\xf6\xf0\x9f\xb7\x6d\x7b\xba" \
-  "\xaf\x52\xa9\xe8\xcf\x0c\xb0\x6c\xd9\xf2\x96\x2d" \
-  "\x5b\x9e\xb8\xa3\x67\xf1\xb2\x4b\x49\x08\x26\x22" \
-  "\x82\x24\x08\x22\x5b\x9a\x46\x3c\x54\x7e\x42\xa9" \
-  "\xc0\x54\x50\x82\x34\x41\x08\xc1\x64\x18\x35\x53" \
-  "\xd8\x2e\x42\xed\x19\x86\x88\x4a\xc9\x92\x84\x50" \
-  "\x5a\xb1\x2a\x4c\x8f\xf7\xff\xf8\x87\xb7\xdc\xdf" \
-  "\xd7\xb7\xe3\xe8\xa7\x02\x6c\xdc\x78\xd3\xd2\xdf" \
-  "\xfd\xf6\x89\xfb\x85\x61\xa7\x49\x48\x68\x70\xbc" \
-  "\x16\x78\x6d\xfc\xfe\x60\xc6\x35\x64\xcc\x4f\x35" \
-  "\x72\x2d\xd0\x2c\xa5\x41\x2c\x04\xc0\x82\x01\x66" \
-  "\xa5\x43\x92\x06\x21\x1a\x89\x50\x3c\x11\x55\xf1" \
-  "\x64\x83\x6b\x9b\x56\x51\x6b\xe5\x29\x85\x59\x61" \
-  "\x73\xf1\xf1\x47\x1f\x78\xe8\xa1\x07\x1f\xdc\x79" \
-  "\x7a\x3e\x79\xfa\x66\xfd\x86\x1b\x7b\x37\x6f\xde" \
-  "\xba\x45\x85\x68\x50\x8c\x98\x3b\x37\xd3\x63\x3c" \
-  "\xf7\x44\x4f\xe2\xd7\x3f\x6d\x8c\xbe\xf8\xac\x55" \
-  "\xb8\x72\x03\x47\x8d\x26\x81\x53\x2c\xec\x50\x52" \
-  "\x08\x62\xd3\x8e\xc1\x94\x36\x4c\xc3\x26\x43\x46" \
-  "\x69\x2e\x12\x60\x94\x4e\xca\x59\x67\xc6\x0a\x1c" \
-  "\xa7\x81\x14\x47\x41\x66\x45\xd5\x28\xbc\x62\xed" \
-  "\x55\x5f\x65\xe5\x8d\xec\x7e\xfb\xed\xf1\xff\x00" \
-  "\x68\x5d\xb0\x20\xf2\xe4\x9f\x5e\xfc\xbd\x50\x91" \
-  "\x66\xa7\x52\xe9\x28\xce\x16\xce\xa9\x55\xdc\x78" \
-  "\x70\x72\x86\xe6\xb2\x9d\x5c\xee\xea\x66\x71\xf9" \
-  "\x3a\x54\xa7\x4b\xe4\x55\x7c\x04\x9e\x0f\xb3\x25" \
-  "\xc9\x56\x24\x02\x61\x48\x21\xa4\xc1\x92\x0c\x7a" \
-  "\x3d\xb6\x97\x36\xd3\x56\xda\x21\x07\x49\x06\x51" \
-  "\xee\x0e\x72\xe6\xec\xec\xa9\x16\x21\x0d\x82\xb2" \
-  "\xe6\xd6\x5c\x73\xe5\x45\xbb\x76\xee\x78\x2d\x7f" \
-  "\xec\x98\x0b\x00\xc6\x3c\xc0\x5d\xf7\xdc\x73\x75" \
-  "\x63\x6b\x36\x37\x3b\x79\x6a\xa1\x5b\x2d\x9d\x65" \
-  "\x99\x71\x86\x25\x41\xab\xaf\xd3\x20\x08\x41\x82" \
-  "\x2d\x09\x8e\xe5\x5a\x95\xd6\x4c\x81\xd6\x30\x6c" \
-  "\x0b\x44\x12\x44\x20\x22\x49\x02\x82\x95\xef\x51" \
-  "\x67\xb5\x99\xcb\xb2\x4a\x29\xcf\x22\x8e\x98\x6c" \
-  "\x99\x29\x2a\x17\x67\x73\x7e\x50\x8d\xc1\x68\xf9" \
-  "\xe0\x27\x77\xfd\xe2\x5b\xbb\x6f\xb8\xfe\x8f\x67" \
-  "\xf4\xc0\xbe\xb1\xf1\x47\x98\x53\xeb\xcb\xf9\xe3" \
-  "\x5d\xa6\x88\x12\x91\x01\x21\x08\x44\x02\x00\x91" \
-  "\x60\xb0\x15\x86\xa2\x3a\xe1\x90\x61\x48\xf8\x96" \
-  "\xe2\x44\x36\xc3\x62\xc6\x21\xcd\x04\x8a\x0a\xa8" \
-  "\x64\x82\xdf\x8d\xbf\x4f\x5c\x03\xa7\xc3\x28\x3a" \
-  "\xfc\x66\x48\x92\x5a\x2a\x12\xcc\x1a\xb5\x9a\x03" \
-  "\x19\x11\xf9\x44\x4b\x6a\xf7\xb9\x5d\x99\x9b\xcf" \
-  "\x70\x80\x28\xd6\x59\x9e\x2c\x74\x46\x64\x82\x20" \
-  "\x04\x88\x05\x84\x29\x19\x1a\x42\x10\x69\x10\x53" \
-  "\x30\x57\x65\x37\xf0\xc8\x54\x04\x1d\x8b\xb2\xa9" \
-  "\x98\xbc\xb2\x22\x12\x12\x5e\xb5\x0a\x95\xb1\xf4" \
-  "\x1f\x8c\xe7\xc5\x34\x1f\xa7\xb4\xd9\x88\x47\xdd" \
-  "\x3b\xd4\xcb\x4d\xfd\xc6\x6e\x0c\xa0\x43\x2f\xe0" \
-  "\xeb\xdd\x8b\xb8\xc7\x6d\xcd\x7a\x65\xaf\x13\x40" \
-  "\x14\x40\x75\x1e\xc0\x9c\xce\x9f\xe8\x48\x99\x0d" \
-  "\x42\x6b\x01\x41\x02\x99\xdd\xdb\xa9\xe9\xb9\xa7" \
-  "\xa4\x6e\xcb\x62\x6e\xd5\x55\x28\x7d\xed\x7a\x4e" \
-  "\x0f\x0f\xa0\xc9\x4e\x70\xad\xa5\x83\xfd\xb6\x16" \
-  "\xf6\x95\xa6\x4a\x8c\x35\xc2\x1a\x0b\xdb\x20\x4f" \
-  "\xf8\x94\x2d\x26\xa0\x55\x94\x49\xd7\x28\x6d\x36" \
-  "\xe0\xb0\x39\x86\x82\x3f\x85\x8a\xe1\xd0\x4c\x75" \
-  "\x09\x6c\xab\x9b\x2a\x4e\x29\x27\x84\x88\x68\xad" \
-  "\x3f\x02\x88\xe9\x9a\x9f\x86\x25\x20\x09\x44\x06" \
-  "\x51\xfa\xf5\x97\x60\x8e\x1c\x06\x8d\x8f\xa2\xd0" \
-  "\xbb\x82\xd2\x83\x7b\xd0\xfa\xcb\xdb\x05\xb3\x82" \
-  "\xd7\x9e\xa3\x89\x67\x77\x85\x71\xaf\x0a\x3b\x12" \
-  "\x27\xa3\xc9\x10\x35\xdb\x56\xb1\x63\xa3\x62\xeb" \
-  "\xe1\x65\xba\x96\x59\x83\x62\x7b\xbb\x16\x29\x13" \
-  "\x9b\x0a\x6b\xf5\x51\x7f\x09\x4d\x73\x91\x17\x19" \
-  "\x39\x22\x08\x40\x23\xa9\xb5\x8e\x02\x28\x1a\x00" \
-  "\x04\x80\x48\xb9\xe4\x9a\x0d\x51\x90\x94\x16\x13" \
-  "\x6b\xe4\x2f\xbf\x86\xd0\xd9\x0b\xbb\x78\x8a\xbd" \
-  "\x4b\xd7\x72\x6a\xcf\xeb\xe4\x58\x06\x4c\x2d\x51" \
-  "\x5e\x7c\x0e\x9b\x86\x41\xe1\x5c\x48\x81\x13\x42" \
-  "\xb9\x0a\x5e\x86\xa9\xe3\xf9\x27\x11\x79\xf1\x19" \
-  "\x41\xa6\x01\xeb\xea\x1b\xd8\xb9\xe5\x36\x5e\xff" \
-  "\xab\x3b\x29\x94\x16\xfc\x45\x4b\x28\xff\xfd\x35" \
-  "\xac\x88\xc0\xb6\x6d\x0a\x21\x6c\xad\xb5\x31\xef" \
-  "\x80\x71\xf8\x83\x23\xa1\x49\x31\x5e\x98\xeb\x42" \
-  "\x7a\xe8\x1d\xa4\x0e\x0c\x40\xb5\xb6\xeb\xe0\x8a" \
-  "\x35\xf0\x96\x9c\xc7\xc3\x4b\x73\xb0\xbe\xbd\x49" \
-  "\xc7\xa7\xcb\x64\xb0\x05\xa1\x41\x45\xed\xb3\x96" \
-  "\x0a\x61\xd5\x43\x26\xd1\xc5\xaa\x30\x29\x82\x58" \
-  "\x14\x86\x34\x50\xcd\xb4\xc1\xca\x8f\xc1\x18\xfe" \
-  "\x80\x64\xa8\x40\x23\x87\x80\x1f\xdc\xad\xdc\xa0" \
-  "\x4a\x32\x93\x54\x5a\x6b\x02\x40\x1f\x35\xe1\xb1" \
-  "\xc9\xd1\xc3\xd9\x05\x67\x77\x9b\x91\x49\x5e\xf4" \
-  "\xd2\x36\xb2\x77\xfe\x83\xc8\x88\xd0\xf1\xaf\x6f" \
-  "\xe0\xe9\xb5\xab\x71\x7b\xec\x11\xe1\x44\x1d\x64" \
-  "\xdb\xb2\xb8\x6f\xf6\xbb\x6a\xe5\x5b\x2f\x53\x76" \
-  "\x60\x0f\x6a\x6d\x39\x78\xe7\xaf\x44\x59\x2e\xe2" \
-  "\x89\x07\x9e\xd2\xba\x5c\x04\x4f\x8e\x01\xa9\x34" \
-  "\xa2\xa1\x8f\xb1\x1b\xbf\xa7\x8d\xc9\x71\x62\xa7" \
-  "\x88\x92\xef\x09\x47\x0b\x71\xa4\xff\xdd\x31\x00" \
-  "\xb5\x79\x00\x06\x10\xee\xec\x7b\xe5\xd5\x4b\x56" \
-  "\xad\x5b\x97\x3f\x3a\x41\x03\xc9\x26\xea\x5e\x90" \
-  "\x43\xcc\x73\x30\xb7\x62\x15\x1f\xb2\xa7\xc8\xa1" \
-  "\x39\x28\x62\xb8\xce\x2c\x3a\xd0\x4a\x89\xe7\xb6" \
-  "\x92\x18\xd8\x43\x51\xd3\x80\xbb\xfe\x66\x46\xef" \
-  "\x4a\x12\xc2\x60\x34\x66\x98\x1a\x32\x04\x30\x0f" \
-  "\x26\xc7\xe5\x81\xa5\x97\x71\xb3\x5e\x8f\xec\xa8" \
-  "\x0d\x77\xa2\x40\x76\xb2\x81\x5f\x7d\xe1\x99\x57" \
-  "\x01\x84\x00\xc2\x79\x80\xea\xbe\xbd\xef\xf4\xed" \
-  "\x1b\xda\xf3\xaf\xee\x6c\xcf\xca\x63\x97\x5c\xcd" \
-  "\xde\x37\x37\x21\x6e\xc6\xd0\xd0\x9c\xe5\xae\xd9" \
-  "\x22\x7e\xe4\xde\xc0\xd3\xb2\x48\x92\x0d\x6d\x9a" \
-  "\x3e\xe6\xc2\x40\xc8\x54\x0a\xa6\x52\xa8\xf4\x2c" \
-  "\x65\xa5\x42\x30\x33\x40\x02\xcc\x35\x80\x85\x78" \
-  "\x59\xbe\x8d\xf7\x66\xf6\x8a\x6b\xdd\x55\x30\xfc" \
-  "\x76\xc4\xb4\xc5\x23\x23\x07\xc6\xdf\xd8\xfe\x97" \
-  "\xbf\x02\xf0\x00\xe8\xf9\x8b\xc8\x00\xd0\x9a\x6e" \
-  "\x6a\xbe\xe0\xde\x4d\x3f\x7f\xb2\x1d\x68\x6d\x5d" \
-  "\x74\x16\x38\x91\x64\xce\x75\x21\x7b\x78\x08\x8d" \
-  "\x63\x47\x61\xc7\xe3\x5c\xb9\x6c\x1d\x54\xba\x95" \
-  "\x45\xa5\x44\x55\xcb\x62\x5d\x29\x13\x27\x1a\x20" \
-  "\xe2\x09\x30\x48\xb1\x0e\x85\xef\x7b\x54\xf5\x5d" \
-  "\x1e\x8d\x4d\x88\xb6\x48\x23\x69\x66\x9c\xc8\x17" \
-  "\x51\x3e\x72\xaa\xfc\xf0\x96\x3b\xef\x18\x1b\x1d" \
-  "\xfe\x27\x80\xe3\x00\xfc\xf9\x59\xa0\x01\x28\xaf" \
-  "\xea\x7a\x7b\x87\x87\xf6\x9d\x7f\xee\xf2\x4b\xda" \
-  "\xdb\xda\x52\x61\xa2\x81\xa0\x14\xb9\x4e\x85\x66" \
-  "\x5b\xda\x68\xca\x0f\xe8\x88\xaf\xa9\x36\x72\x80" \
-  "\xe8\xe9\xc7\x05\xbd\xb9\x5d\xe8\xfc\x11\x9a\x5c" \
-  "\x74\x0e\xdc\x23\xef\xd3\x89\x91\x61\x39\x91\x1f" \
-  "\xa3\xd9\x8a\x43\xb1\xa4\x2d\xce\x4e\xb4\x51\x52" \
-  "\x46\x41\x55\x85\xf1\x43\xa3\x85\x2d\x9b\xef\xbe" \
-  "\x6f\x74\x74\xf8\x4d\x00\xd3\x00\x9c\x8f\x4f\xc3" \
-  "\x10\x40\xe8\xba\x4e\xf9\xad\xfd\xfd\x6f\x25\x32" \
-  "\x99\xf6\xce\xf3\x57\xe6\x0c\x82\xe0\xaa\x4b\xa1" \
-  "\x1f\xa0\xe4\x78\x98\x92\x49\x76\x4f\x16\xe8\x64" \
-  "\xac\x09\x85\x4c\x0e\xf9\x64\x1b\xcf\x58\x71\xaa" \
-  "\x0e\x0e\x90\x37\x3e\x8e\xda\xd4\x24\xe9\x5a\x8d" \
-  "\x62\x6d\xcd\xb0\xa3\x12\x4e\xd9\x51\x6f\xbc\xb6" \
-  "\xbd\xff\xc1\xdf\xfc\xec\xde\xe3\xc7\x27\xfb\xeb" \
-  "\x95\x97\x3f\xba\x81\x71\xa6\x08\x40\x1c\x40\x06" \
-  "\x40\x4b\xd7\xd9\xdd\x17\x6f\xfc\xc6\x77\x36\x7e" \
-  "\x75\xf5\xb5\x17\x47\x22\x76\xd4\x29\x39\xe2\x44" \
-  "\xc9\x07\x0a\x79\xa8\x52\x11\x22\x08\xa0\x2c\x0b" \
-  "\x68\x5d\x80\xc8\xa1\xfd\x90\xcc\x20\x02\xf4\xc2" \
-  "\x2e\x9d\xea\xe9\x0a\x0e\x1e\xec\xdf\xf7\xfc\x0b" \
-  "\xdb\x5e\x78\x6f\xff\xe0\x2e\x00\x05\x00\xa7\x00" \
-  "\xcc\xd5\x1d\xff\x44\x80\x79\x45\x00\x34\xd4\x23" \
-  "\x1d\x8f\x27\xba\x56\x5e\x78\xd9\x05\x5f\x3a\xf7" \
-  "\x2b\xcb\x52\x4d\x1d\x67\xb5\x2f\x5c\xbc\x20\x62" \
-  "\x46\x2d\x30\x04\xb3\x26\x68\xa5\x7c\xa7\x54\x9b" \
-  "\x1a\x39\x78\xe2\x64\x7e\x64\x72\x64\xf2\xe8\xd0" \
-  "\xd0\xc1\xbd\x7b\xca\xe5\xd2\x08\x80\x12\x80\x62" \
-  "\x7d\xad\xd6\x9b\xfe\x8c\x8a\xff\x9b\x04\x3e\x1c" \
-  "\x18\x09\x00\xb1\xba\x33\x71\x00\xb6\x10\x22\x1e" \
-  "\x8d\xc6\x92\x96\x15\xb1\x89\x04\x82\x5a\xe0\x57" \
-  "\xdd\x8a\xa3\x94\x9a\xab\x27\xa9\x02\xa8\x00\x70" \
-  "\xeb\x67\xed\x02\x50\x9f\x94\xe4\xb3\xfc\x15\x13" \
-  "\x00\x13\x80\x55\x77\xc6\xac\xaf\xa2\x1e\x5c\x7f" \
-  "\xa7\x86\x0f\xfb\xc8\xaf\x3f\xfb\x00\x82\x8f\x57" \
-  "\xfc\x79\x00\x3e\x2e\x71\x5a\xe0\x34\x00\x5d\x0f" \
-  "\xfe\xb4\xa4\x5f\xe8\x0b\x9d\xae\x7f\x03\x0c\xdb" \
-  "\xe8\xdf\x8f\xa4\x44\x04\x00\x00\x00\x00\x49\x45" \
-  "\x4e\x44\xae\x42\x60\x82"
+    "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
+    "\x49\x48\x44\x52\x00\x00\x00\x20\x00\x00\x00\x20" \
+    "\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\x00\x00\x08" \
+    "\x3d\x49\x44\x41\x54\x78\x9c\xed\x96\x5d\x6c\x1c" \
+    "\xd5\x15\xc7\xff\xe7\xde\x99\xd9\xd9\x4f\x7b\xbd" \
+    "\xfe\x88\xd7\x1b\x6c\x12\x3b\x35\x04\x92\xb4\xe1" \
+    "\x33\x40\x53\x48\x44\x09\x22\x04\xa2\xd2\xd2\x87" \
+    "\x36\x85\xf6\xa5\x55\x11\xa5\x2d\x50\x21\x68\xd5" \
+    "\x02\x2a\x0d\x11\x05\xaa\x3e\x20\x50\x24\xd4\x40" \
+    "\x11\x85\x16\xa9\xa0\x50\xa0\x8a\x83\x02\x09\x58" \
+    "\x75\xe4\x38\x21\x90\x38\x8e\xed\xac\xed\x6c\xe2" \
+    "\xd8\xbb\xeb\x9d\xd9\x99\xd9\xb9\xf7\xf4\x81\x35" \
+    "\x4a\x28\x15\x08\xa9\xea\x0b\x7f\xe9\xe8\xce\x95" \
+    "\x66\x74\x7e\xe7\x7f\x8f\xee\x19\xe0\x0b\xfd\x9f" \
+    "\x45\x9f\xe7\xa3\xde\xde\x5e\x23\x91\x48\xc4\xb4" \
+    "\xd6\x36\x00\xb2\x2c\xcb\xb3\x6d\xdb\xed\xeb\xeb" \
+    "\xab\xfd\x4f\x00\xd6\xad\xbb\x36\xbd\x62\xc5\x85" \
+    "\x97\x5e\xbe\xfa\xca\x65\xcb\x57\x2c\xef\x11\x24" \
+    "\xb3\xc2\xb4\x6d\xcb\x22\x10\x11\x54\xa8\x51\xab" \
+    "\x05\x81\x0a\xfd\xc2\xc1\xa1\xfd\xc3\x83\x43\x83" \
+    "\x07\x5f\xf9\xfb\xdf\x76\xed\xd8\xb1\x63\xea\x73" \
+    "\x03\x34\x36\x36\xe2\xba\xeb\x36\x7c\xf9\xd6\x5b" \
+    "\x6f\xbb\x69\x71\xf7\x79\x17\x47\xac\x08\x31\x98" \
+    "\x98\x18\x60\x0d\x82\x60\x80\x08\x00\x18\x1a\x52" \
+    "\x0a\x86\x20\x12\xc4\x86\x65\x51\x5c\x85\x4a\x14" \
+    "\xa6\xf2\xfd\x8f\x3d\xf6\xf0\x9f\xb7\x6d\x7b\xba" \
+    "\xaf\x52\xa9\xe8\xcf\x0c\xb0\x6c\xd9\xf2\x96\x2d" \
+    "\x5b\x9e\xb8\xa3\x67\xf1\xb2\x4b\x49\x08\x26\x22" \
+    "\x82\x24\x08\x22\x5b\x9a\x46\x3c\x54\x7e\x42\xa9" \
+    "\xc0\x54\x50\x82\x34\x41\x08\xc1\x64\x18\x35\x53" \
+    "\xd8\x2e\x42\xed\x19\x86\x88\x4a\xc9\x92\x84\x50" \
+    "\x5a\xb1\x2a\x4c\x8f\xf7\xff\xf8\x87\xb7\xdc\xdf" \
+    "\xd7\xb7\xe3\xe8\xa7\x02\x6c\xdc\x78\xd3\xd2\xdf" \
+    "\xfd\xf6\x89\xfb\x85\x61\xa7\x49\x48\x68\x70\xbc" \
+    "\x16\x78\x6d\xfc\xfe\x60\xc6\x35\x64\xcc\x4f\x35" \
+    "\x72\x2d\xd0\x2c\xa5\x41\x2c\x04\xc0\x82\x01\x66" \
+    "\xa5\x43\x92\x06\x21\x1a\x89\x50\x3c\x11\x55\xf1" \
+    "\x64\x83\x6b\x9b\x56\x51\x6b\xe5\x29\x85\x59\x61" \
+    "\x73\xf1\xf1\x47\x1f\x78\xe8\xa1\x07\x1f\xdc\x79" \
+    "\x7a\x3e\x79\xfa\x66\xfd\x86\x1b\x7b\x37\x6f\xde" \
+    "\xba\x45\x85\x68\x50\x8c\x98\x3b\x37\xd3\x63\x3c" \
+    "\xf7\x44\x4f\xe2\xd7\x3f\x6d\x8c\xbe\xf8\xac\x55" \
+    "\xb8\x72\x03\x47\x8d\x26\x81\x53\x2c\xec\x50\x52" \
+    "\x08\x62\xd3\x8e\xc1\x94\x36\x4c\xc3\x26\x43\x46" \
+    "\x69\x2e\x12\x60\x94\x4e\xca\x59\x67\xc6\x0a\x1c" \
+    "\xa7\x81\x14\x47\x41\x66\x45\xd5\x28\xbc\x62\xed" \
+    "\x55\x5f\x65\xe5\x8d\xec\x7e\xfb\xed\xf1\xff\x00" \
+    "\x68\x5d\xb0\x20\xf2\xe4\x9f\x5e\xfc\xbd\x50\x91" \
+    "\x66\xa7\x52\xe9\x28\xce\x16\xce\xa9\x55\xdc\x78" \
+    "\x70\x72\x86\xe6\xb2\x9d\x5c\xee\xea\x66\x71\xf9" \
+    "\x3a\x54\xa7\x4b\xe4\x55\x7c\x04\x9e\x0f\xb3\x25" \
+    "\xc9\x56\x24\x02\x61\x48\x21\xa4\xc1\x92\x0c\x7a" \
+    "\x3d\xb6\x97\x36\xd3\x56\xda\x21\x07\x49\x06\x51" \
+    "\xee\x0e\x72\xe6\xec\xec\xa9\x16\x21\x0d\x82\xb2" \
+    "\xe6\xd6\x5c\x73\xe5\x45\xbb\x76\xee\x78\x2d\x7f" \
+    "\xec\x98\x0b\x00\xc6\x3c\xc0\x5d\xf7\xdc\x73\x75" \
+    "\x63\x6b\x36\x37\x3b\x79\x6a\xa1\x5b\x2d\x9d\x65" \
+    "\x99\x71\x86\x25\x41\xab\xaf\xd3\x20\x08\x41\x82" \
+    "\x2d\x09\x8e\xe5\x5a\x95\xd6\x4c\x81\xd6\x30\x6c" \
+    "\x0b\x44\x12\x44\x20\x22\x49\x02\x82\x95\xef\x51" \
+    "\x67\xb5\x99\xcb\xb2\x4a\x29\xcf\x22\x8e\x98\x6c" \
+    "\x99\x29\x2a\x17\x67\x73\x7e\x50\x8d\xc1\x68\xf9" \
+    "\xe0\x27\x77\xfd\xe2\x5b\xbb\x6f\xb8\xfe\x8f\x67" \
+    "\xf4\xc0\xbe\xb1\xf1\x47\x98\x53\xeb\xcb\xf9\xe3" \
+    "\x5d\xa6\x88\x12\x91\x01\x21\x08\x44\x02\x00\x91" \
+    "\x60\xb0\x15\x86\xa2\x3a\xe1\x90\x61\x48\xf8\x96" \
+    "\xe2\x44\x36\xc3\x62\xc6\x21\xcd\x04\x8a\x0a\xa8" \
+    "\x64\x82\xdf\x8d\xbf\x4f\x5c\x03\xa7\xc3\x28\x3a" \
+    "\xfc\x66\x48\x92\x5a\x2a\x12\xcc\x1a\xb5\x9a\x03" \
+    "\x19\x11\xf9\x44\x4b\x6a\xf7\xb9\x5d\x99\x9b\xcf" \
+    "\x70\x80\x28\xd6\x59\x9e\x2c\x74\x46\x64\x82\x20" \
+    "\x04\x88\x05\x84\x29\x19\x1a\x42\x10\x69\x10\x53" \
+    "\x30\x57\x65\x37\xf0\xc8\x54\x04\x1d\x8b\xb2\xa9" \
+    "\x98\xbc\xb2\x22\x12\x12\x5e\xb5\x0a\x95\xb1\xf4" \
+    "\x1f\x8c\xe7\xc5\x34\x1f\xa7\xb4\xd9\x88\x47\xdd" \
+    "\x3b\xd4\xcb\x4d\xfd\xc6\x6e\x0c\xa0\x43\x2f\xe0" \
+    "\xeb\xdd\x8b\xb8\xc7\x6d\xcd\x7a\x65\xaf\x13\x40" \
+    "\x14\x40\x75\x1e\xc0\x9c\xce\x9f\xe8\x48\x99\x0d" \
+    "\x42\x6b\x01\x41\x02\x99\xdd\xdb\xa9\xe9\xb9\xa7" \
+    "\xa4\x6e\xcb\x62\x6e\xd5\x55\x28\x7d\xed\x7a\x4e" \
+    "\x0f\x0f\xa0\xc9\x4e\x70\xad\xa5\x83\xfd\xb6\x16" \
+    "\xf6\x95\xa6\x4a\x8c\x35\xc2\x1a\x0b\xdb\x20\x4f" \
+    "\xf8\x94\x2d\x26\xa0\x55\x94\x49\xd7\x28\x6d\x36" \
+    "\xe0\xb0\x39\x86\x82\x3f\x85\x8a\xe1\xd0\x4c\x75" \
+    "\x09\x6c\xab\x9b\x2a\x4e\x29\x27\x84\x88\x68\xad" \
+    "\x3f\x02\x88\xe9\x9a\x9f\x86\x25\x20\x09\x44\x06" \
+    "\x51\xfa\xf5\x97\x60\x8e\x1c\x06\x8d\x8f\xa2\xd0" \
+    "\xbb\x82\xd2\x83\x7b\xd0\xfa\xcb\xdb\x05\xb3\x82" \
+    "\xd7\x9e\xa3\x89\x67\x77\x85\x71\xaf\x0a\x3b\x12" \
+    "\x27\xa3\xc9\x10\x35\xdb\x56\xb1\x63\xa3\x62\xeb" \
+    "\xe1\x65\xba\x96\x59\x83\x62\x7b\xbb\x16\x29\x13" \
+    "\x9b\x0a\x6b\xf5\x51\x7f\x09\x4d\x73\x91\x17\x19" \
+    "\x39\x22\x08\x40\x23\xa9\xb5\x8e\x02\x28\x1a\x00" \
+    "\x04\x80\x48\xb9\xe4\x9a\x0d\x51\x90\x94\x16\x13" \
+    "\x6b\xe4\x2f\xbf\x86\xd0\xd9\x0b\xbb\x78\x8a\xbd" \
+    "\x4b\xd7\x72\x6a\xcf\xeb\xe4\x58\x06\x4c\x2d\x51" \
+    "\x5e\x7c\x0e\x9b\x86\x41\xe1\x5c\x48\x81\x13\x42" \
+    "\xb9\x0a\x5e\x86\xa9\xe3\xf9\x27\x11\x79\xf1\x19" \
+    "\x41\xa6\x01\xeb\xea\x1b\xd8\xb9\xe5\x36\x5e\xff" \
+    "\xab\x3b\x29\x94\x16\xfc\x45\x4b\x28\xff\xfd\x35" \
+    "\xac\x88\xc0\xb6\x6d\x0a\x21\x6c\xad\xb5\x31\xef" \
+    "\x80\x71\xf8\x83\x23\xa1\x49\x31\x5e\x98\xeb\x42" \
+    "\x7a\xe8\x1d\xa4\x0e\x0c\x40\xb5\xb6\xeb\xe0\x8a" \
+    "\x35\xf0\x96\x9c\xc7\xc3\x4b\x73\xb0\xbe\xbd\x49" \
+    "\xc7\xa7\xcb\x64\xb0\x05\xa1\x41\x45\xed\xb3\x96" \
+    "\x0a\x61\xd5\x43\x26\xd1\xc5\xaa\x30\x29\x82\x58" \
+    "\x14\x86\x34\x50\xcd\xb4\xc1\xca\x8f\xc1\x18\xfe" \
+    "\x80\x64\xa8\x40\x23\x87\x80\x1f\xdc\xad\xdc\xa0" \
+    "\x4a\x32\x93\x54\x5a\x6b\x02\x40\x1f\x35\xe1\xb1" \
+    "\xc9\xd1\xc3\xd9\x05\x67\x77\x9b\x91\x49\x5e\xf4" \
+    "\xd2\x36\xb2\x77\xfe\x83\xc8\x88\xd0\xf1\xaf\x6f" \
+    "\xe0\xe9\xb5\xab\x71\x7b\xec\x11\xe1\x44\x1d\x64" \
+    "\xdb\xb2\xb8\x6f\xf6\xbb\x6a\xe5\x5b\x2f\x53\x76" \
+    "\x60\x0f\x6a\x6d\x39\x78\xe7\xaf\x44\x59\x2e\xe2" \
+    "\x89\x07\x9e\xd2\xba\x5c\x04\x4f\x8e\x01\xa9\x34" \
+    "\xa2\xa1\x8f\xb1\x1b\xbf\xa7\x8d\xc9\x71\x62\xa7" \
+    "\x88\x92\xef\x09\x47\x0b\x71\xa4\xff\xdd\x31\x00" \
+    "\xb5\x79\x00\x06\x10\xee\xec\x7b\xe5\xd5\x4b\x56" \
+    "\xad\x5b\x97\x3f\x3a\x41\x03\xc9\x26\xea\x5e\x90" \
+    "\x43\xcc\x73\x30\xb7\x62\x15\x1f\xb2\xa7\xc8\xa1" \
+    "\x39\x28\x62\xb8\xce\x2c\x3a\xd0\x4a\x89\xe7\xb6" \
+    "\x92\x18\xd8\x43\x51\xd3\x80\xbb\xfe\x66\x46\xef" \
+    "\x4a\x12\xc2\x60\x34\x66\x98\x1a\x32\x04\x30\x0f" \
+    "\x26\xc7\xe5\x81\xa5\x97\x71\xb3\x5e\x8f\xec\xa8" \
+    "\x0d\x77\xa2\x40\x76\xb2\x81\x5f\x7d\xe1\x99\x57" \
+    "\x01\x84\x00\xc2\x79\x80\xea\xbe\xbd\xef\xf4\xed" \
+    "\x1b\xda\xf3\xaf\xee\x6c\xcf\xca\x63\x97\x5c\xcd" \
+    "\xde\x37\x37\x21\x6e\xc6\xd0\xd0\x9c\xe5\xae\xd9" \
+    "\x22\x7e\xe4\xde\xc0\xd3\xb2\x48\x92\x0d\x6d\x9a" \
+    "\x3e\xe6\xc2\x40\xc8\x54\x0a\xa6\x52\xa8\xf4\x2c" \
+    "\x65\xa5\x42\x30\x33\x40\x02\xcc\x35\x80\x85\x78" \
+    "\x59\xbe\x8d\xf7\x66\xf6\x8a\x6b\xdd\x55\x30\xfc" \
+    "\x76\xc4\xb4\xc5\x23\x23\x07\xc6\xdf\xd8\xfe\x97" \
+    "\xbf\x02\xf0\x00\xe8\xf9\x8b\xc8\x00\xd0\x9a\x6e" \
+    "\x6a\xbe\xe0\xde\x4d\x3f\x7f\xb2\x1d\x68\x6d\x5d" \
+    "\x74\x16\x38\x91\x64\xce\x75\x21\x7b\x78\x08\x8d" \
+    "\x63\x47\x61\xc7\xe3\x5c\xb9\x6c\x1d\x54\xba\x95" \
+    "\x45\xa5\x44\x55\xcb\x62\x5d\x29\x13\x27\x1a\x20" \
+    "\xe2\x09\x30\x48\xb1\x0e\x85\xef\x7b\x54\xf5\x5d" \
+    "\x1e\x8d\x4d\x88\xb6\x48\x23\x69\x66\x9c\xc8\x17" \
+    "\x51\x3e\x72\xaa\xfc\xf0\x96\x3b\xef\x18\x1b\x1d" \
+    "\xfe\x27\x80\xe3\x00\xfc\xf9\x59\xa0\x01\x28\xaf" \
+    "\xea\x7a\x7b\x87\x87\xf6\x9d\x7f\xee\xf2\x4b\xda" \
+    "\xdb\xda\x52\x61\xa2\x81\xa0\x14\xb9\x4e\x85\x66" \
+    "\x5b\xda\x68\xca\x0f\xe8\x88\xaf\xa9\x36\x72\x80" \
+    "\xe8\xe9\xc7\x05\xbd\xb9\x5d\xe8\xfc\x11\x9a\x5c" \
+    "\x74\x0e\xdc\x23\xef\xd3\x89\x91\x61\x39\x91\x1f" \
+    "\xa3\xd9\x8a\x43\xb1\xa4\x2d\xce\x4e\xb4\x51\x52" \
+    "\x46\x41\x55\x85\xf1\x43\xa3\x85\x2d\x9b\xef\xbe" \
+    "\x6f\x74\x74\xf8\x4d\x00\xd3\x00\x9c\x8f\x4f\xc3" \
+    "\x10\x40\xe8\xba\x4e\xf9\xad\xfd\xfd\x6f\x25\x32" \
+    "\x99\xf6\xce\xf3\x57\xe6\x0c\x82\xe0\xaa\x4b\xa1" \
+    "\x1f\xa0\xe4\x78\x98\x92\x49\x76\x4f\x16\xe8\x64" \
+    "\xac\x09\x85\x4c\x0e\xf9\x64\x1b\xcf\x58\x71\xaa" \
+    "\x0e\x0e\x90\x37\x3e\x8e\xda\xd4\x24\xe9\x5a\x8d" \
+    "\x62\x6d\xcd\xb0\xa3\x12\x4e\xd9\x51\x6f\xbc\xb6" \
+    "\xbd\xff\xc1\xdf\xfc\xec\xde\xe3\xc7\x27\xfb\xeb" \
+    "\x95\x97\x3f\xba\x81\x71\xa6\x08\x40\x1c\x40\x06" \
+    "\x40\x4b\xd7\xd9\xdd\x17\x6f\xfc\xc6\x77\x36\x7e" \
+    "\x75\xf5\xb5\x17\x47\x22\x76\xd4\x29\x39\xe2\x44" \
+    "\xc9\x07\x0a\x79\xa8\x52\x11\x22\x08\xa0\x2c\x0b" \
+    "\x68\x5d\x80\xc8\xa1\xfd\x90\xcc\x20\x02\xf4\xc2" \
+    "\x2e\x9d\xea\xe9\x0a\x0e\x1e\xec\xdf\xf7\xfc\x0b" \
+    "\xdb\x5e\x78\x6f\xff\xe0\x2e\x00\x05\x00\xa7\x00" \
+    "\xcc\xd5\x1d\xff\x44\x80\x79\x45\x00\x34\xd4\x23" \
+    "\x1d\x8f\x27\xba\x56\x5e\x78\xd9\x05\x5f\x3a\xf7" \
+    "\x2b\xcb\x52\x4d\x1d\x67\xb5\x2f\x5c\xbc\x20\x62" \
+    "\x46\x2d\x30\x04\xb3\x26\x68\xa5\x7c\xa7\x54\x9b" \
+    "\x1a\x39\x78\xe2\x64\x7e\x64\x72\x64\xf2\xe8\xd0" \
+    "\xd0\xc1\xbd\x7b\xca\xe5\xd2\x08\x80\x12\x80\x62" \
+    "\x7d\xad\xd6\x9b\xfe\x8c\x8a\xff\x9b\x04\x3e\x1c" \
+    "\x18\x09\x00\xb1\xba\x33\x71\x00\xb6\x10\x22\x1e" \
+    "\x8d\xc6\x92\x96\x15\xb1\x89\x04\x82\x5a\xe0\x57" \
+    "\xdd\x8a\xa3\x94\x9a\xab\x27\xa9\x02\xa8\x00\x70" \
+    "\xeb\x67\xed\x02\x50\x9f\x94\xe4\xb3\xfc\x15\x13" \
+    "\x00\x13\x80\x55\x77\xc6\xac\xaf\xa2\x1e\x5c\x7f" \
+    "\xa7\x86\x0f\xfb\xc8\xaf\x3f\xfb\x00\x82\x8f\x57" \
+    "\xfc\x79\x00\x3e\x2e\x71\x5a\xe0\x34\x00\x5d\x0f" \
+    "\xfe\xb4\xa4\x5f\xe8\x0b\x9d\xae\x7f\x03\x0c\xdb" \
+    "\xe8\xdf\x8f\xa4\x44\x04\x00\x00\x00\x00\x49\x45" \
+    "\x4e\x44\xae\x42\x60\x82"
 image1_data = \
-  "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
-  "\x49\x48\x44\x52\x00\x00\x00\x0f\x00\x00\x00\x0e" \
-  "\x08\x06\x00\x00\x00\xf0\x8a\x46\xef\x00\x00\x01" \
-  "\xd7\x49\x44\x41\x54\x78\x9c\x85\x92\xcd\x6a\x53" \
-  "\x51\x14\x85\xbf\x9b\x5c\x09\x89\x69\xa3\xad\xb6" \
-  "\x45\xc1\xe2\x4f\x1a\x9d\x28\x8a\x13\x91\x80\xc1" \
-  "\xd0\xa9\xe0\x44\xa1\x82\x38\xa8\x93\x4e\xd4\xe2" \
-  "\xd4\x17\x70\x20\x8a\x51\x21\xfa\x04\xfa\x06\x05" \
-  "\x87\x22\xc4\x61\x41\x09\x0d\x04\x35\x85\x04\x93" \
-  "\xe6\xaf\xf6\x26\xb9\xe7\x2c\x07\x6d\xd3\x34\x11" \
-  "\xba\x60\x71\xe0\xec\xb3\xce\x62\xef\xbd\x90\xc4" \
-  "\x20\x5b\xad\x96\x96\x9f\x3c\x55\xa5\x52\xd1\x70" \
-  "\x6d\x98\x01\x06\xd0\x6e\xb7\x95\x79\x91\xe5\x88" \
-  "\x3b\x85\x31\x96\x83\xe0\x48\x02\xa0\xd3\xe9\x28" \
-  "\xf3\x32\xcb\x4c\x60\x8e\xdf\xb5\x3c\x53\x73\x51" \
-  "\x42\xa1\xd0\xbe\xc7\xb1\x58\x8c\x54\x2a\x45\x38" \
-  "\x1c\x76\xfa\x62\xdf\xf7\xf5\xe6\x55\x96\xe3\x9c" \
-  "\xa3\x56\xde\xe2\xd8\xd4\x18\x96\x3d\x67\x21\xac" \
-  "\x0c\x5e\x6f\x8b\x52\x23\xcf\xdd\x07\xb7\x48\x24" \
-  "\x12\x8e\x23\x89\x77\xaf\xdf\x2b\xd6\x3d\xc5\x46" \
-  "\xb9\x83\xac\xc0\xd9\x15\x81\x24\x8c\x84\x95\xc5" \
-  "\xf3\x7d\xa6\xa7\xc7\x21\x5a\x63\xe1\xe1\x6d\x82" \
-  "\x97\x2f\x5e\x55\x77\xfd\x30\xed\x3f\x86\xdd\x16" \
-  "\xf6\x3b\x82\x95\xc5\x58\x8b\x91\xa5\xd6\xdc\xe4" \
-  "\x68\x64\x92\x46\x6f\x9d\xc0\xcd\xf9\x1b\x14\x36" \
-  "\x7e\xe0\x19\x7f\x48\xb8\x0d\xbb\xf3\xa1\x91\x30" \
-  "\xb2\x08\x68\x79\x3d\xca\xbf\xea\x04\xa2\xd1\xa8" \
-  "\xb3\xf4\x68\x81\x92\xf7\x9d\xae\x35\xfb\x5c\xa5" \
-  "\xed\xd3\x58\xdb\x77\xb7\xb2\xf4\x7a\x06\x6f\xab" \
-  "\xbb\x37\xed\xc2\x5a\x41\x99\xe7\x9f\x38\x3d\x76" \
-  "\x9e\x4d\xbf\xc3\xdf\x6e\x13\x83\xb0\x56\x08\x70" \
-  "\x02\x2e\xae\x13\xc2\xc8\x30\x39\x31\xce\x89\xb3" \
-  "\x03\xab\x02\xc8\xe5\xbe\xe9\xe3\x87\x2f\x6c\x7a" \
-  "\x75\xae\xa5\xcf\x10\x0c\x06\xfb\xb5\x66\xa3\x4d" \
-  "\xee\xeb\x1a\x13\xe1\x0b\xb8\xee\x21\xae\xcf\x4f" \
-  "\x32\x92\x9a\x95\x95\xcf\xba\x77\x67\x49\xd5\x6a" \
-  "\x75\x24\x61\xf9\x7c\x5e\x8b\xf7\x9f\xe9\xf1\xe2" \
-  "\x5b\x15\x8b\x45\xb9\xc3\xa9\x49\xa7\x53\x4e\x28" \
-  "\xe4\x2a\x12\x89\x8c\x24\x2a\x1e\x8f\x3b\x33\x27" \
-  "\xa3\xaa\x55\xea\xcc\xce\xce\x3a\x23\x62\x80\x64" \
-  "\x32\xe9\xfc\xef\x1e\xe0\xd2\x95\x04\xeb\x3f\x6b" \
-  "\x3b\x53\x3d\x20\xfc\xc3\x5c\x5d\x5d\x55\xa9\x54" \
-  "\x92\x24\xfe\x01\x03\x3d\x5a\xfa\x32\x50\xe5\x56" \
-  "\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82"
+    "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
+    "\x49\x48\x44\x52\x00\x00\x00\x0f\x00\x00\x00\x0e" \
+    "\x08\x06\x00\x00\x00\xf0\x8a\x46\xef\x00\x00\x01" \
+    "\xd7\x49\x44\x41\x54\x78\x9c\x85\x92\xcd\x6a\x53" \
+    "\x51\x14\x85\xbf\x9b\x5c\x09\x89\x69\xa3\xad\xb6" \
+    "\x45\xc1\xe2\x4f\x1a\x9d\x28\x8a\x13\x91\x80\xc1" \
+    "\xd0\xa9\xe0\x44\xa1\x82\x38\xa8\x93\x4e\xd4\xe2" \
+    "\xd4\x17\x70\x20\x8a\x51\x21\xfa\x04\xfa\x06\x05" \
+    "\x87\x22\xc4\x61\x41\x09\x0d\x04\x35\x85\x04\x93" \
+    "\xe6\xaf\xf6\x26\xb9\xe7\x2c\x07\x6d\xd3\x34\x11" \
+    "\xba\x60\x71\xe0\xec\xb3\xce\x62\xef\xbd\x90\xc4" \
+    "\x20\x5b\xad\x96\x96\x9f\x3c\x55\xa5\x52\xd1\x70" \
+    "\x6d\x98\x01\x06\xd0\x6e\xb7\x95\x79\x91\xe5\x88" \
+    "\x3b\x85\x31\x96\x83\xe0\x48\x02\xa0\xd3\xe9\x28" \
+    "\xf3\x32\xcb\x4c\x60\x8e\xdf\xb5\x3c\x53\x73\x51" \
+    "\x42\xa1\xd0\xbe\xc7\xb1\x58\x8c\x54\x2a\x45\x38" \
+    "\x1c\x76\xfa\x62\xdf\xf7\xf5\xe6\x55\x96\xe3\x9c" \
+    "\xa3\x56\xde\xe2\xd8\xd4\x18\x96\x3d\x67\x21\xac" \
+    "\x0c\x5e\x6f\x8b\x52\x23\xcf\xdd\x07\xb7\x48\x24" \
+    "\x12\x8e\x23\x89\x77\xaf\xdf\x2b\xd6\x3d\xc5\x46" \
+    "\xb9\x83\xac\xc0\xd9\x15\x81\x24\x8c\x84\x95\xc5" \
+    "\xf3\x7d\xa6\xa7\xc7\x21\x5a\x63\xe1\xe1\x6d\x82" \
+    "\x97\x2f\x5e\x55\x77\xfd\x30\xed\x3f\x86\xdd\x16" \
+    "\xf6\x3b\x82\x95\xc5\x58\x8b\x91\xa5\xd6\xdc\xe4" \
+    "\x68\x64\x92\x46\x6f\x9d\xc0\xcd\xf9\x1b\x14\x36" \
+    "\x7e\xe0\x19\x7f\x48\xb8\x0d\xbb\xf3\xa1\x91\x30" \
+    "\xb2\x08\x68\x79\x3d\xca\xbf\xea\x04\xa2\xd1\xa8" \
+    "\xb3\xf4\x68\x81\x92\xf7\x9d\xae\x35\xfb\x5c\xa5" \
+    "\xed\xd3\x58\xdb\x77\xb7\xb2\xf4\x7a\x06\x6f\xab" \
+    "\xbb\x37\xed\xc2\x5a\x41\x99\xe7\x9f\x38\x3d\x76" \
+    "\x9e\x4d\xbf\xc3\xdf\x6e\x13\x83\xb0\x56\x08\x70" \
+    "\x02\x2e\xae\x13\xc2\xc8\x30\x39\x31\xce\x89\xb3" \
+    "\x03\xab\x02\xc8\xe5\xbe\xe9\xe3\x87\x2f\x6c\x7a" \
+    "\x75\xae\xa5\xcf\x10\x0c\x06\xfb\xb5\x66\xa3\x4d" \
+    "\xee\xeb\x1a\x13\xe1\x0b\xb8\xee\x21\xae\xcf\x4f" \
+    "\x32\x92\x9a\x95\x95\xcf\xba\x77\x67\x49\xd5\x6a" \
+    "\x75\x24\x61\xf9\x7c\x5e\x8b\xf7\x9f\xe9\xf1\xe2" \
+    "\x5b\x15\x8b\x45\xb9\xc3\xa9\x49\xa7\x53\x4e\x28" \
+    "\xe4\x2a\x12\x89\x8c\x24\x2a\x1e\x8f\x3b\x33\x27" \
+    "\xa3\xaa\x55\xea\xcc\xce\xce\x3a\x23\x62\x80\x64" \
+    "\x32\xe9\xfc\xef\x1e\xe0\xd2\x95\x04\xeb\x3f\x6b" \
+    "\x3b\x53\x3d\x20\xfc\xc3\x5c\x5d\x5d\x55\xa9\x54" \
+    "\x92\x24\xfe\x01\x03\x3d\x5a\xfa\x32\x50\xe5\x56" \
+    "\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82"
 
 class pyOneAna_PetriDishView(QWidget):
-  def __init__(self,parent = None,name = None,fl = 0):
-    QWidget.__init__(self,parent,name,fl)
+    def __init__(self,parent = None,name = None,fl = 0):
+        QWidget.__init__(self,parent,name,fl)
 
-    self.image0 = QPixmap()
-    self.image0.loadFromData(image0_data,"PNG")
-    self.image1 = QPixmap()
-    self.image1.loadFromData(image1_data,"PNG")
-    if not name:
-      self.setName("pyOneAna_PetriDishView")
+        self.image0 = QPixmap()
+        self.image0.loadFromData(image0_data,"PNG")
+        self.image1 = QPixmap()
+        self.image1.loadFromData(image1_data,"PNG")
+        if not name:
+            self.setName("pyOneAna_PetriDishView")
 
 
-    pyOneAna_PetriDishViewLayout = QVBoxLayout(self,0,6,"pyOneAna_PetriDishViewLayout")
+        pyOneAna_PetriDishViewLayout = QVBoxLayout(self,0,6,"pyOneAna_PetriDishViewLayout")
 
-    layout254 = QHBoxLayout(None,0,6,"layout254")
+        layout254 = QHBoxLayout(None,0,6,"layout254")
 
-    self.pixmapLabel1 = QLabel(self,"pixmapLabel1")
-    self.pixmapLabel1.setSizePolicy(QSizePolicy(0,0,0,0,self.pixmapLabel1.sizePolicy().hasHeightForWidth()))
-    self.pixmapLabel1.setPixmap(self.image0)
-    self.pixmapLabel1.setScaledContents(1)
-    layout254.addWidget(self.pixmapLabel1)
+        self.pixmapLabel1 = QLabel(self,"pixmapLabel1")
+        self.pixmapLabel1.setSizePolicy(QSizePolicy(0,0,0,0,self.pixmapLabel1.sizePolicy().hasHeightForWidth()))
+        self.pixmapLabel1.setPixmap(self.image0)
+        self.pixmapLabel1.setScaledContents(1)
+        layout254.addWidget(self.pixmapLabel1)
 
-    self.textLabel9_2 = QLabel(self,"textLabel9_2")
-    self.textLabel9_2.setSizePolicy(QSizePolicy(3,5,0,0,self.textLabel9_2.sizePolicy().hasHeightForWidth()))
-    textLabel9_2_font = QFont(self.textLabel9_2.font())
-    textLabel9_2_font.setPointSize(11)
-    self.textLabel9_2.setFont(textLabel9_2_font)
-    layout254.addWidget(self.textLabel9_2)
+        self.textLabel9_2 = QLabel(self,"textLabel9_2")
+        self.textLabel9_2.setSizePolicy(QSizePolicy(3,5,0,0,self.textLabel9_2.sizePolicy().hasHeightForWidth()))
+        textLabel9_2_font = QFont(self.textLabel9_2.font())
+        textLabel9_2_font.setPointSize(11)
+        self.textLabel9_2.setFont(textLabel9_2_font)
+        layout254.addWidget(self.textLabel9_2)
 
-    layout178 = QVBoxLayout(None,0,6,"layout178")
-    spacer126 = QSpacerItem(1,1,QSizePolicy.Minimum,QSizePolicy.Minimum)
-    layout178.addItem(spacer126)
+        layout178 = QVBoxLayout(None,0,6,"layout178")
+        spacer126 = QSpacerItem(1,1,QSizePolicy.Minimum,QSizePolicy.Minimum)
+        layout178.addItem(spacer126)
 
-    self.toolButton31_2 = QToolButton(self,"toolButton31_2")
-    toolButton31_2_font = QFont(self.toolButton31_2.font())
-    toolButton31_2_font.setPointSize(10)
-    self.toolButton31_2.setFont(toolButton31_2_font)
-    self.toolButton31_2.setIconSet(QIconSet(self.image1))
-    layout178.addWidget(self.toolButton31_2)
-    spacer126_2 = QSpacerItem(1,1,QSizePolicy.Minimum,QSizePolicy.Minimum)
-    layout178.addItem(spacer126_2)
-    layout254.addLayout(layout178)
-    pyOneAna_PetriDishViewLayout.addLayout(layout254)
+        self.toolButton31_2 = QToolButton(self,"toolButton31_2")
+        toolButton31_2_font = QFont(self.toolButton31_2.font())
+        toolButton31_2_font.setPointSize(10)
+        self.toolButton31_2.setFont(toolButton31_2_font)
+        self.toolButton31_2.setIconSet(QIconSet(self.image1))
+        layout178.addWidget(self.toolButton31_2)
+        spacer126_2 = QSpacerItem(1,1,QSizePolicy.Minimum,QSizePolicy.Minimum)
+        layout178.addItem(spacer126_2)
+        layout254.addLayout(layout178)
+        pyOneAna_PetriDishViewLayout.addLayout(layout254)
 
-    layout95 = QHBoxLayout(None,0,6,"layout95")
+        layout95 = QHBoxLayout(None,0,6,"layout95")
 
-    self.pyPetriDishCtrl1 = pyPetriDishCtrl(self,"pyPetriDishCtrl1")
-    self.pyPetriDishCtrl1.setSizePolicy(QSizePolicy(3,3,5,0,self.pyPetriDishCtrl1.sizePolicy().hasHeightForWidth()))
-    layout95.addWidget(self.pyPetriDishCtrl1)
+        self.pyPetriDishCtrl1 = pyPetriDishCtrl(self,"pyPetriDishCtrl1")
+        self.pyPetriDishCtrl1.setSizePolicy(QSizePolicy(3,3,5,0,self.pyPetriDishCtrl1.sizePolicy().hasHeightForWidth()))
+        layout95.addWidget(self.pyPetriDishCtrl1)
 
-    self.pyGradientScaleCtrl1 = pyGradientScaleCtrl(self,"pyGradientScaleCtrl1")
-    self.pyGradientScaleCtrl1.setSizePolicy(QSizePolicy(0,1,1,0,self.pyGradientScaleCtrl1.sizePolicy().hasHeightForWidth()))
-    self.pyGradientScaleCtrl1.setMinimumSize(QSize(50,50))
-    layout95.addWidget(self.pyGradientScaleCtrl1)
-    pyOneAna_PetriDishViewLayout.addLayout(layout95)
+        self.pyGradientScaleCtrl1 = pyGradientScaleCtrl(self,"pyGradientScaleCtrl1")
+        self.pyGradientScaleCtrl1.setSizePolicy(QSizePolicy(0,1,1,0,self.pyGradientScaleCtrl1.sizePolicy().hasHeightForWidth()))
+        self.pyGradientScaleCtrl1.setMinimumSize(QSize(50,50))
+        layout95.addWidget(self.pyGradientScaleCtrl1)
+        pyOneAna_PetriDishViewLayout.addLayout(layout95)
 
-    layout1 = QHBoxLayout(None,0,6,"layout1")
+        layout1 = QHBoxLayout(None,0,6,"layout1")
 
-    self.textLabel11 = QLabel(self,"textLabel11")
-    self.textLabel11.setSizePolicy(QSizePolicy(0,1,0,0,self.textLabel11.sizePolicy().hasHeightForWidth()))
-    layout1.addWidget(self.textLabel11)
+        self.textLabel11 = QLabel(self,"textLabel11")
+        self.textLabel11.setSizePolicy(QSizePolicy(0,1,0,0,self.textLabel11.sizePolicy().hasHeightForWidth()))
+        layout1.addWidget(self.textLabel11)
 
-    self.textLabel12 = QLabel(self,"textLabel12")
-    self.textLabel12.setSizePolicy(QSizePolicy(0,1,0,0,self.textLabel12.sizePolicy().hasHeightForWidth()))
-    layout1.addWidget(self.textLabel12)
+        self.textLabel12 = QLabel(self,"textLabel12")
+        self.textLabel12.setSizePolicy(QSizePolicy(0,1,0,0,self.textLabel12.sizePolicy().hasHeightForWidth()))
+        layout1.addWidget(self.textLabel12)
 
-    self.comboBox1_2 = QComboBox(0,self,"comboBox1_2")
-    self.comboBox1_2.setSizePolicy(QSizePolicy(3,0,0,0,self.comboBox1_2.sizePolicy().hasHeightForWidth()))
-    comboBox1_2_font = QFont(self.comboBox1_2.font())
-    comboBox1_2_font.setPointSize(11)
-    self.comboBox1_2.setFont(comboBox1_2_font)
-    layout1.addWidget(self.comboBox1_2)
+        self.comboBox1_2 = QComboBox(0,self,"comboBox1_2")
+        self.comboBox1_2.setSizePolicy(QSizePolicy(3,0,0,0,self.comboBox1_2.sizePolicy().hasHeightForWidth()))
+        comboBox1_2_font = QFont(self.comboBox1_2.font())
+        comboBox1_2_font.setPointSize(11)
+        self.comboBox1_2.setFont(comboBox1_2_font)
+        layout1.addWidget(self.comboBox1_2)
 
-    self.textLabel10 = QLabel(self,"textLabel10")
-    self.textLabel10.setSizePolicy(QSizePolicy(0,1,0,0,self.textLabel10.sizePolicy().hasHeightForWidth()))
-    layout1.addWidget(self.textLabel10)
+        self.textLabel10 = QLabel(self,"textLabel10")
+        self.textLabel10.setSizePolicy(QSizePolicy(0,1,0,0,self.textLabel10.sizePolicy().hasHeightForWidth()))
+        layout1.addWidget(self.textLabel10)
 
-    self.spinBox1 = QSpinBox(self,"spinBox1")
-    self.spinBox1.setSizePolicy(QSizePolicy(0,0,0,0,self.spinBox1.sizePolicy().hasHeightForWidth()))
-    layout1.addWidget(self.spinBox1)
-    pyOneAna_PetriDishViewLayout.addLayout(layout1)
+        self.spinBox1 = QSpinBox(self,"spinBox1")
+        self.spinBox1.setSizePolicy(QSizePolicy(0,0,0,0,self.spinBox1.sizePolicy().hasHeightForWidth()))
+        layout1.addWidget(self.spinBox1)
+        pyOneAna_PetriDishViewLayout.addLayout(layout1)
 
-    layout253 = QHBoxLayout(None,0,6,"layout253")
-    spacer190_2 = QSpacerItem(10,10,QSizePolicy.Expanding,QSizePolicy.Minimum)
-    layout253.addItem(spacer190_2)
+        layout253 = QHBoxLayout(None,0,6,"layout253")
+        spacer190_2 = QSpacerItem(10,10,QSizePolicy.Expanding,QSizePolicy.Minimum)
+        layout253.addItem(spacer190_2)
 
-    self.pyAnalyzeControlsCtrl11 = pyAnalyzeControlsCtrl(self,"pyAnalyzeControlsCtrl11")
-    self.pyAnalyzeControlsCtrl11.setSizePolicy(QSizePolicy(0,0,0,0,self.pyAnalyzeControlsCtrl11.sizePolicy().hasHeightForWidth()))
-    self.pyAnalyzeControlsCtrl11.setMinimumSize(QSize(0,50))
-    layout253.addWidget(self.pyAnalyzeControlsCtrl11)
-    spacer190 = QSpacerItem(10,10,QSizePolicy.Expanding,QSizePolicy.Minimum)
-    layout253.addItem(spacer190)
-    pyOneAna_PetriDishViewLayout.addLayout(layout253)
+        self.pyAnalyzeControlsCtrl11 = pyAnalyzeControlsCtrl(self,"pyAnalyzeControlsCtrl11")
+        self.pyAnalyzeControlsCtrl11.setSizePolicy(QSizePolicy(0,0,0,0,self.pyAnalyzeControlsCtrl11.sizePolicy().hasHeightForWidth()))
+        self.pyAnalyzeControlsCtrl11.setMinimumSize(QSize(0,50))
+        layout253.addWidget(self.pyAnalyzeControlsCtrl11)
+        spacer190 = QSpacerItem(10,10,QSizePolicy.Expanding,QSizePolicy.Minimum)
+        layout253.addItem(spacer190)
+        pyOneAna_PetriDishViewLayout.addLayout(layout253)
 
-    self.languageChange()
+        self.languageChange()
 
-    self.resize(QSize(260,191).expandedTo(self.minimumSizeHint()))
-    self.clearWState(Qt.WState_Polished)
+        self.resize(QSize(260,191).expandedTo(self.minimumSizeHint()))
+        self.clearWState(Qt.WState_Polished)
 
 
-  def languageChange(self):
-    self.setCaption(self.__tr("pyOneAna_PetriDishView"))
-    self.textLabel9_2.setText(self.__tr("[population]"))
-    self.toolButton31_2.setText(QString.null)
-    self.textLabel11.setText(self.__tr("<font size=\"-1\"><p align=\"right\">Update:</p></font>"))
-    self.textLabel12.setText(self.__tr("<font size=\"-1\">10000</font>"))
-    self.comboBox1_2.clear()
-    self.comboBox1_2.insertItem(self.__tr("Merit"))
-    self.textLabel10.setText(self.__tr("<font size=\"-1\"><p align=\"right\">Zoom:</p></font>"))
+    def languageChange(self):
+        self.setCaption(self.__tr("pyOneAna_PetriDishView"))
+        self.textLabel9_2.setText(self.__tr("[population]"))
+        self.toolButton31_2.setText(QString.null)
+        self.textLabel11.setText(self.__tr("<font size=\"-1\"><p align=\"right\">Update:</p></font>"))
+        self.textLabel12.setText(self.__tr("<font size=\"-1\">10000</font>"))
+        self.comboBox1_2.clear()
+        self.comboBox1_2.insertItem(self.__tr("Merit"))
+        self.textLabel10.setText(self.__tr("<font size=\"-1\"><p align=\"right\">Zoom:</p></font>"))
 
 
-  def __tr(self,s,c = None):
-    return qApp.translate("pyOneAna_PetriDishView",s,c)
+    def __tr(self,s,c = None):
+        return qApp.translate("pyOneAna_PetriDishView",s,c)

Modified: trunk/source/python/AvidaGui2/pyOneAna_StatsView.py
===================================================================
--- trunk/source/python/AvidaGui2/pyOneAna_StatsView.py	2005-03-31 03:44:15 UTC (rev 95)
+++ trunk/source/python/AvidaGui2/pyOneAna_StatsView.py	2005-03-31 09:26:09 UTC (rev 96)
@@ -1,9 +1,9 @@
 # -*- coding: utf-8 -*-
 
-# Form implementation generated from reading ui file '/Users/kaben/Projects/Software/Avida/branch.kaben/avida--current--2.0--base-0/source/bindings/Boost.Python/AvidaGui2/pyOneAna_StatsView.ui'
+# Form implementation generated from reading ui file 'pyOneAna_StatsView.ui'
 #
-# Created: Fri Dec 3 10:26:51 2004
-#      by: The PyQt User Interface Compiler (pyuic) 3.12
+# Created: Thu Mar 31 04:19:21 2005
+#      by: The PyQt User Interface Compiler (pyuic) 3.13
 #
 # WARNING! All changes made in this file will be lost!
 
@@ -12,96 +12,96 @@
 
 
 class pyOneAna_StatsView(QWidget):
-  def __init__(self,parent = None,name = None,fl = 0):
-    QWidget.__init__(self,parent,name,fl)
+    def __init__(self,parent = None,name = None,fl = 0):
+        QWidget.__init__(self,parent,name,fl)
 
-    if not name:
-      self.setName("pyOneAna_StatsView")
+        if not name:
+            self.setName("pyOneAna_StatsView")
 
 
-    pyOneAna_StatsViewLayout = QVBoxLayout(self,0,6,"pyOneAna_StatsViewLayout")
+        pyOneAna_StatsViewLayout = QVBoxLayout(self,0,6,"pyOneAna_StatsViewLayout")
 
-    self.groupBox4 = QGroupBox(self,"groupBox4")
-    self.groupBox4.setSizePolicy(QSizePolicy(5,5,0,0,self.groupBox4.sizePolicy().hasHeightForWidth()))
-    groupBox4_font = QFont(self.groupBox4.font())
-    groupBox4_font.setPointSize(11)
-    self.groupBox4.setFont(groupBox4_font)
-    self.groupBox4.setColumnLayout(0,Qt.Vertical)
-    self.groupBox4.layout().setSpacing(6)
-    self.groupBox4.layout().setMargin(11)
-    groupBox4Layout = QVBoxLayout(self.groupBox4.layout())
-    groupBox4Layout.setAlignment(Qt.AlignTop)
+        self.groupBox4 = QGroupBox(self,"groupBox4")
+        self.groupBox4.setSizePolicy(QSizePolicy(5,5,0,0,self.groupBox4.sizePolicy().hasHeightForWidth()))
+        groupBox4_font = QFont(self.groupBox4.font())
+        groupBox4_font.setPointSize(11)
+        self.groupBox4.setFont(groupBox4_font)
+        self.groupBox4.setColumnLayout(0,Qt.Vertical)
+        self.groupBox4.layout().setSpacing(6)
+        self.groupBox4.layout().setMargin(11)
+        groupBox4Layout = QVBoxLayout(self.groupBox4.layout())
+        groupBox4Layout.setAlignment(Qt.AlignTop)
 
-    self.textLabel14_3_3_3 = QLabel(self.groupBox4,"textLabel14_3_3_3")
-    self.textLabel14_3_3_3.setSizePolicy(QSizePolicy(5,5,0,0,self.textLabel14_3_3_3.sizePolicy().hasHeightForWidth()))
-    self.textLabel14_3_3_3.setMaximumSize(QSize(32767,40))
-    textLabel14_3_3_3_font = QFont(self.textLabel14_3_3_3.font())
-    textLabel14_3_3_3_font.setPointSize(10)
-    textLabel14_3_3_3_font.setBold(1)
-    textLabel14_3_3_3_font.setUnderline(1)
-    self.textLabel14_3_3_3.setFont(textLabel14_3_3_3_font)
-    groupBox4Layout.addWidget(self.textLabel14_3_3_3)
+        self.textLabel14_3_3_3 = QLabel(self.groupBox4,"textLabel14_3_3_3")
+        self.textLabel14_3_3_3.setSizePolicy(QSizePolicy(5,5,0,0,self.textLabel14_3_3_3.sizePolicy().hasHeightForWidth()))
+        self.textLabel14_3_3_3.setMaximumSize(QSize(32767,40))
+        textLabel14_3_3_3_font = QFont(self.textLabel14_3_3_3.font())
+        textLabel14_3_3_3_font.setPointSize(10)
+        textLabel14_3_3_3_font.setBold(1)
+        textLabel14_3_3_3_font.setUnderline(1)
+        self.textLabel14_3_3_3.setFont(textLabel14_3_3_3_font)
+        groupBox4Layout.addWidget(self.textLabel14_3_3_3)
 
-    self.textLabel14_3_3_3_2_2 = QLabel(self.groupBox4,"textLabel14_3_3_3_2_2")
-    self.textLabel14_3_3_3_2_2.setSizePolicy(QSizePolicy(5,5,0,0,self.textLabel14_3_3_3_2_2.sizePolicy().hasHeightForWidth()))
-    textLabel14_3_3_3_2_2_font = QFont(self.textLabel14_3_3_3_2_2.font())
-    textLabel14_3_3_3_2_2_font.setPointSize(10)
-    self.textLabel14_3_3_3_2_2.setFont(textLabel14_3_3_3_2_2_font)
-    groupBox4Layout.addWidget(self.textLabel14_3_3_3_2_2)
+        self.textLabel14_3_3_3_2_2 = QLabel(self.groupBox4,"textLabel14_3_3_3_2_2")
+        self.textLabel14_3_3_3_2_2.setSizePolicy(QSizePolicy(5,5,0,0,self.textLabel14_3_3_3_2_2.sizePolicy().hasHeightForWidth()))
+        textLabel14_3_3_3_2_2_font = QFont(self.textLabel14_3_3_3_2_2.font())
+        textLabel14_3_3_3_2_2_font.setPointSize(10)
+        self.textLabel14_3_3_3_2_2.setFont(textLabel14_3_3_3_2_2_font)
+        groupBox4Layout.addWidget(self.textLabel14_3_3_3_2_2)
 
-    self.textLabel14_3_3_2_3 = QLabel(self.groupBox4,"textLabel14_3_3_2_3")
-    self.textLabel14_3_3_2_3.setSizePolicy(QSizePolicy(5,5,0,0,self.textLabel14_3_3_2_3.sizePolicy().hasHeightForWidth()))
-    self.textLabel14_3_3_2_3.setMaximumSize(QSize(32767,40))
-    textLabel14_3_3_2_3_font = QFont(self.textLabel14_3_3_2_3.font())
-    textLabel14_3_3_2_3_font.setPointSize(10)
-    textLabel14_3_3_2_3_font.setBold(1)
-    textLabel14_3_3_2_3_font.setUnderline(1)
-    self.textLabel14_3_3_2_3.setFont(textLabel14_3_3_2_3_font)
-    groupBox4Layout.addWidget(self.textLabel14_3_3_2_3)
+        self.textLabel14_3_3_2_3 = QLabel(self.groupBox4,"textLabel14_3_3_2_3")
+        self.textLabel14_3_3_2_3.setSizePolicy(QSizePolicy(5,5,0,0,self.textLabel14_3_3_2_3.sizePolicy().hasHeightForWidth()))
+        self.textLabel14_3_3_2_3.setMaximumSize(QSize(32767,40))
+        textLabel14_3_3_2_3_font = QFont(self.textLabel14_3_3_2_3.font())
+        textLabel14_3_3_2_3_font.setPointSize(10)
+        textLabel14_3_3_2_3_font.setBold(1)
+        textLabel14_3_3_2_3_font.setUnderline(1)
+        self.textLabel14_3_3_2_3.setFont(textLabel14_3_3_2_3_font)
+        groupBox4Layout.addWidget(self.textLabel14_3_3_2_3)
 
-    self.textLabel14_3_3_3_3_2 = QLabel(self.groupBox4,"textLabel14_3_3_3_3_2")
-    self.textLabel14_3_3_3_3_2.setSizePolicy(QSizePolicy(5,5,0,0,self.textLabel14_3_3_3_3_2.sizePolicy().hasHeightForWidth()))
-    textLabel14_3_3_3_3_2_font = QFont(self.textLabel14_3_3_3_3_2.font())
-    textLabel14_3_3_3_3_2_font.setPointSize(10)
-    self.textLabel14_3_3_3_3_2.setFont(textLabel14_3_3_3_3_2_font)
-    groupBox4Layout.addWidget(self.textLabel14_3_3_3_3_2)
+        self.textLabel14_3_3_3_3_2 = QLabel(self.groupBox4,"textLabel14_3_3_3_3_2")
+        self.textLabel14_3_3_3_3_2.setSizePolicy(QSizePolicy(5,5,0,0,self.textLabel14_3_3_3_3_2.sizePolicy().hasHeightForWidth()))
+        textLabel14_3_3_3_3_2_font = QFont(self.textLabel14_3_3_3_3_2.font())
+        textLabel14_3_3_3_3_2_font.setPointSize(10)
+        self.textLabel14_3_3_3_3_2.setFont(textLabel14_3_3_3_3_2_font)
+        groupBox4Layout.addWidget(self.textLabel14_3_3_3_3_2)
 
-    self.textLabel14_3_3_2_2_3 = QLabel(self.groupBox4,"textLabel14_3_3_2_2_3")
-    self.textLabel14_3_3_2_2_3.setSizePolicy(QSizePolicy(5,5,0,0,self.textLabel14_3_3_2_2_3.sizePolicy().hasHeightForWidth()))
-    self.textLabel14_3_3_2_2_3.setMaximumSize(QSize(32767,40))
-    textLabel14_3_3_2_2_3_font = QFont(self.textLabel14_3_3_2_2_3.font())
-    textLabel14_3_3_2_2_3_font.setPointSize(10)
-    textLabel14_3_3_2_2_3_font.setBold(1)
-    textLabel14_3_3_2_2_3_font.setUnderline(1)
-    self.textLabel14_3_3_2_2_3.setFont(textLabel14_3_3_2_2_3_font)
-    groupBox4Layout.addWidget(self.textLabel14_3_3_2_2_3)
+        self.textLabel14_3_3_2_2_3 = QLabel(self.groupBox4,"textLabel14_3_3_2_2_3")
+        self.textLabel14_3_3_2_2_3.setSizePolicy(QSizePolicy(5,5,0,0,self.textLabel14_3_3_2_2_3.sizePolicy().hasHeightForWidth()))
+        self.textLabel14_3_3_2_2_3.setMaximumSize(QSize(32767,40))
+        textLabel14_3_3_2_2_3_font = QFont(self.textLabel14_3_3_2_2_3.font())
+        textLabel14_3_3_2_2_3_font.setPointSize(10)
+        textLabel14_3_3_2_2_3_font.setBold(1)
+        textLabel14_3_3_2_2_3_font.setUnderline(1)
+        self.textLabel14_3_3_2_2_3.setFont(textLabel14_3_3_2_2_3_font)
+        groupBox4Layout.addWidget(self.textLabel14_3_3_2_2_3)
 
-    self.textLabel14_3_3_3_3_3_2 = QLabel(self.groupBox4,"textLabel14_3_3_3_3_3_2")
-    self.textLabel14_3_3_3_3_3_2.setSizePolicy(QSizePolicy(5,5,0,0,self.textLabel14_3_3_3_3_3_2.sizePolicy().hasHeightForWidth()))
-    textLabel14_3_3_3_3_3_2_font = QFont(self.textLabel14_3_3_3_3_3_2.font())
-    textLabel14_3_3_3_3_3_2_font.setPointSize(10)
-    self.textLabel14_3_3_3_3_3_2.setFont(textLabel14_3_3_3_3_3_2_font)
-    groupBox4Layout.addWidget(self.textLabel14_3_3_3_3_3_2)
-    spacer1_2_2 = QSpacerItem(16,16,QSizePolicy.Minimum,QSizePolicy.Minimum)
-    groupBox4Layout.addItem(spacer1_2_2)
-    pyOneAna_StatsViewLayout.addWidget(self.groupBox4)
+        self.textLabel14_3_3_3_3_3_2 = QLabel(self.groupBox4,"textLabel14_3_3_3_3_3_2")
+        self.textLabel14_3_3_3_3_3_2.setSizePolicy(QSizePolicy(5,5,0,0,self.textLabel14_3_3_3_3_3_2.sizePolicy().hasHeightForWidth()))
+        textLabel14_3_3_3_3_3_2_font = QFont(self.textLabel14_3_3_3_3_3_2.font())
+        textLabel14_3_3_3_3_3_2_font.setPointSize(10)
+        self.textLabel14_3_3_3_3_3_2.setFont(textLabel14_3_3_3_3_3_2_font)
+        groupBox4Layout.addWidget(self.textLabel14_3_3_3_3_3_2)
+        spacer1_2_2 = QSpacerItem(16,16,QSizePolicy.Minimum,QSizePolicy.Minimum)
+        groupBox4Layout.addItem(spacer1_2_2)
+        pyOneAna_StatsViewLayout.addWidget(self.groupBox4)
 
-    self.languageChange()
+        self.languageChange()
 
-    self.resize(QSize(124,167).expandedTo(self.minimumSizeHint()))
-    self.clearWState(Qt.WState_Polished)
+        self.resize(QSize(124,167).expandedTo(self.minimumSizeHint()))
+        self.clearWState(Qt.WState_Polished)
 
 
-  def languageChange(self):
-    self.setCaption(self.__tr("pyOneAna_StatsView"))
-    self.groupBox4.setTitle(self.__tr("Summary"))
-    self.textLabel14_3_3_3.setText(self.__tr("Run on:"))
-    self.textLabel14_3_3_3_2_2.setText(self.__tr("8/9/04"))
-    self.textLabel14_3_3_2_3.setText(self.__tr("Tasks:"))
-    self.textLabel14_3_3_3_3_2.setText(self.__tr("not, not, not"))
-    self.textLabel14_3_3_2_2_3.setText(self.__tr("Mutation Rate:"))
-    self.textLabel14_3_3_3_3_3_2.setText(self.__tr("0.4"))
+    def languageChange(self):
+        self.setCaption(self.__tr("pyOneAna_StatsView"))
+        self.groupBox4.setTitle(self.__tr("Summary"))
+        self.textLabel14_3_3_3.setText(self.__tr("Run on:"))
+        self.textLabel14_3_3_3_2_2.setText(self.__tr("8/9/04"))
+        self.textLabel14_3_3_2_3.setText(self.__tr("Tasks:"))
+        self.textLabel14_3_3_3_3_2.setText(self.__tr("not, not, not"))
+        self.textLabel14_3_3_2_2_3.setText(self.__tr("Mutation Rate:"))
+        self.textLabel14_3_3_3_3_3_2.setText(self.__tr("0.4"))
 
 
-  def __tr(self,s,c = None):
-    return qApp.translate("pyOneAna_StatsView",s,c)
+    def __tr(self,s,c = None):
+        return qApp.translate("pyOneAna_StatsView",s,c)

Modified: trunk/source/python/AvidaGui2/pyOneAna_TimelineView.py
===================================================================
--- trunk/source/python/AvidaGui2/pyOneAna_TimelineView.py	2005-03-31 03:44:15 UTC (rev 95)
+++ trunk/source/python/AvidaGui2/pyOneAna_TimelineView.py	2005-03-31 09:26:09 UTC (rev 96)
@@ -1,9 +1,9 @@
 # -*- coding: utf-8 -*-
 
-# Form implementation generated from reading ui file '/Users/kaben/Projects/Software/Avida/branch.kaben/avida--current--2.0--base-0/source/bindings/Boost.Python/AvidaGui2/pyOneAna_TimelineView.ui'
+# Form implementation generated from reading ui file 'pyOneAna_TimelineView.ui'
 #
-# Created: Fri Dec 3 10:26:51 2004
-#      by: The PyQt User Interface Compiler (pyuic) 3.12
+# Created: Thu Mar 31 04:19:21 2005
+#      by: The PyQt User Interface Compiler (pyuic) 3.13
 #
 # WARNING! All changes made in this file will be lost!
 
@@ -12,104 +12,104 @@
 from pyTimelineCtrl import pyTimelineCtrl
 
 image0_data = \
-  "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
-  "\x49\x48\x44\x52\x00\x00\x00\x0f\x00\x00\x00\x0e" \
-  "\x08\x06\x00\x00\x00\xf0\x8a\x46\xef\x00\x00\x01" \
-  "\xd7\x49\x44\x41\x54\x78\x9c\x85\x92\xcd\x6a\x53" \
-  "\x51\x14\x85\xbf\x9b\x5c\x09\x89\x69\xa3\xad\xb6" \
-  "\x45\xc1\xe2\x4f\x1a\x9d\x28\x8a\x13\x91\x80\xc1" \
-  "\xd0\xa9\xe0\x44\xa1\x82\x38\xa8\x93\x4e\xd4\xe2" \
-  "\xd4\x17\x70\x20\x8a\x51\x21\xfa\x04\xfa\x06\x05" \
-  "\x87\x22\xc4\x61\x41\x09\x0d\x04\x35\x85\x04\x93" \
-  "\xe6\xaf\xf6\x26\xb9\xe7\x2c\x07\x6d\xd3\x34\x11" \
-  "\xba\x60\x71\xe0\xec\xb3\xce\x62\xef\xbd\x90\xc4" \
-  "\x20\x5b\xad\x96\x96\x9f\x3c\x55\xa5\x52\xd1\x70" \
-  "\x6d\x98\x01\x06\xd0\x6e\xb7\x95\x79\x91\xe5\x88" \
-  "\x3b\x85\x31\x96\x83\xe0\x48\x02\xa0\xd3\xe9\x28" \
-  "\xf3\x32\xcb\x4c\x60\x8e\xdf\xb5\x3c\x53\x73\x51" \
-  "\x42\xa1\xd0\xbe\xc7\xb1\x58\x8c\x54\x2a\x45\x38" \
-  "\x1c\x76\xfa\x62\xdf\xf7\xf5\xe6\x55\x96\xe3\x9c" \
-  "\xa3\x56\xde\xe2\xd8\xd4\x18\x96\x3d\x67\x21\xac" \
-  "\x0c\x5e\x6f\x8b\x52\x23\xcf\xdd\x07\xb7\x48\x24" \
-  "\x12\x8e\x23\x89\x77\xaf\xdf\x2b\xd6\x3d\xc5\x46" \
-  "\xb9\x83\xac\xc0\xd9\x15\x81\x24\x8c\x84\x95\xc5" \
-  "\xf3\x7d\xa6\xa7\xc7\x21\x5a\x63\xe1\xe1\x6d\x82" \
-  "\x97\x2f\x5e\x55\x77\xfd\x30\xed\x3f\x86\xdd\x16" \
-  "\xf6\x3b\x82\x95\xc5\x58\x8b\x91\xa5\xd6\xdc\xe4" \
-  "\x68\x64\x92\x46\x6f\x9d\xc0\xcd\xf9\x1b\x14\x36" \
-  "\x7e\xe0\x19\x7f\x48\xb8\x0d\xbb\xf3\xa1\x91\x30" \
-  "\xb2\x08\x68\x79\x3d\xca\xbf\xea\x04\xa2\xd1\xa8" \
-  "\xb3\xf4\x68\x81\x92\xf7\x9d\xae\x35\xfb\x5c\xa5" \
-  "\xed\xd3\x58\xdb\x77\xb7\xb2\xf4\x7a\x06\x6f\xab" \
-  "\xbb\x37\xed\xc2\x5a\x41\x99\xe7\x9f\x38\x3d\x76" \
-  "\x9e\x4d\xbf\xc3\xdf\x6e\x13\x83\xb0\x56\x08\x70" \
-  "\x02\x2e\xae\x13\xc2\xc8\x30\x39\x31\xce\x89\xb3" \
-  "\x03\xab\x02\xc8\xe5\xbe\xe9\xe3\x87\x2f\x6c\x7a" \
-  "\x75\xae\xa5\xcf\x10\x0c\x06\xfb\xb5\x66\xa3\x4d" \
-  "\xee\xeb\x1a\x13\xe1\x0b\xb8\xee\x21\xae\xcf\x4f" \
-  "\x32\x92\x9a\x95\x95\xcf\xba\x77\x67\x49\xd5\x6a" \
-  "\x75\x24\x61\xf9\x7c\x5e\x8b\xf7\x9f\xe9\xf1\xe2" \
-  "\x5b\x15\x8b\x45\xb9\xc3\xa9\x49\xa7\x53\x4e\x28" \
-  "\xe4\x2a\x12\x89\x8c\x24\x2a\x1e\x8f\x3b\x33\x27" \
-  "\xa3\xaa\x55\xea\xcc\xce\xce\x3a\x23\x62\x80\x64" \
-  "\x32\xe9\xfc\xef\x1e\xe0\xd2\x95\x04\xeb\x3f\x6b" \
-  "\x3b\x53\x3d\x20\xfc\xc3\x5c\x5d\x5d\x55\xa9\x54" \
-  "\x92\x24\xfe\x01\x03\x3d\x5a\xfa\x32\x50\xe5\x56" \
-  "\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82"
+    "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
+    "\x49\x48\x44\x52\x00\x00\x00\x0f\x00\x00\x00\x0e" \
+    "\x08\x06\x00\x00\x00\xf0\x8a\x46\xef\x00\x00\x01" \
+    "\xd7\x49\x44\x41\x54\x78\x9c\x85\x92\xcd\x6a\x53" \
+    "\x51\x14\x85\xbf\x9b\x5c\x09\x89\x69\xa3\xad\xb6" \
+    "\x45\xc1\xe2\x4f\x1a\x9d\x28\x8a\x13\x91\x80\xc1" \
+    "\xd0\xa9\xe0\x44\xa1\x82\x38\xa8\x93\x4e\xd4\xe2" \
+    "\xd4\x17\x70\x20\x8a\x51\x21\xfa\x04\xfa\x06\x05" \
+    "\x87\x22\xc4\x61\x41\x09\x0d\x04\x35\x85\x04\x93" \
+    "\xe6\xaf\xf6\x26\xb9\xe7\x2c\x07\x6d\xd3\x34\x11" \
+    "\xba\x60\x71\xe0\xec\xb3\xce\x62\xef\xbd\x90\xc4" \
+    "\x20\x5b\xad\x96\x96\x9f\x3c\x55\xa5\x52\xd1\x70" \
+    "\x6d\x98\x01\x06\xd0\x6e\xb7\x95\x79\x91\xe5\x88" \
+    "\x3b\x85\x31\x96\x83\xe0\x48\x02\xa0\xd3\xe9\x28" \
+    "\xf3\x32\xcb\x4c\x60\x8e\xdf\xb5\x3c\x53\x73\x51" \
+    "\x42\xa1\xd0\xbe\xc7\xb1\x58\x8c\x54\x2a\x45\x38" \
+    "\x1c\x76\xfa\x62\xdf\xf7\xf5\xe6\x55\x96\xe3\x9c" \
+    "\xa3\x56\xde\xe2\xd8\xd4\x18\x96\x3d\x67\x21\xac" \
+    "\x0c\x5e\x6f\x8b\x52\x23\xcf\xdd\x07\xb7\x48\x24" \
+    "\x12\x8e\x23\x89\x77\xaf\xdf\x2b\xd6\x3d\xc5\x46" \
+    "\xb9\x83\xac\xc0\xd9\x15\x81\x24\x8c\x84\x95\xc5" \
+    "\xf3\x7d\xa6\xa7\xc7\x21\x5a\x63\xe1\xe1\x6d\x82" \
+    "\x97\x2f\x5e\x55\x77\xfd\x30\xed\x3f\x86\xdd\x16" \
+    "\xf6\x3b\x82\x95\xc5\x58\x8b\x91\xa5\xd6\xdc\xe4" \
+    "\x68\x64\x92\x46\x6f\x9d\xc0\xcd\xf9\x1b\x14\x36" \
+    "\x7e\xe0\x19\x7f\x48\xb8\x0d\xbb\xf3\xa1\x91\x30" \
+    "\xb2\x08\x68\x79\x3d\xca\xbf\xea\x04\xa2\xd1\xa8" \
+    "\xb3\xf4\x68\x81\x92\xf7\x9d\xae\x35\xfb\x5c\xa5" \
+    "\xed\xd3\x58\xdb\x77\xb7\xb2\xf4\x7a\x06\x6f\xab" \
+    "\xbb\x37\xed\xc2\x5a\x41\x99\xe7\x9f\x38\x3d\x76" \
+    "\x9e\x4d\xbf\xc3\xdf\x6e\x13\x83\xb0\x56\x08\x70" \
+    "\x02\x2e\xae\x13\xc2\xc8\x30\x39\x31\xce\x89\xb3" \
+    "\x03\xab\x02\xc8\xe5\xbe\xe9\xe3\x87\x2f\x6c\x7a" \
+    "\x75\xae\xa5\xcf\x10\x0c\x06\xfb\xb5\x66\xa3\x4d" \
+    "\xee\xeb\x1a\x13\xe1\x0b\xb8\xee\x21\xae\xcf\x4f" \
+    "\x32\x92\x9a\x95\x95\xcf\xba\x77\x67\x49\xd5\x6a" \
+    "\x75\x24\x61\xf9\x7c\x5e\x8b\xf7\x9f\xe9\xf1\xe2" \
+    "\x5b\x15\x8b\x45\xb9\xc3\xa9\x49\xa7\x53\x4e\x28" \
+    "\xe4\x2a\x12\x89\x8c\x24\x2a\x1e\x8f\x3b\x33\x27" \
+    "\xa3\xaa\x55\xea\xcc\xce\xce\x3a\x23\x62\x80\x64" \
+    "\x32\xe9\xfc\xef\x1e\xe0\xd2\x95\x04\xeb\x3f\x6b" \
+    "\x3b\x53\x3d\x20\xfc\xc3\x5c\x5d\x5d\x55\xa9\x54" \
+    "\x92\x24\xfe\x01\x03\x3d\x5a\xfa\x32\x50\xe5\x56" \
+    "\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82"
 
 class pyOneAna_TimelineView(QWidget):
-  def __init__(self,parent = None,name = None,fl = 0):
-    QWidget.__init__(self,parent,name,fl)
+    def __init__(self,parent = None,name = None,fl = 0):
+        QWidget.__init__(self,parent,name,fl)
 
-    self.image0 = QPixmap()
-    self.image0.loadFromData(image0_data,"PNG")
-    if not name:
-      self.setName("pyOneAna_TimelineView")
+        self.image0 = QPixmap()
+        self.image0.loadFromData(image0_data,"PNG")
+        if not name:
+            self.setName("pyOneAna_TimelineView")
 
 
-    pyOneAna_TimelineViewLayout = QVBoxLayout(self,0,6,"pyOneAna_TimelineViewLayout")
+        pyOneAna_TimelineViewLayout = QVBoxLayout(self,0,6,"pyOneAna_TimelineViewLayout")
 
-    layout214 = QHBoxLayout(None,0,6,"layout214")
-    spacer155 = QSpacerItem(1,32,QSizePolicy.Minimum,QSizePolicy.Fixed)
-    layout214.addItem(spacer155)
+        layout214 = QHBoxLayout(None,0,6,"layout214")
+        spacer155 = QSpacerItem(1,32,QSizePolicy.Minimum,QSizePolicy.Fixed)
+        layout214.addItem(spacer155)
 
-    self.textLabel9 = QLabel(self,"textLabel9")
-    self.textLabel9.setSizePolicy(QSizePolicy(3,0,0,0,self.textLabel9.sizePolicy().hasHeightForWidth()))
-    textLabel9_font = QFont(self.textLabel9.font())
-    textLabel9_font.setPointSize(11)
-    self.textLabel9.setFont(textLabel9_font)
-    layout214.addWidget(self.textLabel9)
+        self.textLabel9 = QLabel(self,"textLabel9")
+        self.textLabel9.setSizePolicy(QSizePolicy(3,0,0,0,self.textLabel9.sizePolicy().hasHeightForWidth()))
+        textLabel9_font = QFont(self.textLabel9.font())
+        textLabel9_font.setPointSize(11)
+        self.textLabel9.setFont(textLabel9_font)
+        layout214.addWidget(self.textLabel9)
 
-    layout178 = QVBoxLayout(None,0,6,"layout178")
-    spacer126 = QSpacerItem(1,1,QSizePolicy.Minimum,QSizePolicy.Minimum)
-    layout178.addItem(spacer126)
+        layout178 = QVBoxLayout(None,0,6,"layout178")
+        spacer126 = QSpacerItem(1,1,QSizePolicy.Minimum,QSizePolicy.Minimum)
+        layout178.addItem(spacer126)
 
-    self.toolButton31_2 = QToolButton(self,"toolButton31_2")
-    toolButton31_2_font = QFont(self.toolButton31_2.font())
-    toolButton31_2_font.setPointSize(10)
-    self.toolButton31_2.setFont(toolButton31_2_font)
-    self.toolButton31_2.setIconSet(QIconSet(self.image0))
-    layout178.addWidget(self.toolButton31_2)
-    spacer126_2 = QSpacerItem(1,1,QSizePolicy.Minimum,QSizePolicy.Minimum)
-    layout178.addItem(spacer126_2)
-    layout214.addLayout(layout178)
-    pyOneAna_TimelineViewLayout.addLayout(layout214)
+        self.toolButton31_2 = QToolButton(self,"toolButton31_2")
+        toolButton31_2_font = QFont(self.toolButton31_2.font())
+        toolButton31_2_font.setPointSize(10)
+        self.toolButton31_2.setFont(toolButton31_2_font)
+        self.toolButton31_2.setIconSet(QIconSet(self.image0))
+        layout178.addWidget(self.toolButton31_2)
+        spacer126_2 = QSpacerItem(1,1,QSizePolicy.Minimum,QSizePolicy.Minimum)
+        layout178.addItem(spacer126_2)
+        layout214.addLayout(layout178)
+        pyOneAna_TimelineViewLayout.addLayout(layout214)
 
-    self.pyTimelineCtrl1 = pyTimelineCtrl(self,"pyTimelineCtrl1")
-    self.pyTimelineCtrl1.setSizePolicy(QSizePolicy(7,0,0,0,self.pyTimelineCtrl1.sizePolicy().hasHeightForWidth()))
-    pyOneAna_TimelineViewLayout.addWidget(self.pyTimelineCtrl1)
+        self.pyTimelineCtrl1 = pyTimelineCtrl(self,"pyTimelineCtrl1")
+        self.pyTimelineCtrl1.setSizePolicy(QSizePolicy(7,0,0,0,self.pyTimelineCtrl1.sizePolicy().hasHeightForWidth()))
+        pyOneAna_TimelineViewLayout.addWidget(self.pyTimelineCtrl1)
 
-    self.languageChange()
+        self.languageChange()
 
-    self.resize(QSize(124,48).expandedTo(self.minimumSizeHint()))
-    self.clearWState(Qt.WState_Polished)
+        self.resize(QSize(124,48).expandedTo(self.minimumSizeHint()))
+        self.clearWState(Qt.WState_Polished)
 
 
-  def languageChange(self):
-    self.setCaption(self.__tr("pyOneAna_TimelineView"))
-    self.textLabel9.setText(self.__tr("Timeline"))
-    self.toolButton31_2.setText(QString.null)
+    def languageChange(self):
+        self.setCaption(self.__tr("pyOneAna_TimelineView"))
+        self.textLabel9.setText(self.__tr("Timeline"))
+        self.toolButton31_2.setText(QString.null)
 
 
-  def __tr(self,s,c = None):
-    return qApp.translate("pyOneAna_TimelineView",s,c)
+    def __tr(self,s,c = None):
+        return qApp.translate("pyOneAna_TimelineView",s,c)

Modified: trunk/source/python/AvidaGui2/pyOneAnalyzeView.py
===================================================================
--- trunk/source/python/AvidaGui2/pyOneAnalyzeView.py	2005-03-31 03:44:15 UTC (rev 95)
+++ trunk/source/python/AvidaGui2/pyOneAnalyzeView.py	2005-03-31 09:26:09 UTC (rev 96)
@@ -1,9 +1,9 @@
 # -*- coding: utf-8 -*-
 
-# Form implementation generated from reading ui file '/Users/kaben/Projects/Software/Avida/branch.kaben/avida--current--2.0--base-0/source/bindings/Boost.Python/AvidaGui2/pyOneAnalyzeView.ui'
+# Form implementation generated from reading ui file 'pyOneAnalyzeView.ui'
 #
-# Created: Fri Dec 3 10:26:51 2004
-#      by: The PyQt User Interface Compiler (pyuic) 3.12
+# Created: Thu Mar 31 04:19:21 2005
+#      by: The PyQt User Interface Compiler (pyuic) 3.13
 #
 # WARNING! All changes made in this file will be lost!
 
@@ -16,48 +16,48 @@
 
 
 class pyOneAnalyzeView(QWidget):
-  def __init__(self,parent = None,name = None,fl = 0):
-    QWidget.__init__(self,parent,name,fl)
+    def __init__(self,parent = None,name = None,fl = 0):
+        QWidget.__init__(self,parent,name,fl)
 
-    if not name:
-      self.setName("pyOneAnalyzeView")
+        if not name:
+            self.setName("pyOneAnalyzeView")
 
 
-    pyOneAnalyzeViewLayout = QVBoxLayout(self,0,6,"pyOneAnalyzeViewLayout")
+        pyOneAnalyzeViewLayout = QVBoxLayout(self,0,6,"pyOneAnalyzeViewLayout")
 
-    self.splitter3 = QSplitter(self,"splitter3")
-    self.splitter3.setOrientation(QSplitter.Vertical)
+        self.splitter3 = QSplitter(self,"splitter3")
+        self.splitter3.setOrientation(QSplitter.Vertical)
 
-    LayoutWidget = QWidget(self.splitter3,"layout55")
-    layout55 = QHBoxLayout(LayoutWidget,11,6,"layout55")
+        LayoutWidget = QWidget(self.splitter3,"layout55")
+        layout55 = QHBoxLayout(LayoutWidget,11,6,"layout55")
 
-    self.pyOneAna_StatsCtrl1 = pyOneAna_StatsCtrl(LayoutWidget,"pyOneAna_StatsCtrl1")
-    layout55.addWidget(self.pyOneAna_StatsCtrl1)
+        self.pyOneAna_StatsCtrl1 = pyOneAna_StatsCtrl(LayoutWidget,"pyOneAna_StatsCtrl1")
+        layout55.addWidget(self.pyOneAna_StatsCtrl1)
 
-    self.pyOneAna_PetriDishCtrl1 = pyOneAna_PetriDishCtrl(LayoutWidget,"pyOneAna_PetriDishCtrl1")
-    self.pyOneAna_PetriDishCtrl1.setSizePolicy(QSizePolicy(3,3,0,0,self.pyOneAna_PetriDishCtrl1.sizePolicy().hasHeightForWidth()))
-    layout55.addWidget(self.pyOneAna_PetriDishCtrl1)
+        self.pyOneAna_PetriDishCtrl1 = pyOneAna_PetriDishCtrl(LayoutWidget,"pyOneAna_PetriDishCtrl1")
+        self.pyOneAna_PetriDishCtrl1.setSizePolicy(QSizePolicy(3,3,0,0,self.pyOneAna_PetriDishCtrl1.sizePolicy().hasHeightForWidth()))
+        layout55.addWidget(self.pyOneAna_PetriDishCtrl1)
 
-    LayoutWidget_2 = QWidget(self.splitter3,"layout54")
-    layout54 = QVBoxLayout(LayoutWidget_2,11,6,"layout54")
+        LayoutWidget_2 = QWidget(self.splitter3,"layout54")
+        layout54 = QVBoxLayout(LayoutWidget_2,11,6,"layout54")
 
-    self.pyOneAna_GraphCtrl1 = pyOneAna_GraphCtrl(LayoutWidget_2,"pyOneAna_GraphCtrl1")
-    self.pyOneAna_GraphCtrl1.setSizePolicy(QSizePolicy(3,3,0,0,self.pyOneAna_GraphCtrl1.sizePolicy().hasHeightForWidth()))
-    layout54.addWidget(self.pyOneAna_GraphCtrl1)
+        self.pyOneAna_GraphCtrl1 = pyOneAna_GraphCtrl(LayoutWidget_2,"pyOneAna_GraphCtrl1")
+        self.pyOneAna_GraphCtrl1.setSizePolicy(QSizePolicy(3,3,0,0,self.pyOneAna_GraphCtrl1.sizePolicy().hasHeightForWidth()))
+        layout54.addWidget(self.pyOneAna_GraphCtrl1)
 
-    self.pyOneAna_TimelineCtrl1 = pyOneAna_TimelineCtrl(LayoutWidget_2,"pyOneAna_TimelineCtrl1")
-    layout54.addWidget(self.pyOneAna_TimelineCtrl1)
-    pyOneAnalyzeViewLayout.addWidget(self.splitter3)
+        self.pyOneAna_TimelineCtrl1 = pyOneAna_TimelineCtrl(LayoutWidget_2,"pyOneAna_TimelineCtrl1")
+        layout54.addWidget(self.pyOneAna_TimelineCtrl1)
+        pyOneAnalyzeViewLayout.addWidget(self.splitter3)
 
-    self.languageChange()
+        self.languageChange()
 
-    self.resize(QSize(465,495).expandedTo(self.minimumSizeHint()))
-    self.clearWState(Qt.WState_Polished)
+        self.resize(QSize(465,495).expandedTo(self.minimumSizeHint()))
+        self.clearWState(Qt.WState_Polished)
 
 
-  def languageChange(self):
-    self.setCaption(self.__tr("pyOneAnalyzeView"))
+    def languageChange(self):
+        self.setCaption(self.__tr("pyOneAnalyzeView"))
 
 
-  def __tr(self,s,c = None):
-    return qApp.translate("pyOneAnalyzeView",s,c)
+    def __tr(self,s,c = None):
+        return qApp.translate("pyOneAnalyzeView",s,c)

Copied: trunk/source/python/AvidaGui2/pyOneOrg_ScopeCtrl.py (from rev 95, branches/developers/kaben/source/python/AvidaGui2/pyOneOrg_ScopeCtrl.py)

Copied: trunk/source/python/AvidaGui2/pyOneOrg_ScopeView.ui (from rev 95, branches/developers/kaben/source/python/AvidaGui2/pyOneOrg_ScopeView.ui)

Modified: trunk/source/python/AvidaGui2/pyOneOrganismCtrl.py
===================================================================
--- trunk/source/python/AvidaGui2/pyOneOrganismCtrl.py	2005-03-31 03:44:15 UTC (rev 95)
+++ trunk/source/python/AvidaGui2/pyOneOrganismCtrl.py	2005-03-31 09:26:09 UTC (rev 96)
@@ -8,3 +8,7 @@
 
   def __init__(self,parent = None,name = None,fl = 0):
     pyOneOrganismView.__init__(self,parent,name,fl)
+
+  def construct(self, session_mdl):
+    self.m_session_mdl = session_mdl
+    self.m_one_org_scope_ctrl.construct(self.m_session_mdl)

Deleted: trunk/source/python/AvidaGui2/pyOneOrganismView.py
===================================================================
--- trunk/source/python/AvidaGui2/pyOneOrganismView.py	2005-03-31 03:44:15 UTC (rev 95)
+++ trunk/source/python/AvidaGui2/pyOneOrganismView.py	2005-03-31 09:26:09 UTC (rev 96)
@@ -1,400 +0,0 @@
-# -*- coding: utf-8 -*-
-
-# Form implementation generated from reading ui file '/Users/kaben/Projects/Software/Avida/branch.kaben/avida--current--2.0--base-0/source/bindings/Boost.Python/AvidaGui2/pyOneOrganismView.ui'
-#
-# Created: Fri Dec 3 10:26:51 2004
-#      by: The PyQt User Interface Compiler (pyuic) 3.12
-#
-# WARNING! All changes made in this file will be lost!
-
-
-from qt import *
-from pyTwoOrg_VivisectionCtrl import pyTwoOrg_VivisectionCtrl
-from pyTimelineCtrl import pyTimelineCtrl
-
-image0_data = \
-  "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
-  "\x49\x48\x44\x52\x00\x00\x00\x2a\x00\x00\x00\x41" \
-  "\x08\x06\x00\x00\x00\xa7\xf0\x36\xc2\x00\x00\x0c" \
-  "\x97\x49\x44\x41\x54\x78\x9c\xbd\x9a\x7f\x70\x53" \
-  "\xd7\x95\xc7\x3f\xb2\x25\x21\xe9\xe9\x3d\x83\xc0" \
-  "\x8a\x2d\x27\x74\xfd\x23\xfe\x81\x3d\xb6\xc1\x4e" \
-  "\x84\x14\x19\x26\x64\x43\x9d\xce\x94\x1f\x69\xe9" \
-  "\x3a\x09\x74\x37\x49\xa1\x5d\xb2\xbb\xb3\xed\x76" \
-  "\x86\xd9\x99\x4c\x42\x19\x3a\x3b\xe9\x90\x90\xb2" \
-  "\xdb\x94\x40\x37\x6d\x69\x60\xd9\x9a\x2c\x6e\x76" \
-  "\x43\x4c\xba\x09\xd4\x28\x56\x9c\x10\x6c\x27\x21" \
-  "\x96\xbd\xb6\xd9\x98\xb5\x6c\x04\x96\x8d\x7e\xd9" \
-  "\x91\x64\x6b\xff\x78\x7e\x0f\xdb\x10\xc0\x8e\x9c" \
-  "\x33\xa3\x91\xdf\xd3\x7d\x77\x3e\xbe\xf7\xdc\x73" \
-  "\xcf\xf7\xdc\xa7\x39\x7d\xfa\x34\x73\x31\x97\xcb" \
-  "\x95\x8c\x7e\xd6\x07\xc0\xb9\x8b\x7d\x9a\x39\x75" \
-  "\x32\x0b\xd3\xce\xe5\x21\xa7\xc3\x91\x3c\xf9\xb3" \
-  "\xbd\x08\xaf\x1e\x06\xa0\xe2\xdd\x53\xc9\xf6\xf6" \
-  "\xf6\x79\x85\x4d\x9b\xcb\x43\xcd\xef\xbe\x8b\xf0" \
-  "\xea\x61\xda\xf3\x0a\x68\x8c\x85\x39\xb4\x65\x2b" \
-  "\x76\xbb\x3d\x99\x6a\xb8\xa9\x36\x27\x50\xfb\xa5" \
-  "\x2e\x4a\x2d\x75\x6c\xd2\x44\x01\x18\xf0\xb6\x11" \
-  "\x0c\x06\x71\x3a\x1c\x49\x97\xcb\x35\x2f\xc0\xb3" \
-  "\x02\xad\xaa\xaa\x4a\x56\x55\x55\x25\xdf\xb9\x10" \
-  "\xe2\xc8\xc2\xb3\x74\xf5\xf8\xa8\xd5\x9b\xa9\xd5" \
-  "\x9b\xe9\xbb\xd8\x47\x24\x1a\x25\x1e\x8f\x33\x1f" \
-  "\xb0\xb7\xed\xa3\x25\x25\x25\xc9\xf5\x27\xf6\x01" \
-  "\xf0\x8d\xe8\x08\x8f\x6a\xa2\x90\x6f\x63\x5f\x47" \
-  "\x17\xb5\x7a\x33\x91\x60\x88\xc1\xc1\x01\xb2\xb2" \
-  "\xb2\x49\x4f\x9b\xd3\x44\xdd\x1a\xd4\x6e\xb7\x27" \
-  "\xc7\xc6\xc6\x10\x45\x11\xb7\xdb\x7d\xdd\xa2\x70" \
-  "\xb9\x5c\xc9\xb5\xaf\x3d\x37\xed\x5e\x57\x8f\x0f" \
-  "\x80\x25\x75\x1b\x09\x39\x6a\x10\x81\x70\x24\x42" \
-  "\x30\x18\x44\xab\xd5\xe2\x72\xb9\x92\x37\xea\x6b" \
-  "\xae\x96\xc6\xc4\x44\xf2\xc0\xa6\x2d\x1c\xda\xb2" \
-  "\x95\x89\xf1\x71\xf5\x07\xbb\xdd\x9e\xf4\x0d\x5e" \
-  "\x4c\x86\x22\xc1\xe4\x8b\x3b\xff\x51\xbd\x1f\x3b" \
-  "\x76\x12\x5d\xdb\x05\x0a\xf3\x6d\x14\xe6\xdb\xa8" \
-  "\x5e\xf3\x10\xa1\xd0\x55\x7c\xfe\x7e\x22\xc1\x10" \
-  "\xd1\x68\x84\x44\x22\x91\x2a\x3e\xd5\xb4\xd5\x6f" \
-  "\x36\x50\xa8\x89\xb2\xaf\xa3\x8b\x48\x54\x5e\x1c" \
-  "\x25\x25\x25\xc9\xe3\x7f\x38\x86\x37\x78\x10\x82" \
-  "\x20\x61\xe7\x8d\x75\x3f\x22\xee\x1b\xe0\xdc\x4f" \
-  "\xea\x81\x20\xe4\xdb\xe8\xea\xf1\x11\xf7\x0d\xce" \
-  "\x31\xc8\xcd\x12\x14\xae\x4d\xe3\xa1\x2d\x5b\x89" \
-  "\x57\xe6\x26\xdb\xf7\xfc\x0b\x43\xeb\xfc\x00\x7c" \
-  "\x73\xc5\xf3\x94\x6d\x29\x23\x91\x48\xd0\xe2\x79" \
-  "\x0f\x1d\x50\x98\x6f\x43\x2a\x2e\x80\x1e\x1f\x97" \
-  "\xb5\xf2\x2c\x88\x62\x06\x00\x26\x93\x80\x56\x9b" \
-  "\x7a\x72\x6d\xf2\x99\x9f\x92\xfb\x37\x01\x1e\x38" \
-  "\xf3\x2e\x6f\xef\x7c\x06\xbc\x6d\x00\xe8\xd7\xd9" \
-  "\x78\xa4\x66\x3f\x77\xde\x79\x17\xc1\x60\x90\xb1" \
-  "\xb1\x31\x74\xb6\x2c\xde\xf9\x7b\x09\x5e\xf4\x41" \
-  "\x8f\x8f\xb3\x0f\x3f\x88\x6d\xb2\x23\xd1\x68\xe6" \
-  "\x8e\xec\x2c\x0c\x06\xc3\xbc\x80\xa6\x19\x8d\x46" \
-  "\x2c\x16\x0b\x85\x35\xf7\xf1\xc0\xce\x5d\xea\x0f" \
-  "\x52\x9f\x1d\x8b\x65\x31\x81\x40\x80\x40\x60\x08" \
-  "\xff\x65\x3f\x91\xf7\x3e\xe4\x07\xff\x69\x06\x90" \
-  "\x21\xcb\xca\x65\x48\x31\x03\x41\x12\x31\x99\x04" \
-  "\x4c\x26\x13\x3a\x9d\xee\x86\x8b\xf2\x4b\x81\x02" \
-  "\x24\x12\x09\xa2\xd1\x08\x0b\x8b\xef\xa6\xe6\x89" \
-  "\xef\x03\x70\xe5\xe8\x71\x3a\xce\x9f\xc7\x7f\xd9" \
-  "\xcf\xa5\x81\x41\x06\x2f\x0d\xd0\xdd\xdc\x82\x6e" \
-  "\x78\x15\x00\x45\x8e\x9a\xeb\x3a\x33\x18\x0c\x2c" \
-  "\xd0\xeb\x53\x0e\xa9\x82\x82\xec\x5b\x00\xc2\xca" \
-  "\x2a\xb2\x8b\x2b\xd5\x06\x91\x60\x88\x5d\x97\x3d" \
-  "\xec\x0d\x7f\x4c\x81\xd3\x0e\x40\x7b\x5e\xc1\xb4" \
-  "\x4e\x44\xa3\x19\xb3\x20\xa0\xd7\xeb\x49\x4b\x4f" \
-  "\x4f\x35\xe3\x35\x50\x83\xc1\x80\xc1\x60\xc0\x2c" \
-  "\x08\x08\x92\x48\xe6\xe6\xf5\x32\xd0\x0b\x2f\x71" \
-  "\xf6\x9d\x37\x01\x39\x2c\x2d\xf7\x9c\x22\xbe\xa8" \
-  "\x89\x01\x6f\x1b\x69\xed\x9d\x32\xe4\x94\x69\x9f" \
-  "\x0f\xdf\x54\x41\xdd\x6e\xb7\x46\xa7\xd3\x21\x49" \
-  "\x12\x59\x59\xd9\x58\x33\xad\xd8\xac\x39\x64\x17" \
-  "\x57\x12\xaf\xcc\xa5\xfa\x3f\xfe\xc8\x37\x3e\x1e" \
-  "\x51\x1f\x50\x22\xc4\x44\x45\x11\xa2\x98\xa1\x8e" \
-  "\xa6\x24\x49\xf3\x36\xed\x30\x39\xa2\x0a\xac\x60" \
-  "\x32\x21\x49\x12\x77\x64\x67\x51\xf1\xa3\xed\x14" \
-  "\x39\x6a\x28\xcc\xb7\xf1\x68\xfb\x79\x1a\xff\x4c" \
-  "\x76\x87\xc6\x58\x18\xf7\x72\x9b\xda\x81\x32\x9a" \
-  "\x06\x83\x61\xde\xa6\x5d\x05\x55\x60\x9b\x3d\x1e" \
-  "\x8d\xc1\x60\xc0\x62\x59\xcc\x1d\xd9\x59\x88\x46" \
-  "\x33\xe7\xff\x62\x33\xfb\x3a\xba\x08\x7a\xbb\xd9" \
-  "\xd7\xd1\xa5\x42\x76\x7a\xce\x60\x18\x0e\x03\xb2" \
-  "\xeb\xa4\xa7\xa5\xcd\xdb\x68\x4e\x03\x55\x4c\xa7" \
-  "\xd3\x61\x32\x99\x30\x99\x04\xee\xc8\xce\x62\x61" \
-  "\xf1\xdd\x2c\xa9\xdb\xc8\xbe\x8e\x2e\x00\x5c\xad" \
-  "\xf2\xd4\x37\x74\xb6\xf0\xf6\xce\x67\x18\xf1\xfe" \
-  "\xcf\x7c\xb1\xdd\x1c\xd4\xed\x76\x6b\x16\xe8\xf5" \
-  "\x58\x2c\x16\x4c\x26\x01\xb3\x20\xa0\x6b\xbb\x40" \
-  "\xad\x5e\x8e\x9f\xd9\xc5\x95\x6c\x28\xb2\xab\xed" \
-  "\xdb\xbd\xad\x04\x02\x43\x0c\x8f\x8c\x50\x64\x34" \
-  "\x7f\xb5\xf9\x68\x5a\x7a\x3a\x0a\x2c\x40\x81\xd3" \
-  "\x4e\xa9\xa5\x8e\x5a\xbd\x99\x02\xa7\x5d\x0d\xf4" \
-  "\x20\xc7\xdb\xdf\x7e\x73\x1d\x67\xff\xf5\x10\x9d" \
-  "\x8f\x7f\x0f\x77\x53\xd3\xbc\xe4\xa3\x37\x04\x75" \
-  "\xbb\xdd\x1a\x05\x76\x61\x50\x4e\x54\xe2\x8b\x9a" \
-  "\x00\x38\xf3\xca\xcb\x78\x83\x07\x59\xf3\x20\xb8" \
-  "\x97\xdb\x70\x2f\xb7\xf1\xfe\x4f\x1f\xa7\x23\xea" \
-  "\xe7\xe9\x52\x89\xc6\x6d\xdb\x38\xf9\xb3\xbd\x00" \
-  "\x29\x05\xfe\xc2\x0c\x57\x81\x5d\xbc\xac\x88\xd5" \
-  "\xc3\x17\xe9\xea\xf1\xd1\x18\x93\x17\xcf\x3b\x7f" \
-  "\x94\xdb\x28\x2e\x10\x3b\x76\x92\x86\xce\x16\x36" \
-  "\x8d\x5a\xa9\xd5\x9b\x39\xf3\xca\xcb\x44\x9a\x3f" \
-  "\x48\xc6\xeb\x7f\x85\xb3\xaa\x2a\x25\xb0\x37\x8d" \
-  "\xd0\x69\x13\x13\x44\xfd\x97\x09\x7b\xbb\xd5\x7b" \
-  "\x4b\xea\x36\xb2\xbd\xac\x5c\xce\x96\x72\x60\x87" \
-  "\xa3\x86\x4e\xcf\x19\x8a\x1c\x35\x18\x86\xc3\x44" \
-  "\xfa\xfa\xe1\x95\x97\x59\xee\x39\x05\xb9\xeb\x18" \
-  "\xff\xaf\xc3\x38\x1f\x7e\x3c\xd9\xec\xf1\x7c\xa9" \
-  "\x88\x70\x53\xd0\xc4\xe7\x9f\xa3\x7b\xff\x2d\xf5" \
-  "\xba\xf6\xc0\x01\x7c\xfe\x7e\x00\x42\xa1\xab\xea" \
-  "\x7d\x5b\x59\xb9\x7c\xbd\x28\x83\x90\x36\x6b\x72" \
-  "\x0b\x8e\x32\x7c\xe4\x75\xba\x7a\x7c\xe4\x3a\x1f" \
-  "\xfa\xd2\x19\xff\x6d\x89\x9b\xae\x1e\x1f\xed\x79" \
-  "\x05\x08\x92\xa8\xe6\x9d\x33\x4d\x14\x33\x08\x85" \
-  "\xae\x12\xcf\x7b\x8b\xa1\x75\x7e\xea\x93\x26\x74" \
-  "\xc3\xab\x28\xb5\xd4\xf1\xc9\xe1\xdf\x13\xaf\xff" \
-  "\x15\x4e\x87\x63\xce\x6e\x70\x53\xd0\xe6\x0f\x3f" \
-  "\xd4\x8c\xe4\x55\xd3\x18\x0b\x33\xe0\x6d\xe3\xb5" \
-  "\xba\x47\xd4\x20\x2f\x8a\x19\xd8\xac\x39\xea\x27" \
-  "\x90\x59\x8f\x37\x78\x90\x9e\xb6\xcf\x00\x88\x57" \
-  "\xe6\xca\xdf\x8b\x9a\x58\x93\x2b\x32\x7e\xee\x53" \
-  "\xc6\xfe\xaf\x7f\xce\x0b\xec\x96\x59\x44\x66\x55" \
-  "\x25\x4b\xea\x36\x72\xe5\xe8\x71\x40\x8e\x9b\xb6" \
-  "\xb2\x72\x9e\xfb\xcd\x1e\xb5\xcd\xc1\x5d\xfb\x09" \
-  "\xf5\x6e\x42\x27\x5d\xc5\xf7\xc9\x47\xac\xde\xf0" \
-  "\x1d\x22\x05\x21\x8e\xb4\xbd\x44\x45\x8f\x8f\xea" \
-  "\x73\x9f\x12\xf4\x76\xd3\xf5\xd9\xff\x52\x65\xcd" \
-  "\x9c\x93\x1b\xdc\x12\x74\x62\x7c\x9c\x8a\xe2\xe5" \
-  "\xbc\x8d\x0c\xda\xd0\xd9\x02\x9d\x2d\xea\xef\xbb" \
-  "\xff\x7a\x27\x59\x59\xd9\x58\x2c\x8b\x19\x1b\x1b" \
-  "\x23\x5a\x51\x45\x38\x12\x21\x34\x1a\xa6\xc0\x69" \
-  "\xa7\xba\xe4\x5a\x5e\xe0\xf3\xf7\x53\x12\x2d\x9d" \
-  "\x93\x4a\xbd\xad\xbc\x2c\xd6\xd7\xaf\xfe\xed\x6a" \
-  "\xf5\x51\xbe\xfb\x59\x44\x31\x83\xf2\xb2\x0a\x24" \
-  "\x49\xba\xae\x7d\x24\x18\x02\xe0\x6a\x5e\x16\xc1" \
-  "\xc3\xa7\xd0\x0d\xaf\xa2\x7e\xa1\x8f\x3c\x31\x83" \
-  "\x40\x60\x08\xbd\x5e\x3f\x6b\xed\x7f\x4b\xd0\xb4" \
-  "\xf4\x74\xf4\x4b\x73\xd4\xeb\x25\x75\x1b\xb1\x59" \
-  "\x73\x10\x24\x91\x68\x34\x72\x5d\xfb\x70\x24\xc2" \
-  "\xae\xcb\x1e\xf9\x42\x03\x0f\x4e\x2a\x82\x4d\x9a" \
-  "\x28\xe7\x87\xc3\xaa\xf6\x37\x18\x0c\xb3\x1a\xd5" \
-  "\x5b\x4f\xfd\xe8\x28\x8e\xf6\xf7\xd0\xe9\xcd\x34" \
-  "\xc6\xc2\xb2\x8e\x1f\x95\x17\x54\x24\x18\x42\x90" \
-  "\xc4\x69\xed\x77\xf4\x5c\x0b\x67\xb1\x63\x27\x31" \
-  "\x3a\xe4\xf4\xf0\xfc\x1b\x3e\x62\x7d\xfd\x44\x6c" \
-  "\x59\x90\x69\x25\x91\x48\xa0\xd3\xe9\x6e\x87\xf1" \
-  "\xf6\x40\xb5\x0b\x16\x30\xbe\x62\x19\x85\xde\x6e" \
-  "\x1a\x3b\xba\x88\xfb\x06\xe9\xf4\xb6\xaa\x9a\x29" \
-  "\x34\x1a\x26\x90\x59\x0f\x80\xae\x77\x2d\xdf\x63" \
-  "\x29\x77\x17\x14\x33\x78\x69\x80\xac\x1d\x6b\xf9" \
-  "\xd3\x5b\xa7\x59\x3d\x7c\x11\x90\x5d\x41\x00\xa2" \
-  "\xd1\xc8\x0d\x5d\xe6\x4b\x81\x02\xc4\xef\x5d\x4b" \
-  "\xeb\x85\x10\xd9\x49\x93\x2c\xa9\x27\xcd\x56\x56" \
-  "\x4e\x3c\xef\x2d\x35\x24\x3d\xb5\x7e\x2d\x26\x93" \
-  "\x89\x44\x22\x81\x35\xd3\xca\x85\x9e\x1e\x56\x0f" \
-  "\x5f\x24\xe8\xed\x26\xb2\xf9\xb1\x59\x81\xcd\xb4" \
-  "\x5b\x7a\x74\x53\x73\xb3\x46\x67\xcb\xa6\xfa\xc9" \
-  "\xef\xe2\xdc\xb9\x43\xad\xde\x5d\x39\x7a\x9c\x97" \
-  "\x5e\x93\xe3\x66\x7e\xe5\xd7\x78\xa4\x66\xbf\x0a" \
-  "\x19\x0c\x06\x89\x46\x23\x14\xee\xdd\x43\xfa\x8a" \
-  "\x65\x37\xec\x77\xb6\xfa\x6a\xd6\x6a\xac\x70\xb2" \
-  "\x94\x03\xb0\x69\xd4\x8a\x73\xc5\x0e\x96\xde\xb5" \
-  "\x14\x80\x40\x20\xa0\x2e\xb0\xee\xde\x6e\xaa\x80" \
-  "\xf0\x2f\x46\xa8\x5f\x68\x22\x1e\xf5\x53\x24\x16" \
-  "\x01\xd7\x14\xef\x6c\x6c\x56\x31\xc2\x2c\x08\x74" \
-  "\xfd\xf0\xc7\x6a\x16\x55\xe0\xb4\x63\x16\x04\x02" \
-  "\x81\x21\xfa\x2e\xf6\xe1\xbf\xec\x27\x1c\x89\x10" \
-  "\x8e\x44\x54\xbf\x05\xa8\xe8\xed\xa6\xc4\x64\xbd" \
-  "\xae\xbf\x94\xc7\xd1\xf4\xb4\x34\x4c\x26\x13\x63" \
-  "\x63\x63\x08\x92\x48\xf9\xee\x67\xf9\xe8\xe9\x9f" \
-  "\xd0\xdd\xdc\x82\x7e\x69\x0e\xb1\xbe\x7e\x84\x95" \
-  "\x55\x84\x46\xc3\xec\x0d\x7f\x0c\xc0\x5f\xe6\x22" \
-  "\xd7\xa7\xf0\x51\xe8\xb5\xd1\x3a\xd9\x97\x12\x25" \
-  "\xe6\x65\xea\xd3\xd2\xd3\xd1\x6a\xb5\xea\x4a\x55" \
-  "\x74\xd2\x80\xb7\x8d\x81\x9d\x6d\x64\x17\x57\xf2" \
-  "\x87\xfc\x98\xda\x3e\x76\xec\x24\x23\xa3\x56\x82" \
-  "\x9a\xa1\x59\xc1\xdc\x94\xe1\x76\x1a\xcd\x94\xd3" \
-  "\x77\x56\x55\x52\x7b\xe0\x00\xf7\xfd\xfc\x05\xb2" \
-  "\x8b\x2b\xa9\xe8\xed\x66\xfd\xef\x5a\xd5\xf6\xdb" \
-  "\xbf\xb5\x95\x02\xa7\x9d\xae\x1e\x9f\x2a\x0a\xbf" \
-  "\x12\x50\x05\x36\x2d\x3d\x9d\x99\x72\x7a\x59\xdd" \
-  "\xc3\x00\x2a\x6c\xec\xd8\x49\x32\x13\xe9\x6a\xec" \
-  "\xcc\x2e\xae\xa4\xd5\x71\x3f\x57\xf3\xb2\xbe\x1a" \
-  "\x50\x05\x76\xaa\x9c\x16\x24\x11\x9d\x2d\x8b\xc8" \
-  "\xe6\xc7\xd4\x38\xe9\x6a\xf5\x51\xfa\xef\xaf\xaa" \
-  "\xcf\x14\x38\xed\xd7\x41\x1a\x0c\x86\xf9\x05\x55" \
-  "\x60\x17\xe8\xf5\x48\x92\x84\x35\xd3\x8a\x20\x89" \
-  "\x08\x2b\xab\x10\x56\x56\x01\x50\xab\x37\xb3\xe8" \
-  "\xd1\x75\x04\xbd\xdd\x14\xe6\xdb\xe8\x88\xfa\xd5" \
-  "\x64\x7b\x6a\x31\x6d\xb6\x49\xc9\x9c\x8e\x2f\x14" \
-  "\x17\x98\x0a\x0b\xb0\xac\xee\x61\x1a\x63\x61\x0e" \
-  "\x1c\xfe\x6f\x35\xc3\xd7\xb5\x5d\xa0\xd3\x73\x86" \
-  "\x8c\xde\x41\xaa\xdf\x6c\x60\x61\x30\x8a\x56\xab" \
-  "\x9d\x75\xf9\x67\x4e\xe5\x37\xb7\xdb\xad\x71\xb9" \
-  "\x5c\xc9\xa9\xa3\xe2\x07\x22\xc0\x7d\x3f\x7f\x81" \
-  "\x95\xff\xf4\xe9\xb4\xf6\x57\x8e\x1e\x47\xd0\x9b" \
-  "\x39\x0b\xb4\x77\xf8\xd8\xf0\x8b\xe7\xc9\xc9\xc9" \
-  "\x61\x36\x36\xe7\x03\x21\xa5\x56\x25\x98\x4c\x58" \
-  "\x2c\x16\x75\x64\x0d\xc3\x61\xe2\x8b\x9a\xd4\x3a" \
-  "\x40\x81\xd3\x4e\xcd\x13\xdf\xa7\x31\x16\xa6\x3d" \
-  "\xaf\x80\x01\x6f\x1b\x0d\x4f\xfd\x03\xa3\xa3\xa3" \
-  "\xb3\x92\x25\x9a\xb9\x9e\x2e\x4f\x35\xa7\xc3\x91" \
-  "\xfc\x3c\x16\x23\xfc\x69\x27\xe2\xb1\x43\xa4\xaf" \
-  "\x58\xc6\xf0\x91\xd7\x39\x52\x51\x8a\x4d\x91\xd6" \
-  "\xc8\x85\xb5\x12\x93\x95\xee\x66\x59\x21\x3c\xf1" \
-  "\x6f\xbf\xc6\x68\x34\x12\x8f\xc7\x69\x69\x69\xb9" \
-  "\xe9\x2e\x95\x92\x23\xb6\x66\x8f\x47\x63\x34\x1a" \
-  "\x01\x08\x7a\xbb\x19\x3f\x27\x4f\x7d\x89\xc9\x3a" \
-  "\x4d\xb5\x36\x74\xb6\xf0\x7c\x7e\x8c\x7a\xa3\x9f" \
-  "\x01\x6f\x1b\x4d\xff\xbc\x9f\x53\x47\x7f\x0f\x0d" \
-  "\xbf\x65\x95\xd3\x79\xd3\xd1\x4d\xc9\x88\x2a\x56" \
-  "\x51\x51\x91\x7c\xee\x9e\x7b\xd4\x82\xda\xcc\x5a" \
-  "\xea\x54\x53\xaa\x82\x00\x7f\x57\x52\x88\xe6\xe9" \
-  "\x5d\x74\x8e\x86\xbf\x70\x54\x53\x5a\xcb\x16\xb4" \
-  "\x5a\xb2\x8b\x2b\x69\x9c\x3c\x02\x9a\x0a\xb9\xfd" \
-  "\x5b\x5b\xa7\xd7\x04\xfe\x4a\xfe\xea\xfd\xe5\x21" \
-  "\x74\xc3\xd5\xbc\xff\xf6\x29\x56\xfd\xed\x0f\x92" \
-  "\xca\xcc\xcc\x4c\x58\x52\x0a\x3a\xe6\xbf\xcc\x93" \
-  "\x25\x36\x82\x9a\x28\xf5\x49\x13\x1b\x8a\x64\x6d" \
-  "\x6f\x2b\x2b\xe7\xee\x82\x62\x40\x96\x2f\xa1\xd1" \
-  "\x30\xa1\xd0\xd5\x69\xe0\xf7\x9e\x18\xe7\xc3\x95" \
-  "\x1f\x50\x75\xcf\x3d\x28\xb0\xf3\x06\xda\x1f\x1b" \
-  "\xa3\x77\xd1\x5d\xdc\x3b\x6c\x83\x85\x67\x55\xb9" \
-  "\x22\x1a\xcd\xd7\xe9\x2b\x05\x32\x5e\x99\x8b\xf1" \
-  "\x73\x1f\xa3\x1e\x1b\x85\x7b\xf7\xd0\xe4\xb8\x9f" \
-  "\x15\x0f\xdc\x4f\x91\xd1\x9c\x9c\xea\x0a\x29\x05" \
-  "\xb5\x58\x16\xb3\xe4\xc4\xf8\xb4\x7b\x53\x6b\x54" \
-  "\x53\x4d\xc9\x57\x33\xd7\xc1\xfe\xd7\xb3\x78\x74" \
-  "\x51\x13\x52\x71\x81\x2c\x5d\x76\x3f\x43\x57\x8f" \
-  "\x0f\x67\x6b\x8b\x5a\x5c\x4b\xd9\xc1\x7a\x6e\x6e" \
-  "\x6e\xf2\xe8\x93\x4f\x61\x74\xf8\x30\x3a\x7c\xea" \
-  "\x99\xd4\x4c\x58\x41\x12\xf9\xa0\xff\x5a\x95\xa5" \
-  "\xa7\xed\x33\x74\x6d\x17\x68\x75\xdc\x4f\x70\x4a" \
-  "\xd5\xb0\x31\x16\x66\x78\x64\x44\x7d\xab\x22\x65" \
-  "\xa0\xd6\xe6\x37\xd9\xf6\xd8\x9f\x03\xb0\xfb\xf8" \
-  "\x09\x75\xef\x17\xc5\x0c\x7c\x9f\x7c\xc4\x73\xbf" \
-  "\xd9\x83\xcf\xdf\xcf\xe0\xa5\x01\xf5\x19\x5d\xef" \
-  "\x5a\xd6\x14\xec\xc4\xb9\x73\x07\xfa\xa5\x39\x9c" \
-  "\x7e\xec\x11\xce\xbe\x21\x6f\x14\xe5\xbb\x9f\x05" \
-  "\x50\xdf\xaa\x48\x49\x78\x5a\x71\xd7\xd2\x64\xda" \
-  "\xfe\x17\xd5\xeb\xdd\xc7\x4f\xc8\x85\x8a\xb2\x72" \
-  "\x5e\x7a\xed\xe0\xb4\xb6\x87\xf7\xfc\x0e\x8b\xc5" \
-  "\x42\x22\x91\x20\x16\x8b\x11\x08\x0c\x71\x69\x60" \
-  "\x50\x5d\x60\xca\x3f\x27\x1a\xcd\x08\x92\x88\x35" \
-  "\xd3\x8a\x24\x49\xa9\xf1\x51\xc3\x9d\x39\x0c\x7d" \
-  "\xfb\xbb\x24\x77\x5f\x93\xd2\x57\x8e\x1e\xa7\x61" \
-  "\xb9\xbc\x03\xe9\xbf\xfd\x75\x00\x7e\xbd\x72\xb3" \
-  "\x7a\x2e\xf0\x45\x90\x30\xdd\x55\xfc\xc8\x69\x61" \
-  "\x4a\x40\x9b\x3d\x1e\x8d\xcb\xe5\x4a\xba\x7f\xf8" \
-  "\x63\x1a\xb7\x6d\x03\xe4\x84\x79\xd3\x28\x64\x6e" \
-  "\x5e\xcf\xf2\x72\xd9\x0d\x0c\x06\x03\x81\x40\x00" \
-  "\x90\x8b\x10\xe1\xc8\xb5\x92\xd0\x17\xd5\x5d\x15" \
-  "\x4b\xd9\xaa\x9f\x18\x1f\xa7\xa4\xb4\x94\xb3\x93" \
-  "\x25\xca\x81\xc9\xa0\x5f\x61\xdd\xae\x02\x4d\x05" \
-  "\x53\x4c\x90\xc4\xeb\xca\x42\x8a\x99\x05\x01\x93" \
-  "\x49\xce\x5f\x53\x06\x3a\x3e\x31\x01\xc0\xea\x0d" \
-  "\xdf\xe1\x4f\xc8\xfb\xfa\x86\x22\xbb\x5a\xa7\x9a" \
-  "\x09\x67\x16\x64\x6d\xaf\x68\xfc\x1b\x65\xfd\x7a" \
-  "\xbd\x1e\xad\x56\x2b\x7f\x52\x05\x9a\x9e\x96\x86" \
-  "\x5e\xaf\xc7\x2c\x08\x54\xaf\x79\x48\x3d\x8b\x9a" \
-  "\xea\x6f\xca\x02\x31\x0b\x02\x16\xcb\xe2\x69\x20" \
-  "\x4a\x1f\x33\x4d\x49\xb0\x53\x06\xaa\x48\x6a\x45" \
-  "\x4b\x89\xa3\x19\x37\x84\xb4\x66\x5a\x55\x75\xa0" \
-  "\x54\xf3\x6e\xa7\x10\x91\x32\x50\xb7\xdb\xad\x71" \
-  "\x3a\x1c\x49\x65\x55\x2b\x70\xc0\xb4\x51\x34\x99" \
-  "\x4c\x68\xb5\xda\x59\xbf\xce\x91\xd2\x2d\xb4\xd9" \
-  "\xe3\x99\x06\x1b\x9d\xe2\x87\x92\x24\x61\x30\x18" \
-  "\x66\x35\x8a\x53\x2d\xa5\xf9\xa8\x62\x4e\x87\x23" \
-  "\x39\x3e\x31\xc1\xd8\xd8\x18\x20\x97\x6f\x16\x4c" \
-  "\xbe\xc6\x31\xd7\xb3\xa6\xff\x07\x0e\x59\x16\xdb" \
-  "\xc1\x50\x9e\xe9\x00\x00\x00\x00\x49\x45\x4e\x44" \
-  "\xae\x42\x60\x82"
-image1_data = \
-  "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
-  "\x49\x48\x44\x52\x00\x00\x00\x0f\x00\x00\x00\x0e" \
-  "\x08\x06\x00\x00\x00\xf0\x8a\x46\xef\x00\x00\x01" \
-  "\xd7\x49\x44\x41\x54\x78\x9c\x85\x92\xcd\x6a\x53" \
-  "\x51\x14\x85\xbf\x9b\x5c\x09\x89\x69\xa3\xad\xb6" \
-  "\x45\xc1\xe2\x4f\x1a\x9d\x28\x8a\x13\x91\x80\xc1" \
-  "\xd0\xa9\xe0\x44\xa1\x82\x38\xa8\x93\x4e\xd4\xe2" \
-  "\xd4\x17\x70\x20\x8a\x51\x21\xfa\x04\xfa\x06\x05" \
-  "\x87\x22\xc4\x61\x41\x09\x0d\x04\x35\x85\x04\x93" \
-  "\xe6\xaf\xf6\x26\xb9\xe7\x2c\x07\x6d\xd3\x34\x11" \
-  "\xba\x60\x71\xe0\xec\xb3\xce\x62\xef\xbd\x90\xc4" \
-  "\x20\x5b\xad\x96\x96\x9f\x3c\x55\xa5\x52\xd1\x70" \
-  "\x6d\x98\x01\x06\xd0\x6e\xb7\x95\x79\x91\xe5\x88" \
-  "\x3b\x85\x31\x96\x83\xe0\x48\x02\xa0\xd3\xe9\x28" \
-  "\xf3\x32\xcb\x4c\x60\x8e\xdf\xb5\x3c\x53\x73\x51" \
-  "\x42\xa1\xd0\xbe\xc7\xb1\x58\x8c\x54\x2a\x45\x38" \
-  "\x1c\x76\xfa\x62\xdf\xf7\xf5\xe6\x55\x96\xe3\x9c" \
-  "\xa3\x56\xde\xe2\xd8\xd4\x18\x96\x3d\x67\x21\xac" \
-  "\x0c\x5e\x6f\x8b\x52\x23\xcf\xdd\x07\xb7\x48\x24" \
-  "\x12\x8e\x23\x89\x77\xaf\xdf\x2b\xd6\x3d\xc5\x46" \
-  "\xb9\x83\xac\xc0\xd9\x15\x81\x24\x8c\x84\x95\xc5" \
-  "\xf3\x7d\xa6\xa7\xc7\x21\x5a\x63\xe1\xe1\x6d\x82" \
-  "\x97\x2f\x5e\x55\x77\xfd\x30\xed\x3f\x86\xdd\x16" \
-  "\xf6\x3b\x82\x95\xc5\x58\x8b\x91\xa5\xd6\xdc\xe4" \
-  "\x68\x64\x92\x46\x6f\x9d\xc0\xcd\xf9\x1b\x14\x36" \
-  "\x7e\xe0\x19\x7f\x48\xb8\x0d\xbb\xf3\xa1\x91\x30" \
-  "\xb2\x08\x68\x79\x3d\xca\xbf\xea\x04\xa2\xd1\xa8" \
-  "\xb3\xf4\x68\x81\x92\xf7\x9d\xae\x35\xfb\x5c\xa5" \
-  "\xed\xd3\x58\xdb\x77\xb7\xb2\xf4\x7a\x06\x6f\xab" \
-  "\xbb\x37\xed\xc2\x5a\x41\x99\xe7\x9f\x38\x3d\x76" \
-  "\x9e\x4d\xbf\xc3\xdf\x6e\x13\x83\xb0\x56\x08\x70" \
-  "\x02\x2e\xae\x13\xc2\xc8\x30\x39\x31\xce\x89\xb3" \
-  "\x03\xab\x02\xc8\xe5\xbe\xe9\xe3\x87\x2f\x6c\x7a" \
-  "\x75\xae\xa5\xcf\x10\x0c\x06\xfb\xb5\x66\xa3\x4d" \
-  "\xee\xeb\x1a\x13\xe1\x0b\xb8\xee\x21\xae\xcf\x4f" \
-  "\x32\x92\x9a\x95\x95\xcf\xba\x77\x67\x49\xd5\x6a" \
-  "\x75\x24\x61\xf9\x7c\x5e\x8b\xf7\x9f\xe9\xf1\xe2" \
-  "\x5b\x15\x8b\x45\xb9\xc3\xa9\x49\xa7\x53\x4e\x28" \
-  "\xe4\x2a\x12\x89\x8c\x24\x2a\x1e\x8f\x3b\x33\x27" \
-  "\xa3\xaa\x55\xea\xcc\xce\xce\x3a\x23\x62\x80\x64" \
-  "\x32\xe9\xfc\xef\x1e\xe0\xd2\x95\x04\xeb\x3f\x6b" \
-  "\x3b\x53\x3d\x20\xfc\xc3\x5c\x5d\x5d\x55\xa9\x54" \
-  "\x92\x24\xfe\x01\x03\x3d\x5a\xfa\x32\x50\xe5\x56" \
-  "\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82"
-
-class pyOneOrganismView(QWidget):
-  def __init__(self,parent = None,name = None,fl = 0):
-    QWidget.__init__(self,parent,name,fl)
-
-    self.image0 = QPixmap()
-    self.image0.loadFromData(image0_data,"PNG")
-    self.image1 = QPixmap()
-    self.image1.loadFromData(image1_data,"PNG")
-    if not name:
-      self.setName("pyOneOrganismView")
-
-
-    pyOneOrganismViewLayout = QVBoxLayout(self,11,6,"pyOneOrganismViewLayout")
-
-    layout64 = QHBoxLayout(None,0,6,"layout64")
-
-    self.pixmapLabel2 = QLabel(self,"pixmapLabel2")
-    self.pixmapLabel2.setMaximumSize(QSize(20,32))
-    self.pixmapLabel2.setPixmap(self.image0)
-    self.pixmapLabel2.setScaledContents(1)
-    layout64.addWidget(self.pixmapLabel2)
-
-    self.textLabel13 = QLabel(self,"textLabel13")
-    self.textLabel13.setSizePolicy(QSizePolicy(5,5,0,0,self.textLabel13.sizePolicy().hasHeightForWidth()))
-    layout64.addWidget(self.textLabel13)
-    spacer33 = QSpacerItem(477,16,QSizePolicy.MinimumExpanding,QSizePolicy.Minimum)
-    layout64.addItem(spacer33)
-
-    layout178 = QVBoxLayout(None,0,6,"layout178")
-    spacer126 = QSpacerItem(1,1,QSizePolicy.Minimum,QSizePolicy.Minimum)
-    layout178.addItem(spacer126)
-
-    self.toolButton31_2 = QToolButton(self,"toolButton31_2")
-    toolButton31_2_font = QFont(self.toolButton31_2.font())
-    toolButton31_2_font.setPointSize(10)
-    self.toolButton31_2.setFont(toolButton31_2_font)
-    self.toolButton31_2.setIconSet(QIconSet(self.image1))
-    layout178.addWidget(self.toolButton31_2)
-    spacer126_2 = QSpacerItem(1,1,QSizePolicy.Minimum,QSizePolicy.Minimum)
-    layout178.addItem(spacer126_2)
-    layout64.addLayout(layout178)
-    pyOneOrganismViewLayout.addLayout(layout64)
-
-    self.pyTwoOrg_VivisectionCtrl1 = pyTwoOrg_VivisectionCtrl(self,"pyTwoOrg_VivisectionCtrl1")
-    self.pyTwoOrg_VivisectionCtrl1.setSizePolicy(QSizePolicy(3,3,0,5,self.pyTwoOrg_VivisectionCtrl1.sizePolicy().hasHeightForWidth()))
-    pyOneOrganismViewLayout.addWidget(self.pyTwoOrg_VivisectionCtrl1)
-
-    self.pyTimelineCtrl3 = pyTimelineCtrl(self,"pyTimelineCtrl3")
-    self.pyTimelineCtrl3.setSizePolicy(QSizePolicy(3,3,0,1,self.pyTimelineCtrl3.sizePolicy().hasHeightForWidth()))
-    pyOneOrganismViewLayout.addWidget(self.pyTimelineCtrl3)
-
-    self.languageChange()
-
-    self.resize(QSize(613,510).expandedTo(self.minimumSizeHint()))
-    self.clearWState(Qt.WState_Polished)
-
-
-  def languageChange(self):
-    self.setCaption(self.__tr("pyOneOrganismView"))
-    self.textLabel13.setText(self.__tr("Leopold"))
-    self.toolButton31_2.setText(QString.null)
-
-
-  def __tr(self,s,c = None):
-    return qApp.translate("pyOneOrganismView",s,c)

Modified: trunk/source/python/AvidaGui2/pyOneOrganismView.ui
===================================================================
--- trunk/source/python/AvidaGui2/pyOneOrganismView.ui	2005-03-31 03:44:15 UTC (rev 95)
+++ trunk/source/python/AvidaGui2/pyOneOrganismView.ui	2005-03-31 09:26:09 UTC (rev 96)
@@ -1,6 +1,6 @@
 <!DOCTYPE UI><UI version="3.3" stdsetdef="1">
 <class>pyOneOrganismView</class>
-<comment>Python:from pyTwoOrg_VivisectionCtrl import pyTwoOrg_VivisectionCtrl
+<comment>Python:from pyOneOrg_ScopeCtrl import pyOneOrg_ScopeCtrl
 Python:from pyTimelineCtrl import pyTimelineCtrl
 </comment>
 <widget class="QWidget">
@@ -142,16 +142,16 @@
                 </widget>
             </hbox>
         </widget>
-        <widget class="pyTwoOrg_VivisectionCtrl">
+        <widget class="pyOneOrg_ScopeCtrl">
             <property name="name">
-                <cstring>pyTwoOrg_VivisectionCtrl1</cstring>
+                <cstring>m_one_org_scope_ctrl</cstring>
             </property>
             <property name="sizePolicy">
                 <sizepolicy>
-                    <hsizetype>3</hsizetype>
+                    <hsizetype>5</hsizetype>
                     <vsizetype>3</vsizetype>
                     <horstretch>0</horstretch>
-                    <verstretch>5</verstretch>
+                    <verstretch>1</verstretch>
                 </sizepolicy>
             </property>
         </widget>
@@ -180,7 +180,7 @@
         </sizehint>
         <container>0</container>
         <sizepolicy>
-            <hordata>3</hordata>
+            <hordata>0</hordata>
             <verdata>0</verdata>
             <horstretch>0</horstretch>
             <verstretch>0</verstretch>
@@ -193,15 +193,17 @@
         <property type="3">-1</property>
         <property type="1">pyTimelineCtrl</property>
         <property type="4">-1</property>
+        <property type="1">pyTimelineCtrl</property>
+        <property type="4">-1</property>
         <property type="pyTimelineCtrl"></property>
         <property type="-1">1</property>
     </customwidget>
     <customwidget>
-        <class>pyTwoOrg_VivisectionCtrl</class>
-        <header location="global">1</header>
+        <class>pyOneOrg_ScopeCtrl</class>
+        <header location="local">1</header>
         <sizehint>
             <width>-1</width>
-            <height>0</height>
+            <height>-1</height>
         </sizehint>
         <container>0</container>
         <sizepolicy>
@@ -211,9 +213,6 @@
             <verstretch>0</verstretch>
         </sizepolicy>
         <pixmap>image2</pixmap>
-        <property type="0">3</property>
-        <property type="pyTwoOrg_VivisectionCtrl"></property>
-        <property type="-1">1</property>
     </customwidget>
 </customwidgets>
 <images>
@@ -229,7 +228,7 @@
 </images>
 <layoutdefaults spacing="6" margin="11"/>
 <includehints>
-    <includehint>pytwoorg_vivisectionctrl.h</includehint>
+    <includehint>pyoneorg_scopectrl.h</includehint>
     <includehint>pytimelinectrl.h</includehint>
 </includehints>
 </UI>

Modified: trunk/source/python/AvidaGui2/pyOnePop_StatsView.py
===================================================================
--- trunk/source/python/AvidaGui2/pyOnePop_StatsView.py	2005-03-31 03:44:15 UTC (rev 95)
+++ trunk/source/python/AvidaGui2/pyOnePop_StatsView.py	2005-03-31 09:26:09 UTC (rev 96)
@@ -1,9 +1,9 @@
 # -*- coding: utf-8 -*-
 
-# Form implementation generated from reading ui file '/Users/kaben/Projects/Software/Avida/branch.kaben/avida--current--2.0--base-0/source/bindings/Boost.Python/AvidaGui2/pyOnePop_StatsView.ui'
+# Form implementation generated from reading ui file 'pyOnePop_StatsView.ui'
 #
-# Created: Fri Dec 3 10:26:52 2004
-#      by: The PyQt User Interface Compiler (pyuic) 3.12
+# Created: Thu Mar 31 04:19:23 2005
+#      by: The PyQt User Interface Compiler (pyuic) 3.13
 #
 # WARNING! All changes made in this file will be lost!
 
@@ -12,269 +12,414 @@
 
 
 class pyOnePop_StatsView(QWidget):
-  def __init__(self,parent = None,name = None,fl = 0):
-    QWidget.__init__(self,parent,name,fl)
+    def __init__(self,parent = None,name = None,fl = 0):
+        QWidget.__init__(self,parent,name,fl)
 
-    if not name:
-      self.setName("pyOnePop_StatsView")
+        if not name:
+            self.setName("pyOnePop_StatsView")
 
-    self.setSizePolicy(QSizePolicy(3,3,0,0,self.sizePolicy().hasHeightForWidth()))
+        self.setSizePolicy(QSizePolicy(3,3,0,0,self.sizePolicy().hasHeightForWidth()))
 
-    pyOnePop_StatsViewLayout = QHBoxLayout(self,0,6,"pyOnePop_StatsViewLayout")
+        pyOnePop_StatsViewLayout = QHBoxLayout(self,11,6,"pyOnePop_StatsViewLayout")
 
-    layout13 = QVBoxLayout(None,0,6,"layout13")
+        layout46 = QVBoxLayout(None,0,6,"layout46")
 
-    self.groupBox3 = QGroupBox(self,"groupBox3")
-    self.groupBox3.setSizePolicy(QSizePolicy(5,5,0,0,self.groupBox3.sizePolicy().hasHeightForWidth()))
-    groupBox3_font = QFont(self.groupBox3.font())
-    groupBox3_font.setPointSize(11)
-    self.groupBox3.setFont(groupBox3_font)
-    self.groupBox3.setColumnLayout(0,Qt.Vertical)
-    self.groupBox3.layout().setSpacing(6)
-    self.groupBox3.layout().setMargin(11)
-    groupBox3Layout = QGridLayout(self.groupBox3.layout())
-    groupBox3Layout.setAlignment(Qt.AlignTop)
+        self.groupBox3 = QGroupBox(self,"groupBox3")
+        self.groupBox3.setSizePolicy(QSizePolicy(5,5,0,0,self.groupBox3.sizePolicy().hasHeightForWidth()))
+        groupBox3_font = QFont(self.groupBox3.font())
+        groupBox3_font.setPointSize(10)
+        self.groupBox3.setFont(groupBox3_font)
+        self.groupBox3.setColumnLayout(0,Qt.Vertical)
+        self.groupBox3.layout().setSpacing(6)
+        self.groupBox3.layout().setMargin(11)
+        groupBox3Layout = QVBoxLayout(self.groupBox3.layout())
+        groupBox3Layout.setAlignment(Qt.AlignTop)
 
-    self.textLabel14 = QLabel(self.groupBox3,"textLabel14")
-    textLabel14_font = QFont(self.textLabel14.font())
-    textLabel14_font.setPointSize(10)
-    textLabel14_font.setBold(1)
-    textLabel14_font.setUnderline(1)
-    self.textLabel14.setFont(textLabel14_font)
+        layout53 = QVBoxLayout(None,0,6,"layout53")
 
-    groupBox3Layout.addWidget(self.textLabel14,0,0)
+        layout20 = QHBoxLayout(None,0,6,"layout20")
 
-    self.textLabel14_2 = QLabel(self.groupBox3,"textLabel14_2")
-    textLabel14_2_font = QFont(self.textLabel14_2.font())
-    textLabel14_2_font.setPointSize(10)
-    textLabel14_2_font.setBold(1)
-    textLabel14_2_font.setUnderline(1)
-    self.textLabel14_2.setFont(textLabel14_2_font)
+        self.textLabel14 = QLabel(self.groupBox3,"textLabel14")
+        textLabel14_font = QFont(self.textLabel14.font())
+        textLabel14_font.setBold(1)
+        textLabel14_font.setUnderline(1)
+        self.textLabel14.setFont(textLabel14_font)
+        layout20.addWidget(self.textLabel14)
 
-    groupBox3Layout.addWidget(self.textLabel14_2,0,1)
+        self.textLabel14_2 = QLabel(self.groupBox3,"textLabel14_2")
+        textLabel14_2_font = QFont(self.textLabel14_2.font())
+        textLabel14_2_font.setBold(1)
+        textLabel14_2_font.setUnderline(1)
+        self.textLabel14_2.setFont(textLabel14_2_font)
+        layout20.addWidget(self.textLabel14_2)
+        layout53.addLayout(layout20)
 
-    self.textLabel14_3 = QLabel(self.groupBox3,"textLabel14_3")
-    self.textLabel14_3.setSizePolicy(QSizePolicy(5,5,0,0,self.textLabel14_3.sizePolicy().hasHeightForWidth()))
-    textLabel14_3_font = QFont(self.textLabel14_3.font())
-    textLabel14_3_font.setPointSize(10)
-    self.textLabel14_3.setFont(textLabel14_3_font)
+        layout51 = QHBoxLayout(None,0,6,"layout51")
 
-    groupBox3Layout.addWidget(self.textLabel14_3,1,0)
+        self.textLabel14_3 = QLabel(self.groupBox3,"textLabel14_3")
+        self.textLabel14_3.setSizePolicy(QSizePolicy(5,5,0,0,self.textLabel14_3.sizePolicy().hasHeightForWidth()))
+        textLabel14_3_font = QFont(self.textLabel14_3.font())
+        self.textLabel14_3.setFont(textLabel14_3_font)
+        layout51.addWidget(self.textLabel14_3)
 
-    self.textLabel14_3_2 = QLabel(self.groupBox3,"textLabel14_3_2")
-    self.textLabel14_3_2.setSizePolicy(QSizePolicy(5,5,0,0,self.textLabel14_3_2.sizePolicy().hasHeightForWidth()))
-    textLabel14_3_2_font = QFont(self.textLabel14_3_2.font())
-    textLabel14_3_2_font.setPointSize(10)
-    self.textLabel14_3_2.setFont(textLabel14_3_2_font)
+        self.m_num_not = QLabel(self.groupBox3,"m_num_not")
+        self.m_num_not.setSizePolicy(QSizePolicy(5,5,0,0,self.m_num_not.sizePolicy().hasHeightForWidth()))
+        m_num_not_font = QFont(self.m_num_not.font())
+        self.m_num_not.setFont(m_num_not_font)
+        layout51.addWidget(self.m_num_not)
+        layout53.addLayout(layout51)
 
-    groupBox3Layout.addWidget(self.textLabel14_3_2,1,1)
-    spacer1 = QSpacerItem(10,10,QSizePolicy.Minimum,QSizePolicy.Minimum)
-    groupBox3Layout.addMultiCell(spacer1,2,2,0,1)
-    layout13.addWidget(self.groupBox3)
+        layout52 = QHBoxLayout(None,0,6,"layout52")
 
-    self.groupBox5 = QGroupBox(self,"groupBox5")
-    self.groupBox5.setSizePolicy(QSizePolicy(5,5,0,0,self.groupBox5.sizePolicy().hasHeightForWidth()))
-    groupBox5_font = QFont(self.groupBox5.font())
-    groupBox5_font.setPointSize(11)
-    self.groupBox5.setFont(groupBox5_font)
-    self.groupBox5.setColumnLayout(0,Qt.Vertical)
-    self.groupBox5.layout().setSpacing(6)
-    self.groupBox5.layout().setMargin(11)
-    groupBox5Layout = QVBoxLayout(self.groupBox5.layout())
-    groupBox5Layout.setAlignment(Qt.AlignTop)
+        self.textLabel4 = QLabel(self.groupBox3,"textLabel4")
+        textLabel4_font = QFont(self.textLabel4.font())
+        self.textLabel4.setFont(textLabel4_font)
+        self.textLabel4.setAlignment(QLabel.WordBreak | QLabel.AlignVCenter | QLabel.AlignLeft)
+        layout52.addWidget(self.textLabel4)
 
-    layout11 = QGridLayout(None,1,1,0,6,"layout11")
+        self.m_num_nand = QLabel(self.groupBox3,"m_num_nand")
+        m_num_nand_font = QFont(self.m_num_nand.font())
+        self.m_num_nand.setFont(m_num_nand_font)
+        layout52.addWidget(self.m_num_nand)
+        layout53.addLayout(layout52)
 
-    self.textLabel14_3_3_2_2 = QLabel(self.groupBox5,"textLabel14_3_3_2_2")
-    self.textLabel14_3_3_2_2.setSizePolicy(QSizePolicy(5,5,0,0,self.textLabel14_3_3_2_2.sizePolicy().hasHeightForWidth()))
-    self.textLabel14_3_3_2_2.setMaximumSize(QSize(32767,40))
-    textLabel14_3_3_2_2_font = QFont(self.textLabel14_3_3_2_2.font())
-    textLabel14_3_3_2_2_font.setPointSize(10)
-    self.textLabel14_3_3_2_2.setFont(textLabel14_3_3_2_2_font)
+        layout9 = QHBoxLayout(None,0,6,"layout9")
 
-    layout11.addWidget(self.textLabel14_3_3_2_2,2,0)
+        self.textLabel6 = QLabel(self.groupBox3,"textLabel6")
+        textLabel6_font = QFont(self.textLabel6.font())
+        self.textLabel6.setFont(textLabel6_font)
+        self.textLabel6.setAlignment(QLabel.WordBreak | QLabel.AlignVCenter | QLabel.AlignLeft)
+        layout9.addWidget(self.textLabel6)
 
-    self.textLabel14_3_3_3_3 = QLabel(self.groupBox5,"textLabel14_3_3_3_3")
-    self.textLabel14_3_3_3_3.setSizePolicy(QSizePolicy(5,5,0,0,self.textLabel14_3_3_3_3.sizePolicy().hasHeightForWidth()))
-    textLabel14_3_3_3_3_font = QFont(self.textLabel14_3_3_3_3.font())
-    textLabel14_3_3_3_3_font.setPointSize(10)
-    self.textLabel14_3_3_3_3.setFont(textLabel14_3_3_3_3_font)
+        self.m_num_and = QLabel(self.groupBox3,"m_num_and")
+        m_num_and_font = QFont(self.m_num_and.font())
+        self.m_num_and.setFont(m_num_and_font)
+        layout9.addWidget(self.m_num_and)
+        layout53.addLayout(layout9)
 
-    layout11.addWidget(self.textLabel14_3_3_3_3,1,1)
+        layout10 = QHBoxLayout(None,0,6,"layout10")
 
-    self.textLabel14_3_3_3_2 = QLabel(self.groupBox5,"textLabel14_3_3_3_2")
-    self.textLabel14_3_3_3_2.setSizePolicy(QSizePolicy(5,5,0,0,self.textLabel14_3_3_3_2.sizePolicy().hasHeightForWidth()))
-    textLabel14_3_3_3_2_font = QFont(self.textLabel14_3_3_3_2.font())
-    textLabel14_3_3_3_2_font.setPointSize(10)
-    self.textLabel14_3_3_3_2.setFont(textLabel14_3_3_3_2_font)
+        self.textLabel17 = QLabel(self.groupBox3,"textLabel17")
+        textLabel17_font = QFont(self.textLabel17.font())
+        self.textLabel17.setFont(textLabel17_font)
+        self.textLabel17.setAlignment(QLabel.WordBreak | QLabel.AlignVCenter | QLabel.AlignLeft)
+        layout10.addWidget(self.textLabel17)
 
-    layout11.addWidget(self.textLabel14_3_3_3_2,0,1)
+        self.m_num_ornot = QLabel(self.groupBox3,"m_num_ornot")
+        m_num_ornot_font = QFont(self.m_num_ornot.font())
+        self.m_num_ornot.setFont(m_num_ornot_font)
+        layout10.addWidget(self.m_num_ornot)
+        layout53.addLayout(layout10)
 
-    self.textLabel14_3_3_2 = QLabel(self.groupBox5,"textLabel14_3_3_2")
-    self.textLabel14_3_3_2.setSizePolicy(QSizePolicy(5,5,0,0,self.textLabel14_3_3_2.sizePolicy().hasHeightForWidth()))
-    self.textLabel14_3_3_2.setMaximumSize(QSize(32767,40))
-    textLabel14_3_3_2_font = QFont(self.textLabel14_3_3_2.font())
-    textLabel14_3_3_2_font.setPointSize(10)
-    self.textLabel14_3_3_2.setFont(textLabel14_3_3_2_font)
+        layout11 = QHBoxLayout(None,0,6,"layout11")
 
-    layout11.addWidget(self.textLabel14_3_3_2,1,0)
+        self.textLabel10 = QLabel(self.groupBox3,"textLabel10")
+        textLabel10_font = QFont(self.textLabel10.font())
+        self.textLabel10.setFont(textLabel10_font)
+        self.textLabel10.setAlignment(QLabel.WordBreak | QLabel.AlignVCenter | QLabel.AlignLeft)
+        layout11.addWidget(self.textLabel10)
 
-    self.textLabel14_3_3_3_3_3 = QLabel(self.groupBox5,"textLabel14_3_3_3_3_3")
-    self.textLabel14_3_3_3_3_3.setSizePolicy(QSizePolicy(5,5,0,0,self.textLabel14_3_3_3_3_3.sizePolicy().hasHeightForWidth()))
-    textLabel14_3_3_3_3_3_font = QFont(self.textLabel14_3_3_3_3_3.font())
-    textLabel14_3_3_3_3_3_font.setPointSize(10)
-    self.textLabel14_3_3_3_3_3.setFont(textLabel14_3_3_3_3_3_font)
+        self.m_num_or = QLabel(self.groupBox3,"m_num_or")
+        m_num_or_font = QFont(self.m_num_or.font())
+        self.m_num_or.setFont(m_num_or_font)
+        layout11.addWidget(self.m_num_or)
+        layout53.addLayout(layout11)
 
-    layout11.addWidget(self.textLabel14_3_3_3_3_3,2,1)
+        layout12 = QHBoxLayout(None,0,6,"layout12")
 
-    self.textLabel14_3_3 = QLabel(self.groupBox5,"textLabel14_3_3")
-    self.textLabel14_3_3.setSizePolicy(QSizePolicy(5,5,0,0,self.textLabel14_3_3.sizePolicy().hasHeightForWidth()))
-    self.textLabel14_3_3.setMaximumSize(QSize(32767,40))
-    textLabel14_3_3_font = QFont(self.textLabel14_3_3.font())
-    textLabel14_3_3_font.setPointSize(10)
-    self.textLabel14_3_3.setFont(textLabel14_3_3_font)
+        self.textLabel12 = QLabel(self.groupBox3,"textLabel12")
+        textLabel12_font = QFont(self.textLabel12.font())
+        self.textLabel12.setFont(textLabel12_font)
+        self.textLabel12.setAlignment(QLabel.WordBreak | QLabel.AlignVCenter | QLabel.AlignLeft)
+        layout12.addWidget(self.textLabel12)
 
-    layout11.addWidget(self.textLabel14_3_3,0,0)
+        self.m_num_andnot = QLabel(self.groupBox3,"m_num_andnot")
+        m_num_andnot_font = QFont(self.m_num_andnot.font())
+        self.m_num_andnot.setFont(m_num_andnot_font)
+        layout12.addWidget(self.m_num_andnot)
+        layout53.addLayout(layout12)
 
-    self.textLabel14_3_3_2_2_2 = QLabel(self.groupBox5,"textLabel14_3_3_2_2_2")
-    self.textLabel14_3_3_2_2_2.setSizePolicy(QSizePolicy(5,5,0,0,self.textLabel14_3_3_2_2_2.sizePolicy().hasHeightForWidth()))
-    self.textLabel14_3_3_2_2_2.setMaximumSize(QSize(32767,40))
-    textLabel14_3_3_2_2_2_font = QFont(self.textLabel14_3_3_2_2_2.font())
-    textLabel14_3_3_2_2_2_font.setPointSize(10)
-    self.textLabel14_3_3_2_2_2.setFont(textLabel14_3_3_2_2_2_font)
+        layout13 = QHBoxLayout(None,0,6,"layout13")
 
-    layout11.addWidget(self.textLabel14_3_3_2_2_2,3,0)
+        self.textLabel14_4 = QLabel(self.groupBox3,"textLabel14_4")
+        textLabel14_4_font = QFont(self.textLabel14_4.font())
+        self.textLabel14_4.setFont(textLabel14_4_font)
+        self.textLabel14_4.setAlignment(QLabel.WordBreak | QLabel.AlignVCenter | QLabel.AlignLeft)
+        layout13.addWidget(self.textLabel14_4)
 
-    self.textLabel14_3_3_3_3_4 = QLabel(self.groupBox5,"textLabel14_3_3_3_3_4")
-    self.textLabel14_3_3_3_3_4.setSizePolicy(QSizePolicy(5,5,0,0,self.textLabel14_3_3_3_3_4.sizePolicy().hasHeightForWidth()))
-    textLabel14_3_3_3_3_4_font = QFont(self.textLabel14_3_3_3_3_4.font())
-    textLabel14_3_3_3_3_4_font.setPointSize(10)
-    self.textLabel14_3_3_3_3_4.setFont(textLabel14_3_3_3_3_4_font)
+        self.m_num_nor = QLabel(self.groupBox3,"m_num_nor")
+        m_num_nor_font = QFont(self.m_num_nor.font())
+        self.m_num_nor.setFont(m_num_nor_font)
+        layout13.addWidget(self.m_num_nor)
+        layout53.addLayout(layout13)
 
-    layout11.addWidget(self.textLabel14_3_3_3_3_4,3,1)
-    groupBox5Layout.addLayout(layout11)
-    spacer1_2 = QSpacerItem(10,10,QSizePolicy.Minimum,QSizePolicy.Minimum)
-    groupBox5Layout.addItem(spacer1_2)
-    layout13.addWidget(self.groupBox5)
-    pyOnePop_StatsViewLayout.addLayout(layout13)
+        layout14 = QHBoxLayout(None,0,6,"layout14")
 
-    self.groupBox4 = QGroupBox(self,"groupBox4")
-    self.groupBox4.setSizePolicy(QSizePolicy(5,5,0,0,self.groupBox4.sizePolicy().hasHeightForWidth()))
-    groupBox4_font = QFont(self.groupBox4.font())
-    groupBox4_font.setPointSize(11)
-    self.groupBox4.setFont(groupBox4_font)
-    self.groupBox4.setColumnLayout(0,Qt.Vertical)
-    self.groupBox4.layout().setSpacing(6)
-    self.groupBox4.layout().setMargin(11)
-    groupBox4Layout = QVBoxLayout(self.groupBox4.layout())
-    groupBox4Layout.setAlignment(Qt.AlignTop)
+        self.textLabel16 = QLabel(self.groupBox3,"textLabel16")
+        textLabel16_font = QFont(self.textLabel16.font())
+        self.textLabel16.setFont(textLabel16_font)
+        self.textLabel16.setAlignment(QLabel.WordBreak | QLabel.AlignVCenter | QLabel.AlignLeft)
+        layout14.addWidget(self.textLabel16)
 
-    layout11_2 = QGridLayout(None,1,1,0,6,"layout11_2")
+        self.m_num_xor = QLabel(self.groupBox3,"m_num_xor")
+        m_num_xor_font = QFont(self.m_num_xor.font())
+        self.m_num_xor.setFont(m_num_xor_font)
+        layout14.addWidget(self.m_num_xor)
+        layout53.addLayout(layout14)
 
-    self.textLabel14_3_3_2_2_3 = QLabel(self.groupBox4,"textLabel14_3_3_2_2_3")
-    self.textLabel14_3_3_2_2_3.setSizePolicy(QSizePolicy(5,5,0,0,self.textLabel14_3_3_2_2_3.sizePolicy().hasHeightForWidth()))
-    self.textLabel14_3_3_2_2_3.setMaximumSize(QSize(32767,40))
-    textLabel14_3_3_2_2_3_font = QFont(self.textLabel14_3_3_2_2_3.font())
-    textLabel14_3_3_2_2_3_font.setPointSize(10)
-    self.textLabel14_3_3_2_2_3.setFont(textLabel14_3_3_2_2_3_font)
+        layout15 = QHBoxLayout(None,0,6,"layout15")
 
-    layout11_2.addWidget(self.textLabel14_3_3_2_2_3,2,0)
+        self.textLabel18 = QLabel(self.groupBox3,"textLabel18")
+        textLabel18_font = QFont(self.textLabel18.font())
+        self.textLabel18.setFont(textLabel18_font)
+        self.textLabel18.setAlignment(QLabel.WordBreak | QLabel.AlignVCenter | QLabel.AlignLeft)
+        layout15.addWidget(self.textLabel18)
 
-    self.textLabel14_3_3_3_3_2 = QLabel(self.groupBox4,"textLabel14_3_3_3_3_2")
-    self.textLabel14_3_3_3_3_2.setSizePolicy(QSizePolicy(5,5,0,0,self.textLabel14_3_3_3_3_2.sizePolicy().hasHeightForWidth()))
-    textLabel14_3_3_3_3_2_font = QFont(self.textLabel14_3_3_3_3_2.font())
-    textLabel14_3_3_3_3_2_font.setPointSize(10)
-    self.textLabel14_3_3_3_3_2.setFont(textLabel14_3_3_3_3_2_font)
+        self.m_num_equals = QLabel(self.groupBox3,"m_num_equals")
+        m_num_equals_font = QFont(self.m_num_equals.font())
+        self.m_num_equals.setFont(m_num_equals_font)
+        layout15.addWidget(self.m_num_equals)
+        layout53.addLayout(layout15)
+        groupBox3Layout.addLayout(layout53)
+        spacer1 = QSpacerItem(16,16,QSizePolicy.Minimum,QSizePolicy.Minimum)
+        groupBox3Layout.addItem(spacer1)
+        layout46.addWidget(self.groupBox3)
 
-    layout11_2.addWidget(self.textLabel14_3_3_3_3_2,1,1)
+        self.groupBox5 = QGroupBox(self,"groupBox5")
+        self.groupBox5.setSizePolicy(QSizePolicy(5,5,0,0,self.groupBox5.sizePolicy().hasHeightForWidth()))
+        groupBox5_font = QFont(self.groupBox5.font())
+        groupBox5_font.setPointSize(11)
+        self.groupBox5.setFont(groupBox5_font)
+        self.groupBox5.setColumnLayout(0,Qt.Vertical)
+        self.groupBox5.layout().setSpacing(6)
+        self.groupBox5.layout().setMargin(11)
+        groupBox5Layout = QGridLayout(self.groupBox5.layout())
+        groupBox5Layout.setAlignment(Qt.AlignTop)
 
-    self.textLabel14_3_3_3_2_2 = QLabel(self.groupBox4,"textLabel14_3_3_3_2_2")
-    self.textLabel14_3_3_3_2_2.setSizePolicy(QSizePolicy(5,5,0,0,self.textLabel14_3_3_3_2_2.sizePolicy().hasHeightForWidth()))
-    textLabel14_3_3_3_2_2_font = QFont(self.textLabel14_3_3_3_2_2.font())
-    textLabel14_3_3_3_2_2_font.setPointSize(10)
-    self.textLabel14_3_3_3_2_2.setFont(textLabel14_3_3_3_2_2_font)
+        self.m_dom_merit = QLabel(self.groupBox5,"m_dom_merit")
+        self.m_dom_merit.setSizePolicy(QSizePolicy(5,5,0,0,self.m_dom_merit.sizePolicy().hasHeightForWidth()))
+        m_dom_merit_font = QFont(self.m_dom_merit.font())
+        m_dom_merit_font.setPointSize(10)
+        self.m_dom_merit.setFont(m_dom_merit_font)
 
-    layout11_2.addWidget(self.textLabel14_3_3_3_2_2,0,1)
+        groupBox5Layout.addWidget(self.m_dom_merit,1,1)
 
-    self.textLabel14_3_3_2_3 = QLabel(self.groupBox4,"textLabel14_3_3_2_3")
-    self.textLabel14_3_3_2_3.setSizePolicy(QSizePolicy(5,5,0,0,self.textLabel14_3_3_2_3.sizePolicy().hasHeightForWidth()))
-    self.textLabel14_3_3_2_3.setMaximumSize(QSize(32767,40))
-    textLabel14_3_3_2_3_font = QFont(self.textLabel14_3_3_2_3.font())
-    textLabel14_3_3_2_3_font.setPointSize(10)
-    self.textLabel14_3_3_2_3.setFont(textLabel14_3_3_2_3_font)
+        self.m_avg_merit = QLabel(self.groupBox5,"m_avg_merit")
+        self.m_avg_merit.setSizePolicy(QSizePolicy(5,5,0,0,self.m_avg_merit.sizePolicy().hasHeightForWidth()))
+        m_avg_merit_font = QFont(self.m_avg_merit.font())
+        m_avg_merit_font.setPointSize(10)
+        self.m_avg_merit.setFont(m_avg_merit_font)
 
-    layout11_2.addWidget(self.textLabel14_3_3_2_3,1,0)
+        groupBox5Layout.addWidget(self.m_avg_merit,0,1)
 
-    self.textLabel14_3_3_3_3_3_2 = QLabel(self.groupBox4,"textLabel14_3_3_3_3_3_2")
-    self.textLabel14_3_3_3_3_3_2.setSizePolicy(QSizePolicy(5,5,0,0,self.textLabel14_3_3_3_3_3_2.sizePolicy().hasHeightForWidth()))
-    textLabel14_3_3_3_3_3_2_font = QFont(self.textLabel14_3_3_3_3_3_2.font())
-    textLabel14_3_3_3_3_3_2_font.setPointSize(10)
-    self.textLabel14_3_3_3_3_3_2.setFont(textLabel14_3_3_3_3_3_2_font)
+        self.textLabel14_3_3_2 = QLabel(self.groupBox5,"textLabel14_3_3_2")
+        self.textLabel14_3_3_2.setSizePolicy(QSizePolicy(5,5,0,0,self.textLabel14_3_3_2.sizePolicy().hasHeightForWidth()))
+        self.textLabel14_3_3_2.setMaximumSize(QSize(32767,40))
+        textLabel14_3_3_2_font = QFont(self.textLabel14_3_3_2.font())
+        textLabel14_3_3_2_font.setPointSize(10)
+        self.textLabel14_3_3_2.setFont(textLabel14_3_3_2_font)
 
-    layout11_2.addWidget(self.textLabel14_3_3_3_3_3_2,2,1)
+        groupBox5Layout.addWidget(self.textLabel14_3_3_2,1,0)
 
-    self.textLabel14_3_3_3 = QLabel(self.groupBox4,"textLabel14_3_3_3")
-    self.textLabel14_3_3_3.setSizePolicy(QSizePolicy(5,5,0,0,self.textLabel14_3_3_3.sizePolicy().hasHeightForWidth()))
-    self.textLabel14_3_3_3.setMaximumSize(QSize(32767,40))
-    textLabel14_3_3_3_font = QFont(self.textLabel14_3_3_3.font())
-    textLabel14_3_3_3_font.setPointSize(10)
-    self.textLabel14_3_3_3.setFont(textLabel14_3_3_3_font)
+        self.m_num_orgs = QLabel(self.groupBox5,"m_num_orgs")
+        self.m_num_orgs.setSizePolicy(QSizePolicy(5,5,0,0,self.m_num_orgs.sizePolicy().hasHeightForWidth()))
+        m_num_orgs_font = QFont(self.m_num_orgs.font())
+        m_num_orgs_font.setPointSize(10)
+        self.m_num_orgs.setFont(m_num_orgs_font)
 
-    layout11_2.addWidget(self.textLabel14_3_3_3,0,0)
+        groupBox5Layout.addWidget(self.m_num_orgs,2,1)
 
-    self.textLabel14_3_3_2_2_2_2 = QLabel(self.groupBox4,"textLabel14_3_3_2_2_2_2")
-    self.textLabel14_3_3_2_2_2_2.setSizePolicy(QSizePolicy(5,5,0,0,self.textLabel14_3_3_2_2_2_2.sizePolicy().hasHeightForWidth()))
-    self.textLabel14_3_3_2_2_2_2.setMaximumSize(QSize(32767,40))
-    textLabel14_3_3_2_2_2_2_font = QFont(self.textLabel14_3_3_2_2_2_2.font())
-    textLabel14_3_3_2_2_2_2_font.setPointSize(10)
-    self.textLabel14_3_3_2_2_2_2.setFont(textLabel14_3_3_2_2_2_2_font)
+        self.textLabel14_3_3 = QLabel(self.groupBox5,"textLabel14_3_3")
+        self.textLabel14_3_3.setSizePolicy(QSizePolicy(5,5,0,0,self.textLabel14_3_3.sizePolicy().hasHeightForWidth()))
+        self.textLabel14_3_3.setMaximumSize(QSize(32767,40))
+        textLabel14_3_3_font = QFont(self.textLabel14_3_3.font())
+        textLabel14_3_3_font.setPointSize(10)
+        self.textLabel14_3_3.setFont(textLabel14_3_3_font)
 
-    layout11_2.addWidget(self.textLabel14_3_3_2_2_2_2,3,0)
+        groupBox5Layout.addWidget(self.textLabel14_3_3,0,0)
 
-    self.textLabel14_3_3_3_3_4_2 = QLabel(self.groupBox4,"textLabel14_3_3_3_3_4_2")
-    self.textLabel14_3_3_3_3_4_2.setSizePolicy(QSizePolicy(5,5,0,0,self.textLabel14_3_3_3_3_4_2.sizePolicy().hasHeightForWidth()))
-    textLabel14_3_3_3_3_4_2_font = QFont(self.textLabel14_3_3_3_3_4_2.font())
-    textLabel14_3_3_3_3_4_2_font.setPointSize(10)
-    self.textLabel14_3_3_3_3_4_2.setFont(textLabel14_3_3_3_3_4_2_font)
+        self.textLabel14_3_3_2_2_2 = QLabel(self.groupBox5,"textLabel14_3_3_2_2_2")
+        self.textLabel14_3_3_2_2_2.setSizePolicy(QSizePolicy(5,5,0,0,self.textLabel14_3_3_2_2_2.sizePolicy().hasHeightForWidth()))
+        self.textLabel14_3_3_2_2_2.setMaximumSize(QSize(32767,40))
+        textLabel14_3_3_2_2_2_font = QFont(self.textLabel14_3_3_2_2_2.font())
+        textLabel14_3_3_2_2_2_font.setPointSize(10)
+        self.textLabel14_3_3_2_2_2.setFont(textLabel14_3_3_2_2_2_font)
 
-    layout11_2.addWidget(self.textLabel14_3_3_3_3_4_2,3,1)
-    groupBox4Layout.addLayout(layout11_2)
-    spacer1_2_2 = QSpacerItem(10,10,QSizePolicy.Minimum,QSizePolicy.Minimum)
-    groupBox4Layout.addItem(spacer1_2_2)
-    pyOnePop_StatsViewLayout.addWidget(self.groupBox4)
+        groupBox5Layout.addWidget(self.textLabel14_3_3_2_2_2,3,0)
 
-    self.languageChange()
+        self.m_avg_gest = QLabel(self.groupBox5,"m_avg_gest")
+        self.m_avg_gest.setSizePolicy(QSizePolicy(5,5,0,0,self.m_avg_gest.sizePolicy().hasHeightForWidth()))
+        m_avg_gest_font = QFont(self.m_avg_gest.font())
+        m_avg_gest_font.setPointSize(10)
+        self.m_avg_gest.setFont(m_avg_gest_font)
 
-    self.resize(QSize(253,216).expandedTo(self.minimumSizeHint()))
-    self.clearWState(Qt.WState_Polished)
+        groupBox5Layout.addWidget(self.m_avg_gest,3,1)
 
+        self.textLabel14_3_3_2_2 = QLabel(self.groupBox5,"textLabel14_3_3_2_2")
+        self.textLabel14_3_3_2_2.setSizePolicy(QSizePolicy(5,5,0,0,self.textLabel14_3_3_2_2.sizePolicy().hasHeightForWidth()))
+        self.textLabel14_3_3_2_2.setMaximumSize(QSize(32767,40))
+        textLabel14_3_3_2_2_font = QFont(self.textLabel14_3_3_2_2.font())
+        textLabel14_3_3_2_2_font.setPointSize(10)
+        self.textLabel14_3_3_2_2.setFont(textLabel14_3_3_2_2_font)
 
-  def languageChange(self):
-    self.setCaption(self.__tr("pyOnePop_StatsView"))
-    self.groupBox3.setTitle(self.__tr("Task Outlook"))
-    self.textLabel14.setText(self.__tr("Task"))
-    self.textLabel14_2.setText(self.__tr("# Orgs"))
-    self.textLabel14_3.setText(self.__tr("blah"))
-    self.textLabel14_3_2.setText(self.__tr("blah blah"))
-    self.groupBox5.setTitle(self.__tr("Statistics"))
-    self.textLabel14_3_3_2_2.setText(self.__tr("Num. Orgs:"))
-    self.textLabel14_3_3_3_3.setText(self.__tr("0000"))
-    self.textLabel14_3_3_3_2.setText(self.__tr("0000"))
-    self.textLabel14_3_3_2.setText(self.__tr("Dom. Merit:"))
-    self.textLabel14_3_3_3_3_3.setText(self.__tr("0000"))
-    self.textLabel14_3_3.setText(self.__tr("Avg. Merit:"))
-    self.textLabel14_3_3_2_2_2.setText(self.__tr("Avg. Gest:"))
-    self.textLabel14_3_3_3_3_4.setText(self.__tr("0000"))
-    self.groupBox4.setTitle(self.__tr("Org Report"))
-    self.textLabel14_3_3_2_2_3.setText(self.__tr("Age:"))
-    self.textLabel14_3_3_3_3_2.setText(self.__tr("not, not, not"))
-    self.textLabel14_3_3_3_2_2.setText(self.__tr("abcdef"))
-    self.textLabel14_3_3_2_3.setText(self.__tr("Tasks:"))
-    self.textLabel14_3_3_3_3_3_2.setText(self.__tr("20 gen."))
-    self.textLabel14_3_3_3.setText(self.__tr("Name:"))
-    self.textLabel14_3_3_2_2_2_2.setText(self.__tr("Clones:"))
-    self.textLabel14_3_3_3_3_4_2.setText(self.__tr("13 in pop."))
+        groupBox5Layout.addWidget(self.textLabel14_3_3_2_2,2,0)
+        layout46.addWidget(self.groupBox5)
+        pyOnePop_StatsViewLayout.addLayout(layout46)
 
+        self.groupBox4 = QGroupBox(self,"groupBox4")
+        self.groupBox4.setSizePolicy(QSizePolicy(5,5,0,0,self.groupBox4.sizePolicy().hasHeightForWidth()))
+        groupBox4_font = QFont(self.groupBox4.font())
+        groupBox4_font.setPointSize(11)
+        self.groupBox4.setFont(groupBox4_font)
+        self.groupBox4.setColumnLayout(0,Qt.Vertical)
+        self.groupBox4.layout().setSpacing(6)
+        self.groupBox4.layout().setMargin(11)
+        groupBox4Layout = QVBoxLayout(self.groupBox4.layout())
+        groupBox4Layout.setAlignment(Qt.AlignTop)
 
-  def __tr(self,s,c = None):
-    return qApp.translate("pyOnePop_StatsView",s,c)
+        layout32 = QVBoxLayout(None,0,6,"layout32")
+
+        layout26 = QHBoxLayout(None,0,6,"layout26")
+
+        self.textLabel14_3_3_3 = QLabel(self.groupBox4,"textLabel14_3_3_3")
+        self.textLabel14_3_3_3.setSizePolicy(QSizePolicy(5,5,0,0,self.textLabel14_3_3_3.sizePolicy().hasHeightForWidth()))
+        self.textLabel14_3_3_3.setMaximumSize(QSize(32767,40))
+        textLabel14_3_3_3_font = QFont(self.textLabel14_3_3_3.font())
+        textLabel14_3_3_3_font.setPointSize(10)
+        self.textLabel14_3_3_3.setFont(textLabel14_3_3_3_font)
+        layout26.addWidget(self.textLabel14_3_3_3)
+
+        self.m_org_name = QLabel(self.groupBox4,"m_org_name")
+        self.m_org_name.setSizePolicy(QSizePolicy(5,5,0,0,self.m_org_name.sizePolicy().hasHeightForWidth()))
+        m_org_name_font = QFont(self.m_org_name.font())
+        m_org_name_font.setPointSize(10)
+        self.m_org_name.setFont(m_org_name_font)
+        layout26.addWidget(self.m_org_name)
+        layout32.addLayout(layout26)
+
+        layout27 = QHBoxLayout(None,0,6,"layout27")
+
+        self.textLabel14_3_3_2_3 = QLabel(self.groupBox4,"textLabel14_3_3_2_3")
+        self.textLabel14_3_3_2_3.setSizePolicy(QSizePolicy(5,5,0,0,self.textLabel14_3_3_2_3.sizePolicy().hasHeightForWidth()))
+        self.textLabel14_3_3_2_3.setMaximumSize(QSize(32767,40))
+        textLabel14_3_3_2_3_font = QFont(self.textLabel14_3_3_2_3.font())
+        textLabel14_3_3_2_3_font.setPointSize(10)
+        self.textLabel14_3_3_2_3.setFont(textLabel14_3_3_2_3_font)
+        layout27.addWidget(self.textLabel14_3_3_2_3)
+
+        self.textLabel14_3_3_3_3_2 = QLabel(self.groupBox4,"textLabel14_3_3_3_3_2")
+        self.textLabel14_3_3_3_3_2.setSizePolicy(QSizePolicy(5,5,0,0,self.textLabel14_3_3_3_3_2.sizePolicy().hasHeightForWidth()))
+        textLabel14_3_3_3_3_2_font = QFont(self.textLabel14_3_3_3_3_2.font())
+        textLabel14_3_3_3_3_2_font.setPointSize(10)
+        self.textLabel14_3_3_3_3_2.setFont(textLabel14_3_3_3_3_2_font)
+        layout27.addWidget(self.textLabel14_3_3_3_3_2)
+        layout32.addLayout(layout27)
+
+        layout29 = QHBoxLayout(None,0,6,"layout29")
+
+        self.textLabel14_3_3_2_2_3 = QLabel(self.groupBox4,"textLabel14_3_3_2_2_3")
+        self.textLabel14_3_3_2_2_3.setSizePolicy(QSizePolicy(5,5,0,0,self.textLabel14_3_3_2_2_3.sizePolicy().hasHeightForWidth()))
+        self.textLabel14_3_3_2_2_3.setMaximumSize(QSize(32767,40))
+        textLabel14_3_3_2_2_3_font = QFont(self.textLabel14_3_3_2_2_3.font())
+        textLabel14_3_3_2_2_3_font.setPointSize(10)
+        self.textLabel14_3_3_2_2_3.setFont(textLabel14_3_3_2_2_3_font)
+        layout29.addWidget(self.textLabel14_3_3_2_2_3)
+
+        self.m_org_fitness = QLabel(self.groupBox4,"m_org_fitness")
+        self.m_org_fitness.setSizePolicy(QSizePolicy(5,5,0,0,self.m_org_fitness.sizePolicy().hasHeightForWidth()))
+        m_org_fitness_font = QFont(self.m_org_fitness.font())
+        m_org_fitness_font.setPointSize(10)
+        self.m_org_fitness.setFont(m_org_fitness_font)
+        layout29.addWidget(self.m_org_fitness)
+        layout32.addLayout(layout29)
+
+        layout30 = QHBoxLayout(None,0,6,"layout30")
+
+        self.textLabel14_3_3_2_2_2_2 = QLabel(self.groupBox4,"textLabel14_3_3_2_2_2_2")
+        self.textLabel14_3_3_2_2_2_2.setSizePolicy(QSizePolicy(5,5,0,0,self.textLabel14_3_3_2_2_2_2.sizePolicy().hasHeightForWidth()))
+        self.textLabel14_3_3_2_2_2_2.setMaximumSize(QSize(32767,40))
+        textLabel14_3_3_2_2_2_2_font = QFont(self.textLabel14_3_3_2_2_2_2.font())
+        textLabel14_3_3_2_2_2_2_font.setPointSize(10)
+        self.textLabel14_3_3_2_2_2_2.setFont(textLabel14_3_3_2_2_2_2_font)
+        layout30.addWidget(self.textLabel14_3_3_2_2_2_2)
+
+        self.m_org_gestation_time = QLabel(self.groupBox4,"m_org_gestation_time")
+        self.m_org_gestation_time.setSizePolicy(QSizePolicy(5,5,0,0,self.m_org_gestation_time.sizePolicy().hasHeightForWidth()))
+        m_org_gestation_time_font = QFont(self.m_org_gestation_time.font())
+        m_org_gestation_time_font.setPointSize(10)
+        self.m_org_gestation_time.setFont(m_org_gestation_time_font)
+        layout30.addWidget(self.m_org_gestation_time)
+        layout32.addLayout(layout30)
+
+        layout31 = QHBoxLayout(None,0,6,"layout31")
+
+        self.textLabel1 = QLabel(self.groupBox4,"textLabel1")
+        textLabel1_font = QFont(self.textLabel1.font())
+        textLabel1_font.setPointSize(10)
+        self.textLabel1.setFont(textLabel1_font)
+        layout31.addWidget(self.textLabel1)
+
+        self.m_org_age = QLabel(self.groupBox4,"m_org_age")
+        m_org_age_font = QFont(self.m_org_age.font())
+        m_org_age_font.setPointSize(10)
+        self.m_org_age.setFont(m_org_age_font)
+        layout31.addWidget(self.m_org_age)
+        layout32.addLayout(layout31)
+        spacer1_2_2 = QSpacerItem(16,16,QSizePolicy.Minimum,QSizePolicy.Minimum)
+        layout32.addItem(spacer1_2_2)
+        groupBox4Layout.addLayout(layout32)
+        pyOnePop_StatsViewLayout.addWidget(self.groupBox4)
+
+        self.languageChange()
+
+        self.resize(QSize(485,743).expandedTo(self.minimumSizeHint()))
+        self.clearWState(Qt.WState_Polished)
+
+
+    def languageChange(self):
+        self.setCaption(self.__tr("pyOnePop_StatsView"))
+        self.groupBox3.setTitle(self.__tr("Population Task Report"))
+        self.textLabel14.setText(self.__tr("Task"))
+        self.textLabel14_2.setText(self.__tr("being done?"))
+        self.textLabel14_3.setText(self.__tr("not"))
+        self.m_num_not.setText(self.__tr("-"))
+        self.textLabel4.setText(self.__tr("nand"))
+        self.m_num_nand.setText(self.__tr("-"))
+        self.textLabel6.setText(self.__tr("and"))
+        self.m_num_and.setText(self.__tr("-"))
+        self.textLabel17.setText(self.__tr("ornot"))
+        self.m_num_ornot.setText(self.__tr("-"))
+        self.textLabel10.setText(self.__tr("or"))
+        self.m_num_or.setText(self.__tr("-"))
+        self.textLabel12.setText(self.__tr("andnot"))
+        self.m_num_andnot.setText(self.__tr("-"))
+        self.textLabel14_4.setText(self.__tr("nor"))
+        self.m_num_nor.setText(self.__tr("-"))
+        self.textLabel16.setText(self.__tr("xor"))
+        self.m_num_xor.setText(self.__tr("-"))
+        self.textLabel18.setText(self.__tr("equals"))
+        self.m_num_equals.setText(self.__tr("-"))
+        self.groupBox5.setTitle(self.__tr("Statistics"))
+        self.m_dom_merit.setText(self.__tr("0000"))
+        self.m_avg_merit.setText(self.__tr("0000"))
+        self.textLabel14_3_3_2.setText(self.__tr("Dom. Merit:"))
+        self.m_num_orgs.setText(self.__tr("0000"))
+        self.textLabel14_3_3.setText(self.__tr("Avg. Merit:"))
+        self.textLabel14_3_3_2_2_2.setText(self.__tr("Avg. Gest:"))
+        self.m_avg_gest.setText(self.__tr("0000"))
+        self.textLabel14_3_3_2_2.setText(self.__tr("Num. Orgs:"))
+        self.groupBox4.setTitle(self.__tr("Org Report"))
+        self.textLabel14_3_3_3.setText(self.__tr("Name:"))
+        self.m_org_name.setText(self.__tr("-"))
+        self.textLabel14_3_3_2_3.setText(self.__tr("Tasks:"))
+        self.textLabel14_3_3_3_3_2.setText(self.__tr("-"))
+        self.textLabel14_3_3_2_2_3.setText(self.__tr("Fitness:"))
+        self.m_org_fitness.setText(self.__tr("-"))
+        self.textLabel14_3_3_2_2_2_2.setText(self.__tr("Gestation:"))
+        self.m_org_gestation_time.setText(self.__tr("-"))
+        self.textLabel1.setText(self.__tr("Age:"))
+        self.m_org_age.setText(self.__tr("-"))
+
+
+    def __tr(self,s,c = None):
+        return qApp.translate("pyOnePop_StatsView",s,c)

Modified: trunk/source/python/AvidaGui2/pyOnePopulationView.py
===================================================================
--- trunk/source/python/AvidaGui2/pyOnePopulationView.py	2005-03-31 03:44:15 UTC (rev 95)
+++ trunk/source/python/AvidaGui2/pyOnePopulationView.py	2005-03-31 09:26:09 UTC (rev 96)
@@ -1,9 +1,9 @@
 # -*- coding: utf-8 -*-
 
-# Form implementation generated from reading ui file '/Users/kaben/Projects/Software/Avida/branch.kaben/avida--current--2.0--base-0/source/bindings/Boost.Python/AvidaGui2/pyOnePopulationView.ui'
+# Form implementation generated from reading ui file 'pyOnePopulationView.ui'
 #
-# Created: Fri Dec 3 10:26:52 2004
-#      by: The PyQt User Interface Compiler (pyuic) 3.12
+# Created: Thu Mar 31 04:19:23 2005
+#      by: The PyQt User Interface Compiler (pyuic) 3.13
 #
 # WARNING! All changes made in this file will be lost!
 
@@ -16,46 +16,46 @@
 
 
 class pyOnePopulationView(QWidget):
-  def __init__(self,parent = None,name = None,fl = 0):
-    QWidget.__init__(self,parent,name,fl)
+    def __init__(self,parent = None,name = None,fl = 0):
+        QWidget.__init__(self,parent,name,fl)
 
-    if not name:
-      self.setName("pyOnePopulationView")
+        if not name:
+            self.setName("pyOnePopulationView")
 
 
-    pyOnePopulationViewLayout = QHBoxLayout(self,11,6,"pyOnePopulationViewLayout")
+        pyOnePopulationViewLayout = QHBoxLayout(self,11,6,"pyOnePopulationViewLayout")
 
-    layout16 = QVBoxLayout(None,0,6,"layout16")
+        layout16 = QVBoxLayout(None,0,6,"layout16")
 
-    self.m_one_pop_petri_dish_ctrl = pyOnePop_PetriDishCtrl(self,"m_one_pop_petri_dish_ctrl")
-    self.m_one_pop_petri_dish_ctrl.setSizePolicy(QSizePolicy(3,7,0,0,self.m_one_pop_petri_dish_ctrl.sizePolicy().hasHeightForWidth()))
-    layout16.addWidget(self.m_one_pop_petri_dish_ctrl)
+        self.m_one_pop_petri_dish_ctrl = pyOnePop_PetriDishCtrl(self,"m_one_pop_petri_dish_ctrl")
+        self.m_one_pop_petri_dish_ctrl.setSizePolicy(QSizePolicy(3,7,0,0,self.m_one_pop_petri_dish_ctrl.sizePolicy().hasHeightForWidth()))
+        layout16.addWidget(self.m_one_pop_petri_dish_ctrl)
 
-    self.m_one_pop_timeline_ctrl = pyOnePop_TimelineCtrl(self,"m_one_pop_timeline_ctrl")
-    self.m_one_pop_timeline_ctrl.setSizePolicy(QSizePolicy(1,0,0,0,self.m_one_pop_timeline_ctrl.sizePolicy().hasHeightForWidth()))
-    layout16.addWidget(self.m_one_pop_timeline_ctrl)
-    pyOnePopulationViewLayout.addLayout(layout16)
+        self.m_one_pop_timeline_ctrl = pyOnePop_TimelineCtrl(self,"m_one_pop_timeline_ctrl")
+        self.m_one_pop_timeline_ctrl.setSizePolicy(QSizePolicy(1,0,0,0,self.m_one_pop_timeline_ctrl.sizePolicy().hasHeightForWidth()))
+        layout16.addWidget(self.m_one_pop_timeline_ctrl)
+        pyOnePopulationViewLayout.addLayout(layout16)
 
-    layout44 = QVBoxLayout(None,0,6,"layout44")
+        layout44 = QVBoxLayout(None,0,6,"layout44")
 
-    self.m_one_pop_graph_ctrl = pyOnePop_GraphCtrl(self,"m_one_pop_graph_ctrl")
-    self.m_one_pop_graph_ctrl.setSizePolicy(QSizePolicy(3,3,0,0,self.m_one_pop_graph_ctrl.sizePolicy().hasHeightForWidth()))
-    layout44.addWidget(self.m_one_pop_graph_ctrl)
+        self.m_one_pop_graph_ctrl = pyOnePop_GraphCtrl(self,"m_one_pop_graph_ctrl")
+        self.m_one_pop_graph_ctrl.setSizePolicy(QSizePolicy(3,3,0,0,self.m_one_pop_graph_ctrl.sizePolicy().hasHeightForWidth()))
+        layout44.addWidget(self.m_one_pop_graph_ctrl)
 
-    self.m_one_pop_stats_ctrl = pyOnePop_StatsCtrl(self,"m_one_pop_stats_ctrl")
-    self.m_one_pop_stats_ctrl.setSizePolicy(QSizePolicy(5,5,0,0,self.m_one_pop_stats_ctrl.sizePolicy().hasHeightForWidth()))
-    layout44.addWidget(self.m_one_pop_stats_ctrl)
-    pyOnePopulationViewLayout.addLayout(layout44)
+        self.m_one_pop_stats_ctrl = pyOnePop_StatsCtrl(self,"m_one_pop_stats_ctrl")
+        self.m_one_pop_stats_ctrl.setSizePolicy(QSizePolicy(5,5,0,0,self.m_one_pop_stats_ctrl.sizePolicy().hasHeightForWidth()))
+        layout44.addWidget(self.m_one_pop_stats_ctrl)
+        pyOnePopulationViewLayout.addLayout(layout44)
 
-    self.languageChange()
+        self.languageChange()
 
-    self.resize(QSize(690,607).expandedTo(self.minimumSizeHint()))
-    self.clearWState(Qt.WState_Polished)
+        self.resize(QSize(690,607).expandedTo(self.minimumSizeHint()))
+        self.clearWState(Qt.WState_Polished)
 
 
-  def languageChange(self):
-    self.setCaption(self.__tr("pyOnePopulationView"))
+    def languageChange(self):
+        self.setCaption(self.__tr("pyOnePopulationView"))
 
 
-  def __tr(self,s,c = None):
-    return qApp.translate("pyOnePopulationView",s,c)
+    def __tr(self,s,c = None):
+        return qApp.translate("pyOnePopulationView",s,c)

Copied: trunk/source/python/AvidaGui2/pyOrganismScopeCtrl.py (from rev 95, branches/developers/kaben/source/python/AvidaGui2/pyOrganismScopeCtrl.py)

Copied: trunk/source/python/AvidaGui2/pyOrganismScopeView.py (from rev 95, branches/developers/kaben/source/python/AvidaGui2/pyOrganismScopeView.py)

Modified: trunk/source/python/AvidaGui2/pyPetriDishCtrl.py
===================================================================
--- trunk/source/python/AvidaGui2/pyPetriDishCtrl.py	2005-03-31 03:44:15 UTC (rev 95)
+++ trunk/source/python/AvidaGui2/pyPetriDishCtrl.py	2005-03-31 09:26:09 UTC (rev 96)
@@ -1,6 +1,36 @@
 
 # -*- coding: utf-8 -*-
 
+# Notes:
+# - w*h population cell_info_items;
+#   - cell_info_item[0] refers to population cell(0).
+#   - x ord of item[n]: 
+#   - stores normalized_index
+#
+
+# Coordinates for grid cells in toroidal geometry:
+# x: n % w
+# y: n / w
+# xm: (x + w/2) % w
+# ym: (y + h/2) % h
+#
+# xm: (n%w + w/2) % w
+# ym: (n/w + h/2) % h
+
+# Coordinates for grid cells in bounded geometry:
+# x: n % w
+# y: n / w
+#
+# xm, ym not needed. replace w/ x & y.
+
+print """
+XXX fixme: in pyPetriDishCtrl.py,
+pyPetriDishCtrl.setAvidaSlot(),
+most of the code in this function should only be performed when
+self.m_avida is not None.
+ at kgn
+"""
+
 from AvidaCore import cConfig
 
 from math import exp
@@ -8,6 +38,30 @@
 from qtcanvas import *
 #from pyPetriDishView import pyPetriDishView
 
+class pyPopulationCellItem:
+  def __init__(self, population_cell, x, y, w, h, canvas):
+    self.m_population_cell = population_cell
+    self.m_canvas_rectangle = QCanvasRectangle(x, y, w, h, canvas)
+    self.m_canvas_rectangle.show()
+    self.m_index = 0
+
+  def checkNormalizedIndexUsingFunctor(self, functor, min, range):
+    index = 1.0
+    if 0.0 < range: index = (functor(self.m_population_cell) - min) / range
+    if 1.0 < index: index = 1.0
+    elif index < 0.0: index = 0.0
+
+    if self.m_index == index:
+      return False
+    else:
+      self.m_index = index
+      return True
+
+  def updateColorUsingFunctor(self, functor):
+    color = functor(self.m_index)
+    self.m_canvas_rectangle.setBrush(QBrush(color))
+    self.m_canvas_rectangle.setPen(QPen(color))
+
 #class pyPetriDishCtrl(pyPetriDishView):
 class pyPetriDishCtrl(QWidget):
 
@@ -28,8 +82,9 @@
     self.m_avida = avida
     if(old_avida):
       self.disconnect(
-        self.m_avida.m_avida_thread_mdtr, PYSIGNAL("AvidaUpdatedSig"),
+        old_avida.m_avida_thread_mdtr, PYSIGNAL("AvidaUpdatedSig"),
         self.avidaUpdatedSlot)
+      old_avida.removeGuiWorkFunctor(self)
       del old_avida
     if(self.m_avida):
       self.connect(
@@ -46,19 +101,25 @@
     self.m_canvas_view.setCanvas(self.m_canvas)
 
     if self.m_cell_info: del self.m_cell_info
-    self.m_cell_info = [[QCanvasRectangle(
-      x * self.m_map_cell_w,
-      y * self.m_map_cell_h,
+    self.m_cell_info = [pyPopulationCellItem(
+      self.m_avida.m_population.GetCell(n),
+      (n%world_w) * self.m_map_cell_w,
+      (n/world_w) * self.m_map_cell_h,
       self.m_map_cell_w,
       self.m_map_cell_h,
-      self.m_canvas) for y in range(world_h)] for x in range(world_w)]
+      self.m_canvas) for  n in range(world_w * world_h)]
 
-    for x in range(world_w):
-      for y in range(world_h):
-        self.m_cell_info[x][y].setBrush(QBrush(QColor(x*255/world_w, y*255/world_h, x*y*255/(world_w*world_h))))
-        self.m_cell_info[x][y].setPen(QPen(QColor(x*255/world_w, y*255/world_h, x*y*255/(world_w*world_h))))
-        self.m_cell_info[x][y].show()
+    self.m_thread_work_cell_item_index = 0
 
+    self.m_cs_min_value = 0
+    self.m_cs_value_range = 0
+
+    self.m_changed_cell_items = self.m_cell_info[:]
+    while self.doSomeWork(self.m_avida): pass
+    self.avidaUpdatedSlot()
+
+    self.m_avida.addGuiWorkFunctor(self)
+
   def mousePressEvent(self,e):
     if e.button() != Qt.LeftButton:
       return
@@ -122,7 +183,7 @@
     self.m_petri_dish_layout.setResizeMode(QLayout.Minimum)
     self.m_canvas_view = QCanvasView(None, self,"m_canvas_view")
     self.m_petri_dish_layout.addWidget(self.m_canvas_view)
-    
+
   def calcColorScale(self):
     self.m_cs_min_value = 0
     self.m_cs_value_range = self.m_avida.m_population.GetStats().GetMaxFitness()
@@ -152,19 +213,43 @@
       state = self.doubleToColor(dbl)
     return state
 
+  def doSomeWork(self, avida):
+    def temp_normalized_index_functor(population_cell):
+      dbl = 0.0
+      if population_cell.IsOccupied():
+        dbl = population_cell.GetOrganism().GetPhenotype().GetFitness()
+      return dbl
+
+    for x in range(3600):
+      if len(self.m_cell_info) <= self.m_thread_work_cell_item_index:
+        self.m_thread_work_cell_item_index = 0
+        return False
+      else:
+        cell_info_item = self.m_cell_info[self.m_thread_work_cell_item_index]
+        if cell_info_item.checkNormalizedIndexUsingFunctor(
+          temp_normalized_index_functor,
+          self.m_cs_min_value,
+          self.m_cs_value_range
+        ):
+          self.m_changed_cell_items.append(cell_info_item)
+        self.m_thread_work_cell_item_index += 1
+    return True
+
+
   def avidaUpdatedSlot(self):
-#    print "pyPetriDishCtrl.avidaUpdatedSlot() : called."
+    def temp_color_functor(index):
+      def sigmoid(w, midpoint, steepness):
+        val = steepness*(w-midpoint)
+        return exp(val)/(1+exp(val))     
+      h = (index*360.0 + 100.0) % 360.0
+      v = sigmoid(index, 0.3, 10.0) * 255.0
+      s = sigmoid(1.0 - index, 0.1, 30.0) * 255.0
+      return QColor(h, s, v, QColor.Hsv)
+      
     self.calcColorScale()
-    world_w = cConfig.GetWorldX()
-    world_h = cConfig.GetWorldY()
-    for x in range(world_w):
-      for y in range(world_h):
-        cell = self.m_avida.m_population.GetCell(x + world_w*y)
-        color = self.calcCellState(cell)
-        xm = (x + world_w/2) % world_w
-        ym = (y + world_h/2) % world_h
-        self.m_cell_info[xm][ym].setBrush(QBrush(color))
-        self.m_cell_info[xm][ym].setPen(QPen(color))
+    for cell_info_item in self.m_changed_cell_items:
+      cell_info_item.updateColorUsingFunctor(temp_color_functor)
+    self.m_changed_cell_items = []
     self.m_canvas.update()
     
   def extractPopulationSlot(self):

Modified: trunk/source/python/AvidaGui2/pyPetriDishView.py
===================================================================
--- trunk/source/python/AvidaGui2/pyPetriDishView.py	2005-03-31 03:44:15 UTC (rev 95)
+++ trunk/source/python/AvidaGui2/pyPetriDishView.py	2005-03-31 09:26:09 UTC (rev 96)
@@ -1,50 +1,47 @@
 # -*- coding: utf-8 -*-
 
-# Form implementation generated from reading ui file '/Users/kaben/Projects/Software/Avida/svn/avida2/trunk/source/bindings/Boost.Python/AvidaGui2/pyPetriDishView.ui'
+# Form implementation generated from reading ui file 'pyPetriDishView.ui'
 #
-# Created: Mon Feb 28 00:31:04 2005
+# Created: Thu Mar 31 04:19:24 2005
 #      by: The PyQt User Interface Compiler (pyuic) 3.13
 #
 # WARNING! All changes made in this file will be lost!
-#
-# Actually there is no UI file, so I suspect that Kaben modified this .py file
-# and it can no longer be generated from a .ui file
 
 
 from qt import *
 
 
 class pyPetriDishView(QWidget):
-  def __init__(self,parent = None,name = None,fl = 0):
-    QWidget.__init__(self,parent,name,fl)
+    def __init__(self,parent = None,name = None,fl = 0):
+        QWidget.__init__(self,parent,name,fl)
 
-    if not name:
-      self.setName("pyPetriDishView")
+        if not name:
+            self.setName("pyPetriDishView")
 
 
-    pyPetriDishViewLayout = QVBoxLayout(self,0,0,"pyPetriDishViewLayout")
-    pyPetriDishViewLayout.setResizeMode(QLayout.Minimum)
+        pyPetriDishViewLayout = QVBoxLayout(self,0,0,"pyPetriDishViewLayout")
+        pyPetriDishViewLayout.setResizeMode(QLayout.Minimum)
 
-    self.textLabel4 = QLabel(self,"textLabel4")
-    self.textLabel4.setMinimumSize(QSize(200,200))
-    self.textLabel4.setBackgroundMode(QLabel.PaletteShadow)
-    textLabel4_font = QFont(self.textLabel4.font())
-    textLabel4_font.setPointSize(24)
-    self.textLabel4.setFont(textLabel4_font)
-    self.textLabel4.setScaledContents(0)
-    self.textLabel4.setAlignment(QLabel.AlignCenter)
-    pyPetriDishViewLayout.addWidget(self.textLabel4)
+        self.textLabel4 = QLabel(self,"textLabel4")
+        self.textLabel4.setMinimumSize(QSize(200,200))
+        self.textLabel4.setBackgroundMode(QLabel.PaletteShadow)
+        textLabel4_font = QFont(self.textLabel4.font())
+        textLabel4_font.setPointSize(24)
+        self.textLabel4.setFont(textLabel4_font)
+        self.textLabel4.setScaledContents(0)
+        self.textLabel4.setAlignment(QLabel.AlignCenter)
+        pyPetriDishViewLayout.addWidget(self.textLabel4)
 
-    self.languageChange()
+        self.languageChange()
 
-    self.resize(QSize(202,202).expandedTo(self.minimumSizeHint()))
-    self.clearWState(Qt.WState_Polished)
+        self.resize(QSize(202,202).expandedTo(self.minimumSizeHint()))
+        self.clearWState(Qt.WState_Polished)
 
 
-  def languageChange(self):
-    self.setCaption(self.__tr("pyPetriDishView"))
-    self.textLabel4.setText(self.__tr("mock petri dish"))
+    def languageChange(self):
+        self.setCaption(self.__tr("pyPetriDishView"))
+        self.textLabel4.setText(self.__tr("mock petri dish"))
 
 
-  def __tr(self,s,c = None):
-    return qApp.translate("pyPetriDishView",s,c)
+    def __tr(self,s,c = None):
+        return qApp.translate("pyPetriDishView",s,c)

Modified: trunk/source/python/AvidaGui2/pySessionDumbCtrl.py
===================================================================
--- trunk/source/python/AvidaGui2/pySessionDumbCtrl.py	2005-03-31 03:44:15 UTC (rev 95)
+++ trunk/source/python/AvidaGui2/pySessionDumbCtrl.py	2005-03-31 09:26:09 UTC (rev 96)
@@ -52,19 +52,18 @@
         PYSIGNAL("fromLiveCtrlUpdateAvidaSig"),
         self.m_avida.m_avida_thread_mdtr, PYSIGNAL("doUpdateAvidaSig"))
     
-#  def setupCustomMenus(self, edu_session_menu_bar_hdlr):
-#    self.m_debugging_menu = QPopupMenu()
-#    self.m_zoom_window_wmi_id = self.m_debugging_menu.insertItem(
-#      "Load Petri Dish Config File",
-#      self, PYSIGNAL("doLoadPetriDishConfigFileSig"))
-#    self.m_menu_bar.insertItem("Debugging", self.m_debugging_menu)
-#
-#    self.connect(
-#      self, PYSIGNAL("doLoadPetriDishConfigFileSig"),
-#      self.doLoadPetriDishConfigFileSlot)
-#
+  def setupCustomMenus(self, edu_session_menu_bar_hdlr):
+    self.m_debugging_menu = QPopupMenu()
+    self.m_load_organism_wmi_id = self.m_debugging_menu.insertItem(
+      "Load Organism",
+      self, PYSIGNAL("doDebugLoadOrganismSig"))
+    self.m_menu_bar.insertItem("Debugging", self.m_debugging_menu)
+
+    self.connect(
+      self, PYSIGNAL("doDebugLoadOrganismSig"),
+      self.doDebugLoadOrganismSlot)
+
   def doLoadPetriDishConfigFileSlot(self, genesisFileName = None):
-    print "pySessionDumbCtrl.doLoadPetriDishConfigFileSlot()."
 #    s = QFileDialog.getOpenFileName(
 #      ".",
 #      "(*.avida)",
@@ -88,11 +87,32 @@
       self.setAvidaSlot)
     self.m_session_mdl.m_session_mdtr.emit(
       PYSIGNAL("setAvidaSig"),
-    (self.m_avida,))
+      (self.m_avida,))
     self.connect(
       self.m_session_mdl.m_session_mdtr, PYSIGNAL("setAvidaSig"),
       self.setAvidaSlot)
       
+  def doDebugLoadOrganismSlot(self):
+    if self.m_avida:
+      organism_file_name = QFileDialog.getOpenFileName(
+        ".",
+        "(*)",
+        None,
+        "open file dialog",
+        "Choose an organism file")
+      self.m_session_mdl.m_session_mdtr.emit(
+        PYSIGNAL("setDebugOrganismFileSig"),
+        (organism_file_name,))
+    else:
+      QMessageBox.information(
+        None,
+        "Can't load organism file yet",
+        """
+This version of AvidaEd requires that a genesis file
+be opened before an organism file.
+"""
+      )
+
   def construct(self, session_mdl):
     self.m_session_mdl = session_mdl
     self.sessionInitialized = False
@@ -165,7 +185,7 @@
   def doStart(self):
     if self.sessionInitialized == False:
       self.m_session_mdl.m_session_mdtr.emit(
-      PYSIGNAL("doInitializeAvidaPhaseISig"), 
+        PYSIGNAL("doInitializeAvidaPhaseISig"),
         (self.m_session_mdl.m_tempdir,))
       self.sessionInitialized = True
     self.m_should_update = True

Modified: trunk/source/python/AvidaGui2/pySessionDumbViewBase.py
===================================================================
--- trunk/source/python/AvidaGui2/pySessionDumbViewBase.py	2005-03-31 03:44:15 UTC (rev 95)
+++ trunk/source/python/AvidaGui2/pySessionDumbViewBase.py	2005-03-31 09:26:09 UTC (rev 96)
@@ -1,9 +1,9 @@
 # -*- coding: utf-8 -*-
 
-# Form implementation generated from reading ui file '/Users/kaben/Projects/Software/Avida/branch.kaben/avida--current--2.0--base-0/source/bindings/Boost.Python/AvidaGui2/pySessionDumbViewBase.ui'
+# Form implementation generated from reading ui file 'pySessionDumbViewBase.ui'
 #
-# Created: Fri Dec 3 10:26:52 2004
-#      by: The PyQt User Interface Compiler (pyuic) 3.12
+# Created: Thu Mar 31 04:19:24 2005
+#      by: The PyQt User Interface Compiler (pyuic) 3.13
 #
 # WARNING! All changes made in this file will be lost!
 
@@ -12,38 +12,38 @@
 
 
 class pySessionDumbViewBase(QWidget):
-  def __init__(self,parent = None,name = None,fl = 0):
-    QWidget.__init__(self,parent,name,fl)
+    def __init__(self,parent = None,name = None,fl = 0):
+        QWidget.__init__(self,parent,name,fl)
 
-    if not name:
-      self.setName("pySessionDumbViewBase")
+        if not name:
+            self.setName("pySessionDumbViewBase")
 
 
-    pySessionDumbViewBaseLayout = QVBoxLayout(self,11,6,"pySessionDumbViewBaseLayout")
+        pySessionDumbViewBaseLayout = QVBoxLayout(self,11,6,"pySessionDumbViewBaseLayout")
 
-    layout1 = QVBoxLayout(None,0,6,"layout1")
+        layout1 = QVBoxLayout(None,0,6,"layout1")
 
-    self.m_startpause_avida_pb = QPushButton(self,"m_startpause_avida_pb")
-    layout1.addWidget(self.m_startpause_avida_pb)
+        self.m_startpause_avida_pb = QPushButton(self,"m_startpause_avida_pb")
+        layout1.addWidget(self.m_startpause_avida_pb)
 
-    self.m_update_avida_pb = QPushButton(self,"m_update_avida_pb")
-    layout1.addWidget(self.m_update_avida_pb)
+        self.m_update_avida_pb = QPushButton(self,"m_update_avida_pb")
+        layout1.addWidget(self.m_update_avida_pb)
 
-    self.m_log_te = QTextEdit(self,"m_log_te")
-    layout1.addWidget(self.m_log_te)
-    pySessionDumbViewBaseLayout.addLayout(layout1)
+        self.m_log_te = QTextEdit(self,"m_log_te")
+        layout1.addWidget(self.m_log_te)
+        pySessionDumbViewBaseLayout.addLayout(layout1)
 
-    self.languageChange()
+        self.languageChange()
 
-    self.resize(QSize(589,471).expandedTo(self.minimumSizeHint()))
-    self.clearWState(Qt.WState_Polished)
+        self.resize(QSize(589,471).expandedTo(self.minimumSizeHint()))
+        self.clearWState(Qt.WState_Polished)
 
 
-  def languageChange(self):
-    self.setCaption(self.__tr("Form2"))
-    self.m_startpause_avida_pb.setText(self.__tr("pushButton1"))
-    self.m_update_avida_pb.setText(self.__tr("Next Update..."))
+    def languageChange(self):
+        self.setCaption(self.__tr("Form2"))
+        self.m_startpause_avida_pb.setText(self.__tr("pushButton1"))
+        self.m_update_avida_pb.setText(self.__tr("Next Update..."))
 
 
-  def __tr(self,s,c = None):
-    return qApp.translate("pySessionDumbViewBase",s,c)
+    def __tr(self,s,c = None):
+        return qApp.translate("pySessionDumbViewBase",s,c)

Modified: trunk/source/python/AvidaGui2/pyTemporaryReloads.py
===================================================================
--- trunk/source/python/AvidaGui2/pyTemporaryReloads.py	2005-03-31 03:44:15 UTC (rev 95)
+++ trunk/source/python/AvidaGui2/pyTemporaryReloads.py	2005-03-31 09:26:09 UTC (rev 96)
@@ -45,6 +45,7 @@
 nontest_module_names = [
   "AvidaGui2.pyAnalyzeControlsView",
   "AvidaGui2.pyAnalyzeControlsCtrl",
+  "AvidaGui2.pyAvidaStatsInterface",
   "AvidaGui2.pyFreezeDialogView",
   "AvidaGui2.pyFreezeDialogCtrl",
   "AvidaGui2.pyFreezerView",
@@ -58,6 +59,8 @@
   "AvidaGui2.pyLiveControlsCtrl",
   "AvidaGui2.pyNavBarView",
   "AvidaGui2.pyNavBarCtrl",
+  "AvidaGui2.pyOrganismScopeView",
+  "AvidaGui2.pyOrganismScopeCtrl",
   "AvidaGui2.pyPetriConfigureView",
   "AvidaGui2.pyPetriConfigureCtrl",
   "AvidaGui2.pyPetriDishView",
@@ -65,8 +68,6 @@
   "AvidaGui2.pyReadFreezer",
   "AvidaGui2.pyTimelineView",
   "AvidaGui2.pyTimelineCtrl",
-  "AvidaGui2.pyVivisectionView",
-  "AvidaGui2.pyVivisectionCtrl",
   "AvidaGui2.pyWriteGenesis",
   "AvidaGui2.pyWriteToFreezer",
   
@@ -79,6 +80,9 @@
   "AvidaGui2.pyOneAna_TimelineView",
   "AvidaGui2.pyOneAna_TimelineCtrl",
 
+  "AvidaGui2.pyOneOrg_ScopeView",
+  "AvidaGui2.pyOneOrg_ScopeCtrl",
+
   "AvidaGui2.pyOnePop_GraphView",
   "AvidaGui2.pyOnePop_GraphCtrl",
   "AvidaGui2.pyOnePop_PetriDishView",
@@ -88,8 +92,6 @@
   "AvidaGui2.pyOnePop_TimelineView",
   "AvidaGui2.pyOnePop_TimelineCtrl",
 
-  "AvidaGui2.pyTwoOrg_VivisectionView",
-  "AvidaGui2.pyTwoOrg_VivisectionCtrl",
 
   "AvidaGui2.pyTwoPop_GraphView",
   "AvidaGui2.pyTwoPop_GraphCtrl",

Modified: trunk/source/python/AvidaGui2/pyTest.py
===================================================================
--- trunk/source/python/AvidaGui2/pyTest.py	2005-03-31 03:44:15 UTC (rev 95)
+++ trunk/source/python/AvidaGui2/pyTest.py	2005-03-31 09:26:09 UTC (rev 96)
@@ -1,8 +1,8 @@
 # -*- coding: utf-8 -*-
 
-# Form implementation generated from reading ui file '/Users/kaben/Projects/Software/Avida/svn/avida2/trunk/source/bindings/Boost.Python/AvidaGui2/pyTest.ui'
+# Form implementation generated from reading ui file 'pyTest.ui'
 #
-# Created: Thu Feb 17 15:14:31 2005
+# Created: Thu Mar 31 04:19:24 2005
 #      by: The PyQt User Interface Compiler (pyuic) 3.13
 #
 # WARNING! All changes made in this file will be lost!
@@ -12,26 +12,26 @@
 
 
 class pyTest(QDialog):
-  def __init__(self,parent = None,name = None,modal = 0,fl = 0):
-    QDialog.__init__(self,parent,name,modal,fl)
+    def __init__(self,parent = None,name = None,modal = 0,fl = 0):
+        QDialog.__init__(self,parent,name,modal,fl)
 
-    if not name:
-      self.setName("pyTest")
+        if not name:
+            self.setName("pyTest")
 
 
 
-    self.pySessionDumbView1 = pySessionDumbView(self,"pySessionDumbView1")
-    self.pySessionDumbView1.setGeometry(QRect(60,50,431,351))
+        self.pySessionDumbView1 = pySessionDumbView(self,"pySessionDumbView1")
+        self.pySessionDumbView1.setGeometry(QRect(60,50,431,351))
 
-    self.languageChange()
+        self.languageChange()
 
-    self.resize(QSize(600,480).expandedTo(self.minimumSizeHint()))
-    self.clearWState(Qt.WState_Polished)
+        self.resize(QSize(600,480).expandedTo(self.minimumSizeHint()))
+        self.clearWState(Qt.WState_Polished)
 
 
-  def languageChange(self):
-    self.setCaption(self.__tr("Form1"))
+    def languageChange(self):
+        self.setCaption(self.__tr("Form1"))
 
 
-  def __tr(self,s,c = None):
-    return qApp.translate("pyTest",s,c)
+    def __tr(self,s,c = None):
+        return qApp.translate("pyTest",s,c)

Modified: trunk/source/python/AvidaGui2/pyTimelineView.py
===================================================================
--- trunk/source/python/AvidaGui2/pyTimelineView.py	2005-03-31 03:44:15 UTC (rev 95)
+++ trunk/source/python/AvidaGui2/pyTimelineView.py	2005-03-31 09:26:09 UTC (rev 96)
@@ -1,9 +1,9 @@
 # -*- coding: utf-8 -*-
 
-# Form implementation generated from reading ui file '/Users/kaben/Projects/Software/Avida/branch.kaben/avida--current--2.0--base-0/source/bindings/Boost.Python/AvidaGui2/pyTimelineView.ui'
+# Form implementation generated from reading ui file 'pyTimelineView.ui'
 #
-# Created: Fri Dec 3 10:26:52 2004
-#      by: The PyQt User Interface Compiler (pyuic) 3.12
+# Created: Thu Mar 31 04:19:24 2005
+#      by: The PyQt User Interface Compiler (pyuic) 3.13
 #
 # WARNING! All changes made in this file will be lost!
 
@@ -12,38 +12,38 @@
 
 
 class pyTimelineView(QWidget):
-  def __init__(self,parent = None,name = None,fl = 0):
-    QWidget.__init__(self,parent,name,fl)
+    def __init__(self,parent = None,name = None,fl = 0):
+        QWidget.__init__(self,parent,name,fl)
 
-    if not name:
-      self.setName("pyTimelineView")
+        if not name:
+            self.setName("pyTimelineView")
 
-    self.setMaximumSize(QSize(32767,100))
+        self.setMaximumSize(QSize(32767,100))
 
-    pyTimelineViewLayout = QHBoxLayout(self,0,0,"pyTimelineViewLayout")
-    pyTimelineViewLayout.setResizeMode(QLayout.Minimum)
+        pyTimelineViewLayout = QHBoxLayout(self,0,0,"pyTimelineViewLayout")
+        pyTimelineViewLayout.setResizeMode(QLayout.Minimum)
 
-    self.textLabel4 = QLabel(self,"textLabel4")
-    self.textLabel4.setSizePolicy(QSizePolicy(5,0,0,0,self.textLabel4.sizePolicy().hasHeightForWidth()))
-    self.textLabel4.setMinimumSize(QSize(0,50))
-    self.textLabel4.setBackgroundMode(QLabel.PaletteShadow)
-    textLabel4_font = QFont(self.textLabel4.font())
-    textLabel4_font.setPointSize(24)
-    self.textLabel4.setFont(textLabel4_font)
-    self.textLabel4.setScaledContents(0)
-    self.textLabel4.setAlignment(QLabel.AlignCenter)
-    pyTimelineViewLayout.addWidget(self.textLabel4)
+        self.textLabel4 = QLabel(self,"textLabel4")
+        self.textLabel4.setSizePolicy(QSizePolicy(5,0,0,0,self.textLabel4.sizePolicy().hasHeightForWidth()))
+        self.textLabel4.setMinimumSize(QSize(0,50))
+        self.textLabel4.setBackgroundMode(QLabel.PaletteShadow)
+        textLabel4_font = QFont(self.textLabel4.font())
+        textLabel4_font.setPointSize(24)
+        self.textLabel4.setFont(textLabel4_font)
+        self.textLabel4.setScaledContents(0)
+        self.textLabel4.setAlignment(QLabel.AlignCenter)
+        pyTimelineViewLayout.addWidget(self.textLabel4)
 
-    self.languageChange()
+        self.languageChange()
 
-    self.resize(QSize(214,51).expandedTo(self.minimumSizeHint()))
-    self.clearWState(Qt.WState_Polished)
+        self.resize(QSize(214,51).expandedTo(self.minimumSizeHint()))
+        self.clearWState(Qt.WState_Polished)
 
 
-  def languageChange(self):
-    self.setCaption(self.__tr("pyTimelineView"))
-    self.textLabel4.setText(self.__tr("mock timeline"))
+    def languageChange(self):
+        self.setCaption(self.__tr("pyTimelineView"))
+        self.textLabel4.setText(self.__tr("mock timeline"))
 
 
-  def __tr(self,s,c = None):
-    return qApp.translate("pyTimelineView",s,c)
+    def __tr(self,s,c = None):
+        return qApp.translate("pyTimelineView",s,c)

Modified: trunk/source/python/AvidaGui2/pyTwoAnalyzeView.py
===================================================================
--- trunk/source/python/AvidaGui2/pyTwoAnalyzeView.py	2005-03-31 03:44:15 UTC (rev 95)
+++ trunk/source/python/AvidaGui2/pyTwoAnalyzeView.py	2005-03-31 09:26:09 UTC (rev 96)
@@ -1,9 +1,9 @@
 # -*- coding: utf-8 -*-
 
-# Form implementation generated from reading ui file '/Users/kaben/Projects/Software/Avida/branch.kaben/avida--current--2.0--base-0/source/bindings/Boost.Python/AvidaGui2/pyTwoAnalyzeView.ui'
+# Form implementation generated from reading ui file 'pyTwoAnalyzeView.ui'
 #
-# Created: Fri Dec 3 10:26:52 2004
-#      by: The PyQt User Interface Compiler (pyuic) 3.12
+# Created: Thu Mar 31 04:19:24 2005
+#      by: The PyQt User Interface Compiler (pyuic) 3.13
 #
 # WARNING! All changes made in this file will be lost!
 
@@ -16,61 +16,61 @@
 
 
 class pyTwoAnalyzeView(QWidget):
-  def __init__(self,parent = None,name = None,fl = 0):
-    QWidget.__init__(self,parent,name,fl)
+    def __init__(self,parent = None,name = None,fl = 0):
+        QWidget.__init__(self,parent,name,fl)
 
-    if not name:
-      self.setName("pyTwoAnalyzeView")
+        if not name:
+            self.setName("pyTwoAnalyzeView")
 
 
-    pyTwoAnalyzeViewLayout = QVBoxLayout(self,0,6,"pyTwoAnalyzeViewLayout")
+        pyTwoAnalyzeViewLayout = QVBoxLayout(self,0,6,"pyTwoAnalyzeViewLayout")
 
-    self.splitter6 = QSplitter(self,"splitter6")
-    self.splitter6.setOrientation(QSplitter.Vertical)
+        self.splitter6 = QSplitter(self,"splitter6")
+        self.splitter6.setOrientation(QSplitter.Vertical)
 
-    self.splitter5 = QSplitter(self.splitter6,"splitter5")
-    self.splitter5.setOrientation(QSplitter.Horizontal)
+        self.splitter5 = QSplitter(self.splitter6,"splitter5")
+        self.splitter5.setOrientation(QSplitter.Horizontal)
 
-    LayoutWidget = QWidget(self.splitter5,"layout73")
-    layout73 = QHBoxLayout(LayoutWidget,11,6,"layout73")
+        LayoutWidget = QWidget(self.splitter5,"layout73")
+        layout73 = QHBoxLayout(LayoutWidget,11,6,"layout73")
 
-    self.pyOneAna_StatsCtrl1 = pyOneAna_StatsCtrl(LayoutWidget,"pyOneAna_StatsCtrl1")
-    layout73.addWidget(self.pyOneAna_StatsCtrl1)
+        self.pyOneAna_StatsCtrl1 = pyOneAna_StatsCtrl(LayoutWidget,"pyOneAna_StatsCtrl1")
+        layout73.addWidget(self.pyOneAna_StatsCtrl1)
 
-    self.pyOneAna_PetriDishCtrl1_2 = pyOneAna_PetriDishCtrl(LayoutWidget,"pyOneAna_PetriDishCtrl1_2")
-    self.pyOneAna_PetriDishCtrl1_2.setSizePolicy(QSizePolicy(3,3,0,0,self.pyOneAna_PetriDishCtrl1_2.sizePolicy().hasHeightForWidth()))
-    layout73.addWidget(self.pyOneAna_PetriDishCtrl1_2)
+        self.pyOneAna_PetriDishCtrl1_2 = pyOneAna_PetriDishCtrl(LayoutWidget,"pyOneAna_PetriDishCtrl1_2")
+        self.pyOneAna_PetriDishCtrl1_2.setSizePolicy(QSizePolicy(3,3,0,0,self.pyOneAna_PetriDishCtrl1_2.sizePolicy().hasHeightForWidth()))
+        layout73.addWidget(self.pyOneAna_PetriDishCtrl1_2)
 
-    LayoutWidget_2 = QWidget(self.splitter5,"layout72")
-    layout72 = QHBoxLayout(LayoutWidget_2,11,6,"layout72")
+        LayoutWidget_2 = QWidget(self.splitter5,"layout72")
+        layout72 = QHBoxLayout(LayoutWidget_2,11,6,"layout72")
 
-    self.pyOneAna_StatsCtrl1_2 = pyOneAna_StatsCtrl(LayoutWidget_2,"pyOneAna_StatsCtrl1_2")
-    layout72.addWidget(self.pyOneAna_StatsCtrl1_2)
+        self.pyOneAna_StatsCtrl1_2 = pyOneAna_StatsCtrl(LayoutWidget_2,"pyOneAna_StatsCtrl1_2")
+        layout72.addWidget(self.pyOneAna_StatsCtrl1_2)
 
-    self.pyOneAna_PetriDishCtrl1 = pyOneAna_PetriDishCtrl(LayoutWidget_2,"pyOneAna_PetriDishCtrl1")
-    self.pyOneAna_PetriDishCtrl1.setSizePolicy(QSizePolicy(3,3,0,0,self.pyOneAna_PetriDishCtrl1.sizePolicy().hasHeightForWidth()))
-    layout72.addWidget(self.pyOneAna_PetriDishCtrl1)
+        self.pyOneAna_PetriDishCtrl1 = pyOneAna_PetriDishCtrl(LayoutWidget_2,"pyOneAna_PetriDishCtrl1")
+        self.pyOneAna_PetriDishCtrl1.setSizePolicy(QSizePolicy(3,3,0,0,self.pyOneAna_PetriDishCtrl1.sizePolicy().hasHeightForWidth()))
+        layout72.addWidget(self.pyOneAna_PetriDishCtrl1)
 
-    LayoutWidget_3 = QWidget(self.splitter6,"layout54")
-    layout54 = QVBoxLayout(LayoutWidget_3,11,6,"layout54")
+        LayoutWidget_3 = QWidget(self.splitter6,"layout54")
+        layout54 = QVBoxLayout(LayoutWidget_3,11,6,"layout54")
 
-    self.pyOneAna_GraphCtrl1 = pyOneAna_GraphCtrl(LayoutWidget_3,"pyOneAna_GraphCtrl1")
-    self.pyOneAna_GraphCtrl1.setSizePolicy(QSizePolicy(3,3,0,0,self.pyOneAna_GraphCtrl1.sizePolicy().hasHeightForWidth()))
-    layout54.addWidget(self.pyOneAna_GraphCtrl1)
+        self.pyOneAna_GraphCtrl1 = pyOneAna_GraphCtrl(LayoutWidget_3,"pyOneAna_GraphCtrl1")
+        self.pyOneAna_GraphCtrl1.setSizePolicy(QSizePolicy(3,3,0,0,self.pyOneAna_GraphCtrl1.sizePolicy().hasHeightForWidth()))
+        layout54.addWidget(self.pyOneAna_GraphCtrl1)
 
-    self.pyOneAna_TimelineCtrl1 = pyOneAna_TimelineCtrl(LayoutWidget_3,"pyOneAna_TimelineCtrl1")
-    layout54.addWidget(self.pyOneAna_TimelineCtrl1)
-    pyTwoAnalyzeViewLayout.addWidget(self.splitter6)
+        self.pyOneAna_TimelineCtrl1 = pyOneAna_TimelineCtrl(LayoutWidget_3,"pyOneAna_TimelineCtrl1")
+        layout54.addWidget(self.pyOneAna_TimelineCtrl1)
+        pyTwoAnalyzeViewLayout.addWidget(self.splitter6)
 
-    self.languageChange()
+        self.languageChange()
 
-    self.resize(QSize(600,480).expandedTo(self.minimumSizeHint()))
-    self.clearWState(Qt.WState_Polished)
+        self.resize(QSize(600,480).expandedTo(self.minimumSizeHint()))
+        self.clearWState(Qt.WState_Polished)
 
 
-  def languageChange(self):
-    self.setCaption(self.__tr("pyTwoAnalyzeView"))
+    def languageChange(self):
+        self.setCaption(self.__tr("pyTwoAnalyzeView"))
 
 
-  def __tr(self,s,c = None):
-    return qApp.translate("pyTwoAnalyzeView",s,c)
+    def __tr(self,s,c = None):
+        return qApp.translate("pyTwoAnalyzeView",s,c)

Modified: trunk/source/python/AvidaGui2/pyTwoOrg_VivisectionView.py
===================================================================
--- trunk/source/python/AvidaGui2/pyTwoOrg_VivisectionView.py	2005-03-31 03:44:15 UTC (rev 95)
+++ trunk/source/python/AvidaGui2/pyTwoOrg_VivisectionView.py	2005-03-31 09:26:09 UTC (rev 96)
@@ -1,9 +1,9 @@
 # -*- coding: utf-8 -*-
 
-# Form implementation generated from reading ui file '/Users/kaben/Projects/Software/Avida/branch.kaben/avida--current--2.0--base-0/source/bindings/Boost.Python/AvidaGui2/pyTwoOrg_VivisectionView.ui'
+# Form implementation generated from reading ui file 'pyTwoOrg_VivisectionView.ui'
 #
-# Created: Fri Dec 3 10:26:52 2004
-#      by: The PyQt User Interface Compiler (pyuic) 3.12
+# Created: Thu Mar 31 04:19:25 2005
+#      by: The PyQt User Interface Compiler (pyuic) 3.13
 #
 # WARNING! All changes made in this file will be lost!
 
@@ -14,46 +14,46 @@
 
 
 class pyTwoOrg_VivisectionView(QWidget):
-  def __init__(self,parent = None,name = None,fl = 0):
-    QWidget.__init__(self,parent,name,fl)
+    def __init__(self,parent = None,name = None,fl = 0):
+        QWidget.__init__(self,parent,name,fl)
 
-    if not name:
-      self.setName("pyTwoOrg_VivisectionView")
+        if not name:
+            self.setName("pyTwoOrg_VivisectionView")
 
 
-    pyTwoOrg_VivisectionViewLayout = QVBoxLayout(self,11,6,"pyTwoOrg_VivisectionViewLayout")
+        pyTwoOrg_VivisectionViewLayout = QVBoxLayout(self,11,6,"pyTwoOrg_VivisectionViewLayout")
 
-    self.pyVivisectionCtrl1 = pyVivisectionCtrl(self,"pyVivisectionCtrl1")
-    self.pyVivisectionCtrl1.setSizePolicy(QSizePolicy(5,3,0,5,self.pyVivisectionCtrl1.sizePolicy().hasHeightForWidth()))
-    pyTwoOrg_VivisectionViewLayout.addWidget(self.pyVivisectionCtrl1)
+        self.pyVivisectionCtrl1 = pyVivisectionCtrl(self,"pyVivisectionCtrl1")
+        self.pyVivisectionCtrl1.setSizePolicy(QSizePolicy(5,3,0,5,self.pyVivisectionCtrl1.sizePolicy().hasHeightForWidth()))
+        pyTwoOrg_VivisectionViewLayout.addWidget(self.pyVivisectionCtrl1)
 
-    self.textLabel5 = QLabel(self,"textLabel5")
-    textLabel5_font = QFont(self.textLabel5.font())
-    textLabel5_font.setPointSize(11)
-    self.textLabel5.setFont(textLabel5_font)
-    pyTwoOrg_VivisectionViewLayout.addWidget(self.textLabel5)
+        self.textLabel5 = QLabel(self,"textLabel5")
+        textLabel5_font = QFont(self.textLabel5.font())
+        textLabel5_font.setPointSize(11)
+        self.textLabel5.setFont(textLabel5_font)
+        pyTwoOrg_VivisectionViewLayout.addWidget(self.textLabel5)
 
-    layout63 = QHBoxLayout(None,0,6,"layout63")
-    spacer35_2 = QSpacerItem(91,20,QSizePolicy.Expanding,QSizePolicy.Minimum)
-    layout63.addItem(spacer35_2)
+        layout63 = QHBoxLayout(None,0,6,"layout63")
+        spacer35_2 = QSpacerItem(91,20,QSizePolicy.Expanding,QSizePolicy.Minimum)
+        layout63.addItem(spacer35_2)
 
-    self.pyAnalyzeControlsCtrl1 = pyAnalyzeControlsCtrl(self,"pyAnalyzeControlsCtrl1")
-    self.pyAnalyzeControlsCtrl1.setSizePolicy(QSizePolicy(3,5,0,0,self.pyAnalyzeControlsCtrl1.sizePolicy().hasHeightForWidth()))
-    layout63.addWidget(self.pyAnalyzeControlsCtrl1)
-    spacer35 = QSpacerItem(91,20,QSizePolicy.Expanding,QSizePolicy.Minimum)
-    layout63.addItem(spacer35)
-    pyTwoOrg_VivisectionViewLayout.addLayout(layout63)
+        self.pyAnalyzeControlsCtrl1 = pyAnalyzeControlsCtrl(self,"pyAnalyzeControlsCtrl1")
+        self.pyAnalyzeControlsCtrl1.setSizePolicy(QSizePolicy(3,5,0,0,self.pyAnalyzeControlsCtrl1.sizePolicy().hasHeightForWidth()))
+        layout63.addWidget(self.pyAnalyzeControlsCtrl1)
+        spacer35 = QSpacerItem(91,20,QSizePolicy.Expanding,QSizePolicy.Minimum)
+        layout63.addItem(spacer35)
+        pyTwoOrg_VivisectionViewLayout.addLayout(layout63)
 
-    self.languageChange()
+        self.languageChange()
 
-    self.resize(QSize(600,480).expandedTo(self.minimumSizeHint()))
-    self.clearWState(Qt.WState_Polished)
+        self.resize(QSize(600,480).expandedTo(self.minimumSizeHint()))
+        self.clearWState(Qt.WState_Polished)
 
 
-  def languageChange(self):
-    self.setCaption(self.__tr("pyTwoOrg_VivisectionView"))
-    self.textLabel5.setText(self.__tr("IO: will take a number from the input machine and put it into the C register."))
+    def languageChange(self):
+        self.setCaption(self.__tr("pyTwoOrg_VivisectionView"))
+        self.textLabel5.setText(self.__tr("IO: will take a number from the input machine and put it into the C register."))
 
 
-  def __tr(self,s,c = None):
-    return qApp.translate("pyTwoOrg_VivisectionView",s,c)
+    def __tr(self,s,c = None):
+        return qApp.translate("pyTwoOrg_VivisectionView",s,c)

Modified: trunk/source/python/AvidaGui2/pyTwoOrganismView.py
===================================================================
--- trunk/source/python/AvidaGui2/pyTwoOrganismView.py	2005-03-31 03:44:15 UTC (rev 95)
+++ trunk/source/python/AvidaGui2/pyTwoOrganismView.py	2005-03-31 09:26:09 UTC (rev 96)
@@ -1,363 +1,40 @@
 # -*- coding: utf-8 -*-
 
-# Form implementation generated from reading ui file '/Users/kaben/Projects/Software/Avida/branch.kaben/avida--current--2.0--base-0/source/bindings/Boost.Python/AvidaGui2/pyTwoOrganismView.ui'
+# Form implementation generated from reading ui file 'pyTwoOrganismView.ui'
 #
-# Created: Fri Dec 3 10:26:53 2004
-#      by: The PyQt User Interface Compiler (pyuic) 3.12
+# Created: Thu Mar 31 04:19:25 2005
+#      by: The PyQt User Interface Compiler (pyuic) 3.13
 #
 # WARNING! All changes made in this file will be lost!
 
 
 from qt import *
-from pyTwoOrg_VivisectionCtrl import pyTwoOrg_VivisectionCtrl
-from pyTimelineCtrl import pyTimelineCtrl
 
-image0_data = \
-  "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
-  "\x49\x48\x44\x52\x00\x00\x00\x2a\x00\x00\x00\x41" \
-  "\x08\x06\x00\x00\x00\xa7\xf0\x36\xc2\x00\x00\x0c" \
-  "\x97\x49\x44\x41\x54\x78\x9c\xbd\x9a\x7f\x70\x53" \
-  "\xd7\x95\xc7\x3f\xb2\x25\x21\xe9\xe9\x3d\x83\xc0" \
-  "\x8a\x2d\x27\x74\xfd\x23\xfe\x81\x3d\xb6\xc1\x4e" \
-  "\x84\x14\x19\x26\x64\x43\x9d\xce\x94\x1f\x69\xe9" \
-  "\x3a\x09\x74\x37\x49\xa1\x5d\xb2\xbb\xb3\xed\x76" \
-  "\x86\xd9\x99\x4c\x42\x19\x3a\x3b\xe9\x90\x90\xb2" \
-  "\xdb\x94\x40\x37\x6d\x69\x60\xd9\x9a\x2c\x6e\x76" \
-  "\x43\x4c\xba\x09\xd4\x28\x56\x9c\x10\x6c\x27\x21" \
-  "\x96\xbd\xb6\xd9\x98\xb5\x6c\x04\x96\x8d\x7e\xd9" \
-  "\x91\x64\x6b\xff\x78\x7e\x0f\xdb\x10\xc0\x8e\x9c" \
-  "\x33\xa3\x91\xdf\xd3\x7d\x77\x3e\xbe\xf7\xdc\x73" \
-  "\xcf\xf7\xdc\xa7\x39\x7d\xfa\x34\x73\x31\x97\xcb" \
-  "\x95\x8c\x7e\xd6\x07\xc0\xb9\x8b\x7d\x9a\x39\x75" \
-  "\x32\x0b\xd3\xce\xe5\x21\xa7\xc3\x91\x3c\xf9\xb3" \
-  "\xbd\x08\xaf\x1e\x06\xa0\xe2\xdd\x53\xc9\xf6\xf6" \
-  "\xf6\x79\x85\x4d\x9b\xcb\x43\xcd\xef\xbe\x8b\xf0" \
-  "\xea\x61\xda\xf3\x0a\x68\x8c\x85\x39\xb4\x65\x2b" \
-  "\x76\xbb\x3d\x99\x6a\xb8\xa9\x36\x27\x50\xfb\xa5" \
-  "\x2e\x4a\x2d\x75\x6c\xd2\x44\x01\x18\xf0\xb6\x11" \
-  "\x0c\x06\x71\x3a\x1c\x49\x97\xcb\x35\x2f\xc0\xb3" \
-  "\x02\xad\xaa\xaa\x4a\x56\x55\x55\x25\xdf\xb9\x10" \
-  "\xe2\xc8\xc2\xb3\x74\xf5\xf8\xa8\xd5\x9b\xa9\xd5" \
-  "\x9b\xe9\xbb\xd8\x47\x24\x1a\x25\x1e\x8f\x33\x1f" \
-  "\xb0\xb7\xed\xa3\x25\x25\x25\xc9\xf5\x27\xf6\x01" \
-  "\xf0\x8d\xe8\x08\x8f\x6a\xa2\x90\x6f\x63\x5f\x47" \
-  "\x17\xb5\x7a\x33\x91\x60\x88\xc1\xc1\x01\xb2\xb2" \
-  "\xb2\x49\x4f\x9b\xd3\x44\xdd\x1a\xd4\x6e\xb7\x27" \
-  "\xc7\xc6\xc6\x10\x45\x11\xb7\xdb\x7d\xdd\xa2\x70" \
-  "\xb9\x5c\xc9\xb5\xaf\x3d\x37\xed\x5e\x57\x8f\x0f" \
-  "\x80\x25\x75\x1b\x09\x39\x6a\x10\x81\x70\x24\x42" \
-  "\x30\x18\x44\xab\xd5\xe2\x72\xb9\x92\x37\xea\x6b" \
-  "\xae\x96\xc6\xc4\x44\xf2\xc0\xa6\x2d\x1c\xda\xb2" \
-  "\x95\x89\xf1\x71\xf5\x07\xbb\xdd\x9e\xf4\x0d\x5e" \
-  "\x4c\x86\x22\xc1\xe4\x8b\x3b\xff\x51\xbd\x1f\x3b" \
-  "\x76\x12\x5d\xdb\x05\x0a\xf3\x6d\x14\xe6\xdb\xa8" \
-  "\x5e\xf3\x10\xa1\xd0\x55\x7c\xfe\x7e\x22\xc1\x10" \
-  "\xd1\x68\x84\x44\x22\x91\x2a\x3e\xd5\xb4\xd5\x6f" \
-  "\x36\x50\xa8\x89\xb2\xaf\xa3\x8b\x48\x54\x5e\x1c" \
-  "\x25\x25\x25\xc9\xe3\x7f\x38\x86\x37\x78\x10\x82" \
-  "\x20\x61\xe7\x8d\x75\x3f\x22\xee\x1b\xe0\xdc\x4f" \
-  "\xea\x81\x20\xe4\xdb\xe8\xea\xf1\x11\xf7\x0d\xce" \
-  "\x31\xc8\xcd\x12\x14\xae\x4d\xe3\xa1\x2d\x5b\x89" \
-  "\x57\xe6\x26\xdb\xf7\xfc\x0b\x43\xeb\xfc\x00\x7c" \
-  "\x73\xc5\xf3\x94\x6d\x29\x23\x91\x48\xd0\xe2\x79" \
-  "\x0f\x1d\x50\x98\x6f\x43\x2a\x2e\x80\x1e\x1f\x97" \
-  "\xb5\xf2\x2c\x88\x62\x06\x00\x26\x93\x80\x56\x9b" \
-  "\x7a\x72\x6d\xf2\x99\x9f\x92\xfb\x37\x01\x1e\x38" \
-  "\xf3\x2e\x6f\xef\x7c\x06\xbc\x6d\x00\xe8\xd7\xd9" \
-  "\x78\xa4\x66\x3f\x77\xde\x79\x17\xc1\x60\x90\xb1" \
-  "\xb1\x31\x74\xb6\x2c\xde\xf9\x7b\x09\x5e\xf4\x41" \
-  "\x8f\x8f\xb3\x0f\x3f\x88\x6d\xb2\x23\xd1\x68\xe6" \
-  "\x8e\xec\x2c\x0c\x06\xc3\xbc\x80\xa6\x19\x8d\x46" \
-  "\x2c\x16\x0b\x85\x35\xf7\xf1\xc0\xce\x5d\xea\x0f" \
-  "\x52\x9f\x1d\x8b\x65\x31\x81\x40\x80\x40\x60\x08" \
-  "\xff\x65\x3f\x91\xf7\x3e\xe4\x07\xff\x69\x06\x90" \
-  "\x21\xcb\xca\x65\x48\x31\x03\x41\x12\x31\x99\x04" \
-  "\x4c\x26\x13\x3a\x9d\xee\x86\x8b\xf2\x4b\x81\x02" \
-  "\x24\x12\x09\xa2\xd1\x08\x0b\x8b\xef\xa6\xe6\x89" \
-  "\xef\x03\x70\xe5\xe8\x71\x3a\xce\x9f\xc7\x7f\xd9" \
-  "\xcf\xa5\x81\x41\x06\x2f\x0d\xd0\xdd\xdc\x82\x6e" \
-  "\x78\x15\x00\x45\x8e\x9a\xeb\x3a\x33\x18\x0c\x2c" \
-  "\xd0\xeb\x53\x0e\xa9\x82\x82\xec\x5b\x00\xc2\xca" \
-  "\x2a\xb2\x8b\x2b\xd5\x06\x91\x60\x88\x5d\x97\x3d" \
-  "\xec\x0d\x7f\x4c\x81\xd3\x0e\x40\x7b\x5e\xc1\xb4" \
-  "\x4e\x44\xa3\x19\xb3\x20\xa0\xd7\xeb\x49\x4b\x4f" \
-  "\x4f\x35\xe3\x35\x50\x83\xc1\x80\xc1\x60\xc0\x2c" \
-  "\x08\x08\x92\x48\xe6\xe6\xf5\x32\xd0\x0b\x2f\x71" \
-  "\xf6\x9d\x37\x01\x39\x2c\x2d\xf7\x9c\x22\xbe\xa8" \
-  "\x89\x01\x6f\x1b\x69\xed\x9d\x32\xe4\x94\x69\x9f" \
-  "\x0f\xdf\x54\x41\xdd\x6e\xb7\x46\xa7\xd3\x21\x49" \
-  "\x12\x59\x59\xd9\x58\x33\xad\xd8\xac\x39\x64\x17" \
-  "\x57\x12\xaf\xcc\xa5\xfa\x3f\xfe\xc8\x37\x3e\x1e" \
-  "\x51\x1f\x50\x22\xc4\x44\x45\x11\xa2\x98\xa1\x8e" \
-  "\xa6\x24\x49\xf3\x36\xed\x30\x39\xa2\x0a\xac\x60" \
-  "\x32\x21\x49\x12\x77\x64\x67\x51\xf1\xa3\xed\x14" \
-  "\x39\x6a\x28\xcc\xb7\xf1\x68\xfb\x79\x1a\xff\x4c" \
-  "\x76\x87\xc6\x58\x18\xf7\x72\x9b\xda\x81\x32\x9a" \
-  "\x06\x83\x61\xde\xa6\x5d\x05\x55\x60\x9b\x3d\x1e" \
-  "\x8d\xc1\x60\xc0\x62\x59\xcc\x1d\xd9\x59\x88\x46" \
-  "\x33\xe7\xff\x62\x33\xfb\x3a\xba\x08\x7a\xbb\xd9" \
-  "\xd7\xd1\xa5\x42\x76\x7a\xce\x60\x18\x0e\x03\xb2" \
-  "\xeb\xa4\xa7\xa5\xcd\xdb\x68\x4e\x03\x55\x4c\xa7" \
-  "\xd3\x61\x32\x99\x30\x99\x04\xee\xc8\xce\x62\x61" \
-  "\xf1\xdd\x2c\xa9\xdb\xc8\xbe\x8e\x2e\x00\x5c\xad" \
-  "\xf2\xd4\x37\x74\xb6\xf0\xf6\xce\x67\x18\xf1\xfe" \
-  "\xcf\x7c\xb1\xdd\x1c\xd4\xed\x76\x6b\x16\xe8\xf5" \
-  "\x58\x2c\x16\x4c\x26\x01\xb3\x20\xa0\x6b\xbb\x40" \
-  "\xad\x5e\x8e\x9f\xd9\xc5\x95\x6c\x28\xb2\xab\xed" \
-  "\xdb\xbd\xad\x04\x02\x43\x0c\x8f\x8c\x50\x64\x34" \
-  "\x7f\xb5\xf9\x68\x5a\x7a\x3a\x0a\x2c\x40\x81\xd3" \
-  "\x4e\xa9\xa5\x8e\x5a\xbd\x99\x02\xa7\x5d\x0d\xf4" \
-  "\x20\xc7\xdb\xdf\x7e\x73\x1d\x67\xff\xf5\x10\x9d" \
-  "\x8f\x7f\x0f\x77\x53\xd3\xbc\xe4\xa3\x37\x04\x75" \
-  "\xbb\xdd\x1a\x05\x76\x61\x50\x4e\x54\xe2\x8b\x9a" \
-  "\x00\x38\xf3\xca\xcb\x78\x83\x07\x59\xf3\x20\xb8" \
-  "\x97\xdb\x70\x2f\xb7\xf1\xfe\x4f\x1f\xa7\x23\xea" \
-  "\xe7\xe9\x52\x89\xc6\x6d\xdb\x38\xf9\xb3\xbd\x00" \
-  "\x29\x05\xfe\xc2\x0c\x57\x81\x5d\xbc\xac\x88\xd5" \
-  "\xc3\x17\xe9\xea\xf1\xd1\x18\x93\x17\xcf\x3b\x7f" \
-  "\x94\xdb\x28\x2e\x10\x3b\x76\x92\x86\xce\x16\x36" \
-  "\x8d\x5a\xa9\xd5\x9b\x39\xf3\xca\xcb\x44\x9a\x3f" \
-  "\x48\xc6\xeb\x7f\x85\xb3\xaa\x2a\x25\xb0\x37\x8d" \
-  "\xd0\x69\x13\x13\x44\xfd\x97\x09\x7b\xbb\xd5\x7b" \
-  "\x4b\xea\x36\xb2\xbd\xac\x5c\xce\x96\x72\x60\x87" \
-  "\xa3\x86\x4e\xcf\x19\x8a\x1c\x35\x18\x86\xc3\x44" \
-  "\xfa\xfa\xe1\x95\x97\x59\xee\x39\x05\xb9\xeb\x18" \
-  "\xff\xaf\xc3\x38\x1f\x7e\x3c\xd9\xec\xf1\x7c\xa9" \
-  "\x88\x70\x53\xd0\xc4\xe7\x9f\xa3\x7b\xff\x2d\xf5" \
-  "\xba\xf6\xc0\x01\x7c\xfe\x7e\x00\x42\xa1\xab\xea" \
-  "\x7d\x5b\x59\xb9\x7c\xbd\x28\x83\x90\x36\x6b\x72" \
-  "\x0b\x8e\x32\x7c\xe4\x75\xba\x7a\x7c\xe4\x3a\x1f" \
-  "\xfa\xd2\x19\xff\x6d\x89\x9b\xae\x1e\x1f\xed\x79" \
-  "\x05\x08\x92\xa8\xe6\x9d\x33\x4d\x14\x33\x08\x85" \
-  "\xae\x12\xcf\x7b\x8b\xa1\x75\x7e\xea\x93\x26\x74" \
-  "\xc3\xab\x28\xb5\xd4\xf1\xc9\xe1\xdf\x13\xaf\xff" \
-  "\x15\x4e\x87\x63\xce\x6e\x70\x53\xd0\xe6\x0f\x3f" \
-  "\xd4\x8c\xe4\x55\xd3\x18\x0b\x33\xe0\x6d\xe3\xb5" \
-  "\xba\x47\xd4\x20\x2f\x8a\x19\xd8\xac\x39\xea\x27" \
-  "\x90\x59\x8f\x37\x78\x90\x9e\xb6\xcf\x00\x88\x57" \
-  "\xe6\xca\xdf\x8b\x9a\x58\x93\x2b\x32\x7e\xee\x53" \
-  "\xc6\xfe\xaf\x7f\xce\x0b\xec\x96\x59\x44\x66\x55" \
-  "\x25\x4b\xea\x36\x72\xe5\xe8\x71\x40\x8e\x9b\xb6" \
-  "\xb2\x72\x9e\xfb\xcd\x1e\xb5\xcd\xc1\x5d\xfb\x09" \
-  "\xf5\x6e\x42\x27\x5d\xc5\xf7\xc9\x47\xac\xde\xf0" \
-  "\x1d\x22\x05\x21\x8e\xb4\xbd\x44\x45\x8f\x8f\xea" \
-  "\x73\x9f\x12\xf4\x76\xd3\xf5\xd9\xff\x52\x65\xcd" \
-  "\x9c\x93\x1b\xdc\x12\x74\x62\x7c\x9c\x8a\xe2\xe5" \
-  "\xbc\x8d\x0c\xda\xd0\xd9\x02\x9d\x2d\xea\xef\xbb" \
-  "\xff\x7a\x27\x59\x59\xd9\x58\x2c\x8b\x19\x1b\x1b" \
-  "\x23\x5a\x51\x45\x38\x12\x21\x34\x1a\xa6\xc0\x69" \
-  "\xa7\xba\xe4\x5a\x5e\xe0\xf3\xf7\x53\x12\x2d\x9d" \
-  "\x93\x4a\xbd\xad\xbc\x2c\xd6\xd7\xaf\xfe\xed\x6a" \
-  "\xf5\x51\xbe\xfb\x59\x44\x31\x83\xf2\xb2\x0a\x24" \
-  "\x49\xba\xae\x7d\x24\x18\x02\xe0\x6a\x5e\x16\xc1" \
-  "\xc3\xa7\xd0\x0d\xaf\xa2\x7e\xa1\x8f\x3c\x31\x83" \
-  "\x40\x60\x08\xbd\x5e\x3f\x6b\xed\x7f\x4b\xd0\xb4" \
-  "\xf4\x74\xf4\x4b\x73\xd4\xeb\x25\x75\x1b\xb1\x59" \
-  "\x73\x10\x24\x91\x68\x34\x72\x5d\xfb\x70\x24\xc2" \
-  "\xae\xcb\x1e\xf9\x42\x03\x0f\x4e\x2a\x82\x4d\x9a" \
-  "\x28\xe7\x87\xc3\xaa\xf6\x37\x18\x0c\xb3\x1a\xd5" \
-  "\x5b\x4f\xfd\xe8\x28\x8e\xf6\xf7\xd0\xe9\xcd\x34" \
-  "\xc6\xc2\xb2\x8e\x1f\x95\x17\x54\x24\x18\x42\x90" \
-  "\xc4\x69\xed\x77\xf4\x5c\x0b\x67\xb1\x63\x27\x31" \
-  "\x3a\xe4\xf4\xf0\xfc\x1b\x3e\x62\x7d\xfd\x44\x6c" \
-  "\x59\x90\x69\x25\x91\x48\xa0\xd3\xe9\x6e\x87\xf1" \
-  "\xf6\x40\xb5\x0b\x16\x30\xbe\x62\x19\x85\xde\x6e" \
-  "\x1a\x3b\xba\x88\xfb\x06\xe9\xf4\xb6\xaa\x9a\x29" \
-  "\x34\x1a\x26\x90\x59\x0f\x80\xae\x77\x2d\xdf\x63" \
-  "\x29\x77\x17\x14\x33\x78\x69\x80\xac\x1d\x6b\xf9" \
-  "\xd3\x5b\xa7\x59\x3d\x7c\x11\x90\x5d\x41\x00\xa2" \
-  "\xd1\xc8\x0d\x5d\xe6\x4b\x81\x02\xc4\xef\x5d\x4b" \
-  "\xeb\x85\x10\xd9\x49\x93\x2c\xa9\x27\xcd\x56\x56" \
-  "\x4e\x3c\xef\x2d\x35\x24\x3d\xb5\x7e\x2d\x26\x93" \
-  "\x89\x44\x22\x81\x35\xd3\xca\x85\x9e\x1e\x56\x0f" \
-  "\x5f\x24\xe8\xed\x26\xb2\xf9\xb1\x59\x81\xcd\xb4" \
-  "\x5b\x7a\x74\x53\x73\xb3\x46\x67\xcb\xa6\xfa\xc9" \
-  "\xef\xe2\xdc\xb9\x43\xad\xde\x5d\x39\x7a\x9c\x97" \
-  "\x5e\x93\xe3\x66\x7e\xe5\xd7\x78\xa4\x66\xbf\x0a" \
-  "\x19\x0c\x06\x89\x46\x23\x14\xee\xdd\x43\xfa\x8a" \
-  "\x65\x37\xec\x77\xb6\xfa\x6a\xd6\x6a\xac\x70\xb2" \
-  "\x94\x03\xb0\x69\xd4\x8a\x73\xc5\x0e\x96\xde\xb5" \
-  "\x14\x80\x40\x20\xa0\x2e\xb0\xee\xde\x6e\xaa\x80" \
-  "\xf0\x2f\x46\xa8\x5f\x68\x22\x1e\xf5\x53\x24\x16" \
-  "\x01\xd7\x14\xef\x6c\x6c\x56\x31\xc2\x2c\x08\x74" \
-  "\xfd\xf0\xc7\x6a\x16\x55\xe0\xb4\x63\x16\x04\x02" \
-  "\x81\x21\xfa\x2e\xf6\xe1\xbf\xec\x27\x1c\x89\x10" \
-  "\x8e\x44\x54\xbf\x05\xa8\xe8\xed\xa6\xc4\x64\xbd" \
-  "\xae\xbf\x94\xc7\xd1\xf4\xb4\x34\x4c\x26\x13\x63" \
-  "\x63\x63\x08\x92\x48\xf9\xee\x67\xf9\xe8\xe9\x9f" \
-  "\xd0\xdd\xdc\x82\x7e\x69\x0e\xb1\xbe\x7e\x84\x95" \
-  "\x55\x84\x46\xc3\xec\x0d\x7f\x0c\xc0\x5f\xe6\x22" \
-  "\xd7\xa7\xf0\x51\xe8\xb5\xd1\x3a\xd9\x97\x12\x25" \
-  "\xe6\x65\xea\xd3\xd2\xd3\xd1\x6a\xb5\xea\x4a\x55" \
-  "\x74\xd2\x80\xb7\x8d\x81\x9d\x6d\x64\x17\x57\xf2" \
-  "\x87\xfc\x98\xda\x3e\x76\xec\x24\x23\xa3\x56\x82" \
-  "\x9a\xa1\x59\xc1\xdc\x94\xe1\x76\x1a\xcd\x94\xd3" \
-  "\x77\x56\x55\x52\x7b\xe0\x00\xf7\xfd\xfc\x05\xb2" \
-  "\x8b\x2b\xa9\xe8\xed\x66\xfd\xef\x5a\xd5\xf6\xdb" \
-  "\xbf\xb5\x95\x02\xa7\x9d\xae\x1e\x9f\x2a\x0a\xbf" \
-  "\x12\x50\x05\x36\x2d\x3d\x9d\x99\x72\x7a\x59\xdd" \
-  "\xc3\x00\x2a\x6c\xec\xd8\x49\x32\x13\xe9\x6a\xec" \
-  "\xcc\x2e\xae\xa4\xd5\x71\x3f\x57\xf3\xb2\xbe\x1a" \
-  "\x50\x05\x76\xaa\x9c\x16\x24\x11\x9d\x2d\x8b\xc8" \
-  "\xe6\xc7\xd4\x38\xe9\x6a\xf5\x51\xfa\xef\xaf\xaa" \
-  "\xcf\x14\x38\xed\xd7\x41\x1a\x0c\x86\xf9\x05\x55" \
-  "\x60\x17\xe8\xf5\x48\x92\x84\x35\xd3\x8a\x20\x89" \
-  "\x08\x2b\xab\x10\x56\x56\x01\x50\xab\x37\xb3\xe8" \
-  "\xd1\x75\x04\xbd\xdd\x14\xe6\xdb\xe8\x88\xfa\xd5" \
-  "\x64\x7b\x6a\x31\x6d\xb6\x49\xc9\x9c\x8e\x2f\x14" \
-  "\x17\x98\x0a\x0b\xb0\xac\xee\x61\x1a\x63\x61\x0e" \
-  "\x1c\xfe\x6f\x35\xc3\xd7\xb5\x5d\xa0\xd3\x73\x86" \
-  "\x8c\xde\x41\xaa\xdf\x6c\x60\x61\x30\x8a\x56\xab" \
-  "\x9d\x75\xf9\x67\x4e\xe5\x37\xb7\xdb\xad\x71\xb9" \
-  "\x5c\xc9\xa9\xa3\xe2\x07\x22\xc0\x7d\x3f\x7f\x81" \
-  "\x95\xff\xf4\xe9\xb4\xf6\x57\x8e\x1e\x47\xd0\x9b" \
-  "\x39\x0b\xb4\x77\xf8\xd8\xf0\x8b\xe7\xc9\xc9\xc9" \
-  "\x61\x36\x36\xe7\x03\x21\xa5\x56\x25\x98\x4c\x58" \
-  "\x2c\x16\x75\x64\x0d\xc3\x61\xe2\x8b\x9a\xd4\x3a" \
-  "\x40\x81\xd3\x4e\xcd\x13\xdf\xa7\x31\x16\xa6\x3d" \
-  "\xaf\x80\x01\x6f\x1b\x0d\x4f\xfd\x03\xa3\xa3\xa3" \
-  "\xb3\x92\x25\x9a\xb9\x9e\x2e\x4f\x35\xa7\xc3\x91" \
-  "\xfc\x3c\x16\x23\xfc\x69\x27\xe2\xb1\x43\xa4\xaf" \
-  "\x58\xc6\xf0\x91\xd7\x39\x52\x51\x8a\x4d\x91\xd6" \
-  "\xc8\x85\xb5\x12\x93\x95\xee\x66\x59\x21\x3c\xf1" \
-  "\x6f\xbf\xc6\x68\x34\x12\x8f\xc7\x69\x69\x69\xb9" \
-  "\xe9\x2e\x95\x92\x23\xb6\x66\x8f\x47\x63\x34\x1a" \
-  "\x01\x08\x7a\xbb\x19\x3f\x27\x4f\x7d\x89\xc9\x3a" \
-  "\x4d\xb5\x36\x74\xb6\xf0\x7c\x7e\x8c\x7a\xa3\x9f" \
-  "\x01\x6f\x1b\x4d\xff\xbc\x9f\x53\x47\x7f\x0f\x0d" \
-  "\xbf\x65\x95\xd3\x79\xd3\xd1\x4d\xc9\x88\x2a\x56" \
-  "\x51\x51\x91\x7c\xee\x9e\x7b\xd4\x82\xda\xcc\x5a" \
-  "\xea\x54\x53\xaa\x82\x00\x7f\x57\x52\x88\xe6\xe9" \
-  "\x5d\x74\x8e\x86\xbf\x70\x54\x53\x5a\xcb\x16\xb4" \
-  "\x5a\xb2\x8b\x2b\x69\x9c\x3c\x02\x9a\x0a\xb9\xfd" \
-  "\x5b\x5b\xa7\xd7\x04\xfe\x4a\xfe\xea\xfd\xe5\x21" \
-  "\x74\xc3\xd5\xbc\xff\xf6\x29\x56\xfd\xed\x0f\x92" \
-  "\xca\xcc\xcc\x4c\x58\x52\x0a\x3a\xe6\xbf\xcc\x93" \
-  "\x25\x36\x82\x9a\x28\xf5\x49\x13\x1b\x8a\x64\x6d" \
-  "\x6f\x2b\x2b\xe7\xee\x82\x62\x40\x96\x2f\xa1\xd1" \
-  "\x30\xa1\xd0\xd5\x69\xe0\xf7\x9e\x18\xe7\xc3\x95" \
-  "\x1f\x50\x75\xcf\x3d\x28\xb0\xf3\x06\xda\x1f\x1b" \
-  "\xa3\x77\xd1\x5d\xdc\x3b\x6c\x83\x85\x67\x55\xb9" \
-  "\x22\x1a\xcd\xd7\xe9\x2b\x05\x32\x5e\x99\x8b\xf1" \
-  "\x73\x1f\xa3\x1e\x1b\x85\x7b\xf7\xd0\xe4\xb8\x9f" \
-  "\x15\x0f\xdc\x4f\x91\xd1\x9c\x9c\xea\x0a\x29\x05" \
-  "\xb5\x58\x16\xb3\xe4\xc4\xf8\xb4\x7b\x53\x6b\x54" \
-  "\x53\x4d\xc9\x57\x33\xd7\xc1\xfe\xd7\xb3\x78\x74" \
-  "\x51\x13\x52\x71\x81\x2c\x5d\x76\x3f\x43\x57\x8f" \
-  "\x0f\x67\x6b\x8b\x5a\x5c\x4b\xd9\xc1\x7a\x6e\x6e" \
-  "\x6e\xf2\xe8\x93\x4f\x61\x74\xf8\x30\x3a\x7c\xea" \
-  "\x99\xd4\x4c\x58\x41\x12\xf9\xa0\xff\x5a\x95\xa5" \
-  "\xa7\xed\x33\x74\x6d\x17\x68\x75\xdc\x4f\x70\x4a" \
-  "\xd5\xb0\x31\x16\x66\x78\x64\x44\x7d\xab\x22\x65" \
-  "\xa0\xd6\xe6\x37\xd9\xf6\xd8\x9f\x03\xb0\xfb\xf8" \
-  "\x09\x75\xef\x17\xc5\x0c\x7c\x9f\x7c\xc4\x73\xbf" \
-  "\xd9\x83\xcf\xdf\xcf\xe0\xa5\x01\xf5\x19\x5d\xef" \
-  "\x5a\xd6\x14\xec\xc4\xb9\x73\x07\xfa\xa5\x39\x9c" \
-  "\x7e\xec\x11\xce\xbe\x21\x6f\x14\xe5\xbb\x9f\x05" \
-  "\x50\xdf\xaa\x48\x49\x78\x5a\x71\xd7\xd2\x64\xda" \
-  "\xfe\x17\xd5\xeb\xdd\xc7\x4f\xc8\x85\x8a\xb2\x72" \
-  "\x5e\x7a\xed\xe0\xb4\xb6\x87\xf7\xfc\x0e\x8b\xc5" \
-  "\x42\x22\x91\x20\x16\x8b\x11\x08\x0c\x71\x69\x60" \
-  "\x50\x5d\x60\xca\x3f\x27\x1a\xcd\x08\x92\x88\x35" \
-  "\xd3\x8a\x24\x49\xa9\xf1\x51\xc3\x9d\x39\x0c\x7d" \
-  "\xfb\xbb\x24\x77\x5f\x93\xd2\x57\x8e\x1e\xa7\x61" \
-  "\xb9\xbc\x03\xe9\xbf\xfd\x75\x00\x7e\xbd\x72\xb3" \
-  "\x7a\x2e\xf0\x45\x90\x30\xdd\x55\xfc\xc8\x69\x61" \
-  "\x4a\x40\x9b\x3d\x1e\x8d\xcb\xe5\x4a\xba\x7f\xf8" \
-  "\x63\x1a\xb7\x6d\x03\xe4\x84\x79\xd3\x28\x64\x6e" \
-  "\x5e\xcf\xf2\x72\xd9\x0d\x0c\x06\x03\x81\x40\x00" \
-  "\x90\x8b\x10\xe1\xc8\xb5\x92\xd0\x17\xd5\x5d\x15" \
-  "\x4b\xd9\xaa\x9f\x18\x1f\xa7\xa4\xb4\x94\xb3\x93" \
-  "\x25\xca\x81\xc9\xa0\x5f\x61\xdd\xae\x02\x4d\x05" \
-  "\x53\x4c\x90\xc4\xeb\xca\x42\x8a\x99\x05\x01\x93" \
-  "\x49\xce\x5f\x53\x06\x3a\x3e\x31\x01\xc0\xea\x0d" \
-  "\xdf\xe1\x4f\xc8\xfb\xfa\x86\x22\xbb\x5a\xa7\x9a" \
-  "\x09\x67\x16\x64\x6d\xaf\x68\xfc\x1b\x65\xfd\x7a" \
-  "\xbd\x1e\xad\x56\x2b\x7f\x52\x05\x9a\x9e\x96\x86" \
-  "\x5e\xaf\xc7\x2c\x08\x54\xaf\x79\x48\x3d\x8b\x9a" \
-  "\xea\x6f\xca\x02\x31\x0b\x02\x16\xcb\xe2\x69\x20" \
-  "\x4a\x1f\x33\x4d\x49\xb0\x53\x06\xaa\x48\x6a\x45" \
-  "\x4b\x89\xa3\x19\x37\x84\xb4\x66\x5a\x55\x75\xa0" \
-  "\x54\xf3\x6e\xa7\x10\x91\x32\x50\xb7\xdb\xad\x71" \
-  "\x3a\x1c\x49\x65\x55\x2b\x70\xc0\xb4\x51\x34\x99" \
-  "\x4c\x68\xb5\xda\x59\xbf\xce\x91\xd2\x2d\xb4\xd9" \
-  "\xe3\x99\x06\x1b\x9d\xe2\x87\x92\x24\x61\x30\x18" \
-  "\x66\x35\x8a\x53\x2d\xa5\xf9\xa8\x62\x4e\x87\x23" \
-  "\x39\x3e\x31\xc1\xd8\xd8\x18\x20\x97\x6f\x16\x4c" \
-  "\xbe\xc6\x31\xd7\xb3\xa6\xff\x07\x0e\x59\x16\xdb" \
-  "\xc1\x50\x9e\xe9\x00\x00\x00\x00\x49\x45\x4e\x44" \
-  "\xae\x42\x60\x82"
 
 class pyTwoOrganismView(QWidget):
-  def __init__(self,parent = None,name = None,fl = 0):
-    QWidget.__init__(self,parent,name,fl)
+    def __init__(self,parent = None,name = None,fl = 0):
+        QWidget.__init__(self,parent,name,fl)
 
-    self.image0 = QPixmap()
-    self.image0.loadFromData(image0_data,"PNG")
-    if not name:
-      self.setName("pyTwoOrganismView")
+        if not name:
+            self.setName("pyTwoOrganismView")
 
 
-    pyTwoOrganismViewLayout = QVBoxLayout(self,11,6,"pyTwoOrganismViewLayout")
+        pyTwoOrganismViewLayout = QVBoxLayout(self,11,6,"pyTwoOrganismViewLayout")
 
-    layout79 = QHBoxLayout(None,0,6,"layout79")
-    spacer34 = QSpacerItem(16,16,QSizePolicy.Expanding,QSizePolicy.Minimum)
-    layout79.addItem(spacer34)
+        self.textLabel1 = QLabel(self,"textLabel1")
+        self.textLabel1.setAlignment(QLabel.AlignCenter)
+        pyTwoOrganismViewLayout.addWidget(self.textLabel1)
 
-    self.pixmapLabel2 = QLabel(self,"pixmapLabel2")
-    self.pixmapLabel2.setMaximumSize(QSize(20,32))
-    self.pixmapLabel2.setPixmap(self.image0)
-    self.pixmapLabel2.setScaledContents(1)
-    layout79.addWidget(self.pixmapLabel2)
+        self.languageChange()
 
-    self.textLabel13 = QLabel(self,"textLabel13")
-    self.textLabel13.setSizePolicy(QSizePolicy(3,5,0,0,self.textLabel13.sizePolicy().hasHeightForWidth()))
-    layout79.addWidget(self.textLabel13)
+        self.resize(QSize(604,650).expandedTo(self.minimumSizeHint()))
+        self.clearWState(Qt.WState_Polished)
 
-    self.textLabel6 = QLabel(self,"textLabel6")
-    layout79.addWidget(self.textLabel6)
 
-    self.pixmapLabel2_2 = QLabel(self,"pixmapLabel2_2")
-    self.pixmapLabel2_2.setMaximumSize(QSize(20,32))
-    self.pixmapLabel2_2.setPixmap(self.image0)
-    self.pixmapLabel2_2.setScaledContents(1)
-    layout79.addWidget(self.pixmapLabel2_2)
+    def languageChange(self):
+        self.setCaption(self.__tr("pyTwoOrganismView"))
+        self.textLabel1.setText(self.__tr("Contents of this space are temporarily removed."))
 
-    self.textLabel13_2 = QLabel(self,"textLabel13_2")
-    self.textLabel13_2.setSizePolicy(QSizePolicy(3,5,0,0,self.textLabel13_2.sizePolicy().hasHeightForWidth()))
-    layout79.addWidget(self.textLabel13_2)
-    spacer33 = QSpacerItem(16,16,QSizePolicy.Expanding,QSizePolicy.Minimum)
-    layout79.addItem(spacer33)
 
-    self.toolButton4 = QToolButton(self,"toolButton4")
-    layout79.addWidget(self.toolButton4)
-    pyTwoOrganismViewLayout.addLayout(layout79)
-
-    self.pyTwoOrg_VivisectionCtrl1 = pyTwoOrg_VivisectionCtrl(self,"pyTwoOrg_VivisectionCtrl1")
-    self.pyTwoOrg_VivisectionCtrl1.setSizePolicy(QSizePolicy(3,3,0,5,self.pyTwoOrg_VivisectionCtrl1.sizePolicy().hasHeightForWidth()))
-    pyTwoOrganismViewLayout.addWidget(self.pyTwoOrg_VivisectionCtrl1)
-
-    self.pyTimelineCtrl3 = pyTimelineCtrl(self,"pyTimelineCtrl3")
-    self.pyTimelineCtrl3.setSizePolicy(QSizePolicy(3,3,0,1,self.pyTimelineCtrl3.sizePolicy().hasHeightForWidth()))
-    pyTwoOrganismViewLayout.addWidget(self.pyTimelineCtrl3)
-
-    self.pyTwoOrg_VivisectionCtrl1_2 = pyTwoOrg_VivisectionCtrl(self,"pyTwoOrg_VivisectionCtrl1_2")
-    self.pyTwoOrg_VivisectionCtrl1_2.setSizePolicy(QSizePolicy(3,3,0,5,self.pyTwoOrg_VivisectionCtrl1_2.sizePolicy().hasHeightForWidth()))
-    pyTwoOrganismViewLayout.addWidget(self.pyTwoOrg_VivisectionCtrl1_2)
-
-    self.languageChange()
-
-    self.resize(QSize(604,650).expandedTo(self.minimumSizeHint()))
-    self.clearWState(Qt.WState_Polished)
-
-
-  def languageChange(self):
-    self.setCaption(self.__tr("pyTwoOrganismView"))
-    self.textLabel13.setText(self.__tr("LowMutVers."))
-    self.textLabel6.setText(self.__tr("vs."))
-    self.textLabel13_2.setText(self.__tr("HighMutVers."))
-    self.toolButton4.setText(self.__tr("..."))
-
-
-  def __tr(self,s,c = None):
-    return qApp.translate("pyTwoOrganismView",s,c)
+    def __tr(self,s,c = None):
+        return qApp.translate("pyTwoOrganismView",s,c)

Modified: trunk/source/python/AvidaGui2/pyTwoOrganismView.ui
===================================================================
--- trunk/source/python/AvidaGui2/pyTwoOrganismView.ui	2005-03-31 03:44:15 UTC (rev 95)
+++ trunk/source/python/AvidaGui2/pyTwoOrganismView.ui	2005-03-31 09:26:09 UTC (rev 96)
@@ -1,8 +1,5 @@
 <!DOCTYPE UI><UI version="3.3" stdsetdef="1">
 <class>pyTwoOrganismView</class>
-<comment>Python:from pyTwoOrg_VivisectionCtrl import pyTwoOrg_VivisectionCtrl
-Python:from pyTimelineCtrl import pyTimelineCtrl
-</comment>
 <widget class="QWidget">
     <property name="name">
         <cstring>pyTwoOrganismView</cstring>
@@ -22,229 +19,18 @@
         <property name="name">
             <cstring>unnamed</cstring>
         </property>
-        <widget class="QLayoutWidget">
+        <widget class="QLabel">
             <property name="name">
-                <cstring>layout79</cstring>
+                <cstring>textLabel1</cstring>
             </property>
-            <hbox>
-                <property name="name">
-                    <cstring>unnamed</cstring>
-                </property>
-                <spacer>
-                    <property name="name">
-                        <cstring>spacer34</cstring>
-                    </property>
-                    <property name="orientation">
-                        <enum>Horizontal</enum>
-                    </property>
-                    <property name="sizeType">
-                        <enum>Expanding</enum>
-                    </property>
-                    <property name="sizeHint">
-                        <size>
-                            <width>16</width>
-                            <height>16</height>
-                        </size>
-                    </property>
-                </spacer>
-                <widget class="QLabel">
-                    <property name="name">
-                        <cstring>pixmapLabel2</cstring>
-                    </property>
-                    <property name="maximumSize">
-                        <size>
-                            <width>20</width>
-                            <height>32</height>
-                        </size>
-                    </property>
-                    <property name="pixmap">
-                        <pixmap>image0</pixmap>
-                    </property>
-                    <property name="scaledContents">
-                        <bool>true</bool>
-                    </property>
-                </widget>
-                <widget class="QLabel">
-                    <property name="name">
-                        <cstring>textLabel13</cstring>
-                    </property>
-                    <property name="sizePolicy">
-                        <sizepolicy>
-                            <hsizetype>3</hsizetype>
-                            <vsizetype>5</vsizetype>
-                            <horstretch>0</horstretch>
-                            <verstretch>0</verstretch>
-                        </sizepolicy>
-                    </property>
-                    <property name="text">
-                        <string>LowMutVers.</string>
-                    </property>
-                </widget>
-                <widget class="QLabel">
-                    <property name="name">
-                        <cstring>textLabel6</cstring>
-                    </property>
-                    <property name="text">
-                        <string>vs.</string>
-                    </property>
-                </widget>
-                <widget class="QLabel">
-                    <property name="name">
-                        <cstring>pixmapLabel2_2</cstring>
-                    </property>
-                    <property name="maximumSize">
-                        <size>
-                            <width>20</width>
-                            <height>32</height>
-                        </size>
-                    </property>
-                    <property name="pixmap">
-                        <pixmap>image0</pixmap>
-                    </property>
-                    <property name="scaledContents">
-                        <bool>true</bool>
-                    </property>
-                </widget>
-                <widget class="QLabel">
-                    <property name="name">
-                        <cstring>textLabel13_2</cstring>
-                    </property>
-                    <property name="sizePolicy">
-                        <sizepolicy>
-                            <hsizetype>3</hsizetype>
-                            <vsizetype>5</vsizetype>
-                            <horstretch>0</horstretch>
-                            <verstretch>0</verstretch>
-                        </sizepolicy>
-                    </property>
-                    <property name="text">
-                        <string>HighMutVers.</string>
-                    </property>
-                </widget>
-                <spacer>
-                    <property name="name">
-                        <cstring>spacer33</cstring>
-                    </property>
-                    <property name="orientation">
-                        <enum>Horizontal</enum>
-                    </property>
-                    <property name="sizeType">
-                        <enum>Expanding</enum>
-                    </property>
-                    <property name="sizeHint">
-                        <size>
-                            <width>16</width>
-                            <height>16</height>
-                        </size>
-                    </property>
-                </spacer>
-                <widget class="QToolButton">
-                    <property name="name">
-                        <cstring>toolButton4</cstring>
-                    </property>
-                    <property name="text">
-                        <string>...</string>
-                    </property>
-                </widget>
-            </hbox>
-        </widget>
-        <widget class="pyTwoOrg_VivisectionCtrl">
-            <property name="name">
-                <cstring>pyTwoOrg_VivisectionCtrl1</cstring>
+            <property name="text">
+                <string>Contents of this space are temporarily removed.</string>
             </property>
-            <property name="sizePolicy">
-                <sizepolicy>
-                    <hsizetype>3</hsizetype>
-                    <vsizetype>3</vsizetype>
-                    <horstretch>0</horstretch>
-                    <verstretch>5</verstretch>
-                </sizepolicy>
+            <property name="alignment">
+                <set>AlignCenter</set>
             </property>
         </widget>
-        <widget class="pyTimelineCtrl">
-            <property name="name">
-                <cstring>pyTimelineCtrl3</cstring>
-            </property>
-            <property name="sizePolicy">
-                <sizepolicy>
-                    <hsizetype>3</hsizetype>
-                    <vsizetype>3</vsizetype>
-                    <horstretch>0</horstretch>
-                    <verstretch>1</verstretch>
-                </sizepolicy>
-            </property>
-        </widget>
-        <widget class="pyTwoOrg_VivisectionCtrl">
-            <property name="name">
-                <cstring>pyTwoOrg_VivisectionCtrl1_2</cstring>
-            </property>
-            <property name="sizePolicy">
-                <sizepolicy>
-                    <hsizetype>3</hsizetype>
-                    <vsizetype>3</vsizetype>
-                    <horstretch>0</horstretch>
-                    <verstretch>5</verstretch>
-                </sizepolicy>
-            </property>
-        </widget>
     </vbox>
 </widget>
-<customwidgets>
-    <customwidget>
-        <class>pyTimelineCtrl</class>
-        <header location="global">1</header>
-        <sizehint>
-            <width>-1</width>
-            <height>0</height>
-        </sizehint>
-        <container>0</container>
-        <sizepolicy>
-            <hordata>3</hordata>
-            <verdata>3</verdata>
-            <horstretch>0</horstretch>
-            <verstretch>0</verstretch>
-        </sizepolicy>
-        <pixmap>image1</pixmap>
-        <property type="0">3</property>
-        <property type="1">pyTimelineCtrl</property>
-        <property type="3">-1</property>
-        <property type="1">pyTimelineCtrl</property>
-        <property type="3">-1</property>
-        <property type="pyTimelineCtrl"></property>
-        <property type="-1">1</property>
-    </customwidget>
-    <customwidget>
-        <class>pyTwoOrg_VivisectionCtrl</class>
-        <header location="local"></header>
-        <sizehint>
-            <width>-1</width>
-            <height>-1</height>
-        </sizehint>
-        <container>0</container>
-        <sizepolicy>
-            <hordata>5</hordata>
-            <verdata>5</verdata>
-            <horstretch>0</horstretch>
-            <verstretch>0</verstretch>
-        </sizepolicy>
-        <pixmap>image2</pixmap>
-    </customwidget>
-</customwidgets>
-<images>
-    <image name="image0">
-        <data format="PNG" length="3280">89504e470d0a1a0a0000000d494844520000002a000000410806000000a7f036c200000c9749444154789cbd9a7f7053d795c73fb22521e9e93d83c08a2d2774fd23fe813db6c14e8414192664439dce941f69e93a09743749a15db2bbb3ed7686d9994c42193a3be99090b2db9440376d6960d99a2c6e76434cba09d428569c106c272196bdb6d998b56c04968d7ed991646bff787e0fdb10c08e9c33a391dfd37d773ebef7dc73cff7dca7397dfa34733197cb958c7ed607c0b98b7d9a3975320bd3cee521a7c3913cf9b3bd08af1e06a0e2dd53c9f6f6f679854d9bcb43cdefbe8bf0ea61daf30a688c8539b4652b76bb3d996ab8a9362750fba52e4a2d756cd2440118f0b6110c06713a1c4997cb352fc0b302adaaaa4a56555525dfb910e2c8c2b374f5f8a8d59ba9d59be9bbd847241a251e8f331fb0b7eda3252525c9f527f601f08de8088f6aa2906f635f4717b57a33916088c1c101b2b2b2494f9bd344dd1ad46eb727c7c6c6104511b7db7ddda270b95cc9b5af3d37ed5e578f0f8025751b09396a1081702442301844abd5e272b99237ea6bae96c6c444f2c0a62d1cdab29589f171f507bbdd9ef40d5e4c8622c1e48b3bff51bd1f3b76125ddb050af36d14e6dba85ef310a1d0557cfe7e22c110d1688444229!
 12a3ed5b4d56f3650a889b2afa38b48545e1c252525c9e37f3886377810822061e78d753f22ee1be0dc4fea8120e4dbe8eaf111f70dce31c8cd1214ae4de3a12d5b8957e626dbf7fc0b43ebfc007c73c5f3946d29239148d0e2790f1d50986f432a2e801e1f97b5f22c88620600269380569b7a726df2999f92fb37011e38f32e6fef7c06bc6d00e8d7d978a4663f77de7917c16090b1b13174b62cdef97b095ef4418f8fb30f3f886db223d168e68eec2c0c06c3bc80a6198d462c160b8535f7f1c0ce5dea0f529f1d8b6531814080406008ff653f91f73ee407ff69069021cbca6548310341123199044c26133a9dee868bf24b8102241209a2d1080b8befa6e689ef0370e5e8713ace9fc77fd9cfa58141062f0dd0dddc826e781500458e9aeb3a33180c2cd0eb530ea98282ec5b00c2ca2ab28b2bd5069160885d973dec0d7f4c81d30e407b5ec1b44e44a319b320a0d7eb494b4f4f35e3355083c180c160c02c08089248e6e6f532d00b2f71f69d3701392c2df79c22bea889016f1b69ed9d32e494699f0fdf5441dd6eb746a7d32149125959d95833add8ac3964175712afcca5fa3ffec8373e1e511f5022c4444511a298a18ea62449f336ed3039a20aac603221491277646751f1a3ed14396a28ccb7f168fb791aff4c7687c65818f7729bda81329a068361dea65d055!
 5609b3d1e8dc160c06259cc1dd959884633e7ff6233fb3aba087abbd9d7d1a!
 542767ac
e60180e03b2eba4a7a5cddb684e03554ca7d3613299309904eec8ce6261f1dd2ca9dbc8be8e2e005cadf2d43774b6f0f6ce6718f1fecf7cb1dd1cd4ed766b16e8f5582c164c2601b320a06bbb40ad5e8e9fd9c5956c28b2abeddbbdad0402430c8f8c5064347fb5f9685a7a3a0a2c4081d34ea9a58e5abd9902a75d0df420c7dbdf7e731d67fff5109d8f7f0f7753d3bce4a3370475bbdd1a057661504e54e28b9a0038f3cacb78830759f320b897db702fb7f1fe4f1fa723eae7e95289c66ddb38f9b3bd002905fec20c57815dbcac88d5c317e9eaf1d1189317cf3b7f94db282e103b769286ce16368d5aa9d59b39f3cacb449a3f48c6eb7f85b3aa2a25b0378dd069131344fd97097bbbd57b4bea36b2bdac5cce96726087a3864ecf198a1c351886c344fafae1959759ee3905b9eb18ffafc3381f7e3cd9ecf17ca9887053d0c4e79fa37bff2df5baf6c0017cfe7e0042a1abea7d5b59b97cbd288390366b720b8e327ce475ba7a7ce43a1ffad219ff6d899bae1e1fed79050892a8e69d334d14330885ae12cf7b8ba1757eea932674c3ab28b5d4f1c9e1df13afff154e8763ce6e7053d0e60f3fd48ce455d3180b33e06de3b5ba47d4202f8a19d8ac39ea2790598f3778909eb6cf008857e6cadf8b9a58932b327eee53c6feaf7fce0bec9659446655254bea3672e5e87140!
 8e9bb6b2729efbcd1eb5cdc15dfb09f56e42275dc5f7c947acdef01d2205218eb4bd44458f8fea739f12f476d3f5d9ff5265cd9c931bdc1274627c9c8ae2e5bc8d0cdad0d9029d2deaefbbff7a275959d9582c8b191b1b235a5145381221341aa6c069a7bae45a5ee0f3f753122d9d934abdadbc2cd6d7affeed6af551befb59443183f2b20a2449baae7d241802e06a5e16c1c3a7d00dafa27ea18f3c3183406008bd5e3f6bed7f4bd0b4f474f44b73d4eb25751bb159731024916834725dfb7024c2aecb1ef942030f4e2a824d9a28e787c3aaf637180cb31ad55b4ffde8288ef6f7d0e9cd34c6c2b28e1f95175424184290c469ed77f45c0b67b16327313ae4f4f0fc1b3e627dfd446c599069259148a0d3e96e87f1f640b50b1630be621985de6e1a3bba88fb06e9f4b6aa9a29341a2690590f80ae772ddf632977171433786980ac1d6bf9d35ba7593d7c11905d4100a2d1c80d5de64b8102c4ef5d4beb8510d949932ca927cd56564e3cef2d35243db57e2d26938944228135d3ca859e1e560f5f24e8ed26b2f9b15981cdb45b7a745373b34667cba6fac9efe2dcb943adde5d397a9c975e93e3667ee5d778a466bf0a190c0689462314eedd43fa8a6537ec77b6fa6ad66aac70b29403b069d48a73c50e96deb514804020a02eb0eede6eaa80f02f46a85f68221ef55324!
 1601d714ef6c6c5631c22c0874fdf0c76a1655e0b4631604028121fa2ef6e1!
 bfec271c
89108e4454bf05a8e8eda6c464bdaebf94c7d1f4b4344c2613636363089248f9ee67f9e8e99fd0dddc827e690eb1be7e8495558446c3ec0d7f0cc05fe622d7a7f051e8b5d13ad9971225e665ead3d2d3d16ab5ea4a5574d280b78d819d6d641757f287fc98da3e76ec2423a356829aa159c1dc94e1761acd94d3775655527be000f7fdfc05b28b2ba9e8ed66fdef5ad5f6dbbfb59502a79dae1e9f2a0abf125005362d3d9d99727a59ddc3002a6cecd8493213e96aeccc2eaea4d5713f57f3b2be1a500576aa9c1624119d2d8bc8e6c7d438e96af551faefafaacf1438edd7411a0c86f905556017e8f548928435d38a2089082bab1056560150ab37b3e8d17504bddd14e6dbe888fad5647b6a316db649c99c8e2f1417980a0bb0acee611a63610e1cfe6f35c3d7b55da0d373868cde41aadf6c6061308a56ab9d75f9674ee537b7dbad71b95cc9a9a3e20722c07d3f7f8195fff4e9b4f6578e1e47d09b390bb477f8d8f08be7c9c9c9613636e70321a55625984c582c1675640dc361e28b9ad43a4081d34ecd13dfa73116a63daf80016f1b0d4ffd03a3a3a3b392259ab99e2e4f35a7c391fc3c1623fc6927e2b143a4af58c6f091d73952518a4d91d6c885b5129395ee6659213cf16fbfc66834128fc7696969b9e92e959223b6668f4763341a01087abb193f274f7d89c93a4!
 db53674b6f07c7e8c7aa39f016f1b4dffbc9f53477f0f0dbf6595d379d3d14dc9882a565151917cee9e7bd482dacc5aea5453aa82007f575288e6e95d748e86bf7054535acb16b45ab28b2b699c3c029a0ab9fd5b5ba7d704fe4afeeafde52174c3d5bcfff62956fded0f92cacccc4c58520a3ae6bfcc932536829a28f549131b8a646d6f2b2be7ee826240962fa1d130a1d0d569e0f79e18e7c3951f5075cf3d28b0f306da1f1ba377d15ddc3b6c83856755b9221acdd7e92b05325e998bf1731fa31e1b857bf7d0e4b89f150fdc4f91d19c9cea0a2905b55816b3e4c4f8b47b536b54534dc95733d7c1fed7b3787451135271812c5d763f43578f0f676b8b5a5c4bd9c17a6e6e6ef2e8934f6174f8303a7cea99d44c584112f9a0ff5a95a5a7ed33746d176875dc4f704ad5b03116667864447dab2265a0d6e637d9f6d89f03b0fbf80975ef17c50c7c9f7cc473bfd983cfdfcfe0a501f5195def5ad614ecc4b97307faa5399c7eec11cebe216f14e5bb9f0550dfaa4849785a71d7d264dafe17d5ebddc74fc8858ab2725e7aede0b4b687f7fc0e8bc542229120168b11080c716960505d60ca3f271acd08928835d38a2449a9f151c39d390c7dfbbb24775f93d2578e1ea761b9bc03e9bffd75007ebd72b37a2ef0459030dd55fcc869614a409b3d1e8dcbe54aba7ff8631ab!
 76d03e48479d328646e5ecff272d90d0c0603814000908b10e1c8b592d017d!
 55d154bd
9aa9f181fa7a4b494b39325ca81c9a05f61ddae024d05534c90c4ebca428a9905019349ce5f53063a3e3101c0ea0ddfe14fc8fbfa8622bb5aa79a096716646daf68fc1b65fd7abd1ead562b7f52059a9e96865eafc72c0854af79483d8b9aea6fca02310b0216cbe269204a1f334d49b05306aa486a454b89a3193784b4665a5575a054f36ea710913250b7dbad713a1c4965552b70c0b45134994c68b5da59bfce91d22db4d9e399061b9de287922461301866358a532da5f9a8624e8723393e31c1d8d81820976f164cbec631d7b3a6ff070e5916dbc1509ee90000000049454e44ae426082</data>
-    </image>
-    <image name="image1">
-        <data format="PNG" length="1002">89504e470d0a1a0a0000000d4948445200000016000000160806000000c4b46c3b000003b149444154789cad945f4c5b551cc73fe7dc4b7b4bcba0762d45c43114323599ee6192609c51d883892ce083f1718b3ebb185f8dc91e972cf39d2d2a2f1af664b6f1e0fe3863a0718969700eb0c52142da0242a1bd6d696f7bcff101585203ceb8fd9ece39f99dcff9fe7edf939f88c562ec465f5f9fe609442c161362173c3e3eae7b7a7ac8e7f36432196cdbfe4f907c3e4f2291201e8fe338cec3737357e9e8e828aded1e229d650e1f2d51754b082110124c13a4dc5ea341eb9dc284c0558a853f3ce8cb0677ef500fde7d39d2596679e326597b8e9abb85d7a770ab16ab6983ec5a05b487a70e36f0f4e10afe408d6a558310980108478dba4a1e8233990c5d474b64ed39aa3a8fe5f3317fbf81dbd70bccfeb205947632fd74f6589c1c6ea2f70d03a58ba0c1f2c9bdc1b66de3b8256a6e11cbe7e3ee1d181b590124fe2693aeee08d223c82c3a2c24b7b874bec8f26288774f7bd054504aef0dde6e99c0eb83f9fb266323cb80a27fb0958141836044605a2ee5523393371cc646fee2da37195aa35d0c0c5b4859ac03d7e91712dcaac5adab3650a3ff9d08ef7dd8404bb48869e5d958b5b87dadc4c9a1464e9f0d0326df7!
 ebd86bd2e310cb1bf62d384d59441f2d70a070e1c60e09489929b988681bdd9cc97170bcc4c65595f71f8e0e3301337fc24a7732467831875a47f289652b0be5e4151e6d07316c1b0c0340d8ab92023e76d66a6b2840e36d2fb7a13fee632475e6edc367ea98a90fb98b7dd6310ca0328a44761582e1bab41befabcc0ec940d28bc5e93b68e064cab84e1d9beaeb48934eac1f53b01c1b000fca496aa54b61a99fcde61662a4b4b4b23d1680be9d426173e4df3602a48ea411989a4fd590f52a8fd156b05ed9d350e3defe3cfdf4b4c7ce770ea7d3fb9f520afbe1620daeee5c26735d20b9b9cfb6811a754a439e4e5c5639a4caa1e5caf586bfc0197b78702005cb9b4cae4cd3267ce8638fe964bd72b393e39d74928d242617303a756a37f284447770dcdbffc6384a05a85de1306e9a52057c7527c7131c3c42d3f475eb2303c82d4fc3276d6811db37efeb148723082d9b08f79f97c1e5729109a9a28307cc622d2d6cdf52b2b24efe548dedb00142009862cfa879ee1a71f6cec928353511472fbf4389148b0b0e0c108081412458dfe21c9f11351e67e7358595468246d1d1e5e38a6e9e851bc39d84ab502a669331dafec0d8ec7e3e8cb06e1a881d727d1ae40180a434a8c9db129a54126ad48a7358c2b4c5352c8c374bcccdab2bb37d8719cba79fab8211f9df218e05!
 82c261e95f8bfc04f1a1e8bc5c4dfe0a19017a725d8c60000000049454e44a!
 e426082<
/data>
-    </image>
-    <image name="image2">
-        <data format="PNG" length="1125">89504e470d0a1a0a0000000d4948445200000016000000160806000000c4b46c3b0000042c49444154789cb5954f6c14551cc73fefcd7476b65bdaae4bb78bb5502a14d404e4801c88182d1c4c2c693da847400f9c24c68b878684238660e2b1e01f12c19493012ef2478c814412d354a46017a8a564bb6da5bbedccee767776e63d0ffb073751d483bfe49799974c3eeffb7ebf37df9fd05a530b2184040cc0042420aaf9a4d0d554800f045a6b256ae0e1e1e1d6bebebe838ee31c48a7d39b5cd7fd075e251cc7617272f2ded8d8d819cff33e0316819259537aead4a9839d5dd6d1784f91f55b0a94830242088404d304292bef68a89f520802a598fecddaa04f1a876f5c250c7c0a64cdeac686e33807e23d45e6b297c8b877f1831542614550b6599835c83c2a81b6786a75134faf2f1169f12997350881d9021d0903e06de0745d3160a6d3e94dbd5b0a64dcbb94b5831d0e3375ab892b1772dcf9790528543f8dd0d367b36768153b5e31503a0f1aecb004580b44ffac58baae8b1714f0833c7638cc8dab303a320f4822ab4c7a37c69196203de3319d5ce1c4d13c733331dedc67a129a154fd128401ab0616d55a130ac3d42d93d1913940d13fd0c9ee0183685c60da01c5421bd72f7a8c8efccef9afd374267ad93!
 d642365be0636a0d28ec7600941d9e6f23917f0e97f23ce5bef35d19ec863da0ed9059b2be70bec196c66dfa10ec0e49b338f7017258651bf95021035c595429bb0903248fe52a2b5b595dd7b4d945cc2340cdca536be389ee3f67886c5798f773fe8e0dac508c989659277a2180da4ca4ff07821058b8b251445d63d6b13ed1098a6417e39cac85197dbe31962ab9bd9f1f22a226d45366f6d0620fdb08c900d281af6110284b20085b414861d905d88f2e52739ee8cbb8022143259d3dd84691730aa2d52da441a8de0c6958068870022a41e9629ad3473fd3b8fdbe319dadb9b4924da994d2d716c7896fbe35152f78b48245d6b2da4507faf582be8eaf159b721cc837b05ae7debb1f79d08cb8b515edad942a22bc4b1c33eb3d34b1c797f06af90a72d16e2f96d9a74aa11dca8586b222d01af0fb60070f6c402d72f15d97f28c6f6d7027a5f5ce6c3233dc4e2ede496b278be4fff608cee8d3e1add806aeca51094cbb06397c1ecc328e746537c7e3ccdb5cb1136bf60635882d4d41c6ec6836ab37efa214f72208ed9f4d7cdd38ee310280542e38b1c43fb6de26b3672e1ec3cc99bcb246f66a938a3241ab3e91f7c861fbf77710b1e5e49915bae974203ba0e9e9c9cbc373d6d6d305a040a89c2a77f50b27d5782bbbf7acccf28349235dd16cf6dd374f7295e1de8a45!
 c02d37499182b01cc0201a085d61a2144d8b2ac8fb6ed340e77240c4261890!
 e04c2501
85262546d534a032154b59e0ad394e41c98182bf268ce6721ed9f064e0253356f6da2e24c1f030f783c15fe6da680af8021602bd051532ca9b8521488559f61aa86c29343578fbf0264a94c906c7d3409214c20043457a116ff6de6795578012889ff6b98fe016ea0ce1c203e47720000000049454e44ae426082</data>
-    </image>
-</images>
 <layoutdefaults spacing="6" margin="11"/>
-<includehints>
-    <includehint>pytwoorg_vivisectionctrl.h</includehint>
-    <includehint>pytimelinectrl.h</includehint>
-    <includehint>pytwoorg_vivisectionctrl.h</includehint>
-</includehints>
 </UI>

Modified: trunk/source/python/AvidaGui2/pyTwoPop_GraphView.py
===================================================================
--- trunk/source/python/AvidaGui2/pyTwoPop_GraphView.py	2005-03-31 03:44:15 UTC (rev 95)
+++ trunk/source/python/AvidaGui2/pyTwoPop_GraphView.py	2005-03-31 09:26:09 UTC (rev 96)
@@ -1,9 +1,9 @@
 # -*- coding: utf-8 -*-
 
-# Form implementation generated from reading ui file '/Users/kaben/Projects/Software/Avida/branch.kaben/avida--current--2.0--base-0/source/bindings/Boost.Python/AvidaGui2/pyTwoPop_GraphView.ui'
+# Form implementation generated from reading ui file 'pyTwoPop_GraphView.ui'
 #
-# Created: Fri Dec 3 10:26:53 2004
-#      by: The PyQt User Interface Compiler (pyuic) 3.12
+# Created: Thu Mar 31 04:19:25 2005
+#      by: The PyQt User Interface Compiler (pyuic) 3.13
 #
 # WARNING! All changes made in this file will be lost!
 
@@ -12,143 +12,143 @@
 from pyGraphCtrl import pyGraphCtrl
 
 image0_data = \
-  "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
-  "\x49\x48\x44\x52\x00\x00\x00\x0f\x00\x00\x00\x0e" \
-  "\x08\x06\x00\x00\x00\xf0\x8a\x46\xef\x00\x00\x01" \
-  "\xd7\x49\x44\x41\x54\x78\x9c\x85\x92\xcd\x6a\x53" \
-  "\x51\x14\x85\xbf\x9b\x5c\x09\x89\x69\xa3\xad\xb6" \
-  "\x45\xc1\xe2\x4f\x1a\x9d\x28\x8a\x13\x91\x80\xc1" \
-  "\xd0\xa9\xe0\x44\xa1\x82\x38\xa8\x93\x4e\xd4\xe2" \
-  "\xd4\x17\x70\x20\x8a\x51\x21\xfa\x04\xfa\x06\x05" \
-  "\x87\x22\xc4\x61\x41\x09\x0d\x04\x35\x85\x04\x93" \
-  "\xe6\xaf\xf6\x26\xb9\xe7\x2c\x07\x6d\xd3\x34\x11" \
-  "\xba\x60\x71\xe0\xec\xb3\xce\x62\xef\xbd\x90\xc4" \
-  "\x20\x5b\xad\x96\x96\x9f\x3c\x55\xa5\x52\xd1\x70" \
-  "\x6d\x98\x01\x06\xd0\x6e\xb7\x95\x79\x91\xe5\x88" \
-  "\x3b\x85\x31\x96\x83\xe0\x48\x02\xa0\xd3\xe9\x28" \
-  "\xf3\x32\xcb\x4c\x60\x8e\xdf\xb5\x3c\x53\x73\x51" \
-  "\x42\xa1\xd0\xbe\xc7\xb1\x58\x8c\x54\x2a\x45\x38" \
-  "\x1c\x76\xfa\x62\xdf\xf7\xf5\xe6\x55\x96\xe3\x9c" \
-  "\xa3\x56\xde\xe2\xd8\xd4\x18\x96\x3d\x67\x21\xac" \
-  "\x0c\x5e\x6f\x8b\x52\x23\xcf\xdd\x07\xb7\x48\x24" \
-  "\x12\x8e\x23\x89\x77\xaf\xdf\x2b\xd6\x3d\xc5\x46" \
-  "\xb9\x83\xac\xc0\xd9\x15\x81\x24\x8c\x84\x95\xc5" \
-  "\xf3\x7d\xa6\xa7\xc7\x21\x5a\x63\xe1\xe1\x6d\x82" \
-  "\x97\x2f\x5e\x55\x77\xfd\x30\xed\x3f\x86\xdd\x16" \
-  "\xf6\x3b\x82\x95\xc5\x58\x8b\x91\xa5\xd6\xdc\xe4" \
-  "\x68\x64\x92\x46\x6f\x9d\xc0\xcd\xf9\x1b\x14\x36" \
-  "\x7e\xe0\x19\x7f\x48\xb8\x0d\xbb\xf3\xa1\x91\x30" \
-  "\xb2\x08\x68\x79\x3d\xca\xbf\xea\x04\xa2\xd1\xa8" \
-  "\xb3\xf4\x68\x81\x92\xf7\x9d\xae\x35\xfb\x5c\xa5" \
-  "\xed\xd3\x58\xdb\x77\xb7\xb2\xf4\x7a\x06\x6f\xab" \
-  "\xbb\x37\xed\xc2\x5a\x41\x99\xe7\x9f\x38\x3d\x76" \
-  "\x9e\x4d\xbf\xc3\xdf\x6e\x13\x83\xb0\x56\x08\x70" \
-  "\x02\x2e\xae\x13\xc2\xc8\x30\x39\x31\xce\x89\xb3" \
-  "\x03\xab\x02\xc8\xe5\xbe\xe9\xe3\x87\x2f\x6c\x7a" \
-  "\x75\xae\xa5\xcf\x10\x0c\x06\xfb\xb5\x66\xa3\x4d" \
-  "\xee\xeb\x1a\x13\xe1\x0b\xb8\xee\x21\xae\xcf\x4f" \
-  "\x32\x92\x9a\x95\x95\xcf\xba\x77\x67\x49\xd5\x6a" \
-  "\x75\x24\x61\xf9\x7c\x5e\x8b\xf7\x9f\xe9\xf1\xe2" \
-  "\x5b\x15\x8b\x45\xb9\xc3\xa9\x49\xa7\x53\x4e\x28" \
-  "\xe4\x2a\x12\x89\x8c\x24\x2a\x1e\x8f\x3b\x33\x27" \
-  "\xa3\xaa\x55\xea\xcc\xce\xce\x3a\x23\x62\x80\x64" \
-  "\x32\xe9\xfc\xef\x1e\xe0\xd2\x95\x04\xeb\x3f\x6b" \
-  "\x3b\x53\x3d\x20\xfc\xc3\x5c\x5d\x5d\x55\xa9\x54" \
-  "\x92\x24\xfe\x01\x03\x3d\x5a\xfa\x32\x50\xe5\x56" \
-  "\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82"
+    "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
+    "\x49\x48\x44\x52\x00\x00\x00\x0f\x00\x00\x00\x0e" \
+    "\x08\x06\x00\x00\x00\xf0\x8a\x46\xef\x00\x00\x01" \
+    "\xd7\x49\x44\x41\x54\x78\x9c\x85\x92\xcd\x6a\x53" \
+    "\x51\x14\x85\xbf\x9b\x5c\x09\x89\x69\xa3\xad\xb6" \
+    "\x45\xc1\xe2\x4f\x1a\x9d\x28\x8a\x13\x91\x80\xc1" \
+    "\xd0\xa9\xe0\x44\xa1\x82\x38\xa8\x93\x4e\xd4\xe2" \
+    "\xd4\x17\x70\x20\x8a\x51\x21\xfa\x04\xfa\x06\x05" \
+    "\x87\x22\xc4\x61\x41\x09\x0d\x04\x35\x85\x04\x93" \
+    "\xe6\xaf\xf6\x26\xb9\xe7\x2c\x07\x6d\xd3\x34\x11" \
+    "\xba\x60\x71\xe0\xec\xb3\xce\x62\xef\xbd\x90\xc4" \
+    "\x20\x5b\xad\x96\x96\x9f\x3c\x55\xa5\x52\xd1\x70" \
+    "\x6d\x98\x01\x06\xd0\x6e\xb7\x95\x79\x91\xe5\x88" \
+    "\x3b\x85\x31\x96\x83\xe0\x48\x02\xa0\xd3\xe9\x28" \
+    "\xf3\x32\xcb\x4c\x60\x8e\xdf\xb5\x3c\x53\x73\x51" \
+    "\x42\xa1\xd0\xbe\xc7\xb1\x58\x8c\x54\x2a\x45\x38" \
+    "\x1c\x76\xfa\x62\xdf\xf7\xf5\xe6\x55\x96\xe3\x9c" \
+    "\xa3\x56\xde\xe2\xd8\xd4\x18\x96\x3d\x67\x21\xac" \
+    "\x0c\x5e\x6f\x8b\x52\x23\xcf\xdd\x07\xb7\x48\x24" \
+    "\x12\x8e\x23\x89\x77\xaf\xdf\x2b\xd6\x3d\xc5\x46" \
+    "\xb9\x83\xac\xc0\xd9\x15\x81\x24\x8c\x84\x95\xc5" \
+    "\xf3\x7d\xa6\xa7\xc7\x21\x5a\x63\xe1\xe1\x6d\x82" \
+    "\x97\x2f\x5e\x55\x77\xfd\x30\xed\x3f\x86\xdd\x16" \
+    "\xf6\x3b\x82\x95\xc5\x58\x8b\x91\xa5\xd6\xdc\xe4" \
+    "\x68\x64\x92\x46\x6f\x9d\xc0\xcd\xf9\x1b\x14\x36" \
+    "\x7e\xe0\x19\x7f\x48\xb8\x0d\xbb\xf3\xa1\x91\x30" \
+    "\xb2\x08\x68\x79\x3d\xca\xbf\xea\x04\xa2\xd1\xa8" \
+    "\xb3\xf4\x68\x81\x92\xf7\x9d\xae\x35\xfb\x5c\xa5" \
+    "\xed\xd3\x58\xdb\x77\xb7\xb2\xf4\x7a\x06\x6f\xab" \
+    "\xbb\x37\xed\xc2\x5a\x41\x99\xe7\x9f\x38\x3d\x76" \
+    "\x9e\x4d\xbf\xc3\xdf\x6e\x13\x83\xb0\x56\x08\x70" \
+    "\x02\x2e\xae\x13\xc2\xc8\x30\x39\x31\xce\x89\xb3" \
+    "\x03\xab\x02\xc8\xe5\xbe\xe9\xe3\x87\x2f\x6c\x7a" \
+    "\x75\xae\xa5\xcf\x10\x0c\x06\xfb\xb5\x66\xa3\x4d" \
+    "\xee\xeb\x1a\x13\xe1\x0b\xb8\xee\x21\xae\xcf\x4f" \
+    "\x32\x92\x9a\x95\x95\xcf\xba\x77\x67\x49\xd5\x6a" \
+    "\x75\x24\x61\xf9\x7c\x5e\x8b\xf7\x9f\xe9\xf1\xe2" \
+    "\x5b\x15\x8b\x45\xb9\xc3\xa9\x49\xa7\x53\x4e\x28" \
+    "\xe4\x2a\x12\x89\x8c\x24\x2a\x1e\x8f\x3b\x33\x27" \
+    "\xa3\xaa\x55\xea\xcc\xce\xce\x3a\x23\x62\x80\x64" \
+    "\x32\xe9\xfc\xef\x1e\xe0\xd2\x95\x04\xeb\x3f\x6b" \
+    "\x3b\x53\x3d\x20\xfc\xc3\x5c\x5d\x5d\x55\xa9\x54" \
+    "\x92\x24\xfe\x01\x03\x3d\x5a\xfa\x32\x50\xe5\x56" \
+    "\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82"
 
 class pyTwoPop_GraphView(QWidget):
-  def __init__(self,parent = None,name = None,fl = 0):
-    QWidget.__init__(self,parent,name,fl)
+    def __init__(self,parent = None,name = None,fl = 0):
+        QWidget.__init__(self,parent,name,fl)
 
-    self.image0 = QPixmap()
-    self.image0.loadFromData(image0_data,"PNG")
-    if not name:
-      self.setName("pyTwoPop_GraphView")
+        self.image0 = QPixmap()
+        self.image0.loadFromData(image0_data,"PNG")
+        if not name:
+            self.setName("pyTwoPop_GraphView")
 
 
-    pyTwoPop_GraphViewLayout = QVBoxLayout(self,0,6,"pyTwoPop_GraphViewLayout")
+        pyTwoPop_GraphViewLayout = QVBoxLayout(self,0,6,"pyTwoPop_GraphViewLayout")
 
-    layout210 = QHBoxLayout(None,0,6,"layout210")
-    spacer152 = QSpacerItem(1,32,QSizePolicy.Minimum,QSizePolicy.Minimum)
-    layout210.addItem(spacer152)
+        layout210 = QHBoxLayout(None,0,6,"layout210")
+        spacer152 = QSpacerItem(1,32,QSizePolicy.Minimum,QSizePolicy.Minimum)
+        layout210.addItem(spacer152)
 
-    self.textLabel9_2 = QLabel(self,"textLabel9_2")
-    self.textLabel9_2.setSizePolicy(QSizePolicy(3,5,0,0,self.textLabel9_2.sizePolicy().hasHeightForWidth()))
-    textLabel9_2_font = QFont(self.textLabel9_2.font())
-    textLabel9_2_font.setPointSize(11)
-    self.textLabel9_2.setFont(textLabel9_2_font)
-    layout210.addWidget(self.textLabel9_2)
+        self.textLabel9_2 = QLabel(self,"textLabel9_2")
+        self.textLabel9_2.setSizePolicy(QSizePolicy(3,5,0,0,self.textLabel9_2.sizePolicy().hasHeightForWidth()))
+        textLabel9_2_font = QFont(self.textLabel9_2.font())
+        textLabel9_2_font.setPointSize(11)
+        self.textLabel9_2.setFont(textLabel9_2_font)
+        layout210.addWidget(self.textLabel9_2)
 
-    layout178 = QVBoxLayout(None,0,6,"layout178")
-    spacer126 = QSpacerItem(1,1,QSizePolicy.Minimum,QSizePolicy.Minimum)
-    layout178.addItem(spacer126)
+        layout178 = QVBoxLayout(None,0,6,"layout178")
+        spacer126 = QSpacerItem(1,1,QSizePolicy.Minimum,QSizePolicy.Minimum)
+        layout178.addItem(spacer126)
 
-    self.toolButton31_2 = QToolButton(self,"toolButton31_2")
-    toolButton31_2_font = QFont(self.toolButton31_2.font())
-    toolButton31_2_font.setPointSize(10)
-    self.toolButton31_2.setFont(toolButton31_2_font)
-    self.toolButton31_2.setIconSet(QIconSet(self.image0))
-    layout178.addWidget(self.toolButton31_2)
-    spacer126_2 = QSpacerItem(1,1,QSizePolicy.Minimum,QSizePolicy.Minimum)
-    layout178.addItem(spacer126_2)
-    layout210.addLayout(layout178)
-    pyTwoPop_GraphViewLayout.addLayout(layout210)
+        self.toolButton31_2 = QToolButton(self,"toolButton31_2")
+        toolButton31_2_font = QFont(self.toolButton31_2.font())
+        toolButton31_2_font.setPointSize(10)
+        self.toolButton31_2.setFont(toolButton31_2_font)
+        self.toolButton31_2.setIconSet(QIconSet(self.image0))
+        layout178.addWidget(self.toolButton31_2)
+        spacer126_2 = QSpacerItem(1,1,QSizePolicy.Minimum,QSizePolicy.Minimum)
+        layout178.addItem(spacer126_2)
+        layout210.addLayout(layout178)
+        pyTwoPop_GraphViewLayout.addLayout(layout210)
 
-    self.pyGraphCtrl1 = pyGraphCtrl(self,"pyGraphCtrl1")
-    self.pyGraphCtrl1.setSizePolicy(QSizePolicy(3,3,0,0,self.pyGraphCtrl1.sizePolicy().hasHeightForWidth()))
-    self.pyGraphCtrl1.setMinimumSize(QSize(100,100))
-    pyTwoPop_GraphViewLayout.addWidget(self.pyGraphCtrl1)
+        self.pyGraphCtrl1 = pyGraphCtrl(self,"pyGraphCtrl1")
+        self.pyGraphCtrl1.setSizePolicy(QSizePolicy(3,3,0,0,self.pyGraphCtrl1.sizePolicy().hasHeightForWidth()))
+        self.pyGraphCtrl1.setMinimumSize(QSize(100,100))
+        pyTwoPop_GraphViewLayout.addWidget(self.pyGraphCtrl1)
 
-    layout262_2 = QHBoxLayout(None,0,6,"layout262_2")
-    spacer200_2_2 = QSpacerItem(10,10,QSizePolicy.Expanding,QSizePolicy.Minimum)
-    layout262_2.addItem(spacer200_2_2)
+        layout262_2 = QHBoxLayout(None,0,6,"layout262_2")
+        spacer200_2_2 = QSpacerItem(10,10,QSizePolicy.Expanding,QSizePolicy.Minimum)
+        layout262_2.addItem(spacer200_2_2)
 
-    self.toolButton31_2_2_2 = QToolButton(self,"toolButton31_2_2_2")
-    self.toolButton31_2_2_2.setSizePolicy(QSizePolicy(0,0,0,0,self.toolButton31_2_2_2.sizePolicy().hasHeightForWidth()))
-    toolButton31_2_2_2_font = QFont(self.toolButton31_2_2_2.font())
-    toolButton31_2_2_2_font.setPointSize(10)
-    self.toolButton31_2_2_2.setFont(toolButton31_2_2_2_font)
-    layout262_2.addWidget(self.toolButton31_2_2_2)
-    spacer200_3 = QSpacerItem(10,10,QSizePolicy.Expanding,QSizePolicy.Minimum)
-    layout262_2.addItem(spacer200_3)
-    pyTwoPop_GraphViewLayout.addLayout(layout262_2)
+        self.toolButton31_2_2_2 = QToolButton(self,"toolButton31_2_2_2")
+        self.toolButton31_2_2_2.setSizePolicy(QSizePolicy(0,0,0,0,self.toolButton31_2_2_2.sizePolicy().hasHeightForWidth()))
+        toolButton31_2_2_2_font = QFont(self.toolButton31_2_2_2.font())
+        toolButton31_2_2_2_font.setPointSize(10)
+        self.toolButton31_2_2_2.setFont(toolButton31_2_2_2_font)
+        layout262_2.addWidget(self.toolButton31_2_2_2)
+        spacer200_3 = QSpacerItem(10,10,QSizePolicy.Expanding,QSizePolicy.Minimum)
+        layout262_2.addItem(spacer200_3)
+        pyTwoPop_GraphViewLayout.addLayout(layout262_2)
 
-    layout262 = QHBoxLayout(None,0,6,"layout262")
-    spacer200_2 = QSpacerItem(10,10,QSizePolicy.Expanding,QSizePolicy.Minimum)
-    layout262.addItem(spacer200_2)
+        layout262 = QHBoxLayout(None,0,6,"layout262")
+        spacer200_2 = QSpacerItem(10,10,QSizePolicy.Expanding,QSizePolicy.Minimum)
+        layout262.addItem(spacer200_2)
 
-    self.toolButton31_2_2 = QToolButton(self,"toolButton31_2_2")
-    self.toolButton31_2_2.setSizePolicy(QSizePolicy(0,0,0,0,self.toolButton31_2_2.sizePolicy().hasHeightForWidth()))
-    toolButton31_2_2_font = QFont(self.toolButton31_2_2.font())
-    toolButton31_2_2_font.setPointSize(10)
-    self.toolButton31_2_2.setFont(toolButton31_2_2_font)
-    layout262.addWidget(self.toolButton31_2_2)
+        self.toolButton31_2_2 = QToolButton(self,"toolButton31_2_2")
+        self.toolButton31_2_2.setSizePolicy(QSizePolicy(0,0,0,0,self.toolButton31_2_2.sizePolicy().hasHeightForWidth()))
+        toolButton31_2_2_font = QFont(self.toolButton31_2_2.font())
+        toolButton31_2_2_font.setPointSize(10)
+        self.toolButton31_2_2.setFont(toolButton31_2_2_font)
+        layout262.addWidget(self.toolButton31_2_2)
 
-    self.comboBox1 = QComboBox(0,self,"comboBox1")
-    comboBox1_font = QFont(self.comboBox1.font())
-    comboBox1_font.setPointSize(11)
-    self.comboBox1.setFont(comboBox1_font)
-    layout262.addWidget(self.comboBox1)
-    spacer200 = QSpacerItem(10,10,QSizePolicy.Expanding,QSizePolicy.Minimum)
-    layout262.addItem(spacer200)
-    pyTwoPop_GraphViewLayout.addLayout(layout262)
+        self.comboBox1 = QComboBox(0,self,"comboBox1")
+        comboBox1_font = QFont(self.comboBox1.font())
+        comboBox1_font.setPointSize(11)
+        self.comboBox1.setFont(comboBox1_font)
+        layout262.addWidget(self.comboBox1)
+        spacer200 = QSpacerItem(10,10,QSizePolicy.Expanding,QSizePolicy.Minimum)
+        layout262.addItem(spacer200)
+        pyTwoPop_GraphViewLayout.addLayout(layout262)
 
-    self.languageChange()
+        self.languageChange()
 
-    self.resize(QSize(132,221).expandedTo(self.minimumSizeHint()))
-    self.clearWState(Qt.WState_Polished)
+        self.resize(QSize(132,221).expandedTo(self.minimumSizeHint()))
+        self.clearWState(Qt.WState_Polished)
 
 
-  def languageChange(self):
-    self.setCaption(self.__tr("pyTwoPop_GraphView"))
-    self.textLabel9_2.setText(self.__tr("Graph"))
-    self.toolButton31_2.setText(QString.null)
-    self.toolButton31_2_2_2.setText(self.__tr("+"))
-    self.toolButton31_2_2.setText(self.__tr("-"))
-    self.comboBox1.clear()
-    self.comboBox1.insertItem(self.__tr("Merit"))
+    def languageChange(self):
+        self.setCaption(self.__tr("pyTwoPop_GraphView"))
+        self.textLabel9_2.setText(self.__tr("Graph"))
+        self.toolButton31_2.setText(QString.null)
+        self.toolButton31_2_2_2.setText(self.__tr("+"))
+        self.toolButton31_2_2.setText(self.__tr("-"))
+        self.comboBox1.clear()
+        self.comboBox1.insertItem(self.__tr("Merit"))
 
 
-  def __tr(self,s,c = None):
-    return qApp.translate("pyTwoPop_GraphView",s,c)
+    def __tr(self,s,c = None):
+        return qApp.translate("pyTwoPop_GraphView",s,c)

Modified: trunk/source/python/AvidaGui2/pyTwoPop_PetriDishesView.py
===================================================================
--- trunk/source/python/AvidaGui2/pyTwoPop_PetriDishesView.py	2005-03-31 03:44:15 UTC (rev 95)
+++ trunk/source/python/AvidaGui2/pyTwoPop_PetriDishesView.py	2005-03-31 09:26:09 UTC (rev 96)
@@ -1,9 +1,9 @@
 # -*- coding: utf-8 -*-
 
-# Form implementation generated from reading ui file '/Users/kaben/Projects/Software/Avida/branch.kaben/avida--current--2.0--base-0/source/bindings/Boost.Python/AvidaGui2/pyTwoPop_PetriDishesView.ui'
+# Form implementation generated from reading ui file 'pyTwoPop_PetriDishesView.ui'
 #
-# Created: Fri Dec 3 10:26:53 2004
-#      by: The PyQt User Interface Compiler (pyuic) 3.12
+# Created: Thu Mar 31 04:19:25 2005
+#      by: The PyQt User Interface Compiler (pyuic) 3.13
 #
 # WARNING! All changes made in this file will be lost!
 
@@ -14,404 +14,404 @@
 from pyLiveControlsCtrl import pyLiveControlsCtrl
 
 image0_data = \
-  "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
-  "\x49\x48\x44\x52\x00\x00\x00\x20\x00\x00\x00\x20" \
-  "\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\x00\x00\x08" \
-  "\x3d\x49\x44\x41\x54\x78\x9c\xed\x96\x5d\x6c\x1c" \
-  "\xd5\x15\xc7\xff\xe7\xde\x99\xd9\xd9\x4f\x7b\xbd" \
-  "\xfe\x88\xd7\x1b\x6c\x12\x3b\x35\x04\x92\xb4\xe1" \
-  "\x33\x40\x53\x48\x44\x09\x22\x04\xa2\xd2\xd2\x87" \
-  "\x36\x85\xf6\xa5\x55\x11\xa5\x2d\x50\x21\x68\xd5" \
-  "\x02\x2a\x0d\x11\x05\xaa\x3e\x20\x50\x24\xd4\x40" \
-  "\x11\x85\x16\xa9\xa0\x50\xa0\x8a\x83\x02\x09\x58" \
-  "\x75\xe4\x38\x21\x90\x38\x8e\xed\xac\xed\x6c\xe2" \
-  "\xd8\xbb\xeb\x9d\xd9\x99\xd9\xb9\xf7\xf4\x81\x35" \
-  "\x4a\x28\x15\x08\xa9\xea\x0b\x7f\xe9\xe8\xce\x95" \
-  "\x66\x74\x7e\xe7\x7f\x8f\xee\x19\xe0\x0b\xfd\x9f" \
-  "\x45\x9f\xe7\xa3\xde\xde\x5e\x23\x91\x48\xc4\xb4" \
-  "\xd6\x36\x00\xb2\x2c\xcb\xb3\x6d\xdb\xed\xeb\xeb" \
-  "\xab\xfd\x4f\x00\xd6\xad\xbb\x36\xbd\x62\xc5\x85" \
-  "\x97\x5e\xbe\xfa\xca\x65\xcb\x57\x2c\xef\x11\x24" \
-  "\xb3\xc2\xb4\x6d\xcb\x22\x10\x11\x54\xa8\x51\xab" \
-  "\x05\x81\x0a\xfd\xc2\xc1\xa1\xfd\xc3\x83\x43\x83" \
-  "\x07\x5f\xf9\xfb\xdf\x76\xed\xd8\xb1\x63\xea\x73" \
-  "\x03\x34\x36\x36\xe2\xba\xeb\x36\x7c\xf9\xd6\x5b" \
-  "\x6f\xbb\x69\x71\xf7\x79\x17\x47\xac\x08\x31\x98" \
-  "\x98\x18\x60\x0d\x82\x60\x80\x08\x00\x18\x1a\x52" \
-  "\x0a\x86\x20\x12\xc4\x86\x65\x51\x5c\x85\x4a\x14" \
-  "\xa6\xf2\xfd\x8f\x3d\xf6\xf0\x9f\xb7\x6d\x7b\xba" \
-  "\xaf\x52\xa9\xe8\xcf\x0c\xb0\x6c\xd9\xf2\x96\x2d" \
-  "\x5b\x9e\xb8\xa3\x67\xf1\xb2\x4b\x49\x08\x26\x22" \
-  "\x82\x24\x08\x22\x5b\x9a\x46\x3c\x54\x7e\x42\xa9" \
-  "\xc0\x54\x50\x82\x34\x41\x08\xc1\x64\x18\x35\x53" \
-  "\xd8\x2e\x42\xed\x19\x86\x88\x4a\xc9\x92\x84\x50" \
-  "\x5a\xb1\x2a\x4c\x8f\xf7\xff\xf8\x87\xb7\xdc\xdf" \
-  "\xd7\xb7\xe3\xe8\xa7\x02\x6c\xdc\x78\xd3\xd2\xdf" \
-  "\xfd\xf6\x89\xfb\x85\x61\xa7\x49\x48\x68\x70\xbc" \
-  "\x16\x78\x6d\xfc\xfe\x60\xc6\x35\x64\xcc\x4f\x35" \
-  "\x72\x2d\xd0\x2c\xa5\x41\x2c\x04\xc0\x82\x01\x66" \
-  "\xa5\x43\x92\x06\x21\x1a\x89\x50\x3c\x11\x55\xf1" \
-  "\x64\x83\x6b\x9b\x56\x51\x6b\xe5\x29\x85\x59\x61" \
-  "\x73\xf1\xf1\x47\x1f\x78\xe8\xa1\x07\x1f\xdc\x79" \
-  "\x7a\x3e\x79\xfa\x66\xfd\x86\x1b\x7b\x37\x6f\xde" \
-  "\xba\x45\x85\x68\x50\x8c\x98\x3b\x37\xd3\x63\x3c" \
-  "\xf7\x44\x4f\xe2\xd7\x3f\x6d\x8c\xbe\xf8\xac\x55" \
-  "\xb8\x72\x03\x47\x8d\x26\x81\x53\x2c\xec\x50\x52" \
-  "\x08\x62\xd3\x8e\xc1\x94\x36\x4c\xc3\x26\x43\x46" \
-  "\x69\x2e\x12\x60\x94\x4e\xca\x59\x67\xc6\x0a\x1c" \
-  "\xa7\x81\x14\x47\x41\x66\x45\xd5\x28\xbc\x62\xed" \
-  "\x55\x5f\x65\xe5\x8d\xec\x7e\xfb\xed\xf1\xff\x00" \
-  "\x68\x5d\xb0\x20\xf2\xe4\x9f\x5e\xfc\xbd\x50\x91" \
-  "\x66\xa7\x52\xe9\x28\xce\x16\xce\xa9\x55\xdc\x78" \
-  "\x70\x72\x86\xe6\xb2\x9d\x5c\xee\xea\x66\x71\xf9" \
-  "\x3a\x54\xa7\x4b\xe4\x55\x7c\x04\x9e\x0f\xb3\x25" \
-  "\xc9\x56\x24\x02\x61\x48\x21\xa4\xc1\x92\x0c\x7a" \
-  "\x3d\xb6\x97\x36\xd3\x56\xda\x21\x07\x49\x06\x51" \
-  "\xee\x0e\x72\xe6\xec\xec\xa9\x16\x21\x0d\x82\xb2" \
-  "\xe6\xd6\x5c\x73\xe5\x45\xbb\x76\xee\x78\x2d\x7f" \
-  "\xec\x98\x0b\x00\xc6\x3c\xc0\x5d\xf7\xdc\x73\x75" \
-  "\x63\x6b\x36\x37\x3b\x79\x6a\xa1\x5b\x2d\x9d\x65" \
-  "\x99\x71\x86\x25\x41\xab\xaf\xd3\x20\x08\x41\x82" \
-  "\x2d\x09\x8e\xe5\x5a\x95\xd6\x4c\x81\xd6\x30\x6c" \
-  "\x0b\x44\x12\x44\x20\x22\x49\x02\x82\x95\xef\x51" \
-  "\x67\xb5\x99\xcb\xb2\x4a\x29\xcf\x22\x8e\x98\x6c" \
-  "\x99\x29\x2a\x17\x67\x73\x7e\x50\x8d\xc1\x68\xf9" \
-  "\xe0\x27\x77\xfd\xe2\x5b\xbb\x6f\xb8\xfe\x8f\x67" \
-  "\xf4\xc0\xbe\xb1\xf1\x47\x98\x53\xeb\xcb\xf9\xe3" \
-  "\x5d\xa6\x88\x12\x91\x01\x21\x08\x44\x02\x00\x91" \
-  "\x60\xb0\x15\x86\xa2\x3a\xe1\x90\x61\x48\xf8\x96" \
-  "\xe2\x44\x36\xc3\x62\xc6\x21\xcd\x04\x8a\x0a\xa8" \
-  "\x64\x82\xdf\x8d\xbf\x4f\x5c\x03\xa7\xc3\x28\x3a" \
-  "\xfc\x66\x48\x92\x5a\x2a\x12\xcc\x1a\xb5\x9a\x03" \
-  "\x19\x11\xf9\x44\x4b\x6a\xf7\xb9\x5d\x99\x9b\xcf" \
-  "\x70\x80\x28\xd6\x59\x9e\x2c\x74\x46\x64\x82\x20" \
-  "\x04\x88\x05\x84\x29\x19\x1a\x42\x10\x69\x10\x53" \
-  "\x30\x57\x65\x37\xf0\xc8\x54\x04\x1d\x8b\xb2\xa9" \
-  "\x98\xbc\xb2\x22\x12\x12\x5e\xb5\x0a\x95\xb1\xf4" \
-  "\x1f\x8c\xe7\xc5\x34\x1f\xa7\xb4\xd9\x88\x47\xdd" \
-  "\x3b\xd4\xcb\x4d\xfd\xc6\x6e\x0c\xa0\x43\x2f\xe0" \
-  "\xeb\xdd\x8b\xb8\xc7\x6d\xcd\x7a\x65\xaf\x13\x40" \
-  "\x14\x40\x75\x1e\xc0\x9c\xce\x9f\xe8\x48\x99\x0d" \
-  "\x42\x6b\x01\x41\x02\x99\xdd\xdb\xa9\xe9\xb9\xa7" \
-  "\xa4\x6e\xcb\x62\x6e\xd5\x55\x28\x7d\xed\x7a\x4e" \
-  "\x0f\x0f\xa0\xc9\x4e\x70\xad\xa5\x83\xfd\xb6\x16" \
-  "\xf6\x95\xa6\x4a\x8c\x35\xc2\x1a\x0b\xdb\x20\x4f" \
-  "\xf8\x94\x2d\x26\xa0\x55\x94\x49\xd7\x28\x6d\x36" \
-  "\xe0\xb0\x39\x86\x82\x3f\x85\x8a\xe1\xd0\x4c\x75" \
-  "\x09\x6c\xab\x9b\x2a\x4e\x29\x27\x84\x88\x68\xad" \
-  "\x3f\x02\x88\xe9\x9a\x9f\x86\x25\x20\x09\x44\x06" \
-  "\x51\xfa\xf5\x97\x60\x8e\x1c\x06\x8d\x8f\xa2\xd0" \
-  "\xbb\x82\xd2\x83\x7b\xd0\xfa\xcb\xdb\x05\xb3\x82" \
-  "\xd7\x9e\xa3\x89\x67\x77\x85\x71\xaf\x0a\x3b\x12" \
-  "\x27\xa3\xc9\x10\x35\xdb\x56\xb1\x63\xa3\x62\xeb" \
-  "\xe1\x65\xba\x96\x59\x83\x62\x7b\xbb\x16\x29\x13" \
-  "\x9b\x0a\x6b\xf5\x51\x7f\x09\x4d\x73\x91\x17\x19" \
-  "\x39\x22\x08\x40\x23\xa9\xb5\x8e\x02\x28\x1a\x00" \
-  "\x04\x80\x48\xb9\xe4\x9a\x0d\x51\x90\x94\x16\x13" \
-  "\x6b\xe4\x2f\xbf\x86\xd0\xd9\x0b\xbb\x78\x8a\xbd" \
-  "\x4b\xd7\x72\x6a\xcf\xeb\xe4\x58\x06\x4c\x2d\x51" \
-  "\x5e\x7c\x0e\x9b\x86\x41\xe1\x5c\x48\x81\x13\x42" \
-  "\xb9\x0a\x5e\x86\xa9\xe3\xf9\x27\x11\x79\xf1\x19" \
-  "\x41\xa6\x01\xeb\xea\x1b\xd8\xb9\xe5\x36\x5e\xff" \
-  "\xab\x3b\x29\x94\x16\xfc\x45\x4b\x28\xff\xfd\x35" \
-  "\xac\x88\xc0\xb6\x6d\x0a\x21\x6c\xad\xb5\x31\xef" \
-  "\x80\x71\xf8\x83\x23\xa1\x49\x31\x5e\x98\xeb\x42" \
-  "\x7a\xe8\x1d\xa4\x0e\x0c\x40\xb5\xb6\xeb\xe0\x8a" \
-  "\x35\xf0\x96\x9c\xc7\xc3\x4b\x73\xb0\xbe\xbd\x49" \
-  "\xc7\xa7\xcb\x64\xb0\x05\xa1\x41\x45\xed\xb3\x96" \
-  "\x0a\x61\xd5\x43\x26\xd1\xc5\xaa\x30\x29\x82\x58" \
-  "\x14\x86\x34\x50\xcd\xb4\xc1\xca\x8f\xc1\x18\xfe" \
-  "\x80\x64\xa8\x40\x23\x87\x80\x1f\xdc\xad\xdc\xa0" \
-  "\x4a\x32\x93\x54\x5a\x6b\x02\x40\x1f\x35\xe1\xb1" \
-  "\xc9\xd1\xc3\xd9\x05\x67\x77\x9b\x91\x49\x5e\xf4" \
-  "\xd2\x36\xb2\x77\xfe\x83\xc8\x88\xd0\xf1\xaf\x6f" \
-  "\xe0\xe9\xb5\xab\x71\x7b\xec\x11\xe1\x44\x1d\x64" \
-  "\xdb\xb2\xb8\x6f\xf6\xbb\x6a\xe5\x5b\x2f\x53\x76" \
-  "\x60\x0f\x6a\x6d\x39\x78\xe7\xaf\x44\x59\x2e\xe2" \
-  "\x89\x07\x9e\xd2\xba\x5c\x04\x4f\x8e\x01\xa9\x34" \
-  "\xa2\xa1\x8f\xb1\x1b\xbf\xa7\x8d\xc9\x71\x62\xa7" \
-  "\x88\x92\xef\x09\x47\x0b\x71\xa4\xff\xdd\x31\x00" \
-  "\xb5\x79\x00\x06\x10\xee\xec\x7b\xe5\xd5\x4b\x56" \
-  "\xad\x5b\x97\x3f\x3a\x41\x03\xc9\x26\xea\x5e\x90" \
-  "\x43\xcc\x73\x30\xb7\x62\x15\x1f\xb2\xa7\xc8\xa1" \
-  "\x39\x28\x62\xb8\xce\x2c\x3a\xd0\x4a\x89\xe7\xb6" \
-  "\x92\x18\xd8\x43\x51\xd3\x80\xbb\xfe\x66\x46\xef" \
-  "\x4a\x12\xc2\x60\x34\x66\x98\x1a\x32\x04\x30\x0f" \
-  "\x26\xc7\xe5\x81\xa5\x97\x71\xb3\x5e\x8f\xec\xa8" \
-  "\x0d\x77\xa2\x40\x76\xb2\x81\x5f\x7d\xe1\x99\x57" \
-  "\x01\x84\x00\xc2\x79\x80\xea\xbe\xbd\xef\xf4\xed" \
-  "\x1b\xda\xf3\xaf\xee\x6c\xcf\xca\x63\x97\x5c\xcd" \
-  "\xde\x37\x37\x21\x6e\xc6\xd0\xd0\x9c\xe5\xae\xd9" \
-  "\x22\x7e\xe4\xde\xc0\xd3\xb2\x48\x92\x0d\x6d\x9a" \
-  "\x3e\xe6\xc2\x40\xc8\x54\x0a\xa6\x52\xa8\xf4\x2c" \
-  "\x65\xa5\x42\x30\x33\x40\x02\xcc\x35\x80\x85\x78" \
-  "\x59\xbe\x8d\xf7\x66\xf6\x8a\x6b\xdd\x55\x30\xfc" \
-  "\x76\xc4\xb4\xc5\x23\x23\x07\xc6\xdf\xd8\xfe\x97" \
-  "\xbf\x02\xf0\x00\xe8\xf9\x8b\xc8\x00\xd0\x9a\x6e" \
-  "\x6a\xbe\xe0\xde\x4d\x3f\x7f\xb2\x1d\x68\x6d\x5d" \
-  "\x74\x16\x38\x91\x64\xce\x75\x21\x7b\x78\x08\x8d" \
-  "\x63\x47\x61\xc7\xe3\x5c\xb9\x6c\x1d\x54\xba\x95" \
-  "\x45\xa5\x44\x55\xcb\x62\x5d\x29\x13\x27\x1a\x20" \
-  "\xe2\x09\x30\x48\xb1\x0e\x85\xef\x7b\x54\xf5\x5d" \
-  "\x1e\x8d\x4d\x88\xb6\x48\x23\x69\x66\x9c\xc8\x17" \
-  "\x51\x3e\x72\xaa\xfc\xf0\x96\x3b\xef\x18\x1b\x1d" \
-  "\xfe\x27\x80\xe3\x00\xfc\xf9\x59\xa0\x01\x28\xaf" \
-  "\xea\x7a\x7b\x87\x87\xf6\x9d\x7f\xee\xf2\x4b\xda" \
-  "\xdb\xda\x52\x61\xa2\x81\xa0\x14\xb9\x4e\x85\x66" \
-  "\x5b\xda\x68\xca\x0f\xe8\x88\xaf\xa9\x36\x72\x80" \
-  "\xe8\xe9\xc7\x05\xbd\xb9\x5d\xe8\xfc\x11\x9a\x5c" \
-  "\x74\x0e\xdc\x23\xef\xd3\x89\x91\x61\x39\x91\x1f" \
-  "\xa3\xd9\x8a\x43\xb1\xa4\x2d\xce\x4e\xb4\x51\x52" \
-  "\x46\x41\x55\x85\xf1\x43\xa3\x85\x2d\x9b\xef\xbe" \
-  "\x6f\x74\x74\xf8\x4d\x00\xd3\x00\x9c\x8f\x4f\xc3" \
-  "\x10\x40\xe8\xba\x4e\xf9\xad\xfd\xfd\x6f\x25\x32" \
-  "\x99\xf6\xce\xf3\x57\xe6\x0c\x82\xe0\xaa\x4b\xa1" \
-  "\x1f\xa0\xe4\x78\x98\x92\x49\x76\x4f\x16\xe8\x64" \
-  "\xac\x09\x85\x4c\x0e\xf9\x64\x1b\xcf\x58\x71\xaa" \
-  "\x0e\x0e\x90\x37\x3e\x8e\xda\xd4\x24\xe9\x5a\x8d" \
-  "\x62\x6d\xcd\xb0\xa3\x12\x4e\xd9\x51\x6f\xbc\xb6" \
-  "\xbd\xff\xc1\xdf\xfc\xec\xde\xe3\xc7\x27\xfb\xeb" \
-  "\x95\x97\x3f\xba\x81\x71\xa6\x08\x40\x1c\x40\x06" \
-  "\x40\x4b\xd7\xd9\xdd\x17\x6f\xfc\xc6\x77\x36\x7e" \
-  "\x75\xf5\xb5\x17\x47\x22\x76\xd4\x29\x39\xe2\x44" \
-  "\xc9\x07\x0a\x79\xa8\x52\x11\x22\x08\xa0\x2c\x0b" \
-  "\x68\x5d\x80\xc8\xa1\xfd\x90\xcc\x20\x02\xf4\xc2" \
-  "\x2e\x9d\xea\xe9\x0a\x0e\x1e\xec\xdf\xf7\xfc\x0b" \
-  "\xdb\x5e\x78\x6f\xff\xe0\x2e\x00\x05\x00\xa7\x00" \
-  "\xcc\xd5\x1d\xff\x44\x80\x79\x45\x00\x34\xd4\x23" \
-  "\x1d\x8f\x27\xba\x56\x5e\x78\xd9\x05\x5f\x3a\xf7" \
-  "\x2b\xcb\x52\x4d\x1d\x67\xb5\x2f\x5c\xbc\x20\x62" \
-  "\x46\x2d\x30\x04\xb3\x26\x68\xa5\x7c\xa7\x54\x9b" \
-  "\x1a\x39\x78\xe2\x64\x7e\x64\x72\x64\xf2\xe8\xd0" \
-  "\xd0\xc1\xbd\x7b\xca\xe5\xd2\x08\x80\x12\x80\x62" \
-  "\x7d\xad\xd6\x9b\xfe\x8c\x8a\xff\x9b\x04\x3e\x1c" \
-  "\x18\x09\x00\xb1\xba\x33\x71\x00\xb6\x10\x22\x1e" \
-  "\x8d\xc6\x92\x96\x15\xb1\x89\x04\x82\x5a\xe0\x57" \
-  "\xdd\x8a\xa3\x94\x9a\xab\x27\xa9\x02\xa8\x00\x70" \
-  "\xeb\x67\xed\x02\x50\x9f\x94\xe4\xb3\xfc\x15\x13" \
-  "\x00\x13\x80\x55\x77\xc6\xac\xaf\xa2\x1e\x5c\x7f" \
-  "\xa7\x86\x0f\xfb\xc8\xaf\x3f\xfb\x00\x82\x8f\x57" \
-  "\xfc\x79\x00\x3e\x2e\x71\x5a\xe0\x34\x00\x5d\x0f" \
-  "\xfe\xb4\xa4\x5f\xe8\x0b\x9d\xae\x7f\x03\x0c\xdb" \
-  "\xe8\xdf\x8f\xa4\x44\x04\x00\x00\x00\x00\x49\x45" \
-  "\x4e\x44\xae\x42\x60\x82"
+    "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
+    "\x49\x48\x44\x52\x00\x00\x00\x20\x00\x00\x00\x20" \
+    "\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\x00\x00\x08" \
+    "\x3d\x49\x44\x41\x54\x78\x9c\xed\x96\x5d\x6c\x1c" \
+    "\xd5\x15\xc7\xff\xe7\xde\x99\xd9\xd9\x4f\x7b\xbd" \
+    "\xfe\x88\xd7\x1b\x6c\x12\x3b\x35\x04\x92\xb4\xe1" \
+    "\x33\x40\x53\x48\x44\x09\x22\x04\xa2\xd2\xd2\x87" \
+    "\x36\x85\xf6\xa5\x55\x11\xa5\x2d\x50\x21\x68\xd5" \
+    "\x02\x2a\x0d\x11\x05\xaa\x3e\x20\x50\x24\xd4\x40" \
+    "\x11\x85\x16\xa9\xa0\x50\xa0\x8a\x83\x02\x09\x58" \
+    "\x75\xe4\x38\x21\x90\x38\x8e\xed\xac\xed\x6c\xe2" \
+    "\xd8\xbb\xeb\x9d\xd9\x99\xd9\xb9\xf7\xf4\x81\x35" \
+    "\x4a\x28\x15\x08\xa9\xea\x0b\x7f\xe9\xe8\xce\x95" \
+    "\x66\x74\x7e\xe7\x7f\x8f\xee\x19\xe0\x0b\xfd\x9f" \
+    "\x45\x9f\xe7\xa3\xde\xde\x5e\x23\x91\x48\xc4\xb4" \
+    "\xd6\x36\x00\xb2\x2c\xcb\xb3\x6d\xdb\xed\xeb\xeb" \
+    "\xab\xfd\x4f\x00\xd6\xad\xbb\x36\xbd\x62\xc5\x85" \
+    "\x97\x5e\xbe\xfa\xca\x65\xcb\x57\x2c\xef\x11\x24" \
+    "\xb3\xc2\xb4\x6d\xcb\x22\x10\x11\x54\xa8\x51\xab" \
+    "\x05\x81\x0a\xfd\xc2\xc1\xa1\xfd\xc3\x83\x43\x83" \
+    "\x07\x5f\xf9\xfb\xdf\x76\xed\xd8\xb1\x63\xea\x73" \
+    "\x03\x34\x36\x36\xe2\xba\xeb\x36\x7c\xf9\xd6\x5b" \
+    "\x6f\xbb\x69\x71\xf7\x79\x17\x47\xac\x08\x31\x98" \
+    "\x98\x18\x60\x0d\x82\x60\x80\x08\x00\x18\x1a\x52" \
+    "\x0a\x86\x20\x12\xc4\x86\x65\x51\x5c\x85\x4a\x14" \
+    "\xa6\xf2\xfd\x8f\x3d\xf6\xf0\x9f\xb7\x6d\x7b\xba" \
+    "\xaf\x52\xa9\xe8\xcf\x0c\xb0\x6c\xd9\xf2\x96\x2d" \
+    "\x5b\x9e\xb8\xa3\x67\xf1\xb2\x4b\x49\x08\x26\x22" \
+    "\x82\x24\x08\x22\x5b\x9a\x46\x3c\x54\x7e\x42\xa9" \
+    "\xc0\x54\x50\x82\x34\x41\x08\xc1\x64\x18\x35\x53" \
+    "\xd8\x2e\x42\xed\x19\x86\x88\x4a\xc9\x92\x84\x50" \
+    "\x5a\xb1\x2a\x4c\x8f\xf7\xff\xf8\x87\xb7\xdc\xdf" \
+    "\xd7\xb7\xe3\xe8\xa7\x02\x6c\xdc\x78\xd3\xd2\xdf" \
+    "\xfd\xf6\x89\xfb\x85\x61\xa7\x49\x48\x68\x70\xbc" \
+    "\x16\x78\x6d\xfc\xfe\x60\xc6\x35\x64\xcc\x4f\x35" \
+    "\x72\x2d\xd0\x2c\xa5\x41\x2c\x04\xc0\x82\x01\x66" \
+    "\xa5\x43\x92\x06\x21\x1a\x89\x50\x3c\x11\x55\xf1" \
+    "\x64\x83\x6b\x9b\x56\x51\x6b\xe5\x29\x85\x59\x61" \
+    "\x73\xf1\xf1\x47\x1f\x78\xe8\xa1\x07\x1f\xdc\x79" \
+    "\x7a\x3e\x79\xfa\x66\xfd\x86\x1b\x7b\x37\x6f\xde" \
+    "\xba\x45\x85\x68\x50\x8c\x98\x3b\x37\xd3\x63\x3c" \
+    "\xf7\x44\x4f\xe2\xd7\x3f\x6d\x8c\xbe\xf8\xac\x55" \
+    "\xb8\x72\x03\x47\x8d\x26\x81\x53\x2c\xec\x50\x52" \
+    "\x08\x62\xd3\x8e\xc1\x94\x36\x4c\xc3\x26\x43\x46" \
+    "\x69\x2e\x12\x60\x94\x4e\xca\x59\x67\xc6\x0a\x1c" \
+    "\xa7\x81\x14\x47\x41\x66\x45\xd5\x28\xbc\x62\xed" \
+    "\x55\x5f\x65\xe5\x8d\xec\x7e\xfb\xed\xf1\xff\x00" \
+    "\x68\x5d\xb0\x20\xf2\xe4\x9f\x5e\xfc\xbd\x50\x91" \
+    "\x66\xa7\x52\xe9\x28\xce\x16\xce\xa9\x55\xdc\x78" \
+    "\x70\x72\x86\xe6\xb2\x9d\x5c\xee\xea\x66\x71\xf9" \
+    "\x3a\x54\xa7\x4b\xe4\x55\x7c\x04\x9e\x0f\xb3\x25" \
+    "\xc9\x56\x24\x02\x61\x48\x21\xa4\xc1\x92\x0c\x7a" \
+    "\x3d\xb6\x97\x36\xd3\x56\xda\x21\x07\x49\x06\x51" \
+    "\xee\x0e\x72\xe6\xec\xec\xa9\x16\x21\x0d\x82\xb2" \
+    "\xe6\xd6\x5c\x73\xe5\x45\xbb\x76\xee\x78\x2d\x7f" \
+    "\xec\x98\x0b\x00\xc6\x3c\xc0\x5d\xf7\xdc\x73\x75" \
+    "\x63\x6b\x36\x37\x3b\x79\x6a\xa1\x5b\x2d\x9d\x65" \
+    "\x99\x71\x86\x25\x41\xab\xaf\xd3\x20\x08\x41\x82" \
+    "\x2d\x09\x8e\xe5\x5a\x95\xd6\x4c\x81\xd6\x30\x6c" \
+    "\x0b\x44\x12\x44\x20\x22\x49\x02\x82\x95\xef\x51" \
+    "\x67\xb5\x99\xcb\xb2\x4a\x29\xcf\x22\x8e\x98\x6c" \
+    "\x99\x29\x2a\x17\x67\x73\x7e\x50\x8d\xc1\x68\xf9" \
+    "\xe0\x27\x77\xfd\xe2\x5b\xbb\x6f\xb8\xfe\x8f\x67" \
+    "\xf4\xc0\xbe\xb1\xf1\x47\x98\x53\xeb\xcb\xf9\xe3" \
+    "\x5d\xa6\x88\x12\x91\x01\x21\x08\x44\x02\x00\x91" \
+    "\x60\xb0\x15\x86\xa2\x3a\xe1\x90\x61\x48\xf8\x96" \
+    "\xe2\x44\x36\xc3\x62\xc6\x21\xcd\x04\x8a\x0a\xa8" \
+    "\x64\x82\xdf\x8d\xbf\x4f\x5c\x03\xa7\xc3\x28\x3a" \
+    "\xfc\x66\x48\x92\x5a\x2a\x12\xcc\x1a\xb5\x9a\x03" \
+    "\x19\x11\xf9\x44\x4b\x6a\xf7\xb9\x5d\x99\x9b\xcf" \
+    "\x70\x80\x28\xd6\x59\x9e\x2c\x74\x46\x64\x82\x20" \
+    "\x04\x88\x05\x84\x29\x19\x1a\x42\x10\x69\x10\x53" \
+    "\x30\x57\x65\x37\xf0\xc8\x54\x04\x1d\x8b\xb2\xa9" \
+    "\x98\xbc\xb2\x22\x12\x12\x5e\xb5\x0a\x95\xb1\xf4" \
+    "\x1f\x8c\xe7\xc5\x34\x1f\xa7\xb4\xd9\x88\x47\xdd" \
+    "\x3b\xd4\xcb\x4d\xfd\xc6\x6e\x0c\xa0\x43\x2f\xe0" \
+    "\xeb\xdd\x8b\xb8\xc7\x6d\xcd\x7a\x65\xaf\x13\x40" \
+    "\x14\x40\x75\x1e\xc0\x9c\xce\x9f\xe8\x48\x99\x0d" \
+    "\x42\x6b\x01\x41\x02\x99\xdd\xdb\xa9\xe9\xb9\xa7" \
+    "\xa4\x6e\xcb\x62\x6e\xd5\x55\x28\x7d\xed\x7a\x4e" \
+    "\x0f\x0f\xa0\xc9\x4e\x70\xad\xa5\x83\xfd\xb6\x16" \
+    "\xf6\x95\xa6\x4a\x8c\x35\xc2\x1a\x0b\xdb\x20\x4f" \
+    "\xf8\x94\x2d\x26\xa0\x55\x94\x49\xd7\x28\x6d\x36" \
+    "\xe0\xb0\x39\x86\x82\x3f\x85\x8a\xe1\xd0\x4c\x75" \
+    "\x09\x6c\xab\x9b\x2a\x4e\x29\x27\x84\x88\x68\xad" \
+    "\x3f\x02\x88\xe9\x9a\x9f\x86\x25\x20\x09\x44\x06" \
+    "\x51\xfa\xf5\x97\x60\x8e\x1c\x06\x8d\x8f\xa2\xd0" \
+    "\xbb\x82\xd2\x83\x7b\xd0\xfa\xcb\xdb\x05\xb3\x82" \
+    "\xd7\x9e\xa3\x89\x67\x77\x85\x71\xaf\x0a\x3b\x12" \
+    "\x27\xa3\xc9\x10\x35\xdb\x56\xb1\x63\xa3\x62\xeb" \
+    "\xe1\x65\xba\x96\x59\x83\x62\x7b\xbb\x16\x29\x13" \
+    "\x9b\x0a\x6b\xf5\x51\x7f\x09\x4d\x73\x91\x17\x19" \
+    "\x39\x22\x08\x40\x23\xa9\xb5\x8e\x02\x28\x1a\x00" \
+    "\x04\x80\x48\xb9\xe4\x9a\x0d\x51\x90\x94\x16\x13" \
+    "\x6b\xe4\x2f\xbf\x86\xd0\xd9\x0b\xbb\x78\x8a\xbd" \
+    "\x4b\xd7\x72\x6a\xcf\xeb\xe4\x58\x06\x4c\x2d\x51" \
+    "\x5e\x7c\x0e\x9b\x86\x41\xe1\x5c\x48\x81\x13\x42" \
+    "\xb9\x0a\x5e\x86\xa9\xe3\xf9\x27\x11\x79\xf1\x19" \
+    "\x41\xa6\x01\xeb\xea\x1b\xd8\xb9\xe5\x36\x5e\xff" \
+    "\xab\x3b\x29\x94\x16\xfc\x45\x4b\x28\xff\xfd\x35" \
+    "\xac\x88\xc0\xb6\x6d\x0a\x21\x6c\xad\xb5\x31\xef" \
+    "\x80\x71\xf8\x83\x23\xa1\x49\x31\x5e\x98\xeb\x42" \
+    "\x7a\xe8\x1d\xa4\x0e\x0c\x40\xb5\xb6\xeb\xe0\x8a" \
+    "\x35\xf0\x96\x9c\xc7\xc3\x4b\x73\xb0\xbe\xbd\x49" \
+    "\xc7\xa7\xcb\x64\xb0\x05\xa1\x41\x45\xed\xb3\x96" \
+    "\x0a\x61\xd5\x43\x26\xd1\xc5\xaa\x30\x29\x82\x58" \
+    "\x14\x86\x34\x50\xcd\xb4\xc1\xca\x8f\xc1\x18\xfe" \
+    "\x80\x64\xa8\x40\x23\x87\x80\x1f\xdc\xad\xdc\xa0" \
+    "\x4a\x32\x93\x54\x5a\x6b\x02\x40\x1f\x35\xe1\xb1" \
+    "\xc9\xd1\xc3\xd9\x05\x67\x77\x9b\x91\x49\x5e\xf4" \
+    "\xd2\x36\xb2\x77\xfe\x83\xc8\x88\xd0\xf1\xaf\x6f" \
+    "\xe0\xe9\xb5\xab\x71\x7b\xec\x11\xe1\x44\x1d\x64" \
+    "\xdb\xb2\xb8\x6f\xf6\xbb\x6a\xe5\x5b\x2f\x53\x76" \
+    "\x60\x0f\x6a\x6d\x39\x78\xe7\xaf\x44\x59\x2e\xe2" \
+    "\x89\x07\x9e\xd2\xba\x5c\x04\x4f\x8e\x01\xa9\x34" \
+    "\xa2\xa1\x8f\xb1\x1b\xbf\xa7\x8d\xc9\x71\x62\xa7" \
+    "\x88\x92\xef\x09\x47\x0b\x71\xa4\xff\xdd\x31\x00" \
+    "\xb5\x79\x00\x06\x10\xee\xec\x7b\xe5\xd5\x4b\x56" \
+    "\xad\x5b\x97\x3f\x3a\x41\x03\xc9\x26\xea\x5e\x90" \
+    "\x43\xcc\x73\x30\xb7\x62\x15\x1f\xb2\xa7\xc8\xa1" \
+    "\x39\x28\x62\xb8\xce\x2c\x3a\xd0\x4a\x89\xe7\xb6" \
+    "\x92\x18\xd8\x43\x51\xd3\x80\xbb\xfe\x66\x46\xef" \
+    "\x4a\x12\xc2\x60\x34\x66\x98\x1a\x32\x04\x30\x0f" \
+    "\x26\xc7\xe5\x81\xa5\x97\x71\xb3\x5e\x8f\xec\xa8" \
+    "\x0d\x77\xa2\x40\x76\xb2\x81\x5f\x7d\xe1\x99\x57" \
+    "\x01\x84\x00\xc2\x79\x80\xea\xbe\xbd\xef\xf4\xed" \
+    "\x1b\xda\xf3\xaf\xee\x6c\xcf\xca\x63\x97\x5c\xcd" \
+    "\xde\x37\x37\x21\x6e\xc6\xd0\xd0\x9c\xe5\xae\xd9" \
+    "\x22\x7e\xe4\xde\xc0\xd3\xb2\x48\x92\x0d\x6d\x9a" \
+    "\x3e\xe6\xc2\x40\xc8\x54\x0a\xa6\x52\xa8\xf4\x2c" \
+    "\x65\xa5\x42\x30\x33\x40\x02\xcc\x35\x80\x85\x78" \
+    "\x59\xbe\x8d\xf7\x66\xf6\x8a\x6b\xdd\x55\x30\xfc" \
+    "\x76\xc4\xb4\xc5\x23\x23\x07\xc6\xdf\xd8\xfe\x97" \
+    "\xbf\x02\xf0\x00\xe8\xf9\x8b\xc8\x00\xd0\x9a\x6e" \
+    "\x6a\xbe\xe0\xde\x4d\x3f\x7f\xb2\x1d\x68\x6d\x5d" \
+    "\x74\x16\x38\x91\x64\xce\x75\x21\x7b\x78\x08\x8d" \
+    "\x63\x47\x61\xc7\xe3\x5c\xb9\x6c\x1d\x54\xba\x95" \
+    "\x45\xa5\x44\x55\xcb\x62\x5d\x29\x13\x27\x1a\x20" \
+    "\xe2\x09\x30\x48\xb1\x0e\x85\xef\x7b\x54\xf5\x5d" \
+    "\x1e\x8d\x4d\x88\xb6\x48\x23\x69\x66\x9c\xc8\x17" \
+    "\x51\x3e\x72\xaa\xfc\xf0\x96\x3b\xef\x18\x1b\x1d" \
+    "\xfe\x27\x80\xe3\x00\xfc\xf9\x59\xa0\x01\x28\xaf" \
+    "\xea\x7a\x7b\x87\x87\xf6\x9d\x7f\xee\xf2\x4b\xda" \
+    "\xdb\xda\x52\x61\xa2\x81\xa0\x14\xb9\x4e\x85\x66" \
+    "\x5b\xda\x68\xca\x0f\xe8\x88\xaf\xa9\x36\x72\x80" \
+    "\xe8\xe9\xc7\x05\xbd\xb9\x5d\xe8\xfc\x11\x9a\x5c" \
+    "\x74\x0e\xdc\x23\xef\xd3\x89\x91\x61\x39\x91\x1f" \
+    "\xa3\xd9\x8a\x43\xb1\xa4\x2d\xce\x4e\xb4\x51\x52" \
+    "\x46\x41\x55\x85\xf1\x43\xa3\x85\x2d\x9b\xef\xbe" \
+    "\x6f\x74\x74\xf8\x4d\x00\xd3\x00\x9c\x8f\x4f\xc3" \
+    "\x10\x40\xe8\xba\x4e\xf9\xad\xfd\xfd\x6f\x25\x32" \
+    "\x99\xf6\xce\xf3\x57\xe6\x0c\x82\xe0\xaa\x4b\xa1" \
+    "\x1f\xa0\xe4\x78\x98\x92\x49\x76\x4f\x16\xe8\x64" \
+    "\xac\x09\x85\x4c\x0e\xf9\x64\x1b\xcf\x58\x71\xaa" \
+    "\x0e\x0e\x90\x37\x3e\x8e\xda\xd4\x24\xe9\x5a\x8d" \
+    "\x62\x6d\xcd\xb0\xa3\x12\x4e\xd9\x51\x6f\xbc\xb6" \
+    "\xbd\xff\xc1\xdf\xfc\xec\xde\xe3\xc7\x27\xfb\xeb" \
+    "\x95\x97\x3f\xba\x81\x71\xa6\x08\x40\x1c\x40\x06" \
+    "\x40\x4b\xd7\xd9\xdd\x17\x6f\xfc\xc6\x77\x36\x7e" \
+    "\x75\xf5\xb5\x17\x47\x22\x76\xd4\x29\x39\xe2\x44" \
+    "\xc9\x07\x0a\x79\xa8\x52\x11\x22\x08\xa0\x2c\x0b" \
+    "\x68\x5d\x80\xc8\xa1\xfd\x90\xcc\x20\x02\xf4\xc2" \
+    "\x2e\x9d\xea\xe9\x0a\x0e\x1e\xec\xdf\xf7\xfc\x0b" \
+    "\xdb\x5e\x78\x6f\xff\xe0\x2e\x00\x05\x00\xa7\x00" \
+    "\xcc\xd5\x1d\xff\x44\x80\x79\x45\x00\x34\xd4\x23" \
+    "\x1d\x8f\x27\xba\x56\x5e\x78\xd9\x05\x5f\x3a\xf7" \
+    "\x2b\xcb\x52\x4d\x1d\x67\xb5\x2f\x5c\xbc\x20\x62" \
+    "\x46\x2d\x30\x04\xb3\x26\x68\xa5\x7c\xa7\x54\x9b" \
+    "\x1a\x39\x78\xe2\x64\x7e\x64\x72\x64\xf2\xe8\xd0" \
+    "\xd0\xc1\xbd\x7b\xca\xe5\xd2\x08\x80\x12\x80\x62" \
+    "\x7d\xad\xd6\x9b\xfe\x8c\x8a\xff\x9b\x04\x3e\x1c" \
+    "\x18\x09\x00\xb1\xba\x33\x71\x00\xb6\x10\x22\x1e" \
+    "\x8d\xc6\x92\x96\x15\xb1\x89\x04\x82\x5a\xe0\x57" \
+    "\xdd\x8a\xa3\x94\x9a\xab\x27\xa9\x02\xa8\x00\x70" \
+    "\xeb\x67\xed\x02\x50\x9f\x94\xe4\xb3\xfc\x15\x13" \
+    "\x00\x13\x80\x55\x77\xc6\xac\xaf\xa2\x1e\x5c\x7f" \
+    "\xa7\x86\x0f\xfb\xc8\xaf\x3f\xfb\x00\x82\x8f\x57" \
+    "\xfc\x79\x00\x3e\x2e\x71\x5a\xe0\x34\x00\x5d\x0f" \
+    "\xfe\xb4\xa4\x5f\xe8\x0b\x9d\xae\x7f\x03\x0c\xdb" \
+    "\xe8\xdf\x8f\xa4\x44\x04\x00\x00\x00\x00\x49\x45" \
+    "\x4e\x44\xae\x42\x60\x82"
 image1_data = \
-  "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
-  "\x49\x48\x44\x52\x00\x00\x00\x0f\x00\x00\x00\x0e" \
-  "\x08\x06\x00\x00\x00\xf0\x8a\x46\xef\x00\x00\x01" \
-  "\xd7\x49\x44\x41\x54\x78\x9c\x85\x92\xcd\x6a\x53" \
-  "\x51\x14\x85\xbf\x9b\x5c\x09\x89\x69\xa3\xad\xb6" \
-  "\x45\xc1\xe2\x4f\x1a\x9d\x28\x8a\x13\x91\x80\xc1" \
-  "\xd0\xa9\xe0\x44\xa1\x82\x38\xa8\x93\x4e\xd4\xe2" \
-  "\xd4\x17\x70\x20\x8a\x51\x21\xfa\x04\xfa\x06\x05" \
-  "\x87\x22\xc4\x61\x41\x09\x0d\x04\x35\x85\x04\x93" \
-  "\xe6\xaf\xf6\x26\xb9\xe7\x2c\x07\x6d\xd3\x34\x11" \
-  "\xba\x60\x71\xe0\xec\xb3\xce\x62\xef\xbd\x90\xc4" \
-  "\x20\x5b\xad\x96\x96\x9f\x3c\x55\xa5\x52\xd1\x70" \
-  "\x6d\x98\x01\x06\xd0\x6e\xb7\x95\x79\x91\xe5\x88" \
-  "\x3b\x85\x31\x96\x83\xe0\x48\x02\xa0\xd3\xe9\x28" \
-  "\xf3\x32\xcb\x4c\x60\x8e\xdf\xb5\x3c\x53\x73\x51" \
-  "\x42\xa1\xd0\xbe\xc7\xb1\x58\x8c\x54\x2a\x45\x38" \
-  "\x1c\x76\xfa\x62\xdf\xf7\xf5\xe6\x55\x96\xe3\x9c" \
-  "\xa3\x56\xde\xe2\xd8\xd4\x18\x96\x3d\x67\x21\xac" \
-  "\x0c\x5e\x6f\x8b\x52\x23\xcf\xdd\x07\xb7\x48\x24" \
-  "\x12\x8e\x23\x89\x77\xaf\xdf\x2b\xd6\x3d\xc5\x46" \
-  "\xb9\x83\xac\xc0\xd9\x15\x81\x24\x8c\x84\x95\xc5" \
-  "\xf3\x7d\xa6\xa7\xc7\x21\x5a\x63\xe1\xe1\x6d\x82" \
-  "\x97\x2f\x5e\x55\x77\xfd\x30\xed\x3f\x86\xdd\x16" \
-  "\xf6\x3b\x82\x95\xc5\x58\x8b\x91\xa5\xd6\xdc\xe4" \
-  "\x68\x64\x92\x46\x6f\x9d\xc0\xcd\xf9\x1b\x14\x36" \
-  "\x7e\xe0\x19\x7f\x48\xb8\x0d\xbb\xf3\xa1\x91\x30" \
-  "\xb2\x08\x68\x79\x3d\xca\xbf\xea\x04\xa2\xd1\xa8" \
-  "\xb3\xf4\x68\x81\x92\xf7\x9d\xae\x35\xfb\x5c\xa5" \
-  "\xed\xd3\x58\xdb\x77\xb7\xb2\xf4\x7a\x06\x6f\xab" \
-  "\xbb\x37\xed\xc2\x5a\x41\x99\xe7\x9f\x38\x3d\x76" \
-  "\x9e\x4d\xbf\xc3\xdf\x6e\x13\x83\xb0\x56\x08\x70" \
-  "\x02\x2e\xae\x13\xc2\xc8\x30\x39\x31\xce\x89\xb3" \
-  "\x03\xab\x02\xc8\xe5\xbe\xe9\xe3\x87\x2f\x6c\x7a" \
-  "\x75\xae\xa5\xcf\x10\x0c\x06\xfb\xb5\x66\xa3\x4d" \
-  "\xee\xeb\x1a\x13\xe1\x0b\xb8\xee\x21\xae\xcf\x4f" \
-  "\x32\x92\x9a\x95\x95\xcf\xba\x77\x67\x49\xd5\x6a" \
-  "\x75\x24\x61\xf9\x7c\x5e\x8b\xf7\x9f\xe9\xf1\xe2" \
-  "\x5b\x15\x8b\x45\xb9\xc3\xa9\x49\xa7\x53\x4e\x28" \
-  "\xe4\x2a\x12\x89\x8c\x24\x2a\x1e\x8f\x3b\x33\x27" \
-  "\xa3\xaa\x55\xea\xcc\xce\xce\x3a\x23\x62\x80\x64" \
-  "\x32\xe9\xfc\xef\x1e\xe0\xd2\x95\x04\xeb\x3f\x6b" \
-  "\x3b\x53\x3d\x20\xfc\xc3\x5c\x5d\x5d\x55\xa9\x54" \
-  "\x92\x24\xfe\x01\x03\x3d\x5a\xfa\x32\x50\xe5\x56" \
-  "\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82"
+    "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
+    "\x49\x48\x44\x52\x00\x00\x00\x0f\x00\x00\x00\x0e" \
+    "\x08\x06\x00\x00\x00\xf0\x8a\x46\xef\x00\x00\x01" \
+    "\xd7\x49\x44\x41\x54\x78\x9c\x85\x92\xcd\x6a\x53" \
+    "\x51\x14\x85\xbf\x9b\x5c\x09\x89\x69\xa3\xad\xb6" \
+    "\x45\xc1\xe2\x4f\x1a\x9d\x28\x8a\x13\x91\x80\xc1" \
+    "\xd0\xa9\xe0\x44\xa1\x82\x38\xa8\x93\x4e\xd4\xe2" \
+    "\xd4\x17\x70\x20\x8a\x51\x21\xfa\x04\xfa\x06\x05" \
+    "\x87\x22\xc4\x61\x41\x09\x0d\x04\x35\x85\x04\x93" \
+    "\xe6\xaf\xf6\x26\xb9\xe7\x2c\x07\x6d\xd3\x34\x11" \
+    "\xba\x60\x71\xe0\xec\xb3\xce\x62\xef\xbd\x90\xc4" \
+    "\x20\x5b\xad\x96\x96\x9f\x3c\x55\xa5\x52\xd1\x70" \
+    "\x6d\x98\x01\x06\xd0\x6e\xb7\x95\x79\x91\xe5\x88" \
+    "\x3b\x85\x31\x96\x83\xe0\x48\x02\xa0\xd3\xe9\x28" \
+    "\xf3\x32\xcb\x4c\x60\x8e\xdf\xb5\x3c\x53\x73\x51" \
+    "\x42\xa1\xd0\xbe\xc7\xb1\x58\x8c\x54\x2a\x45\x38" \
+    "\x1c\x76\xfa\x62\xdf\xf7\xf5\xe6\x55\x96\xe3\x9c" \
+    "\xa3\x56\xde\xe2\xd8\xd4\x18\x96\x3d\x67\x21\xac" \
+    "\x0c\x5e\x6f\x8b\x52\x23\xcf\xdd\x07\xb7\x48\x24" \
+    "\x12\x8e\x23\x89\x77\xaf\xdf\x2b\xd6\x3d\xc5\x46" \
+    "\xb9\x83\xac\xc0\xd9\x15\x81\x24\x8c\x84\x95\xc5" \
+    "\xf3\x7d\xa6\xa7\xc7\x21\x5a\x63\xe1\xe1\x6d\x82" \
+    "\x97\x2f\x5e\x55\x77\xfd\x30\xed\x3f\x86\xdd\x16" \
+    "\xf6\x3b\x82\x95\xc5\x58\x8b\x91\xa5\xd6\xdc\xe4" \
+    "\x68\x64\x92\x46\x6f\x9d\xc0\xcd\xf9\x1b\x14\x36" \
+    "\x7e\xe0\x19\x7f\x48\xb8\x0d\xbb\xf3\xa1\x91\x30" \
+    "\xb2\x08\x68\x79\x3d\xca\xbf\xea\x04\xa2\xd1\xa8" \
+    "\xb3\xf4\x68\x81\x92\xf7\x9d\xae\x35\xfb\x5c\xa5" \
+    "\xed\xd3\x58\xdb\x77\xb7\xb2\xf4\x7a\x06\x6f\xab" \
+    "\xbb\x37\xed\xc2\x5a\x41\x99\xe7\x9f\x38\x3d\x76" \
+    "\x9e\x4d\xbf\xc3\xdf\x6e\x13\x83\xb0\x56\x08\x70" \
+    "\x02\x2e\xae\x13\xc2\xc8\x30\x39\x31\xce\x89\xb3" \
+    "\x03\xab\x02\xc8\xe5\xbe\xe9\xe3\x87\x2f\x6c\x7a" \
+    "\x75\xae\xa5\xcf\x10\x0c\x06\xfb\xb5\x66\xa3\x4d" \
+    "\xee\xeb\x1a\x13\xe1\x0b\xb8\xee\x21\xae\xcf\x4f" \
+    "\x32\x92\x9a\x95\x95\xcf\xba\x77\x67\x49\xd5\x6a" \
+    "\x75\x24\x61\xf9\x7c\x5e\x8b\xf7\x9f\xe9\xf1\xe2" \
+    "\x5b\x15\x8b\x45\xb9\xc3\xa9\x49\xa7\x53\x4e\x28" \
+    "\xe4\x2a\x12\x89\x8c\x24\x2a\x1e\x8f\x3b\x33\x27" \
+    "\xa3\xaa\x55\xea\xcc\xce\xce\x3a\x23\x62\x80\x64" \
+    "\x32\xe9\xfc\xef\x1e\xe0\xd2\x95\x04\xeb\x3f\x6b" \
+    "\x3b\x53\x3d\x20\xfc\xc3\x5c\x5d\x5d\x55\xa9\x54" \
+    "\x92\x24\xfe\x01\x03\x3d\x5a\xfa\x32\x50\xe5\x56" \
+    "\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82"
 
 class pyTwoPop_PetriDishesView(QWidget):
-  def __init__(self,parent = None,name = None,fl = 0):
-    QWidget.__init__(self,parent,name,fl)
+    def __init__(self,parent = None,name = None,fl = 0):
+        QWidget.__init__(self,parent,name,fl)
 
-    self.image0 = QPixmap()
-    self.image0.loadFromData(image0_data,"PNG")
-    self.image1 = QPixmap()
-    self.image1.loadFromData(image1_data,"PNG")
-    if not name:
-      self.setName("pyTwoPop_PetriDishesView")
+        self.image0 = QPixmap()
+        self.image0.loadFromData(image0_data,"PNG")
+        self.image1 = QPixmap()
+        self.image1.loadFromData(image1_data,"PNG")
+        if not name:
+            self.setName("pyTwoPop_PetriDishesView")
 
 
-    pyTwoPop_PetriDishesViewLayout = QVBoxLayout(self,0,6,"pyTwoPop_PetriDishesViewLayout")
+        pyTwoPop_PetriDishesViewLayout = QVBoxLayout(self,0,6,"pyTwoPop_PetriDishesViewLayout")
 
-    layout193 = QGridLayout(None,1,1,0,6,"layout193")
+        layout193 = QGridLayout(None,1,1,0,6,"layout193")
 
-    self.pyGradientScaleCtrl1 = pyGradientScaleCtrl(self,"pyGradientScaleCtrl1")
-    self.pyGradientScaleCtrl1.setSizePolicy(QSizePolicy(0,3,0,0,self.pyGradientScaleCtrl1.sizePolicy().hasHeightForWidth()))
-    self.pyGradientScaleCtrl1.setMinimumSize(QSize(40,100))
+        self.pyGradientScaleCtrl1 = pyGradientScaleCtrl(self,"pyGradientScaleCtrl1")
+        self.pyGradientScaleCtrl1.setSizePolicy(QSizePolicy(0,3,0,0,self.pyGradientScaleCtrl1.sizePolicy().hasHeightForWidth()))
+        self.pyGradientScaleCtrl1.setMinimumSize(QSize(40,100))
 
-    layout193.addWidget(self.pyGradientScaleCtrl1,1,1)
+        layout193.addWidget(self.pyGradientScaleCtrl1,1,1)
 
-    layout179_2 = QHBoxLayout(None,0,6,"layout179_2")
+        layout179_2 = QHBoxLayout(None,0,6,"layout179_2")
 
-    self.pixmapLabel1_2 = QLabel(self,"pixmapLabel1_2")
-    self.pixmapLabel1_2.setSizePolicy(QSizePolicy(0,0,0,0,self.pixmapLabel1_2.sizePolicy().hasHeightForWidth()))
-    self.pixmapLabel1_2.setPixmap(self.image0)
-    self.pixmapLabel1_2.setScaledContents(1)
-    layout179_2.addWidget(self.pixmapLabel1_2)
+        self.pixmapLabel1_2 = QLabel(self,"pixmapLabel1_2")
+        self.pixmapLabel1_2.setSizePolicy(QSizePolicy(0,0,0,0,self.pixmapLabel1_2.sizePolicy().hasHeightForWidth()))
+        self.pixmapLabel1_2.setPixmap(self.image0)
+        self.pixmapLabel1_2.setScaledContents(1)
+        layout179_2.addWidget(self.pixmapLabel1_2)
 
-    self.textLabel3_2 = QLabel(self,"textLabel3_2")
-    self.textLabel3_2.setSizePolicy(QSizePolicy(3,5,0,0,self.textLabel3_2.sizePolicy().hasHeightForWidth()))
-    textLabel3_2_font = QFont(self.textLabel3_2.font())
-    textLabel3_2_font.setPointSize(11)
-    self.textLabel3_2.setFont(textLabel3_2_font)
-    layout179_2.addWidget(self.textLabel3_2)
+        self.textLabel3_2 = QLabel(self,"textLabel3_2")
+        self.textLabel3_2.setSizePolicy(QSizePolicy(3,5,0,0,self.textLabel3_2.sizePolicy().hasHeightForWidth()))
+        textLabel3_2_font = QFont(self.textLabel3_2.font())
+        textLabel3_2_font.setPointSize(11)
+        self.textLabel3_2.setFont(textLabel3_2_font)
+        layout179_2.addWidget(self.textLabel3_2)
 
-    layout178_2 = QVBoxLayout(None,0,6,"layout178_2")
-    spacer126_3 = QSpacerItem(1,1,QSizePolicy.Minimum,QSizePolicy.Minimum)
-    layout178_2.addItem(spacer126_3)
+        layout178_2 = QVBoxLayout(None,0,6,"layout178_2")
+        spacer126_3 = QSpacerItem(1,1,QSizePolicy.Minimum,QSizePolicy.Minimum)
+        layout178_2.addItem(spacer126_3)
 
-    self.toolButton31_2_2 = QToolButton(self,"toolButton31_2_2")
-    self.toolButton31_2_2.setSizePolicy(QSizePolicy(5,5,0,0,self.toolButton31_2_2.sizePolicy().hasHeightForWidth()))
-    toolButton31_2_2_font = QFont(self.toolButton31_2_2.font())
-    toolButton31_2_2_font.setPointSize(10)
-    self.toolButton31_2_2.setFont(toolButton31_2_2_font)
-    self.toolButton31_2_2.setIconSet(QIconSet(self.image1))
-    layout178_2.addWidget(self.toolButton31_2_2)
-    spacer126_2_2 = QSpacerItem(1,1,QSizePolicy.Minimum,QSizePolicy.Minimum)
-    layout178_2.addItem(spacer126_2_2)
-    layout179_2.addLayout(layout178_2)
+        self.toolButton31_2_2 = QToolButton(self,"toolButton31_2_2")
+        self.toolButton31_2_2.setSizePolicy(QSizePolicy(5,5,0,0,self.toolButton31_2_2.sizePolicy().hasHeightForWidth()))
+        toolButton31_2_2_font = QFont(self.toolButton31_2_2.font())
+        toolButton31_2_2_font.setPointSize(10)
+        self.toolButton31_2_2.setFont(toolButton31_2_2_font)
+        self.toolButton31_2_2.setIconSet(QIconSet(self.image1))
+        layout178_2.addWidget(self.toolButton31_2_2)
+        spacer126_2_2 = QSpacerItem(1,1,QSizePolicy.Minimum,QSizePolicy.Minimum)
+        layout178_2.addItem(spacer126_2_2)
+        layout179_2.addLayout(layout178_2)
 
-    layout193.addLayout(layout179_2,0,2)
+        layout193.addLayout(layout179_2,0,2)
 
-    layout8 = QHBoxLayout(None,0,6,"layout8")
-    spacer6 = QSpacerItem(91,21,QSizePolicy.Expanding,QSizePolicy.Minimum)
-    layout8.addItem(spacer6)
+        layout8 = QHBoxLayout(None,0,6,"layout8")
+        spacer6 = QSpacerItem(91,21,QSizePolicy.Expanding,QSizePolicy.Minimum)
+        layout8.addItem(spacer6)
 
-    self.textLabel10_3 = QLabel(self,"textLabel10_3")
-    self.textLabel10_3.setSizePolicy(QSizePolicy(0,1,0,0,self.textLabel10_3.sizePolicy().hasHeightForWidth()))
-    layout8.addWidget(self.textLabel10_3)
+        self.textLabel10_3 = QLabel(self,"textLabel10_3")
+        self.textLabel10_3.setSizePolicy(QSizePolicy(0,1,0,0,self.textLabel10_3.sizePolicy().hasHeightForWidth()))
+        layout8.addWidget(self.textLabel10_3)
 
-    self.spinBox1_3 = QSpinBox(self,"spinBox1_3")
-    self.spinBox1_3.setSizePolicy(QSizePolicy(0,0,0,0,self.spinBox1_3.sizePolicy().hasHeightForWidth()))
-    layout8.addWidget(self.spinBox1_3)
+        self.spinBox1_3 = QSpinBox(self,"spinBox1_3")
+        self.spinBox1_3.setSizePolicy(QSizePolicy(0,0,0,0,self.spinBox1_3.sizePolicy().hasHeightForWidth()))
+        layout8.addWidget(self.spinBox1_3)
 
-    layout193.addLayout(layout8,2,2)
+        layout193.addLayout(layout8,2,2)
 
-    layout9 = QHBoxLayout(None,0,6,"layout9")
-    spacer5 = QSpacerItem(101,31,QSizePolicy.Expanding,QSizePolicy.Minimum)
-    layout9.addItem(spacer5)
+        layout9 = QHBoxLayout(None,0,6,"layout9")
+        spacer5 = QSpacerItem(101,31,QSizePolicy.Expanding,QSizePolicy.Minimum)
+        layout9.addItem(spacer5)
 
-    self.textLabel10_2 = QLabel(self,"textLabel10_2")
-    self.textLabel10_2.setSizePolicy(QSizePolicy(0,1,0,0,self.textLabel10_2.sizePolicy().hasHeightForWidth()))
-    layout9.addWidget(self.textLabel10_2)
+        self.textLabel10_2 = QLabel(self,"textLabel10_2")
+        self.textLabel10_2.setSizePolicy(QSizePolicy(0,1,0,0,self.textLabel10_2.sizePolicy().hasHeightForWidth()))
+        layout9.addWidget(self.textLabel10_2)
 
-    self.spinBox1_2 = QSpinBox(self,"spinBox1_2")
-    self.spinBox1_2.setSizePolicy(QSizePolicy(0,0,0,0,self.spinBox1_2.sizePolicy().hasHeightForWidth()))
-    layout9.addWidget(self.spinBox1_2)
+        self.spinBox1_2 = QSpinBox(self,"spinBox1_2")
+        self.spinBox1_2.setSizePolicy(QSizePolicy(0,0,0,0,self.spinBox1_2.sizePolicy().hasHeightForWidth()))
+        layout9.addWidget(self.spinBox1_2)
 
-    layout193.addLayout(layout9,2,0)
+        layout193.addLayout(layout9,2,0)
 
-    layout179 = QHBoxLayout(None,0,6,"layout179")
+        layout179 = QHBoxLayout(None,0,6,"layout179")
 
-    self.pixmapLabel1 = QLabel(self,"pixmapLabel1")
-    self.pixmapLabel1.setSizePolicy(QSizePolicy(0,0,0,0,self.pixmapLabel1.sizePolicy().hasHeightForWidth()))
-    self.pixmapLabel1.setPixmap(self.image0)
-    self.pixmapLabel1.setScaledContents(1)
-    layout179.addWidget(self.pixmapLabel1)
+        self.pixmapLabel1 = QLabel(self,"pixmapLabel1")
+        self.pixmapLabel1.setSizePolicy(QSizePolicy(0,0,0,0,self.pixmapLabel1.sizePolicy().hasHeightForWidth()))
+        self.pixmapLabel1.setPixmap(self.image0)
+        self.pixmapLabel1.setScaledContents(1)
+        layout179.addWidget(self.pixmapLabel1)
 
-    self.textLabel3 = QLabel(self,"textLabel3")
-    self.textLabel3.setSizePolicy(QSizePolicy(3,5,0,0,self.textLabel3.sizePolicy().hasHeightForWidth()))
-    textLabel3_font = QFont(self.textLabel3.font())
-    textLabel3_font.setPointSize(11)
-    self.textLabel3.setFont(textLabel3_font)
-    layout179.addWidget(self.textLabel3)
+        self.textLabel3 = QLabel(self,"textLabel3")
+        self.textLabel3.setSizePolicy(QSizePolicy(3,5,0,0,self.textLabel3.sizePolicy().hasHeightForWidth()))
+        textLabel3_font = QFont(self.textLabel3.font())
+        textLabel3_font.setPointSize(11)
+        self.textLabel3.setFont(textLabel3_font)
+        layout179.addWidget(self.textLabel3)
 
-    layout178 = QVBoxLayout(None,0,6,"layout178")
-    spacer126 = QSpacerItem(1,1,QSizePolicy.Minimum,QSizePolicy.Minimum)
-    layout178.addItem(spacer126)
+        layout178 = QVBoxLayout(None,0,6,"layout178")
+        spacer126 = QSpacerItem(1,1,QSizePolicy.Minimum,QSizePolicy.Minimum)
+        layout178.addItem(spacer126)
 
-    self.toolButton31_2 = QToolButton(self,"toolButton31_2")
-    self.toolButton31_2.setSizePolicy(QSizePolicy(5,5,0,0,self.toolButton31_2.sizePolicy().hasHeightForWidth()))
-    toolButton31_2_font = QFont(self.toolButton31_2.font())
-    toolButton31_2_font.setPointSize(10)
-    self.toolButton31_2.setFont(toolButton31_2_font)
-    self.toolButton31_2.setIconSet(QIconSet(self.image1))
-    layout178.addWidget(self.toolButton31_2)
-    spacer126_2 = QSpacerItem(1,1,QSizePolicy.Minimum,QSizePolicy.Minimum)
-    layout178.addItem(spacer126_2)
-    layout179.addLayout(layout178)
+        self.toolButton31_2 = QToolButton(self,"toolButton31_2")
+        self.toolButton31_2.setSizePolicy(QSizePolicy(5,5,0,0,self.toolButton31_2.sizePolicy().hasHeightForWidth()))
+        toolButton31_2_font = QFont(self.toolButton31_2.font())
+        toolButton31_2_font.setPointSize(10)
+        self.toolButton31_2.setFont(toolButton31_2_font)
+        self.toolButton31_2.setIconSet(QIconSet(self.image1))
+        layout178.addWidget(self.toolButton31_2)
+        spacer126_2 = QSpacerItem(1,1,QSizePolicy.Minimum,QSizePolicy.Minimum)
+        layout178.addItem(spacer126_2)
+        layout179.addLayout(layout178)
 
-    layout193.addLayout(layout179,0,0)
+        layout193.addLayout(layout179,0,0)
 
-    self.pyPetriDishCtrl1 = pyPetriDishCtrl(self,"pyPetriDishCtrl1")
-    self.pyPetriDishCtrl1.setSizePolicy(QSizePolicy(3,3,1,1,self.pyPetriDishCtrl1.sizePolicy().hasHeightForWidth()))
-    self.pyPetriDishCtrl1.setMinimumSize(QSize(200,200))
+        self.pyPetriDishCtrl1 = pyPetriDishCtrl(self,"pyPetriDishCtrl1")
+        self.pyPetriDishCtrl1.setSizePolicy(QSizePolicy(3,3,1,1,self.pyPetriDishCtrl1.sizePolicy().hasHeightForWidth()))
+        self.pyPetriDishCtrl1.setMinimumSize(QSize(200,200))
 
-    layout193.addWidget(self.pyPetriDishCtrl1,1,0)
+        layout193.addWidget(self.pyPetriDishCtrl1,1,0)
 
-    self.pyPetriDishCtrl1_2 = pyPetriDishCtrl(self,"pyPetriDishCtrl1_2")
-    self.pyPetriDishCtrl1_2.setSizePolicy(QSizePolicy(3,3,1,1,self.pyPetriDishCtrl1_2.sizePolicy().hasHeightForWidth()))
-    self.pyPetriDishCtrl1_2.setMinimumSize(QSize(200,200))
+        self.pyPetriDishCtrl1_2 = pyPetriDishCtrl(self,"pyPetriDishCtrl1_2")
+        self.pyPetriDishCtrl1_2.setSizePolicy(QSizePolicy(3,3,1,1,self.pyPetriDishCtrl1_2.sizePolicy().hasHeightForWidth()))
+        self.pyPetriDishCtrl1_2.setMinimumSize(QSize(200,200))
 
-    layout193.addWidget(self.pyPetriDishCtrl1_2,1,2)
-    pyTwoPop_PetriDishesViewLayout.addLayout(layout193)
+        layout193.addWidget(self.pyPetriDishCtrl1_2,1,2)
+        pyTwoPop_PetriDishesViewLayout.addLayout(layout193)
 
-    layout57 = QHBoxLayout(None,0,6,"layout57")
-    spacer8 = QSpacerItem(151,31,QSizePolicy.Expanding,QSizePolicy.Minimum)
-    layout57.addItem(spacer8)
+        layout57 = QHBoxLayout(None,0,6,"layout57")
+        spacer8 = QSpacerItem(151,31,QSizePolicy.Expanding,QSizePolicy.Minimum)
+        layout57.addItem(spacer8)
 
-    layout14 = QVBoxLayout(None,0,6,"layout14")
+        layout14 = QVBoxLayout(None,0,6,"layout14")
 
-    layout1 = QHBoxLayout(None,0,6,"layout1")
+        layout1 = QHBoxLayout(None,0,6,"layout1")
 
-    self.comboBox1_2 = QComboBox(0,self,"comboBox1_2")
-    self.comboBox1_2.setSizePolicy(QSizePolicy(3,0,0,0,self.comboBox1_2.sizePolicy().hasHeightForWidth()))
-    comboBox1_2_font = QFont(self.comboBox1_2.font())
-    comboBox1_2_font.setPointSize(11)
-    self.comboBox1_2.setFont(comboBox1_2_font)
-    layout1.addWidget(self.comboBox1_2)
-    layout14.addLayout(layout1)
+        self.comboBox1_2 = QComboBox(0,self,"comboBox1_2")
+        self.comboBox1_2.setSizePolicy(QSizePolicy(3,0,0,0,self.comboBox1_2.sizePolicy().hasHeightForWidth()))
+        comboBox1_2_font = QFont(self.comboBox1_2.font())
+        comboBox1_2_font.setPointSize(11)
+        self.comboBox1_2.setFont(comboBox1_2_font)
+        layout1.addWidget(self.comboBox1_2)
+        layout14.addLayout(layout1)
 
-    self.pyLiveControlsCtrl1 = pyLiveControlsCtrl(self,"pyLiveControlsCtrl1")
-    self.pyLiveControlsCtrl1.setSizePolicy(QSizePolicy(3,0,0,0,self.pyLiveControlsCtrl1.sizePolicy().hasHeightForWidth()))
-    self.pyLiveControlsCtrl1.setMinimumSize(QSize(100,40))
-    layout14.addWidget(self.pyLiveControlsCtrl1)
-    layout57.addLayout(layout14)
-    spacer9 = QSpacerItem(151,31,QSizePolicy.Expanding,QSizePolicy.Minimum)
-    layout57.addItem(spacer9)
-    pyTwoPop_PetriDishesViewLayout.addLayout(layout57)
-    spacer10 = QSpacerItem(10,10,QSizePolicy.Minimum,QSizePolicy.MinimumExpanding)
-    pyTwoPop_PetriDishesViewLayout.addItem(spacer10)
+        self.pyLiveControlsCtrl1 = pyLiveControlsCtrl(self,"pyLiveControlsCtrl1")
+        self.pyLiveControlsCtrl1.setSizePolicy(QSizePolicy(3,0,0,0,self.pyLiveControlsCtrl1.sizePolicy().hasHeightForWidth()))
+        self.pyLiveControlsCtrl1.setMinimumSize(QSize(100,40))
+        layout14.addWidget(self.pyLiveControlsCtrl1)
+        layout57.addLayout(layout14)
+        spacer9 = QSpacerItem(151,31,QSizePolicy.Expanding,QSizePolicy.Minimum)
+        layout57.addItem(spacer9)
+        pyTwoPop_PetriDishesViewLayout.addLayout(layout57)
+        spacer10 = QSpacerItem(10,10,QSizePolicy.Minimum,QSizePolicy.MinimumExpanding)
+        pyTwoPop_PetriDishesViewLayout.addItem(spacer10)
 
-    self.languageChange()
+        self.languageChange()
 
-    self.resize(QSize(463,383).expandedTo(self.minimumSizeHint()))
-    self.clearWState(Qt.WState_Polished)
+        self.resize(QSize(463,383).expandedTo(self.minimumSizeHint()))
+        self.clearWState(Qt.WState_Polished)
 
 
-  def languageChange(self):
-    self.setCaption(self.__tr("pyTwoPop_PetriDishesView"))
-    self.textLabel3_2.setText(self.__tr("[right population]"))
-    self.toolButton31_2_2.setText(QString.null)
-    self.textLabel10_3.setText(self.__tr("<font size=\"-1\"><p align=\"right\">Zoom:</p></font>"))
-    self.textLabel10_2.setText(self.__tr("<font size=\"-1\"><p align=\"right\">Zoom:</p></font>"))
-    self.textLabel3.setText(self.__tr("[left population]"))
-    self.toolButton31_2.setText(QString.null)
-    self.comboBox1_2.clear()
-    self.comboBox1_2.insertItem(self.__tr("Merit"))
+    def languageChange(self):
+        self.setCaption(self.__tr("pyTwoPop_PetriDishesView"))
+        self.textLabel3_2.setText(self.__tr("[right population]"))
+        self.toolButton31_2_2.setText(QString.null)
+        self.textLabel10_3.setText(self.__tr("<font size=\"-1\"><p align=\"right\">Zoom:</p></font>"))
+        self.textLabel10_2.setText(self.__tr("<font size=\"-1\"><p align=\"right\">Zoom:</p></font>"))
+        self.textLabel3.setText(self.__tr("[left population]"))
+        self.toolButton31_2.setText(QString.null)
+        self.comboBox1_2.clear()
+        self.comboBox1_2.insertItem(self.__tr("Merit"))
 
 
-  def __tr(self,s,c = None):
-    return qApp.translate("pyTwoPop_PetriDishesView",s,c)
+    def __tr(self,s,c = None):
+        return qApp.translate("pyTwoPop_PetriDishesView",s,c)

Modified: trunk/source/python/AvidaGui2/pyTwoPop_StatsView.py
===================================================================
--- trunk/source/python/AvidaGui2/pyTwoPop_StatsView.py	2005-03-31 03:44:15 UTC (rev 95)
+++ trunk/source/python/AvidaGui2/pyTwoPop_StatsView.py	2005-03-31 09:26:09 UTC (rev 96)
@@ -1,9 +1,9 @@
 # -*- coding: utf-8 -*-
 
-# Form implementation generated from reading ui file '/Users/kaben/Projects/Software/Avida/branch.kaben/avida--current--2.0--base-0/source/bindings/Boost.Python/AvidaGui2/pyTwoPop_StatsView.ui'
+# Form implementation generated from reading ui file 'pyTwoPop_StatsView.ui'
 #
-# Created: Fri Dec 3 10:26:53 2004
-#      by: The PyQt User Interface Compiler (pyuic) 3.12
+# Created: Thu Mar 31 04:19:26 2005
+#      by: The PyQt User Interface Compiler (pyuic) 3.13
 #
 # WARNING! All changes made in this file will be lost!
 
@@ -12,191 +12,191 @@
 
 
 class pyTwoPop_StatsView(QWidget):
-  def __init__(self,parent = None,name = None,fl = 0):
-    QWidget.__init__(self,parent,name,fl)
+    def __init__(self,parent = None,name = None,fl = 0):
+        QWidget.__init__(self,parent,name,fl)
 
-    if not name:
-      self.setName("pyTwoPop_StatsView")
+        if not name:
+            self.setName("pyTwoPop_StatsView")
 
 
-    pyTwoPop_StatsViewLayout = QVBoxLayout(self,11,6,"pyTwoPop_StatsViewLayout")
+        pyTwoPop_StatsViewLayout = QVBoxLayout(self,11,6,"pyTwoPop_StatsViewLayout")
 
-    self.groupBox3 = QGroupBox(self,"groupBox3")
-    self.groupBox3.setSizePolicy(QSizePolicy(3,3,0,0,self.groupBox3.sizePolicy().hasHeightForWidth()))
-    groupBox3_font = QFont(self.groupBox3.font())
-    groupBox3_font.setPointSize(11)
-    self.groupBox3.setFont(groupBox3_font)
-    self.groupBox3.setColumnLayout(0,Qt.Vertical)
-    self.groupBox3.layout().setSpacing(6)
-    self.groupBox3.layout().setMargin(11)
-    groupBox3Layout = QGridLayout(self.groupBox3.layout())
-    groupBox3Layout.setAlignment(Qt.AlignTop)
+        self.groupBox3 = QGroupBox(self,"groupBox3")
+        self.groupBox3.setSizePolicy(QSizePolicy(3,3,0,0,self.groupBox3.sizePolicy().hasHeightForWidth()))
+        groupBox3_font = QFont(self.groupBox3.font())
+        groupBox3_font.setPointSize(11)
+        self.groupBox3.setFont(groupBox3_font)
+        self.groupBox3.setColumnLayout(0,Qt.Vertical)
+        self.groupBox3.layout().setSpacing(6)
+        self.groupBox3.layout().setMargin(11)
+        groupBox3Layout = QGridLayout(self.groupBox3.layout())
+        groupBox3Layout.setAlignment(Qt.AlignTop)
 
-    self.textLabel3_3 = QLabel(self.groupBox3,"textLabel3_3")
-    textLabel3_3_font = QFont(self.textLabel3_3.font())
-    textLabel3_3_font.setPointSize(10)
-    textLabel3_3_font.setBold(1)
-    textLabel3_3_font.setUnderline(1)
-    self.textLabel3_3.setFont(textLabel3_3_font)
+        self.textLabel3_3 = QLabel(self.groupBox3,"textLabel3_3")
+        textLabel3_3_font = QFont(self.textLabel3_3.font())
+        textLabel3_3_font.setPointSize(10)
+        textLabel3_3_font.setBold(1)
+        textLabel3_3_font.setUnderline(1)
+        self.textLabel3_3.setFont(textLabel3_3_font)
 
-    groupBox3Layout.addWidget(self.textLabel3_3,0,0)
+        groupBox3Layout.addWidget(self.textLabel3_3,0,0)
 
-    self.textLabel3 = QLabel(self.groupBox3,"textLabel3")
-    textLabel3_font = QFont(self.textLabel3.font())
-    textLabel3_font.setPointSize(10)
-    textLabel3_font.setBold(1)
-    textLabel3_font.setUnderline(1)
-    self.textLabel3.setFont(textLabel3_font)
+        self.textLabel3 = QLabel(self.groupBox3,"textLabel3")
+        textLabel3_font = QFont(self.textLabel3.font())
+        textLabel3_font.setPointSize(10)
+        textLabel3_font.setBold(1)
+        textLabel3_font.setUnderline(1)
+        self.textLabel3.setFont(textLabel3_font)
 
-    groupBox3Layout.addWidget(self.textLabel3,0,1)
+        groupBox3Layout.addWidget(self.textLabel3,0,1)
 
-    self.textLabel3_2 = QLabel(self.groupBox3,"textLabel3_2")
-    textLabel3_2_font = QFont(self.textLabel3_2.font())
-    textLabel3_2_font.setPointSize(10)
-    textLabel3_2_font.setBold(1)
-    textLabel3_2_font.setUnderline(1)
-    self.textLabel3_2.setFont(textLabel3_2_font)
+        self.textLabel3_2 = QLabel(self.groupBox3,"textLabel3_2")
+        textLabel3_2_font = QFont(self.textLabel3_2.font())
+        textLabel3_2_font.setPointSize(10)
+        textLabel3_2_font.setBold(1)
+        textLabel3_2_font.setUnderline(1)
+        self.textLabel3_2.setFont(textLabel3_2_font)
 
-    groupBox3Layout.addWidget(self.textLabel3_2,0,2)
+        groupBox3Layout.addWidget(self.textLabel3_2,0,2)
 
-    self.textLabel3_3_2 = QLabel(self.groupBox3,"textLabel3_3_2")
-    textLabel3_3_2_font = QFont(self.textLabel3_3_2.font())
-    textLabel3_3_2_font.setPointSize(10)
-    self.textLabel3_3_2.setFont(textLabel3_3_2_font)
+        self.textLabel3_3_2 = QLabel(self.groupBox3,"textLabel3_3_2")
+        textLabel3_3_2_font = QFont(self.textLabel3_3_2.font())
+        textLabel3_3_2_font.setPointSize(10)
+        self.textLabel3_3_2.setFont(textLabel3_3_2_font)
 
-    groupBox3Layout.addWidget(self.textLabel3_3_2,1,0)
+        groupBox3Layout.addWidget(self.textLabel3_3_2,1,0)
 
-    self.textLabel3_4 = QLabel(self.groupBox3,"textLabel3_4")
-    textLabel3_4_font = QFont(self.textLabel3_4.font())
-    textLabel3_4_font.setPointSize(10)
-    self.textLabel3_4.setFont(textLabel3_4_font)
+        self.textLabel3_4 = QLabel(self.groupBox3,"textLabel3_4")
+        textLabel3_4_font = QFont(self.textLabel3_4.font())
+        textLabel3_4_font.setPointSize(10)
+        self.textLabel3_4.setFont(textLabel3_4_font)
 
-    groupBox3Layout.addWidget(self.textLabel3_4,1,1)
+        groupBox3Layout.addWidget(self.textLabel3_4,1,1)
 
-    self.textLabel3_2_2 = QLabel(self.groupBox3,"textLabel3_2_2")
-    textLabel3_2_2_font = QFont(self.textLabel3_2_2.font())
-    textLabel3_2_2_font.setPointSize(10)
-    self.textLabel3_2_2.setFont(textLabel3_2_2_font)
+        self.textLabel3_2_2 = QLabel(self.groupBox3,"textLabel3_2_2")
+        textLabel3_2_2_font = QFont(self.textLabel3_2_2.font())
+        textLabel3_2_2_font.setPointSize(10)
+        self.textLabel3_2_2.setFont(textLabel3_2_2_font)
 
-    groupBox3Layout.addWidget(self.textLabel3_2_2,1,2)
-    spacer1 = QSpacerItem(270,31,QSizePolicy.Minimum,QSizePolicy.Expanding)
-    groupBox3Layout.addMultiCell(spacer1,2,2,0,2)
-    pyTwoPop_StatsViewLayout.addWidget(self.groupBox3)
+        groupBox3Layout.addWidget(self.textLabel3_2_2,1,2)
+        spacer1 = QSpacerItem(270,31,QSizePolicy.Minimum,QSizePolicy.Expanding)
+        groupBox3Layout.addMultiCell(spacer1,2,2,0,2)
+        pyTwoPop_StatsViewLayout.addWidget(self.groupBox3)
 
-    self.groupBox5 = QGroupBox(self,"groupBox5")
-    self.groupBox5.setSizePolicy(QSizePolicy(3,3,0,0,self.groupBox5.sizePolicy().hasHeightForWidth()))
-    groupBox5_font = QFont(self.groupBox5.font())
-    groupBox5_font.setPointSize(11)
-    self.groupBox5.setFont(groupBox5_font)
-    self.groupBox5.setColumnLayout(0,Qt.Vertical)
-    self.groupBox5.layout().setSpacing(6)
-    self.groupBox5.layout().setMargin(11)
-    groupBox5Layout = QVBoxLayout(self.groupBox5.layout())
-    groupBox5Layout.setAlignment(Qt.AlignTop)
+        self.groupBox5 = QGroupBox(self,"groupBox5")
+        self.groupBox5.setSizePolicy(QSizePolicy(3,3,0,0,self.groupBox5.sizePolicy().hasHeightForWidth()))
+        groupBox5_font = QFont(self.groupBox5.font())
+        groupBox5_font.setPointSize(11)
+        self.groupBox5.setFont(groupBox5_font)
+        self.groupBox5.setColumnLayout(0,Qt.Vertical)
+        self.groupBox5.layout().setSpacing(6)
+        self.groupBox5.layout().setMargin(11)
+        groupBox5Layout = QVBoxLayout(self.groupBox5.layout())
+        groupBox5Layout.setAlignment(Qt.AlignTop)
 
-    layout11 = QGridLayout(None,1,1,0,6,"layout11")
+        layout11 = QGridLayout(None,1,1,0,6,"layout11")
 
-    self.textLabel14_3_3_2_2 = QLabel(self.groupBox5,"textLabel14_3_3_2_2")
-    self.textLabel14_3_3_2_2.setSizePolicy(QSizePolicy(1,1,0,0,self.textLabel14_3_3_2_2.sizePolicy().hasHeightForWidth()))
-    self.textLabel14_3_3_2_2.setMaximumSize(QSize(32767,40))
-    textLabel14_3_3_2_2_font = QFont(self.textLabel14_3_3_2_2.font())
-    textLabel14_3_3_2_2_font.setPointSize(10)
-    self.textLabel14_3_3_2_2.setFont(textLabel14_3_3_2_2_font)
-    self.textLabel14_3_3_2_2.setAlignment(QLabel.WordBreak | QLabel.AlignVCenter | QLabel.AlignRight)
+        self.textLabel14_3_3_2_2 = QLabel(self.groupBox5,"textLabel14_3_3_2_2")
+        self.textLabel14_3_3_2_2.setSizePolicy(QSizePolicy(1,1,0,0,self.textLabel14_3_3_2_2.sizePolicy().hasHeightForWidth()))
+        self.textLabel14_3_3_2_2.setMaximumSize(QSize(32767,40))
+        textLabel14_3_3_2_2_font = QFont(self.textLabel14_3_3_2_2.font())
+        textLabel14_3_3_2_2_font.setPointSize(10)
+        self.textLabel14_3_3_2_2.setFont(textLabel14_3_3_2_2_font)
+        self.textLabel14_3_3_2_2.setAlignment(QLabel.WordBreak | QLabel.AlignVCenter | QLabel.AlignRight)
 
-    layout11.addWidget(self.textLabel14_3_3_2_2,2,0)
+        layout11.addWidget(self.textLabel14_3_3_2_2,2,0)
 
-    self.textLabel14_3_3_3_3 = QLabel(self.groupBox5,"textLabel14_3_3_3_3")
-    self.textLabel14_3_3_3_3.setSizePolicy(QSizePolicy(1,1,0,0,self.textLabel14_3_3_3_3.sizePolicy().hasHeightForWidth()))
-    textLabel14_3_3_3_3_font = QFont(self.textLabel14_3_3_3_3.font())
-    textLabel14_3_3_3_3_font.setPointSize(10)
-    self.textLabel14_3_3_3_3.setFont(textLabel14_3_3_3_3_font)
+        self.textLabel14_3_3_3_3 = QLabel(self.groupBox5,"textLabel14_3_3_3_3")
+        self.textLabel14_3_3_3_3.setSizePolicy(QSizePolicy(1,1,0,0,self.textLabel14_3_3_3_3.sizePolicy().hasHeightForWidth()))
+        textLabel14_3_3_3_3_font = QFont(self.textLabel14_3_3_3_3.font())
+        textLabel14_3_3_3_3_font.setPointSize(10)
+        self.textLabel14_3_3_3_3.setFont(textLabel14_3_3_3_3_font)
 
-    layout11.addWidget(self.textLabel14_3_3_3_3,1,1)
+        layout11.addWidget(self.textLabel14_3_3_3_3,1,1)
 
-    self.textLabel14_3_3_3_2 = QLabel(self.groupBox5,"textLabel14_3_3_3_2")
-    self.textLabel14_3_3_3_2.setSizePolicy(QSizePolicy(1,1,0,0,self.textLabel14_3_3_3_2.sizePolicy().hasHeightForWidth()))
-    textLabel14_3_3_3_2_font = QFont(self.textLabel14_3_3_3_2.font())
-    textLabel14_3_3_3_2_font.setPointSize(10)
-    self.textLabel14_3_3_3_2.setFont(textLabel14_3_3_3_2_font)
+        self.textLabel14_3_3_3_2 = QLabel(self.groupBox5,"textLabel14_3_3_3_2")
+        self.textLabel14_3_3_3_2.setSizePolicy(QSizePolicy(1,1,0,0,self.textLabel14_3_3_3_2.sizePolicy().hasHeightForWidth()))
+        textLabel14_3_3_3_2_font = QFont(self.textLabel14_3_3_3_2.font())
+        textLabel14_3_3_3_2_font.setPointSize(10)
+        self.textLabel14_3_3_3_2.setFont(textLabel14_3_3_3_2_font)
 
-    layout11.addWidget(self.textLabel14_3_3_3_2,0,1)
+        layout11.addWidget(self.textLabel14_3_3_3_2,0,1)
 
-    self.textLabel14_3_3_2 = QLabel(self.groupBox5,"textLabel14_3_3_2")
-    self.textLabel14_3_3_2.setSizePolicy(QSizePolicy(1,1,0,0,self.textLabel14_3_3_2.sizePolicy().hasHeightForWidth()))
-    self.textLabel14_3_3_2.setMaximumSize(QSize(32767,40))
-    textLabel14_3_3_2_font = QFont(self.textLabel14_3_3_2.font())
-    textLabel14_3_3_2_font.setPointSize(10)
-    self.textLabel14_3_3_2.setFont(textLabel14_3_3_2_font)
-    self.textLabel14_3_3_2.setAlignment(QLabel.WordBreak | QLabel.AlignVCenter | QLabel.AlignRight)
+        self.textLabel14_3_3_2 = QLabel(self.groupBox5,"textLabel14_3_3_2")
+        self.textLabel14_3_3_2.setSizePolicy(QSizePolicy(1,1,0,0,self.textLabel14_3_3_2.sizePolicy().hasHeightForWidth()))
+        self.textLabel14_3_3_2.setMaximumSize(QSize(32767,40))
+        textLabel14_3_3_2_font = QFont(self.textLabel14_3_3_2.font())
+        textLabel14_3_3_2_font.setPointSize(10)
+        self.textLabel14_3_3_2.setFont(textLabel14_3_3_2_font)
+        self.textLabel14_3_3_2.setAlignment(QLabel.WordBreak | QLabel.AlignVCenter | QLabel.AlignRight)
 
-    layout11.addWidget(self.textLabel14_3_3_2,1,0)
+        layout11.addWidget(self.textLabel14_3_3_2,1,0)
 
-    self.textLabel14_3_3_3_3_3 = QLabel(self.groupBox5,"textLabel14_3_3_3_3_3")
-    self.textLabel14_3_3_3_3_3.setSizePolicy(QSizePolicy(1,1,0,0,self.textLabel14_3_3_3_3_3.sizePolicy().hasHeightForWidth()))
-    textLabel14_3_3_3_3_3_font = QFont(self.textLabel14_3_3_3_3_3.font())
-    textLabel14_3_3_3_3_3_font.setPointSize(10)
-    self.textLabel14_3_3_3_3_3.setFont(textLabel14_3_3_3_3_3_font)
+        self.textLabel14_3_3_3_3_3 = QLabel(self.groupBox5,"textLabel14_3_3_3_3_3")
+        self.textLabel14_3_3_3_3_3.setSizePolicy(QSizePolicy(1,1,0,0,self.textLabel14_3_3_3_3_3.sizePolicy().hasHeightForWidth()))
+        textLabel14_3_3_3_3_3_font = QFont(self.textLabel14_3_3_3_3_3.font())
+        textLabel14_3_3_3_3_3_font.setPointSize(10)
+        self.textLabel14_3_3_3_3_3.setFont(textLabel14_3_3_3_3_3_font)
 
-    layout11.addWidget(self.textLabel14_3_3_3_3_3,2,1)
+        layout11.addWidget(self.textLabel14_3_3_3_3_3,2,1)
 
-    self.textLabel14_3_3 = QLabel(self.groupBox5,"textLabel14_3_3")
-    self.textLabel14_3_3.setSizePolicy(QSizePolicy(1,1,0,0,self.textLabel14_3_3.sizePolicy().hasHeightForWidth()))
-    self.textLabel14_3_3.setMaximumSize(QSize(32767,40))
-    textLabel14_3_3_font = QFont(self.textLabel14_3_3.font())
-    textLabel14_3_3_font.setPointSize(10)
-    self.textLabel14_3_3.setFont(textLabel14_3_3_font)
-    self.textLabel14_3_3.setAlignment(QLabel.WordBreak | QLabel.AlignVCenter | QLabel.AlignRight)
+        self.textLabel14_3_3 = QLabel(self.groupBox5,"textLabel14_3_3")
+        self.textLabel14_3_3.setSizePolicy(QSizePolicy(1,1,0,0,self.textLabel14_3_3.sizePolicy().hasHeightForWidth()))
+        self.textLabel14_3_3.setMaximumSize(QSize(32767,40))
+        textLabel14_3_3_font = QFont(self.textLabel14_3_3.font())
+        textLabel14_3_3_font.setPointSize(10)
+        self.textLabel14_3_3.setFont(textLabel14_3_3_font)
+        self.textLabel14_3_3.setAlignment(QLabel.WordBreak | QLabel.AlignVCenter | QLabel.AlignRight)
 
-    layout11.addWidget(self.textLabel14_3_3,0,0)
+        layout11.addWidget(self.textLabel14_3_3,0,0)
 
-    self.textLabel14_3_3_2_2_2 = QLabel(self.groupBox5,"textLabel14_3_3_2_2_2")
-    self.textLabel14_3_3_2_2_2.setSizePolicy(QSizePolicy(1,1,0,0,self.textLabel14_3_3_2_2_2.sizePolicy().hasHeightForWidth()))
-    self.textLabel14_3_3_2_2_2.setMaximumSize(QSize(32767,40))
-    textLabel14_3_3_2_2_2_font = QFont(self.textLabel14_3_3_2_2_2.font())
-    textLabel14_3_3_2_2_2_font.setPointSize(10)
-    self.textLabel14_3_3_2_2_2.setFont(textLabel14_3_3_2_2_2_font)
-    self.textLabel14_3_3_2_2_2.setAlignment(QLabel.WordBreak | QLabel.AlignVCenter | QLabel.AlignRight)
+        self.textLabel14_3_3_2_2_2 = QLabel(self.groupBox5,"textLabel14_3_3_2_2_2")
+        self.textLabel14_3_3_2_2_2.setSizePolicy(QSizePolicy(1,1,0,0,self.textLabel14_3_3_2_2_2.sizePolicy().hasHeightForWidth()))
+        self.textLabel14_3_3_2_2_2.setMaximumSize(QSize(32767,40))
+        textLabel14_3_3_2_2_2_font = QFont(self.textLabel14_3_3_2_2_2.font())
+        textLabel14_3_3_2_2_2_font.setPointSize(10)
+        self.textLabel14_3_3_2_2_2.setFont(textLabel14_3_3_2_2_2_font)
+        self.textLabel14_3_3_2_2_2.setAlignment(QLabel.WordBreak | QLabel.AlignVCenter | QLabel.AlignRight)
 
-    layout11.addWidget(self.textLabel14_3_3_2_2_2,3,0)
+        layout11.addWidget(self.textLabel14_3_3_2_2_2,3,0)
 
-    self.textLabel14_3_3_3_3_4 = QLabel(self.groupBox5,"textLabel14_3_3_3_3_4")
-    self.textLabel14_3_3_3_3_4.setSizePolicy(QSizePolicy(1,1,0,0,self.textLabel14_3_3_3_3_4.sizePolicy().hasHeightForWidth()))
-    textLabel14_3_3_3_3_4_font = QFont(self.textLabel14_3_3_3_3_4.font())
-    textLabel14_3_3_3_3_4_font.setPointSize(10)
-    self.textLabel14_3_3_3_3_4.setFont(textLabel14_3_3_3_3_4_font)
+        self.textLabel14_3_3_3_3_4 = QLabel(self.groupBox5,"textLabel14_3_3_3_3_4")
+        self.textLabel14_3_3_3_3_4.setSizePolicy(QSizePolicy(1,1,0,0,self.textLabel14_3_3_3_3_4.sizePolicy().hasHeightForWidth()))
+        textLabel14_3_3_3_3_4_font = QFont(self.textLabel14_3_3_3_3_4.font())
+        textLabel14_3_3_3_3_4_font.setPointSize(10)
+        self.textLabel14_3_3_3_3_4.setFont(textLabel14_3_3_3_3_4_font)
 
-    layout11.addWidget(self.textLabel14_3_3_3_3_4,3,1)
-    groupBox5Layout.addLayout(layout11)
-    spacer1_2 = QSpacerItem(110,30,QSizePolicy.Minimum,QSizePolicy.MinimumExpanding)
-    groupBox5Layout.addItem(spacer1_2)
-    pyTwoPop_StatsViewLayout.addWidget(self.groupBox5)
+        layout11.addWidget(self.textLabel14_3_3_3_3_4,3,1)
+        groupBox5Layout.addLayout(layout11)
+        spacer1_2 = QSpacerItem(110,30,QSizePolicy.Minimum,QSizePolicy.MinimumExpanding)
+        groupBox5Layout.addItem(spacer1_2)
+        pyTwoPop_StatsViewLayout.addWidget(self.groupBox5)
 
-    self.languageChange()
+        self.languageChange()
 
-    self.resize(QSize(314,275).expandedTo(self.minimumSizeHint()))
-    self.clearWState(Qt.WState_Polished)
+        self.resize(QSize(314,275).expandedTo(self.minimumSizeHint()))
+        self.clearWState(Qt.WState_Polished)
 
 
-  def languageChange(self):
-    self.setCaption(self.__tr("pyTwoPop_StatsView"))
-    self.groupBox3.setTitle(self.__tr("Task Outlook"))
-    self.textLabel3_3.setText(self.__tr("Task"))
-    self.textLabel3.setText(self.__tr("[left population]"))
-    self.textLabel3_2.setText(self.__tr("[right population]"))
-    self.textLabel3_3_2.setText(self.__tr("blah"))
-    self.textLabel3_4.setText(self.__tr("blah blah"))
-    self.textLabel3_2_2.setText(self.__tr("blah blah"))
-    self.groupBox5.setTitle(self.__tr("Statistics"))
-    self.textLabel14_3_3_2_2.setText(self.__tr("Num. Orgs:"))
-    self.textLabel14_3_3_3_3.setText(self.__tr("0000"))
-    self.textLabel14_3_3_3_2.setText(self.__tr("0000"))
-    self.textLabel14_3_3_2.setText(self.__tr("Dom. Merit:"))
-    self.textLabel14_3_3_3_3_3.setText(self.__tr("0000"))
-    self.textLabel14_3_3.setText(self.__tr("Avg. Merit:"))
-    self.textLabel14_3_3_2_2_2.setText(self.__tr("Avg. Gest:"))
-    self.textLabel14_3_3_3_3_4.setText(self.__tr("0000"))
+    def languageChange(self):
+        self.setCaption(self.__tr("pyTwoPop_StatsView"))
+        self.groupBox3.setTitle(self.__tr("Task Outlook"))
+        self.textLabel3_3.setText(self.__tr("Task"))
+        self.textLabel3.setText(self.__tr("[left population]"))
+        self.textLabel3_2.setText(self.__tr("[right population]"))
+        self.textLabel3_3_2.setText(self.__tr("blah"))
+        self.textLabel3_4.setText(self.__tr("blah blah"))
+        self.textLabel3_2_2.setText(self.__tr("blah blah"))
+        self.groupBox5.setTitle(self.__tr("Statistics"))
+        self.textLabel14_3_3_2_2.setText(self.__tr("Num. Orgs:"))
+        self.textLabel14_3_3_3_3.setText(self.__tr("0000"))
+        self.textLabel14_3_3_3_2.setText(self.__tr("0000"))
+        self.textLabel14_3_3_2.setText(self.__tr("Dom. Merit:"))
+        self.textLabel14_3_3_3_3_3.setText(self.__tr("0000"))
+        self.textLabel14_3_3.setText(self.__tr("Avg. Merit:"))
+        self.textLabel14_3_3_2_2_2.setText(self.__tr("Avg. Gest:"))
+        self.textLabel14_3_3_3_3_4.setText(self.__tr("0000"))
 
 
-  def __tr(self,s,c = None):
-    return qApp.translate("pyTwoPop_StatsView",s,c)
+    def __tr(self,s,c = None):
+        return qApp.translate("pyTwoPop_StatsView",s,c)

Modified: trunk/source/python/AvidaGui2/pyTwoPop_TimelineView.py
===================================================================
--- trunk/source/python/AvidaGui2/pyTwoPop_TimelineView.py	2005-03-31 03:44:15 UTC (rev 95)
+++ trunk/source/python/AvidaGui2/pyTwoPop_TimelineView.py	2005-03-31 09:26:09 UTC (rev 96)
@@ -1,9 +1,9 @@
 # -*- coding: utf-8 -*-
 
-# Form implementation generated from reading ui file '/Users/kaben/Projects/Software/Avida/branch.kaben/avida--current--2.0--base-0/source/bindings/Boost.Python/AvidaGui2/pyTwoPop_TimelineView.ui'
+# Form implementation generated from reading ui file 'pyTwoPop_TimelineView.ui'
 #
-# Created: Fri Dec 3 10:26:53 2004
-#      by: The PyQt User Interface Compiler (pyuic) 3.12
+# Created: Thu Mar 31 04:19:26 2005
+#      by: The PyQt User Interface Compiler (pyuic) 3.13
 #
 # WARNING! All changes made in this file will be lost!
 
@@ -12,105 +12,105 @@
 from pyTimelineCtrl import pyTimelineCtrl
 
 image0_data = \
-  "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
-  "\x49\x48\x44\x52\x00\x00\x00\x0f\x00\x00\x00\x0e" \
-  "\x08\x06\x00\x00\x00\xf0\x8a\x46\xef\x00\x00\x01" \
-  "\xd7\x49\x44\x41\x54\x78\x9c\x85\x92\xcd\x6a\x53" \
-  "\x51\x14\x85\xbf\x9b\x5c\x09\x89\x69\xa3\xad\xb6" \
-  "\x45\xc1\xe2\x4f\x1a\x9d\x28\x8a\x13\x91\x80\xc1" \
-  "\xd0\xa9\xe0\x44\xa1\x82\x38\xa8\x93\x4e\xd4\xe2" \
-  "\xd4\x17\x70\x20\x8a\x51\x21\xfa\x04\xfa\x06\x05" \
-  "\x87\x22\xc4\x61\x41\x09\x0d\x04\x35\x85\x04\x93" \
-  "\xe6\xaf\xf6\x26\xb9\xe7\x2c\x07\x6d\xd3\x34\x11" \
-  "\xba\x60\x71\xe0\xec\xb3\xce\x62\xef\xbd\x90\xc4" \
-  "\x20\x5b\xad\x96\x96\x9f\x3c\x55\xa5\x52\xd1\x70" \
-  "\x6d\x98\x01\x06\xd0\x6e\xb7\x95\x79\x91\xe5\x88" \
-  "\x3b\x85\x31\x96\x83\xe0\x48\x02\xa0\xd3\xe9\x28" \
-  "\xf3\x32\xcb\x4c\x60\x8e\xdf\xb5\x3c\x53\x73\x51" \
-  "\x42\xa1\xd0\xbe\xc7\xb1\x58\x8c\x54\x2a\x45\x38" \
-  "\x1c\x76\xfa\x62\xdf\xf7\xf5\xe6\x55\x96\xe3\x9c" \
-  "\xa3\x56\xde\xe2\xd8\xd4\x18\x96\x3d\x67\x21\xac" \
-  "\x0c\x5e\x6f\x8b\x52\x23\xcf\xdd\x07\xb7\x48\x24" \
-  "\x12\x8e\x23\x89\x77\xaf\xdf\x2b\xd6\x3d\xc5\x46" \
-  "\xb9\x83\xac\xc0\xd9\x15\x81\x24\x8c\x84\x95\xc5" \
-  "\xf3\x7d\xa6\xa7\xc7\x21\x5a\x63\xe1\xe1\x6d\x82" \
-  "\x97\x2f\x5e\x55\x77\xfd\x30\xed\x3f\x86\xdd\x16" \
-  "\xf6\x3b\x82\x95\xc5\x58\x8b\x91\xa5\xd6\xdc\xe4" \
-  "\x68\x64\x92\x46\x6f\x9d\xc0\xcd\xf9\x1b\x14\x36" \
-  "\x7e\xe0\x19\x7f\x48\xb8\x0d\xbb\xf3\xa1\x91\x30" \
-  "\xb2\x08\x68\x79\x3d\xca\xbf\xea\x04\xa2\xd1\xa8" \
-  "\xb3\xf4\x68\x81\x92\xf7\x9d\xae\x35\xfb\x5c\xa5" \
-  "\xed\xd3\x58\xdb\x77\xb7\xb2\xf4\x7a\x06\x6f\xab" \
-  "\xbb\x37\xed\xc2\x5a\x41\x99\xe7\x9f\x38\x3d\x76" \
-  "\x9e\x4d\xbf\xc3\xdf\x6e\x13\x83\xb0\x56\x08\x70" \
-  "\x02\x2e\xae\x13\xc2\xc8\x30\x39\x31\xce\x89\xb3" \
-  "\x03\xab\x02\xc8\xe5\xbe\xe9\xe3\x87\x2f\x6c\x7a" \
-  "\x75\xae\xa5\xcf\x10\x0c\x06\xfb\xb5\x66\xa3\x4d" \
-  "\xee\xeb\x1a\x13\xe1\x0b\xb8\xee\x21\xae\xcf\x4f" \
-  "\x32\x92\x9a\x95\x95\xcf\xba\x77\x67\x49\xd5\x6a" \
-  "\x75\x24\x61\xf9\x7c\x5e\x8b\xf7\x9f\xe9\xf1\xe2" \
-  "\x5b\x15\x8b\x45\xb9\xc3\xa9\x49\xa7\x53\x4e\x28" \
-  "\xe4\x2a\x12\x89\x8c\x24\x2a\x1e\x8f\x3b\x33\x27" \
-  "\xa3\xaa\x55\xea\xcc\xce\xce\x3a\x23\x62\x80\x64" \
-  "\x32\xe9\xfc\xef\x1e\xe0\xd2\x95\x04\xeb\x3f\x6b" \
-  "\x3b\x53\x3d\x20\xfc\xc3\x5c\x5d\x5d\x55\xa9\x54" \
-  "\x92\x24\xfe\x01\x03\x3d\x5a\xfa\x32\x50\xe5\x56" \
-  "\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82"
+    "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d" \
+    "\x49\x48\x44\x52\x00\x00\x00\x0f\x00\x00\x00\x0e" \
+    "\x08\x06\x00\x00\x00\xf0\x8a\x46\xef\x00\x00\x01" \
+    "\xd7\x49\x44\x41\x54\x78\x9c\x85\x92\xcd\x6a\x53" \
+    "\x51\x14\x85\xbf\x9b\x5c\x09\x89\x69\xa3\xad\xb6" \
+    "\x45\xc1\xe2\x4f\x1a\x9d\x28\x8a\x13\x91\x80\xc1" \
+    "\xd0\xa9\xe0\x44\xa1\x82\x38\xa8\x93\x4e\xd4\xe2" \
+    "\xd4\x17\x70\x20\x8a\x51\x21\xfa\x04\xfa\x06\x05" \
+    "\x87\x22\xc4\x61\x41\x09\x0d\x04\x35\x85\x04\x93" \
+    "\xe6\xaf\xf6\x26\xb9\xe7\x2c\x07\x6d\xd3\x34\x11" \
+    "\xba\x60\x71\xe0\xec\xb3\xce\x62\xef\xbd\x90\xc4" \
+    "\x20\x5b\xad\x96\x96\x9f\x3c\x55\xa5\x52\xd1\x70" \
+    "\x6d\x98\x01\x06\xd0\x6e\xb7\x95\x79\x91\xe5\x88" \
+    "\x3b\x85\x31\x96\x83\xe0\x48\x02\xa0\xd3\xe9\x28" \
+    "\xf3\x32\xcb\x4c\x60\x8e\xdf\xb5\x3c\x53\x73\x51" \
+    "\x42\xa1\xd0\xbe\xc7\xb1\x58\x8c\x54\x2a\x45\x38" \
+    "\x1c\x76\xfa\x62\xdf\xf7\xf5\xe6\x55\x96\xe3\x9c" \
+    "\xa3\x56\xde\xe2\xd8\xd4\x18\x96\x3d\x67\x21\xac" \
+    "\x0c\x5e\x6f\x8b\x52\x23\xcf\xdd\x07\xb7\x48\x24" \
+    "\x12\x8e\x23\x89\x77\xaf\xdf\x2b\xd6\x3d\xc5\x46" \
+    "\xb9\x83\xac\xc0\xd9\x15\x81\x24\x8c\x84\x95\xc5" \
+    "\xf3\x7d\xa6\xa7\xc7\x21\x5a\x63\xe1\xe1\x6d\x82" \
+    "\x97\x2f\x5e\x55\x77\xfd\x30\xed\x3f\x86\xdd\x16" \
+    "\xf6\x3b\x82\x95\xc5\x58\x8b\x91\xa5\xd6\xdc\xe4" \
+    "\x68\x64\x92\x46\x6f\x9d\xc0\xcd\xf9\x1b\x14\x36" \
+    "\x7e\xe0\x19\x7f\x48\xb8\x0d\xbb\xf3\xa1\x91\x30" \
+    "\xb2\x08\x68\x79\x3d\xca\xbf\xea\x04\xa2\xd1\xa8" \
+    "\xb3\xf4\x68\x81\x92\xf7\x9d\xae\x35\xfb\x5c\xa5" \
+    "\xed\xd3\x58\xdb\x77\xb7\xb2\xf4\x7a\x06\x6f\xab" \
+    "\xbb\x37\xed\xc2\x5a\x41\x99\xe7\x9f\x38\x3d\x76" \
+    "\x9e\x4d\xbf\xc3\xdf\x6e\x13\x83\xb0\x56\x08\x70" \
+    "\x02\x2e\xae\x13\xc2\xc8\x30\x39\x31\xce\x89\xb3" \
+    "\x03\xab\x02\xc8\xe5\xbe\xe9\xe3\x87\x2f\x6c\x7a" \
+    "\x75\xae\xa5\xcf\x10\x0c\x06\xfb\xb5\x66\xa3\x4d" \
+    "\xee\xeb\x1a\x13\xe1\x0b\xb8\xee\x21\xae\xcf\x4f" \
+    "\x32\x92\x9a\x95\x95\xcf\xba\x77\x67\x49\xd5\x6a" \
+    "\x75\x24\x61\xf9\x7c\x5e\x8b\xf7\x9f\xe9\xf1\xe2" \
+    "\x5b\x15\x8b\x45\xb9\xc3\xa9\x49\xa7\x53\x4e\x28" \
+    "\xe4\x2a\x12\x89\x8c\x24\x2a\x1e\x8f\x3b\x33\x27" \
+    "\xa3\xaa\x55\xea\xcc\xce\xce\x3a\x23\x62\x80\x64" \
+    "\x32\xe9\xfc\xef\x1e\xe0\xd2\x95\x04\xeb\x3f\x6b" \
+    "\x3b\x53\x3d\x20\xfc\xc3\x5c\x5d\x5d\x55\xa9\x54" \
+    "\x92\x24\xfe\x01\x03\x3d\x5a\xfa\x32\x50\xe5\x56" \
+    "\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82"
 
 class pyTwoPop_TimelineView(QWidget):
-  def __init__(self,parent = None,name = None,fl = 0):
-    QWidget.__init__(self,parent,name,fl)
+    def __init__(self,parent = None,name = None,fl = 0):
+        QWidget.__init__(self,parent,name,fl)
 
-    self.image0 = QPixmap()
-    self.image0.loadFromData(image0_data,"PNG")
-    if not name:
-      self.setName("pyTwoPop_TimelineView")
+        self.image0 = QPixmap()
+        self.image0.loadFromData(image0_data,"PNG")
+        if not name:
+            self.setName("pyTwoPop_TimelineView")
 
 
-    pyTwoPop_TimelineViewLayout = QVBoxLayout(self,0,6,"pyTwoPop_TimelineViewLayout")
+        pyTwoPop_TimelineViewLayout = QVBoxLayout(self,0,6,"pyTwoPop_TimelineViewLayout")
 
-    layout214 = QHBoxLayout(None,0,6,"layout214")
-    spacer155 = QSpacerItem(1,32,QSizePolicy.Minimum,QSizePolicy.Fixed)
-    layout214.addItem(spacer155)
+        layout214 = QHBoxLayout(None,0,6,"layout214")
+        spacer155 = QSpacerItem(1,32,QSizePolicy.Minimum,QSizePolicy.Fixed)
+        layout214.addItem(spacer155)
 
-    self.textLabel9 = QLabel(self,"textLabel9")
-    self.textLabel9.setSizePolicy(QSizePolicy(3,0,0,0,self.textLabel9.sizePolicy().hasHeightForWidth()))
-    textLabel9_font = QFont(self.textLabel9.font())
-    textLabel9_font.setPointSize(11)
-    self.textLabel9.setFont(textLabel9_font)
-    layout214.addWidget(self.textLabel9)
+        self.textLabel9 = QLabel(self,"textLabel9")
+        self.textLabel9.setSizePolicy(QSizePolicy(3,0,0,0,self.textLabel9.sizePolicy().hasHeightForWidth()))
+        textLabel9_font = QFont(self.textLabel9.font())
+        textLabel9_font.setPointSize(11)
+        self.textLabel9.setFont(textLabel9_font)
+        layout214.addWidget(self.textLabel9)
 
-    layout178 = QVBoxLayout(None,0,6,"layout178")
-    spacer126 = QSpacerItem(1,1,QSizePolicy.Minimum,QSizePolicy.Minimum)
-    layout178.addItem(spacer126)
+        layout178 = QVBoxLayout(None,0,6,"layout178")
+        spacer126 = QSpacerItem(1,1,QSizePolicy.Minimum,QSizePolicy.Minimum)
+        layout178.addItem(spacer126)
 
-    self.toolButton31_2 = QToolButton(self,"toolButton31_2")
-    toolButton31_2_font = QFont(self.toolButton31_2.font())
-    toolButton31_2_font.setPointSize(10)
-    self.toolButton31_2.setFont(toolButton31_2_font)
-    self.toolButton31_2.setIconSet(QIconSet(self.image0))
-    layout178.addWidget(self.toolButton31_2)
-    spacer126_2 = QSpacerItem(1,1,QSizePolicy.Minimum,QSizePolicy.Minimum)
-    layout178.addItem(spacer126_2)
-    layout214.addLayout(layout178)
-    pyTwoPop_TimelineViewLayout.addLayout(layout214)
+        self.toolButton31_2 = QToolButton(self,"toolButton31_2")
+        toolButton31_2_font = QFont(self.toolButton31_2.font())
+        toolButton31_2_font.setPointSize(10)
+        self.toolButton31_2.setFont(toolButton31_2_font)
+        self.toolButton31_2.setIconSet(QIconSet(self.image0))
+        layout178.addWidget(self.toolButton31_2)
+        spacer126_2 = QSpacerItem(1,1,QSizePolicy.Minimum,QSizePolicy.Minimum)
+        layout178.addItem(spacer126_2)
+        layout214.addLayout(layout178)
+        pyTwoPop_TimelineViewLayout.addLayout(layout214)
 
-    self.pyTimelineCtrl1 = pyTimelineCtrl(self,"pyTimelineCtrl1")
-    self.pyTimelineCtrl1.setSizePolicy(QSizePolicy(7,0,0,0,self.pyTimelineCtrl1.sizePolicy().hasHeightForWidth()))
-    self.pyTimelineCtrl1.setMinimumSize(QSize(0,50))
-    pyTwoPop_TimelineViewLayout.addWidget(self.pyTimelineCtrl1)
+        self.pyTimelineCtrl1 = pyTimelineCtrl(self,"pyTimelineCtrl1")
+        self.pyTimelineCtrl1.setSizePolicy(QSizePolicy(7,0,0,0,self.pyTimelineCtrl1.sizePolicy().hasHeightForWidth()))
+        self.pyTimelineCtrl1.setMinimumSize(QSize(0,50))
+        pyTwoPop_TimelineViewLayout.addWidget(self.pyTimelineCtrl1)
 
-    self.languageChange()
+        self.languageChange()
 
-    self.resize(QSize(124,107).expandedTo(self.minimumSizeHint()))
-    self.clearWState(Qt.WState_Polished)
+        self.resize(QSize(124,107).expandedTo(self.minimumSizeHint()))
+        self.clearWState(Qt.WState_Polished)
 
 
-  def languageChange(self):
-    self.setCaption(self.__tr("pyTwoPop_TimelineView"))
-    self.textLabel9.setText(self.__tr("Timeline"))
-    self.toolButton31_2.setText(QString.null)
+    def languageChange(self):
+        self.setCaption(self.__tr("pyTwoPop_TimelineView"))
+        self.textLabel9.setText(self.__tr("Timeline"))
+        self.toolButton31_2.setText(QString.null)
 
 
-  def __tr(self,s,c = None):
-    return qApp.translate("pyTwoPop_TimelineView",s,c)
+    def __tr(self,s,c = None):
+        return qApp.translate("pyTwoPop_TimelineView",s,c)

Modified: trunk/source/python/AvidaGui2/pyTwoPopulationView.py
===================================================================
--- trunk/source/python/AvidaGui2/pyTwoPopulationView.py	2005-03-31 03:44:15 UTC (rev 95)
+++ trunk/source/python/AvidaGui2/pyTwoPopulationView.py	2005-03-31 09:26:09 UTC (rev 96)
@@ -1,9 +1,9 @@
 # -*- coding: utf-8 -*-
 
-# Form implementation generated from reading ui file '/Users/kaben/Projects/Software/Avida/branch.kaben/avida--current--2.0--base-0/source/bindings/Boost.Python/AvidaGui2/pyTwoPopulationView.ui'
+# Form implementation generated from reading ui file 'pyTwoPopulationView.ui'
 #
-# Created: Fri Dec 3 10:26:53 2004
-#      by: The PyQt User Interface Compiler (pyuic) 3.12
+# Created: Thu Mar 31 04:19:26 2005
+#      by: The PyQt User Interface Compiler (pyuic) 3.13
 #
 # WARNING! All changes made in this file will be lost!
 
@@ -16,46 +16,46 @@
 
 
 class pyTwoPopulationView(QWidget):
-  def __init__(self,parent = None,name = None,fl = 0):
-    QWidget.__init__(self,parent,name,fl)
+    def __init__(self,parent = None,name = None,fl = 0):
+        QWidget.__init__(self,parent,name,fl)
 
-    if not name:
-      self.setName("pyTwoPopulationView")
+        if not name:
+            self.setName("pyTwoPopulationView")
 
 
-    pyTwoPopulationViewLayout = QHBoxLayout(self,11,6,"pyTwoPopulationViewLayout")
+        pyTwoPopulationViewLayout = QHBoxLayout(self,11,6,"pyTwoPopulationViewLayout")
 
-    layout40 = QVBoxLayout(None,0,6,"layout40")
+        layout40 = QVBoxLayout(None,0,6,"layout40")
 
-    self.pyTwoPop_PetriDishesCtrl1 = pyTwoPop_PetriDishesCtrl(self,"pyTwoPop_PetriDishesCtrl1")
-    self.pyTwoPop_PetriDishesCtrl1.setSizePolicy(QSizePolicy(3,3,0,0,self.pyTwoPop_PetriDishesCtrl1.sizePolicy().hasHeightForWidth()))
-    layout40.addWidget(self.pyTwoPop_PetriDishesCtrl1)
+        self.pyTwoPop_PetriDishesCtrl1 = pyTwoPop_PetriDishesCtrl(self,"pyTwoPop_PetriDishesCtrl1")
+        self.pyTwoPop_PetriDishesCtrl1.setSizePolicy(QSizePolicy(3,3,0,0,self.pyTwoPop_PetriDishesCtrl1.sizePolicy().hasHeightForWidth()))
+        layout40.addWidget(self.pyTwoPop_PetriDishesCtrl1)
 
-    self.pyOnePop_TimelineCtrl1 = pyOnePop_TimelineCtrl(self,"pyOnePop_TimelineCtrl1")
-    self.pyOnePop_TimelineCtrl1.setSizePolicy(QSizePolicy(3,0,0,0,self.pyOnePop_TimelineCtrl1.sizePolicy().hasHeightForWidth()))
-    layout40.addWidget(self.pyOnePop_TimelineCtrl1)
-    pyTwoPopulationViewLayout.addLayout(layout40)
+        self.pyOnePop_TimelineCtrl1 = pyOnePop_TimelineCtrl(self,"pyOnePop_TimelineCtrl1")
+        self.pyOnePop_TimelineCtrl1.setSizePolicy(QSizePolicy(3,0,0,0,self.pyOnePop_TimelineCtrl1.sizePolicy().hasHeightForWidth()))
+        layout40.addWidget(self.pyOnePop_TimelineCtrl1)
+        pyTwoPopulationViewLayout.addLayout(layout40)
 
-    layout2 = QVBoxLayout(None,0,6,"layout2")
+        layout2 = QVBoxLayout(None,0,6,"layout2")
 
-    self.pyTwoPop_GraphCtrl2 = pyTwoPop_GraphCtrl(self,"pyTwoPop_GraphCtrl2")
-    self.pyTwoPop_GraphCtrl2.setSizePolicy(QSizePolicy(3,3,0,0,self.pyTwoPop_GraphCtrl2.sizePolicy().hasHeightForWidth()))
-    layout2.addWidget(self.pyTwoPop_GraphCtrl2)
+        self.pyTwoPop_GraphCtrl2 = pyTwoPop_GraphCtrl(self,"pyTwoPop_GraphCtrl2")
+        self.pyTwoPop_GraphCtrl2.setSizePolicy(QSizePolicy(3,3,0,0,self.pyTwoPop_GraphCtrl2.sizePolicy().hasHeightForWidth()))
+        layout2.addWidget(self.pyTwoPop_GraphCtrl2)
 
-    self.pyTwoPop_StatsCtrl1 = pyTwoPop_StatsCtrl(self,"pyTwoPop_StatsCtrl1")
-    self.pyTwoPop_StatsCtrl1.setSizePolicy(QSizePolicy(0,0,0,0,self.pyTwoPop_StatsCtrl1.sizePolicy().hasHeightForWidth()))
-    layout2.addWidget(self.pyTwoPop_StatsCtrl1)
-    pyTwoPopulationViewLayout.addLayout(layout2)
+        self.pyTwoPop_StatsCtrl1 = pyTwoPop_StatsCtrl(self,"pyTwoPop_StatsCtrl1")
+        self.pyTwoPop_StatsCtrl1.setSizePolicy(QSizePolicy(0,0,0,0,self.pyTwoPop_StatsCtrl1.sizePolicy().hasHeightForWidth()))
+        layout2.addWidget(self.pyTwoPop_StatsCtrl1)
+        pyTwoPopulationViewLayout.addLayout(layout2)
 
-    self.languageChange()
+        self.languageChange()
 
-    self.resize(QSize(600,480).expandedTo(self.minimumSizeHint()))
-    self.clearWState(Qt.WState_Polished)
+        self.resize(QSize(600,480).expandedTo(self.minimumSizeHint()))
+        self.clearWState(Qt.WState_Polished)
 
 
-  def languageChange(self):
-    self.setCaption(self.__tr("pyTwoPopulationView"))
+    def languageChange(self):
+        self.setCaption(self.__tr("pyTwoPopulationView"))
 
 
-  def __tr(self,s,c = None):
-    return qApp.translate("pyTwoPopulationView",s,c)
+    def __tr(self,s,c = None):
+        return qApp.translate("pyTwoPopulationView",s,c)

Deleted: trunk/source/python/AvidaGui2/pyVivisectionCtrl.py
===================================================================
--- trunk/source/python/AvidaGui2/pyVivisectionCtrl.py	2005-03-31 03:44:15 UTC (rev 95)
+++ trunk/source/python/AvidaGui2/pyVivisectionCtrl.py	2005-03-31 09:26:09 UTC (rev 96)
@@ -1,10 +0,0 @@
-# -*- coding: utf-8 -*-
-
-from qt import *
-from pyVivisectionView import pyVivisectionView
-
-
-class pyVivisectionCtrl(pyVivisectionView):
-
-  def __init__(self,parent = None,name = None,fl = 0):
-    pyVivisectionView.__init__(self,parent,name,fl)

Deleted: trunk/source/python/AvidaGui2/pyVivisectionView.py
===================================================================
--- trunk/source/python/AvidaGui2/pyVivisectionView.py	2005-03-31 03:44:15 UTC (rev 95)
+++ trunk/source/python/AvidaGui2/pyVivisectionView.py	2005-03-31 09:26:09 UTC (rev 96)
@@ -1,45 +0,0 @@
-# -*- coding: utf-8 -*-
-
-# Form implementation generated from reading ui file '/Users/kaben/Projects/Software/Avida/branch.kaben/avida--current--2.0--base-0/source/bindings/Boost.Python/AvidaGui2/pyVivisectionView.ui'
-#
-# Created: Fri Dec 3 10:26:53 2004
-#      by: The PyQt User Interface Compiler (pyuic) 3.12
-#
-# WARNING! All changes made in this file will be lost!
-
-
-from qt import *
-
-
-class pyVivisectionView(QWidget):
-  def __init__(self,parent = None,name = None,fl = 0):
-    QWidget.__init__(self,parent,name,fl)
-
-    if not name:
-      self.setName("pyVivisectionView")
-
-
-    pyVivisectionViewLayout = QVBoxLayout(self,11,6,"pyVivisectionViewLayout")
-
-    self.textLabel4 = QLabel(self,"textLabel4")
-    self.textLabel4.setBackgroundMode(QLabel.PaletteShadow)
-    textLabel4_font = QFont(self.textLabel4.font())
-    textLabel4_font.setPointSize(24)
-    self.textLabel4.setFont(textLabel4_font)
-    self.textLabel4.setScaledContents(0)
-    self.textLabel4.setAlignment(QLabel.AlignCenter)
-    pyVivisectionViewLayout.addWidget(self.textLabel4)
-
-    self.languageChange()
-
-    self.resize(QSize(279,51).expandedTo(self.minimumSizeHint()))
-    self.clearWState(Qt.WState_Polished)
-
-
-  def languageChange(self):
-    self.setCaption(self.__tr("pyVivisectionView"))
-    self.textLabel4.setText(self.__tr("mock vivisection table"))
-
-
-  def __tr(self,s,c = None):
-    return qApp.translate("pyVivisectionView",s,c)

Deleted: trunk/source/python/AvidaGui2/pyVivisectionView.ui
===================================================================
--- trunk/source/python/AvidaGui2/pyVivisectionView.ui	2005-03-31 03:44:15 UTC (rev 95)
+++ trunk/source/python/AvidaGui2/pyVivisectionView.ui	2005-03-31 09:26:09 UTC (rev 96)
@@ -1,47 +0,0 @@
-<!DOCTYPE UI><UI version="3.3" stdsetdef="1">
-<class>pyVivisectionView</class>
-<widget class="QWidget">
-    <property name="name">
-        <cstring>pyVivisectionView</cstring>
-    </property>
-    <property name="geometry">
-        <rect>
-            <x>0</x>
-            <y>0</y>
-            <width>279</width>
-            <height>51</height>
-        </rect>
-    </property>
-    <property name="caption">
-        <string>pyVivisectionView</string>
-    </property>
-    <vbox>
-        <property name="name">
-            <cstring>unnamed</cstring>
-        </property>
-        <widget class="QLabel">
-            <property name="name">
-                <cstring>textLabel4</cstring>
-            </property>
-            <property name="backgroundMode">
-                <enum>PaletteShadow</enum>
-            </property>
-            <property name="font">
-                <font>
-                    <pointsize>24</pointsize>
-                </font>
-            </property>
-            <property name="text">
-                <string>mock vivisection table</string>
-            </property>
-            <property name="scaledContents">
-                <bool>false</bool>
-            </property>
-            <property name="alignment">
-                <set>AlignCenter</set>
-            </property>
-        </widget>
-    </vbox>
-</widget>
-<layoutdefaults spacing="6" margin="11"/>
-</UI>




More information about the Avida-cvs mailing list