import sys
sys.dont_write_bytecode=True # don't make .pyc files

def copyleft(who='tim@menzies.us', when=2014, rate=0): print """
Charming Python: taming multi-objective search, with Python.
Copyright (C) %(when)s %(who)s, GLPL3.0.
       ___
      ,'._,`.
     (-.___.-)
     (-.___.-)
     `-.___.-'
      ((  @ @|              .            __
       \   ` |         ,\   |`.    @|   |  |      _.-._
      __`.`=-=mm===mm:: |   | |`.   |   |  |    ,'=` '=`.
     (    `-'|:/  /:/  `/  @| | |   |, @| @|   /---)W(---\ 
      \ \   / /  / /         @| |   '         (----| |----) ,~
      |\ \ / /| / /            @|              \---| |---/  |
      | \ V /||/ /                              `.-| |-,'   |
      |  `-' |V /                                 \| |/    @'
      |    , |-'                                 __| |__
      |    .;: _,-.                         ,--""..| |..""--.
      ;;:::' "    )                        (`--::__|_|__::--')
    ,-"      _,  /                          \`--...___...--'/
   (    -:--'/  /                           /`--...___...--'\ 
    "-._  `"'._/                           /`---...___...---'\ 
        "-._   "---.                      (`---....___....---')
         .' ",._ ,' )                     |`---....___....---'|
         /`._|  `|  |                     (`---....___....---')
        (   \    |  /                      \`---...___...---'/
         `.  `,  ^""                        `:--...___...--;'
           `.,'               hh              `-._______.-'

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesserl Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU Lesser Public License
along with this program.  If not, see <http://www.gnu.org/licenses/>.

For customization services, contact the author 
whose rates are $%(rate)g per hour.
""" % {'when': when,'who':who,'rate':rate}

